@cdc/core 4.25.11 → 4.26.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (147) hide show
  1. package/.claude/agents/qa-test-developer.md +126 -0
  2. package/CLAUDE.local.md +67 -0
  3. package/_stories/Gallery.Charts.stories.tsx +300 -0
  4. package/_stories/Gallery.DataBite.stories.tsx +79 -0
  5. package/_stories/Gallery.Maps.stories.tsx +239 -0
  6. package/_stories/Gallery.WaffleChart.stories.tsx +187 -0
  7. package/_stories/PageART.stories.tsx +193 -0
  8. package/_stories/PageBRFSS.stories.tsx +294 -0
  9. package/_stories/PageCancerRegistries.stories.tsx +199 -0
  10. package/_stories/PageEasternEquineEncephalitis.stories.tsx +216 -0
  11. package/_stories/PageExcessiveAlcoholUse.stories.tsx +201 -0
  12. package/_stories/PageMaternalMortality.stories.tsx +193 -0
  13. package/_stories/PageOralHealth.stories.tsx +201 -0
  14. package/_stories/PageRespiratory.stories.tsx +332 -0
  15. package/_stories/PageSmokingTobacco.stories.tsx +200 -0
  16. package/_stories/PageStateDiabetesProfiles.stories.tsx +201 -0
  17. package/_stories/PageWastewater.stories.tsx +477 -0
  18. package/_stories/VegaImport.stories.tsx +401 -0
  19. package/_stories/vega-fixtures/bars-with-line.json +444 -0
  20. package/_stories/vega-fixtures/bars.json +58 -0
  21. package/_stories/vega-fixtures/combo-bar-rolling-mean.json +88 -0
  22. package/_stories/vega-fixtures/combo.json +68 -0
  23. package/_stories/vega-fixtures/grouped-horizontal-bars.json +83 -0
  24. package/_stories/vega-fixtures/grouped-horizontal-bars2.json +231 -0
  25. package/_stories/vega-fixtures/horizontal-bar.json +427 -0
  26. package/_stories/vega-fixtures/horizontal-bars-with-bad-colors.json +197 -0
  27. package/_stories/vega-fixtures/horizontal-bars2.json +58 -0
  28. package/_stories/vega-fixtures/lines.json +227 -0
  29. package/_stories/vega-fixtures/measles-bars.json +348 -0
  30. package/_stories/vega-fixtures/measles-map.json +11101 -0
  31. package/_stories/vega-fixtures/measles-stacked-bars.json +2147 -0
  32. package/_stories/vega-fixtures/multi-dataset.json +255 -0
  33. package/_stories/vega-fixtures/no-data.json +14 -0
  34. package/_stories/vega-fixtures/pie-chart.json +94 -0
  35. package/_stories/vega-fixtures/repeat-spec.json +47 -0
  36. package/_stories/vega-fixtures/stacked-area.json +222 -0
  37. package/_stories/vega-fixtures/stacked-bar-with-rect.json +3412 -0
  38. package/_stories/vega-fixtures/stacked-bars-with-line.json +364 -0
  39. package/_stories/vega-fixtures/stacked-bars.json +212 -0
  40. package/_stories/vega-fixtures/stacked-horizontal-bars.json +140 -0
  41. package/_stories/vega-fixtures/warning-combo.json +59 -0
  42. package/_stories/vega-fixtures/warning-scatter-and-line.json +1182 -0
  43. package/assets/icon-chart-area.svg +1 -0
  44. package/assets/icon-chart-radar.svg +23 -0
  45. package/assets/icon-magnifying-glass.svg +5 -0
  46. package/assets/icon-warming-stripes.svg +13 -0
  47. package/assets/logo2.svg +31 -0
  48. package/components/AdvancedEditor/AdvancedEditor.tsx +4 -0
  49. package/components/AdvancedEditor/EmbedEditor.tsx +513 -0
  50. package/components/ComboBox/ComboBox.tsx +345 -0
  51. package/components/ComboBox/combobox.styles.css +185 -0
  52. package/components/ComboBox/index.ts +1 -0
  53. package/components/CustomColorsEditor/CustomColorsEditor.tsx +3 -10
  54. package/components/DataTable/DataTable.tsx +132 -58
  55. package/components/DataTable/data-table.css +216 -215
  56. package/components/DataTable/helpers/getSeriesName.ts +6 -0
  57. package/components/DataTable/helpers/mapCellMatrix.tsx +14 -6
  58. package/components/EditorPanel/ColumnsEditor.tsx +37 -19
  59. package/components/EditorPanel/DataTableEditor.tsx +51 -25
  60. package/components/EditorPanel/EditorPanel.styles.css +16 -0
  61. package/components/EditorPanel/EditorPanel.tsx +144 -0
  62. package/components/EditorPanel/EditorPanelDispatch.tsx +75 -0
  63. package/components/EditorPanel/FieldSetWrapper.tsx +66 -23
  64. package/components/EditorPanel/Inputs.tsx +33 -7
  65. package/components/EditorPanel/VizFilterEditor/NestedDropdownEditor.tsx +14 -6
  66. package/components/EditorPanel/VizFilterEditor/VizFilterEditor.tsx +240 -175
  67. package/components/EditorPanel/VizFilterEditor/components/FilterOrder.tsx +33 -29
  68. package/components/EditorPanel/sections/VisualSection.tsx +169 -0
  69. package/components/Filters/Filters.tsx +31 -5
  70. package/components/Filters/helpers/getNestedOptions.ts +2 -1
  71. package/components/Filters/helpers/handleSorting.ts +1 -1
  72. package/components/Layout/components/Sidebar/components/sidebar.styles.scss +84 -2
  73. package/components/Layout/components/Visualization/index.tsx +27 -1
  74. package/components/Layout/components/Visualization/visualizations.scss +7 -0
  75. package/components/Legend/Legend.Gradient.tsx +1 -1
  76. package/components/MediaControls.tsx +53 -28
  77. package/components/_stories/CustomColorsEditor.stories.tsx +37 -0
  78. package/components/_stories/DataTable.stories.tsx +1 -0
  79. package/components/ui/Icon.tsx +3 -1
  80. package/components/ui/Title/index.tsx +30 -2
  81. package/components/ui/Title/title.styles.css +42 -0
  82. package/data/colorPalettes.ts +18 -5
  83. package/data/mapColorPalettes.ts +10 -0
  84. package/devTemplate/dev.js +235 -0
  85. package/devTemplate/index.html +30 -0
  86. package/devTemplate/preview.html +1503 -0
  87. package/devTemplate/sidebar.css +151 -0
  88. package/dist/cove-main.css +2803 -4448
  89. package/dist/cove-main.css.map +1 -1
  90. package/generateViteConfig.js +118 -2
  91. package/helpers/DataTransform.ts +1 -5
  92. package/helpers/addValuesToFilters.ts +6 -1
  93. package/helpers/cove/date.ts +33 -1
  94. package/helpers/cove/string.ts +29 -0
  95. package/helpers/coveUpdateWorker.ts +21 -12
  96. package/helpers/embed/embedCodeGenerator.ts +80 -0
  97. package/helpers/embed/embedHelper.js +158 -0
  98. package/helpers/embed/filterUtils.ts +121 -0
  99. package/helpers/embed/index.ts +21 -0
  100. package/helpers/embed/urlValidation.ts +119 -0
  101. package/helpers/filterVizData.ts +6 -1
  102. package/helpers/getFileExtension.ts +0 -6
  103. package/helpers/getUniqueValues.ts +19 -0
  104. package/helpers/hashObj.ts +25 -0
  105. package/helpers/isRightAlignedTableValue.js +5 -0
  106. package/helpers/metrics/helpers.ts +1 -0
  107. package/helpers/metrics/types.ts +3 -0
  108. package/helpers/palettes/colorDistributions.ts +1 -1
  109. package/helpers/palettes/utils.ts +12 -12
  110. package/helpers/parseCsvWithQuotes.ts +15 -14
  111. package/helpers/pivotData.ts +2 -2
  112. package/helpers/prepareScreenshot.ts +288 -0
  113. package/helpers/queryStringUtils.ts +29 -0
  114. package/helpers/testing.ts +44 -0
  115. package/helpers/tests/DataTransform.test.ts +125 -0
  116. package/helpers/tests/date.test.ts +64 -0
  117. package/helpers/tests/prepareScreenshot.test.ts +414 -0
  118. package/helpers/tests/queryStringUtils.test.ts +381 -0
  119. package/helpers/tests/testStandaloneBuild.ts +23 -5
  120. package/helpers/useDataVizClasses.ts +0 -1
  121. package/helpers/vegaConfig.ts +1 -1
  122. package/helpers/vegaConfigImport.ts +160 -0
  123. package/helpers/ver/4.26.1.ts +80 -0
  124. package/helpers/ver/4.26.2.ts +84 -0
  125. package/helpers/ver/tests/4.26.1.test.ts +105 -0
  126. package/helpers/ver/tests/4.26.2.test.ts +298 -0
  127. package/helpers/viewports.ts +2 -0
  128. package/hooks/useDataColumns.ts +63 -0
  129. package/hooks/useFilterManagement.ts +94 -0
  130. package/hooks/useLegendSeparators.ts +26 -0
  131. package/hooks/useListManagement.ts +192 -0
  132. package/package.json +29 -33
  133. package/styles/_button-section.scss +0 -3
  134. package/styles/v2/components/editor.scss +9 -9
  135. package/styles/v2/utils/_grid.scss +8 -3
  136. package/types/Annotation.ts +10 -11
  137. package/types/Axis.ts +1 -0
  138. package/types/ForecastingSeriesKey.ts +1 -0
  139. package/types/General.ts +2 -0
  140. package/types/MarkupInclude.ts +1 -0
  141. package/types/Palette.ts +21 -0
  142. package/types/Series.ts +3 -0
  143. package/types/Table.ts +1 -0
  144. package/types/Visualization.ts +7 -0
  145. package/types/VizFilter.ts +1 -0
  146. package/LICENSE +0 -201
  147. package/_stories/StoryRenderingTests.stories.tsx +0 -164
