@genspectrum/dashboard-components 0.1.1

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 (186) hide show
  1. package/LICENSE +661 -0
  2. package/README.md +109 -0
  3. package/custom-elements.json +1587 -0
  4. package/dist/dashboard-components.js +7322 -0
  5. package/dist/dashboard-components.js.map +1 -0
  6. package/dist/genspectrum-components.d.ts +298 -0
  7. package/dist/style.css +2930 -0
  8. package/package.json +109 -0
  9. package/src/constants.ts +6 -0
  10. package/src/index.ts +1 -0
  11. package/src/lapisApi/ReferenceGenome.ts +30 -0
  12. package/src/lapisApi/__mockData__/referenceGenome.json +58 -0
  13. package/src/lapisApi/lapisApi.ts +99 -0
  14. package/src/lapisApi/lapisTypes.ts +51 -0
  15. package/src/operator/Dataset.ts +3 -0
  16. package/src/operator/DivisionOperator.spec.ts +27 -0
  17. package/src/operator/DivisionOperator.ts +60 -0
  18. package/src/operator/FetchAggregatedOperator.ts +44 -0
  19. package/src/operator/FetchInsertionsOperator.ts +24 -0
  20. package/src/operator/FetchSubstitutionsOrDeletionsOperator.ts +49 -0
  21. package/src/operator/FillMissingOperator.spec.ts +26 -0
  22. package/src/operator/FillMissingOperator.ts +30 -0
  23. package/src/operator/GroupByAndSumOperator.spec.ts +26 -0
  24. package/src/operator/GroupByAndSumOperator.ts +26 -0
  25. package/src/operator/GroupByOperator.spec.ts +43 -0
  26. package/src/operator/GroupByOperator.ts +32 -0
  27. package/src/operator/MapOperator.spec.ts +13 -0
  28. package/src/operator/MapOperator.ts +16 -0
  29. package/src/operator/MockOperator.spec.ts +11 -0
  30. package/src/operator/MockOperator.ts +12 -0
  31. package/src/operator/Operator.ts +5 -0
  32. package/src/operator/SlidingOperator.spec.ts +52 -0
  33. package/src/operator/SlidingOperator.ts +23 -0
  34. package/src/operator/SortOperator.spec.ts +13 -0
  35. package/src/operator/SortOperator.ts +16 -0
  36. package/src/preact/LapisUrlContext.ts +3 -0
  37. package/src/preact/ReferenceGenomeContext.ts +5 -0
  38. package/src/preact/components/SegmentSelector.tsx +62 -0
  39. package/src/preact/components/chart.stories.tsx +42 -0
  40. package/src/preact/components/chart.tsx +32 -0
  41. package/src/preact/components/checkbox-selector.stories.tsx +56 -0
  42. package/src/preact/components/checkbox-selector.tsx +46 -0
  43. package/src/preact/components/confidence-interval-selector.tsx +45 -0
  44. package/src/preact/components/csv-download-button.stories.tsx +25 -0
  45. package/src/preact/components/csv-download-button.tsx +51 -0
  46. package/src/preact/components/error-display.stories.tsx +22 -0
  47. package/src/preact/components/error-display.tsx +5 -0
  48. package/src/preact/components/headline.stories.tsx +29 -0
  49. package/src/preact/components/headline.tsx +16 -0
  50. package/src/preact/components/info.stories.tsx +22 -0
  51. package/src/preact/components/info.tsx +16 -0
  52. package/src/preact/components/loading-display.stories.tsx +20 -0
  53. package/src/preact/components/loading-display.tsx +5 -0
  54. package/src/preact/components/min-max-percent-slider.css +40 -0
  55. package/src/preact/components/min-max-range-slider.tsx +95 -0
  56. package/src/preact/components/mutation-type-selector.tsx +30 -0
  57. package/src/preact/components/no-data-display.stories.tsx +20 -0
  58. package/src/preact/components/no-data-display.tsx +5 -0
  59. package/src/preact/components/percent-intput.tsx +49 -0
  60. package/src/preact/components/proportion-selector-dropdown.stories.tsx +66 -0
  61. package/src/preact/components/proportion-selector-dropdown.tsx +33 -0
  62. package/src/preact/components/proportion-selector.stories.tsx +81 -0
  63. package/src/preact/components/proportion-selector.tsx +43 -0
  64. package/src/preact/components/scaling-selector.stories.tsx +25 -0
  65. package/src/preact/components/scaling-selector.tsx +36 -0
  66. package/src/preact/components/select.stories.tsx +42 -0
  67. package/src/preact/components/select.tsx +21 -0
  68. package/src/preact/components/table.stories.tsx +24 -0
  69. package/src/preact/components/table.tsx +51 -0
  70. package/src/preact/components/tabs.stories.tsx +60 -0
  71. package/src/preact/components/tabs.tsx +49 -0
  72. package/src/preact/dateRangeSelector/date-range-selector.stories.tsx +32 -0
  73. package/src/preact/dateRangeSelector/date-range-selector.tsx +228 -0
  74. package/src/preact/dateRangeSelector/dateConversion.ts +8 -0
  75. package/src/preact/locationFilter/__mockData__/aggregated.json +775 -0
  76. package/src/preact/locationFilter/fetchAutocompletionList.spec.ts +36 -0
  77. package/src/preact/locationFilter/fetchAutocompletionList.ts +43 -0
  78. package/src/preact/locationFilter/location-filter.stories.tsx +50 -0
  79. package/src/preact/locationFilter/location-filter.tsx +112 -0
  80. package/src/preact/mutationComparison/__mockData__/nucleotideMutationsOtherVariant.json +295 -0
  81. package/src/preact/mutationComparison/__mockData__/nucleotideMutationsSomeVariant.json +304 -0
  82. package/src/preact/mutationComparison/fetchMutationData.spec.ts +118 -0
  83. package/src/preact/mutationComparison/getMutationComparisonTableData.spec.ts +125 -0
  84. package/src/preact/mutationComparison/getMutationComparisonTableData.ts +40 -0
  85. package/src/preact/mutationComparison/mutation-comparison-table.tsx +43 -0
  86. package/src/preact/mutationComparison/mutation-comparison-venn.tsx +122 -0
  87. package/src/preact/mutationComparison/mutation-comparison.stories.tsx +152 -0
  88. package/src/preact/mutationComparison/mutation-comparison.tsx +179 -0
  89. package/src/preact/mutationComparison/queryMutationData.ts +53 -0
  90. package/src/preact/mutationFilter/mutation-filter.stories.tsx +164 -0
  91. package/src/preact/mutationFilter/mutation-filter.tsx +268 -0
  92. package/src/preact/mutationFilter/parseAndValidateMutation.ts +54 -0
  93. package/src/preact/mutationFilter/parseMutation.spec.ts +150 -0
  94. package/src/preact/mutationFilter/sequenceTypeFromSegment.spec.ts +66 -0
  95. package/src/preact/mutationFilter/sequenceTypeFromSegment.ts +20 -0
  96. package/src/preact/mutations/__mockData__/nucleotideInsertions.json +252 -0
  97. package/src/preact/mutations/__mockData__/nucleotideMutations.json +880 -0
  98. package/src/preact/mutations/getInsertionsTableData.spec.ts +36 -0
  99. package/src/preact/mutations/getInsertionsTableData.ts +10 -0
  100. package/src/preact/mutations/getMutationsGridData.spec.ts +135 -0
  101. package/src/preact/mutations/getMutationsGridData.ts +92 -0
  102. package/src/preact/mutations/getMutationsTableData.spec.ts +94 -0
  103. package/src/preact/mutations/getMutationsTableData.ts +17 -0
  104. package/src/preact/mutations/mutations-grid.tsx +84 -0
  105. package/src/preact/mutations/mutations-insertions-table.tsx +33 -0
  106. package/src/preact/mutations/mutations-table.tsx +47 -0
  107. package/src/preact/mutations/mutations.stories.tsx +95 -0
  108. package/src/preact/mutations/mutations.tsx +192 -0
  109. package/src/preact/mutations/queryMutations.ts +55 -0
  110. package/src/preact/prevalenceOverTime/__mockData__/denominator.json +1700 -0
  111. package/src/preact/prevalenceOverTime/__mockData__/denominatorOneVariant.json +608 -0
  112. package/src/preact/prevalenceOverTime/__mockData__/numeratorEG.json +1560 -0
  113. package/src/preact/prevalenceOverTime/__mockData__/numeratorJN1.json +592 -0
  114. package/src/preact/prevalenceOverTime/__mockData__/numeratorOneVariant.json +604 -0
  115. package/src/preact/prevalenceOverTime/getPrevalenceOverTimeTableData.spec.ts +67 -0
  116. package/src/preact/prevalenceOverTime/getPrevalenceOverTimeTableData.ts +18 -0
  117. package/src/preact/prevalenceOverTime/prevalence-over-time-bar-chart.tsx +105 -0
  118. package/src/preact/prevalenceOverTime/prevalence-over-time-bubble-chart.tsx +86 -0
  119. package/src/preact/prevalenceOverTime/prevalence-over-time-line-chart.tsx +141 -0
  120. package/src/preact/prevalenceOverTime/prevalence-over-time-table.tsx +46 -0
  121. package/src/preact/prevalenceOverTime/prevalence-over-time.stories.tsx +165 -0
  122. package/src/preact/prevalenceOverTime/prevalence-over-time.tsx +202 -0
  123. package/src/preact/relativeGrowthAdvantage/__mockData__/denominator.json +376 -0
  124. package/src/preact/relativeGrowthAdvantage/__mockData__/numerator.json +332 -0
  125. package/src/preact/relativeGrowthAdvantage/relative-growth-advantage-chart.tsx +138 -0
  126. package/src/preact/relativeGrowthAdvantage/relative-growth-advantage.stories.tsx +71 -0
  127. package/src/preact/relativeGrowthAdvantage/relative-growth-advantage.tsx +136 -0
  128. package/src/preact/shared/charts/LogitScale.ts +48 -0
  129. package/src/preact/shared/charts/colors.ts +26 -0
  130. package/src/preact/shared/charts/confideceInterval.ts +29 -0
  131. package/src/preact/shared/charts/getYAxisScale.ts +16 -0
  132. package/src/preact/shared/charts/scales.ts +16 -0
  133. package/src/preact/shared/icons/DeleteIcon.tsx +17 -0
  134. package/src/preact/shared/sort/sortInsertions.spec.ts +47 -0
  135. package/src/preact/shared/sort/sortInsertions.ts +21 -0
  136. package/src/preact/shared/sort/sortMutationPositions.spec.ts +31 -0
  137. package/src/preact/shared/sort/sortMutationPositions.ts +14 -0
  138. package/src/preact/shared/sort/sortSubstitutionsAndDeletions.spec.ts +47 -0
  139. package/src/preact/shared/sort/sortSubstitutionsAndDeletions.ts +17 -0
  140. package/src/preact/shared/table/formatProportion.ts +3 -0
  141. package/src/preact/textInput/__mockData__/aggregated_hosts.json +24 -0
  142. package/src/preact/textInput/fetchAutocompleteList.ts +9 -0
  143. package/src/preact/textInput/text-input.stories.tsx +49 -0
  144. package/src/preact/textInput/text-input.tsx +73 -0
  145. package/src/preact/useQuery.ts +27 -0
  146. package/src/query/queryInsertions.ts +14 -0
  147. package/src/query/queryPrevalenceOverTime.ts +126 -0
  148. package/src/query/queryRelativeGrowthAdvantage.ts +131 -0
  149. package/src/query/querySubstitutionsOrDeletions.ts +19 -0
  150. package/src/styles/tailwind.css +3 -0
  151. package/src/styles/tailwind.d.ts +3 -0
  152. package/src/types.ts +23 -0
  153. package/src/utils/mutations.spec.ts +64 -0
  154. package/src/utils/mutations.ts +165 -0
  155. package/src/utils/temporal.spec.ts +97 -0
  156. package/src/utils/temporal.ts +348 -0
  157. package/src/utils/test-utils.ts +5 -0
  158. package/src/utils/type-utils.ts +15 -0
  159. package/src/utils/utils.spec.ts +16 -0
  160. package/src/utils/utils.ts +38 -0
  161. package/src/web-components/PreactLitAdapter.tsx +62 -0
  162. package/src/web-components/PreactLitAdapterWithGridJsStyles.tsx +12 -0
  163. package/src/web-components/app.ts +51 -0
  164. package/src/web-components/display/index.ts +4 -0
  165. package/src/web-components/display/mutation-comparison-component.stories.ts +138 -0
  166. package/src/web-components/display/mutation-comparison-component.tsx +31 -0
  167. package/src/web-components/display/mutations-component.stories.ts +107 -0
  168. package/src/web-components/display/mutations-component.tsx +27 -0
  169. package/src/web-components/display/prevalence-over-time-component.stories.ts +205 -0
  170. package/src/web-components/display/prevalence-over-time-component.tsx +46 -0
  171. package/src/web-components/display/relative-growth-advantage-component.stories.ts +89 -0
  172. package/src/web-components/display/relative-growth-advantage-component.tsx +37 -0
  173. package/src/web-components/index.ts +3 -0
  174. package/src/web-components/input/date-range-selector-component.stories.ts +53 -0
  175. package/src/web-components/input/date-range-selector-component.tsx +33 -0
  176. package/src/web-components/input/index.ts +4 -0
  177. package/src/web-components/input/location-filter-component.stories.ts +184 -0
  178. package/src/web-components/input/location-filter-component.tsx +68 -0
  179. package/src/web-components/input/location-filter.mdx +25 -0
  180. package/src/web-components/input/mutation-filter-component.stories.ts +97 -0
  181. package/src/web-components/input/mutation-filter-component.tsx +27 -0
  182. package/src/web-components/input/text-input-component.stories.ts +92 -0
  183. package/src/web-components/input/text-input-component.tsx +30 -0
  184. package/src/web-components/lapis-context.ts +3 -0
  185. package/src/web-components/reference-genome-context.ts +5 -0
  186. package/src/web-components/withinShadowRoot.story.ts +34 -0
