@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.
- package/LICENSE +661 -0
- package/README.md +109 -0
- package/custom-elements.json +1587 -0
- package/dist/dashboard-components.js +7322 -0
- package/dist/dashboard-components.js.map +1 -0
- package/dist/genspectrum-components.d.ts +298 -0
- package/dist/style.css +2930 -0
- package/package.json +109 -0
- package/src/constants.ts +6 -0
- package/src/index.ts +1 -0
- package/src/lapisApi/ReferenceGenome.ts +30 -0
- package/src/lapisApi/__mockData__/referenceGenome.json +58 -0
- package/src/lapisApi/lapisApi.ts +99 -0
- package/src/lapisApi/lapisTypes.ts +51 -0
- package/src/operator/Dataset.ts +3 -0
- package/src/operator/DivisionOperator.spec.ts +27 -0
- package/src/operator/DivisionOperator.ts +60 -0
- package/src/operator/FetchAggregatedOperator.ts +44 -0
- package/src/operator/FetchInsertionsOperator.ts +24 -0
- package/src/operator/FetchSubstitutionsOrDeletionsOperator.ts +49 -0
- package/src/operator/FillMissingOperator.spec.ts +26 -0
- package/src/operator/FillMissingOperator.ts +30 -0
- package/src/operator/GroupByAndSumOperator.spec.ts +26 -0
- package/src/operator/GroupByAndSumOperator.ts +26 -0
- package/src/operator/GroupByOperator.spec.ts +43 -0
- package/src/operator/GroupByOperator.ts +32 -0
- package/src/operator/MapOperator.spec.ts +13 -0
- package/src/operator/MapOperator.ts +16 -0
- package/src/operator/MockOperator.spec.ts +11 -0
- package/src/operator/MockOperator.ts +12 -0
- package/src/operator/Operator.ts +5 -0
- package/src/operator/SlidingOperator.spec.ts +52 -0
- package/src/operator/SlidingOperator.ts +23 -0
- package/src/operator/SortOperator.spec.ts +13 -0
- package/src/operator/SortOperator.ts +16 -0
- package/src/preact/LapisUrlContext.ts +3 -0
- package/src/preact/ReferenceGenomeContext.ts +5 -0
- package/src/preact/components/SegmentSelector.tsx +62 -0
- package/src/preact/components/chart.stories.tsx +42 -0
- package/src/preact/components/chart.tsx +32 -0
- package/src/preact/components/checkbox-selector.stories.tsx +56 -0
- package/src/preact/components/checkbox-selector.tsx +46 -0
- package/src/preact/components/confidence-interval-selector.tsx +45 -0
- package/src/preact/components/csv-download-button.stories.tsx +25 -0
- package/src/preact/components/csv-download-button.tsx +51 -0
- package/src/preact/components/error-display.stories.tsx +22 -0
- package/src/preact/components/error-display.tsx +5 -0
- package/src/preact/components/headline.stories.tsx +29 -0
- package/src/preact/components/headline.tsx +16 -0
- package/src/preact/components/info.stories.tsx +22 -0
- package/src/preact/components/info.tsx +16 -0
- package/src/preact/components/loading-display.stories.tsx +20 -0
- package/src/preact/components/loading-display.tsx +5 -0
- package/src/preact/components/min-max-percent-slider.css +40 -0
- package/src/preact/components/min-max-range-slider.tsx +95 -0
- package/src/preact/components/mutation-type-selector.tsx +30 -0
- package/src/preact/components/no-data-display.stories.tsx +20 -0
- package/src/preact/components/no-data-display.tsx +5 -0
- package/src/preact/components/percent-intput.tsx +49 -0
- package/src/preact/components/proportion-selector-dropdown.stories.tsx +66 -0
- package/src/preact/components/proportion-selector-dropdown.tsx +33 -0
- package/src/preact/components/proportion-selector.stories.tsx +81 -0
- package/src/preact/components/proportion-selector.tsx +43 -0
- package/src/preact/components/scaling-selector.stories.tsx +25 -0
- package/src/preact/components/scaling-selector.tsx +36 -0
- package/src/preact/components/select.stories.tsx +42 -0
- package/src/preact/components/select.tsx +21 -0
- package/src/preact/components/table.stories.tsx +24 -0
- package/src/preact/components/table.tsx +51 -0
- package/src/preact/components/tabs.stories.tsx +60 -0
- package/src/preact/components/tabs.tsx +49 -0
- package/src/preact/dateRangeSelector/date-range-selector.stories.tsx +32 -0
- package/src/preact/dateRangeSelector/date-range-selector.tsx +228 -0
- package/src/preact/dateRangeSelector/dateConversion.ts +8 -0
- package/src/preact/locationFilter/__mockData__/aggregated.json +775 -0
- package/src/preact/locationFilter/fetchAutocompletionList.spec.ts +36 -0
- package/src/preact/locationFilter/fetchAutocompletionList.ts +43 -0
- package/src/preact/locationFilter/location-filter.stories.tsx +50 -0
- package/src/preact/locationFilter/location-filter.tsx +112 -0
- package/src/preact/mutationComparison/__mockData__/nucleotideMutationsOtherVariant.json +295 -0
- package/src/preact/mutationComparison/__mockData__/nucleotideMutationsSomeVariant.json +304 -0
- package/src/preact/mutationComparison/fetchMutationData.spec.ts +118 -0
- package/src/preact/mutationComparison/getMutationComparisonTableData.spec.ts +125 -0
- package/src/preact/mutationComparison/getMutationComparisonTableData.ts +40 -0
- package/src/preact/mutationComparison/mutation-comparison-table.tsx +43 -0
- package/src/preact/mutationComparison/mutation-comparison-venn.tsx +122 -0
- package/src/preact/mutationComparison/mutation-comparison.stories.tsx +152 -0
- package/src/preact/mutationComparison/mutation-comparison.tsx +179 -0
- package/src/preact/mutationComparison/queryMutationData.ts +53 -0
- package/src/preact/mutationFilter/mutation-filter.stories.tsx +164 -0
- package/src/preact/mutationFilter/mutation-filter.tsx +268 -0
- package/src/preact/mutationFilter/parseAndValidateMutation.ts +54 -0
- package/src/preact/mutationFilter/parseMutation.spec.ts +150 -0
- package/src/preact/mutationFilter/sequenceTypeFromSegment.spec.ts +66 -0
- package/src/preact/mutationFilter/sequenceTypeFromSegment.ts +20 -0
- package/src/preact/mutations/__mockData__/nucleotideInsertions.json +252 -0
- package/src/preact/mutations/__mockData__/nucleotideMutations.json +880 -0
- package/src/preact/mutations/getInsertionsTableData.spec.ts +36 -0
- package/src/preact/mutations/getInsertionsTableData.ts +10 -0
- package/src/preact/mutations/getMutationsGridData.spec.ts +135 -0
- package/src/preact/mutations/getMutationsGridData.ts +92 -0
- package/src/preact/mutations/getMutationsTableData.spec.ts +94 -0
- package/src/preact/mutations/getMutationsTableData.ts +17 -0
- package/src/preact/mutations/mutations-grid.tsx +84 -0
- package/src/preact/mutations/mutations-insertions-table.tsx +33 -0
- package/src/preact/mutations/mutations-table.tsx +47 -0
- package/src/preact/mutations/mutations.stories.tsx +95 -0
- package/src/preact/mutations/mutations.tsx +192 -0
- package/src/preact/mutations/queryMutations.ts +55 -0
- package/src/preact/prevalenceOverTime/__mockData__/denominator.json +1700 -0
- package/src/preact/prevalenceOverTime/__mockData__/denominatorOneVariant.json +608 -0
- package/src/preact/prevalenceOverTime/__mockData__/numeratorEG.json +1560 -0
- package/src/preact/prevalenceOverTime/__mockData__/numeratorJN1.json +592 -0
- package/src/preact/prevalenceOverTime/__mockData__/numeratorOneVariant.json +604 -0
- package/src/preact/prevalenceOverTime/getPrevalenceOverTimeTableData.spec.ts +67 -0
- package/src/preact/prevalenceOverTime/getPrevalenceOverTimeTableData.ts +18 -0
- package/src/preact/prevalenceOverTime/prevalence-over-time-bar-chart.tsx +105 -0
- package/src/preact/prevalenceOverTime/prevalence-over-time-bubble-chart.tsx +86 -0
- package/src/preact/prevalenceOverTime/prevalence-over-time-line-chart.tsx +141 -0
- package/src/preact/prevalenceOverTime/prevalence-over-time-table.tsx +46 -0
- package/src/preact/prevalenceOverTime/prevalence-over-time.stories.tsx +165 -0
- package/src/preact/prevalenceOverTime/prevalence-over-time.tsx +202 -0
- package/src/preact/relativeGrowthAdvantage/__mockData__/denominator.json +376 -0
- package/src/preact/relativeGrowthAdvantage/__mockData__/numerator.json +332 -0
- package/src/preact/relativeGrowthAdvantage/relative-growth-advantage-chart.tsx +138 -0
- package/src/preact/relativeGrowthAdvantage/relative-growth-advantage.stories.tsx +71 -0
- package/src/preact/relativeGrowthAdvantage/relative-growth-advantage.tsx +136 -0
- package/src/preact/shared/charts/LogitScale.ts +48 -0
- package/src/preact/shared/charts/colors.ts +26 -0
- package/src/preact/shared/charts/confideceInterval.ts +29 -0
- package/src/preact/shared/charts/getYAxisScale.ts +16 -0
- package/src/preact/shared/charts/scales.ts +16 -0
- package/src/preact/shared/icons/DeleteIcon.tsx +17 -0
- package/src/preact/shared/sort/sortInsertions.spec.ts +47 -0
- package/src/preact/shared/sort/sortInsertions.ts +21 -0
- package/src/preact/shared/sort/sortMutationPositions.spec.ts +31 -0
- package/src/preact/shared/sort/sortMutationPositions.ts +14 -0
- package/src/preact/shared/sort/sortSubstitutionsAndDeletions.spec.ts +47 -0
- package/src/preact/shared/sort/sortSubstitutionsAndDeletions.ts +17 -0
- package/src/preact/shared/table/formatProportion.ts +3 -0
- package/src/preact/textInput/__mockData__/aggregated_hosts.json +24 -0
- package/src/preact/textInput/fetchAutocompleteList.ts +9 -0
- package/src/preact/textInput/text-input.stories.tsx +49 -0
- package/src/preact/textInput/text-input.tsx +73 -0
- package/src/preact/useQuery.ts +27 -0
- package/src/query/queryInsertions.ts +14 -0
- package/src/query/queryPrevalenceOverTime.ts +126 -0
- package/src/query/queryRelativeGrowthAdvantage.ts +131 -0
- package/src/query/querySubstitutionsOrDeletions.ts +19 -0
- package/src/styles/tailwind.css +3 -0
- package/src/styles/tailwind.d.ts +3 -0
- package/src/types.ts +23 -0
- package/src/utils/mutations.spec.ts +64 -0
- package/src/utils/mutations.ts +165 -0
- package/src/utils/temporal.spec.ts +97 -0
- package/src/utils/temporal.ts +348 -0
- package/src/utils/test-utils.ts +5 -0
- package/src/utils/type-utils.ts +15 -0
- package/src/utils/utils.spec.ts +16 -0
- package/src/utils/utils.ts +38 -0
- package/src/web-components/PreactLitAdapter.tsx +62 -0
- package/src/web-components/PreactLitAdapterWithGridJsStyles.tsx +12 -0
- package/src/web-components/app.ts +51 -0
- package/src/web-components/display/index.ts +4 -0
- package/src/web-components/display/mutation-comparison-component.stories.ts +138 -0
- package/src/web-components/display/mutation-comparison-component.tsx +31 -0
- package/src/web-components/display/mutations-component.stories.ts +107 -0
- package/src/web-components/display/mutations-component.tsx +27 -0
- package/src/web-components/display/prevalence-over-time-component.stories.ts +205 -0
- package/src/web-components/display/prevalence-over-time-component.tsx +46 -0
- package/src/web-components/display/relative-growth-advantage-component.stories.ts +89 -0
- package/src/web-components/display/relative-growth-advantage-component.tsx +37 -0
- package/src/web-components/index.ts +3 -0
- package/src/web-components/input/date-range-selector-component.stories.ts +53 -0
- package/src/web-components/input/date-range-selector-component.tsx +33 -0
- package/src/web-components/input/index.ts +4 -0
- package/src/web-components/input/location-filter-component.stories.ts +184 -0
- package/src/web-components/input/location-filter-component.tsx +68 -0
- package/src/web-components/input/location-filter.mdx +25 -0
- package/src/web-components/input/mutation-filter-component.stories.ts +97 -0
- package/src/web-components/input/mutation-filter-component.tsx +27 -0
- package/src/web-components/input/text-input-component.stories.ts +92 -0
- package/src/web-components/input/text-input-component.tsx +30 -0
- package/src/web-components/lapis-context.ts +3 -0
- package/src/web-components/reference-genome-context.ts +5 -0
- package/src/web-components/withinShadowRoot.story.ts +34 -0
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
import { type FunctionComponent } from 'preact';
|
|
2
|
+
import { useContext, useState } from 'preact/hooks';
|
|
3
|
+
|
|
4
|
+
import { getPrevalenceOverTimeTableData } from './getPrevalenceOverTimeTableData';
|
|
5
|
+
import PrevalenceOverTimeBarChart from './prevalence-over-time-bar-chart';
|
|
6
|
+
import PrevalenceOverTimeBubbleChart from './prevalence-over-time-bubble-chart';
|
|
7
|
+
import PrevalenceOverTimeLineChart from './prevalence-over-time-line-chart';
|
|
8
|
+
import PrevalenceOverTimeTable from './prevalence-over-time-table';
|
|
9
|
+
import { type PrevalenceOverTimeData, queryPrevalenceOverTime } from '../../query/queryPrevalenceOverTime';
|
|
10
|
+
import { type NamedLapisFilter, type TemporalGranularity } from '../../types';
|
|
11
|
+
import { LapisUrlContext } from '../LapisUrlContext';
|
|
12
|
+
import { ConfidenceIntervalSelector } from '../components/confidence-interval-selector';
|
|
13
|
+
import { CsvDownloadButton } from '../components/csv-download-button';
|
|
14
|
+
import { ErrorDisplay } from '../components/error-display';
|
|
15
|
+
import Headline from '../components/headline';
|
|
16
|
+
import Info from '../components/info';
|
|
17
|
+
import { LoadingDisplay } from '../components/loading-display';
|
|
18
|
+
import { NoDataDisplay } from '../components/no-data-display';
|
|
19
|
+
import { ScalingSelector } from '../components/scaling-selector';
|
|
20
|
+
import Tabs from '../components/tabs';
|
|
21
|
+
import { type ConfidenceIntervalMethod } from '../shared/charts/confideceInterval';
|
|
22
|
+
import { type ScaleType } from '../shared/charts/getYAxisScale';
|
|
23
|
+
import { useQuery } from '../useQuery';
|
|
24
|
+
|
|
25
|
+
export type View = 'bar' | 'line' | 'bubble' | 'table';
|
|
26
|
+
|
|
27
|
+
export interface PrevalenceOverTimeProps {
|
|
28
|
+
numerator: NamedLapisFilter | NamedLapisFilter[];
|
|
29
|
+
denominator: NamedLapisFilter;
|
|
30
|
+
granularity: TemporalGranularity;
|
|
31
|
+
smoothingWindow: number;
|
|
32
|
+
views: View[];
|
|
33
|
+
confidenceIntervalMethods: ConfidenceIntervalMethod[];
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export const PrevalenceOverTime: FunctionComponent<PrevalenceOverTimeProps> = ({
|
|
37
|
+
numerator,
|
|
38
|
+
denominator,
|
|
39
|
+
granularity,
|
|
40
|
+
smoothingWindow,
|
|
41
|
+
views,
|
|
42
|
+
confidenceIntervalMethods,
|
|
43
|
+
}) => {
|
|
44
|
+
const lapis = useContext(LapisUrlContext);
|
|
45
|
+
|
|
46
|
+
const { data, error, isLoading } = useQuery(
|
|
47
|
+
() => queryPrevalenceOverTime(numerator, denominator, granularity, smoothingWindow, lapis),
|
|
48
|
+
[lapis, numerator, denominator, granularity, smoothingWindow],
|
|
49
|
+
);
|
|
50
|
+
|
|
51
|
+
const headline = 'Prevalence over time';
|
|
52
|
+
|
|
53
|
+
if (isLoading) {
|
|
54
|
+
return (
|
|
55
|
+
<Headline heading={headline}>
|
|
56
|
+
<LoadingDisplay />
|
|
57
|
+
</Headline>
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
if (error !== null) {
|
|
62
|
+
return (
|
|
63
|
+
<Headline heading={headline}>
|
|
64
|
+
<ErrorDisplay error={error} />
|
|
65
|
+
</Headline>
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
if (data === null) {
|
|
70
|
+
return (
|
|
71
|
+
<Headline heading={headline}>
|
|
72
|
+
<NoDataDisplay />
|
|
73
|
+
</Headline>
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
return (
|
|
78
|
+
<Headline heading={headline}>
|
|
79
|
+
<PrevalenceOverTimeTabs
|
|
80
|
+
views={views}
|
|
81
|
+
data={data}
|
|
82
|
+
granularity={granularity}
|
|
83
|
+
confidenceIntervalMethods={confidenceIntervalMethods}
|
|
84
|
+
/>
|
|
85
|
+
</Headline>
|
|
86
|
+
);
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
type PrevalenceOverTimeTabsProps = {
|
|
90
|
+
views: View[];
|
|
91
|
+
data: PrevalenceOverTimeData;
|
|
92
|
+
granularity: TemporalGranularity;
|
|
93
|
+
confidenceIntervalMethods: ConfidenceIntervalMethod[];
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
const PrevalenceOverTimeTabs: FunctionComponent<PrevalenceOverTimeTabsProps> = ({
|
|
97
|
+
views,
|
|
98
|
+
data,
|
|
99
|
+
granularity,
|
|
100
|
+
confidenceIntervalMethods,
|
|
101
|
+
}) => {
|
|
102
|
+
const [yAxisScaleType, setYAxisScaleType] = useState<ScaleType>('linear');
|
|
103
|
+
const [confidenceIntervalMethod, setConfidenceIntervalMethod] = useState<ConfidenceIntervalMethod>(
|
|
104
|
+
confidenceIntervalMethods.length > 0 ? confidenceIntervalMethods[0] : 'none',
|
|
105
|
+
);
|
|
106
|
+
|
|
107
|
+
const getTab = (view: View) => {
|
|
108
|
+
switch (view) {
|
|
109
|
+
case 'bar':
|
|
110
|
+
return {
|
|
111
|
+
title: 'Bar',
|
|
112
|
+
content: (
|
|
113
|
+
<PrevalenceOverTimeBarChart
|
|
114
|
+
data={data}
|
|
115
|
+
yAxisScaleType={yAxisScaleType}
|
|
116
|
+
confidenceIntervalMethod={confidenceIntervalMethod}
|
|
117
|
+
/>
|
|
118
|
+
),
|
|
119
|
+
};
|
|
120
|
+
case 'line':
|
|
121
|
+
return {
|
|
122
|
+
title: 'Line',
|
|
123
|
+
content: (
|
|
124
|
+
<PrevalenceOverTimeLineChart
|
|
125
|
+
data={data}
|
|
126
|
+
yAxisScaleType={yAxisScaleType}
|
|
127
|
+
confidenceIntervalMethod={confidenceIntervalMethod}
|
|
128
|
+
/>
|
|
129
|
+
),
|
|
130
|
+
};
|
|
131
|
+
case 'bubble':
|
|
132
|
+
return {
|
|
133
|
+
title: 'Bubble',
|
|
134
|
+
content: <PrevalenceOverTimeBubbleChart data={data} yAxisScaleType={yAxisScaleType} />,
|
|
135
|
+
};
|
|
136
|
+
case 'table':
|
|
137
|
+
return { title: 'Table', content: <PrevalenceOverTimeTable data={data} granularity={granularity} /> };
|
|
138
|
+
}
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
const tabs = views.map((view) => getTab(view));
|
|
142
|
+
|
|
143
|
+
const toolbar = (activeTab: string) => (
|
|
144
|
+
<Toolbar
|
|
145
|
+
activeTab={activeTab}
|
|
146
|
+
yAxisScaleType={yAxisScaleType}
|
|
147
|
+
setYAxisScaleType={setYAxisScaleType}
|
|
148
|
+
data={data}
|
|
149
|
+
granularity={granularity}
|
|
150
|
+
confidenceIntervalMethods={confidenceIntervalMethods}
|
|
151
|
+
confidenceIntervalMethod={confidenceIntervalMethod}
|
|
152
|
+
setConfidenceIntervalMethod={setConfidenceIntervalMethod}
|
|
153
|
+
/>
|
|
154
|
+
);
|
|
155
|
+
|
|
156
|
+
return <Tabs tabs={tabs} toolbar={toolbar} />;
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
type ToolbarProps = {
|
|
160
|
+
activeTab: string;
|
|
161
|
+
data: PrevalenceOverTimeData;
|
|
162
|
+
granularity: TemporalGranularity;
|
|
163
|
+
yAxisScaleType: ScaleType;
|
|
164
|
+
setYAxisScaleType: (scaleType: ScaleType) => void;
|
|
165
|
+
confidenceIntervalMethods: ConfidenceIntervalMethod[];
|
|
166
|
+
confidenceIntervalMethod: ConfidenceIntervalMethod;
|
|
167
|
+
setConfidenceIntervalMethod: (confidenceIntervalMethod: ConfidenceIntervalMethod) => void;
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
const Toolbar: FunctionComponent<ToolbarProps> = ({
|
|
171
|
+
activeTab,
|
|
172
|
+
yAxisScaleType,
|
|
173
|
+
setYAxisScaleType,
|
|
174
|
+
confidenceIntervalMethods,
|
|
175
|
+
confidenceIntervalMethod,
|
|
176
|
+
setConfidenceIntervalMethod,
|
|
177
|
+
data,
|
|
178
|
+
granularity,
|
|
179
|
+
}) => {
|
|
180
|
+
return (
|
|
181
|
+
<div class='flex'>
|
|
182
|
+
{activeTab !== 'Table' && (
|
|
183
|
+
<ScalingSelector yAxisScaleType={yAxisScaleType} setYAxisScaleType={setYAxisScaleType} />
|
|
184
|
+
)}
|
|
185
|
+
{(activeTab === 'Bar' || activeTab === 'Line') && (
|
|
186
|
+
<ConfidenceIntervalSelector
|
|
187
|
+
confidenceIntervalMethods={confidenceIntervalMethods}
|
|
188
|
+
confidenceIntervalMethod={confidenceIntervalMethod}
|
|
189
|
+
setConfidenceIntervalMethod={setConfidenceIntervalMethod}
|
|
190
|
+
/>
|
|
191
|
+
)}
|
|
192
|
+
<CsvDownloadButton
|
|
193
|
+
className='mx-1 btn btn-xs'
|
|
194
|
+
getData={() => getPrevalenceOverTimeTableData(data, granularity)}
|
|
195
|
+
filename='prevalence-over-time.csv'
|
|
196
|
+
/>
|
|
197
|
+
<Info className='ml-1' content='Info for prevalence over time' />
|
|
198
|
+
</div>
|
|
199
|
+
);
|
|
200
|
+
};
|
|
201
|
+
|
|
202
|
+
export default PrevalenceOverTime;
|
|
@@ -0,0 +1,376 @@
|
|
|
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": "2021-01-30",
|
|
13
|
+
"count": 179
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"date": "2021-01-31",
|
|
17
|
+
"count": 132
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "2021-02-01",
|
|
21
|
+
"count": 314
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"date": "2021-02-02",
|
|
25
|
+
"count": 210
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"date": "2021-02-03",
|
|
29
|
+
"count": 168
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"date": "2021-02-04",
|
|
33
|
+
"count": 168
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"date": "2021-02-05",
|
|
37
|
+
"count": 236
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"date": "2021-02-06",
|
|
41
|
+
"count": 133
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"date": "2021-02-07",
|
|
45
|
+
"count": 111
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"date": "2021-02-08",
|
|
49
|
+
"count": 136
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"date": "2021-02-09",
|
|
53
|
+
"count": 133
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"date": "2021-02-10",
|
|
57
|
+
"count": 87
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"date": "2021-02-11",
|
|
61
|
+
"count": 133
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"date": "2021-02-12",
|
|
65
|
+
"count": 115
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"date": "2021-02-13",
|
|
69
|
+
"count": 136
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"date": "2021-02-14",
|
|
73
|
+
"count": 88
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"date": "2021-02-15",
|
|
77
|
+
"count": 121
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"date": "2021-02-16",
|
|
81
|
+
"count": 133
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"date": "2021-02-17",
|
|
85
|
+
"count": 157
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"date": "2021-02-18",
|
|
89
|
+
"count": 75
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"date": "2021-02-19",
|
|
93
|
+
"count": 114
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"date": "2021-02-20",
|
|
97
|
+
"count": 68
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"date": "2021-02-21",
|
|
101
|
+
"count": 97
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"date": "2021-02-22",
|
|
105
|
+
"count": 154
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"date": "2021-02-23",
|
|
109
|
+
"count": 153
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"date": "2021-02-24",
|
|
113
|
+
"count": 118
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"date": "2021-02-25",
|
|
117
|
+
"count": 93
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"date": "2021-02-26",
|
|
121
|
+
"count": 53
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"date": "2021-02-27",
|
|
125
|
+
"count": 61
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"date": "2021-02-28",
|
|
129
|
+
"count": 48
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"date": "2021-03-01",
|
|
133
|
+
"count": 145
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"date": "2020-12-01",
|
|
137
|
+
"count": 84
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"date": "2020-12-02",
|
|
141
|
+
"count": 172
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"date": "2020-12-03",
|
|
145
|
+
"count": 134
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"date": "2020-12-04",
|
|
149
|
+
"count": 48
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"date": "2020-12-05",
|
|
153
|
+
"count": 25
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"date": "2020-12-06",
|
|
157
|
+
"count": 35
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"date": "2020-12-07",
|
|
161
|
+
"count": 250
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"date": "2020-12-08",
|
|
165
|
+
"count": 101
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"date": "2020-12-09",
|
|
169
|
+
"count": 128
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"date": "2020-12-10",
|
|
173
|
+
"count": 25
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"date": "2020-12-11",
|
|
177
|
+
"count": 28
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"date": "2020-12-12",
|
|
181
|
+
"count": 116
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"date": "2020-12-13",
|
|
185
|
+
"count": 110
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"date": "2020-12-14",
|
|
189
|
+
"count": 252
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"date": "2020-12-15",
|
|
193
|
+
"count": 189
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"date": "2020-12-16",
|
|
197
|
+
"count": 299
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"date": "2020-12-17",
|
|
201
|
+
"count": 281
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"date": "2020-12-18",
|
|
205
|
+
"count": 228
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"date": "2020-12-19",
|
|
209
|
+
"count": 243
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"date": "2020-12-20",
|
|
213
|
+
"count": 128
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"date": "2020-12-21",
|
|
217
|
+
"count": 148
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"date": "2020-12-22",
|
|
221
|
+
"count": 144
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"date": "2020-12-23",
|
|
225
|
+
"count": 289
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"date": "2020-12-24",
|
|
229
|
+
"count": 245
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"date": "2020-12-25",
|
|
233
|
+
"count": 180
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"date": "2020-12-26",
|
|
237
|
+
"count": 213
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"date": "2020-12-27",
|
|
241
|
+
"count": 212
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"date": "2020-12-28",
|
|
245
|
+
"count": 423
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"date": "2020-12-29",
|
|
249
|
+
"count": 290
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"date": "2020-12-30",
|
|
253
|
+
"count": 292
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"date": "2020-12-31",
|
|
257
|
+
"count": 174
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"date": "2021-01-01",
|
|
261
|
+
"count": 243
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"date": "2021-01-02",
|
|
265
|
+
"count": 200
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"date": "2021-01-03",
|
|
269
|
+
"count": 200
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"date": "2021-01-04",
|
|
273
|
+
"count": 360
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"date": "2021-01-05",
|
|
277
|
+
"count": 283
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"date": "2021-01-06",
|
|
281
|
+
"count": 146
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"date": "2021-01-07",
|
|
285
|
+
"count": 190
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"date": "2021-01-08",
|
|
289
|
+
"count": 287
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"date": "2021-01-09",
|
|
293
|
+
"count": 228
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"date": "2021-01-10",
|
|
297
|
+
"count": 218
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"date": "2021-01-11",
|
|
301
|
+
"count": 360
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"date": "2021-01-12",
|
|
305
|
+
"count": 236
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"date": "2021-01-13",
|
|
309
|
+
"count": 248
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"date": "2021-01-14",
|
|
313
|
+
"count": 216
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"date": "2021-01-15",
|
|
317
|
+
"count": 267
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"date": "2021-01-16",
|
|
321
|
+
"count": 199
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"date": "2021-01-17",
|
|
325
|
+
"count": 131
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"date": "2021-01-18",
|
|
329
|
+
"count": 392
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"date": "2021-01-19",
|
|
333
|
+
"count": 257
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"date": "2021-01-20",
|
|
337
|
+
"count": 302
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"date": "2021-01-21",
|
|
341
|
+
"count": 258
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"date": "2021-01-22",
|
|
345
|
+
"count": 255
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"date": "2021-01-23",
|
|
349
|
+
"count": 150
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"date": "2021-01-24",
|
|
353
|
+
"count": 149
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"date": "2021-01-25",
|
|
357
|
+
"count": 315
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"date": "2021-01-26",
|
|
361
|
+
"count": 250
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"date": "2021-01-27",
|
|
365
|
+
"count": 278
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"date": "2021-01-28",
|
|
369
|
+
"count": 166
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"date": "2021-01-29",
|
|
373
|
+
"count": 222
|
|
374
|
+
}
|
|
375
|
+
]
|
|
376
|
+
}
|