@@ -0,0 +1,2147 @@
1
+ {
2
+ "data": {
3
+ "name": "data"
4
+ },
5
+ "params": [
6
+ {
7
+ "name": "dateExtent",
8
+ "expr": "extent(pluck(data('data_0'), 'date'))"
9
+ },
10
+ {
11
+ "name": "dateMax",
12
+ "expr": "dateExtent[1]"
13
+ }
14
+ ],
15
+ "layer": [
16
+ {
17
+ "mark": "bar",
18
+ "encoding": {
19
+ "x": {
20
+ "field": "date",
21
+ "type": "temporal",
22
+ "timeUnit": "yearmonth",
23
+ "title": "Month of Report",
24
+ "axis": {
25
+ "format": "%b %Y",
26
+ "grid": false
27
+ }
28
+ },
29
+ "y": {
30
+ "aggregate": "sum",
31
+ "field": "measlesTotal",
32
+ "title": "Number of Cases"
33
+ },
34
+ "color": {
35
+ "field": "whoRegion",
36
+ "title": "WHO Region",
37
+ "scale": {
38
+ "domain": [
39
+ "AFRO",
40
+ "AMRO",
41
+ "EMRO",
42
+ "EURO",
43
+ "SEARO",
44
+ "WPRO"
45
+ ],
46
+ "range": [
47
+ "#2D72D2",
48
+ "#DB2C6F",
49
+ "#8EB125",
50
+ "#9D3F9D",
51
+ "#00A396",
52
+ "#D1980B"
53
+ ]
54
+ },
55
+ "legend": {
56
+ "orient": "top"
57
+ }
58
+ },
59
+ "tooltip": [
60
+ {
61
+ "field": "whoRegion",
62
+ "title": "WHO Region"
63
+ },
64
+ {
65
+ "field": "date",
66
+ "type": "temporal",
67
+ "title": "Month",
68
+ "format": "%b %Y"
69
+ },
70
+ {
71
+ "field": "sum_measlesTotal",
72
+ "title": "Number of Cases",
73
+ "type": "quantitative",
74
+ "format": ","
75
+ }
76
+ ]
77
+ }
78
+ }
79
+ ],
80
+ "height": "container",
81
+ "width": "container",
82
+ "datasets": {
83
+ "data": [
84
+ {
85
+ "date": "2025-01-01T05:00:00.000Z",
86
+ "whoRegionDesc": "Africa",
87
+ "measlesTotal": 26,
88
+ "whoRegion": "AFRO"
89
+ },
90
+ {
91
+ "date": "2025-01-01T05:00:00.000Z",
92
+ "whoRegionDesc": "Africa",
93
+ "measlesTotal": 27,
94
+ "whoRegion": "AFRO"
95
+ },
96
+ {
97
+ "date": "2025-01-01T05:00:00.000Z",
98
+ "whoRegionDesc": "Africa",
99
+ "measlesTotal": 0,
100
+ "whoRegion": "AFRO"
101
+ },
102
+ {
103
+ "date": "2025-01-01T05:00:00.000Z",
104
+ "whoRegionDesc": "Africa",
105
+ "measlesTotal": 158,
106
+ "whoRegion": "AFRO"
107
+ },
108
+ {
109
+ "date": "2025-01-01T05:00:00.000Z",
110
+ "whoRegionDesc": "Africa",
111
+ "measlesTotal": 0,
112
+ "whoRegion": "AFRO"
113
+ },
114
+ {
115
+ "date": "2025-01-01T05:00:00.000Z",
116
+ "whoRegionDesc": "Africa",
117
+ "measlesTotal": 173,
118
+ "whoRegion": "AFRO"
119
+ },
120
+ {
121
+ "date": "2025-01-01T05:00:00.000Z",
122
+ "whoRegionDesc": "Africa",
123
+ "measlesTotal": 150,
124
+ "whoRegion": "AFRO"
125
+ },
126
+ {
127
+ "date": "2025-01-01T05:00:00.000Z",
128
+ "whoRegionDesc": "Africa",
129
+ "measlesTotal": 53,
130
+ "whoRegion": "AFRO"
131
+ },
132
+ {
133
+ "date": "2025-01-01T05:00:00.000Z",
134
+ "whoRegionDesc": "Africa",
135
+ "measlesTotal": 0,
136
+ "whoRegion": "AFRO"
137
+ },
138
+ {
139
+ "date": "2025-01-01T05:00:00.000Z",
140
+ "whoRegionDesc": "Africa",
141
+ "measlesTotal": 174,
142
+ "whoRegion": "AFRO"
143
+ },
144
+ {
145
+ "date": "2025-01-01T05:00:00.000Z",
146
+ "whoRegionDesc": "Africa",
147
+ "measlesTotal": 0,
148
+ "whoRegion": "AFRO"
149
+ },
150
+ {
151
+ "date": "2025-01-01T05:00:00.000Z",
152
+ "whoRegionDesc": "Africa",
153
+ "measlesTotal": 0,
154
+ "whoRegion": "AFRO"
155
+ },
156
+ {
157
+ "date": "2025-01-01T05:00:00.000Z",
158
+ "whoRegionDesc": "Africa",
159
+ "measlesTotal": 0,
160
+ "whoRegion": "AFRO"
161
+ },
162
+ {
163
+ "date": "2025-01-01T05:00:00.000Z",
164
+ "whoRegionDesc": "Africa",
165
+ "measlesTotal": 153,
166
+ "whoRegion": "AFRO"
167
+ },
168
+ {
169
+ "date": "2025-01-01T05:00:00.000Z",
170
+ "whoRegionDesc": "Africa",
171
+ "measlesTotal": 1,
172
+ "whoRegion": "AFRO"
173
+ },
174
+ {
175
+ "date": "2025-01-01T05:00:00.000Z",
176
+ "whoRegionDesc": "Africa",
177
+ "measlesTotal": 3,
178
+ "whoRegion": "AFRO"
179
+ },
180
+ {
181
+ "date": "2025-01-01T05:00:00.000Z",
182
+ "whoRegionDesc": "Americas",
183
+ "measlesTotal": 0,
184
+ "whoRegion": "AMRO"
185
+ },
186
+ {
187
+ "date": "2025-01-01T05:00:00.000Z",
188
+ "whoRegionDesc": "Americas",
189
+ "measlesTotal": 0,
190
+ "whoRegion": "AMRO"
191
+ },
192
+ {
193
+ "date": "2025-01-01T05:00:00.000Z",
194
+ "whoRegionDesc": "Americas",
195
+ "measlesTotal": 0,
196
+ "whoRegion": "AMRO"
197
+ },
198
+ {
199
+ "date": "2025-01-01T05:00:00.000Z",
200
+ "whoRegionDesc": "Americas",
201
+ "measlesTotal": 0,
202
+ "whoRegion": "AMRO"
203
+ },
204
+ {
205
+ "date": "2025-01-01T05:00:00.000Z",
206
+ "whoRegionDesc": "Americas",
207
+ "measlesTotal": 0,
208
+ "whoRegion": "AMRO"
209
+ },
210
+ {
211
+ "date": "2025-01-01T05:00:00.000Z",
212
+ "whoRegionDesc": "Americas",
213
+ "measlesTotal": 0,
214
+ "whoRegion": "AMRO"
215
+ },
216
+ {
217
+ "date": "2025-01-01T05:00:00.000Z",
218
+ "whoRegionDesc": "Americas",
219
+ "measlesTotal": 0,
220
+ "whoRegion": "AMRO"
221
+ },
222
+ {
223
+ "date": "2025-01-01T05:00:00.000Z",
224
+ "whoRegionDesc": "Americas",
225
+ "measlesTotal": 0,
226
+ "whoRegion": "AMRO"
227
+ },
228
+ {
229
+ "date": "2025-01-01T05:00:00.000Z",
230
+ "whoRegionDesc": "Americas",
231
+ "measlesTotal": 0,
232
+ "whoRegion": "AMRO"
233
+ },
234
+ {
235
+ "date": "2025-01-01T05:00:00.000Z",
236
+ "whoRegionDesc": "Americas",
237
+ "measlesTotal": 0,
238
+ "whoRegion": "AMRO"
239
+ },
240
+ {
241
+ "date": "2025-01-01T05:00:00.000Z",
242
+ "whoRegionDesc": "Americas",
243
+ "measlesTotal": 0,
244
+ "whoRegion": "AMRO"
245
+ },
246
+ {
247
+ "date": "2025-01-01T05:00:00.000Z",
248
+ "whoRegionDesc": "Americas",
249
+ "measlesTotal": 0,
250
+ "whoRegion": "AMRO"
251
+ },
252
+ {
253
+ "date": "2025-01-01T05:00:00.000Z",
254
+ "whoRegionDesc": "Eastern Mediterranean",
255
+ "measlesTotal": 154,
256
+ "whoRegion": "EMRO"
257
+ },
258
+ {
259
+ "date": "2025-01-01T05:00:00.000Z",
260
+ "whoRegionDesc": "Eastern Mediterranean",
261
+ "measlesTotal": 15,
262
+ "whoRegion": "EMRO"
263
+ },
264
+ {
265
+ "date": "2025-01-01T05:00:00.000Z",
266
+ "whoRegionDesc": "Eastern Mediterranean",
267
+ "measlesTotal": 0,
268
+ "whoRegion": "EMRO"
269
+ },
270
+ {
271
+ "date": "2025-01-01T05:00:00.000Z",
272
+ "whoRegionDesc": "Eastern Mediterranean",
273
+ "measlesTotal": 0,
274
+ "whoRegion": "EMRO"
275
+ },
276
+ {
277
+ "date": "2025-01-01T05:00:00.000Z",
278
+ "whoRegionDesc": "Eastern Mediterranean",
279
+ "measlesTotal": 9,
280
+ "whoRegion": "EMRO"
281
+ },
282
+ {
283
+ "date": "2025-01-01T05:00:00.000Z",
284
+ "whoRegionDesc": "Eastern Mediterranean",
285
+ "measlesTotal": 1251,
286
+ "whoRegion": "EMRO"
287
+ },
288
+ {
289
+ "date": "2025-01-01T05:00:00.000Z",
290
+ "whoRegionDesc": "Eastern Mediterranean",
291
+ "measlesTotal": 57,
292
+ "whoRegion": "EMRO"
293
+ },
294
+ {
295
+ "date": "2025-01-01T05:00:00.000Z",
296
+ "whoRegionDesc": "Europe",
297
+ "measlesTotal": 2,
298
+ "whoRegion": "EURO"
299
+ },
300
+ {
301
+ "date": "2025-01-01T05:00:00.000Z",
302
+ "whoRegionDesc": "Europe",
303
+ "measlesTotal": 1367,
304
+ "whoRegion": "EURO"
305
+ },
306
+ {
307
+ "date": "2025-01-01T05:00:00.000Z",
308
+ "whoRegionDesc": "Europe",
309
+ "measlesTotal": 19,
310
+ "whoRegion": "EURO"
311
+ },
312
+ {
313
+ "date": "2025-01-01T05:00:00.000Z",
314
+ "whoRegionDesc": "Europe",
315
+ "measlesTotal": 81,
316
+ "whoRegion": "EURO"
317
+ },
318
+ {
319
+ "date": "2025-01-01T05:00:00.000Z",
320
+ "whoRegionDesc": "Europe",
321
+ "measlesTotal": 2,
322
+ "whoRegion": "EURO"
323
+ },
324
+ {
325
+ "date": "2025-01-01T05:00:00.000Z",
326
+ "whoRegionDesc": "Europe",
327
+ "measlesTotal": 0,
328
+ "whoRegion": "EURO"
329
+ },
330
+ {
331
+ "date": "2025-01-01T05:00:00.000Z",
332
+ "whoRegionDesc": "Europe",
333
+ "measlesTotal": 1,
334
+ "whoRegion": "EURO"
335
+ },
336
+ {
337
+ "date": "2025-01-01T05:00:00.000Z",
338
+ "whoRegionDesc": "Europe",
339
+ "measlesTotal": 0,
340
+ "whoRegion": "EURO"
341
+ },
342
+ {
343
+ "date": "2025-01-01T05:00:00.000Z",
344
+ "whoRegionDesc": "Europe",
345
+ "measlesTotal": 5,
346
+ "whoRegion": "EURO"
347
+ },
348
+ {
349
+ "date": "2025-01-01T05:00:00.000Z",
350
+ "whoRegionDesc": "Europe",
351
+ "measlesTotal": 169,
352
+ "whoRegion": "EURO"
353
+ },
354
+ {
355
+ "date": "2025-01-01T05:00:00.000Z",
356
+ "whoRegionDesc": "Europe",
357
+ "measlesTotal": 1,
358
+ "whoRegion": "EURO"
359
+ },
360
+ {
361
+ "date": "2025-01-01T05:00:00.000Z",
362
+ "whoRegionDesc": "Europe",
363
+ "measlesTotal": 1954,
364
+ "whoRegion": "EURO"
365
+ },
366
+ {
367
+ "date": "2025-01-01T05:00:00.000Z",
368
+ "whoRegionDesc": "Europe",
369
+ "measlesTotal": 32,
370
+ "whoRegion": "EURO"
371
+ },
372
+ {
373
+ "date": "2025-01-01T05:00:00.000Z",
374
+ "whoRegionDesc": "Europe",
375
+ "measlesTotal": 0,
376
+ "whoRegion": "EURO"
377
+ },
378
+ {
379
+ "date": "2025-01-01T05:00:00.000Z",
380
+ "whoRegionDesc": "Europe",
381
+ "measlesTotal": 0,
382
+ "whoRegion": "EURO"
383
+ },
384
+ {
385
+ "date": "2025-01-01T05:00:00.000Z",
386
+ "whoRegionDesc": "Europe",
387
+ "measlesTotal": 0,
388
+ "whoRegion": "EURO"
389
+ },
390
+ {
391
+ "date": "2025-01-01T05:00:00.000Z",
392
+ "whoRegionDesc": "Europe",
393
+ "measlesTotal": 0,
394
+ "whoRegion": "EURO"
395
+ },
396
+ {
397
+ "date": "2025-01-01T05:00:00.000Z",
398
+ "whoRegionDesc": "Europe",
399
+ "measlesTotal": 350,
400
+ "whoRegion": "EURO"
401
+ },
402
+ {
403
+ "date": "2025-01-01T05:00:00.000Z",
404
+ "whoRegionDesc": "Southeast Asia",
405
+ "measlesTotal": 0,
406
+ "whoRegion": "SEARO"
407
+ },
408
+ {
409
+ "date": "2025-01-01T05:00:00.000Z",
410
+ "whoRegionDesc": "Southeast Asia",
411
+ "measlesTotal": 0,
412
+ "whoRegion": "SEARO"
413
+ },
414
+ {
415
+ "date": "2025-01-01T05:00:00.000Z",
416
+ "whoRegionDesc": "Southeast Asia",
417
+ "measlesTotal": 150,
418
+ "whoRegion": "SEARO"
419
+ },
420
+ {
421
+ "date": "2025-01-01T05:00:00.000Z",
422
+ "whoRegionDesc": "Southeast Asia",
423
+ "measlesTotal": 0,
424
+ "whoRegion": "SEARO"
425
+ },
426
+ {
427
+ "date": "2025-01-01T05:00:00.000Z",
428
+ "whoRegionDesc": "Western Pacific",
429
+ "measlesTotal": 0,
430
+ "whoRegion": "WPRO"
431
+ },
432
+ {
433
+ "date": "2025-01-01T05:00:00.000Z",
434
+ "whoRegionDesc": "Western Pacific",
435
+ "measlesTotal": 0,
436
+ "whoRegion": "WPRO"
437
+ },
438
+ {
439
+ "date": "2025-01-01T05:00:00.000Z",
440
+ "whoRegionDesc": "Western Pacific",
441
+ "measlesTotal": 0,
442
+ "whoRegion": "WPRO"
443
+ },
444
+ {
445
+ "date": "2025-01-01T05:00:00.000Z",
446
+ "whoRegionDesc": "Western Pacific",
447
+ "measlesTotal": 1,
448
+ "whoRegion": "WPRO"
449
+ },
450
+ {
451
+ "date": "2025-01-01T05:00:00.000Z",
452
+ "whoRegionDesc": "Western Pacific",
453
+ "measlesTotal": 341,
454
+ "whoRegion": "WPRO"
455
+ },
456
+ {
457
+ "date": "2025-01-01T05:00:00.000Z",
458
+ "whoRegionDesc": "Western Pacific",
459
+ "measlesTotal": 88,
460
+ "whoRegion": "WPRO"
461
+ },
462
+ {
463
+ "date": "2025-01-01T05:00:00.000Z",
464
+ "whoRegionDesc": "Western Pacific",
465
+ "measlesTotal": 0,
466
+ "whoRegion": "WPRO"
467
+ },
468
+ {
469
+ "date": "2025-01-01T05:00:00.000Z",
470
+ "whoRegionDesc": "Western Pacific",
471
+ "measlesTotal": 0,
472
+ "whoRegion": "WPRO"
473
+ },
474
+ {
475
+ "date": "2025-01-01T05:00:00.000Z",
476
+ "whoRegionDesc": "Western Pacific",
477
+ "measlesTotal": 0,
478
+ "whoRegion": "WPRO"
479
+ },
480
+ {
481
+ "date": "2025-02-01T05:00:00.000Z",
482
+ "whoRegionDesc": "Africa",
483
+ "measlesTotal": 8,
484
+ "whoRegion": "AFRO"
485
+ },
486
+ {
487
+ "date": "2025-02-01T05:00:00.000Z",
488
+ "whoRegionDesc": "Africa",
489
+ "measlesTotal": 59,
490
+ "whoRegion": "AFRO"
491
+ },
492
+ {
493
+ "date": "2025-02-01T05:00:00.000Z",
494
+ "whoRegionDesc": "Africa",
495
+ "measlesTotal": 528,
496
+ "whoRegion": "AFRO"
497
+ },
498
+ {
499
+ "date": "2025-02-01T05:00:00.000Z",
500
+ "whoRegionDesc": "Africa",
501
+ "measlesTotal": 0,
502
+ "whoRegion": "AFRO"
503
+ },
504
+ {
505
+ "date": "2025-02-01T05:00:00.000Z",
506
+ "whoRegionDesc": "Africa",
507
+ "measlesTotal": 63,
508
+ "whoRegion": "AFRO"
509
+ },
510
+ {
511
+ "date": "2025-02-01T05:00:00.000Z",
512
+ "whoRegionDesc": "Africa",
513
+ "measlesTotal": 5,
514
+ "whoRegion": "AFRO"
515
+ },
516
+ {
517
+ "date": "2025-02-01T05:00:00.000Z",
518
+ "whoRegionDesc": "Africa",
519
+ "measlesTotal": 48,
520
+ "whoRegion": "AFRO"
521
+ },
522
+ {
523
+ "date": "2025-02-01T05:00:00.000Z",
524
+ "whoRegionDesc": "Africa",
525
+ "measlesTotal": 0,
526
+ "whoRegion": "AFRO"
527
+ },
528
+ {
529
+ "date": "2025-02-01T05:00:00.000Z",
530
+ "whoRegionDesc": "Africa",
531
+ "measlesTotal": 11,
532
+ "whoRegion": "AFRO"
533
+ },
534
+ {
535
+ "date": "2025-02-01T05:00:00.000Z",
536
+ "whoRegionDesc": "Africa",
537
+ "measlesTotal": 109,
538
+ "whoRegion": "AFRO"
539
+ },
540
+ {
541
+ "date": "2025-02-01T05:00:00.000Z",
542
+ "whoRegionDesc": "Africa",
543
+ "measlesTotal": 0,
544
+ "whoRegion": "AFRO"
545
+ },
546
+ {
547
+ "date": "2025-02-01T05:00:00.000Z",
548
+ "whoRegionDesc": "Africa",
549
+ "measlesTotal": 14,
550
+ "whoRegion": "AFRO"
551
+ },
552
+ {
553
+ "date": "2025-02-01T05:00:00.000Z",
554
+ "whoRegionDesc": "Africa",
555
+ "measlesTotal": 0,
556
+ "whoRegion": "AFRO"
557
+ },
558
+ {
559
+ "date": "2025-02-01T05:00:00.000Z",
560
+ "whoRegionDesc": "Africa",
561
+ "measlesTotal": 12,
562
+ "whoRegion": "AFRO"
563
+ },
564
+ {
565
+ "date": "2025-02-01T05:00:00.000Z",
566
+ "whoRegionDesc": "Africa",
567
+ "measlesTotal": 70,
568
+ "whoRegion": "AFRO"
569
+ },
570
+ {
571
+ "date": "2025-02-01T05:00:00.000Z",
572
+ "whoRegionDesc": "Africa",
573
+ "measlesTotal": 245,
574
+ "whoRegion": "AFRO"
575
+ },
576
+ {
577
+ "date": "2025-02-01T05:00:00.000Z",
578
+ "whoRegionDesc": "Americas",
579
+ "measlesTotal": 0,
580
+ "whoRegion": "AMRO"
581
+ },
582
+ {
583
+ "date": "2025-02-01T05:00:00.000Z",
584
+ "whoRegionDesc": "Americas",
585
+ "measlesTotal": 0,
586
+ "whoRegion": "AMRO"
587
+ },
588
+ {
589
+ "date": "2025-02-01T05:00:00.000Z",
590
+ "whoRegionDesc": "Americas",
591
+ "measlesTotal": 0,
592
+ "whoRegion": "AMRO"
593
+ },
594
+ {
595
+ "date": "2025-02-01T05:00:00.000Z",
596
+ "whoRegionDesc": "Americas",
597
+ "measlesTotal": 0,
598
+ "whoRegion": "AMRO"
599
+ },
600
+ {
601
+ "date": "2025-02-01T05:00:00.000Z",
602
+ "whoRegionDesc": "Americas",
603
+ "measlesTotal": 0,
604
+ "whoRegion": "AMRO"
605
+ },
606
+ {
607
+ "date": "2025-02-01T05:00:00.000Z",
608
+ "whoRegionDesc": "Americas",
609
+ "measlesTotal": 0,
610
+ "whoRegion": "AMRO"
611
+ },
612
+ {
613
+ "date": "2025-02-01T05:00:00.000Z",
614
+ "whoRegionDesc": "Americas",
615
+ "measlesTotal": 0,
616
+ "whoRegion": "AMRO"
617
+ },
618
+ {
619
+ "date": "2025-02-01T05:00:00.000Z",
620
+ "whoRegionDesc": "Americas",
621
+ "measlesTotal": 7,
622
+ "whoRegion": "AMRO"
623
+ },
624
+ {
625
+ "date": "2025-02-01T05:00:00.000Z",
626
+ "whoRegionDesc": "Americas",
627
+ "measlesTotal": 0,
628
+ "whoRegion": "AMRO"
629
+ },
630
+ {
631
+ "date": "2025-02-01T05:00:00.000Z",
632
+ "whoRegionDesc": "Americas",
633
+ "measlesTotal": 0,
634
+ "whoRegion": "AMRO"
635
+ },
636
+ {
637
+ "date": "2025-02-01T05:00:00.000Z",
638
+ "whoRegionDesc": "Americas",
639
+ "measlesTotal": 177,
640
+ "whoRegion": "AMRO"
641
+ },
642
+ {
643
+ "date": "2025-02-01T05:00:00.000Z",
644
+ "whoRegionDesc": "Americas",
645
+ "measlesTotal": 0,
646
+ "whoRegion": "AMRO"
647
+ },
648
+ {
649
+ "date": "2025-02-01T05:00:00.000Z",
650
+ "whoRegionDesc": "Eastern Mediterranean",
651
+ "measlesTotal": 1544,
652
+ "whoRegion": "EMRO"
653
+ },
654
+ {
655
+ "date": "2025-02-01T05:00:00.000Z",
656
+ "whoRegionDesc": "Eastern Mediterranean",
657
+ "measlesTotal": 98,
658
+ "whoRegion": "EMRO"
659
+ },
660
+ {
661
+ "date": "2025-02-01T05:00:00.000Z",
662
+ "whoRegionDesc": "Eastern Mediterranean",
663
+ "measlesTotal": 150,
664
+ "whoRegion": "EMRO"
665
+ },
666
+ {
667
+ "date": "2025-02-01T05:00:00.000Z",
668
+ "whoRegionDesc": "Eastern Mediterranean",
669
+ "measlesTotal": 1,
670
+ "whoRegion": "EMRO"
671
+ },
672
+ {
673
+ "date": "2025-02-01T05:00:00.000Z",
674
+ "whoRegionDesc": "Eastern Mediterranean",
675
+ "measlesTotal": 1,
676
+ "whoRegion": "EMRO"
677
+ },
678
+ {
679
+ "date": "2025-02-01T05:00:00.000Z",
680
+ "whoRegionDesc": "Eastern Mediterranean",
681
+ "measlesTotal": 0,
682
+ "whoRegion": "EMRO"
683
+ },
684
+ {
685
+ "date": "2025-02-01T05:00:00.000Z",
686
+ "whoRegionDesc": "Eastern Mediterranean",
687
+ "measlesTotal": 1559,
688
+ "whoRegion": "EMRO"
689
+ },
690
+ {
691
+ "date": "2025-02-01T05:00:00.000Z",
692
+ "whoRegionDesc": "Europe",
693
+ "measlesTotal": 1,
694
+ "whoRegion": "EURO"
695
+ },
696
+ {
697
+ "date": "2025-02-01T05:00:00.000Z",
698
+ "whoRegionDesc": "Europe",
699
+ "measlesTotal": 0,
700
+ "whoRegion": "EURO"
701
+ },
702
+ {
703
+ "date": "2025-02-01T05:00:00.000Z",
704
+ "whoRegionDesc": "Europe",
705
+ "measlesTotal": 1,
706
+ "whoRegion": "EURO"
707
+ },
708
+ {
709
+ "date": "2025-02-01T05:00:00.000Z",
710
+ "whoRegionDesc": "Europe",
711
+ "measlesTotal": 0,
712
+ "whoRegion": "EURO"
713
+ },
714
+ {
715
+ "date": "2025-02-01T05:00:00.000Z",
716
+ "whoRegionDesc": "Europe",
717
+ "measlesTotal": 20,
718
+ "whoRegion": "EURO"
719
+ },
720
+ {
721
+ "date": "2025-02-01T05:00:00.000Z",
722
+ "whoRegionDesc": "Europe",
723
+ "measlesTotal": 129,
724
+ "whoRegion": "EURO"
725
+ },
726
+ {
727
+ "date": "2025-02-01T05:00:00.000Z",
728
+ "whoRegionDesc": "Europe",
729
+ "measlesTotal": 0,
730
+ "whoRegion": "EURO"
731
+ },
732
+ {
733
+ "date": "2025-02-01T05:00:00.000Z",
734
+ "whoRegionDesc": "Europe",
735
+ "measlesTotal": 235,
736
+ "whoRegion": "EURO"
737
+ },
738
+ {
739
+ "date": "2025-02-01T05:00:00.000Z",
740
+ "whoRegionDesc": "Europe",
741
+ "measlesTotal": 19,
742
+ "whoRegion": "EURO"
743
+ },
744
+ {
745
+ "date": "2025-02-01T05:00:00.000Z",
746
+ "whoRegionDesc": "Europe",
747
+ "measlesTotal": 0,
748
+ "whoRegion": "EURO"
749
+ },
750
+ {
751
+ "date": "2025-02-01T05:00:00.000Z",
752
+ "whoRegionDesc": "Europe",
753
+ "measlesTotal": 229,
754
+ "whoRegion": "EURO"
755
+ },
756
+ {
757
+ "date": "2025-02-01T05:00:00.000Z",
758
+ "whoRegionDesc": "Europe",
759
+ "measlesTotal": 4,
760
+ "whoRegion": "EURO"
761
+ },
762
+ {
763
+ "date": "2025-02-01T05:00:00.000Z",
764
+ "whoRegionDesc": "Europe",
765
+ "measlesTotal": 0,
766
+ "whoRegion": "EURO"
767
+ },
768
+ {
769
+ "date": "2025-02-01T05:00:00.000Z",
770
+ "whoRegionDesc": "Europe",
771
+ "measlesTotal": 1,
772
+ "whoRegion": "EURO"
773
+ },
774
+ {
775
+ "date": "2025-02-01T05:00:00.000Z",
776
+ "whoRegionDesc": "Europe",
777
+ "measlesTotal": 405,
778
+ "whoRegion": "EURO"
779
+ },
780
+ {
781
+ "date": "2025-02-01T05:00:00.000Z",
782
+ "whoRegionDesc": "Europe",
783
+ "measlesTotal": 152,
784
+ "whoRegion": "EURO"
785
+ },
786
+ {
787
+ "date": "2025-02-01T05:00:00.000Z",
788
+ "whoRegionDesc": "Europe",
789
+ "measlesTotal": 1,
790
+ "whoRegion": "EURO"
791
+ },
792
+ {
793
+ "date": "2025-02-01T05:00:00.000Z",
794
+ "whoRegionDesc": "Europe",
795
+ "measlesTotal": 1,
796
+ "whoRegion": "EURO"
797
+ },
798
+ {
799
+ "date": "2025-02-01T05:00:00.000Z",
800
+ "whoRegionDesc": "Southeast Asia",
801
+ "measlesTotal": 1632,
802
+ "whoRegion": "SEARO"
803
+ },
804
+ {
805
+ "date": "2025-02-01T05:00:00.000Z",
806
+ "whoRegionDesc": "Southeast Asia",
807
+ "measlesTotal": 5,
808
+ "whoRegion": "SEARO"
809
+ },
810
+ {
811
+ "date": "2025-02-01T05:00:00.000Z",
812
+ "whoRegionDesc": "Southeast Asia",
813
+ "measlesTotal": 0,
814
+ "whoRegion": "SEARO"
815
+ },
816
+ {
817
+ "date": "2025-02-01T05:00:00.000Z",
818
+ "whoRegionDesc": "Southeast Asia",
819
+ "measlesTotal": 0,
820
+ "whoRegion": "SEARO"
821
+ },
822
+ {
823
+ "date": "2025-02-01T05:00:00.000Z",
824
+ "whoRegionDesc": "Western Pacific",
825
+ "measlesTotal": 0,
826
+ "whoRegion": "WPRO"
827
+ },
828
+ {
829
+ "date": "2025-02-01T05:00:00.000Z",
830
+ "whoRegionDesc": "Western Pacific",
831
+ "measlesTotal": 0,
832
+ "whoRegion": "WPRO"
833
+ },
834
+ {
835
+ "date": "2025-02-01T05:00:00.000Z",
836
+ "whoRegionDesc": "Western Pacific",
837
+ "measlesTotal": 7,
838
+ "whoRegion": "WPRO"
839
+ },
840
+ {
841
+ "date": "2025-02-01T05:00:00.000Z",
842
+ "whoRegionDesc": "Western Pacific",
843
+ "measlesTotal": 0,
844
+ "whoRegion": "WPRO"
845
+ },
846
+ {
847
+ "date": "2025-02-01T05:00:00.000Z",
848
+ "whoRegionDesc": "Western Pacific",
849
+ "measlesTotal": 0,
850
+ "whoRegion": "WPRO"
851
+ },
852
+ {
853
+ "date": "2025-02-01T05:00:00.000Z",
854
+ "whoRegionDesc": "Western Pacific",
855
+ "measlesTotal": 390,
856
+ "whoRegion": "WPRO"
857
+ },
858
+ {
859
+ "date": "2025-02-01T05:00:00.000Z",
860
+ "whoRegionDesc": "Western Pacific",
861
+ "measlesTotal": 11,
862
+ "whoRegion": "WPRO"
863
+ },
864
+ {
865
+ "date": "2025-02-01T05:00:00.000Z",
866
+ "whoRegionDesc": "Western Pacific",
867
+ "measlesTotal": 0,
868
+ "whoRegion": "WPRO"
869
+ },
870
+ {
871
+ "date": "2025-02-01T05:00:00.000Z",
872
+ "whoRegionDesc": "Western Pacific",
873
+ "measlesTotal": 580,
874
+ "whoRegion": "WPRO"
875
+ },
876
+ {
877
+ "date": "2025-03-01T05:00:00.000Z",
878
+ "whoRegionDesc": "Africa",
879
+ "measlesTotal": 0,
880
+ "whoRegion": "AFRO"
881
+ },
882
+ {
883
+ "date": "2025-03-01T05:00:00.000Z",
884
+ "whoRegionDesc": "Africa",
885
+ "measlesTotal": 58,
886
+ "whoRegion": "AFRO"
887
+ },
888
+ {
889
+ "date": "2025-03-01T05:00:00.000Z",
890
+ "whoRegionDesc": "Africa",
891
+ "measlesTotal": 14,
892
+ "whoRegion": "AFRO"
893
+ },
894
+ {
895
+ "date": "2025-03-01T05:00:00.000Z",
896
+ "whoRegionDesc": "Africa",
897
+ "measlesTotal": 55,
898
+ "whoRegion": "AFRO"
899
+ },
900
+ {
901
+ "date": "2025-03-01T05:00:00.000Z",
902
+ "whoRegionDesc": "Africa",
903
+ "measlesTotal": 1297,
904
+ "whoRegion": "AFRO"
905
+ },
906
+ {
907
+ "date": "2025-03-01T05:00:00.000Z",
908
+ "whoRegionDesc": "Africa",
909
+ "measlesTotal": 25,
910
+ "whoRegion": "AFRO"
911
+ },
912
+ {
913
+ "date": "2025-03-01T05:00:00.000Z",
914
+ "whoRegionDesc": "Africa",
915
+ "measlesTotal": 0,
916
+ "whoRegion": "AFRO"
917
+ },
918
+ {
919
+ "date": "2025-03-01T05:00:00.000Z",
920
+ "whoRegionDesc": "Africa",
921
+ "measlesTotal": 43,
922
+ "whoRegion": "AFRO"
923
+ },
924
+ {
925
+ "date": "2025-03-01T05:00:00.000Z",
926
+ "whoRegionDesc": "Africa",
927
+ "measlesTotal": 156,
928
+ "whoRegion": "AFRO"
929
+ },
930
+ {
931
+ "date": "2025-03-01T05:00:00.000Z",
932
+ "whoRegionDesc": "Africa",
933
+ "measlesTotal": 11,
934
+ "whoRegion": "AFRO"
935
+ },
936
+ {
937
+ "date": "2025-03-01T05:00:00.000Z",
938
+ "whoRegionDesc": "Africa",
939
+ "measlesTotal": 0,
940
+ "whoRegion": "AFRO"
941
+ },
942
+ {
943
+ "date": "2025-03-01T05:00:00.000Z",
944
+ "whoRegionDesc": "Africa",
945
+ "measlesTotal": 0,
946
+ "whoRegion": "AFRO"
947
+ },
948
+ {
949
+ "date": "2025-03-01T05:00:00.000Z",
950
+ "whoRegionDesc": "Africa",
951
+ "measlesTotal": 0,
952
+ "whoRegion": "AFRO"
953
+ },
954
+ {
955
+ "date": "2025-03-01T05:00:00.000Z",
956
+ "whoRegionDesc": "Africa",
957
+ "measlesTotal": 7,
958
+ "whoRegion": "AFRO"
959
+ },
960
+ {
961
+ "date": "2025-03-01T05:00:00.000Z",
962
+ "whoRegionDesc": "Africa",
963
+ "measlesTotal": 8,
964
+ "whoRegion": "AFRO"
965
+ },
966
+ {
967
+ "date": "2025-03-01T05:00:00.000Z",
968
+ "whoRegionDesc": "Africa",
969
+ "measlesTotal": 0,
970
+ "whoRegion": "AFRO"
971
+ },
972
+ {
973
+ "date": "2025-03-01T05:00:00.000Z",
974
+ "whoRegionDesc": "Americas",
975
+ "measlesTotal": 0,
976
+ "whoRegion": "AMRO"
977
+ },
978
+ {
979
+ "date": "2025-03-01T05:00:00.000Z",
980
+ "whoRegionDesc": "Americas",
981
+ "measlesTotal": 0,
982
+ "whoRegion": "AMRO"
983
+ },
984
+ {
985
+ "date": "2025-03-01T05:00:00.000Z",
986
+ "whoRegionDesc": "Americas",
987
+ "measlesTotal": 0,
988
+ "whoRegion": "AMRO"
989
+ },
990
+ {
991
+ "date": "2025-03-01T05:00:00.000Z",
992
+ "whoRegionDesc": "Americas",
993
+ "measlesTotal": 9,
994
+ "whoRegion": "AMRO"
995
+ },
996
+ {
997
+ "date": "2025-03-01T05:00:00.000Z",
998
+ "whoRegionDesc": "Americas",
999
+ "measlesTotal": 385,
1000
+ "whoRegion": "AMRO"
1001
+ },
1002
+ {
1003
+ "date": "2025-03-01T05:00:00.000Z",
1004
+ "whoRegionDesc": "Americas",
1005
+ "measlesTotal": 0,
1006
+ "whoRegion": "AMRO"
1007
+ },
1008
+ {
1009
+ "date": "2025-03-01T05:00:00.000Z",
1010
+ "whoRegionDesc": "Americas",
1011
+ "measlesTotal": 0,
1012
+ "whoRegion": "AMRO"
1013
+ },
1014
+ {
1015
+ "date": "2025-03-01T05:00:00.000Z",
1016
+ "whoRegionDesc": "Americas",
1017
+ "measlesTotal": 0,
1018
+ "whoRegion": "AMRO"
1019
+ },
1020
+ {
1021
+ "date": "2025-03-01T05:00:00.000Z",
1022
+ "whoRegionDesc": "Americas",
1023
+ "measlesTotal": 0,
1024
+ "whoRegion": "AMRO"
1025
+ },
1026
+ {
1027
+ "date": "2025-03-01T05:00:00.000Z",
1028
+ "whoRegionDesc": "Americas",
1029
+ "measlesTotal": 0,
1030
+ "whoRegion": "AMRO"
1031
+ },
1032
+ {
1033
+ "date": "2025-03-01T05:00:00.000Z",
1034
+ "whoRegionDesc": "Americas",
1035
+ "measlesTotal": 0,
1036
+ "whoRegion": "AMRO"
1037
+ },
1038
+ {
1039
+ "date": "2025-03-01T05:00:00.000Z",
1040
+ "whoRegionDesc": "Americas",
1041
+ "measlesTotal": 0,
1042
+ "whoRegion": "AMRO"
1043
+ },
1044
+ {
1045
+ "date": "2025-03-01T05:00:00.000Z",
1046
+ "whoRegionDesc": "Eastern Mediterranean",
1047
+ "measlesTotal": 1,
1048
+ "whoRegion": "EMRO"
1049
+ },
1050
+ {
1051
+ "date": "2025-03-01T05:00:00.000Z",
1052
+ "whoRegionDesc": "Eastern Mediterranean",
1053
+ "measlesTotal": 1557,
1054
+ "whoRegion": "EMRO"
1055
+ },
1056
+ {
1057
+ "date": "2025-03-01T05:00:00.000Z",
1058
+ "whoRegionDesc": "Eastern Mediterranean",
1059
+ "measlesTotal": 1,
1060
+ "whoRegion": "EMRO"
1061
+ },
1062
+ {
1063
+ "date": "2025-03-01T05:00:00.000Z",
1064
+ "whoRegionDesc": "Eastern Mediterranean",
1065
+ "measlesTotal": 162,
1066
+ "whoRegion": "EMRO"
1067
+ },
1068
+ {
1069
+ "date": "2025-03-01T05:00:00.000Z",
1070
+ "whoRegionDesc": "Eastern Mediterranean",
1071
+ "measlesTotal": 2314,
1072
+ "whoRegion": "EMRO"
1073
+ },
1074
+ {
1075
+ "date": "2025-03-01T05:00:00.000Z",
1076
+ "whoRegionDesc": "Eastern Mediterranean",
1077
+ "measlesTotal": 342,
1078
+ "whoRegion": "EMRO"
1079
+ },
1080
+ {
1081
+ "date": "2025-03-01T05:00:00.000Z",
1082
+ "whoRegionDesc": "Eastern Mediterranean",
1083
+ "measlesTotal": 11,
1084
+ "whoRegion": "EMRO"
1085
+ },
1086
+ {
1087
+ "date": "2025-03-01T05:00:00.000Z",
1088
+ "whoRegionDesc": "Europe",
1089
+ "measlesTotal": 0,
1090
+ "whoRegion": "EURO"
1091
+ },
1092
+ {
1093
+ "date": "2025-03-01T05:00:00.000Z",
1094
+ "whoRegionDesc": "Europe",
1095
+ "measlesTotal": 44,
1096
+ "whoRegion": "EURO"
1097
+ },
1098
+ {
1099
+ "date": "2025-03-01T05:00:00.000Z",
1100
+ "whoRegionDesc": "Europe",
1101
+ "measlesTotal": 15,
1102
+ "whoRegion": "EURO"
1103
+ },
1104
+ {
1105
+ "date": "2025-03-01T05:00:00.000Z",
1106
+ "whoRegionDesc": "Europe",
1107
+ "measlesTotal": 65,
1108
+ "whoRegion": "EURO"
1109
+ },
1110
+ {
1111
+ "date": "2025-03-01T05:00:00.000Z",
1112
+ "whoRegionDesc": "Europe",
1113
+ "measlesTotal": 110,
1114
+ "whoRegion": "EURO"
1115
+ },
1116
+ {
1117
+ "date": "2025-03-01T05:00:00.000Z",
1118
+ "whoRegionDesc": "Europe",
1119
+ "measlesTotal": 18,
1120
+ "whoRegion": "EURO"
1121
+ },
1122
+ {
1123
+ "date": "2025-03-01T05:00:00.000Z",
1124
+ "whoRegionDesc": "Europe",
1125
+ "measlesTotal": 0,
1126
+ "whoRegion": "EURO"
1127
+ },
1128
+ {
1129
+ "date": "2025-03-01T05:00:00.000Z",
1130
+ "whoRegionDesc": "Europe",
1131
+ "measlesTotal": 437,
1132
+ "whoRegion": "EURO"
1133
+ },
1134
+ {
1135
+ "date": "2025-03-01T05:00:00.000Z",
1136
+ "whoRegionDesc": "Europe",
1137
+ "measlesTotal": 6,
1138
+ "whoRegion": "EURO"
1139
+ },
1140
+ {
1141
+ "date": "2025-03-01T05:00:00.000Z",
1142
+ "whoRegionDesc": "Europe",
1143
+ "measlesTotal": 2,
1144
+ "whoRegion": "EURO"
1145
+ },
1146
+ {
1147
+ "date": "2025-03-01T05:00:00.000Z",
1148
+ "whoRegionDesc": "Europe",
1149
+ "measlesTotal": 82,
1150
+ "whoRegion": "EURO"
1151
+ },
1152
+ {
1153
+ "date": "2025-03-01T05:00:00.000Z",
1154
+ "whoRegionDesc": "Europe",
1155
+ "measlesTotal": 0,
1156
+ "whoRegion": "EURO"
1157
+ },
1158
+ {
1159
+ "date": "2025-03-01T05:00:00.000Z",
1160
+ "whoRegionDesc": "Europe",
1161
+ "measlesTotal": 0,
1162
+ "whoRegion": "EURO"
1163
+ },
1164
+ {
1165
+ "date": "2025-03-01T05:00:00.000Z",
1166
+ "whoRegionDesc": "Europe",
1167
+ "measlesTotal": 0,
1168
+ "whoRegion": "EURO"
1169
+ },
1170
+ {
1171
+ "date": "2025-03-01T05:00:00.000Z",
1172
+ "whoRegionDesc": "Europe",
1173
+ "measlesTotal": 1,
1174
+ "whoRegion": "EURO"
1175
+ },
1176
+ {
1177
+ "date": "2025-03-01T05:00:00.000Z",
1178
+ "whoRegionDesc": "Europe",
1179
+ "measlesTotal": 0,
1180
+ "whoRegion": "EURO"
1181
+ },
1182
+ {
1183
+ "date": "2025-03-01T05:00:00.000Z",
1184
+ "whoRegionDesc": "Europe",
1185
+ "measlesTotal": 96,
1186
+ "whoRegion": "EURO"
1187
+ },
1188
+ {
1189
+ "date": "2025-03-01T05:00:00.000Z",
1190
+ "whoRegionDesc": "Europe",
1191
+ "measlesTotal": 0,
1192
+ "whoRegion": "EURO"
1193
+ },
1194
+ {
1195
+ "date": "2025-03-01T05:00:00.000Z",
1196
+ "whoRegionDesc": "Southeast Asia",
1197
+ "measlesTotal": 0,
1198
+ "whoRegion": "SEARO"
1199
+ },
1200
+ {
1201
+ "date": "2025-03-01T05:00:00.000Z",
1202
+ "whoRegionDesc": "Southeast Asia",
1203
+ "measlesTotal": 0,
1204
+ "whoRegion": "SEARO"
1205
+ },
1206
+ {
1207
+ "date": "2025-03-01T05:00:00.000Z",
1208
+ "whoRegionDesc": "Southeast Asia",
1209
+ "measlesTotal": 255,
1210
+ "whoRegion": "SEARO"
1211
+ },
1212
+ {
1213
+ "date": "2025-03-01T05:00:00.000Z",
1214
+ "whoRegionDesc": "Southeast Asia",
1215
+ "measlesTotal": 166,
1216
+ "whoRegion": "SEARO"
1217
+ },
1218
+ {
1219
+ "date": "2025-03-01T05:00:00.000Z",
1220
+ "whoRegionDesc": "Western Pacific",
1221
+ "measlesTotal": 0,
1222
+ "whoRegion": "WPRO"
1223
+ },
1224
+ {
1225
+ "date": "2025-03-01T05:00:00.000Z",
1226
+ "whoRegionDesc": "Western Pacific",
1227
+ "measlesTotal": 0,
1228
+ "whoRegion": "WPRO"
1229
+ },
1230
+ {
1231
+ "date": "2025-03-01T05:00:00.000Z",
1232
+ "whoRegionDesc": "Western Pacific",
1233
+ "measlesTotal": 0,
1234
+ "whoRegion": "WPRO"
1235
+ },
1236
+ {
1237
+ "date": "2025-03-01T05:00:00.000Z",
1238
+ "whoRegionDesc": "Western Pacific",
1239
+ "measlesTotal": 0,
1240
+ "whoRegion": "WPRO"
1241
+ },
1242
+ {
1243
+ "date": "2025-03-01T05:00:00.000Z",
1244
+ "whoRegionDesc": "Western Pacific",
1245
+ "measlesTotal": 17,
1246
+ "whoRegion": "WPRO"
1247
+ },
1248
+ {
1249
+ "date": "2025-03-01T05:00:00.000Z",
1250
+ "whoRegionDesc": "Western Pacific",
1251
+ "measlesTotal": 0,
1252
+ "whoRegion": "WPRO"
1253
+ },
1254
+ {
1255
+ "date": "2025-03-01T05:00:00.000Z",
1256
+ "whoRegionDesc": "Western Pacific",
1257
+ "measlesTotal": 0,
1258
+ "whoRegion": "WPRO"
1259
+ },
1260
+ {
1261
+ "date": "2025-03-01T05:00:00.000Z",
1262
+ "whoRegionDesc": "Western Pacific",
1263
+ "measlesTotal": 223,
1264
+ "whoRegion": "WPRO"
1265
+ },
1266
+ {
1267
+ "date": "2025-03-01T05:00:00.000Z",
1268
+ "whoRegionDesc": "Western Pacific",
1269
+ "measlesTotal": 0,
1270
+ "whoRegion": "WPRO"
1271
+ },
1272
+ {
1273
+ "date": "2025-04-01T04:00:00.000Z",
1274
+ "whoRegionDesc": "Africa",
1275
+ "measlesTotal": 0,
1276
+ "whoRegion": "AFRO"
1277
+ },
1278
+ {
1279
+ "date": "2025-04-01T04:00:00.000Z",
1280
+ "whoRegionDesc": "Africa",
1281
+ "measlesTotal": 13,
1282
+ "whoRegion": "AFRO"
1283
+ },
1284
+ {
1285
+ "date": "2025-04-01T04:00:00.000Z",
1286
+ "whoRegionDesc": "Africa",
1287
+ "measlesTotal": 0,
1288
+ "whoRegion": "AFRO"
1289
+ },
1290
+ {
1291
+ "date": "2025-04-01T04:00:00.000Z",
1292
+ "whoRegionDesc": "Africa",
1293
+ "measlesTotal": 0,
1294
+ "whoRegion": "AFRO"
1295
+ },
1296
+ {
1297
+ "date": "2025-04-01T04:00:00.000Z",
1298
+ "whoRegionDesc": "Africa",
1299
+ "measlesTotal": 45,
1300
+ "whoRegion": "AFRO"
1301
+ },
1302
+ {
1303
+ "date": "2025-04-01T04:00:00.000Z",
1304
+ "whoRegionDesc": "Africa",
1305
+ "measlesTotal": 0,
1306
+ "whoRegion": "AFRO"
1307
+ },
1308
+ {
1309
+ "date": "2025-04-01T04:00:00.000Z",
1310
+ "whoRegionDesc": "Africa",
1311
+ "measlesTotal": 14,
1312
+ "whoRegion": "AFRO"
1313
+ },
1314
+ {
1315
+ "date": "2025-04-01T04:00:00.000Z",
1316
+ "whoRegionDesc": "Africa",
1317
+ "measlesTotal": 7,
1318
+ "whoRegion": "AFRO"
1319
+ },
1320
+ {
1321
+ "date": "2025-04-01T04:00:00.000Z",
1322
+ "whoRegionDesc": "Africa",
1323
+ "measlesTotal": 7,
1324
+ "whoRegion": "AFRO"
1325
+ },
1326
+ {
1327
+ "date": "2025-04-01T04:00:00.000Z",
1328
+ "whoRegionDesc": "Africa",
1329
+ "measlesTotal": 1,
1330
+ "whoRegion": "AFRO"
1331
+ },
1332
+ {
1333
+ "date": "2025-04-01T04:00:00.000Z",
1334
+ "whoRegionDesc": "Africa",
1335
+ "measlesTotal": 0,
1336
+ "whoRegion": "AFRO"
1337
+ },
1338
+ {
1339
+ "date": "2025-04-01T04:00:00.000Z",
1340
+ "whoRegionDesc": "Africa",
1341
+ "measlesTotal": 0,
1342
+ "whoRegion": "AFRO"
1343
+ },
1344
+ {
1345
+ "date": "2025-04-01T04:00:00.000Z",
1346
+ "whoRegionDesc": "Africa",
1347
+ "measlesTotal": 1,
1348
+ "whoRegion": "AFRO"
1349
+ },
1350
+ {
1351
+ "date": "2025-04-01T04:00:00.000Z",
1352
+ "whoRegionDesc": "Africa",
1353
+ "measlesTotal": 190,
1354
+ "whoRegion": "AFRO"
1355
+ },
1356
+ {
1357
+ "date": "2025-04-01T04:00:00.000Z",
1358
+ "whoRegionDesc": "Africa",
1359
+ "measlesTotal": 4,
1360
+ "whoRegion": "AFRO"
1361
+ },
1362
+ {
1363
+ "date": "2025-04-01T04:00:00.000Z",
1364
+ "whoRegionDesc": "Africa",
1365
+ "measlesTotal": 69,
1366
+ "whoRegion": "AFRO"
1367
+ },
1368
+ {
1369
+ "date": "2025-04-01T04:00:00.000Z",
1370
+ "whoRegionDesc": "Americas",
1371
+ "measlesTotal": 0,
1372
+ "whoRegion": "AMRO"
1373
+ },
1374
+ {
1375
+ "date": "2025-04-01T04:00:00.000Z",
1376
+ "whoRegionDesc": "Americas",
1377
+ "measlesTotal": 358,
1378
+ "whoRegion": "AMRO"
1379
+ },
1380
+ {
1381
+ "date": "2025-04-01T04:00:00.000Z",
1382
+ "whoRegionDesc": "Americas",
1383
+ "measlesTotal": 0,
1384
+ "whoRegion": "AMRO"
1385
+ },
1386
+ {
1387
+ "date": "2025-04-01T04:00:00.000Z",
1388
+ "whoRegionDesc": "Americas",
1389
+ "measlesTotal": 0,
1390
+ "whoRegion": "AMRO"
1391
+ },
1392
+ {
1393
+ "date": "2025-04-01T04:00:00.000Z",
1394
+ "whoRegionDesc": "Americas",
1395
+ "measlesTotal": 0,
1396
+ "whoRegion": "AMRO"
1397
+ },
1398
+ {
1399
+ "date": "2025-04-01T04:00:00.000Z",
1400
+ "whoRegionDesc": "Americas",
1401
+ "measlesTotal": 0,
1402
+ "whoRegion": "AMRO"
1403
+ },
1404
+ {
1405
+ "date": "2025-04-01T04:00:00.000Z",
1406
+ "whoRegionDesc": "Americas",
1407
+ "measlesTotal": 0,
1408
+ "whoRegion": "AMRO"
1409
+ },
1410
+ {
1411
+ "date": "2025-04-01T04:00:00.000Z",
1412
+ "whoRegionDesc": "Americas",
1413
+ "measlesTotal": 0,
1414
+ "whoRegion": "AMRO"
1415
+ },
1416
+ {
1417
+ "date": "2025-04-01T04:00:00.000Z",
1418
+ "whoRegionDesc": "Americas",
1419
+ "measlesTotal": 0,
1420
+ "whoRegion": "AMRO"
1421
+ },
1422
+ {
1423
+ "date": "2025-04-01T04:00:00.000Z",
1424
+ "whoRegionDesc": "Americas",
1425
+ "measlesTotal": 0,
1426
+ "whoRegion": "AMRO"
1427
+ },
1428
+ {
1429
+ "date": "2025-04-01T04:00:00.000Z",
1430
+ "whoRegionDesc": "Americas",
1431
+ "measlesTotal": 1,
1432
+ "whoRegion": "AMRO"
1433
+ },
1434
+ {
1435
+ "date": "2025-04-01T04:00:00.000Z",
1436
+ "whoRegionDesc": "Americas",
1437
+ "measlesTotal": 0,
1438
+ "whoRegion": "AMRO"
1439
+ },
1440
+ {
1441
+ "date": "2025-04-01T04:00:00.000Z",
1442
+ "whoRegionDesc": "Eastern Mediterranean",
1443
+ "measlesTotal": 0,
1444
+ "whoRegion": "EMRO"
1445
+ },
1446
+ {
1447
+ "date": "2025-04-01T04:00:00.000Z",
1448
+ "whoRegionDesc": "Eastern Mediterranean",
1449
+ "measlesTotal": 53,
1450
+ "whoRegion": "EMRO"
1451
+ },
1452
+ {
1453
+ "date": "2025-04-01T04:00:00.000Z",
1454
+ "whoRegionDesc": "Eastern Mediterranean",
1455
+ "measlesTotal": 0,
1456
+ "whoRegion": "EMRO"
1457
+ },
1458
+ {
1459
+ "date": "2025-04-01T04:00:00.000Z",
1460
+ "whoRegionDesc": "Eastern Mediterranean",
1461
+ "measlesTotal": 0,
1462
+ "whoRegion": "EMRO"
1463
+ },
1464
+ {
1465
+ "date": "2025-04-01T04:00:00.000Z",
1466
+ "whoRegionDesc": "Eastern Mediterranean",
1467
+ "measlesTotal": 1115,
1468
+ "whoRegion": "EMRO"
1469
+ },
1470
+ {
1471
+ "date": "2025-04-01T04:00:00.000Z",
1472
+ "whoRegionDesc": "Eastern Mediterranean",
1473
+ "measlesTotal": 4,
1474
+ "whoRegion": "EMRO"
1475
+ },
1476
+ {
1477
+ "date": "2025-04-01T04:00:00.000Z",
1478
+ "whoRegionDesc": "Eastern Mediterranean",
1479
+ "measlesTotal": 0,
1480
+ "whoRegion": "EMRO"
1481
+ },
1482
+ {
1483
+ "date": "2025-04-01T04:00:00.000Z",
1484
+ "whoRegionDesc": "Europe",
1485
+ "measlesTotal": 0,
1486
+ "whoRegion": "EURO"
1487
+ },
1488
+ {
1489
+ "date": "2025-04-01T04:00:00.000Z",
1490
+ "whoRegionDesc": "Europe",
1491
+ "measlesTotal": 0,
1492
+ "whoRegion": "EURO"
1493
+ },
1494
+ {
1495
+ "date": "2025-04-01T04:00:00.000Z",
1496
+ "whoRegionDesc": "Europe",
1497
+ "measlesTotal": 0,
1498
+ "whoRegion": "EURO"
1499
+ },
1500
+ {
1501
+ "date": "2025-04-01T04:00:00.000Z",
1502
+ "whoRegionDesc": "Europe",
1503
+ "measlesTotal": 0,
1504
+ "whoRegion": "EURO"
1505
+ },
1506
+ {
1507
+ "date": "2025-04-01T04:00:00.000Z",
1508
+ "whoRegionDesc": "Europe",
1509
+ "measlesTotal": 0,
1510
+ "whoRegion": "EURO"
1511
+ },
1512
+ {
1513
+ "date": "2025-04-01T04:00:00.000Z",
1514
+ "whoRegionDesc": "Europe",
1515
+ "measlesTotal": 0,
1516
+ "whoRegion": "EURO"
1517
+ },
1518
+ {
1519
+ "date": "2025-04-01T04:00:00.000Z",
1520
+ "whoRegionDesc": "Europe",
1521
+ "measlesTotal": 0,
1522
+ "whoRegion": "EURO"
1523
+ },
1524
+ {
1525
+ "date": "2025-04-01T04:00:00.000Z",
1526
+ "whoRegionDesc": "Europe",
1527
+ "measlesTotal": 0,
1528
+ "whoRegion": "EURO"
1529
+ },
1530
+ {
1531
+ "date": "2025-04-01T04:00:00.000Z",
1532
+ "whoRegionDesc": "Europe",
1533
+ "measlesTotal": 0,
1534
+ "whoRegion": "EURO"
1535
+ },
1536
+ {
1537
+ "date": "2025-04-01T04:00:00.000Z",
1538
+ "whoRegionDesc": "Europe",
1539
+ "measlesTotal": 0,
1540
+ "whoRegion": "EURO"
1541
+ },
1542
+ {
1543
+ "date": "2025-04-01T04:00:00.000Z",
1544
+ "whoRegionDesc": "Europe",
1545
+ "measlesTotal": 0,
1546
+ "whoRegion": "EURO"
1547
+ },
1548
+ {
1549
+ "date": "2025-04-01T04:00:00.000Z",
1550
+ "whoRegionDesc": "Europe",
1551
+ "measlesTotal": 0,
1552
+ "whoRegion": "EURO"
1553
+ },
1554
+ {
1555
+ "date": "2025-04-01T04:00:00.000Z",
1556
+ "whoRegionDesc": "Europe",
1557
+ "measlesTotal": 0,
1558
+ "whoRegion": "EURO"
1559
+ },
1560
+ {
1561
+ "date": "2025-04-01T04:00:00.000Z",
1562
+ "whoRegionDesc": "Europe",
1563
+ "measlesTotal": 0,
1564
+ "whoRegion": "EURO"
1565
+ },
1566
+ {
1567
+ "date": "2025-04-01T04:00:00.000Z",
1568
+ "whoRegionDesc": "Europe",
1569
+ "measlesTotal": 0,
1570
+ "whoRegion": "EURO"
1571
+ },
1572
+ {
1573
+ "date": "2025-04-01T04:00:00.000Z",
1574
+ "whoRegionDesc": "Europe",
1575
+ "measlesTotal": 0,
1576
+ "whoRegion": "EURO"
1577
+ },
1578
+ {
1579
+ "date": "2025-04-01T04:00:00.000Z",
1580
+ "whoRegionDesc": "Europe",
1581
+ "measlesTotal": 0,
1582
+ "whoRegion": "EURO"
1583
+ },
1584
+ {
1585
+ "date": "2025-04-01T04:00:00.000Z",
1586
+ "whoRegionDesc": "Europe",
1587
+ "measlesTotal": 4,
1588
+ "whoRegion": "EURO"
1589
+ },
1590
+ {
1591
+ "date": "2025-04-01T04:00:00.000Z",
1592
+ "whoRegionDesc": "Southeast Asia",
1593
+ "measlesTotal": 0,
1594
+ "whoRegion": "SEARO"
1595
+ },
1596
+ {
1597
+ "date": "2025-04-01T04:00:00.000Z",
1598
+ "whoRegionDesc": "Southeast Asia",
1599
+ "measlesTotal": 0,
1600
+ "whoRegion": "SEARO"
1601
+ },
1602
+ {
1603
+ "date": "2025-04-01T04:00:00.000Z",
1604
+ "whoRegionDesc": "Southeast Asia",
1605
+ "measlesTotal": 0,
1606
+ "whoRegion": "SEARO"
1607
+ },
1608
+ {
1609
+ "date": "2025-04-01T04:00:00.000Z",
1610
+ "whoRegionDesc": "Southeast Asia",
1611
+ "measlesTotal": 0,
1612
+ "whoRegion": "SEARO"
1613
+ },
1614
+ {
1615
+ "date": "2025-04-01T04:00:00.000Z",
1616
+ "whoRegionDesc": "Western Pacific",
1617
+ "measlesTotal": 0,
1618
+ "whoRegion": "WPRO"
1619
+ },
1620
+ {
1621
+ "date": "2025-04-01T04:00:00.000Z",
1622
+ "whoRegionDesc": "Western Pacific",
1623
+ "measlesTotal": 1,
1624
+ "whoRegion": "WPRO"
1625
+ },
1626
+ {
1627
+ "date": "2025-04-01T04:00:00.000Z",
1628
+ "whoRegionDesc": "Western Pacific",
1629
+ "measlesTotal": 0,
1630
+ "whoRegion": "WPRO"
1631
+ },
1632
+ {
1633
+ "date": "2025-04-01T04:00:00.000Z",
1634
+ "whoRegionDesc": "Western Pacific",
1635
+ "measlesTotal": 0,
1636
+ "whoRegion": "WPRO"
1637
+ },
1638
+ {
1639
+ "date": "2025-04-01T04:00:00.000Z",
1640
+ "whoRegionDesc": "Western Pacific",
1641
+ "measlesTotal": 0,
1642
+ "whoRegion": "WPRO"
1643
+ },
1644
+ {
1645
+ "date": "2025-04-01T04:00:00.000Z",
1646
+ "whoRegionDesc": "Western Pacific",
1647
+ "measlesTotal": 0,
1648
+ "whoRegion": "WPRO"
1649
+ },
1650
+ {
1651
+ "date": "2025-04-01T04:00:00.000Z",
1652
+ "whoRegionDesc": "Western Pacific",
1653
+ "measlesTotal": 0,
1654
+ "whoRegion": "WPRO"
1655
+ },
1656
+ {
1657
+ "date": "2025-04-01T04:00:00.000Z",
1658
+ "whoRegionDesc": "Western Pacific",
1659
+ "measlesTotal": 0,
1660
+ "whoRegion": "WPRO"
1661
+ },
1662
+ {
1663
+ "date": "2025-04-01T04:00:00.000Z",
1664
+ "whoRegionDesc": "Western Pacific",
1665
+ "measlesTotal": 0,
1666
+ "whoRegion": "WPRO"
1667
+ },
1668
+ {
1669
+ "date": "2025-05-01T04:00:00.000Z",
1670
+ "whoRegionDesc": "Africa",
1671
+ "measlesTotal": 0,
1672
+ "whoRegion": "AFRO"
1673
+ },
1674
+ {
1675
+ "date": "2025-05-01T04:00:00.000Z",
1676
+ "whoRegionDesc": "Africa",
1677
+ "measlesTotal": 0,
1678
+ "whoRegion": "AFRO"
1679
+ },
1680
+ {
1681
+ "date": "2025-05-01T04:00:00.000Z",
1682
+ "whoRegionDesc": "Africa",
1683
+ "measlesTotal": 3,
1684
+ "whoRegion": "AFRO"
1685
+ },
1686
+ {
1687
+ "date": "2025-05-01T04:00:00.000Z",
1688
+ "whoRegionDesc": "Africa",
1689
+ "measlesTotal": 0,
1690
+ "whoRegion": "AFRO"
1691
+ },
1692
+ {
1693
+ "date": "2025-05-01T04:00:00.000Z",
1694
+ "whoRegionDesc": "Africa",
1695
+ "measlesTotal": 0,
1696
+ "whoRegion": "AFRO"
1697
+ },
1698
+ {
1699
+ "date": "2025-05-01T04:00:00.000Z",
1700
+ "whoRegionDesc": "Africa",
1701
+ "measlesTotal": 0,
1702
+ "whoRegion": "AFRO"
1703
+ },
1704
+ {
1705
+ "date": "2025-05-01T04:00:00.000Z",
1706
+ "whoRegionDesc": "Africa",
1707
+ "measlesTotal": 0,
1708
+ "whoRegion": "AFRO"
1709
+ },
1710
+ {
1711
+ "date": "2025-05-01T04:00:00.000Z",
1712
+ "whoRegionDesc": "Africa",
1713
+ "measlesTotal": 0,
1714
+ "whoRegion": "AFRO"
1715
+ },
1716
+ {
1717
+ "date": "2025-05-01T04:00:00.000Z",
1718
+ "whoRegionDesc": "Africa",
1719
+ "measlesTotal": 0,
1720
+ "whoRegion": "AFRO"
1721
+ },
1722
+ {
1723
+ "date": "2025-05-01T04:00:00.000Z",
1724
+ "whoRegionDesc": "Africa",
1725
+ "measlesTotal": 0,
1726
+ "whoRegion": "AFRO"
1727
+ },
1728
+ {
1729
+ "date": "2025-05-01T04:00:00.000Z",
1730
+ "whoRegionDesc": "Africa",
1731
+ "measlesTotal": 0,
1732
+ "whoRegion": "AFRO"
1733
+ },
1734
+ {
1735
+ "date": "2025-05-01T04:00:00.000Z",
1736
+ "whoRegionDesc": "Africa",
1737
+ "measlesTotal": 0,
1738
+ "whoRegion": "AFRO"
1739
+ },
1740
+ {
1741
+ "date": "2025-05-01T04:00:00.000Z",
1742
+ "whoRegionDesc": "Africa",
1743
+ "measlesTotal": 0,
1744
+ "whoRegion": "AFRO"
1745
+ },
1746
+ {
1747
+ "date": "2025-05-01T04:00:00.000Z",
1748
+ "whoRegionDesc": "Africa",
1749
+ "measlesTotal": 0,
1750
+ "whoRegion": "AFRO"
1751
+ },
1752
+ {
1753
+ "date": "2025-05-01T04:00:00.000Z",
1754
+ "whoRegionDesc": "Africa",
1755
+ "measlesTotal": 0,
1756
+ "whoRegion": "AFRO"
1757
+ },
1758
+ {
1759
+ "date": "2025-05-01T04:00:00.000Z",
1760
+ "whoRegionDesc": "Africa",
1761
+ "measlesTotal": 0,
1762
+ "whoRegion": "AFRO"
1763
+ },
1764
+ {
1765
+ "date": "2025-05-01T04:00:00.000Z",
1766
+ "whoRegionDesc": "Americas",
1767
+ "measlesTotal": 0,
1768
+ "whoRegion": "AMRO"
1769
+ },
1770
+ {
1771
+ "date": "2025-05-01T04:00:00.000Z",
1772
+ "whoRegionDesc": "Americas",
1773
+ "measlesTotal": 0,
1774
+ "whoRegion": "AMRO"
1775
+ },
1776
+ {
1777
+ "date": "2025-05-01T04:00:00.000Z",
1778
+ "whoRegionDesc": "Americas",
1779
+ "measlesTotal": 0,
1780
+ "whoRegion": "AMRO"
1781
+ },
1782
+ {
1783
+ "date": "2025-05-01T04:00:00.000Z",
1784
+ "whoRegionDesc": "Americas",
1785
+ "measlesTotal": 0,
1786
+ "whoRegion": "AMRO"
1787
+ },
1788
+ {
1789
+ "date": "2025-05-01T04:00:00.000Z",
1790
+ "whoRegionDesc": "Americas",
1791
+ "measlesTotal": 0,
1792
+ "whoRegion": "AMRO"
1793
+ },
1794
+ {
1795
+ "date": "2025-05-01T04:00:00.000Z",
1796
+ "whoRegionDesc": "Americas",
1797
+ "measlesTotal": 0,
1798
+ "whoRegion": "AMRO"
1799
+ },
1800
+ {
1801
+ "date": "2025-05-01T04:00:00.000Z",
1802
+ "whoRegionDesc": "Americas",
1803
+ "measlesTotal": 0,
1804
+ "whoRegion": "AMRO"
1805
+ },
1806
+ {
1807
+ "date": "2025-05-01T04:00:00.000Z",
1808
+ "whoRegionDesc": "Americas",
1809
+ "measlesTotal": 0,
1810
+ "whoRegion": "AMRO"
1811
+ },
1812
+ {
1813
+ "date": "2025-05-01T04:00:00.000Z",
1814
+ "whoRegionDesc": "Americas",
1815
+ "measlesTotal": 0,
1816
+ "whoRegion": "AMRO"
1817
+ },
1818
+ {
1819
+ "date": "2025-05-01T04:00:00.000Z",
1820
+ "whoRegionDesc": "Americas",
1821
+ "measlesTotal": 0,
1822
+ "whoRegion": "AMRO"
1823
+ },
1824
+ {
1825
+ "date": "2025-05-01T04:00:00.000Z",
1826
+ "whoRegionDesc": "Americas",
1827
+ "measlesTotal": 0,
1828
+ "whoRegion": "AMRO"
1829
+ },
1830
+ {
1831
+ "date": "2025-05-01T04:00:00.000Z",
1832
+ "whoRegionDesc": "Americas",
1833
+ "measlesTotal": 0,
1834
+ "whoRegion": "AMRO"
1835
+ },
1836
+ {
1837
+ "date": "2025-05-01T04:00:00.000Z",
1838
+ "whoRegionDesc": "Eastern Mediterranean",
1839
+ "measlesTotal": 0,
1840
+ "whoRegion": "EMRO"
1841
+ },
1842
+ {
1843
+ "date": "2025-05-01T04:00:00.000Z",
1844
+ "whoRegionDesc": "Eastern Mediterranean",
1845
+ "measlesTotal": 0,
1846
+ "whoRegion": "EMRO"
1847
+ },
1848
+ {
1849
+ "date": "2025-05-01T04:00:00.000Z",
1850
+ "whoRegionDesc": "Eastern Mediterranean",
1851
+ "measlesTotal": 0,
1852
+ "whoRegion": "EMRO"
1853
+ },
1854
+ {
1855
+ "date": "2025-05-01T04:00:00.000Z",
1856
+ "whoRegionDesc": "Eastern Mediterranean",
1857
+ "measlesTotal": 0,
1858
+ "whoRegion": "EMRO"
1859
+ },
1860
+ {
1861
+ "date": "2025-05-01T04:00:00.000Z",
1862
+ "whoRegionDesc": "Eastern Mediterranean",
1863
+ "measlesTotal": 0,
1864
+ "whoRegion": "EMRO"
1865
+ },
1866
+ {
1867
+ "date": "2025-05-01T04:00:00.000Z",
1868
+ "whoRegionDesc": "Eastern Mediterranean",
1869
+ "measlesTotal": 0,
1870
+ "whoRegion": "EMRO"
1871
+ },
1872
+ {
1873
+ "date": "2025-05-01T04:00:00.000Z",
1874
+ "whoRegionDesc": "Eastern Mediterranean",
1875
+ "measlesTotal": 0,
1876
+ "whoRegion": "EMRO"
1877
+ },
1878
+ {
1879
+ "date": "2025-05-01T04:00:00.000Z",
1880
+ "whoRegionDesc": "Europe",
1881
+ "measlesTotal": 0,
1882
+ "whoRegion": "EURO"
1883
+ },
1884
+ {
1885
+ "date": "2025-05-01T04:00:00.000Z",
1886
+ "whoRegionDesc": "Europe",
1887
+ "measlesTotal": 0,
1888
+ "whoRegion": "EURO"
1889
+ },
1890
+ {
1891
+ "date": "2025-05-01T04:00:00.000Z",
1892
+ "whoRegionDesc": "Europe",
1893
+ "measlesTotal": 0,
1894
+ "whoRegion": "EURO"
1895
+ },
1896
+ {
1897
+ "date": "2025-05-01T04:00:00.000Z",
1898
+ "whoRegionDesc": "Europe",
1899
+ "measlesTotal": 0,
1900
+ "whoRegion": "EURO"
1901
+ },
1902
+ {
1903
+ "date": "2025-05-01T04:00:00.000Z",
1904
+ "whoRegionDesc": "Europe",
1905
+ "measlesTotal": 0,
1906
+ "whoRegion": "EURO"
1907
+ },
1908
+ {
1909
+ "date": "2025-05-01T04:00:00.000Z",
1910
+ "whoRegionDesc": "Europe",
1911
+ "measlesTotal": 0,
1912
+ "whoRegion": "EURO"
1913
+ },
1914
+ {
1915
+ "date": "2025-05-01T04:00:00.000Z",
1916
+ "whoRegionDesc": "Europe",
1917
+ "measlesTotal": 0,
1918
+ "whoRegion": "EURO"
1919
+ },
1920
+ {
1921
+ "date": "2025-05-01T04:00:00.000Z",
1922
+ "whoRegionDesc": "Europe",
1923
+ "measlesTotal": 0,
1924
+ "whoRegion": "EURO"
1925
+ },
1926
+ {
1927
+ "date": "2025-05-01T04:00:00.000Z",
1928
+ "whoRegionDesc": "Europe",
1929
+ "measlesTotal": 0,
1930
+ "whoRegion": "EURO"
1931
+ },
1932
+ {
1933
+ "date": "2025-05-01T04:00:00.000Z",
1934
+ "whoRegionDesc": "Europe",
1935
+ "measlesTotal": 0,
1936
+ "whoRegion": "EURO"
1937
+ },
1938
+ {
1939
+ "date": "2025-05-01T04:00:00.000Z",
1940
+ "whoRegionDesc": "Europe",
1941
+ "measlesTotal": 0,
1942
+ "whoRegion": "EURO"
1943
+ },
1944
+ {
1945
+ "date": "2025-05-01T04:00:00.000Z",
1946
+ "whoRegionDesc": "Europe",
1947
+ "measlesTotal": 0,
1948
+ "whoRegion": "EURO"
1949
+ },
1950
+ {
1951
+ "date": "2025-05-01T04:00:00.000Z",
1952
+ "whoRegionDesc": "Europe",
1953
+ "measlesTotal": 0,
1954
+ "whoRegion": "EURO"
1955
+ },
1956
+ {
1957
+ "date": "2025-05-01T04:00:00.000Z",
1958
+ "whoRegionDesc": "Europe",
1959
+ "measlesTotal": 0,
1960
+ "whoRegion": "EURO"
1961
+ },
1962
+ {
1963
+ "date": "2025-05-01T04:00:00.000Z",
1964
+ "whoRegionDesc": "Europe",
1965
+ "measlesTotal": 0,
1966
+ "whoRegion": "EURO"
1967
+ },
1968
+ {
1969
+ "date": "2025-05-01T04:00:00.000Z",
1970
+ "whoRegionDesc": "Europe",
1971
+ "measlesTotal": 0,
1972
+ "whoRegion": "EURO"
1973
+ },
1974
+ {
1975
+ "date": "2025-05-01T04:00:00.000Z",
1976
+ "whoRegionDesc": "Europe",
1977
+ "measlesTotal": 0,
1978
+ "whoRegion": "EURO"
1979
+ },
1980
+ {
1981
+ "date": "2025-05-01T04:00:00.000Z",
1982
+ "whoRegionDesc": "Europe",
1983
+ "measlesTotal": 0,
1984
+ "whoRegion": "EURO"
1985
+ },
1986
+ {
1987
+ "date": "2025-05-01T04:00:00.000Z",
1988
+ "whoRegionDesc": "Southeast Asia",
1989
+ "measlesTotal": 0,
1990
+ "whoRegion": "SEARO"
1991
+ },
1992
+ {
1993
+ "date": "2025-05-01T04:00:00.000Z",
1994
+ "whoRegionDesc": "Southeast Asia",
1995
+ "measlesTotal": 0,
1996
+ "whoRegion": "SEARO"
1997
+ },
1998
+ {
1999
+ "date": "2025-05-01T04:00:00.000Z",
2000
+ "whoRegionDesc": "Southeast Asia",
2001
+ "measlesTotal": 0,
2002
+ "whoRegion": "SEARO"
2003
+ },
2004
+ {
2005
+ "date": "2025-05-01T04:00:00.000Z",
2006
+ "whoRegionDesc": "Southeast Asia",
2007
+ "measlesTotal": 0,
2008
+ "whoRegion": "SEARO"
2009
+ },
2010
+ {
2011
+ "date": "2025-05-01T04:00:00.000Z",
2012
+ "whoRegionDesc": "Western Pacific",
2013
+ "measlesTotal": 0,
2014
+ "whoRegion": "WPRO"
2015
+ },
2016
+ {
2017
+ "date": "2025-05-01T04:00:00.000Z",
2018
+ "whoRegionDesc": "Western Pacific",
2019
+ "measlesTotal": 0,
2020
+ "whoRegion": "WPRO"
2021
+ },
2022
+ {
2023
+ "date": "2025-05-01T04:00:00.000Z",
2024
+ "whoRegionDesc": "Western Pacific",
2025
+ "measlesTotal": 0,
2026
+ "whoRegion": "WPRO"
2027
+ },
2028
+ {
2029
+ "date": "2025-05-01T04:00:00.000Z",
2030
+ "whoRegionDesc": "Western Pacific",
2031
+ "measlesTotal": 0,
2032
+ "whoRegion": "WPRO"
2033
+ },
2034
+ {
2035
+ "date": "2025-05-01T04:00:00.000Z",
2036
+ "whoRegionDesc": "Western Pacific",
2037
+ "measlesTotal": 0,
2038
+ "whoRegion": "WPRO"
2039
+ },
2040
+ {
2041
+ "date": "2025-05-01T04:00:00.000Z",
2042
+ "whoRegionDesc": "Western Pacific",
2043
+ "measlesTotal": 0,
2044
+ "whoRegion": "WPRO"
2045
+ },
2046
+ {
2047
+ "date": "2025-05-01T04:00:00.000Z",
2048
+ "whoRegionDesc": "Western Pacific",
2049
+ "measlesTotal": 0,
2050
+ "whoRegion": "WPRO"
2051
+ },
2052
+ {
2053
+ "date": "2025-05-01T04:00:00.000Z",
2054
+ "whoRegionDesc": "Western Pacific",
2055
+ "measlesTotal": 0,
2056
+ "whoRegion": "WPRO"
2057
+ },
2058
+ {
2059
+ "date": "2025-05-01T04:00:00.000Z",
2060
+ "whoRegionDesc": "Western Pacific",
2061
+ "measlesTotal": 0,
2062
+ "whoRegion": "WPRO"
2063
+ }
2064
+ ]
2065
+ },
2066
+ "config": {
2067
+ "background": "#FFFFFF",
2068
+ "bar": {
2069
+ "fill": "#2D72D2"
2070
+ },
2071
+ "arc": {
2072
+ "fill": "#2D72D2"
2073
+ },
2074
+ "area": {
2075
+ "fill": "#2D72D2"
2076
+ },
2077
+ "rect": {
2078
+ "fill": "#2D72D2"
2079
+ },
2080
+ "circle": {
2081
+ "fill": "#2D72D2"
2082
+ },
2083
+ "point": {
2084
+ "stroke": "#2D72D2"
2085
+ },
2086
+ "line": {
2087
+ "stroke": "#2D72D2"
2088
+ },
2089
+ "font": "Source-Sans-Pro",
2090
+ "padding": 20,
2091
+ "mark": {
2092
+ "opacity": 0.75,
2093
+ "tooltip": true
2094
+ },
2095
+ "title": {
2096
+ "color": "#111418",
2097
+ "fontSize": 14,
2098
+ "fontWeight": 600,
2099
+ "anchor": "start",
2100
+ "subtitleColor": "#5F6B7C",
2101
+ "subtitleFontSize": 12,
2102
+ "subtitlePadding": 7
2103
+ },
2104
+ "axis": {
2105
+ "labelFontSize": 12,
2106
+ "titleFontSize": 14,
2107
+ "titleFontWeight": 400,
2108
+ "titlePadding": 10,
2109
+ "titleColor": "#111418",
2110
+ "labelColor": "#738091",
2111
+ "gridColor": "#DCE0E5",
2112
+ "gridOpacity": 1,
2113
+ "domainColor": "#5F6B7C",
2114
+ "tickColor": "#5F6B7C"
2115
+ },
2116
+ "legend": {
2117
+ "titleColor": "#111418",
2118
+ "labelColor": "#111418",
2119
+ "titleFontSize": 12,
2120
+ "labelFontSize": 12,
2121
+ "titleFontWeight": 600
2122
+ },
2123
+ "view": {
2124
+ "stroke": "transparent"
2125
+ },
2126
+ "text": {
2127
+ "color": "#111418",
2128
+ "fontSize": 12,
2129
+ "fontWeight": 400
2130
+ },
2131
+ "range": {
2132
+ "category": [
2133
+ "#2D72D2",
2134
+ "#DB2C6F",
2135
+ "#8EB125",
2136
+ "#9D3F9D",
2137
+ "#00A396",
2138
+ "#D1980B",
2139
+ "#D33D17",
2140
+ "#7961DB",
2141
+ "#29A634",
2142
+ "#946638",
2143
+ "#147EB3"
2144
+ ]
2145
+ }
2146
+ }
2147
+ }