Download HMRC tax receipts and National Insurance contributions
Source:R/hmrc_tax_receipts.R
hmrc_tax_receipts.RdDownloads and tidies the monthly HMRC Tax Receipts and National Insurance Contributions bulletin published on GOV.UK. The bulletin covers all major UK taxes and duties from April 2008 to the most recent month (monthly granularity), updated on approximately the 15th working day of each month.
Arguments
- tax
Character vector of tax head identifiers, or
NULL(default) to return all available series. Usehmrc_list_tax_heads()to see valid values and descriptions.- start
Character
"YYYY-MM"or aDateobject. If provided, rows before this month are dropped.- end
Character
"YYYY-MM"or aDateobject. If provided, rows after this month are dropped.- cache
Logical. If
TRUE(default), the downloaded file is cached locally and reused on subsequent calls. Usehmrc_clear_cache()to reset.
Value
An hmrc_tbl (subclass of data.frame) with columns:
- date
Date. The first day of the reference month.- tax_head
Character. Tax or duty identifier (see
hmrc_list_tax_heads()).- description
Character. Plain-English series label.
- receipts_gbp_m
Numeric. Cash receipts in millions of pounds (GBP).
Provenance metadata (source URL, fetch time, vintage) is attached as
the "hmrc_meta" attribute and can be inspected with hmrc_meta().
See also
Other data fetchers:
hmrc_capital_gains(),
hmrc_corporation_tax(),
hmrc_creative_industries(),
hmrc_fuel_duties(),
hmrc_income_tax_stats(),
hmrc_inheritance_tax(),
hmrc_patent_box(),
hmrc_property_transactions(),
hmrc_rd_credits(),
hmrc_stamp_duty(),
hmrc_tax_gap(),
hmrc_tobacco_duties(),
hmrc_vat()
Examples
# \donttest{
op <- options(hmrc.cache_dir = tempdir())
hmrc_tax_receipts()
#> ℹ Resolving download URL from GOV.UK Content API
#> ✔ Resolving download URL from GOV.UK Content API [22ms]
#>
#> ℹ Using cached file
#> ✔ Using cached file [6ms]
#>
#> ℹ Parsing data
#> New names:
#> • `` -> `...1`
#> • `` -> `...2`
#> • `` -> `...3`
#> • `` -> `...4`
#> • `` -> `...5`
#> • `` -> `...6`
#> • `` -> `...7`
#> • `` -> `...8`
#> • `` -> `...9`
#> • `` -> `...10`
#> • `` -> `...11`
#> • `` -> `...12`
#> • `` -> `...13`
#> • `` -> `...14`
#> • `` -> `...15`
#> • `` -> `...16`
#> • `` -> `...17`
#> • `` -> `...18`
#> • `` -> `...19`
#> • `` -> `...20`
#> • `` -> `...21`
#> • `` -> `...22`
#> • `` -> `...23`
#> • `` -> `...24`
#> • `` -> `...25`
#> • `` -> `...26`
#> • `` -> `...27`
#> • `` -> `...28`
#> • `` -> `...29`
#> • `` -> `...30`
#> • `` -> `...31`
#> • `` -> `...32`
#> • `` -> `...33`
#> • `` -> `...34`
#> • `` -> `...35`
#> • `` -> `...36`
#> • `` -> `...37`
#> • `` -> `...38`
#> • `` -> `...39`
#> • `` -> `...40`
#> • `` -> `...41`
#> • `` -> `...42`
#> • `` -> `...43`
#> • `` -> `...44`
#> • `` -> `...45`
#> • `` -> `...46`
#> • `` -> `...47`
#> ✔ Parsing data [381ms]
#>
#> # HMRC tax receipts and NICs (monthly bulletin)
#> # Source: https://www.gov.uk/government/statistics/hmrc-tax-and-nics-receipts-for-the-uk
#> # Fetched 2026-04-26 13:16:01 UTC | Vintage: latest | Cells: cash | Freq: monthly | 4,920 rows x 4 cols
#>
#> date tax_head
#> 1 2016-04-01 aggregates_levy
#> 2 2016-05-01 aggregates_levy
#> 3 2016-06-01 aggregates_levy
#> 4 2016-07-01 aggregates_levy
#> 5 2016-08-01 aggregates_levy
#> 6 2016-09-01 aggregates_levy
#> 7 2016-10-01 aggregates_levy
#> 8 2016-11-01 aggregates_levy
#> 9 2016-12-01 aggregates_levy
#> 10 2017-01-01 aggregates_levy
#> 11 2017-02-01 aggregates_levy
#> 12 2017-03-01 aggregates_levy
#> 13 2017-04-01 aggregates_levy
#> 14 2017-05-01 aggregates_levy
#> 15 2017-06-01 aggregates_levy
#> 16 2017-07-01 aggregates_levy
#> 17 2017-08-01 aggregates_levy
#> 18 2017-09-01 aggregates_levy
#> 19 2017-10-01 aggregates_levy
#> 20 2017-11-01 aggregates_levy
#> 21 2017-12-01 aggregates_levy
#> 22 2018-01-01 aggregates_levy
#> 23 2018-02-01 aggregates_levy
#> 24 2018-03-01 aggregates_levy
#> 25 2018-04-01 aggregates_levy
#> 26 2018-05-01 aggregates_levy
#> 27 2018-06-01 aggregates_levy
#> 28 2018-07-01 aggregates_levy
#> 29 2018-08-01 aggregates_levy
#> 30 2018-09-01 aggregates_levy
#> 31 2018-10-01 aggregates_levy
#> 32 2018-11-01 aggregates_levy
#> 33 2018-12-01 aggregates_levy
#> 34 2019-01-01 aggregates_levy
#> 35 2019-02-01 aggregates_levy
#> 36 2019-03-01 aggregates_levy
#> 37 2019-04-01 aggregates_levy
#> 38 2019-05-01 aggregates_levy
#> 39 2019-06-01 aggregates_levy
#> 40 2019-07-01 aggregates_levy
#> 41 2019-08-01 aggregates_levy
#> 42 2019-09-01 aggregates_levy
#> 43 2019-10-01 aggregates_levy
#> 44 2019-11-01 aggregates_levy
#> 45 2019-12-01 aggregates_levy
#> 46 2020-01-01 aggregates_levy
#> 47 2020-02-01 aggregates_levy
#> 48 2020-03-01 aggregates_levy
#> 49 2020-04-01 aggregates_levy
#> 50 2020-05-01 aggregates_levy
#> 51 2020-06-01 aggregates_levy
#> 52 2020-07-01 aggregates_levy
#> 53 2020-08-01 aggregates_levy
#> 54 2020-09-01 aggregates_levy
#> 55 2020-10-01 aggregates_levy
#> 56 2020-11-01 aggregates_levy
#> 57 2020-12-01 aggregates_levy
#> 58 2021-01-01 aggregates_levy
#> 59 2021-02-01 aggregates_levy
#> 60 2021-03-01 aggregates_levy
#> 61 2021-04-01 aggregates_levy
#> 62 2021-05-01 aggregates_levy
#> 63 2021-06-01 aggregates_levy
#> 64 2021-07-01 aggregates_levy
#> 65 2021-08-01 aggregates_levy
#> 66 2021-09-01 aggregates_levy
#> 67 2021-10-01 aggregates_levy
#> 68 2021-11-01 aggregates_levy
#> 69 2021-12-01 aggregates_levy
#> 70 2022-01-01 aggregates_levy
#> 71 2022-02-01 aggregates_levy
#> 72 2022-03-01 aggregates_levy
#> 73 2022-04-01 aggregates_levy
#> 74 2022-05-01 aggregates_levy
#> 75 2022-06-01 aggregates_levy
#> 76 2022-07-01 aggregates_levy
#> 77 2022-08-01 aggregates_levy
#> 78 2022-09-01 aggregates_levy
#> 79 2022-10-01 aggregates_levy
#> 80 2022-11-01 aggregates_levy
#> 81 2022-12-01 aggregates_levy
#> 82 2023-01-01 aggregates_levy
#> 83 2023-02-01 aggregates_levy
#> 84 2023-03-01 aggregates_levy
#> 85 2023-04-01 aggregates_levy
#> 86 2023-05-01 aggregates_levy
#> 87 2023-06-01 aggregates_levy
#> 88 2023-07-01 aggregates_levy
#> 89 2023-08-01 aggregates_levy
#> 90 2023-09-01 aggregates_levy
#> 91 2023-10-01 aggregates_levy
#> 92 2023-11-01 aggregates_levy
#> 93 2023-12-01 aggregates_levy
#> 94 2024-01-01 aggregates_levy
#> 95 2024-02-01 aggregates_levy
#> 96 2024-03-01 aggregates_levy
#> 97 2024-04-01 aggregates_levy
#> 98 2024-05-01 aggregates_levy
#> 99 2024-06-01 aggregates_levy
#> 100 2024-07-01 aggregates_levy
#> 101 2024-08-01 aggregates_levy
#> 102 2024-09-01 aggregates_levy
#> 103 2024-10-01 aggregates_levy
#> 104 2024-11-01 aggregates_levy
#> 105 2024-12-01 aggregates_levy
#> 106 2025-01-01 aggregates_levy
#> 107 2025-02-01 aggregates_levy
#> 108 2025-03-01 aggregates_levy
#> 109 2025-04-01 aggregates_levy
#> 110 2025-05-01 aggregates_levy
#> 111 2025-06-01 aggregates_levy
#> 112 2025-07-01 aggregates_levy
#> 113 2025-08-01 aggregates_levy
#> 114 2025-09-01 aggregates_levy
#> 115 2025-10-01 aggregates_levy
#> 116 2025-11-01 aggregates_levy
#> 117 2025-12-01 aggregates_levy
#> 118 2026-01-01 aggregates_levy
#> 119 2026-02-01 aggregates_levy
#> 120 2026-03-01 aggregates_levy
#> 121 2016-04-01 air_passenger_duty
#> 122 2016-05-01 air_passenger_duty
#> 123 2016-06-01 air_passenger_duty
#> 124 2016-07-01 air_passenger_duty
#> 125 2016-08-01 air_passenger_duty
#> 126 2016-09-01 air_passenger_duty
#> 127 2016-10-01 air_passenger_duty
#> 128 2016-11-01 air_passenger_duty
#> 129 2016-12-01 air_passenger_duty
#> 130 2017-01-01 air_passenger_duty
#> 131 2017-02-01 air_passenger_duty
#> 132 2017-03-01 air_passenger_duty
#> 133 2017-04-01 air_passenger_duty
#> 134 2017-05-01 air_passenger_duty
#> 135 2017-06-01 air_passenger_duty
#> 136 2017-07-01 air_passenger_duty
#> 137 2017-08-01 air_passenger_duty
#> 138 2017-09-01 air_passenger_duty
#> 139 2017-10-01 air_passenger_duty
#> 140 2017-11-01 air_passenger_duty
#> 141 2017-12-01 air_passenger_duty
#> 142 2018-01-01 air_passenger_duty
#> 143 2018-02-01 air_passenger_duty
#> 144 2018-03-01 air_passenger_duty
#> 145 2018-04-01 air_passenger_duty
#> 146 2018-05-01 air_passenger_duty
#> 147 2018-06-01 air_passenger_duty
#> 148 2018-07-01 air_passenger_duty
#> 149 2018-08-01 air_passenger_duty
#> 150 2018-09-01 air_passenger_duty
#> 151 2018-10-01 air_passenger_duty
#> 152 2018-11-01 air_passenger_duty
#> 153 2018-12-01 air_passenger_duty
#> 154 2019-01-01 air_passenger_duty
#> 155 2019-02-01 air_passenger_duty
#> 156 2019-03-01 air_passenger_duty
#> 157 2019-04-01 air_passenger_duty
#> 158 2019-05-01 air_passenger_duty
#> 159 2019-06-01 air_passenger_duty
#> 160 2019-07-01 air_passenger_duty
#> 161 2019-08-01 air_passenger_duty
#> 162 2019-09-01 air_passenger_duty
#> 163 2019-10-01 air_passenger_duty
#> 164 2019-11-01 air_passenger_duty
#> 165 2019-12-01 air_passenger_duty
#> 166 2020-01-01 air_passenger_duty
#> 167 2020-02-01 air_passenger_duty
#> 168 2020-03-01 air_passenger_duty
#> 169 2020-04-01 air_passenger_duty
#> 170 2020-05-01 air_passenger_duty
#> 171 2020-06-01 air_passenger_duty
#> 172 2020-07-01 air_passenger_duty
#> 173 2020-08-01 air_passenger_duty
#> 174 2020-09-01 air_passenger_duty
#> 175 2020-10-01 air_passenger_duty
#> 176 2020-11-01 air_passenger_duty
#> 177 2020-12-01 air_passenger_duty
#> 178 2021-01-01 air_passenger_duty
#> 179 2021-02-01 air_passenger_duty
#> 180 2021-03-01 air_passenger_duty
#> 181 2021-04-01 air_passenger_duty
#> 182 2021-05-01 air_passenger_duty
#> 183 2021-06-01 air_passenger_duty
#> 184 2021-07-01 air_passenger_duty
#> 185 2021-08-01 air_passenger_duty
#> 186 2021-09-01 air_passenger_duty
#> 187 2021-10-01 air_passenger_duty
#> 188 2021-11-01 air_passenger_duty
#> 189 2021-12-01 air_passenger_duty
#> 190 2022-01-01 air_passenger_duty
#> 191 2022-02-01 air_passenger_duty
#> 192 2022-03-01 air_passenger_duty
#> 193 2022-04-01 air_passenger_duty
#> 194 2022-05-01 air_passenger_duty
#> 195 2022-06-01 air_passenger_duty
#> 196 2022-07-01 air_passenger_duty
#> 197 2022-08-01 air_passenger_duty
#> 198 2022-09-01 air_passenger_duty
#> 199 2022-10-01 air_passenger_duty
#> 200 2022-11-01 air_passenger_duty
#> 201 2022-12-01 air_passenger_duty
#> 202 2023-01-01 air_passenger_duty
#> 203 2023-02-01 air_passenger_duty
#> 204 2023-03-01 air_passenger_duty
#> 205 2023-04-01 air_passenger_duty
#> 206 2023-05-01 air_passenger_duty
#> 207 2023-06-01 air_passenger_duty
#> 208 2023-07-01 air_passenger_duty
#> 209 2023-08-01 air_passenger_duty
#> 210 2023-09-01 air_passenger_duty
#> 211 2023-10-01 air_passenger_duty
#> 212 2023-11-01 air_passenger_duty
#> 213 2023-12-01 air_passenger_duty
#> 214 2024-01-01 air_passenger_duty
#> 215 2024-02-01 air_passenger_duty
#> 216 2024-03-01 air_passenger_duty
#> 217 2024-04-01 air_passenger_duty
#> 218 2024-05-01 air_passenger_duty
#> 219 2024-06-01 air_passenger_duty
#> 220 2024-07-01 air_passenger_duty
#> 221 2024-08-01 air_passenger_duty
#> 222 2024-09-01 air_passenger_duty
#> 223 2024-10-01 air_passenger_duty
#> 224 2024-11-01 air_passenger_duty
#> 225 2024-12-01 air_passenger_duty
#> 226 2025-01-01 air_passenger_duty
#> 227 2025-02-01 air_passenger_duty
#> 228 2025-03-01 air_passenger_duty
#> 229 2025-04-01 air_passenger_duty
#> 230 2025-05-01 air_passenger_duty
#> 231 2025-06-01 air_passenger_duty
#> 232 2025-07-01 air_passenger_duty
#> 233 2025-08-01 air_passenger_duty
#> 234 2025-09-01 air_passenger_duty
#> 235 2025-10-01 air_passenger_duty
#> 236 2025-11-01 air_passenger_duty
#> 237 2025-12-01 air_passenger_duty
#> 238 2026-01-01 air_passenger_duty
#> 239 2026-02-01 air_passenger_duty
#> 240 2026-03-01 air_passenger_duty
#> 241 2016-04-01 apprenticeship_levy
#> 242 2016-05-01 apprenticeship_levy
#> 243 2016-06-01 apprenticeship_levy
#> 244 2016-07-01 apprenticeship_levy
#> 245 2016-08-01 apprenticeship_levy
#> 246 2016-09-01 apprenticeship_levy
#> 247 2016-10-01 apprenticeship_levy
#> 248 2016-11-01 apprenticeship_levy
#> 249 2016-12-01 apprenticeship_levy
#> 250 2017-01-01 apprenticeship_levy
#> 251 2017-02-01 apprenticeship_levy
#> 252 2017-03-01 apprenticeship_levy
#> 253 2017-04-01 apprenticeship_levy
#> 254 2017-05-01 apprenticeship_levy
#> 255 2017-06-01 apprenticeship_levy
#> 256 2017-07-01 apprenticeship_levy
#> 257 2017-08-01 apprenticeship_levy
#> 258 2017-09-01 apprenticeship_levy
#> 259 2017-10-01 apprenticeship_levy
#> 260 2017-11-01 apprenticeship_levy
#> 261 2017-12-01 apprenticeship_levy
#> 262 2018-01-01 apprenticeship_levy
#> 263 2018-02-01 apprenticeship_levy
#> 264 2018-03-01 apprenticeship_levy
#> 265 2018-04-01 apprenticeship_levy
#> 266 2018-05-01 apprenticeship_levy
#> 267 2018-06-01 apprenticeship_levy
#> 268 2018-07-01 apprenticeship_levy
#> 269 2018-08-01 apprenticeship_levy
#> 270 2018-09-01 apprenticeship_levy
#> 271 2018-10-01 apprenticeship_levy
#> 272 2018-11-01 apprenticeship_levy
#> 273 2018-12-01 apprenticeship_levy
#> 274 2019-01-01 apprenticeship_levy
#> 275 2019-02-01 apprenticeship_levy
#> 276 2019-03-01 apprenticeship_levy
#> 277 2019-04-01 apprenticeship_levy
#> 278 2019-05-01 apprenticeship_levy
#> 279 2019-06-01 apprenticeship_levy
#> 280 2019-07-01 apprenticeship_levy
#> 281 2019-08-01 apprenticeship_levy
#> 282 2019-09-01 apprenticeship_levy
#> 283 2019-10-01 apprenticeship_levy
#> 284 2019-11-01 apprenticeship_levy
#> 285 2019-12-01 apprenticeship_levy
#> 286 2020-01-01 apprenticeship_levy
#> 287 2020-02-01 apprenticeship_levy
#> 288 2020-03-01 apprenticeship_levy
#> 289 2020-04-01 apprenticeship_levy
#> 290 2020-05-01 apprenticeship_levy
#> 291 2020-06-01 apprenticeship_levy
#> 292 2020-07-01 apprenticeship_levy
#> 293 2020-08-01 apprenticeship_levy
#> 294 2020-09-01 apprenticeship_levy
#> 295 2020-10-01 apprenticeship_levy
#> 296 2020-11-01 apprenticeship_levy
#> 297 2020-12-01 apprenticeship_levy
#> 298 2021-01-01 apprenticeship_levy
#> 299 2021-02-01 apprenticeship_levy
#> 300 2021-03-01 apprenticeship_levy
#> 301 2021-04-01 apprenticeship_levy
#> 302 2021-05-01 apprenticeship_levy
#> 303 2021-06-01 apprenticeship_levy
#> 304 2021-07-01 apprenticeship_levy
#> 305 2021-08-01 apprenticeship_levy
#> 306 2021-09-01 apprenticeship_levy
#> 307 2021-10-01 apprenticeship_levy
#> 308 2021-11-01 apprenticeship_levy
#> 309 2021-12-01 apprenticeship_levy
#> 310 2022-01-01 apprenticeship_levy
#> 311 2022-02-01 apprenticeship_levy
#> 312 2022-03-01 apprenticeship_levy
#> 313 2022-04-01 apprenticeship_levy
#> 314 2022-05-01 apprenticeship_levy
#> 315 2022-06-01 apprenticeship_levy
#> 316 2022-07-01 apprenticeship_levy
#> 317 2022-08-01 apprenticeship_levy
#> 318 2022-09-01 apprenticeship_levy
#> 319 2022-10-01 apprenticeship_levy
#> 320 2022-11-01 apprenticeship_levy
#> 321 2022-12-01 apprenticeship_levy
#> 322 2023-01-01 apprenticeship_levy
#> 323 2023-02-01 apprenticeship_levy
#> 324 2023-03-01 apprenticeship_levy
#> 325 2023-04-01 apprenticeship_levy
#> 326 2023-05-01 apprenticeship_levy
#> 327 2023-06-01 apprenticeship_levy
#> 328 2023-07-01 apprenticeship_levy
#> 329 2023-08-01 apprenticeship_levy
#> 330 2023-09-01 apprenticeship_levy
#> 331 2023-10-01 apprenticeship_levy
#> 332 2023-11-01 apprenticeship_levy
#> 333 2023-12-01 apprenticeship_levy
#> 334 2024-01-01 apprenticeship_levy
#> 335 2024-02-01 apprenticeship_levy
#> 336 2024-03-01 apprenticeship_levy
#> 337 2024-04-01 apprenticeship_levy
#> 338 2024-05-01 apprenticeship_levy
#> 339 2024-06-01 apprenticeship_levy
#> 340 2024-07-01 apprenticeship_levy
#> 341 2024-08-01 apprenticeship_levy
#> 342 2024-09-01 apprenticeship_levy
#> 343 2024-10-01 apprenticeship_levy
#> 344 2024-11-01 apprenticeship_levy
#> 345 2024-12-01 apprenticeship_levy
#> 346 2025-01-01 apprenticeship_levy
#> 347 2025-02-01 apprenticeship_levy
#> 348 2025-03-01 apprenticeship_levy
#> 349 2025-04-01 apprenticeship_levy
#> 350 2025-05-01 apprenticeship_levy
#> 351 2025-06-01 apprenticeship_levy
#> 352 2025-07-01 apprenticeship_levy
#> 353 2025-08-01 apprenticeship_levy
#> 354 2025-09-01 apprenticeship_levy
#> 355 2025-10-01 apprenticeship_levy
#> 356 2025-11-01 apprenticeship_levy
#> 357 2025-12-01 apprenticeship_levy
#> 358 2026-01-01 apprenticeship_levy
#> 359 2026-02-01 apprenticeship_levy
#> 360 2026-03-01 apprenticeship_levy
#> 361 2016-04-01 ated
#> 362 2016-05-01 ated
#> 363 2016-06-01 ated
#> 364 2016-07-01 ated
#> 365 2016-08-01 ated
#> 366 2016-09-01 ated
#> 367 2016-10-01 ated
#> 368 2016-11-01 ated
#> 369 2016-12-01 ated
#> 370 2017-01-01 ated
#> 371 2017-02-01 ated
#> 372 2017-03-01 ated
#> 373 2017-04-01 ated
#> 374 2017-05-01 ated
#> 375 2017-06-01 ated
#> 376 2017-07-01 ated
#> 377 2017-08-01 ated
#> 378 2017-09-01 ated
#> 379 2017-10-01 ated
#> 380 2017-11-01 ated
#> 381 2017-12-01 ated
#> 382 2018-01-01 ated
#> 383 2018-02-01 ated
#> 384 2018-03-01 ated
#> 385 2018-04-01 ated
#> 386 2018-05-01 ated
#> 387 2018-06-01 ated
#> 388 2018-07-01 ated
#> 389 2018-08-01 ated
#> 390 2018-09-01 ated
#> 391 2018-10-01 ated
#> 392 2018-11-01 ated
#> 393 2018-12-01 ated
#> 394 2019-01-01 ated
#> 395 2019-02-01 ated
#> 396 2019-03-01 ated
#> 397 2019-04-01 ated
#> 398 2019-05-01 ated
#> 399 2019-06-01 ated
#> 400 2019-07-01 ated
#> 401 2019-08-01 ated
#> 402 2019-09-01 ated
#> 403 2019-10-01 ated
#> 404 2019-11-01 ated
#> 405 2019-12-01 ated
#> 406 2020-01-01 ated
#> 407 2020-02-01 ated
#> 408 2020-03-01 ated
#> 409 2020-04-01 ated
#> 410 2020-05-01 ated
#> 411 2020-06-01 ated
#> 412 2020-07-01 ated
#> 413 2020-08-01 ated
#> 414 2020-09-01 ated
#> 415 2020-10-01 ated
#> 416 2020-11-01 ated
#> 417 2020-12-01 ated
#> 418 2021-01-01 ated
#> 419 2021-02-01 ated
#> 420 2021-03-01 ated
#> 421 2021-04-01 ated
#> 422 2021-05-01 ated
#> 423 2021-06-01 ated
#> 424 2021-07-01 ated
#> 425 2021-08-01 ated
#> 426 2021-09-01 ated
#> 427 2021-10-01 ated
#> 428 2021-11-01 ated
#> 429 2021-12-01 ated
#> 430 2022-01-01 ated
#> 431 2022-02-01 ated
#> 432 2022-03-01 ated
#> 433 2022-04-01 ated
#> 434 2022-05-01 ated
#> 435 2022-06-01 ated
#> 436 2022-07-01 ated
#> 437 2022-08-01 ated
#> 438 2022-09-01 ated
#> 439 2022-10-01 ated
#> 440 2022-11-01 ated
#> 441 2022-12-01 ated
#> 442 2023-01-01 ated
#> 443 2023-02-01 ated
#> 444 2023-03-01 ated
#> 445 2023-04-01 ated
#> 446 2023-05-01 ated
#> 447 2023-06-01 ated
#> 448 2023-07-01 ated
#> 449 2023-08-01 ated
#> 450 2023-09-01 ated
#> 451 2023-10-01 ated
#> 452 2023-11-01 ated
#> 453 2023-12-01 ated
#> 454 2024-01-01 ated
#> 455 2024-02-01 ated
#> 456 2024-03-01 ated
#> 457 2024-04-01 ated
#> 458 2024-05-01 ated
#> 459 2024-06-01 ated
#> 460 2024-07-01 ated
#> 461 2024-08-01 ated
#> 462 2024-09-01 ated
#> 463 2024-10-01 ated
#> 464 2024-11-01 ated
#> 465 2024-12-01 ated
#> 466 2025-01-01 ated
#> 467 2025-02-01 ated
#> 468 2025-03-01 ated
#> 469 2025-04-01 ated
#> 470 2025-05-01 ated
#> 471 2025-06-01 ated
#> 472 2025-07-01 ated
#> 473 2025-08-01 ated
#> 474 2025-09-01 ated
#> 475 2025-10-01 ated
#> 476 2025-11-01 ated
#> 477 2025-12-01 ated
#> 478 2026-01-01 ated
#> 479 2026-02-01 ated
#> 480 2026-03-01 ated
#> 481 2016-04-01 bank_levy
#> 482 2016-05-01 bank_levy
#> 483 2016-06-01 bank_levy
#> 484 2016-07-01 bank_levy
#> 485 2016-08-01 bank_levy
#> 486 2016-09-01 bank_levy
#> 487 2016-10-01 bank_levy
#> 488 2016-11-01 bank_levy
#> 489 2016-12-01 bank_levy
#> 490 2017-01-01 bank_levy
#> 491 2017-02-01 bank_levy
#> 492 2017-03-01 bank_levy
#> 493 2017-04-01 bank_levy
#> 494 2017-05-01 bank_levy
#> 495 2017-06-01 bank_levy
#> 496 2017-07-01 bank_levy
#> 497 2017-08-01 bank_levy
#> 498 2017-09-01 bank_levy
#> 499 2017-10-01 bank_levy
#> 500 2017-11-01 bank_levy
#> 501 2017-12-01 bank_levy
#> 502 2018-01-01 bank_levy
#> 503 2018-02-01 bank_levy
#> 504 2018-03-01 bank_levy
#> 505 2018-04-01 bank_levy
#> 506 2018-05-01 bank_levy
#> 507 2018-06-01 bank_levy
#> 508 2018-07-01 bank_levy
#> 509 2018-08-01 bank_levy
#> 510 2018-09-01 bank_levy
#> 511 2018-10-01 bank_levy
#> 512 2018-11-01 bank_levy
#> 513 2018-12-01 bank_levy
#> 514 2019-01-01 bank_levy
#> 515 2019-02-01 bank_levy
#> 516 2019-03-01 bank_levy
#> 517 2019-04-01 bank_levy
#> 518 2019-05-01 bank_levy
#> 519 2019-06-01 bank_levy
#> 520 2019-07-01 bank_levy
#> 521 2019-08-01 bank_levy
#> 522 2019-09-01 bank_levy
#> 523 2019-10-01 bank_levy
#> 524 2019-11-01 bank_levy
#> 525 2019-12-01 bank_levy
#> 526 2020-01-01 bank_levy
#> 527 2020-02-01 bank_levy
#> 528 2020-03-01 bank_levy
#> 529 2020-04-01 bank_levy
#> 530 2020-05-01 bank_levy
#> 531 2020-06-01 bank_levy
#> 532 2020-07-01 bank_levy
#> 533 2020-08-01 bank_levy
#> 534 2020-09-01 bank_levy
#> 535 2020-10-01 bank_levy
#> 536 2020-11-01 bank_levy
#> 537 2020-12-01 bank_levy
#> 538 2021-01-01 bank_levy
#> 539 2021-02-01 bank_levy
#> 540 2021-03-01 bank_levy
#> 541 2021-04-01 bank_levy
#> 542 2021-05-01 bank_levy
#> 543 2021-06-01 bank_levy
#> 544 2021-07-01 bank_levy
#> 545 2021-08-01 bank_levy
#> 546 2021-09-01 bank_levy
#> 547 2021-10-01 bank_levy
#> 548 2021-11-01 bank_levy
#> 549 2021-12-01 bank_levy
#> 550 2022-01-01 bank_levy
#> 551 2022-02-01 bank_levy
#> 552 2022-03-01 bank_levy
#> 553 2022-04-01 bank_levy
#> 554 2022-05-01 bank_levy
#> 555 2022-06-01 bank_levy
#> 556 2022-07-01 bank_levy
#> 557 2022-08-01 bank_levy
#> 558 2022-09-01 bank_levy
#> 559 2022-10-01 bank_levy
#> 560 2022-11-01 bank_levy
#> 561 2022-12-01 bank_levy
#> 562 2023-01-01 bank_levy
#> 563 2023-02-01 bank_levy
#> 564 2023-03-01 bank_levy
#> 565 2023-04-01 bank_levy
#> 566 2023-05-01 bank_levy
#> 567 2023-06-01 bank_levy
#> 568 2023-07-01 bank_levy
#> 569 2023-08-01 bank_levy
#> 570 2023-09-01 bank_levy
#> 571 2023-10-01 bank_levy
#> 572 2023-11-01 bank_levy
#> 573 2023-12-01 bank_levy
#> 574 2024-01-01 bank_levy
#> 575 2024-02-01 bank_levy
#> 576 2024-03-01 bank_levy
#> 577 2024-04-01 bank_levy
#> 578 2024-05-01 bank_levy
#> 579 2024-06-01 bank_levy
#> 580 2024-07-01 bank_levy
#> 581 2024-08-01 bank_levy
#> 582 2024-09-01 bank_levy
#> 583 2024-10-01 bank_levy
#> 584 2024-11-01 bank_levy
#> 585 2024-12-01 bank_levy
#> 586 2025-01-01 bank_levy
#> 587 2025-02-01 bank_levy
#> 588 2025-03-01 bank_levy
#> 589 2025-04-01 bank_levy
#> 590 2025-05-01 bank_levy
#> 591 2025-06-01 bank_levy
#> 592 2025-07-01 bank_levy
#> 593 2025-08-01 bank_levy
#> 594 2025-09-01 bank_levy
#> 595 2025-10-01 bank_levy
#> 596 2025-11-01 bank_levy
#> 597 2025-12-01 bank_levy
#> 598 2026-01-01 bank_levy
#> 599 2026-02-01 bank_levy
#> 600 2026-03-01 bank_levy
#> 601 2016-04-01 bank_payroll_tax
#> 602 2016-05-01 bank_payroll_tax
#> 603 2016-06-01 bank_payroll_tax
#> 604 2016-07-01 bank_payroll_tax
#> 605 2016-08-01 bank_payroll_tax
#> 606 2016-09-01 bank_payroll_tax
#> 607 2016-10-01 bank_payroll_tax
#> 608 2016-11-01 bank_payroll_tax
#> 609 2016-12-01 bank_payroll_tax
#> 610 2017-01-01 bank_payroll_tax
#> 611 2017-02-01 bank_payroll_tax
#> 612 2017-03-01 bank_payroll_tax
#> 613 2017-04-01 bank_payroll_tax
#> 614 2017-05-01 bank_payroll_tax
#> 615 2017-06-01 bank_payroll_tax
#> 616 2017-07-01 bank_payroll_tax
#> 617 2017-08-01 bank_payroll_tax
#> 618 2017-09-01 bank_payroll_tax
#> 619 2017-10-01 bank_payroll_tax
#> 620 2017-11-01 bank_payroll_tax
#> 621 2017-12-01 bank_payroll_tax
#> 622 2018-01-01 bank_payroll_tax
#> 623 2018-02-01 bank_payroll_tax
#> 624 2018-03-01 bank_payroll_tax
#> 625 2018-04-01 bank_payroll_tax
#> 626 2018-05-01 bank_payroll_tax
#> 627 2018-06-01 bank_payroll_tax
#> 628 2018-07-01 bank_payroll_tax
#> 629 2018-08-01 bank_payroll_tax
#> 630 2018-09-01 bank_payroll_tax
#> 631 2018-10-01 bank_payroll_tax
#> 632 2018-11-01 bank_payroll_tax
#> 633 2018-12-01 bank_payroll_tax
#> 634 2019-01-01 bank_payroll_tax
#> 635 2019-02-01 bank_payroll_tax
#> 636 2019-03-01 bank_payroll_tax
#> 637 2019-04-01 bank_payroll_tax
#> 638 2019-05-01 bank_payroll_tax
#> 639 2019-06-01 bank_payroll_tax
#> 640 2019-07-01 bank_payroll_tax
#> 641 2019-08-01 bank_payroll_tax
#> 642 2019-09-01 bank_payroll_tax
#> 643 2019-10-01 bank_payroll_tax
#> 644 2019-11-01 bank_payroll_tax
#> 645 2019-12-01 bank_payroll_tax
#> 646 2020-01-01 bank_payroll_tax
#> 647 2020-02-01 bank_payroll_tax
#> 648 2020-03-01 bank_payroll_tax
#> 649 2020-04-01 bank_payroll_tax
#> 650 2020-05-01 bank_payroll_tax
#> 651 2020-06-01 bank_payroll_tax
#> 652 2020-07-01 bank_payroll_tax
#> 653 2020-08-01 bank_payroll_tax
#> 654 2020-09-01 bank_payroll_tax
#> 655 2020-10-01 bank_payroll_tax
#> 656 2020-11-01 bank_payroll_tax
#> 657 2020-12-01 bank_payroll_tax
#> 658 2021-01-01 bank_payroll_tax
#> 659 2021-02-01 bank_payroll_tax
#> 660 2021-03-01 bank_payroll_tax
#> 661 2021-04-01 bank_payroll_tax
#> 662 2021-05-01 bank_payroll_tax
#> 663 2021-06-01 bank_payroll_tax
#> 664 2021-07-01 bank_payroll_tax
#> 665 2021-08-01 bank_payroll_tax
#> 666 2021-09-01 bank_payroll_tax
#> 667 2021-10-01 bank_payroll_tax
#> 668 2021-11-01 bank_payroll_tax
#> 669 2021-12-01 bank_payroll_tax
#> 670 2022-01-01 bank_payroll_tax
#> 671 2022-02-01 bank_payroll_tax
#> 672 2022-03-01 bank_payroll_tax
#> 673 2022-04-01 bank_payroll_tax
#> 674 2022-05-01 bank_payroll_tax
#> 675 2022-06-01 bank_payroll_tax
#> 676 2022-07-01 bank_payroll_tax
#> 677 2022-08-01 bank_payroll_tax
#> 678 2022-09-01 bank_payroll_tax
#> 679 2022-10-01 bank_payroll_tax
#> 680 2022-11-01 bank_payroll_tax
#> 681 2022-12-01 bank_payroll_tax
#> 682 2023-01-01 bank_payroll_tax
#> 683 2023-02-01 bank_payroll_tax
#> 684 2023-03-01 bank_payroll_tax
#> 685 2023-04-01 bank_payroll_tax
#> 686 2023-05-01 bank_payroll_tax
#> 687 2023-06-01 bank_payroll_tax
#> 688 2023-07-01 bank_payroll_tax
#> 689 2023-08-01 bank_payroll_tax
#> 690 2023-09-01 bank_payroll_tax
#> 691 2023-10-01 bank_payroll_tax
#> 692 2023-11-01 bank_payroll_tax
#> 693 2023-12-01 bank_payroll_tax
#> 694 2024-01-01 bank_payroll_tax
#> 695 2024-02-01 bank_payroll_tax
#> 696 2024-03-01 bank_payroll_tax
#> 697 2024-04-01 bank_payroll_tax
#> 698 2024-05-01 bank_payroll_tax
#> 699 2024-06-01 bank_payroll_tax
#> 700 2024-07-01 bank_payroll_tax
#> 701 2024-08-01 bank_payroll_tax
#> 702 2024-09-01 bank_payroll_tax
#> 703 2024-10-01 bank_payroll_tax
#> 704 2024-11-01 bank_payroll_tax
#> 705 2024-12-01 bank_payroll_tax
#> 706 2025-01-01 bank_payroll_tax
#> 707 2025-02-01 bank_payroll_tax
#> 708 2025-03-01 bank_payroll_tax
#> 709 2025-04-01 bank_payroll_tax
#> 710 2025-05-01 bank_payroll_tax
#> 711 2025-06-01 bank_payroll_tax
#> 712 2025-07-01 bank_payroll_tax
#> 713 2025-08-01 bank_payroll_tax
#> 714 2025-09-01 bank_payroll_tax
#> 715 2025-10-01 bank_payroll_tax
#> 716 2025-11-01 bank_payroll_tax
#> 717 2025-12-01 bank_payroll_tax
#> 718 2026-01-01 bank_payroll_tax
#> 719 2026-02-01 bank_payroll_tax
#> 720 2026-03-01 bank_payroll_tax
#> 721 2016-04-01 bank_surcharge
#> 722 2016-05-01 bank_surcharge
#> 723 2016-06-01 bank_surcharge
#> 724 2016-07-01 bank_surcharge
#> 725 2016-08-01 bank_surcharge
#> 726 2016-09-01 bank_surcharge
#> 727 2016-10-01 bank_surcharge
#> 728 2016-11-01 bank_surcharge
#> 729 2016-12-01 bank_surcharge
#> 730 2017-01-01 bank_surcharge
#> 731 2017-02-01 bank_surcharge
#> 732 2017-03-01 bank_surcharge
#> 733 2017-04-01 bank_surcharge
#> 734 2017-05-01 bank_surcharge
#> 735 2017-06-01 bank_surcharge
#> 736 2017-07-01 bank_surcharge
#> 737 2017-08-01 bank_surcharge
#> 738 2017-09-01 bank_surcharge
#> 739 2017-10-01 bank_surcharge
#> 740 2017-11-01 bank_surcharge
#> 741 2017-12-01 bank_surcharge
#> 742 2018-01-01 bank_surcharge
#> 743 2018-02-01 bank_surcharge
#> 744 2018-03-01 bank_surcharge
#> 745 2018-04-01 bank_surcharge
#> 746 2018-05-01 bank_surcharge
#> 747 2018-06-01 bank_surcharge
#> 748 2018-07-01 bank_surcharge
#> 749 2018-08-01 bank_surcharge
#> 750 2018-09-01 bank_surcharge
#> 751 2018-10-01 bank_surcharge
#> 752 2018-11-01 bank_surcharge
#> 753 2018-12-01 bank_surcharge
#> 754 2019-01-01 bank_surcharge
#> 755 2019-02-01 bank_surcharge
#> 756 2019-03-01 bank_surcharge
#> 757 2019-04-01 bank_surcharge
#> 758 2019-05-01 bank_surcharge
#> 759 2019-06-01 bank_surcharge
#> 760 2019-07-01 bank_surcharge
#> 761 2019-08-01 bank_surcharge
#> 762 2019-09-01 bank_surcharge
#> 763 2019-10-01 bank_surcharge
#> 764 2019-11-01 bank_surcharge
#> 765 2019-12-01 bank_surcharge
#> 766 2020-01-01 bank_surcharge
#> 767 2020-02-01 bank_surcharge
#> 768 2020-03-01 bank_surcharge
#> 769 2020-04-01 bank_surcharge
#> 770 2020-05-01 bank_surcharge
#> 771 2020-06-01 bank_surcharge
#> 772 2020-07-01 bank_surcharge
#> 773 2020-08-01 bank_surcharge
#> 774 2020-09-01 bank_surcharge
#> 775 2020-10-01 bank_surcharge
#> 776 2020-11-01 bank_surcharge
#> 777 2020-12-01 bank_surcharge
#> 778 2021-01-01 bank_surcharge
#> 779 2021-02-01 bank_surcharge
#> 780 2021-03-01 bank_surcharge
#> 781 2021-04-01 bank_surcharge
#> 782 2021-05-01 bank_surcharge
#> 783 2021-06-01 bank_surcharge
#> 784 2021-07-01 bank_surcharge
#> 785 2021-08-01 bank_surcharge
#> 786 2021-09-01 bank_surcharge
#> 787 2021-10-01 bank_surcharge
#> 788 2021-11-01 bank_surcharge
#> 789 2021-12-01 bank_surcharge
#> 790 2022-01-01 bank_surcharge
#> 791 2022-02-01 bank_surcharge
#> 792 2022-03-01 bank_surcharge
#> 793 2022-04-01 bank_surcharge
#> 794 2022-05-01 bank_surcharge
#> 795 2022-06-01 bank_surcharge
#> 796 2022-07-01 bank_surcharge
#> 797 2022-08-01 bank_surcharge
#> 798 2022-09-01 bank_surcharge
#> 799 2022-10-01 bank_surcharge
#> 800 2022-11-01 bank_surcharge
#> 801 2022-12-01 bank_surcharge
#> 802 2023-01-01 bank_surcharge
#> 803 2023-02-01 bank_surcharge
#> 804 2023-03-01 bank_surcharge
#> 805 2023-04-01 bank_surcharge
#> 806 2023-05-01 bank_surcharge
#> 807 2023-06-01 bank_surcharge
#> 808 2023-07-01 bank_surcharge
#> 809 2023-08-01 bank_surcharge
#> 810 2023-09-01 bank_surcharge
#> 811 2023-10-01 bank_surcharge
#> 812 2023-11-01 bank_surcharge
#> 813 2023-12-01 bank_surcharge
#> 814 2024-01-01 bank_surcharge
#> 815 2024-02-01 bank_surcharge
#> 816 2024-03-01 bank_surcharge
#> 817 2024-04-01 bank_surcharge
#> 818 2024-05-01 bank_surcharge
#> 819 2024-06-01 bank_surcharge
#> 820 2024-07-01 bank_surcharge
#> 821 2024-08-01 bank_surcharge
#> 822 2024-09-01 bank_surcharge
#> 823 2024-10-01 bank_surcharge
#> 824 2024-11-01 bank_surcharge
#> 825 2024-12-01 bank_surcharge
#> 826 2025-01-01 bank_surcharge
#> 827 2025-02-01 bank_surcharge
#> 828 2025-03-01 bank_surcharge
#> 829 2025-04-01 bank_surcharge
#> 830 2025-05-01 bank_surcharge
#> 831 2025-06-01 bank_surcharge
#> 832 2025-07-01 bank_surcharge
#> 833 2025-08-01 bank_surcharge
#> 834 2025-09-01 bank_surcharge
#> 835 2025-10-01 bank_surcharge
#> 836 2025-11-01 bank_surcharge
#> 837 2025-12-01 bank_surcharge
#> 838 2026-01-01 bank_surcharge
#> 839 2026-02-01 bank_surcharge
#> 840 2026-03-01 bank_surcharge
#> 841 2016-04-01 beer_duty
#> 842 2016-05-01 beer_duty
#> 843 2016-06-01 beer_duty
#> 844 2016-07-01 beer_duty
#> 845 2016-08-01 beer_duty
#> 846 2016-09-01 beer_duty
#> 847 2016-10-01 beer_duty
#> 848 2016-11-01 beer_duty
#> 849 2016-12-01 beer_duty
#> 850 2017-01-01 beer_duty
#> 851 2017-02-01 beer_duty
#> 852 2017-03-01 beer_duty
#> 853 2017-04-01 beer_duty
#> 854 2017-05-01 beer_duty
#> 855 2017-06-01 beer_duty
#> 856 2017-07-01 beer_duty
#> 857 2017-08-01 beer_duty
#> 858 2017-09-01 beer_duty
#> 859 2017-10-01 beer_duty
#> 860 2017-11-01 beer_duty
#> 861 2017-12-01 beer_duty
#> 862 2018-01-01 beer_duty
#> 863 2018-02-01 beer_duty
#> 864 2018-03-01 beer_duty
#> 865 2018-04-01 beer_duty
#> 866 2018-05-01 beer_duty
#> 867 2018-06-01 beer_duty
#> 868 2018-07-01 beer_duty
#> 869 2018-08-01 beer_duty
#> 870 2018-09-01 beer_duty
#> 871 2018-10-01 beer_duty
#> 872 2018-11-01 beer_duty
#> 873 2018-12-01 beer_duty
#> 874 2019-01-01 beer_duty
#> 875 2019-02-01 beer_duty
#> 876 2019-03-01 beer_duty
#> 877 2019-04-01 beer_duty
#> 878 2019-05-01 beer_duty
#> 879 2019-06-01 beer_duty
#> 880 2019-07-01 beer_duty
#> 881 2019-08-01 beer_duty
#> 882 2019-09-01 beer_duty
#> 883 2019-10-01 beer_duty
#> 884 2019-11-01 beer_duty
#> 885 2019-12-01 beer_duty
#> 886 2020-01-01 beer_duty
#> 887 2020-02-01 beer_duty
#> 888 2020-03-01 beer_duty
#> 889 2020-04-01 beer_duty
#> 890 2020-05-01 beer_duty
#> 891 2020-06-01 beer_duty
#> 892 2020-07-01 beer_duty
#> 893 2020-08-01 beer_duty
#> 894 2020-09-01 beer_duty
#> 895 2020-10-01 beer_duty
#> 896 2020-11-01 beer_duty
#> 897 2020-12-01 beer_duty
#> 898 2021-01-01 beer_duty
#> 899 2021-02-01 beer_duty
#> 900 2021-03-01 beer_duty
#> 901 2021-04-01 beer_duty
#> 902 2021-05-01 beer_duty
#> 903 2021-06-01 beer_duty
#> 904 2021-07-01 beer_duty
#> 905 2021-08-01 beer_duty
#> 906 2021-09-01 beer_duty
#> 907 2021-10-01 beer_duty
#> 908 2021-11-01 beer_duty
#> 909 2021-12-01 beer_duty
#> 910 2022-01-01 beer_duty
#> 911 2022-02-01 beer_duty
#> 912 2022-03-01 beer_duty
#> 913 2022-04-01 beer_duty
#> 914 2022-05-01 beer_duty
#> 915 2022-06-01 beer_duty
#> 916 2022-07-01 beer_duty
#> 917 2022-08-01 beer_duty
#> 918 2022-09-01 beer_duty
#> 919 2022-10-01 beer_duty
#> 920 2022-11-01 beer_duty
#> 921 2022-12-01 beer_duty
#> 922 2023-01-01 beer_duty
#> 923 2023-02-01 beer_duty
#> 924 2023-03-01 beer_duty
#> 925 2023-04-01 beer_duty
#> 926 2023-05-01 beer_duty
#> 927 2023-06-01 beer_duty
#> 928 2023-07-01 beer_duty
#> 929 2023-08-01 beer_duty
#> 930 2023-09-01 beer_duty
#> 931 2023-10-01 beer_duty
#> 932 2023-11-01 beer_duty
#> 933 2023-12-01 beer_duty
#> 934 2024-01-01 beer_duty
#> 935 2024-02-01 beer_duty
#> 936 2024-03-01 beer_duty
#> 937 2024-04-01 beer_duty
#> 938 2024-05-01 beer_duty
#> 939 2024-06-01 beer_duty
#> 940 2024-07-01 beer_duty
#> 941 2024-08-01 beer_duty
#> 942 2024-09-01 beer_duty
#> 943 2024-10-01 beer_duty
#> 944 2024-11-01 beer_duty
#> 945 2024-12-01 beer_duty
#> 946 2025-01-01 beer_duty
#> 947 2025-02-01 beer_duty
#> 948 2025-03-01 beer_duty
#> 949 2025-04-01 beer_duty
#> 950 2025-05-01 beer_duty
#> 951 2025-06-01 beer_duty
#> 952 2025-07-01 beer_duty
#> 953 2025-08-01 beer_duty
#> 954 2025-09-01 beer_duty
#> 955 2025-10-01 beer_duty
#> 956 2025-11-01 beer_duty
#> 957 2025-12-01 beer_duty
#> 958 2026-01-01 beer_duty
#> 959 2026-02-01 beer_duty
#> 960 2026-03-01 beer_duty
#> 961 2016-04-01 capital_gains_tax
#> 962 2016-05-01 capital_gains_tax
#> 963 2016-06-01 capital_gains_tax
#> 964 2016-07-01 capital_gains_tax
#> 965 2016-08-01 capital_gains_tax
#> 966 2016-09-01 capital_gains_tax
#> 967 2016-10-01 capital_gains_tax
#> 968 2016-11-01 capital_gains_tax
#> 969 2016-12-01 capital_gains_tax
#> 970 2017-01-01 capital_gains_tax
#> 971 2017-02-01 capital_gains_tax
#> 972 2017-03-01 capital_gains_tax
#> 973 2017-04-01 capital_gains_tax
#> 974 2017-05-01 capital_gains_tax
#> 975 2017-06-01 capital_gains_tax
#> 976 2017-07-01 capital_gains_tax
#> 977 2017-08-01 capital_gains_tax
#> 978 2017-09-01 capital_gains_tax
#> 979 2017-10-01 capital_gains_tax
#> 980 2017-11-01 capital_gains_tax
#> 981 2017-12-01 capital_gains_tax
#> 982 2018-01-01 capital_gains_tax
#> 983 2018-02-01 capital_gains_tax
#> 984 2018-03-01 capital_gains_tax
#> 985 2018-04-01 capital_gains_tax
#> 986 2018-05-01 capital_gains_tax
#> 987 2018-06-01 capital_gains_tax
#> 988 2018-07-01 capital_gains_tax
#> 989 2018-08-01 capital_gains_tax
#> 990 2018-09-01 capital_gains_tax
#> 991 2018-10-01 capital_gains_tax
#> 992 2018-11-01 capital_gains_tax
#> 993 2018-12-01 capital_gains_tax
#> 994 2019-01-01 capital_gains_tax
#> 995 2019-02-01 capital_gains_tax
#> 996 2019-03-01 capital_gains_tax
#> 997 2019-04-01 capital_gains_tax
#> 998 2019-05-01 capital_gains_tax
#> 999 2019-06-01 capital_gains_tax
#> 1000 2019-07-01 capital_gains_tax
#> 1001 2019-08-01 capital_gains_tax
#> 1002 2019-09-01 capital_gains_tax
#> 1003 2019-10-01 capital_gains_tax
#> 1004 2019-11-01 capital_gains_tax
#> 1005 2019-12-01 capital_gains_tax
#> 1006 2020-01-01 capital_gains_tax
#> 1007 2020-02-01 capital_gains_tax
#> 1008 2020-03-01 capital_gains_tax
#> 1009 2020-04-01 capital_gains_tax
#> 1010 2020-05-01 capital_gains_tax
#> 1011 2020-06-01 capital_gains_tax
#> 1012 2020-07-01 capital_gains_tax
#> 1013 2020-08-01 capital_gains_tax
#> 1014 2020-09-01 capital_gains_tax
#> 1015 2020-10-01 capital_gains_tax
#> 1016 2020-11-01 capital_gains_tax
#> 1017 2020-12-01 capital_gains_tax
#> 1018 2021-01-01 capital_gains_tax
#> 1019 2021-02-01 capital_gains_tax
#> 1020 2021-03-01 capital_gains_tax
#> 1021 2021-04-01 capital_gains_tax
#> 1022 2021-05-01 capital_gains_tax
#> 1023 2021-06-01 capital_gains_tax
#> 1024 2021-07-01 capital_gains_tax
#> 1025 2021-08-01 capital_gains_tax
#> 1026 2021-09-01 capital_gains_tax
#> 1027 2021-10-01 capital_gains_tax
#> 1028 2021-11-01 capital_gains_tax
#> 1029 2021-12-01 capital_gains_tax
#> 1030 2022-01-01 capital_gains_tax
#> 1031 2022-02-01 capital_gains_tax
#> 1032 2022-03-01 capital_gains_tax
#> 1033 2022-04-01 capital_gains_tax
#> 1034 2022-05-01 capital_gains_tax
#> 1035 2022-06-01 capital_gains_tax
#> 1036 2022-07-01 capital_gains_tax
#> 1037 2022-08-01 capital_gains_tax
#> 1038 2022-09-01 capital_gains_tax
#> 1039 2022-10-01 capital_gains_tax
#> 1040 2022-11-01 capital_gains_tax
#> 1041 2022-12-01 capital_gains_tax
#> 1042 2023-01-01 capital_gains_tax
#> 1043 2023-02-01 capital_gains_tax
#> 1044 2023-03-01 capital_gains_tax
#> 1045 2023-04-01 capital_gains_tax
#> 1046 2023-05-01 capital_gains_tax
#> 1047 2023-06-01 capital_gains_tax
#> 1048 2023-07-01 capital_gains_tax
#> 1049 2023-08-01 capital_gains_tax
#> 1050 2023-09-01 capital_gains_tax
#> 1051 2023-10-01 capital_gains_tax
#> 1052 2023-11-01 capital_gains_tax
#> 1053 2023-12-01 capital_gains_tax
#> 1054 2024-01-01 capital_gains_tax
#> 1055 2024-02-01 capital_gains_tax
#> 1056 2024-03-01 capital_gains_tax
#> 1057 2024-04-01 capital_gains_tax
#> 1058 2024-05-01 capital_gains_tax
#> 1059 2024-06-01 capital_gains_tax
#> 1060 2024-07-01 capital_gains_tax
#> 1061 2024-08-01 capital_gains_tax
#> 1062 2024-09-01 capital_gains_tax
#> 1063 2024-10-01 capital_gains_tax
#> 1064 2024-11-01 capital_gains_tax
#> 1065 2024-12-01 capital_gains_tax
#> 1066 2025-01-01 capital_gains_tax
#> 1067 2025-02-01 capital_gains_tax
#> 1068 2025-03-01 capital_gains_tax
#> 1069 2025-04-01 capital_gains_tax
#> 1070 2025-05-01 capital_gains_tax
#> 1071 2025-06-01 capital_gains_tax
#> 1072 2025-07-01 capital_gains_tax
#> 1073 2025-08-01 capital_gains_tax
#> 1074 2025-09-01 capital_gains_tax
#> 1075 2025-10-01 capital_gains_tax
#> 1076 2025-11-01 capital_gains_tax
#> 1077 2025-12-01 capital_gains_tax
#> 1078 2026-01-01 capital_gains_tax
#> 1079 2026-02-01 capital_gains_tax
#> 1080 2026-03-01 capital_gains_tax
#> 1081 2016-04-01 cider_duty
#> 1082 2016-05-01 cider_duty
#> 1083 2016-06-01 cider_duty
#> 1084 2016-07-01 cider_duty
#> 1085 2016-08-01 cider_duty
#> 1086 2016-09-01 cider_duty
#> 1087 2016-10-01 cider_duty
#> 1088 2016-11-01 cider_duty
#> 1089 2016-12-01 cider_duty
#> 1090 2017-01-01 cider_duty
#> 1091 2017-02-01 cider_duty
#> 1092 2017-03-01 cider_duty
#> 1093 2017-04-01 cider_duty
#> 1094 2017-05-01 cider_duty
#> 1095 2017-06-01 cider_duty
#> 1096 2017-07-01 cider_duty
#> 1097 2017-08-01 cider_duty
#> 1098 2017-09-01 cider_duty
#> 1099 2017-10-01 cider_duty
#> 1100 2017-11-01 cider_duty
#> 1101 2017-12-01 cider_duty
#> 1102 2018-01-01 cider_duty
#> 1103 2018-02-01 cider_duty
#> 1104 2018-03-01 cider_duty
#> 1105 2018-04-01 cider_duty
#> 1106 2018-05-01 cider_duty
#> 1107 2018-06-01 cider_duty
#> 1108 2018-07-01 cider_duty
#> 1109 2018-08-01 cider_duty
#> 1110 2018-09-01 cider_duty
#> 1111 2018-10-01 cider_duty
#> 1112 2018-11-01 cider_duty
#> 1113 2018-12-01 cider_duty
#> 1114 2019-01-01 cider_duty
#> 1115 2019-02-01 cider_duty
#> 1116 2019-03-01 cider_duty
#> 1117 2019-04-01 cider_duty
#> 1118 2019-05-01 cider_duty
#> 1119 2019-06-01 cider_duty
#> 1120 2019-07-01 cider_duty
#> 1121 2019-08-01 cider_duty
#> 1122 2019-09-01 cider_duty
#> 1123 2019-10-01 cider_duty
#> 1124 2019-11-01 cider_duty
#> 1125 2019-12-01 cider_duty
#> 1126 2020-01-01 cider_duty
#> 1127 2020-02-01 cider_duty
#> 1128 2020-03-01 cider_duty
#> 1129 2020-04-01 cider_duty
#> 1130 2020-05-01 cider_duty
#> 1131 2020-06-01 cider_duty
#> 1132 2020-07-01 cider_duty
#> 1133 2020-08-01 cider_duty
#> 1134 2020-09-01 cider_duty
#> 1135 2020-10-01 cider_duty
#> 1136 2020-11-01 cider_duty
#> 1137 2020-12-01 cider_duty
#> 1138 2021-01-01 cider_duty
#> 1139 2021-02-01 cider_duty
#> 1140 2021-03-01 cider_duty
#> 1141 2021-04-01 cider_duty
#> 1142 2021-05-01 cider_duty
#> 1143 2021-06-01 cider_duty
#> 1144 2021-07-01 cider_duty
#> 1145 2021-08-01 cider_duty
#> 1146 2021-09-01 cider_duty
#> 1147 2021-10-01 cider_duty
#> 1148 2021-11-01 cider_duty
#> 1149 2021-12-01 cider_duty
#> 1150 2022-01-01 cider_duty
#> 1151 2022-02-01 cider_duty
#> 1152 2022-03-01 cider_duty
#> 1153 2022-04-01 cider_duty
#> 1154 2022-05-01 cider_duty
#> 1155 2022-06-01 cider_duty
#> 1156 2022-07-01 cider_duty
#> 1157 2022-08-01 cider_duty
#> 1158 2022-09-01 cider_duty
#> 1159 2022-10-01 cider_duty
#> 1160 2022-11-01 cider_duty
#> 1161 2022-12-01 cider_duty
#> 1162 2023-01-01 cider_duty
#> 1163 2023-02-01 cider_duty
#> 1164 2023-03-01 cider_duty
#> 1165 2023-04-01 cider_duty
#> 1166 2023-05-01 cider_duty
#> 1167 2023-06-01 cider_duty
#> 1168 2023-07-01 cider_duty
#> 1169 2023-08-01 cider_duty
#> 1170 2023-09-01 cider_duty
#> 1171 2023-10-01 cider_duty
#> 1172 2023-11-01 cider_duty
#> 1173 2023-12-01 cider_duty
#> 1174 2024-01-01 cider_duty
#> 1175 2024-02-01 cider_duty
#> 1176 2024-03-01 cider_duty
#> 1177 2024-04-01 cider_duty
#> 1178 2024-05-01 cider_duty
#> 1179 2024-06-01 cider_duty
#> 1180 2024-07-01 cider_duty
#> 1181 2024-08-01 cider_duty
#> 1182 2024-09-01 cider_duty
#> 1183 2024-10-01 cider_duty
#> 1184 2024-11-01 cider_duty
#> 1185 2024-12-01 cider_duty
#> 1186 2025-01-01 cider_duty
#> 1187 2025-02-01 cider_duty
#> 1188 2025-03-01 cider_duty
#> 1189 2025-04-01 cider_duty
#> 1190 2025-05-01 cider_duty
#> 1191 2025-06-01 cider_duty
#> 1192 2025-07-01 cider_duty
#> 1193 2025-08-01 cider_duty
#> 1194 2025-09-01 cider_duty
#> 1195 2025-10-01 cider_duty
#> 1196 2025-11-01 cider_duty
#> 1197 2025-12-01 cider_duty
#> 1198 2026-01-01 cider_duty
#> 1199 2026-02-01 cider_duty
#> 1200 2026-03-01 cider_duty
#> 1201 2016-04-01 climate_change_levy
#> 1202 2016-05-01 climate_change_levy
#> 1203 2016-06-01 climate_change_levy
#> 1204 2016-07-01 climate_change_levy
#> 1205 2016-08-01 climate_change_levy
#> 1206 2016-09-01 climate_change_levy
#> 1207 2016-10-01 climate_change_levy
#> 1208 2016-11-01 climate_change_levy
#> 1209 2016-12-01 climate_change_levy
#> 1210 2017-01-01 climate_change_levy
#> 1211 2017-02-01 climate_change_levy
#> 1212 2017-03-01 climate_change_levy
#> 1213 2017-04-01 climate_change_levy
#> 1214 2017-05-01 climate_change_levy
#> 1215 2017-06-01 climate_change_levy
#> 1216 2017-07-01 climate_change_levy
#> 1217 2017-08-01 climate_change_levy
#> 1218 2017-09-01 climate_change_levy
#> 1219 2017-10-01 climate_change_levy
#> 1220 2017-11-01 climate_change_levy
#> 1221 2017-12-01 climate_change_levy
#> 1222 2018-01-01 climate_change_levy
#> 1223 2018-02-01 climate_change_levy
#> 1224 2018-03-01 climate_change_levy
#> 1225 2018-04-01 climate_change_levy
#> 1226 2018-05-01 climate_change_levy
#> 1227 2018-06-01 climate_change_levy
#> 1228 2018-07-01 climate_change_levy
#> 1229 2018-08-01 climate_change_levy
#> 1230 2018-09-01 climate_change_levy
#> 1231 2018-10-01 climate_change_levy
#> 1232 2018-11-01 climate_change_levy
#> 1233 2018-12-01 climate_change_levy
#> 1234 2019-01-01 climate_change_levy
#> 1235 2019-02-01 climate_change_levy
#> 1236 2019-03-01 climate_change_levy
#> 1237 2019-04-01 climate_change_levy
#> 1238 2019-05-01 climate_change_levy
#> 1239 2019-06-01 climate_change_levy
#> 1240 2019-07-01 climate_change_levy
#> 1241 2019-08-01 climate_change_levy
#> 1242 2019-09-01 climate_change_levy
#> 1243 2019-10-01 climate_change_levy
#> 1244 2019-11-01 climate_change_levy
#> 1245 2019-12-01 climate_change_levy
#> 1246 2020-01-01 climate_change_levy
#> 1247 2020-02-01 climate_change_levy
#> 1248 2020-03-01 climate_change_levy
#> 1249 2020-04-01 climate_change_levy
#> 1250 2020-05-01 climate_change_levy
#> 1251 2020-06-01 climate_change_levy
#> 1252 2020-07-01 climate_change_levy
#> 1253 2020-08-01 climate_change_levy
#> 1254 2020-09-01 climate_change_levy
#> 1255 2020-10-01 climate_change_levy
#> 1256 2020-11-01 climate_change_levy
#> 1257 2020-12-01 climate_change_levy
#> 1258 2021-01-01 climate_change_levy
#> 1259 2021-02-01 climate_change_levy
#> 1260 2021-03-01 climate_change_levy
#> 1261 2021-04-01 climate_change_levy
#> 1262 2021-05-01 climate_change_levy
#> 1263 2021-06-01 climate_change_levy
#> 1264 2021-07-01 climate_change_levy
#> 1265 2021-08-01 climate_change_levy
#> 1266 2021-09-01 climate_change_levy
#> 1267 2021-10-01 climate_change_levy
#> 1268 2021-11-01 climate_change_levy
#> 1269 2021-12-01 climate_change_levy
#> 1270 2022-01-01 climate_change_levy
#> 1271 2022-02-01 climate_change_levy
#> 1272 2022-03-01 climate_change_levy
#> 1273 2022-04-01 climate_change_levy
#> 1274 2022-05-01 climate_change_levy
#> 1275 2022-06-01 climate_change_levy
#> 1276 2022-07-01 climate_change_levy
#> 1277 2022-08-01 climate_change_levy
#> 1278 2022-09-01 climate_change_levy
#> 1279 2022-10-01 climate_change_levy
#> 1280 2022-11-01 climate_change_levy
#> 1281 2022-12-01 climate_change_levy
#> 1282 2023-01-01 climate_change_levy
#> 1283 2023-02-01 climate_change_levy
#> 1284 2023-03-01 climate_change_levy
#> 1285 2023-04-01 climate_change_levy
#> 1286 2023-05-01 climate_change_levy
#> 1287 2023-06-01 climate_change_levy
#> 1288 2023-07-01 climate_change_levy
#> 1289 2023-08-01 climate_change_levy
#> 1290 2023-09-01 climate_change_levy
#> 1291 2023-10-01 climate_change_levy
#> 1292 2023-11-01 climate_change_levy
#> 1293 2023-12-01 climate_change_levy
#> 1294 2024-01-01 climate_change_levy
#> 1295 2024-02-01 climate_change_levy
#> 1296 2024-03-01 climate_change_levy
#> 1297 2024-04-01 climate_change_levy
#> 1298 2024-05-01 climate_change_levy
#> 1299 2024-06-01 climate_change_levy
#> 1300 2024-07-01 climate_change_levy
#> 1301 2024-08-01 climate_change_levy
#> 1302 2024-09-01 climate_change_levy
#> 1303 2024-10-01 climate_change_levy
#> 1304 2024-11-01 climate_change_levy
#> 1305 2024-12-01 climate_change_levy
#> 1306 2025-01-01 climate_change_levy
#> 1307 2025-02-01 climate_change_levy
#> 1308 2025-03-01 climate_change_levy
#> 1309 2025-04-01 climate_change_levy
#> 1310 2025-05-01 climate_change_levy
#> 1311 2025-06-01 climate_change_levy
#> 1312 2025-07-01 climate_change_levy
#> 1313 2025-08-01 climate_change_levy
#> 1314 2025-09-01 climate_change_levy
#> 1315 2025-10-01 climate_change_levy
#> 1316 2025-11-01 climate_change_levy
#> 1317 2025-12-01 climate_change_levy
#> 1318 2026-01-01 climate_change_levy
#> 1319 2026-02-01 climate_change_levy
#> 1320 2026-03-01 climate_change_levy
#> 1321 2016-04-01 corporation_tax
#> 1322 2016-05-01 corporation_tax
#> 1323 2016-06-01 corporation_tax
#> 1324 2016-07-01 corporation_tax
#> 1325 2016-08-01 corporation_tax
#> 1326 2016-09-01 corporation_tax
#> 1327 2016-10-01 corporation_tax
#> 1328 2016-11-01 corporation_tax
#> 1329 2016-12-01 corporation_tax
#> 1330 2017-01-01 corporation_tax
#> 1331 2017-02-01 corporation_tax
#> 1332 2017-03-01 corporation_tax
#> 1333 2017-04-01 corporation_tax
#> 1334 2017-05-01 corporation_tax
#> 1335 2017-06-01 corporation_tax
#> 1336 2017-07-01 corporation_tax
#> 1337 2017-08-01 corporation_tax
#> 1338 2017-09-01 corporation_tax
#> 1339 2017-10-01 corporation_tax
#> 1340 2017-11-01 corporation_tax
#> 1341 2017-12-01 corporation_tax
#> 1342 2018-01-01 corporation_tax
#> 1343 2018-02-01 corporation_tax
#> 1344 2018-03-01 corporation_tax
#> 1345 2018-04-01 corporation_tax
#> 1346 2018-05-01 corporation_tax
#> 1347 2018-06-01 corporation_tax
#> 1348 2018-07-01 corporation_tax
#> 1349 2018-08-01 corporation_tax
#> 1350 2018-09-01 corporation_tax
#> 1351 2018-10-01 corporation_tax
#> 1352 2018-11-01 corporation_tax
#> 1353 2018-12-01 corporation_tax
#> 1354 2019-01-01 corporation_tax
#> 1355 2019-02-01 corporation_tax
#> 1356 2019-03-01 corporation_tax
#> 1357 2019-04-01 corporation_tax
#> 1358 2019-05-01 corporation_tax
#> 1359 2019-06-01 corporation_tax
#> 1360 2019-07-01 corporation_tax
#> 1361 2019-08-01 corporation_tax
#> 1362 2019-09-01 corporation_tax
#> 1363 2019-10-01 corporation_tax
#> 1364 2019-11-01 corporation_tax
#> 1365 2019-12-01 corporation_tax
#> 1366 2020-01-01 corporation_tax
#> 1367 2020-02-01 corporation_tax
#> 1368 2020-03-01 corporation_tax
#> 1369 2020-04-01 corporation_tax
#> 1370 2020-05-01 corporation_tax
#> 1371 2020-06-01 corporation_tax
#> 1372 2020-07-01 corporation_tax
#> 1373 2020-08-01 corporation_tax
#> 1374 2020-09-01 corporation_tax
#> 1375 2020-10-01 corporation_tax
#> 1376 2020-11-01 corporation_tax
#> 1377 2020-12-01 corporation_tax
#> 1378 2021-01-01 corporation_tax
#> 1379 2021-02-01 corporation_tax
#> 1380 2021-03-01 corporation_tax
#> 1381 2021-04-01 corporation_tax
#> 1382 2021-05-01 corporation_tax
#> 1383 2021-06-01 corporation_tax
#> 1384 2021-07-01 corporation_tax
#> 1385 2021-08-01 corporation_tax
#> 1386 2021-09-01 corporation_tax
#> 1387 2021-10-01 corporation_tax
#> 1388 2021-11-01 corporation_tax
#> 1389 2021-12-01 corporation_tax
#> 1390 2022-01-01 corporation_tax
#> 1391 2022-02-01 corporation_tax
#> 1392 2022-03-01 corporation_tax
#> 1393 2022-04-01 corporation_tax
#> 1394 2022-05-01 corporation_tax
#> 1395 2022-06-01 corporation_tax
#> 1396 2022-07-01 corporation_tax
#> 1397 2022-08-01 corporation_tax
#> 1398 2022-09-01 corporation_tax
#> 1399 2022-10-01 corporation_tax
#> 1400 2022-11-01 corporation_tax
#> 1401 2022-12-01 corporation_tax
#> 1402 2023-01-01 corporation_tax
#> 1403 2023-02-01 corporation_tax
#> 1404 2023-03-01 corporation_tax
#> 1405 2023-04-01 corporation_tax
#> 1406 2023-05-01 corporation_tax
#> 1407 2023-06-01 corporation_tax
#> 1408 2023-07-01 corporation_tax
#> 1409 2023-08-01 corporation_tax
#> 1410 2023-09-01 corporation_tax
#> 1411 2023-10-01 corporation_tax
#> 1412 2023-11-01 corporation_tax
#> 1413 2023-12-01 corporation_tax
#> 1414 2024-01-01 corporation_tax
#> 1415 2024-02-01 corporation_tax
#> 1416 2024-03-01 corporation_tax
#> 1417 2024-04-01 corporation_tax
#> 1418 2024-05-01 corporation_tax
#> 1419 2024-06-01 corporation_tax
#> 1420 2024-07-01 corporation_tax
#> 1421 2024-08-01 corporation_tax
#> 1422 2024-09-01 corporation_tax
#> 1423 2024-10-01 corporation_tax
#> 1424 2024-11-01 corporation_tax
#> 1425 2024-12-01 corporation_tax
#> 1426 2025-01-01 corporation_tax
#> 1427 2025-02-01 corporation_tax
#> 1428 2025-03-01 corporation_tax
#> 1429 2025-04-01 corporation_tax
#> 1430 2025-05-01 corporation_tax
#> 1431 2025-06-01 corporation_tax
#> 1432 2025-07-01 corporation_tax
#> 1433 2025-08-01 corporation_tax
#> 1434 2025-09-01 corporation_tax
#> 1435 2025-10-01 corporation_tax
#> 1436 2025-11-01 corporation_tax
#> 1437 2025-12-01 corporation_tax
#> 1438 2026-01-01 corporation_tax
#> 1439 2026-02-01 corporation_tax
#> 1440 2026-03-01 corporation_tax
#> 1441 2016-04-01 customs_duties
#> 1442 2016-05-01 customs_duties
#> 1443 2016-06-01 customs_duties
#> 1444 2016-07-01 customs_duties
#> 1445 2016-08-01 customs_duties
#> 1446 2016-09-01 customs_duties
#> 1447 2016-10-01 customs_duties
#> 1448 2016-11-01 customs_duties
#> 1449 2016-12-01 customs_duties
#> 1450 2017-01-01 customs_duties
#> 1451 2017-02-01 customs_duties
#> 1452 2017-03-01 customs_duties
#> 1453 2017-04-01 customs_duties
#> 1454 2017-05-01 customs_duties
#> 1455 2017-06-01 customs_duties
#> 1456 2017-07-01 customs_duties
#> 1457 2017-08-01 customs_duties
#> 1458 2017-09-01 customs_duties
#> 1459 2017-10-01 customs_duties
#> 1460 2017-11-01 customs_duties
#> 1461 2017-12-01 customs_duties
#> 1462 2018-01-01 customs_duties
#> 1463 2018-02-01 customs_duties
#> 1464 2018-03-01 customs_duties
#> 1465 2018-04-01 customs_duties
#> 1466 2018-05-01 customs_duties
#> 1467 2018-06-01 customs_duties
#> 1468 2018-07-01 customs_duties
#> 1469 2018-08-01 customs_duties
#> 1470 2018-09-01 customs_duties
#> 1471 2018-10-01 customs_duties
#> 1472 2018-11-01 customs_duties
#> 1473 2018-12-01 customs_duties
#> 1474 2019-01-01 customs_duties
#> 1475 2019-02-01 customs_duties
#> 1476 2019-03-01 customs_duties
#> 1477 2019-04-01 customs_duties
#> 1478 2019-05-01 customs_duties
#> 1479 2019-06-01 customs_duties
#> 1480 2019-07-01 customs_duties
#> 1481 2019-08-01 customs_duties
#> 1482 2019-09-01 customs_duties
#> 1483 2019-10-01 customs_duties
#> 1484 2019-11-01 customs_duties
#> 1485 2019-12-01 customs_duties
#> 1486 2020-01-01 customs_duties
#> 1487 2020-02-01 customs_duties
#> 1488 2020-03-01 customs_duties
#> 1489 2020-04-01 customs_duties
#> 1490 2020-05-01 customs_duties
#> 1491 2020-06-01 customs_duties
#> 1492 2020-07-01 customs_duties
#> 1493 2020-08-01 customs_duties
#> 1494 2020-09-01 customs_duties
#> 1495 2020-10-01 customs_duties
#> 1496 2020-11-01 customs_duties
#> 1497 2020-12-01 customs_duties
#> 1498 2021-01-01 customs_duties
#> 1499 2021-02-01 customs_duties
#> 1500 2021-03-01 customs_duties
#> 1501 2021-04-01 customs_duties
#> 1502 2021-05-01 customs_duties
#> 1503 2021-06-01 customs_duties
#> 1504 2021-07-01 customs_duties
#> 1505 2021-08-01 customs_duties
#> 1506 2021-09-01 customs_duties
#> 1507 2021-10-01 customs_duties
#> 1508 2021-11-01 customs_duties
#> 1509 2021-12-01 customs_duties
#> 1510 2022-01-01 customs_duties
#> 1511 2022-02-01 customs_duties
#> 1512 2022-03-01 customs_duties
#> 1513 2022-04-01 customs_duties
#> 1514 2022-05-01 customs_duties
#> 1515 2022-06-01 customs_duties
#> 1516 2022-07-01 customs_duties
#> 1517 2022-08-01 customs_duties
#> 1518 2022-09-01 customs_duties
#> 1519 2022-10-01 customs_duties
#> 1520 2022-11-01 customs_duties
#> 1521 2022-12-01 customs_duties
#> 1522 2023-01-01 customs_duties
#> 1523 2023-02-01 customs_duties
#> 1524 2023-03-01 customs_duties
#> 1525 2023-04-01 customs_duties
#> 1526 2023-05-01 customs_duties
#> 1527 2023-06-01 customs_duties
#> 1528 2023-07-01 customs_duties
#> 1529 2023-08-01 customs_duties
#> 1530 2023-09-01 customs_duties
#> 1531 2023-10-01 customs_duties
#> 1532 2023-11-01 customs_duties
#> 1533 2023-12-01 customs_duties
#> 1534 2024-01-01 customs_duties
#> 1535 2024-02-01 customs_duties
#> 1536 2024-03-01 customs_duties
#> 1537 2024-04-01 customs_duties
#> 1538 2024-05-01 customs_duties
#> 1539 2024-06-01 customs_duties
#> 1540 2024-07-01 customs_duties
#> 1541 2024-08-01 customs_duties
#> 1542 2024-09-01 customs_duties
#> 1543 2024-10-01 customs_duties
#> 1544 2024-11-01 customs_duties
#> 1545 2024-12-01 customs_duties
#> 1546 2025-01-01 customs_duties
#> 1547 2025-02-01 customs_duties
#> 1548 2025-03-01 customs_duties
#> 1549 2025-04-01 customs_duties
#> 1550 2025-05-01 customs_duties
#> 1551 2025-06-01 customs_duties
#> 1552 2025-07-01 customs_duties
#> 1553 2025-08-01 customs_duties
#> 1554 2025-09-01 customs_duties
#> 1555 2025-10-01 customs_duties
#> 1556 2025-11-01 customs_duties
#> 1557 2025-12-01 customs_duties
#> 1558 2026-01-01 customs_duties
#> 1559 2026-02-01 customs_duties
#> 1560 2026-03-01 customs_duties
#> 1561 2016-04-01 digital_services_tax
#> 1562 2016-05-01 digital_services_tax
#> 1563 2016-06-01 digital_services_tax
#> 1564 2016-07-01 digital_services_tax
#> 1565 2016-08-01 digital_services_tax
#> 1566 2016-09-01 digital_services_tax
#> 1567 2016-10-01 digital_services_tax
#> 1568 2016-11-01 digital_services_tax
#> 1569 2016-12-01 digital_services_tax
#> 1570 2017-01-01 digital_services_tax
#> 1571 2017-02-01 digital_services_tax
#> 1572 2017-03-01 digital_services_tax
#> 1573 2017-04-01 digital_services_tax
#> 1574 2017-05-01 digital_services_tax
#> 1575 2017-06-01 digital_services_tax
#> 1576 2017-07-01 digital_services_tax
#> 1577 2017-08-01 digital_services_tax
#> 1578 2017-09-01 digital_services_tax
#> 1579 2017-10-01 digital_services_tax
#> 1580 2017-11-01 digital_services_tax
#> 1581 2017-12-01 digital_services_tax
#> 1582 2018-01-01 digital_services_tax
#> 1583 2018-02-01 digital_services_tax
#> 1584 2018-03-01 digital_services_tax
#> 1585 2018-04-01 digital_services_tax
#> 1586 2018-05-01 digital_services_tax
#> 1587 2018-06-01 digital_services_tax
#> 1588 2018-07-01 digital_services_tax
#> 1589 2018-08-01 digital_services_tax
#> 1590 2018-09-01 digital_services_tax
#> 1591 2018-10-01 digital_services_tax
#> 1592 2018-11-01 digital_services_tax
#> 1593 2018-12-01 digital_services_tax
#> 1594 2019-01-01 digital_services_tax
#> 1595 2019-02-01 digital_services_tax
#> 1596 2019-03-01 digital_services_tax
#> 1597 2019-04-01 digital_services_tax
#> 1598 2019-05-01 digital_services_tax
#> 1599 2019-06-01 digital_services_tax
#> 1600 2019-07-01 digital_services_tax
#> 1601 2019-08-01 digital_services_tax
#> 1602 2019-09-01 digital_services_tax
#> 1603 2019-10-01 digital_services_tax
#> 1604 2019-11-01 digital_services_tax
#> 1605 2019-12-01 digital_services_tax
#> 1606 2020-01-01 digital_services_tax
#> 1607 2020-02-01 digital_services_tax
#> 1608 2020-03-01 digital_services_tax
#> 1609 2020-04-01 digital_services_tax
#> 1610 2020-05-01 digital_services_tax
#> 1611 2020-06-01 digital_services_tax
#> 1612 2020-07-01 digital_services_tax
#> 1613 2020-08-01 digital_services_tax
#> 1614 2020-09-01 digital_services_tax
#> 1615 2020-10-01 digital_services_tax
#> 1616 2020-11-01 digital_services_tax
#> 1617 2020-12-01 digital_services_tax
#> 1618 2021-01-01 digital_services_tax
#> 1619 2021-02-01 digital_services_tax
#> 1620 2021-03-01 digital_services_tax
#> 1621 2021-04-01 digital_services_tax
#> 1622 2021-05-01 digital_services_tax
#> 1623 2021-06-01 digital_services_tax
#> 1624 2021-07-01 digital_services_tax
#> 1625 2021-08-01 digital_services_tax
#> 1626 2021-09-01 digital_services_tax
#> 1627 2021-10-01 digital_services_tax
#> 1628 2021-11-01 digital_services_tax
#> 1629 2021-12-01 digital_services_tax
#> 1630 2022-01-01 digital_services_tax
#> 1631 2022-02-01 digital_services_tax
#> 1632 2022-03-01 digital_services_tax
#> 1633 2022-04-01 digital_services_tax
#> 1634 2022-05-01 digital_services_tax
#> 1635 2022-06-01 digital_services_tax
#> 1636 2022-07-01 digital_services_tax
#> 1637 2022-08-01 digital_services_tax
#> 1638 2022-09-01 digital_services_tax
#> 1639 2022-10-01 digital_services_tax
#> 1640 2022-11-01 digital_services_tax
#> 1641 2022-12-01 digital_services_tax
#> 1642 2023-01-01 digital_services_tax
#> 1643 2023-02-01 digital_services_tax
#> 1644 2023-03-01 digital_services_tax
#> 1645 2023-04-01 digital_services_tax
#> 1646 2023-05-01 digital_services_tax
#> 1647 2023-06-01 digital_services_tax
#> 1648 2023-07-01 digital_services_tax
#> 1649 2023-08-01 digital_services_tax
#> 1650 2023-09-01 digital_services_tax
#> 1651 2023-10-01 digital_services_tax
#> 1652 2023-11-01 digital_services_tax
#> 1653 2023-12-01 digital_services_tax
#> 1654 2024-01-01 digital_services_tax
#> 1655 2024-02-01 digital_services_tax
#> 1656 2024-03-01 digital_services_tax
#> 1657 2024-04-01 digital_services_tax
#> 1658 2024-05-01 digital_services_tax
#> 1659 2024-06-01 digital_services_tax
#> 1660 2024-07-01 digital_services_tax
#> 1661 2024-08-01 digital_services_tax
#> 1662 2024-09-01 digital_services_tax
#> 1663 2024-10-01 digital_services_tax
#> 1664 2024-11-01 digital_services_tax
#> 1665 2024-12-01 digital_services_tax
#> 1666 2025-01-01 digital_services_tax
#> 1667 2025-02-01 digital_services_tax
#> 1668 2025-03-01 digital_services_tax
#> 1669 2025-04-01 digital_services_tax
#> 1670 2025-05-01 digital_services_tax
#> 1671 2025-06-01 digital_services_tax
#> 1672 2025-07-01 digital_services_tax
#> 1673 2025-08-01 digital_services_tax
#> 1674 2025-09-01 digital_services_tax
#> 1675 2025-10-01 digital_services_tax
#> 1676 2025-11-01 digital_services_tax
#> 1677 2025-12-01 digital_services_tax
#> 1678 2026-01-01 digital_services_tax
#> 1679 2026-02-01 digital_services_tax
#> 1680 2026-03-01 digital_services_tax
#> 1681 2016-04-01 diverted_profits_tax
#> 1682 2016-05-01 diverted_profits_tax
#> 1683 2016-06-01 diverted_profits_tax
#> 1684 2016-07-01 diverted_profits_tax
#> 1685 2016-08-01 diverted_profits_tax
#> 1686 2016-09-01 diverted_profits_tax
#> 1687 2016-10-01 diverted_profits_tax
#> 1688 2016-11-01 diverted_profits_tax
#> 1689 2016-12-01 diverted_profits_tax
#> 1690 2017-01-01 diverted_profits_tax
#> 1691 2017-02-01 diverted_profits_tax
#> 1692 2017-03-01 diverted_profits_tax
#> 1693 2017-04-01 diverted_profits_tax
#> 1694 2017-05-01 diverted_profits_tax
#> 1695 2017-06-01 diverted_profits_tax
#> 1696 2017-07-01 diverted_profits_tax
#> 1697 2017-08-01 diverted_profits_tax
#> 1698 2017-09-01 diverted_profits_tax
#> 1699 2017-10-01 diverted_profits_tax
#> 1700 2017-11-01 diverted_profits_tax
#> 1701 2017-12-01 diverted_profits_tax
#> 1702 2018-01-01 diverted_profits_tax
#> 1703 2018-02-01 diverted_profits_tax
#> 1704 2018-03-01 diverted_profits_tax
#> 1705 2018-04-01 diverted_profits_tax
#> 1706 2018-05-01 diverted_profits_tax
#> 1707 2018-06-01 diverted_profits_tax
#> 1708 2018-07-01 diverted_profits_tax
#> 1709 2018-08-01 diverted_profits_tax
#> 1710 2018-09-01 diverted_profits_tax
#> 1711 2018-10-01 diverted_profits_tax
#> 1712 2018-11-01 diverted_profits_tax
#> 1713 2018-12-01 diverted_profits_tax
#> 1714 2019-01-01 diverted_profits_tax
#> 1715 2019-02-01 diverted_profits_tax
#> 1716 2019-03-01 diverted_profits_tax
#> 1717 2019-04-01 diverted_profits_tax
#> 1718 2019-05-01 diverted_profits_tax
#> 1719 2019-06-01 diverted_profits_tax
#> 1720 2019-07-01 diverted_profits_tax
#> 1721 2019-08-01 diverted_profits_tax
#> 1722 2019-09-01 diverted_profits_tax
#> 1723 2019-10-01 diverted_profits_tax
#> 1724 2019-11-01 diverted_profits_tax
#> 1725 2019-12-01 diverted_profits_tax
#> 1726 2020-01-01 diverted_profits_tax
#> 1727 2020-02-01 diverted_profits_tax
#> 1728 2020-03-01 diverted_profits_tax
#> 1729 2020-04-01 diverted_profits_tax
#> 1730 2020-05-01 diverted_profits_tax
#> 1731 2020-06-01 diverted_profits_tax
#> 1732 2020-07-01 diverted_profits_tax
#> 1733 2020-08-01 diverted_profits_tax
#> 1734 2020-09-01 diverted_profits_tax
#> 1735 2020-10-01 diverted_profits_tax
#> 1736 2020-11-01 diverted_profits_tax
#> 1737 2020-12-01 diverted_profits_tax
#> 1738 2021-01-01 diverted_profits_tax
#> 1739 2021-02-01 diverted_profits_tax
#> 1740 2021-03-01 diverted_profits_tax
#> 1741 2021-04-01 diverted_profits_tax
#> 1742 2021-05-01 diverted_profits_tax
#> 1743 2021-06-01 diverted_profits_tax
#> 1744 2021-07-01 diverted_profits_tax
#> 1745 2021-08-01 diverted_profits_tax
#> 1746 2021-09-01 diverted_profits_tax
#> 1747 2021-10-01 diverted_profits_tax
#> 1748 2021-11-01 diverted_profits_tax
#> 1749 2021-12-01 diverted_profits_tax
#> 1750 2022-01-01 diverted_profits_tax
#> 1751 2022-02-01 diverted_profits_tax
#> 1752 2022-03-01 diverted_profits_tax
#> 1753 2022-04-01 diverted_profits_tax
#> 1754 2022-05-01 diverted_profits_tax
#> 1755 2022-06-01 diverted_profits_tax
#> 1756 2022-07-01 diverted_profits_tax
#> 1757 2022-08-01 diverted_profits_tax
#> 1758 2022-09-01 diverted_profits_tax
#> 1759 2022-10-01 diverted_profits_tax
#> 1760 2022-11-01 diverted_profits_tax
#> 1761 2022-12-01 diverted_profits_tax
#> 1762 2023-01-01 diverted_profits_tax
#> 1763 2023-02-01 diverted_profits_tax
#> 1764 2023-03-01 diverted_profits_tax
#> 1765 2023-04-01 diverted_profits_tax
#> 1766 2023-05-01 diverted_profits_tax
#> 1767 2023-06-01 diverted_profits_tax
#> 1768 2023-07-01 diverted_profits_tax
#> 1769 2023-08-01 diverted_profits_tax
#> 1770 2023-09-01 diverted_profits_tax
#> 1771 2023-10-01 diverted_profits_tax
#> 1772 2023-11-01 diverted_profits_tax
#> 1773 2023-12-01 diverted_profits_tax
#> 1774 2024-01-01 diverted_profits_tax
#> 1775 2024-02-01 diverted_profits_tax
#> 1776 2024-03-01 diverted_profits_tax
#> 1777 2024-04-01 diverted_profits_tax
#> 1778 2024-05-01 diverted_profits_tax
#> 1779 2024-06-01 diverted_profits_tax
#> 1780 2024-07-01 diverted_profits_tax
#> 1781 2024-08-01 diverted_profits_tax
#> 1782 2024-09-01 diverted_profits_tax
#> 1783 2024-10-01 diverted_profits_tax
#> 1784 2024-11-01 diverted_profits_tax
#> 1785 2024-12-01 diverted_profits_tax
#> 1786 2025-01-01 diverted_profits_tax
#> 1787 2025-02-01 diverted_profits_tax
#> 1788 2025-03-01 diverted_profits_tax
#> 1789 2025-04-01 diverted_profits_tax
#> 1790 2025-05-01 diverted_profits_tax
#> 1791 2025-06-01 diverted_profits_tax
#> 1792 2025-07-01 diverted_profits_tax
#> 1793 2025-08-01 diverted_profits_tax
#> 1794 2025-09-01 diverted_profits_tax
#> 1795 2025-10-01 diverted_profits_tax
#> 1796 2025-11-01 diverted_profits_tax
#> 1797 2025-12-01 diverted_profits_tax
#> 1798 2026-01-01 diverted_profits_tax
#> 1799 2026-02-01 diverted_profits_tax
#> 1800 2026-03-01 diverted_profits_tax
#> 1801 2016-04-01 economic_crime_levy
#> 1802 2016-05-01 economic_crime_levy
#> 1803 2016-06-01 economic_crime_levy
#> 1804 2016-07-01 economic_crime_levy
#> 1805 2016-08-01 economic_crime_levy
#> 1806 2016-09-01 economic_crime_levy
#> 1807 2016-10-01 economic_crime_levy
#> 1808 2016-11-01 economic_crime_levy
#> 1809 2016-12-01 economic_crime_levy
#> 1810 2017-01-01 economic_crime_levy
#> 1811 2017-02-01 economic_crime_levy
#> 1812 2017-03-01 economic_crime_levy
#> 1813 2017-04-01 economic_crime_levy
#> 1814 2017-05-01 economic_crime_levy
#> 1815 2017-06-01 economic_crime_levy
#> 1816 2017-07-01 economic_crime_levy
#> 1817 2017-08-01 economic_crime_levy
#> 1818 2017-09-01 economic_crime_levy
#> 1819 2017-10-01 economic_crime_levy
#> 1820 2017-11-01 economic_crime_levy
#> 1821 2017-12-01 economic_crime_levy
#> 1822 2018-01-01 economic_crime_levy
#> 1823 2018-02-01 economic_crime_levy
#> 1824 2018-03-01 economic_crime_levy
#> 1825 2018-04-01 economic_crime_levy
#> 1826 2018-05-01 economic_crime_levy
#> 1827 2018-06-01 economic_crime_levy
#> 1828 2018-07-01 economic_crime_levy
#> 1829 2018-08-01 economic_crime_levy
#> 1830 2018-09-01 economic_crime_levy
#> 1831 2018-10-01 economic_crime_levy
#> 1832 2018-11-01 economic_crime_levy
#> 1833 2018-12-01 economic_crime_levy
#> 1834 2019-01-01 economic_crime_levy
#> 1835 2019-02-01 economic_crime_levy
#> 1836 2019-03-01 economic_crime_levy
#> 1837 2019-04-01 economic_crime_levy
#> 1838 2019-05-01 economic_crime_levy
#> 1839 2019-06-01 economic_crime_levy
#> 1840 2019-07-01 economic_crime_levy
#> 1841 2019-08-01 economic_crime_levy
#> 1842 2019-09-01 economic_crime_levy
#> 1843 2019-10-01 economic_crime_levy
#> 1844 2019-11-01 economic_crime_levy
#> 1845 2019-12-01 economic_crime_levy
#> 1846 2020-01-01 economic_crime_levy
#> 1847 2020-02-01 economic_crime_levy
#> 1848 2020-03-01 economic_crime_levy
#> 1849 2020-04-01 economic_crime_levy
#> 1850 2020-05-01 economic_crime_levy
#> 1851 2020-06-01 economic_crime_levy
#> 1852 2020-07-01 economic_crime_levy
#> 1853 2020-08-01 economic_crime_levy
#> 1854 2020-09-01 economic_crime_levy
#> 1855 2020-10-01 economic_crime_levy
#> 1856 2020-11-01 economic_crime_levy
#> 1857 2020-12-01 economic_crime_levy
#> 1858 2021-01-01 economic_crime_levy
#> 1859 2021-02-01 economic_crime_levy
#> 1860 2021-03-01 economic_crime_levy
#> 1861 2021-04-01 economic_crime_levy
#> 1862 2021-05-01 economic_crime_levy
#> 1863 2021-06-01 economic_crime_levy
#> 1864 2021-07-01 economic_crime_levy
#> 1865 2021-08-01 economic_crime_levy
#> 1866 2021-09-01 economic_crime_levy
#> 1867 2021-10-01 economic_crime_levy
#> 1868 2021-11-01 economic_crime_levy
#> 1869 2021-12-01 economic_crime_levy
#> 1870 2022-01-01 economic_crime_levy
#> 1871 2022-02-01 economic_crime_levy
#> 1872 2022-03-01 economic_crime_levy
#> 1873 2022-04-01 economic_crime_levy
#> 1874 2022-05-01 economic_crime_levy
#> 1875 2022-06-01 economic_crime_levy
#> 1876 2022-07-01 economic_crime_levy
#> 1877 2022-08-01 economic_crime_levy
#> 1878 2022-09-01 economic_crime_levy
#> 1879 2022-10-01 economic_crime_levy
#> 1880 2022-11-01 economic_crime_levy
#> 1881 2022-12-01 economic_crime_levy
#> 1882 2023-01-01 economic_crime_levy
#> 1883 2023-02-01 economic_crime_levy
#> 1884 2023-03-01 economic_crime_levy
#> 1885 2023-04-01 economic_crime_levy
#> 1886 2023-05-01 economic_crime_levy
#> 1887 2023-06-01 economic_crime_levy
#> 1888 2023-07-01 economic_crime_levy
#> 1889 2023-08-01 economic_crime_levy
#> 1890 2023-09-01 economic_crime_levy
#> 1891 2023-10-01 economic_crime_levy
#> 1892 2023-11-01 economic_crime_levy
#> 1893 2023-12-01 economic_crime_levy
#> 1894 2024-01-01 economic_crime_levy
#> 1895 2024-02-01 economic_crime_levy
#> 1896 2024-03-01 economic_crime_levy
#> 1897 2024-04-01 economic_crime_levy
#> 1898 2024-05-01 economic_crime_levy
#> 1899 2024-06-01 economic_crime_levy
#> 1900 2024-07-01 economic_crime_levy
#> 1901 2024-08-01 economic_crime_levy
#> 1902 2024-09-01 economic_crime_levy
#> 1903 2024-10-01 economic_crime_levy
#> 1904 2024-11-01 economic_crime_levy
#> 1905 2024-12-01 economic_crime_levy
#> 1906 2025-01-01 economic_crime_levy
#> 1907 2025-02-01 economic_crime_levy
#> 1908 2025-03-01 economic_crime_levy
#> 1909 2025-04-01 economic_crime_levy
#> 1910 2025-05-01 economic_crime_levy
#> 1911 2025-06-01 economic_crime_levy
#> 1912 2025-07-01 economic_crime_levy
#> 1913 2025-08-01 economic_crime_levy
#> 1914 2025-09-01 economic_crime_levy
#> 1915 2025-10-01 economic_crime_levy
#> 1916 2025-11-01 economic_crime_levy
#> 1917 2025-12-01 economic_crime_levy
#> 1918 2026-01-01 economic_crime_levy
#> 1919 2026-02-01 economic_crime_levy
#> 1920 2026-03-01 economic_crime_levy
#> 1921 2016-04-01 electricity_generators_levy
#> 1922 2016-05-01 electricity_generators_levy
#> 1923 2016-06-01 electricity_generators_levy
#> 1924 2016-07-01 electricity_generators_levy
#> 1925 2016-08-01 electricity_generators_levy
#> 1926 2016-09-01 electricity_generators_levy
#> 1927 2016-10-01 electricity_generators_levy
#> 1928 2016-11-01 electricity_generators_levy
#> 1929 2016-12-01 electricity_generators_levy
#> 1930 2017-01-01 electricity_generators_levy
#> 1931 2017-02-01 electricity_generators_levy
#> 1932 2017-03-01 electricity_generators_levy
#> 1933 2017-04-01 electricity_generators_levy
#> 1934 2017-05-01 electricity_generators_levy
#> 1935 2017-06-01 electricity_generators_levy
#> 1936 2017-07-01 electricity_generators_levy
#> 1937 2017-08-01 electricity_generators_levy
#> 1938 2017-09-01 electricity_generators_levy
#> 1939 2017-10-01 electricity_generators_levy
#> 1940 2017-11-01 electricity_generators_levy
#> 1941 2017-12-01 electricity_generators_levy
#> 1942 2018-01-01 electricity_generators_levy
#> 1943 2018-02-01 electricity_generators_levy
#> 1944 2018-03-01 electricity_generators_levy
#> 1945 2018-04-01 electricity_generators_levy
#> 1946 2018-05-01 electricity_generators_levy
#> 1947 2018-06-01 electricity_generators_levy
#> 1948 2018-07-01 electricity_generators_levy
#> 1949 2018-08-01 electricity_generators_levy
#> 1950 2018-09-01 electricity_generators_levy
#> 1951 2018-10-01 electricity_generators_levy
#> 1952 2018-11-01 electricity_generators_levy
#> 1953 2018-12-01 electricity_generators_levy
#> 1954 2019-01-01 electricity_generators_levy
#> 1955 2019-02-01 electricity_generators_levy
#> 1956 2019-03-01 electricity_generators_levy
#> 1957 2019-04-01 electricity_generators_levy
#> 1958 2019-05-01 electricity_generators_levy
#> 1959 2019-06-01 electricity_generators_levy
#> 1960 2019-07-01 electricity_generators_levy
#> 1961 2019-08-01 electricity_generators_levy
#> 1962 2019-09-01 electricity_generators_levy
#> 1963 2019-10-01 electricity_generators_levy
#> 1964 2019-11-01 electricity_generators_levy
#> 1965 2019-12-01 electricity_generators_levy
#> 1966 2020-01-01 electricity_generators_levy
#> 1967 2020-02-01 electricity_generators_levy
#> 1968 2020-03-01 electricity_generators_levy
#> 1969 2020-04-01 electricity_generators_levy
#> 1970 2020-05-01 electricity_generators_levy
#> 1971 2020-06-01 electricity_generators_levy
#> 1972 2020-07-01 electricity_generators_levy
#> 1973 2020-08-01 electricity_generators_levy
#> 1974 2020-09-01 electricity_generators_levy
#> 1975 2020-10-01 electricity_generators_levy
#> 1976 2020-11-01 electricity_generators_levy
#> 1977 2020-12-01 electricity_generators_levy
#> 1978 2021-01-01 electricity_generators_levy
#> 1979 2021-02-01 electricity_generators_levy
#> 1980 2021-03-01 electricity_generators_levy
#> 1981 2021-04-01 electricity_generators_levy
#> 1982 2021-05-01 electricity_generators_levy
#> 1983 2021-06-01 electricity_generators_levy
#> 1984 2021-07-01 electricity_generators_levy
#> 1985 2021-08-01 electricity_generators_levy
#> 1986 2021-09-01 electricity_generators_levy
#> 1987 2021-10-01 electricity_generators_levy
#> 1988 2021-11-01 electricity_generators_levy
#> 1989 2021-12-01 electricity_generators_levy
#> 1990 2022-01-01 electricity_generators_levy
#> 1991 2022-02-01 electricity_generators_levy
#> 1992 2022-03-01 electricity_generators_levy
#> 1993 2022-04-01 electricity_generators_levy
#> 1994 2022-05-01 electricity_generators_levy
#> 1995 2022-06-01 electricity_generators_levy
#> 1996 2022-07-01 electricity_generators_levy
#> 1997 2022-08-01 electricity_generators_levy
#> 1998 2022-09-01 electricity_generators_levy
#> 1999 2022-10-01 electricity_generators_levy
#> 2000 2022-11-01 electricity_generators_levy
#> 2001 2022-12-01 electricity_generators_levy
#> 2002 2023-01-01 electricity_generators_levy
#> 2003 2023-02-01 electricity_generators_levy
#> 2004 2023-03-01 electricity_generators_levy
#> 2005 2023-04-01 electricity_generators_levy
#> 2006 2023-05-01 electricity_generators_levy
#> 2007 2023-06-01 electricity_generators_levy
#> 2008 2023-07-01 electricity_generators_levy
#> 2009 2023-08-01 electricity_generators_levy
#> 2010 2023-09-01 electricity_generators_levy
#> 2011 2023-10-01 electricity_generators_levy
#> 2012 2023-11-01 electricity_generators_levy
#> 2013 2023-12-01 electricity_generators_levy
#> 2014 2024-01-01 electricity_generators_levy
#> 2015 2024-02-01 electricity_generators_levy
#> 2016 2024-03-01 electricity_generators_levy
#> 2017 2024-04-01 electricity_generators_levy
#> 2018 2024-05-01 electricity_generators_levy
#> 2019 2024-06-01 electricity_generators_levy
#> 2020 2024-07-01 electricity_generators_levy
#> 2021 2024-08-01 electricity_generators_levy
#> 2022 2024-09-01 electricity_generators_levy
#> 2023 2024-10-01 electricity_generators_levy
#> 2024 2024-11-01 electricity_generators_levy
#> 2025 2024-12-01 electricity_generators_levy
#> 2026 2025-01-01 electricity_generators_levy
#> 2027 2025-02-01 electricity_generators_levy
#> 2028 2025-03-01 electricity_generators_levy
#> 2029 2025-04-01 electricity_generators_levy
#> 2030 2025-05-01 electricity_generators_levy
#> 2031 2025-06-01 electricity_generators_levy
#> 2032 2025-07-01 electricity_generators_levy
#> 2033 2025-08-01 electricity_generators_levy
#> 2034 2025-09-01 electricity_generators_levy
#> 2035 2025-10-01 electricity_generators_levy
#> 2036 2025-11-01 electricity_generators_levy
#> 2037 2025-12-01 electricity_generators_levy
#> 2038 2026-01-01 electricity_generators_levy
#> 2039 2026-02-01 electricity_generators_levy
#> 2040 2026-03-01 electricity_generators_levy
#> 2041 2016-04-01 energy_profits_levy
#> 2042 2016-05-01 energy_profits_levy
#> 2043 2016-06-01 energy_profits_levy
#> 2044 2016-07-01 energy_profits_levy
#> 2045 2016-08-01 energy_profits_levy
#> 2046 2016-09-01 energy_profits_levy
#> 2047 2016-10-01 energy_profits_levy
#> 2048 2016-11-01 energy_profits_levy
#> 2049 2016-12-01 energy_profits_levy
#> 2050 2017-01-01 energy_profits_levy
#> 2051 2017-02-01 energy_profits_levy
#> 2052 2017-03-01 energy_profits_levy
#> 2053 2017-04-01 energy_profits_levy
#> 2054 2017-05-01 energy_profits_levy
#> 2055 2017-06-01 energy_profits_levy
#> 2056 2017-07-01 energy_profits_levy
#> 2057 2017-08-01 energy_profits_levy
#> 2058 2017-09-01 energy_profits_levy
#> 2059 2017-10-01 energy_profits_levy
#> 2060 2017-11-01 energy_profits_levy
#> 2061 2017-12-01 energy_profits_levy
#> 2062 2018-01-01 energy_profits_levy
#> 2063 2018-02-01 energy_profits_levy
#> 2064 2018-03-01 energy_profits_levy
#> 2065 2018-04-01 energy_profits_levy
#> 2066 2018-05-01 energy_profits_levy
#> 2067 2018-06-01 energy_profits_levy
#> 2068 2018-07-01 energy_profits_levy
#> 2069 2018-08-01 energy_profits_levy
#> 2070 2018-09-01 energy_profits_levy
#> 2071 2018-10-01 energy_profits_levy
#> 2072 2018-11-01 energy_profits_levy
#> 2073 2018-12-01 energy_profits_levy
#> 2074 2019-01-01 energy_profits_levy
#> 2075 2019-02-01 energy_profits_levy
#> 2076 2019-03-01 energy_profits_levy
#> 2077 2019-04-01 energy_profits_levy
#> 2078 2019-05-01 energy_profits_levy
#> 2079 2019-06-01 energy_profits_levy
#> 2080 2019-07-01 energy_profits_levy
#> 2081 2019-08-01 energy_profits_levy
#> 2082 2019-09-01 energy_profits_levy
#> 2083 2019-10-01 energy_profits_levy
#> 2084 2019-11-01 energy_profits_levy
#> 2085 2019-12-01 energy_profits_levy
#> 2086 2020-01-01 energy_profits_levy
#> 2087 2020-02-01 energy_profits_levy
#> 2088 2020-03-01 energy_profits_levy
#> 2089 2020-04-01 energy_profits_levy
#> 2090 2020-05-01 energy_profits_levy
#> 2091 2020-06-01 energy_profits_levy
#> 2092 2020-07-01 energy_profits_levy
#> 2093 2020-08-01 energy_profits_levy
#> 2094 2020-09-01 energy_profits_levy
#> 2095 2020-10-01 energy_profits_levy
#> 2096 2020-11-01 energy_profits_levy
#> 2097 2020-12-01 energy_profits_levy
#> 2098 2021-01-01 energy_profits_levy
#> 2099 2021-02-01 energy_profits_levy
#> 2100 2021-03-01 energy_profits_levy
#> 2101 2021-04-01 energy_profits_levy
#> 2102 2021-05-01 energy_profits_levy
#> 2103 2021-06-01 energy_profits_levy
#> 2104 2021-07-01 energy_profits_levy
#> 2105 2021-08-01 energy_profits_levy
#> 2106 2021-09-01 energy_profits_levy
#> 2107 2021-10-01 energy_profits_levy
#> 2108 2021-11-01 energy_profits_levy
#> 2109 2021-12-01 energy_profits_levy
#> 2110 2022-01-01 energy_profits_levy
#> 2111 2022-02-01 energy_profits_levy
#> 2112 2022-03-01 energy_profits_levy
#> 2113 2022-04-01 energy_profits_levy
#> 2114 2022-05-01 energy_profits_levy
#> 2115 2022-06-01 energy_profits_levy
#> 2116 2022-07-01 energy_profits_levy
#> 2117 2022-08-01 energy_profits_levy
#> 2118 2022-09-01 energy_profits_levy
#> 2119 2022-10-01 energy_profits_levy
#> 2120 2022-11-01 energy_profits_levy
#> 2121 2022-12-01 energy_profits_levy
#> 2122 2023-01-01 energy_profits_levy
#> 2123 2023-02-01 energy_profits_levy
#> 2124 2023-03-01 energy_profits_levy
#> 2125 2023-04-01 energy_profits_levy
#> 2126 2023-05-01 energy_profits_levy
#> 2127 2023-06-01 energy_profits_levy
#> 2128 2023-07-01 energy_profits_levy
#> 2129 2023-08-01 energy_profits_levy
#> 2130 2023-09-01 energy_profits_levy
#> 2131 2023-10-01 energy_profits_levy
#> 2132 2023-11-01 energy_profits_levy
#> 2133 2023-12-01 energy_profits_levy
#> 2134 2024-01-01 energy_profits_levy
#> 2135 2024-02-01 energy_profits_levy
#> 2136 2024-03-01 energy_profits_levy
#> 2137 2024-04-01 energy_profits_levy
#> 2138 2024-05-01 energy_profits_levy
#> 2139 2024-06-01 energy_profits_levy
#> 2140 2024-07-01 energy_profits_levy
#> 2141 2024-08-01 energy_profits_levy
#> 2142 2024-09-01 energy_profits_levy
#> 2143 2024-10-01 energy_profits_levy
#> 2144 2024-11-01 energy_profits_levy
#> 2145 2024-12-01 energy_profits_levy
#> 2146 2025-01-01 energy_profits_levy
#> 2147 2025-02-01 energy_profits_levy
#> 2148 2025-03-01 energy_profits_levy
#> 2149 2025-04-01 energy_profits_levy
#> 2150 2025-05-01 energy_profits_levy
#> 2151 2025-06-01 energy_profits_levy
#> 2152 2025-07-01 energy_profits_levy
#> 2153 2025-08-01 energy_profits_levy
#> 2154 2025-09-01 energy_profits_levy
#> 2155 2025-10-01 energy_profits_levy
#> 2156 2025-11-01 energy_profits_levy
#> 2157 2025-12-01 energy_profits_levy
#> 2158 2026-01-01 energy_profits_levy
#> 2159 2026-02-01 energy_profits_levy
#> 2160 2026-03-01 energy_profits_levy
#> 2161 2016-04-01 fuel_duty
#> 2162 2016-05-01 fuel_duty
#> 2163 2016-06-01 fuel_duty
#> 2164 2016-07-01 fuel_duty
#> 2165 2016-08-01 fuel_duty
#> 2166 2016-09-01 fuel_duty
#> 2167 2016-10-01 fuel_duty
#> 2168 2016-11-01 fuel_duty
#> 2169 2016-12-01 fuel_duty
#> 2170 2017-01-01 fuel_duty
#> 2171 2017-02-01 fuel_duty
#> 2172 2017-03-01 fuel_duty
#> 2173 2017-04-01 fuel_duty
#> 2174 2017-05-01 fuel_duty
#> 2175 2017-06-01 fuel_duty
#> 2176 2017-07-01 fuel_duty
#> 2177 2017-08-01 fuel_duty
#> 2178 2017-09-01 fuel_duty
#> 2179 2017-10-01 fuel_duty
#> 2180 2017-11-01 fuel_duty
#> 2181 2017-12-01 fuel_duty
#> 2182 2018-01-01 fuel_duty
#> 2183 2018-02-01 fuel_duty
#> 2184 2018-03-01 fuel_duty
#> 2185 2018-04-01 fuel_duty
#> 2186 2018-05-01 fuel_duty
#> 2187 2018-06-01 fuel_duty
#> 2188 2018-07-01 fuel_duty
#> 2189 2018-08-01 fuel_duty
#> 2190 2018-09-01 fuel_duty
#> 2191 2018-10-01 fuel_duty
#> 2192 2018-11-01 fuel_duty
#> 2193 2018-12-01 fuel_duty
#> 2194 2019-01-01 fuel_duty
#> 2195 2019-02-01 fuel_duty
#> 2196 2019-03-01 fuel_duty
#> 2197 2019-04-01 fuel_duty
#> 2198 2019-05-01 fuel_duty
#> 2199 2019-06-01 fuel_duty
#> 2200 2019-07-01 fuel_duty
#> 2201 2019-08-01 fuel_duty
#> 2202 2019-09-01 fuel_duty
#> 2203 2019-10-01 fuel_duty
#> 2204 2019-11-01 fuel_duty
#> 2205 2019-12-01 fuel_duty
#> 2206 2020-01-01 fuel_duty
#> 2207 2020-02-01 fuel_duty
#> 2208 2020-03-01 fuel_duty
#> 2209 2020-04-01 fuel_duty
#> 2210 2020-05-01 fuel_duty
#> 2211 2020-06-01 fuel_duty
#> 2212 2020-07-01 fuel_duty
#> 2213 2020-08-01 fuel_duty
#> 2214 2020-09-01 fuel_duty
#> 2215 2020-10-01 fuel_duty
#> 2216 2020-11-01 fuel_duty
#> 2217 2020-12-01 fuel_duty
#> 2218 2021-01-01 fuel_duty
#> 2219 2021-02-01 fuel_duty
#> 2220 2021-03-01 fuel_duty
#> 2221 2021-04-01 fuel_duty
#> 2222 2021-05-01 fuel_duty
#> 2223 2021-06-01 fuel_duty
#> 2224 2021-07-01 fuel_duty
#> 2225 2021-08-01 fuel_duty
#> 2226 2021-09-01 fuel_duty
#> 2227 2021-10-01 fuel_duty
#> 2228 2021-11-01 fuel_duty
#> 2229 2021-12-01 fuel_duty
#> 2230 2022-01-01 fuel_duty
#> 2231 2022-02-01 fuel_duty
#> 2232 2022-03-01 fuel_duty
#> 2233 2022-04-01 fuel_duty
#> 2234 2022-05-01 fuel_duty
#> 2235 2022-06-01 fuel_duty
#> 2236 2022-07-01 fuel_duty
#> 2237 2022-08-01 fuel_duty
#> 2238 2022-09-01 fuel_duty
#> 2239 2022-10-01 fuel_duty
#> 2240 2022-11-01 fuel_duty
#> 2241 2022-12-01 fuel_duty
#> 2242 2023-01-01 fuel_duty
#> 2243 2023-02-01 fuel_duty
#> 2244 2023-03-01 fuel_duty
#> 2245 2023-04-01 fuel_duty
#> 2246 2023-05-01 fuel_duty
#> 2247 2023-06-01 fuel_duty
#> 2248 2023-07-01 fuel_duty
#> 2249 2023-08-01 fuel_duty
#> 2250 2023-09-01 fuel_duty
#> 2251 2023-10-01 fuel_duty
#> 2252 2023-11-01 fuel_duty
#> 2253 2023-12-01 fuel_duty
#> 2254 2024-01-01 fuel_duty
#> 2255 2024-02-01 fuel_duty
#> 2256 2024-03-01 fuel_duty
#> 2257 2024-04-01 fuel_duty
#> 2258 2024-05-01 fuel_duty
#> 2259 2024-06-01 fuel_duty
#> 2260 2024-07-01 fuel_duty
#> 2261 2024-08-01 fuel_duty
#> 2262 2024-09-01 fuel_duty
#> 2263 2024-10-01 fuel_duty
#> 2264 2024-11-01 fuel_duty
#> 2265 2024-12-01 fuel_duty
#> 2266 2025-01-01 fuel_duty
#> 2267 2025-02-01 fuel_duty
#> 2268 2025-03-01 fuel_duty
#> 2269 2025-04-01 fuel_duty
#> 2270 2025-05-01 fuel_duty
#> 2271 2025-06-01 fuel_duty
#> 2272 2025-07-01 fuel_duty
#> 2273 2025-08-01 fuel_duty
#> 2274 2025-09-01 fuel_duty
#> 2275 2025-10-01 fuel_duty
#> 2276 2025-11-01 fuel_duty
#> 2277 2025-12-01 fuel_duty
#> 2278 2026-01-01 fuel_duty
#> 2279 2026-02-01 fuel_duty
#> 2280 2026-03-01 fuel_duty
#> 2281 2016-04-01 gambling_duties
#> 2282 2016-05-01 gambling_duties
#> 2283 2016-06-01 gambling_duties
#> 2284 2016-07-01 gambling_duties
#> 2285 2016-08-01 gambling_duties
#> 2286 2016-09-01 gambling_duties
#> 2287 2016-10-01 gambling_duties
#> 2288 2016-11-01 gambling_duties
#> 2289 2016-12-01 gambling_duties
#> 2290 2017-01-01 gambling_duties
#> 2291 2017-02-01 gambling_duties
#> 2292 2017-03-01 gambling_duties
#> 2293 2017-04-01 gambling_duties
#> 2294 2017-05-01 gambling_duties
#> 2295 2017-06-01 gambling_duties
#> 2296 2017-07-01 gambling_duties
#> 2297 2017-08-01 gambling_duties
#> 2298 2017-09-01 gambling_duties
#> 2299 2017-10-01 gambling_duties
#> 2300 2017-11-01 gambling_duties
#> 2301 2017-12-01 gambling_duties
#> 2302 2018-01-01 gambling_duties
#> 2303 2018-02-01 gambling_duties
#> 2304 2018-03-01 gambling_duties
#> 2305 2018-04-01 gambling_duties
#> 2306 2018-05-01 gambling_duties
#> 2307 2018-06-01 gambling_duties
#> 2308 2018-07-01 gambling_duties
#> 2309 2018-08-01 gambling_duties
#> 2310 2018-09-01 gambling_duties
#> 2311 2018-10-01 gambling_duties
#> 2312 2018-11-01 gambling_duties
#> 2313 2018-12-01 gambling_duties
#> 2314 2019-01-01 gambling_duties
#> 2315 2019-02-01 gambling_duties
#> 2316 2019-03-01 gambling_duties
#> 2317 2019-04-01 gambling_duties
#> 2318 2019-05-01 gambling_duties
#> 2319 2019-06-01 gambling_duties
#> 2320 2019-07-01 gambling_duties
#> 2321 2019-08-01 gambling_duties
#> 2322 2019-09-01 gambling_duties
#> 2323 2019-10-01 gambling_duties
#> 2324 2019-11-01 gambling_duties
#> 2325 2019-12-01 gambling_duties
#> 2326 2020-01-01 gambling_duties
#> 2327 2020-02-01 gambling_duties
#> 2328 2020-03-01 gambling_duties
#> 2329 2020-04-01 gambling_duties
#> 2330 2020-05-01 gambling_duties
#> 2331 2020-06-01 gambling_duties
#> 2332 2020-07-01 gambling_duties
#> 2333 2020-08-01 gambling_duties
#> 2334 2020-09-01 gambling_duties
#> 2335 2020-10-01 gambling_duties
#> 2336 2020-11-01 gambling_duties
#> 2337 2020-12-01 gambling_duties
#> 2338 2021-01-01 gambling_duties
#> 2339 2021-02-01 gambling_duties
#> 2340 2021-03-01 gambling_duties
#> 2341 2021-04-01 gambling_duties
#> 2342 2021-05-01 gambling_duties
#> 2343 2021-06-01 gambling_duties
#> 2344 2021-07-01 gambling_duties
#> 2345 2021-08-01 gambling_duties
#> 2346 2021-09-01 gambling_duties
#> 2347 2021-10-01 gambling_duties
#> 2348 2021-11-01 gambling_duties
#> 2349 2021-12-01 gambling_duties
#> 2350 2022-01-01 gambling_duties
#> 2351 2022-02-01 gambling_duties
#> 2352 2022-03-01 gambling_duties
#> 2353 2022-04-01 gambling_duties
#> 2354 2022-05-01 gambling_duties
#> 2355 2022-06-01 gambling_duties
#> 2356 2022-07-01 gambling_duties
#> 2357 2022-08-01 gambling_duties
#> 2358 2022-09-01 gambling_duties
#> 2359 2022-10-01 gambling_duties
#> 2360 2022-11-01 gambling_duties
#> 2361 2022-12-01 gambling_duties
#> 2362 2023-01-01 gambling_duties
#> 2363 2023-02-01 gambling_duties
#> 2364 2023-03-01 gambling_duties
#> 2365 2023-04-01 gambling_duties
#> 2366 2023-05-01 gambling_duties
#> 2367 2023-06-01 gambling_duties
#> 2368 2023-07-01 gambling_duties
#> 2369 2023-08-01 gambling_duties
#> 2370 2023-09-01 gambling_duties
#> 2371 2023-10-01 gambling_duties
#> 2372 2023-11-01 gambling_duties
#> 2373 2023-12-01 gambling_duties
#> 2374 2024-01-01 gambling_duties
#> 2375 2024-02-01 gambling_duties
#> 2376 2024-03-01 gambling_duties
#> 2377 2024-04-01 gambling_duties
#> 2378 2024-05-01 gambling_duties
#> 2379 2024-06-01 gambling_duties
#> 2380 2024-07-01 gambling_duties
#> 2381 2024-08-01 gambling_duties
#> 2382 2024-09-01 gambling_duties
#> 2383 2024-10-01 gambling_duties
#> 2384 2024-11-01 gambling_duties
#> 2385 2024-12-01 gambling_duties
#> 2386 2025-01-01 gambling_duties
#> 2387 2025-02-01 gambling_duties
#> 2388 2025-03-01 gambling_duties
#> 2389 2025-04-01 gambling_duties
#> 2390 2025-05-01 gambling_duties
#> 2391 2025-06-01 gambling_duties
#> 2392 2025-07-01 gambling_duties
#> 2393 2025-08-01 gambling_duties
#> 2394 2025-09-01 gambling_duties
#> 2395 2025-10-01 gambling_duties
#> 2396 2025-11-01 gambling_duties
#> 2397 2025-12-01 gambling_duties
#> 2398 2026-01-01 gambling_duties
#> 2399 2026-02-01 gambling_duties
#> 2400 2026-03-01 gambling_duties
#> 2401 2016-04-01 income_tax
#> 2402 2016-05-01 income_tax
#> 2403 2016-06-01 income_tax
#> 2404 2016-07-01 income_tax
#> 2405 2016-08-01 income_tax
#> 2406 2016-09-01 income_tax
#> 2407 2016-10-01 income_tax
#> 2408 2016-11-01 income_tax
#> 2409 2016-12-01 income_tax
#> 2410 2017-01-01 income_tax
#> 2411 2017-02-01 income_tax
#> 2412 2017-03-01 income_tax
#> 2413 2017-04-01 income_tax
#> 2414 2017-05-01 income_tax
#> 2415 2017-06-01 income_tax
#> 2416 2017-07-01 income_tax
#> 2417 2017-08-01 income_tax
#> 2418 2017-09-01 income_tax
#> 2419 2017-10-01 income_tax
#> 2420 2017-11-01 income_tax
#> 2421 2017-12-01 income_tax
#> 2422 2018-01-01 income_tax
#> 2423 2018-02-01 income_tax
#> 2424 2018-03-01 income_tax
#> 2425 2018-04-01 income_tax
#> 2426 2018-05-01 income_tax
#> 2427 2018-06-01 income_tax
#> 2428 2018-07-01 income_tax
#> 2429 2018-08-01 income_tax
#> 2430 2018-09-01 income_tax
#> 2431 2018-10-01 income_tax
#> 2432 2018-11-01 income_tax
#> 2433 2018-12-01 income_tax
#> 2434 2019-01-01 income_tax
#> 2435 2019-02-01 income_tax
#> 2436 2019-03-01 income_tax
#> 2437 2019-04-01 income_tax
#> 2438 2019-05-01 income_tax
#> 2439 2019-06-01 income_tax
#> 2440 2019-07-01 income_tax
#> 2441 2019-08-01 income_tax
#> 2442 2019-09-01 income_tax
#> 2443 2019-10-01 income_tax
#> 2444 2019-11-01 income_tax
#> 2445 2019-12-01 income_tax
#> 2446 2020-01-01 income_tax
#> 2447 2020-02-01 income_tax
#> 2448 2020-03-01 income_tax
#> 2449 2020-04-01 income_tax
#> 2450 2020-05-01 income_tax
#> 2451 2020-06-01 income_tax
#> 2452 2020-07-01 income_tax
#> 2453 2020-08-01 income_tax
#> 2454 2020-09-01 income_tax
#> 2455 2020-10-01 income_tax
#> 2456 2020-11-01 income_tax
#> 2457 2020-12-01 income_tax
#> 2458 2021-01-01 income_tax
#> 2459 2021-02-01 income_tax
#> 2460 2021-03-01 income_tax
#> 2461 2021-04-01 income_tax
#> 2462 2021-05-01 income_tax
#> 2463 2021-06-01 income_tax
#> 2464 2021-07-01 income_tax
#> 2465 2021-08-01 income_tax
#> 2466 2021-09-01 income_tax
#> 2467 2021-10-01 income_tax
#> 2468 2021-11-01 income_tax
#> 2469 2021-12-01 income_tax
#> 2470 2022-01-01 income_tax
#> 2471 2022-02-01 income_tax
#> 2472 2022-03-01 income_tax
#> 2473 2022-04-01 income_tax
#> 2474 2022-05-01 income_tax
#> 2475 2022-06-01 income_tax
#> 2476 2022-07-01 income_tax
#> 2477 2022-08-01 income_tax
#> 2478 2022-09-01 income_tax
#> 2479 2022-10-01 income_tax
#> 2480 2022-11-01 income_tax
#> 2481 2022-12-01 income_tax
#> 2482 2023-01-01 income_tax
#> 2483 2023-02-01 income_tax
#> 2484 2023-03-01 income_tax
#> 2485 2023-04-01 income_tax
#> 2486 2023-05-01 income_tax
#> 2487 2023-06-01 income_tax
#> 2488 2023-07-01 income_tax
#> 2489 2023-08-01 income_tax
#> 2490 2023-09-01 income_tax
#> 2491 2023-10-01 income_tax
#> 2492 2023-11-01 income_tax
#> 2493 2023-12-01 income_tax
#> 2494 2024-01-01 income_tax
#> 2495 2024-02-01 income_tax
#> 2496 2024-03-01 income_tax
#> 2497 2024-04-01 income_tax
#> 2498 2024-05-01 income_tax
#> 2499 2024-06-01 income_tax
#> 2500 2024-07-01 income_tax
#> 2501 2024-08-01 income_tax
#> 2502 2024-09-01 income_tax
#> 2503 2024-10-01 income_tax
#> 2504 2024-11-01 income_tax
#> 2505 2024-12-01 income_tax
#> 2506 2025-01-01 income_tax
#> 2507 2025-02-01 income_tax
#> 2508 2025-03-01 income_tax
#> 2509 2025-04-01 income_tax
#> 2510 2025-05-01 income_tax
#> 2511 2025-06-01 income_tax
#> 2512 2025-07-01 income_tax
#> 2513 2025-08-01 income_tax
#> 2514 2025-09-01 income_tax
#> 2515 2025-10-01 income_tax
#> 2516 2025-11-01 income_tax
#> 2517 2025-12-01 income_tax
#> 2518 2026-01-01 income_tax
#> 2519 2026-02-01 income_tax
#> 2520 2026-03-01 income_tax
#> 2521 2016-04-01 inheritance_tax
#> 2522 2016-05-01 inheritance_tax
#> 2523 2016-06-01 inheritance_tax
#> 2524 2016-07-01 inheritance_tax
#> 2525 2016-08-01 inheritance_tax
#> 2526 2016-09-01 inheritance_tax
#> 2527 2016-10-01 inheritance_tax
#> 2528 2016-11-01 inheritance_tax
#> 2529 2016-12-01 inheritance_tax
#> 2530 2017-01-01 inheritance_tax
#> 2531 2017-02-01 inheritance_tax
#> 2532 2017-03-01 inheritance_tax
#> 2533 2017-04-01 inheritance_tax
#> 2534 2017-05-01 inheritance_tax
#> 2535 2017-06-01 inheritance_tax
#> 2536 2017-07-01 inheritance_tax
#> 2537 2017-08-01 inheritance_tax
#> 2538 2017-09-01 inheritance_tax
#> 2539 2017-10-01 inheritance_tax
#> 2540 2017-11-01 inheritance_tax
#> 2541 2017-12-01 inheritance_tax
#> 2542 2018-01-01 inheritance_tax
#> 2543 2018-02-01 inheritance_tax
#> 2544 2018-03-01 inheritance_tax
#> 2545 2018-04-01 inheritance_tax
#> 2546 2018-05-01 inheritance_tax
#> 2547 2018-06-01 inheritance_tax
#> 2548 2018-07-01 inheritance_tax
#> 2549 2018-08-01 inheritance_tax
#> 2550 2018-09-01 inheritance_tax
#> 2551 2018-10-01 inheritance_tax
#> 2552 2018-11-01 inheritance_tax
#> 2553 2018-12-01 inheritance_tax
#> 2554 2019-01-01 inheritance_tax
#> 2555 2019-02-01 inheritance_tax
#> 2556 2019-03-01 inheritance_tax
#> 2557 2019-04-01 inheritance_tax
#> 2558 2019-05-01 inheritance_tax
#> 2559 2019-06-01 inheritance_tax
#> 2560 2019-07-01 inheritance_tax
#> 2561 2019-08-01 inheritance_tax
#> 2562 2019-09-01 inheritance_tax
#> 2563 2019-10-01 inheritance_tax
#> 2564 2019-11-01 inheritance_tax
#> 2565 2019-12-01 inheritance_tax
#> 2566 2020-01-01 inheritance_tax
#> 2567 2020-02-01 inheritance_tax
#> 2568 2020-03-01 inheritance_tax
#> 2569 2020-04-01 inheritance_tax
#> 2570 2020-05-01 inheritance_tax
#> 2571 2020-06-01 inheritance_tax
#> 2572 2020-07-01 inheritance_tax
#> 2573 2020-08-01 inheritance_tax
#> 2574 2020-09-01 inheritance_tax
#> 2575 2020-10-01 inheritance_tax
#> 2576 2020-11-01 inheritance_tax
#> 2577 2020-12-01 inheritance_tax
#> 2578 2021-01-01 inheritance_tax
#> 2579 2021-02-01 inheritance_tax
#> 2580 2021-03-01 inheritance_tax
#> 2581 2021-04-01 inheritance_tax
#> 2582 2021-05-01 inheritance_tax
#> 2583 2021-06-01 inheritance_tax
#> 2584 2021-07-01 inheritance_tax
#> 2585 2021-08-01 inheritance_tax
#> 2586 2021-09-01 inheritance_tax
#> 2587 2021-10-01 inheritance_tax
#> 2588 2021-11-01 inheritance_tax
#> 2589 2021-12-01 inheritance_tax
#> 2590 2022-01-01 inheritance_tax
#> 2591 2022-02-01 inheritance_tax
#> 2592 2022-03-01 inheritance_tax
#> 2593 2022-04-01 inheritance_tax
#> 2594 2022-05-01 inheritance_tax
#> 2595 2022-06-01 inheritance_tax
#> 2596 2022-07-01 inheritance_tax
#> 2597 2022-08-01 inheritance_tax
#> 2598 2022-09-01 inheritance_tax
#> 2599 2022-10-01 inheritance_tax
#> 2600 2022-11-01 inheritance_tax
#> 2601 2022-12-01 inheritance_tax
#> 2602 2023-01-01 inheritance_tax
#> 2603 2023-02-01 inheritance_tax
#> 2604 2023-03-01 inheritance_tax
#> 2605 2023-04-01 inheritance_tax
#> 2606 2023-05-01 inheritance_tax
#> 2607 2023-06-01 inheritance_tax
#> 2608 2023-07-01 inheritance_tax
#> 2609 2023-08-01 inheritance_tax
#> 2610 2023-09-01 inheritance_tax
#> 2611 2023-10-01 inheritance_tax
#> 2612 2023-11-01 inheritance_tax
#> 2613 2023-12-01 inheritance_tax
#> 2614 2024-01-01 inheritance_tax
#> 2615 2024-02-01 inheritance_tax
#> 2616 2024-03-01 inheritance_tax
#> 2617 2024-04-01 inheritance_tax
#> 2618 2024-05-01 inheritance_tax
#> 2619 2024-06-01 inheritance_tax
#> 2620 2024-07-01 inheritance_tax
#> 2621 2024-08-01 inheritance_tax
#> 2622 2024-09-01 inheritance_tax
#> 2623 2024-10-01 inheritance_tax
#> 2624 2024-11-01 inheritance_tax
#> 2625 2024-12-01 inheritance_tax
#> 2626 2025-01-01 inheritance_tax
#> 2627 2025-02-01 inheritance_tax
#> 2628 2025-03-01 inheritance_tax
#> 2629 2025-04-01 inheritance_tax
#> 2630 2025-05-01 inheritance_tax
#> 2631 2025-06-01 inheritance_tax
#> 2632 2025-07-01 inheritance_tax
#> 2633 2025-08-01 inheritance_tax
#> 2634 2025-09-01 inheritance_tax
#> 2635 2025-10-01 inheritance_tax
#> 2636 2025-11-01 inheritance_tax
#> 2637 2025-12-01 inheritance_tax
#> 2638 2026-01-01 inheritance_tax
#> 2639 2026-02-01 inheritance_tax
#> 2640 2026-03-01 inheritance_tax
#> 2641 2016-04-01 insurance_premium_tax
#> 2642 2016-05-01 insurance_premium_tax
#> 2643 2016-06-01 insurance_premium_tax
#> 2644 2016-07-01 insurance_premium_tax
#> 2645 2016-08-01 insurance_premium_tax
#> 2646 2016-09-01 insurance_premium_tax
#> 2647 2016-10-01 insurance_premium_tax
#> 2648 2016-11-01 insurance_premium_tax
#> 2649 2016-12-01 insurance_premium_tax
#> 2650 2017-01-01 insurance_premium_tax
#> 2651 2017-02-01 insurance_premium_tax
#> 2652 2017-03-01 insurance_premium_tax
#> 2653 2017-04-01 insurance_premium_tax
#> 2654 2017-05-01 insurance_premium_tax
#> 2655 2017-06-01 insurance_premium_tax
#> 2656 2017-07-01 insurance_premium_tax
#> 2657 2017-08-01 insurance_premium_tax
#> 2658 2017-09-01 insurance_premium_tax
#> 2659 2017-10-01 insurance_premium_tax
#> 2660 2017-11-01 insurance_premium_tax
#> 2661 2017-12-01 insurance_premium_tax
#> 2662 2018-01-01 insurance_premium_tax
#> 2663 2018-02-01 insurance_premium_tax
#> 2664 2018-03-01 insurance_premium_tax
#> 2665 2018-04-01 insurance_premium_tax
#> 2666 2018-05-01 insurance_premium_tax
#> 2667 2018-06-01 insurance_premium_tax
#> 2668 2018-07-01 insurance_premium_tax
#> 2669 2018-08-01 insurance_premium_tax
#> 2670 2018-09-01 insurance_premium_tax
#> 2671 2018-10-01 insurance_premium_tax
#> 2672 2018-11-01 insurance_premium_tax
#> 2673 2018-12-01 insurance_premium_tax
#> 2674 2019-01-01 insurance_premium_tax
#> 2675 2019-02-01 insurance_premium_tax
#> 2676 2019-03-01 insurance_premium_tax
#> 2677 2019-04-01 insurance_premium_tax
#> 2678 2019-05-01 insurance_premium_tax
#> 2679 2019-06-01 insurance_premium_tax
#> 2680 2019-07-01 insurance_premium_tax
#> 2681 2019-08-01 insurance_premium_tax
#> 2682 2019-09-01 insurance_premium_tax
#> 2683 2019-10-01 insurance_premium_tax
#> 2684 2019-11-01 insurance_premium_tax
#> 2685 2019-12-01 insurance_premium_tax
#> 2686 2020-01-01 insurance_premium_tax
#> 2687 2020-02-01 insurance_premium_tax
#> 2688 2020-03-01 insurance_premium_tax
#> 2689 2020-04-01 insurance_premium_tax
#> 2690 2020-05-01 insurance_premium_tax
#> 2691 2020-06-01 insurance_premium_tax
#> 2692 2020-07-01 insurance_premium_tax
#> 2693 2020-08-01 insurance_premium_tax
#> 2694 2020-09-01 insurance_premium_tax
#> 2695 2020-10-01 insurance_premium_tax
#> 2696 2020-11-01 insurance_premium_tax
#> 2697 2020-12-01 insurance_premium_tax
#> 2698 2021-01-01 insurance_premium_tax
#> 2699 2021-02-01 insurance_premium_tax
#> 2700 2021-03-01 insurance_premium_tax
#> 2701 2021-04-01 insurance_premium_tax
#> 2702 2021-05-01 insurance_premium_tax
#> 2703 2021-06-01 insurance_premium_tax
#> 2704 2021-07-01 insurance_premium_tax
#> 2705 2021-08-01 insurance_premium_tax
#> 2706 2021-09-01 insurance_premium_tax
#> 2707 2021-10-01 insurance_premium_tax
#> 2708 2021-11-01 insurance_premium_tax
#> 2709 2021-12-01 insurance_premium_tax
#> 2710 2022-01-01 insurance_premium_tax
#> 2711 2022-02-01 insurance_premium_tax
#> 2712 2022-03-01 insurance_premium_tax
#> 2713 2022-04-01 insurance_premium_tax
#> 2714 2022-05-01 insurance_premium_tax
#> 2715 2022-06-01 insurance_premium_tax
#> 2716 2022-07-01 insurance_premium_tax
#> 2717 2022-08-01 insurance_premium_tax
#> 2718 2022-09-01 insurance_premium_tax
#> 2719 2022-10-01 insurance_premium_tax
#> 2720 2022-11-01 insurance_premium_tax
#> 2721 2022-12-01 insurance_premium_tax
#> 2722 2023-01-01 insurance_premium_tax
#> 2723 2023-02-01 insurance_premium_tax
#> 2724 2023-03-01 insurance_premium_tax
#> 2725 2023-04-01 insurance_premium_tax
#> 2726 2023-05-01 insurance_premium_tax
#> 2727 2023-06-01 insurance_premium_tax
#> 2728 2023-07-01 insurance_premium_tax
#> 2729 2023-08-01 insurance_premium_tax
#> 2730 2023-09-01 insurance_premium_tax
#> 2731 2023-10-01 insurance_premium_tax
#> 2732 2023-11-01 insurance_premium_tax
#> 2733 2023-12-01 insurance_premium_tax
#> 2734 2024-01-01 insurance_premium_tax
#> 2735 2024-02-01 insurance_premium_tax
#> 2736 2024-03-01 insurance_premium_tax
#> 2737 2024-04-01 insurance_premium_tax
#> 2738 2024-05-01 insurance_premium_tax
#> 2739 2024-06-01 insurance_premium_tax
#> 2740 2024-07-01 insurance_premium_tax
#> 2741 2024-08-01 insurance_premium_tax
#> 2742 2024-09-01 insurance_premium_tax
#> 2743 2024-10-01 insurance_premium_tax
#> 2744 2024-11-01 insurance_premium_tax
#> 2745 2024-12-01 insurance_premium_tax
#> 2746 2025-01-01 insurance_premium_tax
#> 2747 2025-02-01 insurance_premium_tax
#> 2748 2025-03-01 insurance_premium_tax
#> 2749 2025-04-01 insurance_premium_tax
#> 2750 2025-05-01 insurance_premium_tax
#> 2751 2025-06-01 insurance_premium_tax
#> 2752 2025-07-01 insurance_premium_tax
#> 2753 2025-08-01 insurance_premium_tax
#> 2754 2025-09-01 insurance_premium_tax
#> 2755 2025-10-01 insurance_premium_tax
#> 2756 2025-11-01 insurance_premium_tax
#> 2757 2025-12-01 insurance_premium_tax
#> 2758 2026-01-01 insurance_premium_tax
#> 2759 2026-02-01 insurance_premium_tax
#> 2760 2026-03-01 insurance_premium_tax
#> 2761 2016-04-01 landfill_tax
#> 2762 2016-05-01 landfill_tax
#> 2763 2016-06-01 landfill_tax
#> 2764 2016-07-01 landfill_tax
#> 2765 2016-08-01 landfill_tax
#> 2766 2016-09-01 landfill_tax
#> 2767 2016-10-01 landfill_tax
#> 2768 2016-11-01 landfill_tax
#> 2769 2016-12-01 landfill_tax
#> 2770 2017-01-01 landfill_tax
#> 2771 2017-02-01 landfill_tax
#> 2772 2017-03-01 landfill_tax
#> 2773 2017-04-01 landfill_tax
#> 2774 2017-05-01 landfill_tax
#> 2775 2017-06-01 landfill_tax
#> 2776 2017-07-01 landfill_tax
#> 2777 2017-08-01 landfill_tax
#> 2778 2017-09-01 landfill_tax
#> 2779 2017-10-01 landfill_tax
#> 2780 2017-11-01 landfill_tax
#> 2781 2017-12-01 landfill_tax
#> 2782 2018-01-01 landfill_tax
#> 2783 2018-02-01 landfill_tax
#> 2784 2018-03-01 landfill_tax
#> 2785 2018-04-01 landfill_tax
#> 2786 2018-05-01 landfill_tax
#> 2787 2018-06-01 landfill_tax
#> 2788 2018-07-01 landfill_tax
#> 2789 2018-08-01 landfill_tax
#> 2790 2018-09-01 landfill_tax
#> 2791 2018-10-01 landfill_tax
#> 2792 2018-11-01 landfill_tax
#> 2793 2018-12-01 landfill_tax
#> 2794 2019-01-01 landfill_tax
#> 2795 2019-02-01 landfill_tax
#> 2796 2019-03-01 landfill_tax
#> 2797 2019-04-01 landfill_tax
#> 2798 2019-05-01 landfill_tax
#> 2799 2019-06-01 landfill_tax
#> 2800 2019-07-01 landfill_tax
#> 2801 2019-08-01 landfill_tax
#> 2802 2019-09-01 landfill_tax
#> 2803 2019-10-01 landfill_tax
#> 2804 2019-11-01 landfill_tax
#> 2805 2019-12-01 landfill_tax
#> 2806 2020-01-01 landfill_tax
#> 2807 2020-02-01 landfill_tax
#> 2808 2020-03-01 landfill_tax
#> 2809 2020-04-01 landfill_tax
#> 2810 2020-05-01 landfill_tax
#> 2811 2020-06-01 landfill_tax
#> 2812 2020-07-01 landfill_tax
#> 2813 2020-08-01 landfill_tax
#> 2814 2020-09-01 landfill_tax
#> 2815 2020-10-01 landfill_tax
#> 2816 2020-11-01 landfill_tax
#> 2817 2020-12-01 landfill_tax
#> 2818 2021-01-01 landfill_tax
#> 2819 2021-02-01 landfill_tax
#> 2820 2021-03-01 landfill_tax
#> 2821 2021-04-01 landfill_tax
#> 2822 2021-05-01 landfill_tax
#> 2823 2021-06-01 landfill_tax
#> 2824 2021-07-01 landfill_tax
#> 2825 2021-08-01 landfill_tax
#> 2826 2021-09-01 landfill_tax
#> 2827 2021-10-01 landfill_tax
#> 2828 2021-11-01 landfill_tax
#> 2829 2021-12-01 landfill_tax
#> 2830 2022-01-01 landfill_tax
#> 2831 2022-02-01 landfill_tax
#> 2832 2022-03-01 landfill_tax
#> 2833 2022-04-01 landfill_tax
#> 2834 2022-05-01 landfill_tax
#> 2835 2022-06-01 landfill_tax
#> 2836 2022-07-01 landfill_tax
#> 2837 2022-08-01 landfill_tax
#> 2838 2022-09-01 landfill_tax
#> 2839 2022-10-01 landfill_tax
#> 2840 2022-11-01 landfill_tax
#> 2841 2022-12-01 landfill_tax
#> 2842 2023-01-01 landfill_tax
#> 2843 2023-02-01 landfill_tax
#> 2844 2023-03-01 landfill_tax
#> 2845 2023-04-01 landfill_tax
#> 2846 2023-05-01 landfill_tax
#> 2847 2023-06-01 landfill_tax
#> 2848 2023-07-01 landfill_tax
#> 2849 2023-08-01 landfill_tax
#> 2850 2023-09-01 landfill_tax
#> 2851 2023-10-01 landfill_tax
#> 2852 2023-11-01 landfill_tax
#> 2853 2023-12-01 landfill_tax
#> 2854 2024-01-01 landfill_tax
#> 2855 2024-02-01 landfill_tax
#> 2856 2024-03-01 landfill_tax
#> 2857 2024-04-01 landfill_tax
#> 2858 2024-05-01 landfill_tax
#> 2859 2024-06-01 landfill_tax
#> 2860 2024-07-01 landfill_tax
#> 2861 2024-08-01 landfill_tax
#> 2862 2024-09-01 landfill_tax
#> 2863 2024-10-01 landfill_tax
#> 2864 2024-11-01 landfill_tax
#> 2865 2024-12-01 landfill_tax
#> 2866 2025-01-01 landfill_tax
#> 2867 2025-02-01 landfill_tax
#> 2868 2025-03-01 landfill_tax
#> 2869 2025-04-01 landfill_tax
#> 2870 2025-05-01 landfill_tax
#> 2871 2025-06-01 landfill_tax
#> 2872 2025-07-01 landfill_tax
#> 2873 2025-08-01 landfill_tax
#> 2874 2025-09-01 landfill_tax
#> 2875 2025-10-01 landfill_tax
#> 2876 2025-11-01 landfill_tax
#> 2877 2025-12-01 landfill_tax
#> 2878 2026-01-01 landfill_tax
#> 2879 2026-02-01 landfill_tax
#> 2880 2026-03-01 landfill_tax
#> 2881 2016-04-01 miscellaneous
#> 2882 2016-05-01 miscellaneous
#> 2883 2016-06-01 miscellaneous
#> 2884 2016-07-01 miscellaneous
#> 2885 2016-08-01 miscellaneous
#> 2886 2016-09-01 miscellaneous
#> 2887 2016-10-01 miscellaneous
#> 2888 2016-11-01 miscellaneous
#> 2889 2016-12-01 miscellaneous
#> 2890 2017-01-01 miscellaneous
#> 2891 2017-02-01 miscellaneous
#> 2892 2017-03-01 miscellaneous
#> 2893 2017-04-01 miscellaneous
#> 2894 2017-05-01 miscellaneous
#> 2895 2017-06-01 miscellaneous
#> 2896 2017-07-01 miscellaneous
#> 2897 2017-08-01 miscellaneous
#> 2898 2017-09-01 miscellaneous
#> 2899 2017-10-01 miscellaneous
#> 2900 2017-11-01 miscellaneous
#> 2901 2017-12-01 miscellaneous
#> 2902 2018-01-01 miscellaneous
#> 2903 2018-02-01 miscellaneous
#> 2904 2018-03-01 miscellaneous
#> 2905 2018-04-01 miscellaneous
#> 2906 2018-05-01 miscellaneous
#> 2907 2018-06-01 miscellaneous
#> 2908 2018-07-01 miscellaneous
#> 2909 2018-08-01 miscellaneous
#> 2910 2018-09-01 miscellaneous
#> 2911 2018-10-01 miscellaneous
#> 2912 2018-11-01 miscellaneous
#> 2913 2018-12-01 miscellaneous
#> 2914 2019-01-01 miscellaneous
#> 2915 2019-02-01 miscellaneous
#> 2916 2019-03-01 miscellaneous
#> 2917 2019-04-01 miscellaneous
#> 2918 2019-05-01 miscellaneous
#> 2919 2019-06-01 miscellaneous
#> 2920 2019-07-01 miscellaneous
#> 2921 2019-08-01 miscellaneous
#> 2922 2019-09-01 miscellaneous
#> 2923 2019-10-01 miscellaneous
#> 2924 2019-11-01 miscellaneous
#> 2925 2019-12-01 miscellaneous
#> 2926 2020-01-01 miscellaneous
#> 2927 2020-02-01 miscellaneous
#> 2928 2020-03-01 miscellaneous
#> 2929 2020-04-01 miscellaneous
#> 2930 2020-05-01 miscellaneous
#> 2931 2020-06-01 miscellaneous
#> 2932 2020-07-01 miscellaneous
#> 2933 2020-08-01 miscellaneous
#> 2934 2020-09-01 miscellaneous
#> 2935 2020-10-01 miscellaneous
#> 2936 2020-11-01 miscellaneous
#> 2937 2020-12-01 miscellaneous
#> 2938 2021-01-01 miscellaneous
#> 2939 2021-02-01 miscellaneous
#> 2940 2021-03-01 miscellaneous
#> 2941 2021-04-01 miscellaneous
#> 2942 2021-05-01 miscellaneous
#> 2943 2021-06-01 miscellaneous
#> 2944 2021-07-01 miscellaneous
#> 2945 2021-08-01 miscellaneous
#> 2946 2021-09-01 miscellaneous
#> 2947 2021-10-01 miscellaneous
#> 2948 2021-11-01 miscellaneous
#> 2949 2021-12-01 miscellaneous
#> 2950 2022-01-01 miscellaneous
#> 2951 2022-02-01 miscellaneous
#> 2952 2022-03-01 miscellaneous
#> 2953 2022-04-01 miscellaneous
#> 2954 2022-05-01 miscellaneous
#> 2955 2022-06-01 miscellaneous
#> 2956 2022-07-01 miscellaneous
#> 2957 2022-08-01 miscellaneous
#> 2958 2022-09-01 miscellaneous
#> 2959 2022-10-01 miscellaneous
#> 2960 2022-11-01 miscellaneous
#> 2961 2022-12-01 miscellaneous
#> 2962 2023-01-01 miscellaneous
#> 2963 2023-02-01 miscellaneous
#> 2964 2023-03-01 miscellaneous
#> 2965 2023-04-01 miscellaneous
#> 2966 2023-05-01 miscellaneous
#> 2967 2023-06-01 miscellaneous
#> 2968 2023-07-01 miscellaneous
#> 2969 2023-08-01 miscellaneous
#> 2970 2023-09-01 miscellaneous
#> 2971 2023-10-01 miscellaneous
#> 2972 2023-11-01 miscellaneous
#> 2973 2023-12-01 miscellaneous
#> 2974 2024-01-01 miscellaneous
#> 2975 2024-02-01 miscellaneous
#> 2976 2024-03-01 miscellaneous
#> 2977 2024-04-01 miscellaneous
#> 2978 2024-05-01 miscellaneous
#> 2979 2024-06-01 miscellaneous
#> 2980 2024-07-01 miscellaneous
#> 2981 2024-08-01 miscellaneous
#> 2982 2024-09-01 miscellaneous
#> 2983 2024-10-01 miscellaneous
#> 2984 2024-11-01 miscellaneous
#> 2985 2024-12-01 miscellaneous
#> 2986 2025-01-01 miscellaneous
#> 2987 2025-02-01 miscellaneous
#> 2988 2025-03-01 miscellaneous
#> 2989 2025-04-01 miscellaneous
#> 2990 2025-05-01 miscellaneous
#> 2991 2025-06-01 miscellaneous
#> 2992 2025-07-01 miscellaneous
#> 2993 2025-08-01 miscellaneous
#> 2994 2025-09-01 miscellaneous
#> 2995 2025-10-01 miscellaneous
#> 2996 2025-11-01 miscellaneous
#> 2997 2025-12-01 miscellaneous
#> 2998 2026-01-01 miscellaneous
#> 2999 2026-02-01 miscellaneous
#> 3000 2026-03-01 miscellaneous
#> 3001 2016-04-01 nics_employee
#> 3002 2016-05-01 nics_employee
#> 3003 2016-06-01 nics_employee
#> 3004 2016-07-01 nics_employee
#> 3005 2016-08-01 nics_employee
#> 3006 2016-09-01 nics_employee
#> 3007 2016-10-01 nics_employee
#> 3008 2016-11-01 nics_employee
#> 3009 2016-12-01 nics_employee
#> 3010 2017-01-01 nics_employee
#> 3011 2017-02-01 nics_employee
#> 3012 2017-03-01 nics_employee
#> 3013 2017-04-01 nics_employee
#> 3014 2017-05-01 nics_employee
#> 3015 2017-06-01 nics_employee
#> 3016 2017-07-01 nics_employee
#> 3017 2017-08-01 nics_employee
#> 3018 2017-09-01 nics_employee
#> 3019 2017-10-01 nics_employee
#> 3020 2017-11-01 nics_employee
#> 3021 2017-12-01 nics_employee
#> 3022 2018-01-01 nics_employee
#> 3023 2018-02-01 nics_employee
#> 3024 2018-03-01 nics_employee
#> 3025 2018-04-01 nics_employee
#> 3026 2018-05-01 nics_employee
#> 3027 2018-06-01 nics_employee
#> 3028 2018-07-01 nics_employee
#> 3029 2018-08-01 nics_employee
#> 3030 2018-09-01 nics_employee
#> 3031 2018-10-01 nics_employee
#> 3032 2018-11-01 nics_employee
#> 3033 2018-12-01 nics_employee
#> 3034 2019-01-01 nics_employee
#> 3035 2019-02-01 nics_employee
#> 3036 2019-03-01 nics_employee
#> 3037 2019-04-01 nics_employee
#> 3038 2019-05-01 nics_employee
#> 3039 2019-06-01 nics_employee
#> 3040 2019-07-01 nics_employee
#> 3041 2019-08-01 nics_employee
#> 3042 2019-09-01 nics_employee
#> 3043 2019-10-01 nics_employee
#> 3044 2019-11-01 nics_employee
#> 3045 2019-12-01 nics_employee
#> 3046 2020-01-01 nics_employee
#> 3047 2020-02-01 nics_employee
#> 3048 2020-03-01 nics_employee
#> 3049 2020-04-01 nics_employee
#> 3050 2020-05-01 nics_employee
#> 3051 2020-06-01 nics_employee
#> 3052 2020-07-01 nics_employee
#> 3053 2020-08-01 nics_employee
#> 3054 2020-09-01 nics_employee
#> 3055 2020-10-01 nics_employee
#> 3056 2020-11-01 nics_employee
#> 3057 2020-12-01 nics_employee
#> 3058 2021-01-01 nics_employee
#> 3059 2021-02-01 nics_employee
#> 3060 2021-03-01 nics_employee
#> 3061 2021-04-01 nics_employee
#> 3062 2021-05-01 nics_employee
#> 3063 2021-06-01 nics_employee
#> 3064 2021-07-01 nics_employee
#> 3065 2021-08-01 nics_employee
#> 3066 2021-09-01 nics_employee
#> 3067 2021-10-01 nics_employee
#> 3068 2021-11-01 nics_employee
#> 3069 2021-12-01 nics_employee
#> 3070 2022-01-01 nics_employee
#> 3071 2022-02-01 nics_employee
#> 3072 2022-03-01 nics_employee
#> 3073 2022-04-01 nics_employee
#> 3074 2022-05-01 nics_employee
#> 3075 2022-06-01 nics_employee
#> 3076 2022-07-01 nics_employee
#> 3077 2022-08-01 nics_employee
#> 3078 2022-09-01 nics_employee
#> 3079 2022-10-01 nics_employee
#> 3080 2022-11-01 nics_employee
#> 3081 2022-12-01 nics_employee
#> 3082 2023-01-01 nics_employee
#> 3083 2023-02-01 nics_employee
#> 3084 2023-03-01 nics_employee
#> 3085 2023-04-01 nics_employee
#> 3086 2023-05-01 nics_employee
#> 3087 2023-06-01 nics_employee
#> 3088 2023-07-01 nics_employee
#> 3089 2023-08-01 nics_employee
#> 3090 2023-09-01 nics_employee
#> 3091 2023-10-01 nics_employee
#> 3092 2023-11-01 nics_employee
#> 3093 2023-12-01 nics_employee
#> 3094 2024-01-01 nics_employee
#> 3095 2024-02-01 nics_employee
#> 3096 2024-03-01 nics_employee
#> 3097 2024-04-01 nics_employee
#> 3098 2024-05-01 nics_employee
#> 3099 2024-06-01 nics_employee
#> 3100 2024-07-01 nics_employee
#> 3101 2024-08-01 nics_employee
#> 3102 2024-09-01 nics_employee
#> 3103 2024-10-01 nics_employee
#> 3104 2024-11-01 nics_employee
#> 3105 2024-12-01 nics_employee
#> 3106 2025-01-01 nics_employee
#> 3107 2025-02-01 nics_employee
#> 3108 2025-03-01 nics_employee
#> 3109 2025-04-01 nics_employee
#> 3110 2025-05-01 nics_employee
#> 3111 2025-06-01 nics_employee
#> 3112 2025-07-01 nics_employee
#> 3113 2025-08-01 nics_employee
#> 3114 2025-09-01 nics_employee
#> 3115 2025-10-01 nics_employee
#> 3116 2025-11-01 nics_employee
#> 3117 2025-12-01 nics_employee
#> 3118 2026-01-01 nics_employee
#> 3119 2026-02-01 nics_employee
#> 3120 2026-03-01 nics_employee
#> 3121 2016-04-01 nics_employer
#> 3122 2016-05-01 nics_employer
#> 3123 2016-06-01 nics_employer
#> 3124 2016-07-01 nics_employer
#> 3125 2016-08-01 nics_employer
#> 3126 2016-09-01 nics_employer
#> 3127 2016-10-01 nics_employer
#> 3128 2016-11-01 nics_employer
#> 3129 2016-12-01 nics_employer
#> 3130 2017-01-01 nics_employer
#> 3131 2017-02-01 nics_employer
#> 3132 2017-03-01 nics_employer
#> 3133 2017-04-01 nics_employer
#> 3134 2017-05-01 nics_employer
#> 3135 2017-06-01 nics_employer
#> 3136 2017-07-01 nics_employer
#> 3137 2017-08-01 nics_employer
#> 3138 2017-09-01 nics_employer
#> 3139 2017-10-01 nics_employer
#> 3140 2017-11-01 nics_employer
#> 3141 2017-12-01 nics_employer
#> 3142 2018-01-01 nics_employer
#> 3143 2018-02-01 nics_employer
#> 3144 2018-03-01 nics_employer
#> 3145 2018-04-01 nics_employer
#> 3146 2018-05-01 nics_employer
#> 3147 2018-06-01 nics_employer
#> 3148 2018-07-01 nics_employer
#> 3149 2018-08-01 nics_employer
#> 3150 2018-09-01 nics_employer
#> 3151 2018-10-01 nics_employer
#> 3152 2018-11-01 nics_employer
#> 3153 2018-12-01 nics_employer
#> 3154 2019-01-01 nics_employer
#> 3155 2019-02-01 nics_employer
#> 3156 2019-03-01 nics_employer
#> 3157 2019-04-01 nics_employer
#> 3158 2019-05-01 nics_employer
#> 3159 2019-06-01 nics_employer
#> 3160 2019-07-01 nics_employer
#> 3161 2019-08-01 nics_employer
#> 3162 2019-09-01 nics_employer
#> 3163 2019-10-01 nics_employer
#> 3164 2019-11-01 nics_employer
#> 3165 2019-12-01 nics_employer
#> 3166 2020-01-01 nics_employer
#> 3167 2020-02-01 nics_employer
#> 3168 2020-03-01 nics_employer
#> 3169 2020-04-01 nics_employer
#> 3170 2020-05-01 nics_employer
#> 3171 2020-06-01 nics_employer
#> 3172 2020-07-01 nics_employer
#> 3173 2020-08-01 nics_employer
#> 3174 2020-09-01 nics_employer
#> 3175 2020-10-01 nics_employer
#> 3176 2020-11-01 nics_employer
#> 3177 2020-12-01 nics_employer
#> 3178 2021-01-01 nics_employer
#> 3179 2021-02-01 nics_employer
#> 3180 2021-03-01 nics_employer
#> 3181 2021-04-01 nics_employer
#> 3182 2021-05-01 nics_employer
#> 3183 2021-06-01 nics_employer
#> 3184 2021-07-01 nics_employer
#> 3185 2021-08-01 nics_employer
#> 3186 2021-09-01 nics_employer
#> 3187 2021-10-01 nics_employer
#> 3188 2021-11-01 nics_employer
#> 3189 2021-12-01 nics_employer
#> 3190 2022-01-01 nics_employer
#> 3191 2022-02-01 nics_employer
#> 3192 2022-03-01 nics_employer
#> 3193 2022-04-01 nics_employer
#> 3194 2022-05-01 nics_employer
#> 3195 2022-06-01 nics_employer
#> 3196 2022-07-01 nics_employer
#> 3197 2022-08-01 nics_employer
#> 3198 2022-09-01 nics_employer
#> 3199 2022-10-01 nics_employer
#> 3200 2022-11-01 nics_employer
#> 3201 2022-12-01 nics_employer
#> 3202 2023-01-01 nics_employer
#> 3203 2023-02-01 nics_employer
#> 3204 2023-03-01 nics_employer
#> 3205 2023-04-01 nics_employer
#> 3206 2023-05-01 nics_employer
#> 3207 2023-06-01 nics_employer
#> 3208 2023-07-01 nics_employer
#> 3209 2023-08-01 nics_employer
#> 3210 2023-09-01 nics_employer
#> 3211 2023-10-01 nics_employer
#> 3212 2023-11-01 nics_employer
#> 3213 2023-12-01 nics_employer
#> 3214 2024-01-01 nics_employer
#> 3215 2024-02-01 nics_employer
#> 3216 2024-03-01 nics_employer
#> 3217 2024-04-01 nics_employer
#> 3218 2024-05-01 nics_employer
#> 3219 2024-06-01 nics_employer
#> 3220 2024-07-01 nics_employer
#> 3221 2024-08-01 nics_employer
#> 3222 2024-09-01 nics_employer
#> 3223 2024-10-01 nics_employer
#> 3224 2024-11-01 nics_employer
#> 3225 2024-12-01 nics_employer
#> 3226 2025-01-01 nics_employer
#> 3227 2025-02-01 nics_employer
#> 3228 2025-03-01 nics_employer
#> 3229 2025-04-01 nics_employer
#> 3230 2025-05-01 nics_employer
#> 3231 2025-06-01 nics_employer
#> 3232 2025-07-01 nics_employer
#> 3233 2025-08-01 nics_employer
#> 3234 2025-09-01 nics_employer
#> 3235 2025-10-01 nics_employer
#> 3236 2025-11-01 nics_employer
#> 3237 2025-12-01 nics_employer
#> 3238 2026-01-01 nics_employer
#> 3239 2026-02-01 nics_employer
#> 3240 2026-03-01 nics_employer
#> 3241 2016-04-01 nics_self_employed
#> 3242 2016-05-01 nics_self_employed
#> 3243 2016-06-01 nics_self_employed
#> 3244 2016-07-01 nics_self_employed
#> 3245 2016-08-01 nics_self_employed
#> 3246 2016-09-01 nics_self_employed
#> 3247 2016-10-01 nics_self_employed
#> 3248 2016-11-01 nics_self_employed
#> 3249 2016-12-01 nics_self_employed
#> 3250 2017-01-01 nics_self_employed
#> 3251 2017-02-01 nics_self_employed
#> 3252 2017-03-01 nics_self_employed
#> 3253 2017-04-01 nics_self_employed
#> 3254 2017-05-01 nics_self_employed
#> 3255 2017-06-01 nics_self_employed
#> 3256 2017-07-01 nics_self_employed
#> 3257 2017-08-01 nics_self_employed
#> 3258 2017-09-01 nics_self_employed
#> 3259 2017-10-01 nics_self_employed
#> 3260 2017-11-01 nics_self_employed
#> 3261 2017-12-01 nics_self_employed
#> 3262 2018-01-01 nics_self_employed
#> 3263 2018-02-01 nics_self_employed
#> 3264 2018-03-01 nics_self_employed
#> 3265 2018-04-01 nics_self_employed
#> 3266 2018-05-01 nics_self_employed
#> 3267 2018-06-01 nics_self_employed
#> 3268 2018-07-01 nics_self_employed
#> 3269 2018-08-01 nics_self_employed
#> 3270 2018-09-01 nics_self_employed
#> 3271 2018-10-01 nics_self_employed
#> 3272 2018-11-01 nics_self_employed
#> 3273 2018-12-01 nics_self_employed
#> 3274 2019-01-01 nics_self_employed
#> 3275 2019-02-01 nics_self_employed
#> 3276 2019-03-01 nics_self_employed
#> 3277 2019-04-01 nics_self_employed
#> 3278 2019-05-01 nics_self_employed
#> 3279 2019-06-01 nics_self_employed
#> 3280 2019-07-01 nics_self_employed
#> 3281 2019-08-01 nics_self_employed
#> 3282 2019-09-01 nics_self_employed
#> 3283 2019-10-01 nics_self_employed
#> 3284 2019-11-01 nics_self_employed
#> 3285 2019-12-01 nics_self_employed
#> 3286 2020-01-01 nics_self_employed
#> 3287 2020-02-01 nics_self_employed
#> 3288 2020-03-01 nics_self_employed
#> 3289 2020-04-01 nics_self_employed
#> 3290 2020-05-01 nics_self_employed
#> 3291 2020-06-01 nics_self_employed
#> 3292 2020-07-01 nics_self_employed
#> 3293 2020-08-01 nics_self_employed
#> 3294 2020-09-01 nics_self_employed
#> 3295 2020-10-01 nics_self_employed
#> 3296 2020-11-01 nics_self_employed
#> 3297 2020-12-01 nics_self_employed
#> 3298 2021-01-01 nics_self_employed
#> 3299 2021-02-01 nics_self_employed
#> 3300 2021-03-01 nics_self_employed
#> 3301 2021-04-01 nics_self_employed
#> 3302 2021-05-01 nics_self_employed
#> 3303 2021-06-01 nics_self_employed
#> 3304 2021-07-01 nics_self_employed
#> 3305 2021-08-01 nics_self_employed
#> 3306 2021-09-01 nics_self_employed
#> 3307 2021-10-01 nics_self_employed
#> 3308 2021-11-01 nics_self_employed
#> 3309 2021-12-01 nics_self_employed
#> 3310 2022-01-01 nics_self_employed
#> 3311 2022-02-01 nics_self_employed
#> 3312 2022-03-01 nics_self_employed
#> 3313 2022-04-01 nics_self_employed
#> 3314 2022-05-01 nics_self_employed
#> 3315 2022-06-01 nics_self_employed
#> 3316 2022-07-01 nics_self_employed
#> 3317 2022-08-01 nics_self_employed
#> 3318 2022-09-01 nics_self_employed
#> 3319 2022-10-01 nics_self_employed
#> 3320 2022-11-01 nics_self_employed
#> 3321 2022-12-01 nics_self_employed
#> 3322 2023-01-01 nics_self_employed
#> 3323 2023-02-01 nics_self_employed
#> 3324 2023-03-01 nics_self_employed
#> 3325 2023-04-01 nics_self_employed
#> 3326 2023-05-01 nics_self_employed
#> 3327 2023-06-01 nics_self_employed
#> 3328 2023-07-01 nics_self_employed
#> 3329 2023-08-01 nics_self_employed
#> 3330 2023-09-01 nics_self_employed
#> 3331 2023-10-01 nics_self_employed
#> 3332 2023-11-01 nics_self_employed
#> 3333 2023-12-01 nics_self_employed
#> 3334 2024-01-01 nics_self_employed
#> 3335 2024-02-01 nics_self_employed
#> 3336 2024-03-01 nics_self_employed
#> 3337 2024-04-01 nics_self_employed
#> 3338 2024-05-01 nics_self_employed
#> 3339 2024-06-01 nics_self_employed
#> 3340 2024-07-01 nics_self_employed
#> 3341 2024-08-01 nics_self_employed
#> 3342 2024-09-01 nics_self_employed
#> 3343 2024-10-01 nics_self_employed
#> 3344 2024-11-01 nics_self_employed
#> 3345 2024-12-01 nics_self_employed
#> 3346 2025-01-01 nics_self_employed
#> 3347 2025-02-01 nics_self_employed
#> 3348 2025-03-01 nics_self_employed
#> 3349 2025-04-01 nics_self_employed
#> 3350 2025-05-01 nics_self_employed
#> 3351 2025-06-01 nics_self_employed
#> 3352 2025-07-01 nics_self_employed
#> 3353 2025-08-01 nics_self_employed
#> 3354 2025-09-01 nics_self_employed
#> 3355 2025-10-01 nics_self_employed
#> 3356 2025-11-01 nics_self_employed
#> 3357 2025-12-01 nics_self_employed
#> 3358 2026-01-01 nics_self_employed
#> 3359 2026-02-01 nics_self_employed
#> 3360 2026-03-01 nics_self_employed
#> 3361 2016-04-01 nics_total
#> 3362 2016-05-01 nics_total
#> 3363 2016-06-01 nics_total
#> 3364 2016-07-01 nics_total
#> 3365 2016-08-01 nics_total
#> 3366 2016-09-01 nics_total
#> 3367 2016-10-01 nics_total
#> 3368 2016-11-01 nics_total
#> 3369 2016-12-01 nics_total
#> 3370 2017-01-01 nics_total
#> 3371 2017-02-01 nics_total
#> 3372 2017-03-01 nics_total
#> 3373 2017-04-01 nics_total
#> 3374 2017-05-01 nics_total
#> 3375 2017-06-01 nics_total
#> 3376 2017-07-01 nics_total
#> 3377 2017-08-01 nics_total
#> 3378 2017-09-01 nics_total
#> 3379 2017-10-01 nics_total
#> 3380 2017-11-01 nics_total
#> 3381 2017-12-01 nics_total
#> 3382 2018-01-01 nics_total
#> 3383 2018-02-01 nics_total
#> 3384 2018-03-01 nics_total
#> 3385 2018-04-01 nics_total
#> 3386 2018-05-01 nics_total
#> 3387 2018-06-01 nics_total
#> 3388 2018-07-01 nics_total
#> 3389 2018-08-01 nics_total
#> 3390 2018-09-01 nics_total
#> 3391 2018-10-01 nics_total
#> 3392 2018-11-01 nics_total
#> 3393 2018-12-01 nics_total
#> 3394 2019-01-01 nics_total
#> 3395 2019-02-01 nics_total
#> 3396 2019-03-01 nics_total
#> 3397 2019-04-01 nics_total
#> 3398 2019-05-01 nics_total
#> 3399 2019-06-01 nics_total
#> 3400 2019-07-01 nics_total
#> 3401 2019-08-01 nics_total
#> 3402 2019-09-01 nics_total
#> 3403 2019-10-01 nics_total
#> 3404 2019-11-01 nics_total
#> 3405 2019-12-01 nics_total
#> 3406 2020-01-01 nics_total
#> 3407 2020-02-01 nics_total
#> 3408 2020-03-01 nics_total
#> 3409 2020-04-01 nics_total
#> 3410 2020-05-01 nics_total
#> 3411 2020-06-01 nics_total
#> 3412 2020-07-01 nics_total
#> 3413 2020-08-01 nics_total
#> 3414 2020-09-01 nics_total
#> 3415 2020-10-01 nics_total
#> 3416 2020-11-01 nics_total
#> 3417 2020-12-01 nics_total
#> 3418 2021-01-01 nics_total
#> 3419 2021-02-01 nics_total
#> 3420 2021-03-01 nics_total
#> 3421 2021-04-01 nics_total
#> 3422 2021-05-01 nics_total
#> 3423 2021-06-01 nics_total
#> 3424 2021-07-01 nics_total
#> 3425 2021-08-01 nics_total
#> 3426 2021-09-01 nics_total
#> 3427 2021-10-01 nics_total
#> 3428 2021-11-01 nics_total
#> 3429 2021-12-01 nics_total
#> 3430 2022-01-01 nics_total
#> 3431 2022-02-01 nics_total
#> 3432 2022-03-01 nics_total
#> 3433 2022-04-01 nics_total
#> 3434 2022-05-01 nics_total
#> 3435 2022-06-01 nics_total
#> 3436 2022-07-01 nics_total
#> 3437 2022-08-01 nics_total
#> 3438 2022-09-01 nics_total
#> 3439 2022-10-01 nics_total
#> 3440 2022-11-01 nics_total
#> 3441 2022-12-01 nics_total
#> 3442 2023-01-01 nics_total
#> 3443 2023-02-01 nics_total
#> 3444 2023-03-01 nics_total
#> 3445 2023-04-01 nics_total
#> 3446 2023-05-01 nics_total
#> 3447 2023-06-01 nics_total
#> 3448 2023-07-01 nics_total
#> 3449 2023-08-01 nics_total
#> 3450 2023-09-01 nics_total
#> 3451 2023-10-01 nics_total
#> 3452 2023-11-01 nics_total
#> 3453 2023-12-01 nics_total
#> 3454 2024-01-01 nics_total
#> 3455 2024-02-01 nics_total
#> 3456 2024-03-01 nics_total
#> 3457 2024-04-01 nics_total
#> 3458 2024-05-01 nics_total
#> 3459 2024-06-01 nics_total
#> 3460 2024-07-01 nics_total
#> 3461 2024-08-01 nics_total
#> 3462 2024-09-01 nics_total
#> 3463 2024-10-01 nics_total
#> 3464 2024-11-01 nics_total
#> 3465 2024-12-01 nics_total
#> 3466 2025-01-01 nics_total
#> 3467 2025-02-01 nics_total
#> 3468 2025-03-01 nics_total
#> 3469 2025-04-01 nics_total
#> 3470 2025-05-01 nics_total
#> 3471 2025-06-01 nics_total
#> 3472 2025-07-01 nics_total
#> 3473 2025-08-01 nics_total
#> 3474 2025-09-01 nics_total
#> 3475 2025-10-01 nics_total
#> 3476 2025-11-01 nics_total
#> 3477 2025-12-01 nics_total
#> 3478 2026-01-01 nics_total
#> 3479 2026-02-01 nics_total
#> 3480 2026-03-01 nics_total
#> 3481 2016-04-01 penalties
#> 3482 2016-05-01 penalties
#> 3483 2016-06-01 penalties
#> 3484 2016-07-01 penalties
#> 3485 2016-08-01 penalties
#> 3486 2016-09-01 penalties
#> 3487 2016-10-01 penalties
#> 3488 2016-11-01 penalties
#> 3489 2016-12-01 penalties
#> 3490 2017-01-01 penalties
#> 3491 2017-02-01 penalties
#> 3492 2017-03-01 penalties
#> 3493 2017-04-01 penalties
#> 3494 2017-05-01 penalties
#> 3495 2017-06-01 penalties
#> 3496 2017-07-01 penalties
#> 3497 2017-08-01 penalties
#> 3498 2017-09-01 penalties
#> 3499 2017-10-01 penalties
#> 3500 2017-11-01 penalties
#> 3501 2017-12-01 penalties
#> 3502 2018-01-01 penalties
#> 3503 2018-02-01 penalties
#> 3504 2018-03-01 penalties
#> 3505 2018-04-01 penalties
#> 3506 2018-05-01 penalties
#> 3507 2018-06-01 penalties
#> 3508 2018-07-01 penalties
#> 3509 2018-08-01 penalties
#> 3510 2018-09-01 penalties
#> 3511 2018-10-01 penalties
#> 3512 2018-11-01 penalties
#> 3513 2018-12-01 penalties
#> 3514 2019-01-01 penalties
#> 3515 2019-02-01 penalties
#> 3516 2019-03-01 penalties
#> 3517 2019-04-01 penalties
#> 3518 2019-05-01 penalties
#> 3519 2019-06-01 penalties
#> 3520 2019-07-01 penalties
#> 3521 2019-08-01 penalties
#> 3522 2019-09-01 penalties
#> 3523 2019-10-01 penalties
#> 3524 2019-11-01 penalties
#> 3525 2019-12-01 penalties
#> 3526 2020-01-01 penalties
#> 3527 2020-02-01 penalties
#> 3528 2020-03-01 penalties
#> 3529 2020-04-01 penalties
#> 3530 2020-05-01 penalties
#> 3531 2020-06-01 penalties
#> 3532 2020-07-01 penalties
#> 3533 2020-08-01 penalties
#> 3534 2020-09-01 penalties
#> 3535 2020-10-01 penalties
#> 3536 2020-11-01 penalties
#> 3537 2020-12-01 penalties
#> 3538 2021-01-01 penalties
#> 3539 2021-02-01 penalties
#> 3540 2021-03-01 penalties
#> 3541 2021-04-01 penalties
#> 3542 2021-05-01 penalties
#> 3543 2021-06-01 penalties
#> 3544 2021-07-01 penalties
#> 3545 2021-08-01 penalties
#> 3546 2021-09-01 penalties
#> 3547 2021-10-01 penalties
#> 3548 2021-11-01 penalties
#> 3549 2021-12-01 penalties
#> 3550 2022-01-01 penalties
#> 3551 2022-02-01 penalties
#> 3552 2022-03-01 penalties
#> 3553 2022-04-01 penalties
#> 3554 2022-05-01 penalties
#> 3555 2022-06-01 penalties
#> 3556 2022-07-01 penalties
#> 3557 2022-08-01 penalties
#> 3558 2022-09-01 penalties
#> 3559 2022-10-01 penalties
#> 3560 2022-11-01 penalties
#> 3561 2022-12-01 penalties
#> 3562 2023-01-01 penalties
#> 3563 2023-02-01 penalties
#> 3564 2023-03-01 penalties
#> 3565 2023-04-01 penalties
#> 3566 2023-05-01 penalties
#> 3567 2023-06-01 penalties
#> 3568 2023-07-01 penalties
#> 3569 2023-08-01 penalties
#> 3570 2023-09-01 penalties
#> 3571 2023-10-01 penalties
#> 3572 2023-11-01 penalties
#> 3573 2023-12-01 penalties
#> 3574 2024-01-01 penalties
#> 3575 2024-02-01 penalties
#> 3576 2024-03-01 penalties
#> 3577 2024-04-01 penalties
#> 3578 2024-05-01 penalties
#> 3579 2024-06-01 penalties
#> 3580 2024-07-01 penalties
#> 3581 2024-08-01 penalties
#> 3582 2024-09-01 penalties
#> 3583 2024-10-01 penalties
#> 3584 2024-11-01 penalties
#> 3585 2024-12-01 penalties
#> 3586 2025-01-01 penalties
#> 3587 2025-02-01 penalties
#> 3588 2025-03-01 penalties
#> 3589 2025-04-01 penalties
#> 3590 2025-05-01 penalties
#> 3591 2025-06-01 penalties
#> 3592 2025-07-01 penalties
#> 3593 2025-08-01 penalties
#> 3594 2025-09-01 penalties
#> 3595 2025-10-01 penalties
#> 3596 2025-11-01 penalties
#> 3597 2025-12-01 penalties
#> 3598 2026-01-01 penalties
#> 3599 2026-02-01 penalties
#> 3600 2026-03-01 penalties
#> 3601 2016-04-01 petroleum_revenue_tax
#> 3602 2016-05-01 petroleum_revenue_tax
#> 3603 2016-06-01 petroleum_revenue_tax
#> 3604 2016-07-01 petroleum_revenue_tax
#> 3605 2016-08-01 petroleum_revenue_tax
#> 3606 2016-09-01 petroleum_revenue_tax
#> 3607 2016-10-01 petroleum_revenue_tax
#> 3608 2016-11-01 petroleum_revenue_tax
#> 3609 2016-12-01 petroleum_revenue_tax
#> 3610 2017-01-01 petroleum_revenue_tax
#> 3611 2017-02-01 petroleum_revenue_tax
#> 3612 2017-03-01 petroleum_revenue_tax
#> 3613 2017-04-01 petroleum_revenue_tax
#> 3614 2017-05-01 petroleum_revenue_tax
#> 3615 2017-06-01 petroleum_revenue_tax
#> 3616 2017-07-01 petroleum_revenue_tax
#> 3617 2017-08-01 petroleum_revenue_tax
#> 3618 2017-09-01 petroleum_revenue_tax
#> 3619 2017-10-01 petroleum_revenue_tax
#> 3620 2017-11-01 petroleum_revenue_tax
#> 3621 2017-12-01 petroleum_revenue_tax
#> 3622 2018-01-01 petroleum_revenue_tax
#> 3623 2018-02-01 petroleum_revenue_tax
#> 3624 2018-03-01 petroleum_revenue_tax
#> 3625 2018-04-01 petroleum_revenue_tax
#> 3626 2018-05-01 petroleum_revenue_tax
#> 3627 2018-06-01 petroleum_revenue_tax
#> 3628 2018-07-01 petroleum_revenue_tax
#> 3629 2018-08-01 petroleum_revenue_tax
#> 3630 2018-09-01 petroleum_revenue_tax
#> 3631 2018-10-01 petroleum_revenue_tax
#> 3632 2018-11-01 petroleum_revenue_tax
#> 3633 2018-12-01 petroleum_revenue_tax
#> 3634 2019-01-01 petroleum_revenue_tax
#> 3635 2019-02-01 petroleum_revenue_tax
#> 3636 2019-03-01 petroleum_revenue_tax
#> 3637 2019-04-01 petroleum_revenue_tax
#> 3638 2019-05-01 petroleum_revenue_tax
#> 3639 2019-06-01 petroleum_revenue_tax
#> 3640 2019-07-01 petroleum_revenue_tax
#> 3641 2019-08-01 petroleum_revenue_tax
#> 3642 2019-09-01 petroleum_revenue_tax
#> 3643 2019-10-01 petroleum_revenue_tax
#> 3644 2019-11-01 petroleum_revenue_tax
#> 3645 2019-12-01 petroleum_revenue_tax
#> 3646 2020-01-01 petroleum_revenue_tax
#> 3647 2020-02-01 petroleum_revenue_tax
#> 3648 2020-03-01 petroleum_revenue_tax
#> 3649 2020-04-01 petroleum_revenue_tax
#> 3650 2020-05-01 petroleum_revenue_tax
#> 3651 2020-06-01 petroleum_revenue_tax
#> 3652 2020-07-01 petroleum_revenue_tax
#> 3653 2020-08-01 petroleum_revenue_tax
#> 3654 2020-09-01 petroleum_revenue_tax
#> 3655 2020-10-01 petroleum_revenue_tax
#> 3656 2020-11-01 petroleum_revenue_tax
#> 3657 2020-12-01 petroleum_revenue_tax
#> 3658 2021-01-01 petroleum_revenue_tax
#> 3659 2021-02-01 petroleum_revenue_tax
#> 3660 2021-03-01 petroleum_revenue_tax
#> 3661 2021-04-01 petroleum_revenue_tax
#> 3662 2021-05-01 petroleum_revenue_tax
#> 3663 2021-06-01 petroleum_revenue_tax
#> 3664 2021-07-01 petroleum_revenue_tax
#> 3665 2021-08-01 petroleum_revenue_tax
#> 3666 2021-09-01 petroleum_revenue_tax
#> 3667 2021-10-01 petroleum_revenue_tax
#> 3668 2021-11-01 petroleum_revenue_tax
#> 3669 2021-12-01 petroleum_revenue_tax
#> 3670 2022-01-01 petroleum_revenue_tax
#> 3671 2022-02-01 petroleum_revenue_tax
#> 3672 2022-03-01 petroleum_revenue_tax
#> 3673 2022-04-01 petroleum_revenue_tax
#> 3674 2022-05-01 petroleum_revenue_tax
#> 3675 2022-06-01 petroleum_revenue_tax
#> 3676 2022-07-01 petroleum_revenue_tax
#> 3677 2022-08-01 petroleum_revenue_tax
#> 3678 2022-09-01 petroleum_revenue_tax
#> 3679 2022-10-01 petroleum_revenue_tax
#> 3680 2022-11-01 petroleum_revenue_tax
#> 3681 2022-12-01 petroleum_revenue_tax
#> 3682 2023-01-01 petroleum_revenue_tax
#> 3683 2023-02-01 petroleum_revenue_tax
#> 3684 2023-03-01 petroleum_revenue_tax
#> 3685 2023-04-01 petroleum_revenue_tax
#> 3686 2023-05-01 petroleum_revenue_tax
#> 3687 2023-06-01 petroleum_revenue_tax
#> 3688 2023-07-01 petroleum_revenue_tax
#> 3689 2023-08-01 petroleum_revenue_tax
#> 3690 2023-09-01 petroleum_revenue_tax
#> 3691 2023-10-01 petroleum_revenue_tax
#> 3692 2023-11-01 petroleum_revenue_tax
#> 3693 2023-12-01 petroleum_revenue_tax
#> 3694 2024-01-01 petroleum_revenue_tax
#> 3695 2024-02-01 petroleum_revenue_tax
#> 3696 2024-03-01 petroleum_revenue_tax
#> 3697 2024-04-01 petroleum_revenue_tax
#> 3698 2024-05-01 petroleum_revenue_tax
#> 3699 2024-06-01 petroleum_revenue_tax
#> 3700 2024-07-01 petroleum_revenue_tax
#> 3701 2024-08-01 petroleum_revenue_tax
#> 3702 2024-09-01 petroleum_revenue_tax
#> 3703 2024-10-01 petroleum_revenue_tax
#> 3704 2024-11-01 petroleum_revenue_tax
#> 3705 2024-12-01 petroleum_revenue_tax
#> 3706 2025-01-01 petroleum_revenue_tax
#> 3707 2025-02-01 petroleum_revenue_tax
#> 3708 2025-03-01 petroleum_revenue_tax
#> 3709 2025-04-01 petroleum_revenue_tax
#> 3710 2025-05-01 petroleum_revenue_tax
#> 3711 2025-06-01 petroleum_revenue_tax
#> 3712 2025-07-01 petroleum_revenue_tax
#> 3713 2025-08-01 petroleum_revenue_tax
#> 3714 2025-09-01 petroleum_revenue_tax
#> 3715 2025-10-01 petroleum_revenue_tax
#> 3716 2025-11-01 petroleum_revenue_tax
#> 3717 2025-12-01 petroleum_revenue_tax
#> 3718 2026-01-01 petroleum_revenue_tax
#> 3719 2026-02-01 petroleum_revenue_tax
#> 3720 2026-03-01 petroleum_revenue_tax
#> 3721 2016-04-01 plastic_packaging_tax
#> 3722 2016-05-01 plastic_packaging_tax
#> 3723 2016-06-01 plastic_packaging_tax
#> 3724 2016-07-01 plastic_packaging_tax
#> 3725 2016-08-01 plastic_packaging_tax
#> 3726 2016-09-01 plastic_packaging_tax
#> 3727 2016-10-01 plastic_packaging_tax
#> 3728 2016-11-01 plastic_packaging_tax
#> 3729 2016-12-01 plastic_packaging_tax
#> 3730 2017-01-01 plastic_packaging_tax
#> 3731 2017-02-01 plastic_packaging_tax
#> 3732 2017-03-01 plastic_packaging_tax
#> 3733 2017-04-01 plastic_packaging_tax
#> 3734 2017-05-01 plastic_packaging_tax
#> 3735 2017-06-01 plastic_packaging_tax
#> 3736 2017-07-01 plastic_packaging_tax
#> 3737 2017-08-01 plastic_packaging_tax
#> 3738 2017-09-01 plastic_packaging_tax
#> 3739 2017-10-01 plastic_packaging_tax
#> 3740 2017-11-01 plastic_packaging_tax
#> 3741 2017-12-01 plastic_packaging_tax
#> 3742 2018-01-01 plastic_packaging_tax
#> 3743 2018-02-01 plastic_packaging_tax
#> 3744 2018-03-01 plastic_packaging_tax
#> 3745 2018-04-01 plastic_packaging_tax
#> 3746 2018-05-01 plastic_packaging_tax
#> 3747 2018-06-01 plastic_packaging_tax
#> 3748 2018-07-01 plastic_packaging_tax
#> 3749 2018-08-01 plastic_packaging_tax
#> 3750 2018-09-01 plastic_packaging_tax
#> 3751 2018-10-01 plastic_packaging_tax
#> 3752 2018-11-01 plastic_packaging_tax
#> 3753 2018-12-01 plastic_packaging_tax
#> 3754 2019-01-01 plastic_packaging_tax
#> 3755 2019-02-01 plastic_packaging_tax
#> 3756 2019-03-01 plastic_packaging_tax
#> 3757 2019-04-01 plastic_packaging_tax
#> 3758 2019-05-01 plastic_packaging_tax
#> 3759 2019-06-01 plastic_packaging_tax
#> 3760 2019-07-01 plastic_packaging_tax
#> 3761 2019-08-01 plastic_packaging_tax
#> 3762 2019-09-01 plastic_packaging_tax
#> 3763 2019-10-01 plastic_packaging_tax
#> 3764 2019-11-01 plastic_packaging_tax
#> 3765 2019-12-01 plastic_packaging_tax
#> 3766 2020-01-01 plastic_packaging_tax
#> 3767 2020-02-01 plastic_packaging_tax
#> 3768 2020-03-01 plastic_packaging_tax
#> 3769 2020-04-01 plastic_packaging_tax
#> 3770 2020-05-01 plastic_packaging_tax
#> 3771 2020-06-01 plastic_packaging_tax
#> 3772 2020-07-01 plastic_packaging_tax
#> 3773 2020-08-01 plastic_packaging_tax
#> 3774 2020-09-01 plastic_packaging_tax
#> 3775 2020-10-01 plastic_packaging_tax
#> 3776 2020-11-01 plastic_packaging_tax
#> 3777 2020-12-01 plastic_packaging_tax
#> 3778 2021-01-01 plastic_packaging_tax
#> 3779 2021-02-01 plastic_packaging_tax
#> 3780 2021-03-01 plastic_packaging_tax
#> 3781 2021-04-01 plastic_packaging_tax
#> 3782 2021-05-01 plastic_packaging_tax
#> 3783 2021-06-01 plastic_packaging_tax
#> 3784 2021-07-01 plastic_packaging_tax
#> 3785 2021-08-01 plastic_packaging_tax
#> 3786 2021-09-01 plastic_packaging_tax
#> 3787 2021-10-01 plastic_packaging_tax
#> 3788 2021-11-01 plastic_packaging_tax
#> 3789 2021-12-01 plastic_packaging_tax
#> 3790 2022-01-01 plastic_packaging_tax
#> 3791 2022-02-01 plastic_packaging_tax
#> 3792 2022-03-01 plastic_packaging_tax
#> 3793 2022-04-01 plastic_packaging_tax
#> 3794 2022-05-01 plastic_packaging_tax
#> 3795 2022-06-01 plastic_packaging_tax
#> 3796 2022-07-01 plastic_packaging_tax
#> 3797 2022-08-01 plastic_packaging_tax
#> 3798 2022-09-01 plastic_packaging_tax
#> 3799 2022-10-01 plastic_packaging_tax
#> 3800 2022-11-01 plastic_packaging_tax
#> 3801 2022-12-01 plastic_packaging_tax
#> 3802 2023-01-01 plastic_packaging_tax
#> 3803 2023-02-01 plastic_packaging_tax
#> 3804 2023-03-01 plastic_packaging_tax
#> 3805 2023-04-01 plastic_packaging_tax
#> 3806 2023-05-01 plastic_packaging_tax
#> 3807 2023-06-01 plastic_packaging_tax
#> 3808 2023-07-01 plastic_packaging_tax
#> 3809 2023-08-01 plastic_packaging_tax
#> 3810 2023-09-01 plastic_packaging_tax
#> 3811 2023-10-01 plastic_packaging_tax
#> 3812 2023-11-01 plastic_packaging_tax
#> 3813 2023-12-01 plastic_packaging_tax
#> 3814 2024-01-01 plastic_packaging_tax
#> 3815 2024-02-01 plastic_packaging_tax
#> 3816 2024-03-01 plastic_packaging_tax
#> 3817 2024-04-01 plastic_packaging_tax
#> 3818 2024-05-01 plastic_packaging_tax
#> 3819 2024-06-01 plastic_packaging_tax
#> 3820 2024-07-01 plastic_packaging_tax
#> 3821 2024-08-01 plastic_packaging_tax
#> 3822 2024-09-01 plastic_packaging_tax
#> 3823 2024-10-01 plastic_packaging_tax
#> 3824 2024-11-01 plastic_packaging_tax
#> 3825 2024-12-01 plastic_packaging_tax
#> 3826 2025-01-01 plastic_packaging_tax
#> 3827 2025-02-01 plastic_packaging_tax
#> 3828 2025-03-01 plastic_packaging_tax
#> 3829 2025-04-01 plastic_packaging_tax
#> 3830 2025-05-01 plastic_packaging_tax
#> 3831 2025-06-01 plastic_packaging_tax
#> 3832 2025-07-01 plastic_packaging_tax
#> 3833 2025-08-01 plastic_packaging_tax
#> 3834 2025-09-01 plastic_packaging_tax
#> 3835 2025-10-01 plastic_packaging_tax
#> 3836 2025-11-01 plastic_packaging_tax
#> 3837 2025-12-01 plastic_packaging_tax
#> 3838 2026-01-01 plastic_packaging_tax
#> 3839 2026-02-01 plastic_packaging_tax
#> 3840 2026-03-01 plastic_packaging_tax
#> 3841 2016-04-01 residential_property_developer_tax
#> 3842 2016-05-01 residential_property_developer_tax
#> 3843 2016-06-01 residential_property_developer_tax
#> 3844 2016-07-01 residential_property_developer_tax
#> 3845 2016-08-01 residential_property_developer_tax
#> 3846 2016-09-01 residential_property_developer_tax
#> 3847 2016-10-01 residential_property_developer_tax
#> 3848 2016-11-01 residential_property_developer_tax
#> 3849 2016-12-01 residential_property_developer_tax
#> 3850 2017-01-01 residential_property_developer_tax
#> 3851 2017-02-01 residential_property_developer_tax
#> 3852 2017-03-01 residential_property_developer_tax
#> 3853 2017-04-01 residential_property_developer_tax
#> 3854 2017-05-01 residential_property_developer_tax
#> 3855 2017-06-01 residential_property_developer_tax
#> 3856 2017-07-01 residential_property_developer_tax
#> 3857 2017-08-01 residential_property_developer_tax
#> 3858 2017-09-01 residential_property_developer_tax
#> 3859 2017-10-01 residential_property_developer_tax
#> 3860 2017-11-01 residential_property_developer_tax
#> 3861 2017-12-01 residential_property_developer_tax
#> 3862 2018-01-01 residential_property_developer_tax
#> 3863 2018-02-01 residential_property_developer_tax
#> 3864 2018-03-01 residential_property_developer_tax
#> 3865 2018-04-01 residential_property_developer_tax
#> 3866 2018-05-01 residential_property_developer_tax
#> 3867 2018-06-01 residential_property_developer_tax
#> 3868 2018-07-01 residential_property_developer_tax
#> 3869 2018-08-01 residential_property_developer_tax
#> 3870 2018-09-01 residential_property_developer_tax
#> 3871 2018-10-01 residential_property_developer_tax
#> 3872 2018-11-01 residential_property_developer_tax
#> 3873 2018-12-01 residential_property_developer_tax
#> 3874 2019-01-01 residential_property_developer_tax
#> 3875 2019-02-01 residential_property_developer_tax
#> 3876 2019-03-01 residential_property_developer_tax
#> 3877 2019-04-01 residential_property_developer_tax
#> 3878 2019-05-01 residential_property_developer_tax
#> 3879 2019-06-01 residential_property_developer_tax
#> 3880 2019-07-01 residential_property_developer_tax
#> 3881 2019-08-01 residential_property_developer_tax
#> 3882 2019-09-01 residential_property_developer_tax
#> 3883 2019-10-01 residential_property_developer_tax
#> 3884 2019-11-01 residential_property_developer_tax
#> 3885 2019-12-01 residential_property_developer_tax
#> 3886 2020-01-01 residential_property_developer_tax
#> 3887 2020-02-01 residential_property_developer_tax
#> 3888 2020-03-01 residential_property_developer_tax
#> 3889 2020-04-01 residential_property_developer_tax
#> 3890 2020-05-01 residential_property_developer_tax
#> 3891 2020-06-01 residential_property_developer_tax
#> 3892 2020-07-01 residential_property_developer_tax
#> 3893 2020-08-01 residential_property_developer_tax
#> 3894 2020-09-01 residential_property_developer_tax
#> 3895 2020-10-01 residential_property_developer_tax
#> 3896 2020-11-01 residential_property_developer_tax
#> 3897 2020-12-01 residential_property_developer_tax
#> 3898 2021-01-01 residential_property_developer_tax
#> 3899 2021-02-01 residential_property_developer_tax
#> 3900 2021-03-01 residential_property_developer_tax
#> 3901 2021-04-01 residential_property_developer_tax
#> 3902 2021-05-01 residential_property_developer_tax
#> 3903 2021-06-01 residential_property_developer_tax
#> 3904 2021-07-01 residential_property_developer_tax
#> 3905 2021-08-01 residential_property_developer_tax
#> 3906 2021-09-01 residential_property_developer_tax
#> 3907 2021-10-01 residential_property_developer_tax
#> 3908 2021-11-01 residential_property_developer_tax
#> 3909 2021-12-01 residential_property_developer_tax
#> 3910 2022-01-01 residential_property_developer_tax
#> 3911 2022-02-01 residential_property_developer_tax
#> 3912 2022-03-01 residential_property_developer_tax
#> 3913 2022-04-01 residential_property_developer_tax
#> 3914 2022-05-01 residential_property_developer_tax
#> 3915 2022-06-01 residential_property_developer_tax
#> 3916 2022-07-01 residential_property_developer_tax
#> 3917 2022-08-01 residential_property_developer_tax
#> 3918 2022-09-01 residential_property_developer_tax
#> 3919 2022-10-01 residential_property_developer_tax
#> 3920 2022-11-01 residential_property_developer_tax
#> 3921 2022-12-01 residential_property_developer_tax
#> 3922 2023-01-01 residential_property_developer_tax
#> 3923 2023-02-01 residential_property_developer_tax
#> 3924 2023-03-01 residential_property_developer_tax
#> 3925 2023-04-01 residential_property_developer_tax
#> 3926 2023-05-01 residential_property_developer_tax
#> 3927 2023-06-01 residential_property_developer_tax
#> 3928 2023-07-01 residential_property_developer_tax
#> 3929 2023-08-01 residential_property_developer_tax
#> 3930 2023-09-01 residential_property_developer_tax
#> 3931 2023-10-01 residential_property_developer_tax
#> 3932 2023-11-01 residential_property_developer_tax
#> 3933 2023-12-01 residential_property_developer_tax
#> 3934 2024-01-01 residential_property_developer_tax
#> 3935 2024-02-01 residential_property_developer_tax
#> 3936 2024-03-01 residential_property_developer_tax
#> 3937 2024-04-01 residential_property_developer_tax
#> 3938 2024-05-01 residential_property_developer_tax
#> 3939 2024-06-01 residential_property_developer_tax
#> 3940 2024-07-01 residential_property_developer_tax
#> 3941 2024-08-01 residential_property_developer_tax
#> 3942 2024-09-01 residential_property_developer_tax
#> 3943 2024-10-01 residential_property_developer_tax
#> 3944 2024-11-01 residential_property_developer_tax
#> 3945 2024-12-01 residential_property_developer_tax
#> 3946 2025-01-01 residential_property_developer_tax
#> 3947 2025-02-01 residential_property_developer_tax
#> 3948 2025-03-01 residential_property_developer_tax
#> 3949 2025-04-01 residential_property_developer_tax
#> 3950 2025-05-01 residential_property_developer_tax
#> 3951 2025-06-01 residential_property_developer_tax
#> 3952 2025-07-01 residential_property_developer_tax
#> 3953 2025-08-01 residential_property_developer_tax
#> 3954 2025-09-01 residential_property_developer_tax
#> 3955 2025-10-01 residential_property_developer_tax
#> 3956 2025-11-01 residential_property_developer_tax
#> 3957 2025-12-01 residential_property_developer_tax
#> 3958 2026-01-01 residential_property_developer_tax
#> 3959 2026-02-01 residential_property_developer_tax
#> 3960 2026-03-01 residential_property_developer_tax
#> 3961 2016-04-01 sdlt
#> 3962 2016-05-01 sdlt
#> 3963 2016-06-01 sdlt
#> 3964 2016-07-01 sdlt
#> 3965 2016-08-01 sdlt
#> 3966 2016-09-01 sdlt
#> 3967 2016-10-01 sdlt
#> 3968 2016-11-01 sdlt
#> 3969 2016-12-01 sdlt
#> 3970 2017-01-01 sdlt
#> 3971 2017-02-01 sdlt
#> 3972 2017-03-01 sdlt
#> 3973 2017-04-01 sdlt
#> 3974 2017-05-01 sdlt
#> 3975 2017-06-01 sdlt
#> 3976 2017-07-01 sdlt
#> 3977 2017-08-01 sdlt
#> 3978 2017-09-01 sdlt
#> 3979 2017-10-01 sdlt
#> 3980 2017-11-01 sdlt
#> 3981 2017-12-01 sdlt
#> 3982 2018-01-01 sdlt
#> 3983 2018-02-01 sdlt
#> 3984 2018-03-01 sdlt
#> 3985 2018-04-01 sdlt
#> 3986 2018-05-01 sdlt
#> 3987 2018-06-01 sdlt
#> 3988 2018-07-01 sdlt
#> 3989 2018-08-01 sdlt
#> 3990 2018-09-01 sdlt
#> 3991 2018-10-01 sdlt
#> 3992 2018-11-01 sdlt
#> 3993 2018-12-01 sdlt
#> 3994 2019-01-01 sdlt
#> 3995 2019-02-01 sdlt
#> 3996 2019-03-01 sdlt
#> 3997 2019-04-01 sdlt
#> 3998 2019-05-01 sdlt
#> 3999 2019-06-01 sdlt
#> 4000 2019-07-01 sdlt
#> 4001 2019-08-01 sdlt
#> 4002 2019-09-01 sdlt
#> 4003 2019-10-01 sdlt
#> 4004 2019-11-01 sdlt
#> 4005 2019-12-01 sdlt
#> 4006 2020-01-01 sdlt
#> 4007 2020-02-01 sdlt
#> 4008 2020-03-01 sdlt
#> 4009 2020-04-01 sdlt
#> 4010 2020-05-01 sdlt
#> 4011 2020-06-01 sdlt
#> 4012 2020-07-01 sdlt
#> 4013 2020-08-01 sdlt
#> 4014 2020-09-01 sdlt
#> 4015 2020-10-01 sdlt
#> 4016 2020-11-01 sdlt
#> 4017 2020-12-01 sdlt
#> 4018 2021-01-01 sdlt
#> 4019 2021-02-01 sdlt
#> 4020 2021-03-01 sdlt
#> 4021 2021-04-01 sdlt
#> 4022 2021-05-01 sdlt
#> 4023 2021-06-01 sdlt
#> 4024 2021-07-01 sdlt
#> 4025 2021-08-01 sdlt
#> 4026 2021-09-01 sdlt
#> 4027 2021-10-01 sdlt
#> 4028 2021-11-01 sdlt
#> 4029 2021-12-01 sdlt
#> 4030 2022-01-01 sdlt
#> 4031 2022-02-01 sdlt
#> 4032 2022-03-01 sdlt
#> 4033 2022-04-01 sdlt
#> 4034 2022-05-01 sdlt
#> 4035 2022-06-01 sdlt
#> 4036 2022-07-01 sdlt
#> 4037 2022-08-01 sdlt
#> 4038 2022-09-01 sdlt
#> 4039 2022-10-01 sdlt
#> 4040 2022-11-01 sdlt
#> 4041 2022-12-01 sdlt
#> 4042 2023-01-01 sdlt
#> 4043 2023-02-01 sdlt
#> 4044 2023-03-01 sdlt
#> 4045 2023-04-01 sdlt
#> 4046 2023-05-01 sdlt
#> 4047 2023-06-01 sdlt
#> 4048 2023-07-01 sdlt
#> 4049 2023-08-01 sdlt
#> 4050 2023-09-01 sdlt
#> 4051 2023-10-01 sdlt
#> 4052 2023-11-01 sdlt
#> 4053 2023-12-01 sdlt
#> 4054 2024-01-01 sdlt
#> 4055 2024-02-01 sdlt
#> 4056 2024-03-01 sdlt
#> 4057 2024-04-01 sdlt
#> 4058 2024-05-01 sdlt
#> 4059 2024-06-01 sdlt
#> 4060 2024-07-01 sdlt
#> 4061 2024-08-01 sdlt
#> 4062 2024-09-01 sdlt
#> 4063 2024-10-01 sdlt
#> 4064 2024-11-01 sdlt
#> 4065 2024-12-01 sdlt
#> 4066 2025-01-01 sdlt
#> 4067 2025-02-01 sdlt
#> 4068 2025-03-01 sdlt
#> 4069 2025-04-01 sdlt
#> 4070 2025-05-01 sdlt
#> 4071 2025-06-01 sdlt
#> 4072 2025-07-01 sdlt
#> 4073 2025-08-01 sdlt
#> 4074 2025-09-01 sdlt
#> 4075 2025-10-01 sdlt
#> 4076 2025-11-01 sdlt
#> 4077 2025-12-01 sdlt
#> 4078 2026-01-01 sdlt
#> 4079 2026-02-01 sdlt
#> 4080 2026-03-01 sdlt
#> 4081 2016-04-01 soft_drinks_levy
#> 4082 2016-05-01 soft_drinks_levy
#> 4083 2016-06-01 soft_drinks_levy
#> 4084 2016-07-01 soft_drinks_levy
#> 4085 2016-08-01 soft_drinks_levy
#> 4086 2016-09-01 soft_drinks_levy
#> 4087 2016-10-01 soft_drinks_levy
#> 4088 2016-11-01 soft_drinks_levy
#> 4089 2016-12-01 soft_drinks_levy
#> 4090 2017-01-01 soft_drinks_levy
#> 4091 2017-02-01 soft_drinks_levy
#> 4092 2017-03-01 soft_drinks_levy
#> 4093 2017-04-01 soft_drinks_levy
#> 4094 2017-05-01 soft_drinks_levy
#> 4095 2017-06-01 soft_drinks_levy
#> 4096 2017-07-01 soft_drinks_levy
#> 4097 2017-08-01 soft_drinks_levy
#> 4098 2017-09-01 soft_drinks_levy
#> 4099 2017-10-01 soft_drinks_levy
#> 4100 2017-11-01 soft_drinks_levy
#> 4101 2017-12-01 soft_drinks_levy
#> 4102 2018-01-01 soft_drinks_levy
#> 4103 2018-02-01 soft_drinks_levy
#> 4104 2018-03-01 soft_drinks_levy
#> 4105 2018-04-01 soft_drinks_levy
#> 4106 2018-05-01 soft_drinks_levy
#> 4107 2018-06-01 soft_drinks_levy
#> 4108 2018-07-01 soft_drinks_levy
#> 4109 2018-08-01 soft_drinks_levy
#> 4110 2018-09-01 soft_drinks_levy
#> 4111 2018-10-01 soft_drinks_levy
#> 4112 2018-11-01 soft_drinks_levy
#> 4113 2018-12-01 soft_drinks_levy
#> 4114 2019-01-01 soft_drinks_levy
#> 4115 2019-02-01 soft_drinks_levy
#> 4116 2019-03-01 soft_drinks_levy
#> 4117 2019-04-01 soft_drinks_levy
#> 4118 2019-05-01 soft_drinks_levy
#> 4119 2019-06-01 soft_drinks_levy
#> 4120 2019-07-01 soft_drinks_levy
#> 4121 2019-08-01 soft_drinks_levy
#> 4122 2019-09-01 soft_drinks_levy
#> 4123 2019-10-01 soft_drinks_levy
#> 4124 2019-11-01 soft_drinks_levy
#> 4125 2019-12-01 soft_drinks_levy
#> 4126 2020-01-01 soft_drinks_levy
#> 4127 2020-02-01 soft_drinks_levy
#> 4128 2020-03-01 soft_drinks_levy
#> 4129 2020-04-01 soft_drinks_levy
#> 4130 2020-05-01 soft_drinks_levy
#> 4131 2020-06-01 soft_drinks_levy
#> 4132 2020-07-01 soft_drinks_levy
#> 4133 2020-08-01 soft_drinks_levy
#> 4134 2020-09-01 soft_drinks_levy
#> 4135 2020-10-01 soft_drinks_levy
#> 4136 2020-11-01 soft_drinks_levy
#> 4137 2020-12-01 soft_drinks_levy
#> 4138 2021-01-01 soft_drinks_levy
#> 4139 2021-02-01 soft_drinks_levy
#> 4140 2021-03-01 soft_drinks_levy
#> 4141 2021-04-01 soft_drinks_levy
#> 4142 2021-05-01 soft_drinks_levy
#> 4143 2021-06-01 soft_drinks_levy
#> 4144 2021-07-01 soft_drinks_levy
#> 4145 2021-08-01 soft_drinks_levy
#> 4146 2021-09-01 soft_drinks_levy
#> 4147 2021-10-01 soft_drinks_levy
#> 4148 2021-11-01 soft_drinks_levy
#> 4149 2021-12-01 soft_drinks_levy
#> 4150 2022-01-01 soft_drinks_levy
#> 4151 2022-02-01 soft_drinks_levy
#> 4152 2022-03-01 soft_drinks_levy
#> 4153 2022-04-01 soft_drinks_levy
#> 4154 2022-05-01 soft_drinks_levy
#> 4155 2022-06-01 soft_drinks_levy
#> 4156 2022-07-01 soft_drinks_levy
#> 4157 2022-08-01 soft_drinks_levy
#> 4158 2022-09-01 soft_drinks_levy
#> 4159 2022-10-01 soft_drinks_levy
#> 4160 2022-11-01 soft_drinks_levy
#> 4161 2022-12-01 soft_drinks_levy
#> 4162 2023-01-01 soft_drinks_levy
#> 4163 2023-02-01 soft_drinks_levy
#> 4164 2023-03-01 soft_drinks_levy
#> 4165 2023-04-01 soft_drinks_levy
#> 4166 2023-05-01 soft_drinks_levy
#> 4167 2023-06-01 soft_drinks_levy
#> 4168 2023-07-01 soft_drinks_levy
#> 4169 2023-08-01 soft_drinks_levy
#> 4170 2023-09-01 soft_drinks_levy
#> 4171 2023-10-01 soft_drinks_levy
#> 4172 2023-11-01 soft_drinks_levy
#> 4173 2023-12-01 soft_drinks_levy
#> 4174 2024-01-01 soft_drinks_levy
#> 4175 2024-02-01 soft_drinks_levy
#> 4176 2024-03-01 soft_drinks_levy
#> 4177 2024-04-01 soft_drinks_levy
#> 4178 2024-05-01 soft_drinks_levy
#> 4179 2024-06-01 soft_drinks_levy
#> 4180 2024-07-01 soft_drinks_levy
#> 4181 2024-08-01 soft_drinks_levy
#> 4182 2024-09-01 soft_drinks_levy
#> 4183 2024-10-01 soft_drinks_levy
#> 4184 2024-11-01 soft_drinks_levy
#> 4185 2024-12-01 soft_drinks_levy
#> 4186 2025-01-01 soft_drinks_levy
#> 4187 2025-02-01 soft_drinks_levy
#> 4188 2025-03-01 soft_drinks_levy
#> 4189 2025-04-01 soft_drinks_levy
#> 4190 2025-05-01 soft_drinks_levy
#> 4191 2025-06-01 soft_drinks_levy
#> 4192 2025-07-01 soft_drinks_levy
#> 4193 2025-08-01 soft_drinks_levy
#> 4194 2025-09-01 soft_drinks_levy
#> 4195 2025-10-01 soft_drinks_levy
#> 4196 2025-11-01 soft_drinks_levy
#> 4197 2025-12-01 soft_drinks_levy
#> 4198 2026-01-01 soft_drinks_levy
#> 4199 2026-02-01 soft_drinks_levy
#> 4200 2026-03-01 soft_drinks_levy
#> 4201 2016-04-01 spirits_duty
#> 4202 2016-05-01 spirits_duty
#> 4203 2016-06-01 spirits_duty
#> 4204 2016-07-01 spirits_duty
#> 4205 2016-08-01 spirits_duty
#> 4206 2016-09-01 spirits_duty
#> 4207 2016-10-01 spirits_duty
#> 4208 2016-11-01 spirits_duty
#> 4209 2016-12-01 spirits_duty
#> 4210 2017-01-01 spirits_duty
#> 4211 2017-02-01 spirits_duty
#> 4212 2017-03-01 spirits_duty
#> 4213 2017-04-01 spirits_duty
#> 4214 2017-05-01 spirits_duty
#> 4215 2017-06-01 spirits_duty
#> 4216 2017-07-01 spirits_duty
#> 4217 2017-08-01 spirits_duty
#> 4218 2017-09-01 spirits_duty
#> 4219 2017-10-01 spirits_duty
#> 4220 2017-11-01 spirits_duty
#> 4221 2017-12-01 spirits_duty
#> 4222 2018-01-01 spirits_duty
#> 4223 2018-02-01 spirits_duty
#> 4224 2018-03-01 spirits_duty
#> 4225 2018-04-01 spirits_duty
#> 4226 2018-05-01 spirits_duty
#> 4227 2018-06-01 spirits_duty
#> 4228 2018-07-01 spirits_duty
#> 4229 2018-08-01 spirits_duty
#> 4230 2018-09-01 spirits_duty
#> 4231 2018-10-01 spirits_duty
#> 4232 2018-11-01 spirits_duty
#> 4233 2018-12-01 spirits_duty
#> 4234 2019-01-01 spirits_duty
#> 4235 2019-02-01 spirits_duty
#> 4236 2019-03-01 spirits_duty
#> 4237 2019-04-01 spirits_duty
#> 4238 2019-05-01 spirits_duty
#> 4239 2019-06-01 spirits_duty
#> 4240 2019-07-01 spirits_duty
#> 4241 2019-08-01 spirits_duty
#> 4242 2019-09-01 spirits_duty
#> 4243 2019-10-01 spirits_duty
#> 4244 2019-11-01 spirits_duty
#> 4245 2019-12-01 spirits_duty
#> 4246 2020-01-01 spirits_duty
#> 4247 2020-02-01 spirits_duty
#> 4248 2020-03-01 spirits_duty
#> 4249 2020-04-01 spirits_duty
#> 4250 2020-05-01 spirits_duty
#> 4251 2020-06-01 spirits_duty
#> 4252 2020-07-01 spirits_duty
#> 4253 2020-08-01 spirits_duty
#> 4254 2020-09-01 spirits_duty
#> 4255 2020-10-01 spirits_duty
#> 4256 2020-11-01 spirits_duty
#> 4257 2020-12-01 spirits_duty
#> 4258 2021-01-01 spirits_duty
#> 4259 2021-02-01 spirits_duty
#> 4260 2021-03-01 spirits_duty
#> 4261 2021-04-01 spirits_duty
#> 4262 2021-05-01 spirits_duty
#> 4263 2021-06-01 spirits_duty
#> 4264 2021-07-01 spirits_duty
#> 4265 2021-08-01 spirits_duty
#> 4266 2021-09-01 spirits_duty
#> 4267 2021-10-01 spirits_duty
#> 4268 2021-11-01 spirits_duty
#> 4269 2021-12-01 spirits_duty
#> 4270 2022-01-01 spirits_duty
#> 4271 2022-02-01 spirits_duty
#> 4272 2022-03-01 spirits_duty
#> 4273 2022-04-01 spirits_duty
#> 4274 2022-05-01 spirits_duty
#> 4275 2022-06-01 spirits_duty
#> 4276 2022-07-01 spirits_duty
#> 4277 2022-08-01 spirits_duty
#> 4278 2022-09-01 spirits_duty
#> 4279 2022-10-01 spirits_duty
#> 4280 2022-11-01 spirits_duty
#> 4281 2022-12-01 spirits_duty
#> 4282 2023-01-01 spirits_duty
#> 4283 2023-02-01 spirits_duty
#> 4284 2023-03-01 spirits_duty
#> 4285 2023-04-01 spirits_duty
#> 4286 2023-05-01 spirits_duty
#> 4287 2023-06-01 spirits_duty
#> 4288 2023-07-01 spirits_duty
#> 4289 2023-08-01 spirits_duty
#> 4290 2023-09-01 spirits_duty
#> 4291 2023-10-01 spirits_duty
#> 4292 2023-11-01 spirits_duty
#> 4293 2023-12-01 spirits_duty
#> 4294 2024-01-01 spirits_duty
#> 4295 2024-02-01 spirits_duty
#> 4296 2024-03-01 spirits_duty
#> 4297 2024-04-01 spirits_duty
#> 4298 2024-05-01 spirits_duty
#> 4299 2024-06-01 spirits_duty
#> 4300 2024-07-01 spirits_duty
#> 4301 2024-08-01 spirits_duty
#> 4302 2024-09-01 spirits_duty
#> 4303 2024-10-01 spirits_duty
#> 4304 2024-11-01 spirits_duty
#> 4305 2024-12-01 spirits_duty
#> 4306 2025-01-01 spirits_duty
#> 4307 2025-02-01 spirits_duty
#> 4308 2025-03-01 spirits_duty
#> 4309 2025-04-01 spirits_duty
#> 4310 2025-05-01 spirits_duty
#> 4311 2025-06-01 spirits_duty
#> 4312 2025-07-01 spirits_duty
#> 4313 2025-08-01 spirits_duty
#> 4314 2025-09-01 spirits_duty
#> 4315 2025-10-01 spirits_duty
#> 4316 2025-11-01 spirits_duty
#> 4317 2025-12-01 spirits_duty
#> 4318 2026-01-01 spirits_duty
#> 4319 2026-02-01 spirits_duty
#> 4320 2026-03-01 spirits_duty
#> 4321 2016-04-01 stamp_duty_shares
#> 4322 2016-05-01 stamp_duty_shares
#> 4323 2016-06-01 stamp_duty_shares
#> 4324 2016-07-01 stamp_duty_shares
#> 4325 2016-08-01 stamp_duty_shares
#> 4326 2016-09-01 stamp_duty_shares
#> 4327 2016-10-01 stamp_duty_shares
#> 4328 2016-11-01 stamp_duty_shares
#> 4329 2016-12-01 stamp_duty_shares
#> 4330 2017-01-01 stamp_duty_shares
#> 4331 2017-02-01 stamp_duty_shares
#> 4332 2017-03-01 stamp_duty_shares
#> 4333 2017-04-01 stamp_duty_shares
#> 4334 2017-05-01 stamp_duty_shares
#> 4335 2017-06-01 stamp_duty_shares
#> 4336 2017-07-01 stamp_duty_shares
#> 4337 2017-08-01 stamp_duty_shares
#> 4338 2017-09-01 stamp_duty_shares
#> 4339 2017-10-01 stamp_duty_shares
#> 4340 2017-11-01 stamp_duty_shares
#> 4341 2017-12-01 stamp_duty_shares
#> 4342 2018-01-01 stamp_duty_shares
#> 4343 2018-02-01 stamp_duty_shares
#> 4344 2018-03-01 stamp_duty_shares
#> 4345 2018-04-01 stamp_duty_shares
#> 4346 2018-05-01 stamp_duty_shares
#> 4347 2018-06-01 stamp_duty_shares
#> 4348 2018-07-01 stamp_duty_shares
#> 4349 2018-08-01 stamp_duty_shares
#> 4350 2018-09-01 stamp_duty_shares
#> 4351 2018-10-01 stamp_duty_shares
#> 4352 2018-11-01 stamp_duty_shares
#> 4353 2018-12-01 stamp_duty_shares
#> 4354 2019-01-01 stamp_duty_shares
#> 4355 2019-02-01 stamp_duty_shares
#> 4356 2019-03-01 stamp_duty_shares
#> 4357 2019-04-01 stamp_duty_shares
#> 4358 2019-05-01 stamp_duty_shares
#> 4359 2019-06-01 stamp_duty_shares
#> 4360 2019-07-01 stamp_duty_shares
#> 4361 2019-08-01 stamp_duty_shares
#> 4362 2019-09-01 stamp_duty_shares
#> 4363 2019-10-01 stamp_duty_shares
#> 4364 2019-11-01 stamp_duty_shares
#> 4365 2019-12-01 stamp_duty_shares
#> 4366 2020-01-01 stamp_duty_shares
#> 4367 2020-02-01 stamp_duty_shares
#> 4368 2020-03-01 stamp_duty_shares
#> 4369 2020-04-01 stamp_duty_shares
#> 4370 2020-05-01 stamp_duty_shares
#> 4371 2020-06-01 stamp_duty_shares
#> 4372 2020-07-01 stamp_duty_shares
#> 4373 2020-08-01 stamp_duty_shares
#> 4374 2020-09-01 stamp_duty_shares
#> 4375 2020-10-01 stamp_duty_shares
#> 4376 2020-11-01 stamp_duty_shares
#> 4377 2020-12-01 stamp_duty_shares
#> 4378 2021-01-01 stamp_duty_shares
#> 4379 2021-02-01 stamp_duty_shares
#> 4380 2021-03-01 stamp_duty_shares
#> 4381 2021-04-01 stamp_duty_shares
#> 4382 2021-05-01 stamp_duty_shares
#> 4383 2021-06-01 stamp_duty_shares
#> 4384 2021-07-01 stamp_duty_shares
#> 4385 2021-08-01 stamp_duty_shares
#> 4386 2021-09-01 stamp_duty_shares
#> 4387 2021-10-01 stamp_duty_shares
#> 4388 2021-11-01 stamp_duty_shares
#> 4389 2021-12-01 stamp_duty_shares
#> 4390 2022-01-01 stamp_duty_shares
#> 4391 2022-02-01 stamp_duty_shares
#> 4392 2022-03-01 stamp_duty_shares
#> 4393 2022-04-01 stamp_duty_shares
#> 4394 2022-05-01 stamp_duty_shares
#> 4395 2022-06-01 stamp_duty_shares
#> 4396 2022-07-01 stamp_duty_shares
#> 4397 2022-08-01 stamp_duty_shares
#> 4398 2022-09-01 stamp_duty_shares
#> 4399 2022-10-01 stamp_duty_shares
#> 4400 2022-11-01 stamp_duty_shares
#> 4401 2022-12-01 stamp_duty_shares
#> 4402 2023-01-01 stamp_duty_shares
#> 4403 2023-02-01 stamp_duty_shares
#> 4404 2023-03-01 stamp_duty_shares
#> 4405 2023-04-01 stamp_duty_shares
#> 4406 2023-05-01 stamp_duty_shares
#> 4407 2023-06-01 stamp_duty_shares
#> 4408 2023-07-01 stamp_duty_shares
#> 4409 2023-08-01 stamp_duty_shares
#> 4410 2023-09-01 stamp_duty_shares
#> 4411 2023-10-01 stamp_duty_shares
#> 4412 2023-11-01 stamp_duty_shares
#> 4413 2023-12-01 stamp_duty_shares
#> 4414 2024-01-01 stamp_duty_shares
#> 4415 2024-02-01 stamp_duty_shares
#> 4416 2024-03-01 stamp_duty_shares
#> 4417 2024-04-01 stamp_duty_shares
#> 4418 2024-05-01 stamp_duty_shares
#> 4419 2024-06-01 stamp_duty_shares
#> 4420 2024-07-01 stamp_duty_shares
#> 4421 2024-08-01 stamp_duty_shares
#> 4422 2024-09-01 stamp_duty_shares
#> 4423 2024-10-01 stamp_duty_shares
#> 4424 2024-11-01 stamp_duty_shares
#> 4425 2024-12-01 stamp_duty_shares
#> 4426 2025-01-01 stamp_duty_shares
#> 4427 2025-02-01 stamp_duty_shares
#> 4428 2025-03-01 stamp_duty_shares
#> 4429 2025-04-01 stamp_duty_shares
#> 4430 2025-05-01 stamp_duty_shares
#> 4431 2025-06-01 stamp_duty_shares
#> 4432 2025-07-01 stamp_duty_shares
#> 4433 2025-08-01 stamp_duty_shares
#> 4434 2025-09-01 stamp_duty_shares
#> 4435 2025-10-01 stamp_duty_shares
#> 4436 2025-11-01 stamp_duty_shares
#> 4437 2025-12-01 stamp_duty_shares
#> 4438 2026-01-01 stamp_duty_shares
#> 4439 2026-02-01 stamp_duty_shares
#> 4440 2026-03-01 stamp_duty_shares
#> 4441 2016-04-01 tobacco_duty
#> 4442 2016-05-01 tobacco_duty
#> 4443 2016-06-01 tobacco_duty
#> 4444 2016-07-01 tobacco_duty
#> 4445 2016-08-01 tobacco_duty
#> 4446 2016-09-01 tobacco_duty
#> 4447 2016-10-01 tobacco_duty
#> 4448 2016-11-01 tobacco_duty
#> 4449 2016-12-01 tobacco_duty
#> 4450 2017-01-01 tobacco_duty
#> 4451 2017-02-01 tobacco_duty
#> 4452 2017-03-01 tobacco_duty
#> 4453 2017-04-01 tobacco_duty
#> 4454 2017-05-01 tobacco_duty
#> 4455 2017-06-01 tobacco_duty
#> 4456 2017-07-01 tobacco_duty
#> 4457 2017-08-01 tobacco_duty
#> 4458 2017-09-01 tobacco_duty
#> 4459 2017-10-01 tobacco_duty
#> 4460 2017-11-01 tobacco_duty
#> 4461 2017-12-01 tobacco_duty
#> 4462 2018-01-01 tobacco_duty
#> 4463 2018-02-01 tobacco_duty
#> 4464 2018-03-01 tobacco_duty
#> 4465 2018-04-01 tobacco_duty
#> 4466 2018-05-01 tobacco_duty
#> 4467 2018-06-01 tobacco_duty
#> 4468 2018-07-01 tobacco_duty
#> 4469 2018-08-01 tobacco_duty
#> 4470 2018-09-01 tobacco_duty
#> 4471 2018-10-01 tobacco_duty
#> 4472 2018-11-01 tobacco_duty
#> 4473 2018-12-01 tobacco_duty
#> 4474 2019-01-01 tobacco_duty
#> 4475 2019-02-01 tobacco_duty
#> 4476 2019-03-01 tobacco_duty
#> 4477 2019-04-01 tobacco_duty
#> 4478 2019-05-01 tobacco_duty
#> 4479 2019-06-01 tobacco_duty
#> 4480 2019-07-01 tobacco_duty
#> 4481 2019-08-01 tobacco_duty
#> 4482 2019-09-01 tobacco_duty
#> 4483 2019-10-01 tobacco_duty
#> 4484 2019-11-01 tobacco_duty
#> 4485 2019-12-01 tobacco_duty
#> 4486 2020-01-01 tobacco_duty
#> 4487 2020-02-01 tobacco_duty
#> 4488 2020-03-01 tobacco_duty
#> 4489 2020-04-01 tobacco_duty
#> 4490 2020-05-01 tobacco_duty
#> 4491 2020-06-01 tobacco_duty
#> 4492 2020-07-01 tobacco_duty
#> 4493 2020-08-01 tobacco_duty
#> 4494 2020-09-01 tobacco_duty
#> 4495 2020-10-01 tobacco_duty
#> 4496 2020-11-01 tobacco_duty
#> 4497 2020-12-01 tobacco_duty
#> 4498 2021-01-01 tobacco_duty
#> 4499 2021-02-01 tobacco_duty
#> 4500 2021-03-01 tobacco_duty
#> 4501 2021-04-01 tobacco_duty
#> 4502 2021-05-01 tobacco_duty
#> 4503 2021-06-01 tobacco_duty
#> 4504 2021-07-01 tobacco_duty
#> 4505 2021-08-01 tobacco_duty
#> 4506 2021-09-01 tobacco_duty
#> 4507 2021-10-01 tobacco_duty
#> 4508 2021-11-01 tobacco_duty
#> 4509 2021-12-01 tobacco_duty
#> 4510 2022-01-01 tobacco_duty
#> 4511 2022-02-01 tobacco_duty
#> 4512 2022-03-01 tobacco_duty
#> 4513 2022-04-01 tobacco_duty
#> 4514 2022-05-01 tobacco_duty
#> 4515 2022-06-01 tobacco_duty
#> 4516 2022-07-01 tobacco_duty
#> 4517 2022-08-01 tobacco_duty
#> 4518 2022-09-01 tobacco_duty
#> 4519 2022-10-01 tobacco_duty
#> 4520 2022-11-01 tobacco_duty
#> 4521 2022-12-01 tobacco_duty
#> 4522 2023-01-01 tobacco_duty
#> 4523 2023-02-01 tobacco_duty
#> 4524 2023-03-01 tobacco_duty
#> 4525 2023-04-01 tobacco_duty
#> 4526 2023-05-01 tobacco_duty
#> 4527 2023-06-01 tobacco_duty
#> 4528 2023-07-01 tobacco_duty
#> 4529 2023-08-01 tobacco_duty
#> 4530 2023-09-01 tobacco_duty
#> 4531 2023-10-01 tobacco_duty
#> 4532 2023-11-01 tobacco_duty
#> 4533 2023-12-01 tobacco_duty
#> 4534 2024-01-01 tobacco_duty
#> 4535 2024-02-01 tobacco_duty
#> 4536 2024-03-01 tobacco_duty
#> 4537 2024-04-01 tobacco_duty
#> 4538 2024-05-01 tobacco_duty
#> 4539 2024-06-01 tobacco_duty
#> 4540 2024-07-01 tobacco_duty
#> 4541 2024-08-01 tobacco_duty
#> 4542 2024-09-01 tobacco_duty
#> 4543 2024-10-01 tobacco_duty
#> 4544 2024-11-01 tobacco_duty
#> 4545 2024-12-01 tobacco_duty
#> 4546 2025-01-01 tobacco_duty
#> 4547 2025-02-01 tobacco_duty
#> 4548 2025-03-01 tobacco_duty
#> 4549 2025-04-01 tobacco_duty
#> 4550 2025-05-01 tobacco_duty
#> 4551 2025-06-01 tobacco_duty
#> 4552 2025-07-01 tobacco_duty
#> 4553 2025-08-01 tobacco_duty
#> 4554 2025-09-01 tobacco_duty
#> 4555 2025-10-01 tobacco_duty
#> 4556 2025-11-01 tobacco_duty
#> 4557 2025-12-01 tobacco_duty
#> 4558 2026-01-01 tobacco_duty
#> 4559 2026-02-01 tobacco_duty
#> 4560 2026-03-01 tobacco_duty
#> 4561 2016-04-01 total_receipts
#> 4562 2016-05-01 total_receipts
#> 4563 2016-06-01 total_receipts
#> 4564 2016-07-01 total_receipts
#> 4565 2016-08-01 total_receipts
#> 4566 2016-09-01 total_receipts
#> 4567 2016-10-01 total_receipts
#> 4568 2016-11-01 total_receipts
#> 4569 2016-12-01 total_receipts
#> 4570 2017-01-01 total_receipts
#> 4571 2017-02-01 total_receipts
#> 4572 2017-03-01 total_receipts
#> 4573 2017-04-01 total_receipts
#> 4574 2017-05-01 total_receipts
#> 4575 2017-06-01 total_receipts
#> 4576 2017-07-01 total_receipts
#> 4577 2017-08-01 total_receipts
#> 4578 2017-09-01 total_receipts
#> 4579 2017-10-01 total_receipts
#> 4580 2017-11-01 total_receipts
#> 4581 2017-12-01 total_receipts
#> 4582 2018-01-01 total_receipts
#> 4583 2018-02-01 total_receipts
#> 4584 2018-03-01 total_receipts
#> 4585 2018-04-01 total_receipts
#> 4586 2018-05-01 total_receipts
#> 4587 2018-06-01 total_receipts
#> 4588 2018-07-01 total_receipts
#> 4589 2018-08-01 total_receipts
#> 4590 2018-09-01 total_receipts
#> 4591 2018-10-01 total_receipts
#> 4592 2018-11-01 total_receipts
#> 4593 2018-12-01 total_receipts
#> 4594 2019-01-01 total_receipts
#> 4595 2019-02-01 total_receipts
#> 4596 2019-03-01 total_receipts
#> 4597 2019-04-01 total_receipts
#> 4598 2019-05-01 total_receipts
#> 4599 2019-06-01 total_receipts
#> 4600 2019-07-01 total_receipts
#> 4601 2019-08-01 total_receipts
#> 4602 2019-09-01 total_receipts
#> 4603 2019-10-01 total_receipts
#> 4604 2019-11-01 total_receipts
#> 4605 2019-12-01 total_receipts
#> 4606 2020-01-01 total_receipts
#> 4607 2020-02-01 total_receipts
#> 4608 2020-03-01 total_receipts
#> 4609 2020-04-01 total_receipts
#> 4610 2020-05-01 total_receipts
#> 4611 2020-06-01 total_receipts
#> 4612 2020-07-01 total_receipts
#> 4613 2020-08-01 total_receipts
#> 4614 2020-09-01 total_receipts
#> 4615 2020-10-01 total_receipts
#> 4616 2020-11-01 total_receipts
#> 4617 2020-12-01 total_receipts
#> 4618 2021-01-01 total_receipts
#> 4619 2021-02-01 total_receipts
#> 4620 2021-03-01 total_receipts
#> 4621 2021-04-01 total_receipts
#> 4622 2021-05-01 total_receipts
#> 4623 2021-06-01 total_receipts
#> 4624 2021-07-01 total_receipts
#> 4625 2021-08-01 total_receipts
#> 4626 2021-09-01 total_receipts
#> 4627 2021-10-01 total_receipts
#> 4628 2021-11-01 total_receipts
#> 4629 2021-12-01 total_receipts
#> 4630 2022-01-01 total_receipts
#> 4631 2022-02-01 total_receipts
#> 4632 2022-03-01 total_receipts
#> 4633 2022-04-01 total_receipts
#> 4634 2022-05-01 total_receipts
#> 4635 2022-06-01 total_receipts
#> 4636 2022-07-01 total_receipts
#> 4637 2022-08-01 total_receipts
#> 4638 2022-09-01 total_receipts
#> 4639 2022-10-01 total_receipts
#> 4640 2022-11-01 total_receipts
#> 4641 2022-12-01 total_receipts
#> 4642 2023-01-01 total_receipts
#> 4643 2023-02-01 total_receipts
#> 4644 2023-03-01 total_receipts
#> 4645 2023-04-01 total_receipts
#> 4646 2023-05-01 total_receipts
#> 4647 2023-06-01 total_receipts
#> 4648 2023-07-01 total_receipts
#> 4649 2023-08-01 total_receipts
#> 4650 2023-09-01 total_receipts
#> 4651 2023-10-01 total_receipts
#> 4652 2023-11-01 total_receipts
#> 4653 2023-12-01 total_receipts
#> 4654 2024-01-01 total_receipts
#> 4655 2024-02-01 total_receipts
#> 4656 2024-03-01 total_receipts
#> 4657 2024-04-01 total_receipts
#> 4658 2024-05-01 total_receipts
#> 4659 2024-06-01 total_receipts
#> 4660 2024-07-01 total_receipts
#> 4661 2024-08-01 total_receipts
#> 4662 2024-09-01 total_receipts
#> 4663 2024-10-01 total_receipts
#> 4664 2024-11-01 total_receipts
#> 4665 2024-12-01 total_receipts
#> 4666 2025-01-01 total_receipts
#> 4667 2025-02-01 total_receipts
#> 4668 2025-03-01 total_receipts
#> 4669 2025-04-01 total_receipts
#> 4670 2025-05-01 total_receipts
#> 4671 2025-06-01 total_receipts
#> 4672 2025-07-01 total_receipts
#> 4673 2025-08-01 total_receipts
#> 4674 2025-09-01 total_receipts
#> 4675 2025-10-01 total_receipts
#> 4676 2025-11-01 total_receipts
#> 4677 2025-12-01 total_receipts
#> 4678 2026-01-01 total_receipts
#> 4679 2026-02-01 total_receipts
#> 4680 2026-03-01 total_receipts
#> 4681 2016-04-01 vat
#> 4682 2016-05-01 vat
#> 4683 2016-06-01 vat
#> 4684 2016-07-01 vat
#> 4685 2016-08-01 vat
#> 4686 2016-09-01 vat
#> 4687 2016-10-01 vat
#> 4688 2016-11-01 vat
#> 4689 2016-12-01 vat
#> 4690 2017-01-01 vat
#> 4691 2017-02-01 vat
#> 4692 2017-03-01 vat
#> 4693 2017-04-01 vat
#> 4694 2017-05-01 vat
#> 4695 2017-06-01 vat
#> 4696 2017-07-01 vat
#> 4697 2017-08-01 vat
#> 4698 2017-09-01 vat
#> 4699 2017-10-01 vat
#> 4700 2017-11-01 vat
#> 4701 2017-12-01 vat
#> 4702 2018-01-01 vat
#> 4703 2018-02-01 vat
#> 4704 2018-03-01 vat
#> 4705 2018-04-01 vat
#> 4706 2018-05-01 vat
#> 4707 2018-06-01 vat
#> 4708 2018-07-01 vat
#> 4709 2018-08-01 vat
#> 4710 2018-09-01 vat
#> 4711 2018-10-01 vat
#> 4712 2018-11-01 vat
#> 4713 2018-12-01 vat
#> 4714 2019-01-01 vat
#> 4715 2019-02-01 vat
#> 4716 2019-03-01 vat
#> 4717 2019-04-01 vat
#> 4718 2019-05-01 vat
#> 4719 2019-06-01 vat
#> 4720 2019-07-01 vat
#> 4721 2019-08-01 vat
#> 4722 2019-09-01 vat
#> 4723 2019-10-01 vat
#> 4724 2019-11-01 vat
#> 4725 2019-12-01 vat
#> 4726 2020-01-01 vat
#> 4727 2020-02-01 vat
#> 4728 2020-03-01 vat
#> 4729 2020-04-01 vat
#> 4730 2020-05-01 vat
#> 4731 2020-06-01 vat
#> 4732 2020-07-01 vat
#> 4733 2020-08-01 vat
#> 4734 2020-09-01 vat
#> 4735 2020-10-01 vat
#> 4736 2020-11-01 vat
#> 4737 2020-12-01 vat
#> 4738 2021-01-01 vat
#> 4739 2021-02-01 vat
#> 4740 2021-03-01 vat
#> 4741 2021-04-01 vat
#> 4742 2021-05-01 vat
#> 4743 2021-06-01 vat
#> 4744 2021-07-01 vat
#> 4745 2021-08-01 vat
#> 4746 2021-09-01 vat
#> 4747 2021-10-01 vat
#> 4748 2021-11-01 vat
#> 4749 2021-12-01 vat
#> 4750 2022-01-01 vat
#> 4751 2022-02-01 vat
#> 4752 2022-03-01 vat
#> 4753 2022-04-01 vat
#> 4754 2022-05-01 vat
#> 4755 2022-06-01 vat
#> 4756 2022-07-01 vat
#> 4757 2022-08-01 vat
#> 4758 2022-09-01 vat
#> 4759 2022-10-01 vat
#> 4760 2022-11-01 vat
#> 4761 2022-12-01 vat
#> 4762 2023-01-01 vat
#> 4763 2023-02-01 vat
#> 4764 2023-03-01 vat
#> 4765 2023-04-01 vat
#> 4766 2023-05-01 vat
#> 4767 2023-06-01 vat
#> 4768 2023-07-01 vat
#> 4769 2023-08-01 vat
#> 4770 2023-09-01 vat
#> 4771 2023-10-01 vat
#> 4772 2023-11-01 vat
#> 4773 2023-12-01 vat
#> 4774 2024-01-01 vat
#> 4775 2024-02-01 vat
#> 4776 2024-03-01 vat
#> 4777 2024-04-01 vat
#> 4778 2024-05-01 vat
#> 4779 2024-06-01 vat
#> 4780 2024-07-01 vat
#> 4781 2024-08-01 vat
#> 4782 2024-09-01 vat
#> 4783 2024-10-01 vat
#> 4784 2024-11-01 vat
#> 4785 2024-12-01 vat
#> 4786 2025-01-01 vat
#> 4787 2025-02-01 vat
#> 4788 2025-03-01 vat
#> 4789 2025-04-01 vat
#> 4790 2025-05-01 vat
#> 4791 2025-06-01 vat
#> 4792 2025-07-01 vat
#> 4793 2025-08-01 vat
#> 4794 2025-09-01 vat
#> 4795 2025-10-01 vat
#> 4796 2025-11-01 vat
#> 4797 2025-12-01 vat
#> 4798 2026-01-01 vat
#> 4799 2026-02-01 vat
#> 4800 2026-03-01 vat
#> 4801 2016-04-01 wine_duty
#> 4802 2016-05-01 wine_duty
#> 4803 2016-06-01 wine_duty
#> 4804 2016-07-01 wine_duty
#> 4805 2016-08-01 wine_duty
#> 4806 2016-09-01 wine_duty
#> 4807 2016-10-01 wine_duty
#> 4808 2016-11-01 wine_duty
#> 4809 2016-12-01 wine_duty
#> 4810 2017-01-01 wine_duty
#> 4811 2017-02-01 wine_duty
#> 4812 2017-03-01 wine_duty
#> 4813 2017-04-01 wine_duty
#> 4814 2017-05-01 wine_duty
#> 4815 2017-06-01 wine_duty
#> 4816 2017-07-01 wine_duty
#> 4817 2017-08-01 wine_duty
#> 4818 2017-09-01 wine_duty
#> 4819 2017-10-01 wine_duty
#> 4820 2017-11-01 wine_duty
#> 4821 2017-12-01 wine_duty
#> 4822 2018-01-01 wine_duty
#> 4823 2018-02-01 wine_duty
#> 4824 2018-03-01 wine_duty
#> 4825 2018-04-01 wine_duty
#> 4826 2018-05-01 wine_duty
#> 4827 2018-06-01 wine_duty
#> 4828 2018-07-01 wine_duty
#> 4829 2018-08-01 wine_duty
#> 4830 2018-09-01 wine_duty
#> 4831 2018-10-01 wine_duty
#> 4832 2018-11-01 wine_duty
#> 4833 2018-12-01 wine_duty
#> 4834 2019-01-01 wine_duty
#> 4835 2019-02-01 wine_duty
#> 4836 2019-03-01 wine_duty
#> 4837 2019-04-01 wine_duty
#> 4838 2019-05-01 wine_duty
#> 4839 2019-06-01 wine_duty
#> 4840 2019-07-01 wine_duty
#> 4841 2019-08-01 wine_duty
#> 4842 2019-09-01 wine_duty
#> 4843 2019-10-01 wine_duty
#> 4844 2019-11-01 wine_duty
#> 4845 2019-12-01 wine_duty
#> 4846 2020-01-01 wine_duty
#> 4847 2020-02-01 wine_duty
#> 4848 2020-03-01 wine_duty
#> 4849 2020-04-01 wine_duty
#> 4850 2020-05-01 wine_duty
#> 4851 2020-06-01 wine_duty
#> 4852 2020-07-01 wine_duty
#> 4853 2020-08-01 wine_duty
#> 4854 2020-09-01 wine_duty
#> 4855 2020-10-01 wine_duty
#> 4856 2020-11-01 wine_duty
#> 4857 2020-12-01 wine_duty
#> 4858 2021-01-01 wine_duty
#> 4859 2021-02-01 wine_duty
#> 4860 2021-03-01 wine_duty
#> 4861 2021-04-01 wine_duty
#> 4862 2021-05-01 wine_duty
#> 4863 2021-06-01 wine_duty
#> 4864 2021-07-01 wine_duty
#> 4865 2021-08-01 wine_duty
#> 4866 2021-09-01 wine_duty
#> 4867 2021-10-01 wine_duty
#> 4868 2021-11-01 wine_duty
#> 4869 2021-12-01 wine_duty
#> 4870 2022-01-01 wine_duty
#> 4871 2022-02-01 wine_duty
#> 4872 2022-03-01 wine_duty
#> 4873 2022-04-01 wine_duty
#> 4874 2022-05-01 wine_duty
#> 4875 2022-06-01 wine_duty
#> 4876 2022-07-01 wine_duty
#> 4877 2022-08-01 wine_duty
#> 4878 2022-09-01 wine_duty
#> 4879 2022-10-01 wine_duty
#> 4880 2022-11-01 wine_duty
#> 4881 2022-12-01 wine_duty
#> 4882 2023-01-01 wine_duty
#> 4883 2023-02-01 wine_duty
#> 4884 2023-03-01 wine_duty
#> 4885 2023-04-01 wine_duty
#> 4886 2023-05-01 wine_duty
#> 4887 2023-06-01 wine_duty
#> 4888 2023-07-01 wine_duty
#> 4889 2023-08-01 wine_duty
#> 4890 2023-09-01 wine_duty
#> 4891 2023-10-01 wine_duty
#> 4892 2023-11-01 wine_duty
#> 4893 2023-12-01 wine_duty
#> 4894 2024-01-01 wine_duty
#> 4895 2024-02-01 wine_duty
#> 4896 2024-03-01 wine_duty
#> 4897 2024-04-01 wine_duty
#> 4898 2024-05-01 wine_duty
#> 4899 2024-06-01 wine_duty
#> 4900 2024-07-01 wine_duty
#> 4901 2024-08-01 wine_duty
#> 4902 2024-09-01 wine_duty
#> 4903 2024-10-01 wine_duty
#> 4904 2024-11-01 wine_duty
#> 4905 2024-12-01 wine_duty
#> 4906 2025-01-01 wine_duty
#> 4907 2025-02-01 wine_duty
#> 4908 2025-03-01 wine_duty
#> 4909 2025-04-01 wine_duty
#> 4910 2025-05-01 wine_duty
#> 4911 2025-06-01 wine_duty
#> 4912 2025-07-01 wine_duty
#> 4913 2025-08-01 wine_duty
#> 4914 2025-09-01 wine_duty
#> 4915 2025-10-01 wine_duty
#> 4916 2025-11-01 wine_duty
#> 4917 2025-12-01 wine_duty
#> 4918 2026-01-01 wine_duty
#> 4919 2026-02-01 wine_duty
#> 4920 2026-03-01 wine_duty
#> description
#> 1 Aggregates Levy
#> 2 Aggregates Levy
#> 3 Aggregates Levy
#> 4 Aggregates Levy
#> 5 Aggregates Levy
#> 6 Aggregates Levy
#> 7 Aggregates Levy
#> 8 Aggregates Levy
#> 9 Aggregates Levy
#> 10 Aggregates Levy
#> 11 Aggregates Levy
#> 12 Aggregates Levy
#> 13 Aggregates Levy
#> 14 Aggregates Levy
#> 15 Aggregates Levy
#> 16 Aggregates Levy
#> 17 Aggregates Levy
#> 18 Aggregates Levy
#> 19 Aggregates Levy
#> 20 Aggregates Levy
#> 21 Aggregates Levy
#> 22 Aggregates Levy
#> 23 Aggregates Levy
#> 24 Aggregates Levy
#> 25 Aggregates Levy
#> 26 Aggregates Levy
#> 27 Aggregates Levy
#> 28 Aggregates Levy
#> 29 Aggregates Levy
#> 30 Aggregates Levy
#> 31 Aggregates Levy
#> 32 Aggregates Levy
#> 33 Aggregates Levy
#> 34 Aggregates Levy
#> 35 Aggregates Levy
#> 36 Aggregates Levy
#> 37 Aggregates Levy
#> 38 Aggregates Levy
#> 39 Aggregates Levy
#> 40 Aggregates Levy
#> 41 Aggregates Levy
#> 42 Aggregates Levy
#> 43 Aggregates Levy
#> 44 Aggregates Levy
#> 45 Aggregates Levy
#> 46 Aggregates Levy
#> 47 Aggregates Levy
#> 48 Aggregates Levy
#> 49 Aggregates Levy
#> 50 Aggregates Levy
#> 51 Aggregates Levy
#> 52 Aggregates Levy
#> 53 Aggregates Levy
#> 54 Aggregates Levy
#> 55 Aggregates Levy
#> 56 Aggregates Levy
#> 57 Aggregates Levy
#> 58 Aggregates Levy
#> 59 Aggregates Levy
#> 60 Aggregates Levy
#> 61 Aggregates Levy
#> 62 Aggregates Levy
#> 63 Aggregates Levy
#> 64 Aggregates Levy
#> 65 Aggregates Levy
#> 66 Aggregates Levy
#> 67 Aggregates Levy
#> 68 Aggregates Levy
#> 69 Aggregates Levy
#> 70 Aggregates Levy
#> 71 Aggregates Levy
#> 72 Aggregates Levy
#> 73 Aggregates Levy
#> 74 Aggregates Levy
#> 75 Aggregates Levy
#> 76 Aggregates Levy
#> 77 Aggregates Levy
#> 78 Aggregates Levy
#> 79 Aggregates Levy
#> 80 Aggregates Levy
#> 81 Aggregates Levy
#> 82 Aggregates Levy
#> 83 Aggregates Levy
#> 84 Aggregates Levy
#> 85 Aggregates Levy
#> 86 Aggregates Levy
#> 87 Aggregates Levy
#> 88 Aggregates Levy
#> 89 Aggregates Levy
#> 90 Aggregates Levy
#> 91 Aggregates Levy
#> 92 Aggregates Levy
#> 93 Aggregates Levy
#> 94 Aggregates Levy
#> 95 Aggregates Levy
#> 96 Aggregates Levy
#> 97 Aggregates Levy
#> 98 Aggregates Levy
#> 99 Aggregates Levy
#> 100 Aggregates Levy
#> 101 Aggregates Levy
#> 102 Aggregates Levy
#> 103 Aggregates Levy
#> 104 Aggregates Levy
#> 105 Aggregates Levy
#> 106 Aggregates Levy
#> 107 Aggregates Levy
#> 108 Aggregates Levy
#> 109 Aggregates Levy
#> 110 Aggregates Levy
#> 111 Aggregates Levy
#> 112 Aggregates Levy
#> 113 Aggregates Levy
#> 114 Aggregates Levy
#> 115 Aggregates Levy
#> 116 Aggregates Levy
#> 117 Aggregates Levy
#> 118 Aggregates Levy
#> 119 Aggregates Levy
#> 120 Aggregates Levy
#> 121 Air Passenger Duty
#> 122 Air Passenger Duty
#> 123 Air Passenger Duty
#> 124 Air Passenger Duty
#> 125 Air Passenger Duty
#> 126 Air Passenger Duty
#> 127 Air Passenger Duty
#> 128 Air Passenger Duty
#> 129 Air Passenger Duty
#> 130 Air Passenger Duty
#> 131 Air Passenger Duty
#> 132 Air Passenger Duty
#> 133 Air Passenger Duty
#> 134 Air Passenger Duty
#> 135 Air Passenger Duty
#> 136 Air Passenger Duty
#> 137 Air Passenger Duty
#> 138 Air Passenger Duty
#> 139 Air Passenger Duty
#> 140 Air Passenger Duty
#> 141 Air Passenger Duty
#> 142 Air Passenger Duty
#> 143 Air Passenger Duty
#> 144 Air Passenger Duty
#> 145 Air Passenger Duty
#> 146 Air Passenger Duty
#> 147 Air Passenger Duty
#> 148 Air Passenger Duty
#> 149 Air Passenger Duty
#> 150 Air Passenger Duty
#> 151 Air Passenger Duty
#> 152 Air Passenger Duty
#> 153 Air Passenger Duty
#> 154 Air Passenger Duty
#> 155 Air Passenger Duty
#> 156 Air Passenger Duty
#> 157 Air Passenger Duty
#> 158 Air Passenger Duty
#> 159 Air Passenger Duty
#> 160 Air Passenger Duty
#> 161 Air Passenger Duty
#> 162 Air Passenger Duty
#> 163 Air Passenger Duty
#> 164 Air Passenger Duty
#> 165 Air Passenger Duty
#> 166 Air Passenger Duty
#> 167 Air Passenger Duty
#> 168 Air Passenger Duty
#> 169 Air Passenger Duty
#> 170 Air Passenger Duty
#> 171 Air Passenger Duty
#> 172 Air Passenger Duty
#> 173 Air Passenger Duty
#> 174 Air Passenger Duty
#> 175 Air Passenger Duty
#> 176 Air Passenger Duty
#> 177 Air Passenger Duty
#> 178 Air Passenger Duty
#> 179 Air Passenger Duty
#> 180 Air Passenger Duty
#> 181 Air Passenger Duty
#> 182 Air Passenger Duty
#> 183 Air Passenger Duty
#> 184 Air Passenger Duty
#> 185 Air Passenger Duty
#> 186 Air Passenger Duty
#> 187 Air Passenger Duty
#> 188 Air Passenger Duty
#> 189 Air Passenger Duty
#> 190 Air Passenger Duty
#> 191 Air Passenger Duty
#> 192 Air Passenger Duty
#> 193 Air Passenger Duty
#> 194 Air Passenger Duty
#> 195 Air Passenger Duty
#> 196 Air Passenger Duty
#> 197 Air Passenger Duty
#> 198 Air Passenger Duty
#> 199 Air Passenger Duty
#> 200 Air Passenger Duty
#> 201 Air Passenger Duty
#> 202 Air Passenger Duty
#> 203 Air Passenger Duty
#> 204 Air Passenger Duty
#> 205 Air Passenger Duty
#> 206 Air Passenger Duty
#> 207 Air Passenger Duty
#> 208 Air Passenger Duty
#> 209 Air Passenger Duty
#> 210 Air Passenger Duty
#> 211 Air Passenger Duty
#> 212 Air Passenger Duty
#> 213 Air Passenger Duty
#> 214 Air Passenger Duty
#> 215 Air Passenger Duty
#> 216 Air Passenger Duty
#> 217 Air Passenger Duty
#> 218 Air Passenger Duty
#> 219 Air Passenger Duty
#> 220 Air Passenger Duty
#> 221 Air Passenger Duty
#> 222 Air Passenger Duty
#> 223 Air Passenger Duty
#> 224 Air Passenger Duty
#> 225 Air Passenger Duty
#> 226 Air Passenger Duty
#> 227 Air Passenger Duty
#> 228 Air Passenger Duty
#> 229 Air Passenger Duty
#> 230 Air Passenger Duty
#> 231 Air Passenger Duty
#> 232 Air Passenger Duty
#> 233 Air Passenger Duty
#> 234 Air Passenger Duty
#> 235 Air Passenger Duty
#> 236 Air Passenger Duty
#> 237 Air Passenger Duty
#> 238 Air Passenger Duty
#> 239 Air Passenger Duty
#> 240 Air Passenger Duty
#> 241 Apprenticeship Levy
#> 242 Apprenticeship Levy
#> 243 Apprenticeship Levy
#> 244 Apprenticeship Levy
#> 245 Apprenticeship Levy
#> 246 Apprenticeship Levy
#> 247 Apprenticeship Levy
#> 248 Apprenticeship Levy
#> 249 Apprenticeship Levy
#> 250 Apprenticeship Levy
#> 251 Apprenticeship Levy
#> 252 Apprenticeship Levy
#> 253 Apprenticeship Levy
#> 254 Apprenticeship Levy
#> 255 Apprenticeship Levy
#> 256 Apprenticeship Levy
#> 257 Apprenticeship Levy
#> 258 Apprenticeship Levy
#> 259 Apprenticeship Levy
#> 260 Apprenticeship Levy
#> 261 Apprenticeship Levy
#> 262 Apprenticeship Levy
#> 263 Apprenticeship Levy
#> 264 Apprenticeship Levy
#> 265 Apprenticeship Levy
#> 266 Apprenticeship Levy
#> 267 Apprenticeship Levy
#> 268 Apprenticeship Levy
#> 269 Apprenticeship Levy
#> 270 Apprenticeship Levy
#> 271 Apprenticeship Levy
#> 272 Apprenticeship Levy
#> 273 Apprenticeship Levy
#> 274 Apprenticeship Levy
#> 275 Apprenticeship Levy
#> 276 Apprenticeship Levy
#> 277 Apprenticeship Levy
#> 278 Apprenticeship Levy
#> 279 Apprenticeship Levy
#> 280 Apprenticeship Levy
#> 281 Apprenticeship Levy
#> 282 Apprenticeship Levy
#> 283 Apprenticeship Levy
#> 284 Apprenticeship Levy
#> 285 Apprenticeship Levy
#> 286 Apprenticeship Levy
#> 287 Apprenticeship Levy
#> 288 Apprenticeship Levy
#> 289 Apprenticeship Levy
#> 290 Apprenticeship Levy
#> 291 Apprenticeship Levy
#> 292 Apprenticeship Levy
#> 293 Apprenticeship Levy
#> 294 Apprenticeship Levy
#> 295 Apprenticeship Levy
#> 296 Apprenticeship Levy
#> 297 Apprenticeship Levy
#> 298 Apprenticeship Levy
#> 299 Apprenticeship Levy
#> 300 Apprenticeship Levy
#> 301 Apprenticeship Levy
#> 302 Apprenticeship Levy
#> 303 Apprenticeship Levy
#> 304 Apprenticeship Levy
#> 305 Apprenticeship Levy
#> 306 Apprenticeship Levy
#> 307 Apprenticeship Levy
#> 308 Apprenticeship Levy
#> 309 Apprenticeship Levy
#> 310 Apprenticeship Levy
#> 311 Apprenticeship Levy
#> 312 Apprenticeship Levy
#> 313 Apprenticeship Levy
#> 314 Apprenticeship Levy
#> 315 Apprenticeship Levy
#> 316 Apprenticeship Levy
#> 317 Apprenticeship Levy
#> 318 Apprenticeship Levy
#> 319 Apprenticeship Levy
#> 320 Apprenticeship Levy
#> 321 Apprenticeship Levy
#> 322 Apprenticeship Levy
#> 323 Apprenticeship Levy
#> 324 Apprenticeship Levy
#> 325 Apprenticeship Levy
#> 326 Apprenticeship Levy
#> 327 Apprenticeship Levy
#> 328 Apprenticeship Levy
#> 329 Apprenticeship Levy
#> 330 Apprenticeship Levy
#> 331 Apprenticeship Levy
#> 332 Apprenticeship Levy
#> 333 Apprenticeship Levy
#> 334 Apprenticeship Levy
#> 335 Apprenticeship Levy
#> 336 Apprenticeship Levy
#> 337 Apprenticeship Levy
#> 338 Apprenticeship Levy
#> 339 Apprenticeship Levy
#> 340 Apprenticeship Levy
#> 341 Apprenticeship Levy
#> 342 Apprenticeship Levy
#> 343 Apprenticeship Levy
#> 344 Apprenticeship Levy
#> 345 Apprenticeship Levy
#> 346 Apprenticeship Levy
#> 347 Apprenticeship Levy
#> 348 Apprenticeship Levy
#> 349 Apprenticeship Levy
#> 350 Apprenticeship Levy
#> 351 Apprenticeship Levy
#> 352 Apprenticeship Levy
#> 353 Apprenticeship Levy
#> 354 Apprenticeship Levy
#> 355 Apprenticeship Levy
#> 356 Apprenticeship Levy
#> 357 Apprenticeship Levy
#> 358 Apprenticeship Levy
#> 359 Apprenticeship Levy
#> 360 Apprenticeship Levy
#> 361 Annual Tax on Enveloped Dwellings
#> 362 Annual Tax on Enveloped Dwellings
#> 363 Annual Tax on Enveloped Dwellings
#> 364 Annual Tax on Enveloped Dwellings
#> 365 Annual Tax on Enveloped Dwellings
#> 366 Annual Tax on Enveloped Dwellings
#> 367 Annual Tax on Enveloped Dwellings
#> 368 Annual Tax on Enveloped Dwellings
#> 369 Annual Tax on Enveloped Dwellings
#> 370 Annual Tax on Enveloped Dwellings
#> 371 Annual Tax on Enveloped Dwellings
#> 372 Annual Tax on Enveloped Dwellings
#> 373 Annual Tax on Enveloped Dwellings
#> 374 Annual Tax on Enveloped Dwellings
#> 375 Annual Tax on Enveloped Dwellings
#> 376 Annual Tax on Enveloped Dwellings
#> 377 Annual Tax on Enveloped Dwellings
#> 378 Annual Tax on Enveloped Dwellings
#> 379 Annual Tax on Enveloped Dwellings
#> 380 Annual Tax on Enveloped Dwellings
#> 381 Annual Tax on Enveloped Dwellings
#> 382 Annual Tax on Enveloped Dwellings
#> 383 Annual Tax on Enveloped Dwellings
#> 384 Annual Tax on Enveloped Dwellings
#> 385 Annual Tax on Enveloped Dwellings
#> 386 Annual Tax on Enveloped Dwellings
#> 387 Annual Tax on Enveloped Dwellings
#> 388 Annual Tax on Enveloped Dwellings
#> 389 Annual Tax on Enveloped Dwellings
#> 390 Annual Tax on Enveloped Dwellings
#> 391 Annual Tax on Enveloped Dwellings
#> 392 Annual Tax on Enveloped Dwellings
#> 393 Annual Tax on Enveloped Dwellings
#> 394 Annual Tax on Enveloped Dwellings
#> 395 Annual Tax on Enveloped Dwellings
#> 396 Annual Tax on Enveloped Dwellings
#> 397 Annual Tax on Enveloped Dwellings
#> 398 Annual Tax on Enveloped Dwellings
#> 399 Annual Tax on Enveloped Dwellings
#> 400 Annual Tax on Enveloped Dwellings
#> 401 Annual Tax on Enveloped Dwellings
#> 402 Annual Tax on Enveloped Dwellings
#> 403 Annual Tax on Enveloped Dwellings
#> 404 Annual Tax on Enveloped Dwellings
#> 405 Annual Tax on Enveloped Dwellings
#> 406 Annual Tax on Enveloped Dwellings
#> 407 Annual Tax on Enveloped Dwellings
#> 408 Annual Tax on Enveloped Dwellings
#> 409 Annual Tax on Enveloped Dwellings
#> 410 Annual Tax on Enveloped Dwellings
#> 411 Annual Tax on Enveloped Dwellings
#> 412 Annual Tax on Enveloped Dwellings
#> 413 Annual Tax on Enveloped Dwellings
#> 414 Annual Tax on Enveloped Dwellings
#> 415 Annual Tax on Enveloped Dwellings
#> 416 Annual Tax on Enveloped Dwellings
#> 417 Annual Tax on Enveloped Dwellings
#> 418 Annual Tax on Enveloped Dwellings
#> 419 Annual Tax on Enveloped Dwellings
#> 420 Annual Tax on Enveloped Dwellings
#> 421 Annual Tax on Enveloped Dwellings
#> 422 Annual Tax on Enveloped Dwellings
#> 423 Annual Tax on Enveloped Dwellings
#> 424 Annual Tax on Enveloped Dwellings
#> 425 Annual Tax on Enveloped Dwellings
#> 426 Annual Tax on Enveloped Dwellings
#> 427 Annual Tax on Enveloped Dwellings
#> 428 Annual Tax on Enveloped Dwellings
#> 429 Annual Tax on Enveloped Dwellings
#> 430 Annual Tax on Enveloped Dwellings
#> 431 Annual Tax on Enveloped Dwellings
#> 432 Annual Tax on Enveloped Dwellings
#> 433 Annual Tax on Enveloped Dwellings
#> 434 Annual Tax on Enveloped Dwellings
#> 435 Annual Tax on Enveloped Dwellings
#> 436 Annual Tax on Enveloped Dwellings
#> 437 Annual Tax on Enveloped Dwellings
#> 438 Annual Tax on Enveloped Dwellings
#> 439 Annual Tax on Enveloped Dwellings
#> 440 Annual Tax on Enveloped Dwellings
#> 441 Annual Tax on Enveloped Dwellings
#> 442 Annual Tax on Enveloped Dwellings
#> 443 Annual Tax on Enveloped Dwellings
#> 444 Annual Tax on Enveloped Dwellings
#> 445 Annual Tax on Enveloped Dwellings
#> 446 Annual Tax on Enveloped Dwellings
#> 447 Annual Tax on Enveloped Dwellings
#> 448 Annual Tax on Enveloped Dwellings
#> 449 Annual Tax on Enveloped Dwellings
#> 450 Annual Tax on Enveloped Dwellings
#> 451 Annual Tax on Enveloped Dwellings
#> 452 Annual Tax on Enveloped Dwellings
#> 453 Annual Tax on Enveloped Dwellings
#> 454 Annual Tax on Enveloped Dwellings
#> 455 Annual Tax on Enveloped Dwellings
#> 456 Annual Tax on Enveloped Dwellings
#> 457 Annual Tax on Enveloped Dwellings
#> 458 Annual Tax on Enveloped Dwellings
#> 459 Annual Tax on Enveloped Dwellings
#> 460 Annual Tax on Enveloped Dwellings
#> 461 Annual Tax on Enveloped Dwellings
#> 462 Annual Tax on Enveloped Dwellings
#> 463 Annual Tax on Enveloped Dwellings
#> 464 Annual Tax on Enveloped Dwellings
#> 465 Annual Tax on Enveloped Dwellings
#> 466 Annual Tax on Enveloped Dwellings
#> 467 Annual Tax on Enveloped Dwellings
#> 468 Annual Tax on Enveloped Dwellings
#> 469 Annual Tax on Enveloped Dwellings
#> 470 Annual Tax on Enveloped Dwellings
#> 471 Annual Tax on Enveloped Dwellings
#> 472 Annual Tax on Enveloped Dwellings
#> 473 Annual Tax on Enveloped Dwellings
#> 474 Annual Tax on Enveloped Dwellings
#> 475 Annual Tax on Enveloped Dwellings
#> 476 Annual Tax on Enveloped Dwellings
#> 477 Annual Tax on Enveloped Dwellings
#> 478 Annual Tax on Enveloped Dwellings
#> 479 Annual Tax on Enveloped Dwellings
#> 480 Annual Tax on Enveloped Dwellings
#> 481 Bank Levy
#> 482 Bank Levy
#> 483 Bank Levy
#> 484 Bank Levy
#> 485 Bank Levy
#> 486 Bank Levy
#> 487 Bank Levy
#> 488 Bank Levy
#> 489 Bank Levy
#> 490 Bank Levy
#> 491 Bank Levy
#> 492 Bank Levy
#> 493 Bank Levy
#> 494 Bank Levy
#> 495 Bank Levy
#> 496 Bank Levy
#> 497 Bank Levy
#> 498 Bank Levy
#> 499 Bank Levy
#> 500 Bank Levy
#> 501 Bank Levy
#> 502 Bank Levy
#> 503 Bank Levy
#> 504 Bank Levy
#> 505 Bank Levy
#> 506 Bank Levy
#> 507 Bank Levy
#> 508 Bank Levy
#> 509 Bank Levy
#> 510 Bank Levy
#> 511 Bank Levy
#> 512 Bank Levy
#> 513 Bank Levy
#> 514 Bank Levy
#> 515 Bank Levy
#> 516 Bank Levy
#> 517 Bank Levy
#> 518 Bank Levy
#> 519 Bank Levy
#> 520 Bank Levy
#> 521 Bank Levy
#> 522 Bank Levy
#> 523 Bank Levy
#> 524 Bank Levy
#> 525 Bank Levy
#> 526 Bank Levy
#> 527 Bank Levy
#> 528 Bank Levy
#> 529 Bank Levy
#> 530 Bank Levy
#> 531 Bank Levy
#> 532 Bank Levy
#> 533 Bank Levy
#> 534 Bank Levy
#> 535 Bank Levy
#> 536 Bank Levy
#> 537 Bank Levy
#> 538 Bank Levy
#> 539 Bank Levy
#> 540 Bank Levy
#> 541 Bank Levy
#> 542 Bank Levy
#> 543 Bank Levy
#> 544 Bank Levy
#> 545 Bank Levy
#> 546 Bank Levy
#> 547 Bank Levy
#> 548 Bank Levy
#> 549 Bank Levy
#> 550 Bank Levy
#> 551 Bank Levy
#> 552 Bank Levy
#> 553 Bank Levy
#> 554 Bank Levy
#> 555 Bank Levy
#> 556 Bank Levy
#> 557 Bank Levy
#> 558 Bank Levy
#> 559 Bank Levy
#> 560 Bank Levy
#> 561 Bank Levy
#> 562 Bank Levy
#> 563 Bank Levy
#> 564 Bank Levy
#> 565 Bank Levy
#> 566 Bank Levy
#> 567 Bank Levy
#> 568 Bank Levy
#> 569 Bank Levy
#> 570 Bank Levy
#> 571 Bank Levy
#> 572 Bank Levy
#> 573 Bank Levy
#> 574 Bank Levy
#> 575 Bank Levy
#> 576 Bank Levy
#> 577 Bank Levy
#> 578 Bank Levy
#> 579 Bank Levy
#> 580 Bank Levy
#> 581 Bank Levy
#> 582 Bank Levy
#> 583 Bank Levy
#> 584 Bank Levy
#> 585 Bank Levy
#> 586 Bank Levy
#> 587 Bank Levy
#> 588 Bank Levy
#> 589 Bank Levy
#> 590 Bank Levy
#> 591 Bank Levy
#> 592 Bank Levy
#> 593 Bank Levy
#> 594 Bank Levy
#> 595 Bank Levy
#> 596 Bank Levy
#> 597 Bank Levy
#> 598 Bank Levy
#> 599 Bank Levy
#> 600 Bank Levy
#> 601 Bank Payroll Tax
#> 602 Bank Payroll Tax
#> 603 Bank Payroll Tax
#> 604 Bank Payroll Tax
#> 605 Bank Payroll Tax
#> 606 Bank Payroll Tax
#> 607 Bank Payroll Tax
#> 608 Bank Payroll Tax
#> 609 Bank Payroll Tax
#> 610 Bank Payroll Tax
#> 611 Bank Payroll Tax
#> 612 Bank Payroll Tax
#> 613 Bank Payroll Tax
#> 614 Bank Payroll Tax
#> 615 Bank Payroll Tax
#> 616 Bank Payroll Tax
#> 617 Bank Payroll Tax
#> 618 Bank Payroll Tax
#> 619 Bank Payroll Tax
#> 620 Bank Payroll Tax
#> 621 Bank Payroll Tax
#> 622 Bank Payroll Tax
#> 623 Bank Payroll Tax
#> 624 Bank Payroll Tax
#> 625 Bank Payroll Tax
#> 626 Bank Payroll Tax
#> 627 Bank Payroll Tax
#> 628 Bank Payroll Tax
#> 629 Bank Payroll Tax
#> 630 Bank Payroll Tax
#> 631 Bank Payroll Tax
#> 632 Bank Payroll Tax
#> 633 Bank Payroll Tax
#> 634 Bank Payroll Tax
#> 635 Bank Payroll Tax
#> 636 Bank Payroll Tax
#> 637 Bank Payroll Tax
#> 638 Bank Payroll Tax
#> 639 Bank Payroll Tax
#> 640 Bank Payroll Tax
#> 641 Bank Payroll Tax
#> 642 Bank Payroll Tax
#> 643 Bank Payroll Tax
#> 644 Bank Payroll Tax
#> 645 Bank Payroll Tax
#> 646 Bank Payroll Tax
#> 647 Bank Payroll Tax
#> 648 Bank Payroll Tax
#> 649 Bank Payroll Tax
#> 650 Bank Payroll Tax
#> 651 Bank Payroll Tax
#> 652 Bank Payroll Tax
#> 653 Bank Payroll Tax
#> 654 Bank Payroll Tax
#> 655 Bank Payroll Tax
#> 656 Bank Payroll Tax
#> 657 Bank Payroll Tax
#> 658 Bank Payroll Tax
#> 659 Bank Payroll Tax
#> 660 Bank Payroll Tax
#> 661 Bank Payroll Tax
#> 662 Bank Payroll Tax
#> 663 Bank Payroll Tax
#> 664 Bank Payroll Tax
#> 665 Bank Payroll Tax
#> 666 Bank Payroll Tax
#> 667 Bank Payroll Tax
#> 668 Bank Payroll Tax
#> 669 Bank Payroll Tax
#> 670 Bank Payroll Tax
#> 671 Bank Payroll Tax
#> 672 Bank Payroll Tax
#> 673 Bank Payroll Tax
#> 674 Bank Payroll Tax
#> 675 Bank Payroll Tax
#> 676 Bank Payroll Tax
#> 677 Bank Payroll Tax
#> 678 Bank Payroll Tax
#> 679 Bank Payroll Tax
#> 680 Bank Payroll Tax
#> 681 Bank Payroll Tax
#> 682 Bank Payroll Tax
#> 683 Bank Payroll Tax
#> 684 Bank Payroll Tax
#> 685 Bank Payroll Tax
#> 686 Bank Payroll Tax
#> 687 Bank Payroll Tax
#> 688 Bank Payroll Tax
#> 689 Bank Payroll Tax
#> 690 Bank Payroll Tax
#> 691 Bank Payroll Tax
#> 692 Bank Payroll Tax
#> 693 Bank Payroll Tax
#> 694 Bank Payroll Tax
#> 695 Bank Payroll Tax
#> 696 Bank Payroll Tax
#> 697 Bank Payroll Tax
#> 698 Bank Payroll Tax
#> 699 Bank Payroll Tax
#> 700 Bank Payroll Tax
#> 701 Bank Payroll Tax
#> 702 Bank Payroll Tax
#> 703 Bank Payroll Tax
#> 704 Bank Payroll Tax
#> 705 Bank Payroll Tax
#> 706 Bank Payroll Tax
#> 707 Bank Payroll Tax
#> 708 Bank Payroll Tax
#> 709 Bank Payroll Tax
#> 710 Bank Payroll Tax
#> 711 Bank Payroll Tax
#> 712 Bank Payroll Tax
#> 713 Bank Payroll Tax
#> 714 Bank Payroll Tax
#> 715 Bank Payroll Tax
#> 716 Bank Payroll Tax
#> 717 Bank Payroll Tax
#> 718 Bank Payroll Tax
#> 719 Bank Payroll Tax
#> 720 Bank Payroll Tax
#> 721 Bank Surcharge
#> 722 Bank Surcharge
#> 723 Bank Surcharge
#> 724 Bank Surcharge
#> 725 Bank Surcharge
#> 726 Bank Surcharge
#> 727 Bank Surcharge
#> 728 Bank Surcharge
#> 729 Bank Surcharge
#> 730 Bank Surcharge
#> 731 Bank Surcharge
#> 732 Bank Surcharge
#> 733 Bank Surcharge
#> 734 Bank Surcharge
#> 735 Bank Surcharge
#> 736 Bank Surcharge
#> 737 Bank Surcharge
#> 738 Bank Surcharge
#> 739 Bank Surcharge
#> 740 Bank Surcharge
#> 741 Bank Surcharge
#> 742 Bank Surcharge
#> 743 Bank Surcharge
#> 744 Bank Surcharge
#> 745 Bank Surcharge
#> 746 Bank Surcharge
#> 747 Bank Surcharge
#> 748 Bank Surcharge
#> 749 Bank Surcharge
#> 750 Bank Surcharge
#> 751 Bank Surcharge
#> 752 Bank Surcharge
#> 753 Bank Surcharge
#> 754 Bank Surcharge
#> 755 Bank Surcharge
#> 756 Bank Surcharge
#> 757 Bank Surcharge
#> 758 Bank Surcharge
#> 759 Bank Surcharge
#> 760 Bank Surcharge
#> 761 Bank Surcharge
#> 762 Bank Surcharge
#> 763 Bank Surcharge
#> 764 Bank Surcharge
#> 765 Bank Surcharge
#> 766 Bank Surcharge
#> 767 Bank Surcharge
#> 768 Bank Surcharge
#> 769 Bank Surcharge
#> 770 Bank Surcharge
#> 771 Bank Surcharge
#> 772 Bank Surcharge
#> 773 Bank Surcharge
#> 774 Bank Surcharge
#> 775 Bank Surcharge
#> 776 Bank Surcharge
#> 777 Bank Surcharge
#> 778 Bank Surcharge
#> 779 Bank Surcharge
#> 780 Bank Surcharge
#> 781 Bank Surcharge
#> 782 Bank Surcharge
#> 783 Bank Surcharge
#> 784 Bank Surcharge
#> 785 Bank Surcharge
#> 786 Bank Surcharge
#> 787 Bank Surcharge
#> 788 Bank Surcharge
#> 789 Bank Surcharge
#> 790 Bank Surcharge
#> 791 Bank Surcharge
#> 792 Bank Surcharge
#> 793 Bank Surcharge
#> 794 Bank Surcharge
#> 795 Bank Surcharge
#> 796 Bank Surcharge
#> 797 Bank Surcharge
#> 798 Bank Surcharge
#> 799 Bank Surcharge
#> 800 Bank Surcharge
#> 801 Bank Surcharge
#> 802 Bank Surcharge
#> 803 Bank Surcharge
#> 804 Bank Surcharge
#> 805 Bank Surcharge
#> 806 Bank Surcharge
#> 807 Bank Surcharge
#> 808 Bank Surcharge
#> 809 Bank Surcharge
#> 810 Bank Surcharge
#> 811 Bank Surcharge
#> 812 Bank Surcharge
#> 813 Bank Surcharge
#> 814 Bank Surcharge
#> 815 Bank Surcharge
#> 816 Bank Surcharge
#> 817 Bank Surcharge
#> 818 Bank Surcharge
#> 819 Bank Surcharge
#> 820 Bank Surcharge
#> 821 Bank Surcharge
#> 822 Bank Surcharge
#> 823 Bank Surcharge
#> 824 Bank Surcharge
#> 825 Bank Surcharge
#> 826 Bank Surcharge
#> 827 Bank Surcharge
#> 828 Bank Surcharge
#> 829 Bank Surcharge
#> 830 Bank Surcharge
#> 831 Bank Surcharge
#> 832 Bank Surcharge
#> 833 Bank Surcharge
#> 834 Bank Surcharge
#> 835 Bank Surcharge
#> 836 Bank Surcharge
#> 837 Bank Surcharge
#> 838 Bank Surcharge
#> 839 Bank Surcharge
#> 840 Bank Surcharge
#> 841 Beer Duties
#> 842 Beer Duties
#> 843 Beer Duties
#> 844 Beer Duties
#> 845 Beer Duties
#> 846 Beer Duties
#> 847 Beer Duties
#> 848 Beer Duties
#> 849 Beer Duties
#> 850 Beer Duties
#> 851 Beer Duties
#> 852 Beer Duties
#> 853 Beer Duties
#> 854 Beer Duties
#> 855 Beer Duties
#> 856 Beer Duties
#> 857 Beer Duties
#> 858 Beer Duties
#> 859 Beer Duties
#> 860 Beer Duties
#> 861 Beer Duties
#> 862 Beer Duties
#> 863 Beer Duties
#> 864 Beer Duties
#> 865 Beer Duties
#> 866 Beer Duties
#> 867 Beer Duties
#> 868 Beer Duties
#> 869 Beer Duties
#> 870 Beer Duties
#> 871 Beer Duties
#> 872 Beer Duties
#> 873 Beer Duties
#> 874 Beer Duties
#> 875 Beer Duties
#> 876 Beer Duties
#> 877 Beer Duties
#> 878 Beer Duties
#> 879 Beer Duties
#> 880 Beer Duties
#> 881 Beer Duties
#> 882 Beer Duties
#> 883 Beer Duties
#> 884 Beer Duties
#> 885 Beer Duties
#> 886 Beer Duties
#> 887 Beer Duties
#> 888 Beer Duties
#> 889 Beer Duties
#> 890 Beer Duties
#> 891 Beer Duties
#> 892 Beer Duties
#> 893 Beer Duties
#> 894 Beer Duties
#> 895 Beer Duties
#> 896 Beer Duties
#> 897 Beer Duties
#> 898 Beer Duties
#> 899 Beer Duties
#> 900 Beer Duties
#> 901 Beer Duties
#> 902 Beer Duties
#> 903 Beer Duties
#> 904 Beer Duties
#> 905 Beer Duties
#> 906 Beer Duties
#> 907 Beer Duties
#> 908 Beer Duties
#> 909 Beer Duties
#> 910 Beer Duties
#> 911 Beer Duties
#> 912 Beer Duties
#> 913 Beer Duties
#> 914 Beer Duties
#> 915 Beer Duties
#> 916 Beer Duties
#> 917 Beer Duties
#> 918 Beer Duties
#> 919 Beer Duties
#> 920 Beer Duties
#> 921 Beer Duties
#> 922 Beer Duties
#> 923 Beer Duties
#> 924 Beer Duties
#> 925 Beer Duties
#> 926 Beer Duties
#> 927 Beer Duties
#> 928 Beer Duties
#> 929 Beer Duties
#> 930 Beer Duties
#> 931 Beer Duties
#> 932 Beer Duties
#> 933 Beer Duties
#> 934 Beer Duties
#> 935 Beer Duties
#> 936 Beer Duties
#> 937 Beer Duties
#> 938 Beer Duties
#> 939 Beer Duties
#> 940 Beer Duties
#> 941 Beer Duties
#> 942 Beer Duties
#> 943 Beer Duties
#> 944 Beer Duties
#> 945 Beer Duties
#> 946 Beer Duties
#> 947 Beer Duties
#> 948 Beer Duties
#> 949 Beer Duties
#> 950 Beer Duties
#> 951 Beer Duties
#> 952 Beer Duties
#> 953 Beer Duties
#> 954 Beer Duties
#> 955 Beer Duties
#> 956 Beer Duties
#> 957 Beer Duties
#> 958 Beer Duties
#> 959 Beer Duties
#> 960 Beer Duties
#> 961 Capital Gains Tax
#> 962 Capital Gains Tax
#> 963 Capital Gains Tax
#> 964 Capital Gains Tax
#> 965 Capital Gains Tax
#> 966 Capital Gains Tax
#> 967 Capital Gains Tax
#> 968 Capital Gains Tax
#> 969 Capital Gains Tax
#> 970 Capital Gains Tax
#> 971 Capital Gains Tax
#> 972 Capital Gains Tax
#> 973 Capital Gains Tax
#> 974 Capital Gains Tax
#> 975 Capital Gains Tax
#> 976 Capital Gains Tax
#> 977 Capital Gains Tax
#> 978 Capital Gains Tax
#> 979 Capital Gains Tax
#> 980 Capital Gains Tax
#> 981 Capital Gains Tax
#> 982 Capital Gains Tax
#> 983 Capital Gains Tax
#> 984 Capital Gains Tax
#> 985 Capital Gains Tax
#> 986 Capital Gains Tax
#> 987 Capital Gains Tax
#> 988 Capital Gains Tax
#> 989 Capital Gains Tax
#> 990 Capital Gains Tax
#> 991 Capital Gains Tax
#> 992 Capital Gains Tax
#> 993 Capital Gains Tax
#> 994 Capital Gains Tax
#> 995 Capital Gains Tax
#> 996 Capital Gains Tax
#> 997 Capital Gains Tax
#> 998 Capital Gains Tax
#> 999 Capital Gains Tax
#> 1000 Capital Gains Tax
#> 1001 Capital Gains Tax
#> 1002 Capital Gains Tax
#> 1003 Capital Gains Tax
#> 1004 Capital Gains Tax
#> 1005 Capital Gains Tax
#> 1006 Capital Gains Tax
#> 1007 Capital Gains Tax
#> 1008 Capital Gains Tax
#> 1009 Capital Gains Tax
#> 1010 Capital Gains Tax
#> 1011 Capital Gains Tax
#> 1012 Capital Gains Tax
#> 1013 Capital Gains Tax
#> 1014 Capital Gains Tax
#> 1015 Capital Gains Tax
#> 1016 Capital Gains Tax
#> 1017 Capital Gains Tax
#> 1018 Capital Gains Tax
#> 1019 Capital Gains Tax
#> 1020 Capital Gains Tax
#> 1021 Capital Gains Tax
#> 1022 Capital Gains Tax
#> 1023 Capital Gains Tax
#> 1024 Capital Gains Tax
#> 1025 Capital Gains Tax
#> 1026 Capital Gains Tax
#> 1027 Capital Gains Tax
#> 1028 Capital Gains Tax
#> 1029 Capital Gains Tax
#> 1030 Capital Gains Tax
#> 1031 Capital Gains Tax
#> 1032 Capital Gains Tax
#> 1033 Capital Gains Tax
#> 1034 Capital Gains Tax
#> 1035 Capital Gains Tax
#> 1036 Capital Gains Tax
#> 1037 Capital Gains Tax
#> 1038 Capital Gains Tax
#> 1039 Capital Gains Tax
#> 1040 Capital Gains Tax
#> 1041 Capital Gains Tax
#> 1042 Capital Gains Tax
#> 1043 Capital Gains Tax
#> 1044 Capital Gains Tax
#> 1045 Capital Gains Tax
#> 1046 Capital Gains Tax
#> 1047 Capital Gains Tax
#> 1048 Capital Gains Tax
#> 1049 Capital Gains Tax
#> 1050 Capital Gains Tax
#> 1051 Capital Gains Tax
#> 1052 Capital Gains Tax
#> 1053 Capital Gains Tax
#> 1054 Capital Gains Tax
#> 1055 Capital Gains Tax
#> 1056 Capital Gains Tax
#> 1057 Capital Gains Tax
#> 1058 Capital Gains Tax
#> 1059 Capital Gains Tax
#> 1060 Capital Gains Tax
#> 1061 Capital Gains Tax
#> 1062 Capital Gains Tax
#> 1063 Capital Gains Tax
#> 1064 Capital Gains Tax
#> 1065 Capital Gains Tax
#> 1066 Capital Gains Tax
#> 1067 Capital Gains Tax
#> 1068 Capital Gains Tax
#> 1069 Capital Gains Tax
#> 1070 Capital Gains Tax
#> 1071 Capital Gains Tax
#> 1072 Capital Gains Tax
#> 1073 Capital Gains Tax
#> 1074 Capital Gains Tax
#> 1075 Capital Gains Tax
#> 1076 Capital Gains Tax
#> 1077 Capital Gains Tax
#> 1078 Capital Gains Tax
#> 1079 Capital Gains Tax
#> 1080 Capital Gains Tax
#> 1081 Cider and Perry Duties
#> 1082 Cider and Perry Duties
#> 1083 Cider and Perry Duties
#> 1084 Cider and Perry Duties
#> 1085 Cider and Perry Duties
#> 1086 Cider and Perry Duties
#> 1087 Cider and Perry Duties
#> 1088 Cider and Perry Duties
#> 1089 Cider and Perry Duties
#> 1090 Cider and Perry Duties
#> 1091 Cider and Perry Duties
#> 1092 Cider and Perry Duties
#> 1093 Cider and Perry Duties
#> 1094 Cider and Perry Duties
#> 1095 Cider and Perry Duties
#> 1096 Cider and Perry Duties
#> 1097 Cider and Perry Duties
#> 1098 Cider and Perry Duties
#> 1099 Cider and Perry Duties
#> 1100 Cider and Perry Duties
#> 1101 Cider and Perry Duties
#> 1102 Cider and Perry Duties
#> 1103 Cider and Perry Duties
#> 1104 Cider and Perry Duties
#> 1105 Cider and Perry Duties
#> 1106 Cider and Perry Duties
#> 1107 Cider and Perry Duties
#> 1108 Cider and Perry Duties
#> 1109 Cider and Perry Duties
#> 1110 Cider and Perry Duties
#> 1111 Cider and Perry Duties
#> 1112 Cider and Perry Duties
#> 1113 Cider and Perry Duties
#> 1114 Cider and Perry Duties
#> 1115 Cider and Perry Duties
#> 1116 Cider and Perry Duties
#> 1117 Cider and Perry Duties
#> 1118 Cider and Perry Duties
#> 1119 Cider and Perry Duties
#> 1120 Cider and Perry Duties
#> 1121 Cider and Perry Duties
#> 1122 Cider and Perry Duties
#> 1123 Cider and Perry Duties
#> 1124 Cider and Perry Duties
#> 1125 Cider and Perry Duties
#> 1126 Cider and Perry Duties
#> 1127 Cider and Perry Duties
#> 1128 Cider and Perry Duties
#> 1129 Cider and Perry Duties
#> 1130 Cider and Perry Duties
#> 1131 Cider and Perry Duties
#> 1132 Cider and Perry Duties
#> 1133 Cider and Perry Duties
#> 1134 Cider and Perry Duties
#> 1135 Cider and Perry Duties
#> 1136 Cider and Perry Duties
#> 1137 Cider and Perry Duties
#> 1138 Cider and Perry Duties
#> 1139 Cider and Perry Duties
#> 1140 Cider and Perry Duties
#> 1141 Cider and Perry Duties
#> 1142 Cider and Perry Duties
#> 1143 Cider and Perry Duties
#> 1144 Cider and Perry Duties
#> 1145 Cider and Perry Duties
#> 1146 Cider and Perry Duties
#> 1147 Cider and Perry Duties
#> 1148 Cider and Perry Duties
#> 1149 Cider and Perry Duties
#> 1150 Cider and Perry Duties
#> 1151 Cider and Perry Duties
#> 1152 Cider and Perry Duties
#> 1153 Cider and Perry Duties
#> 1154 Cider and Perry Duties
#> 1155 Cider and Perry Duties
#> 1156 Cider and Perry Duties
#> 1157 Cider and Perry Duties
#> 1158 Cider and Perry Duties
#> 1159 Cider and Perry Duties
#> 1160 Cider and Perry Duties
#> 1161 Cider and Perry Duties
#> 1162 Cider and Perry Duties
#> 1163 Cider and Perry Duties
#> 1164 Cider and Perry Duties
#> 1165 Cider and Perry Duties
#> 1166 Cider and Perry Duties
#> 1167 Cider and Perry Duties
#> 1168 Cider and Perry Duties
#> 1169 Cider and Perry Duties
#> 1170 Cider and Perry Duties
#> 1171 Cider and Perry Duties
#> 1172 Cider and Perry Duties
#> 1173 Cider and Perry Duties
#> 1174 Cider and Perry Duties
#> 1175 Cider and Perry Duties
#> 1176 Cider and Perry Duties
#> 1177 Cider and Perry Duties
#> 1178 Cider and Perry Duties
#> 1179 Cider and Perry Duties
#> 1180 Cider and Perry Duties
#> 1181 Cider and Perry Duties
#> 1182 Cider and Perry Duties
#> 1183 Cider and Perry Duties
#> 1184 Cider and Perry Duties
#> 1185 Cider and Perry Duties
#> 1186 Cider and Perry Duties
#> 1187 Cider and Perry Duties
#> 1188 Cider and Perry Duties
#> 1189 Cider and Perry Duties
#> 1190 Cider and Perry Duties
#> 1191 Cider and Perry Duties
#> 1192 Cider and Perry Duties
#> 1193 Cider and Perry Duties
#> 1194 Cider and Perry Duties
#> 1195 Cider and Perry Duties
#> 1196 Cider and Perry Duties
#> 1197 Cider and Perry Duties
#> 1198 Cider and Perry Duties
#> 1199 Cider and Perry Duties
#> 1200 Cider and Perry Duties
#> 1201 Climate Change Levy
#> 1202 Climate Change Levy
#> 1203 Climate Change Levy
#> 1204 Climate Change Levy
#> 1205 Climate Change Levy
#> 1206 Climate Change Levy
#> 1207 Climate Change Levy
#> 1208 Climate Change Levy
#> 1209 Climate Change Levy
#> 1210 Climate Change Levy
#> 1211 Climate Change Levy
#> 1212 Climate Change Levy
#> 1213 Climate Change Levy
#> 1214 Climate Change Levy
#> 1215 Climate Change Levy
#> 1216 Climate Change Levy
#> 1217 Climate Change Levy
#> 1218 Climate Change Levy
#> 1219 Climate Change Levy
#> 1220 Climate Change Levy
#> 1221 Climate Change Levy
#> 1222 Climate Change Levy
#> 1223 Climate Change Levy
#> 1224 Climate Change Levy
#> 1225 Climate Change Levy
#> 1226 Climate Change Levy
#> 1227 Climate Change Levy
#> 1228 Climate Change Levy
#> 1229 Climate Change Levy
#> 1230 Climate Change Levy
#> 1231 Climate Change Levy
#> 1232 Climate Change Levy
#> 1233 Climate Change Levy
#> 1234 Climate Change Levy
#> 1235 Climate Change Levy
#> 1236 Climate Change Levy
#> 1237 Climate Change Levy
#> 1238 Climate Change Levy
#> 1239 Climate Change Levy
#> 1240 Climate Change Levy
#> 1241 Climate Change Levy
#> 1242 Climate Change Levy
#> 1243 Climate Change Levy
#> 1244 Climate Change Levy
#> 1245 Climate Change Levy
#> 1246 Climate Change Levy
#> 1247 Climate Change Levy
#> 1248 Climate Change Levy
#> 1249 Climate Change Levy
#> 1250 Climate Change Levy
#> 1251 Climate Change Levy
#> 1252 Climate Change Levy
#> 1253 Climate Change Levy
#> 1254 Climate Change Levy
#> 1255 Climate Change Levy
#> 1256 Climate Change Levy
#> 1257 Climate Change Levy
#> 1258 Climate Change Levy
#> 1259 Climate Change Levy
#> 1260 Climate Change Levy
#> 1261 Climate Change Levy
#> 1262 Climate Change Levy
#> 1263 Climate Change Levy
#> 1264 Climate Change Levy
#> 1265 Climate Change Levy
#> 1266 Climate Change Levy
#> 1267 Climate Change Levy
#> 1268 Climate Change Levy
#> 1269 Climate Change Levy
#> 1270 Climate Change Levy
#> 1271 Climate Change Levy
#> 1272 Climate Change Levy
#> 1273 Climate Change Levy
#> 1274 Climate Change Levy
#> 1275 Climate Change Levy
#> 1276 Climate Change Levy
#> 1277 Climate Change Levy
#> 1278 Climate Change Levy
#> 1279 Climate Change Levy
#> 1280 Climate Change Levy
#> 1281 Climate Change Levy
#> 1282 Climate Change Levy
#> 1283 Climate Change Levy
#> 1284 Climate Change Levy
#> 1285 Climate Change Levy
#> 1286 Climate Change Levy
#> 1287 Climate Change Levy
#> 1288 Climate Change Levy
#> 1289 Climate Change Levy
#> 1290 Climate Change Levy
#> 1291 Climate Change Levy
#> 1292 Climate Change Levy
#> 1293 Climate Change Levy
#> 1294 Climate Change Levy
#> 1295 Climate Change Levy
#> 1296 Climate Change Levy
#> 1297 Climate Change Levy
#> 1298 Climate Change Levy
#> 1299 Climate Change Levy
#> 1300 Climate Change Levy
#> 1301 Climate Change Levy
#> 1302 Climate Change Levy
#> 1303 Climate Change Levy
#> 1304 Climate Change Levy
#> 1305 Climate Change Levy
#> 1306 Climate Change Levy
#> 1307 Climate Change Levy
#> 1308 Climate Change Levy
#> 1309 Climate Change Levy
#> 1310 Climate Change Levy
#> 1311 Climate Change Levy
#> 1312 Climate Change Levy
#> 1313 Climate Change Levy
#> 1314 Climate Change Levy
#> 1315 Climate Change Levy
#> 1316 Climate Change Levy
#> 1317 Climate Change Levy
#> 1318 Climate Change Levy
#> 1319 Climate Change Levy
#> 1320 Climate Change Levy
#> 1321 Corporation Tax (onshore)
#> 1322 Corporation Tax (onshore)
#> 1323 Corporation Tax (onshore)
#> 1324 Corporation Tax (onshore)
#> 1325 Corporation Tax (onshore)
#> 1326 Corporation Tax (onshore)
#> 1327 Corporation Tax (onshore)
#> 1328 Corporation Tax (onshore)
#> 1329 Corporation Tax (onshore)
#> 1330 Corporation Tax (onshore)
#> 1331 Corporation Tax (onshore)
#> 1332 Corporation Tax (onshore)
#> 1333 Corporation Tax (onshore)
#> 1334 Corporation Tax (onshore)
#> 1335 Corporation Tax (onshore)
#> 1336 Corporation Tax (onshore)
#> 1337 Corporation Tax (onshore)
#> 1338 Corporation Tax (onshore)
#> 1339 Corporation Tax (onshore)
#> 1340 Corporation Tax (onshore)
#> 1341 Corporation Tax (onshore)
#> 1342 Corporation Tax (onshore)
#> 1343 Corporation Tax (onshore)
#> 1344 Corporation Tax (onshore)
#> 1345 Corporation Tax (onshore)
#> 1346 Corporation Tax (onshore)
#> 1347 Corporation Tax (onshore)
#> 1348 Corporation Tax (onshore)
#> 1349 Corporation Tax (onshore)
#> 1350 Corporation Tax (onshore)
#> 1351 Corporation Tax (onshore)
#> 1352 Corporation Tax (onshore)
#> 1353 Corporation Tax (onshore)
#> 1354 Corporation Tax (onshore)
#> 1355 Corporation Tax (onshore)
#> 1356 Corporation Tax (onshore)
#> 1357 Corporation Tax (onshore)
#> 1358 Corporation Tax (onshore)
#> 1359 Corporation Tax (onshore)
#> 1360 Corporation Tax (onshore)
#> 1361 Corporation Tax (onshore)
#> 1362 Corporation Tax (onshore)
#> 1363 Corporation Tax (onshore)
#> 1364 Corporation Tax (onshore)
#> 1365 Corporation Tax (onshore)
#> 1366 Corporation Tax (onshore)
#> 1367 Corporation Tax (onshore)
#> 1368 Corporation Tax (onshore)
#> 1369 Corporation Tax (onshore)
#> 1370 Corporation Tax (onshore)
#> 1371 Corporation Tax (onshore)
#> 1372 Corporation Tax (onshore)
#> 1373 Corporation Tax (onshore)
#> 1374 Corporation Tax (onshore)
#> 1375 Corporation Tax (onshore)
#> 1376 Corporation Tax (onshore)
#> 1377 Corporation Tax (onshore)
#> 1378 Corporation Tax (onshore)
#> 1379 Corporation Tax (onshore)
#> 1380 Corporation Tax (onshore)
#> 1381 Corporation Tax (onshore)
#> 1382 Corporation Tax (onshore)
#> 1383 Corporation Tax (onshore)
#> 1384 Corporation Tax (onshore)
#> 1385 Corporation Tax (onshore)
#> 1386 Corporation Tax (onshore)
#> 1387 Corporation Tax (onshore)
#> 1388 Corporation Tax (onshore)
#> 1389 Corporation Tax (onshore)
#> 1390 Corporation Tax (onshore)
#> 1391 Corporation Tax (onshore)
#> 1392 Corporation Tax (onshore)
#> 1393 Corporation Tax (onshore)
#> 1394 Corporation Tax (onshore)
#> 1395 Corporation Tax (onshore)
#> 1396 Corporation Tax (onshore)
#> 1397 Corporation Tax (onshore)
#> 1398 Corporation Tax (onshore)
#> 1399 Corporation Tax (onshore)
#> 1400 Corporation Tax (onshore)
#> 1401 Corporation Tax (onshore)
#> 1402 Corporation Tax (onshore)
#> 1403 Corporation Tax (onshore)
#> 1404 Corporation Tax (onshore)
#> 1405 Corporation Tax (onshore)
#> 1406 Corporation Tax (onshore)
#> 1407 Corporation Tax (onshore)
#> 1408 Corporation Tax (onshore)
#> 1409 Corporation Tax (onshore)
#> 1410 Corporation Tax (onshore)
#> 1411 Corporation Tax (onshore)
#> 1412 Corporation Tax (onshore)
#> 1413 Corporation Tax (onshore)
#> 1414 Corporation Tax (onshore)
#> 1415 Corporation Tax (onshore)
#> 1416 Corporation Tax (onshore)
#> 1417 Corporation Tax (onshore)
#> 1418 Corporation Tax (onshore)
#> 1419 Corporation Tax (onshore)
#> 1420 Corporation Tax (onshore)
#> 1421 Corporation Tax (onshore)
#> 1422 Corporation Tax (onshore)
#> 1423 Corporation Tax (onshore)
#> 1424 Corporation Tax (onshore)
#> 1425 Corporation Tax (onshore)
#> 1426 Corporation Tax (onshore)
#> 1427 Corporation Tax (onshore)
#> 1428 Corporation Tax (onshore)
#> 1429 Corporation Tax (onshore)
#> 1430 Corporation Tax (onshore)
#> 1431 Corporation Tax (onshore)
#> 1432 Corporation Tax (onshore)
#> 1433 Corporation Tax (onshore)
#> 1434 Corporation Tax (onshore)
#> 1435 Corporation Tax (onshore)
#> 1436 Corporation Tax (onshore)
#> 1437 Corporation Tax (onshore)
#> 1438 Corporation Tax (onshore)
#> 1439 Corporation Tax (onshore)
#> 1440 Corporation Tax (onshore)
#> 1441 Customs Duties
#> 1442 Customs Duties
#> 1443 Customs Duties
#> 1444 Customs Duties
#> 1445 Customs Duties
#> 1446 Customs Duties
#> 1447 Customs Duties
#> 1448 Customs Duties
#> 1449 Customs Duties
#> 1450 Customs Duties
#> 1451 Customs Duties
#> 1452 Customs Duties
#> 1453 Customs Duties
#> 1454 Customs Duties
#> 1455 Customs Duties
#> 1456 Customs Duties
#> 1457 Customs Duties
#> 1458 Customs Duties
#> 1459 Customs Duties
#> 1460 Customs Duties
#> 1461 Customs Duties
#> 1462 Customs Duties
#> 1463 Customs Duties
#> 1464 Customs Duties
#> 1465 Customs Duties
#> 1466 Customs Duties
#> 1467 Customs Duties
#> 1468 Customs Duties
#> 1469 Customs Duties
#> 1470 Customs Duties
#> 1471 Customs Duties
#> 1472 Customs Duties
#> 1473 Customs Duties
#> 1474 Customs Duties
#> 1475 Customs Duties
#> 1476 Customs Duties
#> 1477 Customs Duties
#> 1478 Customs Duties
#> 1479 Customs Duties
#> 1480 Customs Duties
#> 1481 Customs Duties
#> 1482 Customs Duties
#> 1483 Customs Duties
#> 1484 Customs Duties
#> 1485 Customs Duties
#> 1486 Customs Duties
#> 1487 Customs Duties
#> 1488 Customs Duties
#> 1489 Customs Duties
#> 1490 Customs Duties
#> 1491 Customs Duties
#> 1492 Customs Duties
#> 1493 Customs Duties
#> 1494 Customs Duties
#> 1495 Customs Duties
#> 1496 Customs Duties
#> 1497 Customs Duties
#> 1498 Customs Duties
#> 1499 Customs Duties
#> 1500 Customs Duties
#> 1501 Customs Duties
#> 1502 Customs Duties
#> 1503 Customs Duties
#> 1504 Customs Duties
#> 1505 Customs Duties
#> 1506 Customs Duties
#> 1507 Customs Duties
#> 1508 Customs Duties
#> 1509 Customs Duties
#> 1510 Customs Duties
#> 1511 Customs Duties
#> 1512 Customs Duties
#> 1513 Customs Duties
#> 1514 Customs Duties
#> 1515 Customs Duties
#> 1516 Customs Duties
#> 1517 Customs Duties
#> 1518 Customs Duties
#> 1519 Customs Duties
#> 1520 Customs Duties
#> 1521 Customs Duties
#> 1522 Customs Duties
#> 1523 Customs Duties
#> 1524 Customs Duties
#> 1525 Customs Duties
#> 1526 Customs Duties
#> 1527 Customs Duties
#> 1528 Customs Duties
#> 1529 Customs Duties
#> 1530 Customs Duties
#> 1531 Customs Duties
#> 1532 Customs Duties
#> 1533 Customs Duties
#> 1534 Customs Duties
#> 1535 Customs Duties
#> 1536 Customs Duties
#> 1537 Customs Duties
#> 1538 Customs Duties
#> 1539 Customs Duties
#> 1540 Customs Duties
#> 1541 Customs Duties
#> 1542 Customs Duties
#> 1543 Customs Duties
#> 1544 Customs Duties
#> 1545 Customs Duties
#> 1546 Customs Duties
#> 1547 Customs Duties
#> 1548 Customs Duties
#> 1549 Customs Duties
#> 1550 Customs Duties
#> 1551 Customs Duties
#> 1552 Customs Duties
#> 1553 Customs Duties
#> 1554 Customs Duties
#> 1555 Customs Duties
#> 1556 Customs Duties
#> 1557 Customs Duties
#> 1558 Customs Duties
#> 1559 Customs Duties
#> 1560 Customs Duties
#> 1561 Digital Services Tax
#> 1562 Digital Services Tax
#> 1563 Digital Services Tax
#> 1564 Digital Services Tax
#> 1565 Digital Services Tax
#> 1566 Digital Services Tax
#> 1567 Digital Services Tax
#> 1568 Digital Services Tax
#> 1569 Digital Services Tax
#> 1570 Digital Services Tax
#> 1571 Digital Services Tax
#> 1572 Digital Services Tax
#> 1573 Digital Services Tax
#> 1574 Digital Services Tax
#> 1575 Digital Services Tax
#> 1576 Digital Services Tax
#> 1577 Digital Services Tax
#> 1578 Digital Services Tax
#> 1579 Digital Services Tax
#> 1580 Digital Services Tax
#> 1581 Digital Services Tax
#> 1582 Digital Services Tax
#> 1583 Digital Services Tax
#> 1584 Digital Services Tax
#> 1585 Digital Services Tax
#> 1586 Digital Services Tax
#> 1587 Digital Services Tax
#> 1588 Digital Services Tax
#> 1589 Digital Services Tax
#> 1590 Digital Services Tax
#> 1591 Digital Services Tax
#> 1592 Digital Services Tax
#> 1593 Digital Services Tax
#> 1594 Digital Services Tax
#> 1595 Digital Services Tax
#> 1596 Digital Services Tax
#> 1597 Digital Services Tax
#> 1598 Digital Services Tax
#> 1599 Digital Services Tax
#> 1600 Digital Services Tax
#> 1601 Digital Services Tax
#> 1602 Digital Services Tax
#> 1603 Digital Services Tax
#> 1604 Digital Services Tax
#> 1605 Digital Services Tax
#> 1606 Digital Services Tax
#> 1607 Digital Services Tax
#> 1608 Digital Services Tax
#> 1609 Digital Services Tax
#> 1610 Digital Services Tax
#> 1611 Digital Services Tax
#> 1612 Digital Services Tax
#> 1613 Digital Services Tax
#> 1614 Digital Services Tax
#> 1615 Digital Services Tax
#> 1616 Digital Services Tax
#> 1617 Digital Services Tax
#> 1618 Digital Services Tax
#> 1619 Digital Services Tax
#> 1620 Digital Services Tax
#> 1621 Digital Services Tax
#> 1622 Digital Services Tax
#> 1623 Digital Services Tax
#> 1624 Digital Services Tax
#> 1625 Digital Services Tax
#> 1626 Digital Services Tax
#> 1627 Digital Services Tax
#> 1628 Digital Services Tax
#> 1629 Digital Services Tax
#> 1630 Digital Services Tax
#> 1631 Digital Services Tax
#> 1632 Digital Services Tax
#> 1633 Digital Services Tax
#> 1634 Digital Services Tax
#> 1635 Digital Services Tax
#> 1636 Digital Services Tax
#> 1637 Digital Services Tax
#> 1638 Digital Services Tax
#> 1639 Digital Services Tax
#> 1640 Digital Services Tax
#> 1641 Digital Services Tax
#> 1642 Digital Services Tax
#> 1643 Digital Services Tax
#> 1644 Digital Services Tax
#> 1645 Digital Services Tax
#> 1646 Digital Services Tax
#> 1647 Digital Services Tax
#> 1648 Digital Services Tax
#> 1649 Digital Services Tax
#> 1650 Digital Services Tax
#> 1651 Digital Services Tax
#> 1652 Digital Services Tax
#> 1653 Digital Services Tax
#> 1654 Digital Services Tax
#> 1655 Digital Services Tax
#> 1656 Digital Services Tax
#> 1657 Digital Services Tax
#> 1658 Digital Services Tax
#> 1659 Digital Services Tax
#> 1660 Digital Services Tax
#> 1661 Digital Services Tax
#> 1662 Digital Services Tax
#> 1663 Digital Services Tax
#> 1664 Digital Services Tax
#> 1665 Digital Services Tax
#> 1666 Digital Services Tax
#> 1667 Digital Services Tax
#> 1668 Digital Services Tax
#> 1669 Digital Services Tax
#> 1670 Digital Services Tax
#> 1671 Digital Services Tax
#> 1672 Digital Services Tax
#> 1673 Digital Services Tax
#> 1674 Digital Services Tax
#> 1675 Digital Services Tax
#> 1676 Digital Services Tax
#> 1677 Digital Services Tax
#> 1678 Digital Services Tax
#> 1679 Digital Services Tax
#> 1680 Digital Services Tax
#> 1681 Diverted Profits Tax
#> 1682 Diverted Profits Tax
#> 1683 Diverted Profits Tax
#> 1684 Diverted Profits Tax
#> 1685 Diverted Profits Tax
#> 1686 Diverted Profits Tax
#> 1687 Diverted Profits Tax
#> 1688 Diverted Profits Tax
#> 1689 Diverted Profits Tax
#> 1690 Diverted Profits Tax
#> 1691 Diverted Profits Tax
#> 1692 Diverted Profits Tax
#> 1693 Diverted Profits Tax
#> 1694 Diverted Profits Tax
#> 1695 Diverted Profits Tax
#> 1696 Diverted Profits Tax
#> 1697 Diverted Profits Tax
#> 1698 Diverted Profits Tax
#> 1699 Diverted Profits Tax
#> 1700 Diverted Profits Tax
#> 1701 Diverted Profits Tax
#> 1702 Diverted Profits Tax
#> 1703 Diverted Profits Tax
#> 1704 Diverted Profits Tax
#> 1705 Diverted Profits Tax
#> 1706 Diverted Profits Tax
#> 1707 Diverted Profits Tax
#> 1708 Diverted Profits Tax
#> 1709 Diverted Profits Tax
#> 1710 Diverted Profits Tax
#> 1711 Diverted Profits Tax
#> 1712 Diverted Profits Tax
#> 1713 Diverted Profits Tax
#> 1714 Diverted Profits Tax
#> 1715 Diverted Profits Tax
#> 1716 Diverted Profits Tax
#> 1717 Diverted Profits Tax
#> 1718 Diverted Profits Tax
#> 1719 Diverted Profits Tax
#> 1720 Diverted Profits Tax
#> 1721 Diverted Profits Tax
#> 1722 Diverted Profits Tax
#> 1723 Diverted Profits Tax
#> 1724 Diverted Profits Tax
#> 1725 Diverted Profits Tax
#> 1726 Diverted Profits Tax
#> 1727 Diverted Profits Tax
#> 1728 Diverted Profits Tax
#> 1729 Diverted Profits Tax
#> 1730 Diverted Profits Tax
#> 1731 Diverted Profits Tax
#> 1732 Diverted Profits Tax
#> 1733 Diverted Profits Tax
#> 1734 Diverted Profits Tax
#> 1735 Diverted Profits Tax
#> 1736 Diverted Profits Tax
#> 1737 Diverted Profits Tax
#> 1738 Diverted Profits Tax
#> 1739 Diverted Profits Tax
#> 1740 Diverted Profits Tax
#> 1741 Diverted Profits Tax
#> 1742 Diverted Profits Tax
#> 1743 Diverted Profits Tax
#> 1744 Diverted Profits Tax
#> 1745 Diverted Profits Tax
#> 1746 Diverted Profits Tax
#> 1747 Diverted Profits Tax
#> 1748 Diverted Profits Tax
#> 1749 Diverted Profits Tax
#> 1750 Diverted Profits Tax
#> 1751 Diverted Profits Tax
#> 1752 Diverted Profits Tax
#> 1753 Diverted Profits Tax
#> 1754 Diverted Profits Tax
#> 1755 Diverted Profits Tax
#> 1756 Diverted Profits Tax
#> 1757 Diverted Profits Tax
#> 1758 Diverted Profits Tax
#> 1759 Diverted Profits Tax
#> 1760 Diverted Profits Tax
#> 1761 Diverted Profits Tax
#> 1762 Diverted Profits Tax
#> 1763 Diverted Profits Tax
#> 1764 Diverted Profits Tax
#> 1765 Diverted Profits Tax
#> 1766 Diverted Profits Tax
#> 1767 Diverted Profits Tax
#> 1768 Diverted Profits Tax
#> 1769 Diverted Profits Tax
#> 1770 Diverted Profits Tax
#> 1771 Diverted Profits Tax
#> 1772 Diverted Profits Tax
#> 1773 Diverted Profits Tax
#> 1774 Diverted Profits Tax
#> 1775 Diverted Profits Tax
#> 1776 Diverted Profits Tax
#> 1777 Diverted Profits Tax
#> 1778 Diverted Profits Tax
#> 1779 Diverted Profits Tax
#> 1780 Diverted Profits Tax
#> 1781 Diverted Profits Tax
#> 1782 Diverted Profits Tax
#> 1783 Diverted Profits Tax
#> 1784 Diverted Profits Tax
#> 1785 Diverted Profits Tax
#> 1786 Diverted Profits Tax
#> 1787 Diverted Profits Tax
#> 1788 Diverted Profits Tax
#> 1789 Diverted Profits Tax
#> 1790 Diverted Profits Tax
#> 1791 Diverted Profits Tax
#> 1792 Diverted Profits Tax
#> 1793 Diverted Profits Tax
#> 1794 Diverted Profits Tax
#> 1795 Diverted Profits Tax
#> 1796 Diverted Profits Tax
#> 1797 Diverted Profits Tax
#> 1798 Diverted Profits Tax
#> 1799 Diverted Profits Tax
#> 1800 Diverted Profits Tax
#> 1801 Economic Crime Levy
#> 1802 Economic Crime Levy
#> 1803 Economic Crime Levy
#> 1804 Economic Crime Levy
#> 1805 Economic Crime Levy
#> 1806 Economic Crime Levy
#> 1807 Economic Crime Levy
#> 1808 Economic Crime Levy
#> 1809 Economic Crime Levy
#> 1810 Economic Crime Levy
#> 1811 Economic Crime Levy
#> 1812 Economic Crime Levy
#> 1813 Economic Crime Levy
#> 1814 Economic Crime Levy
#> 1815 Economic Crime Levy
#> 1816 Economic Crime Levy
#> 1817 Economic Crime Levy
#> 1818 Economic Crime Levy
#> 1819 Economic Crime Levy
#> 1820 Economic Crime Levy
#> 1821 Economic Crime Levy
#> 1822 Economic Crime Levy
#> 1823 Economic Crime Levy
#> 1824 Economic Crime Levy
#> 1825 Economic Crime Levy
#> 1826 Economic Crime Levy
#> 1827 Economic Crime Levy
#> 1828 Economic Crime Levy
#> 1829 Economic Crime Levy
#> 1830 Economic Crime Levy
#> 1831 Economic Crime Levy
#> 1832 Economic Crime Levy
#> 1833 Economic Crime Levy
#> 1834 Economic Crime Levy
#> 1835 Economic Crime Levy
#> 1836 Economic Crime Levy
#> 1837 Economic Crime Levy
#> 1838 Economic Crime Levy
#> 1839 Economic Crime Levy
#> 1840 Economic Crime Levy
#> 1841 Economic Crime Levy
#> 1842 Economic Crime Levy
#> 1843 Economic Crime Levy
#> 1844 Economic Crime Levy
#> 1845 Economic Crime Levy
#> 1846 Economic Crime Levy
#> 1847 Economic Crime Levy
#> 1848 Economic Crime Levy
#> 1849 Economic Crime Levy
#> 1850 Economic Crime Levy
#> 1851 Economic Crime Levy
#> 1852 Economic Crime Levy
#> 1853 Economic Crime Levy
#> 1854 Economic Crime Levy
#> 1855 Economic Crime Levy
#> 1856 Economic Crime Levy
#> 1857 Economic Crime Levy
#> 1858 Economic Crime Levy
#> 1859 Economic Crime Levy
#> 1860 Economic Crime Levy
#> 1861 Economic Crime Levy
#> 1862 Economic Crime Levy
#> 1863 Economic Crime Levy
#> 1864 Economic Crime Levy
#> 1865 Economic Crime Levy
#> 1866 Economic Crime Levy
#> 1867 Economic Crime Levy
#> 1868 Economic Crime Levy
#> 1869 Economic Crime Levy
#> 1870 Economic Crime Levy
#> 1871 Economic Crime Levy
#> 1872 Economic Crime Levy
#> 1873 Economic Crime Levy
#> 1874 Economic Crime Levy
#> 1875 Economic Crime Levy
#> 1876 Economic Crime Levy
#> 1877 Economic Crime Levy
#> 1878 Economic Crime Levy
#> 1879 Economic Crime Levy
#> 1880 Economic Crime Levy
#> 1881 Economic Crime Levy
#> 1882 Economic Crime Levy
#> 1883 Economic Crime Levy
#> 1884 Economic Crime Levy
#> 1885 Economic Crime Levy
#> 1886 Economic Crime Levy
#> 1887 Economic Crime Levy
#> 1888 Economic Crime Levy
#> 1889 Economic Crime Levy
#> 1890 Economic Crime Levy
#> 1891 Economic Crime Levy
#> 1892 Economic Crime Levy
#> 1893 Economic Crime Levy
#> 1894 Economic Crime Levy
#> 1895 Economic Crime Levy
#> 1896 Economic Crime Levy
#> 1897 Economic Crime Levy
#> 1898 Economic Crime Levy
#> 1899 Economic Crime Levy
#> 1900 Economic Crime Levy
#> 1901 Economic Crime Levy
#> 1902 Economic Crime Levy
#> 1903 Economic Crime Levy
#> 1904 Economic Crime Levy
#> 1905 Economic Crime Levy
#> 1906 Economic Crime Levy
#> 1907 Economic Crime Levy
#> 1908 Economic Crime Levy
#> 1909 Economic Crime Levy
#> 1910 Economic Crime Levy
#> 1911 Economic Crime Levy
#> 1912 Economic Crime Levy
#> 1913 Economic Crime Levy
#> 1914 Economic Crime Levy
#> 1915 Economic Crime Levy
#> 1916 Economic Crime Levy
#> 1917 Economic Crime Levy
#> 1918 Economic Crime Levy
#> 1919 Economic Crime Levy
#> 1920 Economic Crime Levy
#> 1921 Electricity Generators Levy
#> 1922 Electricity Generators Levy
#> 1923 Electricity Generators Levy
#> 1924 Electricity Generators Levy
#> 1925 Electricity Generators Levy
#> 1926 Electricity Generators Levy
#> 1927 Electricity Generators Levy
#> 1928 Electricity Generators Levy
#> 1929 Electricity Generators Levy
#> 1930 Electricity Generators Levy
#> 1931 Electricity Generators Levy
#> 1932 Electricity Generators Levy
#> 1933 Electricity Generators Levy
#> 1934 Electricity Generators Levy
#> 1935 Electricity Generators Levy
#> 1936 Electricity Generators Levy
#> 1937 Electricity Generators Levy
#> 1938 Electricity Generators Levy
#> 1939 Electricity Generators Levy
#> 1940 Electricity Generators Levy
#> 1941 Electricity Generators Levy
#> 1942 Electricity Generators Levy
#> 1943 Electricity Generators Levy
#> 1944 Electricity Generators Levy
#> 1945 Electricity Generators Levy
#> 1946 Electricity Generators Levy
#> 1947 Electricity Generators Levy
#> 1948 Electricity Generators Levy
#> 1949 Electricity Generators Levy
#> 1950 Electricity Generators Levy
#> 1951 Electricity Generators Levy
#> 1952 Electricity Generators Levy
#> 1953 Electricity Generators Levy
#> 1954 Electricity Generators Levy
#> 1955 Electricity Generators Levy
#> 1956 Electricity Generators Levy
#> 1957 Electricity Generators Levy
#> 1958 Electricity Generators Levy
#> 1959 Electricity Generators Levy
#> 1960 Electricity Generators Levy
#> 1961 Electricity Generators Levy
#> 1962 Electricity Generators Levy
#> 1963 Electricity Generators Levy
#> 1964 Electricity Generators Levy
#> 1965 Electricity Generators Levy
#> 1966 Electricity Generators Levy
#> 1967 Electricity Generators Levy
#> 1968 Electricity Generators Levy
#> 1969 Electricity Generators Levy
#> 1970 Electricity Generators Levy
#> 1971 Electricity Generators Levy
#> 1972 Electricity Generators Levy
#> 1973 Electricity Generators Levy
#> 1974 Electricity Generators Levy
#> 1975 Electricity Generators Levy
#> 1976 Electricity Generators Levy
#> 1977 Electricity Generators Levy
#> 1978 Electricity Generators Levy
#> 1979 Electricity Generators Levy
#> 1980 Electricity Generators Levy
#> 1981 Electricity Generators Levy
#> 1982 Electricity Generators Levy
#> 1983 Electricity Generators Levy
#> 1984 Electricity Generators Levy
#> 1985 Electricity Generators Levy
#> 1986 Electricity Generators Levy
#> 1987 Electricity Generators Levy
#> 1988 Electricity Generators Levy
#> 1989 Electricity Generators Levy
#> 1990 Electricity Generators Levy
#> 1991 Electricity Generators Levy
#> 1992 Electricity Generators Levy
#> 1993 Electricity Generators Levy
#> 1994 Electricity Generators Levy
#> 1995 Electricity Generators Levy
#> 1996 Electricity Generators Levy
#> 1997 Electricity Generators Levy
#> 1998 Electricity Generators Levy
#> 1999 Electricity Generators Levy
#> 2000 Electricity Generators Levy
#> 2001 Electricity Generators Levy
#> 2002 Electricity Generators Levy
#> 2003 Electricity Generators Levy
#> 2004 Electricity Generators Levy
#> 2005 Electricity Generators Levy
#> 2006 Electricity Generators Levy
#> 2007 Electricity Generators Levy
#> 2008 Electricity Generators Levy
#> 2009 Electricity Generators Levy
#> 2010 Electricity Generators Levy
#> 2011 Electricity Generators Levy
#> 2012 Electricity Generators Levy
#> 2013 Electricity Generators Levy
#> 2014 Electricity Generators Levy
#> 2015 Electricity Generators Levy
#> 2016 Electricity Generators Levy
#> 2017 Electricity Generators Levy
#> 2018 Electricity Generators Levy
#> 2019 Electricity Generators Levy
#> 2020 Electricity Generators Levy
#> 2021 Electricity Generators Levy
#> 2022 Electricity Generators Levy
#> 2023 Electricity Generators Levy
#> 2024 Electricity Generators Levy
#> 2025 Electricity Generators Levy
#> 2026 Electricity Generators Levy
#> 2027 Electricity Generators Levy
#> 2028 Electricity Generators Levy
#> 2029 Electricity Generators Levy
#> 2030 Electricity Generators Levy
#> 2031 Electricity Generators Levy
#> 2032 Electricity Generators Levy
#> 2033 Electricity Generators Levy
#> 2034 Electricity Generators Levy
#> 2035 Electricity Generators Levy
#> 2036 Electricity Generators Levy
#> 2037 Electricity Generators Levy
#> 2038 Electricity Generators Levy
#> 2039 Electricity Generators Levy
#> 2040 Electricity Generators Levy
#> 2041 Energy Profits Levy
#> 2042 Energy Profits Levy
#> 2043 Energy Profits Levy
#> 2044 Energy Profits Levy
#> 2045 Energy Profits Levy
#> 2046 Energy Profits Levy
#> 2047 Energy Profits Levy
#> 2048 Energy Profits Levy
#> 2049 Energy Profits Levy
#> 2050 Energy Profits Levy
#> 2051 Energy Profits Levy
#> 2052 Energy Profits Levy
#> 2053 Energy Profits Levy
#> 2054 Energy Profits Levy
#> 2055 Energy Profits Levy
#> 2056 Energy Profits Levy
#> 2057 Energy Profits Levy
#> 2058 Energy Profits Levy
#> 2059 Energy Profits Levy
#> 2060 Energy Profits Levy
#> 2061 Energy Profits Levy
#> 2062 Energy Profits Levy
#> 2063 Energy Profits Levy
#> 2064 Energy Profits Levy
#> 2065 Energy Profits Levy
#> 2066 Energy Profits Levy
#> 2067 Energy Profits Levy
#> 2068 Energy Profits Levy
#> 2069 Energy Profits Levy
#> 2070 Energy Profits Levy
#> 2071 Energy Profits Levy
#> 2072 Energy Profits Levy
#> 2073 Energy Profits Levy
#> 2074 Energy Profits Levy
#> 2075 Energy Profits Levy
#> 2076 Energy Profits Levy
#> 2077 Energy Profits Levy
#> 2078 Energy Profits Levy
#> 2079 Energy Profits Levy
#> 2080 Energy Profits Levy
#> 2081 Energy Profits Levy
#> 2082 Energy Profits Levy
#> 2083 Energy Profits Levy
#> 2084 Energy Profits Levy
#> 2085 Energy Profits Levy
#> 2086 Energy Profits Levy
#> 2087 Energy Profits Levy
#> 2088 Energy Profits Levy
#> 2089 Energy Profits Levy
#> 2090 Energy Profits Levy
#> 2091 Energy Profits Levy
#> 2092 Energy Profits Levy
#> 2093 Energy Profits Levy
#> 2094 Energy Profits Levy
#> 2095 Energy Profits Levy
#> 2096 Energy Profits Levy
#> 2097 Energy Profits Levy
#> 2098 Energy Profits Levy
#> 2099 Energy Profits Levy
#> 2100 Energy Profits Levy
#> 2101 Energy Profits Levy
#> 2102 Energy Profits Levy
#> 2103 Energy Profits Levy
#> 2104 Energy Profits Levy
#> 2105 Energy Profits Levy
#> 2106 Energy Profits Levy
#> 2107 Energy Profits Levy
#> 2108 Energy Profits Levy
#> 2109 Energy Profits Levy
#> 2110 Energy Profits Levy
#> 2111 Energy Profits Levy
#> 2112 Energy Profits Levy
#> 2113 Energy Profits Levy
#> 2114 Energy Profits Levy
#> 2115 Energy Profits Levy
#> 2116 Energy Profits Levy
#> 2117 Energy Profits Levy
#> 2118 Energy Profits Levy
#> 2119 Energy Profits Levy
#> 2120 Energy Profits Levy
#> 2121 Energy Profits Levy
#> 2122 Energy Profits Levy
#> 2123 Energy Profits Levy
#> 2124 Energy Profits Levy
#> 2125 Energy Profits Levy
#> 2126 Energy Profits Levy
#> 2127 Energy Profits Levy
#> 2128 Energy Profits Levy
#> 2129 Energy Profits Levy
#> 2130 Energy Profits Levy
#> 2131 Energy Profits Levy
#> 2132 Energy Profits Levy
#> 2133 Energy Profits Levy
#> 2134 Energy Profits Levy
#> 2135 Energy Profits Levy
#> 2136 Energy Profits Levy
#> 2137 Energy Profits Levy
#> 2138 Energy Profits Levy
#> 2139 Energy Profits Levy
#> 2140 Energy Profits Levy
#> 2141 Energy Profits Levy
#> 2142 Energy Profits Levy
#> 2143 Energy Profits Levy
#> 2144 Energy Profits Levy
#> 2145 Energy Profits Levy
#> 2146 Energy Profits Levy
#> 2147 Energy Profits Levy
#> 2148 Energy Profits Levy
#> 2149 Energy Profits Levy
#> 2150 Energy Profits Levy
#> 2151 Energy Profits Levy
#> 2152 Energy Profits Levy
#> 2153 Energy Profits Levy
#> 2154 Energy Profits Levy
#> 2155 Energy Profits Levy
#> 2156 Energy Profits Levy
#> 2157 Energy Profits Levy
#> 2158 Energy Profits Levy
#> 2159 Energy Profits Levy
#> 2160 Energy Profits Levy
#> 2161 Hydrocarbon Oil Duties (Fuel Duty)
#> 2162 Hydrocarbon Oil Duties (Fuel Duty)
#> 2163 Hydrocarbon Oil Duties (Fuel Duty)
#> 2164 Hydrocarbon Oil Duties (Fuel Duty)
#> 2165 Hydrocarbon Oil Duties (Fuel Duty)
#> 2166 Hydrocarbon Oil Duties (Fuel Duty)
#> 2167 Hydrocarbon Oil Duties (Fuel Duty)
#> 2168 Hydrocarbon Oil Duties (Fuel Duty)
#> 2169 Hydrocarbon Oil Duties (Fuel Duty)
#> 2170 Hydrocarbon Oil Duties (Fuel Duty)
#> 2171 Hydrocarbon Oil Duties (Fuel Duty)
#> 2172 Hydrocarbon Oil Duties (Fuel Duty)
#> 2173 Hydrocarbon Oil Duties (Fuel Duty)
#> 2174 Hydrocarbon Oil Duties (Fuel Duty)
#> 2175 Hydrocarbon Oil Duties (Fuel Duty)
#> 2176 Hydrocarbon Oil Duties (Fuel Duty)
#> 2177 Hydrocarbon Oil Duties (Fuel Duty)
#> 2178 Hydrocarbon Oil Duties (Fuel Duty)
#> 2179 Hydrocarbon Oil Duties (Fuel Duty)
#> 2180 Hydrocarbon Oil Duties (Fuel Duty)
#> 2181 Hydrocarbon Oil Duties (Fuel Duty)
#> 2182 Hydrocarbon Oil Duties (Fuel Duty)
#> 2183 Hydrocarbon Oil Duties (Fuel Duty)
#> 2184 Hydrocarbon Oil Duties (Fuel Duty)
#> 2185 Hydrocarbon Oil Duties (Fuel Duty)
#> 2186 Hydrocarbon Oil Duties (Fuel Duty)
#> 2187 Hydrocarbon Oil Duties (Fuel Duty)
#> 2188 Hydrocarbon Oil Duties (Fuel Duty)
#> 2189 Hydrocarbon Oil Duties (Fuel Duty)
#> 2190 Hydrocarbon Oil Duties (Fuel Duty)
#> 2191 Hydrocarbon Oil Duties (Fuel Duty)
#> 2192 Hydrocarbon Oil Duties (Fuel Duty)
#> 2193 Hydrocarbon Oil Duties (Fuel Duty)
#> 2194 Hydrocarbon Oil Duties (Fuel Duty)
#> 2195 Hydrocarbon Oil Duties (Fuel Duty)
#> 2196 Hydrocarbon Oil Duties (Fuel Duty)
#> 2197 Hydrocarbon Oil Duties (Fuel Duty)
#> 2198 Hydrocarbon Oil Duties (Fuel Duty)
#> 2199 Hydrocarbon Oil Duties (Fuel Duty)
#> 2200 Hydrocarbon Oil Duties (Fuel Duty)
#> 2201 Hydrocarbon Oil Duties (Fuel Duty)
#> 2202 Hydrocarbon Oil Duties (Fuel Duty)
#> 2203 Hydrocarbon Oil Duties (Fuel Duty)
#> 2204 Hydrocarbon Oil Duties (Fuel Duty)
#> 2205 Hydrocarbon Oil Duties (Fuel Duty)
#> 2206 Hydrocarbon Oil Duties (Fuel Duty)
#> 2207 Hydrocarbon Oil Duties (Fuel Duty)
#> 2208 Hydrocarbon Oil Duties (Fuel Duty)
#> 2209 Hydrocarbon Oil Duties (Fuel Duty)
#> 2210 Hydrocarbon Oil Duties (Fuel Duty)
#> 2211 Hydrocarbon Oil Duties (Fuel Duty)
#> 2212 Hydrocarbon Oil Duties (Fuel Duty)
#> 2213 Hydrocarbon Oil Duties (Fuel Duty)
#> 2214 Hydrocarbon Oil Duties (Fuel Duty)
#> 2215 Hydrocarbon Oil Duties (Fuel Duty)
#> 2216 Hydrocarbon Oil Duties (Fuel Duty)
#> 2217 Hydrocarbon Oil Duties (Fuel Duty)
#> 2218 Hydrocarbon Oil Duties (Fuel Duty)
#> 2219 Hydrocarbon Oil Duties (Fuel Duty)
#> 2220 Hydrocarbon Oil Duties (Fuel Duty)
#> 2221 Hydrocarbon Oil Duties (Fuel Duty)
#> 2222 Hydrocarbon Oil Duties (Fuel Duty)
#> 2223 Hydrocarbon Oil Duties (Fuel Duty)
#> 2224 Hydrocarbon Oil Duties (Fuel Duty)
#> 2225 Hydrocarbon Oil Duties (Fuel Duty)
#> 2226 Hydrocarbon Oil Duties (Fuel Duty)
#> 2227 Hydrocarbon Oil Duties (Fuel Duty)
#> 2228 Hydrocarbon Oil Duties (Fuel Duty)
#> 2229 Hydrocarbon Oil Duties (Fuel Duty)
#> 2230 Hydrocarbon Oil Duties (Fuel Duty)
#> 2231 Hydrocarbon Oil Duties (Fuel Duty)
#> 2232 Hydrocarbon Oil Duties (Fuel Duty)
#> 2233 Hydrocarbon Oil Duties (Fuel Duty)
#> 2234 Hydrocarbon Oil Duties (Fuel Duty)
#> 2235 Hydrocarbon Oil Duties (Fuel Duty)
#> 2236 Hydrocarbon Oil Duties (Fuel Duty)
#> 2237 Hydrocarbon Oil Duties (Fuel Duty)
#> 2238 Hydrocarbon Oil Duties (Fuel Duty)
#> 2239 Hydrocarbon Oil Duties (Fuel Duty)
#> 2240 Hydrocarbon Oil Duties (Fuel Duty)
#> 2241 Hydrocarbon Oil Duties (Fuel Duty)
#> 2242 Hydrocarbon Oil Duties (Fuel Duty)
#> 2243 Hydrocarbon Oil Duties (Fuel Duty)
#> 2244 Hydrocarbon Oil Duties (Fuel Duty)
#> 2245 Hydrocarbon Oil Duties (Fuel Duty)
#> 2246 Hydrocarbon Oil Duties (Fuel Duty)
#> 2247 Hydrocarbon Oil Duties (Fuel Duty)
#> 2248 Hydrocarbon Oil Duties (Fuel Duty)
#> 2249 Hydrocarbon Oil Duties (Fuel Duty)
#> 2250 Hydrocarbon Oil Duties (Fuel Duty)
#> 2251 Hydrocarbon Oil Duties (Fuel Duty)
#> 2252 Hydrocarbon Oil Duties (Fuel Duty)
#> 2253 Hydrocarbon Oil Duties (Fuel Duty)
#> 2254 Hydrocarbon Oil Duties (Fuel Duty)
#> 2255 Hydrocarbon Oil Duties (Fuel Duty)
#> 2256 Hydrocarbon Oil Duties (Fuel Duty)
#> 2257 Hydrocarbon Oil Duties (Fuel Duty)
#> 2258 Hydrocarbon Oil Duties (Fuel Duty)
#> 2259 Hydrocarbon Oil Duties (Fuel Duty)
#> 2260 Hydrocarbon Oil Duties (Fuel Duty)
#> 2261 Hydrocarbon Oil Duties (Fuel Duty)
#> 2262 Hydrocarbon Oil Duties (Fuel Duty)
#> 2263 Hydrocarbon Oil Duties (Fuel Duty)
#> 2264 Hydrocarbon Oil Duties (Fuel Duty)
#> 2265 Hydrocarbon Oil Duties (Fuel Duty)
#> 2266 Hydrocarbon Oil Duties (Fuel Duty)
#> 2267 Hydrocarbon Oil Duties (Fuel Duty)
#> 2268 Hydrocarbon Oil Duties (Fuel Duty)
#> 2269 Hydrocarbon Oil Duties (Fuel Duty)
#> 2270 Hydrocarbon Oil Duties (Fuel Duty)
#> 2271 Hydrocarbon Oil Duties (Fuel Duty)
#> 2272 Hydrocarbon Oil Duties (Fuel Duty)
#> 2273 Hydrocarbon Oil Duties (Fuel Duty)
#> 2274 Hydrocarbon Oil Duties (Fuel Duty)
#> 2275 Hydrocarbon Oil Duties (Fuel Duty)
#> 2276 Hydrocarbon Oil Duties (Fuel Duty)
#> 2277 Hydrocarbon Oil Duties (Fuel Duty)
#> 2278 Hydrocarbon Oil Duties (Fuel Duty)
#> 2279 Hydrocarbon Oil Duties (Fuel Duty)
#> 2280 Hydrocarbon Oil Duties (Fuel Duty)
#> 2281 Betting and Gaming Duties
#> 2282 Betting and Gaming Duties
#> 2283 Betting and Gaming Duties
#> 2284 Betting and Gaming Duties
#> 2285 Betting and Gaming Duties
#> 2286 Betting and Gaming Duties
#> 2287 Betting and Gaming Duties
#> 2288 Betting and Gaming Duties
#> 2289 Betting and Gaming Duties
#> 2290 Betting and Gaming Duties
#> 2291 Betting and Gaming Duties
#> 2292 Betting and Gaming Duties
#> 2293 Betting and Gaming Duties
#> 2294 Betting and Gaming Duties
#> 2295 Betting and Gaming Duties
#> 2296 Betting and Gaming Duties
#> 2297 Betting and Gaming Duties
#> 2298 Betting and Gaming Duties
#> 2299 Betting and Gaming Duties
#> 2300 Betting and Gaming Duties
#> 2301 Betting and Gaming Duties
#> 2302 Betting and Gaming Duties
#> 2303 Betting and Gaming Duties
#> 2304 Betting and Gaming Duties
#> 2305 Betting and Gaming Duties
#> 2306 Betting and Gaming Duties
#> 2307 Betting and Gaming Duties
#> 2308 Betting and Gaming Duties
#> 2309 Betting and Gaming Duties
#> 2310 Betting and Gaming Duties
#> 2311 Betting and Gaming Duties
#> 2312 Betting and Gaming Duties
#> 2313 Betting and Gaming Duties
#> 2314 Betting and Gaming Duties
#> 2315 Betting and Gaming Duties
#> 2316 Betting and Gaming Duties
#> 2317 Betting and Gaming Duties
#> 2318 Betting and Gaming Duties
#> 2319 Betting and Gaming Duties
#> 2320 Betting and Gaming Duties
#> 2321 Betting and Gaming Duties
#> 2322 Betting and Gaming Duties
#> 2323 Betting and Gaming Duties
#> 2324 Betting and Gaming Duties
#> 2325 Betting and Gaming Duties
#> 2326 Betting and Gaming Duties
#> 2327 Betting and Gaming Duties
#> 2328 Betting and Gaming Duties
#> 2329 Betting and Gaming Duties
#> 2330 Betting and Gaming Duties
#> 2331 Betting and Gaming Duties
#> 2332 Betting and Gaming Duties
#> 2333 Betting and Gaming Duties
#> 2334 Betting and Gaming Duties
#> 2335 Betting and Gaming Duties
#> 2336 Betting and Gaming Duties
#> 2337 Betting and Gaming Duties
#> 2338 Betting and Gaming Duties
#> 2339 Betting and Gaming Duties
#> 2340 Betting and Gaming Duties
#> 2341 Betting and Gaming Duties
#> 2342 Betting and Gaming Duties
#> 2343 Betting and Gaming Duties
#> 2344 Betting and Gaming Duties
#> 2345 Betting and Gaming Duties
#> 2346 Betting and Gaming Duties
#> 2347 Betting and Gaming Duties
#> 2348 Betting and Gaming Duties
#> 2349 Betting and Gaming Duties
#> 2350 Betting and Gaming Duties
#> 2351 Betting and Gaming Duties
#> 2352 Betting and Gaming Duties
#> 2353 Betting and Gaming Duties
#> 2354 Betting and Gaming Duties
#> 2355 Betting and Gaming Duties
#> 2356 Betting and Gaming Duties
#> 2357 Betting and Gaming Duties
#> 2358 Betting and Gaming Duties
#> 2359 Betting and Gaming Duties
#> 2360 Betting and Gaming Duties
#> 2361 Betting and Gaming Duties
#> 2362 Betting and Gaming Duties
#> 2363 Betting and Gaming Duties
#> 2364 Betting and Gaming Duties
#> 2365 Betting and Gaming Duties
#> 2366 Betting and Gaming Duties
#> 2367 Betting and Gaming Duties
#> 2368 Betting and Gaming Duties
#> 2369 Betting and Gaming Duties
#> 2370 Betting and Gaming Duties
#> 2371 Betting and Gaming Duties
#> 2372 Betting and Gaming Duties
#> 2373 Betting and Gaming Duties
#> 2374 Betting and Gaming Duties
#> 2375 Betting and Gaming Duties
#> 2376 Betting and Gaming Duties
#> 2377 Betting and Gaming Duties
#> 2378 Betting and Gaming Duties
#> 2379 Betting and Gaming Duties
#> 2380 Betting and Gaming Duties
#> 2381 Betting and Gaming Duties
#> 2382 Betting and Gaming Duties
#> 2383 Betting and Gaming Duties
#> 2384 Betting and Gaming Duties
#> 2385 Betting and Gaming Duties
#> 2386 Betting and Gaming Duties
#> 2387 Betting and Gaming Duties
#> 2388 Betting and Gaming Duties
#> 2389 Betting and Gaming Duties
#> 2390 Betting and Gaming Duties
#> 2391 Betting and Gaming Duties
#> 2392 Betting and Gaming Duties
#> 2393 Betting and Gaming Duties
#> 2394 Betting and Gaming Duties
#> 2395 Betting and Gaming Duties
#> 2396 Betting and Gaming Duties
#> 2397 Betting and Gaming Duties
#> 2398 Betting and Gaming Duties
#> 2399 Betting and Gaming Duties
#> 2400 Betting and Gaming Duties
#> 2401 Income Tax (PAYE and Self Assessment)
#> 2402 Income Tax (PAYE and Self Assessment)
#> 2403 Income Tax (PAYE and Self Assessment)
#> 2404 Income Tax (PAYE and Self Assessment)
#> 2405 Income Tax (PAYE and Self Assessment)
#> 2406 Income Tax (PAYE and Self Assessment)
#> 2407 Income Tax (PAYE and Self Assessment)
#> 2408 Income Tax (PAYE and Self Assessment)
#> 2409 Income Tax (PAYE and Self Assessment)
#> 2410 Income Tax (PAYE and Self Assessment)
#> 2411 Income Tax (PAYE and Self Assessment)
#> 2412 Income Tax (PAYE and Self Assessment)
#> 2413 Income Tax (PAYE and Self Assessment)
#> 2414 Income Tax (PAYE and Self Assessment)
#> 2415 Income Tax (PAYE and Self Assessment)
#> 2416 Income Tax (PAYE and Self Assessment)
#> 2417 Income Tax (PAYE and Self Assessment)
#> 2418 Income Tax (PAYE and Self Assessment)
#> 2419 Income Tax (PAYE and Self Assessment)
#> 2420 Income Tax (PAYE and Self Assessment)
#> 2421 Income Tax (PAYE and Self Assessment)
#> 2422 Income Tax (PAYE and Self Assessment)
#> 2423 Income Tax (PAYE and Self Assessment)
#> 2424 Income Tax (PAYE and Self Assessment)
#> 2425 Income Tax (PAYE and Self Assessment)
#> 2426 Income Tax (PAYE and Self Assessment)
#> 2427 Income Tax (PAYE and Self Assessment)
#> 2428 Income Tax (PAYE and Self Assessment)
#> 2429 Income Tax (PAYE and Self Assessment)
#> 2430 Income Tax (PAYE and Self Assessment)
#> 2431 Income Tax (PAYE and Self Assessment)
#> 2432 Income Tax (PAYE and Self Assessment)
#> 2433 Income Tax (PAYE and Self Assessment)
#> 2434 Income Tax (PAYE and Self Assessment)
#> 2435 Income Tax (PAYE and Self Assessment)
#> 2436 Income Tax (PAYE and Self Assessment)
#> 2437 Income Tax (PAYE and Self Assessment)
#> 2438 Income Tax (PAYE and Self Assessment)
#> 2439 Income Tax (PAYE and Self Assessment)
#> 2440 Income Tax (PAYE and Self Assessment)
#> 2441 Income Tax (PAYE and Self Assessment)
#> 2442 Income Tax (PAYE and Self Assessment)
#> 2443 Income Tax (PAYE and Self Assessment)
#> 2444 Income Tax (PAYE and Self Assessment)
#> 2445 Income Tax (PAYE and Self Assessment)
#> 2446 Income Tax (PAYE and Self Assessment)
#> 2447 Income Tax (PAYE and Self Assessment)
#> 2448 Income Tax (PAYE and Self Assessment)
#> 2449 Income Tax (PAYE and Self Assessment)
#> 2450 Income Tax (PAYE and Self Assessment)
#> 2451 Income Tax (PAYE and Self Assessment)
#> 2452 Income Tax (PAYE and Self Assessment)
#> 2453 Income Tax (PAYE and Self Assessment)
#> 2454 Income Tax (PAYE and Self Assessment)
#> 2455 Income Tax (PAYE and Self Assessment)
#> 2456 Income Tax (PAYE and Self Assessment)
#> 2457 Income Tax (PAYE and Self Assessment)
#> 2458 Income Tax (PAYE and Self Assessment)
#> 2459 Income Tax (PAYE and Self Assessment)
#> 2460 Income Tax (PAYE and Self Assessment)
#> 2461 Income Tax (PAYE and Self Assessment)
#> 2462 Income Tax (PAYE and Self Assessment)
#> 2463 Income Tax (PAYE and Self Assessment)
#> 2464 Income Tax (PAYE and Self Assessment)
#> 2465 Income Tax (PAYE and Self Assessment)
#> 2466 Income Tax (PAYE and Self Assessment)
#> 2467 Income Tax (PAYE and Self Assessment)
#> 2468 Income Tax (PAYE and Self Assessment)
#> 2469 Income Tax (PAYE and Self Assessment)
#> 2470 Income Tax (PAYE and Self Assessment)
#> 2471 Income Tax (PAYE and Self Assessment)
#> 2472 Income Tax (PAYE and Self Assessment)
#> 2473 Income Tax (PAYE and Self Assessment)
#> 2474 Income Tax (PAYE and Self Assessment)
#> 2475 Income Tax (PAYE and Self Assessment)
#> 2476 Income Tax (PAYE and Self Assessment)
#> 2477 Income Tax (PAYE and Self Assessment)
#> 2478 Income Tax (PAYE and Self Assessment)
#> 2479 Income Tax (PAYE and Self Assessment)
#> 2480 Income Tax (PAYE and Self Assessment)
#> 2481 Income Tax (PAYE and Self Assessment)
#> 2482 Income Tax (PAYE and Self Assessment)
#> 2483 Income Tax (PAYE and Self Assessment)
#> 2484 Income Tax (PAYE and Self Assessment)
#> 2485 Income Tax (PAYE and Self Assessment)
#> 2486 Income Tax (PAYE and Self Assessment)
#> 2487 Income Tax (PAYE and Self Assessment)
#> 2488 Income Tax (PAYE and Self Assessment)
#> 2489 Income Tax (PAYE and Self Assessment)
#> 2490 Income Tax (PAYE and Self Assessment)
#> 2491 Income Tax (PAYE and Self Assessment)
#> 2492 Income Tax (PAYE and Self Assessment)
#> 2493 Income Tax (PAYE and Self Assessment)
#> 2494 Income Tax (PAYE and Self Assessment)
#> 2495 Income Tax (PAYE and Self Assessment)
#> 2496 Income Tax (PAYE and Self Assessment)
#> 2497 Income Tax (PAYE and Self Assessment)
#> 2498 Income Tax (PAYE and Self Assessment)
#> 2499 Income Tax (PAYE and Self Assessment)
#> 2500 Income Tax (PAYE and Self Assessment)
#> 2501 Income Tax (PAYE and Self Assessment)
#> 2502 Income Tax (PAYE and Self Assessment)
#> 2503 Income Tax (PAYE and Self Assessment)
#> 2504 Income Tax (PAYE and Self Assessment)
#> 2505 Income Tax (PAYE and Self Assessment)
#> 2506 Income Tax (PAYE and Self Assessment)
#> 2507 Income Tax (PAYE and Self Assessment)
#> 2508 Income Tax (PAYE and Self Assessment)
#> 2509 Income Tax (PAYE and Self Assessment)
#> 2510 Income Tax (PAYE and Self Assessment)
#> 2511 Income Tax (PAYE and Self Assessment)
#> 2512 Income Tax (PAYE and Self Assessment)
#> 2513 Income Tax (PAYE and Self Assessment)
#> 2514 Income Tax (PAYE and Self Assessment)
#> 2515 Income Tax (PAYE and Self Assessment)
#> 2516 Income Tax (PAYE and Self Assessment)
#> 2517 Income Tax (PAYE and Self Assessment)
#> 2518 Income Tax (PAYE and Self Assessment)
#> 2519 Income Tax (PAYE and Self Assessment)
#> 2520 Income Tax (PAYE and Self Assessment)
#> 2521 Inheritance Tax
#> 2522 Inheritance Tax
#> 2523 Inheritance Tax
#> 2524 Inheritance Tax
#> 2525 Inheritance Tax
#> 2526 Inheritance Tax
#> 2527 Inheritance Tax
#> 2528 Inheritance Tax
#> 2529 Inheritance Tax
#> 2530 Inheritance Tax
#> 2531 Inheritance Tax
#> 2532 Inheritance Tax
#> 2533 Inheritance Tax
#> 2534 Inheritance Tax
#> 2535 Inheritance Tax
#> 2536 Inheritance Tax
#> 2537 Inheritance Tax
#> 2538 Inheritance Tax
#> 2539 Inheritance Tax
#> 2540 Inheritance Tax
#> 2541 Inheritance Tax
#> 2542 Inheritance Tax
#> 2543 Inheritance Tax
#> 2544 Inheritance Tax
#> 2545 Inheritance Tax
#> 2546 Inheritance Tax
#> 2547 Inheritance Tax
#> 2548 Inheritance Tax
#> 2549 Inheritance Tax
#> 2550 Inheritance Tax
#> 2551 Inheritance Tax
#> 2552 Inheritance Tax
#> 2553 Inheritance Tax
#> 2554 Inheritance Tax
#> 2555 Inheritance Tax
#> 2556 Inheritance Tax
#> 2557 Inheritance Tax
#> 2558 Inheritance Tax
#> 2559 Inheritance Tax
#> 2560 Inheritance Tax
#> 2561 Inheritance Tax
#> 2562 Inheritance Tax
#> 2563 Inheritance Tax
#> 2564 Inheritance Tax
#> 2565 Inheritance Tax
#> 2566 Inheritance Tax
#> 2567 Inheritance Tax
#> 2568 Inheritance Tax
#> 2569 Inheritance Tax
#> 2570 Inheritance Tax
#> 2571 Inheritance Tax
#> 2572 Inheritance Tax
#> 2573 Inheritance Tax
#> 2574 Inheritance Tax
#> 2575 Inheritance Tax
#> 2576 Inheritance Tax
#> 2577 Inheritance Tax
#> 2578 Inheritance Tax
#> 2579 Inheritance Tax
#> 2580 Inheritance Tax
#> 2581 Inheritance Tax
#> 2582 Inheritance Tax
#> 2583 Inheritance Tax
#> 2584 Inheritance Tax
#> 2585 Inheritance Tax
#> 2586 Inheritance Tax
#> 2587 Inheritance Tax
#> 2588 Inheritance Tax
#> 2589 Inheritance Tax
#> 2590 Inheritance Tax
#> 2591 Inheritance Tax
#> 2592 Inheritance Tax
#> 2593 Inheritance Tax
#> 2594 Inheritance Tax
#> 2595 Inheritance Tax
#> 2596 Inheritance Tax
#> 2597 Inheritance Tax
#> 2598 Inheritance Tax
#> 2599 Inheritance Tax
#> 2600 Inheritance Tax
#> 2601 Inheritance Tax
#> 2602 Inheritance Tax
#> 2603 Inheritance Tax
#> 2604 Inheritance Tax
#> 2605 Inheritance Tax
#> 2606 Inheritance Tax
#> 2607 Inheritance Tax
#> 2608 Inheritance Tax
#> 2609 Inheritance Tax
#> 2610 Inheritance Tax
#> 2611 Inheritance Tax
#> 2612 Inheritance Tax
#> 2613 Inheritance Tax
#> 2614 Inheritance Tax
#> 2615 Inheritance Tax
#> 2616 Inheritance Tax
#> 2617 Inheritance Tax
#> 2618 Inheritance Tax
#> 2619 Inheritance Tax
#> 2620 Inheritance Tax
#> 2621 Inheritance Tax
#> 2622 Inheritance Tax
#> 2623 Inheritance Tax
#> 2624 Inheritance Tax
#> 2625 Inheritance Tax
#> 2626 Inheritance Tax
#> 2627 Inheritance Tax
#> 2628 Inheritance Tax
#> 2629 Inheritance Tax
#> 2630 Inheritance Tax
#> 2631 Inheritance Tax
#> 2632 Inheritance Tax
#> 2633 Inheritance Tax
#> 2634 Inheritance Tax
#> 2635 Inheritance Tax
#> 2636 Inheritance Tax
#> 2637 Inheritance Tax
#> 2638 Inheritance Tax
#> 2639 Inheritance Tax
#> 2640 Inheritance Tax
#> 2641 Insurance Premium Tax
#> 2642 Insurance Premium Tax
#> 2643 Insurance Premium Tax
#> 2644 Insurance Premium Tax
#> 2645 Insurance Premium Tax
#> 2646 Insurance Premium Tax
#> 2647 Insurance Premium Tax
#> 2648 Insurance Premium Tax
#> 2649 Insurance Premium Tax
#> 2650 Insurance Premium Tax
#> 2651 Insurance Premium Tax
#> 2652 Insurance Premium Tax
#> 2653 Insurance Premium Tax
#> 2654 Insurance Premium Tax
#> 2655 Insurance Premium Tax
#> 2656 Insurance Premium Tax
#> 2657 Insurance Premium Tax
#> 2658 Insurance Premium Tax
#> 2659 Insurance Premium Tax
#> 2660 Insurance Premium Tax
#> 2661 Insurance Premium Tax
#> 2662 Insurance Premium Tax
#> 2663 Insurance Premium Tax
#> 2664 Insurance Premium Tax
#> 2665 Insurance Premium Tax
#> 2666 Insurance Premium Tax
#> 2667 Insurance Premium Tax
#> 2668 Insurance Premium Tax
#> 2669 Insurance Premium Tax
#> 2670 Insurance Premium Tax
#> 2671 Insurance Premium Tax
#> 2672 Insurance Premium Tax
#> 2673 Insurance Premium Tax
#> 2674 Insurance Premium Tax
#> 2675 Insurance Premium Tax
#> 2676 Insurance Premium Tax
#> 2677 Insurance Premium Tax
#> 2678 Insurance Premium Tax
#> 2679 Insurance Premium Tax
#> 2680 Insurance Premium Tax
#> 2681 Insurance Premium Tax
#> 2682 Insurance Premium Tax
#> 2683 Insurance Premium Tax
#> 2684 Insurance Premium Tax
#> 2685 Insurance Premium Tax
#> 2686 Insurance Premium Tax
#> 2687 Insurance Premium Tax
#> 2688 Insurance Premium Tax
#> 2689 Insurance Premium Tax
#> 2690 Insurance Premium Tax
#> 2691 Insurance Premium Tax
#> 2692 Insurance Premium Tax
#> 2693 Insurance Premium Tax
#> 2694 Insurance Premium Tax
#> 2695 Insurance Premium Tax
#> 2696 Insurance Premium Tax
#> 2697 Insurance Premium Tax
#> 2698 Insurance Premium Tax
#> 2699 Insurance Premium Tax
#> 2700 Insurance Premium Tax
#> 2701 Insurance Premium Tax
#> 2702 Insurance Premium Tax
#> 2703 Insurance Premium Tax
#> 2704 Insurance Premium Tax
#> 2705 Insurance Premium Tax
#> 2706 Insurance Premium Tax
#> 2707 Insurance Premium Tax
#> 2708 Insurance Premium Tax
#> 2709 Insurance Premium Tax
#> 2710 Insurance Premium Tax
#> 2711 Insurance Premium Tax
#> 2712 Insurance Premium Tax
#> 2713 Insurance Premium Tax
#> 2714 Insurance Premium Tax
#> 2715 Insurance Premium Tax
#> 2716 Insurance Premium Tax
#> 2717 Insurance Premium Tax
#> 2718 Insurance Premium Tax
#> 2719 Insurance Premium Tax
#> 2720 Insurance Premium Tax
#> 2721 Insurance Premium Tax
#> 2722 Insurance Premium Tax
#> 2723 Insurance Premium Tax
#> 2724 Insurance Premium Tax
#> 2725 Insurance Premium Tax
#> 2726 Insurance Premium Tax
#> 2727 Insurance Premium Tax
#> 2728 Insurance Premium Tax
#> 2729 Insurance Premium Tax
#> 2730 Insurance Premium Tax
#> 2731 Insurance Premium Tax
#> 2732 Insurance Premium Tax
#> 2733 Insurance Premium Tax
#> 2734 Insurance Premium Tax
#> 2735 Insurance Premium Tax
#> 2736 Insurance Premium Tax
#> 2737 Insurance Premium Tax
#> 2738 Insurance Premium Tax
#> 2739 Insurance Premium Tax
#> 2740 Insurance Premium Tax
#> 2741 Insurance Premium Tax
#> 2742 Insurance Premium Tax
#> 2743 Insurance Premium Tax
#> 2744 Insurance Premium Tax
#> 2745 Insurance Premium Tax
#> 2746 Insurance Premium Tax
#> 2747 Insurance Premium Tax
#> 2748 Insurance Premium Tax
#> 2749 Insurance Premium Tax
#> 2750 Insurance Premium Tax
#> 2751 Insurance Premium Tax
#> 2752 Insurance Premium Tax
#> 2753 Insurance Premium Tax
#> 2754 Insurance Premium Tax
#> 2755 Insurance Premium Tax
#> 2756 Insurance Premium Tax
#> 2757 Insurance Premium Tax
#> 2758 Insurance Premium Tax
#> 2759 Insurance Premium Tax
#> 2760 Insurance Premium Tax
#> 2761 Landfill Tax
#> 2762 Landfill Tax
#> 2763 Landfill Tax
#> 2764 Landfill Tax
#> 2765 Landfill Tax
#> 2766 Landfill Tax
#> 2767 Landfill Tax
#> 2768 Landfill Tax
#> 2769 Landfill Tax
#> 2770 Landfill Tax
#> 2771 Landfill Tax
#> 2772 Landfill Tax
#> 2773 Landfill Tax
#> 2774 Landfill Tax
#> 2775 Landfill Tax
#> 2776 Landfill Tax
#> 2777 Landfill Tax
#> 2778 Landfill Tax
#> 2779 Landfill Tax
#> 2780 Landfill Tax
#> 2781 Landfill Tax
#> 2782 Landfill Tax
#> 2783 Landfill Tax
#> 2784 Landfill Tax
#> 2785 Landfill Tax
#> 2786 Landfill Tax
#> 2787 Landfill Tax
#> 2788 Landfill Tax
#> 2789 Landfill Tax
#> 2790 Landfill Tax
#> 2791 Landfill Tax
#> 2792 Landfill Tax
#> 2793 Landfill Tax
#> 2794 Landfill Tax
#> 2795 Landfill Tax
#> 2796 Landfill Tax
#> 2797 Landfill Tax
#> 2798 Landfill Tax
#> 2799 Landfill Tax
#> 2800 Landfill Tax
#> 2801 Landfill Tax
#> 2802 Landfill Tax
#> 2803 Landfill Tax
#> 2804 Landfill Tax
#> 2805 Landfill Tax
#> 2806 Landfill Tax
#> 2807 Landfill Tax
#> 2808 Landfill Tax
#> 2809 Landfill Tax
#> 2810 Landfill Tax
#> 2811 Landfill Tax
#> 2812 Landfill Tax
#> 2813 Landfill Tax
#> 2814 Landfill Tax
#> 2815 Landfill Tax
#> 2816 Landfill Tax
#> 2817 Landfill Tax
#> 2818 Landfill Tax
#> 2819 Landfill Tax
#> 2820 Landfill Tax
#> 2821 Landfill Tax
#> 2822 Landfill Tax
#> 2823 Landfill Tax
#> 2824 Landfill Tax
#> 2825 Landfill Tax
#> 2826 Landfill Tax
#> 2827 Landfill Tax
#> 2828 Landfill Tax
#> 2829 Landfill Tax
#> 2830 Landfill Tax
#> 2831 Landfill Tax
#> 2832 Landfill Tax
#> 2833 Landfill Tax
#> 2834 Landfill Tax
#> 2835 Landfill Tax
#> 2836 Landfill Tax
#> 2837 Landfill Tax
#> 2838 Landfill Tax
#> 2839 Landfill Tax
#> 2840 Landfill Tax
#> 2841 Landfill Tax
#> 2842 Landfill Tax
#> 2843 Landfill Tax
#> 2844 Landfill Tax
#> 2845 Landfill Tax
#> 2846 Landfill Tax
#> 2847 Landfill Tax
#> 2848 Landfill Tax
#> 2849 Landfill Tax
#> 2850 Landfill Tax
#> 2851 Landfill Tax
#> 2852 Landfill Tax
#> 2853 Landfill Tax
#> 2854 Landfill Tax
#> 2855 Landfill Tax
#> 2856 Landfill Tax
#> 2857 Landfill Tax
#> 2858 Landfill Tax
#> 2859 Landfill Tax
#> 2860 Landfill Tax
#> 2861 Landfill Tax
#> 2862 Landfill Tax
#> 2863 Landfill Tax
#> 2864 Landfill Tax
#> 2865 Landfill Tax
#> 2866 Landfill Tax
#> 2867 Landfill Tax
#> 2868 Landfill Tax
#> 2869 Landfill Tax
#> 2870 Landfill Tax
#> 2871 Landfill Tax
#> 2872 Landfill Tax
#> 2873 Landfill Tax
#> 2874 Landfill Tax
#> 2875 Landfill Tax
#> 2876 Landfill Tax
#> 2877 Landfill Tax
#> 2878 Landfill Tax
#> 2879 Landfill Tax
#> 2880 Landfill Tax
#> 2881 Miscellaneous receipts
#> 2882 Miscellaneous receipts
#> 2883 Miscellaneous receipts
#> 2884 Miscellaneous receipts
#> 2885 Miscellaneous receipts
#> 2886 Miscellaneous receipts
#> 2887 Miscellaneous receipts
#> 2888 Miscellaneous receipts
#> 2889 Miscellaneous receipts
#> 2890 Miscellaneous receipts
#> 2891 Miscellaneous receipts
#> 2892 Miscellaneous receipts
#> 2893 Miscellaneous receipts
#> 2894 Miscellaneous receipts
#> 2895 Miscellaneous receipts
#> 2896 Miscellaneous receipts
#> 2897 Miscellaneous receipts
#> 2898 Miscellaneous receipts
#> 2899 Miscellaneous receipts
#> 2900 Miscellaneous receipts
#> 2901 Miscellaneous receipts
#> 2902 Miscellaneous receipts
#> 2903 Miscellaneous receipts
#> 2904 Miscellaneous receipts
#> 2905 Miscellaneous receipts
#> 2906 Miscellaneous receipts
#> 2907 Miscellaneous receipts
#> 2908 Miscellaneous receipts
#> 2909 Miscellaneous receipts
#> 2910 Miscellaneous receipts
#> 2911 Miscellaneous receipts
#> 2912 Miscellaneous receipts
#> 2913 Miscellaneous receipts
#> 2914 Miscellaneous receipts
#> 2915 Miscellaneous receipts
#> 2916 Miscellaneous receipts
#> 2917 Miscellaneous receipts
#> 2918 Miscellaneous receipts
#> 2919 Miscellaneous receipts
#> 2920 Miscellaneous receipts
#> 2921 Miscellaneous receipts
#> 2922 Miscellaneous receipts
#> 2923 Miscellaneous receipts
#> 2924 Miscellaneous receipts
#> 2925 Miscellaneous receipts
#> 2926 Miscellaneous receipts
#> 2927 Miscellaneous receipts
#> 2928 Miscellaneous receipts
#> 2929 Miscellaneous receipts
#> 2930 Miscellaneous receipts
#> 2931 Miscellaneous receipts
#> 2932 Miscellaneous receipts
#> 2933 Miscellaneous receipts
#> 2934 Miscellaneous receipts
#> 2935 Miscellaneous receipts
#> 2936 Miscellaneous receipts
#> 2937 Miscellaneous receipts
#> 2938 Miscellaneous receipts
#> 2939 Miscellaneous receipts
#> 2940 Miscellaneous receipts
#> 2941 Miscellaneous receipts
#> 2942 Miscellaneous receipts
#> 2943 Miscellaneous receipts
#> 2944 Miscellaneous receipts
#> 2945 Miscellaneous receipts
#> 2946 Miscellaneous receipts
#> 2947 Miscellaneous receipts
#> 2948 Miscellaneous receipts
#> 2949 Miscellaneous receipts
#> 2950 Miscellaneous receipts
#> 2951 Miscellaneous receipts
#> 2952 Miscellaneous receipts
#> 2953 Miscellaneous receipts
#> 2954 Miscellaneous receipts
#> 2955 Miscellaneous receipts
#> 2956 Miscellaneous receipts
#> 2957 Miscellaneous receipts
#> 2958 Miscellaneous receipts
#> 2959 Miscellaneous receipts
#> 2960 Miscellaneous receipts
#> 2961 Miscellaneous receipts
#> 2962 Miscellaneous receipts
#> 2963 Miscellaneous receipts
#> 2964 Miscellaneous receipts
#> 2965 Miscellaneous receipts
#> 2966 Miscellaneous receipts
#> 2967 Miscellaneous receipts
#> 2968 Miscellaneous receipts
#> 2969 Miscellaneous receipts
#> 2970 Miscellaneous receipts
#> 2971 Miscellaneous receipts
#> 2972 Miscellaneous receipts
#> 2973 Miscellaneous receipts
#> 2974 Miscellaneous receipts
#> 2975 Miscellaneous receipts
#> 2976 Miscellaneous receipts
#> 2977 Miscellaneous receipts
#> 2978 Miscellaneous receipts
#> 2979 Miscellaneous receipts
#> 2980 Miscellaneous receipts
#> 2981 Miscellaneous receipts
#> 2982 Miscellaneous receipts
#> 2983 Miscellaneous receipts
#> 2984 Miscellaneous receipts
#> 2985 Miscellaneous receipts
#> 2986 Miscellaneous receipts
#> 2987 Miscellaneous receipts
#> 2988 Miscellaneous receipts
#> 2989 Miscellaneous receipts
#> 2990 Miscellaneous receipts
#> 2991 Miscellaneous receipts
#> 2992 Miscellaneous receipts
#> 2993 Miscellaneous receipts
#> 2994 Miscellaneous receipts
#> 2995 Miscellaneous receipts
#> 2996 Miscellaneous receipts
#> 2997 Miscellaneous receipts
#> 2998 Miscellaneous receipts
#> 2999 Miscellaneous receipts
#> 3000 Miscellaneous receipts
#> 3001 National Insurance Contributions - employee (Class 1 PAYE)
#> 3002 National Insurance Contributions - employee (Class 1 PAYE)
#> 3003 National Insurance Contributions - employee (Class 1 PAYE)
#> 3004 National Insurance Contributions - employee (Class 1 PAYE)
#> 3005 National Insurance Contributions - employee (Class 1 PAYE)
#> 3006 National Insurance Contributions - employee (Class 1 PAYE)
#> 3007 National Insurance Contributions - employee (Class 1 PAYE)
#> 3008 National Insurance Contributions - employee (Class 1 PAYE)
#> 3009 National Insurance Contributions - employee (Class 1 PAYE)
#> 3010 National Insurance Contributions - employee (Class 1 PAYE)
#> 3011 National Insurance Contributions - employee (Class 1 PAYE)
#> 3012 National Insurance Contributions - employee (Class 1 PAYE)
#> 3013 National Insurance Contributions - employee (Class 1 PAYE)
#> 3014 National Insurance Contributions - employee (Class 1 PAYE)
#> 3015 National Insurance Contributions - employee (Class 1 PAYE)
#> 3016 National Insurance Contributions - employee (Class 1 PAYE)
#> 3017 National Insurance Contributions - employee (Class 1 PAYE)
#> 3018 National Insurance Contributions - employee (Class 1 PAYE)
#> 3019 National Insurance Contributions - employee (Class 1 PAYE)
#> 3020 National Insurance Contributions - employee (Class 1 PAYE)
#> 3021 National Insurance Contributions - employee (Class 1 PAYE)
#> 3022 National Insurance Contributions - employee (Class 1 PAYE)
#> 3023 National Insurance Contributions - employee (Class 1 PAYE)
#> 3024 National Insurance Contributions - employee (Class 1 PAYE)
#> 3025 National Insurance Contributions - employee (Class 1 PAYE)
#> 3026 National Insurance Contributions - employee (Class 1 PAYE)
#> 3027 National Insurance Contributions - employee (Class 1 PAYE)
#> 3028 National Insurance Contributions - employee (Class 1 PAYE)
#> 3029 National Insurance Contributions - employee (Class 1 PAYE)
#> 3030 National Insurance Contributions - employee (Class 1 PAYE)
#> 3031 National Insurance Contributions - employee (Class 1 PAYE)
#> 3032 National Insurance Contributions - employee (Class 1 PAYE)
#> 3033 National Insurance Contributions - employee (Class 1 PAYE)
#> 3034 National Insurance Contributions - employee (Class 1 PAYE)
#> 3035 National Insurance Contributions - employee (Class 1 PAYE)
#> 3036 National Insurance Contributions - employee (Class 1 PAYE)
#> 3037 National Insurance Contributions - employee (Class 1 PAYE)
#> 3038 National Insurance Contributions - employee (Class 1 PAYE)
#> 3039 National Insurance Contributions - employee (Class 1 PAYE)
#> 3040 National Insurance Contributions - employee (Class 1 PAYE)
#> 3041 National Insurance Contributions - employee (Class 1 PAYE)
#> 3042 National Insurance Contributions - employee (Class 1 PAYE)
#> 3043 National Insurance Contributions - employee (Class 1 PAYE)
#> 3044 National Insurance Contributions - employee (Class 1 PAYE)
#> 3045 National Insurance Contributions - employee (Class 1 PAYE)
#> 3046 National Insurance Contributions - employee (Class 1 PAYE)
#> 3047 National Insurance Contributions - employee (Class 1 PAYE)
#> 3048 National Insurance Contributions - employee (Class 1 PAYE)
#> 3049 National Insurance Contributions - employee (Class 1 PAYE)
#> 3050 National Insurance Contributions - employee (Class 1 PAYE)
#> 3051 National Insurance Contributions - employee (Class 1 PAYE)
#> 3052 National Insurance Contributions - employee (Class 1 PAYE)
#> 3053 National Insurance Contributions - employee (Class 1 PAYE)
#> 3054 National Insurance Contributions - employee (Class 1 PAYE)
#> 3055 National Insurance Contributions - employee (Class 1 PAYE)
#> 3056 National Insurance Contributions - employee (Class 1 PAYE)
#> 3057 National Insurance Contributions - employee (Class 1 PAYE)
#> 3058 National Insurance Contributions - employee (Class 1 PAYE)
#> 3059 National Insurance Contributions - employee (Class 1 PAYE)
#> 3060 National Insurance Contributions - employee (Class 1 PAYE)
#> 3061 National Insurance Contributions - employee (Class 1 PAYE)
#> 3062 National Insurance Contributions - employee (Class 1 PAYE)
#> 3063 National Insurance Contributions - employee (Class 1 PAYE)
#> 3064 National Insurance Contributions - employee (Class 1 PAYE)
#> 3065 National Insurance Contributions - employee (Class 1 PAYE)
#> 3066 National Insurance Contributions - employee (Class 1 PAYE)
#> 3067 National Insurance Contributions - employee (Class 1 PAYE)
#> 3068 National Insurance Contributions - employee (Class 1 PAYE)
#> 3069 National Insurance Contributions - employee (Class 1 PAYE)
#> 3070 National Insurance Contributions - employee (Class 1 PAYE)
#> 3071 National Insurance Contributions - employee (Class 1 PAYE)
#> 3072 National Insurance Contributions - employee (Class 1 PAYE)
#> 3073 National Insurance Contributions - employee (Class 1 PAYE)
#> 3074 National Insurance Contributions - employee (Class 1 PAYE)
#> 3075 National Insurance Contributions - employee (Class 1 PAYE)
#> 3076 National Insurance Contributions - employee (Class 1 PAYE)
#> 3077 National Insurance Contributions - employee (Class 1 PAYE)
#> 3078 National Insurance Contributions - employee (Class 1 PAYE)
#> 3079 National Insurance Contributions - employee (Class 1 PAYE)
#> 3080 National Insurance Contributions - employee (Class 1 PAYE)
#> 3081 National Insurance Contributions - employee (Class 1 PAYE)
#> 3082 National Insurance Contributions - employee (Class 1 PAYE)
#> 3083 National Insurance Contributions - employee (Class 1 PAYE)
#> 3084 National Insurance Contributions - employee (Class 1 PAYE)
#> 3085 National Insurance Contributions - employee (Class 1 PAYE)
#> 3086 National Insurance Contributions - employee (Class 1 PAYE)
#> 3087 National Insurance Contributions - employee (Class 1 PAYE)
#> 3088 National Insurance Contributions - employee (Class 1 PAYE)
#> 3089 National Insurance Contributions - employee (Class 1 PAYE)
#> 3090 National Insurance Contributions - employee (Class 1 PAYE)
#> 3091 National Insurance Contributions - employee (Class 1 PAYE)
#> 3092 National Insurance Contributions - employee (Class 1 PAYE)
#> 3093 National Insurance Contributions - employee (Class 1 PAYE)
#> 3094 National Insurance Contributions - employee (Class 1 PAYE)
#> 3095 National Insurance Contributions - employee (Class 1 PAYE)
#> 3096 National Insurance Contributions - employee (Class 1 PAYE)
#> 3097 National Insurance Contributions - employee (Class 1 PAYE)
#> 3098 National Insurance Contributions - employee (Class 1 PAYE)
#> 3099 National Insurance Contributions - employee (Class 1 PAYE)
#> 3100 National Insurance Contributions - employee (Class 1 PAYE)
#> 3101 National Insurance Contributions - employee (Class 1 PAYE)
#> 3102 National Insurance Contributions - employee (Class 1 PAYE)
#> 3103 National Insurance Contributions - employee (Class 1 PAYE)
#> 3104 National Insurance Contributions - employee (Class 1 PAYE)
#> 3105 National Insurance Contributions - employee (Class 1 PAYE)
#> 3106 National Insurance Contributions - employee (Class 1 PAYE)
#> 3107 National Insurance Contributions - employee (Class 1 PAYE)
#> 3108 National Insurance Contributions - employee (Class 1 PAYE)
#> 3109 National Insurance Contributions - employee (Class 1 PAYE)
#> 3110 National Insurance Contributions - employee (Class 1 PAYE)
#> 3111 National Insurance Contributions - employee (Class 1 PAYE)
#> 3112 National Insurance Contributions - employee (Class 1 PAYE)
#> 3113 National Insurance Contributions - employee (Class 1 PAYE)
#> 3114 National Insurance Contributions - employee (Class 1 PAYE)
#> 3115 National Insurance Contributions - employee (Class 1 PAYE)
#> 3116 National Insurance Contributions - employee (Class 1 PAYE)
#> 3117 National Insurance Contributions - employee (Class 1 PAYE)
#> 3118 National Insurance Contributions - employee (Class 1 PAYE)
#> 3119 National Insurance Contributions - employee (Class 1 PAYE)
#> 3120 National Insurance Contributions - employee (Class 1 PAYE)
#> 3121 National Insurance Contributions - employer (Class 1 PAYE)
#> 3122 National Insurance Contributions - employer (Class 1 PAYE)
#> 3123 National Insurance Contributions - employer (Class 1 PAYE)
#> 3124 National Insurance Contributions - employer (Class 1 PAYE)
#> 3125 National Insurance Contributions - employer (Class 1 PAYE)
#> 3126 National Insurance Contributions - employer (Class 1 PAYE)
#> 3127 National Insurance Contributions - employer (Class 1 PAYE)
#> 3128 National Insurance Contributions - employer (Class 1 PAYE)
#> 3129 National Insurance Contributions - employer (Class 1 PAYE)
#> 3130 National Insurance Contributions - employer (Class 1 PAYE)
#> 3131 National Insurance Contributions - employer (Class 1 PAYE)
#> 3132 National Insurance Contributions - employer (Class 1 PAYE)
#> 3133 National Insurance Contributions - employer (Class 1 PAYE)
#> 3134 National Insurance Contributions - employer (Class 1 PAYE)
#> 3135 National Insurance Contributions - employer (Class 1 PAYE)
#> 3136 National Insurance Contributions - employer (Class 1 PAYE)
#> 3137 National Insurance Contributions - employer (Class 1 PAYE)
#> 3138 National Insurance Contributions - employer (Class 1 PAYE)
#> 3139 National Insurance Contributions - employer (Class 1 PAYE)
#> 3140 National Insurance Contributions - employer (Class 1 PAYE)
#> 3141 National Insurance Contributions - employer (Class 1 PAYE)
#> 3142 National Insurance Contributions - employer (Class 1 PAYE)
#> 3143 National Insurance Contributions - employer (Class 1 PAYE)
#> 3144 National Insurance Contributions - employer (Class 1 PAYE)
#> 3145 National Insurance Contributions - employer (Class 1 PAYE)
#> 3146 National Insurance Contributions - employer (Class 1 PAYE)
#> 3147 National Insurance Contributions - employer (Class 1 PAYE)
#> 3148 National Insurance Contributions - employer (Class 1 PAYE)
#> 3149 National Insurance Contributions - employer (Class 1 PAYE)
#> 3150 National Insurance Contributions - employer (Class 1 PAYE)
#> 3151 National Insurance Contributions - employer (Class 1 PAYE)
#> 3152 National Insurance Contributions - employer (Class 1 PAYE)
#> 3153 National Insurance Contributions - employer (Class 1 PAYE)
#> 3154 National Insurance Contributions - employer (Class 1 PAYE)
#> 3155 National Insurance Contributions - employer (Class 1 PAYE)
#> 3156 National Insurance Contributions - employer (Class 1 PAYE)
#> 3157 National Insurance Contributions - employer (Class 1 PAYE)
#> 3158 National Insurance Contributions - employer (Class 1 PAYE)
#> 3159 National Insurance Contributions - employer (Class 1 PAYE)
#> 3160 National Insurance Contributions - employer (Class 1 PAYE)
#> 3161 National Insurance Contributions - employer (Class 1 PAYE)
#> 3162 National Insurance Contributions - employer (Class 1 PAYE)
#> 3163 National Insurance Contributions - employer (Class 1 PAYE)
#> 3164 National Insurance Contributions - employer (Class 1 PAYE)
#> 3165 National Insurance Contributions - employer (Class 1 PAYE)
#> 3166 National Insurance Contributions - employer (Class 1 PAYE)
#> 3167 National Insurance Contributions - employer (Class 1 PAYE)
#> 3168 National Insurance Contributions - employer (Class 1 PAYE)
#> 3169 National Insurance Contributions - employer (Class 1 PAYE)
#> 3170 National Insurance Contributions - employer (Class 1 PAYE)
#> 3171 National Insurance Contributions - employer (Class 1 PAYE)
#> 3172 National Insurance Contributions - employer (Class 1 PAYE)
#> 3173 National Insurance Contributions - employer (Class 1 PAYE)
#> 3174 National Insurance Contributions - employer (Class 1 PAYE)
#> 3175 National Insurance Contributions - employer (Class 1 PAYE)
#> 3176 National Insurance Contributions - employer (Class 1 PAYE)
#> 3177 National Insurance Contributions - employer (Class 1 PAYE)
#> 3178 National Insurance Contributions - employer (Class 1 PAYE)
#> 3179 National Insurance Contributions - employer (Class 1 PAYE)
#> 3180 National Insurance Contributions - employer (Class 1 PAYE)
#> 3181 National Insurance Contributions - employer (Class 1 PAYE)
#> 3182 National Insurance Contributions - employer (Class 1 PAYE)
#> 3183 National Insurance Contributions - employer (Class 1 PAYE)
#> 3184 National Insurance Contributions - employer (Class 1 PAYE)
#> 3185 National Insurance Contributions - employer (Class 1 PAYE)
#> 3186 National Insurance Contributions - employer (Class 1 PAYE)
#> 3187 National Insurance Contributions - employer (Class 1 PAYE)
#> 3188 National Insurance Contributions - employer (Class 1 PAYE)
#> 3189 National Insurance Contributions - employer (Class 1 PAYE)
#> 3190 National Insurance Contributions - employer (Class 1 PAYE)
#> 3191 National Insurance Contributions - employer (Class 1 PAYE)
#> 3192 National Insurance Contributions - employer (Class 1 PAYE)
#> 3193 National Insurance Contributions - employer (Class 1 PAYE)
#> 3194 National Insurance Contributions - employer (Class 1 PAYE)
#> 3195 National Insurance Contributions - employer (Class 1 PAYE)
#> 3196 National Insurance Contributions - employer (Class 1 PAYE)
#> 3197 National Insurance Contributions - employer (Class 1 PAYE)
#> 3198 National Insurance Contributions - employer (Class 1 PAYE)
#> 3199 National Insurance Contributions - employer (Class 1 PAYE)
#> 3200 National Insurance Contributions - employer (Class 1 PAYE)
#> 3201 National Insurance Contributions - employer (Class 1 PAYE)
#> 3202 National Insurance Contributions - employer (Class 1 PAYE)
#> 3203 National Insurance Contributions - employer (Class 1 PAYE)
#> 3204 National Insurance Contributions - employer (Class 1 PAYE)
#> 3205 National Insurance Contributions - employer (Class 1 PAYE)
#> 3206 National Insurance Contributions - employer (Class 1 PAYE)
#> 3207 National Insurance Contributions - employer (Class 1 PAYE)
#> 3208 National Insurance Contributions - employer (Class 1 PAYE)
#> 3209 National Insurance Contributions - employer (Class 1 PAYE)
#> 3210 National Insurance Contributions - employer (Class 1 PAYE)
#> 3211 National Insurance Contributions - employer (Class 1 PAYE)
#> 3212 National Insurance Contributions - employer (Class 1 PAYE)
#> 3213 National Insurance Contributions - employer (Class 1 PAYE)
#> 3214 National Insurance Contributions - employer (Class 1 PAYE)
#> 3215 National Insurance Contributions - employer (Class 1 PAYE)
#> 3216 National Insurance Contributions - employer (Class 1 PAYE)
#> 3217 National Insurance Contributions - employer (Class 1 PAYE)
#> 3218 National Insurance Contributions - employer (Class 1 PAYE)
#> 3219 National Insurance Contributions - employer (Class 1 PAYE)
#> 3220 National Insurance Contributions - employer (Class 1 PAYE)
#> 3221 National Insurance Contributions - employer (Class 1 PAYE)
#> 3222 National Insurance Contributions - employer (Class 1 PAYE)
#> 3223 National Insurance Contributions - employer (Class 1 PAYE)
#> 3224 National Insurance Contributions - employer (Class 1 PAYE)
#> 3225 National Insurance Contributions - employer (Class 1 PAYE)
#> 3226 National Insurance Contributions - employer (Class 1 PAYE)
#> 3227 National Insurance Contributions - employer (Class 1 PAYE)
#> 3228 National Insurance Contributions - employer (Class 1 PAYE)
#> 3229 National Insurance Contributions - employer (Class 1 PAYE)
#> 3230 National Insurance Contributions - employer (Class 1 PAYE)
#> 3231 National Insurance Contributions - employer (Class 1 PAYE)
#> 3232 National Insurance Contributions - employer (Class 1 PAYE)
#> 3233 National Insurance Contributions - employer (Class 1 PAYE)
#> 3234 National Insurance Contributions - employer (Class 1 PAYE)
#> 3235 National Insurance Contributions - employer (Class 1 PAYE)
#> 3236 National Insurance Contributions - employer (Class 1 PAYE)
#> 3237 National Insurance Contributions - employer (Class 1 PAYE)
#> 3238 National Insurance Contributions - employer (Class 1 PAYE)
#> 3239 National Insurance Contributions - employer (Class 1 PAYE)
#> 3240 National Insurance Contributions - employer (Class 1 PAYE)
#> 3241 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3242 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3243 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3244 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3245 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3246 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3247 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3248 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3249 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3250 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3251 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3252 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3253 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3254 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3255 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3256 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3257 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3258 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3259 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3260 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3261 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3262 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3263 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3264 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3265 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3266 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3267 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3268 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3269 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3270 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3271 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3272 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3273 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3274 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3275 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3276 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3277 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3278 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3279 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3280 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3281 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3282 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3283 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3284 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3285 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3286 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3287 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3288 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3289 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3290 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3291 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3292 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3293 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3294 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3295 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3296 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3297 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3298 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3299 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3300 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3301 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3302 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3303 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3304 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3305 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3306 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3307 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3308 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3309 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3310 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3311 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3312 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3313 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3314 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3315 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3316 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3317 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3318 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3319 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3320 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3321 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3322 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3323 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3324 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3325 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3326 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3327 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3328 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3329 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3330 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3331 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3332 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3333 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3334 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3335 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3336 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3337 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3338 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3339 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3340 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3341 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3342 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3343 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3344 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3345 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3346 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3347 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3348 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3349 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3350 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3351 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3352 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3353 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3354 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3355 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3356 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3357 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3358 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3359 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3360 National Insurance Contributions - self-employed (Class 2 & 4)
#> 3361 National Insurance Contributions (all classes)
#> 3362 National Insurance Contributions (all classes)
#> 3363 National Insurance Contributions (all classes)
#> 3364 National Insurance Contributions (all classes)
#> 3365 National Insurance Contributions (all classes)
#> 3366 National Insurance Contributions (all classes)
#> 3367 National Insurance Contributions (all classes)
#> 3368 National Insurance Contributions (all classes)
#> 3369 National Insurance Contributions (all classes)
#> 3370 National Insurance Contributions (all classes)
#> 3371 National Insurance Contributions (all classes)
#> 3372 National Insurance Contributions (all classes)
#> 3373 National Insurance Contributions (all classes)
#> 3374 National Insurance Contributions (all classes)
#> 3375 National Insurance Contributions (all classes)
#> 3376 National Insurance Contributions (all classes)
#> 3377 National Insurance Contributions (all classes)
#> 3378 National Insurance Contributions (all classes)
#> 3379 National Insurance Contributions (all classes)
#> 3380 National Insurance Contributions (all classes)
#> 3381 National Insurance Contributions (all classes)
#> 3382 National Insurance Contributions (all classes)
#> 3383 National Insurance Contributions (all classes)
#> 3384 National Insurance Contributions (all classes)
#> 3385 National Insurance Contributions (all classes)
#> 3386 National Insurance Contributions (all classes)
#> 3387 National Insurance Contributions (all classes)
#> 3388 National Insurance Contributions (all classes)
#> 3389 National Insurance Contributions (all classes)
#> 3390 National Insurance Contributions (all classes)
#> 3391 National Insurance Contributions (all classes)
#> 3392 National Insurance Contributions (all classes)
#> 3393 National Insurance Contributions (all classes)
#> 3394 National Insurance Contributions (all classes)
#> 3395 National Insurance Contributions (all classes)
#> 3396 National Insurance Contributions (all classes)
#> 3397 National Insurance Contributions (all classes)
#> 3398 National Insurance Contributions (all classes)
#> 3399 National Insurance Contributions (all classes)
#> 3400 National Insurance Contributions (all classes)
#> 3401 National Insurance Contributions (all classes)
#> 3402 National Insurance Contributions (all classes)
#> 3403 National Insurance Contributions (all classes)
#> 3404 National Insurance Contributions (all classes)
#> 3405 National Insurance Contributions (all classes)
#> 3406 National Insurance Contributions (all classes)
#> 3407 National Insurance Contributions (all classes)
#> 3408 National Insurance Contributions (all classes)
#> 3409 National Insurance Contributions (all classes)
#> 3410 National Insurance Contributions (all classes)
#> 3411 National Insurance Contributions (all classes)
#> 3412 National Insurance Contributions (all classes)
#> 3413 National Insurance Contributions (all classes)
#> 3414 National Insurance Contributions (all classes)
#> 3415 National Insurance Contributions (all classes)
#> 3416 National Insurance Contributions (all classes)
#> 3417 National Insurance Contributions (all classes)
#> 3418 National Insurance Contributions (all classes)
#> 3419 National Insurance Contributions (all classes)
#> 3420 National Insurance Contributions (all classes)
#> 3421 National Insurance Contributions (all classes)
#> 3422 National Insurance Contributions (all classes)
#> 3423 National Insurance Contributions (all classes)
#> 3424 National Insurance Contributions (all classes)
#> 3425 National Insurance Contributions (all classes)
#> 3426 National Insurance Contributions (all classes)
#> 3427 National Insurance Contributions (all classes)
#> 3428 National Insurance Contributions (all classes)
#> 3429 National Insurance Contributions (all classes)
#> 3430 National Insurance Contributions (all classes)
#> 3431 National Insurance Contributions (all classes)
#> 3432 National Insurance Contributions (all classes)
#> 3433 National Insurance Contributions (all classes)
#> 3434 National Insurance Contributions (all classes)
#> 3435 National Insurance Contributions (all classes)
#> 3436 National Insurance Contributions (all classes)
#> 3437 National Insurance Contributions (all classes)
#> 3438 National Insurance Contributions (all classes)
#> 3439 National Insurance Contributions (all classes)
#> 3440 National Insurance Contributions (all classes)
#> 3441 National Insurance Contributions (all classes)
#> 3442 National Insurance Contributions (all classes)
#> 3443 National Insurance Contributions (all classes)
#> 3444 National Insurance Contributions (all classes)
#> 3445 National Insurance Contributions (all classes)
#> 3446 National Insurance Contributions (all classes)
#> 3447 National Insurance Contributions (all classes)
#> 3448 National Insurance Contributions (all classes)
#> 3449 National Insurance Contributions (all classes)
#> 3450 National Insurance Contributions (all classes)
#> 3451 National Insurance Contributions (all classes)
#> 3452 National Insurance Contributions (all classes)
#> 3453 National Insurance Contributions (all classes)
#> 3454 National Insurance Contributions (all classes)
#> 3455 National Insurance Contributions (all classes)
#> 3456 National Insurance Contributions (all classes)
#> 3457 National Insurance Contributions (all classes)
#> 3458 National Insurance Contributions (all classes)
#> 3459 National Insurance Contributions (all classes)
#> 3460 National Insurance Contributions (all classes)
#> 3461 National Insurance Contributions (all classes)
#> 3462 National Insurance Contributions (all classes)
#> 3463 National Insurance Contributions (all classes)
#> 3464 National Insurance Contributions (all classes)
#> 3465 National Insurance Contributions (all classes)
#> 3466 National Insurance Contributions (all classes)
#> 3467 National Insurance Contributions (all classes)
#> 3468 National Insurance Contributions (all classes)
#> 3469 National Insurance Contributions (all classes)
#> 3470 National Insurance Contributions (all classes)
#> 3471 National Insurance Contributions (all classes)
#> 3472 National Insurance Contributions (all classes)
#> 3473 National Insurance Contributions (all classes)
#> 3474 National Insurance Contributions (all classes)
#> 3475 National Insurance Contributions (all classes)
#> 3476 National Insurance Contributions (all classes)
#> 3477 National Insurance Contributions (all classes)
#> 3478 National Insurance Contributions (all classes)
#> 3479 National Insurance Contributions (all classes)
#> 3480 National Insurance Contributions (all classes)
#> 3481 Penalties and interest
#> 3482 Penalties and interest
#> 3483 Penalties and interest
#> 3484 Penalties and interest
#> 3485 Penalties and interest
#> 3486 Penalties and interest
#> 3487 Penalties and interest
#> 3488 Penalties and interest
#> 3489 Penalties and interest
#> 3490 Penalties and interest
#> 3491 Penalties and interest
#> 3492 Penalties and interest
#> 3493 Penalties and interest
#> 3494 Penalties and interest
#> 3495 Penalties and interest
#> 3496 Penalties and interest
#> 3497 Penalties and interest
#> 3498 Penalties and interest
#> 3499 Penalties and interest
#> 3500 Penalties and interest
#> 3501 Penalties and interest
#> 3502 Penalties and interest
#> 3503 Penalties and interest
#> 3504 Penalties and interest
#> 3505 Penalties and interest
#> 3506 Penalties and interest
#> 3507 Penalties and interest
#> 3508 Penalties and interest
#> 3509 Penalties and interest
#> 3510 Penalties and interest
#> 3511 Penalties and interest
#> 3512 Penalties and interest
#> 3513 Penalties and interest
#> 3514 Penalties and interest
#> 3515 Penalties and interest
#> 3516 Penalties and interest
#> 3517 Penalties and interest
#> 3518 Penalties and interest
#> 3519 Penalties and interest
#> 3520 Penalties and interest
#> 3521 Penalties and interest
#> 3522 Penalties and interest
#> 3523 Penalties and interest
#> 3524 Penalties and interest
#> 3525 Penalties and interest
#> 3526 Penalties and interest
#> 3527 Penalties and interest
#> 3528 Penalties and interest
#> 3529 Penalties and interest
#> 3530 Penalties and interest
#> 3531 Penalties and interest
#> 3532 Penalties and interest
#> 3533 Penalties and interest
#> 3534 Penalties and interest
#> 3535 Penalties and interest
#> 3536 Penalties and interest
#> 3537 Penalties and interest
#> 3538 Penalties and interest
#> 3539 Penalties and interest
#> 3540 Penalties and interest
#> 3541 Penalties and interest
#> 3542 Penalties and interest
#> 3543 Penalties and interest
#> 3544 Penalties and interest
#> 3545 Penalties and interest
#> 3546 Penalties and interest
#> 3547 Penalties and interest
#> 3548 Penalties and interest
#> 3549 Penalties and interest
#> 3550 Penalties and interest
#> 3551 Penalties and interest
#> 3552 Penalties and interest
#> 3553 Penalties and interest
#> 3554 Penalties and interest
#> 3555 Penalties and interest
#> 3556 Penalties and interest
#> 3557 Penalties and interest
#> 3558 Penalties and interest
#> 3559 Penalties and interest
#> 3560 Penalties and interest
#> 3561 Penalties and interest
#> 3562 Penalties and interest
#> 3563 Penalties and interest
#> 3564 Penalties and interest
#> 3565 Penalties and interest
#> 3566 Penalties and interest
#> 3567 Penalties and interest
#> 3568 Penalties and interest
#> 3569 Penalties and interest
#> 3570 Penalties and interest
#> 3571 Penalties and interest
#> 3572 Penalties and interest
#> 3573 Penalties and interest
#> 3574 Penalties and interest
#> 3575 Penalties and interest
#> 3576 Penalties and interest
#> 3577 Penalties and interest
#> 3578 Penalties and interest
#> 3579 Penalties and interest
#> 3580 Penalties and interest
#> 3581 Penalties and interest
#> 3582 Penalties and interest
#> 3583 Penalties and interest
#> 3584 Penalties and interest
#> 3585 Penalties and interest
#> 3586 Penalties and interest
#> 3587 Penalties and interest
#> 3588 Penalties and interest
#> 3589 Penalties and interest
#> 3590 Penalties and interest
#> 3591 Penalties and interest
#> 3592 Penalties and interest
#> 3593 Penalties and interest
#> 3594 Penalties and interest
#> 3595 Penalties and interest
#> 3596 Penalties and interest
#> 3597 Penalties and interest
#> 3598 Penalties and interest
#> 3599 Penalties and interest
#> 3600 Penalties and interest
#> 3601 Petroleum Revenue Tax
#> 3602 Petroleum Revenue Tax
#> 3603 Petroleum Revenue Tax
#> 3604 Petroleum Revenue Tax
#> 3605 Petroleum Revenue Tax
#> 3606 Petroleum Revenue Tax
#> 3607 Petroleum Revenue Tax
#> 3608 Petroleum Revenue Tax
#> 3609 Petroleum Revenue Tax
#> 3610 Petroleum Revenue Tax
#> 3611 Petroleum Revenue Tax
#> 3612 Petroleum Revenue Tax
#> 3613 Petroleum Revenue Tax
#> 3614 Petroleum Revenue Tax
#> 3615 Petroleum Revenue Tax
#> 3616 Petroleum Revenue Tax
#> 3617 Petroleum Revenue Tax
#> 3618 Petroleum Revenue Tax
#> 3619 Petroleum Revenue Tax
#> 3620 Petroleum Revenue Tax
#> 3621 Petroleum Revenue Tax
#> 3622 Petroleum Revenue Tax
#> 3623 Petroleum Revenue Tax
#> 3624 Petroleum Revenue Tax
#> 3625 Petroleum Revenue Tax
#> 3626 Petroleum Revenue Tax
#> 3627 Petroleum Revenue Tax
#> 3628 Petroleum Revenue Tax
#> 3629 Petroleum Revenue Tax
#> 3630 Petroleum Revenue Tax
#> 3631 Petroleum Revenue Tax
#> 3632 Petroleum Revenue Tax
#> 3633 Petroleum Revenue Tax
#> 3634 Petroleum Revenue Tax
#> 3635 Petroleum Revenue Tax
#> 3636 Petroleum Revenue Tax
#> 3637 Petroleum Revenue Tax
#> 3638 Petroleum Revenue Tax
#> 3639 Petroleum Revenue Tax
#> 3640 Petroleum Revenue Tax
#> 3641 Petroleum Revenue Tax
#> 3642 Petroleum Revenue Tax
#> 3643 Petroleum Revenue Tax
#> 3644 Petroleum Revenue Tax
#> 3645 Petroleum Revenue Tax
#> 3646 Petroleum Revenue Tax
#> 3647 Petroleum Revenue Tax
#> 3648 Petroleum Revenue Tax
#> 3649 Petroleum Revenue Tax
#> 3650 Petroleum Revenue Tax
#> 3651 Petroleum Revenue Tax
#> 3652 Petroleum Revenue Tax
#> 3653 Petroleum Revenue Tax
#> 3654 Petroleum Revenue Tax
#> 3655 Petroleum Revenue Tax
#> 3656 Petroleum Revenue Tax
#> 3657 Petroleum Revenue Tax
#> 3658 Petroleum Revenue Tax
#> 3659 Petroleum Revenue Tax
#> 3660 Petroleum Revenue Tax
#> 3661 Petroleum Revenue Tax
#> 3662 Petroleum Revenue Tax
#> 3663 Petroleum Revenue Tax
#> 3664 Petroleum Revenue Tax
#> 3665 Petroleum Revenue Tax
#> 3666 Petroleum Revenue Tax
#> 3667 Petroleum Revenue Tax
#> 3668 Petroleum Revenue Tax
#> 3669 Petroleum Revenue Tax
#> 3670 Petroleum Revenue Tax
#> 3671 Petroleum Revenue Tax
#> 3672 Petroleum Revenue Tax
#> 3673 Petroleum Revenue Tax
#> 3674 Petroleum Revenue Tax
#> 3675 Petroleum Revenue Tax
#> 3676 Petroleum Revenue Tax
#> 3677 Petroleum Revenue Tax
#> 3678 Petroleum Revenue Tax
#> 3679 Petroleum Revenue Tax
#> 3680 Petroleum Revenue Tax
#> 3681 Petroleum Revenue Tax
#> 3682 Petroleum Revenue Tax
#> 3683 Petroleum Revenue Tax
#> 3684 Petroleum Revenue Tax
#> 3685 Petroleum Revenue Tax
#> 3686 Petroleum Revenue Tax
#> 3687 Petroleum Revenue Tax
#> 3688 Petroleum Revenue Tax
#> 3689 Petroleum Revenue Tax
#> 3690 Petroleum Revenue Tax
#> 3691 Petroleum Revenue Tax
#> 3692 Petroleum Revenue Tax
#> 3693 Petroleum Revenue Tax
#> 3694 Petroleum Revenue Tax
#> 3695 Petroleum Revenue Tax
#> 3696 Petroleum Revenue Tax
#> 3697 Petroleum Revenue Tax
#> 3698 Petroleum Revenue Tax
#> 3699 Petroleum Revenue Tax
#> 3700 Petroleum Revenue Tax
#> 3701 Petroleum Revenue Tax
#> 3702 Petroleum Revenue Tax
#> 3703 Petroleum Revenue Tax
#> 3704 Petroleum Revenue Tax
#> 3705 Petroleum Revenue Tax
#> 3706 Petroleum Revenue Tax
#> 3707 Petroleum Revenue Tax
#> 3708 Petroleum Revenue Tax
#> 3709 Petroleum Revenue Tax
#> 3710 Petroleum Revenue Tax
#> 3711 Petroleum Revenue Tax
#> 3712 Petroleum Revenue Tax
#> 3713 Petroleum Revenue Tax
#> 3714 Petroleum Revenue Tax
#> 3715 Petroleum Revenue Tax
#> 3716 Petroleum Revenue Tax
#> 3717 Petroleum Revenue Tax
#> 3718 Petroleum Revenue Tax
#> 3719 Petroleum Revenue Tax
#> 3720 Petroleum Revenue Tax
#> 3721 Plastic Packaging Tax
#> 3722 Plastic Packaging Tax
#> 3723 Plastic Packaging Tax
#> 3724 Plastic Packaging Tax
#> 3725 Plastic Packaging Tax
#> 3726 Plastic Packaging Tax
#> 3727 Plastic Packaging Tax
#> 3728 Plastic Packaging Tax
#> 3729 Plastic Packaging Tax
#> 3730 Plastic Packaging Tax
#> 3731 Plastic Packaging Tax
#> 3732 Plastic Packaging Tax
#> 3733 Plastic Packaging Tax
#> 3734 Plastic Packaging Tax
#> 3735 Plastic Packaging Tax
#> 3736 Plastic Packaging Tax
#> 3737 Plastic Packaging Tax
#> 3738 Plastic Packaging Tax
#> 3739 Plastic Packaging Tax
#> 3740 Plastic Packaging Tax
#> 3741 Plastic Packaging Tax
#> 3742 Plastic Packaging Tax
#> 3743 Plastic Packaging Tax
#> 3744 Plastic Packaging Tax
#> 3745 Plastic Packaging Tax
#> 3746 Plastic Packaging Tax
#> 3747 Plastic Packaging Tax
#> 3748 Plastic Packaging Tax
#> 3749 Plastic Packaging Tax
#> 3750 Plastic Packaging Tax
#> 3751 Plastic Packaging Tax
#> 3752 Plastic Packaging Tax
#> 3753 Plastic Packaging Tax
#> 3754 Plastic Packaging Tax
#> 3755 Plastic Packaging Tax
#> 3756 Plastic Packaging Tax
#> 3757 Plastic Packaging Tax
#> 3758 Plastic Packaging Tax
#> 3759 Plastic Packaging Tax
#> 3760 Plastic Packaging Tax
#> 3761 Plastic Packaging Tax
#> 3762 Plastic Packaging Tax
#> 3763 Plastic Packaging Tax
#> 3764 Plastic Packaging Tax
#> 3765 Plastic Packaging Tax
#> 3766 Plastic Packaging Tax
#> 3767 Plastic Packaging Tax
#> 3768 Plastic Packaging Tax
#> 3769 Plastic Packaging Tax
#> 3770 Plastic Packaging Tax
#> 3771 Plastic Packaging Tax
#> 3772 Plastic Packaging Tax
#> 3773 Plastic Packaging Tax
#> 3774 Plastic Packaging Tax
#> 3775 Plastic Packaging Tax
#> 3776 Plastic Packaging Tax
#> 3777 Plastic Packaging Tax
#> 3778 Plastic Packaging Tax
#> 3779 Plastic Packaging Tax
#> 3780 Plastic Packaging Tax
#> 3781 Plastic Packaging Tax
#> 3782 Plastic Packaging Tax
#> 3783 Plastic Packaging Tax
#> 3784 Plastic Packaging Tax
#> 3785 Plastic Packaging Tax
#> 3786 Plastic Packaging Tax
#> 3787 Plastic Packaging Tax
#> 3788 Plastic Packaging Tax
#> 3789 Plastic Packaging Tax
#> 3790 Plastic Packaging Tax
#> 3791 Plastic Packaging Tax
#> 3792 Plastic Packaging Tax
#> 3793 Plastic Packaging Tax
#> 3794 Plastic Packaging Tax
#> 3795 Plastic Packaging Tax
#> 3796 Plastic Packaging Tax
#> 3797 Plastic Packaging Tax
#> 3798 Plastic Packaging Tax
#> 3799 Plastic Packaging Tax
#> 3800 Plastic Packaging Tax
#> 3801 Plastic Packaging Tax
#> 3802 Plastic Packaging Tax
#> 3803 Plastic Packaging Tax
#> 3804 Plastic Packaging Tax
#> 3805 Plastic Packaging Tax
#> 3806 Plastic Packaging Tax
#> 3807 Plastic Packaging Tax
#> 3808 Plastic Packaging Tax
#> 3809 Plastic Packaging Tax
#> 3810 Plastic Packaging Tax
#> 3811 Plastic Packaging Tax
#> 3812 Plastic Packaging Tax
#> 3813 Plastic Packaging Tax
#> 3814 Plastic Packaging Tax
#> 3815 Plastic Packaging Tax
#> 3816 Plastic Packaging Tax
#> 3817 Plastic Packaging Tax
#> 3818 Plastic Packaging Tax
#> 3819 Plastic Packaging Tax
#> 3820 Plastic Packaging Tax
#> 3821 Plastic Packaging Tax
#> 3822 Plastic Packaging Tax
#> 3823 Plastic Packaging Tax
#> 3824 Plastic Packaging Tax
#> 3825 Plastic Packaging Tax
#> 3826 Plastic Packaging Tax
#> 3827 Plastic Packaging Tax
#> 3828 Plastic Packaging Tax
#> 3829 Plastic Packaging Tax
#> 3830 Plastic Packaging Tax
#> 3831 Plastic Packaging Tax
#> 3832 Plastic Packaging Tax
#> 3833 Plastic Packaging Tax
#> 3834 Plastic Packaging Tax
#> 3835 Plastic Packaging Tax
#> 3836 Plastic Packaging Tax
#> 3837 Plastic Packaging Tax
#> 3838 Plastic Packaging Tax
#> 3839 Plastic Packaging Tax
#> 3840 Plastic Packaging Tax
#> 3841 Residential Property Developer Tax
#> 3842 Residential Property Developer Tax
#> 3843 Residential Property Developer Tax
#> 3844 Residential Property Developer Tax
#> 3845 Residential Property Developer Tax
#> 3846 Residential Property Developer Tax
#> 3847 Residential Property Developer Tax
#> 3848 Residential Property Developer Tax
#> 3849 Residential Property Developer Tax
#> 3850 Residential Property Developer Tax
#> 3851 Residential Property Developer Tax
#> 3852 Residential Property Developer Tax
#> 3853 Residential Property Developer Tax
#> 3854 Residential Property Developer Tax
#> 3855 Residential Property Developer Tax
#> 3856 Residential Property Developer Tax
#> 3857 Residential Property Developer Tax
#> 3858 Residential Property Developer Tax
#> 3859 Residential Property Developer Tax
#> 3860 Residential Property Developer Tax
#> 3861 Residential Property Developer Tax
#> 3862 Residential Property Developer Tax
#> 3863 Residential Property Developer Tax
#> 3864 Residential Property Developer Tax
#> 3865 Residential Property Developer Tax
#> 3866 Residential Property Developer Tax
#> 3867 Residential Property Developer Tax
#> 3868 Residential Property Developer Tax
#> 3869 Residential Property Developer Tax
#> 3870 Residential Property Developer Tax
#> 3871 Residential Property Developer Tax
#> 3872 Residential Property Developer Tax
#> 3873 Residential Property Developer Tax
#> 3874 Residential Property Developer Tax
#> 3875 Residential Property Developer Tax
#> 3876 Residential Property Developer Tax
#> 3877 Residential Property Developer Tax
#> 3878 Residential Property Developer Tax
#> 3879 Residential Property Developer Tax
#> 3880 Residential Property Developer Tax
#> 3881 Residential Property Developer Tax
#> 3882 Residential Property Developer Tax
#> 3883 Residential Property Developer Tax
#> 3884 Residential Property Developer Tax
#> 3885 Residential Property Developer Tax
#> 3886 Residential Property Developer Tax
#> 3887 Residential Property Developer Tax
#> 3888 Residential Property Developer Tax
#> 3889 Residential Property Developer Tax
#> 3890 Residential Property Developer Tax
#> 3891 Residential Property Developer Tax
#> 3892 Residential Property Developer Tax
#> 3893 Residential Property Developer Tax
#> 3894 Residential Property Developer Tax
#> 3895 Residential Property Developer Tax
#> 3896 Residential Property Developer Tax
#> 3897 Residential Property Developer Tax
#> 3898 Residential Property Developer Tax
#> 3899 Residential Property Developer Tax
#> 3900 Residential Property Developer Tax
#> 3901 Residential Property Developer Tax
#> 3902 Residential Property Developer Tax
#> 3903 Residential Property Developer Tax
#> 3904 Residential Property Developer Tax
#> 3905 Residential Property Developer Tax
#> 3906 Residential Property Developer Tax
#> 3907 Residential Property Developer Tax
#> 3908 Residential Property Developer Tax
#> 3909 Residential Property Developer Tax
#> 3910 Residential Property Developer Tax
#> 3911 Residential Property Developer Tax
#> 3912 Residential Property Developer Tax
#> 3913 Residential Property Developer Tax
#> 3914 Residential Property Developer Tax
#> 3915 Residential Property Developer Tax
#> 3916 Residential Property Developer Tax
#> 3917 Residential Property Developer Tax
#> 3918 Residential Property Developer Tax
#> 3919 Residential Property Developer Tax
#> 3920 Residential Property Developer Tax
#> 3921 Residential Property Developer Tax
#> 3922 Residential Property Developer Tax
#> 3923 Residential Property Developer Tax
#> 3924 Residential Property Developer Tax
#> 3925 Residential Property Developer Tax
#> 3926 Residential Property Developer Tax
#> 3927 Residential Property Developer Tax
#> 3928 Residential Property Developer Tax
#> 3929 Residential Property Developer Tax
#> 3930 Residential Property Developer Tax
#> 3931 Residential Property Developer Tax
#> 3932 Residential Property Developer Tax
#> 3933 Residential Property Developer Tax
#> 3934 Residential Property Developer Tax
#> 3935 Residential Property Developer Tax
#> 3936 Residential Property Developer Tax
#> 3937 Residential Property Developer Tax
#> 3938 Residential Property Developer Tax
#> 3939 Residential Property Developer Tax
#> 3940 Residential Property Developer Tax
#> 3941 Residential Property Developer Tax
#> 3942 Residential Property Developer Tax
#> 3943 Residential Property Developer Tax
#> 3944 Residential Property Developer Tax
#> 3945 Residential Property Developer Tax
#> 3946 Residential Property Developer Tax
#> 3947 Residential Property Developer Tax
#> 3948 Residential Property Developer Tax
#> 3949 Residential Property Developer Tax
#> 3950 Residential Property Developer Tax
#> 3951 Residential Property Developer Tax
#> 3952 Residential Property Developer Tax
#> 3953 Residential Property Developer Tax
#> 3954 Residential Property Developer Tax
#> 3955 Residential Property Developer Tax
#> 3956 Residential Property Developer Tax
#> 3957 Residential Property Developer Tax
#> 3958 Residential Property Developer Tax
#> 3959 Residential Property Developer Tax
#> 3960 Residential Property Developer Tax
#> 3961 Stamp Duty Land Tax
#> 3962 Stamp Duty Land Tax
#> 3963 Stamp Duty Land Tax
#> 3964 Stamp Duty Land Tax
#> 3965 Stamp Duty Land Tax
#> 3966 Stamp Duty Land Tax
#> 3967 Stamp Duty Land Tax
#> 3968 Stamp Duty Land Tax
#> 3969 Stamp Duty Land Tax
#> 3970 Stamp Duty Land Tax
#> 3971 Stamp Duty Land Tax
#> 3972 Stamp Duty Land Tax
#> 3973 Stamp Duty Land Tax
#> 3974 Stamp Duty Land Tax
#> 3975 Stamp Duty Land Tax
#> 3976 Stamp Duty Land Tax
#> 3977 Stamp Duty Land Tax
#> 3978 Stamp Duty Land Tax
#> 3979 Stamp Duty Land Tax
#> 3980 Stamp Duty Land Tax
#> 3981 Stamp Duty Land Tax
#> 3982 Stamp Duty Land Tax
#> 3983 Stamp Duty Land Tax
#> 3984 Stamp Duty Land Tax
#> 3985 Stamp Duty Land Tax
#> 3986 Stamp Duty Land Tax
#> 3987 Stamp Duty Land Tax
#> 3988 Stamp Duty Land Tax
#> 3989 Stamp Duty Land Tax
#> 3990 Stamp Duty Land Tax
#> 3991 Stamp Duty Land Tax
#> 3992 Stamp Duty Land Tax
#> 3993 Stamp Duty Land Tax
#> 3994 Stamp Duty Land Tax
#> 3995 Stamp Duty Land Tax
#> 3996 Stamp Duty Land Tax
#> 3997 Stamp Duty Land Tax
#> 3998 Stamp Duty Land Tax
#> 3999 Stamp Duty Land Tax
#> 4000 Stamp Duty Land Tax
#> 4001 Stamp Duty Land Tax
#> 4002 Stamp Duty Land Tax
#> 4003 Stamp Duty Land Tax
#> 4004 Stamp Duty Land Tax
#> 4005 Stamp Duty Land Tax
#> 4006 Stamp Duty Land Tax
#> 4007 Stamp Duty Land Tax
#> 4008 Stamp Duty Land Tax
#> 4009 Stamp Duty Land Tax
#> 4010 Stamp Duty Land Tax
#> 4011 Stamp Duty Land Tax
#> 4012 Stamp Duty Land Tax
#> 4013 Stamp Duty Land Tax
#> 4014 Stamp Duty Land Tax
#> 4015 Stamp Duty Land Tax
#> 4016 Stamp Duty Land Tax
#> 4017 Stamp Duty Land Tax
#> 4018 Stamp Duty Land Tax
#> 4019 Stamp Duty Land Tax
#> 4020 Stamp Duty Land Tax
#> 4021 Stamp Duty Land Tax
#> 4022 Stamp Duty Land Tax
#> 4023 Stamp Duty Land Tax
#> 4024 Stamp Duty Land Tax
#> 4025 Stamp Duty Land Tax
#> 4026 Stamp Duty Land Tax
#> 4027 Stamp Duty Land Tax
#> 4028 Stamp Duty Land Tax
#> 4029 Stamp Duty Land Tax
#> 4030 Stamp Duty Land Tax
#> 4031 Stamp Duty Land Tax
#> 4032 Stamp Duty Land Tax
#> 4033 Stamp Duty Land Tax
#> 4034 Stamp Duty Land Tax
#> 4035 Stamp Duty Land Tax
#> 4036 Stamp Duty Land Tax
#> 4037 Stamp Duty Land Tax
#> 4038 Stamp Duty Land Tax
#> 4039 Stamp Duty Land Tax
#> 4040 Stamp Duty Land Tax
#> 4041 Stamp Duty Land Tax
#> 4042 Stamp Duty Land Tax
#> 4043 Stamp Duty Land Tax
#> 4044 Stamp Duty Land Tax
#> 4045 Stamp Duty Land Tax
#> 4046 Stamp Duty Land Tax
#> 4047 Stamp Duty Land Tax
#> 4048 Stamp Duty Land Tax
#> 4049 Stamp Duty Land Tax
#> 4050 Stamp Duty Land Tax
#> 4051 Stamp Duty Land Tax
#> 4052 Stamp Duty Land Tax
#> 4053 Stamp Duty Land Tax
#> 4054 Stamp Duty Land Tax
#> 4055 Stamp Duty Land Tax
#> 4056 Stamp Duty Land Tax
#> 4057 Stamp Duty Land Tax
#> 4058 Stamp Duty Land Tax
#> 4059 Stamp Duty Land Tax
#> 4060 Stamp Duty Land Tax
#> 4061 Stamp Duty Land Tax
#> 4062 Stamp Duty Land Tax
#> 4063 Stamp Duty Land Tax
#> 4064 Stamp Duty Land Tax
#> 4065 Stamp Duty Land Tax
#> 4066 Stamp Duty Land Tax
#> 4067 Stamp Duty Land Tax
#> 4068 Stamp Duty Land Tax
#> 4069 Stamp Duty Land Tax
#> 4070 Stamp Duty Land Tax
#> 4071 Stamp Duty Land Tax
#> 4072 Stamp Duty Land Tax
#> 4073 Stamp Duty Land Tax
#> 4074 Stamp Duty Land Tax
#> 4075 Stamp Duty Land Tax
#> 4076 Stamp Duty Land Tax
#> 4077 Stamp Duty Land Tax
#> 4078 Stamp Duty Land Tax
#> 4079 Stamp Duty Land Tax
#> 4080 Stamp Duty Land Tax
#> 4081 Soft Drinks Industry Levy
#> 4082 Soft Drinks Industry Levy
#> 4083 Soft Drinks Industry Levy
#> 4084 Soft Drinks Industry Levy
#> 4085 Soft Drinks Industry Levy
#> 4086 Soft Drinks Industry Levy
#> 4087 Soft Drinks Industry Levy
#> 4088 Soft Drinks Industry Levy
#> 4089 Soft Drinks Industry Levy
#> 4090 Soft Drinks Industry Levy
#> 4091 Soft Drinks Industry Levy
#> 4092 Soft Drinks Industry Levy
#> 4093 Soft Drinks Industry Levy
#> 4094 Soft Drinks Industry Levy
#> 4095 Soft Drinks Industry Levy
#> 4096 Soft Drinks Industry Levy
#> 4097 Soft Drinks Industry Levy
#> 4098 Soft Drinks Industry Levy
#> 4099 Soft Drinks Industry Levy
#> 4100 Soft Drinks Industry Levy
#> 4101 Soft Drinks Industry Levy
#> 4102 Soft Drinks Industry Levy
#> 4103 Soft Drinks Industry Levy
#> 4104 Soft Drinks Industry Levy
#> 4105 Soft Drinks Industry Levy
#> 4106 Soft Drinks Industry Levy
#> 4107 Soft Drinks Industry Levy
#> 4108 Soft Drinks Industry Levy
#> 4109 Soft Drinks Industry Levy
#> 4110 Soft Drinks Industry Levy
#> 4111 Soft Drinks Industry Levy
#> 4112 Soft Drinks Industry Levy
#> 4113 Soft Drinks Industry Levy
#> 4114 Soft Drinks Industry Levy
#> 4115 Soft Drinks Industry Levy
#> 4116 Soft Drinks Industry Levy
#> 4117 Soft Drinks Industry Levy
#> 4118 Soft Drinks Industry Levy
#> 4119 Soft Drinks Industry Levy
#> 4120 Soft Drinks Industry Levy
#> 4121 Soft Drinks Industry Levy
#> 4122 Soft Drinks Industry Levy
#> 4123 Soft Drinks Industry Levy
#> 4124 Soft Drinks Industry Levy
#> 4125 Soft Drinks Industry Levy
#> 4126 Soft Drinks Industry Levy
#> 4127 Soft Drinks Industry Levy
#> 4128 Soft Drinks Industry Levy
#> 4129 Soft Drinks Industry Levy
#> 4130 Soft Drinks Industry Levy
#> 4131 Soft Drinks Industry Levy
#> 4132 Soft Drinks Industry Levy
#> 4133 Soft Drinks Industry Levy
#> 4134 Soft Drinks Industry Levy
#> 4135 Soft Drinks Industry Levy
#> 4136 Soft Drinks Industry Levy
#> 4137 Soft Drinks Industry Levy
#> 4138 Soft Drinks Industry Levy
#> 4139 Soft Drinks Industry Levy
#> 4140 Soft Drinks Industry Levy
#> 4141 Soft Drinks Industry Levy
#> 4142 Soft Drinks Industry Levy
#> 4143 Soft Drinks Industry Levy
#> 4144 Soft Drinks Industry Levy
#> 4145 Soft Drinks Industry Levy
#> 4146 Soft Drinks Industry Levy
#> 4147 Soft Drinks Industry Levy
#> 4148 Soft Drinks Industry Levy
#> 4149 Soft Drinks Industry Levy
#> 4150 Soft Drinks Industry Levy
#> 4151 Soft Drinks Industry Levy
#> 4152 Soft Drinks Industry Levy
#> 4153 Soft Drinks Industry Levy
#> 4154 Soft Drinks Industry Levy
#> 4155 Soft Drinks Industry Levy
#> 4156 Soft Drinks Industry Levy
#> 4157 Soft Drinks Industry Levy
#> 4158 Soft Drinks Industry Levy
#> 4159 Soft Drinks Industry Levy
#> 4160 Soft Drinks Industry Levy
#> 4161 Soft Drinks Industry Levy
#> 4162 Soft Drinks Industry Levy
#> 4163 Soft Drinks Industry Levy
#> 4164 Soft Drinks Industry Levy
#> 4165 Soft Drinks Industry Levy
#> 4166 Soft Drinks Industry Levy
#> 4167 Soft Drinks Industry Levy
#> 4168 Soft Drinks Industry Levy
#> 4169 Soft Drinks Industry Levy
#> 4170 Soft Drinks Industry Levy
#> 4171 Soft Drinks Industry Levy
#> 4172 Soft Drinks Industry Levy
#> 4173 Soft Drinks Industry Levy
#> 4174 Soft Drinks Industry Levy
#> 4175 Soft Drinks Industry Levy
#> 4176 Soft Drinks Industry Levy
#> 4177 Soft Drinks Industry Levy
#> 4178 Soft Drinks Industry Levy
#> 4179 Soft Drinks Industry Levy
#> 4180 Soft Drinks Industry Levy
#> 4181 Soft Drinks Industry Levy
#> 4182 Soft Drinks Industry Levy
#> 4183 Soft Drinks Industry Levy
#> 4184 Soft Drinks Industry Levy
#> 4185 Soft Drinks Industry Levy
#> 4186 Soft Drinks Industry Levy
#> 4187 Soft Drinks Industry Levy
#> 4188 Soft Drinks Industry Levy
#> 4189 Soft Drinks Industry Levy
#> 4190 Soft Drinks Industry Levy
#> 4191 Soft Drinks Industry Levy
#> 4192 Soft Drinks Industry Levy
#> 4193 Soft Drinks Industry Levy
#> 4194 Soft Drinks Industry Levy
#> 4195 Soft Drinks Industry Levy
#> 4196 Soft Drinks Industry Levy
#> 4197 Soft Drinks Industry Levy
#> 4198 Soft Drinks Industry Levy
#> 4199 Soft Drinks Industry Levy
#> 4200 Soft Drinks Industry Levy
#> 4201 Spirits Duties
#> 4202 Spirits Duties
#> 4203 Spirits Duties
#> 4204 Spirits Duties
#> 4205 Spirits Duties
#> 4206 Spirits Duties
#> 4207 Spirits Duties
#> 4208 Spirits Duties
#> 4209 Spirits Duties
#> 4210 Spirits Duties
#> 4211 Spirits Duties
#> 4212 Spirits Duties
#> 4213 Spirits Duties
#> 4214 Spirits Duties
#> 4215 Spirits Duties
#> 4216 Spirits Duties
#> 4217 Spirits Duties
#> 4218 Spirits Duties
#> 4219 Spirits Duties
#> 4220 Spirits Duties
#> 4221 Spirits Duties
#> 4222 Spirits Duties
#> 4223 Spirits Duties
#> 4224 Spirits Duties
#> 4225 Spirits Duties
#> 4226 Spirits Duties
#> 4227 Spirits Duties
#> 4228 Spirits Duties
#> 4229 Spirits Duties
#> 4230 Spirits Duties
#> 4231 Spirits Duties
#> 4232 Spirits Duties
#> 4233 Spirits Duties
#> 4234 Spirits Duties
#> 4235 Spirits Duties
#> 4236 Spirits Duties
#> 4237 Spirits Duties
#> 4238 Spirits Duties
#> 4239 Spirits Duties
#> 4240 Spirits Duties
#> 4241 Spirits Duties
#> 4242 Spirits Duties
#> 4243 Spirits Duties
#> 4244 Spirits Duties
#> 4245 Spirits Duties
#> 4246 Spirits Duties
#> 4247 Spirits Duties
#> 4248 Spirits Duties
#> 4249 Spirits Duties
#> 4250 Spirits Duties
#> 4251 Spirits Duties
#> 4252 Spirits Duties
#> 4253 Spirits Duties
#> 4254 Spirits Duties
#> 4255 Spirits Duties
#> 4256 Spirits Duties
#> 4257 Spirits Duties
#> 4258 Spirits Duties
#> 4259 Spirits Duties
#> 4260 Spirits Duties
#> 4261 Spirits Duties
#> 4262 Spirits Duties
#> 4263 Spirits Duties
#> 4264 Spirits Duties
#> 4265 Spirits Duties
#> 4266 Spirits Duties
#> 4267 Spirits Duties
#> 4268 Spirits Duties
#> 4269 Spirits Duties
#> 4270 Spirits Duties
#> 4271 Spirits Duties
#> 4272 Spirits Duties
#> 4273 Spirits Duties
#> 4274 Spirits Duties
#> 4275 Spirits Duties
#> 4276 Spirits Duties
#> 4277 Spirits Duties
#> 4278 Spirits Duties
#> 4279 Spirits Duties
#> 4280 Spirits Duties
#> 4281 Spirits Duties
#> 4282 Spirits Duties
#> 4283 Spirits Duties
#> 4284 Spirits Duties
#> 4285 Spirits Duties
#> 4286 Spirits Duties
#> 4287 Spirits Duties
#> 4288 Spirits Duties
#> 4289 Spirits Duties
#> 4290 Spirits Duties
#> 4291 Spirits Duties
#> 4292 Spirits Duties
#> 4293 Spirits Duties
#> 4294 Spirits Duties
#> 4295 Spirits Duties
#> 4296 Spirits Duties
#> 4297 Spirits Duties
#> 4298 Spirits Duties
#> 4299 Spirits Duties
#> 4300 Spirits Duties
#> 4301 Spirits Duties
#> 4302 Spirits Duties
#> 4303 Spirits Duties
#> 4304 Spirits Duties
#> 4305 Spirits Duties
#> 4306 Spirits Duties
#> 4307 Spirits Duties
#> 4308 Spirits Duties
#> 4309 Spirits Duties
#> 4310 Spirits Duties
#> 4311 Spirits Duties
#> 4312 Spirits Duties
#> 4313 Spirits Duties
#> 4314 Spirits Duties
#> 4315 Spirits Duties
#> 4316 Spirits Duties
#> 4317 Spirits Duties
#> 4318 Spirits Duties
#> 4319 Spirits Duties
#> 4320 Spirits Duties
#> 4321 Stamp Duty Reserve Tax (shares)
#> 4322 Stamp Duty Reserve Tax (shares)
#> 4323 Stamp Duty Reserve Tax (shares)
#> 4324 Stamp Duty Reserve Tax (shares)
#> 4325 Stamp Duty Reserve Tax (shares)
#> 4326 Stamp Duty Reserve Tax (shares)
#> 4327 Stamp Duty Reserve Tax (shares)
#> 4328 Stamp Duty Reserve Tax (shares)
#> 4329 Stamp Duty Reserve Tax (shares)
#> 4330 Stamp Duty Reserve Tax (shares)
#> 4331 Stamp Duty Reserve Tax (shares)
#> 4332 Stamp Duty Reserve Tax (shares)
#> 4333 Stamp Duty Reserve Tax (shares)
#> 4334 Stamp Duty Reserve Tax (shares)
#> 4335 Stamp Duty Reserve Tax (shares)
#> 4336 Stamp Duty Reserve Tax (shares)
#> 4337 Stamp Duty Reserve Tax (shares)
#> 4338 Stamp Duty Reserve Tax (shares)
#> 4339 Stamp Duty Reserve Tax (shares)
#> 4340 Stamp Duty Reserve Tax (shares)
#> 4341 Stamp Duty Reserve Tax (shares)
#> 4342 Stamp Duty Reserve Tax (shares)
#> 4343 Stamp Duty Reserve Tax (shares)
#> 4344 Stamp Duty Reserve Tax (shares)
#> 4345 Stamp Duty Reserve Tax (shares)
#> 4346 Stamp Duty Reserve Tax (shares)
#> 4347 Stamp Duty Reserve Tax (shares)
#> 4348 Stamp Duty Reserve Tax (shares)
#> 4349 Stamp Duty Reserve Tax (shares)
#> 4350 Stamp Duty Reserve Tax (shares)
#> 4351 Stamp Duty Reserve Tax (shares)
#> 4352 Stamp Duty Reserve Tax (shares)
#> 4353 Stamp Duty Reserve Tax (shares)
#> 4354 Stamp Duty Reserve Tax (shares)
#> 4355 Stamp Duty Reserve Tax (shares)
#> 4356 Stamp Duty Reserve Tax (shares)
#> 4357 Stamp Duty Reserve Tax (shares)
#> 4358 Stamp Duty Reserve Tax (shares)
#> 4359 Stamp Duty Reserve Tax (shares)
#> 4360 Stamp Duty Reserve Tax (shares)
#> 4361 Stamp Duty Reserve Tax (shares)
#> 4362 Stamp Duty Reserve Tax (shares)
#> 4363 Stamp Duty Reserve Tax (shares)
#> 4364 Stamp Duty Reserve Tax (shares)
#> 4365 Stamp Duty Reserve Tax (shares)
#> 4366 Stamp Duty Reserve Tax (shares)
#> 4367 Stamp Duty Reserve Tax (shares)
#> 4368 Stamp Duty Reserve Tax (shares)
#> 4369 Stamp Duty Reserve Tax (shares)
#> 4370 Stamp Duty Reserve Tax (shares)
#> 4371 Stamp Duty Reserve Tax (shares)
#> 4372 Stamp Duty Reserve Tax (shares)
#> 4373 Stamp Duty Reserve Tax (shares)
#> 4374 Stamp Duty Reserve Tax (shares)
#> 4375 Stamp Duty Reserve Tax (shares)
#> 4376 Stamp Duty Reserve Tax (shares)
#> 4377 Stamp Duty Reserve Tax (shares)
#> 4378 Stamp Duty Reserve Tax (shares)
#> 4379 Stamp Duty Reserve Tax (shares)
#> 4380 Stamp Duty Reserve Tax (shares)
#> 4381 Stamp Duty Reserve Tax (shares)
#> 4382 Stamp Duty Reserve Tax (shares)
#> 4383 Stamp Duty Reserve Tax (shares)
#> 4384 Stamp Duty Reserve Tax (shares)
#> 4385 Stamp Duty Reserve Tax (shares)
#> 4386 Stamp Duty Reserve Tax (shares)
#> 4387 Stamp Duty Reserve Tax (shares)
#> 4388 Stamp Duty Reserve Tax (shares)
#> 4389 Stamp Duty Reserve Tax (shares)
#> 4390 Stamp Duty Reserve Tax (shares)
#> 4391 Stamp Duty Reserve Tax (shares)
#> 4392 Stamp Duty Reserve Tax (shares)
#> 4393 Stamp Duty Reserve Tax (shares)
#> 4394 Stamp Duty Reserve Tax (shares)
#> 4395 Stamp Duty Reserve Tax (shares)
#> 4396 Stamp Duty Reserve Tax (shares)
#> 4397 Stamp Duty Reserve Tax (shares)
#> 4398 Stamp Duty Reserve Tax (shares)
#> 4399 Stamp Duty Reserve Tax (shares)
#> 4400 Stamp Duty Reserve Tax (shares)
#> 4401 Stamp Duty Reserve Tax (shares)
#> 4402 Stamp Duty Reserve Tax (shares)
#> 4403 Stamp Duty Reserve Tax (shares)
#> 4404 Stamp Duty Reserve Tax (shares)
#> 4405 Stamp Duty Reserve Tax (shares)
#> 4406 Stamp Duty Reserve Tax (shares)
#> 4407 Stamp Duty Reserve Tax (shares)
#> 4408 Stamp Duty Reserve Tax (shares)
#> 4409 Stamp Duty Reserve Tax (shares)
#> 4410 Stamp Duty Reserve Tax (shares)
#> 4411 Stamp Duty Reserve Tax (shares)
#> 4412 Stamp Duty Reserve Tax (shares)
#> 4413 Stamp Duty Reserve Tax (shares)
#> 4414 Stamp Duty Reserve Tax (shares)
#> 4415 Stamp Duty Reserve Tax (shares)
#> 4416 Stamp Duty Reserve Tax (shares)
#> 4417 Stamp Duty Reserve Tax (shares)
#> 4418 Stamp Duty Reserve Tax (shares)
#> 4419 Stamp Duty Reserve Tax (shares)
#> 4420 Stamp Duty Reserve Tax (shares)
#> 4421 Stamp Duty Reserve Tax (shares)
#> 4422 Stamp Duty Reserve Tax (shares)
#> 4423 Stamp Duty Reserve Tax (shares)
#> 4424 Stamp Duty Reserve Tax (shares)
#> 4425 Stamp Duty Reserve Tax (shares)
#> 4426 Stamp Duty Reserve Tax (shares)
#> 4427 Stamp Duty Reserve Tax (shares)
#> 4428 Stamp Duty Reserve Tax (shares)
#> 4429 Stamp Duty Reserve Tax (shares)
#> 4430 Stamp Duty Reserve Tax (shares)
#> 4431 Stamp Duty Reserve Tax (shares)
#> 4432 Stamp Duty Reserve Tax (shares)
#> 4433 Stamp Duty Reserve Tax (shares)
#> 4434 Stamp Duty Reserve Tax (shares)
#> 4435 Stamp Duty Reserve Tax (shares)
#> 4436 Stamp Duty Reserve Tax (shares)
#> 4437 Stamp Duty Reserve Tax (shares)
#> 4438 Stamp Duty Reserve Tax (shares)
#> 4439 Stamp Duty Reserve Tax (shares)
#> 4440 Stamp Duty Reserve Tax (shares)
#> 4441 Tobacco Duties
#> 4442 Tobacco Duties
#> 4443 Tobacco Duties
#> 4444 Tobacco Duties
#> 4445 Tobacco Duties
#> 4446 Tobacco Duties
#> 4447 Tobacco Duties
#> 4448 Tobacco Duties
#> 4449 Tobacco Duties
#> 4450 Tobacco Duties
#> 4451 Tobacco Duties
#> 4452 Tobacco Duties
#> 4453 Tobacco Duties
#> 4454 Tobacco Duties
#> 4455 Tobacco Duties
#> 4456 Tobacco Duties
#> 4457 Tobacco Duties
#> 4458 Tobacco Duties
#> 4459 Tobacco Duties
#> 4460 Tobacco Duties
#> 4461 Tobacco Duties
#> 4462 Tobacco Duties
#> 4463 Tobacco Duties
#> 4464 Tobacco Duties
#> 4465 Tobacco Duties
#> 4466 Tobacco Duties
#> 4467 Tobacco Duties
#> 4468 Tobacco Duties
#> 4469 Tobacco Duties
#> 4470 Tobacco Duties
#> 4471 Tobacco Duties
#> 4472 Tobacco Duties
#> 4473 Tobacco Duties
#> 4474 Tobacco Duties
#> 4475 Tobacco Duties
#> 4476 Tobacco Duties
#> 4477 Tobacco Duties
#> 4478 Tobacco Duties
#> 4479 Tobacco Duties
#> 4480 Tobacco Duties
#> 4481 Tobacco Duties
#> 4482 Tobacco Duties
#> 4483 Tobacco Duties
#> 4484 Tobacco Duties
#> 4485 Tobacco Duties
#> 4486 Tobacco Duties
#> 4487 Tobacco Duties
#> 4488 Tobacco Duties
#> 4489 Tobacco Duties
#> 4490 Tobacco Duties
#> 4491 Tobacco Duties
#> 4492 Tobacco Duties
#> 4493 Tobacco Duties
#> 4494 Tobacco Duties
#> 4495 Tobacco Duties
#> 4496 Tobacco Duties
#> 4497 Tobacco Duties
#> 4498 Tobacco Duties
#> 4499 Tobacco Duties
#> 4500 Tobacco Duties
#> 4501 Tobacco Duties
#> 4502 Tobacco Duties
#> 4503 Tobacco Duties
#> 4504 Tobacco Duties
#> 4505 Tobacco Duties
#> 4506 Tobacco Duties
#> 4507 Tobacco Duties
#> 4508 Tobacco Duties
#> 4509 Tobacco Duties
#> 4510 Tobacco Duties
#> 4511 Tobacco Duties
#> 4512 Tobacco Duties
#> 4513 Tobacco Duties
#> 4514 Tobacco Duties
#> 4515 Tobacco Duties
#> 4516 Tobacco Duties
#> 4517 Tobacco Duties
#> 4518 Tobacco Duties
#> 4519 Tobacco Duties
#> 4520 Tobacco Duties
#> 4521 Tobacco Duties
#> 4522 Tobacco Duties
#> 4523 Tobacco Duties
#> 4524 Tobacco Duties
#> 4525 Tobacco Duties
#> 4526 Tobacco Duties
#> 4527 Tobacco Duties
#> 4528 Tobacco Duties
#> 4529 Tobacco Duties
#> 4530 Tobacco Duties
#> 4531 Tobacco Duties
#> 4532 Tobacco Duties
#> 4533 Tobacco Duties
#> 4534 Tobacco Duties
#> 4535 Tobacco Duties
#> 4536 Tobacco Duties
#> 4537 Tobacco Duties
#> 4538 Tobacco Duties
#> 4539 Tobacco Duties
#> 4540 Tobacco Duties
#> 4541 Tobacco Duties
#> 4542 Tobacco Duties
#> 4543 Tobacco Duties
#> 4544 Tobacco Duties
#> 4545 Tobacco Duties
#> 4546 Tobacco Duties
#> 4547 Tobacco Duties
#> 4548 Tobacco Duties
#> 4549 Tobacco Duties
#> 4550 Tobacco Duties
#> 4551 Tobacco Duties
#> 4552 Tobacco Duties
#> 4553 Tobacco Duties
#> 4554 Tobacco Duties
#> 4555 Tobacco Duties
#> 4556 Tobacco Duties
#> 4557 Tobacco Duties
#> 4558 Tobacco Duties
#> 4559 Tobacco Duties
#> 4560 Tobacco Duties
#> 4561 Total HMRC receipts
#> 4562 Total HMRC receipts
#> 4563 Total HMRC receipts
#> 4564 Total HMRC receipts
#> 4565 Total HMRC receipts
#> 4566 Total HMRC receipts
#> 4567 Total HMRC receipts
#> 4568 Total HMRC receipts
#> 4569 Total HMRC receipts
#> 4570 Total HMRC receipts
#> 4571 Total HMRC receipts
#> 4572 Total HMRC receipts
#> 4573 Total HMRC receipts
#> 4574 Total HMRC receipts
#> 4575 Total HMRC receipts
#> 4576 Total HMRC receipts
#> 4577 Total HMRC receipts
#> 4578 Total HMRC receipts
#> 4579 Total HMRC receipts
#> 4580 Total HMRC receipts
#> 4581 Total HMRC receipts
#> 4582 Total HMRC receipts
#> 4583 Total HMRC receipts
#> 4584 Total HMRC receipts
#> 4585 Total HMRC receipts
#> 4586 Total HMRC receipts
#> 4587 Total HMRC receipts
#> 4588 Total HMRC receipts
#> 4589 Total HMRC receipts
#> 4590 Total HMRC receipts
#> 4591 Total HMRC receipts
#> 4592 Total HMRC receipts
#> 4593 Total HMRC receipts
#> 4594 Total HMRC receipts
#> 4595 Total HMRC receipts
#> 4596 Total HMRC receipts
#> 4597 Total HMRC receipts
#> 4598 Total HMRC receipts
#> 4599 Total HMRC receipts
#> 4600 Total HMRC receipts
#> 4601 Total HMRC receipts
#> 4602 Total HMRC receipts
#> 4603 Total HMRC receipts
#> 4604 Total HMRC receipts
#> 4605 Total HMRC receipts
#> 4606 Total HMRC receipts
#> 4607 Total HMRC receipts
#> 4608 Total HMRC receipts
#> 4609 Total HMRC receipts
#> 4610 Total HMRC receipts
#> 4611 Total HMRC receipts
#> 4612 Total HMRC receipts
#> 4613 Total HMRC receipts
#> 4614 Total HMRC receipts
#> 4615 Total HMRC receipts
#> 4616 Total HMRC receipts
#> 4617 Total HMRC receipts
#> 4618 Total HMRC receipts
#> 4619 Total HMRC receipts
#> 4620 Total HMRC receipts
#> 4621 Total HMRC receipts
#> 4622 Total HMRC receipts
#> 4623 Total HMRC receipts
#> 4624 Total HMRC receipts
#> 4625 Total HMRC receipts
#> 4626 Total HMRC receipts
#> 4627 Total HMRC receipts
#> 4628 Total HMRC receipts
#> 4629 Total HMRC receipts
#> 4630 Total HMRC receipts
#> 4631 Total HMRC receipts
#> 4632 Total HMRC receipts
#> 4633 Total HMRC receipts
#> 4634 Total HMRC receipts
#> 4635 Total HMRC receipts
#> 4636 Total HMRC receipts
#> 4637 Total HMRC receipts
#> 4638 Total HMRC receipts
#> 4639 Total HMRC receipts
#> 4640 Total HMRC receipts
#> 4641 Total HMRC receipts
#> 4642 Total HMRC receipts
#> 4643 Total HMRC receipts
#> 4644 Total HMRC receipts
#> 4645 Total HMRC receipts
#> 4646 Total HMRC receipts
#> 4647 Total HMRC receipts
#> 4648 Total HMRC receipts
#> 4649 Total HMRC receipts
#> 4650 Total HMRC receipts
#> 4651 Total HMRC receipts
#> 4652 Total HMRC receipts
#> 4653 Total HMRC receipts
#> 4654 Total HMRC receipts
#> 4655 Total HMRC receipts
#> 4656 Total HMRC receipts
#> 4657 Total HMRC receipts
#> 4658 Total HMRC receipts
#> 4659 Total HMRC receipts
#> 4660 Total HMRC receipts
#> 4661 Total HMRC receipts
#> 4662 Total HMRC receipts
#> 4663 Total HMRC receipts
#> 4664 Total HMRC receipts
#> 4665 Total HMRC receipts
#> 4666 Total HMRC receipts
#> 4667 Total HMRC receipts
#> 4668 Total HMRC receipts
#> 4669 Total HMRC receipts
#> 4670 Total HMRC receipts
#> 4671 Total HMRC receipts
#> 4672 Total HMRC receipts
#> 4673 Total HMRC receipts
#> 4674 Total HMRC receipts
#> 4675 Total HMRC receipts
#> 4676 Total HMRC receipts
#> 4677 Total HMRC receipts
#> 4678 Total HMRC receipts
#> 4679 Total HMRC receipts
#> 4680 Total HMRC receipts
#> 4681 Value Added Tax
#> 4682 Value Added Tax
#> 4683 Value Added Tax
#> 4684 Value Added Tax
#> 4685 Value Added Tax
#> 4686 Value Added Tax
#> 4687 Value Added Tax
#> 4688 Value Added Tax
#> 4689 Value Added Tax
#> 4690 Value Added Tax
#> 4691 Value Added Tax
#> 4692 Value Added Tax
#> 4693 Value Added Tax
#> 4694 Value Added Tax
#> 4695 Value Added Tax
#> 4696 Value Added Tax
#> 4697 Value Added Tax
#> 4698 Value Added Tax
#> 4699 Value Added Tax
#> 4700 Value Added Tax
#> 4701 Value Added Tax
#> 4702 Value Added Tax
#> 4703 Value Added Tax
#> 4704 Value Added Tax
#> 4705 Value Added Tax
#> 4706 Value Added Tax
#> 4707 Value Added Tax
#> 4708 Value Added Tax
#> 4709 Value Added Tax
#> 4710 Value Added Tax
#> 4711 Value Added Tax
#> 4712 Value Added Tax
#> 4713 Value Added Tax
#> 4714 Value Added Tax
#> 4715 Value Added Tax
#> 4716 Value Added Tax
#> 4717 Value Added Tax
#> 4718 Value Added Tax
#> 4719 Value Added Tax
#> 4720 Value Added Tax
#> 4721 Value Added Tax
#> 4722 Value Added Tax
#> 4723 Value Added Tax
#> 4724 Value Added Tax
#> 4725 Value Added Tax
#> 4726 Value Added Tax
#> 4727 Value Added Tax
#> 4728 Value Added Tax
#> 4729 Value Added Tax
#> 4730 Value Added Tax
#> 4731 Value Added Tax
#> 4732 Value Added Tax
#> 4733 Value Added Tax
#> 4734 Value Added Tax
#> 4735 Value Added Tax
#> 4736 Value Added Tax
#> 4737 Value Added Tax
#> 4738 Value Added Tax
#> 4739 Value Added Tax
#> 4740 Value Added Tax
#> 4741 Value Added Tax
#> 4742 Value Added Tax
#> 4743 Value Added Tax
#> 4744 Value Added Tax
#> 4745 Value Added Tax
#> 4746 Value Added Tax
#> 4747 Value Added Tax
#> 4748 Value Added Tax
#> 4749 Value Added Tax
#> 4750 Value Added Tax
#> 4751 Value Added Tax
#> 4752 Value Added Tax
#> 4753 Value Added Tax
#> 4754 Value Added Tax
#> 4755 Value Added Tax
#> 4756 Value Added Tax
#> 4757 Value Added Tax
#> 4758 Value Added Tax
#> 4759 Value Added Tax
#> 4760 Value Added Tax
#> 4761 Value Added Tax
#> 4762 Value Added Tax
#> 4763 Value Added Tax
#> 4764 Value Added Tax
#> 4765 Value Added Tax
#> 4766 Value Added Tax
#> 4767 Value Added Tax
#> 4768 Value Added Tax
#> 4769 Value Added Tax
#> 4770 Value Added Tax
#> 4771 Value Added Tax
#> 4772 Value Added Tax
#> 4773 Value Added Tax
#> 4774 Value Added Tax
#> 4775 Value Added Tax
#> 4776 Value Added Tax
#> 4777 Value Added Tax
#> 4778 Value Added Tax
#> 4779 Value Added Tax
#> 4780 Value Added Tax
#> 4781 Value Added Tax
#> 4782 Value Added Tax
#> 4783 Value Added Tax
#> 4784 Value Added Tax
#> 4785 Value Added Tax
#> 4786 Value Added Tax
#> 4787 Value Added Tax
#> 4788 Value Added Tax
#> 4789 Value Added Tax
#> 4790 Value Added Tax
#> 4791 Value Added Tax
#> 4792 Value Added Tax
#> 4793 Value Added Tax
#> 4794 Value Added Tax
#> 4795 Value Added Tax
#> 4796 Value Added Tax
#> 4797 Value Added Tax
#> 4798 Value Added Tax
#> 4799 Value Added Tax
#> 4800 Value Added Tax
#> 4801 Wine and Made-Wine Duties
#> 4802 Wine and Made-Wine Duties
#> 4803 Wine and Made-Wine Duties
#> 4804 Wine and Made-Wine Duties
#> 4805 Wine and Made-Wine Duties
#> 4806 Wine and Made-Wine Duties
#> 4807 Wine and Made-Wine Duties
#> 4808 Wine and Made-Wine Duties
#> 4809 Wine and Made-Wine Duties
#> 4810 Wine and Made-Wine Duties
#> 4811 Wine and Made-Wine Duties
#> 4812 Wine and Made-Wine Duties
#> 4813 Wine and Made-Wine Duties
#> 4814 Wine and Made-Wine Duties
#> 4815 Wine and Made-Wine Duties
#> 4816 Wine and Made-Wine Duties
#> 4817 Wine and Made-Wine Duties
#> 4818 Wine and Made-Wine Duties
#> 4819 Wine and Made-Wine Duties
#> 4820 Wine and Made-Wine Duties
#> 4821 Wine and Made-Wine Duties
#> 4822 Wine and Made-Wine Duties
#> 4823 Wine and Made-Wine Duties
#> 4824 Wine and Made-Wine Duties
#> 4825 Wine and Made-Wine Duties
#> 4826 Wine and Made-Wine Duties
#> 4827 Wine and Made-Wine Duties
#> 4828 Wine and Made-Wine Duties
#> 4829 Wine and Made-Wine Duties
#> 4830 Wine and Made-Wine Duties
#> 4831 Wine and Made-Wine Duties
#> 4832 Wine and Made-Wine Duties
#> 4833 Wine and Made-Wine Duties
#> 4834 Wine and Made-Wine Duties
#> 4835 Wine and Made-Wine Duties
#> 4836 Wine and Made-Wine Duties
#> 4837 Wine and Made-Wine Duties
#> 4838 Wine and Made-Wine Duties
#> 4839 Wine and Made-Wine Duties
#> 4840 Wine and Made-Wine Duties
#> 4841 Wine and Made-Wine Duties
#> 4842 Wine and Made-Wine Duties
#> 4843 Wine and Made-Wine Duties
#> 4844 Wine and Made-Wine Duties
#> 4845 Wine and Made-Wine Duties
#> 4846 Wine and Made-Wine Duties
#> 4847 Wine and Made-Wine Duties
#> 4848 Wine and Made-Wine Duties
#> 4849 Wine and Made-Wine Duties
#> 4850 Wine and Made-Wine Duties
#> 4851 Wine and Made-Wine Duties
#> 4852 Wine and Made-Wine Duties
#> 4853 Wine and Made-Wine Duties
#> 4854 Wine and Made-Wine Duties
#> 4855 Wine and Made-Wine Duties
#> 4856 Wine and Made-Wine Duties
#> 4857 Wine and Made-Wine Duties
#> 4858 Wine and Made-Wine Duties
#> 4859 Wine and Made-Wine Duties
#> 4860 Wine and Made-Wine Duties
#> 4861 Wine and Made-Wine Duties
#> 4862 Wine and Made-Wine Duties
#> 4863 Wine and Made-Wine Duties
#> 4864 Wine and Made-Wine Duties
#> 4865 Wine and Made-Wine Duties
#> 4866 Wine and Made-Wine Duties
#> 4867 Wine and Made-Wine Duties
#> 4868 Wine and Made-Wine Duties
#> 4869 Wine and Made-Wine Duties
#> 4870 Wine and Made-Wine Duties
#> 4871 Wine and Made-Wine Duties
#> 4872 Wine and Made-Wine Duties
#> 4873 Wine and Made-Wine Duties
#> 4874 Wine and Made-Wine Duties
#> 4875 Wine and Made-Wine Duties
#> 4876 Wine and Made-Wine Duties
#> 4877 Wine and Made-Wine Duties
#> 4878 Wine and Made-Wine Duties
#> 4879 Wine and Made-Wine Duties
#> 4880 Wine and Made-Wine Duties
#> 4881 Wine and Made-Wine Duties
#> 4882 Wine and Made-Wine Duties
#> 4883 Wine and Made-Wine Duties
#> 4884 Wine and Made-Wine Duties
#> 4885 Wine and Made-Wine Duties
#> 4886 Wine and Made-Wine Duties
#> 4887 Wine and Made-Wine Duties
#> 4888 Wine and Made-Wine Duties
#> 4889 Wine and Made-Wine Duties
#> 4890 Wine and Made-Wine Duties
#> 4891 Wine and Made-Wine Duties
#> 4892 Wine and Made-Wine Duties
#> 4893 Wine and Made-Wine Duties
#> 4894 Wine and Made-Wine Duties
#> 4895 Wine and Made-Wine Duties
#> 4896 Wine and Made-Wine Duties
#> 4897 Wine and Made-Wine Duties
#> 4898 Wine and Made-Wine Duties
#> 4899 Wine and Made-Wine Duties
#> 4900 Wine and Made-Wine Duties
#> 4901 Wine and Made-Wine Duties
#> 4902 Wine and Made-Wine Duties
#> 4903 Wine and Made-Wine Duties
#> 4904 Wine and Made-Wine Duties
#> 4905 Wine and Made-Wine Duties
#> 4906 Wine and Made-Wine Duties
#> 4907 Wine and Made-Wine Duties
#> 4908 Wine and Made-Wine Duties
#> 4909 Wine and Made-Wine Duties
#> 4910 Wine and Made-Wine Duties
#> 4911 Wine and Made-Wine Duties
#> 4912 Wine and Made-Wine Duties
#> 4913 Wine and Made-Wine Duties
#> 4914 Wine and Made-Wine Duties
#> 4915 Wine and Made-Wine Duties
#> 4916 Wine and Made-Wine Duties
#> 4917 Wine and Made-Wine Duties
#> 4918 Wine and Made-Wine Duties
#> 4919 Wine and Made-Wine Duties
#> 4920 Wine and Made-Wine Duties
#> receipts_gbp_m
#> 1 40
#> 2 22
#> 3 20
#> 4 51
#> 5 27
#> 6 21
#> 7 53
#> 8 29
#> 9 19
#> 10 47
#> 11 26
#> 12 21
#> 13 27
#> 14 44
#> 15 18
#> 16 12
#> 17 47
#> 18 18
#> 19 65
#> 20 39
#> 21 17
#> 22 40
#> 23 36
#> 24 15
#> 25 31
#> 26 37
#> 27 16
#> 28 42
#> 29 42
#> 30 17
#> 31 39
#> 32 44
#> 33 18
#> 34 39
#> 35 29
#> 36 14
#> 37 37
#> 38 36
#> 39 17
#> 40 56
#> 41 35
#> 42 18
#> 43 41
#> 44 41
#> 45 17
#> 46 45
#> 47 40
#> 48 15
#> 49 33
#> 50 10
#> 51 15
#> 52 40
#> 53 14
#> 54 17
#> 55 50
#> 56 52
#> 57 24
#> 58 48
#> 59 39
#> 60 16
#> 61 36
#> 62 42
#> 63 20
#> 64 48
#> 65 42
#> 66 20
#> 67 41
#> 68 44
#> 69 41
#> 70 15
#> 71 44
#> 72 17
#> 73 33
#> 74 42
#> 75 19
#> 76 41
#> 77 39
#> 78 20
#> 79 31
#> 80 46
#> 81 19
#> 82 36
#> 83 35
#> 84 18
#> 85 41
#> 86 29
#> 87 14
#> 88 46
#> 89 30
#> 90 18
#> 91 48
#> 92 27
#> 93 17
#> 94 34
#> 95 33
#> 96 14
#> 97 39
#> 98 25
#> 99 19
#> 100 48
#> 101 30
#> 102 19
#> 103 46
#> 104 29
#> 105 19
#> 106 45
#> 107 25
#> 108 16
#> 109 33
#> 110 34
#> 111 20
#> 112 48
#> 113 32
#> 114 20
#> 115 47
#> 116 29
#> 117 20
#> 118 36
#> 119 35
#> 120 15
#> 121 224
#> 122 257
#> 123 262
#> 124 277
#> 125 265
#> 126 364
#> 127 299
#> 128 283
#> 129 240
#> 130 264
#> 131 210
#> 132 213
#> 133 277
#> 134 190
#> 135 364
#> 136 296
#> 137 203
#> 138 404
#> 139 370
#> 140 308
#> 141 243
#> 142 295
#> 143 65
#> 144 337
#> 145 285
#> 146 278
#> 147 305
#> 148 323
#> 149 358
#> 150 349
#> 151 337
#> 152 310
#> 153 231
#> 154 335
#> 155 258
#> 156 264
#> 157 297
#> 158 320
#> 159 347
#> 160 370
#> 161 394
#> 162 363
#> 163 360
#> 164 363
#> 165 294
#> 166 331
#> 167 292
#> 168 82
#> 169 30
#> 170 7
#> 171 62
#> 172 43
#> 173 34
#> 174 93
#> 175 87
#> 176 39
#> 177 89
#> 178 59
#> 179 32
#> 180 25
#> 181 20
#> 182 18
#> 183 26
#> 184 38
#> 185 63
#> 186 77
#> 187 91
#> 188 126
#> 189 149
#> 190 154
#> 191 111
#> 192 146
#> 193 200
#> 194 225
#> 195 263
#> 196 269
#> 197 307
#> 198 306
#> 199 290
#> 200 299
#> 201 250
#> 202 288
#> 203 245
#> 204 242
#> 205 285
#> 206 287
#> 207 315
#> 208 332
#> 209 371
#> 210 347
#> 211 347
#> 212 353
#> 213 292
#> 214 323
#> 215 279
#> 216 280
#> 217 320
#> 218 305
#> 219 346
#> 220 357
#> 221 403
#> 222 374
#> 223 378
#> 224 376
#> 225 311
#> 226 360
#> 227 297
#> 228 298
#> 229 326
#> 230 352
#> 231 381
#> 232 386
#> 233 426
#> 234 421
#> 235 371
#> 236 422
#> 237 344
#> 238 397
#> 239 346
#> 240 309
#> 241 NA
#> 242 NA
#> 243 NA
#> 244 NA
#> 245 NA
#> 246 NA
#> 247 NA
#> 248 NA
#> 249 NA
#> 250 NA
#> 251 NA
#> 252 NA
#> 253 NA
#> 254 162
#> 255 198
#> 256 211
#> 257 210
#> 258 206
#> 259 207
#> 260 208
#> 261 176
#> 262 252
#> 263 218
#> 264 223
#> 265 273
#> 266 228
#> 267 212
#> 268 220
#> 269 228
#> 270 213
#> 271 218
#> 272 219
#> 273 213
#> 274 233
#> 275 226
#> 276 230
#> 277 271
#> 278 226
#> 279 230
#> 280 246
#> 281 226
#> 282 218
#> 283 234
#> 284 221
#> 285 223
#> 286 238
#> 287 243
#> 288 222
#> 289 210
#> 290 203
#> 291 247
#> 292 273
#> 293 238
#> 294 246
#> 295 242
#> 296 243
#> 297 234
#> 298 250
#> 299 258
#> 300 266
#> 301 291
#> 302 261
#> 303 262
#> 304 257
#> 305 253
#> 306 254
#> 307 260
#> 308 253
#> 309 247
#> 310 286
#> 311 287
#> 312 304
#> 313 356
#> 314 270
#> 315 294
#> 316 293
#> 317 286
#> 318 267
#> 319 283
#> 320 292
#> 321 283
#> 322 306
#> 323 301
#> 324 352
#> 325 378
#> 326 295
#> 327 300
#> 328 343
#> 329 306
#> 330 299
#> 331 305
#> 332 310
#> 333 296
#> 334 338
#> 335 326
#> 336 343
#> 337 413
#> 338 329
#> 339 315
#> 340 334
#> 341 320
#> 342 327
#> 343 330
#> 344 336
#> 345 329
#> 346 356
#> 347 345
#> 348 365
#> 349 474
#> 350 333
#> 351 341
#> 352 361
#> 353 341
#> 354 349
#> 355 362
#> 356 336
#> 357 338
#> 358 375
#> 359 385
#> 360 395
#> 361 88
#> 362 51
#> 363 10
#> 364 7
#> 365 0
#> 366 4
#> 367 3
#> 368 3
#> 369 3
#> 370 5
#> 371 1
#> 372 1
#> 373 60
#> 374 47
#> 375 9
#> 376 7
#> 377 4
#> 378 2
#> 379 2
#> 380 1
#> 381 2
#> 382 2
#> 383 4
#> 384 3
#> 385 76
#> 386 36
#> 387 7
#> 388 2
#> 389 4
#> 390 2
#> 391 3
#> 392 2
#> 393 2
#> 394 1
#> 395 1
#> 396 3
#> 397 76
#> 398 26
#> 399 3
#> 400 4
#> 401 3
#> 402 1
#> 403 5
#> 404 2
#> 405 0
#> 406 1
#> 407 3
#> 408 2
#> 409 68
#> 410 20
#> 411 5
#> 412 4
#> 413 3
#> 414 1
#> 415 2
#> 416 2
#> 417 1
#> 418 1
#> 419 1
#> 420 2
#> 421 66
#> 422 19
#> 423 5
#> 424 4
#> 425 2
#> 426 2
#> 427 2
#> 428 6
#> 429 2
#> 430 5
#> 431 4
#> 432 3
#> 433 60
#> 434 28
#> 435 6
#> 436 3
#> 437 5
#> 438 4
#> 439 6
#> 440 3
#> 441 1
#> 442 2
#> 443 3
#> 444 2
#> 445 69
#> 446 26
#> 447 7
#> 448 4
#> 449 4
#> 450 7
#> 451 4
#> 452 3
#> 453 3
#> 454 2
#> 455 3
#> 456 1
#> 457 78
#> 458 24
#> 459 4
#> 460 4
#> 461 3
#> 462 4
#> 463 4
#> 464 4
#> 465 3
#> 466 1
#> 467 2
#> 468 2
#> 469 79
#> 470 19
#> 471 11
#> 472 4
#> 473 3
#> 474 4
#> 475 3
#> 476 4
#> 477 3
#> 478 3
#> 479 3
#> 480 3
#> 481 564
#> 482 NA
#> 483 NA
#> 484 827
#> 485 NA
#> 486 NA
#> 487 787
#> 488 NA
#> 489 NA
#> 490 796
#> 491 NA
#> 492 NA
#> 493 711
#> 494 NA
#> 495 NA
#> 496 707
#> 497 NA
#> 498 NA
#> 499 683
#> 500 NA
#> 501 NA
#> 502 662
#> 503 NA
#> 504 NA
#> 505 512
#> 506 NA
#> 507 NA
#> 508 744
#> 509 NA
#> 510 NA
#> 511 648
#> 512 NA
#> 513 NA
#> 514 687
#> 515 NA
#> 516 NA
#> 517 560
#> 518 NA
#> 519 NA
#> 520 627
#> 521 NA
#> 522 NA
#> 523 667
#> 524 NA
#> 525 NA
#> 526 617
#> 527 NA
#> 528 NA
#> 529 611
#> 530 NA
#> 531 NA
#> 532 626
#> 533 NA
#> 534 NA
#> 535 586
#> 536 NA
#> 537 NA
#> 538 520
#> 539 NA
#> 540 NA
#> 541 484
#> 542 NA
#> 543 NA
#> 544 297
#> 545 NA
#> 546 NA
#> 547 351
#> 548 NA
#> 549 NA
#> 550 336
#> 551 NA
#> 552 NA
#> 553 263
#> 554 NA
#> 555 NA
#> 556 339
#> 557 NA
#> 558 NA
#> 559 365
#> 560 NA
#> 561 NA
#> 562 366
#> 563 NA
#> 564 NA
#> 565 238
#> 566 NA
#> 567 NA
#> 568 315
#> 569 NA
#> 570 NA
#> 571 299
#> 572 NA
#> 573 NA
#> 574 577
#> 575 NA
#> 576 NA
#> 577 274
#> 578 NA
#> 579 NA
#> 580 359
#> 581 NA
#> 582 NA
#> 583 317
#> 584 NA
#> 585 NA
#> 586 369
#> 587 NA
#> 588 NA
#> 589 296
#> 590 NA
#> 591 NA
#> 592 344
#> 593 NA
#> 594 NA
#> 595 413
#> 596 NA
#> 597 NA
#> 598 373
#> 599 NA
#> 600 NA
#> 601 NA
#> 602 NA
#> 603 NA
#> 604 NA
#> 605 NA
#> 606 NA
#> 607 NA
#> 608 NA
#> 609 NA
#> 610 NA
#> 611 NA
#> 612 NA
#> 613 NA
#> 614 NA
#> 615 NA
#> 616 NA
#> 617 NA
#> 618 NA
#> 619 NA
#> 620 NA
#> 621 NA
#> 622 NA
#> 623 NA
#> 624 NA
#> 625 NA
#> 626 NA
#> 627 NA
#> 628 NA
#> 629 NA
#> 630 NA
#> 631 NA
#> 632 NA
#> 633 NA
#> 634 NA
#> 635 NA
#> 636 NA
#> 637 NA
#> 638 NA
#> 639 NA
#> 640 NA
#> 641 NA
#> 642 NA
#> 643 NA
#> 644 NA
#> 645 NA
#> 646 NA
#> 647 NA
#> 648 NA
#> 649 NA
#> 650 NA
#> 651 NA
#> 652 NA
#> 653 NA
#> 654 NA
#> 655 NA
#> 656 NA
#> 657 NA
#> 658 NA
#> 659 NA
#> 660 NA
#> 661 NA
#> 662 NA
#> 663 NA
#> 664 NA
#> 665 NA
#> 666 NA
#> 667 NA
#> 668 NA
#> 669 NA
#> 670 NA
#> 671 NA
#> 672 NA
#> 673 NA
#> 674 NA
#> 675 NA
#> 676 NA
#> 677 NA
#> 678 NA
#> 679 NA
#> 680 NA
#> 681 NA
#> 682 NA
#> 683 NA
#> 684 NA
#> 685 NA
#> 686 NA
#> 687 NA
#> 688 NA
#> 689 NA
#> 690 NA
#> 691 NA
#> 692 NA
#> 693 NA
#> 694 NA
#> 695 NA
#> 696 NA
#> 697 NA
#> 698 NA
#> 699 NA
#> 700 NA
#> 701 NA
#> 702 NA
#> 703 NA
#> 704 NA
#> 705 NA
#> 706 NA
#> 707 NA
#> 708 NA
#> 709 NA
#> 710 NA
#> 711 NA
#> 712 NA
#> 713 NA
#> 714 NA
#> 715 NA
#> 716 NA
#> 717 NA
#> 718 NA
#> 719 NA
#> 720 NA
#> 721 20
#> 722 NA
#> 723 NA
#> 724 344
#> 725 NA
#> 726 NA
#> 727 444
#> 728 NA
#> 729 NA
#> 730 336
#> 731 NA
#> 732 NA
#> 733 384
#> 734 NA
#> 735 NA
#> 736 501
#> 737 NA
#> 738 NA
#> 739 516
#> 740 NA
#> 741 NA
#> 742 377
#> 743 NA
#> 744 NA
#> 745 456
#> 746 NA
#> 747 NA
#> 748 502
#> 749 NA
#> 750 NA
#> 751 524
#> 752 NA
#> 753 NA
#> 754 422
#> 755 NA
#> 756 NA
#> 757 429
#> 758 NA
#> 759 NA
#> 760 467
#> 761 NA
#> 762 NA
#> 763 417
#> 764 NA
#> 765 NA
#> 766 287
#> 767 NA
#> 768 388
#> 769 301
#> 770 NA
#> 771 308
#> 772 NA
#> 773 NA
#> 774 205
#> 775 NA
#> 776 NA
#> 777 266
#> 778 NA
#> 779 NA
#> 780 329
#> 781 NA
#> 782 NA
#> 783 536
#> 784 NA
#> 785 NA
#> 786 610
#> 787 NA
#> 788 NA
#> 789 664
#> 790 NA
#> 791 NA
#> 792 526
#> 793 NA
#> 794 NA
#> 795 630
#> 796 NA
#> 797 NA
#> 798 719
#> 799 NA
#> 800 NA
#> 801 665
#> 802 NA
#> 803 NA
#> 804 566
#> 805 NA
#> 806 NA
#> 807 427
#> 808 NA
#> 809 NA
#> 810 442
#> 811 NA
#> 812 NA
#> 813 332
#> 814 NA
#> 815 NA
#> 816 245
#> 817 NA
#> 818 NA
#> 819 245
#> 820 NA
#> 821 NA
#> 822 271
#> 823 NA
#> 824 NA
#> 825 179
#> 826 NA
#> 827 NA
#> 828 278
#> 829 NA
#> 830 NA
#> 831 275
#> 832 NA
#> 833 NA
#> 834 258
#> 835 NA
#> 836 NA
#> 837 309
#> 838 NA
#> 839 NA
#> 840 328
#> 841 286
#> 842 290
#> 843 320
#> 844 296
#> 845 274
#> 846 300
#> 847 260
#> 848 241
#> 849 328
#> 850 300
#> 851 181
#> 852 244
#> 853 305
#> 854 282
#> 855 320
#> 856 315
#> 857 294
#> 858 314
#> 859 255
#> 860 298
#> 861 344
#> 862 291
#> 863 200
#> 864 242
#> 865 308
#> 866 313
#> 867 361
#> 868 336
#> 869 338
#> 870 319
#> 871 257
#> 872 318
#> 873 342
#> 874 304
#> 875 212
#> 876 255
#> 877 305
#> 878 332
#> 879 340
#> 880 306
#> 881 310
#> 882 352
#> 883 274
#> 884 254
#> 885 401
#> 886 318
#> 887 211
#> 888 43
#> 889 69
#> 890 117
#> 891 535
#> 892 309
#> 893 372
#> 894 331
#> 895 315
#> 896 278
#> 897 250
#> 898 232
#> 899 149
#> 900 127
#> 901 256
#> 902 309
#> 903 343
#> 904 381
#> 905 343
#> 906 336
#> 907 345
#> 908 340
#> 909 357
#> 910 266
#> 911 227
#> 912 244
#> 913 316
#> 914 319
#> 915 350
#> 916 308
#> 917 325
#> 918 356
#> 919 288
#> 920 314
#> 921 305
#> 922 328
#> 923 200
#> 924 271
#> 925 319
#> 926 300
#> 927 310
#> 928 388
#> 929 404
#> 930 255
#> 931 264
#> 932 299
#> 933 343
#> 934 286
#> 935 215
#> 936 238
#> 937 286
#> 938 303
#> 939 359
#> 940 317
#> 941 322
#> 942 293
#> 943 268
#> 944 285
#> 945 313
#> 946 297
#> 947 308
#> 948 167
#> 949 289
#> 950 284
#> 951 346
#> 952 304
#> 953 322
#> 954 290
#> 955 256
#> 956 317
#> 957 299
#> 958 251
#> 959 306
#> 960 188
#> 961 7
#> 962 2
#> 963 18
#> 964 6
#> 965 2
#> 966 -2
#> 967 2
#> 968 14
#> 969 2
#> 970 6094
#> 971 2142
#> 972 275
#> 973 3
#> 974 3
#> 975 5
#> 976 5
#> 977 7
#> 978 5
#> 979 5
#> 980 6
#> 981 10
#> 982 5599
#> 983 1876
#> 984 269
#> 985 5
#> 986 4
#> 987 5
#> 988 5
#> 989 8
#> 990 3
#> 991 5
#> 992 6
#> 993 14
#> 994 6666
#> 995 2192
#> 996 279
#> 997 5
#> 998 4
#> 999 5
#> 1000 4
#> 1001 8
#> 1002 4
#> 1003 4
#> 1004 5
#> 1005 6
#> 1006 7048
#> 1007 2408
#> 1008 326
#> 1009 7
#> 1010 10
#> 1011 21
#> 1012 41
#> 1013 44
#> 1014 69
#> 1015 72
#> 1016 92
#> 1017 114
#> 1018 7576
#> 1019 2363
#> 1020 721
#> 1021 174
#> 1022 124
#> 1023 160
#> 1024 267
#> 1025 122
#> 1026 132
#> 1027 200
#> 1028 153
#> 1029 119
#> 1030 10669
#> 1031 2091
#> 1032 1052
#> 1033 145
#> 1034 178
#> 1035 154
#> 1036 153
#> 1037 189
#> 1038 185
#> 1039 190
#> 1040 231
#> 1041 188
#> 1042 12796
#> 1043 1920
#> 1044 600
#> 1045 134
#> 1046 177
#> 1047 140
#> 1048 157
#> 1049 170
#> 1050 165
#> 1051 174
#> 1052 172
#> 1053 159
#> 1054 10620
#> 1055 1926
#> 1056 500
#> 1057 156
#> 1058 161
#> 1059 157
#> 1060 183
#> 1061 197
#> 1062 192
#> 1063 251
#> 1064 222
#> 1065 335
#> 1066 10033
#> 1067 1387
#> 1068 412
#> 1069 191
#> 1070 232
#> 1071 144
#> 1072 165
#> 1073 190
#> 1074 207
#> 1075 230
#> 1076 224
#> 1077 231
#> 1078 17137
#> 1079 2741
#> 1080 496
#> 1081 26
#> 1082 25
#> 1083 29
#> 1084 27
#> 1085 26
#> 1086 25
#> 1087 20
#> 1088 21
#> 1089 23
#> 1090 24
#> 1091 16
#> 1092 25
#> 1093 25
#> 1094 23
#> 1095 23
#> 1096 30
#> 1097 27
#> 1098 27
#> 1099 29
#> 1100 25
#> 1101 28
#> 1102 21
#> 1103 16
#> 1104 20
#> 1105 23
#> 1106 22
#> 1107 27
#> 1108 29
#> 1109 26
#> 1110 22
#> 1111 23
#> 1112 24
#> 1113 27
#> 1114 20
#> 1115 17
#> 1116 18
#> 1117 25
#> 1118 26
#> 1119 26
#> 1120 22
#> 1121 26
#> 1122 24
#> 1123 23
#> 1124 22
#> 1125 24
#> 1126 20
#> 1127 17
#> 1128 15
#> 1129 12
#> 1130 24
#> 1131 24
#> 1132 26
#> 1133 28
#> 1134 24
#> 1135 21
#> 1136 25
#> 1137 18
#> 1138 16
#> 1139 14
#> 1140 15
#> 1141 14
#> 1142 24
#> 1143 20
#> 1144 20
#> 1145 25
#> 1146 25
#> 1147 23
#> 1148 16
#> 1149 17
#> 1150 20
#> 1151 13
#> 1152 18
#> 1153 15
#> 1154 25
#> 1155 16
#> 1156 21
#> 1157 21
#> 1158 17
#> 1159 26
#> 1160 34
#> 1161 17
#> 1162 18
#> 1163 14
#> 1164 13
#> 1165 20
#> 1166 20
#> 1167 24
#> 1168 18
#> 1169 24
#> 1170 15
#> 1171 15
#> 1172 22
#> 1173 20
#> 1174 20
#> 1175 7
#> 1176 17
#> 1177 15
#> 1178 22
#> 1179 26
#> 1180 27
#> 1181 19
#> 1182 22
#> 1183 15
#> 1184 13
#> 1185 21
#> 1186 18
#> 1187 16
#> 1188 8
#> 1189 18
#> 1190 22
#> 1191 33
#> 1192 27
#> 1193 29
#> 1194 25
#> 1195 21
#> 1196 31
#> 1197 24
#> 1198 18
#> 1199 30
#> 1200 17
#> 1201 237
#> 1202 253
#> 1203 -3
#> 1204 222
#> 1205 222
#> 1206 0
#> 1207 193
#> 1208 212
#> 1209 3
#> 1210 248
#> 1211 295
#> 1212 -17
#> 1213 288
#> 1214 241
#> 1215 5
#> 1216 240
#> 1217 181
#> 1218 4
#> 1219 189
#> 1220 194
#> 1221 19
#> 1222 245
#> 1223 235
#> 1224 22
#> 1225 258
#> 1226 278
#> 1227 5
#> 1228 237
#> 1229 203
#> 1230 14
#> 1231 236
#> 1232 152
#> 1233 15
#> 1234 271
#> 1235 197
#> 1236 59
#> 1237 299
#> 1238 201
#> 1239 28
#> 1240 276
#> 1241 192
#> 1242 15
#> 1243 272
#> 1244 152
#> 1245 37
#> 1246 295
#> 1247 193
#> 1248 44
#> 1249 271
#> 1250 214
#> 1251 40
#> 1252 201
#> 1253 150
#> 1254 35
#> 1255 194
#> 1256 172
#> 1257 36
#> 1258 266
#> 1259 163
#> 1260 36
#> 1261 245
#> 1262 254
#> 1263 37
#> 1264 208
#> 1265 225
#> 1266 20
#> 1267 175
#> 1268 219
#> 1269 17
#> 1270 236
#> 1271 268
#> 1272 25
#> 1273 247
#> 1274 288
#> 1275 22
#> 1276 218
#> 1277 286
#> 1278 23
#> 1279 212
#> 1280 253
#> 1281 19
#> 1282 226
#> 1283 281
#> 1284 22
#> 1285 231
#> 1286 290
#> 1287 5
#> 1288 248
#> 1289 194
#> 1290 22
#> 1291 248
#> 1292 117
#> 1293 21
#> 1294 238
#> 1295 193
#> 1296 19
#> 1297 289
#> 1298 240
#> 1299 26
#> 1300 227
#> 1301 135
#> 1302 24
#> 1303 167
#> 1304 159
#> 1305 21
#> 1306 299
#> 1307 169
#> 1308 35
#> 1309 399
#> 1310 176
#> 1311 30
#> 1312 233
#> 1313 126
#> 1314 25
#> 1315 174
#> 1316 140
#> 1317 17
#> 1318 250
#> 1319 195
#> 1320 26
#> 1321 5656
#> 1322 1800
#> 1323 1733
#> 1324 7044
#> 1325 1446
#> 1326 2174
#> 1327 8461
#> 1328 2032
#> 1329 3827
#> 1330 9612
#> 1331 2145
#> 1332 2087
#> 1333 6676
#> 1334 2030
#> 1335 2145
#> 1336 7837
#> 1337 1921
#> 1338 2778
#> 1339 9467
#> 1340 1485
#> 1341 4021
#> 1342 9979
#> 1343 2253
#> 1344 2121
#> 1345 7246
#> 1346 2230
#> 1347 1694
#> 1348 8375
#> 1349 2072
#> 1350 2690
#> 1351 9778
#> 1352 2271
#> 1353 4061
#> 1354 9757
#> 1355 2025
#> 1356 2182
#> 1357 7312
#> 1358 2216
#> 1359 2836
#> 1360 9168
#> 1361 2156
#> 1362 3985
#> 1363 8527
#> 1364 2170
#> 1365 6133
#> 1366 8603
#> 1367 1906
#> 1368 6552
#> 1369 3332
#> 1370 904
#> 1371 4811
#> 1372 3028
#> 1373 1646
#> 1374 7378
#> 1375 3939
#> 1376 2319
#> 1377 8980
#> 1378 4075
#> 1379 2403
#> 1380 7674
#> 1381 2809
#> 1382 1976
#> 1383 8044
#> 1384 3630
#> 1385 2101
#> 1386 9555
#> 1387 4714
#> 1388 2404
#> 1389 11787
#> 1390 5215
#> 1391 2370
#> 1392 9140
#> 1393 3574
#> 1394 2383
#> 1395 8835
#> 1396 5792
#> 1397 2651
#> 1398 10425
#> 1399 7149
#> 1400 2714
#> 1401 10867
#> 1402 8370
#> 1403 3837
#> 1404 11298
#> 1405 3778
#> 1406 2453
#> 1407 11809
#> 1408 4996
#> 1409 1918
#> 1410 13842
#> 1411 5542
#> 1412 2777
#> 1413 14362
#> 1414 8027
#> 1415 3106
#> 1416 13048
#> 1417 4314
#> 1418 3049
#> 1419 12354
#> 1420 5434
#> 1421 3199
#> 1422 14188
#> 1423 6108
#> 1424 2429
#> 1425 16575
#> 1426 6904
#> 1427 2971
#> 1428 13388
#> 1429 4485
#> 1430 2968
#> 1431 13007
#> 1432 5808
#> 1433 3120
#> 1434 14489
#> 1435 5810
#> 1436 2567
#> 1437 18323
#> 1438 6515
#> 1439 2672
#> 1440 15360
#> 1441 252
#> 1442 243
#> 1443 248
#> 1444 263
#> 1445 282
#> 1446 302
#> 1447 320
#> 1448 310
#> 1449 279
#> 1450 301
#> 1451 292
#> 1452 267
#> 1453 283
#> 1454 260
#> 1455 284
#> 1456 278
#> 1457 300
#> 1458 311
#> 1459 308
#> 1460 301
#> 1461 281
#> 1462 254
#> 1463 272
#> 1464 281
#> 1465 258
#> 1466 235
#> 1467 253
#> 1468 256
#> 1469 290
#> 1470 303
#> 1471 300
#> 1472 339
#> 1473 285
#> 1474 263
#> 1475 300
#> 1476 273
#> 1477 261
#> 1478 258
#> 1479 270
#> 1480 266
#> 1481 291
#> 1482 301
#> 1483 316
#> 1484 309
#> 1485 263
#> 1486 238
#> 1487 276
#> 1488 239
#> 1489 208
#> 1490 194
#> 1491 193
#> 1492 209
#> 1493 248
#> 1494 253
#> 1495 288
#> 1496 285
#> 1497 274
#> 1498 229
#> 1499 252
#> 1500 329
#> 1501 382
#> 1502 332
#> 1503 325
#> 1504 377
#> 1505 375
#> 1506 406
#> 1507 437
#> 1508 428
#> 1509 458
#> 1510 414
#> 1511 429
#> 1512 429
#> 1513 506
#> 1514 412
#> 1515 416
#> 1516 448
#> 1517 433
#> 1518 472
#> 1519 525
#> 1520 503
#> 1521 428
#> 1522 489
#> 1523 380
#> 1524 514
#> 1525 426
#> 1526 383
#> 1527 431
#> 1528 394
#> 1529 420
#> 1530 455
#> 1531 410
#> 1532 480
#> 1533 378
#> 1534 371
#> 1535 353
#> 1536 304
#> 1537 435
#> 1538 357
#> 1539 433
#> 1540 383
#> 1541 395
#> 1542 424
#> 1543 434
#> 1544 468
#> 1545 436
#> 1546 393
#> 1547 370
#> 1548 368
#> 1549 409
#> 1550 375
#> 1551 382
#> 1552 409
#> 1553 433
#> 1554 464
#> 1555 453
#> 1556 429
#> 1557 406
#> 1558 367
#> 1559 381
#> 1560 463
#> 1561 NA
#> 1562 NA
#> 1563 NA
#> 1564 NA
#> 1565 NA
#> 1566 NA
#> 1567 NA
#> 1568 NA
#> 1569 NA
#> 1570 NA
#> 1571 NA
#> 1572 NA
#> 1573 NA
#> 1574 NA
#> 1575 NA
#> 1576 NA
#> 1577 NA
#> 1578 NA
#> 1579 NA
#> 1580 NA
#> 1581 NA
#> 1582 NA
#> 1583 NA
#> 1584 NA
#> 1585 NA
#> 1586 NA
#> 1587 NA
#> 1588 NA
#> 1589 NA
#> 1590 NA
#> 1591 NA
#> 1592 NA
#> 1593 NA
#> 1594 NA
#> 1595 NA
#> 1596 NA
#> 1597 NA
#> 1598 NA
#> 1599 NA
#> 1600 NA
#> 1601 NA
#> 1602 NA
#> 1603 NA
#> 1604 NA
#> 1605 NA
#> 1606 NA
#> 1607 NA
#> 1608 NA
#> 1609 NA
#> 1610 NA
#> 1611 NA
#> 1612 NA
#> 1613 NA
#> 1614 NA
#> 1615 NA
#> 1616 NA
#> 1617 NA
#> 1618 NA
#> 1619 NA
#> 1620 NA
#> 1621 NA
#> 1622 NA
#> 1623 NA
#> 1624 NA
#> 1625 NA
#> 1626 NA
#> 1627 NA
#> 1628 NA
#> 1629 NA
#> 1630 NA
#> 1631 NA
#> 1632 380
#> 1633 NA
#> 1634 NA
#> 1635 NA
#> 1636 NA
#> 1637 NA
#> 1638 NA
#> 1639 NA
#> 1640 NA
#> 1641 NA
#> 1642 NA
#> 1643 NA
#> 1644 567
#> 1645 NA
#> 1646 NA
#> 1647 NA
#> 1648 NA
#> 1649 NA
#> 1650 NA
#> 1651 NA
#> 1652 NA
#> 1653 NA
#> 1654 NA
#> 1655 NA
#> 1656 678
#> 1657 NA
#> 1658 NA
#> 1659 NA
#> 1660 NA
#> 1661 NA
#> 1662 NA
#> 1663 NA
#> 1664 NA
#> 1665 NA
#> 1666 NA
#> 1667 NA
#> 1668 808
#> 1669 NA
#> 1670 NA
#> 1671 NA
#> 1672 NA
#> 1673 NA
#> 1674 NA
#> 1675 NA
#> 1676 NA
#> 1677 NA
#> 1678 NA
#> 1679 NA
#> 1680 944
#> 1681 NA
#> 1682 NA
#> 1683 NA
#> 1684 NA
#> 1685 NA
#> 1686 NA
#> 1687 NA
#> 1688 NA
#> 1689 NA
#> 1690 NA
#> 1691 NA
#> 1692 138
#> 1693 NA
#> 1694 NA
#> 1695 NA
#> 1696 NA
#> 1697 NA
#> 1698 NA
#> 1699 NA
#> 1700 NA
#> 1701 NA
#> 1702 NA
#> 1703 NA
#> 1704 219
#> 1705 NA
#> 1706 NA
#> 1707 NA
#> 1708 NA
#> 1709 NA
#> 1710 NA
#> 1711 NA
#> 1712 NA
#> 1713 NA
#> 1714 NA
#> 1715 NA
#> 1716 12
#> 1717 NA
#> 1718 NA
#> 1719 NA
#> 1720 NA
#> 1721 NA
#> 1722 NA
#> 1723 NA
#> 1724 NA
#> 1725 NA
#> 1726 NA
#> 1727 NA
#> 1728 5
#> 1729 NA
#> 1730 NA
#> 1731 NA
#> 1732 NA
#> 1733 NA
#> 1734 NA
#> 1735 NA
#> 1736 NA
#> 1737 NA
#> 1738 NA
#> 1739 NA
#> 1740 140
#> 1741 NA
#> 1742 NA
#> 1743 NA
#> 1744 NA
#> 1745 NA
#> 1746 NA
#> 1747 NA
#> 1748 NA
#> 1749 NA
#> 1750 NA
#> 1751 NA
#> 1752 220
#> 1753 NA
#> 1754 NA
#> 1755 NA
#> 1756 NA
#> 1757 NA
#> 1758 NA
#> 1759 NA
#> 1760 NA
#> 1761 NA
#> 1762 NA
#> 1763 NA
#> 1764 42
#> 1765 NA
#> 1766 NA
#> 1767 NA
#> 1768 NA
#> 1769 NA
#> 1770 NA
#> 1771 NA
#> 1772 NA
#> 1773 NA
#> 1774 NA
#> 1775 NA
#> 1776 108
#> 1777 NA
#> 1778 NA
#> 1779 NA
#> 1780 NA
#> 1781 NA
#> 1782 NA
#> 1783 NA
#> 1784 NA
#> 1785 NA
#> 1786 NA
#> 1787 NA
#> 1788 105
#> 1789 NA
#> 1790 NA
#> 1791 NA
#> 1792 NA
#> 1793 NA
#> 1794 NA
#> 1795 NA
#> 1796 NA
#> 1797 NA
#> 1798 NA
#> 1799 NA
#> 1800 604
#> 1801 NA
#> 1802 NA
#> 1803 NA
#> 1804 NA
#> 1805 NA
#> 1806 NA
#> 1807 NA
#> 1808 NA
#> 1809 NA
#> 1810 NA
#> 1811 NA
#> 1812 NA
#> 1813 NA
#> 1814 NA
#> 1815 NA
#> 1816 NA
#> 1817 NA
#> 1818 NA
#> 1819 NA
#> 1820 NA
#> 1821 NA
#> 1822 NA
#> 1823 NA
#> 1824 NA
#> 1825 NA
#> 1826 NA
#> 1827 NA
#> 1828 NA
#> 1829 NA
#> 1830 NA
#> 1831 NA
#> 1832 NA
#> 1833 NA
#> 1834 NA
#> 1835 NA
#> 1836 NA
#> 1837 NA
#> 1838 NA
#> 1839 NA
#> 1840 NA
#> 1841 NA
#> 1842 NA
#> 1843 NA
#> 1844 NA
#> 1845 NA
#> 1846 NA
#> 1847 NA
#> 1848 NA
#> 1849 NA
#> 1850 NA
#> 1851 NA
#> 1852 NA
#> 1853 NA
#> 1854 NA
#> 1855 NA
#> 1856 NA
#> 1857 NA
#> 1858 NA
#> 1859 NA
#> 1860 NA
#> 1861 NA
#> 1862 NA
#> 1863 NA
#> 1864 NA
#> 1865 NA
#> 1866 NA
#> 1867 NA
#> 1868 NA
#> 1869 NA
#> 1870 NA
#> 1871 NA
#> 1872 NA
#> 1873 NA
#> 1874 NA
#> 1875 NA
#> 1876 NA
#> 1877 NA
#> 1878 NA
#> 1879 NA
#> 1880 NA
#> 1881 NA
#> 1882 NA
#> 1883 NA
#> 1884 NA
#> 1885 NA
#> 1886 NA
#> 1887 NA
#> 1888 NA
#> 1889 NA
#> 1890 11
#> 1891 2
#> 1892 NA
#> 1893 NA
#> 1894 NA
#> 1895 NA
#> 1896 NA
#> 1897 NA
#> 1898 NA
#> 1899 NA
#> 1900 NA
#> 1901 NA
#> 1902 14
#> 1903 3
#> 1904 NA
#> 1905 NA
#> 1906 NA
#> 1907 NA
#> 1908 NA
#> 1909 NA
#> 1910 NA
#> 1911 NA
#> 1912 NA
#> 1913 NA
#> 1914 17
#> 1915 3
#> 1916 NA
#> 1917 NA
#> 1918 NA
#> 1919 NA
#> 1920 NA
#> 1921 NA
#> 1922 NA
#> 1923 NA
#> 1924 NA
#> 1925 NA
#> 1926 NA
#> 1927 NA
#> 1928 NA
#> 1929 NA
#> 1930 NA
#> 1931 NA
#> 1932 NA
#> 1933 NA
#> 1934 NA
#> 1935 NA
#> 1936 NA
#> 1937 NA
#> 1938 NA
#> 1939 NA
#> 1940 NA
#> 1941 NA
#> 1942 NA
#> 1943 NA
#> 1944 NA
#> 1945 NA
#> 1946 NA
#> 1947 NA
#> 1948 NA
#> 1949 NA
#> 1950 NA
#> 1951 NA
#> 1952 NA
#> 1953 NA
#> 1954 NA
#> 1955 NA
#> 1956 NA
#> 1957 NA
#> 1958 NA
#> 1959 NA
#> 1960 NA
#> 1961 NA
#> 1962 NA
#> 1963 NA
#> 1964 NA
#> 1965 NA
#> 1966 NA
#> 1967 NA
#> 1968 NA
#> 1969 NA
#> 1970 NA
#> 1971 NA
#> 1972 NA
#> 1973 NA
#> 1974 NA
#> 1975 NA
#> 1976 NA
#> 1977 NA
#> 1978 NA
#> 1979 NA
#> 1980 NA
#> 1981 NA
#> 1982 NA
#> 1983 NA
#> 1984 NA
#> 1985 NA
#> 1986 NA
#> 1987 NA
#> 1988 NA
#> 1989 NA
#> 1990 NA
#> 1991 NA
#> 1992 NA
#> 1993 NA
#> 1994 NA
#> 1995 NA
#> 1996 NA
#> 1997 NA
#> 1998 NA
#> 1999 NA
#> 2000 NA
#> 2001 NA
#> 2002 NA
#> 2003 NA
#> 2004 NA
#> 2005 NA
#> 2006 NA
#> 2007 NA
#> 2008 NA
#> 2009 NA
#> 2010 807
#> 2011 NA
#> 2012 NA
#> 2013 330
#> 2014 NA
#> 2015 NA
#> 2016 336
#> 2017 NA
#> 2018 NA
#> 2019 275
#> 2020 NA
#> 2021 NA
#> 2022 299
#> 2023 NA
#> 2024 NA
#> 2025 130
#> 2026 NA
#> 2027 NA
#> 2028 45
#> 2029 NA
#> 2030 NA
#> 2031 NA
#> 2032 NA
#> 2033 NA
#> 2034 NA
#> 2035 NA
#> 2036 NA
#> 2037 NA
#> 2038 NA
#> 2039 NA
#> 2040 35
#> 2041 NA
#> 2042 NA
#> 2043 NA
#> 2044 NA
#> 2045 NA
#> 2046 NA
#> 2047 NA
#> 2048 NA
#> 2049 NA
#> 2050 NA
#> 2051 NA
#> 2052 NA
#> 2053 NA
#> 2054 NA
#> 2055 NA
#> 2056 NA
#> 2057 NA
#> 2058 NA
#> 2059 NA
#> 2060 NA
#> 2061 NA
#> 2062 NA
#> 2063 NA
#> 2064 NA
#> 2065 NA
#> 2066 NA
#> 2067 NA
#> 2068 NA
#> 2069 NA
#> 2070 NA
#> 2071 NA
#> 2072 NA
#> 2073 NA
#> 2074 NA
#> 2075 NA
#> 2076 NA
#> 2077 NA
#> 2078 NA
#> 2079 NA
#> 2080 NA
#> 2081 NA
#> 2082 NA
#> 2083 NA
#> 2084 NA
#> 2085 NA
#> 2086 NA
#> 2087 NA
#> 2088 NA
#> 2089 NA
#> 2090 NA
#> 2091 NA
#> 2092 NA
#> 2093 NA
#> 2094 NA
#> 2095 NA
#> 2096 NA
#> 2097 NA
#> 2098 NA
#> 2099 NA
#> 2100 NA
#> 2101 NA
#> 2102 NA
#> 2103 NA
#> 2104 NA
#> 2105 NA
#> 2106 NA
#> 2107 NA
#> 2108 NA
#> 2109 NA
#> 2110 NA
#> 2111 NA
#> 2112 NA
#> 2113 NA
#> 2114 NA
#> 2115 NA
#> 2116 NA
#> 2117 NA
#> 2118 NA
#> 2119 NA
#> 2120 NA
#> 2121 1660
#> 2122 972
#> 2123 NA
#> 2124 NA
#> 2125 NA
#> 2126 NA
#> 2127 NA
#> 2128 1071
#> 2129 NA
#> 2130 692
#> 2131 967
#> 2132 NA
#> 2133 NA
#> 2134 857
#> 2135 NA
#> 2136 NA
#> 2137 NA
#> 2138 NA
#> 2139 NA
#> 2140 791
#> 2141 NA
#> 2142 NA
#> 2143 1114
#> 2144 NA
#> 2145 NA
#> 2146 952
#> 2147 NA
#> 2148 NA
#> 2149 NA
#> 2150 NA
#> 2151 NA
#> 2152 895
#> 2153 NA
#> 2154 NA
#> 2155 888
#> 2156 NA
#> 2157 NA
#> 2158 691
#> 2159 NA
#> 2160 NA
#> 2161 2366
#> 2162 2314
#> 2163 2425
#> 2164 2339
#> 2165 2354
#> 2166 2350
#> 2167 2361
#> 2168 2398
#> 2169 2396
#> 2170 2050
#> 2171 2426
#> 2172 2158
#> 2173 2451
#> 2174 2279
#> 2175 2391
#> 2176 2353
#> 2177 2358
#> 2178 2349
#> 2179 2311
#> 2180 2440
#> 2181 2407
#> 2182 2126
#> 2183 2360
#> 2184 2053
#> 2185 2417
#> 2186 2314
#> 2187 2472
#> 2188 2351
#> 2189 2377
#> 2190 2415
#> 2191 2241
#> 2192 2532
#> 2193 2377
#> 2194 2242
#> 2195 2254
#> 2196 2154
#> 2197 2374
#> 2198 2271
#> 2199 2387
#> 2200 2273
#> 2201 2388
#> 2202 2350
#> 2203 2302
#> 2204 2356
#> 2205 2427
#> 2206 2128
#> 2207 2296
#> 2208 1950
#> 2209 1389
#> 2210 1002
#> 2211 1637
#> 2212 1861
#> 2213 2149
#> 2214 2148
#> 2215 2187
#> 2216 2135
#> 2217 1936
#> 2218 1714
#> 2219 1599
#> 2220 1418
#> 2221 2013
#> 2222 2313
#> 2223 2252
#> 2224 2269
#> 2225 2288
#> 2226 2252
#> 2227 2269
#> 2228 2233
#> 2229 2285
#> 2230 1841
#> 2231 2041
#> 2232 1916
#> 2233 2095
#> 2234 2278
#> 2235 2170
#> 2236 2063
#> 2237 2127
#> 2238 2011
#> 2239 2131
#> 2240 2118
#> 2241 2068
#> 2242 1965
#> 2243 2177
#> 2244 1902
#> 2245 2086
#> 2246 2058
#> 2247 2136
#> 2248 1681
#> 2249 2555
#> 2250 1962
#> 2251 2122
#> 2252 2234
#> 2253 2102
#> 2254 1841
#> 2255 2115
#> 2256 2030
#> 2257 1903
#> 2258 2044
#> 2259 2067
#> 2260 2116
#> 2261 2054
#> 2262 2059
#> 2263 1983
#> 2264 2253
#> 2265 1904
#> 2266 1780
#> 2267 2155
#> 2268 2041
#> 2269 2006
#> 2270 2095
#> 2271 1902
#> 2272 2029
#> 2273 2005
#> 2274 2180
#> 2275 1992
#> 2276 2228
#> 2277 2072
#> 2278 1960
#> 2279 2017
#> 2280 1763
#> 2281 265
#> 2282 308
#> 2283 85
#> 2284 358
#> 2285 261
#> 2286 75
#> 2287 379
#> 2288 246
#> 2289 105
#> 2290 405
#> 2291 142
#> 2292 113
#> 2293 234
#> 2294 374
#> 2295 136
#> 2296 391
#> 2297 125
#> 2298 80
#> 2299 538
#> 2300 175
#> 2301 101
#> 2302 455
#> 2303 130
#> 2304 120
#> 2305 377
#> 2306 281
#> 2307 129
#> 2308 445
#> 2309 138
#> 2310 85
#> 2311 557
#> 2312 152
#> 2313 115
#> 2314 257
#> 2315 323
#> 2316 126
#> 2317 361
#> 2318 283
#> 2319 88
#> 2320 492
#> 2321 128
#> 2322 111
#> 2323 523
#> 2324 195
#> 2325 142
#> 2326 436
#> 2327 129
#> 2328 133
#> 2329 225
#> 2330 258
#> 2331 150
#> 2332 414
#> 2333 149
#> 2334 148
#> 2335 298
#> 2336 350
#> 2337 125
#> 2338 435
#> 2339 162
#> 2340 123
#> 2341 415
#> 2342 146
#> 2343 148
#> 2344 421
#> 2345 225
#> 2346 100
#> 2347 349
#> 2348 354
#> 2349 108
#> 2350 509
#> 2351 156
#> 2352 143
#> 2353 504
#> 2354 194
#> 2355 112
#> 2356 326
#> 2357 390
#> 2358 93
#> 2359 341
#> 2360 377
#> 2361 109
#> 2362 566
#> 2363 145
#> 2364 146
#> 2365 554
#> 2366 174
#> 2367 139
#> 2368 539
#> 2369 145
#> 2370 126
#> 2371 572
#> 2372 160
#> 2373 127
#> 2374 586
#> 2375 136
#> 2376 132
#> 2377 624
#> 2378 136
#> 2379 124
#> 2380 629
#> 2381 119
#> 2382 147
#> 2383 622
#> 2384 146
#> 2385 151
#> 2386 640
#> 2387 149
#> 2388 128
#> 2389 644
#> 2390 178
#> 2391 160
#> 2392 642
#> 2393 162
#> 2394 140
#> 2395 612
#> 2396 189
#> 2397 133
#> 2398 643
#> 2399 177
#> 2400 151
#> 2401 16126
#> 2402 11943
#> 2403 11479
#> 2404 19820
#> 2405 13567
#> 2406 10893
#> 2407 11767
#> 2408 11465
#> 2409 12150
#> 2410 26557
#> 2411 17227
#> 2412 14071
#> 2413 16222
#> 2414 12237
#> 2415 11941
#> 2416 20389
#> 2417 12888
#> 2418 11403
#> 2419 12551
#> 2420 11969
#> 2421 12573
#> 2422 26080
#> 2423 16963
#> 2424 14833
#> 2425 17054
#> 2426 13038
#> 2427 12338
#> 2428 22141
#> 2429 13771
#> 2430 12051
#> 2431 13258
#> 2432 13033
#> 2433 13626
#> 2434 28479
#> 2435 17197
#> 2436 15043
#> 2437 18577
#> 2438 13235
#> 2439 12910
#> 2440 22706
#> 2441 14129
#> 2442 12396
#> 2443 12793
#> 2444 12219
#> 2445 13534
#> 2446 29327
#> 2447 17134
#> 2448 14282
#> 2449 14474
#> 2450 11001
#> 2451 12556
#> 2452 18107
#> 2453 14675
#> 2454 13339
#> 2455 13272
#> 2456 14140
#> 2457 15381
#> 2458 30780
#> 2459 19273
#> 2460 16743
#> 2461 18628
#> 2462 15258
#> 2463 15063
#> 2464 22699
#> 2465 16206
#> 2466 15044
#> 2467 14500
#> 2468 15278
#> 2469 16578
#> 2470 32371
#> 2471 19889
#> 2472 19097
#> 2473 22905
#> 2474 16414
#> 2475 16149
#> 2476 25381
#> 2477 18371
#> 2478 15915
#> 2479 16436
#> 2480 16846
#> 2481 18765
#> 2482 39802
#> 2483 21015
#> 2484 20360
#> 2485 24802
#> 2486 19528
#> 2487 18117
#> 2488 29823
#> 2489 19952
#> 2490 17699
#> 2491 18798
#> 2492 19178
#> 2493 19774
#> 2494 42276
#> 2495 23468
#> 2496 21842
#> 2497 27554
#> 2498 20207
#> 2499 20220
#> 2500 33465
#> 2501 20942
#> 2502 19386
#> 2503 19882
#> 2504 20515
#> 2505 22537
#> 2506 49304
#> 2507 25224
#> 2508 23560
#> 2509 29900
#> 2510 21288
#> 2511 21134
#> 2512 37873
#> 2513 21859
#> 2514 22134
#> 2515 21694
#> 2516 21785
#> 2517 25332
#> 2518 53126
#> 2519 28310
#> 2520 25611
#> 2521 417
#> 2522 391
#> 2523 432
#> 2524 381
#> 2525 386
#> 2526 402
#> 2527 412
#> 2528 400
#> 2529 368
#> 2530 385
#> 2531 367
#> 2532 482
#> 2533 531
#> 2534 555
#> 2535 439
#> 2536 427
#> 2537 426
#> 2538 423
#> 2539 442
#> 2540 444
#> 2541 387
#> 2542 376
#> 2543 372
#> 2544 382
#> 2545 425
#> 2546 487
#> 2547 507
#> 2548 465
#> 2549 473
#> 2550 441
#> 2551 460
#> 2552 437
#> 2553 396
#> 2554 370
#> 2555 372
#> 2556 527
#> 2557 456
#> 2558 393
#> 2559 357
#> 2560 438
#> 2561 405
#> 2562 432
#> 2563 489
#> 2564 404
#> 2565 478
#> 2566 417
#> 2567 407
#> 2568 446
#> 2569 307
#> 2570 319
#> 2571 508
#> 2572 432
#> 2573 402
#> 2574 465
#> 2575 570
#> 2576 493
#> 2577 462
#> 2578 378
#> 2579 442
#> 2580 549
#> 2581 497
#> 2582 469
#> 2583 539
#> 2584 571
#> 2585 576
#> 2586 488
#> 2587 466
#> 2588 500
#> 2589 474
#> 2590 443
#> 2591 448
#> 2592 585
#> 2593 507
#> 2594 564
#> 2595 726
#> 2596 570
#> 2597 576
#> 2598 557
#> 2599 580
#> 2600 673
#> 2601 545
#> 2602 578
#> 2603 531
#> 2604 679
#> 2605 597
#> 2606 609
#> 2607 795
#> 2608 603
#> 2609 644
#> 2610 623
#> 2611 691
#> 2612 594
#> 2613 547
#> 2614 556
#> 2615 564
#> 2616 676
#> 2617 683
#> 2618 701
#> 2619 701
#> 2620 749
#> 2621 697
#> 2622 736
#> 2623 776
#> 2624 665
#> 2625 620
#> 2626 639
#> 2627 612
#> 2628 671
#> 2629 780
#> 2630 701
#> 2631 738
#> 2632 844
#> 2633 658
#> 2634 671
#> 2635 811
#> 2636 588
#> 2637 769
#> 2638 537
#> 2639 614
#> 2640 755
#> 2641 239
#> 2642 883
#> 2643 36
#> 2644 326
#> 2645 899
#> 2646 31
#> 2647 307
#> 2648 869
#> 2649 32
#> 2650 361
#> 2651 826
#> 2652 54
#> 2653 62
#> 2654 1057
#> 2655 83
#> 2656 297
#> 2657 1123
#> 2658 42
#> 2659 289
#> 2660 1175
#> 2661 12
#> 2662 269
#> 2663 1167
#> 2664 94
#> 2665 162
#> 2666 1255
#> 2667 13
#> 2668 339
#> 2669 1346
#> 2670 13
#> 2671 197
#> 2672 1341
#> 2673 6
#> 2674 203
#> 2675 1301
#> 2676 21
#> 2677 322
#> 2678 1196
#> 2679 20
#> 2680 376
#> 2681 1260
#> 2682 46
#> 2683 257
#> 2684 1311
#> 2685 43
#> 2686 247
#> 2687 1297
#> 2688 41
#> 2689 249
#> 2690 1218
#> 2691 135
#> 2692 369
#> 2693 1157
#> 2694 45
#> 2695 360
#> 2696 1212
#> 2697 19
#> 2698 218
#> 2699 1311
#> 2700 16
#> 2701 335
#> 2702 1251
#> 2703 16
#> 2704 453
#> 2705 1216
#> 2706 31
#> 2707 208
#> 2708 1463
#> 2709 66
#> 2710 313
#> 2711 1257
#> 2712 18
#> 2713 335
#> 2714 1386
#> 2715 46
#> 2716 413
#> 2717 1346
#> 2718 98
#> 2719 316
#> 2720 1508
#> 2721 24
#> 2722 474
#> 2723 1327
#> 2724 69
#> 2725 548
#> 2726 1270
#> 2727 62
#> 2728 884
#> 2729 1159
#> 2730 71
#> 2731 770
#> 2732 1263
#> 2733 76
#> 2734 439
#> 2735 1526
#> 2736 77
#> 2737 615
#> 2738 1431
#> 2739 69
#> 2740 957
#> 2741 1352
#> 2742 73
#> 2743 956
#> 2744 1201
#> 2745 53
#> 2746 853
#> 2747 1259
#> 2748 61
#> 2749 648
#> 2750 1481
#> 2751 41
#> 2752 1025
#> 2753 1301
#> 2754 40
#> 2755 985
#> 2756 1258
#> 2757 43
#> 2758 872
#> 2759 1255
#> 2760 88
#> 2761 144
#> 2762 46
#> 2763 9
#> 2764 173
#> 2765 51
#> 2766 9
#> 2767 225
#> 2768 52
#> 2769 6
#> 2770 85
#> 2771 59
#> 2772 16
#> 2773 73
#> 2774 58
#> 2775 37
#> 2776 94
#> 2777 68
#> 2778 60
#> 2779 77
#> 2780 75
#> 2781 41
#> 2782 73
#> 2783 57
#> 2784 45
#> 2785 41
#> 2786 81
#> 2787 34
#> 2788 73
#> 2789 68
#> 2790 52
#> 2791 20
#> 2792 113
#> 2793 49
#> 2794 48
#> 2795 69
#> 2796 35
#> 2797 35
#> 2798 71
#> 2799 38
#> 2800 87
#> 2801 38
#> 2802 45
#> 2803 71
#> 2804 56
#> 2805 58
#> 2806 56
#> 2807 51
#> 2808 34
#> 2809 38
#> 2810 53
#> 2811 9
#> 2812 60
#> 2813 64
#> 2814 17
#> 2815 66
#> 2816 85
#> 2817 23
#> 2818 67
#> 2819 70
#> 2820 15
#> 2821 48
#> 2822 69
#> 2823 17
#> 2824 47
#> 2825 90
#> 2826 19
#> 2827 19
#> 2828 125
#> 2829 19
#> 2830 53
#> 2831 86
#> 2832 75
#> 2833 36
#> 2834 103
#> 2835 11
#> 2836 74
#> 2837 57
#> 2838 38
#> 2839 78
#> 2840 73
#> 2841 15
#> 2842 68
#> 2843 52
#> 2844 22
#> 2845 70
#> 2846 31
#> 2847 17
#> 2848 77
#> 2849 34
#> 2850 21
#> 2851 86
#> 2852 39
#> 2853 12
#> 2854 46
#> 2855 37
#> 2856 19
#> 2857 49
#> 2858 27
#> 2859 22
#> 2860 75
#> 2861 56
#> 2862 13
#> 2863 87
#> 2864 44
#> 2865 15
#> 2866 50
#> 2867 35
#> 2868 15
#> 2869 65
#> 2870 26
#> 2871 16
#> 2872 73
#> 2873 68
#> 2874 22
#> 2875 91
#> 2876 58
#> 2877 14
#> 2878 142
#> 2879 23
#> 2880 25
#> 2881 NA
#> 2882 NA
#> 2883 NA
#> 2884 NA
#> 2885 NA
#> 2886 NA
#> 2887 NA
#> 2888 NA
#> 2889 NA
#> 2890 NA
#> 2891 NA
#> 2892 NA
#> 2893 NA
#> 2894 NA
#> 2895 NA
#> 2896 NA
#> 2897 NA
#> 2898 NA
#> 2899 NA
#> 2900 NA
#> 2901 NA
#> 2902 NA
#> 2903 NA
#> 2904 NA
#> 2905 NA
#> 2906 NA
#> 2907 NA
#> 2908 NA
#> 2909 NA
#> 2910 NA
#> 2911 NA
#> 2912 NA
#> 2913 NA
#> 2914 NA
#> 2915 NA
#> 2916 NA
#> 2917 NA
#> 2918 NA
#> 2919 NA
#> 2920 NA
#> 2921 NA
#> 2922 NA
#> 2923 NA
#> 2924 NA
#> 2925 NA
#> 2926 NA
#> 2927 NA
#> 2928 NA
#> 2929 NA
#> 2930 NA
#> 2931 NA
#> 2932 NA
#> 2933 NA
#> 2934 NA
#> 2935 NA
#> 2936 NA
#> 2937 NA
#> 2938 NA
#> 2939 NA
#> 2940 NA
#> 2941 NA
#> 2942 NA
#> 2943 NA
#> 2944 NA
#> 2945 NA
#> 2946 NA
#> 2947 NA
#> 2948 NA
#> 2949 NA
#> 2950 NA
#> 2951 NA
#> 2952 NA
#> 2953 NA
#> 2954 NA
#> 2955 NA
#> 2956 NA
#> 2957 NA
#> 2958 NA
#> 2959 NA
#> 2960 NA
#> 2961 NA
#> 2962 NA
#> 2963 NA
#> 2964 NA
#> 2965 NA
#> 2966 NA
#> 2967 NA
#> 2968 NA
#> 2969 NA
#> 2970 NA
#> 2971 NA
#> 2972 NA
#> 2973 NA
#> 2974 NA
#> 2975 NA
#> 2976 NA
#> 2977 NA
#> 2978 NA
#> 2979 NA
#> 2980 NA
#> 2981 NA
#> 2982 NA
#> 2983 NA
#> 2984 NA
#> 2985 NA
#> 2986 NA
#> 2987 NA
#> 2988 NA
#> 2989 NA
#> 2990 NA
#> 2991 NA
#> 2992 NA
#> 2993 NA
#> 2994 NA
#> 2995 NA
#> 2996 NA
#> 2997 NA
#> 2998 NA
#> 2999 NA
#> 3000 NA
#> 3001 4007
#> 3002 4031
#> 3003 4037
#> 3004 4021
#> 3005 4119
#> 3006 3973
#> 3007 4023
#> 3008 4076
#> 3009 3986
#> 3010 4153
#> 3011 4194
#> 3012 4133
#> 3013 4281
#> 3014 4339
#> 3015 4193
#> 3016 4724
#> 3017 3931
#> 3018 4204
#> 3019 4283
#> 3020 4369
#> 3021 4223
#> 3022 4503
#> 3023 4239
#> 3024 4289
#> 3025 4519
#> 3026 4485
#> 3027 4336
#> 3028 4487
#> 3029 4463
#> 3030 4377
#> 3031 4554
#> 3032 4409
#> 3033 4436
#> 3034 4666
#> 3035 4458
#> 3036 4511
#> 3037 4877
#> 3038 4682
#> 3039 4606
#> 3040 4855
#> 3041 4666
#> 3042 4652
#> 3043 4822
#> 3044 4643
#> 3045 4738
#> 3046 4916
#> 3047 4742
#> 3048 4419
#> 3049 4139
#> 3050 4007
#> 3051 4634
#> 3052 4927
#> 3053 4597
#> 3054 4753
#> 3055 4660
#> 3056 4731
#> 3057 4865
#> 3058 4722
#> 3059 4754
#> 3060 4801
#> 3061 4867
#> 3062 4760
#> 3063 4976
#> 3064 4948
#> 3065 4886
#> 3066 5022
#> 3067 4980
#> 3068 5108
#> 3069 5078
#> 3070 5112
#> 3071 5257
#> 3072 5215
#> 3073 5478
#> 3074 5884
#> 3075 5908
#> 3076 5952
#> 3077 5444
#> 3078 5294
#> 3079 5495
#> 3080 5558
#> 3081 4956
#> 3082 5043
#> 3083 5011
#> 3084 5025
#> 3085 5425
#> 3086 5188
#> 3087 5130
#> 3088 5407
#> 3089 5312
#> 3090 5146
#> 3091 5281
#> 3092 5301
#> 3093 5263
#> 3094 5672
#> 3095 4544
#> 3096 4568
#> 3097 5091
#> 3098 3779
#> 3099 3783
#> 3100 3976
#> 3101 3778
#> 3102 3758
#> 3103 3915
#> 3104 3912
#> 3105 3975
#> 3106 4148
#> 3107 3955
#> 3108 3988
#> 3109 4482
#> 3110 3899
#> 3111 3915
#> 3112 4196
#> 3113 3983
#> 3114 4150
#> 3115 4088
#> 3116 4000
#> 3117 4124
#> 3118 4226
#> 3119 4153
#> 3120 4186
#> 3121 6422
#> 3122 5043
#> 3123 5405
#> 3124 6456
#> 3125 5590
#> 3126 5352
#> 3127 5474
#> 3128 5545
#> 3129 5432
#> 3130 5954
#> 3131 5821
#> 3132 6244
#> 3133 7133
#> 3134 5373
#> 3135 5670
#> 3136 6391
#> 3137 6216
#> 3138 5638
#> 3139 5869
#> 3140 5767
#> 3141 5807
#> 3142 6313
#> 3143 6029
#> 3144 6336
#> 3145 7604
#> 3146 5563
#> 3147 5855
#> 3148 7198
#> 3149 6080
#> 3150 5916
#> 3151 6182
#> 3152 6027
#> 3153 6006
#> 3154 6618
#> 3155 6358
#> 3156 6691
#> 3157 8011
#> 3158 5778
#> 3159 6167
#> 3160 7627
#> 3161 6265
#> 3162 6186
#> 3163 6476
#> 3164 6212
#> 3165 6368
#> 3166 6797
#> 3167 6757
#> 3168 6462
#> 3169 6702
#> 3170 5193
#> 3171 6378
#> 3172 7982
#> 3173 6451
#> 3174 6589
#> 3175 6547
#> 3176 6599
#> 3177 6815
#> 3178 6973
#> 3179 7129
#> 3180 7440
#> 3181 8150
#> 3182 6456
#> 3183 7083
#> 3184 8000
#> 3185 6990
#> 3186 7102
#> 3187 7076
#> 3188 7231
#> 3189 7202
#> 3190 7724
#> 3191 8128
#> 3192 8371
#> 3193 9750
#> 3194 7713
#> 3195 8149
#> 3196 9170
#> 3197 8646
#> 3198 8245
#> 3199 8604
#> 3200 8706
#> 3201 8134
#> 3202 8645
#> 3203 8702
#> 3204 9138
#> 3205 10827
#> 3206 8414
#> 3207 8301
#> 3208 9850
#> 3209 8685
#> 3210 8371
#> 3211 8635
#> 3212 8604
#> 3213 8429
#> 3214 9608
#> 3215 9159
#> 3216 9619
#> 3217 11756
#> 3218 8738
#> 3219 8848
#> 3220 10404
#> 3221 8980
#> 3222 8895
#> 3223 9170
#> 3224 9200
#> 3225 9493
#> 3226 10182
#> 3227 9880
#> 3228 10522
#> 3229 12665
#> 3230 10664
#> 3231 10954
#> 3232 12852
#> 3233 11400
#> 3234 11853
#> 3235 11638
#> 3236 11638
#> 3237 11940
#> 3238 12599
#> 3239 12597
#> 3240 13104
#> 3241 -10
#> 3242 -16
#> 3243 -2
#> 3244 680
#> 3245 141
#> 3246 13
#> 3247 3
#> 3248 4
#> 3249 91
#> 3250 1635
#> 3251 571
#> 3252 73
#> 3253 -12
#> 3254 -22
#> 3255 16
#> 3256 913
#> 3257 153
#> 3258 16
#> 3259 9
#> 3260 11
#> 3261 126
#> 3262 1724
#> 3263 577
#> 3264 82
#> 3265 -6
#> 3266 -9
#> 3267 20
#> 3268 830
#> 3269 123
#> 3270 21
#> 3271 14
#> 3272 12
#> 3273 127
#> 3274 1614
#> 3275 437
#> 3276 61
#> 3277 -17
#> 3278 -23
#> 3279 15
#> 3280 881
#> 3281 160
#> 3282 28
#> 3283 11
#> 3284 22
#> 3285 133
#> 3286 1750
#> 3287 416
#> 3288 68
#> 3289 -84
#> 3290 -24
#> 3291 12
#> 3292 529
#> 3293 207
#> 3294 41
#> 3295 41
#> 3296 78
#> 3297 272
#> 3298 2390
#> 3299 330
#> 3300 86
#> 3301 31
#> 3302 33
#> 3303 81
#> 3304 900
#> 3305 234
#> 3306 74
#> 3307 39
#> 3308 64
#> 3309 253
#> 3310 2108
#> 3311 390
#> 3312 177
#> 3313 31
#> 3314 16
#> 3315 76
#> 3316 865
#> 3317 215
#> 3318 61
#> 3319 44
#> 3320 64
#> 3321 220
#> 3322 2351
#> 3323 329
#> 3324 79
#> 3325 -20
#> 3326 -3
#> 3327 72
#> 3328 1143
#> 3329 147
#> 3330 14
#> 3331 29
#> 3332 54
#> 3333 169
#> 3334 2407
#> 3335 410
#> 3336 81
#> 3337 -27
#> 3338 -4
#> 3339 50
#> 3340 909
#> 3341 107
#> 3342 32
#> 3343 31
#> 3344 42
#> 3345 174
#> 3346 2168
#> 3347 272
#> 3348 50
#> 3349 -24
#> 3350 3
#> 3351 38
#> 3352 679
#> 3353 57
#> 3354 22
#> 3355 20
#> 3356 26
#> 3357 134
#> 3358 1331
#> 3359 203
#> 3360 25
#> 3361 10707
#> 3362 9352
#> 3363 9890
#> 3364 11474
#> 3365 10140
#> 3366 9589
#> 3367 10070
#> 3368 9935
#> 3369 9759
#> 3370 11985
#> 3371 10838
#> 3372 10729
#> 3373 11721
#> 3374 9946
#> 3375 10147
#> 3376 12267
#> 3377 10549
#> 3378 10083
#> 3379 10575
#> 3380 10358
#> 3381 10400
#> 3382 12790
#> 3383 11151
#> 3384 10943
#> 3385 12379
#> 3386 10321
#> 3387 10488
#> 3388 12748
#> 3389 10947
#> 3390 10591
#> 3391 11191
#> 3392 10924
#> 3393 10906
#> 3394 13196
#> 3395 11570
#> 3396 11589
#> 3397 13210
#> 3398 10765
#> 3399 11078
#> 3400 13641
#> 3401 11379
#> 3402 11198
#> 3403 11619
#> 3404 11147
#> 3405 11523
#> 3406 13764
#> 3407 12237
#> 3408 11309
#> 3409 11049
#> 3410 9425
#> 3411 11288
#> 3412 13703
#> 3413 11513
#> 3414 11635
#> 3415 11524
#> 3416 11675
#> 3417 12214
#> 3418 14347
#> 3419 12471
#> 3420 12616
#> 3421 13382
#> 3422 11566
#> 3423 12537
#> 3424 14050
#> 3425 12418
#> 3426 12591
#> 3427 12438
#> 3428 12772
#> 3429 12836
#> 3430 15275
#> 3431 14110
#> 3432 14068
#> 3433 15651
#> 3434 13976
#> 3435 14509
#> 3436 16356
#> 3437 14653
#> 3438 13969
#> 3439 14524
#> 3440 14643
#> 3441 13622
#> 3442 16487
#> 3443 14370
#> 3444 14685
#> 3445 16564
#> 3446 13948
#> 3447 13852
#> 3448 16708
#> 3449 14422
#> 3450 13808
#> 3451 14396
#> 3452 14315
#> 3453 14167
#> 3454 18022
#> 3455 14412
#> 3456 14575
#> 3457 17178
#> 3458 12856
#> 3459 12988
#> 3460 15607
#> 3461 13189
#> 3462 13031
#> 3463 13542
#> 3464 13496
#> 3465 14011
#> 3466 16920
#> 3467 14563
#> 3468 15137
#> 3469 17560
#> 3470 14930
#> 3471 15299
#> 3472 18097
#> 3473 15795
#> 3474 16387
#> 3475 16169
#> 3476 16066
#> 3477 16758
#> 3478 18549
#> 3479 17302
#> 3480 17687
#> 3481 68
#> 3482 45
#> 3483 91
#> 3484 88
#> 3485 63
#> 3486 54
#> 3487 65
#> 3488 70
#> 3489 77
#> 3490 57
#> 3491 46
#> 3492 45
#> 3493 59
#> 3494 48
#> 3495 76
#> 3496 62
#> 3497 60
#> 3498 51
#> 3499 68
#> 3500 55
#> 3501 51
#> 3502 42
#> 3503 61
#> 3504 65
#> 3505 33
#> 3506 53
#> 3507 47
#> 3508 91
#> 3509 91
#> 3510 69
#> 3511 73
#> 3512 64
#> 3513 49
#> 3514 58
#> 3515 68
#> 3516 57
#> 3517 29
#> 3518 112
#> 3519 60
#> 3520 68
#> 3521 70
#> 3522 45
#> 3523 38
#> 3524 56
#> 3525 33
#> 3526 60
#> 3527 52
#> 3528 30
#> 3529 30
#> 3530 21
#> 3531 48
#> 3532 31
#> 3533 31
#> 3534 34
#> 3535 35
#> 3536 41
#> 3537 36
#> 3538 38
#> 3539 54
#> 3540 48
#> 3541 39
#> 3542 25
#> 3543 43
#> 3544 34
#> 3545 59
#> 3546 46
#> 3547 69
#> 3548 53
#> 3549 51
#> 3550 45
#> 3551 52
#> 3552 70
#> 3553 55
#> 3554 60
#> 3555 51
#> 3556 48
#> 3557 84
#> 3558 58
#> 3559 54
#> 3560 63
#> 3561 57
#> 3562 70
#> 3563 89
#> 3564 73
#> 3565 99
#> 3566 72
#> 3567 111
#> 3568 92
#> 3569 146
#> 3570 88
#> 3571 96
#> 3572 66
#> 3573 74
#> 3574 100
#> 3575 123
#> 3576 102
#> 3577 79
#> 3578 60
#> 3579 63
#> 3580 71
#> 3581 86
#> 3582 51
#> 3583 56
#> 3584 60
#> 3585 52
#> 3586 74
#> 3587 76
#> 3588 99
#> 3589 82
#> 3590 70
#> 3591 83
#> 3592 65
#> 3593 85
#> 3594 67
#> 3595 76
#> 3596 60
#> 3597 72
#> 3598 81
#> 3599 92
#> 3600 163
#> 3601 -15
#> 3602 0
#> 3603 0
#> 3604 -259
#> 3605 -95
#> 3606 0
#> 3607 0
#> 3608 -4
#> 3609 -7
#> 3610 -141
#> 3611 -109
#> 3612 -23
#> 3613 -1
#> 3614 -8
#> 3615 -85
#> 3616 -200
#> 3617 -24
#> 3618 0
#> 3619 0
#> 3620 9
#> 3621 -52
#> 3622 -140
#> 3623 -67
#> 3624 0
#> 3625 -13
#> 3626 0
#> 3627 -67
#> 3628 -138
#> 3629 -62
#> 3630 -6
#> 3631 0
#> 3632 0
#> 3633 -324
#> 3634 -125
#> 3635 4
#> 3636 -13
#> 3637 0
#> 3638 0
#> 3639 0
#> 3640 -137
#> 3641 -26
#> 3642 -7
#> 3643 -1
#> 3644 -14
#> 3645 0
#> 3646 -162
#> 3647 -28
#> 3648 -34
#> 3649 0
#> 3650 -3
#> 3651 -1
#> 3652 -60
#> 3653 -72
#> 3654 -8
#> 3655 0
#> 3656 -63
#> 3657 0
#> 3658 -1
#> 3659 -30
#> 3660 -3
#> 3661 -66
#> 3662 -46
#> 3663 -18
#> 3664 -13
#> 3665 -53
#> 3666 -27
#> 3667 -103
#> 3668 0
#> 3669 0
#> 3670 -53
#> 3671 -96
#> 3672 -77
#> 3673 -29
#> 3674 -8
#> 3675 -4
#> 3676 -18
#> 3677 -104
#> 3678 -2
#> 3679 0
#> 3680 0
#> 3681 0
#> 3682 -26
#> 3683 -41
#> 3684 -2
#> 3685 -20
#> 3686 0
#> 3687 0
#> 3688 0
#> 3689 -118
#> 3690 -119
#> 3691 -3
#> 3692 -3
#> 3693 0
#> 3694 -153
#> 3695 -11
#> 3696 0
#> 3697 0
#> 3698 0
#> 3699 0
#> 3700 -132
#> 3701 -44
#> 3702 0
#> 3703 0
#> 3704 0
#> 3705 0
#> 3706 -62
#> 3707 -112
#> 3708 0
#> 3709 0
#> 3710 0
#> 3711 0
#> 3712 -282
#> 3713 0
#> 3714 0
#> 3715 0
#> 3716 0
#> 3717 0
#> 3718 0
#> 3719 0
#> 3720 -177
#> 3721 NA
#> 3722 NA
#> 3723 NA
#> 3724 NA
#> 3725 NA
#> 3726 NA
#> 3727 NA
#> 3728 NA
#> 3729 NA
#> 3730 NA
#> 3731 NA
#> 3732 NA
#> 3733 NA
#> 3734 NA
#> 3735 NA
#> 3736 NA
#> 3737 NA
#> 3738 NA
#> 3739 NA
#> 3740 NA
#> 3741 NA
#> 3742 NA
#> 3743 NA
#> 3744 NA
#> 3745 NA
#> 3746 NA
#> 3747 NA
#> 3748 NA
#> 3749 NA
#> 3750 NA
#> 3751 NA
#> 3752 NA
#> 3753 NA
#> 3754 NA
#> 3755 NA
#> 3756 NA
#> 3757 NA
#> 3758 NA
#> 3759 NA
#> 3760 NA
#> 3761 NA
#> 3762 NA
#> 3763 NA
#> 3764 NA
#> 3765 NA
#> 3766 NA
#> 3767 NA
#> 3768 NA
#> 3769 NA
#> 3770 NA
#> 3771 NA
#> 3772 NA
#> 3773 NA
#> 3774 NA
#> 3775 NA
#> 3776 NA
#> 3777 NA
#> 3778 NA
#> 3779 NA
#> 3780 NA
#> 3781 NA
#> 3782 NA
#> 3783 NA
#> 3784 NA
#> 3785 NA
#> 3786 NA
#> 3787 NA
#> 3788 NA
#> 3789 NA
#> 3790 NA
#> 3791 NA
#> 3792 NA
#> 3793 NA
#> 3794 NA
#> 3795 NA
#> 3796 58
#> 3797 9
#> 3798 2
#> 3799 59
#> 3800 6
#> 3801 2
#> 3802 53
#> 3803 9
#> 3804 2
#> 3805 54
#> 3806 8
#> 3807 5
#> 3808 59
#> 3809 6
#> 3810 1
#> 3811 59
#> 3812 6
#> 3813 3
#> 3814 62
#> 3815 6
#> 3816 2
#> 3817 55
#> 3818 6
#> 3819 0
#> 3820 60
#> 3821 4
#> 3822 0
#> 3823 59
#> 3824 5
#> 3825 1
#> 3826 58
#> 3827 4
#> 3828 1
#> 3829 58
#> 3830 7
#> 3831 -1
#> 3832 63
#> 3833 6
#> 3834 1
#> 3835 60
#> 3836 3
#> 3837 4
#> 3838 56
#> 3839 3
#> 3840 2
#> 3841 NA
#> 3842 NA
#> 3843 NA
#> 3844 NA
#> 3845 NA
#> 3846 NA
#> 3847 NA
#> 3848 NA
#> 3849 NA
#> 3850 NA
#> 3851 NA
#> 3852 NA
#> 3853 NA
#> 3854 NA
#> 3855 NA
#> 3856 NA
#> 3857 NA
#> 3858 NA
#> 3859 NA
#> 3860 NA
#> 3861 NA
#> 3862 NA
#> 3863 NA
#> 3864 NA
#> 3865 NA
#> 3866 NA
#> 3867 NA
#> 3868 NA
#> 3869 NA
#> 3870 NA
#> 3871 NA
#> 3872 NA
#> 3873 NA
#> 3874 NA
#> 3875 NA
#> 3876 NA
#> 3877 NA
#> 3878 NA
#> 3879 NA
#> 3880 NA
#> 3881 NA
#> 3882 NA
#> 3883 NA
#> 3884 NA
#> 3885 NA
#> 3886 NA
#> 3887 NA
#> 3888 NA
#> 3889 NA
#> 3890 NA
#> 3891 NA
#> 3892 NA
#> 3893 NA
#> 3894 NA
#> 3895 NA
#> 3896 NA
#> 3897 NA
#> 3898 NA
#> 3899 NA
#> 3900 NA
#> 3901 NA
#> 3902 NA
#> 3903 NA
#> 3904 NA
#> 3905 NA
#> 3906 NA
#> 3907 NA
#> 3908 NA
#> 3909 NA
#> 3910 NA
#> 3911 NA
#> 3912 NA
#> 3913 NA
#> 3914 NA
#> 3915 51
#> 3916 NA
#> 3917 NA
#> 3918 41
#> 3919 NA
#> 3920 NA
#> 3921 33
#> 3922 NA
#> 3923 NA
#> 3924 33
#> 3925 NA
#> 3926 NA
#> 3927 NA
#> 3928 NA
#> 3929 NA
#> 3930 64
#> 3931 NA
#> 3932 NA
#> 3933 NA
#> 3934 NA
#> 3935 NA
#> 3936 39
#> 3937 NA
#> 3938 NA
#> 3939 NA
#> 3940 NA
#> 3941 NA
#> 3942 59
#> 3943 NA
#> 3944 NA
#> 3945 NA
#> 3946 NA
#> 3947 NA
#> 3948 43
#> 3949 NA
#> 3950 NA
#> 3951 NA
#> 3952 NA
#> 3953 NA
#> 3954 43
#> 3955 NA
#> 3956 NA
#> 3957 NA
#> 3958 NA
#> 3959 NA
#> 3960 41
#> 3961 1172
#> 3962 713
#> 3963 816
#> 3964 973
#> 3965 1016
#> 3966 927
#> 3967 1024
#> 3968 1072
#> 3969 1216
#> 3970 935
#> 3971 887
#> 3972 1015
#> 3973 1007
#> 3974 1033
#> 3975 1090
#> 3976 1216
#> 3977 1195
#> 3978 1113
#> 3979 1162
#> 3980 1111
#> 3981 1197
#> 3982 1014
#> 3983 851
#> 3984 917
#> 3985 961
#> 3986 894
#> 3987 938
#> 3988 1121
#> 3989 1155
#> 3990 921
#> 3991 1126
#> 3992 1061
#> 3993 1105
#> 3994 848
#> 3995 881
#> 3996 930
#> 3997 962
#> 3998 831
#> 3999 831
#> 4000 1116
#> 4001 1029
#> 4002 1004
#> 4003 1059
#> 4004 941
#> 4005 1299
#> 4006 777
#> 4007 824
#> 4008 928
#> 4009 548
#> 4010 361
#> 4011 573
#> 4012 656
#> 4013 530
#> 4014 693
#> 4015 751
#> 4016 825
#> 4017 1181
#> 4018 579
#> 4019 775
#> 4020 1196
#> 4021 991
#> 4022 652
#> 4023 1208
#> 4024 1309
#> 4025 910
#> 4026 1283
#> 4027 1323
#> 4028 1209
#> 4029 1737
#> 4030 944
#> 4031 1186
#> 4032 1346
#> 4033 1463
#> 4034 1229
#> 4035 1378
#> 4036 1497
#> 4037 1578
#> 4038 1457
#> 4039 1317
#> 4040 1337
#> 4041 1420
#> 4042 827
#> 4043 846
#> 4044 1010
#> 4045 918
#> 4046 867
#> 4047 955
#> 4048 1076
#> 4049 1125
#> 4050 1015
#> 4051 1119
#> 4052 973
#> 4053 1112
#> 4054 808
#> 4055 781
#> 4056 864
#> 4057 957
#> 4058 1018
#> 4059 1016
#> 4060 1185
#> 4061 1112
#> 4062 1103
#> 4063 1357
#> 4064 1310
#> 4065 1517
#> 4066 848
#> 4067 1051
#> 4068 1408
#> 4069 1306
#> 4070 930
#> 4071 1055
#> 4072 1422
#> 4073 1314
#> 4074 1454
#> 4075 1531
#> 4076 1371
#> 4077 1725
#> 4078 899
#> 4079 995
#> 4080 1157
#> 4081 NA
#> 4082 NA
#> 4083 NA
#> 4084 NA
#> 4085 NA
#> 4086 NA
#> 4087 NA
#> 4088 NA
#> 4089 NA
#> 4090 NA
#> 4091 NA
#> 4092 NA
#> 4093 NA
#> 4094 NA
#> 4095 NA
#> 4096 NA
#> 4097 NA
#> 4098 NA
#> 4099 NA
#> 4100 NA
#> 4101 NA
#> 4102 NA
#> 4103 NA
#> 4104 NA
#> 4105 NA
#> 4106 NA
#> 4107 NA
#> 4108 61
#> 4109 1
#> 4110 0
#> 4111 92
#> 4112 1
#> 4113 0
#> 4114 84
#> 4115 1
#> 4116 0
#> 4117 77
#> 4118 1
#> 4119 0
#> 4120 84
#> 4121 1
#> 4122 0
#> 4123 88
#> 4124 1
#> 4125 1
#> 4126 83
#> 4127 1
#> 4128 1
#> 4129 30
#> 4130 0
#> 4131 45
#> 4132 66
#> 4133 1
#> 4134 0
#> 4135 82
#> 4136 1
#> 4137 0
#> 4138 72
#> 4139 1
#> 4140 0
#> 4141 66
#> 4142 1
#> 4143 0
#> 4144 86
#> 4145 0
#> 4146 0
#> 4147 91
#> 4148 0
#> 4149 0
#> 4150 88
#> 4151 1
#> 4152 0
#> 4153 80
#> 4154 0
#> 4155 0
#> 4156 92
#> 4157 1
#> 4158 0
#> 4159 94
#> 4160 1
#> 4161 0
#> 4162 85
#> 4163 0
#> 4164 1
#> 4165 83
#> 4166 -1
#> 4167 0
#> 4168 88
#> 4169 1
#> 4170 0
#> 4171 86
#> 4172 0
#> 4173 0
#> 4174 76
#> 4175 2
#> 4176 1
#> 4177 77
#> 4178 0
#> 4179 0
#> 4180 84
#> 4181 0
#> 4182 0
#> 4183 82
#> 4184 0
#> 4185 0
#> 4186 80
#> 4187 1
#> 4188 0
#> 4189 80
#> 4190 1
#> 4191 0
#> 4192 86
#> 4193 0
#> 4194 0
#> 4195 93
#> 4196 0
#> 4197 3
#> 4198 86
#> 4199 0
#> 4200 5
#> 4201 239
#> 4202 235
#> 4203 277
#> 4204 257
#> 4205 221
#> 4206 256
#> 4207 286
#> 4208 359
#> 4209 472
#> 4210 227
#> 4211 178
#> 4212 372
#> 4213 214
#> 4214 198
#> 4215 285
#> 4216 274
#> 4217 254
#> 4218 288
#> 4219 309
#> 4220 415
#> 4221 508
#> 4222 243
#> 4223 197
#> 4224 244
#> 4225 304
#> 4226 272
#> 4227 320
#> 4228 296
#> 4229 304
#> 4230 308
#> 4231 306
#> 4232 463
#> 4233 503
#> 4234 249
#> 4235 228
#> 4236 226
#> 4237 313
#> 4238 286
#> 4239 326
#> 4240 275
#> 4241 305
#> 4242 320
#> 4243 311
#> 4244 442
#> 4245 489
#> 4246 257
#> 4247 233
#> 4248 269
#> 4249 286
#> 4250 340
#> 4251 332
#> 4252 338
#> 4253 360
#> 4254 331
#> 4255 390
#> 4256 453
#> 4257 476
#> 4258 302
#> 4259 229
#> 4260 280
#> 4261 328
#> 4262 368
#> 4263 359
#> 4264 362
#> 4265 362
#> 4266 359
#> 4267 420
#> 4268 507
#> 4269 517
#> 4270 274
#> 4271 256
#> 4272 288
#> 4273 369
#> 4274 299
#> 4275 367
#> 4276 334
#> 4277 314
#> 4278 337
#> 4279 390
#> 4280 407
#> 4281 521
#> 4282 261
#> 4283 233
#> 4284 302
#> 4285 337
#> 4286 314
#> 4287 349
#> 4288 484
#> 4289 528
#> 4290 193
#> 4291 307
#> 4292 392
#> 4293 471
#> 4294 256
#> 4295 238
#> 4296 269
#> 4297 309
#> 4298 320
#> 4299 352
#> 4300 316
#> 4301 320
#> 4302 323
#> 4303 372
#> 4304 347
#> 4305 590
#> 4306 283
#> 4307 347
#> 4308 275
#> 4309 268
#> 4310 208
#> 4311 395
#> 4312 290
#> 4313 375
#> 4314 266
#> 4315 354
#> 4316 532
#> 4317 484
#> 4318 206
#> 4319 399
#> 4320 282
#> 4321 246
#> 4322 241
#> 4323 278
#> 4324 380
#> 4325 247
#> 4326 349
#> 4327 557
#> 4328 239
#> 4329 370
#> 4330 221
#> 4331 267
#> 4332 320
#> 4333 217
#> 4334 318
#> 4335 334
#> 4336 272
#> 4337 309
#> 4338 291
#> 4339 297
#> 4340 291
#> 4341 333
#> 4342 259
#> 4343 289
#> 4344 309
#> 4345 415
#> 4346 236
#> 4347 301
#> 4348 288
#> 4349 296
#> 4350 234
#> 4351 421
#> 4352 406
#> 4353 278
#> 4354 238
#> 4355 225
#> 4356 281
#> 4357 276
#> 4358 259
#> 4359 227
#> 4360 279
#> 4361 312
#> 4362 231
#> 4363 287
#> 4364 365
#> 4365 304
#> 4366 312
#> 4367 299
#> 4368 466
#> 4369 439
#> 4370 298
#> 4371 257
#> 4372 283
#> 4373 213
#> 4374 156
#> 4375 287
#> 4376 249
#> 4377 439
#> 4378 313
#> 4379 279
#> 4380 466
#> 4381 386
#> 4382 331
#> 4383 410
#> 4384 325
#> 4385 284
#> 4386 293
#> 4387 396
#> 4388 328
#> 4389 401
#> 4390 252
#> 4391 592
#> 4392 373
#> 4393 403
#> 4394 307
#> 4395 306
#> 4396 315
#> 4397 291
#> 4398 369
#> 4399 367
#> 4400 246
#> 4401 332
#> 4402 248
#> 4403 299
#> 4404 299
#> 4405 252
#> 4406 250
#> 4407 338
#> 4408 239
#> 4409 283
#> 4410 223
#> 4411 266
#> 4412 242
#> 4413 322
#> 4414 203
#> 4415 292
#> 4416 287
#> 4417 368
#> 4418 389
#> 4419 350
#> 4420 335
#> 4421 384
#> 4422 263
#> 4423 391
#> 4424 455
#> 4425 347
#> 4426 287
#> 4427 330
#> 4428 423
#> 4429 459
#> 4430 399
#> 4431 333
#> 4432 366
#> 4433 373
#> 4434 302
#> 4435 457
#> 4436 358
#> 4437 441
#> 4438 353
#> 4439 412
#> 4440 477
#> 4441 1074
#> 4442 269
#> 4443 625
#> 4444 726
#> 4445 760
#> 4446 843
#> 4447 857
#> 4448 717
#> 4449 633
#> 4450 910
#> 4451 716
#> 4452 780
#> 4453 845
#> 4454 488
#> 4455 755
#> 4456 800
#> 4457 757
#> 4458 851
#> 4459 753
#> 4460 653
#> 4461 1170
#> 4462 554
#> 4463 524
#> 4464 677
#> 4465 784
#> 4466 970
#> 4467 651
#> 4468 803
#> 4469 744
#> 4470 921
#> 4471 705
#> 4472 1242
#> 4473 269
#> 4474 686
#> 4475 648
#> 4476 866
#> 4477 647
#> 4478 648
#> 4479 767
#> 4480 724
#> 4481 889
#> 4482 914
#> 4483 669
#> 4484 637
#> 4485 590
#> 4486 1039
#> 4487 473
#> 4488 805
#> 4489 1538
#> 4490 230
#> 4491 541
#> 4492 870
#> 4493 888
#> 4494 1053
#> 4495 827
#> 4496 885
#> 4497 699
#> 4498 981
#> 4499 588
#> 4500 864
#> 4501 1362
#> 4502 450
#> 4503 612
#> 4504 1211
#> 4505 709
#> 4506 1171
#> 4507 758
#> 4508 915
#> 4509 738
#> 4510 876
#> 4511 695
#> 4512 780
#> 4513 1276
#> 4514 613
#> 4515 695
#> 4516 900
#> 4517 773
#> 4518 1221
#> 4519 677
#> 4520 713
#> 4521 988
#> 4522 748
#> 4523 581
#> 4524 818
#> 4525 648
#> 4526 503
#> 4527 555
#> 4528 923
#> 4529 865
#> 4530 927
#> 4531 715
#> 4532 671
#> 4533 751
#> 4534 901
#> 4535 657
#> 4536 687
#> 4537 814
#> 4538 459
#> 4539 619
#> 4540 783
#> 4541 797
#> 4542 798
#> 4543 653
#> 4544 755
#> 4545 493
#> 4546 610
#> 4547 668
#> 4548 478
#> 4549 796
#> 4550 599
#> 4551 669
#> 4552 773
#> 4553 646
#> 4554 732
#> 4555 644
#> 4556 593
#> 4557 647
#> 4558 431
#> 4559 461
#> 4560 577
#> 4561 51881
#> 4562 40941
#> 4563 35482
#> 4564 58952
#> 4565 43540
#> 4566 35796
#> 4567 51805
#> 4568 42336
#> 4569 39989
#> 4570 75728
#> 4571 50431
#> 4572 41111
#> 4573 56228
#> 4574 42703
#> 4575 37848
#> 4576 62167
#> 4577 44235
#> 4578 39285
#> 4579 54993
#> 4580 43997
#> 4581 41895
#> 4582 76392
#> 4583 51207
#> 4584 42374
#> 4585 57992
#> 4586 45111
#> 4587 38734
#> 4588 66357
#> 4589 47014
#> 4590 40652
#> 4591 56504
#> 4592 47909
#> 4593 42735
#> 4594 79860
#> 4595 54367
#> 4596 43972
#> 4597 60904
#> 4598 45334
#> 4599 41681
#> 4600 68212
#> 4601 48766
#> 4602 42966
#> 4603 55552
#> 4604 47169
#> 4605 46426
#> 4606 81603
#> 4607 53868
#> 4608 40946
#> 4609 35181
#> 4610 26023
#> 4611 35809
#> 4612 52888
#> 4613 45364
#> 4614 46895
#> 4615 50272
#> 4616 48655
#> 4617 52309
#> 4618 79201
#> 4619 54381
#> 4620 57236
#> 4621 58273
#> 4622 48447
#> 4623 52038
#> 4624 66855
#> 4625 53948
#> 4626 53804
#> 4627 57370
#> 4628 55273
#> 4629 59349
#> 4630 89721
#> 4631 61645
#> 4632 58996
#> 4633 69001
#> 4634 53230
#> 4635 56560
#> 4636 73911
#> 4637 58223
#> 4638 57944
#> 4639 63805
#> 4640 58458
#> 4641 62732
#> 4642 106375
#> 4643 63150
#> 4644 63616
#> 4645 71840
#> 4646 57961
#> 4647 60876
#> 4648 80563
#> 4649 61641
#> 4650 61845
#> 4651 67399
#> 4652 59566
#> 4653 65540
#> 4654 107792
#> 4655 66329
#> 4656 67232
#> 4657 75852
#> 4658 58335
#> 4659 63893
#> 4660 83691
#> 4661 60617
#> 4662 64008
#> 4663 69316
#> 4664 61366
#> 4665 70162
#> 4666 112022
#> 4667 68846
#> 4668 70541
#> 4669 80971
#> 4670 62931
#> 4671 67199
#> 4672 92902
#> 4673 63155
#> 4674 71284
#> 4675 75416
#> 4676 65047
#> 4677 79324
#> 4678 126486
#> 4679 75849
#> 4680 78266
#> 4681 11087
#> 4682 10957
#> 4683 6058
#> 4684 12227
#> 4685 10789
#> 4686 6486
#> 4687 12323
#> 4688 10984
#> 4689 7193
#> 4690 13334
#> 4691 10999
#> 4692 7364
#> 4693 13240
#> 4694 10528
#> 4695 6485
#> 4696 12729
#> 4697 10604
#> 4698 7812
#> 4699 13181
#> 4700 11539
#> 4701 7098
#> 4702 13904
#> 4703 11701
#> 4704 7602
#> 4705 12554
#> 4706 10896
#> 4707 7312
#> 4708 13834
#> 4709 11430
#> 4710 8273
#> 4711 13160
#> 4712 12033
#> 4713 7674
#> 4714 13701
#> 4715 13373
#> 4716 8297
#> 4717 13041
#> 4718 10994
#> 4719 8118
#> 4720 13640
#> 4721 12446
#> 4722 8254
#> 4723 13569
#> 4724 13031
#> 4725 7622
#> 4726 14476
#> 4727 12586
#> 4728 2107
#> 4729 -896
#> 4730 -583
#> 4731 1078
#> 4732 10576
#> 4733 10069
#> 4734 7797
#> 4735 13443
#> 4736 12219
#> 4737 8537
#> 4738 15368
#> 4739 11179
#> 4740 12862
#> 4741 14660
#> 4742 11838
#> 4743 8655
#> 4744 17113
#> 4745 14714
#> 4746 8326
#> 4747 17122
#> 4748 15083
#> 4749 9162
#> 4750 18567
#> 4751 14794
#> 4752 7513
#> 4753 17213
#> 4754 11309
#> 4755 8588
#> 4756 17243
#> 4757 12850
#> 4758 8628
#> 4759 16719
#> 4760 14375
#> 4761 8988
#> 4762 19662
#> 4763 14014
#> 4764 8459
#> 4765 17944
#> 4766 13712
#> 4767 9322
#> 4768 18553
#> 4769 15429
#> 4770 7514
#> 4771 18332
#> 4772 14479
#> 4773 8987
#> 4774 19719
#> 4775 15230
#> 4776 9169
#> 4777 17588
#> 4778 13472
#> 4779 10363
#> 4780 18540
#> 4781 14145
#> 4782 9146
#> 4783 18654
#> 4784 15406
#> 4785 8613
#> 4786 19317
#> 4787 16165
#> 4788 9586
#> 4789 18973
#> 4790 14923
#> 4791 9999
#> 4792 20202
#> 4793 13093
#> 4794 9924
#> 4795 20372
#> 4796 14989
#> 4797 9982
#> 4798 21841
#> 4799 16303
#> 4800 10119
#> 4801 346
#> 4802 301
#> 4803 343
#> 4804 327
#> 4805 338
#> 4806 345
#> 4807 331
#> 4808 390
#> 4809 495
#> 4810 332
#> 4811 256
#> 4812 363
#> 4813 315
#> 4814 309
#> 4815 364
#> 4816 356
#> 4817 350
#> 4818 370
#> 4819 344
#> 4820 424
#> 4821 531
#> 4822 332
#> 4823 275
#> 4824 287
#> 4825 369
#> 4826 351
#> 4827 366
#> 4828 366
#> 4829 366
#> 4830 354
#> 4831 330
#> 4832 423
#> 4833 496
#> 4834 327
#> 4835 395
#> 4836 248
#> 4837 347
#> 4838 343
#> 4839 370
#> 4840 337
#> 4841 372
#> 4842 343
#> 4843 338
#> 4844 483
#> 4845 484
#> 4846 344
#> 4847 287
#> 4848 246
#> 4849 320
#> 4850 380
#> 4851 394
#> 4852 381
#> 4853 459
#> 4854 390
#> 4855 386
#> 4856 450
#> 4857 495
#> 4858 338
#> 4859 303
#> 4860 363
#> 4861 411
#> 4862 400
#> 4863 420
#> 4864 392
#> 4865 392
#> 4866 388
#> 4867 406
#> 4868 464
#> 4869 520
#> 4870 309
#> 4871 336
#> 4872 295
#> 4873 422
#> 4874 336
#> 4875 398
#> 4876 371
#> 4877 366
#> 4878 358
#> 4879 357
#> 4880 385
#> 4881 544
#> 4882 311
#> 4883 287
#> 4884 255
#> 4885 388
#> 4886 357
#> 4887 341
#> 4888 424
#> 4889 623
#> 4890 253
#> 4891 360
#> 4892 399
#> 4893 462
#> 4894 362
#> 4895 313
#> 4896 328
#> 4897 381
#> 4898 393
#> 4899 378
#> 4900 384
#> 4901 381
#> 4902 366
#> 4903 406
#> 4904 387
#> 4905 585
#> 4906 315
#> 4907 426
#> 4908 321
#> 4909 347
#> 4910 299
#> 4911 405
#> 4912 351
#> 4913 392
#> 4914 350
#> 4915 444
#> 4916 469
#> 4917 531
#> 4918 290
#> 4919 393
#> 4920 358
hmrc_tax_receipts(tax = c("income_tax", "vat"))
#> ℹ Resolving download URL from GOV.UK Content API
#> ✔ Resolving download URL from GOV.UK Content API [22ms]
#>
#> ℹ Using cached file
#> ✔ Using cached file [6ms]
#>
#> ℹ Parsing data
#> New names:
#> • `` -> `...1`
#> • `` -> `...2`
#> • `` -> `...3`
#> • `` -> `...4`
#> • `` -> `...5`
#> • `` -> `...6`
#> • `` -> `...7`
#> • `` -> `...8`
#> • `` -> `...9`
#> • `` -> `...10`
#> • `` -> `...11`
#> • `` -> `...12`
#> • `` -> `...13`
#> • `` -> `...14`
#> • `` -> `...15`
#> • `` -> `...16`
#> • `` -> `...17`
#> • `` -> `...18`
#> • `` -> `...19`
#> • `` -> `...20`
#> • `` -> `...21`
#> • `` -> `...22`
#> • `` -> `...23`
#> • `` -> `...24`
#> • `` -> `...25`
#> • `` -> `...26`
#> • `` -> `...27`
#> • `` -> `...28`
#> • `` -> `...29`
#> • `` -> `...30`
#> • `` -> `...31`
#> • `` -> `...32`
#> • `` -> `...33`
#> • `` -> `...34`
#> • `` -> `...35`
#> • `` -> `...36`
#> • `` -> `...37`
#> • `` -> `...38`
#> • `` -> `...39`
#> • `` -> `...40`
#> • `` -> `...41`
#> • `` -> `...42`
#> • `` -> `...43`
#> • `` -> `...44`
#> • `` -> `...45`
#> • `` -> `...46`
#> • `` -> `...47`
#> ✔ Parsing data [397ms]
#>
#> # HMRC tax receipts and NICs (monthly bulletin)
#> # Source: https://www.gov.uk/government/statistics/hmrc-tax-and-nics-receipts-for-the-uk
#> # Fetched 2026-04-26 13:16:02 UTC | Vintage: latest | Cells: cash | Freq: monthly | 240 rows x 4 cols
#>
#> date tax_head description receipts_gbp_m
#> 1 2016-04-01 income_tax Income Tax (PAYE and Self Assessment) 16126
#> 2 2016-05-01 income_tax Income Tax (PAYE and Self Assessment) 11943
#> 3 2016-06-01 income_tax Income Tax (PAYE and Self Assessment) 11479
#> 4 2016-07-01 income_tax Income Tax (PAYE and Self Assessment) 19820
#> 5 2016-08-01 income_tax Income Tax (PAYE and Self Assessment) 13567
#> 6 2016-09-01 income_tax Income Tax (PAYE and Self Assessment) 10893
#> 7 2016-10-01 income_tax Income Tax (PAYE and Self Assessment) 11767
#> 8 2016-11-01 income_tax Income Tax (PAYE and Self Assessment) 11465
#> 9 2016-12-01 income_tax Income Tax (PAYE and Self Assessment) 12150
#> 10 2017-01-01 income_tax Income Tax (PAYE and Self Assessment) 26557
#> 11 2017-02-01 income_tax Income Tax (PAYE and Self Assessment) 17227
#> 12 2017-03-01 income_tax Income Tax (PAYE and Self Assessment) 14071
#> 13 2017-04-01 income_tax Income Tax (PAYE and Self Assessment) 16222
#> 14 2017-05-01 income_tax Income Tax (PAYE and Self Assessment) 12237
#> 15 2017-06-01 income_tax Income Tax (PAYE and Self Assessment) 11941
#> 16 2017-07-01 income_tax Income Tax (PAYE and Self Assessment) 20389
#> 17 2017-08-01 income_tax Income Tax (PAYE and Self Assessment) 12888
#> 18 2017-09-01 income_tax Income Tax (PAYE and Self Assessment) 11403
#> 19 2017-10-01 income_tax Income Tax (PAYE and Self Assessment) 12551
#> 20 2017-11-01 income_tax Income Tax (PAYE and Self Assessment) 11969
#> 21 2017-12-01 income_tax Income Tax (PAYE and Self Assessment) 12573
#> 22 2018-01-01 income_tax Income Tax (PAYE and Self Assessment) 26080
#> 23 2018-02-01 income_tax Income Tax (PAYE and Self Assessment) 16963
#> 24 2018-03-01 income_tax Income Tax (PAYE and Self Assessment) 14833
#> 25 2018-04-01 income_tax Income Tax (PAYE and Self Assessment) 17054
#> 26 2018-05-01 income_tax Income Tax (PAYE and Self Assessment) 13038
#> 27 2018-06-01 income_tax Income Tax (PAYE and Self Assessment) 12338
#> 28 2018-07-01 income_tax Income Tax (PAYE and Self Assessment) 22141
#> 29 2018-08-01 income_tax Income Tax (PAYE and Self Assessment) 13771
#> 30 2018-09-01 income_tax Income Tax (PAYE and Self Assessment) 12051
#> 31 2018-10-01 income_tax Income Tax (PAYE and Self Assessment) 13258
#> 32 2018-11-01 income_tax Income Tax (PAYE and Self Assessment) 13033
#> 33 2018-12-01 income_tax Income Tax (PAYE and Self Assessment) 13626
#> 34 2019-01-01 income_tax Income Tax (PAYE and Self Assessment) 28479
#> 35 2019-02-01 income_tax Income Tax (PAYE and Self Assessment) 17197
#> 36 2019-03-01 income_tax Income Tax (PAYE and Self Assessment) 15043
#> 37 2019-04-01 income_tax Income Tax (PAYE and Self Assessment) 18577
#> 38 2019-05-01 income_tax Income Tax (PAYE and Self Assessment) 13235
#> 39 2019-06-01 income_tax Income Tax (PAYE and Self Assessment) 12910
#> 40 2019-07-01 income_tax Income Tax (PAYE and Self Assessment) 22706
#> 41 2019-08-01 income_tax Income Tax (PAYE and Self Assessment) 14129
#> 42 2019-09-01 income_tax Income Tax (PAYE and Self Assessment) 12396
#> 43 2019-10-01 income_tax Income Tax (PAYE and Self Assessment) 12793
#> 44 2019-11-01 income_tax Income Tax (PAYE and Self Assessment) 12219
#> 45 2019-12-01 income_tax Income Tax (PAYE and Self Assessment) 13534
#> 46 2020-01-01 income_tax Income Tax (PAYE and Self Assessment) 29327
#> 47 2020-02-01 income_tax Income Tax (PAYE and Self Assessment) 17134
#> 48 2020-03-01 income_tax Income Tax (PAYE and Self Assessment) 14282
#> 49 2020-04-01 income_tax Income Tax (PAYE and Self Assessment) 14474
#> 50 2020-05-01 income_tax Income Tax (PAYE and Self Assessment) 11001
#> 51 2020-06-01 income_tax Income Tax (PAYE and Self Assessment) 12556
#> 52 2020-07-01 income_tax Income Tax (PAYE and Self Assessment) 18107
#> 53 2020-08-01 income_tax Income Tax (PAYE and Self Assessment) 14675
#> 54 2020-09-01 income_tax Income Tax (PAYE and Self Assessment) 13339
#> 55 2020-10-01 income_tax Income Tax (PAYE and Self Assessment) 13272
#> 56 2020-11-01 income_tax Income Tax (PAYE and Self Assessment) 14140
#> 57 2020-12-01 income_tax Income Tax (PAYE and Self Assessment) 15381
#> 58 2021-01-01 income_tax Income Tax (PAYE and Self Assessment) 30780
#> 59 2021-02-01 income_tax Income Tax (PAYE and Self Assessment) 19273
#> 60 2021-03-01 income_tax Income Tax (PAYE and Self Assessment) 16743
#> 61 2021-04-01 income_tax Income Tax (PAYE and Self Assessment) 18628
#> 62 2021-05-01 income_tax Income Tax (PAYE and Self Assessment) 15258
#> 63 2021-06-01 income_tax Income Tax (PAYE and Self Assessment) 15063
#> 64 2021-07-01 income_tax Income Tax (PAYE and Self Assessment) 22699
#> 65 2021-08-01 income_tax Income Tax (PAYE and Self Assessment) 16206
#> 66 2021-09-01 income_tax Income Tax (PAYE and Self Assessment) 15044
#> 67 2021-10-01 income_tax Income Tax (PAYE and Self Assessment) 14500
#> 68 2021-11-01 income_tax Income Tax (PAYE and Self Assessment) 15278
#> 69 2021-12-01 income_tax Income Tax (PAYE and Self Assessment) 16578
#> 70 2022-01-01 income_tax Income Tax (PAYE and Self Assessment) 32371
#> 71 2022-02-01 income_tax Income Tax (PAYE and Self Assessment) 19889
#> 72 2022-03-01 income_tax Income Tax (PAYE and Self Assessment) 19097
#> 73 2022-04-01 income_tax Income Tax (PAYE and Self Assessment) 22905
#> 74 2022-05-01 income_tax Income Tax (PAYE and Self Assessment) 16414
#> 75 2022-06-01 income_tax Income Tax (PAYE and Self Assessment) 16149
#> 76 2022-07-01 income_tax Income Tax (PAYE and Self Assessment) 25381
#> 77 2022-08-01 income_tax Income Tax (PAYE and Self Assessment) 18371
#> 78 2022-09-01 income_tax Income Tax (PAYE and Self Assessment) 15915
#> 79 2022-10-01 income_tax Income Tax (PAYE and Self Assessment) 16436
#> 80 2022-11-01 income_tax Income Tax (PAYE and Self Assessment) 16846
#> 81 2022-12-01 income_tax Income Tax (PAYE and Self Assessment) 18765
#> 82 2023-01-01 income_tax Income Tax (PAYE and Self Assessment) 39802
#> 83 2023-02-01 income_tax Income Tax (PAYE and Self Assessment) 21015
#> 84 2023-03-01 income_tax Income Tax (PAYE and Self Assessment) 20360
#> 85 2023-04-01 income_tax Income Tax (PAYE and Self Assessment) 24802
#> 86 2023-05-01 income_tax Income Tax (PAYE and Self Assessment) 19528
#> 87 2023-06-01 income_tax Income Tax (PAYE and Self Assessment) 18117
#> 88 2023-07-01 income_tax Income Tax (PAYE and Self Assessment) 29823
#> 89 2023-08-01 income_tax Income Tax (PAYE and Self Assessment) 19952
#> 90 2023-09-01 income_tax Income Tax (PAYE and Self Assessment) 17699
#> 91 2023-10-01 income_tax Income Tax (PAYE and Self Assessment) 18798
#> 92 2023-11-01 income_tax Income Tax (PAYE and Self Assessment) 19178
#> 93 2023-12-01 income_tax Income Tax (PAYE and Self Assessment) 19774
#> 94 2024-01-01 income_tax Income Tax (PAYE and Self Assessment) 42276
#> 95 2024-02-01 income_tax Income Tax (PAYE and Self Assessment) 23468
#> 96 2024-03-01 income_tax Income Tax (PAYE and Self Assessment) 21842
#> 97 2024-04-01 income_tax Income Tax (PAYE and Self Assessment) 27554
#> 98 2024-05-01 income_tax Income Tax (PAYE and Self Assessment) 20207
#> 99 2024-06-01 income_tax Income Tax (PAYE and Self Assessment) 20220
#> 100 2024-07-01 income_tax Income Tax (PAYE and Self Assessment) 33465
#> 101 2024-08-01 income_tax Income Tax (PAYE and Self Assessment) 20942
#> 102 2024-09-01 income_tax Income Tax (PAYE and Self Assessment) 19386
#> 103 2024-10-01 income_tax Income Tax (PAYE and Self Assessment) 19882
#> 104 2024-11-01 income_tax Income Tax (PAYE and Self Assessment) 20515
#> 105 2024-12-01 income_tax Income Tax (PAYE and Self Assessment) 22537
#> 106 2025-01-01 income_tax Income Tax (PAYE and Self Assessment) 49304
#> 107 2025-02-01 income_tax Income Tax (PAYE and Self Assessment) 25224
#> 108 2025-03-01 income_tax Income Tax (PAYE and Self Assessment) 23560
#> 109 2025-04-01 income_tax Income Tax (PAYE and Self Assessment) 29900
#> 110 2025-05-01 income_tax Income Tax (PAYE and Self Assessment) 21288
#> 111 2025-06-01 income_tax Income Tax (PAYE and Self Assessment) 21134
#> 112 2025-07-01 income_tax Income Tax (PAYE and Self Assessment) 37873
#> 113 2025-08-01 income_tax Income Tax (PAYE and Self Assessment) 21859
#> 114 2025-09-01 income_tax Income Tax (PAYE and Self Assessment) 22134
#> 115 2025-10-01 income_tax Income Tax (PAYE and Self Assessment) 21694
#> 116 2025-11-01 income_tax Income Tax (PAYE and Self Assessment) 21785
#> 117 2025-12-01 income_tax Income Tax (PAYE and Self Assessment) 25332
#> 118 2026-01-01 income_tax Income Tax (PAYE and Self Assessment) 53126
#> 119 2026-02-01 income_tax Income Tax (PAYE and Self Assessment) 28310
#> 120 2026-03-01 income_tax Income Tax (PAYE and Self Assessment) 25611
#> 121 2016-04-01 vat Value Added Tax 11087
#> 122 2016-05-01 vat Value Added Tax 10957
#> 123 2016-06-01 vat Value Added Tax 6058
#> 124 2016-07-01 vat Value Added Tax 12227
#> 125 2016-08-01 vat Value Added Tax 10789
#> 126 2016-09-01 vat Value Added Tax 6486
#> 127 2016-10-01 vat Value Added Tax 12323
#> 128 2016-11-01 vat Value Added Tax 10984
#> 129 2016-12-01 vat Value Added Tax 7193
#> 130 2017-01-01 vat Value Added Tax 13334
#> 131 2017-02-01 vat Value Added Tax 10999
#> 132 2017-03-01 vat Value Added Tax 7364
#> 133 2017-04-01 vat Value Added Tax 13240
#> 134 2017-05-01 vat Value Added Tax 10528
#> 135 2017-06-01 vat Value Added Tax 6485
#> 136 2017-07-01 vat Value Added Tax 12729
#> 137 2017-08-01 vat Value Added Tax 10604
#> 138 2017-09-01 vat Value Added Tax 7812
#> 139 2017-10-01 vat Value Added Tax 13181
#> 140 2017-11-01 vat Value Added Tax 11539
#> 141 2017-12-01 vat Value Added Tax 7098
#> 142 2018-01-01 vat Value Added Tax 13904
#> 143 2018-02-01 vat Value Added Tax 11701
#> 144 2018-03-01 vat Value Added Tax 7602
#> 145 2018-04-01 vat Value Added Tax 12554
#> 146 2018-05-01 vat Value Added Tax 10896
#> 147 2018-06-01 vat Value Added Tax 7312
#> 148 2018-07-01 vat Value Added Tax 13834
#> 149 2018-08-01 vat Value Added Tax 11430
#> 150 2018-09-01 vat Value Added Tax 8273
#> 151 2018-10-01 vat Value Added Tax 13160
#> 152 2018-11-01 vat Value Added Tax 12033
#> 153 2018-12-01 vat Value Added Tax 7674
#> 154 2019-01-01 vat Value Added Tax 13701
#> 155 2019-02-01 vat Value Added Tax 13373
#> 156 2019-03-01 vat Value Added Tax 8297
#> 157 2019-04-01 vat Value Added Tax 13041
#> 158 2019-05-01 vat Value Added Tax 10994
#> 159 2019-06-01 vat Value Added Tax 8118
#> 160 2019-07-01 vat Value Added Tax 13640
#> 161 2019-08-01 vat Value Added Tax 12446
#> 162 2019-09-01 vat Value Added Tax 8254
#> 163 2019-10-01 vat Value Added Tax 13569
#> 164 2019-11-01 vat Value Added Tax 13031
#> 165 2019-12-01 vat Value Added Tax 7622
#> 166 2020-01-01 vat Value Added Tax 14476
#> 167 2020-02-01 vat Value Added Tax 12586
#> 168 2020-03-01 vat Value Added Tax 2107
#> 169 2020-04-01 vat Value Added Tax -896
#> 170 2020-05-01 vat Value Added Tax -583
#> 171 2020-06-01 vat Value Added Tax 1078
#> 172 2020-07-01 vat Value Added Tax 10576
#> 173 2020-08-01 vat Value Added Tax 10069
#> 174 2020-09-01 vat Value Added Tax 7797
#> 175 2020-10-01 vat Value Added Tax 13443
#> 176 2020-11-01 vat Value Added Tax 12219
#> 177 2020-12-01 vat Value Added Tax 8537
#> 178 2021-01-01 vat Value Added Tax 15368
#> 179 2021-02-01 vat Value Added Tax 11179
#> 180 2021-03-01 vat Value Added Tax 12862
#> 181 2021-04-01 vat Value Added Tax 14660
#> 182 2021-05-01 vat Value Added Tax 11838
#> 183 2021-06-01 vat Value Added Tax 8655
#> 184 2021-07-01 vat Value Added Tax 17113
#> 185 2021-08-01 vat Value Added Tax 14714
#> 186 2021-09-01 vat Value Added Tax 8326
#> 187 2021-10-01 vat Value Added Tax 17122
#> 188 2021-11-01 vat Value Added Tax 15083
#> 189 2021-12-01 vat Value Added Tax 9162
#> 190 2022-01-01 vat Value Added Tax 18567
#> 191 2022-02-01 vat Value Added Tax 14794
#> 192 2022-03-01 vat Value Added Tax 7513
#> 193 2022-04-01 vat Value Added Tax 17213
#> 194 2022-05-01 vat Value Added Tax 11309
#> 195 2022-06-01 vat Value Added Tax 8588
#> 196 2022-07-01 vat Value Added Tax 17243
#> 197 2022-08-01 vat Value Added Tax 12850
#> 198 2022-09-01 vat Value Added Tax 8628
#> 199 2022-10-01 vat Value Added Tax 16719
#> 200 2022-11-01 vat Value Added Tax 14375
#> 201 2022-12-01 vat Value Added Tax 8988
#> 202 2023-01-01 vat Value Added Tax 19662
#> 203 2023-02-01 vat Value Added Tax 14014
#> 204 2023-03-01 vat Value Added Tax 8459
#> 205 2023-04-01 vat Value Added Tax 17944
#> 206 2023-05-01 vat Value Added Tax 13712
#> 207 2023-06-01 vat Value Added Tax 9322
#> 208 2023-07-01 vat Value Added Tax 18553
#> 209 2023-08-01 vat Value Added Tax 15429
#> 210 2023-09-01 vat Value Added Tax 7514
#> 211 2023-10-01 vat Value Added Tax 18332
#> 212 2023-11-01 vat Value Added Tax 14479
#> 213 2023-12-01 vat Value Added Tax 8987
#> 214 2024-01-01 vat Value Added Tax 19719
#> 215 2024-02-01 vat Value Added Tax 15230
#> 216 2024-03-01 vat Value Added Tax 9169
#> 217 2024-04-01 vat Value Added Tax 17588
#> 218 2024-05-01 vat Value Added Tax 13472
#> 219 2024-06-01 vat Value Added Tax 10363
#> 220 2024-07-01 vat Value Added Tax 18540
#> 221 2024-08-01 vat Value Added Tax 14145
#> 222 2024-09-01 vat Value Added Tax 9146
#> 223 2024-10-01 vat Value Added Tax 18654
#> 224 2024-11-01 vat Value Added Tax 15406
#> 225 2024-12-01 vat Value Added Tax 8613
#> 226 2025-01-01 vat Value Added Tax 19317
#> 227 2025-02-01 vat Value Added Tax 16165
#> 228 2025-03-01 vat Value Added Tax 9586
#> 229 2025-04-01 vat Value Added Tax 18973
#> 230 2025-05-01 vat Value Added Tax 14923
#> 231 2025-06-01 vat Value Added Tax 9999
#> 232 2025-07-01 vat Value Added Tax 20202
#> 233 2025-08-01 vat Value Added Tax 13093
#> 234 2025-09-01 vat Value Added Tax 9924
#> 235 2025-10-01 vat Value Added Tax 20372
#> 236 2025-11-01 vat Value Added Tax 14989
#> 237 2025-12-01 vat Value Added Tax 9982
#> 238 2026-01-01 vat Value Added Tax 21841
#> 239 2026-02-01 vat Value Added Tax 16303
#> 240 2026-03-01 vat Value Added Tax 10119
hmrc_tax_receipts(start = "2020-04")
#> ℹ Resolving download URL from GOV.UK Content API
#> ✔ Resolving download URL from GOV.UK Content API [22ms]
#>
#> ℹ Using cached file
#> ✔ Using cached file [6ms]
#>
#> ℹ Parsing data
#> New names:
#> • `` -> `...1`
#> • `` -> `...2`
#> • `` -> `...3`
#> • `` -> `...4`
#> • `` -> `...5`
#> • `` -> `...6`
#> • `` -> `...7`
#> • `` -> `...8`
#> • `` -> `...9`
#> • `` -> `...10`
#> • `` -> `...11`
#> • `` -> `...12`
#> • `` -> `...13`
#> • `` -> `...14`
#> • `` -> `...15`
#> • `` -> `...16`
#> • `` -> `...17`
#> • `` -> `...18`
#> • `` -> `...19`
#> • `` -> `...20`
#> • `` -> `...21`
#> • `` -> `...22`
#> • `` -> `...23`
#> • `` -> `...24`
#> • `` -> `...25`
#> • `` -> `...26`
#> • `` -> `...27`
#> • `` -> `...28`
#> • `` -> `...29`
#> • `` -> `...30`
#> • `` -> `...31`
#> • `` -> `...32`
#> • `` -> `...33`
#> • `` -> `...34`
#> • `` -> `...35`
#> • `` -> `...36`
#> • `` -> `...37`
#> • `` -> `...38`
#> • `` -> `...39`
#> • `` -> `...40`
#> • `` -> `...41`
#> • `` -> `...42`
#> • `` -> `...43`
#> • `` -> `...44`
#> • `` -> `...45`
#> • `` -> `...46`
#> • `` -> `...47`
#> ✔ Parsing data [380ms]
#>
#> # HMRC tax receipts and NICs (monthly bulletin)
#> # Source: https://www.gov.uk/government/statistics/hmrc-tax-and-nics-receipts-for-the-uk
#> # Fetched 2026-04-26 13:16:02 UTC | Vintage: latest | Cells: cash | Freq: monthly | 2,952 rows x 4 cols
#>
#> date tax_head
#> 1 2020-04-01 aggregates_levy
#> 2 2020-05-01 aggregates_levy
#> 3 2020-06-01 aggregates_levy
#> 4 2020-07-01 aggregates_levy
#> 5 2020-08-01 aggregates_levy
#> 6 2020-09-01 aggregates_levy
#> 7 2020-10-01 aggregates_levy
#> 8 2020-11-01 aggregates_levy
#> 9 2020-12-01 aggregates_levy
#> 10 2021-01-01 aggregates_levy
#> 11 2021-02-01 aggregates_levy
#> 12 2021-03-01 aggregates_levy
#> 13 2021-04-01 aggregates_levy
#> 14 2021-05-01 aggregates_levy
#> 15 2021-06-01 aggregates_levy
#> 16 2021-07-01 aggregates_levy
#> 17 2021-08-01 aggregates_levy
#> 18 2021-09-01 aggregates_levy
#> 19 2021-10-01 aggregates_levy
#> 20 2021-11-01 aggregates_levy
#> 21 2021-12-01 aggregates_levy
#> 22 2022-01-01 aggregates_levy
#> 23 2022-02-01 aggregates_levy
#> 24 2022-03-01 aggregates_levy
#> 25 2022-04-01 aggregates_levy
#> 26 2022-05-01 aggregates_levy
#> 27 2022-06-01 aggregates_levy
#> 28 2022-07-01 aggregates_levy
#> 29 2022-08-01 aggregates_levy
#> 30 2022-09-01 aggregates_levy
#> 31 2022-10-01 aggregates_levy
#> 32 2022-11-01 aggregates_levy
#> 33 2022-12-01 aggregates_levy
#> 34 2023-01-01 aggregates_levy
#> 35 2023-02-01 aggregates_levy
#> 36 2023-03-01 aggregates_levy
#> 37 2023-04-01 aggregates_levy
#> 38 2023-05-01 aggregates_levy
#> 39 2023-06-01 aggregates_levy
#> 40 2023-07-01 aggregates_levy
#> 41 2023-08-01 aggregates_levy
#> 42 2023-09-01 aggregates_levy
#> 43 2023-10-01 aggregates_levy
#> 44 2023-11-01 aggregates_levy
#> 45 2023-12-01 aggregates_levy
#> 46 2024-01-01 aggregates_levy
#> 47 2024-02-01 aggregates_levy
#> 48 2024-03-01 aggregates_levy
#> 49 2024-04-01 aggregates_levy
#> 50 2024-05-01 aggregates_levy
#> 51 2024-06-01 aggregates_levy
#> 52 2024-07-01 aggregates_levy
#> 53 2024-08-01 aggregates_levy
#> 54 2024-09-01 aggregates_levy
#> 55 2024-10-01 aggregates_levy
#> 56 2024-11-01 aggregates_levy
#> 57 2024-12-01 aggregates_levy
#> 58 2025-01-01 aggregates_levy
#> 59 2025-02-01 aggregates_levy
#> 60 2025-03-01 aggregates_levy
#> 61 2025-04-01 aggregates_levy
#> 62 2025-05-01 aggregates_levy
#> 63 2025-06-01 aggregates_levy
#> 64 2025-07-01 aggregates_levy
#> 65 2025-08-01 aggregates_levy
#> 66 2025-09-01 aggregates_levy
#> 67 2025-10-01 aggregates_levy
#> 68 2025-11-01 aggregates_levy
#> 69 2025-12-01 aggregates_levy
#> 70 2026-01-01 aggregates_levy
#> 71 2026-02-01 aggregates_levy
#> 72 2026-03-01 aggregates_levy
#> 73 2020-04-01 air_passenger_duty
#> 74 2020-05-01 air_passenger_duty
#> 75 2020-06-01 air_passenger_duty
#> 76 2020-07-01 air_passenger_duty
#> 77 2020-08-01 air_passenger_duty
#> 78 2020-09-01 air_passenger_duty
#> 79 2020-10-01 air_passenger_duty
#> 80 2020-11-01 air_passenger_duty
#> 81 2020-12-01 air_passenger_duty
#> 82 2021-01-01 air_passenger_duty
#> 83 2021-02-01 air_passenger_duty
#> 84 2021-03-01 air_passenger_duty
#> 85 2021-04-01 air_passenger_duty
#> 86 2021-05-01 air_passenger_duty
#> 87 2021-06-01 air_passenger_duty
#> 88 2021-07-01 air_passenger_duty
#> 89 2021-08-01 air_passenger_duty
#> 90 2021-09-01 air_passenger_duty
#> 91 2021-10-01 air_passenger_duty
#> 92 2021-11-01 air_passenger_duty
#> 93 2021-12-01 air_passenger_duty
#> 94 2022-01-01 air_passenger_duty
#> 95 2022-02-01 air_passenger_duty
#> 96 2022-03-01 air_passenger_duty
#> 97 2022-04-01 air_passenger_duty
#> 98 2022-05-01 air_passenger_duty
#> 99 2022-06-01 air_passenger_duty
#> 100 2022-07-01 air_passenger_duty
#> 101 2022-08-01 air_passenger_duty
#> 102 2022-09-01 air_passenger_duty
#> 103 2022-10-01 air_passenger_duty
#> 104 2022-11-01 air_passenger_duty
#> 105 2022-12-01 air_passenger_duty
#> 106 2023-01-01 air_passenger_duty
#> 107 2023-02-01 air_passenger_duty
#> 108 2023-03-01 air_passenger_duty
#> 109 2023-04-01 air_passenger_duty
#> 110 2023-05-01 air_passenger_duty
#> 111 2023-06-01 air_passenger_duty
#> 112 2023-07-01 air_passenger_duty
#> 113 2023-08-01 air_passenger_duty
#> 114 2023-09-01 air_passenger_duty
#> 115 2023-10-01 air_passenger_duty
#> 116 2023-11-01 air_passenger_duty
#> 117 2023-12-01 air_passenger_duty
#> 118 2024-01-01 air_passenger_duty
#> 119 2024-02-01 air_passenger_duty
#> 120 2024-03-01 air_passenger_duty
#> 121 2024-04-01 air_passenger_duty
#> 122 2024-05-01 air_passenger_duty
#> 123 2024-06-01 air_passenger_duty
#> 124 2024-07-01 air_passenger_duty
#> 125 2024-08-01 air_passenger_duty
#> 126 2024-09-01 air_passenger_duty
#> 127 2024-10-01 air_passenger_duty
#> 128 2024-11-01 air_passenger_duty
#> 129 2024-12-01 air_passenger_duty
#> 130 2025-01-01 air_passenger_duty
#> 131 2025-02-01 air_passenger_duty
#> 132 2025-03-01 air_passenger_duty
#> 133 2025-04-01 air_passenger_duty
#> 134 2025-05-01 air_passenger_duty
#> 135 2025-06-01 air_passenger_duty
#> 136 2025-07-01 air_passenger_duty
#> 137 2025-08-01 air_passenger_duty
#> 138 2025-09-01 air_passenger_duty
#> 139 2025-10-01 air_passenger_duty
#> 140 2025-11-01 air_passenger_duty
#> 141 2025-12-01 air_passenger_duty
#> 142 2026-01-01 air_passenger_duty
#> 143 2026-02-01 air_passenger_duty
#> 144 2026-03-01 air_passenger_duty
#> 145 2020-04-01 apprenticeship_levy
#> 146 2020-05-01 apprenticeship_levy
#> 147 2020-06-01 apprenticeship_levy
#> 148 2020-07-01 apprenticeship_levy
#> 149 2020-08-01 apprenticeship_levy
#> 150 2020-09-01 apprenticeship_levy
#> 151 2020-10-01 apprenticeship_levy
#> 152 2020-11-01 apprenticeship_levy
#> 153 2020-12-01 apprenticeship_levy
#> 154 2021-01-01 apprenticeship_levy
#> 155 2021-02-01 apprenticeship_levy
#> 156 2021-03-01 apprenticeship_levy
#> 157 2021-04-01 apprenticeship_levy
#> 158 2021-05-01 apprenticeship_levy
#> 159 2021-06-01 apprenticeship_levy
#> 160 2021-07-01 apprenticeship_levy
#> 161 2021-08-01 apprenticeship_levy
#> 162 2021-09-01 apprenticeship_levy
#> 163 2021-10-01 apprenticeship_levy
#> 164 2021-11-01 apprenticeship_levy
#> 165 2021-12-01 apprenticeship_levy
#> 166 2022-01-01 apprenticeship_levy
#> 167 2022-02-01 apprenticeship_levy
#> 168 2022-03-01 apprenticeship_levy
#> 169 2022-04-01 apprenticeship_levy
#> 170 2022-05-01 apprenticeship_levy
#> 171 2022-06-01 apprenticeship_levy
#> 172 2022-07-01 apprenticeship_levy
#> 173 2022-08-01 apprenticeship_levy
#> 174 2022-09-01 apprenticeship_levy
#> 175 2022-10-01 apprenticeship_levy
#> 176 2022-11-01 apprenticeship_levy
#> 177 2022-12-01 apprenticeship_levy
#> 178 2023-01-01 apprenticeship_levy
#> 179 2023-02-01 apprenticeship_levy
#> 180 2023-03-01 apprenticeship_levy
#> 181 2023-04-01 apprenticeship_levy
#> 182 2023-05-01 apprenticeship_levy
#> 183 2023-06-01 apprenticeship_levy
#> 184 2023-07-01 apprenticeship_levy
#> 185 2023-08-01 apprenticeship_levy
#> 186 2023-09-01 apprenticeship_levy
#> 187 2023-10-01 apprenticeship_levy
#> 188 2023-11-01 apprenticeship_levy
#> 189 2023-12-01 apprenticeship_levy
#> 190 2024-01-01 apprenticeship_levy
#> 191 2024-02-01 apprenticeship_levy
#> 192 2024-03-01 apprenticeship_levy
#> 193 2024-04-01 apprenticeship_levy
#> 194 2024-05-01 apprenticeship_levy
#> 195 2024-06-01 apprenticeship_levy
#> 196 2024-07-01 apprenticeship_levy
#> 197 2024-08-01 apprenticeship_levy
#> 198 2024-09-01 apprenticeship_levy
#> 199 2024-10-01 apprenticeship_levy
#> 200 2024-11-01 apprenticeship_levy
#> 201 2024-12-01 apprenticeship_levy
#> 202 2025-01-01 apprenticeship_levy
#> 203 2025-02-01 apprenticeship_levy
#> 204 2025-03-01 apprenticeship_levy
#> 205 2025-04-01 apprenticeship_levy
#> 206 2025-05-01 apprenticeship_levy
#> 207 2025-06-01 apprenticeship_levy
#> 208 2025-07-01 apprenticeship_levy
#> 209 2025-08-01 apprenticeship_levy
#> 210 2025-09-01 apprenticeship_levy
#> 211 2025-10-01 apprenticeship_levy
#> 212 2025-11-01 apprenticeship_levy
#> 213 2025-12-01 apprenticeship_levy
#> 214 2026-01-01 apprenticeship_levy
#> 215 2026-02-01 apprenticeship_levy
#> 216 2026-03-01 apprenticeship_levy
#> 217 2020-04-01 ated
#> 218 2020-05-01 ated
#> 219 2020-06-01 ated
#> 220 2020-07-01 ated
#> 221 2020-08-01 ated
#> 222 2020-09-01 ated
#> 223 2020-10-01 ated
#> 224 2020-11-01 ated
#> 225 2020-12-01 ated
#> 226 2021-01-01 ated
#> 227 2021-02-01 ated
#> 228 2021-03-01 ated
#> 229 2021-04-01 ated
#> 230 2021-05-01 ated
#> 231 2021-06-01 ated
#> 232 2021-07-01 ated
#> 233 2021-08-01 ated
#> 234 2021-09-01 ated
#> 235 2021-10-01 ated
#> 236 2021-11-01 ated
#> 237 2021-12-01 ated
#> 238 2022-01-01 ated
#> 239 2022-02-01 ated
#> 240 2022-03-01 ated
#> 241 2022-04-01 ated
#> 242 2022-05-01 ated
#> 243 2022-06-01 ated
#> 244 2022-07-01 ated
#> 245 2022-08-01 ated
#> 246 2022-09-01 ated
#> 247 2022-10-01 ated
#> 248 2022-11-01 ated
#> 249 2022-12-01 ated
#> 250 2023-01-01 ated
#> 251 2023-02-01 ated
#> 252 2023-03-01 ated
#> 253 2023-04-01 ated
#> 254 2023-05-01 ated
#> 255 2023-06-01 ated
#> 256 2023-07-01 ated
#> 257 2023-08-01 ated
#> 258 2023-09-01 ated
#> 259 2023-10-01 ated
#> 260 2023-11-01 ated
#> 261 2023-12-01 ated
#> 262 2024-01-01 ated
#> 263 2024-02-01 ated
#> 264 2024-03-01 ated
#> 265 2024-04-01 ated
#> 266 2024-05-01 ated
#> 267 2024-06-01 ated
#> 268 2024-07-01 ated
#> 269 2024-08-01 ated
#> 270 2024-09-01 ated
#> 271 2024-10-01 ated
#> 272 2024-11-01 ated
#> 273 2024-12-01 ated
#> 274 2025-01-01 ated
#> 275 2025-02-01 ated
#> 276 2025-03-01 ated
#> 277 2025-04-01 ated
#> 278 2025-05-01 ated
#> 279 2025-06-01 ated
#> 280 2025-07-01 ated
#> 281 2025-08-01 ated
#> 282 2025-09-01 ated
#> 283 2025-10-01 ated
#> 284 2025-11-01 ated
#> 285 2025-12-01 ated
#> 286 2026-01-01 ated
#> 287 2026-02-01 ated
#> 288 2026-03-01 ated
#> 289 2020-04-01 bank_levy
#> 290 2020-05-01 bank_levy
#> 291 2020-06-01 bank_levy
#> 292 2020-07-01 bank_levy
#> 293 2020-08-01 bank_levy
#> 294 2020-09-01 bank_levy
#> 295 2020-10-01 bank_levy
#> 296 2020-11-01 bank_levy
#> 297 2020-12-01 bank_levy
#> 298 2021-01-01 bank_levy
#> 299 2021-02-01 bank_levy
#> 300 2021-03-01 bank_levy
#> 301 2021-04-01 bank_levy
#> 302 2021-05-01 bank_levy
#> 303 2021-06-01 bank_levy
#> 304 2021-07-01 bank_levy
#> 305 2021-08-01 bank_levy
#> 306 2021-09-01 bank_levy
#> 307 2021-10-01 bank_levy
#> 308 2021-11-01 bank_levy
#> 309 2021-12-01 bank_levy
#> 310 2022-01-01 bank_levy
#> 311 2022-02-01 bank_levy
#> 312 2022-03-01 bank_levy
#> 313 2022-04-01 bank_levy
#> 314 2022-05-01 bank_levy
#> 315 2022-06-01 bank_levy
#> 316 2022-07-01 bank_levy
#> 317 2022-08-01 bank_levy
#> 318 2022-09-01 bank_levy
#> 319 2022-10-01 bank_levy
#> 320 2022-11-01 bank_levy
#> 321 2022-12-01 bank_levy
#> 322 2023-01-01 bank_levy
#> 323 2023-02-01 bank_levy
#> 324 2023-03-01 bank_levy
#> 325 2023-04-01 bank_levy
#> 326 2023-05-01 bank_levy
#> 327 2023-06-01 bank_levy
#> 328 2023-07-01 bank_levy
#> 329 2023-08-01 bank_levy
#> 330 2023-09-01 bank_levy
#> 331 2023-10-01 bank_levy
#> 332 2023-11-01 bank_levy
#> 333 2023-12-01 bank_levy
#> 334 2024-01-01 bank_levy
#> 335 2024-02-01 bank_levy
#> 336 2024-03-01 bank_levy
#> 337 2024-04-01 bank_levy
#> 338 2024-05-01 bank_levy
#> 339 2024-06-01 bank_levy
#> 340 2024-07-01 bank_levy
#> 341 2024-08-01 bank_levy
#> 342 2024-09-01 bank_levy
#> 343 2024-10-01 bank_levy
#> 344 2024-11-01 bank_levy
#> 345 2024-12-01 bank_levy
#> 346 2025-01-01 bank_levy
#> 347 2025-02-01 bank_levy
#> 348 2025-03-01 bank_levy
#> 349 2025-04-01 bank_levy
#> 350 2025-05-01 bank_levy
#> 351 2025-06-01 bank_levy
#> 352 2025-07-01 bank_levy
#> 353 2025-08-01 bank_levy
#> 354 2025-09-01 bank_levy
#> 355 2025-10-01 bank_levy
#> 356 2025-11-01 bank_levy
#> 357 2025-12-01 bank_levy
#> 358 2026-01-01 bank_levy
#> 359 2026-02-01 bank_levy
#> 360 2026-03-01 bank_levy
#> 361 2020-04-01 bank_payroll_tax
#> 362 2020-05-01 bank_payroll_tax
#> 363 2020-06-01 bank_payroll_tax
#> 364 2020-07-01 bank_payroll_tax
#> 365 2020-08-01 bank_payroll_tax
#> 366 2020-09-01 bank_payroll_tax
#> 367 2020-10-01 bank_payroll_tax
#> 368 2020-11-01 bank_payroll_tax
#> 369 2020-12-01 bank_payroll_tax
#> 370 2021-01-01 bank_payroll_tax
#> 371 2021-02-01 bank_payroll_tax
#> 372 2021-03-01 bank_payroll_tax
#> 373 2021-04-01 bank_payroll_tax
#> 374 2021-05-01 bank_payroll_tax
#> 375 2021-06-01 bank_payroll_tax
#> 376 2021-07-01 bank_payroll_tax
#> 377 2021-08-01 bank_payroll_tax
#> 378 2021-09-01 bank_payroll_tax
#> 379 2021-10-01 bank_payroll_tax
#> 380 2021-11-01 bank_payroll_tax
#> 381 2021-12-01 bank_payroll_tax
#> 382 2022-01-01 bank_payroll_tax
#> 383 2022-02-01 bank_payroll_tax
#> 384 2022-03-01 bank_payroll_tax
#> 385 2022-04-01 bank_payroll_tax
#> 386 2022-05-01 bank_payroll_tax
#> 387 2022-06-01 bank_payroll_tax
#> 388 2022-07-01 bank_payroll_tax
#> 389 2022-08-01 bank_payroll_tax
#> 390 2022-09-01 bank_payroll_tax
#> 391 2022-10-01 bank_payroll_tax
#> 392 2022-11-01 bank_payroll_tax
#> 393 2022-12-01 bank_payroll_tax
#> 394 2023-01-01 bank_payroll_tax
#> 395 2023-02-01 bank_payroll_tax
#> 396 2023-03-01 bank_payroll_tax
#> 397 2023-04-01 bank_payroll_tax
#> 398 2023-05-01 bank_payroll_tax
#> 399 2023-06-01 bank_payroll_tax
#> 400 2023-07-01 bank_payroll_tax
#> 401 2023-08-01 bank_payroll_tax
#> 402 2023-09-01 bank_payroll_tax
#> 403 2023-10-01 bank_payroll_tax
#> 404 2023-11-01 bank_payroll_tax
#> 405 2023-12-01 bank_payroll_tax
#> 406 2024-01-01 bank_payroll_tax
#> 407 2024-02-01 bank_payroll_tax
#> 408 2024-03-01 bank_payroll_tax
#> 409 2024-04-01 bank_payroll_tax
#> 410 2024-05-01 bank_payroll_tax
#> 411 2024-06-01 bank_payroll_tax
#> 412 2024-07-01 bank_payroll_tax
#> 413 2024-08-01 bank_payroll_tax
#> 414 2024-09-01 bank_payroll_tax
#> 415 2024-10-01 bank_payroll_tax
#> 416 2024-11-01 bank_payroll_tax
#> 417 2024-12-01 bank_payroll_tax
#> 418 2025-01-01 bank_payroll_tax
#> 419 2025-02-01 bank_payroll_tax
#> 420 2025-03-01 bank_payroll_tax
#> 421 2025-04-01 bank_payroll_tax
#> 422 2025-05-01 bank_payroll_tax
#> 423 2025-06-01 bank_payroll_tax
#> 424 2025-07-01 bank_payroll_tax
#> 425 2025-08-01 bank_payroll_tax
#> 426 2025-09-01 bank_payroll_tax
#> 427 2025-10-01 bank_payroll_tax
#> 428 2025-11-01 bank_payroll_tax
#> 429 2025-12-01 bank_payroll_tax
#> 430 2026-01-01 bank_payroll_tax
#> 431 2026-02-01 bank_payroll_tax
#> 432 2026-03-01 bank_payroll_tax
#> 433 2020-04-01 bank_surcharge
#> 434 2020-05-01 bank_surcharge
#> 435 2020-06-01 bank_surcharge
#> 436 2020-07-01 bank_surcharge
#> 437 2020-08-01 bank_surcharge
#> 438 2020-09-01 bank_surcharge
#> 439 2020-10-01 bank_surcharge
#> 440 2020-11-01 bank_surcharge
#> 441 2020-12-01 bank_surcharge
#> 442 2021-01-01 bank_surcharge
#> 443 2021-02-01 bank_surcharge
#> 444 2021-03-01 bank_surcharge
#> 445 2021-04-01 bank_surcharge
#> 446 2021-05-01 bank_surcharge
#> 447 2021-06-01 bank_surcharge
#> 448 2021-07-01 bank_surcharge
#> 449 2021-08-01 bank_surcharge
#> 450 2021-09-01 bank_surcharge
#> 451 2021-10-01 bank_surcharge
#> 452 2021-11-01 bank_surcharge
#> 453 2021-12-01 bank_surcharge
#> 454 2022-01-01 bank_surcharge
#> 455 2022-02-01 bank_surcharge
#> 456 2022-03-01 bank_surcharge
#> 457 2022-04-01 bank_surcharge
#> 458 2022-05-01 bank_surcharge
#> 459 2022-06-01 bank_surcharge
#> 460 2022-07-01 bank_surcharge
#> 461 2022-08-01 bank_surcharge
#> 462 2022-09-01 bank_surcharge
#> 463 2022-10-01 bank_surcharge
#> 464 2022-11-01 bank_surcharge
#> 465 2022-12-01 bank_surcharge
#> 466 2023-01-01 bank_surcharge
#> 467 2023-02-01 bank_surcharge
#> 468 2023-03-01 bank_surcharge
#> 469 2023-04-01 bank_surcharge
#> 470 2023-05-01 bank_surcharge
#> 471 2023-06-01 bank_surcharge
#> 472 2023-07-01 bank_surcharge
#> 473 2023-08-01 bank_surcharge
#> 474 2023-09-01 bank_surcharge
#> 475 2023-10-01 bank_surcharge
#> 476 2023-11-01 bank_surcharge
#> 477 2023-12-01 bank_surcharge
#> 478 2024-01-01 bank_surcharge
#> 479 2024-02-01 bank_surcharge
#> 480 2024-03-01 bank_surcharge
#> 481 2024-04-01 bank_surcharge
#> 482 2024-05-01 bank_surcharge
#> 483 2024-06-01 bank_surcharge
#> 484 2024-07-01 bank_surcharge
#> 485 2024-08-01 bank_surcharge
#> 486 2024-09-01 bank_surcharge
#> 487 2024-10-01 bank_surcharge
#> 488 2024-11-01 bank_surcharge
#> 489 2024-12-01 bank_surcharge
#> 490 2025-01-01 bank_surcharge
#> 491 2025-02-01 bank_surcharge
#> 492 2025-03-01 bank_surcharge
#> 493 2025-04-01 bank_surcharge
#> 494 2025-05-01 bank_surcharge
#> 495 2025-06-01 bank_surcharge
#> 496 2025-07-01 bank_surcharge
#> 497 2025-08-01 bank_surcharge
#> 498 2025-09-01 bank_surcharge
#> 499 2025-10-01 bank_surcharge
#> 500 2025-11-01 bank_surcharge
#> 501 2025-12-01 bank_surcharge
#> 502 2026-01-01 bank_surcharge
#> 503 2026-02-01 bank_surcharge
#> 504 2026-03-01 bank_surcharge
#> 505 2020-04-01 beer_duty
#> 506 2020-05-01 beer_duty
#> 507 2020-06-01 beer_duty
#> 508 2020-07-01 beer_duty
#> 509 2020-08-01 beer_duty
#> 510 2020-09-01 beer_duty
#> 511 2020-10-01 beer_duty
#> 512 2020-11-01 beer_duty
#> 513 2020-12-01 beer_duty
#> 514 2021-01-01 beer_duty
#> 515 2021-02-01 beer_duty
#> 516 2021-03-01 beer_duty
#> 517 2021-04-01 beer_duty
#> 518 2021-05-01 beer_duty
#> 519 2021-06-01 beer_duty
#> 520 2021-07-01 beer_duty
#> 521 2021-08-01 beer_duty
#> 522 2021-09-01 beer_duty
#> 523 2021-10-01 beer_duty
#> 524 2021-11-01 beer_duty
#> 525 2021-12-01 beer_duty
#> 526 2022-01-01 beer_duty
#> 527 2022-02-01 beer_duty
#> 528 2022-03-01 beer_duty
#> 529 2022-04-01 beer_duty
#> 530 2022-05-01 beer_duty
#> 531 2022-06-01 beer_duty
#> 532 2022-07-01 beer_duty
#> 533 2022-08-01 beer_duty
#> 534 2022-09-01 beer_duty
#> 535 2022-10-01 beer_duty
#> 536 2022-11-01 beer_duty
#> 537 2022-12-01 beer_duty
#> 538 2023-01-01 beer_duty
#> 539 2023-02-01 beer_duty
#> 540 2023-03-01 beer_duty
#> 541 2023-04-01 beer_duty
#> 542 2023-05-01 beer_duty
#> 543 2023-06-01 beer_duty
#> 544 2023-07-01 beer_duty
#> 545 2023-08-01 beer_duty
#> 546 2023-09-01 beer_duty
#> 547 2023-10-01 beer_duty
#> 548 2023-11-01 beer_duty
#> 549 2023-12-01 beer_duty
#> 550 2024-01-01 beer_duty
#> 551 2024-02-01 beer_duty
#> 552 2024-03-01 beer_duty
#> 553 2024-04-01 beer_duty
#> 554 2024-05-01 beer_duty
#> 555 2024-06-01 beer_duty
#> 556 2024-07-01 beer_duty
#> 557 2024-08-01 beer_duty
#> 558 2024-09-01 beer_duty
#> 559 2024-10-01 beer_duty
#> 560 2024-11-01 beer_duty
#> 561 2024-12-01 beer_duty
#> 562 2025-01-01 beer_duty
#> 563 2025-02-01 beer_duty
#> 564 2025-03-01 beer_duty
#> 565 2025-04-01 beer_duty
#> 566 2025-05-01 beer_duty
#> 567 2025-06-01 beer_duty
#> 568 2025-07-01 beer_duty
#> 569 2025-08-01 beer_duty
#> 570 2025-09-01 beer_duty
#> 571 2025-10-01 beer_duty
#> 572 2025-11-01 beer_duty
#> 573 2025-12-01 beer_duty
#> 574 2026-01-01 beer_duty
#> 575 2026-02-01 beer_duty
#> 576 2026-03-01 beer_duty
#> 577 2020-04-01 capital_gains_tax
#> 578 2020-05-01 capital_gains_tax
#> 579 2020-06-01 capital_gains_tax
#> 580 2020-07-01 capital_gains_tax
#> 581 2020-08-01 capital_gains_tax
#> 582 2020-09-01 capital_gains_tax
#> 583 2020-10-01 capital_gains_tax
#> 584 2020-11-01 capital_gains_tax
#> 585 2020-12-01 capital_gains_tax
#> 586 2021-01-01 capital_gains_tax
#> 587 2021-02-01 capital_gains_tax
#> 588 2021-03-01 capital_gains_tax
#> 589 2021-04-01 capital_gains_tax
#> 590 2021-05-01 capital_gains_tax
#> 591 2021-06-01 capital_gains_tax
#> 592 2021-07-01 capital_gains_tax
#> 593 2021-08-01 capital_gains_tax
#> 594 2021-09-01 capital_gains_tax
#> 595 2021-10-01 capital_gains_tax
#> 596 2021-11-01 capital_gains_tax
#> 597 2021-12-01 capital_gains_tax
#> 598 2022-01-01 capital_gains_tax
#> 599 2022-02-01 capital_gains_tax
#> 600 2022-03-01 capital_gains_tax
#> 601 2022-04-01 capital_gains_tax
#> 602 2022-05-01 capital_gains_tax
#> 603 2022-06-01 capital_gains_tax
#> 604 2022-07-01 capital_gains_tax
#> 605 2022-08-01 capital_gains_tax
#> 606 2022-09-01 capital_gains_tax
#> 607 2022-10-01 capital_gains_tax
#> 608 2022-11-01 capital_gains_tax
#> 609 2022-12-01 capital_gains_tax
#> 610 2023-01-01 capital_gains_tax
#> 611 2023-02-01 capital_gains_tax
#> 612 2023-03-01 capital_gains_tax
#> 613 2023-04-01 capital_gains_tax
#> 614 2023-05-01 capital_gains_tax
#> 615 2023-06-01 capital_gains_tax
#> 616 2023-07-01 capital_gains_tax
#> 617 2023-08-01 capital_gains_tax
#> 618 2023-09-01 capital_gains_tax
#> 619 2023-10-01 capital_gains_tax
#> 620 2023-11-01 capital_gains_tax
#> 621 2023-12-01 capital_gains_tax
#> 622 2024-01-01 capital_gains_tax
#> 623 2024-02-01 capital_gains_tax
#> 624 2024-03-01 capital_gains_tax
#> 625 2024-04-01 capital_gains_tax
#> 626 2024-05-01 capital_gains_tax
#> 627 2024-06-01 capital_gains_tax
#> 628 2024-07-01 capital_gains_tax
#> 629 2024-08-01 capital_gains_tax
#> 630 2024-09-01 capital_gains_tax
#> 631 2024-10-01 capital_gains_tax
#> 632 2024-11-01 capital_gains_tax
#> 633 2024-12-01 capital_gains_tax
#> 634 2025-01-01 capital_gains_tax
#> 635 2025-02-01 capital_gains_tax
#> 636 2025-03-01 capital_gains_tax
#> 637 2025-04-01 capital_gains_tax
#> 638 2025-05-01 capital_gains_tax
#> 639 2025-06-01 capital_gains_tax
#> 640 2025-07-01 capital_gains_tax
#> 641 2025-08-01 capital_gains_tax
#> 642 2025-09-01 capital_gains_tax
#> 643 2025-10-01 capital_gains_tax
#> 644 2025-11-01 capital_gains_tax
#> 645 2025-12-01 capital_gains_tax
#> 646 2026-01-01 capital_gains_tax
#> 647 2026-02-01 capital_gains_tax
#> 648 2026-03-01 capital_gains_tax
#> 649 2020-04-01 cider_duty
#> 650 2020-05-01 cider_duty
#> 651 2020-06-01 cider_duty
#> 652 2020-07-01 cider_duty
#> 653 2020-08-01 cider_duty
#> 654 2020-09-01 cider_duty
#> 655 2020-10-01 cider_duty
#> 656 2020-11-01 cider_duty
#> 657 2020-12-01 cider_duty
#> 658 2021-01-01 cider_duty
#> 659 2021-02-01 cider_duty
#> 660 2021-03-01 cider_duty
#> 661 2021-04-01 cider_duty
#> 662 2021-05-01 cider_duty
#> 663 2021-06-01 cider_duty
#> 664 2021-07-01 cider_duty
#> 665 2021-08-01 cider_duty
#> 666 2021-09-01 cider_duty
#> 667 2021-10-01 cider_duty
#> 668 2021-11-01 cider_duty
#> 669 2021-12-01 cider_duty
#> 670 2022-01-01 cider_duty
#> 671 2022-02-01 cider_duty
#> 672 2022-03-01 cider_duty
#> 673 2022-04-01 cider_duty
#> 674 2022-05-01 cider_duty
#> 675 2022-06-01 cider_duty
#> 676 2022-07-01 cider_duty
#> 677 2022-08-01 cider_duty
#> 678 2022-09-01 cider_duty
#> 679 2022-10-01 cider_duty
#> 680 2022-11-01 cider_duty
#> 681 2022-12-01 cider_duty
#> 682 2023-01-01 cider_duty
#> 683 2023-02-01 cider_duty
#> 684 2023-03-01 cider_duty
#> 685 2023-04-01 cider_duty
#> 686 2023-05-01 cider_duty
#> 687 2023-06-01 cider_duty
#> 688 2023-07-01 cider_duty
#> 689 2023-08-01 cider_duty
#> 690 2023-09-01 cider_duty
#> 691 2023-10-01 cider_duty
#> 692 2023-11-01 cider_duty
#> 693 2023-12-01 cider_duty
#> 694 2024-01-01 cider_duty
#> 695 2024-02-01 cider_duty
#> 696 2024-03-01 cider_duty
#> 697 2024-04-01 cider_duty
#> 698 2024-05-01 cider_duty
#> 699 2024-06-01 cider_duty
#> 700 2024-07-01 cider_duty
#> 701 2024-08-01 cider_duty
#> 702 2024-09-01 cider_duty
#> 703 2024-10-01 cider_duty
#> 704 2024-11-01 cider_duty
#> 705 2024-12-01 cider_duty
#> 706 2025-01-01 cider_duty
#> 707 2025-02-01 cider_duty
#> 708 2025-03-01 cider_duty
#> 709 2025-04-01 cider_duty
#> 710 2025-05-01 cider_duty
#> 711 2025-06-01 cider_duty
#> 712 2025-07-01 cider_duty
#> 713 2025-08-01 cider_duty
#> 714 2025-09-01 cider_duty
#> 715 2025-10-01 cider_duty
#> 716 2025-11-01 cider_duty
#> 717 2025-12-01 cider_duty
#> 718 2026-01-01 cider_duty
#> 719 2026-02-01 cider_duty
#> 720 2026-03-01 cider_duty
#> 721 2020-04-01 climate_change_levy
#> 722 2020-05-01 climate_change_levy
#> 723 2020-06-01 climate_change_levy
#> 724 2020-07-01 climate_change_levy
#> 725 2020-08-01 climate_change_levy
#> 726 2020-09-01 climate_change_levy
#> 727 2020-10-01 climate_change_levy
#> 728 2020-11-01 climate_change_levy
#> 729 2020-12-01 climate_change_levy
#> 730 2021-01-01 climate_change_levy
#> 731 2021-02-01 climate_change_levy
#> 732 2021-03-01 climate_change_levy
#> 733 2021-04-01 climate_change_levy
#> 734 2021-05-01 climate_change_levy
#> 735 2021-06-01 climate_change_levy
#> 736 2021-07-01 climate_change_levy
#> 737 2021-08-01 climate_change_levy
#> 738 2021-09-01 climate_change_levy
#> 739 2021-10-01 climate_change_levy
#> 740 2021-11-01 climate_change_levy
#> 741 2021-12-01 climate_change_levy
#> 742 2022-01-01 climate_change_levy
#> 743 2022-02-01 climate_change_levy
#> 744 2022-03-01 climate_change_levy
#> 745 2022-04-01 climate_change_levy
#> 746 2022-05-01 climate_change_levy
#> 747 2022-06-01 climate_change_levy
#> 748 2022-07-01 climate_change_levy
#> 749 2022-08-01 climate_change_levy
#> 750 2022-09-01 climate_change_levy
#> 751 2022-10-01 climate_change_levy
#> 752 2022-11-01 climate_change_levy
#> 753 2022-12-01 climate_change_levy
#> 754 2023-01-01 climate_change_levy
#> 755 2023-02-01 climate_change_levy
#> 756 2023-03-01 climate_change_levy
#> 757 2023-04-01 climate_change_levy
#> 758 2023-05-01 climate_change_levy
#> 759 2023-06-01 climate_change_levy
#> 760 2023-07-01 climate_change_levy
#> 761 2023-08-01 climate_change_levy
#> 762 2023-09-01 climate_change_levy
#> 763 2023-10-01 climate_change_levy
#> 764 2023-11-01 climate_change_levy
#> 765 2023-12-01 climate_change_levy
#> 766 2024-01-01 climate_change_levy
#> 767 2024-02-01 climate_change_levy
#> 768 2024-03-01 climate_change_levy
#> 769 2024-04-01 climate_change_levy
#> 770 2024-05-01 climate_change_levy
#> 771 2024-06-01 climate_change_levy
#> 772 2024-07-01 climate_change_levy
#> 773 2024-08-01 climate_change_levy
#> 774 2024-09-01 climate_change_levy
#> 775 2024-10-01 climate_change_levy
#> 776 2024-11-01 climate_change_levy
#> 777 2024-12-01 climate_change_levy
#> 778 2025-01-01 climate_change_levy
#> 779 2025-02-01 climate_change_levy
#> 780 2025-03-01 climate_change_levy
#> 781 2025-04-01 climate_change_levy
#> 782 2025-05-01 climate_change_levy
#> 783 2025-06-01 climate_change_levy
#> 784 2025-07-01 climate_change_levy
#> 785 2025-08-01 climate_change_levy
#> 786 2025-09-01 climate_change_levy
#> 787 2025-10-01 climate_change_levy
#> 788 2025-11-01 climate_change_levy
#> 789 2025-12-01 climate_change_levy
#> 790 2026-01-01 climate_change_levy
#> 791 2026-02-01 climate_change_levy
#> 792 2026-03-01 climate_change_levy
#> 793 2020-04-01 corporation_tax
#> 794 2020-05-01 corporation_tax
#> 795 2020-06-01 corporation_tax
#> 796 2020-07-01 corporation_tax
#> 797 2020-08-01 corporation_tax
#> 798 2020-09-01 corporation_tax
#> 799 2020-10-01 corporation_tax
#> 800 2020-11-01 corporation_tax
#> 801 2020-12-01 corporation_tax
#> 802 2021-01-01 corporation_tax
#> 803 2021-02-01 corporation_tax
#> 804 2021-03-01 corporation_tax
#> 805 2021-04-01 corporation_tax
#> 806 2021-05-01 corporation_tax
#> 807 2021-06-01 corporation_tax
#> 808 2021-07-01 corporation_tax
#> 809 2021-08-01 corporation_tax
#> 810 2021-09-01 corporation_tax
#> 811 2021-10-01 corporation_tax
#> 812 2021-11-01 corporation_tax
#> 813 2021-12-01 corporation_tax
#> 814 2022-01-01 corporation_tax
#> 815 2022-02-01 corporation_tax
#> 816 2022-03-01 corporation_tax
#> 817 2022-04-01 corporation_tax
#> 818 2022-05-01 corporation_tax
#> 819 2022-06-01 corporation_tax
#> 820 2022-07-01 corporation_tax
#> 821 2022-08-01 corporation_tax
#> 822 2022-09-01 corporation_tax
#> 823 2022-10-01 corporation_tax
#> 824 2022-11-01 corporation_tax
#> 825 2022-12-01 corporation_tax
#> 826 2023-01-01 corporation_tax
#> 827 2023-02-01 corporation_tax
#> 828 2023-03-01 corporation_tax
#> 829 2023-04-01 corporation_tax
#> 830 2023-05-01 corporation_tax
#> 831 2023-06-01 corporation_tax
#> 832 2023-07-01 corporation_tax
#> 833 2023-08-01 corporation_tax
#> 834 2023-09-01 corporation_tax
#> 835 2023-10-01 corporation_tax
#> 836 2023-11-01 corporation_tax
#> 837 2023-12-01 corporation_tax
#> 838 2024-01-01 corporation_tax
#> 839 2024-02-01 corporation_tax
#> 840 2024-03-01 corporation_tax
#> 841 2024-04-01 corporation_tax
#> 842 2024-05-01 corporation_tax
#> 843 2024-06-01 corporation_tax
#> 844 2024-07-01 corporation_tax
#> 845 2024-08-01 corporation_tax
#> 846 2024-09-01 corporation_tax
#> 847 2024-10-01 corporation_tax
#> 848 2024-11-01 corporation_tax
#> 849 2024-12-01 corporation_tax
#> 850 2025-01-01 corporation_tax
#> 851 2025-02-01 corporation_tax
#> 852 2025-03-01 corporation_tax
#> 853 2025-04-01 corporation_tax
#> 854 2025-05-01 corporation_tax
#> 855 2025-06-01 corporation_tax
#> 856 2025-07-01 corporation_tax
#> 857 2025-08-01 corporation_tax
#> 858 2025-09-01 corporation_tax
#> 859 2025-10-01 corporation_tax
#> 860 2025-11-01 corporation_tax
#> 861 2025-12-01 corporation_tax
#> 862 2026-01-01 corporation_tax
#> 863 2026-02-01 corporation_tax
#> 864 2026-03-01 corporation_tax
#> 865 2020-04-01 customs_duties
#> 866 2020-05-01 customs_duties
#> 867 2020-06-01 customs_duties
#> 868 2020-07-01 customs_duties
#> 869 2020-08-01 customs_duties
#> 870 2020-09-01 customs_duties
#> 871 2020-10-01 customs_duties
#> 872 2020-11-01 customs_duties
#> 873 2020-12-01 customs_duties
#> 874 2021-01-01 customs_duties
#> 875 2021-02-01 customs_duties
#> 876 2021-03-01 customs_duties
#> 877 2021-04-01 customs_duties
#> 878 2021-05-01 customs_duties
#> 879 2021-06-01 customs_duties
#> 880 2021-07-01 customs_duties
#> 881 2021-08-01 customs_duties
#> 882 2021-09-01 customs_duties
#> 883 2021-10-01 customs_duties
#> 884 2021-11-01 customs_duties
#> 885 2021-12-01 customs_duties
#> 886 2022-01-01 customs_duties
#> 887 2022-02-01 customs_duties
#> 888 2022-03-01 customs_duties
#> 889 2022-04-01 customs_duties
#> 890 2022-05-01 customs_duties
#> 891 2022-06-01 customs_duties
#> 892 2022-07-01 customs_duties
#> 893 2022-08-01 customs_duties
#> 894 2022-09-01 customs_duties
#> 895 2022-10-01 customs_duties
#> 896 2022-11-01 customs_duties
#> 897 2022-12-01 customs_duties
#> 898 2023-01-01 customs_duties
#> 899 2023-02-01 customs_duties
#> 900 2023-03-01 customs_duties
#> 901 2023-04-01 customs_duties
#> 902 2023-05-01 customs_duties
#> 903 2023-06-01 customs_duties
#> 904 2023-07-01 customs_duties
#> 905 2023-08-01 customs_duties
#> 906 2023-09-01 customs_duties
#> 907 2023-10-01 customs_duties
#> 908 2023-11-01 customs_duties
#> 909 2023-12-01 customs_duties
#> 910 2024-01-01 customs_duties
#> 911 2024-02-01 customs_duties
#> 912 2024-03-01 customs_duties
#> 913 2024-04-01 customs_duties
#> 914 2024-05-01 customs_duties
#> 915 2024-06-01 customs_duties
#> 916 2024-07-01 customs_duties
#> 917 2024-08-01 customs_duties
#> 918 2024-09-01 customs_duties
#> 919 2024-10-01 customs_duties
#> 920 2024-11-01 customs_duties
#> 921 2024-12-01 customs_duties
#> 922 2025-01-01 customs_duties
#> 923 2025-02-01 customs_duties
#> 924 2025-03-01 customs_duties
#> 925 2025-04-01 customs_duties
#> 926 2025-05-01 customs_duties
#> 927 2025-06-01 customs_duties
#> 928 2025-07-01 customs_duties
#> 929 2025-08-01 customs_duties
#> 930 2025-09-01 customs_duties
#> 931 2025-10-01 customs_duties
#> 932 2025-11-01 customs_duties
#> 933 2025-12-01 customs_duties
#> 934 2026-01-01 customs_duties
#> 935 2026-02-01 customs_duties
#> 936 2026-03-01 customs_duties
#> 937 2020-04-01 digital_services_tax
#> 938 2020-05-01 digital_services_tax
#> 939 2020-06-01 digital_services_tax
#> 940 2020-07-01 digital_services_tax
#> 941 2020-08-01 digital_services_tax
#> 942 2020-09-01 digital_services_tax
#> 943 2020-10-01 digital_services_tax
#> 944 2020-11-01 digital_services_tax
#> 945 2020-12-01 digital_services_tax
#> 946 2021-01-01 digital_services_tax
#> 947 2021-02-01 digital_services_tax
#> 948 2021-03-01 digital_services_tax
#> 949 2021-04-01 digital_services_tax
#> 950 2021-05-01 digital_services_tax
#> 951 2021-06-01 digital_services_tax
#> 952 2021-07-01 digital_services_tax
#> 953 2021-08-01 digital_services_tax
#> 954 2021-09-01 digital_services_tax
#> 955 2021-10-01 digital_services_tax
#> 956 2021-11-01 digital_services_tax
#> 957 2021-12-01 digital_services_tax
#> 958 2022-01-01 digital_services_tax
#> 959 2022-02-01 digital_services_tax
#> 960 2022-03-01 digital_services_tax
#> 961 2022-04-01 digital_services_tax
#> 962 2022-05-01 digital_services_tax
#> 963 2022-06-01 digital_services_tax
#> 964 2022-07-01 digital_services_tax
#> 965 2022-08-01 digital_services_tax
#> 966 2022-09-01 digital_services_tax
#> 967 2022-10-01 digital_services_tax
#> 968 2022-11-01 digital_services_tax
#> 969 2022-12-01 digital_services_tax
#> 970 2023-01-01 digital_services_tax
#> 971 2023-02-01 digital_services_tax
#> 972 2023-03-01 digital_services_tax
#> 973 2023-04-01 digital_services_tax
#> 974 2023-05-01 digital_services_tax
#> 975 2023-06-01 digital_services_tax
#> 976 2023-07-01 digital_services_tax
#> 977 2023-08-01 digital_services_tax
#> 978 2023-09-01 digital_services_tax
#> 979 2023-10-01 digital_services_tax
#> 980 2023-11-01 digital_services_tax
#> 981 2023-12-01 digital_services_tax
#> 982 2024-01-01 digital_services_tax
#> 983 2024-02-01 digital_services_tax
#> 984 2024-03-01 digital_services_tax
#> 985 2024-04-01 digital_services_tax
#> 986 2024-05-01 digital_services_tax
#> 987 2024-06-01 digital_services_tax
#> 988 2024-07-01 digital_services_tax
#> 989 2024-08-01 digital_services_tax
#> 990 2024-09-01 digital_services_tax
#> 991 2024-10-01 digital_services_tax
#> 992 2024-11-01 digital_services_tax
#> 993 2024-12-01 digital_services_tax
#> 994 2025-01-01 digital_services_tax
#> 995 2025-02-01 digital_services_tax
#> 996 2025-03-01 digital_services_tax
#> 997 2025-04-01 digital_services_tax
#> 998 2025-05-01 digital_services_tax
#> 999 2025-06-01 digital_services_tax
#> 1000 2025-07-01 digital_services_tax
#> 1001 2025-08-01 digital_services_tax
#> 1002 2025-09-01 digital_services_tax
#> 1003 2025-10-01 digital_services_tax
#> 1004 2025-11-01 digital_services_tax
#> 1005 2025-12-01 digital_services_tax
#> 1006 2026-01-01 digital_services_tax
#> 1007 2026-02-01 digital_services_tax
#> 1008 2026-03-01 digital_services_tax
#> 1009 2020-04-01 diverted_profits_tax
#> 1010 2020-05-01 diverted_profits_tax
#> 1011 2020-06-01 diverted_profits_tax
#> 1012 2020-07-01 diverted_profits_tax
#> 1013 2020-08-01 diverted_profits_tax
#> 1014 2020-09-01 diverted_profits_tax
#> 1015 2020-10-01 diverted_profits_tax
#> 1016 2020-11-01 diverted_profits_tax
#> 1017 2020-12-01 diverted_profits_tax
#> 1018 2021-01-01 diverted_profits_tax
#> 1019 2021-02-01 diverted_profits_tax
#> 1020 2021-03-01 diverted_profits_tax
#> 1021 2021-04-01 diverted_profits_tax
#> 1022 2021-05-01 diverted_profits_tax
#> 1023 2021-06-01 diverted_profits_tax
#> 1024 2021-07-01 diverted_profits_tax
#> 1025 2021-08-01 diverted_profits_tax
#> 1026 2021-09-01 diverted_profits_tax
#> 1027 2021-10-01 diverted_profits_tax
#> 1028 2021-11-01 diverted_profits_tax
#> 1029 2021-12-01 diverted_profits_tax
#> 1030 2022-01-01 diverted_profits_tax
#> 1031 2022-02-01 diverted_profits_tax
#> 1032 2022-03-01 diverted_profits_tax
#> 1033 2022-04-01 diverted_profits_tax
#> 1034 2022-05-01 diverted_profits_tax
#> 1035 2022-06-01 diverted_profits_tax
#> 1036 2022-07-01 diverted_profits_tax
#> 1037 2022-08-01 diverted_profits_tax
#> 1038 2022-09-01 diverted_profits_tax
#> 1039 2022-10-01 diverted_profits_tax
#> 1040 2022-11-01 diverted_profits_tax
#> 1041 2022-12-01 diverted_profits_tax
#> 1042 2023-01-01 diverted_profits_tax
#> 1043 2023-02-01 diverted_profits_tax
#> 1044 2023-03-01 diverted_profits_tax
#> 1045 2023-04-01 diverted_profits_tax
#> 1046 2023-05-01 diverted_profits_tax
#> 1047 2023-06-01 diverted_profits_tax
#> 1048 2023-07-01 diverted_profits_tax
#> 1049 2023-08-01 diverted_profits_tax
#> 1050 2023-09-01 diverted_profits_tax
#> 1051 2023-10-01 diverted_profits_tax
#> 1052 2023-11-01 diverted_profits_tax
#> 1053 2023-12-01 diverted_profits_tax
#> 1054 2024-01-01 diverted_profits_tax
#> 1055 2024-02-01 diverted_profits_tax
#> 1056 2024-03-01 diverted_profits_tax
#> 1057 2024-04-01 diverted_profits_tax
#> 1058 2024-05-01 diverted_profits_tax
#> 1059 2024-06-01 diverted_profits_tax
#> 1060 2024-07-01 diverted_profits_tax
#> 1061 2024-08-01 diverted_profits_tax
#> 1062 2024-09-01 diverted_profits_tax
#> 1063 2024-10-01 diverted_profits_tax
#> 1064 2024-11-01 diverted_profits_tax
#> 1065 2024-12-01 diverted_profits_tax
#> 1066 2025-01-01 diverted_profits_tax
#> 1067 2025-02-01 diverted_profits_tax
#> 1068 2025-03-01 diverted_profits_tax
#> 1069 2025-04-01 diverted_profits_tax
#> 1070 2025-05-01 diverted_profits_tax
#> 1071 2025-06-01 diverted_profits_tax
#> 1072 2025-07-01 diverted_profits_tax
#> 1073 2025-08-01 diverted_profits_tax
#> 1074 2025-09-01 diverted_profits_tax
#> 1075 2025-10-01 diverted_profits_tax
#> 1076 2025-11-01 diverted_profits_tax
#> 1077 2025-12-01 diverted_profits_tax
#> 1078 2026-01-01 diverted_profits_tax
#> 1079 2026-02-01 diverted_profits_tax
#> 1080 2026-03-01 diverted_profits_tax
#> 1081 2020-04-01 economic_crime_levy
#> 1082 2020-05-01 economic_crime_levy
#> 1083 2020-06-01 economic_crime_levy
#> 1084 2020-07-01 economic_crime_levy
#> 1085 2020-08-01 economic_crime_levy
#> 1086 2020-09-01 economic_crime_levy
#> 1087 2020-10-01 economic_crime_levy
#> 1088 2020-11-01 economic_crime_levy
#> 1089 2020-12-01 economic_crime_levy
#> 1090 2021-01-01 economic_crime_levy
#> 1091 2021-02-01 economic_crime_levy
#> 1092 2021-03-01 economic_crime_levy
#> 1093 2021-04-01 economic_crime_levy
#> 1094 2021-05-01 economic_crime_levy
#> 1095 2021-06-01 economic_crime_levy
#> 1096 2021-07-01 economic_crime_levy
#> 1097 2021-08-01 economic_crime_levy
#> 1098 2021-09-01 economic_crime_levy
#> 1099 2021-10-01 economic_crime_levy
#> 1100 2021-11-01 economic_crime_levy
#> 1101 2021-12-01 economic_crime_levy
#> 1102 2022-01-01 economic_crime_levy
#> 1103 2022-02-01 economic_crime_levy
#> 1104 2022-03-01 economic_crime_levy
#> 1105 2022-04-01 economic_crime_levy
#> 1106 2022-05-01 economic_crime_levy
#> 1107 2022-06-01 economic_crime_levy
#> 1108 2022-07-01 economic_crime_levy
#> 1109 2022-08-01 economic_crime_levy
#> 1110 2022-09-01 economic_crime_levy
#> 1111 2022-10-01 economic_crime_levy
#> 1112 2022-11-01 economic_crime_levy
#> 1113 2022-12-01 economic_crime_levy
#> 1114 2023-01-01 economic_crime_levy
#> 1115 2023-02-01 economic_crime_levy
#> 1116 2023-03-01 economic_crime_levy
#> 1117 2023-04-01 economic_crime_levy
#> 1118 2023-05-01 economic_crime_levy
#> 1119 2023-06-01 economic_crime_levy
#> 1120 2023-07-01 economic_crime_levy
#> 1121 2023-08-01 economic_crime_levy
#> 1122 2023-09-01 economic_crime_levy
#> 1123 2023-10-01 economic_crime_levy
#> 1124 2023-11-01 economic_crime_levy
#> 1125 2023-12-01 economic_crime_levy
#> 1126 2024-01-01 economic_crime_levy
#> 1127 2024-02-01 economic_crime_levy
#> 1128 2024-03-01 economic_crime_levy
#> 1129 2024-04-01 economic_crime_levy
#> 1130 2024-05-01 economic_crime_levy
#> 1131 2024-06-01 economic_crime_levy
#> 1132 2024-07-01 economic_crime_levy
#> 1133 2024-08-01 economic_crime_levy
#> 1134 2024-09-01 economic_crime_levy
#> 1135 2024-10-01 economic_crime_levy
#> 1136 2024-11-01 economic_crime_levy
#> 1137 2024-12-01 economic_crime_levy
#> 1138 2025-01-01 economic_crime_levy
#> 1139 2025-02-01 economic_crime_levy
#> 1140 2025-03-01 economic_crime_levy
#> 1141 2025-04-01 economic_crime_levy
#> 1142 2025-05-01 economic_crime_levy
#> 1143 2025-06-01 economic_crime_levy
#> 1144 2025-07-01 economic_crime_levy
#> 1145 2025-08-01 economic_crime_levy
#> 1146 2025-09-01 economic_crime_levy
#> 1147 2025-10-01 economic_crime_levy
#> 1148 2025-11-01 economic_crime_levy
#> 1149 2025-12-01 economic_crime_levy
#> 1150 2026-01-01 economic_crime_levy
#> 1151 2026-02-01 economic_crime_levy
#> 1152 2026-03-01 economic_crime_levy
#> 1153 2020-04-01 electricity_generators_levy
#> 1154 2020-05-01 electricity_generators_levy
#> 1155 2020-06-01 electricity_generators_levy
#> 1156 2020-07-01 electricity_generators_levy
#> 1157 2020-08-01 electricity_generators_levy
#> 1158 2020-09-01 electricity_generators_levy
#> 1159 2020-10-01 electricity_generators_levy
#> 1160 2020-11-01 electricity_generators_levy
#> 1161 2020-12-01 electricity_generators_levy
#> 1162 2021-01-01 electricity_generators_levy
#> 1163 2021-02-01 electricity_generators_levy
#> 1164 2021-03-01 electricity_generators_levy
#> 1165 2021-04-01 electricity_generators_levy
#> 1166 2021-05-01 electricity_generators_levy
#> 1167 2021-06-01 electricity_generators_levy
#> 1168 2021-07-01 electricity_generators_levy
#> 1169 2021-08-01 electricity_generators_levy
#> 1170 2021-09-01 electricity_generators_levy
#> 1171 2021-10-01 electricity_generators_levy
#> 1172 2021-11-01 electricity_generators_levy
#> 1173 2021-12-01 electricity_generators_levy
#> 1174 2022-01-01 electricity_generators_levy
#> 1175 2022-02-01 electricity_generators_levy
#> 1176 2022-03-01 electricity_generators_levy
#> 1177 2022-04-01 electricity_generators_levy
#> 1178 2022-05-01 electricity_generators_levy
#> 1179 2022-06-01 electricity_generators_levy
#> 1180 2022-07-01 electricity_generators_levy
#> 1181 2022-08-01 electricity_generators_levy
#> 1182 2022-09-01 electricity_generators_levy
#> 1183 2022-10-01 electricity_generators_levy
#> 1184 2022-11-01 electricity_generators_levy
#> 1185 2022-12-01 electricity_generators_levy
#> 1186 2023-01-01 electricity_generators_levy
#> 1187 2023-02-01 electricity_generators_levy
#> 1188 2023-03-01 electricity_generators_levy
#> 1189 2023-04-01 electricity_generators_levy
#> 1190 2023-05-01 electricity_generators_levy
#> 1191 2023-06-01 electricity_generators_levy
#> 1192 2023-07-01 electricity_generators_levy
#> 1193 2023-08-01 electricity_generators_levy
#> 1194 2023-09-01 electricity_generators_levy
#> 1195 2023-10-01 electricity_generators_levy
#> 1196 2023-11-01 electricity_generators_levy
#> 1197 2023-12-01 electricity_generators_levy
#> 1198 2024-01-01 electricity_generators_levy
#> 1199 2024-02-01 electricity_generators_levy
#> 1200 2024-03-01 electricity_generators_levy
#> 1201 2024-04-01 electricity_generators_levy
#> 1202 2024-05-01 electricity_generators_levy
#> 1203 2024-06-01 electricity_generators_levy
#> 1204 2024-07-01 electricity_generators_levy
#> 1205 2024-08-01 electricity_generators_levy
#> 1206 2024-09-01 electricity_generators_levy
#> 1207 2024-10-01 electricity_generators_levy
#> 1208 2024-11-01 electricity_generators_levy
#> 1209 2024-12-01 electricity_generators_levy
#> 1210 2025-01-01 electricity_generators_levy
#> 1211 2025-02-01 electricity_generators_levy
#> 1212 2025-03-01 electricity_generators_levy
#> 1213 2025-04-01 electricity_generators_levy
#> 1214 2025-05-01 electricity_generators_levy
#> 1215 2025-06-01 electricity_generators_levy
#> 1216 2025-07-01 electricity_generators_levy
#> 1217 2025-08-01 electricity_generators_levy
#> 1218 2025-09-01 electricity_generators_levy
#> 1219 2025-10-01 electricity_generators_levy
#> 1220 2025-11-01 electricity_generators_levy
#> 1221 2025-12-01 electricity_generators_levy
#> 1222 2026-01-01 electricity_generators_levy
#> 1223 2026-02-01 electricity_generators_levy
#> 1224 2026-03-01 electricity_generators_levy
#> 1225 2020-04-01 energy_profits_levy
#> 1226 2020-05-01 energy_profits_levy
#> 1227 2020-06-01 energy_profits_levy
#> 1228 2020-07-01 energy_profits_levy
#> 1229 2020-08-01 energy_profits_levy
#> 1230 2020-09-01 energy_profits_levy
#> 1231 2020-10-01 energy_profits_levy
#> 1232 2020-11-01 energy_profits_levy
#> 1233 2020-12-01 energy_profits_levy
#> 1234 2021-01-01 energy_profits_levy
#> 1235 2021-02-01 energy_profits_levy
#> 1236 2021-03-01 energy_profits_levy
#> 1237 2021-04-01 energy_profits_levy
#> 1238 2021-05-01 energy_profits_levy
#> 1239 2021-06-01 energy_profits_levy
#> 1240 2021-07-01 energy_profits_levy
#> 1241 2021-08-01 energy_profits_levy
#> 1242 2021-09-01 energy_profits_levy
#> 1243 2021-10-01 energy_profits_levy
#> 1244 2021-11-01 energy_profits_levy
#> 1245 2021-12-01 energy_profits_levy
#> 1246 2022-01-01 energy_profits_levy
#> 1247 2022-02-01 energy_profits_levy
#> 1248 2022-03-01 energy_profits_levy
#> 1249 2022-04-01 energy_profits_levy
#> 1250 2022-05-01 energy_profits_levy
#> 1251 2022-06-01 energy_profits_levy
#> 1252 2022-07-01 energy_profits_levy
#> 1253 2022-08-01 energy_profits_levy
#> 1254 2022-09-01 energy_profits_levy
#> 1255 2022-10-01 energy_profits_levy
#> 1256 2022-11-01 energy_profits_levy
#> 1257 2022-12-01 energy_profits_levy
#> 1258 2023-01-01 energy_profits_levy
#> 1259 2023-02-01 energy_profits_levy
#> 1260 2023-03-01 energy_profits_levy
#> 1261 2023-04-01 energy_profits_levy
#> 1262 2023-05-01 energy_profits_levy
#> 1263 2023-06-01 energy_profits_levy
#> 1264 2023-07-01 energy_profits_levy
#> 1265 2023-08-01 energy_profits_levy
#> 1266 2023-09-01 energy_profits_levy
#> 1267 2023-10-01 energy_profits_levy
#> 1268 2023-11-01 energy_profits_levy
#> 1269 2023-12-01 energy_profits_levy
#> 1270 2024-01-01 energy_profits_levy
#> 1271 2024-02-01 energy_profits_levy
#> 1272 2024-03-01 energy_profits_levy
#> 1273 2024-04-01 energy_profits_levy
#> 1274 2024-05-01 energy_profits_levy
#> 1275 2024-06-01 energy_profits_levy
#> 1276 2024-07-01 energy_profits_levy
#> 1277 2024-08-01 energy_profits_levy
#> 1278 2024-09-01 energy_profits_levy
#> 1279 2024-10-01 energy_profits_levy
#> 1280 2024-11-01 energy_profits_levy
#> 1281 2024-12-01 energy_profits_levy
#> 1282 2025-01-01 energy_profits_levy
#> 1283 2025-02-01 energy_profits_levy
#> 1284 2025-03-01 energy_profits_levy
#> 1285 2025-04-01 energy_profits_levy
#> 1286 2025-05-01 energy_profits_levy
#> 1287 2025-06-01 energy_profits_levy
#> 1288 2025-07-01 energy_profits_levy
#> 1289 2025-08-01 energy_profits_levy
#> 1290 2025-09-01 energy_profits_levy
#> 1291 2025-10-01 energy_profits_levy
#> 1292 2025-11-01 energy_profits_levy
#> 1293 2025-12-01 energy_profits_levy
#> 1294 2026-01-01 energy_profits_levy
#> 1295 2026-02-01 energy_profits_levy
#> 1296 2026-03-01 energy_profits_levy
#> 1297 2020-04-01 fuel_duty
#> 1298 2020-05-01 fuel_duty
#> 1299 2020-06-01 fuel_duty
#> 1300 2020-07-01 fuel_duty
#> 1301 2020-08-01 fuel_duty
#> 1302 2020-09-01 fuel_duty
#> 1303 2020-10-01 fuel_duty
#> 1304 2020-11-01 fuel_duty
#> 1305 2020-12-01 fuel_duty
#> 1306 2021-01-01 fuel_duty
#> 1307 2021-02-01 fuel_duty
#> 1308 2021-03-01 fuel_duty
#> 1309 2021-04-01 fuel_duty
#> 1310 2021-05-01 fuel_duty
#> 1311 2021-06-01 fuel_duty
#> 1312 2021-07-01 fuel_duty
#> 1313 2021-08-01 fuel_duty
#> 1314 2021-09-01 fuel_duty
#> 1315 2021-10-01 fuel_duty
#> 1316 2021-11-01 fuel_duty
#> 1317 2021-12-01 fuel_duty
#> 1318 2022-01-01 fuel_duty
#> 1319 2022-02-01 fuel_duty
#> 1320 2022-03-01 fuel_duty
#> 1321 2022-04-01 fuel_duty
#> 1322 2022-05-01 fuel_duty
#> 1323 2022-06-01 fuel_duty
#> 1324 2022-07-01 fuel_duty
#> 1325 2022-08-01 fuel_duty
#> 1326 2022-09-01 fuel_duty
#> 1327 2022-10-01 fuel_duty
#> 1328 2022-11-01 fuel_duty
#> 1329 2022-12-01 fuel_duty
#> 1330 2023-01-01 fuel_duty
#> 1331 2023-02-01 fuel_duty
#> 1332 2023-03-01 fuel_duty
#> 1333 2023-04-01 fuel_duty
#> 1334 2023-05-01 fuel_duty
#> 1335 2023-06-01 fuel_duty
#> 1336 2023-07-01 fuel_duty
#> 1337 2023-08-01 fuel_duty
#> 1338 2023-09-01 fuel_duty
#> 1339 2023-10-01 fuel_duty
#> 1340 2023-11-01 fuel_duty
#> 1341 2023-12-01 fuel_duty
#> 1342 2024-01-01 fuel_duty
#> 1343 2024-02-01 fuel_duty
#> 1344 2024-03-01 fuel_duty
#> 1345 2024-04-01 fuel_duty
#> 1346 2024-05-01 fuel_duty
#> 1347 2024-06-01 fuel_duty
#> 1348 2024-07-01 fuel_duty
#> 1349 2024-08-01 fuel_duty
#> 1350 2024-09-01 fuel_duty
#> 1351 2024-10-01 fuel_duty
#> 1352 2024-11-01 fuel_duty
#> 1353 2024-12-01 fuel_duty
#> 1354 2025-01-01 fuel_duty
#> 1355 2025-02-01 fuel_duty
#> 1356 2025-03-01 fuel_duty
#> 1357 2025-04-01 fuel_duty
#> 1358 2025-05-01 fuel_duty
#> 1359 2025-06-01 fuel_duty
#> 1360 2025-07-01 fuel_duty
#> 1361 2025-08-01 fuel_duty
#> 1362 2025-09-01 fuel_duty
#> 1363 2025-10-01 fuel_duty
#> 1364 2025-11-01 fuel_duty
#> 1365 2025-12-01 fuel_duty
#> 1366 2026-01-01 fuel_duty
#> 1367 2026-02-01 fuel_duty
#> 1368 2026-03-01 fuel_duty
#> 1369 2020-04-01 gambling_duties
#> 1370 2020-05-01 gambling_duties
#> 1371 2020-06-01 gambling_duties
#> 1372 2020-07-01 gambling_duties
#> 1373 2020-08-01 gambling_duties
#> 1374 2020-09-01 gambling_duties
#> 1375 2020-10-01 gambling_duties
#> 1376 2020-11-01 gambling_duties
#> 1377 2020-12-01 gambling_duties
#> 1378 2021-01-01 gambling_duties
#> 1379 2021-02-01 gambling_duties
#> 1380 2021-03-01 gambling_duties
#> 1381 2021-04-01 gambling_duties
#> 1382 2021-05-01 gambling_duties
#> 1383 2021-06-01 gambling_duties
#> 1384 2021-07-01 gambling_duties
#> 1385 2021-08-01 gambling_duties
#> 1386 2021-09-01 gambling_duties
#> 1387 2021-10-01 gambling_duties
#> 1388 2021-11-01 gambling_duties
#> 1389 2021-12-01 gambling_duties
#> 1390 2022-01-01 gambling_duties
#> 1391 2022-02-01 gambling_duties
#> 1392 2022-03-01 gambling_duties
#> 1393 2022-04-01 gambling_duties
#> 1394 2022-05-01 gambling_duties
#> 1395 2022-06-01 gambling_duties
#> 1396 2022-07-01 gambling_duties
#> 1397 2022-08-01 gambling_duties
#> 1398 2022-09-01 gambling_duties
#> 1399 2022-10-01 gambling_duties
#> 1400 2022-11-01 gambling_duties
#> 1401 2022-12-01 gambling_duties
#> 1402 2023-01-01 gambling_duties
#> 1403 2023-02-01 gambling_duties
#> 1404 2023-03-01 gambling_duties
#> 1405 2023-04-01 gambling_duties
#> 1406 2023-05-01 gambling_duties
#> 1407 2023-06-01 gambling_duties
#> 1408 2023-07-01 gambling_duties
#> 1409 2023-08-01 gambling_duties
#> 1410 2023-09-01 gambling_duties
#> 1411 2023-10-01 gambling_duties
#> 1412 2023-11-01 gambling_duties
#> 1413 2023-12-01 gambling_duties
#> 1414 2024-01-01 gambling_duties
#> 1415 2024-02-01 gambling_duties
#> 1416 2024-03-01 gambling_duties
#> 1417 2024-04-01 gambling_duties
#> 1418 2024-05-01 gambling_duties
#> 1419 2024-06-01 gambling_duties
#> 1420 2024-07-01 gambling_duties
#> 1421 2024-08-01 gambling_duties
#> 1422 2024-09-01 gambling_duties
#> 1423 2024-10-01 gambling_duties
#> 1424 2024-11-01 gambling_duties
#> 1425 2024-12-01 gambling_duties
#> 1426 2025-01-01 gambling_duties
#> 1427 2025-02-01 gambling_duties
#> 1428 2025-03-01 gambling_duties
#> 1429 2025-04-01 gambling_duties
#> 1430 2025-05-01 gambling_duties
#> 1431 2025-06-01 gambling_duties
#> 1432 2025-07-01 gambling_duties
#> 1433 2025-08-01 gambling_duties
#> 1434 2025-09-01 gambling_duties
#> 1435 2025-10-01 gambling_duties
#> 1436 2025-11-01 gambling_duties
#> 1437 2025-12-01 gambling_duties
#> 1438 2026-01-01 gambling_duties
#> 1439 2026-02-01 gambling_duties
#> 1440 2026-03-01 gambling_duties
#> 1441 2020-04-01 income_tax
#> 1442 2020-05-01 income_tax
#> 1443 2020-06-01 income_tax
#> 1444 2020-07-01 income_tax
#> 1445 2020-08-01 income_tax
#> 1446 2020-09-01 income_tax
#> 1447 2020-10-01 income_tax
#> 1448 2020-11-01 income_tax
#> 1449 2020-12-01 income_tax
#> 1450 2021-01-01 income_tax
#> 1451 2021-02-01 income_tax
#> 1452 2021-03-01 income_tax
#> 1453 2021-04-01 income_tax
#> 1454 2021-05-01 income_tax
#> 1455 2021-06-01 income_tax
#> 1456 2021-07-01 income_tax
#> 1457 2021-08-01 income_tax
#> 1458 2021-09-01 income_tax
#> 1459 2021-10-01 income_tax
#> 1460 2021-11-01 income_tax
#> 1461 2021-12-01 income_tax
#> 1462 2022-01-01 income_tax
#> 1463 2022-02-01 income_tax
#> 1464 2022-03-01 income_tax
#> 1465 2022-04-01 income_tax
#> 1466 2022-05-01 income_tax
#> 1467 2022-06-01 income_tax
#> 1468 2022-07-01 income_tax
#> 1469 2022-08-01 income_tax
#> 1470 2022-09-01 income_tax
#> 1471 2022-10-01 income_tax
#> 1472 2022-11-01 income_tax
#> 1473 2022-12-01 income_tax
#> 1474 2023-01-01 income_tax
#> 1475 2023-02-01 income_tax
#> 1476 2023-03-01 income_tax
#> 1477 2023-04-01 income_tax
#> 1478 2023-05-01 income_tax
#> 1479 2023-06-01 income_tax
#> 1480 2023-07-01 income_tax
#> 1481 2023-08-01 income_tax
#> 1482 2023-09-01 income_tax
#> 1483 2023-10-01 income_tax
#> 1484 2023-11-01 income_tax
#> 1485 2023-12-01 income_tax
#> 1486 2024-01-01 income_tax
#> 1487 2024-02-01 income_tax
#> 1488 2024-03-01 income_tax
#> 1489 2024-04-01 income_tax
#> 1490 2024-05-01 income_tax
#> 1491 2024-06-01 income_tax
#> 1492 2024-07-01 income_tax
#> 1493 2024-08-01 income_tax
#> 1494 2024-09-01 income_tax
#> 1495 2024-10-01 income_tax
#> 1496 2024-11-01 income_tax
#> 1497 2024-12-01 income_tax
#> 1498 2025-01-01 income_tax
#> 1499 2025-02-01 income_tax
#> 1500 2025-03-01 income_tax
#> 1501 2025-04-01 income_tax
#> 1502 2025-05-01 income_tax
#> 1503 2025-06-01 income_tax
#> 1504 2025-07-01 income_tax
#> 1505 2025-08-01 income_tax
#> 1506 2025-09-01 income_tax
#> 1507 2025-10-01 income_tax
#> 1508 2025-11-01 income_tax
#> 1509 2025-12-01 income_tax
#> 1510 2026-01-01 income_tax
#> 1511 2026-02-01 income_tax
#> 1512 2026-03-01 income_tax
#> 1513 2020-04-01 inheritance_tax
#> 1514 2020-05-01 inheritance_tax
#> 1515 2020-06-01 inheritance_tax
#> 1516 2020-07-01 inheritance_tax
#> 1517 2020-08-01 inheritance_tax
#> 1518 2020-09-01 inheritance_tax
#> 1519 2020-10-01 inheritance_tax
#> 1520 2020-11-01 inheritance_tax
#> 1521 2020-12-01 inheritance_tax
#> 1522 2021-01-01 inheritance_tax
#> 1523 2021-02-01 inheritance_tax
#> 1524 2021-03-01 inheritance_tax
#> 1525 2021-04-01 inheritance_tax
#> 1526 2021-05-01 inheritance_tax
#> 1527 2021-06-01 inheritance_tax
#> 1528 2021-07-01 inheritance_tax
#> 1529 2021-08-01 inheritance_tax
#> 1530 2021-09-01 inheritance_tax
#> 1531 2021-10-01 inheritance_tax
#> 1532 2021-11-01 inheritance_tax
#> 1533 2021-12-01 inheritance_tax
#> 1534 2022-01-01 inheritance_tax
#> 1535 2022-02-01 inheritance_tax
#> 1536 2022-03-01 inheritance_tax
#> 1537 2022-04-01 inheritance_tax
#> 1538 2022-05-01 inheritance_tax
#> 1539 2022-06-01 inheritance_tax
#> 1540 2022-07-01 inheritance_tax
#> 1541 2022-08-01 inheritance_tax
#> 1542 2022-09-01 inheritance_tax
#> 1543 2022-10-01 inheritance_tax
#> 1544 2022-11-01 inheritance_tax
#> 1545 2022-12-01 inheritance_tax
#> 1546 2023-01-01 inheritance_tax
#> 1547 2023-02-01 inheritance_tax
#> 1548 2023-03-01 inheritance_tax
#> 1549 2023-04-01 inheritance_tax
#> 1550 2023-05-01 inheritance_tax
#> 1551 2023-06-01 inheritance_tax
#> 1552 2023-07-01 inheritance_tax
#> 1553 2023-08-01 inheritance_tax
#> 1554 2023-09-01 inheritance_tax
#> 1555 2023-10-01 inheritance_tax
#> 1556 2023-11-01 inheritance_tax
#> 1557 2023-12-01 inheritance_tax
#> 1558 2024-01-01 inheritance_tax
#> 1559 2024-02-01 inheritance_tax
#> 1560 2024-03-01 inheritance_tax
#> 1561 2024-04-01 inheritance_tax
#> 1562 2024-05-01 inheritance_tax
#> 1563 2024-06-01 inheritance_tax
#> 1564 2024-07-01 inheritance_tax
#> 1565 2024-08-01 inheritance_tax
#> 1566 2024-09-01 inheritance_tax
#> 1567 2024-10-01 inheritance_tax
#> 1568 2024-11-01 inheritance_tax
#> 1569 2024-12-01 inheritance_tax
#> 1570 2025-01-01 inheritance_tax
#> 1571 2025-02-01 inheritance_tax
#> 1572 2025-03-01 inheritance_tax
#> 1573 2025-04-01 inheritance_tax
#> 1574 2025-05-01 inheritance_tax
#> 1575 2025-06-01 inheritance_tax
#> 1576 2025-07-01 inheritance_tax
#> 1577 2025-08-01 inheritance_tax
#> 1578 2025-09-01 inheritance_tax
#> 1579 2025-10-01 inheritance_tax
#> 1580 2025-11-01 inheritance_tax
#> 1581 2025-12-01 inheritance_tax
#> 1582 2026-01-01 inheritance_tax
#> 1583 2026-02-01 inheritance_tax
#> 1584 2026-03-01 inheritance_tax
#> 1585 2020-04-01 insurance_premium_tax
#> 1586 2020-05-01 insurance_premium_tax
#> 1587 2020-06-01 insurance_premium_tax
#> 1588 2020-07-01 insurance_premium_tax
#> 1589 2020-08-01 insurance_premium_tax
#> 1590 2020-09-01 insurance_premium_tax
#> 1591 2020-10-01 insurance_premium_tax
#> 1592 2020-11-01 insurance_premium_tax
#> 1593 2020-12-01 insurance_premium_tax
#> 1594 2021-01-01 insurance_premium_tax
#> 1595 2021-02-01 insurance_premium_tax
#> 1596 2021-03-01 insurance_premium_tax
#> 1597 2021-04-01 insurance_premium_tax
#> 1598 2021-05-01 insurance_premium_tax
#> 1599 2021-06-01 insurance_premium_tax
#> 1600 2021-07-01 insurance_premium_tax
#> 1601 2021-08-01 insurance_premium_tax
#> 1602 2021-09-01 insurance_premium_tax
#> 1603 2021-10-01 insurance_premium_tax
#> 1604 2021-11-01 insurance_premium_tax
#> 1605 2021-12-01 insurance_premium_tax
#> 1606 2022-01-01 insurance_premium_tax
#> 1607 2022-02-01 insurance_premium_tax
#> 1608 2022-03-01 insurance_premium_tax
#> 1609 2022-04-01 insurance_premium_tax
#> 1610 2022-05-01 insurance_premium_tax
#> 1611 2022-06-01 insurance_premium_tax
#> 1612 2022-07-01 insurance_premium_tax
#> 1613 2022-08-01 insurance_premium_tax
#> 1614 2022-09-01 insurance_premium_tax
#> 1615 2022-10-01 insurance_premium_tax
#> 1616 2022-11-01 insurance_premium_tax
#> 1617 2022-12-01 insurance_premium_tax
#> 1618 2023-01-01 insurance_premium_tax
#> 1619 2023-02-01 insurance_premium_tax
#> 1620 2023-03-01 insurance_premium_tax
#> 1621 2023-04-01 insurance_premium_tax
#> 1622 2023-05-01 insurance_premium_tax
#> 1623 2023-06-01 insurance_premium_tax
#> 1624 2023-07-01 insurance_premium_tax
#> 1625 2023-08-01 insurance_premium_tax
#> 1626 2023-09-01 insurance_premium_tax
#> 1627 2023-10-01 insurance_premium_tax
#> 1628 2023-11-01 insurance_premium_tax
#> 1629 2023-12-01 insurance_premium_tax
#> 1630 2024-01-01 insurance_premium_tax
#> 1631 2024-02-01 insurance_premium_tax
#> 1632 2024-03-01 insurance_premium_tax
#> 1633 2024-04-01 insurance_premium_tax
#> 1634 2024-05-01 insurance_premium_tax
#> 1635 2024-06-01 insurance_premium_tax
#> 1636 2024-07-01 insurance_premium_tax
#> 1637 2024-08-01 insurance_premium_tax
#> 1638 2024-09-01 insurance_premium_tax
#> 1639 2024-10-01 insurance_premium_tax
#> 1640 2024-11-01 insurance_premium_tax
#> 1641 2024-12-01 insurance_premium_tax
#> 1642 2025-01-01 insurance_premium_tax
#> 1643 2025-02-01 insurance_premium_tax
#> 1644 2025-03-01 insurance_premium_tax
#> 1645 2025-04-01 insurance_premium_tax
#> 1646 2025-05-01 insurance_premium_tax
#> 1647 2025-06-01 insurance_premium_tax
#> 1648 2025-07-01 insurance_premium_tax
#> 1649 2025-08-01 insurance_premium_tax
#> 1650 2025-09-01 insurance_premium_tax
#> 1651 2025-10-01 insurance_premium_tax
#> 1652 2025-11-01 insurance_premium_tax
#> 1653 2025-12-01 insurance_premium_tax
#> 1654 2026-01-01 insurance_premium_tax
#> 1655 2026-02-01 insurance_premium_tax
#> 1656 2026-03-01 insurance_premium_tax
#> 1657 2020-04-01 landfill_tax
#> 1658 2020-05-01 landfill_tax
#> 1659 2020-06-01 landfill_tax
#> 1660 2020-07-01 landfill_tax
#> 1661 2020-08-01 landfill_tax
#> 1662 2020-09-01 landfill_tax
#> 1663 2020-10-01 landfill_tax
#> 1664 2020-11-01 landfill_tax
#> 1665 2020-12-01 landfill_tax
#> 1666 2021-01-01 landfill_tax
#> 1667 2021-02-01 landfill_tax
#> 1668 2021-03-01 landfill_tax
#> 1669 2021-04-01 landfill_tax
#> 1670 2021-05-01 landfill_tax
#> 1671 2021-06-01 landfill_tax
#> 1672 2021-07-01 landfill_tax
#> 1673 2021-08-01 landfill_tax
#> 1674 2021-09-01 landfill_tax
#> 1675 2021-10-01 landfill_tax
#> 1676 2021-11-01 landfill_tax
#> 1677 2021-12-01 landfill_tax
#> 1678 2022-01-01 landfill_tax
#> 1679 2022-02-01 landfill_tax
#> 1680 2022-03-01 landfill_tax
#> 1681 2022-04-01 landfill_tax
#> 1682 2022-05-01 landfill_tax
#> 1683 2022-06-01 landfill_tax
#> 1684 2022-07-01 landfill_tax
#> 1685 2022-08-01 landfill_tax
#> 1686 2022-09-01 landfill_tax
#> 1687 2022-10-01 landfill_tax
#> 1688 2022-11-01 landfill_tax
#> 1689 2022-12-01 landfill_tax
#> 1690 2023-01-01 landfill_tax
#> 1691 2023-02-01 landfill_tax
#> 1692 2023-03-01 landfill_tax
#> 1693 2023-04-01 landfill_tax
#> 1694 2023-05-01 landfill_tax
#> 1695 2023-06-01 landfill_tax
#> 1696 2023-07-01 landfill_tax
#> 1697 2023-08-01 landfill_tax
#> 1698 2023-09-01 landfill_tax
#> 1699 2023-10-01 landfill_tax
#> 1700 2023-11-01 landfill_tax
#> 1701 2023-12-01 landfill_tax
#> 1702 2024-01-01 landfill_tax
#> 1703 2024-02-01 landfill_tax
#> 1704 2024-03-01 landfill_tax
#> 1705 2024-04-01 landfill_tax
#> 1706 2024-05-01 landfill_tax
#> 1707 2024-06-01 landfill_tax
#> 1708 2024-07-01 landfill_tax
#> 1709 2024-08-01 landfill_tax
#> 1710 2024-09-01 landfill_tax
#> 1711 2024-10-01 landfill_tax
#> 1712 2024-11-01 landfill_tax
#> 1713 2024-12-01 landfill_tax
#> 1714 2025-01-01 landfill_tax
#> 1715 2025-02-01 landfill_tax
#> 1716 2025-03-01 landfill_tax
#> 1717 2025-04-01 landfill_tax
#> 1718 2025-05-01 landfill_tax
#> 1719 2025-06-01 landfill_tax
#> 1720 2025-07-01 landfill_tax
#> 1721 2025-08-01 landfill_tax
#> 1722 2025-09-01 landfill_tax
#> 1723 2025-10-01 landfill_tax
#> 1724 2025-11-01 landfill_tax
#> 1725 2025-12-01 landfill_tax
#> 1726 2026-01-01 landfill_tax
#> 1727 2026-02-01 landfill_tax
#> 1728 2026-03-01 landfill_tax
#> 1729 2020-04-01 miscellaneous
#> 1730 2020-05-01 miscellaneous
#> 1731 2020-06-01 miscellaneous
#> 1732 2020-07-01 miscellaneous
#> 1733 2020-08-01 miscellaneous
#> 1734 2020-09-01 miscellaneous
#> 1735 2020-10-01 miscellaneous
#> 1736 2020-11-01 miscellaneous
#> 1737 2020-12-01 miscellaneous
#> 1738 2021-01-01 miscellaneous
#> 1739 2021-02-01 miscellaneous
#> 1740 2021-03-01 miscellaneous
#> 1741 2021-04-01 miscellaneous
#> 1742 2021-05-01 miscellaneous
#> 1743 2021-06-01 miscellaneous
#> 1744 2021-07-01 miscellaneous
#> 1745 2021-08-01 miscellaneous
#> 1746 2021-09-01 miscellaneous
#> 1747 2021-10-01 miscellaneous
#> 1748 2021-11-01 miscellaneous
#> 1749 2021-12-01 miscellaneous
#> 1750 2022-01-01 miscellaneous
#> 1751 2022-02-01 miscellaneous
#> 1752 2022-03-01 miscellaneous
#> 1753 2022-04-01 miscellaneous
#> 1754 2022-05-01 miscellaneous
#> 1755 2022-06-01 miscellaneous
#> 1756 2022-07-01 miscellaneous
#> 1757 2022-08-01 miscellaneous
#> 1758 2022-09-01 miscellaneous
#> 1759 2022-10-01 miscellaneous
#> 1760 2022-11-01 miscellaneous
#> 1761 2022-12-01 miscellaneous
#> 1762 2023-01-01 miscellaneous
#> 1763 2023-02-01 miscellaneous
#> 1764 2023-03-01 miscellaneous
#> 1765 2023-04-01 miscellaneous
#> 1766 2023-05-01 miscellaneous
#> 1767 2023-06-01 miscellaneous
#> 1768 2023-07-01 miscellaneous
#> 1769 2023-08-01 miscellaneous
#> 1770 2023-09-01 miscellaneous
#> 1771 2023-10-01 miscellaneous
#> 1772 2023-11-01 miscellaneous
#> 1773 2023-12-01 miscellaneous
#> 1774 2024-01-01 miscellaneous
#> 1775 2024-02-01 miscellaneous
#> 1776 2024-03-01 miscellaneous
#> 1777 2024-04-01 miscellaneous
#> 1778 2024-05-01 miscellaneous
#> 1779 2024-06-01 miscellaneous
#> 1780 2024-07-01 miscellaneous
#> 1781 2024-08-01 miscellaneous
#> 1782 2024-09-01 miscellaneous
#> 1783 2024-10-01 miscellaneous
#> 1784 2024-11-01 miscellaneous
#> 1785 2024-12-01 miscellaneous
#> 1786 2025-01-01 miscellaneous
#> 1787 2025-02-01 miscellaneous
#> 1788 2025-03-01 miscellaneous
#> 1789 2025-04-01 miscellaneous
#> 1790 2025-05-01 miscellaneous
#> 1791 2025-06-01 miscellaneous
#> 1792 2025-07-01 miscellaneous
#> 1793 2025-08-01 miscellaneous
#> 1794 2025-09-01 miscellaneous
#> 1795 2025-10-01 miscellaneous
#> 1796 2025-11-01 miscellaneous
#> 1797 2025-12-01 miscellaneous
#> 1798 2026-01-01 miscellaneous
#> 1799 2026-02-01 miscellaneous
#> 1800 2026-03-01 miscellaneous
#> 1801 2020-04-01 nics_employee
#> 1802 2020-05-01 nics_employee
#> 1803 2020-06-01 nics_employee
#> 1804 2020-07-01 nics_employee
#> 1805 2020-08-01 nics_employee
#> 1806 2020-09-01 nics_employee
#> 1807 2020-10-01 nics_employee
#> 1808 2020-11-01 nics_employee
#> 1809 2020-12-01 nics_employee
#> 1810 2021-01-01 nics_employee
#> 1811 2021-02-01 nics_employee
#> 1812 2021-03-01 nics_employee
#> 1813 2021-04-01 nics_employee
#> 1814 2021-05-01 nics_employee
#> 1815 2021-06-01 nics_employee
#> 1816 2021-07-01 nics_employee
#> 1817 2021-08-01 nics_employee
#> 1818 2021-09-01 nics_employee
#> 1819 2021-10-01 nics_employee
#> 1820 2021-11-01 nics_employee
#> 1821 2021-12-01 nics_employee
#> 1822 2022-01-01 nics_employee
#> 1823 2022-02-01 nics_employee
#> 1824 2022-03-01 nics_employee
#> 1825 2022-04-01 nics_employee
#> 1826 2022-05-01 nics_employee
#> 1827 2022-06-01 nics_employee
#> 1828 2022-07-01 nics_employee
#> 1829 2022-08-01 nics_employee
#> 1830 2022-09-01 nics_employee
#> 1831 2022-10-01 nics_employee
#> 1832 2022-11-01 nics_employee
#> 1833 2022-12-01 nics_employee
#> 1834 2023-01-01 nics_employee
#> 1835 2023-02-01 nics_employee
#> 1836 2023-03-01 nics_employee
#> 1837 2023-04-01 nics_employee
#> 1838 2023-05-01 nics_employee
#> 1839 2023-06-01 nics_employee
#> 1840 2023-07-01 nics_employee
#> 1841 2023-08-01 nics_employee
#> 1842 2023-09-01 nics_employee
#> 1843 2023-10-01 nics_employee
#> 1844 2023-11-01 nics_employee
#> 1845 2023-12-01 nics_employee
#> 1846 2024-01-01 nics_employee
#> 1847 2024-02-01 nics_employee
#> 1848 2024-03-01 nics_employee
#> 1849 2024-04-01 nics_employee
#> 1850 2024-05-01 nics_employee
#> 1851 2024-06-01 nics_employee
#> 1852 2024-07-01 nics_employee
#> 1853 2024-08-01 nics_employee
#> 1854 2024-09-01 nics_employee
#> 1855 2024-10-01 nics_employee
#> 1856 2024-11-01 nics_employee
#> 1857 2024-12-01 nics_employee
#> 1858 2025-01-01 nics_employee
#> 1859 2025-02-01 nics_employee
#> 1860 2025-03-01 nics_employee
#> 1861 2025-04-01 nics_employee
#> 1862 2025-05-01 nics_employee
#> 1863 2025-06-01 nics_employee
#> 1864 2025-07-01 nics_employee
#> 1865 2025-08-01 nics_employee
#> 1866 2025-09-01 nics_employee
#> 1867 2025-10-01 nics_employee
#> 1868 2025-11-01 nics_employee
#> 1869 2025-12-01 nics_employee
#> 1870 2026-01-01 nics_employee
#> 1871 2026-02-01 nics_employee
#> 1872 2026-03-01 nics_employee
#> 1873 2020-04-01 nics_employer
#> 1874 2020-05-01 nics_employer
#> 1875 2020-06-01 nics_employer
#> 1876 2020-07-01 nics_employer
#> 1877 2020-08-01 nics_employer
#> 1878 2020-09-01 nics_employer
#> 1879 2020-10-01 nics_employer
#> 1880 2020-11-01 nics_employer
#> 1881 2020-12-01 nics_employer
#> 1882 2021-01-01 nics_employer
#> 1883 2021-02-01 nics_employer
#> 1884 2021-03-01 nics_employer
#> 1885 2021-04-01 nics_employer
#> 1886 2021-05-01 nics_employer
#> 1887 2021-06-01 nics_employer
#> 1888 2021-07-01 nics_employer
#> 1889 2021-08-01 nics_employer
#> 1890 2021-09-01 nics_employer
#> 1891 2021-10-01 nics_employer
#> 1892 2021-11-01 nics_employer
#> 1893 2021-12-01 nics_employer
#> 1894 2022-01-01 nics_employer
#> 1895 2022-02-01 nics_employer
#> 1896 2022-03-01 nics_employer
#> 1897 2022-04-01 nics_employer
#> 1898 2022-05-01 nics_employer
#> 1899 2022-06-01 nics_employer
#> 1900 2022-07-01 nics_employer
#> 1901 2022-08-01 nics_employer
#> 1902 2022-09-01 nics_employer
#> 1903 2022-10-01 nics_employer
#> 1904 2022-11-01 nics_employer
#> 1905 2022-12-01 nics_employer
#> 1906 2023-01-01 nics_employer
#> 1907 2023-02-01 nics_employer
#> 1908 2023-03-01 nics_employer
#> 1909 2023-04-01 nics_employer
#> 1910 2023-05-01 nics_employer
#> 1911 2023-06-01 nics_employer
#> 1912 2023-07-01 nics_employer
#> 1913 2023-08-01 nics_employer
#> 1914 2023-09-01 nics_employer
#> 1915 2023-10-01 nics_employer
#> 1916 2023-11-01 nics_employer
#> 1917 2023-12-01 nics_employer
#> 1918 2024-01-01 nics_employer
#> 1919 2024-02-01 nics_employer
#> 1920 2024-03-01 nics_employer
#> 1921 2024-04-01 nics_employer
#> 1922 2024-05-01 nics_employer
#> 1923 2024-06-01 nics_employer
#> 1924 2024-07-01 nics_employer
#> 1925 2024-08-01 nics_employer
#> 1926 2024-09-01 nics_employer
#> 1927 2024-10-01 nics_employer
#> 1928 2024-11-01 nics_employer
#> 1929 2024-12-01 nics_employer
#> 1930 2025-01-01 nics_employer
#> 1931 2025-02-01 nics_employer
#> 1932 2025-03-01 nics_employer
#> 1933 2025-04-01 nics_employer
#> 1934 2025-05-01 nics_employer
#> 1935 2025-06-01 nics_employer
#> 1936 2025-07-01 nics_employer
#> 1937 2025-08-01 nics_employer
#> 1938 2025-09-01 nics_employer
#> 1939 2025-10-01 nics_employer
#> 1940 2025-11-01 nics_employer
#> 1941 2025-12-01 nics_employer
#> 1942 2026-01-01 nics_employer
#> 1943 2026-02-01 nics_employer
#> 1944 2026-03-01 nics_employer
#> 1945 2020-04-01 nics_self_employed
#> 1946 2020-05-01 nics_self_employed
#> 1947 2020-06-01 nics_self_employed
#> 1948 2020-07-01 nics_self_employed
#> 1949 2020-08-01 nics_self_employed
#> 1950 2020-09-01 nics_self_employed
#> 1951 2020-10-01 nics_self_employed
#> 1952 2020-11-01 nics_self_employed
#> 1953 2020-12-01 nics_self_employed
#> 1954 2021-01-01 nics_self_employed
#> 1955 2021-02-01 nics_self_employed
#> 1956 2021-03-01 nics_self_employed
#> 1957 2021-04-01 nics_self_employed
#> 1958 2021-05-01 nics_self_employed
#> 1959 2021-06-01 nics_self_employed
#> 1960 2021-07-01 nics_self_employed
#> 1961 2021-08-01 nics_self_employed
#> 1962 2021-09-01 nics_self_employed
#> 1963 2021-10-01 nics_self_employed
#> 1964 2021-11-01 nics_self_employed
#> 1965 2021-12-01 nics_self_employed
#> 1966 2022-01-01 nics_self_employed
#> 1967 2022-02-01 nics_self_employed
#> 1968 2022-03-01 nics_self_employed
#> 1969 2022-04-01 nics_self_employed
#> 1970 2022-05-01 nics_self_employed
#> 1971 2022-06-01 nics_self_employed
#> 1972 2022-07-01 nics_self_employed
#> 1973 2022-08-01 nics_self_employed
#> 1974 2022-09-01 nics_self_employed
#> 1975 2022-10-01 nics_self_employed
#> 1976 2022-11-01 nics_self_employed
#> 1977 2022-12-01 nics_self_employed
#> 1978 2023-01-01 nics_self_employed
#> 1979 2023-02-01 nics_self_employed
#> 1980 2023-03-01 nics_self_employed
#> 1981 2023-04-01 nics_self_employed
#> 1982 2023-05-01 nics_self_employed
#> 1983 2023-06-01 nics_self_employed
#> 1984 2023-07-01 nics_self_employed
#> 1985 2023-08-01 nics_self_employed
#> 1986 2023-09-01 nics_self_employed
#> 1987 2023-10-01 nics_self_employed
#> 1988 2023-11-01 nics_self_employed
#> 1989 2023-12-01 nics_self_employed
#> 1990 2024-01-01 nics_self_employed
#> 1991 2024-02-01 nics_self_employed
#> 1992 2024-03-01 nics_self_employed
#> 1993 2024-04-01 nics_self_employed
#> 1994 2024-05-01 nics_self_employed
#> 1995 2024-06-01 nics_self_employed
#> 1996 2024-07-01 nics_self_employed
#> 1997 2024-08-01 nics_self_employed
#> 1998 2024-09-01 nics_self_employed
#> 1999 2024-10-01 nics_self_employed
#> 2000 2024-11-01 nics_self_employed
#> 2001 2024-12-01 nics_self_employed
#> 2002 2025-01-01 nics_self_employed
#> 2003 2025-02-01 nics_self_employed
#> 2004 2025-03-01 nics_self_employed
#> 2005 2025-04-01 nics_self_employed
#> 2006 2025-05-01 nics_self_employed
#> 2007 2025-06-01 nics_self_employed
#> 2008 2025-07-01 nics_self_employed
#> 2009 2025-08-01 nics_self_employed
#> 2010 2025-09-01 nics_self_employed
#> 2011 2025-10-01 nics_self_employed
#> 2012 2025-11-01 nics_self_employed
#> 2013 2025-12-01 nics_self_employed
#> 2014 2026-01-01 nics_self_employed
#> 2015 2026-02-01 nics_self_employed
#> 2016 2026-03-01 nics_self_employed
#> 2017 2020-04-01 nics_total
#> 2018 2020-05-01 nics_total
#> 2019 2020-06-01 nics_total
#> 2020 2020-07-01 nics_total
#> 2021 2020-08-01 nics_total
#> 2022 2020-09-01 nics_total
#> 2023 2020-10-01 nics_total
#> 2024 2020-11-01 nics_total
#> 2025 2020-12-01 nics_total
#> 2026 2021-01-01 nics_total
#> 2027 2021-02-01 nics_total
#> 2028 2021-03-01 nics_total
#> 2029 2021-04-01 nics_total
#> 2030 2021-05-01 nics_total
#> 2031 2021-06-01 nics_total
#> 2032 2021-07-01 nics_total
#> 2033 2021-08-01 nics_total
#> 2034 2021-09-01 nics_total
#> 2035 2021-10-01 nics_total
#> 2036 2021-11-01 nics_total
#> 2037 2021-12-01 nics_total
#> 2038 2022-01-01 nics_total
#> 2039 2022-02-01 nics_total
#> 2040 2022-03-01 nics_total
#> 2041 2022-04-01 nics_total
#> 2042 2022-05-01 nics_total
#> 2043 2022-06-01 nics_total
#> 2044 2022-07-01 nics_total
#> 2045 2022-08-01 nics_total
#> 2046 2022-09-01 nics_total
#> 2047 2022-10-01 nics_total
#> 2048 2022-11-01 nics_total
#> 2049 2022-12-01 nics_total
#> 2050 2023-01-01 nics_total
#> 2051 2023-02-01 nics_total
#> 2052 2023-03-01 nics_total
#> 2053 2023-04-01 nics_total
#> 2054 2023-05-01 nics_total
#> 2055 2023-06-01 nics_total
#> 2056 2023-07-01 nics_total
#> 2057 2023-08-01 nics_total
#> 2058 2023-09-01 nics_total
#> 2059 2023-10-01 nics_total
#> 2060 2023-11-01 nics_total
#> 2061 2023-12-01 nics_total
#> 2062 2024-01-01 nics_total
#> 2063 2024-02-01 nics_total
#> 2064 2024-03-01 nics_total
#> 2065 2024-04-01 nics_total
#> 2066 2024-05-01 nics_total
#> 2067 2024-06-01 nics_total
#> 2068 2024-07-01 nics_total
#> 2069 2024-08-01 nics_total
#> 2070 2024-09-01 nics_total
#> 2071 2024-10-01 nics_total
#> 2072 2024-11-01 nics_total
#> 2073 2024-12-01 nics_total
#> 2074 2025-01-01 nics_total
#> 2075 2025-02-01 nics_total
#> 2076 2025-03-01 nics_total
#> 2077 2025-04-01 nics_total
#> 2078 2025-05-01 nics_total
#> 2079 2025-06-01 nics_total
#> 2080 2025-07-01 nics_total
#> 2081 2025-08-01 nics_total
#> 2082 2025-09-01 nics_total
#> 2083 2025-10-01 nics_total
#> 2084 2025-11-01 nics_total
#> 2085 2025-12-01 nics_total
#> 2086 2026-01-01 nics_total
#> 2087 2026-02-01 nics_total
#> 2088 2026-03-01 nics_total
#> 2089 2020-04-01 penalties
#> 2090 2020-05-01 penalties
#> 2091 2020-06-01 penalties
#> 2092 2020-07-01 penalties
#> 2093 2020-08-01 penalties
#> 2094 2020-09-01 penalties
#> 2095 2020-10-01 penalties
#> 2096 2020-11-01 penalties
#> 2097 2020-12-01 penalties
#> 2098 2021-01-01 penalties
#> 2099 2021-02-01 penalties
#> 2100 2021-03-01 penalties
#> 2101 2021-04-01 penalties
#> 2102 2021-05-01 penalties
#> 2103 2021-06-01 penalties
#> 2104 2021-07-01 penalties
#> 2105 2021-08-01 penalties
#> 2106 2021-09-01 penalties
#> 2107 2021-10-01 penalties
#> 2108 2021-11-01 penalties
#> 2109 2021-12-01 penalties
#> 2110 2022-01-01 penalties
#> 2111 2022-02-01 penalties
#> 2112 2022-03-01 penalties
#> 2113 2022-04-01 penalties
#> 2114 2022-05-01 penalties
#> 2115 2022-06-01 penalties
#> 2116 2022-07-01 penalties
#> 2117 2022-08-01 penalties
#> 2118 2022-09-01 penalties
#> 2119 2022-10-01 penalties
#> 2120 2022-11-01 penalties
#> 2121 2022-12-01 penalties
#> 2122 2023-01-01 penalties
#> 2123 2023-02-01 penalties
#> 2124 2023-03-01 penalties
#> 2125 2023-04-01 penalties
#> 2126 2023-05-01 penalties
#> 2127 2023-06-01 penalties
#> 2128 2023-07-01 penalties
#> 2129 2023-08-01 penalties
#> 2130 2023-09-01 penalties
#> 2131 2023-10-01 penalties
#> 2132 2023-11-01 penalties
#> 2133 2023-12-01 penalties
#> 2134 2024-01-01 penalties
#> 2135 2024-02-01 penalties
#> 2136 2024-03-01 penalties
#> 2137 2024-04-01 penalties
#> 2138 2024-05-01 penalties
#> 2139 2024-06-01 penalties
#> 2140 2024-07-01 penalties
#> 2141 2024-08-01 penalties
#> 2142 2024-09-01 penalties
#> 2143 2024-10-01 penalties
#> 2144 2024-11-01 penalties
#> 2145 2024-12-01 penalties
#> 2146 2025-01-01 penalties
#> 2147 2025-02-01 penalties
#> 2148 2025-03-01 penalties
#> 2149 2025-04-01 penalties
#> 2150 2025-05-01 penalties
#> 2151 2025-06-01 penalties
#> 2152 2025-07-01 penalties
#> 2153 2025-08-01 penalties
#> 2154 2025-09-01 penalties
#> 2155 2025-10-01 penalties
#> 2156 2025-11-01 penalties
#> 2157 2025-12-01 penalties
#> 2158 2026-01-01 penalties
#> 2159 2026-02-01 penalties
#> 2160 2026-03-01 penalties
#> 2161 2020-04-01 petroleum_revenue_tax
#> 2162 2020-05-01 petroleum_revenue_tax
#> 2163 2020-06-01 petroleum_revenue_tax
#> 2164 2020-07-01 petroleum_revenue_tax
#> 2165 2020-08-01 petroleum_revenue_tax
#> 2166 2020-09-01 petroleum_revenue_tax
#> 2167 2020-10-01 petroleum_revenue_tax
#> 2168 2020-11-01 petroleum_revenue_tax
#> 2169 2020-12-01 petroleum_revenue_tax
#> 2170 2021-01-01 petroleum_revenue_tax
#> 2171 2021-02-01 petroleum_revenue_tax
#> 2172 2021-03-01 petroleum_revenue_tax
#> 2173 2021-04-01 petroleum_revenue_tax
#> 2174 2021-05-01 petroleum_revenue_tax
#> 2175 2021-06-01 petroleum_revenue_tax
#> 2176 2021-07-01 petroleum_revenue_tax
#> 2177 2021-08-01 petroleum_revenue_tax
#> 2178 2021-09-01 petroleum_revenue_tax
#> 2179 2021-10-01 petroleum_revenue_tax
#> 2180 2021-11-01 petroleum_revenue_tax
#> 2181 2021-12-01 petroleum_revenue_tax
#> 2182 2022-01-01 petroleum_revenue_tax
#> 2183 2022-02-01 petroleum_revenue_tax
#> 2184 2022-03-01 petroleum_revenue_tax
#> 2185 2022-04-01 petroleum_revenue_tax
#> 2186 2022-05-01 petroleum_revenue_tax
#> 2187 2022-06-01 petroleum_revenue_tax
#> 2188 2022-07-01 petroleum_revenue_tax
#> 2189 2022-08-01 petroleum_revenue_tax
#> 2190 2022-09-01 petroleum_revenue_tax
#> 2191 2022-10-01 petroleum_revenue_tax
#> 2192 2022-11-01 petroleum_revenue_tax
#> 2193 2022-12-01 petroleum_revenue_tax
#> 2194 2023-01-01 petroleum_revenue_tax
#> 2195 2023-02-01 petroleum_revenue_tax
#> 2196 2023-03-01 petroleum_revenue_tax
#> 2197 2023-04-01 petroleum_revenue_tax
#> 2198 2023-05-01 petroleum_revenue_tax
#> 2199 2023-06-01 petroleum_revenue_tax
#> 2200 2023-07-01 petroleum_revenue_tax
#> 2201 2023-08-01 petroleum_revenue_tax
#> 2202 2023-09-01 petroleum_revenue_tax
#> 2203 2023-10-01 petroleum_revenue_tax
#> 2204 2023-11-01 petroleum_revenue_tax
#> 2205 2023-12-01 petroleum_revenue_tax
#> 2206 2024-01-01 petroleum_revenue_tax
#> 2207 2024-02-01 petroleum_revenue_tax
#> 2208 2024-03-01 petroleum_revenue_tax
#> 2209 2024-04-01 petroleum_revenue_tax
#> 2210 2024-05-01 petroleum_revenue_tax
#> 2211 2024-06-01 petroleum_revenue_tax
#> 2212 2024-07-01 petroleum_revenue_tax
#> 2213 2024-08-01 petroleum_revenue_tax
#> 2214 2024-09-01 petroleum_revenue_tax
#> 2215 2024-10-01 petroleum_revenue_tax
#> 2216 2024-11-01 petroleum_revenue_tax
#> 2217 2024-12-01 petroleum_revenue_tax
#> 2218 2025-01-01 petroleum_revenue_tax
#> 2219 2025-02-01 petroleum_revenue_tax
#> 2220 2025-03-01 petroleum_revenue_tax
#> 2221 2025-04-01 petroleum_revenue_tax
#> 2222 2025-05-01 petroleum_revenue_tax
#> 2223 2025-06-01 petroleum_revenue_tax
#> 2224 2025-07-01 petroleum_revenue_tax
#> 2225 2025-08-01 petroleum_revenue_tax
#> 2226 2025-09-01 petroleum_revenue_tax
#> 2227 2025-10-01 petroleum_revenue_tax
#> 2228 2025-11-01 petroleum_revenue_tax
#> 2229 2025-12-01 petroleum_revenue_tax
#> 2230 2026-01-01 petroleum_revenue_tax
#> 2231 2026-02-01 petroleum_revenue_tax
#> 2232 2026-03-01 petroleum_revenue_tax
#> 2233 2020-04-01 plastic_packaging_tax
#> 2234 2020-05-01 plastic_packaging_tax
#> 2235 2020-06-01 plastic_packaging_tax
#> 2236 2020-07-01 plastic_packaging_tax
#> 2237 2020-08-01 plastic_packaging_tax
#> 2238 2020-09-01 plastic_packaging_tax
#> 2239 2020-10-01 plastic_packaging_tax
#> 2240 2020-11-01 plastic_packaging_tax
#> 2241 2020-12-01 plastic_packaging_tax
#> 2242 2021-01-01 plastic_packaging_tax
#> 2243 2021-02-01 plastic_packaging_tax
#> 2244 2021-03-01 plastic_packaging_tax
#> 2245 2021-04-01 plastic_packaging_tax
#> 2246 2021-05-01 plastic_packaging_tax
#> 2247 2021-06-01 plastic_packaging_tax
#> 2248 2021-07-01 plastic_packaging_tax
#> 2249 2021-08-01 plastic_packaging_tax
#> 2250 2021-09-01 plastic_packaging_tax
#> 2251 2021-10-01 plastic_packaging_tax
#> 2252 2021-11-01 plastic_packaging_tax
#> 2253 2021-12-01 plastic_packaging_tax
#> 2254 2022-01-01 plastic_packaging_tax
#> 2255 2022-02-01 plastic_packaging_tax
#> 2256 2022-03-01 plastic_packaging_tax
#> 2257 2022-04-01 plastic_packaging_tax
#> 2258 2022-05-01 plastic_packaging_tax
#> 2259 2022-06-01 plastic_packaging_tax
#> 2260 2022-07-01 plastic_packaging_tax
#> 2261 2022-08-01 plastic_packaging_tax
#> 2262 2022-09-01 plastic_packaging_tax
#> 2263 2022-10-01 plastic_packaging_tax
#> 2264 2022-11-01 plastic_packaging_tax
#> 2265 2022-12-01 plastic_packaging_tax
#> 2266 2023-01-01 plastic_packaging_tax
#> 2267 2023-02-01 plastic_packaging_tax
#> 2268 2023-03-01 plastic_packaging_tax
#> 2269 2023-04-01 plastic_packaging_tax
#> 2270 2023-05-01 plastic_packaging_tax
#> 2271 2023-06-01 plastic_packaging_tax
#> 2272 2023-07-01 plastic_packaging_tax
#> 2273 2023-08-01 plastic_packaging_tax
#> 2274 2023-09-01 plastic_packaging_tax
#> 2275 2023-10-01 plastic_packaging_tax
#> 2276 2023-11-01 plastic_packaging_tax
#> 2277 2023-12-01 plastic_packaging_tax
#> 2278 2024-01-01 plastic_packaging_tax
#> 2279 2024-02-01 plastic_packaging_tax
#> 2280 2024-03-01 plastic_packaging_tax
#> 2281 2024-04-01 plastic_packaging_tax
#> 2282 2024-05-01 plastic_packaging_tax
#> 2283 2024-06-01 plastic_packaging_tax
#> 2284 2024-07-01 plastic_packaging_tax
#> 2285 2024-08-01 plastic_packaging_tax
#> 2286 2024-09-01 plastic_packaging_tax
#> 2287 2024-10-01 plastic_packaging_tax
#> 2288 2024-11-01 plastic_packaging_tax
#> 2289 2024-12-01 plastic_packaging_tax
#> 2290 2025-01-01 plastic_packaging_tax
#> 2291 2025-02-01 plastic_packaging_tax
#> 2292 2025-03-01 plastic_packaging_tax
#> 2293 2025-04-01 plastic_packaging_tax
#> 2294 2025-05-01 plastic_packaging_tax
#> 2295 2025-06-01 plastic_packaging_tax
#> 2296 2025-07-01 plastic_packaging_tax
#> 2297 2025-08-01 plastic_packaging_tax
#> 2298 2025-09-01 plastic_packaging_tax
#> 2299 2025-10-01 plastic_packaging_tax
#> 2300 2025-11-01 plastic_packaging_tax
#> 2301 2025-12-01 plastic_packaging_tax
#> 2302 2026-01-01 plastic_packaging_tax
#> 2303 2026-02-01 plastic_packaging_tax
#> 2304 2026-03-01 plastic_packaging_tax
#> 2305 2020-04-01 residential_property_developer_tax
#> 2306 2020-05-01 residential_property_developer_tax
#> 2307 2020-06-01 residential_property_developer_tax
#> 2308 2020-07-01 residential_property_developer_tax
#> 2309 2020-08-01 residential_property_developer_tax
#> 2310 2020-09-01 residential_property_developer_tax
#> 2311 2020-10-01 residential_property_developer_tax
#> 2312 2020-11-01 residential_property_developer_tax
#> 2313 2020-12-01 residential_property_developer_tax
#> 2314 2021-01-01 residential_property_developer_tax
#> 2315 2021-02-01 residential_property_developer_tax
#> 2316 2021-03-01 residential_property_developer_tax
#> 2317 2021-04-01 residential_property_developer_tax
#> 2318 2021-05-01 residential_property_developer_tax
#> 2319 2021-06-01 residential_property_developer_tax
#> 2320 2021-07-01 residential_property_developer_tax
#> 2321 2021-08-01 residential_property_developer_tax
#> 2322 2021-09-01 residential_property_developer_tax
#> 2323 2021-10-01 residential_property_developer_tax
#> 2324 2021-11-01 residential_property_developer_tax
#> 2325 2021-12-01 residential_property_developer_tax
#> 2326 2022-01-01 residential_property_developer_tax
#> 2327 2022-02-01 residential_property_developer_tax
#> 2328 2022-03-01 residential_property_developer_tax
#> 2329 2022-04-01 residential_property_developer_tax
#> 2330 2022-05-01 residential_property_developer_tax
#> 2331 2022-06-01 residential_property_developer_tax
#> 2332 2022-07-01 residential_property_developer_tax
#> 2333 2022-08-01 residential_property_developer_tax
#> 2334 2022-09-01 residential_property_developer_tax
#> 2335 2022-10-01 residential_property_developer_tax
#> 2336 2022-11-01 residential_property_developer_tax
#> 2337 2022-12-01 residential_property_developer_tax
#> 2338 2023-01-01 residential_property_developer_tax
#> 2339 2023-02-01 residential_property_developer_tax
#> 2340 2023-03-01 residential_property_developer_tax
#> 2341 2023-04-01 residential_property_developer_tax
#> 2342 2023-05-01 residential_property_developer_tax
#> 2343 2023-06-01 residential_property_developer_tax
#> 2344 2023-07-01 residential_property_developer_tax
#> 2345 2023-08-01 residential_property_developer_tax
#> 2346 2023-09-01 residential_property_developer_tax
#> 2347 2023-10-01 residential_property_developer_tax
#> 2348 2023-11-01 residential_property_developer_tax
#> 2349 2023-12-01 residential_property_developer_tax
#> 2350 2024-01-01 residential_property_developer_tax
#> 2351 2024-02-01 residential_property_developer_tax
#> 2352 2024-03-01 residential_property_developer_tax
#> 2353 2024-04-01 residential_property_developer_tax
#> 2354 2024-05-01 residential_property_developer_tax
#> 2355 2024-06-01 residential_property_developer_tax
#> 2356 2024-07-01 residential_property_developer_tax
#> 2357 2024-08-01 residential_property_developer_tax
#> 2358 2024-09-01 residential_property_developer_tax
#> 2359 2024-10-01 residential_property_developer_tax
#> 2360 2024-11-01 residential_property_developer_tax
#> 2361 2024-12-01 residential_property_developer_tax
#> 2362 2025-01-01 residential_property_developer_tax
#> 2363 2025-02-01 residential_property_developer_tax
#> 2364 2025-03-01 residential_property_developer_tax
#> 2365 2025-04-01 residential_property_developer_tax
#> 2366 2025-05-01 residential_property_developer_tax
#> 2367 2025-06-01 residential_property_developer_tax
#> 2368 2025-07-01 residential_property_developer_tax
#> 2369 2025-08-01 residential_property_developer_tax
#> 2370 2025-09-01 residential_property_developer_tax
#> 2371 2025-10-01 residential_property_developer_tax
#> 2372 2025-11-01 residential_property_developer_tax
#> 2373 2025-12-01 residential_property_developer_tax
#> 2374 2026-01-01 residential_property_developer_tax
#> 2375 2026-02-01 residential_property_developer_tax
#> 2376 2026-03-01 residential_property_developer_tax
#> 2377 2020-04-01 sdlt
#> 2378 2020-05-01 sdlt
#> 2379 2020-06-01 sdlt
#> 2380 2020-07-01 sdlt
#> 2381 2020-08-01 sdlt
#> 2382 2020-09-01 sdlt
#> 2383 2020-10-01 sdlt
#> 2384 2020-11-01 sdlt
#> 2385 2020-12-01 sdlt
#> 2386 2021-01-01 sdlt
#> 2387 2021-02-01 sdlt
#> 2388 2021-03-01 sdlt
#> 2389 2021-04-01 sdlt
#> 2390 2021-05-01 sdlt
#> 2391 2021-06-01 sdlt
#> 2392 2021-07-01 sdlt
#> 2393 2021-08-01 sdlt
#> 2394 2021-09-01 sdlt
#> 2395 2021-10-01 sdlt
#> 2396 2021-11-01 sdlt
#> 2397 2021-12-01 sdlt
#> 2398 2022-01-01 sdlt
#> 2399 2022-02-01 sdlt
#> 2400 2022-03-01 sdlt
#> 2401 2022-04-01 sdlt
#> 2402 2022-05-01 sdlt
#> 2403 2022-06-01 sdlt
#> 2404 2022-07-01 sdlt
#> 2405 2022-08-01 sdlt
#> 2406 2022-09-01 sdlt
#> 2407 2022-10-01 sdlt
#> 2408 2022-11-01 sdlt
#> 2409 2022-12-01 sdlt
#> 2410 2023-01-01 sdlt
#> 2411 2023-02-01 sdlt
#> 2412 2023-03-01 sdlt
#> 2413 2023-04-01 sdlt
#> 2414 2023-05-01 sdlt
#> 2415 2023-06-01 sdlt
#> 2416 2023-07-01 sdlt
#> 2417 2023-08-01 sdlt
#> 2418 2023-09-01 sdlt
#> 2419 2023-10-01 sdlt
#> 2420 2023-11-01 sdlt
#> 2421 2023-12-01 sdlt
#> 2422 2024-01-01 sdlt
#> 2423 2024-02-01 sdlt
#> 2424 2024-03-01 sdlt
#> 2425 2024-04-01 sdlt
#> 2426 2024-05-01 sdlt
#> 2427 2024-06-01 sdlt
#> 2428 2024-07-01 sdlt
#> 2429 2024-08-01 sdlt
#> 2430 2024-09-01 sdlt
#> 2431 2024-10-01 sdlt
#> 2432 2024-11-01 sdlt
#> 2433 2024-12-01 sdlt
#> 2434 2025-01-01 sdlt
#> 2435 2025-02-01 sdlt
#> 2436 2025-03-01 sdlt
#> 2437 2025-04-01 sdlt
#> 2438 2025-05-01 sdlt
#> 2439 2025-06-01 sdlt
#> 2440 2025-07-01 sdlt
#> 2441 2025-08-01 sdlt
#> 2442 2025-09-01 sdlt
#> 2443 2025-10-01 sdlt
#> 2444 2025-11-01 sdlt
#> 2445 2025-12-01 sdlt
#> 2446 2026-01-01 sdlt
#> 2447 2026-02-01 sdlt
#> 2448 2026-03-01 sdlt
#> 2449 2020-04-01 soft_drinks_levy
#> 2450 2020-05-01 soft_drinks_levy
#> 2451 2020-06-01 soft_drinks_levy
#> 2452 2020-07-01 soft_drinks_levy
#> 2453 2020-08-01 soft_drinks_levy
#> 2454 2020-09-01 soft_drinks_levy
#> 2455 2020-10-01 soft_drinks_levy
#> 2456 2020-11-01 soft_drinks_levy
#> 2457 2020-12-01 soft_drinks_levy
#> 2458 2021-01-01 soft_drinks_levy
#> 2459 2021-02-01 soft_drinks_levy
#> 2460 2021-03-01 soft_drinks_levy
#> 2461 2021-04-01 soft_drinks_levy
#> 2462 2021-05-01 soft_drinks_levy
#> 2463 2021-06-01 soft_drinks_levy
#> 2464 2021-07-01 soft_drinks_levy
#> 2465 2021-08-01 soft_drinks_levy
#> 2466 2021-09-01 soft_drinks_levy
#> 2467 2021-10-01 soft_drinks_levy
#> 2468 2021-11-01 soft_drinks_levy
#> 2469 2021-12-01 soft_drinks_levy
#> 2470 2022-01-01 soft_drinks_levy
#> 2471 2022-02-01 soft_drinks_levy
#> 2472 2022-03-01 soft_drinks_levy
#> 2473 2022-04-01 soft_drinks_levy
#> 2474 2022-05-01 soft_drinks_levy
#> 2475 2022-06-01 soft_drinks_levy
#> 2476 2022-07-01 soft_drinks_levy
#> 2477 2022-08-01 soft_drinks_levy
#> 2478 2022-09-01 soft_drinks_levy
#> 2479 2022-10-01 soft_drinks_levy
#> 2480 2022-11-01 soft_drinks_levy
#> 2481 2022-12-01 soft_drinks_levy
#> 2482 2023-01-01 soft_drinks_levy
#> 2483 2023-02-01 soft_drinks_levy
#> 2484 2023-03-01 soft_drinks_levy
#> 2485 2023-04-01 soft_drinks_levy
#> 2486 2023-05-01 soft_drinks_levy
#> 2487 2023-06-01 soft_drinks_levy
#> 2488 2023-07-01 soft_drinks_levy
#> 2489 2023-08-01 soft_drinks_levy
#> 2490 2023-09-01 soft_drinks_levy
#> 2491 2023-10-01 soft_drinks_levy
#> 2492 2023-11-01 soft_drinks_levy
#> 2493 2023-12-01 soft_drinks_levy
#> 2494 2024-01-01 soft_drinks_levy
#> 2495 2024-02-01 soft_drinks_levy
#> 2496 2024-03-01 soft_drinks_levy
#> 2497 2024-04-01 soft_drinks_levy
#> 2498 2024-05-01 soft_drinks_levy
#> 2499 2024-06-01 soft_drinks_levy
#> 2500 2024-07-01 soft_drinks_levy
#> 2501 2024-08-01 soft_drinks_levy
#> 2502 2024-09-01 soft_drinks_levy
#> 2503 2024-10-01 soft_drinks_levy
#> 2504 2024-11-01 soft_drinks_levy
#> 2505 2024-12-01 soft_drinks_levy
#> 2506 2025-01-01 soft_drinks_levy
#> 2507 2025-02-01 soft_drinks_levy
#> 2508 2025-03-01 soft_drinks_levy
#> 2509 2025-04-01 soft_drinks_levy
#> 2510 2025-05-01 soft_drinks_levy
#> 2511 2025-06-01 soft_drinks_levy
#> 2512 2025-07-01 soft_drinks_levy
#> 2513 2025-08-01 soft_drinks_levy
#> 2514 2025-09-01 soft_drinks_levy
#> 2515 2025-10-01 soft_drinks_levy
#> 2516 2025-11-01 soft_drinks_levy
#> 2517 2025-12-01 soft_drinks_levy
#> 2518 2026-01-01 soft_drinks_levy
#> 2519 2026-02-01 soft_drinks_levy
#> 2520 2026-03-01 soft_drinks_levy
#> 2521 2020-04-01 spirits_duty
#> 2522 2020-05-01 spirits_duty
#> 2523 2020-06-01 spirits_duty
#> 2524 2020-07-01 spirits_duty
#> 2525 2020-08-01 spirits_duty
#> 2526 2020-09-01 spirits_duty
#> 2527 2020-10-01 spirits_duty
#> 2528 2020-11-01 spirits_duty
#> 2529 2020-12-01 spirits_duty
#> 2530 2021-01-01 spirits_duty
#> 2531 2021-02-01 spirits_duty
#> 2532 2021-03-01 spirits_duty
#> 2533 2021-04-01 spirits_duty
#> 2534 2021-05-01 spirits_duty
#> 2535 2021-06-01 spirits_duty
#> 2536 2021-07-01 spirits_duty
#> 2537 2021-08-01 spirits_duty
#> 2538 2021-09-01 spirits_duty
#> 2539 2021-10-01 spirits_duty
#> 2540 2021-11-01 spirits_duty
#> 2541 2021-12-01 spirits_duty
#> 2542 2022-01-01 spirits_duty
#> 2543 2022-02-01 spirits_duty
#> 2544 2022-03-01 spirits_duty
#> 2545 2022-04-01 spirits_duty
#> 2546 2022-05-01 spirits_duty
#> 2547 2022-06-01 spirits_duty
#> 2548 2022-07-01 spirits_duty
#> 2549 2022-08-01 spirits_duty
#> 2550 2022-09-01 spirits_duty
#> 2551 2022-10-01 spirits_duty
#> 2552 2022-11-01 spirits_duty
#> 2553 2022-12-01 spirits_duty
#> 2554 2023-01-01 spirits_duty
#> 2555 2023-02-01 spirits_duty
#> 2556 2023-03-01 spirits_duty
#> 2557 2023-04-01 spirits_duty
#> 2558 2023-05-01 spirits_duty
#> 2559 2023-06-01 spirits_duty
#> 2560 2023-07-01 spirits_duty
#> 2561 2023-08-01 spirits_duty
#> 2562 2023-09-01 spirits_duty
#> 2563 2023-10-01 spirits_duty
#> 2564 2023-11-01 spirits_duty
#> 2565 2023-12-01 spirits_duty
#> 2566 2024-01-01 spirits_duty
#> 2567 2024-02-01 spirits_duty
#> 2568 2024-03-01 spirits_duty
#> 2569 2024-04-01 spirits_duty
#> 2570 2024-05-01 spirits_duty
#> 2571 2024-06-01 spirits_duty
#> 2572 2024-07-01 spirits_duty
#> 2573 2024-08-01 spirits_duty
#> 2574 2024-09-01 spirits_duty
#> 2575 2024-10-01 spirits_duty
#> 2576 2024-11-01 spirits_duty
#> 2577 2024-12-01 spirits_duty
#> 2578 2025-01-01 spirits_duty
#> 2579 2025-02-01 spirits_duty
#> 2580 2025-03-01 spirits_duty
#> 2581 2025-04-01 spirits_duty
#> 2582 2025-05-01 spirits_duty
#> 2583 2025-06-01 spirits_duty
#> 2584 2025-07-01 spirits_duty
#> 2585 2025-08-01 spirits_duty
#> 2586 2025-09-01 spirits_duty
#> 2587 2025-10-01 spirits_duty
#> 2588 2025-11-01 spirits_duty
#> 2589 2025-12-01 spirits_duty
#> 2590 2026-01-01 spirits_duty
#> 2591 2026-02-01 spirits_duty
#> 2592 2026-03-01 spirits_duty
#> 2593 2020-04-01 stamp_duty_shares
#> 2594 2020-05-01 stamp_duty_shares
#> 2595 2020-06-01 stamp_duty_shares
#> 2596 2020-07-01 stamp_duty_shares
#> 2597 2020-08-01 stamp_duty_shares
#> 2598 2020-09-01 stamp_duty_shares
#> 2599 2020-10-01 stamp_duty_shares
#> 2600 2020-11-01 stamp_duty_shares
#> 2601 2020-12-01 stamp_duty_shares
#> 2602 2021-01-01 stamp_duty_shares
#> 2603 2021-02-01 stamp_duty_shares
#> 2604 2021-03-01 stamp_duty_shares
#> 2605 2021-04-01 stamp_duty_shares
#> 2606 2021-05-01 stamp_duty_shares
#> 2607 2021-06-01 stamp_duty_shares
#> 2608 2021-07-01 stamp_duty_shares
#> 2609 2021-08-01 stamp_duty_shares
#> 2610 2021-09-01 stamp_duty_shares
#> 2611 2021-10-01 stamp_duty_shares
#> 2612 2021-11-01 stamp_duty_shares
#> 2613 2021-12-01 stamp_duty_shares
#> 2614 2022-01-01 stamp_duty_shares
#> 2615 2022-02-01 stamp_duty_shares
#> 2616 2022-03-01 stamp_duty_shares
#> 2617 2022-04-01 stamp_duty_shares
#> 2618 2022-05-01 stamp_duty_shares
#> 2619 2022-06-01 stamp_duty_shares
#> 2620 2022-07-01 stamp_duty_shares
#> 2621 2022-08-01 stamp_duty_shares
#> 2622 2022-09-01 stamp_duty_shares
#> 2623 2022-10-01 stamp_duty_shares
#> 2624 2022-11-01 stamp_duty_shares
#> 2625 2022-12-01 stamp_duty_shares
#> 2626 2023-01-01 stamp_duty_shares
#> 2627 2023-02-01 stamp_duty_shares
#> 2628 2023-03-01 stamp_duty_shares
#> 2629 2023-04-01 stamp_duty_shares
#> 2630 2023-05-01 stamp_duty_shares
#> 2631 2023-06-01 stamp_duty_shares
#> 2632 2023-07-01 stamp_duty_shares
#> 2633 2023-08-01 stamp_duty_shares
#> 2634 2023-09-01 stamp_duty_shares
#> 2635 2023-10-01 stamp_duty_shares
#> 2636 2023-11-01 stamp_duty_shares
#> 2637 2023-12-01 stamp_duty_shares
#> 2638 2024-01-01 stamp_duty_shares
#> 2639 2024-02-01 stamp_duty_shares
#> 2640 2024-03-01 stamp_duty_shares
#> 2641 2024-04-01 stamp_duty_shares
#> 2642 2024-05-01 stamp_duty_shares
#> 2643 2024-06-01 stamp_duty_shares
#> 2644 2024-07-01 stamp_duty_shares
#> 2645 2024-08-01 stamp_duty_shares
#> 2646 2024-09-01 stamp_duty_shares
#> 2647 2024-10-01 stamp_duty_shares
#> 2648 2024-11-01 stamp_duty_shares
#> 2649 2024-12-01 stamp_duty_shares
#> 2650 2025-01-01 stamp_duty_shares
#> 2651 2025-02-01 stamp_duty_shares
#> 2652 2025-03-01 stamp_duty_shares
#> 2653 2025-04-01 stamp_duty_shares
#> 2654 2025-05-01 stamp_duty_shares
#> 2655 2025-06-01 stamp_duty_shares
#> 2656 2025-07-01 stamp_duty_shares
#> 2657 2025-08-01 stamp_duty_shares
#> 2658 2025-09-01 stamp_duty_shares
#> 2659 2025-10-01 stamp_duty_shares
#> 2660 2025-11-01 stamp_duty_shares
#> 2661 2025-12-01 stamp_duty_shares
#> 2662 2026-01-01 stamp_duty_shares
#> 2663 2026-02-01 stamp_duty_shares
#> 2664 2026-03-01 stamp_duty_shares
#> 2665 2020-04-01 tobacco_duty
#> 2666 2020-05-01 tobacco_duty
#> 2667 2020-06-01 tobacco_duty
#> 2668 2020-07-01 tobacco_duty
#> 2669 2020-08-01 tobacco_duty
#> 2670 2020-09-01 tobacco_duty
#> 2671 2020-10-01 tobacco_duty
#> 2672 2020-11-01 tobacco_duty
#> 2673 2020-12-01 tobacco_duty
#> 2674 2021-01-01 tobacco_duty
#> 2675 2021-02-01 tobacco_duty
#> 2676 2021-03-01 tobacco_duty
#> 2677 2021-04-01 tobacco_duty
#> 2678 2021-05-01 tobacco_duty
#> 2679 2021-06-01 tobacco_duty
#> 2680 2021-07-01 tobacco_duty
#> 2681 2021-08-01 tobacco_duty
#> 2682 2021-09-01 tobacco_duty
#> 2683 2021-10-01 tobacco_duty
#> 2684 2021-11-01 tobacco_duty
#> 2685 2021-12-01 tobacco_duty
#> 2686 2022-01-01 tobacco_duty
#> 2687 2022-02-01 tobacco_duty
#> 2688 2022-03-01 tobacco_duty
#> 2689 2022-04-01 tobacco_duty
#> 2690 2022-05-01 tobacco_duty
#> 2691 2022-06-01 tobacco_duty
#> 2692 2022-07-01 tobacco_duty
#> 2693 2022-08-01 tobacco_duty
#> 2694 2022-09-01 tobacco_duty
#> 2695 2022-10-01 tobacco_duty
#> 2696 2022-11-01 tobacco_duty
#> 2697 2022-12-01 tobacco_duty
#> 2698 2023-01-01 tobacco_duty
#> 2699 2023-02-01 tobacco_duty
#> 2700 2023-03-01 tobacco_duty
#> 2701 2023-04-01 tobacco_duty
#> 2702 2023-05-01 tobacco_duty
#> 2703 2023-06-01 tobacco_duty
#> 2704 2023-07-01 tobacco_duty
#> 2705 2023-08-01 tobacco_duty
#> 2706 2023-09-01 tobacco_duty
#> 2707 2023-10-01 tobacco_duty
#> 2708 2023-11-01 tobacco_duty
#> 2709 2023-12-01 tobacco_duty
#> 2710 2024-01-01 tobacco_duty
#> 2711 2024-02-01 tobacco_duty
#> 2712 2024-03-01 tobacco_duty
#> 2713 2024-04-01 tobacco_duty
#> 2714 2024-05-01 tobacco_duty
#> 2715 2024-06-01 tobacco_duty
#> 2716 2024-07-01 tobacco_duty
#> 2717 2024-08-01 tobacco_duty
#> 2718 2024-09-01 tobacco_duty
#> 2719 2024-10-01 tobacco_duty
#> 2720 2024-11-01 tobacco_duty
#> 2721 2024-12-01 tobacco_duty
#> 2722 2025-01-01 tobacco_duty
#> 2723 2025-02-01 tobacco_duty
#> 2724 2025-03-01 tobacco_duty
#> 2725 2025-04-01 tobacco_duty
#> 2726 2025-05-01 tobacco_duty
#> 2727 2025-06-01 tobacco_duty
#> 2728 2025-07-01 tobacco_duty
#> 2729 2025-08-01 tobacco_duty
#> 2730 2025-09-01 tobacco_duty
#> 2731 2025-10-01 tobacco_duty
#> 2732 2025-11-01 tobacco_duty
#> 2733 2025-12-01 tobacco_duty
#> 2734 2026-01-01 tobacco_duty
#> 2735 2026-02-01 tobacco_duty
#> 2736 2026-03-01 tobacco_duty
#> 2737 2020-04-01 total_receipts
#> 2738 2020-05-01 total_receipts
#> 2739 2020-06-01 total_receipts
#> 2740 2020-07-01 total_receipts
#> 2741 2020-08-01 total_receipts
#> 2742 2020-09-01 total_receipts
#> 2743 2020-10-01 total_receipts
#> 2744 2020-11-01 total_receipts
#> 2745 2020-12-01 total_receipts
#> 2746 2021-01-01 total_receipts
#> 2747 2021-02-01 total_receipts
#> 2748 2021-03-01 total_receipts
#> 2749 2021-04-01 total_receipts
#> 2750 2021-05-01 total_receipts
#> 2751 2021-06-01 total_receipts
#> 2752 2021-07-01 total_receipts
#> 2753 2021-08-01 total_receipts
#> 2754 2021-09-01 total_receipts
#> 2755 2021-10-01 total_receipts
#> 2756 2021-11-01 total_receipts
#> 2757 2021-12-01 total_receipts
#> 2758 2022-01-01 total_receipts
#> 2759 2022-02-01 total_receipts
#> 2760 2022-03-01 total_receipts
#> 2761 2022-04-01 total_receipts
#> 2762 2022-05-01 total_receipts
#> 2763 2022-06-01 total_receipts
#> 2764 2022-07-01 total_receipts
#> 2765 2022-08-01 total_receipts
#> 2766 2022-09-01 total_receipts
#> 2767 2022-10-01 total_receipts
#> 2768 2022-11-01 total_receipts
#> 2769 2022-12-01 total_receipts
#> 2770 2023-01-01 total_receipts
#> 2771 2023-02-01 total_receipts
#> 2772 2023-03-01 total_receipts
#> 2773 2023-04-01 total_receipts
#> 2774 2023-05-01 total_receipts
#> 2775 2023-06-01 total_receipts
#> 2776 2023-07-01 total_receipts
#> 2777 2023-08-01 total_receipts
#> 2778 2023-09-01 total_receipts
#> 2779 2023-10-01 total_receipts
#> 2780 2023-11-01 total_receipts
#> 2781 2023-12-01 total_receipts
#> 2782 2024-01-01 total_receipts
#> 2783 2024-02-01 total_receipts
#> 2784 2024-03-01 total_receipts
#> 2785 2024-04-01 total_receipts
#> 2786 2024-05-01 total_receipts
#> 2787 2024-06-01 total_receipts
#> 2788 2024-07-01 total_receipts
#> 2789 2024-08-01 total_receipts
#> 2790 2024-09-01 total_receipts
#> 2791 2024-10-01 total_receipts
#> 2792 2024-11-01 total_receipts
#> 2793 2024-12-01 total_receipts
#> 2794 2025-01-01 total_receipts
#> 2795 2025-02-01 total_receipts
#> 2796 2025-03-01 total_receipts
#> 2797 2025-04-01 total_receipts
#> 2798 2025-05-01 total_receipts
#> 2799 2025-06-01 total_receipts
#> 2800 2025-07-01 total_receipts
#> 2801 2025-08-01 total_receipts
#> 2802 2025-09-01 total_receipts
#> 2803 2025-10-01 total_receipts
#> 2804 2025-11-01 total_receipts
#> 2805 2025-12-01 total_receipts
#> 2806 2026-01-01 total_receipts
#> 2807 2026-02-01 total_receipts
#> 2808 2026-03-01 total_receipts
#> 2809 2020-04-01 vat
#> 2810 2020-05-01 vat
#> 2811 2020-06-01 vat
#> 2812 2020-07-01 vat
#> 2813 2020-08-01 vat
#> 2814 2020-09-01 vat
#> 2815 2020-10-01 vat
#> 2816 2020-11-01 vat
#> 2817 2020-12-01 vat
#> 2818 2021-01-01 vat
#> 2819 2021-02-01 vat
#> 2820 2021-03-01 vat
#> 2821 2021-04-01 vat
#> 2822 2021-05-01 vat
#> 2823 2021-06-01 vat
#> 2824 2021-07-01 vat
#> 2825 2021-08-01 vat
#> 2826 2021-09-01 vat
#> 2827 2021-10-01 vat
#> 2828 2021-11-01 vat
#> 2829 2021-12-01 vat
#> 2830 2022-01-01 vat
#> 2831 2022-02-01 vat
#> 2832 2022-03-01 vat
#> 2833 2022-04-01 vat
#> 2834 2022-05-01 vat
#> 2835 2022-06-01 vat
#> 2836 2022-07-01 vat
#> 2837 2022-08-01 vat
#> 2838 2022-09-01 vat
#> 2839 2022-10-01 vat
#> 2840 2022-11-01 vat
#> 2841 2022-12-01 vat
#> 2842 2023-01-01 vat
#> 2843 2023-02-01 vat
#> 2844 2023-03-01 vat
#> 2845 2023-04-01 vat
#> 2846 2023-05-01 vat
#> 2847 2023-06-01 vat
#> 2848 2023-07-01 vat
#> 2849 2023-08-01 vat
#> 2850 2023-09-01 vat
#> 2851 2023-10-01 vat
#> 2852 2023-11-01 vat
#> 2853 2023-12-01 vat
#> 2854 2024-01-01 vat
#> 2855 2024-02-01 vat
#> 2856 2024-03-01 vat
#> 2857 2024-04-01 vat
#> 2858 2024-05-01 vat
#> 2859 2024-06-01 vat
#> 2860 2024-07-01 vat
#> 2861 2024-08-01 vat
#> 2862 2024-09-01 vat
#> 2863 2024-10-01 vat
#> 2864 2024-11-01 vat
#> 2865 2024-12-01 vat
#> 2866 2025-01-01 vat
#> 2867 2025-02-01 vat
#> 2868 2025-03-01 vat
#> 2869 2025-04-01 vat
#> 2870 2025-05-01 vat
#> 2871 2025-06-01 vat
#> 2872 2025-07-01 vat
#> 2873 2025-08-01 vat
#> 2874 2025-09-01 vat
#> 2875 2025-10-01 vat
#> 2876 2025-11-01 vat
#> 2877 2025-12-01 vat
#> 2878 2026-01-01 vat
#> 2879 2026-02-01 vat
#> 2880 2026-03-01 vat
#> 2881 2020-04-01 wine_duty
#> 2882 2020-05-01 wine_duty
#> 2883 2020-06-01 wine_duty
#> 2884 2020-07-01 wine_duty
#> 2885 2020-08-01 wine_duty
#> 2886 2020-09-01 wine_duty
#> 2887 2020-10-01 wine_duty
#> 2888 2020-11-01 wine_duty
#> 2889 2020-12-01 wine_duty
#> 2890 2021-01-01 wine_duty
#> 2891 2021-02-01 wine_duty
#> 2892 2021-03-01 wine_duty
#> 2893 2021-04-01 wine_duty
#> 2894 2021-05-01 wine_duty
#> 2895 2021-06-01 wine_duty
#> 2896 2021-07-01 wine_duty
#> 2897 2021-08-01 wine_duty
#> 2898 2021-09-01 wine_duty
#> 2899 2021-10-01 wine_duty
#> 2900 2021-11-01 wine_duty
#> 2901 2021-12-01 wine_duty
#> 2902 2022-01-01 wine_duty
#> 2903 2022-02-01 wine_duty
#> 2904 2022-03-01 wine_duty
#> 2905 2022-04-01 wine_duty
#> 2906 2022-05-01 wine_duty
#> 2907 2022-06-01 wine_duty
#> 2908 2022-07-01 wine_duty
#> 2909 2022-08-01 wine_duty
#> 2910 2022-09-01 wine_duty
#> 2911 2022-10-01 wine_duty
#> 2912 2022-11-01 wine_duty
#> 2913 2022-12-01 wine_duty
#> 2914 2023-01-01 wine_duty
#> 2915 2023-02-01 wine_duty
#> 2916 2023-03-01 wine_duty
#> 2917 2023-04-01 wine_duty
#> 2918 2023-05-01 wine_duty
#> 2919 2023-06-01 wine_duty
#> 2920 2023-07-01 wine_duty
#> 2921 2023-08-01 wine_duty
#> 2922 2023-09-01 wine_duty
#> 2923 2023-10-01 wine_duty
#> 2924 2023-11-01 wine_duty
#> 2925 2023-12-01 wine_duty
#> 2926 2024-01-01 wine_duty
#> 2927 2024-02-01 wine_duty
#> 2928 2024-03-01 wine_duty
#> 2929 2024-04-01 wine_duty
#> 2930 2024-05-01 wine_duty
#> 2931 2024-06-01 wine_duty
#> 2932 2024-07-01 wine_duty
#> 2933 2024-08-01 wine_duty
#> 2934 2024-09-01 wine_duty
#> 2935 2024-10-01 wine_duty
#> 2936 2024-11-01 wine_duty
#> 2937 2024-12-01 wine_duty
#> 2938 2025-01-01 wine_duty
#> 2939 2025-02-01 wine_duty
#> 2940 2025-03-01 wine_duty
#> 2941 2025-04-01 wine_duty
#> 2942 2025-05-01 wine_duty
#> 2943 2025-06-01 wine_duty
#> 2944 2025-07-01 wine_duty
#> 2945 2025-08-01 wine_duty
#> 2946 2025-09-01 wine_duty
#> 2947 2025-10-01 wine_duty
#> 2948 2025-11-01 wine_duty
#> 2949 2025-12-01 wine_duty
#> 2950 2026-01-01 wine_duty
#> 2951 2026-02-01 wine_duty
#> 2952 2026-03-01 wine_duty
#> description
#> 1 Aggregates Levy
#> 2 Aggregates Levy
#> 3 Aggregates Levy
#> 4 Aggregates Levy
#> 5 Aggregates Levy
#> 6 Aggregates Levy
#> 7 Aggregates Levy
#> 8 Aggregates Levy
#> 9 Aggregates Levy
#> 10 Aggregates Levy
#> 11 Aggregates Levy
#> 12 Aggregates Levy
#> 13 Aggregates Levy
#> 14 Aggregates Levy
#> 15 Aggregates Levy
#> 16 Aggregates Levy
#> 17 Aggregates Levy
#> 18 Aggregates Levy
#> 19 Aggregates Levy
#> 20 Aggregates Levy
#> 21 Aggregates Levy
#> 22 Aggregates Levy
#> 23 Aggregates Levy
#> 24 Aggregates Levy
#> 25 Aggregates Levy
#> 26 Aggregates Levy
#> 27 Aggregates Levy
#> 28 Aggregates Levy
#> 29 Aggregates Levy
#> 30 Aggregates Levy
#> 31 Aggregates Levy
#> 32 Aggregates Levy
#> 33 Aggregates Levy
#> 34 Aggregates Levy
#> 35 Aggregates Levy
#> 36 Aggregates Levy
#> 37 Aggregates Levy
#> 38 Aggregates Levy
#> 39 Aggregates Levy
#> 40 Aggregates Levy
#> 41 Aggregates Levy
#> 42 Aggregates Levy
#> 43 Aggregates Levy
#> 44 Aggregates Levy
#> 45 Aggregates Levy
#> 46 Aggregates Levy
#> 47 Aggregates Levy
#> 48 Aggregates Levy
#> 49 Aggregates Levy
#> 50 Aggregates Levy
#> 51 Aggregates Levy
#> 52 Aggregates Levy
#> 53 Aggregates Levy
#> 54 Aggregates Levy
#> 55 Aggregates Levy
#> 56 Aggregates Levy
#> 57 Aggregates Levy
#> 58 Aggregates Levy
#> 59 Aggregates Levy
#> 60 Aggregates Levy
#> 61 Aggregates Levy
#> 62 Aggregates Levy
#> 63 Aggregates Levy
#> 64 Aggregates Levy
#> 65 Aggregates Levy
#> 66 Aggregates Levy
#> 67 Aggregates Levy
#> 68 Aggregates Levy
#> 69 Aggregates Levy
#> 70 Aggregates Levy
#> 71 Aggregates Levy
#> 72 Aggregates Levy
#> 73 Air Passenger Duty
#> 74 Air Passenger Duty
#> 75 Air Passenger Duty
#> 76 Air Passenger Duty
#> 77 Air Passenger Duty
#> 78 Air Passenger Duty
#> 79 Air Passenger Duty
#> 80 Air Passenger Duty
#> 81 Air Passenger Duty
#> 82 Air Passenger Duty
#> 83 Air Passenger Duty
#> 84 Air Passenger Duty
#> 85 Air Passenger Duty
#> 86 Air Passenger Duty
#> 87 Air Passenger Duty
#> 88 Air Passenger Duty
#> 89 Air Passenger Duty
#> 90 Air Passenger Duty
#> 91 Air Passenger Duty
#> 92 Air Passenger Duty
#> 93 Air Passenger Duty
#> 94 Air Passenger Duty
#> 95 Air Passenger Duty
#> 96 Air Passenger Duty
#> 97 Air Passenger Duty
#> 98 Air Passenger Duty
#> 99 Air Passenger Duty
#> 100 Air Passenger Duty
#> 101 Air Passenger Duty
#> 102 Air Passenger Duty
#> 103 Air Passenger Duty
#> 104 Air Passenger Duty
#> 105 Air Passenger Duty
#> 106 Air Passenger Duty
#> 107 Air Passenger Duty
#> 108 Air Passenger Duty
#> 109 Air Passenger Duty
#> 110 Air Passenger Duty
#> 111 Air Passenger Duty
#> 112 Air Passenger Duty
#> 113 Air Passenger Duty
#> 114 Air Passenger Duty
#> 115 Air Passenger Duty
#> 116 Air Passenger Duty
#> 117 Air Passenger Duty
#> 118 Air Passenger Duty
#> 119 Air Passenger Duty
#> 120 Air Passenger Duty
#> 121 Air Passenger Duty
#> 122 Air Passenger Duty
#> 123 Air Passenger Duty
#> 124 Air Passenger Duty
#> 125 Air Passenger Duty
#> 126 Air Passenger Duty
#> 127 Air Passenger Duty
#> 128 Air Passenger Duty
#> 129 Air Passenger Duty
#> 130 Air Passenger Duty
#> 131 Air Passenger Duty
#> 132 Air Passenger Duty
#> 133 Air Passenger Duty
#> 134 Air Passenger Duty
#> 135 Air Passenger Duty
#> 136 Air Passenger Duty
#> 137 Air Passenger Duty
#> 138 Air Passenger Duty
#> 139 Air Passenger Duty
#> 140 Air Passenger Duty
#> 141 Air Passenger Duty
#> 142 Air Passenger Duty
#> 143 Air Passenger Duty
#> 144 Air Passenger Duty
#> 145 Apprenticeship Levy
#> 146 Apprenticeship Levy
#> 147 Apprenticeship Levy
#> 148 Apprenticeship Levy
#> 149 Apprenticeship Levy
#> 150 Apprenticeship Levy
#> 151 Apprenticeship Levy
#> 152 Apprenticeship Levy
#> 153 Apprenticeship Levy
#> 154 Apprenticeship Levy
#> 155 Apprenticeship Levy
#> 156 Apprenticeship Levy
#> 157 Apprenticeship Levy
#> 158 Apprenticeship Levy
#> 159 Apprenticeship Levy
#> 160 Apprenticeship Levy
#> 161 Apprenticeship Levy
#> 162 Apprenticeship Levy
#> 163 Apprenticeship Levy
#> 164 Apprenticeship Levy
#> 165 Apprenticeship Levy
#> 166 Apprenticeship Levy
#> 167 Apprenticeship Levy
#> 168 Apprenticeship Levy
#> 169 Apprenticeship Levy
#> 170 Apprenticeship Levy
#> 171 Apprenticeship Levy
#> 172 Apprenticeship Levy
#> 173 Apprenticeship Levy
#> 174 Apprenticeship Levy
#> 175 Apprenticeship Levy
#> 176 Apprenticeship Levy
#> 177 Apprenticeship Levy
#> 178 Apprenticeship Levy
#> 179 Apprenticeship Levy
#> 180 Apprenticeship Levy
#> 181 Apprenticeship Levy
#> 182 Apprenticeship Levy
#> 183 Apprenticeship Levy
#> 184 Apprenticeship Levy
#> 185 Apprenticeship Levy
#> 186 Apprenticeship Levy
#> 187 Apprenticeship Levy
#> 188 Apprenticeship Levy
#> 189 Apprenticeship Levy
#> 190 Apprenticeship Levy
#> 191 Apprenticeship Levy
#> 192 Apprenticeship Levy
#> 193 Apprenticeship Levy
#> 194 Apprenticeship Levy
#> 195 Apprenticeship Levy
#> 196 Apprenticeship Levy
#> 197 Apprenticeship Levy
#> 198 Apprenticeship Levy
#> 199 Apprenticeship Levy
#> 200 Apprenticeship Levy
#> 201 Apprenticeship Levy
#> 202 Apprenticeship Levy
#> 203 Apprenticeship Levy
#> 204 Apprenticeship Levy
#> 205 Apprenticeship Levy
#> 206 Apprenticeship Levy
#> 207 Apprenticeship Levy
#> 208 Apprenticeship Levy
#> 209 Apprenticeship Levy
#> 210 Apprenticeship Levy
#> 211 Apprenticeship Levy
#> 212 Apprenticeship Levy
#> 213 Apprenticeship Levy
#> 214 Apprenticeship Levy
#> 215 Apprenticeship Levy
#> 216 Apprenticeship Levy
#> 217 Annual Tax on Enveloped Dwellings
#> 218 Annual Tax on Enveloped Dwellings
#> 219 Annual Tax on Enveloped Dwellings
#> 220 Annual Tax on Enveloped Dwellings
#> 221 Annual Tax on Enveloped Dwellings
#> 222 Annual Tax on Enveloped Dwellings
#> 223 Annual Tax on Enveloped Dwellings
#> 224 Annual Tax on Enveloped Dwellings
#> 225 Annual Tax on Enveloped Dwellings
#> 226 Annual Tax on Enveloped Dwellings
#> 227 Annual Tax on Enveloped Dwellings
#> 228 Annual Tax on Enveloped Dwellings
#> 229 Annual Tax on Enveloped Dwellings
#> 230 Annual Tax on Enveloped Dwellings
#> 231 Annual Tax on Enveloped Dwellings
#> 232 Annual Tax on Enveloped Dwellings
#> 233 Annual Tax on Enveloped Dwellings
#> 234 Annual Tax on Enveloped Dwellings
#> 235 Annual Tax on Enveloped Dwellings
#> 236 Annual Tax on Enveloped Dwellings
#> 237 Annual Tax on Enveloped Dwellings
#> 238 Annual Tax on Enveloped Dwellings
#> 239 Annual Tax on Enveloped Dwellings
#> 240 Annual Tax on Enveloped Dwellings
#> 241 Annual Tax on Enveloped Dwellings
#> 242 Annual Tax on Enveloped Dwellings
#> 243 Annual Tax on Enveloped Dwellings
#> 244 Annual Tax on Enveloped Dwellings
#> 245 Annual Tax on Enveloped Dwellings
#> 246 Annual Tax on Enveloped Dwellings
#> 247 Annual Tax on Enveloped Dwellings
#> 248 Annual Tax on Enveloped Dwellings
#> 249 Annual Tax on Enveloped Dwellings
#> 250 Annual Tax on Enveloped Dwellings
#> 251 Annual Tax on Enveloped Dwellings
#> 252 Annual Tax on Enveloped Dwellings
#> 253 Annual Tax on Enveloped Dwellings
#> 254 Annual Tax on Enveloped Dwellings
#> 255 Annual Tax on Enveloped Dwellings
#> 256 Annual Tax on Enveloped Dwellings
#> 257 Annual Tax on Enveloped Dwellings
#> 258 Annual Tax on Enveloped Dwellings
#> 259 Annual Tax on Enveloped Dwellings
#> 260 Annual Tax on Enveloped Dwellings
#> 261 Annual Tax on Enveloped Dwellings
#> 262 Annual Tax on Enveloped Dwellings
#> 263 Annual Tax on Enveloped Dwellings
#> 264 Annual Tax on Enveloped Dwellings
#> 265 Annual Tax on Enveloped Dwellings
#> 266 Annual Tax on Enveloped Dwellings
#> 267 Annual Tax on Enveloped Dwellings
#> 268 Annual Tax on Enveloped Dwellings
#> 269 Annual Tax on Enveloped Dwellings
#> 270 Annual Tax on Enveloped Dwellings
#> 271 Annual Tax on Enveloped Dwellings
#> 272 Annual Tax on Enveloped Dwellings
#> 273 Annual Tax on Enveloped Dwellings
#> 274 Annual Tax on Enveloped Dwellings
#> 275 Annual Tax on Enveloped Dwellings
#> 276 Annual Tax on Enveloped Dwellings
#> 277 Annual Tax on Enveloped Dwellings
#> 278 Annual Tax on Enveloped Dwellings
#> 279 Annual Tax on Enveloped Dwellings
#> 280 Annual Tax on Enveloped Dwellings
#> 281 Annual Tax on Enveloped Dwellings
#> 282 Annual Tax on Enveloped Dwellings
#> 283 Annual Tax on Enveloped Dwellings
#> 284 Annual Tax on Enveloped Dwellings
#> 285 Annual Tax on Enveloped Dwellings
#> 286 Annual Tax on Enveloped Dwellings
#> 287 Annual Tax on Enveloped Dwellings
#> 288 Annual Tax on Enveloped Dwellings
#> 289 Bank Levy
#> 290 Bank Levy
#> 291 Bank Levy
#> 292 Bank Levy
#> 293 Bank Levy
#> 294 Bank Levy
#> 295 Bank Levy
#> 296 Bank Levy
#> 297 Bank Levy
#> 298 Bank Levy
#> 299 Bank Levy
#> 300 Bank Levy
#> 301 Bank Levy
#> 302 Bank Levy
#> 303 Bank Levy
#> 304 Bank Levy
#> 305 Bank Levy
#> 306 Bank Levy
#> 307 Bank Levy
#> 308 Bank Levy
#> 309 Bank Levy
#> 310 Bank Levy
#> 311 Bank Levy
#> 312 Bank Levy
#> 313 Bank Levy
#> 314 Bank Levy
#> 315 Bank Levy
#> 316 Bank Levy
#> 317 Bank Levy
#> 318 Bank Levy
#> 319 Bank Levy
#> 320 Bank Levy
#> 321 Bank Levy
#> 322 Bank Levy
#> 323 Bank Levy
#> 324 Bank Levy
#> 325 Bank Levy
#> 326 Bank Levy
#> 327 Bank Levy
#> 328 Bank Levy
#> 329 Bank Levy
#> 330 Bank Levy
#> 331 Bank Levy
#> 332 Bank Levy
#> 333 Bank Levy
#> 334 Bank Levy
#> 335 Bank Levy
#> 336 Bank Levy
#> 337 Bank Levy
#> 338 Bank Levy
#> 339 Bank Levy
#> 340 Bank Levy
#> 341 Bank Levy
#> 342 Bank Levy
#> 343 Bank Levy
#> 344 Bank Levy
#> 345 Bank Levy
#> 346 Bank Levy
#> 347 Bank Levy
#> 348 Bank Levy
#> 349 Bank Levy
#> 350 Bank Levy
#> 351 Bank Levy
#> 352 Bank Levy
#> 353 Bank Levy
#> 354 Bank Levy
#> 355 Bank Levy
#> 356 Bank Levy
#> 357 Bank Levy
#> 358 Bank Levy
#> 359 Bank Levy
#> 360 Bank Levy
#> 361 Bank Payroll Tax
#> 362 Bank Payroll Tax
#> 363 Bank Payroll Tax
#> 364 Bank Payroll Tax
#> 365 Bank Payroll Tax
#> 366 Bank Payroll Tax
#> 367 Bank Payroll Tax
#> 368 Bank Payroll Tax
#> 369 Bank Payroll Tax
#> 370 Bank Payroll Tax
#> 371 Bank Payroll Tax
#> 372 Bank Payroll Tax
#> 373 Bank Payroll Tax
#> 374 Bank Payroll Tax
#> 375 Bank Payroll Tax
#> 376 Bank Payroll Tax
#> 377 Bank Payroll Tax
#> 378 Bank Payroll Tax
#> 379 Bank Payroll Tax
#> 380 Bank Payroll Tax
#> 381 Bank Payroll Tax
#> 382 Bank Payroll Tax
#> 383 Bank Payroll Tax
#> 384 Bank Payroll Tax
#> 385 Bank Payroll Tax
#> 386 Bank Payroll Tax
#> 387 Bank Payroll Tax
#> 388 Bank Payroll Tax
#> 389 Bank Payroll Tax
#> 390 Bank Payroll Tax
#> 391 Bank Payroll Tax
#> 392 Bank Payroll Tax
#> 393 Bank Payroll Tax
#> 394 Bank Payroll Tax
#> 395 Bank Payroll Tax
#> 396 Bank Payroll Tax
#> 397 Bank Payroll Tax
#> 398 Bank Payroll Tax
#> 399 Bank Payroll Tax
#> 400 Bank Payroll Tax
#> 401 Bank Payroll Tax
#> 402 Bank Payroll Tax
#> 403 Bank Payroll Tax
#> 404 Bank Payroll Tax
#> 405 Bank Payroll Tax
#> 406 Bank Payroll Tax
#> 407 Bank Payroll Tax
#> 408 Bank Payroll Tax
#> 409 Bank Payroll Tax
#> 410 Bank Payroll Tax
#> 411 Bank Payroll Tax
#> 412 Bank Payroll Tax
#> 413 Bank Payroll Tax
#> 414 Bank Payroll Tax
#> 415 Bank Payroll Tax
#> 416 Bank Payroll Tax
#> 417 Bank Payroll Tax
#> 418 Bank Payroll Tax
#> 419 Bank Payroll Tax
#> 420 Bank Payroll Tax
#> 421 Bank Payroll Tax
#> 422 Bank Payroll Tax
#> 423 Bank Payroll Tax
#> 424 Bank Payroll Tax
#> 425 Bank Payroll Tax
#> 426 Bank Payroll Tax
#> 427 Bank Payroll Tax
#> 428 Bank Payroll Tax
#> 429 Bank Payroll Tax
#> 430 Bank Payroll Tax
#> 431 Bank Payroll Tax
#> 432 Bank Payroll Tax
#> 433 Bank Surcharge
#> 434 Bank Surcharge
#> 435 Bank Surcharge
#> 436 Bank Surcharge
#> 437 Bank Surcharge
#> 438 Bank Surcharge
#> 439 Bank Surcharge
#> 440 Bank Surcharge
#> 441 Bank Surcharge
#> 442 Bank Surcharge
#> 443 Bank Surcharge
#> 444 Bank Surcharge
#> 445 Bank Surcharge
#> 446 Bank Surcharge
#> 447 Bank Surcharge
#> 448 Bank Surcharge
#> 449 Bank Surcharge
#> 450 Bank Surcharge
#> 451 Bank Surcharge
#> 452 Bank Surcharge
#> 453 Bank Surcharge
#> 454 Bank Surcharge
#> 455 Bank Surcharge
#> 456 Bank Surcharge
#> 457 Bank Surcharge
#> 458 Bank Surcharge
#> 459 Bank Surcharge
#> 460 Bank Surcharge
#> 461 Bank Surcharge
#> 462 Bank Surcharge
#> 463 Bank Surcharge
#> 464 Bank Surcharge
#> 465 Bank Surcharge
#> 466 Bank Surcharge
#> 467 Bank Surcharge
#> 468 Bank Surcharge
#> 469 Bank Surcharge
#> 470 Bank Surcharge
#> 471 Bank Surcharge
#> 472 Bank Surcharge
#> 473 Bank Surcharge
#> 474 Bank Surcharge
#> 475 Bank Surcharge
#> 476 Bank Surcharge
#> 477 Bank Surcharge
#> 478 Bank Surcharge
#> 479 Bank Surcharge
#> 480 Bank Surcharge
#> 481 Bank Surcharge
#> 482 Bank Surcharge
#> 483 Bank Surcharge
#> 484 Bank Surcharge
#> 485 Bank Surcharge
#> 486 Bank Surcharge
#> 487 Bank Surcharge
#> 488 Bank Surcharge
#> 489 Bank Surcharge
#> 490 Bank Surcharge
#> 491 Bank Surcharge
#> 492 Bank Surcharge
#> 493 Bank Surcharge
#> 494 Bank Surcharge
#> 495 Bank Surcharge
#> 496 Bank Surcharge
#> 497 Bank Surcharge
#> 498 Bank Surcharge
#> 499 Bank Surcharge
#> 500 Bank Surcharge
#> 501 Bank Surcharge
#> 502 Bank Surcharge
#> 503 Bank Surcharge
#> 504 Bank Surcharge
#> 505 Beer Duties
#> 506 Beer Duties
#> 507 Beer Duties
#> 508 Beer Duties
#> 509 Beer Duties
#> 510 Beer Duties
#> 511 Beer Duties
#> 512 Beer Duties
#> 513 Beer Duties
#> 514 Beer Duties
#> 515 Beer Duties
#> 516 Beer Duties
#> 517 Beer Duties
#> 518 Beer Duties
#> 519 Beer Duties
#> 520 Beer Duties
#> 521 Beer Duties
#> 522 Beer Duties
#> 523 Beer Duties
#> 524 Beer Duties
#> 525 Beer Duties
#> 526 Beer Duties
#> 527 Beer Duties
#> 528 Beer Duties
#> 529 Beer Duties
#> 530 Beer Duties
#> 531 Beer Duties
#> 532 Beer Duties
#> 533 Beer Duties
#> 534 Beer Duties
#> 535 Beer Duties
#> 536 Beer Duties
#> 537 Beer Duties
#> 538 Beer Duties
#> 539 Beer Duties
#> 540 Beer Duties
#> 541 Beer Duties
#> 542 Beer Duties
#> 543 Beer Duties
#> 544 Beer Duties
#> 545 Beer Duties
#> 546 Beer Duties
#> 547 Beer Duties
#> 548 Beer Duties
#> 549 Beer Duties
#> 550 Beer Duties
#> 551 Beer Duties
#> 552 Beer Duties
#> 553 Beer Duties
#> 554 Beer Duties
#> 555 Beer Duties
#> 556 Beer Duties
#> 557 Beer Duties
#> 558 Beer Duties
#> 559 Beer Duties
#> 560 Beer Duties
#> 561 Beer Duties
#> 562 Beer Duties
#> 563 Beer Duties
#> 564 Beer Duties
#> 565 Beer Duties
#> 566 Beer Duties
#> 567 Beer Duties
#> 568 Beer Duties
#> 569 Beer Duties
#> 570 Beer Duties
#> 571 Beer Duties
#> 572 Beer Duties
#> 573 Beer Duties
#> 574 Beer Duties
#> 575 Beer Duties
#> 576 Beer Duties
#> 577 Capital Gains Tax
#> 578 Capital Gains Tax
#> 579 Capital Gains Tax
#> 580 Capital Gains Tax
#> 581 Capital Gains Tax
#> 582 Capital Gains Tax
#> 583 Capital Gains Tax
#> 584 Capital Gains Tax
#> 585 Capital Gains Tax
#> 586 Capital Gains Tax
#> 587 Capital Gains Tax
#> 588 Capital Gains Tax
#> 589 Capital Gains Tax
#> 590 Capital Gains Tax
#> 591 Capital Gains Tax
#> 592 Capital Gains Tax
#> 593 Capital Gains Tax
#> 594 Capital Gains Tax
#> 595 Capital Gains Tax
#> 596 Capital Gains Tax
#> 597 Capital Gains Tax
#> 598 Capital Gains Tax
#> 599 Capital Gains Tax
#> 600 Capital Gains Tax
#> 601 Capital Gains Tax
#> 602 Capital Gains Tax
#> 603 Capital Gains Tax
#> 604 Capital Gains Tax
#> 605 Capital Gains Tax
#> 606 Capital Gains Tax
#> 607 Capital Gains Tax
#> 608 Capital Gains Tax
#> 609 Capital Gains Tax
#> 610 Capital Gains Tax
#> 611 Capital Gains Tax
#> 612 Capital Gains Tax
#> 613 Capital Gains Tax
#> 614 Capital Gains Tax
#> 615 Capital Gains Tax
#> 616 Capital Gains Tax
#> 617 Capital Gains Tax
#> 618 Capital Gains Tax
#> 619 Capital Gains Tax
#> 620 Capital Gains Tax
#> 621 Capital Gains Tax
#> 622 Capital Gains Tax
#> 623 Capital Gains Tax
#> 624 Capital Gains Tax
#> 625 Capital Gains Tax
#> 626 Capital Gains Tax
#> 627 Capital Gains Tax
#> 628 Capital Gains Tax
#> 629 Capital Gains Tax
#> 630 Capital Gains Tax
#> 631 Capital Gains Tax
#> 632 Capital Gains Tax
#> 633 Capital Gains Tax
#> 634 Capital Gains Tax
#> 635 Capital Gains Tax
#> 636 Capital Gains Tax
#> 637 Capital Gains Tax
#> 638 Capital Gains Tax
#> 639 Capital Gains Tax
#> 640 Capital Gains Tax
#> 641 Capital Gains Tax
#> 642 Capital Gains Tax
#> 643 Capital Gains Tax
#> 644 Capital Gains Tax
#> 645 Capital Gains Tax
#> 646 Capital Gains Tax
#> 647 Capital Gains Tax
#> 648 Capital Gains Tax
#> 649 Cider and Perry Duties
#> 650 Cider and Perry Duties
#> 651 Cider and Perry Duties
#> 652 Cider and Perry Duties
#> 653 Cider and Perry Duties
#> 654 Cider and Perry Duties
#> 655 Cider and Perry Duties
#> 656 Cider and Perry Duties
#> 657 Cider and Perry Duties
#> 658 Cider and Perry Duties
#> 659 Cider and Perry Duties
#> 660 Cider and Perry Duties
#> 661 Cider and Perry Duties
#> 662 Cider and Perry Duties
#> 663 Cider and Perry Duties
#> 664 Cider and Perry Duties
#> 665 Cider and Perry Duties
#> 666 Cider and Perry Duties
#> 667 Cider and Perry Duties
#> 668 Cider and Perry Duties
#> 669 Cider and Perry Duties
#> 670 Cider and Perry Duties
#> 671 Cider and Perry Duties
#> 672 Cider and Perry Duties
#> 673 Cider and Perry Duties
#> 674 Cider and Perry Duties
#> 675 Cider and Perry Duties
#> 676 Cider and Perry Duties
#> 677 Cider and Perry Duties
#> 678 Cider and Perry Duties
#> 679 Cider and Perry Duties
#> 680 Cider and Perry Duties
#> 681 Cider and Perry Duties
#> 682 Cider and Perry Duties
#> 683 Cider and Perry Duties
#> 684 Cider and Perry Duties
#> 685 Cider and Perry Duties
#> 686 Cider and Perry Duties
#> 687 Cider and Perry Duties
#> 688 Cider and Perry Duties
#> 689 Cider and Perry Duties
#> 690 Cider and Perry Duties
#> 691 Cider and Perry Duties
#> 692 Cider and Perry Duties
#> 693 Cider and Perry Duties
#> 694 Cider and Perry Duties
#> 695 Cider and Perry Duties
#> 696 Cider and Perry Duties
#> 697 Cider and Perry Duties
#> 698 Cider and Perry Duties
#> 699 Cider and Perry Duties
#> 700 Cider and Perry Duties
#> 701 Cider and Perry Duties
#> 702 Cider and Perry Duties
#> 703 Cider and Perry Duties
#> 704 Cider and Perry Duties
#> 705 Cider and Perry Duties
#> 706 Cider and Perry Duties
#> 707 Cider and Perry Duties
#> 708 Cider and Perry Duties
#> 709 Cider and Perry Duties
#> 710 Cider and Perry Duties
#> 711 Cider and Perry Duties
#> 712 Cider and Perry Duties
#> 713 Cider and Perry Duties
#> 714 Cider and Perry Duties
#> 715 Cider and Perry Duties
#> 716 Cider and Perry Duties
#> 717 Cider and Perry Duties
#> 718 Cider and Perry Duties
#> 719 Cider and Perry Duties
#> 720 Cider and Perry Duties
#> 721 Climate Change Levy
#> 722 Climate Change Levy
#> 723 Climate Change Levy
#> 724 Climate Change Levy
#> 725 Climate Change Levy
#> 726 Climate Change Levy
#> 727 Climate Change Levy
#> 728 Climate Change Levy
#> 729 Climate Change Levy
#> 730 Climate Change Levy
#> 731 Climate Change Levy
#> 732 Climate Change Levy
#> 733 Climate Change Levy
#> 734 Climate Change Levy
#> 735 Climate Change Levy
#> 736 Climate Change Levy
#> 737 Climate Change Levy
#> 738 Climate Change Levy
#> 739 Climate Change Levy
#> 740 Climate Change Levy
#> 741 Climate Change Levy
#> 742 Climate Change Levy
#> 743 Climate Change Levy
#> 744 Climate Change Levy
#> 745 Climate Change Levy
#> 746 Climate Change Levy
#> 747 Climate Change Levy
#> 748 Climate Change Levy
#> 749 Climate Change Levy
#> 750 Climate Change Levy
#> 751 Climate Change Levy
#> 752 Climate Change Levy
#> 753 Climate Change Levy
#> 754 Climate Change Levy
#> 755 Climate Change Levy
#> 756 Climate Change Levy
#> 757 Climate Change Levy
#> 758 Climate Change Levy
#> 759 Climate Change Levy
#> 760 Climate Change Levy
#> 761 Climate Change Levy
#> 762 Climate Change Levy
#> 763 Climate Change Levy
#> 764 Climate Change Levy
#> 765 Climate Change Levy
#> 766 Climate Change Levy
#> 767 Climate Change Levy
#> 768 Climate Change Levy
#> 769 Climate Change Levy
#> 770 Climate Change Levy
#> 771 Climate Change Levy
#> 772 Climate Change Levy
#> 773 Climate Change Levy
#> 774 Climate Change Levy
#> 775 Climate Change Levy
#> 776 Climate Change Levy
#> 777 Climate Change Levy
#> 778 Climate Change Levy
#> 779 Climate Change Levy
#> 780 Climate Change Levy
#> 781 Climate Change Levy
#> 782 Climate Change Levy
#> 783 Climate Change Levy
#> 784 Climate Change Levy
#> 785 Climate Change Levy
#> 786 Climate Change Levy
#> 787 Climate Change Levy
#> 788 Climate Change Levy
#> 789 Climate Change Levy
#> 790 Climate Change Levy
#> 791 Climate Change Levy
#> 792 Climate Change Levy
#> 793 Corporation Tax (onshore)
#> 794 Corporation Tax (onshore)
#> 795 Corporation Tax (onshore)
#> 796 Corporation Tax (onshore)
#> 797 Corporation Tax (onshore)
#> 798 Corporation Tax (onshore)
#> 799 Corporation Tax (onshore)
#> 800 Corporation Tax (onshore)
#> 801 Corporation Tax (onshore)
#> 802 Corporation Tax (onshore)
#> 803 Corporation Tax (onshore)
#> 804 Corporation Tax (onshore)
#> 805 Corporation Tax (onshore)
#> 806 Corporation Tax (onshore)
#> 807 Corporation Tax (onshore)
#> 808 Corporation Tax (onshore)
#> 809 Corporation Tax (onshore)
#> 810 Corporation Tax (onshore)
#> 811 Corporation Tax (onshore)
#> 812 Corporation Tax (onshore)
#> 813 Corporation Tax (onshore)
#> 814 Corporation Tax (onshore)
#> 815 Corporation Tax (onshore)
#> 816 Corporation Tax (onshore)
#> 817 Corporation Tax (onshore)
#> 818 Corporation Tax (onshore)
#> 819 Corporation Tax (onshore)
#> 820 Corporation Tax (onshore)
#> 821 Corporation Tax (onshore)
#> 822 Corporation Tax (onshore)
#> 823 Corporation Tax (onshore)
#> 824 Corporation Tax (onshore)
#> 825 Corporation Tax (onshore)
#> 826 Corporation Tax (onshore)
#> 827 Corporation Tax (onshore)
#> 828 Corporation Tax (onshore)
#> 829 Corporation Tax (onshore)
#> 830 Corporation Tax (onshore)
#> 831 Corporation Tax (onshore)
#> 832 Corporation Tax (onshore)
#> 833 Corporation Tax (onshore)
#> 834 Corporation Tax (onshore)
#> 835 Corporation Tax (onshore)
#> 836 Corporation Tax (onshore)
#> 837 Corporation Tax (onshore)
#> 838 Corporation Tax (onshore)
#> 839 Corporation Tax (onshore)
#> 840 Corporation Tax (onshore)
#> 841 Corporation Tax (onshore)
#> 842 Corporation Tax (onshore)
#> 843 Corporation Tax (onshore)
#> 844 Corporation Tax (onshore)
#> 845 Corporation Tax (onshore)
#> 846 Corporation Tax (onshore)
#> 847 Corporation Tax (onshore)
#> 848 Corporation Tax (onshore)
#> 849 Corporation Tax (onshore)
#> 850 Corporation Tax (onshore)
#> 851 Corporation Tax (onshore)
#> 852 Corporation Tax (onshore)
#> 853 Corporation Tax (onshore)
#> 854 Corporation Tax (onshore)
#> 855 Corporation Tax (onshore)
#> 856 Corporation Tax (onshore)
#> 857 Corporation Tax (onshore)
#> 858 Corporation Tax (onshore)
#> 859 Corporation Tax (onshore)
#> 860 Corporation Tax (onshore)
#> 861 Corporation Tax (onshore)
#> 862 Corporation Tax (onshore)
#> 863 Corporation Tax (onshore)
#> 864 Corporation Tax (onshore)
#> 865 Customs Duties
#> 866 Customs Duties
#> 867 Customs Duties
#> 868 Customs Duties
#> 869 Customs Duties
#> 870 Customs Duties
#> 871 Customs Duties
#> 872 Customs Duties
#> 873 Customs Duties
#> 874 Customs Duties
#> 875 Customs Duties
#> 876 Customs Duties
#> 877 Customs Duties
#> 878 Customs Duties
#> 879 Customs Duties
#> 880 Customs Duties
#> 881 Customs Duties
#> 882 Customs Duties
#> 883 Customs Duties
#> 884 Customs Duties
#> 885 Customs Duties
#> 886 Customs Duties
#> 887 Customs Duties
#> 888 Customs Duties
#> 889 Customs Duties
#> 890 Customs Duties
#> 891 Customs Duties
#> 892 Customs Duties
#> 893 Customs Duties
#> 894 Customs Duties
#> 895 Customs Duties
#> 896 Customs Duties
#> 897 Customs Duties
#> 898 Customs Duties
#> 899 Customs Duties
#> 900 Customs Duties
#> 901 Customs Duties
#> 902 Customs Duties
#> 903 Customs Duties
#> 904 Customs Duties
#> 905 Customs Duties
#> 906 Customs Duties
#> 907 Customs Duties
#> 908 Customs Duties
#> 909 Customs Duties
#> 910 Customs Duties
#> 911 Customs Duties
#> 912 Customs Duties
#> 913 Customs Duties
#> 914 Customs Duties
#> 915 Customs Duties
#> 916 Customs Duties
#> 917 Customs Duties
#> 918 Customs Duties
#> 919 Customs Duties
#> 920 Customs Duties
#> 921 Customs Duties
#> 922 Customs Duties
#> 923 Customs Duties
#> 924 Customs Duties
#> 925 Customs Duties
#> 926 Customs Duties
#> 927 Customs Duties
#> 928 Customs Duties
#> 929 Customs Duties
#> 930 Customs Duties
#> 931 Customs Duties
#> 932 Customs Duties
#> 933 Customs Duties
#> 934 Customs Duties
#> 935 Customs Duties
#> 936 Customs Duties
#> 937 Digital Services Tax
#> 938 Digital Services Tax
#> 939 Digital Services Tax
#> 940 Digital Services Tax
#> 941 Digital Services Tax
#> 942 Digital Services Tax
#> 943 Digital Services Tax
#> 944 Digital Services Tax
#> 945 Digital Services Tax
#> 946 Digital Services Tax
#> 947 Digital Services Tax
#> 948 Digital Services Tax
#> 949 Digital Services Tax
#> 950 Digital Services Tax
#> 951 Digital Services Tax
#> 952 Digital Services Tax
#> 953 Digital Services Tax
#> 954 Digital Services Tax
#> 955 Digital Services Tax
#> 956 Digital Services Tax
#> 957 Digital Services Tax
#> 958 Digital Services Tax
#> 959 Digital Services Tax
#> 960 Digital Services Tax
#> 961 Digital Services Tax
#> 962 Digital Services Tax
#> 963 Digital Services Tax
#> 964 Digital Services Tax
#> 965 Digital Services Tax
#> 966 Digital Services Tax
#> 967 Digital Services Tax
#> 968 Digital Services Tax
#> 969 Digital Services Tax
#> 970 Digital Services Tax
#> 971 Digital Services Tax
#> 972 Digital Services Tax
#> 973 Digital Services Tax
#> 974 Digital Services Tax
#> 975 Digital Services Tax
#> 976 Digital Services Tax
#> 977 Digital Services Tax
#> 978 Digital Services Tax
#> 979 Digital Services Tax
#> 980 Digital Services Tax
#> 981 Digital Services Tax
#> 982 Digital Services Tax
#> 983 Digital Services Tax
#> 984 Digital Services Tax
#> 985 Digital Services Tax
#> 986 Digital Services Tax
#> 987 Digital Services Tax
#> 988 Digital Services Tax
#> 989 Digital Services Tax
#> 990 Digital Services Tax
#> 991 Digital Services Tax
#> 992 Digital Services Tax
#> 993 Digital Services Tax
#> 994 Digital Services Tax
#> 995 Digital Services Tax
#> 996 Digital Services Tax
#> 997 Digital Services Tax
#> 998 Digital Services Tax
#> 999 Digital Services Tax
#> 1000 Digital Services Tax
#> 1001 Digital Services Tax
#> 1002 Digital Services Tax
#> 1003 Digital Services Tax
#> 1004 Digital Services Tax
#> 1005 Digital Services Tax
#> 1006 Digital Services Tax
#> 1007 Digital Services Tax
#> 1008 Digital Services Tax
#> 1009 Diverted Profits Tax
#> 1010 Diverted Profits Tax
#> 1011 Diverted Profits Tax
#> 1012 Diverted Profits Tax
#> 1013 Diverted Profits Tax
#> 1014 Diverted Profits Tax
#> 1015 Diverted Profits Tax
#> 1016 Diverted Profits Tax
#> 1017 Diverted Profits Tax
#> 1018 Diverted Profits Tax
#> 1019 Diverted Profits Tax
#> 1020 Diverted Profits Tax
#> 1021 Diverted Profits Tax
#> 1022 Diverted Profits Tax
#> 1023 Diverted Profits Tax
#> 1024 Diverted Profits Tax
#> 1025 Diverted Profits Tax
#> 1026 Diverted Profits Tax
#> 1027 Diverted Profits Tax
#> 1028 Diverted Profits Tax
#> 1029 Diverted Profits Tax
#> 1030 Diverted Profits Tax
#> 1031 Diverted Profits Tax
#> 1032 Diverted Profits Tax
#> 1033 Diverted Profits Tax
#> 1034 Diverted Profits Tax
#> 1035 Diverted Profits Tax
#> 1036 Diverted Profits Tax
#> 1037 Diverted Profits Tax
#> 1038 Diverted Profits Tax
#> 1039 Diverted Profits Tax
#> 1040 Diverted Profits Tax
#> 1041 Diverted Profits Tax
#> 1042 Diverted Profits Tax
#> 1043 Diverted Profits Tax
#> 1044 Diverted Profits Tax
#> 1045 Diverted Profits Tax
#> 1046 Diverted Profits Tax
#> 1047 Diverted Profits Tax
#> 1048 Diverted Profits Tax
#> 1049 Diverted Profits Tax
#> 1050 Diverted Profits Tax
#> 1051 Diverted Profits Tax
#> 1052 Diverted Profits Tax
#> 1053 Diverted Profits Tax
#> 1054 Diverted Profits Tax
#> 1055 Diverted Profits Tax
#> 1056 Diverted Profits Tax
#> 1057 Diverted Profits Tax
#> 1058 Diverted Profits Tax
#> 1059 Diverted Profits Tax
#> 1060 Diverted Profits Tax
#> 1061 Diverted Profits Tax
#> 1062 Diverted Profits Tax
#> 1063 Diverted Profits Tax
#> 1064 Diverted Profits Tax
#> 1065 Diverted Profits Tax
#> 1066 Diverted Profits Tax
#> 1067 Diverted Profits Tax
#> 1068 Diverted Profits Tax
#> 1069 Diverted Profits Tax
#> 1070 Diverted Profits Tax
#> 1071 Diverted Profits Tax
#> 1072 Diverted Profits Tax
#> 1073 Diverted Profits Tax
#> 1074 Diverted Profits Tax
#> 1075 Diverted Profits Tax
#> 1076 Diverted Profits Tax
#> 1077 Diverted Profits Tax
#> 1078 Diverted Profits Tax
#> 1079 Diverted Profits Tax
#> 1080 Diverted Profits Tax
#> 1081 Economic Crime Levy
#> 1082 Economic Crime Levy
#> 1083 Economic Crime Levy
#> 1084 Economic Crime Levy
#> 1085 Economic Crime Levy
#> 1086 Economic Crime Levy
#> 1087 Economic Crime Levy
#> 1088 Economic Crime Levy
#> 1089 Economic Crime Levy
#> 1090 Economic Crime Levy
#> 1091 Economic Crime Levy
#> 1092 Economic Crime Levy
#> 1093 Economic Crime Levy
#> 1094 Economic Crime Levy
#> 1095 Economic Crime Levy
#> 1096 Economic Crime Levy
#> 1097 Economic Crime Levy
#> 1098 Economic Crime Levy
#> 1099 Economic Crime Levy
#> 1100 Economic Crime Levy
#> 1101 Economic Crime Levy
#> 1102 Economic Crime Levy
#> 1103 Economic Crime Levy
#> 1104 Economic Crime Levy
#> 1105 Economic Crime Levy
#> 1106 Economic Crime Levy
#> 1107 Economic Crime Levy
#> 1108 Economic Crime Levy
#> 1109 Economic Crime Levy
#> 1110 Economic Crime Levy
#> 1111 Economic Crime Levy
#> 1112 Economic Crime Levy
#> 1113 Economic Crime Levy
#> 1114 Economic Crime Levy
#> 1115 Economic Crime Levy
#> 1116 Economic Crime Levy
#> 1117 Economic Crime Levy
#> 1118 Economic Crime Levy
#> 1119 Economic Crime Levy
#> 1120 Economic Crime Levy
#> 1121 Economic Crime Levy
#> 1122 Economic Crime Levy
#> 1123 Economic Crime Levy
#> 1124 Economic Crime Levy
#> 1125 Economic Crime Levy
#> 1126 Economic Crime Levy
#> 1127 Economic Crime Levy
#> 1128 Economic Crime Levy
#> 1129 Economic Crime Levy
#> 1130 Economic Crime Levy
#> 1131 Economic Crime Levy
#> 1132 Economic Crime Levy
#> 1133 Economic Crime Levy
#> 1134 Economic Crime Levy
#> 1135 Economic Crime Levy
#> 1136 Economic Crime Levy
#> 1137 Economic Crime Levy
#> 1138 Economic Crime Levy
#> 1139 Economic Crime Levy
#> 1140 Economic Crime Levy
#> 1141 Economic Crime Levy
#> 1142 Economic Crime Levy
#> 1143 Economic Crime Levy
#> 1144 Economic Crime Levy
#> 1145 Economic Crime Levy
#> 1146 Economic Crime Levy
#> 1147 Economic Crime Levy
#> 1148 Economic Crime Levy
#> 1149 Economic Crime Levy
#> 1150 Economic Crime Levy
#> 1151 Economic Crime Levy
#> 1152 Economic Crime Levy
#> 1153 Electricity Generators Levy
#> 1154 Electricity Generators Levy
#> 1155 Electricity Generators Levy
#> 1156 Electricity Generators Levy
#> 1157 Electricity Generators Levy
#> 1158 Electricity Generators Levy
#> 1159 Electricity Generators Levy
#> 1160 Electricity Generators Levy
#> 1161 Electricity Generators Levy
#> 1162 Electricity Generators Levy
#> 1163 Electricity Generators Levy
#> 1164 Electricity Generators Levy
#> 1165 Electricity Generators Levy
#> 1166 Electricity Generators Levy
#> 1167 Electricity Generators Levy
#> 1168 Electricity Generators Levy
#> 1169 Electricity Generators Levy
#> 1170 Electricity Generators Levy
#> 1171 Electricity Generators Levy
#> 1172 Electricity Generators Levy
#> 1173 Electricity Generators Levy
#> 1174 Electricity Generators Levy
#> 1175 Electricity Generators Levy
#> 1176 Electricity Generators Levy
#> 1177 Electricity Generators Levy
#> 1178 Electricity Generators Levy
#> 1179 Electricity Generators Levy
#> 1180 Electricity Generators Levy
#> 1181 Electricity Generators Levy
#> 1182 Electricity Generators Levy
#> 1183 Electricity Generators Levy
#> 1184 Electricity Generators Levy
#> 1185 Electricity Generators Levy
#> 1186 Electricity Generators Levy
#> 1187 Electricity Generators Levy
#> 1188 Electricity Generators Levy
#> 1189 Electricity Generators Levy
#> 1190 Electricity Generators Levy
#> 1191 Electricity Generators Levy
#> 1192 Electricity Generators Levy
#> 1193 Electricity Generators Levy
#> 1194 Electricity Generators Levy
#> 1195 Electricity Generators Levy
#> 1196 Electricity Generators Levy
#> 1197 Electricity Generators Levy
#> 1198 Electricity Generators Levy
#> 1199 Electricity Generators Levy
#> 1200 Electricity Generators Levy
#> 1201 Electricity Generators Levy
#> 1202 Electricity Generators Levy
#> 1203 Electricity Generators Levy
#> 1204 Electricity Generators Levy
#> 1205 Electricity Generators Levy
#> 1206 Electricity Generators Levy
#> 1207 Electricity Generators Levy
#> 1208 Electricity Generators Levy
#> 1209 Electricity Generators Levy
#> 1210 Electricity Generators Levy
#> 1211 Electricity Generators Levy
#> 1212 Electricity Generators Levy
#> 1213 Electricity Generators Levy
#> 1214 Electricity Generators Levy
#> 1215 Electricity Generators Levy
#> 1216 Electricity Generators Levy
#> 1217 Electricity Generators Levy
#> 1218 Electricity Generators Levy
#> 1219 Electricity Generators Levy
#> 1220 Electricity Generators Levy
#> 1221 Electricity Generators Levy
#> 1222 Electricity Generators Levy
#> 1223 Electricity Generators Levy
#> 1224 Electricity Generators Levy
#> 1225 Energy Profits Levy
#> 1226 Energy Profits Levy
#> 1227 Energy Profits Levy
#> 1228 Energy Profits Levy
#> 1229 Energy Profits Levy
#> 1230 Energy Profits Levy
#> 1231 Energy Profits Levy
#> 1232 Energy Profits Levy
#> 1233 Energy Profits Levy
#> 1234 Energy Profits Levy
#> 1235 Energy Profits Levy
#> 1236 Energy Profits Levy
#> 1237 Energy Profits Levy
#> 1238 Energy Profits Levy
#> 1239 Energy Profits Levy
#> 1240 Energy Profits Levy
#> 1241 Energy Profits Levy
#> 1242 Energy Profits Levy
#> 1243 Energy Profits Levy
#> 1244 Energy Profits Levy
#> 1245 Energy Profits Levy
#> 1246 Energy Profits Levy
#> 1247 Energy Profits Levy
#> 1248 Energy Profits Levy
#> 1249 Energy Profits Levy
#> 1250 Energy Profits Levy
#> 1251 Energy Profits Levy
#> 1252 Energy Profits Levy
#> 1253 Energy Profits Levy
#> 1254 Energy Profits Levy
#> 1255 Energy Profits Levy
#> 1256 Energy Profits Levy
#> 1257 Energy Profits Levy
#> 1258 Energy Profits Levy
#> 1259 Energy Profits Levy
#> 1260 Energy Profits Levy
#> 1261 Energy Profits Levy
#> 1262 Energy Profits Levy
#> 1263 Energy Profits Levy
#> 1264 Energy Profits Levy
#> 1265 Energy Profits Levy
#> 1266 Energy Profits Levy
#> 1267 Energy Profits Levy
#> 1268 Energy Profits Levy
#> 1269 Energy Profits Levy
#> 1270 Energy Profits Levy
#> 1271 Energy Profits Levy
#> 1272 Energy Profits Levy
#> 1273 Energy Profits Levy
#> 1274 Energy Profits Levy
#> 1275 Energy Profits Levy
#> 1276 Energy Profits Levy
#> 1277 Energy Profits Levy
#> 1278 Energy Profits Levy
#> 1279 Energy Profits Levy
#> 1280 Energy Profits Levy
#> 1281 Energy Profits Levy
#> 1282 Energy Profits Levy
#> 1283 Energy Profits Levy
#> 1284 Energy Profits Levy
#> 1285 Energy Profits Levy
#> 1286 Energy Profits Levy
#> 1287 Energy Profits Levy
#> 1288 Energy Profits Levy
#> 1289 Energy Profits Levy
#> 1290 Energy Profits Levy
#> 1291 Energy Profits Levy
#> 1292 Energy Profits Levy
#> 1293 Energy Profits Levy
#> 1294 Energy Profits Levy
#> 1295 Energy Profits Levy
#> 1296 Energy Profits Levy
#> 1297 Hydrocarbon Oil Duties (Fuel Duty)
#> 1298 Hydrocarbon Oil Duties (Fuel Duty)
#> 1299 Hydrocarbon Oil Duties (Fuel Duty)
#> 1300 Hydrocarbon Oil Duties (Fuel Duty)
#> 1301 Hydrocarbon Oil Duties (Fuel Duty)
#> 1302 Hydrocarbon Oil Duties (Fuel Duty)
#> 1303 Hydrocarbon Oil Duties (Fuel Duty)
#> 1304 Hydrocarbon Oil Duties (Fuel Duty)
#> 1305 Hydrocarbon Oil Duties (Fuel Duty)
#> 1306 Hydrocarbon Oil Duties (Fuel Duty)
#> 1307 Hydrocarbon Oil Duties (Fuel Duty)
#> 1308 Hydrocarbon Oil Duties (Fuel Duty)
#> 1309 Hydrocarbon Oil Duties (Fuel Duty)
#> 1310 Hydrocarbon Oil Duties (Fuel Duty)
#> 1311 Hydrocarbon Oil Duties (Fuel Duty)
#> 1312 Hydrocarbon Oil Duties (Fuel Duty)
#> 1313 Hydrocarbon Oil Duties (Fuel Duty)
#> 1314 Hydrocarbon Oil Duties (Fuel Duty)
#> 1315 Hydrocarbon Oil Duties (Fuel Duty)
#> 1316 Hydrocarbon Oil Duties (Fuel Duty)
#> 1317 Hydrocarbon Oil Duties (Fuel Duty)
#> 1318 Hydrocarbon Oil Duties (Fuel Duty)
#> 1319 Hydrocarbon Oil Duties (Fuel Duty)
#> 1320 Hydrocarbon Oil Duties (Fuel Duty)
#> 1321 Hydrocarbon Oil Duties (Fuel Duty)
#> 1322 Hydrocarbon Oil Duties (Fuel Duty)
#> 1323 Hydrocarbon Oil Duties (Fuel Duty)
#> 1324 Hydrocarbon Oil Duties (Fuel Duty)
#> 1325 Hydrocarbon Oil Duties (Fuel Duty)
#> 1326 Hydrocarbon Oil Duties (Fuel Duty)
#> 1327 Hydrocarbon Oil Duties (Fuel Duty)
#> 1328 Hydrocarbon Oil Duties (Fuel Duty)
#> 1329 Hydrocarbon Oil Duties (Fuel Duty)
#> 1330 Hydrocarbon Oil Duties (Fuel Duty)
#> 1331 Hydrocarbon Oil Duties (Fuel Duty)
#> 1332 Hydrocarbon Oil Duties (Fuel Duty)
#> 1333 Hydrocarbon Oil Duties (Fuel Duty)
#> 1334 Hydrocarbon Oil Duties (Fuel Duty)
#> 1335 Hydrocarbon Oil Duties (Fuel Duty)
#> 1336 Hydrocarbon Oil Duties (Fuel Duty)
#> 1337 Hydrocarbon Oil Duties (Fuel Duty)
#> 1338 Hydrocarbon Oil Duties (Fuel Duty)
#> 1339 Hydrocarbon Oil Duties (Fuel Duty)
#> 1340 Hydrocarbon Oil Duties (Fuel Duty)
#> 1341 Hydrocarbon Oil Duties (Fuel Duty)
#> 1342 Hydrocarbon Oil Duties (Fuel Duty)
#> 1343 Hydrocarbon Oil Duties (Fuel Duty)
#> 1344 Hydrocarbon Oil Duties (Fuel Duty)
#> 1345 Hydrocarbon Oil Duties (Fuel Duty)
#> 1346 Hydrocarbon Oil Duties (Fuel Duty)
#> 1347 Hydrocarbon Oil Duties (Fuel Duty)
#> 1348 Hydrocarbon Oil Duties (Fuel Duty)
#> 1349 Hydrocarbon Oil Duties (Fuel Duty)
#> 1350 Hydrocarbon Oil Duties (Fuel Duty)
#> 1351 Hydrocarbon Oil Duties (Fuel Duty)
#> 1352 Hydrocarbon Oil Duties (Fuel Duty)
#> 1353 Hydrocarbon Oil Duties (Fuel Duty)
#> 1354 Hydrocarbon Oil Duties (Fuel Duty)
#> 1355 Hydrocarbon Oil Duties (Fuel Duty)
#> 1356 Hydrocarbon Oil Duties (Fuel Duty)
#> 1357 Hydrocarbon Oil Duties (Fuel Duty)
#> 1358 Hydrocarbon Oil Duties (Fuel Duty)
#> 1359 Hydrocarbon Oil Duties (Fuel Duty)
#> 1360 Hydrocarbon Oil Duties (Fuel Duty)
#> 1361 Hydrocarbon Oil Duties (Fuel Duty)
#> 1362 Hydrocarbon Oil Duties (Fuel Duty)
#> 1363 Hydrocarbon Oil Duties (Fuel Duty)
#> 1364 Hydrocarbon Oil Duties (Fuel Duty)
#> 1365 Hydrocarbon Oil Duties (Fuel Duty)
#> 1366 Hydrocarbon Oil Duties (Fuel Duty)
#> 1367 Hydrocarbon Oil Duties (Fuel Duty)
#> 1368 Hydrocarbon Oil Duties (Fuel Duty)
#> 1369 Betting and Gaming Duties
#> 1370 Betting and Gaming Duties
#> 1371 Betting and Gaming Duties
#> 1372 Betting and Gaming Duties
#> 1373 Betting and Gaming Duties
#> 1374 Betting and Gaming Duties
#> 1375 Betting and Gaming Duties
#> 1376 Betting and Gaming Duties
#> 1377 Betting and Gaming Duties
#> 1378 Betting and Gaming Duties
#> 1379 Betting and Gaming Duties
#> 1380 Betting and Gaming Duties
#> 1381 Betting and Gaming Duties
#> 1382 Betting and Gaming Duties
#> 1383 Betting and Gaming Duties
#> 1384 Betting and Gaming Duties
#> 1385 Betting and Gaming Duties
#> 1386 Betting and Gaming Duties
#> 1387 Betting and Gaming Duties
#> 1388 Betting and Gaming Duties
#> 1389 Betting and Gaming Duties
#> 1390 Betting and Gaming Duties
#> 1391 Betting and Gaming Duties
#> 1392 Betting and Gaming Duties
#> 1393 Betting and Gaming Duties
#> 1394 Betting and Gaming Duties
#> 1395 Betting and Gaming Duties
#> 1396 Betting and Gaming Duties
#> 1397 Betting and Gaming Duties
#> 1398 Betting and Gaming Duties
#> 1399 Betting and Gaming Duties
#> 1400 Betting and Gaming Duties
#> 1401 Betting and Gaming Duties
#> 1402 Betting and Gaming Duties
#> 1403 Betting and Gaming Duties
#> 1404 Betting and Gaming Duties
#> 1405 Betting and Gaming Duties
#> 1406 Betting and Gaming Duties
#> 1407 Betting and Gaming Duties
#> 1408 Betting and Gaming Duties
#> 1409 Betting and Gaming Duties
#> 1410 Betting and Gaming Duties
#> 1411 Betting and Gaming Duties
#> 1412 Betting and Gaming Duties
#> 1413 Betting and Gaming Duties
#> 1414 Betting and Gaming Duties
#> 1415 Betting and Gaming Duties
#> 1416 Betting and Gaming Duties
#> 1417 Betting and Gaming Duties
#> 1418 Betting and Gaming Duties
#> 1419 Betting and Gaming Duties
#> 1420 Betting and Gaming Duties
#> 1421 Betting and Gaming Duties
#> 1422 Betting and Gaming Duties
#> 1423 Betting and Gaming Duties
#> 1424 Betting and Gaming Duties
#> 1425 Betting and Gaming Duties
#> 1426 Betting and Gaming Duties
#> 1427 Betting and Gaming Duties
#> 1428 Betting and Gaming Duties
#> 1429 Betting and Gaming Duties
#> 1430 Betting and Gaming Duties
#> 1431 Betting and Gaming Duties
#> 1432 Betting and Gaming Duties
#> 1433 Betting and Gaming Duties
#> 1434 Betting and Gaming Duties
#> 1435 Betting and Gaming Duties
#> 1436 Betting and Gaming Duties
#> 1437 Betting and Gaming Duties
#> 1438 Betting and Gaming Duties
#> 1439 Betting and Gaming Duties
#> 1440 Betting and Gaming Duties
#> 1441 Income Tax (PAYE and Self Assessment)
#> 1442 Income Tax (PAYE and Self Assessment)
#> 1443 Income Tax (PAYE and Self Assessment)
#> 1444 Income Tax (PAYE and Self Assessment)
#> 1445 Income Tax (PAYE and Self Assessment)
#> 1446 Income Tax (PAYE and Self Assessment)
#> 1447 Income Tax (PAYE and Self Assessment)
#> 1448 Income Tax (PAYE and Self Assessment)
#> 1449 Income Tax (PAYE and Self Assessment)
#> 1450 Income Tax (PAYE and Self Assessment)
#> 1451 Income Tax (PAYE and Self Assessment)
#> 1452 Income Tax (PAYE and Self Assessment)
#> 1453 Income Tax (PAYE and Self Assessment)
#> 1454 Income Tax (PAYE and Self Assessment)
#> 1455 Income Tax (PAYE and Self Assessment)
#> 1456 Income Tax (PAYE and Self Assessment)
#> 1457 Income Tax (PAYE and Self Assessment)
#> 1458 Income Tax (PAYE and Self Assessment)
#> 1459 Income Tax (PAYE and Self Assessment)
#> 1460 Income Tax (PAYE and Self Assessment)
#> 1461 Income Tax (PAYE and Self Assessment)
#> 1462 Income Tax (PAYE and Self Assessment)
#> 1463 Income Tax (PAYE and Self Assessment)
#> 1464 Income Tax (PAYE and Self Assessment)
#> 1465 Income Tax (PAYE and Self Assessment)
#> 1466 Income Tax (PAYE and Self Assessment)
#> 1467 Income Tax (PAYE and Self Assessment)
#> 1468 Income Tax (PAYE and Self Assessment)
#> 1469 Income Tax (PAYE and Self Assessment)
#> 1470 Income Tax (PAYE and Self Assessment)
#> 1471 Income Tax (PAYE and Self Assessment)
#> 1472 Income Tax (PAYE and Self Assessment)
#> 1473 Income Tax (PAYE and Self Assessment)
#> 1474 Income Tax (PAYE and Self Assessment)
#> 1475 Income Tax (PAYE and Self Assessment)
#> 1476 Income Tax (PAYE and Self Assessment)
#> 1477 Income Tax (PAYE and Self Assessment)
#> 1478 Income Tax (PAYE and Self Assessment)
#> 1479 Income Tax (PAYE and Self Assessment)
#> 1480 Income Tax (PAYE and Self Assessment)
#> 1481 Income Tax (PAYE and Self Assessment)
#> 1482 Income Tax (PAYE and Self Assessment)
#> 1483 Income Tax (PAYE and Self Assessment)
#> 1484 Income Tax (PAYE and Self Assessment)
#> 1485 Income Tax (PAYE and Self Assessment)
#> 1486 Income Tax (PAYE and Self Assessment)
#> 1487 Income Tax (PAYE and Self Assessment)
#> 1488 Income Tax (PAYE and Self Assessment)
#> 1489 Income Tax (PAYE and Self Assessment)
#> 1490 Income Tax (PAYE and Self Assessment)
#> 1491 Income Tax (PAYE and Self Assessment)
#> 1492 Income Tax (PAYE and Self Assessment)
#> 1493 Income Tax (PAYE and Self Assessment)
#> 1494 Income Tax (PAYE and Self Assessment)
#> 1495 Income Tax (PAYE and Self Assessment)
#> 1496 Income Tax (PAYE and Self Assessment)
#> 1497 Income Tax (PAYE and Self Assessment)
#> 1498 Income Tax (PAYE and Self Assessment)
#> 1499 Income Tax (PAYE and Self Assessment)
#> 1500 Income Tax (PAYE and Self Assessment)
#> 1501 Income Tax (PAYE and Self Assessment)
#> 1502 Income Tax (PAYE and Self Assessment)
#> 1503 Income Tax (PAYE and Self Assessment)
#> 1504 Income Tax (PAYE and Self Assessment)
#> 1505 Income Tax (PAYE and Self Assessment)
#> 1506 Income Tax (PAYE and Self Assessment)
#> 1507 Income Tax (PAYE and Self Assessment)
#> 1508 Income Tax (PAYE and Self Assessment)
#> 1509 Income Tax (PAYE and Self Assessment)
#> 1510 Income Tax (PAYE and Self Assessment)
#> 1511 Income Tax (PAYE and Self Assessment)
#> 1512 Income Tax (PAYE and Self Assessment)
#> 1513 Inheritance Tax
#> 1514 Inheritance Tax
#> 1515 Inheritance Tax
#> 1516 Inheritance Tax
#> 1517 Inheritance Tax
#> 1518 Inheritance Tax
#> 1519 Inheritance Tax
#> 1520 Inheritance Tax
#> 1521 Inheritance Tax
#> 1522 Inheritance Tax
#> 1523 Inheritance Tax
#> 1524 Inheritance Tax
#> 1525 Inheritance Tax
#> 1526 Inheritance Tax
#> 1527 Inheritance Tax
#> 1528 Inheritance Tax
#> 1529 Inheritance Tax
#> 1530 Inheritance Tax
#> 1531 Inheritance Tax
#> 1532 Inheritance Tax
#> 1533 Inheritance Tax
#> 1534 Inheritance Tax
#> 1535 Inheritance Tax
#> 1536 Inheritance Tax
#> 1537 Inheritance Tax
#> 1538 Inheritance Tax
#> 1539 Inheritance Tax
#> 1540 Inheritance Tax
#> 1541 Inheritance Tax
#> 1542 Inheritance Tax
#> 1543 Inheritance Tax
#> 1544 Inheritance Tax
#> 1545 Inheritance Tax
#> 1546 Inheritance Tax
#> 1547 Inheritance Tax
#> 1548 Inheritance Tax
#> 1549 Inheritance Tax
#> 1550 Inheritance Tax
#> 1551 Inheritance Tax
#> 1552 Inheritance Tax
#> 1553 Inheritance Tax
#> 1554 Inheritance Tax
#> 1555 Inheritance Tax
#> 1556 Inheritance Tax
#> 1557 Inheritance Tax
#> 1558 Inheritance Tax
#> 1559 Inheritance Tax
#> 1560 Inheritance Tax
#> 1561 Inheritance Tax
#> 1562 Inheritance Tax
#> 1563 Inheritance Tax
#> 1564 Inheritance Tax
#> 1565 Inheritance Tax
#> 1566 Inheritance Tax
#> 1567 Inheritance Tax
#> 1568 Inheritance Tax
#> 1569 Inheritance Tax
#> 1570 Inheritance Tax
#> 1571 Inheritance Tax
#> 1572 Inheritance Tax
#> 1573 Inheritance Tax
#> 1574 Inheritance Tax
#> 1575 Inheritance Tax
#> 1576 Inheritance Tax
#> 1577 Inheritance Tax
#> 1578 Inheritance Tax
#> 1579 Inheritance Tax
#> 1580 Inheritance Tax
#> 1581 Inheritance Tax
#> 1582 Inheritance Tax
#> 1583 Inheritance Tax
#> 1584 Inheritance Tax
#> 1585 Insurance Premium Tax
#> 1586 Insurance Premium Tax
#> 1587 Insurance Premium Tax
#> 1588 Insurance Premium Tax
#> 1589 Insurance Premium Tax
#> 1590 Insurance Premium Tax
#> 1591 Insurance Premium Tax
#> 1592 Insurance Premium Tax
#> 1593 Insurance Premium Tax
#> 1594 Insurance Premium Tax
#> 1595 Insurance Premium Tax
#> 1596 Insurance Premium Tax
#> 1597 Insurance Premium Tax
#> 1598 Insurance Premium Tax
#> 1599 Insurance Premium Tax
#> 1600 Insurance Premium Tax
#> 1601 Insurance Premium Tax
#> 1602 Insurance Premium Tax
#> 1603 Insurance Premium Tax
#> 1604 Insurance Premium Tax
#> 1605 Insurance Premium Tax
#> 1606 Insurance Premium Tax
#> 1607 Insurance Premium Tax
#> 1608 Insurance Premium Tax
#> 1609 Insurance Premium Tax
#> 1610 Insurance Premium Tax
#> 1611 Insurance Premium Tax
#> 1612 Insurance Premium Tax
#> 1613 Insurance Premium Tax
#> 1614 Insurance Premium Tax
#> 1615 Insurance Premium Tax
#> 1616 Insurance Premium Tax
#> 1617 Insurance Premium Tax
#> 1618 Insurance Premium Tax
#> 1619 Insurance Premium Tax
#> 1620 Insurance Premium Tax
#> 1621 Insurance Premium Tax
#> 1622 Insurance Premium Tax
#> 1623 Insurance Premium Tax
#> 1624 Insurance Premium Tax
#> 1625 Insurance Premium Tax
#> 1626 Insurance Premium Tax
#> 1627 Insurance Premium Tax
#> 1628 Insurance Premium Tax
#> 1629 Insurance Premium Tax
#> 1630 Insurance Premium Tax
#> 1631 Insurance Premium Tax
#> 1632 Insurance Premium Tax
#> 1633 Insurance Premium Tax
#> 1634 Insurance Premium Tax
#> 1635 Insurance Premium Tax
#> 1636 Insurance Premium Tax
#> 1637 Insurance Premium Tax
#> 1638 Insurance Premium Tax
#> 1639 Insurance Premium Tax
#> 1640 Insurance Premium Tax
#> 1641 Insurance Premium Tax
#> 1642 Insurance Premium Tax
#> 1643 Insurance Premium Tax
#> 1644 Insurance Premium Tax
#> 1645 Insurance Premium Tax
#> 1646 Insurance Premium Tax
#> 1647 Insurance Premium Tax
#> 1648 Insurance Premium Tax
#> 1649 Insurance Premium Tax
#> 1650 Insurance Premium Tax
#> 1651 Insurance Premium Tax
#> 1652 Insurance Premium Tax
#> 1653 Insurance Premium Tax
#> 1654 Insurance Premium Tax
#> 1655 Insurance Premium Tax
#> 1656 Insurance Premium Tax
#> 1657 Landfill Tax
#> 1658 Landfill Tax
#> 1659 Landfill Tax
#> 1660 Landfill Tax
#> 1661 Landfill Tax
#> 1662 Landfill Tax
#> 1663 Landfill Tax
#> 1664 Landfill Tax
#> 1665 Landfill Tax
#> 1666 Landfill Tax
#> 1667 Landfill Tax
#> 1668 Landfill Tax
#> 1669 Landfill Tax
#> 1670 Landfill Tax
#> 1671 Landfill Tax
#> 1672 Landfill Tax
#> 1673 Landfill Tax
#> 1674 Landfill Tax
#> 1675 Landfill Tax
#> 1676 Landfill Tax
#> 1677 Landfill Tax
#> 1678 Landfill Tax
#> 1679 Landfill Tax
#> 1680 Landfill Tax
#> 1681 Landfill Tax
#> 1682 Landfill Tax
#> 1683 Landfill Tax
#> 1684 Landfill Tax
#> 1685 Landfill Tax
#> 1686 Landfill Tax
#> 1687 Landfill Tax
#> 1688 Landfill Tax
#> 1689 Landfill Tax
#> 1690 Landfill Tax
#> 1691 Landfill Tax
#> 1692 Landfill Tax
#> 1693 Landfill Tax
#> 1694 Landfill Tax
#> 1695 Landfill Tax
#> 1696 Landfill Tax
#> 1697 Landfill Tax
#> 1698 Landfill Tax
#> 1699 Landfill Tax
#> 1700 Landfill Tax
#> 1701 Landfill Tax
#> 1702 Landfill Tax
#> 1703 Landfill Tax
#> 1704 Landfill Tax
#> 1705 Landfill Tax
#> 1706 Landfill Tax
#> 1707 Landfill Tax
#> 1708 Landfill Tax
#> 1709 Landfill Tax
#> 1710 Landfill Tax
#> 1711 Landfill Tax
#> 1712 Landfill Tax
#> 1713 Landfill Tax
#> 1714 Landfill Tax
#> 1715 Landfill Tax
#> 1716 Landfill Tax
#> 1717 Landfill Tax
#> 1718 Landfill Tax
#> 1719 Landfill Tax
#> 1720 Landfill Tax
#> 1721 Landfill Tax
#> 1722 Landfill Tax
#> 1723 Landfill Tax
#> 1724 Landfill Tax
#> 1725 Landfill Tax
#> 1726 Landfill Tax
#> 1727 Landfill Tax
#> 1728 Landfill Tax
#> 1729 Miscellaneous receipts
#> 1730 Miscellaneous receipts
#> 1731 Miscellaneous receipts
#> 1732 Miscellaneous receipts
#> 1733 Miscellaneous receipts
#> 1734 Miscellaneous receipts
#> 1735 Miscellaneous receipts
#> 1736 Miscellaneous receipts
#> 1737 Miscellaneous receipts
#> 1738 Miscellaneous receipts
#> 1739 Miscellaneous receipts
#> 1740 Miscellaneous receipts
#> 1741 Miscellaneous receipts
#> 1742 Miscellaneous receipts
#> 1743 Miscellaneous receipts
#> 1744 Miscellaneous receipts
#> 1745 Miscellaneous receipts
#> 1746 Miscellaneous receipts
#> 1747 Miscellaneous receipts
#> 1748 Miscellaneous receipts
#> 1749 Miscellaneous receipts
#> 1750 Miscellaneous receipts
#> 1751 Miscellaneous receipts
#> 1752 Miscellaneous receipts
#> 1753 Miscellaneous receipts
#> 1754 Miscellaneous receipts
#> 1755 Miscellaneous receipts
#> 1756 Miscellaneous receipts
#> 1757 Miscellaneous receipts
#> 1758 Miscellaneous receipts
#> 1759 Miscellaneous receipts
#> 1760 Miscellaneous receipts
#> 1761 Miscellaneous receipts
#> 1762 Miscellaneous receipts
#> 1763 Miscellaneous receipts
#> 1764 Miscellaneous receipts
#> 1765 Miscellaneous receipts
#> 1766 Miscellaneous receipts
#> 1767 Miscellaneous receipts
#> 1768 Miscellaneous receipts
#> 1769 Miscellaneous receipts
#> 1770 Miscellaneous receipts
#> 1771 Miscellaneous receipts
#> 1772 Miscellaneous receipts
#> 1773 Miscellaneous receipts
#> 1774 Miscellaneous receipts
#> 1775 Miscellaneous receipts
#> 1776 Miscellaneous receipts
#> 1777 Miscellaneous receipts
#> 1778 Miscellaneous receipts
#> 1779 Miscellaneous receipts
#> 1780 Miscellaneous receipts
#> 1781 Miscellaneous receipts
#> 1782 Miscellaneous receipts
#> 1783 Miscellaneous receipts
#> 1784 Miscellaneous receipts
#> 1785 Miscellaneous receipts
#> 1786 Miscellaneous receipts
#> 1787 Miscellaneous receipts
#> 1788 Miscellaneous receipts
#> 1789 Miscellaneous receipts
#> 1790 Miscellaneous receipts
#> 1791 Miscellaneous receipts
#> 1792 Miscellaneous receipts
#> 1793 Miscellaneous receipts
#> 1794 Miscellaneous receipts
#> 1795 Miscellaneous receipts
#> 1796 Miscellaneous receipts
#> 1797 Miscellaneous receipts
#> 1798 Miscellaneous receipts
#> 1799 Miscellaneous receipts
#> 1800 Miscellaneous receipts
#> 1801 National Insurance Contributions - employee (Class 1 PAYE)
#> 1802 National Insurance Contributions - employee (Class 1 PAYE)
#> 1803 National Insurance Contributions - employee (Class 1 PAYE)
#> 1804 National Insurance Contributions - employee (Class 1 PAYE)
#> 1805 National Insurance Contributions - employee (Class 1 PAYE)
#> 1806 National Insurance Contributions - employee (Class 1 PAYE)
#> 1807 National Insurance Contributions - employee (Class 1 PAYE)
#> 1808 National Insurance Contributions - employee (Class 1 PAYE)
#> 1809 National Insurance Contributions - employee (Class 1 PAYE)
#> 1810 National Insurance Contributions - employee (Class 1 PAYE)
#> 1811 National Insurance Contributions - employee (Class 1 PAYE)
#> 1812 National Insurance Contributions - employee (Class 1 PAYE)
#> 1813 National Insurance Contributions - employee (Class 1 PAYE)
#> 1814 National Insurance Contributions - employee (Class 1 PAYE)
#> 1815 National Insurance Contributions - employee (Class 1 PAYE)
#> 1816 National Insurance Contributions - employee (Class 1 PAYE)
#> 1817 National Insurance Contributions - employee (Class 1 PAYE)
#> 1818 National Insurance Contributions - employee (Class 1 PAYE)
#> 1819 National Insurance Contributions - employee (Class 1 PAYE)
#> 1820 National Insurance Contributions - employee (Class 1 PAYE)
#> 1821 National Insurance Contributions - employee (Class 1 PAYE)
#> 1822 National Insurance Contributions - employee (Class 1 PAYE)
#> 1823 National Insurance Contributions - employee (Class 1 PAYE)
#> 1824 National Insurance Contributions - employee (Class 1 PAYE)
#> 1825 National Insurance Contributions - employee (Class 1 PAYE)
#> 1826 National Insurance Contributions - employee (Class 1 PAYE)
#> 1827 National Insurance Contributions - employee (Class 1 PAYE)
#> 1828 National Insurance Contributions - employee (Class 1 PAYE)
#> 1829 National Insurance Contributions - employee (Class 1 PAYE)
#> 1830 National Insurance Contributions - employee (Class 1 PAYE)
#> 1831 National Insurance Contributions - employee (Class 1 PAYE)
#> 1832 National Insurance Contributions - employee (Class 1 PAYE)
#> 1833 National Insurance Contributions - employee (Class 1 PAYE)
#> 1834 National Insurance Contributions - employee (Class 1 PAYE)
#> 1835 National Insurance Contributions - employee (Class 1 PAYE)
#> 1836 National Insurance Contributions - employee (Class 1 PAYE)
#> 1837 National Insurance Contributions - employee (Class 1 PAYE)
#> 1838 National Insurance Contributions - employee (Class 1 PAYE)
#> 1839 National Insurance Contributions - employee (Class 1 PAYE)
#> 1840 National Insurance Contributions - employee (Class 1 PAYE)
#> 1841 National Insurance Contributions - employee (Class 1 PAYE)
#> 1842 National Insurance Contributions - employee (Class 1 PAYE)
#> 1843 National Insurance Contributions - employee (Class 1 PAYE)
#> 1844 National Insurance Contributions - employee (Class 1 PAYE)
#> 1845 National Insurance Contributions - employee (Class 1 PAYE)
#> 1846 National Insurance Contributions - employee (Class 1 PAYE)
#> 1847 National Insurance Contributions - employee (Class 1 PAYE)
#> 1848 National Insurance Contributions - employee (Class 1 PAYE)
#> 1849 National Insurance Contributions - employee (Class 1 PAYE)
#> 1850 National Insurance Contributions - employee (Class 1 PAYE)
#> 1851 National Insurance Contributions - employee (Class 1 PAYE)
#> 1852 National Insurance Contributions - employee (Class 1 PAYE)
#> 1853 National Insurance Contributions - employee (Class 1 PAYE)
#> 1854 National Insurance Contributions - employee (Class 1 PAYE)
#> 1855 National Insurance Contributions - employee (Class 1 PAYE)
#> 1856 National Insurance Contributions - employee (Class 1 PAYE)
#> 1857 National Insurance Contributions - employee (Class 1 PAYE)
#> 1858 National Insurance Contributions - employee (Class 1 PAYE)
#> 1859 National Insurance Contributions - employee (Class 1 PAYE)
#> 1860 National Insurance Contributions - employee (Class 1 PAYE)
#> 1861 National Insurance Contributions - employee (Class 1 PAYE)
#> 1862 National Insurance Contributions - employee (Class 1 PAYE)
#> 1863 National Insurance Contributions - employee (Class 1 PAYE)
#> 1864 National Insurance Contributions - employee (Class 1 PAYE)
#> 1865 National Insurance Contributions - employee (Class 1 PAYE)
#> 1866 National Insurance Contributions - employee (Class 1 PAYE)
#> 1867 National Insurance Contributions - employee (Class 1 PAYE)
#> 1868 National Insurance Contributions - employee (Class 1 PAYE)
#> 1869 National Insurance Contributions - employee (Class 1 PAYE)
#> 1870 National Insurance Contributions - employee (Class 1 PAYE)
#> 1871 National Insurance Contributions - employee (Class 1 PAYE)
#> 1872 National Insurance Contributions - employee (Class 1 PAYE)
#> 1873 National Insurance Contributions - employer (Class 1 PAYE)
#> 1874 National Insurance Contributions - employer (Class 1 PAYE)
#> 1875 National Insurance Contributions - employer (Class 1 PAYE)
#> 1876 National Insurance Contributions - employer (Class 1 PAYE)
#> 1877 National Insurance Contributions - employer (Class 1 PAYE)
#> 1878 National Insurance Contributions - employer (Class 1 PAYE)
#> 1879 National Insurance Contributions - employer (Class 1 PAYE)
#> 1880 National Insurance Contributions - employer (Class 1 PAYE)
#> 1881 National Insurance Contributions - employer (Class 1 PAYE)
#> 1882 National Insurance Contributions - employer (Class 1 PAYE)
#> 1883 National Insurance Contributions - employer (Class 1 PAYE)
#> 1884 National Insurance Contributions - employer (Class 1 PAYE)
#> 1885 National Insurance Contributions - employer (Class 1 PAYE)
#> 1886 National Insurance Contributions - employer (Class 1 PAYE)
#> 1887 National Insurance Contributions - employer (Class 1 PAYE)
#> 1888 National Insurance Contributions - employer (Class 1 PAYE)
#> 1889 National Insurance Contributions - employer (Class 1 PAYE)
#> 1890 National Insurance Contributions - employer (Class 1 PAYE)
#> 1891 National Insurance Contributions - employer (Class 1 PAYE)
#> 1892 National Insurance Contributions - employer (Class 1 PAYE)
#> 1893 National Insurance Contributions - employer (Class 1 PAYE)
#> 1894 National Insurance Contributions - employer (Class 1 PAYE)
#> 1895 National Insurance Contributions - employer (Class 1 PAYE)
#> 1896 National Insurance Contributions - employer (Class 1 PAYE)
#> 1897 National Insurance Contributions - employer (Class 1 PAYE)
#> 1898 National Insurance Contributions - employer (Class 1 PAYE)
#> 1899 National Insurance Contributions - employer (Class 1 PAYE)
#> 1900 National Insurance Contributions - employer (Class 1 PAYE)
#> 1901 National Insurance Contributions - employer (Class 1 PAYE)
#> 1902 National Insurance Contributions - employer (Class 1 PAYE)
#> 1903 National Insurance Contributions - employer (Class 1 PAYE)
#> 1904 National Insurance Contributions - employer (Class 1 PAYE)
#> 1905 National Insurance Contributions - employer (Class 1 PAYE)
#> 1906 National Insurance Contributions - employer (Class 1 PAYE)
#> 1907 National Insurance Contributions - employer (Class 1 PAYE)
#> 1908 National Insurance Contributions - employer (Class 1 PAYE)
#> 1909 National Insurance Contributions - employer (Class 1 PAYE)
#> 1910 National Insurance Contributions - employer (Class 1 PAYE)
#> 1911 National Insurance Contributions - employer (Class 1 PAYE)
#> 1912 National Insurance Contributions - employer (Class 1 PAYE)
#> 1913 National Insurance Contributions - employer (Class 1 PAYE)
#> 1914 National Insurance Contributions - employer (Class 1 PAYE)
#> 1915 National Insurance Contributions - employer (Class 1 PAYE)
#> 1916 National Insurance Contributions - employer (Class 1 PAYE)
#> 1917 National Insurance Contributions - employer (Class 1 PAYE)
#> 1918 National Insurance Contributions - employer (Class 1 PAYE)
#> 1919 National Insurance Contributions - employer (Class 1 PAYE)
#> 1920 National Insurance Contributions - employer (Class 1 PAYE)
#> 1921 National Insurance Contributions - employer (Class 1 PAYE)
#> 1922 National Insurance Contributions - employer (Class 1 PAYE)
#> 1923 National Insurance Contributions - employer (Class 1 PAYE)
#> 1924 National Insurance Contributions - employer (Class 1 PAYE)
#> 1925 National Insurance Contributions - employer (Class 1 PAYE)
#> 1926 National Insurance Contributions - employer (Class 1 PAYE)
#> 1927 National Insurance Contributions - employer (Class 1 PAYE)
#> 1928 National Insurance Contributions - employer (Class 1 PAYE)
#> 1929 National Insurance Contributions - employer (Class 1 PAYE)
#> 1930 National Insurance Contributions - employer (Class 1 PAYE)
#> 1931 National Insurance Contributions - employer (Class 1 PAYE)
#> 1932 National Insurance Contributions - employer (Class 1 PAYE)
#> 1933 National Insurance Contributions - employer (Class 1 PAYE)
#> 1934 National Insurance Contributions - employer (Class 1 PAYE)
#> 1935 National Insurance Contributions - employer (Class 1 PAYE)
#> 1936 National Insurance Contributions - employer (Class 1 PAYE)
#> 1937 National Insurance Contributions - employer (Class 1 PAYE)
#> 1938 National Insurance Contributions - employer (Class 1 PAYE)
#> 1939 National Insurance Contributions - employer (Class 1 PAYE)
#> 1940 National Insurance Contributions - employer (Class 1 PAYE)
#> 1941 National Insurance Contributions - employer (Class 1 PAYE)
#> 1942 National Insurance Contributions - employer (Class 1 PAYE)
#> 1943 National Insurance Contributions - employer (Class 1 PAYE)
#> 1944 National Insurance Contributions - employer (Class 1 PAYE)
#> 1945 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1946 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1947 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1948 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1949 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1950 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1951 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1952 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1953 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1954 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1955 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1956 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1957 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1958 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1959 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1960 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1961 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1962 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1963 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1964 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1965 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1966 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1967 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1968 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1969 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1970 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1971 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1972 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1973 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1974 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1975 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1976 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1977 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1978 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1979 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1980 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1981 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1982 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1983 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1984 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1985 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1986 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1987 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1988 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1989 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1990 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1991 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1992 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1993 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1994 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1995 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1996 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1997 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1998 National Insurance Contributions - self-employed (Class 2 & 4)
#> 1999 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2000 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2001 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2002 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2003 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2004 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2005 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2006 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2007 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2008 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2009 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2010 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2011 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2012 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2013 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2014 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2015 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2016 National Insurance Contributions - self-employed (Class 2 & 4)
#> 2017 National Insurance Contributions (all classes)
#> 2018 National Insurance Contributions (all classes)
#> 2019 National Insurance Contributions (all classes)
#> 2020 National Insurance Contributions (all classes)
#> 2021 National Insurance Contributions (all classes)
#> 2022 National Insurance Contributions (all classes)
#> 2023 National Insurance Contributions (all classes)
#> 2024 National Insurance Contributions (all classes)
#> 2025 National Insurance Contributions (all classes)
#> 2026 National Insurance Contributions (all classes)
#> 2027 National Insurance Contributions (all classes)
#> 2028 National Insurance Contributions (all classes)
#> 2029 National Insurance Contributions (all classes)
#> 2030 National Insurance Contributions (all classes)
#> 2031 National Insurance Contributions (all classes)
#> 2032 National Insurance Contributions (all classes)
#> 2033 National Insurance Contributions (all classes)
#> 2034 National Insurance Contributions (all classes)
#> 2035 National Insurance Contributions (all classes)
#> 2036 National Insurance Contributions (all classes)
#> 2037 National Insurance Contributions (all classes)
#> 2038 National Insurance Contributions (all classes)
#> 2039 National Insurance Contributions (all classes)
#> 2040 National Insurance Contributions (all classes)
#> 2041 National Insurance Contributions (all classes)
#> 2042 National Insurance Contributions (all classes)
#> 2043 National Insurance Contributions (all classes)
#> 2044 National Insurance Contributions (all classes)
#> 2045 National Insurance Contributions (all classes)
#> 2046 National Insurance Contributions (all classes)
#> 2047 National Insurance Contributions (all classes)
#> 2048 National Insurance Contributions (all classes)
#> 2049 National Insurance Contributions (all classes)
#> 2050 National Insurance Contributions (all classes)
#> 2051 National Insurance Contributions (all classes)
#> 2052 National Insurance Contributions (all classes)
#> 2053 National Insurance Contributions (all classes)
#> 2054 National Insurance Contributions (all classes)
#> 2055 National Insurance Contributions (all classes)
#> 2056 National Insurance Contributions (all classes)
#> 2057 National Insurance Contributions (all classes)
#> 2058 National Insurance Contributions (all classes)
#> 2059 National Insurance Contributions (all classes)
#> 2060 National Insurance Contributions (all classes)
#> 2061 National Insurance Contributions (all classes)
#> 2062 National Insurance Contributions (all classes)
#> 2063 National Insurance Contributions (all classes)
#> 2064 National Insurance Contributions (all classes)
#> 2065 National Insurance Contributions (all classes)
#> 2066 National Insurance Contributions (all classes)
#> 2067 National Insurance Contributions (all classes)
#> 2068 National Insurance Contributions (all classes)
#> 2069 National Insurance Contributions (all classes)
#> 2070 National Insurance Contributions (all classes)
#> 2071 National Insurance Contributions (all classes)
#> 2072 National Insurance Contributions (all classes)
#> 2073 National Insurance Contributions (all classes)
#> 2074 National Insurance Contributions (all classes)
#> 2075 National Insurance Contributions (all classes)
#> 2076 National Insurance Contributions (all classes)
#> 2077 National Insurance Contributions (all classes)
#> 2078 National Insurance Contributions (all classes)
#> 2079 National Insurance Contributions (all classes)
#> 2080 National Insurance Contributions (all classes)
#> 2081 National Insurance Contributions (all classes)
#> 2082 National Insurance Contributions (all classes)
#> 2083 National Insurance Contributions (all classes)
#> 2084 National Insurance Contributions (all classes)
#> 2085 National Insurance Contributions (all classes)
#> 2086 National Insurance Contributions (all classes)
#> 2087 National Insurance Contributions (all classes)
#> 2088 National Insurance Contributions (all classes)
#> 2089 Penalties and interest
#> 2090 Penalties and interest
#> 2091 Penalties and interest
#> 2092 Penalties and interest
#> 2093 Penalties and interest
#> 2094 Penalties and interest
#> 2095 Penalties and interest
#> 2096 Penalties and interest
#> 2097 Penalties and interest
#> 2098 Penalties and interest
#> 2099 Penalties and interest
#> 2100 Penalties and interest
#> 2101 Penalties and interest
#> 2102 Penalties and interest
#> 2103 Penalties and interest
#> 2104 Penalties and interest
#> 2105 Penalties and interest
#> 2106 Penalties and interest
#> 2107 Penalties and interest
#> 2108 Penalties and interest
#> 2109 Penalties and interest
#> 2110 Penalties and interest
#> 2111 Penalties and interest
#> 2112 Penalties and interest
#> 2113 Penalties and interest
#> 2114 Penalties and interest
#> 2115 Penalties and interest
#> 2116 Penalties and interest
#> 2117 Penalties and interest
#> 2118 Penalties and interest
#> 2119 Penalties and interest
#> 2120 Penalties and interest
#> 2121 Penalties and interest
#> 2122 Penalties and interest
#> 2123 Penalties and interest
#> 2124 Penalties and interest
#> 2125 Penalties and interest
#> 2126 Penalties and interest
#> 2127 Penalties and interest
#> 2128 Penalties and interest
#> 2129 Penalties and interest
#> 2130 Penalties and interest
#> 2131 Penalties and interest
#> 2132 Penalties and interest
#> 2133 Penalties and interest
#> 2134 Penalties and interest
#> 2135 Penalties and interest
#> 2136 Penalties and interest
#> 2137 Penalties and interest
#> 2138 Penalties and interest
#> 2139 Penalties and interest
#> 2140 Penalties and interest
#> 2141 Penalties and interest
#> 2142 Penalties and interest
#> 2143 Penalties and interest
#> 2144 Penalties and interest
#> 2145 Penalties and interest
#> 2146 Penalties and interest
#> 2147 Penalties and interest
#> 2148 Penalties and interest
#> 2149 Penalties and interest
#> 2150 Penalties and interest
#> 2151 Penalties and interest
#> 2152 Penalties and interest
#> 2153 Penalties and interest
#> 2154 Penalties and interest
#> 2155 Penalties and interest
#> 2156 Penalties and interest
#> 2157 Penalties and interest
#> 2158 Penalties and interest
#> 2159 Penalties and interest
#> 2160 Penalties and interest
#> 2161 Petroleum Revenue Tax
#> 2162 Petroleum Revenue Tax
#> 2163 Petroleum Revenue Tax
#> 2164 Petroleum Revenue Tax
#> 2165 Petroleum Revenue Tax
#> 2166 Petroleum Revenue Tax
#> 2167 Petroleum Revenue Tax
#> 2168 Petroleum Revenue Tax
#> 2169 Petroleum Revenue Tax
#> 2170 Petroleum Revenue Tax
#> 2171 Petroleum Revenue Tax
#> 2172 Petroleum Revenue Tax
#> 2173 Petroleum Revenue Tax
#> 2174 Petroleum Revenue Tax
#> 2175 Petroleum Revenue Tax
#> 2176 Petroleum Revenue Tax
#> 2177 Petroleum Revenue Tax
#> 2178 Petroleum Revenue Tax
#> 2179 Petroleum Revenue Tax
#> 2180 Petroleum Revenue Tax
#> 2181 Petroleum Revenue Tax
#> 2182 Petroleum Revenue Tax
#> 2183 Petroleum Revenue Tax
#> 2184 Petroleum Revenue Tax
#> 2185 Petroleum Revenue Tax
#> 2186 Petroleum Revenue Tax
#> 2187 Petroleum Revenue Tax
#> 2188 Petroleum Revenue Tax
#> 2189 Petroleum Revenue Tax
#> 2190 Petroleum Revenue Tax
#> 2191 Petroleum Revenue Tax
#> 2192 Petroleum Revenue Tax
#> 2193 Petroleum Revenue Tax
#> 2194 Petroleum Revenue Tax
#> 2195 Petroleum Revenue Tax
#> 2196 Petroleum Revenue Tax
#> 2197 Petroleum Revenue Tax
#> 2198 Petroleum Revenue Tax
#> 2199 Petroleum Revenue Tax
#> 2200 Petroleum Revenue Tax
#> 2201 Petroleum Revenue Tax
#> 2202 Petroleum Revenue Tax
#> 2203 Petroleum Revenue Tax
#> 2204 Petroleum Revenue Tax
#> 2205 Petroleum Revenue Tax
#> 2206 Petroleum Revenue Tax
#> 2207 Petroleum Revenue Tax
#> 2208 Petroleum Revenue Tax
#> 2209 Petroleum Revenue Tax
#> 2210 Petroleum Revenue Tax
#> 2211 Petroleum Revenue Tax
#> 2212 Petroleum Revenue Tax
#> 2213 Petroleum Revenue Tax
#> 2214 Petroleum Revenue Tax
#> 2215 Petroleum Revenue Tax
#> 2216 Petroleum Revenue Tax
#> 2217 Petroleum Revenue Tax
#> 2218 Petroleum Revenue Tax
#> 2219 Petroleum Revenue Tax
#> 2220 Petroleum Revenue Tax
#> 2221 Petroleum Revenue Tax
#> 2222 Petroleum Revenue Tax
#> 2223 Petroleum Revenue Tax
#> 2224 Petroleum Revenue Tax
#> 2225 Petroleum Revenue Tax
#> 2226 Petroleum Revenue Tax
#> 2227 Petroleum Revenue Tax
#> 2228 Petroleum Revenue Tax
#> 2229 Petroleum Revenue Tax
#> 2230 Petroleum Revenue Tax
#> 2231 Petroleum Revenue Tax
#> 2232 Petroleum Revenue Tax
#> 2233 Plastic Packaging Tax
#> 2234 Plastic Packaging Tax
#> 2235 Plastic Packaging Tax
#> 2236 Plastic Packaging Tax
#> 2237 Plastic Packaging Tax
#> 2238 Plastic Packaging Tax
#> 2239 Plastic Packaging Tax
#> 2240 Plastic Packaging Tax
#> 2241 Plastic Packaging Tax
#> 2242 Plastic Packaging Tax
#> 2243 Plastic Packaging Tax
#> 2244 Plastic Packaging Tax
#> 2245 Plastic Packaging Tax
#> 2246 Plastic Packaging Tax
#> 2247 Plastic Packaging Tax
#> 2248 Plastic Packaging Tax
#> 2249 Plastic Packaging Tax
#> 2250 Plastic Packaging Tax
#> 2251 Plastic Packaging Tax
#> 2252 Plastic Packaging Tax
#> 2253 Plastic Packaging Tax
#> 2254 Plastic Packaging Tax
#> 2255 Plastic Packaging Tax
#> 2256 Plastic Packaging Tax
#> 2257 Plastic Packaging Tax
#> 2258 Plastic Packaging Tax
#> 2259 Plastic Packaging Tax
#> 2260 Plastic Packaging Tax
#> 2261 Plastic Packaging Tax
#> 2262 Plastic Packaging Tax
#> 2263 Plastic Packaging Tax
#> 2264 Plastic Packaging Tax
#> 2265 Plastic Packaging Tax
#> 2266 Plastic Packaging Tax
#> 2267 Plastic Packaging Tax
#> 2268 Plastic Packaging Tax
#> 2269 Plastic Packaging Tax
#> 2270 Plastic Packaging Tax
#> 2271 Plastic Packaging Tax
#> 2272 Plastic Packaging Tax
#> 2273 Plastic Packaging Tax
#> 2274 Plastic Packaging Tax
#> 2275 Plastic Packaging Tax
#> 2276 Plastic Packaging Tax
#> 2277 Plastic Packaging Tax
#> 2278 Plastic Packaging Tax
#> 2279 Plastic Packaging Tax
#> 2280 Plastic Packaging Tax
#> 2281 Plastic Packaging Tax
#> 2282 Plastic Packaging Tax
#> 2283 Plastic Packaging Tax
#> 2284 Plastic Packaging Tax
#> 2285 Plastic Packaging Tax
#> 2286 Plastic Packaging Tax
#> 2287 Plastic Packaging Tax
#> 2288 Plastic Packaging Tax
#> 2289 Plastic Packaging Tax
#> 2290 Plastic Packaging Tax
#> 2291 Plastic Packaging Tax
#> 2292 Plastic Packaging Tax
#> 2293 Plastic Packaging Tax
#> 2294 Plastic Packaging Tax
#> 2295 Plastic Packaging Tax
#> 2296 Plastic Packaging Tax
#> 2297 Plastic Packaging Tax
#> 2298 Plastic Packaging Tax
#> 2299 Plastic Packaging Tax
#> 2300 Plastic Packaging Tax
#> 2301 Plastic Packaging Tax
#> 2302 Plastic Packaging Tax
#> 2303 Plastic Packaging Tax
#> 2304 Plastic Packaging Tax
#> 2305 Residential Property Developer Tax
#> 2306 Residential Property Developer Tax
#> 2307 Residential Property Developer Tax
#> 2308 Residential Property Developer Tax
#> 2309 Residential Property Developer Tax
#> 2310 Residential Property Developer Tax
#> 2311 Residential Property Developer Tax
#> 2312 Residential Property Developer Tax
#> 2313 Residential Property Developer Tax
#> 2314 Residential Property Developer Tax
#> 2315 Residential Property Developer Tax
#> 2316 Residential Property Developer Tax
#> 2317 Residential Property Developer Tax
#> 2318 Residential Property Developer Tax
#> 2319 Residential Property Developer Tax
#> 2320 Residential Property Developer Tax
#> 2321 Residential Property Developer Tax
#> 2322 Residential Property Developer Tax
#> 2323 Residential Property Developer Tax
#> 2324 Residential Property Developer Tax
#> 2325 Residential Property Developer Tax
#> 2326 Residential Property Developer Tax
#> 2327 Residential Property Developer Tax
#> 2328 Residential Property Developer Tax
#> 2329 Residential Property Developer Tax
#> 2330 Residential Property Developer Tax
#> 2331 Residential Property Developer Tax
#> 2332 Residential Property Developer Tax
#> 2333 Residential Property Developer Tax
#> 2334 Residential Property Developer Tax
#> 2335 Residential Property Developer Tax
#> 2336 Residential Property Developer Tax
#> 2337 Residential Property Developer Tax
#> 2338 Residential Property Developer Tax
#> 2339 Residential Property Developer Tax
#> 2340 Residential Property Developer Tax
#> 2341 Residential Property Developer Tax
#> 2342 Residential Property Developer Tax
#> 2343 Residential Property Developer Tax
#> 2344 Residential Property Developer Tax
#> 2345 Residential Property Developer Tax
#> 2346 Residential Property Developer Tax
#> 2347 Residential Property Developer Tax
#> 2348 Residential Property Developer Tax
#> 2349 Residential Property Developer Tax
#> 2350 Residential Property Developer Tax
#> 2351 Residential Property Developer Tax
#> 2352 Residential Property Developer Tax
#> 2353 Residential Property Developer Tax
#> 2354 Residential Property Developer Tax
#> 2355 Residential Property Developer Tax
#> 2356 Residential Property Developer Tax
#> 2357 Residential Property Developer Tax
#> 2358 Residential Property Developer Tax
#> 2359 Residential Property Developer Tax
#> 2360 Residential Property Developer Tax
#> 2361 Residential Property Developer Tax
#> 2362 Residential Property Developer Tax
#> 2363 Residential Property Developer Tax
#> 2364 Residential Property Developer Tax
#> 2365 Residential Property Developer Tax
#> 2366 Residential Property Developer Tax
#> 2367 Residential Property Developer Tax
#> 2368 Residential Property Developer Tax
#> 2369 Residential Property Developer Tax
#> 2370 Residential Property Developer Tax
#> 2371 Residential Property Developer Tax
#> 2372 Residential Property Developer Tax
#> 2373 Residential Property Developer Tax
#> 2374 Residential Property Developer Tax
#> 2375 Residential Property Developer Tax
#> 2376 Residential Property Developer Tax
#> 2377 Stamp Duty Land Tax
#> 2378 Stamp Duty Land Tax
#> 2379 Stamp Duty Land Tax
#> 2380 Stamp Duty Land Tax
#> 2381 Stamp Duty Land Tax
#> 2382 Stamp Duty Land Tax
#> 2383 Stamp Duty Land Tax
#> 2384 Stamp Duty Land Tax
#> 2385 Stamp Duty Land Tax
#> 2386 Stamp Duty Land Tax
#> 2387 Stamp Duty Land Tax
#> 2388 Stamp Duty Land Tax
#> 2389 Stamp Duty Land Tax
#> 2390 Stamp Duty Land Tax
#> 2391 Stamp Duty Land Tax
#> 2392 Stamp Duty Land Tax
#> 2393 Stamp Duty Land Tax
#> 2394 Stamp Duty Land Tax
#> 2395 Stamp Duty Land Tax
#> 2396 Stamp Duty Land Tax
#> 2397 Stamp Duty Land Tax
#> 2398 Stamp Duty Land Tax
#> 2399 Stamp Duty Land Tax
#> 2400 Stamp Duty Land Tax
#> 2401 Stamp Duty Land Tax
#> 2402 Stamp Duty Land Tax
#> 2403 Stamp Duty Land Tax
#> 2404 Stamp Duty Land Tax
#> 2405 Stamp Duty Land Tax
#> 2406 Stamp Duty Land Tax
#> 2407 Stamp Duty Land Tax
#> 2408 Stamp Duty Land Tax
#> 2409 Stamp Duty Land Tax
#> 2410 Stamp Duty Land Tax
#> 2411 Stamp Duty Land Tax
#> 2412 Stamp Duty Land Tax
#> 2413 Stamp Duty Land Tax
#> 2414 Stamp Duty Land Tax
#> 2415 Stamp Duty Land Tax
#> 2416 Stamp Duty Land Tax
#> 2417 Stamp Duty Land Tax
#> 2418 Stamp Duty Land Tax
#> 2419 Stamp Duty Land Tax
#> 2420 Stamp Duty Land Tax
#> 2421 Stamp Duty Land Tax
#> 2422 Stamp Duty Land Tax
#> 2423 Stamp Duty Land Tax
#> 2424 Stamp Duty Land Tax
#> 2425 Stamp Duty Land Tax
#> 2426 Stamp Duty Land Tax
#> 2427 Stamp Duty Land Tax
#> 2428 Stamp Duty Land Tax
#> 2429 Stamp Duty Land Tax
#> 2430 Stamp Duty Land Tax
#> 2431 Stamp Duty Land Tax
#> 2432 Stamp Duty Land Tax
#> 2433 Stamp Duty Land Tax
#> 2434 Stamp Duty Land Tax
#> 2435 Stamp Duty Land Tax
#> 2436 Stamp Duty Land Tax
#> 2437 Stamp Duty Land Tax
#> 2438 Stamp Duty Land Tax
#> 2439 Stamp Duty Land Tax
#> 2440 Stamp Duty Land Tax
#> 2441 Stamp Duty Land Tax
#> 2442 Stamp Duty Land Tax
#> 2443 Stamp Duty Land Tax
#> 2444 Stamp Duty Land Tax
#> 2445 Stamp Duty Land Tax
#> 2446 Stamp Duty Land Tax
#> 2447 Stamp Duty Land Tax
#> 2448 Stamp Duty Land Tax
#> 2449 Soft Drinks Industry Levy
#> 2450 Soft Drinks Industry Levy
#> 2451 Soft Drinks Industry Levy
#> 2452 Soft Drinks Industry Levy
#> 2453 Soft Drinks Industry Levy
#> 2454 Soft Drinks Industry Levy
#> 2455 Soft Drinks Industry Levy
#> 2456 Soft Drinks Industry Levy
#> 2457 Soft Drinks Industry Levy
#> 2458 Soft Drinks Industry Levy
#> 2459 Soft Drinks Industry Levy
#> 2460 Soft Drinks Industry Levy
#> 2461 Soft Drinks Industry Levy
#> 2462 Soft Drinks Industry Levy
#> 2463 Soft Drinks Industry Levy
#> 2464 Soft Drinks Industry Levy
#> 2465 Soft Drinks Industry Levy
#> 2466 Soft Drinks Industry Levy
#> 2467 Soft Drinks Industry Levy
#> 2468 Soft Drinks Industry Levy
#> 2469 Soft Drinks Industry Levy
#> 2470 Soft Drinks Industry Levy
#> 2471 Soft Drinks Industry Levy
#> 2472 Soft Drinks Industry Levy
#> 2473 Soft Drinks Industry Levy
#> 2474 Soft Drinks Industry Levy
#> 2475 Soft Drinks Industry Levy
#> 2476 Soft Drinks Industry Levy
#> 2477 Soft Drinks Industry Levy
#> 2478 Soft Drinks Industry Levy
#> 2479 Soft Drinks Industry Levy
#> 2480 Soft Drinks Industry Levy
#> 2481 Soft Drinks Industry Levy
#> 2482 Soft Drinks Industry Levy
#> 2483 Soft Drinks Industry Levy
#> 2484 Soft Drinks Industry Levy
#> 2485 Soft Drinks Industry Levy
#> 2486 Soft Drinks Industry Levy
#> 2487 Soft Drinks Industry Levy
#> 2488 Soft Drinks Industry Levy
#> 2489 Soft Drinks Industry Levy
#> 2490 Soft Drinks Industry Levy
#> 2491 Soft Drinks Industry Levy
#> 2492 Soft Drinks Industry Levy
#> 2493 Soft Drinks Industry Levy
#> 2494 Soft Drinks Industry Levy
#> 2495 Soft Drinks Industry Levy
#> 2496 Soft Drinks Industry Levy
#> 2497 Soft Drinks Industry Levy
#> 2498 Soft Drinks Industry Levy
#> 2499 Soft Drinks Industry Levy
#> 2500 Soft Drinks Industry Levy
#> 2501 Soft Drinks Industry Levy
#> 2502 Soft Drinks Industry Levy
#> 2503 Soft Drinks Industry Levy
#> 2504 Soft Drinks Industry Levy
#> 2505 Soft Drinks Industry Levy
#> 2506 Soft Drinks Industry Levy
#> 2507 Soft Drinks Industry Levy
#> 2508 Soft Drinks Industry Levy
#> 2509 Soft Drinks Industry Levy
#> 2510 Soft Drinks Industry Levy
#> 2511 Soft Drinks Industry Levy
#> 2512 Soft Drinks Industry Levy
#> 2513 Soft Drinks Industry Levy
#> 2514 Soft Drinks Industry Levy
#> 2515 Soft Drinks Industry Levy
#> 2516 Soft Drinks Industry Levy
#> 2517 Soft Drinks Industry Levy
#> 2518 Soft Drinks Industry Levy
#> 2519 Soft Drinks Industry Levy
#> 2520 Soft Drinks Industry Levy
#> 2521 Spirits Duties
#> 2522 Spirits Duties
#> 2523 Spirits Duties
#> 2524 Spirits Duties
#> 2525 Spirits Duties
#> 2526 Spirits Duties
#> 2527 Spirits Duties
#> 2528 Spirits Duties
#> 2529 Spirits Duties
#> 2530 Spirits Duties
#> 2531 Spirits Duties
#> 2532 Spirits Duties
#> 2533 Spirits Duties
#> 2534 Spirits Duties
#> 2535 Spirits Duties
#> 2536 Spirits Duties
#> 2537 Spirits Duties
#> 2538 Spirits Duties
#> 2539 Spirits Duties
#> 2540 Spirits Duties
#> 2541 Spirits Duties
#> 2542 Spirits Duties
#> 2543 Spirits Duties
#> 2544 Spirits Duties
#> 2545 Spirits Duties
#> 2546 Spirits Duties
#> 2547 Spirits Duties
#> 2548 Spirits Duties
#> 2549 Spirits Duties
#> 2550 Spirits Duties
#> 2551 Spirits Duties
#> 2552 Spirits Duties
#> 2553 Spirits Duties
#> 2554 Spirits Duties
#> 2555 Spirits Duties
#> 2556 Spirits Duties
#> 2557 Spirits Duties
#> 2558 Spirits Duties
#> 2559 Spirits Duties
#> 2560 Spirits Duties
#> 2561 Spirits Duties
#> 2562 Spirits Duties
#> 2563 Spirits Duties
#> 2564 Spirits Duties
#> 2565 Spirits Duties
#> 2566 Spirits Duties
#> 2567 Spirits Duties
#> 2568 Spirits Duties
#> 2569 Spirits Duties
#> 2570 Spirits Duties
#> 2571 Spirits Duties
#> 2572 Spirits Duties
#> 2573 Spirits Duties
#> 2574 Spirits Duties
#> 2575 Spirits Duties
#> 2576 Spirits Duties
#> 2577 Spirits Duties
#> 2578 Spirits Duties
#> 2579 Spirits Duties
#> 2580 Spirits Duties
#> 2581 Spirits Duties
#> 2582 Spirits Duties
#> 2583 Spirits Duties
#> 2584 Spirits Duties
#> 2585 Spirits Duties
#> 2586 Spirits Duties
#> 2587 Spirits Duties
#> 2588 Spirits Duties
#> 2589 Spirits Duties
#> 2590 Spirits Duties
#> 2591 Spirits Duties
#> 2592 Spirits Duties
#> 2593 Stamp Duty Reserve Tax (shares)
#> 2594 Stamp Duty Reserve Tax (shares)
#> 2595 Stamp Duty Reserve Tax (shares)
#> 2596 Stamp Duty Reserve Tax (shares)
#> 2597 Stamp Duty Reserve Tax (shares)
#> 2598 Stamp Duty Reserve Tax (shares)
#> 2599 Stamp Duty Reserve Tax (shares)
#> 2600 Stamp Duty Reserve Tax (shares)
#> 2601 Stamp Duty Reserve Tax (shares)
#> 2602 Stamp Duty Reserve Tax (shares)
#> 2603 Stamp Duty Reserve Tax (shares)
#> 2604 Stamp Duty Reserve Tax (shares)
#> 2605 Stamp Duty Reserve Tax (shares)
#> 2606 Stamp Duty Reserve Tax (shares)
#> 2607 Stamp Duty Reserve Tax (shares)
#> 2608 Stamp Duty Reserve Tax (shares)
#> 2609 Stamp Duty Reserve Tax (shares)
#> 2610 Stamp Duty Reserve Tax (shares)
#> 2611 Stamp Duty Reserve Tax (shares)
#> 2612 Stamp Duty Reserve Tax (shares)
#> 2613 Stamp Duty Reserve Tax (shares)
#> 2614 Stamp Duty Reserve Tax (shares)
#> 2615 Stamp Duty Reserve Tax (shares)
#> 2616 Stamp Duty Reserve Tax (shares)
#> 2617 Stamp Duty Reserve Tax (shares)
#> 2618 Stamp Duty Reserve Tax (shares)
#> 2619 Stamp Duty Reserve Tax (shares)
#> 2620 Stamp Duty Reserve Tax (shares)
#> 2621 Stamp Duty Reserve Tax (shares)
#> 2622 Stamp Duty Reserve Tax (shares)
#> 2623 Stamp Duty Reserve Tax (shares)
#> 2624 Stamp Duty Reserve Tax (shares)
#> 2625 Stamp Duty Reserve Tax (shares)
#> 2626 Stamp Duty Reserve Tax (shares)
#> 2627 Stamp Duty Reserve Tax (shares)
#> 2628 Stamp Duty Reserve Tax (shares)
#> 2629 Stamp Duty Reserve Tax (shares)
#> 2630 Stamp Duty Reserve Tax (shares)
#> 2631 Stamp Duty Reserve Tax (shares)
#> 2632 Stamp Duty Reserve Tax (shares)
#> 2633 Stamp Duty Reserve Tax (shares)
#> 2634 Stamp Duty Reserve Tax (shares)
#> 2635 Stamp Duty Reserve Tax (shares)
#> 2636 Stamp Duty Reserve Tax (shares)
#> 2637 Stamp Duty Reserve Tax (shares)
#> 2638 Stamp Duty Reserve Tax (shares)
#> 2639 Stamp Duty Reserve Tax (shares)
#> 2640 Stamp Duty Reserve Tax (shares)
#> 2641 Stamp Duty Reserve Tax (shares)
#> 2642 Stamp Duty Reserve Tax (shares)
#> 2643 Stamp Duty Reserve Tax (shares)
#> 2644 Stamp Duty Reserve Tax (shares)
#> 2645 Stamp Duty Reserve Tax (shares)
#> 2646 Stamp Duty Reserve Tax (shares)
#> 2647 Stamp Duty Reserve Tax (shares)
#> 2648 Stamp Duty Reserve Tax (shares)
#> 2649 Stamp Duty Reserve Tax (shares)
#> 2650 Stamp Duty Reserve Tax (shares)
#> 2651 Stamp Duty Reserve Tax (shares)
#> 2652 Stamp Duty Reserve Tax (shares)
#> 2653 Stamp Duty Reserve Tax (shares)
#> 2654 Stamp Duty Reserve Tax (shares)
#> 2655 Stamp Duty Reserve Tax (shares)
#> 2656 Stamp Duty Reserve Tax (shares)
#> 2657 Stamp Duty Reserve Tax (shares)
#> 2658 Stamp Duty Reserve Tax (shares)
#> 2659 Stamp Duty Reserve Tax (shares)
#> 2660 Stamp Duty Reserve Tax (shares)
#> 2661 Stamp Duty Reserve Tax (shares)
#> 2662 Stamp Duty Reserve Tax (shares)
#> 2663 Stamp Duty Reserve Tax (shares)
#> 2664 Stamp Duty Reserve Tax (shares)
#> 2665 Tobacco Duties
#> 2666 Tobacco Duties
#> 2667 Tobacco Duties
#> 2668 Tobacco Duties
#> 2669 Tobacco Duties
#> 2670 Tobacco Duties
#> 2671 Tobacco Duties
#> 2672 Tobacco Duties
#> 2673 Tobacco Duties
#> 2674 Tobacco Duties
#> 2675 Tobacco Duties
#> 2676 Tobacco Duties
#> 2677 Tobacco Duties
#> 2678 Tobacco Duties
#> 2679 Tobacco Duties
#> 2680 Tobacco Duties
#> 2681 Tobacco Duties
#> 2682 Tobacco Duties
#> 2683 Tobacco Duties
#> 2684 Tobacco Duties
#> 2685 Tobacco Duties
#> 2686 Tobacco Duties
#> 2687 Tobacco Duties
#> 2688 Tobacco Duties
#> 2689 Tobacco Duties
#> 2690 Tobacco Duties
#> 2691 Tobacco Duties
#> 2692 Tobacco Duties
#> 2693 Tobacco Duties
#> 2694 Tobacco Duties
#> 2695 Tobacco Duties
#> 2696 Tobacco Duties
#> 2697 Tobacco Duties
#> 2698 Tobacco Duties
#> 2699 Tobacco Duties
#> 2700 Tobacco Duties
#> 2701 Tobacco Duties
#> 2702 Tobacco Duties
#> 2703 Tobacco Duties
#> 2704 Tobacco Duties
#> 2705 Tobacco Duties
#> 2706 Tobacco Duties
#> 2707 Tobacco Duties
#> 2708 Tobacco Duties
#> 2709 Tobacco Duties
#> 2710 Tobacco Duties
#> 2711 Tobacco Duties
#> 2712 Tobacco Duties
#> 2713 Tobacco Duties
#> 2714 Tobacco Duties
#> 2715 Tobacco Duties
#> 2716 Tobacco Duties
#> 2717 Tobacco Duties
#> 2718 Tobacco Duties
#> 2719 Tobacco Duties
#> 2720 Tobacco Duties
#> 2721 Tobacco Duties
#> 2722 Tobacco Duties
#> 2723 Tobacco Duties
#> 2724 Tobacco Duties
#> 2725 Tobacco Duties
#> 2726 Tobacco Duties
#> 2727 Tobacco Duties
#> 2728 Tobacco Duties
#> 2729 Tobacco Duties
#> 2730 Tobacco Duties
#> 2731 Tobacco Duties
#> 2732 Tobacco Duties
#> 2733 Tobacco Duties
#> 2734 Tobacco Duties
#> 2735 Tobacco Duties
#> 2736 Tobacco Duties
#> 2737 Total HMRC receipts
#> 2738 Total HMRC receipts
#> 2739 Total HMRC receipts
#> 2740 Total HMRC receipts
#> 2741 Total HMRC receipts
#> 2742 Total HMRC receipts
#> 2743 Total HMRC receipts
#> 2744 Total HMRC receipts
#> 2745 Total HMRC receipts
#> 2746 Total HMRC receipts
#> 2747 Total HMRC receipts
#> 2748 Total HMRC receipts
#> 2749 Total HMRC receipts
#> 2750 Total HMRC receipts
#> 2751 Total HMRC receipts
#> 2752 Total HMRC receipts
#> 2753 Total HMRC receipts
#> 2754 Total HMRC receipts
#> 2755 Total HMRC receipts
#> 2756 Total HMRC receipts
#> 2757 Total HMRC receipts
#> 2758 Total HMRC receipts
#> 2759 Total HMRC receipts
#> 2760 Total HMRC receipts
#> 2761 Total HMRC receipts
#> 2762 Total HMRC receipts
#> 2763 Total HMRC receipts
#> 2764 Total HMRC receipts
#> 2765 Total HMRC receipts
#> 2766 Total HMRC receipts
#> 2767 Total HMRC receipts
#> 2768 Total HMRC receipts
#> 2769 Total HMRC receipts
#> 2770 Total HMRC receipts
#> 2771 Total HMRC receipts
#> 2772 Total HMRC receipts
#> 2773 Total HMRC receipts
#> 2774 Total HMRC receipts
#> 2775 Total HMRC receipts
#> 2776 Total HMRC receipts
#> 2777 Total HMRC receipts
#> 2778 Total HMRC receipts
#> 2779 Total HMRC receipts
#> 2780 Total HMRC receipts
#> 2781 Total HMRC receipts
#> 2782 Total HMRC receipts
#> 2783 Total HMRC receipts
#> 2784 Total HMRC receipts
#> 2785 Total HMRC receipts
#> 2786 Total HMRC receipts
#> 2787 Total HMRC receipts
#> 2788 Total HMRC receipts
#> 2789 Total HMRC receipts
#> 2790 Total HMRC receipts
#> 2791 Total HMRC receipts
#> 2792 Total HMRC receipts
#> 2793 Total HMRC receipts
#> 2794 Total HMRC receipts
#> 2795 Total HMRC receipts
#> 2796 Total HMRC receipts
#> 2797 Total HMRC receipts
#> 2798 Total HMRC receipts
#> 2799 Total HMRC receipts
#> 2800 Total HMRC receipts
#> 2801 Total HMRC receipts
#> 2802 Total HMRC receipts
#> 2803 Total HMRC receipts
#> 2804 Total HMRC receipts
#> 2805 Total HMRC receipts
#> 2806 Total HMRC receipts
#> 2807 Total HMRC receipts
#> 2808 Total HMRC receipts
#> 2809 Value Added Tax
#> 2810 Value Added Tax
#> 2811 Value Added Tax
#> 2812 Value Added Tax
#> 2813 Value Added Tax
#> 2814 Value Added Tax
#> 2815 Value Added Tax
#> 2816 Value Added Tax
#> 2817 Value Added Tax
#> 2818 Value Added Tax
#> 2819 Value Added Tax
#> 2820 Value Added Tax
#> 2821 Value Added Tax
#> 2822 Value Added Tax
#> 2823 Value Added Tax
#> 2824 Value Added Tax
#> 2825 Value Added Tax
#> 2826 Value Added Tax
#> 2827 Value Added Tax
#> 2828 Value Added Tax
#> 2829 Value Added Tax
#> 2830 Value Added Tax
#> 2831 Value Added Tax
#> 2832 Value Added Tax
#> 2833 Value Added Tax
#> 2834 Value Added Tax
#> 2835 Value Added Tax
#> 2836 Value Added Tax
#> 2837 Value Added Tax
#> 2838 Value Added Tax
#> 2839 Value Added Tax
#> 2840 Value Added Tax
#> 2841 Value Added Tax
#> 2842 Value Added Tax
#> 2843 Value Added Tax
#> 2844 Value Added Tax
#> 2845 Value Added Tax
#> 2846 Value Added Tax
#> 2847 Value Added Tax
#> 2848 Value Added Tax
#> 2849 Value Added Tax
#> 2850 Value Added Tax
#> 2851 Value Added Tax
#> 2852 Value Added Tax
#> 2853 Value Added Tax
#> 2854 Value Added Tax
#> 2855 Value Added Tax
#> 2856 Value Added Tax
#> 2857 Value Added Tax
#> 2858 Value Added Tax
#> 2859 Value Added Tax
#> 2860 Value Added Tax
#> 2861 Value Added Tax
#> 2862 Value Added Tax
#> 2863 Value Added Tax
#> 2864 Value Added Tax
#> 2865 Value Added Tax
#> 2866 Value Added Tax
#> 2867 Value Added Tax
#> 2868 Value Added Tax
#> 2869 Value Added Tax
#> 2870 Value Added Tax
#> 2871 Value Added Tax
#> 2872 Value Added Tax
#> 2873 Value Added Tax
#> 2874 Value Added Tax
#> 2875 Value Added Tax
#> 2876 Value Added Tax
#> 2877 Value Added Tax
#> 2878 Value Added Tax
#> 2879 Value Added Tax
#> 2880 Value Added Tax
#> 2881 Wine and Made-Wine Duties
#> 2882 Wine and Made-Wine Duties
#> 2883 Wine and Made-Wine Duties
#> 2884 Wine and Made-Wine Duties
#> 2885 Wine and Made-Wine Duties
#> 2886 Wine and Made-Wine Duties
#> 2887 Wine and Made-Wine Duties
#> 2888 Wine and Made-Wine Duties
#> 2889 Wine and Made-Wine Duties
#> 2890 Wine and Made-Wine Duties
#> 2891 Wine and Made-Wine Duties
#> 2892 Wine and Made-Wine Duties
#> 2893 Wine and Made-Wine Duties
#> 2894 Wine and Made-Wine Duties
#> 2895 Wine and Made-Wine Duties
#> 2896 Wine and Made-Wine Duties
#> 2897 Wine and Made-Wine Duties
#> 2898 Wine and Made-Wine Duties
#> 2899 Wine and Made-Wine Duties
#> 2900 Wine and Made-Wine Duties
#> 2901 Wine and Made-Wine Duties
#> 2902 Wine and Made-Wine Duties
#> 2903 Wine and Made-Wine Duties
#> 2904 Wine and Made-Wine Duties
#> 2905 Wine and Made-Wine Duties
#> 2906 Wine and Made-Wine Duties
#> 2907 Wine and Made-Wine Duties
#> 2908 Wine and Made-Wine Duties
#> 2909 Wine and Made-Wine Duties
#> 2910 Wine and Made-Wine Duties
#> 2911 Wine and Made-Wine Duties
#> 2912 Wine and Made-Wine Duties
#> 2913 Wine and Made-Wine Duties
#> 2914 Wine and Made-Wine Duties
#> 2915 Wine and Made-Wine Duties
#> 2916 Wine and Made-Wine Duties
#> 2917 Wine and Made-Wine Duties
#> 2918 Wine and Made-Wine Duties
#> 2919 Wine and Made-Wine Duties
#> 2920 Wine and Made-Wine Duties
#> 2921 Wine and Made-Wine Duties
#> 2922 Wine and Made-Wine Duties
#> 2923 Wine and Made-Wine Duties
#> 2924 Wine and Made-Wine Duties
#> 2925 Wine and Made-Wine Duties
#> 2926 Wine and Made-Wine Duties
#> 2927 Wine and Made-Wine Duties
#> 2928 Wine and Made-Wine Duties
#> 2929 Wine and Made-Wine Duties
#> 2930 Wine and Made-Wine Duties
#> 2931 Wine and Made-Wine Duties
#> 2932 Wine and Made-Wine Duties
#> 2933 Wine and Made-Wine Duties
#> 2934 Wine and Made-Wine Duties
#> 2935 Wine and Made-Wine Duties
#> 2936 Wine and Made-Wine Duties
#> 2937 Wine and Made-Wine Duties
#> 2938 Wine and Made-Wine Duties
#> 2939 Wine and Made-Wine Duties
#> 2940 Wine and Made-Wine Duties
#> 2941 Wine and Made-Wine Duties
#> 2942 Wine and Made-Wine Duties
#> 2943 Wine and Made-Wine Duties
#> 2944 Wine and Made-Wine Duties
#> 2945 Wine and Made-Wine Duties
#> 2946 Wine and Made-Wine Duties
#> 2947 Wine and Made-Wine Duties
#> 2948 Wine and Made-Wine Duties
#> 2949 Wine and Made-Wine Duties
#> 2950 Wine and Made-Wine Duties
#> 2951 Wine and Made-Wine Duties
#> 2952 Wine and Made-Wine Duties
#> receipts_gbp_m
#> 1 33
#> 2 10
#> 3 15
#> 4 40
#> 5 14
#> 6 17
#> 7 50
#> 8 52
#> 9 24
#> 10 48
#> 11 39
#> 12 16
#> 13 36
#> 14 42
#> 15 20
#> 16 48
#> 17 42
#> 18 20
#> 19 41
#> 20 44
#> 21 41
#> 22 15
#> 23 44
#> 24 17
#> 25 33
#> 26 42
#> 27 19
#> 28 41
#> 29 39
#> 30 20
#> 31 31
#> 32 46
#> 33 19
#> 34 36
#> 35 35
#> 36 18
#> 37 41
#> 38 29
#> 39 14
#> 40 46
#> 41 30
#> 42 18
#> 43 48
#> 44 27
#> 45 17
#> 46 34
#> 47 33
#> 48 14
#> 49 39
#> 50 25
#> 51 19
#> 52 48
#> 53 30
#> 54 19
#> 55 46
#> 56 29
#> 57 19
#> 58 45
#> 59 25
#> 60 16
#> 61 33
#> 62 34
#> 63 20
#> 64 48
#> 65 32
#> 66 20
#> 67 47
#> 68 29
#> 69 20
#> 70 36
#> 71 35
#> 72 15
#> 73 30
#> 74 7
#> 75 62
#> 76 43
#> 77 34
#> 78 93
#> 79 87
#> 80 39
#> 81 89
#> 82 59
#> 83 32
#> 84 25
#> 85 20
#> 86 18
#> 87 26
#> 88 38
#> 89 63
#> 90 77
#> 91 91
#> 92 126
#> 93 149
#> 94 154
#> 95 111
#> 96 146
#> 97 200
#> 98 225
#> 99 263
#> 100 269
#> 101 307
#> 102 306
#> 103 290
#> 104 299
#> 105 250
#> 106 288
#> 107 245
#> 108 242
#> 109 285
#> 110 287
#> 111 315
#> 112 332
#> 113 371
#> 114 347
#> 115 347
#> 116 353
#> 117 292
#> 118 323
#> 119 279
#> 120 280
#> 121 320
#> 122 305
#> 123 346
#> 124 357
#> 125 403
#> 126 374
#> 127 378
#> 128 376
#> 129 311
#> 130 360
#> 131 297
#> 132 298
#> 133 326
#> 134 352
#> 135 381
#> 136 386
#> 137 426
#> 138 421
#> 139 371
#> 140 422
#> 141 344
#> 142 397
#> 143 346
#> 144 309
#> 145 210
#> 146 203
#> 147 247
#> 148 273
#> 149 238
#> 150 246
#> 151 242
#> 152 243
#> 153 234
#> 154 250
#> 155 258
#> 156 266
#> 157 291
#> 158 261
#> 159 262
#> 160 257
#> 161 253
#> 162 254
#> 163 260
#> 164 253
#> 165 247
#> 166 286
#> 167 287
#> 168 304
#> 169 356
#> 170 270
#> 171 294
#> 172 293
#> 173 286
#> 174 267
#> 175 283
#> 176 292
#> 177 283
#> 178 306
#> 179 301
#> 180 352
#> 181 378
#> 182 295
#> 183 300
#> 184 343
#> 185 306
#> 186 299
#> 187 305
#> 188 310
#> 189 296
#> 190 338
#> 191 326
#> 192 343
#> 193 413
#> 194 329
#> 195 315
#> 196 334
#> 197 320
#> 198 327
#> 199 330
#> 200 336
#> 201 329
#> 202 356
#> 203 345
#> 204 365
#> 205 474
#> 206 333
#> 207 341
#> 208 361
#> 209 341
#> 210 349
#> 211 362
#> 212 336
#> 213 338
#> 214 375
#> 215 385
#> 216 395
#> 217 68
#> 218 20
#> 219 5
#> 220 4
#> 221 3
#> 222 1
#> 223 2
#> 224 2
#> 225 1
#> 226 1
#> 227 1
#> 228 2
#> 229 66
#> 230 19
#> 231 5
#> 232 4
#> 233 2
#> 234 2
#> 235 2
#> 236 6
#> 237 2
#> 238 5
#> 239 4
#> 240 3
#> 241 60
#> 242 28
#> 243 6
#> 244 3
#> 245 5
#> 246 4
#> 247 6
#> 248 3
#> 249 1
#> 250 2
#> 251 3
#> 252 2
#> 253 69
#> 254 26
#> 255 7
#> 256 4
#> 257 4
#> 258 7
#> 259 4
#> 260 3
#> 261 3
#> 262 2
#> 263 3
#> 264 1
#> 265 78
#> 266 24
#> 267 4
#> 268 4
#> 269 3
#> 270 4
#> 271 4
#> 272 4
#> 273 3
#> 274 1
#> 275 2
#> 276 2
#> 277 79
#> 278 19
#> 279 11
#> 280 4
#> 281 3
#> 282 4
#> 283 3
#> 284 4
#> 285 3
#> 286 3
#> 287 3
#> 288 3
#> 289 611
#> 290 NA
#> 291 NA
#> 292 626
#> 293 NA
#> 294 NA
#> 295 586
#> 296 NA
#> 297 NA
#> 298 520
#> 299 NA
#> 300 NA
#> 301 484
#> 302 NA
#> 303 NA
#> 304 297
#> 305 NA
#> 306 NA
#> 307 351
#> 308 NA
#> 309 NA
#> 310 336
#> 311 NA
#> 312 NA
#> 313 263
#> 314 NA
#> 315 NA
#> 316 339
#> 317 NA
#> 318 NA
#> 319 365
#> 320 NA
#> 321 NA
#> 322 366
#> 323 NA
#> 324 NA
#> 325 238
#> 326 NA
#> 327 NA
#> 328 315
#> 329 NA
#> 330 NA
#> 331 299
#> 332 NA
#> 333 NA
#> 334 577
#> 335 NA
#> 336 NA
#> 337 274
#> 338 NA
#> 339 NA
#> 340 359
#> 341 NA
#> 342 NA
#> 343 317
#> 344 NA
#> 345 NA
#> 346 369
#> 347 NA
#> 348 NA
#> 349 296
#> 350 NA
#> 351 NA
#> 352 344
#> 353 NA
#> 354 NA
#> 355 413
#> 356 NA
#> 357 NA
#> 358 373
#> 359 NA
#> 360 NA
#> 361 NA
#> 362 NA
#> 363 NA
#> 364 NA
#> 365 NA
#> 366 NA
#> 367 NA
#> 368 NA
#> 369 NA
#> 370 NA
#> 371 NA
#> 372 NA
#> 373 NA
#> 374 NA
#> 375 NA
#> 376 NA
#> 377 NA
#> 378 NA
#> 379 NA
#> 380 NA
#> 381 NA
#> 382 NA
#> 383 NA
#> 384 NA
#> 385 NA
#> 386 NA
#> 387 NA
#> 388 NA
#> 389 NA
#> 390 NA
#> 391 NA
#> 392 NA
#> 393 NA
#> 394 NA
#> 395 NA
#> 396 NA
#> 397 NA
#> 398 NA
#> 399 NA
#> 400 NA
#> 401 NA
#> 402 NA
#> 403 NA
#> 404 NA
#> 405 NA
#> 406 NA
#> 407 NA
#> 408 NA
#> 409 NA
#> 410 NA
#> 411 NA
#> 412 NA
#> 413 NA
#> 414 NA
#> 415 NA
#> 416 NA
#> 417 NA
#> 418 NA
#> 419 NA
#> 420 NA
#> 421 NA
#> 422 NA
#> 423 NA
#> 424 NA
#> 425 NA
#> 426 NA
#> 427 NA
#> 428 NA
#> 429 NA
#> 430 NA
#> 431 NA
#> 432 NA
#> 433 301
#> 434 NA
#> 435 308
#> 436 NA
#> 437 NA
#> 438 205
#> 439 NA
#> 440 NA
#> 441 266
#> 442 NA
#> 443 NA
#> 444 329
#> 445 NA
#> 446 NA
#> 447 536
#> 448 NA
#> 449 NA
#> 450 610
#> 451 NA
#> 452 NA
#> 453 664
#> 454 NA
#> 455 NA
#> 456 526
#> 457 NA
#> 458 NA
#> 459 630
#> 460 NA
#> 461 NA
#> 462 719
#> 463 NA
#> 464 NA
#> 465 665
#> 466 NA
#> 467 NA
#> 468 566
#> 469 NA
#> 470 NA
#> 471 427
#> 472 NA
#> 473 NA
#> 474 442
#> 475 NA
#> 476 NA
#> 477 332
#> 478 NA
#> 479 NA
#> 480 245
#> 481 NA
#> 482 NA
#> 483 245
#> 484 NA
#> 485 NA
#> 486 271
#> 487 NA
#> 488 NA
#> 489 179
#> 490 NA
#> 491 NA
#> 492 278
#> 493 NA
#> 494 NA
#> 495 275
#> 496 NA
#> 497 NA
#> 498 258
#> 499 NA
#> 500 NA
#> 501 309
#> 502 NA
#> 503 NA
#> 504 328
#> 505 69
#> 506 117
#> 507 535
#> 508 309
#> 509 372
#> 510 331
#> 511 315
#> 512 278
#> 513 250
#> 514 232
#> 515 149
#> 516 127
#> 517 256
#> 518 309
#> 519 343
#> 520 381
#> 521 343
#> 522 336
#> 523 345
#> 524 340
#> 525 357
#> 526 266
#> 527 227
#> 528 244
#> 529 316
#> 530 319
#> 531 350
#> 532 308
#> 533 325
#> 534 356
#> 535 288
#> 536 314
#> 537 305
#> 538 328
#> 539 200
#> 540 271
#> 541 319
#> 542 300
#> 543 310
#> 544 388
#> 545 404
#> 546 255
#> 547 264
#> 548 299
#> 549 343
#> 550 286
#> 551 215
#> 552 238
#> 553 286
#> 554 303
#> 555 359
#> 556 317
#> 557 322
#> 558 293
#> 559 268
#> 560 285
#> 561 313
#> 562 297
#> 563 308
#> 564 167
#> 565 289
#> 566 284
#> 567 346
#> 568 304
#> 569 322
#> 570 290
#> 571 256
#> 572 317
#> 573 299
#> 574 251
#> 575 306
#> 576 188
#> 577 7
#> 578 10
#> 579 21
#> 580 41
#> 581 44
#> 582 69
#> 583 72
#> 584 92
#> 585 114
#> 586 7576
#> 587 2363
#> 588 721
#> 589 174
#> 590 124
#> 591 160
#> 592 267
#> 593 122
#> 594 132
#> 595 200
#> 596 153
#> 597 119
#> 598 10669
#> 599 2091
#> 600 1052
#> 601 145
#> 602 178
#> 603 154
#> 604 153
#> 605 189
#> 606 185
#> 607 190
#> 608 231
#> 609 188
#> 610 12796
#> 611 1920
#> 612 600
#> 613 134
#> 614 177
#> 615 140
#> 616 157
#> 617 170
#> 618 165
#> 619 174
#> 620 172
#> 621 159
#> 622 10620
#> 623 1926
#> 624 500
#> 625 156
#> 626 161
#> 627 157
#> 628 183
#> 629 197
#> 630 192
#> 631 251
#> 632 222
#> 633 335
#> 634 10033
#> 635 1387
#> 636 412
#> 637 191
#> 638 232
#> 639 144
#> 640 165
#> 641 190
#> 642 207
#> 643 230
#> 644 224
#> 645 231
#> 646 17137
#> 647 2741
#> 648 496
#> 649 12
#> 650 24
#> 651 24
#> 652 26
#> 653 28
#> 654 24
#> 655 21
#> 656 25
#> 657 18
#> 658 16
#> 659 14
#> 660 15
#> 661 14
#> 662 24
#> 663 20
#> 664 20
#> 665 25
#> 666 25
#> 667 23
#> 668 16
#> 669 17
#> 670 20
#> 671 13
#> 672 18
#> 673 15
#> 674 25
#> 675 16
#> 676 21
#> 677 21
#> 678 17
#> 679 26
#> 680 34
#> 681 17
#> 682 18
#> 683 14
#> 684 13
#> 685 20
#> 686 20
#> 687 24
#> 688 18
#> 689 24
#> 690 15
#> 691 15
#> 692 22
#> 693 20
#> 694 20
#> 695 7
#> 696 17
#> 697 15
#> 698 22
#> 699 26
#> 700 27
#> 701 19
#> 702 22
#> 703 15
#> 704 13
#> 705 21
#> 706 18
#> 707 16
#> 708 8
#> 709 18
#> 710 22
#> 711 33
#> 712 27
#> 713 29
#> 714 25
#> 715 21
#> 716 31
#> 717 24
#> 718 18
#> 719 30
#> 720 17
#> 721 271
#> 722 214
#> 723 40
#> 724 201
#> 725 150
#> 726 35
#> 727 194
#> 728 172
#> 729 36
#> 730 266
#> 731 163
#> 732 36
#> 733 245
#> 734 254
#> 735 37
#> 736 208
#> 737 225
#> 738 20
#> 739 175
#> 740 219
#> 741 17
#> 742 236
#> 743 268
#> 744 25
#> 745 247
#> 746 288
#> 747 22
#> 748 218
#> 749 286
#> 750 23
#> 751 212
#> 752 253
#> 753 19
#> 754 226
#> 755 281
#> 756 22
#> 757 231
#> 758 290
#> 759 5
#> 760 248
#> 761 194
#> 762 22
#> 763 248
#> 764 117
#> 765 21
#> 766 238
#> 767 193
#> 768 19
#> 769 289
#> 770 240
#> 771 26
#> 772 227
#> 773 135
#> 774 24
#> 775 167
#> 776 159
#> 777 21
#> 778 299
#> 779 169
#> 780 35
#> 781 399
#> 782 176
#> 783 30
#> 784 233
#> 785 126
#> 786 25
#> 787 174
#> 788 140
#> 789 17
#> 790 250
#> 791 195
#> 792 26
#> 793 3332
#> 794 904
#> 795 4811
#> 796 3028
#> 797 1646
#> 798 7378
#> 799 3939
#> 800 2319
#> 801 8980
#> 802 4075
#> 803 2403
#> 804 7674
#> 805 2809
#> 806 1976
#> 807 8044
#> 808 3630
#> 809 2101
#> 810 9555
#> 811 4714
#> 812 2404
#> 813 11787
#> 814 5215
#> 815 2370
#> 816 9140
#> 817 3574
#> 818 2383
#> 819 8835
#> 820 5792
#> 821 2651
#> 822 10425
#> 823 7149
#> 824 2714
#> 825 10867
#> 826 8370
#> 827 3837
#> 828 11298
#> 829 3778
#> 830 2453
#> 831 11809
#> 832 4996
#> 833 1918
#> 834 13842
#> 835 5542
#> 836 2777
#> 837 14362
#> 838 8027
#> 839 3106
#> 840 13048
#> 841 4314
#> 842 3049
#> 843 12354
#> 844 5434
#> 845 3199
#> 846 14188
#> 847 6108
#> 848 2429
#> 849 16575
#> 850 6904
#> 851 2971
#> 852 13388
#> 853 4485
#> 854 2968
#> 855 13007
#> 856 5808
#> 857 3120
#> 858 14489
#> 859 5810
#> 860 2567
#> 861 18323
#> 862 6515
#> 863 2672
#> 864 15360
#> 865 208
#> 866 194
#> 867 193
#> 868 209
#> 869 248
#> 870 253
#> 871 288
#> 872 285
#> 873 274
#> 874 229
#> 875 252
#> 876 329
#> 877 382
#> 878 332
#> 879 325
#> 880 377
#> 881 375
#> 882 406
#> 883 437
#> 884 428
#> 885 458
#> 886 414
#> 887 429
#> 888 429
#> 889 506
#> 890 412
#> 891 416
#> 892 448
#> 893 433
#> 894 472
#> 895 525
#> 896 503
#> 897 428
#> 898 489
#> 899 380
#> 900 514
#> 901 426
#> 902 383
#> 903 431
#> 904 394
#> 905 420
#> 906 455
#> 907 410
#> 908 480
#> 909 378
#> 910 371
#> 911 353
#> 912 304
#> 913 435
#> 914 357
#> 915 433
#> 916 383
#> 917 395
#> 918 424
#> 919 434
#> 920 468
#> 921 436
#> 922 393
#> 923 370
#> 924 368
#> 925 409
#> 926 375
#> 927 382
#> 928 409
#> 929 433
#> 930 464
#> 931 453
#> 932 429
#> 933 406
#> 934 367
#> 935 381
#> 936 463
#> 937 NA
#> 938 NA
#> 939 NA
#> 940 NA
#> 941 NA
#> 942 NA
#> 943 NA
#> 944 NA
#> 945 NA
#> 946 NA
#> 947 NA
#> 948 NA
#> 949 NA
#> 950 NA
#> 951 NA
#> 952 NA
#> 953 NA
#> 954 NA
#> 955 NA
#> 956 NA
#> 957 NA
#> 958 NA
#> 959 NA
#> 960 380
#> 961 NA
#> 962 NA
#> 963 NA
#> 964 NA
#> 965 NA
#> 966 NA
#> 967 NA
#> 968 NA
#> 969 NA
#> 970 NA
#> 971 NA
#> 972 567
#> 973 NA
#> 974 NA
#> 975 NA
#> 976 NA
#> 977 NA
#> 978 NA
#> 979 NA
#> 980 NA
#> 981 NA
#> 982 NA
#> 983 NA
#> 984 678
#> 985 NA
#> 986 NA
#> 987 NA
#> 988 NA
#> 989 NA
#> 990 NA
#> 991 NA
#> 992 NA
#> 993 NA
#> 994 NA
#> 995 NA
#> 996 808
#> 997 NA
#> 998 NA
#> 999 NA
#> 1000 NA
#> 1001 NA
#> 1002 NA
#> 1003 NA
#> 1004 NA
#> 1005 NA
#> 1006 NA
#> 1007 NA
#> 1008 944
#> 1009 NA
#> 1010 NA
#> 1011 NA
#> 1012 NA
#> 1013 NA
#> 1014 NA
#> 1015 NA
#> 1016 NA
#> 1017 NA
#> 1018 NA
#> 1019 NA
#> 1020 140
#> 1021 NA
#> 1022 NA
#> 1023 NA
#> 1024 NA
#> 1025 NA
#> 1026 NA
#> 1027 NA
#> 1028 NA
#> 1029 NA
#> 1030 NA
#> 1031 NA
#> 1032 220
#> 1033 NA
#> 1034 NA
#> 1035 NA
#> 1036 NA
#> 1037 NA
#> 1038 NA
#> 1039 NA
#> 1040 NA
#> 1041 NA
#> 1042 NA
#> 1043 NA
#> 1044 42
#> 1045 NA
#> 1046 NA
#> 1047 NA
#> 1048 NA
#> 1049 NA
#> 1050 NA
#> 1051 NA
#> 1052 NA
#> 1053 NA
#> 1054 NA
#> 1055 NA
#> 1056 108
#> 1057 NA
#> 1058 NA
#> 1059 NA
#> 1060 NA
#> 1061 NA
#> 1062 NA
#> 1063 NA
#> 1064 NA
#> 1065 NA
#> 1066 NA
#> 1067 NA
#> 1068 105
#> 1069 NA
#> 1070 NA
#> 1071 NA
#> 1072 NA
#> 1073 NA
#> 1074 NA
#> 1075 NA
#> 1076 NA
#> 1077 NA
#> 1078 NA
#> 1079 NA
#> 1080 604
#> 1081 NA
#> 1082 NA
#> 1083 NA
#> 1084 NA
#> 1085 NA
#> 1086 NA
#> 1087 NA
#> 1088 NA
#> 1089 NA
#> 1090 NA
#> 1091 NA
#> 1092 NA
#> 1093 NA
#> 1094 NA
#> 1095 NA
#> 1096 NA
#> 1097 NA
#> 1098 NA
#> 1099 NA
#> 1100 NA
#> 1101 NA
#> 1102 NA
#> 1103 NA
#> 1104 NA
#> 1105 NA
#> 1106 NA
#> 1107 NA
#> 1108 NA
#> 1109 NA
#> 1110 NA
#> 1111 NA
#> 1112 NA
#> 1113 NA
#> 1114 NA
#> 1115 NA
#> 1116 NA
#> 1117 NA
#> 1118 NA
#> 1119 NA
#> 1120 NA
#> 1121 NA
#> 1122 11
#> 1123 2
#> 1124 NA
#> 1125 NA
#> 1126 NA
#> 1127 NA
#> 1128 NA
#> 1129 NA
#> 1130 NA
#> 1131 NA
#> 1132 NA
#> 1133 NA
#> 1134 14
#> 1135 3
#> 1136 NA
#> 1137 NA
#> 1138 NA
#> 1139 NA
#> 1140 NA
#> 1141 NA
#> 1142 NA
#> 1143 NA
#> 1144 NA
#> 1145 NA
#> 1146 17
#> 1147 3
#> 1148 NA
#> 1149 NA
#> 1150 NA
#> 1151 NA
#> 1152 NA
#> 1153 NA
#> 1154 NA
#> 1155 NA
#> 1156 NA
#> 1157 NA
#> 1158 NA
#> 1159 NA
#> 1160 NA
#> 1161 NA
#> 1162 NA
#> 1163 NA
#> 1164 NA
#> 1165 NA
#> 1166 NA
#> 1167 NA
#> 1168 NA
#> 1169 NA
#> 1170 NA
#> 1171 NA
#> 1172 NA
#> 1173 NA
#> 1174 NA
#> 1175 NA
#> 1176 NA
#> 1177 NA
#> 1178 NA
#> 1179 NA
#> 1180 NA
#> 1181 NA
#> 1182 NA
#> 1183 NA
#> 1184 NA
#> 1185 NA
#> 1186 NA
#> 1187 NA
#> 1188 NA
#> 1189 NA
#> 1190 NA
#> 1191 NA
#> 1192 NA
#> 1193 NA
#> 1194 807
#> 1195 NA
#> 1196 NA
#> 1197 330
#> 1198 NA
#> 1199 NA
#> 1200 336
#> 1201 NA
#> 1202 NA
#> 1203 275
#> 1204 NA
#> 1205 NA
#> 1206 299
#> 1207 NA
#> 1208 NA
#> 1209 130
#> 1210 NA
#> 1211 NA
#> 1212 45
#> 1213 NA
#> 1214 NA
#> 1215 NA
#> 1216 NA
#> 1217 NA
#> 1218 NA
#> 1219 NA
#> 1220 NA
#> 1221 NA
#> 1222 NA
#> 1223 NA
#> 1224 35
#> 1225 NA
#> 1226 NA
#> 1227 NA
#> 1228 NA
#> 1229 NA
#> 1230 NA
#> 1231 NA
#> 1232 NA
#> 1233 NA
#> 1234 NA
#> 1235 NA
#> 1236 NA
#> 1237 NA
#> 1238 NA
#> 1239 NA
#> 1240 NA
#> 1241 NA
#> 1242 NA
#> 1243 NA
#> 1244 NA
#> 1245 NA
#> 1246 NA
#> 1247 NA
#> 1248 NA
#> 1249 NA
#> 1250 NA
#> 1251 NA
#> 1252 NA
#> 1253 NA
#> 1254 NA
#> 1255 NA
#> 1256 NA
#> 1257 1660
#> 1258 972
#> 1259 NA
#> 1260 NA
#> 1261 NA
#> 1262 NA
#> 1263 NA
#> 1264 1071
#> 1265 NA
#> 1266 692
#> 1267 967
#> 1268 NA
#> 1269 NA
#> 1270 857
#> 1271 NA
#> 1272 NA
#> 1273 NA
#> 1274 NA
#> 1275 NA
#> 1276 791
#> 1277 NA
#> 1278 NA
#> 1279 1114
#> 1280 NA
#> 1281 NA
#> 1282 952
#> 1283 NA
#> 1284 NA
#> 1285 NA
#> 1286 NA
#> 1287 NA
#> 1288 895
#> 1289 NA
#> 1290 NA
#> 1291 888
#> 1292 NA
#> 1293 NA
#> 1294 691
#> 1295 NA
#> 1296 NA
#> 1297 1389
#> 1298 1002
#> 1299 1637
#> 1300 1861
#> 1301 2149
#> 1302 2148
#> 1303 2187
#> 1304 2135
#> 1305 1936
#> 1306 1714
#> 1307 1599
#> 1308 1418
#> 1309 2013
#> 1310 2313
#> 1311 2252
#> 1312 2269
#> 1313 2288
#> 1314 2252
#> 1315 2269
#> 1316 2233
#> 1317 2285
#> 1318 1841
#> 1319 2041
#> 1320 1916
#> 1321 2095
#> 1322 2278
#> 1323 2170
#> 1324 2063
#> 1325 2127
#> 1326 2011
#> 1327 2131
#> 1328 2118
#> 1329 2068
#> 1330 1965
#> 1331 2177
#> 1332 1902
#> 1333 2086
#> 1334 2058
#> 1335 2136
#> 1336 1681
#> 1337 2555
#> 1338 1962
#> 1339 2122
#> 1340 2234
#> 1341 2102
#> 1342 1841
#> 1343 2115
#> 1344 2030
#> 1345 1903
#> 1346 2044
#> 1347 2067
#> 1348 2116
#> 1349 2054
#> 1350 2059
#> 1351 1983
#> 1352 2253
#> 1353 1904
#> 1354 1780
#> 1355 2155
#> 1356 2041
#> 1357 2006
#> 1358 2095
#> 1359 1902
#> 1360 2029
#> 1361 2005
#> 1362 2180
#> 1363 1992
#> 1364 2228
#> 1365 2072
#> 1366 1960
#> 1367 2017
#> 1368 1763
#> 1369 225
#> 1370 258
#> 1371 150
#> 1372 414
#> 1373 149
#> 1374 148
#> 1375 298
#> 1376 350
#> 1377 125
#> 1378 435
#> 1379 162
#> 1380 123
#> 1381 415
#> 1382 146
#> 1383 148
#> 1384 421
#> 1385 225
#> 1386 100
#> 1387 349
#> 1388 354
#> 1389 108
#> 1390 509
#> 1391 156
#> 1392 143
#> 1393 504
#> 1394 194
#> 1395 112
#> 1396 326
#> 1397 390
#> 1398 93
#> 1399 341
#> 1400 377
#> 1401 109
#> 1402 566
#> 1403 145
#> 1404 146
#> 1405 554
#> 1406 174
#> 1407 139
#> 1408 539
#> 1409 145
#> 1410 126
#> 1411 572
#> 1412 160
#> 1413 127
#> 1414 586
#> 1415 136
#> 1416 132
#> 1417 624
#> 1418 136
#> 1419 124
#> 1420 629
#> 1421 119
#> 1422 147
#> 1423 622
#> 1424 146
#> 1425 151
#> 1426 640
#> 1427 149
#> 1428 128
#> 1429 644
#> 1430 178
#> 1431 160
#> 1432 642
#> 1433 162
#> 1434 140
#> 1435 612
#> 1436 189
#> 1437 133
#> 1438 643
#> 1439 177
#> 1440 151
#> 1441 14474
#> 1442 11001
#> 1443 12556
#> 1444 18107
#> 1445 14675
#> 1446 13339
#> 1447 13272
#> 1448 14140
#> 1449 15381
#> 1450 30780
#> 1451 19273
#> 1452 16743
#> 1453 18628
#> 1454 15258
#> 1455 15063
#> 1456 22699
#> 1457 16206
#> 1458 15044
#> 1459 14500
#> 1460 15278
#> 1461 16578
#> 1462 32371
#> 1463 19889
#> 1464 19097
#> 1465 22905
#> 1466 16414
#> 1467 16149
#> 1468 25381
#> 1469 18371
#> 1470 15915
#> 1471 16436
#> 1472 16846
#> 1473 18765
#> 1474 39802
#> 1475 21015
#> 1476 20360
#> 1477 24802
#> 1478 19528
#> 1479 18117
#> 1480 29823
#> 1481 19952
#> 1482 17699
#> 1483 18798
#> 1484 19178
#> 1485 19774
#> 1486 42276
#> 1487 23468
#> 1488 21842
#> 1489 27554
#> 1490 20207
#> 1491 20220
#> 1492 33465
#> 1493 20942
#> 1494 19386
#> 1495 19882
#> 1496 20515
#> 1497 22537
#> 1498 49304
#> 1499 25224
#> 1500 23560
#> 1501 29900
#> 1502 21288
#> 1503 21134
#> 1504 37873
#> 1505 21859
#> 1506 22134
#> 1507 21694
#> 1508 21785
#> 1509 25332
#> 1510 53126
#> 1511 28310
#> 1512 25611
#> 1513 307
#> 1514 319
#> 1515 508
#> 1516 432
#> 1517 402
#> 1518 465
#> 1519 570
#> 1520 493
#> 1521 462
#> 1522 378
#> 1523 442
#> 1524 549
#> 1525 497
#> 1526 469
#> 1527 539
#> 1528 571
#> 1529 576
#> 1530 488
#> 1531 466
#> 1532 500
#> 1533 474
#> 1534 443
#> 1535 448
#> 1536 585
#> 1537 507
#> 1538 564
#> 1539 726
#> 1540 570
#> 1541 576
#> 1542 557
#> 1543 580
#> 1544 673
#> 1545 545
#> 1546 578
#> 1547 531
#> 1548 679
#> 1549 597
#> 1550 609
#> 1551 795
#> 1552 603
#> 1553 644
#> 1554 623
#> 1555 691
#> 1556 594
#> 1557 547
#> 1558 556
#> 1559 564
#> 1560 676
#> 1561 683
#> 1562 701
#> 1563 701
#> 1564 749
#> 1565 697
#> 1566 736
#> 1567 776
#> 1568 665
#> 1569 620
#> 1570 639
#> 1571 612
#> 1572 671
#> 1573 780
#> 1574 701
#> 1575 738
#> 1576 844
#> 1577 658
#> 1578 671
#> 1579 811
#> 1580 588
#> 1581 769
#> 1582 537
#> 1583 614
#> 1584 755
#> 1585 249
#> 1586 1218
#> 1587 135
#> 1588 369
#> 1589 1157
#> 1590 45
#> 1591 360
#> 1592 1212
#> 1593 19
#> 1594 218
#> 1595 1311
#> 1596 16
#> 1597 335
#> 1598 1251
#> 1599 16
#> 1600 453
#> 1601 1216
#> 1602 31
#> 1603 208
#> 1604 1463
#> 1605 66
#> 1606 313
#> 1607 1257
#> 1608 18
#> 1609 335
#> 1610 1386
#> 1611 46
#> 1612 413
#> 1613 1346
#> 1614 98
#> 1615 316
#> 1616 1508
#> 1617 24
#> 1618 474
#> 1619 1327
#> 1620 69
#> 1621 548
#> 1622 1270
#> 1623 62
#> 1624 884
#> 1625 1159
#> 1626 71
#> 1627 770
#> 1628 1263
#> 1629 76
#> 1630 439
#> 1631 1526
#> 1632 77
#> 1633 615
#> 1634 1431
#> 1635 69
#> 1636 957
#> 1637 1352
#> 1638 73
#> 1639 956
#> 1640 1201
#> 1641 53
#> 1642 853
#> 1643 1259
#> 1644 61
#> 1645 648
#> 1646 1481
#> 1647 41
#> 1648 1025
#> 1649 1301
#> 1650 40
#> 1651 985
#> 1652 1258
#> 1653 43
#> 1654 872
#> 1655 1255
#> 1656 88
#> 1657 38
#> 1658 53
#> 1659 9
#> 1660 60
#> 1661 64
#> 1662 17
#> 1663 66
#> 1664 85
#> 1665 23
#> 1666 67
#> 1667 70
#> 1668 15
#> 1669 48
#> 1670 69
#> 1671 17
#> 1672 47
#> 1673 90
#> 1674 19
#> 1675 19
#> 1676 125
#> 1677 19
#> 1678 53
#> 1679 86
#> 1680 75
#> 1681 36
#> 1682 103
#> 1683 11
#> 1684 74
#> 1685 57
#> 1686 38
#> 1687 78
#> 1688 73
#> 1689 15
#> 1690 68
#> 1691 52
#> 1692 22
#> 1693 70
#> 1694 31
#> 1695 17
#> 1696 77
#> 1697 34
#> 1698 21
#> 1699 86
#> 1700 39
#> 1701 12
#> 1702 46
#> 1703 37
#> 1704 19
#> 1705 49
#> 1706 27
#> 1707 22
#> 1708 75
#> 1709 56
#> 1710 13
#> 1711 87
#> 1712 44
#> 1713 15
#> 1714 50
#> 1715 35
#> 1716 15
#> 1717 65
#> 1718 26
#> 1719 16
#> 1720 73
#> 1721 68
#> 1722 22
#> 1723 91
#> 1724 58
#> 1725 14
#> 1726 142
#> 1727 23
#> 1728 25
#> 1729 NA
#> 1730 NA
#> 1731 NA
#> 1732 NA
#> 1733 NA
#> 1734 NA
#> 1735 NA
#> 1736 NA
#> 1737 NA
#> 1738 NA
#> 1739 NA
#> 1740 NA
#> 1741 NA
#> 1742 NA
#> 1743 NA
#> 1744 NA
#> 1745 NA
#> 1746 NA
#> 1747 NA
#> 1748 NA
#> 1749 NA
#> 1750 NA
#> 1751 NA
#> 1752 NA
#> 1753 NA
#> 1754 NA
#> 1755 NA
#> 1756 NA
#> 1757 NA
#> 1758 NA
#> 1759 NA
#> 1760 NA
#> 1761 NA
#> 1762 NA
#> 1763 NA
#> 1764 NA
#> 1765 NA
#> 1766 NA
#> 1767 NA
#> 1768 NA
#> 1769 NA
#> 1770 NA
#> 1771 NA
#> 1772 NA
#> 1773 NA
#> 1774 NA
#> 1775 NA
#> 1776 NA
#> 1777 NA
#> 1778 NA
#> 1779 NA
#> 1780 NA
#> 1781 NA
#> 1782 NA
#> 1783 NA
#> 1784 NA
#> 1785 NA
#> 1786 NA
#> 1787 NA
#> 1788 NA
#> 1789 NA
#> 1790 NA
#> 1791 NA
#> 1792 NA
#> 1793 NA
#> 1794 NA
#> 1795 NA
#> 1796 NA
#> 1797 NA
#> 1798 NA
#> 1799 NA
#> 1800 NA
#> 1801 4139
#> 1802 4007
#> 1803 4634
#> 1804 4927
#> 1805 4597
#> 1806 4753
#> 1807 4660
#> 1808 4731
#> 1809 4865
#> 1810 4722
#> 1811 4754
#> 1812 4801
#> 1813 4867
#> 1814 4760
#> 1815 4976
#> 1816 4948
#> 1817 4886
#> 1818 5022
#> 1819 4980
#> 1820 5108
#> 1821 5078
#> 1822 5112
#> 1823 5257
#> 1824 5215
#> 1825 5478
#> 1826 5884
#> 1827 5908
#> 1828 5952
#> 1829 5444
#> 1830 5294
#> 1831 5495
#> 1832 5558
#> 1833 4956
#> 1834 5043
#> 1835 5011
#> 1836 5025
#> 1837 5425
#> 1838 5188
#> 1839 5130
#> 1840 5407
#> 1841 5312
#> 1842 5146
#> 1843 5281
#> 1844 5301
#> 1845 5263
#> 1846 5672
#> 1847 4544
#> 1848 4568
#> 1849 5091
#> 1850 3779
#> 1851 3783
#> 1852 3976
#> 1853 3778
#> 1854 3758
#> 1855 3915
#> 1856 3912
#> 1857 3975
#> 1858 4148
#> 1859 3955
#> 1860 3988
#> 1861 4482
#> 1862 3899
#> 1863 3915
#> 1864 4196
#> 1865 3983
#> 1866 4150
#> 1867 4088
#> 1868 4000
#> 1869 4124
#> 1870 4226
#> 1871 4153
#> 1872 4186
#> 1873 6702
#> 1874 5193
#> 1875 6378
#> 1876 7982
#> 1877 6451
#> 1878 6589
#> 1879 6547
#> 1880 6599
#> 1881 6815
#> 1882 6973
#> 1883 7129
#> 1884 7440
#> 1885 8150
#> 1886 6456
#> 1887 7083
#> 1888 8000
#> 1889 6990
#> 1890 7102
#> 1891 7076
#> 1892 7231
#> 1893 7202
#> 1894 7724
#> 1895 8128
#> 1896 8371
#> 1897 9750
#> 1898 7713
#> 1899 8149
#> 1900 9170
#> 1901 8646
#> 1902 8245
#> 1903 8604
#> 1904 8706
#> 1905 8134
#> 1906 8645
#> 1907 8702
#> 1908 9138
#> 1909 10827
#> 1910 8414
#> 1911 8301
#> 1912 9850
#> 1913 8685
#> 1914 8371
#> 1915 8635
#> 1916 8604
#> 1917 8429
#> 1918 9608
#> 1919 9159
#> 1920 9619
#> 1921 11756
#> 1922 8738
#> 1923 8848
#> 1924 10404
#> 1925 8980
#> 1926 8895
#> 1927 9170
#> 1928 9200
#> 1929 9493
#> 1930 10182
#> 1931 9880
#> 1932 10522
#> 1933 12665
#> 1934 10664
#> 1935 10954
#> 1936 12852
#> 1937 11400
#> 1938 11853
#> 1939 11638
#> 1940 11638
#> 1941 11940
#> 1942 12599
#> 1943 12597
#> 1944 13104
#> 1945 -84
#> 1946 -24
#> 1947 12
#> 1948 529
#> 1949 207
#> 1950 41
#> 1951 41
#> 1952 78
#> 1953 272
#> 1954 2390
#> 1955 330
#> 1956 86
#> 1957 31
#> 1958 33
#> 1959 81
#> 1960 900
#> 1961 234
#> 1962 74
#> 1963 39
#> 1964 64
#> 1965 253
#> 1966 2108
#> 1967 390
#> 1968 177
#> 1969 31
#> 1970 16
#> 1971 76
#> 1972 865
#> 1973 215
#> 1974 61
#> 1975 44
#> 1976 64
#> 1977 220
#> 1978 2351
#> 1979 329
#> 1980 79
#> 1981 -20
#> 1982 -3
#> 1983 72
#> 1984 1143
#> 1985 147
#> 1986 14
#> 1987 29
#> 1988 54
#> 1989 169
#> 1990 2407
#> 1991 410
#> 1992 81
#> 1993 -27
#> 1994 -4
#> 1995 50
#> 1996 909
#> 1997 107
#> 1998 32
#> 1999 31
#> 2000 42
#> 2001 174
#> 2002 2168
#> 2003 272
#> 2004 50
#> 2005 -24
#> 2006 3
#> 2007 38
#> 2008 679
#> 2009 57
#> 2010 22
#> 2011 20
#> 2012 26
#> 2013 134
#> 2014 1331
#> 2015 203
#> 2016 25
#> 2017 11049
#> 2018 9425
#> 2019 11288
#> 2020 13703
#> 2021 11513
#> 2022 11635
#> 2023 11524
#> 2024 11675
#> 2025 12214
#> 2026 14347
#> 2027 12471
#> 2028 12616
#> 2029 13382
#> 2030 11566
#> 2031 12537
#> 2032 14050
#> 2033 12418
#> 2034 12591
#> 2035 12438
#> 2036 12772
#> 2037 12836
#> 2038 15275
#> 2039 14110
#> 2040 14068
#> 2041 15651
#> 2042 13976
#> 2043 14509
#> 2044 16356
#> 2045 14653
#> 2046 13969
#> 2047 14524
#> 2048 14643
#> 2049 13622
#> 2050 16487
#> 2051 14370
#> 2052 14685
#> 2053 16564
#> 2054 13948
#> 2055 13852
#> 2056 16708
#> 2057 14422
#> 2058 13808
#> 2059 14396
#> 2060 14315
#> 2061 14167
#> 2062 18022
#> 2063 14412
#> 2064 14575
#> 2065 17178
#> 2066 12856
#> 2067 12988
#> 2068 15607
#> 2069 13189
#> 2070 13031
#> 2071 13542
#> 2072 13496
#> 2073 14011
#> 2074 16920
#> 2075 14563
#> 2076 15137
#> 2077 17560
#> 2078 14930
#> 2079 15299
#> 2080 18097
#> 2081 15795
#> 2082 16387
#> 2083 16169
#> 2084 16066
#> 2085 16758
#> 2086 18549
#> 2087 17302
#> 2088 17687
#> 2089 30
#> 2090 21
#> 2091 48
#> 2092 31
#> 2093 31
#> 2094 34
#> 2095 35
#> 2096 41
#> 2097 36
#> 2098 38
#> 2099 54
#> 2100 48
#> 2101 39
#> 2102 25
#> 2103 43
#> 2104 34
#> 2105 59
#> 2106 46
#> 2107 69
#> 2108 53
#> 2109 51
#> 2110 45
#> 2111 52
#> 2112 70
#> 2113 55
#> 2114 60
#> 2115 51
#> 2116 48
#> 2117 84
#> 2118 58
#> 2119 54
#> 2120 63
#> 2121 57
#> 2122 70
#> 2123 89
#> 2124 73
#> 2125 99
#> 2126 72
#> 2127 111
#> 2128 92
#> 2129 146
#> 2130 88
#> 2131 96
#> 2132 66
#> 2133 74
#> 2134 100
#> 2135 123
#> 2136 102
#> 2137 79
#> 2138 60
#> 2139 63
#> 2140 71
#> 2141 86
#> 2142 51
#> 2143 56
#> 2144 60
#> 2145 52
#> 2146 74
#> 2147 76
#> 2148 99
#> 2149 82
#> 2150 70
#> 2151 83
#> 2152 65
#> 2153 85
#> 2154 67
#> 2155 76
#> 2156 60
#> 2157 72
#> 2158 81
#> 2159 92
#> 2160 163
#> 2161 0
#> 2162 -3
#> 2163 -1
#> 2164 -60
#> 2165 -72
#> 2166 -8
#> 2167 0
#> 2168 -63
#> 2169 0
#> 2170 -1
#> 2171 -30
#> 2172 -3
#> 2173 -66
#> 2174 -46
#> 2175 -18
#> 2176 -13
#> 2177 -53
#> 2178 -27
#> 2179 -103
#> 2180 0
#> 2181 0
#> 2182 -53
#> 2183 -96
#> 2184 -77
#> 2185 -29
#> 2186 -8
#> 2187 -4
#> 2188 -18
#> 2189 -104
#> 2190 -2
#> 2191 0
#> 2192 0
#> 2193 0
#> 2194 -26
#> 2195 -41
#> 2196 -2
#> 2197 -20
#> 2198 0
#> 2199 0
#> 2200 0
#> 2201 -118
#> 2202 -119
#> 2203 -3
#> 2204 -3
#> 2205 0
#> 2206 -153
#> 2207 -11
#> 2208 0
#> 2209 0
#> 2210 0
#> 2211 0
#> 2212 -132
#> 2213 -44
#> 2214 0
#> 2215 0
#> 2216 0
#> 2217 0
#> 2218 -62
#> 2219 -112
#> 2220 0
#> 2221 0
#> 2222 0
#> 2223 0
#> 2224 -282
#> 2225 0
#> 2226 0
#> 2227 0
#> 2228 0
#> 2229 0
#> 2230 0
#> 2231 0
#> 2232 -177
#> 2233 NA
#> 2234 NA
#> 2235 NA
#> 2236 NA
#> 2237 NA
#> 2238 NA
#> 2239 NA
#> 2240 NA
#> 2241 NA
#> 2242 NA
#> 2243 NA
#> 2244 NA
#> 2245 NA
#> 2246 NA
#> 2247 NA
#> 2248 NA
#> 2249 NA
#> 2250 NA
#> 2251 NA
#> 2252 NA
#> 2253 NA
#> 2254 NA
#> 2255 NA
#> 2256 NA
#> 2257 NA
#> 2258 NA
#> 2259 NA
#> 2260 58
#> 2261 9
#> 2262 2
#> 2263 59
#> 2264 6
#> 2265 2
#> 2266 53
#> 2267 9
#> 2268 2
#> 2269 54
#> 2270 8
#> 2271 5
#> 2272 59
#> 2273 6
#> 2274 1
#> 2275 59
#> 2276 6
#> 2277 3
#> 2278 62
#> 2279 6
#> 2280 2
#> 2281 55
#> 2282 6
#> 2283 0
#> 2284 60
#> 2285 4
#> 2286 0
#> 2287 59
#> 2288 5
#> 2289 1
#> 2290 58
#> 2291 4
#> 2292 1
#> 2293 58
#> 2294 7
#> 2295 -1
#> 2296 63
#> 2297 6
#> 2298 1
#> 2299 60
#> 2300 3
#> 2301 4
#> 2302 56
#> 2303 3
#> 2304 2
#> 2305 NA
#> 2306 NA
#> 2307 NA
#> 2308 NA
#> 2309 NA
#> 2310 NA
#> 2311 NA
#> 2312 NA
#> 2313 NA
#> 2314 NA
#> 2315 NA
#> 2316 NA
#> 2317 NA
#> 2318 NA
#> 2319 NA
#> 2320 NA
#> 2321 NA
#> 2322 NA
#> 2323 NA
#> 2324 NA
#> 2325 NA
#> 2326 NA
#> 2327 NA
#> 2328 NA
#> 2329 NA
#> 2330 NA
#> 2331 51
#> 2332 NA
#> 2333 NA
#> 2334 41
#> 2335 NA
#> 2336 NA
#> 2337 33
#> 2338 NA
#> 2339 NA
#> 2340 33
#> 2341 NA
#> 2342 NA
#> 2343 NA
#> 2344 NA
#> 2345 NA
#> 2346 64
#> 2347 NA
#> 2348 NA
#> 2349 NA
#> 2350 NA
#> 2351 NA
#> 2352 39
#> 2353 NA
#> 2354 NA
#> 2355 NA
#> 2356 NA
#> 2357 NA
#> 2358 59
#> 2359 NA
#> 2360 NA
#> 2361 NA
#> 2362 NA
#> 2363 NA
#> 2364 43
#> 2365 NA
#> 2366 NA
#> 2367 NA
#> 2368 NA
#> 2369 NA
#> 2370 43
#> 2371 NA
#> 2372 NA
#> 2373 NA
#> 2374 NA
#> 2375 NA
#> 2376 41
#> 2377 548
#> 2378 361
#> 2379 573
#> 2380 656
#> 2381 530
#> 2382 693
#> 2383 751
#> 2384 825
#> 2385 1181
#> 2386 579
#> 2387 775
#> 2388 1196
#> 2389 991
#> 2390 652
#> 2391 1208
#> 2392 1309
#> 2393 910
#> 2394 1283
#> 2395 1323
#> 2396 1209
#> 2397 1737
#> 2398 944
#> 2399 1186
#> 2400 1346
#> 2401 1463
#> 2402 1229
#> 2403 1378
#> 2404 1497
#> 2405 1578
#> 2406 1457
#> 2407 1317
#> 2408 1337
#> 2409 1420
#> 2410 827
#> 2411 846
#> 2412 1010
#> 2413 918
#> 2414 867
#> 2415 955
#> 2416 1076
#> 2417 1125
#> 2418 1015
#> 2419 1119
#> 2420 973
#> 2421 1112
#> 2422 808
#> 2423 781
#> 2424 864
#> 2425 957
#> 2426 1018
#> 2427 1016
#> 2428 1185
#> 2429 1112
#> 2430 1103
#> 2431 1357
#> 2432 1310
#> 2433 1517
#> 2434 848
#> 2435 1051
#> 2436 1408
#> 2437 1306
#> 2438 930
#> 2439 1055
#> 2440 1422
#> 2441 1314
#> 2442 1454
#> 2443 1531
#> 2444 1371
#> 2445 1725
#> 2446 899
#> 2447 995
#> 2448 1157
#> 2449 30
#> 2450 0
#> 2451 45
#> 2452 66
#> 2453 1
#> 2454 0
#> 2455 82
#> 2456 1
#> 2457 0
#> 2458 72
#> 2459 1
#> 2460 0
#> 2461 66
#> 2462 1
#> 2463 0
#> 2464 86
#> 2465 0
#> 2466 0
#> 2467 91
#> 2468 0
#> 2469 0
#> 2470 88
#> 2471 1
#> 2472 0
#> 2473 80
#> 2474 0
#> 2475 0
#> 2476 92
#> 2477 1
#> 2478 0
#> 2479 94
#> 2480 1
#> 2481 0
#> 2482 85
#> 2483 0
#> 2484 1
#> 2485 83
#> 2486 -1
#> 2487 0
#> 2488 88
#> 2489 1
#> 2490 0
#> 2491 86
#> 2492 0
#> 2493 0
#> 2494 76
#> 2495 2
#> 2496 1
#> 2497 77
#> 2498 0
#> 2499 0
#> 2500 84
#> 2501 0
#> 2502 0
#> 2503 82
#> 2504 0
#> 2505 0
#> 2506 80
#> 2507 1
#> 2508 0
#> 2509 80
#> 2510 1
#> 2511 0
#> 2512 86
#> 2513 0
#> 2514 0
#> 2515 93
#> 2516 0
#> 2517 3
#> 2518 86
#> 2519 0
#> 2520 5
#> 2521 286
#> 2522 340
#> 2523 332
#> 2524 338
#> 2525 360
#> 2526 331
#> 2527 390
#> 2528 453
#> 2529 476
#> 2530 302
#> 2531 229
#> 2532 280
#> 2533 328
#> 2534 368
#> 2535 359
#> 2536 362
#> 2537 362
#> 2538 359
#> 2539 420
#> 2540 507
#> 2541 517
#> 2542 274
#> 2543 256
#> 2544 288
#> 2545 369
#> 2546 299
#> 2547 367
#> 2548 334
#> 2549 314
#> 2550 337
#> 2551 390
#> 2552 407
#> 2553 521
#> 2554 261
#> 2555 233
#> 2556 302
#> 2557 337
#> 2558 314
#> 2559 349
#> 2560 484
#> 2561 528
#> 2562 193
#> 2563 307
#> 2564 392
#> 2565 471
#> 2566 256
#> 2567 238
#> 2568 269
#> 2569 309
#> 2570 320
#> 2571 352
#> 2572 316
#> 2573 320
#> 2574 323
#> 2575 372
#> 2576 347
#> 2577 590
#> 2578 283
#> 2579 347
#> 2580 275
#> 2581 268
#> 2582 208
#> 2583 395
#> 2584 290
#> 2585 375
#> 2586 266
#> 2587 354
#> 2588 532
#> 2589 484
#> 2590 206
#> 2591 399
#> 2592 282
#> 2593 439
#> 2594 298
#> 2595 257
#> 2596 283
#> 2597 213
#> 2598 156
#> 2599 287
#> 2600 249
#> 2601 439
#> 2602 313
#> 2603 279
#> 2604 466
#> 2605 386
#> 2606 331
#> 2607 410
#> 2608 325
#> 2609 284
#> 2610 293
#> 2611 396
#> 2612 328
#> 2613 401
#> 2614 252
#> 2615 592
#> 2616 373
#> 2617 403
#> 2618 307
#> 2619 306
#> 2620 315
#> 2621 291
#> 2622 369
#> 2623 367
#> 2624 246
#> 2625 332
#> 2626 248
#> 2627 299
#> 2628 299
#> 2629 252
#> 2630 250
#> 2631 338
#> 2632 239
#> 2633 283
#> 2634 223
#> 2635 266
#> 2636 242
#> 2637 322
#> 2638 203
#> 2639 292
#> 2640 287
#> 2641 368
#> 2642 389
#> 2643 350
#> 2644 335
#> 2645 384
#> 2646 263
#> 2647 391
#> 2648 455
#> 2649 347
#> 2650 287
#> 2651 330
#> 2652 423
#> 2653 459
#> 2654 399
#> 2655 333
#> 2656 366
#> 2657 373
#> 2658 302
#> 2659 457
#> 2660 358
#> 2661 441
#> 2662 353
#> 2663 412
#> 2664 477
#> 2665 1538
#> 2666 230
#> 2667 541
#> 2668 870
#> 2669 888
#> 2670 1053
#> 2671 827
#> 2672 885
#> 2673 699
#> 2674 981
#> 2675 588
#> 2676 864
#> 2677 1362
#> 2678 450
#> 2679 612
#> 2680 1211
#> 2681 709
#> 2682 1171
#> 2683 758
#> 2684 915
#> 2685 738
#> 2686 876
#> 2687 695
#> 2688 780
#> 2689 1276
#> 2690 613
#> 2691 695
#> 2692 900
#> 2693 773
#> 2694 1221
#> 2695 677
#> 2696 713
#> 2697 988
#> 2698 748
#> 2699 581
#> 2700 818
#> 2701 648
#> 2702 503
#> 2703 555
#> 2704 923
#> 2705 865
#> 2706 927
#> 2707 715
#> 2708 671
#> 2709 751
#> 2710 901
#> 2711 657
#> 2712 687
#> 2713 814
#> 2714 459
#> 2715 619
#> 2716 783
#> 2717 797
#> 2718 798
#> 2719 653
#> 2720 755
#> 2721 493
#> 2722 610
#> 2723 668
#> 2724 478
#> 2725 796
#> 2726 599
#> 2727 669
#> 2728 773
#> 2729 646
#> 2730 732
#> 2731 644
#> 2732 593
#> 2733 647
#> 2734 431
#> 2735 461
#> 2736 577
#> 2737 35181
#> 2738 26023
#> 2739 35809
#> 2740 52888
#> 2741 45364
#> 2742 46895
#> 2743 50272
#> 2744 48655
#> 2745 52309
#> 2746 79201
#> 2747 54381
#> 2748 57236
#> 2749 58273
#> 2750 48447
#> 2751 52038
#> 2752 66855
#> 2753 53948
#> 2754 53804
#> 2755 57370
#> 2756 55273
#> 2757 59349
#> 2758 89721
#> 2759 61645
#> 2760 58996
#> 2761 69001
#> 2762 53230
#> 2763 56560
#> 2764 73911
#> 2765 58223
#> 2766 57944
#> 2767 63805
#> 2768 58458
#> 2769 62732
#> 2770 106375
#> 2771 63150
#> 2772 63616
#> 2773 71840
#> 2774 57961
#> 2775 60876
#> 2776 80563
#> 2777 61641
#> 2778 61845
#> 2779 67399
#> 2780 59566
#> 2781 65540
#> 2782 107792
#> 2783 66329
#> 2784 67232
#> 2785 75852
#> 2786 58335
#> 2787 63893
#> 2788 83691
#> 2789 60617
#> 2790 64008
#> 2791 69316
#> 2792 61366
#> 2793 70162
#> 2794 112022
#> 2795 68846
#> 2796 70541
#> 2797 80971
#> 2798 62931
#> 2799 67199
#> 2800 92902
#> 2801 63155
#> 2802 71284
#> 2803 75416
#> 2804 65047
#> 2805 79324
#> 2806 126486
#> 2807 75849
#> 2808 78266
#> 2809 -896
#> 2810 -583
#> 2811 1078
#> 2812 10576
#> 2813 10069
#> 2814 7797
#> 2815 13443
#> 2816 12219
#> 2817 8537
#> 2818 15368
#> 2819 11179
#> 2820 12862
#> 2821 14660
#> 2822 11838
#> 2823 8655
#> 2824 17113
#> 2825 14714
#> 2826 8326
#> 2827 17122
#> 2828 15083
#> 2829 9162
#> 2830 18567
#> 2831 14794
#> 2832 7513
#> 2833 17213
#> 2834 11309
#> 2835 8588
#> 2836 17243
#> 2837 12850
#> 2838 8628
#> 2839 16719
#> 2840 14375
#> 2841 8988
#> 2842 19662
#> 2843 14014
#> 2844 8459
#> 2845 17944
#> 2846 13712
#> 2847 9322
#> 2848 18553
#> 2849 15429
#> 2850 7514
#> 2851 18332
#> 2852 14479
#> 2853 8987
#> 2854 19719
#> 2855 15230
#> 2856 9169
#> 2857 17588
#> 2858 13472
#> 2859 10363
#> 2860 18540
#> 2861 14145
#> 2862 9146
#> 2863 18654
#> 2864 15406
#> 2865 8613
#> 2866 19317
#> 2867 16165
#> 2868 9586
#> 2869 18973
#> 2870 14923
#> 2871 9999
#> 2872 20202
#> 2873 13093
#> 2874 9924
#> 2875 20372
#> 2876 14989
#> 2877 9982
#> 2878 21841
#> 2879 16303
#> 2880 10119
#> 2881 320
#> 2882 380
#> 2883 394
#> 2884 381
#> 2885 459
#> 2886 390
#> 2887 386
#> 2888 450
#> 2889 495
#> 2890 338
#> 2891 303
#> 2892 363
#> 2893 411
#> 2894 400
#> 2895 420
#> 2896 392
#> 2897 392
#> 2898 388
#> 2899 406
#> 2900 464
#> 2901 520
#> 2902 309
#> 2903 336
#> 2904 295
#> 2905 422
#> 2906 336
#> 2907 398
#> 2908 371
#> 2909 366
#> 2910 358
#> 2911 357
#> 2912 385
#> 2913 544
#> 2914 311
#> 2915 287
#> 2916 255
#> 2917 388
#> 2918 357
#> 2919 341
#> 2920 424
#> 2921 623
#> 2922 253
#> 2923 360
#> 2924 399
#> 2925 462
#> 2926 362
#> 2927 313
#> 2928 328
#> 2929 381
#> 2930 393
#> 2931 378
#> 2932 384
#> 2933 381
#> 2934 366
#> 2935 406
#> 2936 387
#> 2937 585
#> 2938 315
#> 2939 426
#> 2940 321
#> 2941 347
#> 2942 299
#> 2943 405
#> 2944 351
#> 2945 392
#> 2946 350
#> 2947 444
#> 2948 469
#> 2949 531
#> 2950 290
#> 2951 393
#> 2952 358
hmrc_tax_receipts(tax = "vat", start = "2019-01", end = "2024-12")
#> ℹ Resolving download URL from GOV.UK Content API
#> ✔ Resolving download URL from GOV.UK Content API [22ms]
#>
#> ℹ Using cached file
#> ✔ Using cached file [6ms]
#>
#> ℹ Parsing data
#> New names:
#> • `` -> `...1`
#> • `` -> `...2`
#> • `` -> `...3`
#> • `` -> `...4`
#> • `` -> `...5`
#> • `` -> `...6`
#> • `` -> `...7`
#> • `` -> `...8`
#> • `` -> `...9`
#> • `` -> `...10`
#> • `` -> `...11`
#> • `` -> `...12`
#> • `` -> `...13`
#> • `` -> `...14`
#> • `` -> `...15`
#> • `` -> `...16`
#> • `` -> `...17`
#> • `` -> `...18`
#> • `` -> `...19`
#> • `` -> `...20`
#> • `` -> `...21`
#> • `` -> `...22`
#> • `` -> `...23`
#> • `` -> `...24`
#> • `` -> `...25`
#> • `` -> `...26`
#> • `` -> `...27`
#> • `` -> `...28`
#> • `` -> `...29`
#> • `` -> `...30`
#> • `` -> `...31`
#> • `` -> `...32`
#> • `` -> `...33`
#> • `` -> `...34`
#> • `` -> `...35`
#> • `` -> `...36`
#> • `` -> `...37`
#> • `` -> `...38`
#> • `` -> `...39`
#> • `` -> `...40`
#> • `` -> `...41`
#> • `` -> `...42`
#> • `` -> `...43`
#> • `` -> `...44`
#> • `` -> `...45`
#> • `` -> `...46`
#> • `` -> `...47`
#> ✔ Parsing data [382ms]
#>
#> # HMRC tax receipts and NICs (monthly bulletin)
#> # Source: https://www.gov.uk/government/statistics/hmrc-tax-and-nics-receipts-for-the-uk
#> # Fetched 2026-04-26 13:16:03 UTC | Vintage: latest | Cells: cash | Freq: monthly | 72 rows x 4 cols
#>
#> date tax_head description receipts_gbp_m
#> 1 2019-01-01 vat Value Added Tax 13701
#> 2 2019-02-01 vat Value Added Tax 13373
#> 3 2019-03-01 vat Value Added Tax 8297
#> 4 2019-04-01 vat Value Added Tax 13041
#> 5 2019-05-01 vat Value Added Tax 10994
#> 6 2019-06-01 vat Value Added Tax 8118
#> 7 2019-07-01 vat Value Added Tax 13640
#> 8 2019-08-01 vat Value Added Tax 12446
#> 9 2019-09-01 vat Value Added Tax 8254
#> 10 2019-10-01 vat Value Added Tax 13569
#> 11 2019-11-01 vat Value Added Tax 13031
#> 12 2019-12-01 vat Value Added Tax 7622
#> 13 2020-01-01 vat Value Added Tax 14476
#> 14 2020-02-01 vat Value Added Tax 12586
#> 15 2020-03-01 vat Value Added Tax 2107
#> 16 2020-04-01 vat Value Added Tax -896
#> 17 2020-05-01 vat Value Added Tax -583
#> 18 2020-06-01 vat Value Added Tax 1078
#> 19 2020-07-01 vat Value Added Tax 10576
#> 20 2020-08-01 vat Value Added Tax 10069
#> 21 2020-09-01 vat Value Added Tax 7797
#> 22 2020-10-01 vat Value Added Tax 13443
#> 23 2020-11-01 vat Value Added Tax 12219
#> 24 2020-12-01 vat Value Added Tax 8537
#> 25 2021-01-01 vat Value Added Tax 15368
#> 26 2021-02-01 vat Value Added Tax 11179
#> 27 2021-03-01 vat Value Added Tax 12862
#> 28 2021-04-01 vat Value Added Tax 14660
#> 29 2021-05-01 vat Value Added Tax 11838
#> 30 2021-06-01 vat Value Added Tax 8655
#> 31 2021-07-01 vat Value Added Tax 17113
#> 32 2021-08-01 vat Value Added Tax 14714
#> 33 2021-09-01 vat Value Added Tax 8326
#> 34 2021-10-01 vat Value Added Tax 17122
#> 35 2021-11-01 vat Value Added Tax 15083
#> 36 2021-12-01 vat Value Added Tax 9162
#> 37 2022-01-01 vat Value Added Tax 18567
#> 38 2022-02-01 vat Value Added Tax 14794
#> 39 2022-03-01 vat Value Added Tax 7513
#> 40 2022-04-01 vat Value Added Tax 17213
#> 41 2022-05-01 vat Value Added Tax 11309
#> 42 2022-06-01 vat Value Added Tax 8588
#> 43 2022-07-01 vat Value Added Tax 17243
#> 44 2022-08-01 vat Value Added Tax 12850
#> 45 2022-09-01 vat Value Added Tax 8628
#> 46 2022-10-01 vat Value Added Tax 16719
#> 47 2022-11-01 vat Value Added Tax 14375
#> 48 2022-12-01 vat Value Added Tax 8988
#> 49 2023-01-01 vat Value Added Tax 19662
#> 50 2023-02-01 vat Value Added Tax 14014
#> 51 2023-03-01 vat Value Added Tax 8459
#> 52 2023-04-01 vat Value Added Tax 17944
#> 53 2023-05-01 vat Value Added Tax 13712
#> 54 2023-06-01 vat Value Added Tax 9322
#> 55 2023-07-01 vat Value Added Tax 18553
#> 56 2023-08-01 vat Value Added Tax 15429
#> 57 2023-09-01 vat Value Added Tax 7514
#> 58 2023-10-01 vat Value Added Tax 18332
#> 59 2023-11-01 vat Value Added Tax 14479
#> 60 2023-12-01 vat Value Added Tax 8987
#> 61 2024-01-01 vat Value Added Tax 19719
#> 62 2024-02-01 vat Value Added Tax 15230
#> 63 2024-03-01 vat Value Added Tax 9169
#> 64 2024-04-01 vat Value Added Tax 17588
#> 65 2024-05-01 vat Value Added Tax 13472
#> 66 2024-06-01 vat Value Added Tax 10363
#> 67 2024-07-01 vat Value Added Tax 18540
#> 68 2024-08-01 vat Value Added Tax 14145
#> 69 2024-09-01 vat Value Added Tax 9146
#> 70 2024-10-01 vat Value Added Tax 18654
#> 71 2024-11-01 vat Value Added Tax 15406
#> 72 2024-12-01 vat Value Added Tax 8613
options(op)
# }