@@ -0,0 +1,608 @@
1
+ {
2
+ "errors": [],
3
+ "info": {
4
+ "apiVersion": 1,
5
+ "dataVersion": 1709685650,
6
+ "deprecationDate": null,
7
+ "deprecationInfo": null,
8
+ "acknowledgement": null
9
+ },
10
+ "data": [
11
+ {
12
+ "date": "2023-11-20",
13
+ "count": 913
14
+ },
15
+ {
16
+ "date": "2023-11-21",
17
+ "count": 738
18
+ },
19
+ {
20
+ "date": "2023-11-22",
21
+ "count": 552
22
+ },
23
+ {
24
+ "date": "2023-11-23",
25
+ "count": 289
26
+ },
27
+ {
28
+ "date": "2023-11-24",
29
+ "count": 516
30
+ },
31
+ {
32
+ "date": "2023-11-25",
33
+ "count": 435
34
+ },
35
+ {
36
+ "date": "2023-11-26",
37
+ "count": 584
38
+ },
39
+ {
40
+ "date": "2023-11-27",
41
+ "count": 1161
42
+ },
43
+ {
44
+ "date": "2023-11-28",
45
+ "count": 1015
46
+ },
47
+ {
48
+ "date": "2023-11-29",
49
+ "count": 916
50
+ },
51
+ {
52
+ "date": "2023-11-30",
53
+ "count": 714
54
+ },
55
+ {
56
+ "date": "2023-12-01",
57
+ "count": 726
58
+ },
59
+ {
60
+ "date": "2023-12-02",
61
+ "count": 463
62
+ },
63
+ {
64
+ "date": "2023-12-03",
65
+ "count": 471
66
+ },
67
+ {
68
+ "date": "2023-12-04",
69
+ "count": 1159
70
+ },
71
+ {
72
+ "date": "2023-12-05",
73
+ "count": 958
74
+ },
75
+ {
76
+ "date": "2023-12-06",
77
+ "count": 923
78
+ },
79
+ {
80
+ "date": "2023-12-07",
81
+ "count": 825
82
+ },
83
+ {
84
+ "date": "2023-12-08",
85
+ "count": 632
86
+ },
87
+ {
88
+ "date": "2023-12-09",
89
+ "count": 416
90
+ },
91
+ {
92
+ "date": "2023-12-10",
93
+ "count": 438
94
+ },
95
+ {
96
+ "date": "2023-12-11",
97
+ "count": 954
98
+ },
99
+ {
100
+ "date": "2023-12-12",
101
+ "count": 883
102
+ },
103
+ {
104
+ "date": "2023-12-13",
105
+ "count": 935
106
+ },
107
+ {
108
+ "date": "2023-12-14",
109
+ "count": 799
110
+ },
111
+ {
112
+ "date": "2023-12-15",
113
+ "count": 642
114
+ },
115
+ {
116
+ "date": "2023-12-16",
117
+ "count": 448
118
+ },
119
+ {
120
+ "date": "2023-12-17",
121
+ "count": 460
122
+ },
123
+ {
124
+ "date": "2023-12-18",
125
+ "count": 1037
126
+ },
127
+ {
128
+ "date": "2023-12-19",
129
+ "count": 926
130
+ },
131
+ {
132
+ "date": "2023-12-20",
133
+ "count": 816
134
+ },
135
+ {
136
+ "date": "2023-12-21",
137
+ "count": 742
138
+ },
139
+ {
140
+ "date": "2023-12-22",
141
+ "count": 643
142
+ },
143
+ {
144
+ "date": "2023-12-23",
145
+ "count": 427
146
+ },
147
+ {
148
+ "date": "2023-12-24",
149
+ "count": 403
150
+ },
151
+ {
152
+ "date": "2023-12-25",
153
+ "count": 320
154
+ },
155
+ {
156
+ "date": "2023-12-26",
157
+ "count": 1136
158
+ },
159
+ {
160
+ "date": "2023-12-27",
161
+ "count": 981
162
+ },
163
+ {
164
+ "date": "2023-12-28",
165
+ "count": 890
166
+ },
167
+ {
168
+ "date": "2023-12-29",
169
+ "count": 751
170
+ },
171
+ {
172
+ "date": "2023-12-30",
173
+ "count": 432
174
+ },
175
+ {
176
+ "date": "2023-12-31",
177
+ "count": 367
178
+ },
179
+ {
180
+ "date": "2024-01-01",
181
+ "count": 471
182
+ },
183
+ {
184
+ "date": "2024-01-02",
185
+ "count": 1160
186
+ },
187
+ {
188
+ "date": "2024-01-03",
189
+ "count": 904
190
+ },
191
+ {
192
+ "date": "2024-01-04",
193
+ "count": 842
194
+ },
195
+ {
196
+ "date": "2024-01-05",
197
+ "count": 510
198
+ },
199
+ {
200
+ "date": "2024-01-06",
201
+ "count": 356
202
+ },
203
+ {
204
+ "date": "2024-01-07",
205
+ "count": 332
206
+ },
207
+ {
208
+ "date": "2024-01-08",
209
+ "count": 910
210
+ },
211
+ {
212
+ "date": "2024-01-09",
213
+ "count": 605
214
+ },
215
+ {
216
+ "date": "2024-01-10",
217
+ "count": 681
218
+ },
219
+ {
220
+ "date": "2024-01-11",
221
+ "count": 707
222
+ },
223
+ {
224
+ "date": "2024-01-12",
225
+ "count": 483
226
+ },
227
+ {
228
+ "date": "2024-01-13",
229
+ "count": 326
230
+ },
231
+ {
232
+ "date": "2024-01-14",
233
+ "count": 326
234
+ },
235
+ {
236
+ "date": "2024-01-15",
237
+ "count": 543
238
+ },
239
+ {
240
+ "date": "2024-01-16",
241
+ "count": 607
242
+ },
243
+ {
244
+ "date": "2024-01-17",
245
+ "count": 606
246
+ },
247
+ {
248
+ "date": "2024-01-18",
249
+ "count": 576
250
+ },
251
+ {
252
+ "date": "2024-01-19",
253
+ "count": 359
254
+ },
255
+ {
256
+ "date": "2024-01-20",
257
+ "count": 252
258
+ },
259
+ {
260
+ "date": "2024-01-21",
261
+ "count": 271
262
+ },
263
+ {
264
+ "date": "2024-01-22",
265
+ "count": 595
266
+ },
267
+ {
268
+ "date": "2024-01-23",
269
+ "count": 585
270
+ },
271
+ {
272
+ "date": "2024-01-24",
273
+ "count": 412
274
+ },
275
+ {
276
+ "date": "2024-01-25",
277
+ "count": 407
278
+ },
279
+ {
280
+ "date": "2024-01-26",
281
+ "count": 266
282
+ },
283
+ {
284
+ "date": "2024-01-27",
285
+ "count": 207
286
+ },
287
+ {
288
+ "date": "2024-01-28",
289
+ "count": 162
290
+ },
291
+ {
292
+ "date": "2024-01-29",
293
+ "count": 545
294
+ },
295
+ {
296
+ "date": "2024-01-30",
297
+ "count": 492
298
+ },
299
+ {
300
+ "date": "2024-01-31",
301
+ "count": 428
302
+ },
303
+ {
304
+ "date": "2024-02-01",
305
+ "count": 352
306
+ },
307
+ {
308
+ "date": "2024-02-02",
309
+ "count": 298
310
+ },
311
+ {
312
+ "date": "2024-02-03",
313
+ "count": 173
314
+ },
315
+ {
316
+ "date": "2024-02-04",
317
+ "count": 183
318
+ },
319
+ {
320
+ "date": "2024-02-05",
321
+ "count": 382
322
+ },
323
+ {
324
+ "date": "2024-02-06",
325
+ "count": 421
326
+ },
327
+ {
328
+ "date": "2024-02-07",
329
+ "count": 360
330
+ },
331
+ {
332
+ "date": "2024-02-08",
333
+ "count": 292
334
+ },
335
+ {
336
+ "date": "2024-02-09",
337
+ "count": 235
338
+ },
339
+ {
340
+ "date": "2024-02-10",
341
+ "count": 122
342
+ },
343
+ {
344
+ "date": "2024-02-11",
345
+ "count": 127
346
+ },
347
+ {
348
+ "date": "2024-02-12",
349
+ "count": 341
350
+ },
351
+ {
352
+ "date": "2024-02-13",
353
+ "count": 194
354
+ },
355
+ {
356
+ "date": "2024-02-14",
357
+ "count": 188
358
+ },
359
+ {
360
+ "date": "2024-02-15",
361
+ "count": 112
362
+ },
363
+ {
364
+ "date": "2024-02-16",
365
+ "count": 87
366
+ },
367
+ {
368
+ "date": "2024-02-17",
369
+ "count": 32
370
+ },
371
+ {
372
+ "date": "2024-02-18",
373
+ "count": 41
374
+ },
375
+ {
376
+ "date": "2024-02-19",
377
+ "count": 60
378
+ },
379
+ {
380
+ "date": "2024-02-20",
381
+ "count": 33
382
+ },
383
+ {
384
+ "date": "2024-02-21",
385
+ "count": 20
386
+ },
387
+ {
388
+ "date": "2024-02-22",
389
+ "count": 14
390
+ },
391
+ {
392
+ "date": "2024-02-23",
393
+ "count": 7
394
+ },
395
+ {
396
+ "date": "2024-02-24",
397
+ "count": 9
398
+ },
399
+ {
400
+ "date": "2024-02-25",
401
+ "count": 7
402
+ },
403
+ {
404
+ "date": "2024-02-26",
405
+ "count": 15
406
+ },
407
+ {
408
+ "date": "2023-10-01",
409
+ "count": 464
410
+ },
411
+ {
412
+ "date": "2023-10-02",
413
+ "count": 913
414
+ },
415
+ {
416
+ "date": "2023-10-03",
417
+ "count": 812
418
+ },
419
+ {
420
+ "date": "2023-10-04",
421
+ "count": 731
422
+ },
423
+ {
424
+ "date": "2023-10-05",
425
+ "count": 658
426
+ },
427
+ {
428
+ "date": "2023-10-06",
429
+ "count": 550
430
+ },
431
+ {
432
+ "date": "2023-10-07",
433
+ "count": 377
434
+ },
435
+ {
436
+ "date": "2023-10-08",
437
+ "count": 375
438
+ },
439
+ {
440
+ "date": "2023-10-09",
441
+ "count": 750
442
+ },
443
+ {
444
+ "date": "2023-10-10",
445
+ "count": 780
446
+ },
447
+ {
448
+ "date": "2023-10-11",
449
+ "count": 698
450
+ },
451
+ {
452
+ "date": "2023-10-12",
453
+ "count": 598
454
+ },
455
+ {
456
+ "date": "2023-10-13",
457
+ "count": 526
458
+ },
459
+ {
460
+ "date": "2023-10-14",
461
+ "count": 296
462
+ },
463
+ {
464
+ "date": "2023-10-15",
465
+ "count": 289
466
+ },
467
+ {
468
+ "date": "2023-10-16",
469
+ "count": 647
470
+ },
471
+ {
472
+ "date": "2023-10-17",
473
+ "count": 663
474
+ },
475
+ {
476
+ "date": "2023-10-18",
477
+ "count": 672
478
+ },
479
+ {
480
+ "date": "2023-10-19",
481
+ "count": 616
482
+ },
483
+ {
484
+ "date": "2023-10-20",
485
+ "count": 502
486
+ },
487
+ {
488
+ "date": "2023-10-21",
489
+ "count": 332
490
+ },
491
+ {
492
+ "date": "2023-10-22",
493
+ "count": 331
494
+ },
495
+ {
496
+ "date": "2023-10-23",
497
+ "count": 762
498
+ },
499
+ {
500
+ "date": "2023-10-24",
501
+ "count": 680
502
+ },
503
+ {
504
+ "date": "2023-10-25",
505
+ "count": 636
506
+ },
507
+ {
508
+ "date": "2023-10-26",
509
+ "count": 573
510
+ },
511
+ {
512
+ "date": "2023-10-27",
513
+ "count": 540
514
+ },
515
+ {
516
+ "date": "2023-10-28",
517
+ "count": 309
518
+ },
519
+ {
520
+ "date": "2023-10-29",
521
+ "count": 322
522
+ },
523
+ {
524
+ "date": "2023-10-30",
525
+ "count": 764
526
+ },
527
+ {
528
+ "date": "2023-10-31",
529
+ "count": 599
530
+ },
531
+ {
532
+ "date": "2023-11-01",
533
+ "count": 637
534
+ },
535
+ {
536
+ "date": "2023-11-02",
537
+ "count": 564
538
+ },
539
+ {
540
+ "date": "2023-11-03",
541
+ "count": 487
542
+ },
543
+ {
544
+ "date": "2023-11-04",
545
+ "count": 368
546
+ },
547
+ {
548
+ "date": "2023-11-05",
549
+ "count": 435
550
+ },
551
+ {
552
+ "date": "2023-11-06",
553
+ "count": 911
554
+ },
555
+ {
556
+ "date": "2023-11-07",
557
+ "count": 792
558
+ },
559
+ {
560
+ "date": "2023-11-08",
561
+ "count": 732
562
+ },
563
+ {
564
+ "date": "2023-11-09",
565
+ "count": 691
566
+ },
567
+ {
568
+ "date": "2023-11-10",
569
+ "count": 554
570
+ },
571
+ {
572
+ "date": "2023-11-11",
573
+ "count": 365
574
+ },
575
+ {
576
+ "date": "2023-11-12",
577
+ "count": 416
578
+ },
579
+ {
580
+ "date": "2023-11-13",
581
+ "count": 931
582
+ },
583
+ {
584
+ "date": "2023-11-14",
585
+ "count": 750
586
+ },
587
+ {
588
+ "date": "2023-11-15",
589
+ "count": 733
590
+ },
591
+ {
592
+ "date": "2023-11-16",
593
+ "count": 546
594
+ },
595
+ {
596
+ "date": "2023-11-17",
597
+ "count": 567
598
+ },
599
+ {
600
+ "date": "2023-11-18",
601
+ "count": 390
602
+ },
603
+ {
604
+ "date": "2023-11-19",
605
+ "count": 449
606
+ }
607
+ ]
608
+ }