@cdc/dashboard 4.25.8 → 4.25.11

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 (88) hide show
  1. package/dist/{cdcdashboard-fce76882.es.js → cdcdashboard-BnB1QM5d.es.js} +6 -13
  2. package/dist/{cdcdashboard-c55ac1ea.es.js → cdcdashboard-D6CG2-Hb.es.js} +5 -12
  3. package/dist/{cdcdashboard-31a33da1.es.js → cdcdashboard-MXgURbdZ.es.js} +6 -13
  4. package/dist/{cdcdashboard-1a1724a1.es.js → cdcdashboard-dgT_1dIT.es.js} +136 -151
  5. package/dist/cdcdashboard.js +80040 -75976
  6. package/examples/api-test/categories.json +18 -0
  7. package/examples/api-test/chart-data.json +602 -0
  8. package/examples/api-test/topics.json +47 -0
  9. package/examples/api-test/years.json +22 -0
  10. package/examples/markup-axis-label.json +4167 -0
  11. package/examples/private/DEV-10538.json +407 -0
  12. package/examples/private/DEV-11405.json +39112 -0
  13. package/examples/private/big-dashboard.json +39112 -0
  14. package/examples/private/brfs-2.json +1532 -0
  15. package/examples/private/brfs.json +2128 -2138
  16. package/examples/private/clade-2.json +430 -0
  17. package/examples/private/delete.json +32919 -0
  18. package/examples/private/diabetes.json +5582 -0
  19. package/examples/private/example-2.json +49796 -0
  20. package/examples/private/group-legend-test.json +328 -0
  21. package/examples/private/map.json +1211 -0
  22. package/examples/private/markup-footer/burden_toolkit_mortality_diabetes_attributable_deaths_data.csv +14041 -0
  23. package/examples/private/markup-footer/burden_toolkit_mortality_diabetes_attributable_deaths_per_100000_data.csv +14041 -0
  24. package/examples/private/markup-footer/burden_toolkit_mortality_qaly_data.csv +18721 -0
  25. package/examples/private/markup-footer/burden_toolkit_mortality_yll_data.csv +18721 -0
  26. package/examples/private/markup-footer/mortality-deaths-footnotes-age.csv +3 -0
  27. package/examples/private/markup-variables.json +1451 -0
  28. package/examples/private/markup.json +5471 -0
  29. package/examples/private/mpox.json +38128 -0
  30. package/examples/private/north-dakota.json +1132 -0
  31. package/examples/private/ophdst.json +38754 -0
  32. package/examples/private/pedro.json +1 -0
  33. package/examples/private/pivot.json +683 -0
  34. package/examples/private/reset.json +32920 -0
  35. package/examples/private/sewershed.json +435 -0
  36. package/examples/private/tobacco.json +1938 -0
  37. package/examples/test-api-filter-reset.json +132 -0
  38. package/index.html +2 -2
  39. package/package.json +16 -10
  40. package/src/CdcDashboard.tsx +1 -3
  41. package/src/CdcDashboardComponent.tsx +34 -16
  42. package/src/DashboardContext.tsx +5 -1
  43. package/src/_stories/Dashboard.API.stories.tsx +62 -0
  44. package/src/_stories/Dashboard.stories.tsx +492 -472
  45. package/src/_stories/_mock/api/cessation.json +1 -0
  46. package/src/_stories/_mock/api/data-explorer.json +1 -0
  47. package/src/_stories/_mock/api/explore-by-location.json +1 -0
  48. package/src/_stories/_mock/api/explore-by-topic.json +1 -0
  49. package/src/_stories/_mock/api/legislation.json +1 -0
  50. package/src/_stories/_mock/api/oral-health-data.json +1 -0
  51. package/src/_stories/_mock/custom-order-new-values.json +116 -0
  52. package/src/components/CollapsibleVisualizationRow.tsx +1 -1
  53. package/src/components/DashboardFilters/DashboardFilters.tsx +34 -23
  54. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +29 -12
  55. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +81 -112
  56. package/src/components/DashboardFilters/DashboardFiltersEditor/components/NestedDropDownDashboard.tsx +82 -52
  57. package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +130 -31
  58. package/src/components/DashboardFilters/_stories/DashboardFilters.stories.tsx +80 -21
  59. package/src/components/DataDesignerModal.tsx +227 -210
  60. package/src/components/Header/Header.tsx +13 -12
  61. package/src/components/Toggle/Toggle.tsx +48 -47
  62. package/src/components/VisualizationRow.tsx +13 -6
  63. package/src/components/VisualizationsPanel/VisualizationsPanel.tsx +2 -0
  64. package/src/components/Widget/Widget.tsx +47 -18
  65. package/src/helpers/addValuesToDashboardFilters.ts +111 -60
  66. package/src/helpers/apiFilterHelpers.ts +190 -166
  67. package/src/helpers/filterData.ts +52 -7
  68. package/src/helpers/filterResetHelpers.ts +102 -0
  69. package/src/helpers/formatConfigBeforeSave.ts +137 -0
  70. package/src/helpers/getVizConfig.ts +36 -18
  71. package/src/helpers/loadAPIFilters.ts +109 -99
  72. package/src/helpers/reloadURLHelpers.ts +1 -1
  73. package/src/helpers/tests/filterResetHelpers.test.ts +532 -0
  74. package/src/helpers/tests/formatConfigBeforeSave.test.ts +69 -0
  75. package/src/index.tsx +1 -1
  76. package/src/scss/editor-panel.scss +3 -431
  77. package/src/scss/grid.scss +7 -5
  78. package/src/scss/main.scss +1 -24
  79. package/src/store/errorMessage/errorMessage.reducer.ts +1 -1
  80. package/src/types/DashboardFilters.ts +9 -8
  81. package/src/types/InitialState.ts +12 -12
  82. package/vite.config.js +1 -1
  83. package/vitest.config.ts +16 -0
  84. package/src/coreStyles_dashboard.scss +0 -3
  85. package/src/helpers/getAutoLoadVisualization.ts +0 -11
  86. package/src/scss/mixins.scss +0 -47
  87. package/src/scss/variables.scss +0 -5
  88. /package/dist/{cdcdashboard-548642e6.es.js → cdcdashboard-Ct2SB0vL.es.js} +0 -0
@@ -0,0 +1,4167 @@
1
+ {
2
+ "dashboard": {
3
+ "sharedFilters": [
4
+ {
5
+ "key": "Year",
6
+ "type": "datafilter",
7
+ "columnName": "Year",
8
+ "showDropdown": true,
9
+ "setBy": "chart1699383531543",
10
+ "usedBy": [
11
+ "map1699383540561"
12
+ ],
13
+ "resetLabel": "Reset",
14
+ "values": [
15
+ "2019",
16
+ "2020",
17
+ "2021"
18
+ ],
19
+ "tier": 1,
20
+ "orderedValues": [
21
+ "2019",
22
+ "2020",
23
+ "2021"
24
+ ]
25
+ }
26
+ ]
27
+ },
28
+ "rows": [
29
+ {
30
+ "columns": [
31
+ {
32
+ "width": 12,
33
+ "widget": "legacySharedFilters"
34
+ }
35
+ ]
36
+ },
37
+ {
38
+ "uuid": "__​undefined__",
39
+ "toggle": "__​undefined__",
40
+ "equalHeight": "__​undefined__",
41
+ "columns": [
42
+ {
43
+ "width": 12,
44
+ "widget": "chart1699383531543"
45
+ },
46
+ {},
47
+ {}
48
+ ]
49
+ }
50
+ ],
51
+ "visualizations": {
52
+ "chart1699383531543": {
53
+ "annotations": [],
54
+ "allowLineToBarGraph": "__​undefined__",
55
+ "type": "chart",
56
+ "debugSvg": false,
57
+ "chartMessage": {
58
+ "noData": "No Data Available"
59
+ },
60
+ "title": "",
61
+ "showTitle": true,
62
+ "showDownloadMediaButton": false,
63
+ "theme": "theme-blue",
64
+ "animate": false,
65
+ "lineDatapointStyle": "hover",
66
+ "lineDatapointColor": "Same as Line",
67
+ "barHasBorder": "false",
68
+ "isLollipopChart": false,
69
+ "lollipopShape": "circle",
70
+ "lollipopColorStyle": "two-tone",
71
+ "visualizationSubType": "regular",
72
+ "barStyle": "",
73
+ "roundingStyle": "standard",
74
+ "tipRounding": "top",
75
+ "isResponsiveTicks": false,
76
+ "general": {
77
+ "annotationDropdownText": "Annotations",
78
+ "showMissingDataLabel": true,
79
+ "showSuppressedSymbol": true,
80
+ "showZeroValueData": true,
81
+ "hideNullValue": true,
82
+ "palette": {
83
+ "name": "qualitative_bold",
84
+ "version": "1.0"
85
+ }
86
+ },
87
+ "padding": {
88
+ "left": 5,
89
+ "right": 5
90
+ },
91
+ "preliminaryData": [],
92
+ "yAxis": {
93
+ "hideAxis": false,
94
+ "displayNumbersOnBar": false,
95
+ "hideLabel": false,
96
+ "hideTicks": false,
97
+ "size": 50,
98
+ "gridLines": false,
99
+ "enablePadding": false,
100
+ "min": "",
101
+ "max": "",
102
+ "labelColor": "#1c1d1f",
103
+ "tickLabelColor": "#1c1d1f",
104
+ "tickColor": "#1c1d1f",
105
+ "rightHideAxis": true,
106
+ "rightAxisSize": 0,
107
+ "rightLabel": "",
108
+ "rightLabelOffsetSize": 0,
109
+ "rightAxisLabelColor": "#1c1d1f",
110
+ "rightAxisTickLabelColor": "#1c1d1f",
111
+ "rightAxisTickColor": "#1c1d1f",
112
+ "numTicks": "",
113
+ "axisPadding": 0,
114
+ "scalePadding": 10,
115
+ "tickRotation": 0,
116
+ "anchors": [],
117
+ "shoMissingDataLabel": true,
118
+ "showMissingDataLine": true,
119
+ "categories": [],
120
+ "label": "{{yaxis}}"
121
+ },
122
+ "boxplot": {
123
+ "plots": [],
124
+ "borders": "true",
125
+ "plotOutlierValues": false,
126
+ "plotNonOutlierValues": true,
127
+ "labels": {
128
+ "q1": "Lower Quartile",
129
+ "q2": "q2",
130
+ "q3": "Upper Quartile",
131
+ "q4": "q4",
132
+ "minimum": "Minimum",
133
+ "maximum": "Maximum",
134
+ "mean": "Mean",
135
+ "median": "Median",
136
+ "sd": "Standard Deviation",
137
+ "iqr": "Interquartile Range",
138
+ "total": "Total",
139
+ "outliers": "Outliers",
140
+ "values": "Values",
141
+ "lowerBounds": "Lower Bounds",
142
+ "upperBounds": "Upper Bounds"
143
+ },
144
+ "firstQuartilePercentage": 25,
145
+ "thirdQuartilePercentage": 75,
146
+ "boxWidthPercentage": 40,
147
+ "legend": {
148
+ "showHowToReadText": false,
149
+ "howToReadText": ""
150
+ }
151
+ },
152
+ "topAxis": {
153
+ "hasLine": false
154
+ },
155
+ "isLegendValue": false,
156
+ "barThickness": 0.35,
157
+ "barHeight": 25,
158
+ "barSpace": 15,
159
+ "heights": {
160
+ "vertical": 300,
161
+ "horizontal": 750
162
+ },
163
+ "xAxis": {
164
+ "sortDates": false,
165
+ "anchors": [],
166
+ "type": "categorical",
167
+ "showTargetLabel": true,
168
+ "targetLabel": "Target",
169
+ "hideAxis": false,
170
+ "hideLabel": false,
171
+ "hideTicks": false,
172
+ "size": 75,
173
+ "tickRotation": 0,
174
+ "min": "",
175
+ "max": "",
176
+ "labelColor": "#1c1d1f",
177
+ "tickLabelColor": "#1c1d1f",
178
+ "tickColor": "#1c1d1f",
179
+ "numTicks": "",
180
+ "labelOffset": 65,
181
+ "axisPadding": 0,
182
+ "target": 0,
183
+ "maxTickRotation": 0,
184
+ "padding": 5,
185
+ "showYearsOnce": false,
186
+ "sortByRecentDate": false,
187
+ "brushActive": false,
188
+ "dataKey": "Year",
189
+ "axisBBox": 29.360000610351562,
190
+ "tickWidthMax": 39
191
+ },
192
+ "table": {
193
+ "label": "Data Table",
194
+ "expanded": true,
195
+ "limitHeight": false,
196
+ "height": "",
197
+ "caption": "",
198
+ "showDownloadUrl": false,
199
+ "showDataTableLink": true,
200
+ "showDownloadLinkBelow": true,
201
+ "indexLabel": "",
202
+ "download": false,
203
+ "showVertical": true,
204
+ "dateDisplayFormat": "",
205
+ "showMissingDataLabel": true,
206
+ "showSuppressedSymbol": true,
207
+ "collapsible": true,
208
+ "show": false,
209
+ "sharedFilterColumns": []
210
+ },
211
+ "orientation": "vertical",
212
+ "color": "qualitative-bold",
213
+ "columns": {},
214
+ "legend": {
215
+ "hide": false,
216
+ "behavior": "isolate",
217
+ "axisAlign": true,
218
+ "singleRow": false,
219
+ "colorCode": "",
220
+ "reverseLabelOrder": false,
221
+ "description": "",
222
+ "dynamicLegend": false,
223
+ "dynamicLegendDefaultText": "Show All",
224
+ "dynamicLegendItemLimit": 5,
225
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
226
+ "dynamicLegendChartMessage": "Select Options from the Legend",
227
+ "label": "",
228
+ "lineMode": false,
229
+ "verticalSorted": false,
230
+ "highlightOnHover": false,
231
+ "hideSuppressedLabels": false,
232
+ "hideSuppressionLink": false,
233
+ "seriesHighlight": [],
234
+ "style": "circles",
235
+ "subStyle": "linear blocks",
236
+ "groupBy": "",
237
+ "shape": "circle",
238
+ "tickRotation": "",
239
+ "order": "dataColumn",
240
+ "hideBorder": {
241
+ "side": false,
242
+ "topBottom": true
243
+ },
244
+ "position": "right",
245
+ "orderedValues": [],
246
+ "patterns": {},
247
+ "patternField": "",
248
+ "unified": true
249
+ },
250
+ "smallMultiples": {
251
+ "mode": "",
252
+ "tileColumn": "",
253
+ "tilesPerRowDesktop": 3,
254
+ "tilesPerRowMobile": 1,
255
+ "tileOrder": [],
256
+ "tileOrderType": "asc",
257
+ "tileTitles": {},
258
+ "independentYAxis": false,
259
+ "colorMode": "same",
260
+ "synchronizedTooltips": true,
261
+ "showAreaUnderLine": true
262
+ },
263
+ "exclusions": {
264
+ "active": false,
265
+ "keys": []
266
+ },
267
+ "twoColor": {
268
+ "palette": "monochrome-1",
269
+ "isPaletteReversed": false
270
+ },
271
+ "labels": false,
272
+ "dataFormat": {
273
+ "commas": false,
274
+ "prefix": "",
275
+ "suffix": "",
276
+ "abbreviated": false,
277
+ "bottomSuffix": "",
278
+ "bottomPrefix": "",
279
+ "bottomAbbreviated": false
280
+ },
281
+ "filters": [
282
+ {
283
+ "filterStyle": "dropdown",
284
+ "columnName": "Location",
285
+ "label": "Location",
286
+ "order": "asc",
287
+ "id": 1763515602693,
288
+ "orderedValues": "__​undefined__"
289
+ },
290
+ {
291
+ "filterStyle": "dropdown",
292
+ "columnName": "Type",
293
+ "label": "Type",
294
+ "order": "asc",
295
+ "id": 1763515602694,
296
+ "orderedValues": "__​undefined__"
297
+ }
298
+ ],
299
+ "confidenceKeys": {},
300
+ "visual": {
301
+ "border": true,
302
+ "accent": true,
303
+ "background": true,
304
+ "verticalHoverLine": false,
305
+ "horizontalHoverLine": false,
306
+ "lineDatapointSymbol": "none",
307
+ "maximumShapeAmount": 7
308
+ },
309
+ "useLogScale": false,
310
+ "filterBehavior": "Filter Change",
311
+ "highlightedBarValues": [],
312
+ "series": [
313
+ {
314
+ "dataKey": "Amount",
315
+ "type": "Bar",
316
+ "axis": "Left",
317
+ "tooltip": true
318
+ }
319
+ ],
320
+ "tooltips": {
321
+ "opacity": 90,
322
+ "singleSeries": false,
323
+ "dateDisplayFormat": ""
324
+ },
325
+ "forestPlot": {
326
+ "startAt": 0,
327
+ "colors": {
328
+ "line": "",
329
+ "shape": ""
330
+ },
331
+ "lineOfNoEffect": {
332
+ "show": true
333
+ },
334
+ "type": "",
335
+ "pooledResult": {
336
+ "diamondHeight": 5,
337
+ "column": ""
338
+ },
339
+ "estimateField": "",
340
+ "estimateRadius": "",
341
+ "shape": "",
342
+ "rowHeight": 20,
343
+ "description": {
344
+ "show": true,
345
+ "text": "description",
346
+ "location": 0
347
+ },
348
+ "result": {
349
+ "show": true,
350
+ "text": "result",
351
+ "location": 100
352
+ },
353
+ "radius": {
354
+ "min": 1,
355
+ "max": 8,
356
+ "scalingColumn": ""
357
+ },
358
+ "regression": {
359
+ "lower": 0,
360
+ "upper": 0,
361
+ "estimateField": 0
362
+ },
363
+ "leftWidthOffset": 0,
364
+ "rightWidthOffset": 0,
365
+ "showZeroLine": false,
366
+ "leftLabel": "",
367
+ "rightLabel": "",
368
+ "width": "auto",
369
+ "lowerCiField": "",
370
+ "upperCiField": ""
371
+ },
372
+ "area": {
373
+ "isStacked": false
374
+ },
375
+ "sankey": {
376
+ "title": {
377
+ "defaultColor": "black"
378
+ },
379
+ "iterations": 1,
380
+ "rxValue": 0.9,
381
+ "overallSize": {
382
+ "width": 900,
383
+ "height": 700
384
+ },
385
+ "margin": {
386
+ "margin_y": 25,
387
+ "margin_x": 0
388
+ },
389
+ "nodeSize": {
390
+ "nodeWidth": 26,
391
+ "nodeHeight": 40
392
+ },
393
+ "nodePadding": 55,
394
+ "nodeFontColor": "black",
395
+ "nodeColor": {
396
+ "default": "#ff8500",
397
+ "inactive": "#808080"
398
+ },
399
+ "linkColor": {
400
+ "default": "#ffc900",
401
+ "inactive": "#D3D3D3"
402
+ },
403
+ "opacity": {
404
+ "nodeOpacityDefault": 1,
405
+ "nodeOpacityInactive": 0.1,
406
+ "LinkOpacityDefault": 1,
407
+ "LinkOpacityInactive": 0.1
408
+ },
409
+ "storyNodeFontColor": "#006778",
410
+ "storyNodeText": [],
411
+ "nodeValueStyle": {
412
+ "textBefore": "(",
413
+ "textAfter": ")"
414
+ },
415
+ "data": []
416
+ },
417
+ "markupVariables": [
418
+ {
419
+ "name": "yaxis",
420
+ "tag": "{{yaxis}}",
421
+ "columnName": "AmountUnits",
422
+ "conditions": [],
423
+ "addCommas": false,
424
+ "hideOnNull": false
425
+ }
426
+ ],
427
+ "enableMarkupVariables": true,
428
+ "showChartBrush": false,
429
+ "fontSize": "medium",
430
+ "isPaletteReversed": false,
431
+ "brush": {
432
+ "pattern_id": "brush_pattern",
433
+ "accent_color": "#ddd"
434
+ },
435
+ "openModal": false,
436
+ "uid": "chart1699383531543",
437
+ "visualizationType": "Bar",
438
+ "dataKey": "dashboard_aggregate_example_state_type (1).csv",
439
+ "dataDescription": {
440
+ "horizontal": false,
441
+ "series": false
442
+ },
443
+ "validated": 4.23,
444
+ "dynamicMarginTop": 0,
445
+ "dashboardFilters": [
446
+ {
447
+ "columnName": "Year",
448
+ "active": "2019",
449
+ "values": [
450
+ "2019",
451
+ "2020",
452
+ "2021"
453
+ ]
454
+ }
455
+ ]
456
+ },
457
+ "runtime": {
458
+ "editorErrorMessage": [
459
+ "No data"
460
+ ]
461
+ },
462
+ "legacySharedFilters": {
463
+ "type": "dashboardFilters",
464
+ "visualizationType": "dashboardFilters",
465
+ "sharedFilterIndexes": [
466
+ 0
467
+ ],
468
+ "filterBehavior": "Filter Change",
469
+ "uid": "legacySharedFilters"
470
+ }
471
+ },
472
+ "table": {
473
+ "label": "Data Table",
474
+ "show": true,
475
+ "showDownloadUrl": false,
476
+ "showVertical": true
477
+ },
478
+ "type": "dashboard",
479
+ "uuid": 1699383537668,
480
+ "runtime": {},
481
+ "version": "4.25.11",
482
+ "migrations": {
483
+ "addColorMigration": true
484
+ },
485
+ "general": {
486
+ "palette": {
487
+ "version": "1.0",
488
+ "backups": [
489
+ {
490
+ "name": "__​undefined__",
491
+ "version": "1.0",
492
+ "isReversed": "__​undefined__"
493
+ },
494
+ {
495
+ "name": "__​undefined__",
496
+ "version": "1.0",
497
+ "isReversed": "__​undefined__"
498
+ }
499
+ ]
500
+ }
501
+ },
502
+ "datasets": {
503
+ "dashboard_aggregate_example_state_type (1).csv": {
504
+ "data": [
505
+ {
506
+ "Location": "Alaska",
507
+ "Year": "2019",
508
+ "Type": "Federal",
509
+ "Amount": 1377,
510
+ "AmountUnits": "Number of People"
511
+ },
512
+ {
513
+ "Location": "Alaska",
514
+ "Year": "2019",
515
+ "Type": "Local",
516
+ "Amount": 1613,
517
+ "AmountUnits": "Number of People"
518
+ },
519
+ {
520
+ "Location": "Alaska",
521
+ "Year": "2019",
522
+ "Type": "State",
523
+ "Amount": 1495,
524
+ "AmountUnits": "Number of Cats"
525
+ },
526
+ {
527
+ "Location": "Alaska",
528
+ "Year": "2020",
529
+ "Type": "Federal",
530
+ "Amount": 1377,
531
+ "AmountUnits": "Number of People"
532
+ },
533
+ {
534
+ "Location": "Alaska",
535
+ "Year": "2020",
536
+ "Type": "Local",
537
+ "Amount": 1613,
538
+ "AmountUnits": "Number of People"
539
+ },
540
+ {
541
+ "Location": "Alaska",
542
+ "Year": "2020",
543
+ "Type": "State",
544
+ "Amount": 1495,
545
+ "AmountUnits": "Number of Cats"
546
+ },
547
+ {
548
+ "Location": "Alaska",
549
+ "Year": "2021",
550
+ "Type": "Federal",
551
+ "Amount": 1436,
552
+ "AmountUnits": "Number of People"
553
+ },
554
+ {
555
+ "Location": "Alaska",
556
+ "Year": "2021",
557
+ "Type": "Local",
558
+ "Amount": 1672,
559
+ "AmountUnits": "Number of People"
560
+ },
561
+ {
562
+ "Location": "Alaska",
563
+ "Year": "2021",
564
+ "Type": "State",
565
+ "Amount": 1554,
566
+ "AmountUnits": "Number of Cats"
567
+ },
568
+ {
569
+ "Location": "Alabama",
570
+ "Year": "2019",
571
+ "Type": "Federal",
572
+ "Amount": 1375,
573
+ "AmountUnits": "Number of People"
574
+ },
575
+ {
576
+ "Location": "Alabama",
577
+ "Year": "2019",
578
+ "Type": "Local",
579
+ "Amount": 1611,
580
+ "AmountUnits": "Number of People"
581
+ },
582
+ {
583
+ "Location": "Alabama",
584
+ "Year": "2019",
585
+ "Type": "State",
586
+ "Amount": 1493,
587
+ "AmountUnits": "Number of Cats"
588
+ },
589
+ {
590
+ "Location": "Alabama",
591
+ "Year": "2020",
592
+ "Type": "Federal",
593
+ "Amount": 1375,
594
+ "AmountUnits": "Number of People"
595
+ },
596
+ {
597
+ "Location": "Alabama",
598
+ "Year": "2020",
599
+ "Type": "Local",
600
+ "Amount": 1611,
601
+ "AmountUnits": "Number of People"
602
+ },
603
+ {
604
+ "Location": "Alabama",
605
+ "Year": "2020",
606
+ "Type": "State",
607
+ "Amount": 1493,
608
+ "AmountUnits": "Number of Cats"
609
+ },
610
+ {
611
+ "Location": "Alabama",
612
+ "Year": "2021",
613
+ "Type": "Federal",
614
+ "Amount": 1434,
615
+ "AmountUnits": "Number of People"
616
+ },
617
+ {
618
+ "Location": "Alabama",
619
+ "Year": "2021",
620
+ "Type": "Local",
621
+ "Amount": 1670,
622
+ "AmountUnits": "Number of People"
623
+ },
624
+ {
625
+ "Location": "Alabama",
626
+ "Year": "2021",
627
+ "Type": "State",
628
+ "Amount": 1552,
629
+ "AmountUnits": "Number of Cats"
630
+ },
631
+ {
632
+ "Location": "Arkansas",
633
+ "Year": "2019",
634
+ "Type": "Federal",
635
+ "Amount": 1398,
636
+ "AmountUnits": "Number of People"
637
+ },
638
+ {
639
+ "Location": "Arkansas",
640
+ "Year": "2019",
641
+ "Type": "Local",
642
+ "Amount": 1634,
643
+ "AmountUnits": "Number of People"
644
+ },
645
+ {
646
+ "Location": "Arkansas",
647
+ "Year": "2019",
648
+ "Type": "State",
649
+ "Amount": 1516,
650
+ "AmountUnits": "Number of Cats"
651
+ },
652
+ {
653
+ "Location": "Arkansas",
654
+ "Year": "2020",
655
+ "Type": "Federal",
656
+ "Amount": 1398,
657
+ "AmountUnits": "Number of People"
658
+ },
659
+ {
660
+ "Location": "Arkansas",
661
+ "Year": "2020",
662
+ "Type": "Local",
663
+ "Amount": 1634,
664
+ "AmountUnits": "Number of People"
665
+ },
666
+ {
667
+ "Location": "Arkansas",
668
+ "Year": "2020",
669
+ "Type": "State",
670
+ "Amount": 1516,
671
+ "AmountUnits": "Number of Cats"
672
+ },
673
+ {
674
+ "Location": "Arkansas",
675
+ "Year": "2021",
676
+ "Type": "Federal",
677
+ "Amount": 1457,
678
+ "AmountUnits": "Number of People"
679
+ },
680
+ {
681
+ "Location": "Arkansas",
682
+ "Year": "2021",
683
+ "Type": "Local",
684
+ "Amount": 1693,
685
+ "AmountUnits": "Number of People"
686
+ },
687
+ {
688
+ "Location": "Arkansas",
689
+ "Year": "2021",
690
+ "Type": "State",
691
+ "Amount": 1575,
692
+ "AmountUnits": "Number of Cats"
693
+ },
694
+ {
695
+ "Location": "American Samoa",
696
+ "Year": "2019",
697
+ "Type": "Federal",
698
+ "Amount": 1388,
699
+ "AmountUnits": "Number of People"
700
+ },
701
+ {
702
+ "Location": "American Samoa",
703
+ "Year": "2019",
704
+ "Type": "Local",
705
+ "Amount": 1624,
706
+ "AmountUnits": "Number of People"
707
+ },
708
+ {
709
+ "Location": "American Samoa",
710
+ "Year": "2019",
711
+ "Type": "State",
712
+ "Amount": 1506,
713
+ "AmountUnits": "Number of Cats"
714
+ },
715
+ {
716
+ "Location": "American Samoa",
717
+ "Year": "2020",
718
+ "Type": "Federal",
719
+ "Amount": 1388,
720
+ "AmountUnits": "Number of People"
721
+ },
722
+ {
723
+ "Location": "American Samoa",
724
+ "Year": "2020",
725
+ "Type": "Local",
726
+ "Amount": 1624,
727
+ "AmountUnits": "Number of People"
728
+ },
729
+ {
730
+ "Location": "American Samoa",
731
+ "Year": "2020",
732
+ "Type": "State",
733
+ "Amount": 1506,
734
+ "AmountUnits": "Number of Cats"
735
+ },
736
+ {
737
+ "Location": "American Samoa",
738
+ "Year": "2021",
739
+ "Type": "Federal",
740
+ "Amount": 1447,
741
+ "AmountUnits": "Number of People"
742
+ },
743
+ {
744
+ "Location": "American Samoa",
745
+ "Year": "2021",
746
+ "Type": "Local",
747
+ "Amount": 1683,
748
+ "AmountUnits": "Number of People"
749
+ },
750
+ {
751
+ "Location": "American Samoa",
752
+ "Year": "2021",
753
+ "Type": "State",
754
+ "Amount": 1565,
755
+ "AmountUnits": "Number of Cats"
756
+ },
757
+ {
758
+ "Location": "Arizona",
759
+ "Year": "2019",
760
+ "Type": "Federal",
761
+ "Amount": 1401,
762
+ "AmountUnits": "Number of People"
763
+ },
764
+ {
765
+ "Location": "Arizona",
766
+ "Year": "2019",
767
+ "Type": "Local",
768
+ "Amount": 1637,
769
+ "AmountUnits": "Number of People"
770
+ },
771
+ {
772
+ "Location": "Arizona",
773
+ "Year": "2019",
774
+ "Type": "State",
775
+ "Amount": 1519,
776
+ "AmountUnits": "Number of Cats"
777
+ },
778
+ {
779
+ "Location": "Arizona",
780
+ "Year": "2020",
781
+ "Type": "Federal",
782
+ "Amount": 1401,
783
+ "AmountUnits": "Number of People"
784
+ },
785
+ {
786
+ "Location": "Arizona",
787
+ "Year": "2020",
788
+ "Type": "Local",
789
+ "Amount": 1637,
790
+ "AmountUnits": "Number of People"
791
+ },
792
+ {
793
+ "Location": "Arizona",
794
+ "Year": "2020",
795
+ "Type": "State",
796
+ "Amount": 1519,
797
+ "AmountUnits": "Number of Cats"
798
+ },
799
+ {
800
+ "Location": "Arizona",
801
+ "Year": "2021",
802
+ "Type": "Federal",
803
+ "Amount": 1460,
804
+ "AmountUnits": "Number of People"
805
+ },
806
+ {
807
+ "Location": "Arizona",
808
+ "Year": "2021",
809
+ "Type": "Local",
810
+ "Amount": 1696,
811
+ "AmountUnits": "Number of People"
812
+ },
813
+ {
814
+ "Location": "Arizona",
815
+ "Year": "2021",
816
+ "Type": "State",
817
+ "Amount": 1578,
818
+ "AmountUnits": "Number of Cats"
819
+ },
820
+ {
821
+ "Location": "California",
822
+ "Year": "2019",
823
+ "Type": "Federal",
824
+ "Amount": 1381,
825
+ "AmountUnits": "Number of People"
826
+ },
827
+ {
828
+ "Location": "California",
829
+ "Year": "2019",
830
+ "Type": "Local",
831
+ "Amount": 1617,
832
+ "AmountUnits": "Number of People"
833
+ },
834
+ {
835
+ "Location": "California",
836
+ "Year": "2019",
837
+ "Type": "State",
838
+ "Amount": 1499,
839
+ "AmountUnits": "Number of Cats"
840
+ },
841
+ {
842
+ "Location": "California",
843
+ "Year": "2020",
844
+ "Type": "Federal",
845
+ "Amount": 1381,
846
+ "AmountUnits": "Number of People"
847
+ },
848
+ {
849
+ "Location": "California",
850
+ "Year": "2020",
851
+ "Type": "Local",
852
+ "Amount": 1617,
853
+ "AmountUnits": "Number of People"
854
+ },
855
+ {
856
+ "Location": "California",
857
+ "Year": "2020",
858
+ "Type": "State",
859
+ "Amount": 1499,
860
+ "AmountUnits": "Number of Cats"
861
+ },
862
+ {
863
+ "Location": "California",
864
+ "Year": "2021",
865
+ "Type": "Federal",
866
+ "Amount": 1440,
867
+ "AmountUnits": "Number of People"
868
+ },
869
+ {
870
+ "Location": "California",
871
+ "Year": "2021",
872
+ "Type": "Local",
873
+ "Amount": 1676,
874
+ "AmountUnits": "Number of People"
875
+ },
876
+ {
877
+ "Location": "California",
878
+ "Year": "2021",
879
+ "Type": "State",
880
+ "Amount": 1558,
881
+ "AmountUnits": "Number of Cats"
882
+ },
883
+ {
884
+ "Location": "Colorado",
885
+ "Year": "2019",
886
+ "Type": "Federal",
887
+ "Amount": 1369,
888
+ "AmountUnits": "Number of People"
889
+ },
890
+ {
891
+ "Location": "Colorado",
892
+ "Year": "2019",
893
+ "Type": "Local",
894
+ "Amount": 1605,
895
+ "AmountUnits": "Number of People"
896
+ },
897
+ {
898
+ "Location": "Colorado",
899
+ "Year": "2019",
900
+ "Type": "State",
901
+ "Amount": 1487,
902
+ "AmountUnits": "Number of Cats"
903
+ },
904
+ {
905
+ "Location": "Colorado",
906
+ "Year": "2020",
907
+ "Type": "Federal",
908
+ "Amount": 1369,
909
+ "AmountUnits": "Number of People"
910
+ },
911
+ {
912
+ "Location": "Colorado",
913
+ "Year": "2020",
914
+ "Type": "Local",
915
+ "Amount": 1605,
916
+ "AmountUnits": "Number of People"
917
+ },
918
+ {
919
+ "Location": "Colorado",
920
+ "Year": "2020",
921
+ "Type": "State",
922
+ "Amount": 1487,
923
+ "AmountUnits": "Number of Cats"
924
+ },
925
+ {
926
+ "Location": "Colorado",
927
+ "Year": "2021",
928
+ "Type": "Federal",
929
+ "Amount": 1428,
930
+ "AmountUnits": "Number of People"
931
+ },
932
+ {
933
+ "Location": "Colorado",
934
+ "Year": "2021",
935
+ "Type": "Local",
936
+ "Amount": 1664,
937
+ "AmountUnits": "Number of People"
938
+ },
939
+ {
940
+ "Location": "Colorado",
941
+ "Year": "2021",
942
+ "Type": "State",
943
+ "Amount": 1546,
944
+ "AmountUnits": "Number of Cats"
945
+ },
946
+ {
947
+ "Location": "Connecticut",
948
+ "Year": "2019",
949
+ "Type": "Federal",
950
+ "Amount": 1403,
951
+ "AmountUnits": "Number of People"
952
+ },
953
+ {
954
+ "Location": "Connecticut",
955
+ "Year": "2019",
956
+ "Type": "Local",
957
+ "Amount": 1639,
958
+ "AmountUnits": "Number of People"
959
+ },
960
+ {
961
+ "Location": "Connecticut",
962
+ "Year": "2019",
963
+ "Type": "State",
964
+ "Amount": 1521,
965
+ "AmountUnits": "Number of Cats"
966
+ },
967
+ {
968
+ "Location": "Connecticut",
969
+ "Year": "2020",
970
+ "Type": "Federal",
971
+ "Amount": 1403,
972
+ "AmountUnits": "Number of People"
973
+ },
974
+ {
975
+ "Location": "Connecticut",
976
+ "Year": "2020",
977
+ "Type": "Local",
978
+ "Amount": 1639,
979
+ "AmountUnits": "Number of People"
980
+ },
981
+ {
982
+ "Location": "Connecticut",
983
+ "Year": "2020",
984
+ "Type": "State",
985
+ "Amount": 1521,
986
+ "AmountUnits": "Number of Cats"
987
+ },
988
+ {
989
+ "Location": "Connecticut",
990
+ "Year": "2021",
991
+ "Type": "Federal",
992
+ "Amount": 1462,
993
+ "AmountUnits": "Number of People"
994
+ },
995
+ {
996
+ "Location": "Connecticut",
997
+ "Year": "2021",
998
+ "Type": "Local",
999
+ "Amount": 1698,
1000
+ "AmountUnits": "Number of People"
1001
+ },
1002
+ {
1003
+ "Location": "Connecticut",
1004
+ "Year": "2021",
1005
+ "Type": "State",
1006
+ "Amount": 1580,
1007
+ "AmountUnits": "Number of Cats"
1008
+ },
1009
+ {
1010
+ "Location": "District of Columbia",
1011
+ "Year": "2019",
1012
+ "Type": "Federal",
1013
+ "Amount": 1400,
1014
+ "AmountUnits": "Number of People"
1015
+ },
1016
+ {
1017
+ "Location": "District of Columbia",
1018
+ "Year": "2019",
1019
+ "Type": "Local",
1020
+ "Amount": 1636,
1021
+ "AmountUnits": "Number of People"
1022
+ },
1023
+ {
1024
+ "Location": "District of Columbia",
1025
+ "Year": "2019",
1026
+ "Type": "State",
1027
+ "Amount": 1518,
1028
+ "AmountUnits": "Number of Cats"
1029
+ },
1030
+ {
1031
+ "Location": "District of Columbia",
1032
+ "Year": "2020",
1033
+ "Type": "Federal",
1034
+ "Amount": 1400,
1035
+ "AmountUnits": "Number of People"
1036
+ },
1037
+ {
1038
+ "Location": "District of Columbia",
1039
+ "Year": "2020",
1040
+ "Type": "Local",
1041
+ "Amount": 1636,
1042
+ "AmountUnits": "Number of People"
1043
+ },
1044
+ {
1045
+ "Location": "District of Columbia",
1046
+ "Year": "2020",
1047
+ "Type": "State",
1048
+ "Amount": 1518,
1049
+ "AmountUnits": "Number of Cats"
1050
+ },
1051
+ {
1052
+ "Location": "District of Columbia",
1053
+ "Year": "2021",
1054
+ "Type": "Federal",
1055
+ "Amount": 1459,
1056
+ "AmountUnits": "Number of People"
1057
+ },
1058
+ {
1059
+ "Location": "District of Columbia",
1060
+ "Year": "2021",
1061
+ "Type": "Local",
1062
+ "Amount": 1695,
1063
+ "AmountUnits": "Number of People"
1064
+ },
1065
+ {
1066
+ "Location": "District of Columbia",
1067
+ "Year": "2021",
1068
+ "Type": "State",
1069
+ "Amount": 1577,
1070
+ "AmountUnits": "Number of Cats"
1071
+ },
1072
+ {
1073
+ "Location": "Delaware\t",
1074
+ "Year": "2019",
1075
+ "Type": "Federal",
1076
+ "Amount": "1384",
1077
+ "AmountUnits": "Number of People"
1078
+ },
1079
+ {
1080
+ "Location": "Delaware\t",
1081
+ "Year": "2019",
1082
+ "Type": "Local",
1083
+ "Amount": "1620",
1084
+ "AmountUnits": "Number of People"
1085
+ },
1086
+ {
1087
+ "Location": "Delaware\t",
1088
+ "Year": "2019",
1089
+ "Type": "State",
1090
+ "Amount": "1502",
1091
+ "AmountUnits": "Number of Cats"
1092
+ },
1093
+ {
1094
+ "Location": "Delaware\t",
1095
+ "Year": "2020",
1096
+ "Type": "Federal",
1097
+ "Amount": "1384",
1098
+ "AmountUnits": "Number of People"
1099
+ },
1100
+ {
1101
+ "Location": "Delaware\t",
1102
+ "Year": "2020",
1103
+ "Type": "Local",
1104
+ "Amount": "1620",
1105
+ "AmountUnits": "Number of People"
1106
+ },
1107
+ {
1108
+ "Location": "Delaware\t",
1109
+ "Year": "2020",
1110
+ "Type": "State",
1111
+ "Amount": "1502",
1112
+ "AmountUnits": "Number of Cats"
1113
+ },
1114
+ {
1115
+ "Location": "Delaware\t",
1116
+ "Year": "2021",
1117
+ "Type": "Federal",
1118
+ "Amount": "1443",
1119
+ "AmountUnits": "Number of People"
1120
+ },
1121
+ {
1122
+ "Location": "Delaware\t",
1123
+ "Year": "2021",
1124
+ "Type": "Local",
1125
+ "Amount": "1679",
1126
+ "AmountUnits": "Number of People"
1127
+ },
1128
+ {
1129
+ "Location": "Delaware\t",
1130
+ "Year": "2021",
1131
+ "Type": "State",
1132
+ "Amount": "1561",
1133
+ "AmountUnits": "Number of Cats"
1134
+ },
1135
+ {
1136
+ "Location": "Florida\t",
1137
+ "Year": "2019",
1138
+ "Type": "Federal",
1139
+ "Amount": "1387",
1140
+ "AmountUnits": "Number of People"
1141
+ },
1142
+ {
1143
+ "Location": "Florida\t",
1144
+ "Year": "2019",
1145
+ "Type": "Local",
1146
+ "Amount": "1623",
1147
+ "AmountUnits": "Number of People"
1148
+ },
1149
+ {
1150
+ "Location": "Florida\t",
1151
+ "Year": "2019",
1152
+ "Type": "State",
1153
+ "Amount": "1505",
1154
+ "AmountUnits": "Number of Cats"
1155
+ },
1156
+ {
1157
+ "Location": "Florida\t",
1158
+ "Year": "2020",
1159
+ "Type": "Federal",
1160
+ "Amount": "1387",
1161
+ "AmountUnits": "Number of People"
1162
+ },
1163
+ {
1164
+ "Location": "Florida\t",
1165
+ "Year": "2020",
1166
+ "Type": "Local",
1167
+ "Amount": "1623",
1168
+ "AmountUnits": "Number of People"
1169
+ },
1170
+ {
1171
+ "Location": "Florida\t",
1172
+ "Year": "2020",
1173
+ "Type": "State",
1174
+ "Amount": "1505",
1175
+ "AmountUnits": "Number of Cats"
1176
+ },
1177
+ {
1178
+ "Location": "Florida\t",
1179
+ "Year": "2021",
1180
+ "Type": "Federal",
1181
+ "Amount": "1446",
1182
+ "AmountUnits": "Number of People"
1183
+ },
1184
+ {
1185
+ "Location": "Florida\t",
1186
+ "Year": "2021",
1187
+ "Type": "Local",
1188
+ "Amount": "1682",
1189
+ "AmountUnits": "Number of People"
1190
+ },
1191
+ {
1192
+ "Location": "Florida\t",
1193
+ "Year": "2021",
1194
+ "Type": "State",
1195
+ "Amount": "1564",
1196
+ "AmountUnits": "Number of Cats"
1197
+ },
1198
+ {
1199
+ "Location": "Georgia\t",
1200
+ "Year": "2019",
1201
+ "Type": "Federal",
1202
+ "Amount": "1365",
1203
+ "AmountUnits": "Number of People"
1204
+ },
1205
+ {
1206
+ "Location": "Georgia\t",
1207
+ "Year": "2019",
1208
+ "Type": "Local",
1209
+ "Amount": "1601",
1210
+ "AmountUnits": "Number of People"
1211
+ },
1212
+ {
1213
+ "Location": "Georgia\t",
1214
+ "Year": "2019",
1215
+ "Type": "State",
1216
+ "Amount": "1483",
1217
+ "AmountUnits": "Number of Cats"
1218
+ },
1219
+ {
1220
+ "Location": "Georgia\t",
1221
+ "Year": "2020",
1222
+ "Type": "Federal",
1223
+ "Amount": "1365",
1224
+ "AmountUnits": "Number of People"
1225
+ },
1226
+ {
1227
+ "Location": "Georgia\t",
1228
+ "Year": "2020",
1229
+ "Type": "Local",
1230
+ "Amount": "1601",
1231
+ "AmountUnits": "Number of People"
1232
+ },
1233
+ {
1234
+ "Location": "Georgia\t",
1235
+ "Year": "2020",
1236
+ "Type": "State",
1237
+ "Amount": "1483",
1238
+ "AmountUnits": "Number of Cats"
1239
+ },
1240
+ {
1241
+ "Location": "Georgia\t",
1242
+ "Year": "2021",
1243
+ "Type": "Federal",
1244
+ "Amount": "1424",
1245
+ "AmountUnits": "Number of People"
1246
+ },
1247
+ {
1248
+ "Location": "Georgia\t",
1249
+ "Year": "2021",
1250
+ "Type": "Local",
1251
+ "Amount": "1660",
1252
+ "AmountUnits": "Number of People"
1253
+ },
1254
+ {
1255
+ "Location": "Georgia\t",
1256
+ "Year": "2021",
1257
+ "Type": "State",
1258
+ "Amount": "1542",
1259
+ "AmountUnits": "Number of Cats"
1260
+ },
1261
+ {
1262
+ "Location": "Guam",
1263
+ "Year": "2019",
1264
+ "Type": "Federal",
1265
+ "Amount": 1356,
1266
+ "AmountUnits": "Number of People"
1267
+ },
1268
+ {
1269
+ "Location": "Guam",
1270
+ "Year": "2019",
1271
+ "Type": "Local",
1272
+ "Amount": 1592,
1273
+ "AmountUnits": "Number of People"
1274
+ },
1275
+ {
1276
+ "Location": "Guam",
1277
+ "Year": "2019",
1278
+ "Type": "State",
1279
+ "Amount": 1474,
1280
+ "AmountUnits": "Number of Cats"
1281
+ },
1282
+ {
1283
+ "Location": "Guam",
1284
+ "Year": "2020",
1285
+ "Type": "Federal",
1286
+ "Amount": 1356,
1287
+ "AmountUnits": "Number of People"
1288
+ },
1289
+ {
1290
+ "Location": "Guam",
1291
+ "Year": "2020",
1292
+ "Type": "Local",
1293
+ "Amount": 1592,
1294
+ "AmountUnits": "Number of People"
1295
+ },
1296
+ {
1297
+ "Location": "Guam",
1298
+ "Year": "2020",
1299
+ "Type": "State",
1300
+ "Amount": 1474,
1301
+ "AmountUnits": "Number of Cats"
1302
+ },
1303
+ {
1304
+ "Location": "Guam",
1305
+ "Year": "2021",
1306
+ "Type": "Federal",
1307
+ "Amount": 1415,
1308
+ "AmountUnits": "Number of People"
1309
+ },
1310
+ {
1311
+ "Location": "Guam",
1312
+ "Year": "2021",
1313
+ "Type": "Local",
1314
+ "Amount": 1651,
1315
+ "AmountUnits": "Number of People"
1316
+ },
1317
+ {
1318
+ "Location": "Guam",
1319
+ "Year": "2021",
1320
+ "Type": "State",
1321
+ "Amount": 1533,
1322
+ "AmountUnits": "Number of Cats"
1323
+ },
1324
+ {
1325
+ "Location": "Hawaii\t",
1326
+ "Year": "2019",
1327
+ "Type": "Federal",
1328
+ "Amount": "1362",
1329
+ "AmountUnits": "Number of People"
1330
+ },
1331
+ {
1332
+ "Location": "Hawaii\t",
1333
+ "Year": "2019",
1334
+ "Type": "Local",
1335
+ "Amount": "1598",
1336
+ "AmountUnits": "Number of People"
1337
+ },
1338
+ {
1339
+ "Location": "Hawaii\t",
1340
+ "Year": "2019",
1341
+ "Type": "State",
1342
+ "Amount": "1480",
1343
+ "AmountUnits": "Number of Cats"
1344
+ },
1345
+ {
1346
+ "Location": "Hawaii\t",
1347
+ "Year": "2020",
1348
+ "Type": "Federal",
1349
+ "Amount": "1362",
1350
+ "AmountUnits": "Number of People"
1351
+ },
1352
+ {
1353
+ "Location": "Hawaii\t",
1354
+ "Year": "2020",
1355
+ "Type": "Local",
1356
+ "Amount": "1598",
1357
+ "AmountUnits": "Number of People"
1358
+ },
1359
+ {
1360
+ "Location": "Hawaii\t",
1361
+ "Year": "2020",
1362
+ "Type": "State",
1363
+ "Amount": "1480",
1364
+ "AmountUnits": "Number of Cats"
1365
+ },
1366
+ {
1367
+ "Location": "Hawaii\t",
1368
+ "Year": "2021",
1369
+ "Type": "Federal",
1370
+ "Amount": "1421",
1371
+ "AmountUnits": "Number of People"
1372
+ },
1373
+ {
1374
+ "Location": "Hawaii\t",
1375
+ "Year": "2021",
1376
+ "Type": "Local",
1377
+ "Amount": "1657",
1378
+ "AmountUnits": "Number of People"
1379
+ },
1380
+ {
1381
+ "Location": "Hawaii\t",
1382
+ "Year": "2021",
1383
+ "Type": "State",
1384
+ "Amount": "1539",
1385
+ "AmountUnits": "Number of Cats"
1386
+ },
1387
+ {
1388
+ "Location": "Iowa",
1389
+ "Year": "2019",
1390
+ "Type": "Federal",
1391
+ "Amount": 1394,
1392
+ "AmountUnits": "Number of People"
1393
+ },
1394
+ {
1395
+ "Location": "Iowa",
1396
+ "Year": "2019",
1397
+ "Type": "Local",
1398
+ "Amount": 1630,
1399
+ "AmountUnits": "Number of People"
1400
+ },
1401
+ {
1402
+ "Location": "Iowa",
1403
+ "Year": "2019",
1404
+ "Type": "State",
1405
+ "Amount": 1512,
1406
+ "AmountUnits": "Number of Cats"
1407
+ },
1408
+ {
1409
+ "Location": "Iowa",
1410
+ "Year": "2020",
1411
+ "Type": "Federal",
1412
+ "Amount": 1394,
1413
+ "AmountUnits": "Number of People"
1414
+ },
1415
+ {
1416
+ "Location": "Iowa",
1417
+ "Year": "2020",
1418
+ "Type": "Local",
1419
+ "Amount": 1630,
1420
+ "AmountUnits": "Number of People"
1421
+ },
1422
+ {
1423
+ "Location": "Iowa",
1424
+ "Year": "2020",
1425
+ "Type": "State",
1426
+ "Amount": 1512,
1427
+ "AmountUnits": "Number of Cats"
1428
+ },
1429
+ {
1430
+ "Location": "Iowa",
1431
+ "Year": "2021",
1432
+ "Type": "Federal",
1433
+ "Amount": 1453,
1434
+ "AmountUnits": "Number of People"
1435
+ },
1436
+ {
1437
+ "Location": "Iowa",
1438
+ "Year": "2021",
1439
+ "Type": "Local",
1440
+ "Amount": 1689,
1441
+ "AmountUnits": "Number of People"
1442
+ },
1443
+ {
1444
+ "Location": "Iowa",
1445
+ "Year": "2021",
1446
+ "Type": "State",
1447
+ "Amount": 1571,
1448
+ "AmountUnits": "Number of Cats"
1449
+ },
1450
+ {
1451
+ "Location": "Idaho",
1452
+ "Year": "2019",
1453
+ "Type": "Federal",
1454
+ "Amount": 1374,
1455
+ "AmountUnits": "Number of People"
1456
+ },
1457
+ {
1458
+ "Location": "Idaho",
1459
+ "Year": "2019",
1460
+ "Type": "Local",
1461
+ "Amount": 1610,
1462
+ "AmountUnits": "Number of People"
1463
+ },
1464
+ {
1465
+ "Location": "Idaho",
1466
+ "Year": "2019",
1467
+ "Type": "State",
1468
+ "Amount": 1492,
1469
+ "AmountUnits": "Number of Cats"
1470
+ },
1471
+ {
1472
+ "Location": "Idaho",
1473
+ "Year": "2020",
1474
+ "Type": "Federal",
1475
+ "Amount": 1374,
1476
+ "AmountUnits": "Number of People"
1477
+ },
1478
+ {
1479
+ "Location": "Idaho",
1480
+ "Year": "2020",
1481
+ "Type": "Local",
1482
+ "Amount": 1610,
1483
+ "AmountUnits": "Number of People"
1484
+ },
1485
+ {
1486
+ "Location": "Idaho",
1487
+ "Year": "2020",
1488
+ "Type": "State",
1489
+ "Amount": 1492,
1490
+ "AmountUnits": "Number of Cats"
1491
+ },
1492
+ {
1493
+ "Location": "Idaho",
1494
+ "Year": "2021",
1495
+ "Type": "Federal",
1496
+ "Amount": 1433,
1497
+ "AmountUnits": "Number of People"
1498
+ },
1499
+ {
1500
+ "Location": "Idaho",
1501
+ "Year": "2021",
1502
+ "Type": "Local",
1503
+ "Amount": 1669,
1504
+ "AmountUnits": "Number of People"
1505
+ },
1506
+ {
1507
+ "Location": "Idaho",
1508
+ "Year": "2021",
1509
+ "Type": "State",
1510
+ "Amount": 1551,
1511
+ "AmountUnits": "Number of Cats"
1512
+ },
1513
+ {
1514
+ "Location": "Illinois\t",
1515
+ "Year": "2019",
1516
+ "Type": "Federal",
1517
+ "Amount": "1402",
1518
+ "AmountUnits": "Number of People"
1519
+ },
1520
+ {
1521
+ "Location": "Illinois\t",
1522
+ "Year": "2019",
1523
+ "Type": "Local",
1524
+ "Amount": "1638",
1525
+ "AmountUnits": "Number of People"
1526
+ },
1527
+ {
1528
+ "Location": "Illinois\t",
1529
+ "Year": "2019",
1530
+ "Type": "State",
1531
+ "Amount": "1520",
1532
+ "AmountUnits": "Number of Cats"
1533
+ },
1534
+ {
1535
+ "Location": "Illinois\t",
1536
+ "Year": "2020",
1537
+ "Type": "Federal",
1538
+ "Amount": "1402",
1539
+ "AmountUnits": "Number of People"
1540
+ },
1541
+ {
1542
+ "Location": "Illinois\t",
1543
+ "Year": "2020",
1544
+ "Type": "Local",
1545
+ "Amount": "1638",
1546
+ "AmountUnits": "Number of People"
1547
+ },
1548
+ {
1549
+ "Location": "Illinois\t",
1550
+ "Year": "2020",
1551
+ "Type": "State",
1552
+ "Amount": "1520",
1553
+ "AmountUnits": "Number of Cats"
1554
+ },
1555
+ {
1556
+ "Location": "Illinois\t",
1557
+ "Year": "2021",
1558
+ "Type": "Federal",
1559
+ "Amount": "1461",
1560
+ "AmountUnits": "Number of People"
1561
+ },
1562
+ {
1563
+ "Location": "Illinois\t",
1564
+ "Year": "2021",
1565
+ "Type": "Local",
1566
+ "Amount": "1697",
1567
+ "AmountUnits": "Number of People"
1568
+ },
1569
+ {
1570
+ "Location": "Illinois\t",
1571
+ "Year": "2021",
1572
+ "Type": "State",
1573
+ "Amount": "1579",
1574
+ "AmountUnits": "Number of Cats"
1575
+ },
1576
+ {
1577
+ "Location": "Indiana\t",
1578
+ "Year": "2019",
1579
+ "Type": "Federal",
1580
+ "Amount": "1404",
1581
+ "AmountUnits": "Number of People"
1582
+ },
1583
+ {
1584
+ "Location": "Indiana\t",
1585
+ "Year": "2019",
1586
+ "Type": "Local",
1587
+ "Amount": "1640",
1588
+ "AmountUnits": "Number of People"
1589
+ },
1590
+ {
1591
+ "Location": "Indiana\t",
1592
+ "Year": "2019",
1593
+ "Type": "State",
1594
+ "Amount": "1522",
1595
+ "AmountUnits": "Number of Cats"
1596
+ },
1597
+ {
1598
+ "Location": "Indiana\t",
1599
+ "Year": "2020",
1600
+ "Type": "Federal",
1601
+ "Amount": "1404",
1602
+ "AmountUnits": "Number of People"
1603
+ },
1604
+ {
1605
+ "Location": "Indiana\t",
1606
+ "Year": "2020",
1607
+ "Type": "Local",
1608
+ "Amount": "1640",
1609
+ "AmountUnits": "Number of People"
1610
+ },
1611
+ {
1612
+ "Location": "Indiana\t",
1613
+ "Year": "2020",
1614
+ "Type": "State",
1615
+ "Amount": "1522",
1616
+ "AmountUnits": "Number of Cats"
1617
+ },
1618
+ {
1619
+ "Location": "Indiana\t",
1620
+ "Year": "2021",
1621
+ "Type": "Federal",
1622
+ "Amount": "1463",
1623
+ "AmountUnits": "Number of People"
1624
+ },
1625
+ {
1626
+ "Location": "Indiana\t",
1627
+ "Year": "2021",
1628
+ "Type": "Local",
1629
+ "Amount": "1699",
1630
+ "AmountUnits": "Number of People"
1631
+ },
1632
+ {
1633
+ "Location": "Indiana\t",
1634
+ "Year": "2021",
1635
+ "Type": "State",
1636
+ "Amount": "1581",
1637
+ "AmountUnits": "Number of Cats"
1638
+ },
1639
+ {
1640
+ "Location": "Kansas\t",
1641
+ "Year": "2019",
1642
+ "Type": "Federal",
1643
+ "Amount": "1367",
1644
+ "AmountUnits": "Number of People"
1645
+ },
1646
+ {
1647
+ "Location": "Kansas\t",
1648
+ "Year": "2019",
1649
+ "Type": "Local",
1650
+ "Amount": "1603",
1651
+ "AmountUnits": "Number of People"
1652
+ },
1653
+ {
1654
+ "Location": "Kansas\t",
1655
+ "Year": "2019",
1656
+ "Type": "State",
1657
+ "Amount": "1485",
1658
+ "AmountUnits": "Number of Cats"
1659
+ },
1660
+ {
1661
+ "Location": "Kansas\t",
1662
+ "Year": "2020",
1663
+ "Type": "Federal",
1664
+ "Amount": "1367",
1665
+ "AmountUnits": "Number of People"
1666
+ },
1667
+ {
1668
+ "Location": "Kansas\t",
1669
+ "Year": "2020",
1670
+ "Type": "Local",
1671
+ "Amount": "1603",
1672
+ "AmountUnits": "Number of People"
1673
+ },
1674
+ {
1675
+ "Location": "Kansas\t",
1676
+ "Year": "2020",
1677
+ "Type": "State",
1678
+ "Amount": "1485",
1679
+ "AmountUnits": "Number of Cats"
1680
+ },
1681
+ {
1682
+ "Location": "Kansas",
1683
+ "Year": "2021",
1684
+ "Type": "Federal",
1685
+ "Amount": 1426,
1686
+ "AmountUnits": "Number of People"
1687
+ },
1688
+ {
1689
+ "Location": "Kansas",
1690
+ "Year": "2021",
1691
+ "Type": "Local",
1692
+ "Amount": 1662,
1693
+ "AmountUnits": "Number of People"
1694
+ },
1695
+ {
1696
+ "Location": "Kansas",
1697
+ "Year": "2021",
1698
+ "Type": "State",
1699
+ "Amount": 1544,
1700
+ "AmountUnits": "Number of Cats"
1701
+ },
1702
+ {
1703
+ "Location": "Kentucky",
1704
+ "Year": "2019",
1705
+ "Type": "Federal",
1706
+ "Amount": 1359,
1707
+ "AmountUnits": "Number of People"
1708
+ },
1709
+ {
1710
+ "Location": "Kentucky",
1711
+ "Year": "2019",
1712
+ "Type": "Local",
1713
+ "Amount": 1595,
1714
+ "AmountUnits": "Number of People"
1715
+ },
1716
+ {
1717
+ "Location": "Kentucky",
1718
+ "Year": "2019",
1719
+ "Type": "State",
1720
+ "Amount": 1477,
1721
+ "AmountUnits": "Number of Cats"
1722
+ },
1723
+ {
1724
+ "Location": "Kentucky",
1725
+ "Year": "2020",
1726
+ "Type": "Federal",
1727
+ "Amount": 1359,
1728
+ "AmountUnits": "Number of People"
1729
+ },
1730
+ {
1731
+ "Location": "Kentucky",
1732
+ "Year": "2020",
1733
+ "Type": "Local",
1734
+ "Amount": 1595,
1735
+ "AmountUnits": "Number of People"
1736
+ },
1737
+ {
1738
+ "Location": "Kentucky",
1739
+ "Year": "2020",
1740
+ "Type": "State",
1741
+ "Amount": 1477,
1742
+ "AmountUnits": "Number of Cats"
1743
+ },
1744
+ {
1745
+ "Location": "Kentucky",
1746
+ "Year": "2021",
1747
+ "Type": "Federal",
1748
+ "Amount": 1418,
1749
+ "AmountUnits": "Number of People"
1750
+ },
1751
+ {
1752
+ "Location": "Kentucky",
1753
+ "Year": "2021",
1754
+ "Type": "Local",
1755
+ "Amount": 1654,
1756
+ "AmountUnits": "Number of People"
1757
+ },
1758
+ {
1759
+ "Location": "Kentucky",
1760
+ "Year": "2021",
1761
+ "Type": "State",
1762
+ "Amount": 1536,
1763
+ "AmountUnits": "Number of Cats"
1764
+ },
1765
+ {
1766
+ "Location": "Louisiana",
1767
+ "Year": "2019",
1768
+ "Type": "Federal",
1769
+ "Amount": 1409,
1770
+ "AmountUnits": "Number of People"
1771
+ },
1772
+ {
1773
+ "Location": "Louisiana",
1774
+ "Year": "2019",
1775
+ "Type": "Local",
1776
+ "Amount": 1645,
1777
+ "AmountUnits": "Number of People"
1778
+ },
1779
+ {
1780
+ "Location": "Louisiana",
1781
+ "Year": "2019",
1782
+ "Type": "State",
1783
+ "Amount": 1527,
1784
+ "AmountUnits": "Number of Cats"
1785
+ },
1786
+ {
1787
+ "Location": "Louisiana",
1788
+ "Year": "2020",
1789
+ "Type": "Federal",
1790
+ "Amount": 1409,
1791
+ "AmountUnits": "Number of People"
1792
+ },
1793
+ {
1794
+ "Location": "Louisiana",
1795
+ "Year": "2020",
1796
+ "Type": "Local",
1797
+ "Amount": 1645,
1798
+ "AmountUnits": "Number of People"
1799
+ },
1800
+ {
1801
+ "Location": "Louisiana",
1802
+ "Year": "2020",
1803
+ "Type": "State",
1804
+ "Amount": 1527,
1805
+ "AmountUnits": "Number of Cats"
1806
+ },
1807
+ {
1808
+ "Location": "Louisiana",
1809
+ "Year": "2021",
1810
+ "Type": "Federal",
1811
+ "Amount": 1468,
1812
+ "AmountUnits": "Number of People"
1813
+ },
1814
+ {
1815
+ "Location": "Louisiana",
1816
+ "Year": "2021",
1817
+ "Type": "Local",
1818
+ "Amount": 1704,
1819
+ "AmountUnits": "Number of People"
1820
+ },
1821
+ {
1822
+ "Location": "Louisiana",
1823
+ "Year": "2021",
1824
+ "Type": "State",
1825
+ "Amount": 1586,
1826
+ "AmountUnits": "Number of Cats"
1827
+ },
1828
+ {
1829
+ "Location": "Massachusetts",
1830
+ "Year": "2019",
1831
+ "Type": "Federal",
1832
+ "Amount": 1366,
1833
+ "AmountUnits": "Number of People"
1834
+ },
1835
+ {
1836
+ "Location": "Massachusetts",
1837
+ "Year": "2019",
1838
+ "Type": "Local",
1839
+ "Amount": 1602,
1840
+ "AmountUnits": "Number of People"
1841
+ },
1842
+ {
1843
+ "Location": "Massachusetts",
1844
+ "Year": "2019",
1845
+ "Type": "State",
1846
+ "Amount": 1484,
1847
+ "AmountUnits": "Number of Cats"
1848
+ },
1849
+ {
1850
+ "Location": "Massachusetts",
1851
+ "Year": "2020",
1852
+ "Type": "Federal",
1853
+ "Amount": 1366,
1854
+ "AmountUnits": "Number of People"
1855
+ },
1856
+ {
1857
+ "Location": "Massachusetts",
1858
+ "Year": "2020",
1859
+ "Type": "Local",
1860
+ "Amount": 1602,
1861
+ "AmountUnits": "Number of People"
1862
+ },
1863
+ {
1864
+ "Location": "Massachusetts",
1865
+ "Year": "2020",
1866
+ "Type": "State",
1867
+ "Amount": 1484,
1868
+ "AmountUnits": "Number of Cats"
1869
+ },
1870
+ {
1871
+ "Location": "Massachusetts",
1872
+ "Year": "2021",
1873
+ "Type": "Federal",
1874
+ "Amount": 1425,
1875
+ "AmountUnits": "Number of People"
1876
+ },
1877
+ {
1878
+ "Location": "Massachusetts",
1879
+ "Year": "2021",
1880
+ "Type": "Local",
1881
+ "Amount": 1661,
1882
+ "AmountUnits": "Number of People"
1883
+ },
1884
+ {
1885
+ "Location": "Massachusetts",
1886
+ "Year": "2021",
1887
+ "Type": "State",
1888
+ "Amount": 1543,
1889
+ "AmountUnits": "Number of Cats"
1890
+ },
1891
+ {
1892
+ "Location": "Maryland",
1893
+ "Year": "2019",
1894
+ "Type": "Federal",
1895
+ "Amount": 1386,
1896
+ "AmountUnits": "Number of People"
1897
+ },
1898
+ {
1899
+ "Location": "Maryland",
1900
+ "Year": "2019",
1901
+ "Type": "Local",
1902
+ "Amount": 1622,
1903
+ "AmountUnits": "Number of People"
1904
+ },
1905
+ {
1906
+ "Location": "Maryland",
1907
+ "Year": "2019",
1908
+ "Type": "State",
1909
+ "Amount": 1504,
1910
+ "AmountUnits": "Number of Cats"
1911
+ },
1912
+ {
1913
+ "Location": "Maryland",
1914
+ "Year": "2020",
1915
+ "Type": "Federal",
1916
+ "Amount": 1386,
1917
+ "AmountUnits": "Number of People"
1918
+ },
1919
+ {
1920
+ "Location": "Maryland",
1921
+ "Year": "2020",
1922
+ "Type": "Local",
1923
+ "Amount": 1622,
1924
+ "AmountUnits": "Number of People"
1925
+ },
1926
+ {
1927
+ "Location": "Maryland",
1928
+ "Year": "2020",
1929
+ "Type": "State",
1930
+ "Amount": 1504,
1931
+ "AmountUnits": "Number of Cats"
1932
+ },
1933
+ {
1934
+ "Location": "Maryland",
1935
+ "Year": "2021",
1936
+ "Type": "Federal",
1937
+ "Amount": 1445,
1938
+ "AmountUnits": "Number of People"
1939
+ },
1940
+ {
1941
+ "Location": "Maryland",
1942
+ "Year": "2021",
1943
+ "Type": "Local",
1944
+ "Amount": 1681,
1945
+ "AmountUnits": "Number of People"
1946
+ },
1947
+ {
1948
+ "Location": "Maryland",
1949
+ "Year": "2021",
1950
+ "Type": "State",
1951
+ "Amount": 1563,
1952
+ "AmountUnits": "Number of Cats"
1953
+ },
1954
+ {
1955
+ "Location": "Maine\t",
1956
+ "Year": "2019",
1957
+ "Type": "Federal",
1958
+ "Amount": "1385",
1959
+ "AmountUnits": "Number of People"
1960
+ },
1961
+ {
1962
+ "Location": "Maine\t",
1963
+ "Year": "2019",
1964
+ "Type": "Local",
1965
+ "Amount": "1621",
1966
+ "AmountUnits": "Number of People"
1967
+ },
1968
+ {
1969
+ "Location": "Maine\t",
1970
+ "Year": "2019",
1971
+ "Type": "State",
1972
+ "Amount": "1503",
1973
+ "AmountUnits": "Number of Cats"
1974
+ },
1975
+ {
1976
+ "Location": "Maine\t",
1977
+ "Year": "2020",
1978
+ "Type": "Federal",
1979
+ "Amount": "1385",
1980
+ "AmountUnits": "Number of People"
1981
+ },
1982
+ {
1983
+ "Location": "Maine\t",
1984
+ "Year": "2020",
1985
+ "Type": "Local",
1986
+ "Amount": "1621",
1987
+ "AmountUnits": "Number of People"
1988
+ },
1989
+ {
1990
+ "Location": "Maine\t",
1991
+ "Year": "2020",
1992
+ "Type": "State",
1993
+ "Amount": "1503",
1994
+ "AmountUnits": "Number of Cats"
1995
+ },
1996
+ {
1997
+ "Location": "Maine\t",
1998
+ "Year": "2021",
1999
+ "Type": "Federal",
2000
+ "Amount": "1444",
2001
+ "AmountUnits": "Number of People"
2002
+ },
2003
+ {
2004
+ "Location": "Maine\t",
2005
+ "Year": "2021",
2006
+ "Type": "Local",
2007
+ "Amount": "1680",
2008
+ "AmountUnits": "Number of People"
2009
+ },
2010
+ {
2011
+ "Location": "Maine\t",
2012
+ "Year": "2021",
2013
+ "Type": "State",
2014
+ "Amount": "1562",
2015
+ "AmountUnits": "Number of Cats"
2016
+ },
2017
+ {
2018
+ "Location": "Marshall Islands",
2019
+ "Year": "2019",
2020
+ "Type": "Federal",
2021
+ "Amount": 1408,
2022
+ "AmountUnits": "Number of People"
2023
+ },
2024
+ {
2025
+ "Location": "Marshall Islands",
2026
+ "Year": "2019",
2027
+ "Type": "Local",
2028
+ "Amount": 1644,
2029
+ "AmountUnits": "Number of People"
2030
+ },
2031
+ {
2032
+ "Location": "Marshall Islands",
2033
+ "Year": "2019",
2034
+ "Type": "State",
2035
+ "Amount": 1526,
2036
+ "AmountUnits": "Number of Cats"
2037
+ },
2038
+ {
2039
+ "Location": "Marshall Islands",
2040
+ "Year": "2020",
2041
+ "Type": "Federal",
2042
+ "Amount": 1408,
2043
+ "AmountUnits": "Number of People"
2044
+ },
2045
+ {
2046
+ "Location": "Marshall Islands",
2047
+ "Year": "2020",
2048
+ "Type": "Local",
2049
+ "Amount": 1644,
2050
+ "AmountUnits": "Number of People"
2051
+ },
2052
+ {
2053
+ "Location": "Marshall Islands",
2054
+ "Year": "2020",
2055
+ "Type": "State",
2056
+ "Amount": 1526,
2057
+ "AmountUnits": "Number of Cats"
2058
+ },
2059
+ {
2060
+ "Location": "Marshall Islands",
2061
+ "Year": "2021",
2062
+ "Type": "Federal",
2063
+ "Amount": 1467,
2064
+ "AmountUnits": "Number of People"
2065
+ },
2066
+ {
2067
+ "Location": "Marshall Islands",
2068
+ "Year": "2021",
2069
+ "Type": "Local",
2070
+ "Amount": 1703,
2071
+ "AmountUnits": "Number of People"
2072
+ },
2073
+ {
2074
+ "Location": "Marshall Islands",
2075
+ "Year": "2021",
2076
+ "Type": "State",
2077
+ "Amount": 1585,
2078
+ "AmountUnits": "Number of Cats"
2079
+ },
2080
+ {
2081
+ "Location": "Michigan",
2082
+ "Year": "2019",
2083
+ "Type": "Federal",
2084
+ "Amount": 1390,
2085
+ "AmountUnits": "Number of People"
2086
+ },
2087
+ {
2088
+ "Location": "Michigan",
2089
+ "Year": "2019",
2090
+ "Type": "Local",
2091
+ "Amount": 4011,
2092
+ "AmountUnits": "Number of People"
2093
+ },
2094
+ {
2095
+ "Location": "Michigan",
2096
+ "Year": "2019",
2097
+ "Type": "State",
2098
+ "Amount": 1508,
2099
+ "AmountUnits": "Number of Cats"
2100
+ },
2101
+ {
2102
+ "Location": "Michigan",
2103
+ "Year": "2020",
2104
+ "Type": "Federal",
2105
+ "Amount": 1390,
2106
+ "AmountUnits": "Number of People"
2107
+ },
2108
+ {
2109
+ "Location": "Michigan",
2110
+ "Year": "2020",
2111
+ "Type": "Local",
2112
+ "Amount": 4111,
2113
+ "AmountUnits": "Number of People"
2114
+ },
2115
+ {
2116
+ "Location": "Michigan",
2117
+ "Year": "2020",
2118
+ "Type": "State",
2119
+ "Amount": 1508,
2120
+ "AmountUnits": "Number of Cats"
2121
+ },
2122
+ {
2123
+ "Location": "Michigan",
2124
+ "Year": "2021",
2125
+ "Type": "Federal",
2126
+ "Amount": 1449,
2127
+ "AmountUnits": "Number of People"
2128
+ },
2129
+ {
2130
+ "Location": "Michigan",
2131
+ "Year": "2021",
2132
+ "Type": "Local",
2133
+ "Amount": 1685,
2134
+ "AmountUnits": "Number of People"
2135
+ },
2136
+ {
2137
+ "Location": "Michigan",
2138
+ "Year": "2021",
2139
+ "Type": "State",
2140
+ "Amount": 1567,
2141
+ "AmountUnits": "Number of Cats"
2142
+ },
2143
+ {
2144
+ "Location": "Minnesota",
2145
+ "Year": "2019",
2146
+ "Type": "Federal",
2147
+ "Amount": 1392,
2148
+ "AmountUnits": "Number of People"
2149
+ },
2150
+ {
2151
+ "Location": "Minnesota",
2152
+ "Year": "2019",
2153
+ "Type": "Local",
2154
+ "Amount": 1628,
2155
+ "AmountUnits": "Number of People"
2156
+ },
2157
+ {
2158
+ "Location": "Minnesota",
2159
+ "Year": "2019",
2160
+ "Type": "State",
2161
+ "Amount": 1510,
2162
+ "AmountUnits": "Number of Cats"
2163
+ },
2164
+ {
2165
+ "Location": "Minnesota",
2166
+ "Year": "2020",
2167
+ "Type": "Federal",
2168
+ "Amount": 1392,
2169
+ "AmountUnits": "Number of People"
2170
+ },
2171
+ {
2172
+ "Location": "Minnesota",
2173
+ "Year": "2020",
2174
+ "Type": "Local",
2175
+ "Amount": 1628,
2176
+ "AmountUnits": "Number of People"
2177
+ },
2178
+ {
2179
+ "Location": "Minnesota",
2180
+ "Year": "2020",
2181
+ "Type": "State",
2182
+ "Amount": 1510,
2183
+ "AmountUnits": "Number of Cats"
2184
+ },
2185
+ {
2186
+ "Location": "Minnesota",
2187
+ "Year": "2021",
2188
+ "Type": "Federal",
2189
+ "Amount": 1451,
2190
+ "AmountUnits": "Number of People"
2191
+ },
2192
+ {
2193
+ "Location": "Minnesota",
2194
+ "Year": "2021",
2195
+ "Type": "Local",
2196
+ "Amount": 1687,
2197
+ "AmountUnits": "Number of People"
2198
+ },
2199
+ {
2200
+ "Location": "Minnesota",
2201
+ "Year": "2021",
2202
+ "Type": "State",
2203
+ "Amount": 1569,
2204
+ "AmountUnits": "Number of Cats"
2205
+ },
2206
+ {
2207
+ "Location": "Missouri",
2208
+ "Year": "2019",
2209
+ "Type": "Federal",
2210
+ "Amount": 1378,
2211
+ "AmountUnits": "Number of People"
2212
+ },
2213
+ {
2214
+ "Location": "Missouri",
2215
+ "Year": "2019",
2216
+ "Type": "Local",
2217
+ "Amount": 1614,
2218
+ "AmountUnits": "Number of People"
2219
+ },
2220
+ {
2221
+ "Location": "Missouri",
2222
+ "Year": "2019",
2223
+ "Type": "State",
2224
+ "Amount": 1496,
2225
+ "AmountUnits": "Number of Cats"
2226
+ },
2227
+ {
2228
+ "Location": "Missouri",
2229
+ "Year": "2020",
2230
+ "Type": "Federal",
2231
+ "Amount": 1378,
2232
+ "AmountUnits": "Number of People"
2233
+ },
2234
+ {
2235
+ "Location": "Missouri",
2236
+ "Year": "2020",
2237
+ "Type": "Local",
2238
+ "Amount": 1614,
2239
+ "AmountUnits": "Number of People"
2240
+ },
2241
+ {
2242
+ "Location": "Missouri",
2243
+ "Year": "2020",
2244
+ "Type": "State",
2245
+ "Amount": 1496,
2246
+ "AmountUnits": "Number of Cats"
2247
+ },
2248
+ {
2249
+ "Location": "Missouri",
2250
+ "Year": "2021",
2251
+ "Type": "Federal",
2252
+ "Amount": 1437,
2253
+ "AmountUnits": "Number of People"
2254
+ },
2255
+ {
2256
+ "Location": "Missouri",
2257
+ "Year": "2021",
2258
+ "Type": "Local",
2259
+ "Amount": 1673,
2260
+ "AmountUnits": "Number of People"
2261
+ },
2262
+ {
2263
+ "Location": "Missouri",
2264
+ "Year": "2021",
2265
+ "Type": "State",
2266
+ "Amount": 1555,
2267
+ "AmountUnits": "Number of Cats"
2268
+ },
2269
+ {
2270
+ "Location": "Northern Mariana Islands",
2271
+ "Year": "2019",
2272
+ "Type": "Federal",
2273
+ "Amount": "1368",
2274
+ "AmountUnits": "Number of People"
2275
+ },
2276
+ {
2277
+ "Location": "Northern Mariana Islands",
2278
+ "Year": "2019",
2279
+ "Type": "Local",
2280
+ "Amount": "1604",
2281
+ "AmountUnits": "Number of People"
2282
+ },
2283
+ {
2284
+ "Location": "Northern Mariana Islands",
2285
+ "Year": "2019",
2286
+ "Type": "State",
2287
+ "Amount": "1486",
2288
+ "AmountUnits": "Number of Cats"
2289
+ },
2290
+ {
2291
+ "Location": "Northern Mariana Islands",
2292
+ "Year": "2020",
2293
+ "Type": "Federal",
2294
+ "Amount": "1368",
2295
+ "AmountUnits": "Number of People"
2296
+ },
2297
+ {
2298
+ "Location": "Northern Mariana Islands",
2299
+ "Year": "2020",
2300
+ "Type": "Local",
2301
+ "Amount": "1604",
2302
+ "AmountUnits": "Number of People"
2303
+ },
2304
+ {
2305
+ "Location": "Northern Mariana Islands",
2306
+ "Year": "2020",
2307
+ "Type": "State",
2308
+ "Amount": "1486",
2309
+ "AmountUnits": "Number of Cats"
2310
+ },
2311
+ {
2312
+ "Location": "Northern Mariana Islands",
2313
+ "Year": "2021",
2314
+ "Type": "Federal",
2315
+ "Amount": 1427,
2316
+ "AmountUnits": "Number of People"
2317
+ },
2318
+ {
2319
+ "Location": "Northern Mariana Islands",
2320
+ "Year": "2021",
2321
+ "Type": "Local",
2322
+ "Amount": 1663,
2323
+ "AmountUnits": "Number of People"
2324
+ },
2325
+ {
2326
+ "Location": "Northern Mariana Islands",
2327
+ "Year": "2021",
2328
+ "Type": "State",
2329
+ "Amount": 1545,
2330
+ "AmountUnits": "Number of Cats"
2331
+ },
2332
+ {
2333
+ "Location": "Mississippi",
2334
+ "Year": "2019",
2335
+ "Type": "Federal",
2336
+ "Amount": 1406,
2337
+ "AmountUnits": "Number of People"
2338
+ },
2339
+ {
2340
+ "Location": "Mississippi",
2341
+ "Year": "2019",
2342
+ "Type": "Local",
2343
+ "Amount": 1642,
2344
+ "AmountUnits": "Number of People"
2345
+ },
2346
+ {
2347
+ "Location": "Mississippi",
2348
+ "Year": "2019",
2349
+ "Type": "State",
2350
+ "Amount": 1524,
2351
+ "AmountUnits": "Number of Cats"
2352
+ },
2353
+ {
2354
+ "Location": "Mississippi",
2355
+ "Year": "2020",
2356
+ "Type": "Federal",
2357
+ "Amount": 1406,
2358
+ "AmountUnits": "Number of People"
2359
+ },
2360
+ {
2361
+ "Location": "Mississippi",
2362
+ "Year": "2020",
2363
+ "Type": "Local",
2364
+ "Amount": 1642,
2365
+ "AmountUnits": "Number of People"
2366
+ },
2367
+ {
2368
+ "Location": "Mississippi",
2369
+ "Year": "2020",
2370
+ "Type": "State",
2371
+ "Amount": 1524,
2372
+ "AmountUnits": "Number of Cats"
2373
+ },
2374
+ {
2375
+ "Location": "Mississippi",
2376
+ "Year": "2021",
2377
+ "Type": "Federal",
2378
+ "Amount": 1465,
2379
+ "AmountUnits": "Number of People"
2380
+ },
2381
+ {
2382
+ "Location": "Mississippi",
2383
+ "Year": "2021",
2384
+ "Type": "Local",
2385
+ "Amount": 1701,
2386
+ "AmountUnits": "Number of People"
2387
+ },
2388
+ {
2389
+ "Location": "Mississippi",
2390
+ "Year": "2021",
2391
+ "Type": "State",
2392
+ "Amount": 1583,
2393
+ "AmountUnits": "Number of Cats"
2394
+ },
2395
+ {
2396
+ "Location": "Montana",
2397
+ "Year": "2019",
2398
+ "Type": "Federal",
2399
+ "Amount": 1364,
2400
+ "AmountUnits": "Number of People"
2401
+ },
2402
+ {
2403
+ "Location": "Montana",
2404
+ "Year": "2019",
2405
+ "Type": "Local",
2406
+ "Amount": 1600,
2407
+ "AmountUnits": "Number of People"
2408
+ },
2409
+ {
2410
+ "Location": "Montana",
2411
+ "Year": "2019",
2412
+ "Type": "State",
2413
+ "Amount": 1482,
2414
+ "AmountUnits": "Number of Cats"
2415
+ },
2416
+ {
2417
+ "Location": "Montana",
2418
+ "Year": "2020",
2419
+ "Type": "Federal",
2420
+ "Amount": 1364,
2421
+ "AmountUnits": "Number of People"
2422
+ },
2423
+ {
2424
+ "Location": "Montana",
2425
+ "Year": "2020",
2426
+ "Type": "Local",
2427
+ "Amount": 1600,
2428
+ "AmountUnits": "Number of People"
2429
+ },
2430
+ {
2431
+ "Location": "Montana",
2432
+ "Year": "2020",
2433
+ "Type": "State",
2434
+ "Amount": 1482,
2435
+ "AmountUnits": "Number of Cats"
2436
+ },
2437
+ {
2438
+ "Location": "Montana",
2439
+ "Year": "2021",
2440
+ "Type": "Federal",
2441
+ "Amount": 1423,
2442
+ "AmountUnits": "Number of People"
2443
+ },
2444
+ {
2445
+ "Location": "Montana",
2446
+ "Year": "2021",
2447
+ "Type": "Local",
2448
+ "Amount": 1659,
2449
+ "AmountUnits": "Number of People"
2450
+ },
2451
+ {
2452
+ "Location": "Montana",
2453
+ "Year": "2021",
2454
+ "Type": "State",
2455
+ "Amount": 1541,
2456
+ "AmountUnits": "Number of Cats"
2457
+ },
2458
+ {
2459
+ "Location": "North Carolina",
2460
+ "Year": "2019",
2461
+ "Type": "Federal",
2462
+ "Amount": 1358,
2463
+ "AmountUnits": "Number of People"
2464
+ },
2465
+ {
2466
+ "Location": "North Carolina",
2467
+ "Year": "2019",
2468
+ "Type": "Local",
2469
+ "Amount": 1594,
2470
+ "AmountUnits": "Number of People"
2471
+ },
2472
+ {
2473
+ "Location": "North Carolina",
2474
+ "Year": "2019",
2475
+ "Type": "State",
2476
+ "Amount": 1476,
2477
+ "AmountUnits": "Number of Cats"
2478
+ },
2479
+ {
2480
+ "Location": "North Carolina",
2481
+ "Year": "2020",
2482
+ "Type": "Federal",
2483
+ "Amount": 1358,
2484
+ "AmountUnits": "Number of People"
2485
+ },
2486
+ {
2487
+ "Location": "North Carolina",
2488
+ "Year": "2020",
2489
+ "Type": "Local",
2490
+ "Amount": 1594,
2491
+ "AmountUnits": "Number of People"
2492
+ },
2493
+ {
2494
+ "Location": "North Carolina",
2495
+ "Year": "2020",
2496
+ "Type": "State",
2497
+ "Amount": 1476,
2498
+ "AmountUnits": "Number of Cats"
2499
+ },
2500
+ {
2501
+ "Location": "North Carolina",
2502
+ "Year": "2021",
2503
+ "Type": "Federal",
2504
+ "Amount": 1417,
2505
+ "AmountUnits": "Number of People"
2506
+ },
2507
+ {
2508
+ "Location": "North Carolina",
2509
+ "Year": "2021",
2510
+ "Type": "Local",
2511
+ "Amount": 1653,
2512
+ "AmountUnits": "Number of People"
2513
+ },
2514
+ {
2515
+ "Location": "North Carolina",
2516
+ "Year": "2021",
2517
+ "Type": "State",
2518
+ "Amount": 1535,
2519
+ "AmountUnits": "Number of Cats"
2520
+ },
2521
+ {
2522
+ "Location": "North Dakota",
2523
+ "Year": "2019",
2524
+ "Type": "Federal",
2525
+ "Amount": 1355,
2526
+ "AmountUnits": "Number of People"
2527
+ },
2528
+ {
2529
+ "Location": "North Dakota",
2530
+ "Year": "2019",
2531
+ "Type": "Local",
2532
+ "Amount": 1591,
2533
+ "AmountUnits": "Number of People"
2534
+ },
2535
+ {
2536
+ "Location": "North Dakota",
2537
+ "Year": "2019",
2538
+ "Type": "State",
2539
+ "Amount": 1473,
2540
+ "AmountUnits": "Number of Cats"
2541
+ },
2542
+ {
2543
+ "Location": "North Dakota",
2544
+ "Year": "2020",
2545
+ "Type": "Federal",
2546
+ "Amount": 1355,
2547
+ "AmountUnits": "Number of People"
2548
+ },
2549
+ {
2550
+ "Location": "North Dakota",
2551
+ "Year": "2020",
2552
+ "Type": "Local",
2553
+ "Amount": 1591,
2554
+ "AmountUnits": "Number of People"
2555
+ },
2556
+ {
2557
+ "Location": "North Dakota",
2558
+ "Year": "2020",
2559
+ "Type": "State",
2560
+ "Amount": 1473,
2561
+ "AmountUnits": "Number of Cats"
2562
+ },
2563
+ {
2564
+ "Location": "North Dakota",
2565
+ "Year": "2021",
2566
+ "Type": "Federal",
2567
+ "Amount": 1414,
2568
+ "AmountUnits": "Number of People"
2569
+ },
2570
+ {
2571
+ "Location": "North Dakota",
2572
+ "Year": "2021",
2573
+ "Type": "Local",
2574
+ "Amount": 1650,
2575
+ "AmountUnits": "Number of People"
2576
+ },
2577
+ {
2578
+ "Location": "North Dakota",
2579
+ "Year": "2021",
2580
+ "Type": "State",
2581
+ "Amount": 1532,
2582
+ "AmountUnits": "Number of Cats"
2583
+ },
2584
+ {
2585
+ "Location": "Nebraska",
2586
+ "Year": "2019",
2587
+ "Type": "Federal",
2588
+ "Amount": 1391,
2589
+ "AmountUnits": "Number of People"
2590
+ },
2591
+ {
2592
+ "Location": "Nebraska",
2593
+ "Year": "2019",
2594
+ "Type": "Local",
2595
+ "Amount": 1627,
2596
+ "AmountUnits": "Number of People"
2597
+ },
2598
+ {
2599
+ "Location": "Nebraska",
2600
+ "Year": "2019",
2601
+ "Type": "State",
2602
+ "Amount": 1509,
2603
+ "AmountUnits": "Number of Cats"
2604
+ },
2605
+ {
2606
+ "Location": "Nebraska",
2607
+ "Year": "2020",
2608
+ "Type": "Federal",
2609
+ "Amount": 1391,
2610
+ "AmountUnits": "Number of People"
2611
+ },
2612
+ {
2613
+ "Location": "Nebraska",
2614
+ "Year": "2020",
2615
+ "Type": "Local",
2616
+ "Amount": 1627,
2617
+ "AmountUnits": "Number of People"
2618
+ },
2619
+ {
2620
+ "Location": "Nebraska",
2621
+ "Year": "2020",
2622
+ "Type": "State",
2623
+ "Amount": 1509,
2624
+ "AmountUnits": "Number of Cats"
2625
+ },
2626
+ {
2627
+ "Location": "Nebraska",
2628
+ "Year": "2021",
2629
+ "Type": "Federal",
2630
+ "Amount": 1450,
2631
+ "AmountUnits": "Number of People"
2632
+ },
2633
+ {
2634
+ "Location": "Nebraska",
2635
+ "Year": "2021",
2636
+ "Type": "Local",
2637
+ "Amount": 1686,
2638
+ "AmountUnits": "Number of People"
2639
+ },
2640
+ {
2641
+ "Location": "Nebraska",
2642
+ "Year": "2021",
2643
+ "Type": "State",
2644
+ "Amount": 1568,
2645
+ "AmountUnits": "Number of Cats"
2646
+ },
2647
+ {
2648
+ "Location": "New Hampshire",
2649
+ "Year": "2019",
2650
+ "Type": "Federal",
2651
+ "Amount": 1405,
2652
+ "AmountUnits": "Number of People"
2653
+ },
2654
+ {
2655
+ "Location": "New Hampshire",
2656
+ "Year": "2019",
2657
+ "Type": "Local",
2658
+ "Amount": 1641,
2659
+ "AmountUnits": "Number of People"
2660
+ },
2661
+ {
2662
+ "Location": "New Hampshire",
2663
+ "Year": "2019",
2664
+ "Type": "State",
2665
+ "Amount": 1523,
2666
+ "AmountUnits": "Number of Cats"
2667
+ },
2668
+ {
2669
+ "Location": "New Hampshire",
2670
+ "Year": "2020",
2671
+ "Type": "Federal",
2672
+ "Amount": 1405,
2673
+ "AmountUnits": "Number of People"
2674
+ },
2675
+ {
2676
+ "Location": "New Hampshire",
2677
+ "Year": "2020",
2678
+ "Type": "Local",
2679
+ "Amount": 1641,
2680
+ "AmountUnits": "Number of People"
2681
+ },
2682
+ {
2683
+ "Location": "New Hampshire",
2684
+ "Year": "2020",
2685
+ "Type": "State",
2686
+ "Amount": 1523,
2687
+ "AmountUnits": "Number of Cats"
2688
+ },
2689
+ {
2690
+ "Location": "New Hampshire",
2691
+ "Year": "2021",
2692
+ "Type": "Federal",
2693
+ "Amount": 1464,
2694
+ "AmountUnits": "Number of People"
2695
+ },
2696
+ {
2697
+ "Location": "New Hampshire",
2698
+ "Year": "2021",
2699
+ "Type": "Local",
2700
+ "Amount": 1700,
2701
+ "AmountUnits": "Number of People"
2702
+ },
2703
+ {
2704
+ "Location": "New Hampshire",
2705
+ "Year": "2021",
2706
+ "Type": "State",
2707
+ "Amount": 1582,
2708
+ "AmountUnits": "Number of Cats"
2709
+ },
2710
+ {
2711
+ "Location": "New Jersey",
2712
+ "Year": "2019",
2713
+ "Type": "Federal",
2714
+ "Amount": 1410,
2715
+ "AmountUnits": "Number of People"
2716
+ },
2717
+ {
2718
+ "Location": "New Jersey",
2719
+ "Year": "2019",
2720
+ "Type": "Local",
2721
+ "Amount": 1646,
2722
+ "AmountUnits": "Number of People"
2723
+ },
2724
+ {
2725
+ "Location": "New Jersey",
2726
+ "Year": "2019",
2727
+ "Type": "State",
2728
+ "Amount": 1528,
2729
+ "AmountUnits": "Number of Cats"
2730
+ },
2731
+ {
2732
+ "Location": "New Jersey",
2733
+ "Year": "2020",
2734
+ "Type": "Federal",
2735
+ "Amount": 1410,
2736
+ "AmountUnits": "Number of People"
2737
+ },
2738
+ {
2739
+ "Location": "New Jersey",
2740
+ "Year": "2020",
2741
+ "Type": "Local",
2742
+ "Amount": 1646,
2743
+ "AmountUnits": "Number of People"
2744
+ },
2745
+ {
2746
+ "Location": "New Jersey",
2747
+ "Year": "2020",
2748
+ "Type": "State",
2749
+ "Amount": 1528,
2750
+ "AmountUnits": "Number of Cats"
2751
+ },
2752
+ {
2753
+ "Location": "New Jersey",
2754
+ "Year": "2021",
2755
+ "Type": "Federal",
2756
+ "Amount": 1469,
2757
+ "AmountUnits": "Number of People"
2758
+ },
2759
+ {
2760
+ "Location": "New Jersey",
2761
+ "Year": "2021",
2762
+ "Type": "Local",
2763
+ "Amount": 1705,
2764
+ "AmountUnits": "Number of People"
2765
+ },
2766
+ {
2767
+ "Location": "New Jersey",
2768
+ "Year": "2021",
2769
+ "Type": "State",
2770
+ "Amount": 1587,
2771
+ "AmountUnits": "Number of Cats"
2772
+ },
2773
+ {
2774
+ "Location": "New Mexico",
2775
+ "Year": "2019",
2776
+ "Type": "Federal",
2777
+ "Amount": 1399,
2778
+ "AmountUnits": "Number of People"
2779
+ },
2780
+ {
2781
+ "Location": "New Mexico",
2782
+ "Year": "2019",
2783
+ "Type": "Local",
2784
+ "Amount": 1635,
2785
+ "AmountUnits": "Number of People"
2786
+ },
2787
+ {
2788
+ "Location": "New Mexico",
2789
+ "Year": "2019",
2790
+ "Type": "State",
2791
+ "Amount": 1517,
2792
+ "AmountUnits": "Number of Cats"
2793
+ },
2794
+ {
2795
+ "Location": "New Mexico",
2796
+ "Year": "2020",
2797
+ "Type": "Federal",
2798
+ "Amount": 1399,
2799
+ "AmountUnits": "Number of People"
2800
+ },
2801
+ {
2802
+ "Location": "New Mexico",
2803
+ "Year": "2020",
2804
+ "Type": "Local",
2805
+ "Amount": 1635,
2806
+ "AmountUnits": "Number of People"
2807
+ },
2808
+ {
2809
+ "Location": "New Mexico",
2810
+ "Year": "2020",
2811
+ "Type": "State",
2812
+ "Amount": 1517,
2813
+ "AmountUnits": "Number of Cats"
2814
+ },
2815
+ {
2816
+ "Location": "New Mexico",
2817
+ "Year": "2021",
2818
+ "Type": "Federal",
2819
+ "Amount": 1458,
2820
+ "AmountUnits": "Number of People"
2821
+ },
2822
+ {
2823
+ "Location": "New Mexico",
2824
+ "Year": "2021",
2825
+ "Type": "Local",
2826
+ "Amount": 1694,
2827
+ "AmountUnits": "Number of People"
2828
+ },
2829
+ {
2830
+ "Location": "New Mexico",
2831
+ "Year": "2021",
2832
+ "Type": "State",
2833
+ "Amount": 1576,
2834
+ "AmountUnits": "Number of Cats"
2835
+ },
2836
+ {
2837
+ "Location": "Nevada",
2838
+ "Year": "2019",
2839
+ "Type": "Federal",
2840
+ "Amount": 1357,
2841
+ "AmountUnits": "Number of People"
2842
+ },
2843
+ {
2844
+ "Location": "Nevada",
2845
+ "Year": "2019",
2846
+ "Type": "Local",
2847
+ "Amount": 1593,
2848
+ "AmountUnits": "Number of People"
2849
+ },
2850
+ {
2851
+ "Location": "Nevada",
2852
+ "Year": "2019",
2853
+ "Type": "State",
2854
+ "Amount": 1475,
2855
+ "AmountUnits": "Number of Cats"
2856
+ },
2857
+ {
2858
+ "Location": "Nevada",
2859
+ "Year": "2020",
2860
+ "Type": "Federal",
2861
+ "Amount": 1357,
2862
+ "AmountUnits": "Number of People"
2863
+ },
2864
+ {
2865
+ "Location": "Nevada",
2866
+ "Year": "2020",
2867
+ "Type": "Local",
2868
+ "Amount": 1593,
2869
+ "AmountUnits": "Number of People"
2870
+ },
2871
+ {
2872
+ "Location": "Nevada",
2873
+ "Year": "2020",
2874
+ "Type": "State",
2875
+ "Amount": 1475,
2876
+ "AmountUnits": "Number of Cats"
2877
+ },
2878
+ {
2879
+ "Location": "Nevada",
2880
+ "Year": "2021",
2881
+ "Type": "Federal",
2882
+ "Amount": 1416,
2883
+ "AmountUnits": "Number of People"
2884
+ },
2885
+ {
2886
+ "Location": "Nevada",
2887
+ "Year": "2021",
2888
+ "Type": "Local",
2889
+ "Amount": 1652,
2890
+ "AmountUnits": "Number of People"
2891
+ },
2892
+ {
2893
+ "Location": "Nevada",
2894
+ "Year": "2021",
2895
+ "Type": "State",
2896
+ "Amount": 1534,
2897
+ "AmountUnits": "Number of Cats"
2898
+ },
2899
+ {
2900
+ "Location": "New York",
2901
+ "Year": "2019",
2902
+ "Type": "Federal",
2903
+ "Amount": 1360,
2904
+ "AmountUnits": "Number of People"
2905
+ },
2906
+ {
2907
+ "Location": "New York",
2908
+ "Year": "2019",
2909
+ "Type": "Local",
2910
+ "Amount": 1596,
2911
+ "AmountUnits": "Number of People"
2912
+ },
2913
+ {
2914
+ "Location": "New York",
2915
+ "Year": "2019",
2916
+ "Type": "State",
2917
+ "Amount": 1478,
2918
+ "AmountUnits": "Number of Cats"
2919
+ },
2920
+ {
2921
+ "Location": "New York",
2922
+ "Year": "2020",
2923
+ "Type": "Federal",
2924
+ "Amount": 1360,
2925
+ "AmountUnits": "Number of People"
2926
+ },
2927
+ {
2928
+ "Location": "New York",
2929
+ "Year": "2020",
2930
+ "Type": "Local",
2931
+ "Amount": 1596,
2932
+ "AmountUnits": "Number of People"
2933
+ },
2934
+ {
2935
+ "Location": "New York",
2936
+ "Year": "2020",
2937
+ "Type": "State",
2938
+ "Amount": 1478,
2939
+ "AmountUnits": "Number of Cats"
2940
+ },
2941
+ {
2942
+ "Location": "New York",
2943
+ "Year": "2021",
2944
+ "Type": "Federal",
2945
+ "Amount": 1419,
2946
+ "AmountUnits": "Number of People"
2947
+ },
2948
+ {
2949
+ "Location": "New York",
2950
+ "Year": "2021",
2951
+ "Type": "Local",
2952
+ "Amount": 1655,
2953
+ "AmountUnits": "Number of People"
2954
+ },
2955
+ {
2956
+ "Location": "New York",
2957
+ "Year": "2021",
2958
+ "Type": "State",
2959
+ "Amount": 1537,
2960
+ "AmountUnits": "Number of Cats"
2961
+ },
2962
+ {
2963
+ "Location": "Ohio",
2964
+ "Year": "2019",
2965
+ "Type": "Federal",
2966
+ "Amount": 1407,
2967
+ "AmountUnits": "Number of People"
2968
+ },
2969
+ {
2970
+ "Location": "Ohio",
2971
+ "Year": "2019",
2972
+ "Type": "Local",
2973
+ "Amount": 1643,
2974
+ "AmountUnits": "Number of People"
2975
+ },
2976
+ {
2977
+ "Location": "Ohio",
2978
+ "Year": "2019",
2979
+ "Type": "State",
2980
+ "Amount": 1525,
2981
+ "AmountUnits": "Number of Cats"
2982
+ },
2983
+ {
2984
+ "Location": "Ohio",
2985
+ "Year": "2020",
2986
+ "Type": "Federal",
2987
+ "Amount": 1407,
2988
+ "AmountUnits": "Number of People"
2989
+ },
2990
+ {
2991
+ "Location": "Ohio",
2992
+ "Year": "2020",
2993
+ "Type": "Local",
2994
+ "Amount": 1643,
2995
+ "AmountUnits": "Number of People"
2996
+ },
2997
+ {
2998
+ "Location": "Ohio",
2999
+ "Year": "2020",
3000
+ "Type": "State",
3001
+ "Amount": 1525,
3002
+ "AmountUnits": "Number of Cats"
3003
+ },
3004
+ {
3005
+ "Location": "Ohio",
3006
+ "Year": "2021",
3007
+ "Type": "Federal",
3008
+ "Amount": 1466,
3009
+ "AmountUnits": "Number of People"
3010
+ },
3011
+ {
3012
+ "Location": "Ohio",
3013
+ "Year": "2021",
3014
+ "Type": "Local",
3015
+ "Amount": 1702,
3016
+ "AmountUnits": "Number of People"
3017
+ },
3018
+ {
3019
+ "Location": "Ohio",
3020
+ "Year": "2021",
3021
+ "Type": "State",
3022
+ "Amount": 1584,
3023
+ "AmountUnits": "Number of Cats"
3024
+ },
3025
+ {
3026
+ "Location": "Oklahoma",
3027
+ "Year": "2019",
3028
+ "Type": "Federal",
3029
+ "Amount": 1372,
3030
+ "AmountUnits": "Number of People"
3031
+ },
3032
+ {
3033
+ "Location": "Oklahoma",
3034
+ "Year": "2019",
3035
+ "Type": "Local",
3036
+ "Amount": 1608,
3037
+ "AmountUnits": "Number of People"
3038
+ },
3039
+ {
3040
+ "Location": "Oklahoma",
3041
+ "Year": "2019",
3042
+ "Type": "State",
3043
+ "Amount": 1490,
3044
+ "AmountUnits": "Number of Cats"
3045
+ },
3046
+ {
3047
+ "Location": "Oklahoma",
3048
+ "Year": "2020",
3049
+ "Type": "Federal",
3050
+ "Amount": 1372,
3051
+ "AmountUnits": "Number of People"
3052
+ },
3053
+ {
3054
+ "Location": "Oklahoma",
3055
+ "Year": "2020",
3056
+ "Type": "Local",
3057
+ "Amount": 1608,
3058
+ "AmountUnits": "Number of People"
3059
+ },
3060
+ {
3061
+ "Location": "Oklahoma",
3062
+ "Year": "2020",
3063
+ "Type": "State",
3064
+ "Amount": 1490,
3065
+ "AmountUnits": "Number of Cats"
3066
+ },
3067
+ {
3068
+ "Location": "Oklahoma",
3069
+ "Year": "2021",
3070
+ "Type": "Federal",
3071
+ "Amount": 1431,
3072
+ "AmountUnits": "Number of People"
3073
+ },
3074
+ {
3075
+ "Location": "Oklahoma",
3076
+ "Year": "2021",
3077
+ "Type": "Local",
3078
+ "Amount": 1667,
3079
+ "AmountUnits": "Number of People"
3080
+ },
3081
+ {
3082
+ "Location": "Oklahoma",
3083
+ "Year": "2021",
3084
+ "Type": "State",
3085
+ "Amount": 1549,
3086
+ "AmountUnits": "Number of Cats"
3087
+ },
3088
+ {
3089
+ "Location": "Oregon",
3090
+ "Year": "2019",
3091
+ "Type": "Federal",
3092
+ "Amount": 1379,
3093
+ "AmountUnits": "Number of People"
3094
+ },
3095
+ {
3096
+ "Location": "Oregon",
3097
+ "Year": "2019",
3098
+ "Type": "Local",
3099
+ "Amount": 1615,
3100
+ "AmountUnits": "Number of People"
3101
+ },
3102
+ {
3103
+ "Location": "Oregon",
3104
+ "Year": "2019",
3105
+ "Type": "State",
3106
+ "Amount": 1497,
3107
+ "AmountUnits": "Number of Cats"
3108
+ },
3109
+ {
3110
+ "Location": "Oregon",
3111
+ "Year": "2020",
3112
+ "Type": "Federal",
3113
+ "Amount": 1379,
3114
+ "AmountUnits": "Number of People"
3115
+ },
3116
+ {
3117
+ "Location": "Oregon",
3118
+ "Year": "2020",
3119
+ "Type": "Local",
3120
+ "Amount": 1615,
3121
+ "AmountUnits": "Number of People"
3122
+ },
3123
+ {
3124
+ "Location": "Oregon",
3125
+ "Year": "2020",
3126
+ "Type": "State",
3127
+ "Amount": 1497,
3128
+ "AmountUnits": "Number of Cats"
3129
+ },
3130
+ {
3131
+ "Location": "Oregon",
3132
+ "Year": "2021",
3133
+ "Type": "Federal",
3134
+ "Amount": 1438,
3135
+ "AmountUnits": "Number of People"
3136
+ },
3137
+ {
3138
+ "Location": "Oregon",
3139
+ "Year": "2021",
3140
+ "Type": "Local",
3141
+ "Amount": 1674,
3142
+ "AmountUnits": "Number of People"
3143
+ },
3144
+ {
3145
+ "Location": "Oregon",
3146
+ "Year": "2021",
3147
+ "Type": "State",
3148
+ "Amount": 1556,
3149
+ "AmountUnits": "Number of Cats"
3150
+ },
3151
+ {
3152
+ "Location": "Pennsylvania",
3153
+ "Year": "2019",
3154
+ "Type": "Federal",
3155
+ "Amount": 1354,
3156
+ "AmountUnits": "Number of People"
3157
+ },
3158
+ {
3159
+ "Location": "Pennsylvania",
3160
+ "Year": "2019",
3161
+ "Type": "Local",
3162
+ "Amount": 1590,
3163
+ "AmountUnits": "Number of People"
3164
+ },
3165
+ {
3166
+ "Location": "Pennsylvania",
3167
+ "Year": "2019",
3168
+ "Type": "State",
3169
+ "Amount": 1472,
3170
+ "AmountUnits": "Number of Cats"
3171
+ },
3172
+ {
3173
+ "Location": "Pennsylvania",
3174
+ "Year": "2020",
3175
+ "Type": "Federal",
3176
+ "Amount": 1354,
3177
+ "AmountUnits": "Number of People"
3178
+ },
3179
+ {
3180
+ "Location": "Pennsylvania",
3181
+ "Year": "2020",
3182
+ "Type": "Local",
3183
+ "Amount": 1590,
3184
+ "AmountUnits": "Number of People"
3185
+ },
3186
+ {
3187
+ "Location": "Pennsylvania",
3188
+ "Year": "2020",
3189
+ "Type": "State",
3190
+ "Amount": 1472,
3191
+ "AmountUnits": "Number of Cats"
3192
+ },
3193
+ {
3194
+ "Location": "Pennsylvania",
3195
+ "Year": "2021",
3196
+ "Type": "Federal",
3197
+ "Amount": 1413,
3198
+ "AmountUnits": "Number of People"
3199
+ },
3200
+ {
3201
+ "Location": "Pennsylvania",
3202
+ "Year": "2021",
3203
+ "Type": "Local",
3204
+ "Amount": 1649,
3205
+ "AmountUnits": "Number of People"
3206
+ },
3207
+ {
3208
+ "Location": "Pennsylvania",
3209
+ "Year": "2021",
3210
+ "Type": "State",
3211
+ "Amount": 1531,
3212
+ "AmountUnits": "Number of Cats"
3213
+ },
3214
+ {
3215
+ "Location": "Puerto Rico",
3216
+ "Year": "2019",
3217
+ "Type": "Federal",
3218
+ "Amount": 1363,
3219
+ "AmountUnits": "Number of People"
3220
+ },
3221
+ {
3222
+ "Location": "Puerto Rico",
3223
+ "Year": "2019",
3224
+ "Type": "Local",
3225
+ "Amount": 1599,
3226
+ "AmountUnits": "Number of People"
3227
+ },
3228
+ {
3229
+ "Location": "Puerto Rico",
3230
+ "Year": "2019",
3231
+ "Type": "State",
3232
+ "Amount": 1481,
3233
+ "AmountUnits": "Number of Cats"
3234
+ },
3235
+ {
3236
+ "Location": "Puerto Rico",
3237
+ "Year": "2020",
3238
+ "Type": "Federal",
3239
+ "Amount": 1363,
3240
+ "AmountUnits": "Number of People"
3241
+ },
3242
+ {
3243
+ "Location": "Puerto Rico",
3244
+ "Year": "2020",
3245
+ "Type": "Local",
3246
+ "Amount": 1599,
3247
+ "AmountUnits": "Number of People"
3248
+ },
3249
+ {
3250
+ "Location": "Puerto Rico",
3251
+ "Year": "2020",
3252
+ "Type": "State",
3253
+ "Amount": 1481,
3254
+ "AmountUnits": "Number of Cats"
3255
+ },
3256
+ {
3257
+ "Location": "Puerto Rico",
3258
+ "Year": "2021",
3259
+ "Type": "Federal",
3260
+ "Amount": 1422,
3261
+ "AmountUnits": "Number of People"
3262
+ },
3263
+ {
3264
+ "Location": "Puerto Rico",
3265
+ "Year": "2021",
3266
+ "Type": "Local",
3267
+ "Amount": 1658,
3268
+ "AmountUnits": "Number of People"
3269
+ },
3270
+ {
3271
+ "Location": "Puerto Rico",
3272
+ "Year": "2021",
3273
+ "Type": "State",
3274
+ "Amount": 1540,
3275
+ "AmountUnits": "Number of Cats"
3276
+ },
3277
+ {
3278
+ "Location": "Rhode Island",
3279
+ "Year": "2019",
3280
+ "Type": "Federal",
3281
+ "Amount": 1411,
3282
+ "AmountUnits": "Number of People"
3283
+ },
3284
+ {
3285
+ "Location": "Rhode Island",
3286
+ "Year": "2019",
3287
+ "Type": "Local",
3288
+ "Amount": 1647,
3289
+ "AmountUnits": "Number of People"
3290
+ },
3291
+ {
3292
+ "Location": "Rhode Island",
3293
+ "Year": "2019",
3294
+ "Type": "State",
3295
+ "Amount": 1529,
3296
+ "AmountUnits": "Number of Cats"
3297
+ },
3298
+ {
3299
+ "Location": "Rhode Island",
3300
+ "Year": "2020",
3301
+ "Type": "Federal",
3302
+ "Amount": 1411,
3303
+ "AmountUnits": "Number of People"
3304
+ },
3305
+ {
3306
+ "Location": "Rhode Island",
3307
+ "Year": "2020",
3308
+ "Type": "Local",
3309
+ "Amount": 1647,
3310
+ "AmountUnits": "Number of People"
3311
+ },
3312
+ {
3313
+ "Location": "Rhode Island",
3314
+ "Year": "2020",
3315
+ "Type": "State",
3316
+ "Amount": 1529,
3317
+ "AmountUnits": "Number of Cats"
3318
+ },
3319
+ {
3320
+ "Location": "Rhode Island",
3321
+ "Year": "2021",
3322
+ "Type": "Federal",
3323
+ "Amount": 1470,
3324
+ "AmountUnits": "Number of People"
3325
+ },
3326
+ {
3327
+ "Location": "Rhode Island",
3328
+ "Year": "2021",
3329
+ "Type": "Local",
3330
+ "Amount": 1706,
3331
+ "AmountUnits": "Number of People"
3332
+ },
3333
+ {
3334
+ "Location": "Rhode Island",
3335
+ "Year": "2021",
3336
+ "Type": "State",
3337
+ "Amount": 1588,
3338
+ "AmountUnits": "Number of Cats"
3339
+ },
3340
+ {
3341
+ "Location": "Republic of Palau",
3342
+ "Year": "2019",
3343
+ "Type": "Federal",
3344
+ "Amount": "1412",
3345
+ "AmountUnits": "Number of People"
3346
+ },
3347
+ {
3348
+ "Location": "Republic of Palau",
3349
+ "Year": "2019",
3350
+ "Type": "Local",
3351
+ "Amount": "1648",
3352
+ "AmountUnits": "Number of People"
3353
+ },
3354
+ {
3355
+ "Location": "Republic of Palau",
3356
+ "Year": "2019",
3357
+ "Type": "State",
3358
+ "Amount": "1530",
3359
+ "AmountUnits": "Number of Cats"
3360
+ },
3361
+ {
3362
+ "Location": "Republic of Palau",
3363
+ "Year": "2020",
3364
+ "Type": "Federal",
3365
+ "Amount": "1412",
3366
+ "AmountUnits": "Number of People"
3367
+ },
3368
+ {
3369
+ "Location": "Republic of Palau",
3370
+ "Year": "2020",
3371
+ "Type": "Local",
3372
+ "Amount": "1648",
3373
+ "AmountUnits": "Number of People"
3374
+ },
3375
+ {
3376
+ "Location": "Republic of Palau",
3377
+ "Year": "2020",
3378
+ "Type": "State",
3379
+ "Amount": "1530",
3380
+ "AmountUnits": "Number of Cats"
3381
+ },
3382
+ {
3383
+ "Location": "Republic of Palau",
3384
+ "Year": "2021",
3385
+ "Type": "Federal",
3386
+ "Amount": "1471",
3387
+ "AmountUnits": "Number of People"
3388
+ },
3389
+ {
3390
+ "Location": "Republic of Palau",
3391
+ "Year": "2021",
3392
+ "Type": "Local",
3393
+ "Amount": "1707",
3394
+ "AmountUnits": "Number of People"
3395
+ },
3396
+ {
3397
+ "Location": "Republic of Palau",
3398
+ "Year": "2021",
3399
+ "Type": "State",
3400
+ "Amount": "1589",
3401
+ "AmountUnits": "Number of Cats"
3402
+ },
3403
+ {
3404
+ "Location": "South Carolina",
3405
+ "Year": "2019",
3406
+ "Type": "Federal",
3407
+ "Amount": 1389,
3408
+ "AmountUnits": "Number of People"
3409
+ },
3410
+ {
3411
+ "Location": "South Carolina",
3412
+ "Year": "2019",
3413
+ "Type": "Local",
3414
+ "Amount": 1625,
3415
+ "AmountUnits": "Number of People"
3416
+ },
3417
+ {
3418
+ "Location": "South Carolina",
3419
+ "Year": "2019",
3420
+ "Type": "State",
3421
+ "Amount": 1507,
3422
+ "AmountUnits": "Number of Cats"
3423
+ },
3424
+ {
3425
+ "Location": "South Carolina",
3426
+ "Year": "2020",
3427
+ "Type": "Federal",
3428
+ "Amount": 1389,
3429
+ "AmountUnits": "Number of People"
3430
+ },
3431
+ {
3432
+ "Location": "South Carolina",
3433
+ "Year": "2020",
3434
+ "Type": "Local",
3435
+ "Amount": 1625,
3436
+ "AmountUnits": "Number of People"
3437
+ },
3438
+ {
3439
+ "Location": "South Carolina",
3440
+ "Year": "2020",
3441
+ "Type": "State",
3442
+ "Amount": 1507,
3443
+ "AmountUnits": "Number of Cats"
3444
+ },
3445
+ {
3446
+ "Location": "South Carolina",
3447
+ "Year": "2021",
3448
+ "Type": "Federal",
3449
+ "Amount": 1448,
3450
+ "AmountUnits": "Number of People"
3451
+ },
3452
+ {
3453
+ "Location": "South Carolina",
3454
+ "Year": "2021",
3455
+ "Type": "Local",
3456
+ "Amount": 1684,
3457
+ "AmountUnits": "Number of People"
3458
+ },
3459
+ {
3460
+ "Location": "South Carolina",
3461
+ "Year": "2021",
3462
+ "Type": "State",
3463
+ "Amount": 1566,
3464
+ "AmountUnits": "Number of Cats"
3465
+ },
3466
+ {
3467
+ "Location": "South Dakota",
3468
+ "Year": "2019",
3469
+ "Type": "Federal",
3470
+ "Amount": 1373,
3471
+ "AmountUnits": "Number of People"
3472
+ },
3473
+ {
3474
+ "Location": "South Dakota",
3475
+ "Year": "2019",
3476
+ "Type": "Local",
3477
+ "Amount": 1609,
3478
+ "AmountUnits": "Number of People"
3479
+ },
3480
+ {
3481
+ "Location": "South Dakota",
3482
+ "Year": "2019",
3483
+ "Type": "State",
3484
+ "Amount": 1491,
3485
+ "AmountUnits": "Number of Cats"
3486
+ },
3487
+ {
3488
+ "Location": "South Dakota",
3489
+ "Year": "2020",
3490
+ "Type": "Federal",
3491
+ "Amount": 1373,
3492
+ "AmountUnits": "Number of People"
3493
+ },
3494
+ {
3495
+ "Location": "South Dakota",
3496
+ "Year": "2020",
3497
+ "Type": "Local",
3498
+ "Amount": 1609,
3499
+ "AmountUnits": "Number of People"
3500
+ },
3501
+ {
3502
+ "Location": "South Dakota",
3503
+ "Year": "2020",
3504
+ "Type": "State",
3505
+ "Amount": 1491,
3506
+ "AmountUnits": "Number of Cats"
3507
+ },
3508
+ {
3509
+ "Location": "South Dakota",
3510
+ "Year": "2021",
3511
+ "Type": "Federal",
3512
+ "Amount": 1432,
3513
+ "AmountUnits": "Number of People"
3514
+ },
3515
+ {
3516
+ "Location": "South Dakota",
3517
+ "Year": "2021",
3518
+ "Type": "Local",
3519
+ "Amount": 1668,
3520
+ "AmountUnits": "Number of People"
3521
+ },
3522
+ {
3523
+ "Location": "South Dakota",
3524
+ "Year": "2021",
3525
+ "Type": "State",
3526
+ "Amount": 1550,
3527
+ "AmountUnits": "Number of Cats"
3528
+ },
3529
+ {
3530
+ "Location": "Tennessee",
3531
+ "Year": "2019",
3532
+ "Type": "Federal",
3533
+ "Amount": 1376,
3534
+ "AmountUnits": "Number of People"
3535
+ },
3536
+ {
3537
+ "Location": "Tennessee",
3538
+ "Year": "2019",
3539
+ "Type": "Local",
3540
+ "Amount": 1612,
3541
+ "AmountUnits": "Number of People"
3542
+ },
3543
+ {
3544
+ "Location": "Tennessee",
3545
+ "Year": "2019",
3546
+ "Type": "State",
3547
+ "Amount": 1494,
3548
+ "AmountUnits": "Number of Cats"
3549
+ },
3550
+ {
3551
+ "Location": "Tennessee",
3552
+ "Year": "2020",
3553
+ "Type": "Federal",
3554
+ "Amount": 1376,
3555
+ "AmountUnits": "Number of People"
3556
+ },
3557
+ {
3558
+ "Location": "Tennessee",
3559
+ "Year": "2020",
3560
+ "Type": "Local",
3561
+ "Amount": 1612,
3562
+ "AmountUnits": "Number of People"
3563
+ },
3564
+ {
3565
+ "Location": "Tennessee",
3566
+ "Year": "2020",
3567
+ "Type": "State",
3568
+ "Amount": 1494,
3569
+ "AmountUnits": "Number of Cats"
3570
+ },
3571
+ {
3572
+ "Location": "Tennessee",
3573
+ "Year": "2021",
3574
+ "Type": "Federal",
3575
+ "Amount": 1435,
3576
+ "AmountUnits": "Number of People"
3577
+ },
3578
+ {
3579
+ "Location": "Tennessee",
3580
+ "Year": "2021",
3581
+ "Type": "Local",
3582
+ "Amount": 1671,
3583
+ "AmountUnits": "Number of People"
3584
+ },
3585
+ {
3586
+ "Location": "Tennessee",
3587
+ "Year": "2021",
3588
+ "Type": "State",
3589
+ "Amount": 1553,
3590
+ "AmountUnits": "Number of Cats"
3591
+ },
3592
+ {
3593
+ "Location": "Texas",
3594
+ "Year": "2019",
3595
+ "Type": "Federal",
3596
+ "Amount": 1361,
3597
+ "AmountUnits": "Number of People"
3598
+ },
3599
+ {
3600
+ "Location": "Texas",
3601
+ "Year": "2019",
3602
+ "Type": "Local",
3603
+ "Amount": 1597,
3604
+ "AmountUnits": "Number of People"
3605
+ },
3606
+ {
3607
+ "Location": "Texas",
3608
+ "Year": "2019",
3609
+ "Type": "State",
3610
+ "Amount": 1479,
3611
+ "AmountUnits": "Number of Cats"
3612
+ },
3613
+ {
3614
+ "Location": "Texas",
3615
+ "Year": "2020",
3616
+ "Type": "Federal",
3617
+ "Amount": 1361,
3618
+ "AmountUnits": "Number of People"
3619
+ },
3620
+ {
3621
+ "Location": "Texas",
3622
+ "Year": "2020",
3623
+ "Type": "Local",
3624
+ "Amount": 1597,
3625
+ "AmountUnits": "Number of People"
3626
+ },
3627
+ {
3628
+ "Location": "Texas",
3629
+ "Year": "2020",
3630
+ "Type": "State",
3631
+ "Amount": 1479,
3632
+ "AmountUnits": "Number of Cats"
3633
+ },
3634
+ {
3635
+ "Location": "Texas",
3636
+ "Year": "2021",
3637
+ "Type": "Federal",
3638
+ "Amount": 1420,
3639
+ "AmountUnits": "Number of People"
3640
+ },
3641
+ {
3642
+ "Location": "Texas",
3643
+ "Year": "2021",
3644
+ "Type": "Local",
3645
+ "Amount": 1656,
3646
+ "AmountUnits": "Number of People"
3647
+ },
3648
+ {
3649
+ "Location": "Texas",
3650
+ "Year": "2021",
3651
+ "Type": "State",
3652
+ "Amount": 1538,
3653
+ "AmountUnits": "Number of Cats"
3654
+ },
3655
+ {
3656
+ "Location": "Utah",
3657
+ "Year": "2019",
3658
+ "Type": "Federal",
3659
+ "Amount": 1380,
3660
+ "AmountUnits": "Number of People"
3661
+ },
3662
+ {
3663
+ "Location": "Utah",
3664
+ "Year": "2019",
3665
+ "Type": "Local",
3666
+ "Amount": 1616,
3667
+ "AmountUnits": "Number of People"
3668
+ },
3669
+ {
3670
+ "Location": "Utah",
3671
+ "Year": "2019",
3672
+ "Type": "State",
3673
+ "Amount": 1498,
3674
+ "AmountUnits": "Number of Cats"
3675
+ },
3676
+ {
3677
+ "Location": "Utah",
3678
+ "Year": "2020",
3679
+ "Type": "Federal",
3680
+ "Amount": 1380,
3681
+ "AmountUnits": "Number of People"
3682
+ },
3683
+ {
3684
+ "Location": "Utah",
3685
+ "Year": "2020",
3686
+ "Type": "Local",
3687
+ "Amount": 1616,
3688
+ "AmountUnits": "Number of People"
3689
+ },
3690
+ {
3691
+ "Location": "Utah",
3692
+ "Year": "2020",
3693
+ "Type": "State",
3694
+ "Amount": 1498,
3695
+ "AmountUnits": "Number of Cats"
3696
+ },
3697
+ {
3698
+ "Location": "Utah",
3699
+ "Year": "2021",
3700
+ "Type": "Federal",
3701
+ "Amount": 1439,
3702
+ "AmountUnits": "Number of People"
3703
+ },
3704
+ {
3705
+ "Location": "Utah",
3706
+ "Year": "2021",
3707
+ "Type": "Local",
3708
+ "Amount": 1675,
3709
+ "AmountUnits": "Number of People"
3710
+ },
3711
+ {
3712
+ "Location": "Utah",
3713
+ "Year": "2021",
3714
+ "Type": "State",
3715
+ "Amount": 1557,
3716
+ "AmountUnits": "Number of Cats"
3717
+ },
3718
+ {
3719
+ "Location": "Virginia",
3720
+ "Year": "2019",
3721
+ "Type": "Federal",
3722
+ "Amount": 1382,
3723
+ "AmountUnits": "Number of People"
3724
+ },
3725
+ {
3726
+ "Location": "Virginia",
3727
+ "Year": "2019",
3728
+ "Type": "Local",
3729
+ "Amount": 1618,
3730
+ "AmountUnits": "Number of People"
3731
+ },
3732
+ {
3733
+ "Location": "Virginia",
3734
+ "Year": "2019",
3735
+ "Type": "State",
3736
+ "Amount": 1500,
3737
+ "AmountUnits": "Number of Cats"
3738
+ },
3739
+ {
3740
+ "Location": "Virginia",
3741
+ "Year": "2020",
3742
+ "Type": "Federal",
3743
+ "Amount": 1382,
3744
+ "AmountUnits": "Number of People"
3745
+ },
3746
+ {
3747
+ "Location": "Virginia",
3748
+ "Year": "2020",
3749
+ "Type": "Local",
3750
+ "Amount": 1618,
3751
+ "AmountUnits": "Number of People"
3752
+ },
3753
+ {
3754
+ "Location": "Virginia",
3755
+ "Year": "2020",
3756
+ "Type": "State",
3757
+ "Amount": 1500,
3758
+ "AmountUnits": "Number of Cats"
3759
+ },
3760
+ {
3761
+ "Location": "Virginia",
3762
+ "Year": "2021",
3763
+ "Type": "Federal",
3764
+ "Amount": 1441,
3765
+ "AmountUnits": "Number of People"
3766
+ },
3767
+ {
3768
+ "Location": "Virginia",
3769
+ "Year": "2021",
3770
+ "Type": "Local",
3771
+ "Amount": 1677,
3772
+ "AmountUnits": "Number of People"
3773
+ },
3774
+ {
3775
+ "Location": "Virginia",
3776
+ "Year": "2021",
3777
+ "Type": "State",
3778
+ "Amount": 1559,
3779
+ "AmountUnits": "Number of Cats"
3780
+ },
3781
+ {
3782
+ "Location": "U.S. Virgin Islands",
3783
+ "Year": "2019",
3784
+ "Type": "Federal",
3785
+ "Amount": "1383",
3786
+ "AmountUnits": "Number of People"
3787
+ },
3788
+ {
3789
+ "Location": "U.S. Virgin Islands",
3790
+ "Year": "2019",
3791
+ "Type": "Local",
3792
+ "Amount": "1619",
3793
+ "AmountUnits": "Number of People"
3794
+ },
3795
+ {
3796
+ "Location": "U.S. Virgin Islands",
3797
+ "Year": "2019",
3798
+ "Type": "State",
3799
+ "Amount": "1501",
3800
+ "AmountUnits": "Number of Cats"
3801
+ },
3802
+ {
3803
+ "Location": "U.S. Virgin Islands",
3804
+ "Year": "2020",
3805
+ "Type": "Federal",
3806
+ "Amount": "1383",
3807
+ "AmountUnits": "Number of People"
3808
+ },
3809
+ {
3810
+ "Location": "U.S. Virgin Islands",
3811
+ "Year": "2020",
3812
+ "Type": "Local",
3813
+ "Amount": "1619",
3814
+ "AmountUnits": "Number of People"
3815
+ },
3816
+ {
3817
+ "Location": "U.S. Virgin Islands",
3818
+ "Year": "2020",
3819
+ "Type": "State",
3820
+ "Amount": "1501",
3821
+ "AmountUnits": "Number of Cats"
3822
+ },
3823
+ {
3824
+ "Location": "U.S. Virgin Islands",
3825
+ "Year": "2021",
3826
+ "Type": "Federal",
3827
+ "Amount": 1442,
3828
+ "AmountUnits": "Number of People"
3829
+ },
3830
+ {
3831
+ "Location": "U.S. Virgin Islands",
3832
+ "Year": "2021",
3833
+ "Type": "Local",
3834
+ "Amount": 1678,
3835
+ "AmountUnits": "Number of People"
3836
+ },
3837
+ {
3838
+ "Location": "U.S. Virgin Islands",
3839
+ "Year": "2021",
3840
+ "Type": "State",
3841
+ "Amount": 1560,
3842
+ "AmountUnits": "Number of Cats"
3843
+ },
3844
+ {
3845
+ "Location": "Vermont",
3846
+ "Year": "2019",
3847
+ "Type": "Federal",
3848
+ "Amount": 1370,
3849
+ "AmountUnits": "Number of People"
3850
+ },
3851
+ {
3852
+ "Location": "Vermont",
3853
+ "Year": "2019",
3854
+ "Type": "Local",
3855
+ "Amount": 1606,
3856
+ "AmountUnits": "Number of People"
3857
+ },
3858
+ {
3859
+ "Location": "Vermont",
3860
+ "Year": "2019",
3861
+ "Type": "State",
3862
+ "Amount": 1488,
3863
+ "AmountUnits": "Number of Cats"
3864
+ },
3865
+ {
3866
+ "Location": "Vermont",
3867
+ "Year": "2020",
3868
+ "Type": "Federal",
3869
+ "Amount": 1370,
3870
+ "AmountUnits": "Number of People"
3871
+ },
3872
+ {
3873
+ "Location": "Vermont",
3874
+ "Year": "2020",
3875
+ "Type": "Local",
3876
+ "Amount": 1606,
3877
+ "AmountUnits": "Number of People"
3878
+ },
3879
+ {
3880
+ "Location": "Vermont",
3881
+ "Year": "2020",
3882
+ "Type": "State",
3883
+ "Amount": 1488,
3884
+ "AmountUnits": "Number of Cats"
3885
+ },
3886
+ {
3887
+ "Location": "Vermont",
3888
+ "Year": "2021",
3889
+ "Type": "Federal",
3890
+ "Amount": 1429,
3891
+ "AmountUnits": "Number of People"
3892
+ },
3893
+ {
3894
+ "Location": "Vermont",
3895
+ "Year": "2021",
3896
+ "Type": "Local",
3897
+ "Amount": 1665,
3898
+ "AmountUnits": "Number of People"
3899
+ },
3900
+ {
3901
+ "Location": "Vermont",
3902
+ "Year": "2021",
3903
+ "Type": "State",
3904
+ "Amount": 1547,
3905
+ "AmountUnits": "Number of Cats"
3906
+ },
3907
+ {
3908
+ "Location": "Washington",
3909
+ "Year": "2019",
3910
+ "Type": "Federal",
3911
+ "Amount": 1393,
3912
+ "AmountUnits": "Number of People"
3913
+ },
3914
+ {
3915
+ "Location": "Washington",
3916
+ "Year": "2019",
3917
+ "Type": "Local",
3918
+ "Amount": 1629,
3919
+ "AmountUnits": "Number of People"
3920
+ },
3921
+ {
3922
+ "Location": "Washington",
3923
+ "Year": "2019",
3924
+ "Type": "State",
3925
+ "Amount": 1511,
3926
+ "AmountUnits": "Number of Cats"
3927
+ },
3928
+ {
3929
+ "Location": "Washington",
3930
+ "Year": "2020",
3931
+ "Type": "Federal",
3932
+ "Amount": 1393,
3933
+ "AmountUnits": "Number of People"
3934
+ },
3935
+ {
3936
+ "Location": "Washington",
3937
+ "Year": "2020",
3938
+ "Type": "Local",
3939
+ "Amount": 1629,
3940
+ "AmountUnits": "Number of People"
3941
+ },
3942
+ {
3943
+ "Location": "Washington",
3944
+ "Year": "2020",
3945
+ "Type": "State",
3946
+ "Amount": 1511,
3947
+ "AmountUnits": "Number of Cats"
3948
+ },
3949
+ {
3950
+ "Location": "Washington",
3951
+ "Year": "2021",
3952
+ "Type": "Federal",
3953
+ "Amount": 1452,
3954
+ "AmountUnits": "Number of People"
3955
+ },
3956
+ {
3957
+ "Location": "Washington",
3958
+ "Year": "2021",
3959
+ "Type": "Local",
3960
+ "Amount": 1688,
3961
+ "AmountUnits": "Number of People"
3962
+ },
3963
+ {
3964
+ "Location": "Washington",
3965
+ "Year": "2021",
3966
+ "Type": "State",
3967
+ "Amount": 1570,
3968
+ "AmountUnits": "Number of Cats"
3969
+ },
3970
+ {
3971
+ "Location": "Wisconsin",
3972
+ "Year": "2019",
3973
+ "Type": "Federal",
3974
+ "Amount": 1371,
3975
+ "AmountUnits": "Number of People"
3976
+ },
3977
+ {
3978
+ "Location": "Wisconsin",
3979
+ "Year": "2019",
3980
+ "Type": "Local",
3981
+ "Amount": 1607,
3982
+ "AmountUnits": "Number of People"
3983
+ },
3984
+ {
3985
+ "Location": "Wisconsin",
3986
+ "Year": "2019",
3987
+ "Type": "State",
3988
+ "Amount": 1489,
3989
+ "AmountUnits": "Number of Cats"
3990
+ },
3991
+ {
3992
+ "Location": "Wisconsin",
3993
+ "Year": "2020",
3994
+ "Type": "Federal",
3995
+ "Amount": 1371,
3996
+ "AmountUnits": "Number of People"
3997
+ },
3998
+ {
3999
+ "Location": "Wisconsin",
4000
+ "Year": "2020",
4001
+ "Type": "Local",
4002
+ "Amount": 1607,
4003
+ "AmountUnits": "Number of People"
4004
+ },
4005
+ {
4006
+ "Location": "Wisconsin",
4007
+ "Year": "2020",
4008
+ "Type": "State",
4009
+ "Amount": 1489,
4010
+ "AmountUnits": "Number of Cats"
4011
+ },
4012
+ {
4013
+ "Location": "Wisconsin",
4014
+ "Year": "2021",
4015
+ "Type": "Federal",
4016
+ "Amount": 1430,
4017
+ "AmountUnits": "Number of People"
4018
+ },
4019
+ {
4020
+ "Location": "Wisconsin",
4021
+ "Year": "2021",
4022
+ "Type": "Local",
4023
+ "Amount": 1666,
4024
+ "AmountUnits": "Number of People"
4025
+ },
4026
+ {
4027
+ "Location": "Wisconsin",
4028
+ "Year": "2021",
4029
+ "Type": "State",
4030
+ "Amount": 1548,
4031
+ "AmountUnits": "Number of Cats"
4032
+ },
4033
+ {
4034
+ "Location": "West Virginia",
4035
+ "Year": "2019",
4036
+ "Type": "Federal",
4037
+ "Amount": 1397,
4038
+ "AmountUnits": "Number of People"
4039
+ },
4040
+ {
4041
+ "Location": "West Virginia",
4042
+ "Year": "2019",
4043
+ "Type": "Local",
4044
+ "Amount": 1633,
4045
+ "AmountUnits": "Number of People"
4046
+ },
4047
+ {
4048
+ "Location": "West Virginia",
4049
+ "Year": "2019",
4050
+ "Type": "State",
4051
+ "Amount": 1515,
4052
+ "AmountUnits": "Number of Cats"
4053
+ },
4054
+ {
4055
+ "Location": "West Virginia",
4056
+ "Year": "2020",
4057
+ "Type": "Federal",
4058
+ "Amount": 1397,
4059
+ "AmountUnits": "Number of People"
4060
+ },
4061
+ {
4062
+ "Location": "West Virginia",
4063
+ "Year": "2020",
4064
+ "Type": "Local",
4065
+ "Amount": 1633,
4066
+ "AmountUnits": "Number of People"
4067
+ },
4068
+ {
4069
+ "Location": "West Virginia",
4070
+ "Year": "2020",
4071
+ "Type": "State",
4072
+ "Amount": 1515,
4073
+ "AmountUnits": "Number of Cats"
4074
+ },
4075
+ {
4076
+ "Location": "West Virginia",
4077
+ "Year": "2021",
4078
+ "Type": "Federal",
4079
+ "Amount": 1456,
4080
+ "AmountUnits": "Number of People"
4081
+ },
4082
+ {
4083
+ "Location": "West Virginia",
4084
+ "Year": "2021",
4085
+ "Type": "Local",
4086
+ "Amount": 1692,
4087
+ "AmountUnits": "Number of People"
4088
+ },
4089
+ {
4090
+ "Location": "West Virginia",
4091
+ "Year": "2021",
4092
+ "Type": "State",
4093
+ "Amount": 1574,
4094
+ "AmountUnits": "Number of Cats"
4095
+ },
4096
+ {
4097
+ "Location": "Wyoming",
4098
+ "Year": "2019",
4099
+ "Type": "Federal",
4100
+ "Amount": 1395,
4101
+ "AmountUnits": "Number of People"
4102
+ },
4103
+ {
4104
+ "Location": "Wyoming",
4105
+ "Year": "2019",
4106
+ "Type": "Local",
4107
+ "Amount": 1631,
4108
+ "AmountUnits": "Number of People"
4109
+ },
4110
+ {
4111
+ "Location": "Wyoming",
4112
+ "Year": "2019",
4113
+ "Type": "State",
4114
+ "Amount": 1513,
4115
+ "AmountUnits": "Number of Cats"
4116
+ },
4117
+ {
4118
+ "Location": "Wyoming",
4119
+ "Year": "2020",
4120
+ "Type": "Federal",
4121
+ "Amount": 1395,
4122
+ "AmountUnits": "Number of People"
4123
+ },
4124
+ {
4125
+ "Location": "Wyoming",
4126
+ "Year": "2020",
4127
+ "Type": "Local",
4128
+ "Amount": 1631,
4129
+ "AmountUnits": "Number of People"
4130
+ },
4131
+ {
4132
+ "Location": "Wyoming",
4133
+ "Year": "2020",
4134
+ "Type": "State",
4135
+ "Amount": 1513,
4136
+ "AmountUnits": "Number of Cats"
4137
+ },
4138
+ {
4139
+ "Location": "Wyoming",
4140
+ "Year": "2021",
4141
+ "Type": "Federal",
4142
+ "Amount": 1454,
4143
+ "AmountUnits": "Number of People"
4144
+ },
4145
+ {
4146
+ "Location": "Wyoming",
4147
+ "Year": "2021",
4148
+ "Type": "Local",
4149
+ "Amount": 1690,
4150
+ "AmountUnits": "Number of People"
4151
+ },
4152
+ {
4153
+ "Location": "Wyoming",
4154
+ "Year": "2021",
4155
+ "Type": "State",
4156
+ "Amount": 1572,
4157
+ "AmountUnits": "Number of Cats"
4158
+ }
4159
+ ],
4160
+ "dataFileSize": 14901,
4161
+ "dataFileName": "dashboard_aggregate_example_state_type (1).csv",
4162
+ "dataFileSourceType": "file",
4163
+ "dataFileFormat": "CSV",
4164
+ "preview": true
4165
+ }
4166
+ }
4167
+ }