Skip to contents

This function is mostly designed for exploring the API, and is unlikely to be suitable for long term production use.

You can set the number of rows to preview using the n_max parameter. This uses the n_max from readr::read_csv() under the hood.

As there are no IDs involved, this is brittle and code relying on this function will likely break whenever there is renaming of variables or items in the data.

It is recommended to take the time to set up custom queries using the query_dataset() function instead.

If you are using this function for more than exploratory purposes, make sure you subscribe to the data set you're downloading and then keep track of any updates to the data.

Usage

preview_dataset(
  dataset_id,
  dataset_version = NULL,
  api_version = NULL,
  ees_environment = default_ees_environment(),
  n_max = 10,
  verbose = FALSE
)

Arguments

dataset_id

ID of data set

dataset_version

Version number of data set

api_version

EES API version

ees_environment

EES ees_environment to connect to: "dev", "test", "preprod" or "prod"

n_max

maximum number of rows to preview, 10 by default, Inf will get all available rows

verbose

Run with additional contextual messaging, logical, default = FALSE

Value

data.frame

Details

This gives a super quick way to just fetch the file in a human readable format.

Examples

# Preview first 10 rows
preview_dataset(example_id("dataset"))
#>    time_period time_identifier   time_frame geographic_level country_code
#> 1         2026          Week 4 Year to date         National    E92000001
#> 2         2026          Week 4 Year to date         National    E92000001
#> 3         2026          Week 4 Year to date         National    E92000001
#> 4         2026          Week 4 Year to date         National    E92000001
#> 5         2026          Week 4 Year to date         Regional    E92000001
#> 6         2026          Week 4 Year to date         Regional    E92000001
#> 7         2026          Week 4 Year to date         Regional    E92000001
#> 8         2026          Week 4 Year to date         Regional    E92000001
#> 9         2026          Week 4 Year to date  Local authority    E92000001
#> 10        2026          Week 4 Year to date  Local authority    E92000001
#>    country_name region_code region_name new_la_code    la_name old_la_code
#> 1       England        <NA>        <NA>        <NA>       <NA>          NA
#> 2       England        <NA>        <NA>        <NA>       <NA>          NA
#> 3       England        <NA>        <NA>        <NA>       <NA>          NA
#> 4       England        <NA>        <NA>        <NA>       <NA>          NA
#> 5       England   E12000001  North East        <NA>       <NA>          NA
#> 6       England   E12000001  North East        <NA>       <NA>          NA
#> 7       England   E12000001  North East        <NA>       <NA>          NA
#> 8       England   E12000001  North East        <NA>       <NA>          NA
#> 9       England   E12000001  North East   E06000001 Hartlepool         805
#> 10      England   E12000001  North East   E06000001 Hartlepool         805
#>    education_phase persistent_absence_percent
#> 1      All schools                      18.62
#> 2          Primary                      14.73
#> 3        Secondary                      22.28
#> 4          Special                      35.35
#> 5      All schools                      20.68
#> 6          Primary                      15.89
#> 7        Secondary                      25.06
#> 8          Special                      34.29
#> 9      All schools                      20.94
#> 10         Primary                      15.72

# Get 2 rows
preview_dataset(example_id("dataset"), n_max = 2)
#>   time_period time_identifier   time_frame geographic_level country_code
#> 1        2026          Week 4 Year to date         National    E92000001
#> 2        2026          Week 4 Year to date         National    E92000001
#>   country_name region_code region_name new_la_code la_name old_la_code
#> 1      England          NA          NA          NA      NA          NA
#> 2      England          NA          NA          NA      NA          NA
#>   education_phase persistent_absence_percent
#> 1     All schools                      18.62
#> 2         Primary                      14.73

# Get all rows
preview_dataset(example_id("dataset"), n_max = Inf)
#>      time_period time_identifier   time_frame geographic_level country_code
#> 1           2026          Week 4 Year to date         National    E92000001
#> 2           2026          Week 4 Year to date         National    E92000001
#> 3           2026          Week 4 Year to date         National    E92000001
#> 4           2026          Week 4 Year to date         National    E92000001
#> 5           2026          Week 4 Year to date         Regional    E92000001
#> 6           2026          Week 4 Year to date         Regional    E92000001
#> 7           2026          Week 4 Year to date         Regional    E92000001
#> 8           2026          Week 4 Year to date         Regional    E92000001
#> 9           2026          Week 4 Year to date  Local authority    E92000001
#> 10          2026          Week 4 Year to date  Local authority    E92000001
#> 11          2026          Week 4 Year to date  Local authority    E92000001
#> 12          2026          Week 4 Year to date  Local authority    E92000001
#> 13          2026          Week 4 Year to date  Local authority    E92000001
#> 14          2026          Week 4 Year to date  Local authority    E92000001
#> 15          2026          Week 4 Year to date  Local authority    E92000001
#> 16          2026          Week 4 Year to date  Local authority    E92000001
#> 17          2026          Week 4 Year to date  Local authority    E92000001
#> 18          2026          Week 4 Year to date  Local authority    E92000001
#> 19          2026          Week 4 Year to date  Local authority    E92000001
#> 20          2026          Week 4 Year to date  Local authority    E92000001
#> 21          2026          Week 4 Year to date  Local authority    E92000001
#> 22          2026          Week 4 Year to date  Local authority    E92000001
#> 23          2026          Week 4 Year to date  Local authority    E92000001
#> 24          2026          Week 4 Year to date  Local authority    E92000001
#> 25          2026          Week 4 Year to date  Local authority    E92000001
#> 26          2026          Week 4 Year to date  Local authority    E92000001
#> 27          2026          Week 4 Year to date  Local authority    E92000001
#> 28          2026          Week 4 Year to date  Local authority    E92000001
#> 29          2026          Week 4 Year to date  Local authority    E92000001
#> 30          2026          Week 4 Year to date  Local authority    E92000001
#> 31          2026          Week 4 Year to date  Local authority    E92000001
#> 32          2026          Week 4 Year to date  Local authority    E92000001
#> 33          2026          Week 4 Year to date  Local authority    E92000001
#> 34          2026          Week 4 Year to date  Local authority    E92000001
#> 35          2026          Week 4 Year to date  Local authority    E92000001
#> 36          2026          Week 4 Year to date  Local authority    E92000001
#> 37          2026          Week 4 Year to date  Local authority    E92000001
#> 38          2026          Week 4 Year to date  Local authority    E92000001
#> 39          2026          Week 4 Year to date  Local authority    E92000001
#> 40          2026          Week 4 Year to date  Local authority    E92000001
#> 41          2026          Week 4 Year to date  Local authority    E92000001
#> 42          2026          Week 4 Year to date  Local authority    E92000001
#> 43          2026          Week 4 Year to date  Local authority    E92000001
#> 44          2026          Week 4 Year to date  Local authority    E92000001
#> 45          2026          Week 4 Year to date  Local authority    E92000001
#> 46          2026          Week 4 Year to date  Local authority    E92000001
#> 47          2026          Week 4 Year to date  Local authority    E92000001
#> 48          2026          Week 4 Year to date  Local authority    E92000001
#> 49          2026          Week 4 Year to date  Local authority    E92000001
#> 50          2026          Week 4 Year to date  Local authority    E92000001
#> 51          2026          Week 4 Year to date  Local authority    E92000001
#> 52          2026          Week 4 Year to date  Local authority    E92000001
#> 53          2026          Week 4 Year to date  Local authority    E92000001
#> 54          2026          Week 4 Year to date  Local authority    E92000001
#> 55          2026          Week 4 Year to date  Local authority    E92000001
#> 56          2026          Week 4 Year to date  Local authority    E92000001
#> 57          2026          Week 4 Year to date         Regional    E92000001
#> 58          2026          Week 4 Year to date         Regional    E92000001
#> 59          2026          Week 4 Year to date         Regional    E92000001
#> 60          2026          Week 4 Year to date         Regional    E92000001
#> 61          2026          Week 4 Year to date  Local authority    E92000001
#> 62          2026          Week 4 Year to date  Local authority    E92000001
#> 63          2026          Week 4 Year to date  Local authority    E92000001
#> 64          2026          Week 4 Year to date  Local authority    E92000001
#> 65          2026          Week 4 Year to date  Local authority    E92000001
#> 66          2026          Week 4 Year to date  Local authority    E92000001
#> 67          2026          Week 4 Year to date  Local authority    E92000001
#> 68          2026          Week 4 Year to date  Local authority    E92000001
#> 69          2026          Week 4 Year to date  Local authority    E92000001
#> 70          2026          Week 4 Year to date  Local authority    E92000001
#> 71          2026          Week 4 Year to date  Local authority    E92000001
#> 72          2026          Week 4 Year to date  Local authority    E92000001
#> 73          2026          Week 4 Year to date  Local authority    E92000001
#> 74          2026          Week 4 Year to date  Local authority    E92000001
#> 75          2026          Week 4 Year to date  Local authority    E92000001
#> 76          2026          Week 4 Year to date  Local authority    E92000001
#> 77          2026          Week 4 Year to date  Local authority    E92000001
#> 78          2026          Week 4 Year to date  Local authority    E92000001
#> 79          2026          Week 4 Year to date  Local authority    E92000001
#> 80          2026          Week 4 Year to date  Local authority    E92000001
#> 81          2026          Week 4 Year to date  Local authority    E92000001
#> 82          2026          Week 4 Year to date  Local authority    E92000001
#> 83          2026          Week 4 Year to date  Local authority    E92000001
#> 84          2026          Week 4 Year to date  Local authority    E92000001
#> 85          2026          Week 4 Year to date  Local authority    E92000001
#> 86          2026          Week 4 Year to date  Local authority    E92000001
#> 87          2026          Week 4 Year to date  Local authority    E92000001
#> 88          2026          Week 4 Year to date  Local authority    E92000001
#> 89          2026          Week 4 Year to date  Local authority    E92000001
#> 90          2026          Week 4 Year to date  Local authority    E92000001
#> 91          2026          Week 4 Year to date  Local authority    E92000001
#> 92          2026          Week 4 Year to date  Local authority    E92000001
#> 93          2026          Week 4 Year to date  Local authority    E92000001
#> 94          2026          Week 4 Year to date  Local authority    E92000001
#> 95          2026          Week 4 Year to date  Local authority    E92000001
#> 96          2026          Week 4 Year to date  Local authority    E92000001
#> 97          2026          Week 4 Year to date  Local authority    E92000001
#> 98          2026          Week 4 Year to date  Local authority    E92000001
#> 99          2026          Week 4 Year to date  Local authority    E92000001
#> 100         2026          Week 4 Year to date  Local authority    E92000001
#> 101         2026          Week 4 Year to date  Local authority    E92000001
#> 102         2026          Week 4 Year to date  Local authority    E92000001
#> 103         2026          Week 4 Year to date  Local authority    E92000001
#> 104         2026          Week 4 Year to date  Local authority    E92000001
#> 105         2026          Week 4 Year to date  Local authority    E92000001
#> 106         2026          Week 4 Year to date  Local authority    E92000001
#> 107         2026          Week 4 Year to date  Local authority    E92000001
#> 108         2026          Week 4 Year to date  Local authority    E92000001
#> 109         2026          Week 4 Year to date  Local authority    E92000001
#> 110         2026          Week 4 Year to date  Local authority    E92000001
#> 111         2026          Week 4 Year to date  Local authority    E92000001
#> 112         2026          Week 4 Year to date  Local authority    E92000001
#> 113         2026          Week 4 Year to date  Local authority    E92000001
#> 114         2026          Week 4 Year to date  Local authority    E92000001
#> 115         2026          Week 4 Year to date  Local authority    E92000001
#> 116         2026          Week 4 Year to date  Local authority    E92000001
#> 117         2026          Week 4 Year to date  Local authority    E92000001
#> 118         2026          Week 4 Year to date  Local authority    E92000001
#> 119         2026          Week 4 Year to date  Local authority    E92000001
#> 120         2026          Week 4 Year to date  Local authority    E92000001
#> 121         2026          Week 4 Year to date  Local authority    E92000001
#> 122         2026          Week 4 Year to date  Local authority    E92000001
#> 123         2026          Week 4 Year to date  Local authority    E92000001
#> 124         2026          Week 4 Year to date  Local authority    E92000001
#> 125         2026          Week 4 Year to date  Local authority    E92000001
#> 126         2026          Week 4 Year to date  Local authority    E92000001
#> 127         2026          Week 4 Year to date  Local authority    E92000001
#> 128         2026          Week 4 Year to date  Local authority    E92000001
#> 129         2026          Week 4 Year to date  Local authority    E92000001
#> 130         2026          Week 4 Year to date  Local authority    E92000001
#> 131         2026          Week 4 Year to date  Local authority    E92000001
#> 132         2026          Week 4 Year to date  Local authority    E92000001
#> 133         2026          Week 4 Year to date  Local authority    E92000001
#> 134         2026          Week 4 Year to date  Local authority    E92000001
#> 135         2026          Week 4 Year to date  Local authority    E92000001
#> 136         2026          Week 4 Year to date  Local authority    E92000001
#> 137         2026          Week 4 Year to date  Local authority    E92000001
#> 138         2026          Week 4 Year to date  Local authority    E92000001
#> 139         2026          Week 4 Year to date  Local authority    E92000001
#> 140         2026          Week 4 Year to date  Local authority    E92000001
#> 141         2026          Week 4 Year to date  Local authority    E92000001
#> 142         2026          Week 4 Year to date  Local authority    E92000001
#> 143         2026          Week 4 Year to date  Local authority    E92000001
#> 144         2026          Week 4 Year to date  Local authority    E92000001
#> 145         2026          Week 4 Year to date  Local authority    E92000001
#> 146         2026          Week 4 Year to date  Local authority    E92000001
#> 147         2026          Week 4 Year to date  Local authority    E92000001
#> 148         2026          Week 4 Year to date  Local authority    E92000001
#> 149         2026          Week 4 Year to date  Local authority    E92000001
#> 150         2026          Week 4 Year to date  Local authority    E92000001
#> 151         2026          Week 4 Year to date  Local authority    E92000001
#> 152         2026          Week 4 Year to date  Local authority    E92000001
#> 153         2026          Week 4 Year to date  Local authority    E92000001
#> 154         2026          Week 4 Year to date  Local authority    E92000001
#> 155         2026          Week 4 Year to date  Local authority    E92000001
#> 156         2026          Week 4 Year to date  Local authority    E92000001
#> 157         2026          Week 4 Year to date         Regional    E92000001
#> 158         2026          Week 4 Year to date         Regional    E92000001
#> 159         2026          Week 4 Year to date         Regional    E92000001
#> 160         2026          Week 4 Year to date         Regional    E92000001
#> 161         2026          Week 4 Year to date  Local authority    E92000001
#> 162         2026          Week 4 Year to date  Local authority    E92000001
#> 163         2026          Week 4 Year to date  Local authority    E92000001
#> 164         2026          Week 4 Year to date  Local authority    E92000001
#> 165         2026          Week 4 Year to date  Local authority    E92000001
#> 166         2026          Week 4 Year to date  Local authority    E92000001
#> 167         2026          Week 4 Year to date  Local authority    E92000001
#> 168         2026          Week 4 Year to date  Local authority    E92000001
#> 169         2026          Week 4 Year to date  Local authority    E92000001
#> 170         2026          Week 4 Year to date  Local authority    E92000001
#> 171         2026          Week 4 Year to date  Local authority    E92000001
#> 172         2026          Week 4 Year to date  Local authority    E92000001
#> 173         2026          Week 4 Year to date  Local authority    E92000001
#> 174         2026          Week 4 Year to date  Local authority    E92000001
#> 175         2026          Week 4 Year to date  Local authority    E92000001
#> 176         2026          Week 4 Year to date  Local authority    E92000001
#> 177         2026          Week 4 Year to date  Local authority    E92000001
#> 178         2026          Week 4 Year to date  Local authority    E92000001
#> 179         2026          Week 4 Year to date  Local authority    E92000001
#> 180         2026          Week 4 Year to date  Local authority    E92000001
#> 181         2026          Week 4 Year to date  Local authority    E92000001
#> 182         2026          Week 4 Year to date  Local authority    E92000001
#> 183         2026          Week 4 Year to date  Local authority    E92000001
#> 184         2026          Week 4 Year to date  Local authority    E92000001
#> 185         2026          Week 4 Year to date  Local authority    E92000001
#> 186         2026          Week 4 Year to date  Local authority    E92000001
#> 187         2026          Week 4 Year to date  Local authority    E92000001
#> 188         2026          Week 4 Year to date  Local authority    E92000001
#> 189         2026          Week 4 Year to date  Local authority    E92000001
#> 190         2026          Week 4 Year to date  Local authority    E92000001
#> 191         2026          Week 4 Year to date  Local authority    E92000001
#> 192         2026          Week 4 Year to date  Local authority    E92000001
#> 193         2026          Week 4 Year to date  Local authority    E92000001
#> 194         2026          Week 4 Year to date  Local authority    E92000001
#> 195         2026          Week 4 Year to date  Local authority    E92000001
#> 196         2026          Week 4 Year to date  Local authority    E92000001
#> 197         2026          Week 4 Year to date  Local authority    E92000001
#> 198         2026          Week 4 Year to date  Local authority    E92000001
#> 199         2026          Week 4 Year to date  Local authority    E92000001
#> 200         2026          Week 4 Year to date  Local authority    E92000001
#> 201         2026          Week 4 Year to date  Local authority    E92000001
#> 202         2026          Week 4 Year to date  Local authority    E92000001
#> 203         2026          Week 4 Year to date  Local authority    E92000001
#> 204         2026          Week 4 Year to date  Local authority    E92000001
#> 205         2026          Week 4 Year to date  Local authority    E92000001
#> 206         2026          Week 4 Year to date  Local authority    E92000001
#> 207         2026          Week 4 Year to date  Local authority    E92000001
#> 208         2026          Week 4 Year to date  Local authority    E92000001
#> 209         2026          Week 4 Year to date  Local authority    E92000001
#> 210         2026          Week 4 Year to date  Local authority    E92000001
#> 211         2026          Week 4 Year to date  Local authority    E92000001
#> 212         2026          Week 4 Year to date  Local authority    E92000001
#> 213         2026          Week 4 Year to date  Local authority    E92000001
#> 214         2026          Week 4 Year to date  Local authority    E92000001
#> 215         2026          Week 4 Year to date  Local authority    E92000001
#> 216         2026          Week 4 Year to date  Local authority    E92000001
#> 217         2026          Week 4 Year to date  Local authority    E92000001
#> 218         2026          Week 4 Year to date  Local authority    E92000001
#> 219         2026          Week 4 Year to date  Local authority    E92000001
#> 220         2026          Week 4 Year to date  Local authority    E92000001
#> 221         2026          Week 4 Year to date         Regional    E92000001
#> 222         2026          Week 4 Year to date         Regional    E92000001
#> 223         2026          Week 4 Year to date         Regional    E92000001
#> 224         2026          Week 4 Year to date         Regional    E92000001
#> 225         2026          Week 4 Year to date  Local authority    E92000001
#> 226         2026          Week 4 Year to date  Local authority    E92000001
#> 227         2026          Week 4 Year to date  Local authority    E92000001
#> 228         2026          Week 4 Year to date  Local authority    E92000001
#> 229         2026          Week 4 Year to date  Local authority    E92000001
#> 230         2026          Week 4 Year to date  Local authority    E92000001
#> 231         2026          Week 4 Year to date  Local authority    E92000001
#> 232         2026          Week 4 Year to date  Local authority    E92000001
#> 233         2026          Week 4 Year to date  Local authority    E92000001
#> 234         2026          Week 4 Year to date  Local authority    E92000001
#> 235         2026          Week 4 Year to date  Local authority    E92000001
#> 236         2026          Week 4 Year to date  Local authority    E92000001
#> 237         2026          Week 4 Year to date  Local authority    E92000001
#> 238         2026          Week 4 Year to date  Local authority    E92000001
#> 239         2026          Week 4 Year to date  Local authority    E92000001
#> 240         2026          Week 4 Year to date  Local authority    E92000001
#> 241         2026          Week 4 Year to date  Local authority    E92000001
#> 242         2026          Week 4 Year to date  Local authority    E92000001
#> 243         2026          Week 4 Year to date  Local authority    E92000001
#> 244         2026          Week 4 Year to date  Local authority    E92000001
#> 245         2026          Week 4 Year to date  Local authority    E92000001
#> 246         2026          Week 4 Year to date  Local authority    E92000001
#> 247         2026          Week 4 Year to date  Local authority    E92000001
#> 248         2026          Week 4 Year to date  Local authority    E92000001
#> 249         2026          Week 4 Year to date  Local authority    E92000001
#> 250         2026          Week 4 Year to date  Local authority    E92000001
#> 251         2026          Week 4 Year to date  Local authority    E92000001
#> 252         2026          Week 4 Year to date  Local authority    E92000001
#> 253         2026          Week 4 Year to date  Local authority    E92000001
#> 254         2026          Week 4 Year to date  Local authority    E92000001
#> 255         2026          Week 4 Year to date  Local authority    E92000001
#> 256         2026          Week 4 Year to date  Local authority    E92000001
#> 257         2026          Week 4 Year to date  Local authority    E92000001
#> 258         2026          Week 4 Year to date  Local authority    E92000001
#> 259         2026          Week 4 Year to date  Local authority    E92000001
#> 260         2026          Week 4 Year to date  Local authority    E92000001
#> 261         2026          Week 4 Year to date  Local authority    E92000001
#> 262         2026          Week 4 Year to date  Local authority    E92000001
#> 263         2026          Week 4 Year to date  Local authority    E92000001
#> 264         2026          Week 4 Year to date         Regional    E92000001
#> 265         2026          Week 4 Year to date         Regional    E92000001
#> 266         2026          Week 4 Year to date         Regional    E92000001
#> 267         2026          Week 4 Year to date         Regional    E92000001
#> 268         2026          Week 4 Year to date  Local authority    E92000001
#> 269         2026          Week 4 Year to date  Local authority    E92000001
#> 270         2026          Week 4 Year to date  Local authority    E92000001
#> 271         2026          Week 4 Year to date  Local authority    E92000001
#> 272         2026          Week 4 Year to date  Local authority    E92000001
#> 273         2026          Week 4 Year to date  Local authority    E92000001
#> 274         2026          Week 4 Year to date  Local authority    E92000001
#> 275         2026          Week 4 Year to date  Local authority    E92000001
#> 276         2026          Week 4 Year to date  Local authority    E92000001
#> 277         2026          Week 4 Year to date  Local authority    E92000001
#> 278         2026          Week 4 Year to date  Local authority    E92000001
#> 279         2026          Week 4 Year to date  Local authority    E92000001
#> 280         2026          Week 4 Year to date  Local authority    E92000001
#> 281         2026          Week 4 Year to date  Local authority    E92000001
#> 282         2026          Week 4 Year to date  Local authority    E92000001
#> 283         2026          Week 4 Year to date  Local authority    E92000001
#> 284         2026          Week 4 Year to date  Local authority    E92000001
#> 285         2026          Week 4 Year to date  Local authority    E92000001
#> 286         2026          Week 4 Year to date  Local authority    E92000001
#> 287         2026          Week 4 Year to date  Local authority    E92000001
#> 288         2026          Week 4 Year to date  Local authority    E92000001
#> 289         2026          Week 4 Year to date  Local authority    E92000001
#> 290         2026          Week 4 Year to date  Local authority    E92000001
#> 291         2026          Week 4 Year to date  Local authority    E92000001
#> 292         2026          Week 4 Year to date  Local authority    E92000001
#> 293         2026          Week 4 Year to date  Local authority    E92000001
#> 294         2026          Week 4 Year to date  Local authority    E92000001
#> 295         2026          Week 4 Year to date  Local authority    E92000001
#> 296         2026          Week 4 Year to date  Local authority    E92000001
#> 297         2026          Week 4 Year to date  Local authority    E92000001
#> 298         2026          Week 4 Year to date  Local authority    E92000001
#> 299         2026          Week 4 Year to date  Local authority    E92000001
#> 300         2026          Week 4 Year to date  Local authority    E92000001
#> 301         2026          Week 4 Year to date  Local authority    E92000001
#> 302         2026          Week 4 Year to date  Local authority    E92000001
#> 303         2026          Week 4 Year to date  Local authority    E92000001
#> 304         2026          Week 4 Year to date  Local authority    E92000001
#> 305         2026          Week 4 Year to date  Local authority    E92000001
#> 306         2026          Week 4 Year to date  Local authority    E92000001
#> 307         2026          Week 4 Year to date  Local authority    E92000001
#> 308         2026          Week 4 Year to date  Local authority    E92000001
#> 309         2026          Week 4 Year to date  Local authority    E92000001
#> 310         2026          Week 4 Year to date  Local authority    E92000001
#> 311         2026          Week 4 Year to date  Local authority    E92000001
#> 312         2026          Week 4 Year to date  Local authority    E92000001
#> 313         2026          Week 4 Year to date  Local authority    E92000001
#> 314         2026          Week 4 Year to date  Local authority    E92000001
#> 315         2026          Week 4 Year to date  Local authority    E92000001
#> 316         2026          Week 4 Year to date  Local authority    E92000001
#> 317         2026          Week 4 Year to date  Local authority    E92000001
#> 318         2026          Week 4 Year to date  Local authority    E92000001
#> 319         2026          Week 4 Year to date  Local authority    E92000001
#> 320         2026          Week 4 Year to date  Local authority    E92000001
#> 321         2026          Week 4 Year to date  Local authority    E92000001
#> 322         2026          Week 4 Year to date  Local authority    E92000001
#> 323         2026          Week 4 Year to date  Local authority    E92000001
#> 324         2026          Week 4 Year to date         Regional    E92000001
#> 325         2026          Week 4 Year to date         Regional    E92000001
#> 326         2026          Week 4 Year to date         Regional    E92000001
#> 327         2026          Week 4 Year to date         Regional    E92000001
#> 328         2026          Week 4 Year to date  Local authority    E92000001
#> 329         2026          Week 4 Year to date  Local authority    E92000001
#> 330         2026          Week 4 Year to date  Local authority    E92000001
#> 331         2026          Week 4 Year to date  Local authority    E92000001
#> 332         2026          Week 4 Year to date  Local authority    E92000001
#> 333         2026          Week 4 Year to date  Local authority    E92000001
#> 334         2026          Week 4 Year to date  Local authority    E92000001
#> 335         2026          Week 4 Year to date  Local authority    E92000001
#> 336         2026          Week 4 Year to date  Local authority    E92000001
#> 337         2026          Week 4 Year to date  Local authority    E92000001
#> 338         2026          Week 4 Year to date  Local authority    E92000001
#> 339         2026          Week 4 Year to date  Local authority    E92000001
#> 340         2026          Week 4 Year to date  Local authority    E92000001
#> 341         2026          Week 4 Year to date  Local authority    E92000001
#> 342         2026          Week 4 Year to date  Local authority    E92000001
#> 343         2026          Week 4 Year to date  Local authority    E92000001
#> 344         2026          Week 4 Year to date  Local authority    E92000001
#> 345         2026          Week 4 Year to date  Local authority    E92000001
#> 346         2026          Week 4 Year to date  Local authority    E92000001
#> 347         2026          Week 4 Year to date  Local authority    E92000001
#> 348         2026          Week 4 Year to date  Local authority    E92000001
#> 349         2026          Week 4 Year to date  Local authority    E92000001
#> 350         2026          Week 4 Year to date  Local authority    E92000001
#> 351         2026          Week 4 Year to date  Local authority    E92000001
#> 352         2026          Week 4 Year to date  Local authority    E92000001
#> 353         2026          Week 4 Year to date  Local authority    E92000001
#> 354         2026          Week 4 Year to date  Local authority    E92000001
#> 355         2026          Week 4 Year to date  Local authority    E92000001
#> 356         2026          Week 4 Year to date  Local authority    E92000001
#> 357         2026          Week 4 Year to date  Local authority    E92000001
#> 358         2026          Week 4 Year to date  Local authority    E92000001
#> 359         2026          Week 4 Year to date  Local authority    E92000001
#> 360         2026          Week 4 Year to date  Local authority    E92000001
#> 361         2026          Week 4 Year to date  Local authority    E92000001
#> 362         2026          Week 4 Year to date  Local authority    E92000001
#> 363         2026          Week 4 Year to date  Local authority    E92000001
#> 364         2026          Week 4 Year to date  Local authority    E92000001
#> 365         2026          Week 4 Year to date  Local authority    E92000001
#> 366         2026          Week 4 Year to date  Local authority    E92000001
#> 367         2026          Week 4 Year to date  Local authority    E92000001
#> 368         2026          Week 4 Year to date  Local authority    E92000001
#> 369         2026          Week 4 Year to date  Local authority    E92000001
#> 370         2026          Week 4 Year to date  Local authority    E92000001
#> 371         2026          Week 4 Year to date  Local authority    E92000001
#> 372         2026          Week 4 Year to date         Regional    E92000001
#> 373         2026          Week 4 Year to date         Regional    E92000001
#> 374         2026          Week 4 Year to date         Regional    E92000001
#> 375         2026          Week 4 Year to date         Regional    E92000001
#> 376         2026          Week 4 Year to date  Local authority    E92000001
#> 377         2026          Week 4 Year to date  Local authority    E92000001
#> 378         2026          Week 4 Year to date  Local authority    E92000001
#> 379         2026          Week 4 Year to date  Local authority    E92000001
#> 380         2026          Week 4 Year to date  Local authority    E92000001
#> 381         2026          Week 4 Year to date  Local authority    E92000001
#> 382         2026          Week 4 Year to date  Local authority    E92000001
#> 383         2026          Week 4 Year to date  Local authority    E92000001
#> 384         2026          Week 4 Year to date  Local authority    E92000001
#> 385         2026          Week 4 Year to date  Local authority    E92000001
#> 386         2026          Week 4 Year to date  Local authority    E92000001
#> 387         2026          Week 4 Year to date  Local authority    E92000001
#> 388         2026          Week 4 Year to date  Local authority    E92000001
#> 389         2026          Week 4 Year to date  Local authority    E92000001
#> 390         2026          Week 4 Year to date  Local authority    E92000001
#> 391         2026          Week 4 Year to date  Local authority    E92000001
#> 392         2026          Week 4 Year to date  Local authority    E92000001
#> 393         2026          Week 4 Year to date  Local authority    E92000001
#> 394         2026          Week 4 Year to date  Local authority    E92000001
#> 395         2026          Week 4 Year to date  Local authority    E92000001
#> 396         2026          Week 4 Year to date  Local authority    E92000001
#> 397         2026          Week 4 Year to date  Local authority    E92000001
#> 398         2026          Week 4 Year to date  Local authority    E92000001
#> 399         2026          Week 4 Year to date  Local authority    E92000001
#> 400         2026          Week 4 Year to date  Local authority    E92000001
#> 401         2026          Week 4 Year to date  Local authority    E92000001
#> 402         2026          Week 4 Year to date  Local authority    E92000001
#> 403         2026          Week 4 Year to date  Local authority    E92000001
#> 404         2026          Week 4 Year to date  Local authority    E92000001
#> 405         2026          Week 4 Year to date  Local authority    E92000001
#> 406         2026          Week 4 Year to date  Local authority    E92000001
#> 407         2026          Week 4 Year to date  Local authority    E92000001
#> 408         2026          Week 4 Year to date  Local authority    E92000001
#> 409         2026          Week 4 Year to date  Local authority    E92000001
#> 410         2026          Week 4 Year to date  Local authority    E92000001
#> 411         2026          Week 4 Year to date  Local authority    E92000001
#> 412         2026          Week 4 Year to date  Local authority    E92000001
#> 413         2026          Week 4 Year to date  Local authority    E92000001
#> 414         2026          Week 4 Year to date  Local authority    E92000001
#> 415         2026          Week 4 Year to date  Local authority    E92000001
#> 416         2026          Week 4 Year to date  Local authority    E92000001
#> 417         2026          Week 4 Year to date  Local authority    E92000001
#> 418         2026          Week 4 Year to date  Local authority    E92000001
#> 419         2026          Week 4 Year to date  Local authority    E92000001
#> 420         2026          Week 4 Year to date  Local authority    E92000001
#> 421         2026          Week 4 Year to date  Local authority    E92000001
#> 422         2026          Week 4 Year to date  Local authority    E92000001
#> 423         2026          Week 4 Year to date  Local authority    E92000001
#> 424         2026          Week 4 Year to date  Local authority    E92000001
#> 425         2026          Week 4 Year to date  Local authority    E92000001
#> 426         2026          Week 4 Year to date  Local authority    E92000001
#> 427         2026          Week 4 Year to date  Local authority    E92000001
#> 428         2026          Week 4 Year to date  Local authority    E92000001
#> 429         2026          Week 4 Year to date  Local authority    E92000001
#> 430         2026          Week 4 Year to date  Local authority    E92000001
#> 431         2026          Week 4 Year to date  Local authority    E92000001
#> 432         2026          Week 4 Year to date  Local authority    E92000001
#> 433         2026          Week 4 Year to date  Local authority    E92000001
#> 434         2026          Week 4 Year to date  Local authority    E92000001
#> 435         2026          Week 4 Year to date  Local authority    E92000001
#> 436         2026          Week 4 Year to date  Local authority    E92000001
#> 437         2026          Week 4 Year to date  Local authority    E92000001
#> 438         2026          Week 4 Year to date  Local authority    E92000001
#> 439         2026          Week 4 Year to date  Local authority    E92000001
#> 440         2026          Week 4 Year to date  Local authority    E92000001
#> 441         2026          Week 4 Year to date  Local authority    E92000001
#> 442         2026          Week 4 Year to date  Local authority    E92000001
#> 443         2026          Week 4 Year to date  Local authority    E92000001
#> 444         2026          Week 4 Year to date  Local authority    E92000001
#> 445         2026          Week 4 Year to date  Local authority    E92000001
#> 446         2026          Week 4 Year to date  Local authority    E92000001
#> 447         2026          Week 4 Year to date  Local authority    E92000001
#> 448         2026          Week 4 Year to date  Local authority    E92000001
#> 449         2026          Week 4 Year to date  Local authority    E92000001
#> 450         2026          Week 4 Year to date  Local authority    E92000001
#> 451         2026          Week 4 Year to date  Local authority    E92000001
#> 452         2026          Week 4 Year to date  Local authority    E92000001
#> 453         2026          Week 4 Year to date  Local authority    E92000001
#> 454         2026          Week 4 Year to date  Local authority    E92000001
#> 455         2026          Week 4 Year to date  Local authority    E92000001
#> 456         2026          Week 4 Year to date  Local authority    E92000001
#> 457         2026          Week 4 Year to date  Local authority    E92000001
#> 458         2026          Week 4 Year to date  Local authority    E92000001
#> 459         2026          Week 4 Year to date  Local authority    E92000001
#> 460         2026          Week 4 Year to date  Local authority    E92000001
#> 461         2026          Week 4 Year to date  Local authority    E92000001
#> 462         2026          Week 4 Year to date  Local authority    E92000001
#> 463         2026          Week 4 Year to date  Local authority    E92000001
#> 464         2026          Week 4 Year to date  Local authority    E92000001
#> 465         2026          Week 4 Year to date  Local authority    E92000001
#> 466         2026          Week 4 Year to date  Local authority    E92000001
#> 467         2026          Week 4 Year to date  Local authority    E92000001
#> 468         2026          Week 4 Year to date  Local authority    E92000001
#> 469         2026          Week 4 Year to date  Local authority    E92000001
#> 470         2026          Week 4 Year to date  Local authority    E92000001
#> 471         2026          Week 4 Year to date  Local authority    E92000001
#> 472         2026          Week 4 Year to date  Local authority    E92000001
#> 473         2026          Week 4 Year to date  Local authority    E92000001
#> 474         2026          Week 4 Year to date  Local authority    E92000001
#> 475         2026          Week 4 Year to date  Local authority    E92000001
#> 476         2026          Week 4 Year to date  Local authority    E92000001
#> 477         2026          Week 4 Year to date  Local authority    E92000001
#> 478         2026          Week 4 Year to date  Local authority    E92000001
#> 479         2026          Week 4 Year to date  Local authority    E92000001
#> 480         2026          Week 4 Year to date  Local authority    E92000001
#> 481         2026          Week 4 Year to date  Local authority    E92000001
#> 482         2026          Week 4 Year to date  Local authority    E92000001
#> 483         2026          Week 4 Year to date  Local authority    E92000001
#> 484         2026          Week 4 Year to date  Local authority    E92000001
#> 485         2026          Week 4 Year to date  Local authority    E92000001
#> 486         2026          Week 4 Year to date  Local authority    E92000001
#> 487         2026          Week 4 Year to date  Local authority    E92000001
#> 488         2026          Week 4 Year to date  Local authority    E92000001
#> 489         2026          Week 4 Year to date  Local authority    E92000001
#> 490         2026          Week 4 Year to date  Local authority    E92000001
#> 491         2026          Week 4 Year to date  Local authority    E92000001
#> 492         2026          Week 4 Year to date  Local authority    E92000001
#> 493         2026          Week 4 Year to date  Local authority    E92000001
#> 494         2026          Week 4 Year to date  Local authority    E92000001
#> 495         2026          Week 4 Year to date  Local authority    E92000001
#> 496         2026          Week 4 Year to date  Local authority    E92000001
#> 497         2026          Week 4 Year to date  Local authority    E92000001
#> 498         2026          Week 4 Year to date  Local authority    E92000001
#> 499         2026          Week 4 Year to date  Local authority    E92000001
#> 500         2026          Week 4 Year to date  Local authority    E92000001
#> 501         2026          Week 4 Year to date  Local authority    E92000001
#> 502         2026          Week 4 Year to date  Local authority    E92000001
#> 503         2026          Week 4 Year to date  Local authority    E92000001
#> 504         2026          Week 4 Year to date  Local authority    E92000001
#> 505         2026          Week 4 Year to date  Local authority    E92000001
#> 506         2026          Week 4 Year to date         Regional    E92000001
#> 507         2026          Week 4 Year to date         Regional    E92000001
#> 508         2026          Week 4 Year to date         Regional    E92000001
#> 509         2026          Week 4 Year to date         Regional    E92000001
#> 510         2026          Week 4 Year to date  Local authority    E92000001
#> 511         2026          Week 4 Year to date  Local authority    E92000001
#> 512         2026          Week 4 Year to date  Local authority    E92000001
#> 513         2026          Week 4 Year to date  Local authority    E92000001
#> 514         2026          Week 4 Year to date  Local authority    E92000001
#> 515         2026          Week 4 Year to date  Local authority    E92000001
#> 516         2026          Week 4 Year to date  Local authority    E92000001
#> 517         2026          Week 4 Year to date  Local authority    E92000001
#> 518         2026          Week 4 Year to date  Local authority    E92000001
#> 519         2026          Week 4 Year to date  Local authority    E92000001
#> 520         2026          Week 4 Year to date  Local authority    E92000001
#> 521         2026          Week 4 Year to date  Local authority    E92000001
#> 522         2026          Week 4 Year to date  Local authority    E92000001
#> 523         2026          Week 4 Year to date  Local authority    E92000001
#> 524         2026          Week 4 Year to date  Local authority    E92000001
#> 525         2026          Week 4 Year to date  Local authority    E92000001
#> 526         2026          Week 4 Year to date  Local authority    E92000001
#> 527         2026          Week 4 Year to date  Local authority    E92000001
#> 528         2026          Week 4 Year to date  Local authority    E92000001
#> 529         2026          Week 4 Year to date  Local authority    E92000001
#> 530         2026          Week 4 Year to date  Local authority    E92000001
#> 531         2026          Week 4 Year to date  Local authority    E92000001
#> 532         2026          Week 4 Year to date  Local authority    E92000001
#> 533         2026          Week 4 Year to date  Local authority    E92000001
#> 534         2026          Week 4 Year to date  Local authority    E92000001
#> 535         2026          Week 4 Year to date  Local authority    E92000001
#> 536         2026          Week 4 Year to date  Local authority    E92000001
#> 537         2026          Week 4 Year to date  Local authority    E92000001
#> 538         2026          Week 4 Year to date  Local authority    E92000001
#> 539         2026          Week 4 Year to date  Local authority    E92000001
#> 540         2026          Week 4 Year to date  Local authority    E92000001
#> 541         2026          Week 4 Year to date  Local authority    E92000001
#> 542         2026          Week 4 Year to date  Local authority    E92000001
#> 543         2026          Week 4 Year to date  Local authority    E92000001
#> 544         2026          Week 4 Year to date  Local authority    E92000001
#> 545         2026          Week 4 Year to date  Local authority    E92000001
#> 546         2026          Week 4 Year to date  Local authority    E92000001
#> 547         2026          Week 4 Year to date  Local authority    E92000001
#> 548         2026          Week 4 Year to date  Local authority    E92000001
#> 549         2026          Week 4 Year to date  Local authority    E92000001
#> 550         2026          Week 4 Year to date  Local authority    E92000001
#> 551         2026          Week 4 Year to date  Local authority    E92000001
#> 552         2026          Week 4 Year to date  Local authority    E92000001
#> 553         2026          Week 4 Year to date  Local authority    E92000001
#> 554         2026          Week 4 Year to date  Local authority    E92000001
#> 555         2026          Week 4 Year to date  Local authority    E92000001
#> 556         2026          Week 4 Year to date  Local authority    E92000001
#> 557         2026          Week 4 Year to date  Local authority    E92000001
#> 558         2026          Week 4 Year to date  Local authority    E92000001
#> 559         2026          Week 4 Year to date  Local authority    E92000001
#> 560         2026          Week 4 Year to date  Local authority    E92000001
#> 561         2026          Week 4 Year to date  Local authority    E92000001
#> 562         2026          Week 4 Year to date  Local authority    E92000001
#> 563         2026          Week 4 Year to date  Local authority    E92000001
#> 564         2026          Week 4 Year to date  Local authority    E92000001
#> 565         2026          Week 4 Year to date  Local authority    E92000001
#> 566         2026          Week 4 Year to date  Local authority    E92000001
#> 567         2026          Week 4 Year to date  Local authority    E92000001
#> 568         2026          Week 4 Year to date  Local authority    E92000001
#> 569         2026          Week 4 Year to date  Local authority    E92000001
#> 570         2026          Week 4 Year to date  Local authority    E92000001
#> 571         2026          Week 4 Year to date  Local authority    E92000001
#> 572         2026          Week 4 Year to date  Local authority    E92000001
#> 573         2026          Week 4 Year to date  Local authority    E92000001
#> 574         2026          Week 4 Year to date  Local authority    E92000001
#> 575         2026          Week 4 Year to date  Local authority    E92000001
#> 576         2026          Week 4 Year to date  Local authority    E92000001
#> 577         2026          Week 4 Year to date  Local authority    E92000001
#> 578         2026          Week 4 Year to date  Local authority    E92000001
#> 579         2026          Week 4 Year to date  Local authority    E92000001
#> 580         2026          Week 4 Year to date  Local authority    E92000001
#> 581         2026          Week 4 Year to date  Local authority    E92000001
#> 582         2026          Week 4 Year to date  Local authority    E92000001
#> 583         2026          Week 4 Year to date  Local authority    E92000001
#> 584         2026          Week 4 Year to date  Local authority    E92000001
#> 585         2026          Week 4 Year to date  Local authority    E92000001
#> 586         2026          Week 4 Year to date         Regional    E92000001
#> 587         2026          Week 4 Year to date         Regional    E92000001
#> 588         2026          Week 4 Year to date         Regional    E92000001
#> 589         2026          Week 4 Year to date         Regional    E92000001
#> 590         2026          Week 4 Year to date  Local authority    E92000001
#> 591         2026          Week 4 Year to date  Local authority    E92000001
#> 592         2026          Week 4 Year to date  Local authority    E92000001
#> 593         2026          Week 4 Year to date  Local authority    E92000001
#> 594         2026          Week 4 Year to date  Local authority    E92000001
#> 595         2026          Week 4 Year to date  Local authority    E92000001
#> 596         2026          Week 4 Year to date  Local authority    E92000001
#> 597         2026          Week 4 Year to date  Local authority    E92000001
#> 598         2026          Week 4 Year to date  Local authority    E92000001
#> 599         2026          Week 4 Year to date  Local authority    E92000001
#> 600         2026          Week 4 Year to date  Local authority    E92000001
#> 601         2026          Week 4 Year to date  Local authority    E92000001
#> 602         2026          Week 4 Year to date  Local authority    E92000001
#> 603         2026          Week 4 Year to date  Local authority    E92000001
#> 604         2026          Week 4 Year to date  Local authority    E92000001
#> 605         2026          Week 4 Year to date  Local authority    E92000001
#> 606         2026          Week 4 Year to date  Local authority    E92000001
#> 607         2026          Week 4 Year to date  Local authority    E92000001
#> 608         2026          Week 4 Year to date  Local authority    E92000001
#> 609         2026          Week 4 Year to date  Local authority    E92000001
#> 610         2026          Week 4 Year to date  Local authority    E92000001
#> 611         2026          Week 4 Year to date  Local authority    E92000001
#> 612         2026          Week 4 Year to date  Local authority    E92000001
#> 613         2026          Week 4 Year to date  Local authority    E92000001
#> 614         2026          Week 4 Year to date  Local authority    E92000001
#> 615         2026          Week 4 Year to date  Local authority    E92000001
#> 616         2026          Week 4 Year to date  Local authority    E92000001
#> 617         2026          Week 4 Year to date  Local authority    E92000001
#> 618         2026          Week 4 Year to date  Local authority    E92000001
#> 619         2026          Week 4 Year to date  Local authority    E92000001
#> 620         2026          Week 4 Year to date  Local authority    E92000001
#> 621         2026          Week 4 Year to date  Local authority    E92000001
#> 622         2026          Week 4 Year to date  Local authority    E92000001
#> 623         2026          Week 4 Year to date  Local authority    E92000001
#> 624         2026          Week 4 Year to date  Local authority    E92000001
#> 625         2026          Week 4 Year to date  Local authority    E92000001
#> 626         2026          Week 4 Year to date  Local authority    E92000001
#> 627         2026          Week 4 Year to date  Local authority    E92000001
#> 628         2026          Week 4 Year to date  Local authority    E92000001
#> 629         2026          Week 4 Year to date  Local authority    E92000001
#> 630         2026          Week 4 Year to date  Local authority    E92000001
#> 631         2026          Week 4 Year to date  Local authority    E92000001
#> 632         2026          Week 4 Year to date  Local authority    E92000001
#> 633         2026          Week 4 Year to date  Local authority    E92000001
#> 634         2026          Week 4 Year to date  Local authority    E92000001
#> 635         2026          Week 4 Year to date  Local authority    E92000001
#> 636         2026          Week 4 Year to date  Local authority    E92000001
#> 637         2026          Week 4 Year to date  Local authority    E92000001
#> 638         2026          Week 4 Year to date  Local authority    E92000001
#> 639         2026          Week 4 Year to date  Local authority    E92000001
#> 640         2026          Week 4 Year to date  Local authority    E92000001
#> 641         2026          Week 4 Year to date  Local authority    E92000001
#> 642         2026          Week 4 Year to date  Local authority    E92000001
#> 643         2026          Week 4 Year to date  Local authority    E92000001
#> 644         2026          Week 4 Year to date  Local authority    E92000001
#> 645         2026          Week 4 Year to date  Local authority    E92000001
#> 646         2026          Week 4 Year to date  Local authority    E92000001
#> 647         2026          Week 4 Year to date  Local authority    E92000001
#> 648         2026          Week 2 Year to date         National    E92000001
#> 649         2026          Week 2 Year to date         National    E92000001
#> 650         2026          Week 2 Year to date         National    E92000001
#> 651         2026          Week 2 Year to date         National    E92000001
#> 652         2026          Week 2 Year to date         Regional    E92000001
#> 653         2026          Week 2 Year to date         Regional    E92000001
#> 654         2026          Week 2 Year to date         Regional    E92000001
#> 655         2026          Week 2 Year to date         Regional    E92000001
#> 656         2026          Week 2 Year to date  Local authority    E92000001
#> 657         2026          Week 2 Year to date  Local authority    E92000001
#> 658         2026          Week 2 Year to date  Local authority    E92000001
#> 659         2026          Week 2 Year to date  Local authority    E92000001
#> 660         2026          Week 2 Year to date  Local authority    E92000001
#> 661         2026          Week 2 Year to date  Local authority    E92000001
#> 662         2026          Week 2 Year to date  Local authority    E92000001
#> 663         2026          Week 2 Year to date  Local authority    E92000001
#> 664         2026          Week 2 Year to date  Local authority    E92000001
#> 665         2026          Week 2 Year to date  Local authority    E92000001
#> 666         2026          Week 2 Year to date  Local authority    E92000001
#> 667         2026          Week 2 Year to date  Local authority    E92000001
#> 668         2026          Week 2 Year to date  Local authority    E92000001
#> 669         2026          Week 2 Year to date  Local authority    E92000001
#> 670         2026          Week 2 Year to date  Local authority    E92000001
#> 671         2026          Week 2 Year to date  Local authority    E92000001
#> 672         2026          Week 2 Year to date  Local authority    E92000001
#> 673         2026          Week 2 Year to date  Local authority    E92000001
#> 674         2026          Week 2 Year to date  Local authority    E92000001
#> 675         2026          Week 2 Year to date  Local authority    E92000001
#> 676         2026          Week 2 Year to date  Local authority    E92000001
#> 677         2026          Week 2 Year to date  Local authority    E92000001
#> 678         2026          Week 2 Year to date  Local authority    E92000001
#> 679         2026          Week 2 Year to date  Local authority    E92000001
#> 680         2026          Week 2 Year to date  Local authority    E92000001
#> 681         2026          Week 2 Year to date  Local authority    E92000001
#> 682         2026          Week 2 Year to date  Local authority    E92000001
#> 683         2026          Week 2 Year to date  Local authority    E92000001
#> 684         2026          Week 2 Year to date  Local authority    E92000001
#> 685         2026          Week 2 Year to date  Local authority    E92000001
#> 686         2026          Week 2 Year to date  Local authority    E92000001
#> 687         2026          Week 2 Year to date  Local authority    E92000001
#> 688         2026          Week 2 Year to date  Local authority    E92000001
#> 689         2026          Week 2 Year to date  Local authority    E92000001
#> 690         2026          Week 2 Year to date  Local authority    E92000001
#> 691         2026          Week 2 Year to date  Local authority    E92000001
#> 692         2026          Week 2 Year to date  Local authority    E92000001
#> 693         2026          Week 2 Year to date  Local authority    E92000001
#> 694         2026          Week 2 Year to date  Local authority    E92000001
#> 695         2026          Week 2 Year to date  Local authority    E92000001
#> 696         2026          Week 2 Year to date  Local authority    E92000001
#> 697         2026          Week 2 Year to date  Local authority    E92000001
#> 698         2026          Week 2 Year to date  Local authority    E92000001
#> 699         2026          Week 2 Year to date  Local authority    E92000001
#> 700         2026          Week 2 Year to date  Local authority    E92000001
#> 701         2026          Week 2 Year to date  Local authority    E92000001
#> 702         2026          Week 2 Year to date  Local authority    E92000001
#> 703         2026          Week 2 Year to date  Local authority    E92000001
#> 704         2026          Week 2 Year to date         Regional    E92000001
#> 705         2026          Week 2 Year to date         Regional    E92000001
#> 706         2026          Week 2 Year to date         Regional    E92000001
#> 707         2026          Week 2 Year to date         Regional    E92000001
#> 708         2026          Week 2 Year to date  Local authority    E92000001
#> 709         2026          Week 2 Year to date  Local authority    E92000001
#> 710         2026          Week 2 Year to date  Local authority    E92000001
#> 711         2026          Week 2 Year to date  Local authority    E92000001
#> 712         2026          Week 2 Year to date  Local authority    E92000001
#> 713         2026          Week 2 Year to date  Local authority    E92000001
#> 714         2026          Week 2 Year to date  Local authority    E92000001
#> 715         2026          Week 2 Year to date  Local authority    E92000001
#> 716         2026          Week 2 Year to date  Local authority    E92000001
#> 717         2026          Week 2 Year to date  Local authority    E92000001
#> 718         2026          Week 2 Year to date  Local authority    E92000001
#> 719         2026          Week 2 Year to date  Local authority    E92000001
#> 720         2026          Week 2 Year to date  Local authority    E92000001
#> 721         2026          Week 2 Year to date  Local authority    E92000001
#> 722         2026          Week 2 Year to date  Local authority    E92000001
#> 723         2026          Week 2 Year to date  Local authority    E92000001
#> 724         2026          Week 2 Year to date  Local authority    E92000001
#> 725         2026          Week 2 Year to date  Local authority    E92000001
#> 726         2026          Week 2 Year to date  Local authority    E92000001
#> 727         2026          Week 2 Year to date  Local authority    E92000001
#> 728         2026          Week 2 Year to date  Local authority    E92000001
#> 729         2026          Week 2 Year to date  Local authority    E92000001
#> 730         2026          Week 2 Year to date  Local authority    E92000001
#> 731         2026          Week 2 Year to date  Local authority    E92000001
#> 732         2026          Week 2 Year to date  Local authority    E92000001
#> 733         2026          Week 2 Year to date  Local authority    E92000001
#> 734         2026          Week 2 Year to date  Local authority    E92000001
#> 735         2026          Week 2 Year to date  Local authority    E92000001
#> 736         2026          Week 2 Year to date  Local authority    E92000001
#> 737         2026          Week 2 Year to date  Local authority    E92000001
#> 738         2026          Week 2 Year to date  Local authority    E92000001
#> 739         2026          Week 2 Year to date  Local authority    E92000001
#> 740         2026          Week 2 Year to date  Local authority    E92000001
#> 741         2026          Week 2 Year to date  Local authority    E92000001
#> 742         2026          Week 2 Year to date  Local authority    E92000001
#> 743         2026          Week 2 Year to date  Local authority    E92000001
#> 744         2026          Week 2 Year to date  Local authority    E92000001
#> 745         2026          Week 2 Year to date  Local authority    E92000001
#> 746         2026          Week 2 Year to date  Local authority    E92000001
#> 747         2026          Week 2 Year to date  Local authority    E92000001
#> 748         2026          Week 2 Year to date  Local authority    E92000001
#> 749         2026          Week 2 Year to date  Local authority    E92000001
#> 750         2026          Week 2 Year to date  Local authority    E92000001
#> 751         2026          Week 2 Year to date  Local authority    E92000001
#> 752         2026          Week 2 Year to date  Local authority    E92000001
#> 753         2026          Week 2 Year to date  Local authority    E92000001
#> 754         2026          Week 2 Year to date  Local authority    E92000001
#> 755         2026          Week 2 Year to date  Local authority    E92000001
#> 756         2026          Week 2 Year to date  Local authority    E92000001
#> 757         2026          Week 2 Year to date  Local authority    E92000001
#> 758         2026          Week 2 Year to date  Local authority    E92000001
#> 759         2026          Week 2 Year to date  Local authority    E92000001
#> 760         2026          Week 2 Year to date  Local authority    E92000001
#> 761         2026          Week 2 Year to date  Local authority    E92000001
#> 762         2026          Week 2 Year to date  Local authority    E92000001
#> 763         2026          Week 2 Year to date  Local authority    E92000001
#> 764         2026          Week 2 Year to date  Local authority    E92000001
#> 765         2026          Week 2 Year to date  Local authority    E92000001
#> 766         2026          Week 2 Year to date  Local authority    E92000001
#> 767         2026          Week 2 Year to date  Local authority    E92000001
#> 768         2026          Week 2 Year to date  Local authority    E92000001
#> 769         2026          Week 2 Year to date  Local authority    E92000001
#> 770         2026          Week 2 Year to date  Local authority    E92000001
#> 771         2026          Week 2 Year to date  Local authority    E92000001
#> 772         2026          Week 2 Year to date  Local authority    E92000001
#> 773         2026          Week 2 Year to date  Local authority    E92000001
#> 774         2026          Week 2 Year to date  Local authority    E92000001
#> 775         2026          Week 2 Year to date  Local authority    E92000001
#> 776         2026          Week 2 Year to date  Local authority    E92000001
#> 777         2026          Week 2 Year to date  Local authority    E92000001
#> 778         2026          Week 2 Year to date  Local authority    E92000001
#> 779         2026          Week 2 Year to date  Local authority    E92000001
#> 780         2026          Week 2 Year to date  Local authority    E92000001
#> 781         2026          Week 2 Year to date  Local authority    E92000001
#> 782         2026          Week 2 Year to date  Local authority    E92000001
#> 783         2026          Week 2 Year to date  Local authority    E92000001
#> 784         2026          Week 2 Year to date  Local authority    E92000001
#> 785         2026          Week 2 Year to date  Local authority    E92000001
#> 786         2026          Week 2 Year to date  Local authority    E92000001
#> 787         2026          Week 2 Year to date  Local authority    E92000001
#> 788         2026          Week 2 Year to date  Local authority    E92000001
#> 789         2026          Week 2 Year to date  Local authority    E92000001
#> 790         2026          Week 2 Year to date  Local authority    E92000001
#> 791         2026          Week 2 Year to date  Local authority    E92000001
#> 792         2026          Week 2 Year to date  Local authority    E92000001
#> 793         2026          Week 2 Year to date  Local authority    E92000001
#> 794         2026          Week 2 Year to date  Local authority    E92000001
#> 795         2026          Week 2 Year to date  Local authority    E92000001
#> 796         2026          Week 2 Year to date  Local authority    E92000001
#> 797         2026          Week 2 Year to date  Local authority    E92000001
#> 798         2026          Week 2 Year to date  Local authority    E92000001
#> 799         2026          Week 2 Year to date  Local authority    E92000001
#> 800         2026          Week 2 Year to date  Local authority    E92000001
#> 801         2026          Week 2 Year to date  Local authority    E92000001
#> 802         2026          Week 2 Year to date  Local authority    E92000001
#> 803         2026          Week 2 Year to date  Local authority    E92000001
#> 804         2026          Week 2 Year to date         Regional    E92000001
#> 805         2026          Week 2 Year to date         Regional    E92000001
#> 806         2026          Week 2 Year to date         Regional    E92000001
#> 807         2026          Week 2 Year to date         Regional    E92000001
#> 808         2026          Week 2 Year to date  Local authority    E92000001
#> 809         2026          Week 2 Year to date  Local authority    E92000001
#> 810         2026          Week 2 Year to date  Local authority    E92000001
#> 811         2026          Week 2 Year to date  Local authority    E92000001
#> 812         2026          Week 2 Year to date  Local authority    E92000001
#> 813         2026          Week 2 Year to date  Local authority    E92000001
#> 814         2026          Week 2 Year to date  Local authority    E92000001
#> 815         2026          Week 2 Year to date  Local authority    E92000001
#> 816         2026          Week 2 Year to date  Local authority    E92000001
#> 817         2026          Week 2 Year to date  Local authority    E92000001
#> 818         2026          Week 2 Year to date  Local authority    E92000001
#> 819         2026          Week 2 Year to date  Local authority    E92000001
#> 820         2026          Week 2 Year to date  Local authority    E92000001
#> 821         2026          Week 2 Year to date  Local authority    E92000001
#> 822         2026          Week 2 Year to date  Local authority    E92000001
#> 823         2026          Week 2 Year to date  Local authority    E92000001
#> 824         2026          Week 2 Year to date  Local authority    E92000001
#> 825         2026          Week 2 Year to date  Local authority    E92000001
#> 826         2026          Week 2 Year to date  Local authority    E92000001
#> 827         2026          Week 2 Year to date  Local authority    E92000001
#> 828         2026          Week 2 Year to date  Local authority    E92000001
#> 829         2026          Week 2 Year to date  Local authority    E92000001
#> 830         2026          Week 2 Year to date  Local authority    E92000001
#> 831         2026          Week 2 Year to date  Local authority    E92000001
#> 832         2026          Week 2 Year to date  Local authority    E92000001
#> 833         2026          Week 2 Year to date  Local authority    E92000001
#> 834         2026          Week 2 Year to date  Local authority    E92000001
#> 835         2026          Week 2 Year to date  Local authority    E92000001
#> 836         2026          Week 2 Year to date  Local authority    E92000001
#> 837         2026          Week 2 Year to date  Local authority    E92000001
#> 838         2026          Week 2 Year to date  Local authority    E92000001
#> 839         2026          Week 2 Year to date  Local authority    E92000001
#> 840         2026          Week 2 Year to date  Local authority    E92000001
#> 841         2026          Week 2 Year to date  Local authority    E92000001
#> 842         2026          Week 2 Year to date  Local authority    E92000001
#> 843         2026          Week 2 Year to date  Local authority    E92000001
#> 844         2026          Week 2 Year to date  Local authority    E92000001
#> 845         2026          Week 2 Year to date  Local authority    E92000001
#> 846         2026          Week 2 Year to date  Local authority    E92000001
#> 847         2026          Week 2 Year to date  Local authority    E92000001
#> 848         2026          Week 2 Year to date  Local authority    E92000001
#> 849         2026          Week 2 Year to date  Local authority    E92000001
#> 850         2026          Week 2 Year to date  Local authority    E92000001
#> 851         2026          Week 2 Year to date  Local authority    E92000001
#> 852         2026          Week 2 Year to date  Local authority    E92000001
#> 853         2026          Week 2 Year to date  Local authority    E92000001
#> 854         2026          Week 2 Year to date  Local authority    E92000001
#> 855         2026          Week 2 Year to date  Local authority    E92000001
#> 856         2026          Week 2 Year to date  Local authority    E92000001
#> 857         2026          Week 2 Year to date  Local authority    E92000001
#> 858         2026          Week 2 Year to date  Local authority    E92000001
#> 859         2026          Week 2 Year to date  Local authority    E92000001
#> 860         2026          Week 2 Year to date  Local authority    E92000001
#> 861         2026          Week 2 Year to date  Local authority    E92000001
#> 862         2026          Week 2 Year to date  Local authority    E92000001
#> 863         2026          Week 2 Year to date  Local authority    E92000001
#> 864         2026          Week 2 Year to date  Local authority    E92000001
#> 865         2026          Week 2 Year to date  Local authority    E92000001
#> 866         2026          Week 2 Year to date  Local authority    E92000001
#> 867         2026          Week 2 Year to date  Local authority    E92000001
#> 868         2026          Week 2 Year to date         Regional    E92000001
#> 869         2026          Week 2 Year to date         Regional    E92000001
#> 870         2026          Week 2 Year to date         Regional    E92000001
#> 871         2026          Week 2 Year to date         Regional    E92000001
#> 872         2026          Week 2 Year to date  Local authority    E92000001
#> 873         2026          Week 2 Year to date  Local authority    E92000001
#> 874         2026          Week 2 Year to date  Local authority    E92000001
#> 875         2026          Week 2 Year to date  Local authority    E92000001
#> 876         2026          Week 2 Year to date  Local authority    E92000001
#> 877         2026          Week 2 Year to date  Local authority    E92000001
#> 878         2026          Week 2 Year to date  Local authority    E92000001
#> 879         2026          Week 2 Year to date  Local authority    E92000001
#> 880         2026          Week 2 Year to date  Local authority    E92000001
#> 881         2026          Week 2 Year to date  Local authority    E92000001
#> 882         2026          Week 2 Year to date  Local authority    E92000001
#> 883         2026          Week 2 Year to date  Local authority    E92000001
#> 884         2026          Week 2 Year to date  Local authority    E92000001
#> 885         2026          Week 2 Year to date  Local authority    E92000001
#> 886         2026          Week 2 Year to date  Local authority    E92000001
#> 887         2026          Week 2 Year to date  Local authority    E92000001
#> 888         2026          Week 2 Year to date  Local authority    E92000001
#> 889         2026          Week 2 Year to date  Local authority    E92000001
#> 890         2026          Week 2 Year to date  Local authority    E92000001
#> 891         2026          Week 2 Year to date  Local authority    E92000001
#> 892         2026          Week 2 Year to date  Local authority    E92000001
#> 893         2026          Week 2 Year to date  Local authority    E92000001
#> 894         2026          Week 2 Year to date  Local authority    E92000001
#> 895         2026          Week 2 Year to date  Local authority    E92000001
#> 896         2026          Week 2 Year to date  Local authority    E92000001
#> 897         2026          Week 2 Year to date  Local authority    E92000001
#> 898         2026          Week 2 Year to date  Local authority    E92000001
#> 899         2026          Week 2 Year to date  Local authority    E92000001
#> 900         2026          Week 2 Year to date  Local authority    E92000001
#> 901         2026          Week 2 Year to date  Local authority    E92000001
#> 902         2026          Week 2 Year to date  Local authority    E92000001
#> 903         2026          Week 2 Year to date  Local authority    E92000001
#> 904         2026          Week 2 Year to date  Local authority    E92000001
#> 905         2026          Week 2 Year to date  Local authority    E92000001
#> 906         2026          Week 2 Year to date  Local authority    E92000001
#> 907         2026          Week 2 Year to date  Local authority    E92000001
#> 908         2026          Week 2 Year to date  Local authority    E92000001
#> 909         2026          Week 2 Year to date  Local authority    E92000001
#> 910         2026          Week 2 Year to date  Local authority    E92000001
#> 911         2026          Week 2 Year to date         Regional    E92000001
#> 912         2026          Week 2 Year to date         Regional    E92000001
#> 913         2026          Week 2 Year to date         Regional    E92000001
#> 914         2026          Week 2 Year to date         Regional    E92000001
#> 915         2026          Week 2 Year to date  Local authority    E92000001
#> 916         2026          Week 2 Year to date  Local authority    E92000001
#> 917         2026          Week 2 Year to date  Local authority    E92000001
#> 918         2026          Week 2 Year to date  Local authority    E92000001
#> 919         2026          Week 2 Year to date  Local authority    E92000001
#> 920         2026          Week 2 Year to date  Local authority    E92000001
#> 921         2026          Week 2 Year to date  Local authority    E92000001
#> 922         2026          Week 2 Year to date  Local authority    E92000001
#> 923         2026          Week 2 Year to date  Local authority    E92000001
#> 924         2026          Week 2 Year to date  Local authority    E92000001
#> 925         2026          Week 2 Year to date  Local authority    E92000001
#> 926         2026          Week 2 Year to date  Local authority    E92000001
#> 927         2026          Week 2 Year to date  Local authority    E92000001
#> 928         2026          Week 2 Year to date  Local authority    E92000001
#> 929         2026          Week 2 Year to date  Local authority    E92000001
#> 930         2026          Week 2 Year to date  Local authority    E92000001
#> 931         2026          Week 2 Year to date  Local authority    E92000001
#> 932         2026          Week 2 Year to date  Local authority    E92000001
#> 933         2026          Week 2 Year to date  Local authority    E92000001
#> 934         2026          Week 2 Year to date  Local authority    E92000001
#> 935         2026          Week 2 Year to date  Local authority    E92000001
#> 936         2026          Week 2 Year to date  Local authority    E92000001
#> 937         2026          Week 2 Year to date  Local authority    E92000001
#> 938         2026          Week 2 Year to date  Local authority    E92000001
#> 939         2026          Week 2 Year to date  Local authority    E92000001
#> 940         2026          Week 2 Year to date  Local authority    E92000001
#> 941         2026          Week 2 Year to date  Local authority    E92000001
#> 942         2026          Week 2 Year to date  Local authority    E92000001
#> 943         2026          Week 2 Year to date  Local authority    E92000001
#> 944         2026          Week 2 Year to date  Local authority    E92000001
#> 945         2026          Week 2 Year to date  Local authority    E92000001
#> 946         2026          Week 2 Year to date  Local authority    E92000001
#> 947         2026          Week 2 Year to date  Local authority    E92000001
#> 948         2026          Week 2 Year to date  Local authority    E92000001
#> 949         2026          Week 2 Year to date  Local authority    E92000001
#> 950         2026          Week 2 Year to date  Local authority    E92000001
#> 951         2026          Week 2 Year to date  Local authority    E92000001
#> 952         2026          Week 2 Year to date  Local authority    E92000001
#> 953         2026          Week 2 Year to date  Local authority    E92000001
#> 954         2026          Week 2 Year to date  Local authority    E92000001
#> 955         2026          Week 2 Year to date  Local authority    E92000001
#> 956         2026          Week 2 Year to date  Local authority    E92000001
#> 957         2026          Week 2 Year to date  Local authority    E92000001
#> 958         2026          Week 2 Year to date  Local authority    E92000001
#> 959         2026          Week 2 Year to date  Local authority    E92000001
#> 960         2026          Week 2 Year to date  Local authority    E92000001
#> 961         2026          Week 2 Year to date  Local authority    E92000001
#> 962         2026          Week 2 Year to date  Local authority    E92000001
#> 963         2026          Week 2 Year to date  Local authority    E92000001
#> 964         2026          Week 2 Year to date  Local authority    E92000001
#> 965         2026          Week 2 Year to date  Local authority    E92000001
#> 966         2026          Week 2 Year to date  Local authority    E92000001
#> 967         2026          Week 2 Year to date  Local authority    E92000001
#> 968         2026          Week 2 Year to date  Local authority    E92000001
#> 969         2026          Week 2 Year to date  Local authority    E92000001
#> 970         2026          Week 2 Year to date  Local authority    E92000001
#> 971         2026          Week 2 Year to date         Regional    E92000001
#> 972         2026          Week 2 Year to date         Regional    E92000001
#> 973         2026          Week 2 Year to date         Regional    E92000001
#> 974         2026          Week 2 Year to date         Regional    E92000001
#> 975         2026          Week 2 Year to date  Local authority    E92000001
#> 976         2026          Week 2 Year to date  Local authority    E92000001
#> 977         2026          Week 2 Year to date  Local authority    E92000001
#> 978         2026          Week 2 Year to date  Local authority    E92000001
#> 979         2026          Week 2 Year to date  Local authority    E92000001
#> 980         2026          Week 2 Year to date  Local authority    E92000001
#> 981         2026          Week 2 Year to date  Local authority    E92000001
#> 982         2026          Week 2 Year to date  Local authority    E92000001
#> 983         2026          Week 2 Year to date  Local authority    E92000001
#> 984         2026          Week 2 Year to date  Local authority    E92000001
#> 985         2026          Week 2 Year to date  Local authority    E92000001
#> 986         2026          Week 2 Year to date  Local authority    E92000001
#> 987         2026          Week 2 Year to date  Local authority    E92000001
#> 988         2026          Week 2 Year to date  Local authority    E92000001
#> 989         2026          Week 2 Year to date  Local authority    E92000001
#> 990         2026          Week 2 Year to date  Local authority    E92000001
#> 991         2026          Week 2 Year to date  Local authority    E92000001
#> 992         2026          Week 2 Year to date  Local authority    E92000001
#> 993         2026          Week 2 Year to date  Local authority    E92000001
#> 994         2026          Week 2 Year to date  Local authority    E92000001
#> 995         2026          Week 2 Year to date  Local authority    E92000001
#> 996         2026          Week 2 Year to date  Local authority    E92000001
#> 997         2026          Week 2 Year to date  Local authority    E92000001
#> 998         2026          Week 2 Year to date  Local authority    E92000001
#> 999         2026          Week 2 Year to date  Local authority    E92000001
#> 1000        2026          Week 2 Year to date  Local authority    E92000001
#> 1001        2026          Week 2 Year to date  Local authority    E92000001
#> 1002        2026          Week 2 Year to date  Local authority    E92000001
#> 1003        2026          Week 2 Year to date  Local authority    E92000001
#> 1004        2026          Week 2 Year to date  Local authority    E92000001
#> 1005        2026          Week 2 Year to date  Local authority    E92000001
#> 1006        2026          Week 2 Year to date  Local authority    E92000001
#> 1007        2026          Week 2 Year to date  Local authority    E92000001
#> 1008        2026          Week 2 Year to date  Local authority    E92000001
#> 1009        2026          Week 2 Year to date  Local authority    E92000001
#> 1010        2026          Week 2 Year to date  Local authority    E92000001
#> 1011        2026          Week 2 Year to date  Local authority    E92000001
#> 1012        2026          Week 2 Year to date  Local authority    E92000001
#> 1013        2026          Week 2 Year to date  Local authority    E92000001
#> 1014        2026          Week 2 Year to date  Local authority    E92000001
#> 1015        2026          Week 2 Year to date  Local authority    E92000001
#> 1016        2026          Week 2 Year to date  Local authority    E92000001
#> 1017        2026          Week 2 Year to date  Local authority    E92000001
#> 1018        2026          Week 2 Year to date  Local authority    E92000001
#> 1019        2026          Week 2 Year to date         Regional    E92000001
#> 1020        2026          Week 2 Year to date         Regional    E92000001
#> 1021        2026          Week 2 Year to date         Regional    E92000001
#> 1022        2026          Week 2 Year to date         Regional    E92000001
#> 1023        2026          Week 2 Year to date  Local authority    E92000001
#> 1024        2026          Week 2 Year to date  Local authority    E92000001
#> 1025        2026          Week 2 Year to date  Local authority    E92000001
#> 1026        2026          Week 2 Year to date  Local authority    E92000001
#> 1027        2026          Week 2 Year to date  Local authority    E92000001
#> 1028        2026          Week 2 Year to date  Local authority    E92000001
#> 1029        2026          Week 2 Year to date  Local authority    E92000001
#> 1030        2026          Week 2 Year to date  Local authority    E92000001
#> 1031        2026          Week 2 Year to date  Local authority    E92000001
#> 1032        2026          Week 2 Year to date  Local authority    E92000001
#> 1033        2026          Week 2 Year to date  Local authority    E92000001
#> 1034        2026          Week 2 Year to date  Local authority    E92000001
#> 1035        2026          Week 2 Year to date  Local authority    E92000001
#> 1036        2026          Week 2 Year to date  Local authority    E92000001
#> 1037        2026          Week 2 Year to date  Local authority    E92000001
#> 1038        2026          Week 2 Year to date  Local authority    E92000001
#> 1039        2026          Week 2 Year to date  Local authority    E92000001
#> 1040        2026          Week 2 Year to date  Local authority    E92000001
#> 1041        2026          Week 2 Year to date  Local authority    E92000001
#> 1042        2026          Week 2 Year to date  Local authority    E92000001
#> 1043        2026          Week 2 Year to date  Local authority    E92000001
#> 1044        2026          Week 2 Year to date  Local authority    E92000001
#> 1045        2026          Week 2 Year to date  Local authority    E92000001
#> 1046        2026          Week 2 Year to date  Local authority    E92000001
#> 1047        2026          Week 2 Year to date  Local authority    E92000001
#> 1048        2026          Week 2 Year to date  Local authority    E92000001
#> 1049        2026          Week 2 Year to date  Local authority    E92000001
#> 1050        2026          Week 2 Year to date  Local authority    E92000001
#> 1051        2026          Week 2 Year to date  Local authority    E92000001
#> 1052        2026          Week 2 Year to date  Local authority    E92000001
#> 1053        2026          Week 2 Year to date  Local authority    E92000001
#> 1054        2026          Week 2 Year to date  Local authority    E92000001
#> 1055        2026          Week 2 Year to date  Local authority    E92000001
#> 1056        2026          Week 2 Year to date  Local authority    E92000001
#> 1057        2026          Week 2 Year to date  Local authority    E92000001
#> 1058        2026          Week 2 Year to date  Local authority    E92000001
#> 1059        2026          Week 2 Year to date  Local authority    E92000001
#> 1060        2026          Week 2 Year to date  Local authority    E92000001
#> 1061        2026          Week 2 Year to date  Local authority    E92000001
#> 1062        2026          Week 2 Year to date  Local authority    E92000001
#> 1063        2026          Week 2 Year to date  Local authority    E92000001
#> 1064        2026          Week 2 Year to date  Local authority    E92000001
#> 1065        2026          Week 2 Year to date  Local authority    E92000001
#> 1066        2026          Week 2 Year to date  Local authority    E92000001
#> 1067        2026          Week 2 Year to date  Local authority    E92000001
#> 1068        2026          Week 2 Year to date  Local authority    E92000001
#> 1069        2026          Week 2 Year to date  Local authority    E92000001
#> 1070        2026          Week 2 Year to date  Local authority    E92000001
#> 1071        2026          Week 2 Year to date  Local authority    E92000001
#> 1072        2026          Week 2 Year to date  Local authority    E92000001
#> 1073        2026          Week 2 Year to date  Local authority    E92000001
#> 1074        2026          Week 2 Year to date  Local authority    E92000001
#> 1075        2026          Week 2 Year to date  Local authority    E92000001
#> 1076        2026          Week 2 Year to date  Local authority    E92000001
#> 1077        2026          Week 2 Year to date  Local authority    E92000001
#> 1078        2026          Week 2 Year to date  Local authority    E92000001
#> 1079        2026          Week 2 Year to date  Local authority    E92000001
#> 1080        2026          Week 2 Year to date  Local authority    E92000001
#> 1081        2026          Week 2 Year to date  Local authority    E92000001
#> 1082        2026          Week 2 Year to date  Local authority    E92000001
#> 1083        2026          Week 2 Year to date  Local authority    E92000001
#> 1084        2026          Week 2 Year to date  Local authority    E92000001
#> 1085        2026          Week 2 Year to date  Local authority    E92000001
#> 1086        2026          Week 2 Year to date  Local authority    E92000001
#> 1087        2026          Week 2 Year to date  Local authority    E92000001
#> 1088        2026          Week 2 Year to date  Local authority    E92000001
#> 1089        2026          Week 2 Year to date  Local authority    E92000001
#> 1090        2026          Week 2 Year to date  Local authority    E92000001
#> 1091        2026          Week 2 Year to date  Local authority    E92000001
#> 1092        2026          Week 2 Year to date  Local authority    E92000001
#> 1093        2026          Week 2 Year to date  Local authority    E92000001
#> 1094        2026          Week 2 Year to date  Local authority    E92000001
#> 1095        2026          Week 2 Year to date  Local authority    E92000001
#> 1096        2026          Week 2 Year to date  Local authority    E92000001
#> 1097        2026          Week 2 Year to date  Local authority    E92000001
#> 1098        2026          Week 2 Year to date  Local authority    E92000001
#> 1099        2026          Week 2 Year to date  Local authority    E92000001
#> 1100        2026          Week 2 Year to date  Local authority    E92000001
#> 1101        2026          Week 2 Year to date  Local authority    E92000001
#> 1102        2026          Week 2 Year to date  Local authority    E92000001
#> 1103        2026          Week 2 Year to date  Local authority    E92000001
#> 1104        2026          Week 2 Year to date  Local authority    E92000001
#> 1105        2026          Week 2 Year to date  Local authority    E92000001
#> 1106        2026          Week 2 Year to date  Local authority    E92000001
#> 1107        2026          Week 2 Year to date  Local authority    E92000001
#> 1108        2026          Week 2 Year to date  Local authority    E92000001
#> 1109        2026          Week 2 Year to date  Local authority    E92000001
#> 1110        2026          Week 2 Year to date  Local authority    E92000001
#> 1111        2026          Week 2 Year to date  Local authority    E92000001
#> 1112        2026          Week 2 Year to date  Local authority    E92000001
#> 1113        2026          Week 2 Year to date  Local authority    E92000001
#> 1114        2026          Week 2 Year to date  Local authority    E92000001
#> 1115        2026          Week 2 Year to date  Local authority    E92000001
#> 1116        2026          Week 2 Year to date  Local authority    E92000001
#> 1117        2026          Week 2 Year to date  Local authority    E92000001
#> 1118        2026          Week 2 Year to date  Local authority    E92000001
#> 1119        2026          Week 2 Year to date  Local authority    E92000001
#> 1120        2026          Week 2 Year to date  Local authority    E92000001
#> 1121        2026          Week 2 Year to date  Local authority    E92000001
#> 1122        2026          Week 2 Year to date  Local authority    E92000001
#> 1123        2026          Week 2 Year to date  Local authority    E92000001
#> 1124        2026          Week 2 Year to date  Local authority    E92000001
#> 1125        2026          Week 2 Year to date  Local authority    E92000001
#> 1126        2026          Week 2 Year to date  Local authority    E92000001
#> 1127        2026          Week 2 Year to date  Local authority    E92000001
#> 1128        2026          Week 2 Year to date  Local authority    E92000001
#> 1129        2026          Week 2 Year to date  Local authority    E92000001
#> 1130        2026          Week 2 Year to date  Local authority    E92000001
#> 1131        2026          Week 2 Year to date  Local authority    E92000001
#> 1132        2026          Week 2 Year to date  Local authority    E92000001
#> 1133        2026          Week 2 Year to date  Local authority    E92000001
#> 1134        2026          Week 2 Year to date  Local authority    E92000001
#> 1135        2026          Week 2 Year to date  Local authority    E92000001
#> 1136        2026          Week 2 Year to date  Local authority    E92000001
#> 1137        2026          Week 2 Year to date  Local authority    E92000001
#> 1138        2026          Week 2 Year to date  Local authority    E92000001
#> 1139        2026          Week 2 Year to date  Local authority    E92000001
#> 1140        2026          Week 2 Year to date  Local authority    E92000001
#> 1141        2026          Week 2 Year to date  Local authority    E92000001
#> 1142        2026          Week 2 Year to date  Local authority    E92000001
#> 1143        2026          Week 2 Year to date  Local authority    E92000001
#> 1144        2026          Week 2 Year to date  Local authority    E92000001
#> 1145        2026          Week 2 Year to date  Local authority    E92000001
#> 1146        2026          Week 2 Year to date  Local authority    E92000001
#> 1147        2026          Week 2 Year to date  Local authority    E92000001
#> 1148        2026          Week 2 Year to date  Local authority    E92000001
#> 1149        2026          Week 2 Year to date  Local authority    E92000001
#> 1150        2026          Week 2 Year to date  Local authority    E92000001
#> 1151        2026          Week 2 Year to date  Local authority    E92000001
#> 1152        2026          Week 2 Year to date  Local authority    E92000001
#> 1153        2026          Week 2 Year to date         Regional    E92000001
#> 1154        2026          Week 2 Year to date         Regional    E92000001
#> 1155        2026          Week 2 Year to date         Regional    E92000001
#> 1156        2026          Week 2 Year to date         Regional    E92000001
#> 1157        2026          Week 2 Year to date  Local authority    E92000001
#> 1158        2026          Week 2 Year to date  Local authority    E92000001
#> 1159        2026          Week 2 Year to date  Local authority    E92000001
#> 1160        2026          Week 2 Year to date  Local authority    E92000001
#> 1161        2026          Week 2 Year to date  Local authority    E92000001
#> 1162        2026          Week 2 Year to date  Local authority    E92000001
#> 1163        2026          Week 2 Year to date  Local authority    E92000001
#> 1164        2026          Week 2 Year to date  Local authority    E92000001
#> 1165        2026          Week 2 Year to date  Local authority    E92000001
#> 1166        2026          Week 2 Year to date  Local authority    E92000001
#> 1167        2026          Week 2 Year to date  Local authority    E92000001
#> 1168        2026          Week 2 Year to date  Local authority    E92000001
#> 1169        2026          Week 2 Year to date  Local authority    E92000001
#> 1170        2026          Week 2 Year to date  Local authority    E92000001
#> 1171        2026          Week 2 Year to date  Local authority    E92000001
#> 1172        2026          Week 2 Year to date  Local authority    E92000001
#> 1173        2026          Week 2 Year to date  Local authority    E92000001
#> 1174        2026          Week 2 Year to date  Local authority    E92000001
#> 1175        2026          Week 2 Year to date  Local authority    E92000001
#> 1176        2026          Week 2 Year to date  Local authority    E92000001
#> 1177        2026          Week 2 Year to date  Local authority    E92000001
#> 1178        2026          Week 2 Year to date  Local authority    E92000001
#> 1179        2026          Week 2 Year to date  Local authority    E92000001
#> 1180        2026          Week 2 Year to date  Local authority    E92000001
#> 1181        2026          Week 2 Year to date  Local authority    E92000001
#> 1182        2026          Week 2 Year to date  Local authority    E92000001
#> 1183        2026          Week 2 Year to date  Local authority    E92000001
#> 1184        2026          Week 2 Year to date  Local authority    E92000001
#> 1185        2026          Week 2 Year to date  Local authority    E92000001
#> 1186        2026          Week 2 Year to date  Local authority    E92000001
#> 1187        2026          Week 2 Year to date  Local authority    E92000001
#> 1188        2026          Week 2 Year to date  Local authority    E92000001
#> 1189        2026          Week 2 Year to date  Local authority    E92000001
#> 1190        2026          Week 2 Year to date  Local authority    E92000001
#> 1191        2026          Week 2 Year to date  Local authority    E92000001
#> 1192        2026          Week 2 Year to date  Local authority    E92000001
#> 1193        2026          Week 2 Year to date  Local authority    E92000001
#> 1194        2026          Week 2 Year to date  Local authority    E92000001
#> 1195        2026          Week 2 Year to date  Local authority    E92000001
#> 1196        2026          Week 2 Year to date  Local authority    E92000001
#> 1197        2026          Week 2 Year to date  Local authority    E92000001
#> 1198        2026          Week 2 Year to date  Local authority    E92000001
#> 1199        2026          Week 2 Year to date  Local authority    E92000001
#> 1200        2026          Week 2 Year to date  Local authority    E92000001
#> 1201        2026          Week 2 Year to date  Local authority    E92000001
#> 1202        2026          Week 2 Year to date  Local authority    E92000001
#> 1203        2026          Week 2 Year to date  Local authority    E92000001
#> 1204        2026          Week 2 Year to date  Local authority    E92000001
#> 1205        2026          Week 2 Year to date  Local authority    E92000001
#> 1206        2026          Week 2 Year to date  Local authority    E92000001
#> 1207        2026          Week 2 Year to date  Local authority    E92000001
#> 1208        2026          Week 2 Year to date  Local authority    E92000001
#> 1209        2026          Week 2 Year to date  Local authority    E92000001
#> 1210        2026          Week 2 Year to date  Local authority    E92000001
#> 1211        2026          Week 2 Year to date  Local authority    E92000001
#> 1212        2026          Week 2 Year to date  Local authority    E92000001
#> 1213        2026          Week 2 Year to date  Local authority    E92000001
#> 1214        2026          Week 2 Year to date  Local authority    E92000001
#> 1215        2026          Week 2 Year to date  Local authority    E92000001
#> 1216        2026          Week 2 Year to date  Local authority    E92000001
#> 1217        2026          Week 2 Year to date  Local authority    E92000001
#> 1218        2026          Week 2 Year to date  Local authority    E92000001
#> 1219        2026          Week 2 Year to date  Local authority    E92000001
#> 1220        2026          Week 2 Year to date  Local authority    E92000001
#> 1221        2026          Week 2 Year to date  Local authority    E92000001
#> 1222        2026          Week 2 Year to date  Local authority    E92000001
#> 1223        2026          Week 2 Year to date  Local authority    E92000001
#> 1224        2026          Week 2 Year to date  Local authority    E92000001
#> 1225        2026          Week 2 Year to date  Local authority    E92000001
#> 1226        2026          Week 2 Year to date  Local authority    E92000001
#> 1227        2026          Week 2 Year to date  Local authority    E92000001
#> 1228        2026          Week 2 Year to date  Local authority    E92000001
#> 1229        2026          Week 2 Year to date  Local authority    E92000001
#> 1230        2026          Week 2 Year to date  Local authority    E92000001
#> 1231        2026          Week 2 Year to date  Local authority    E92000001
#> 1232        2026          Week 2 Year to date  Local authority    E92000001
#> 1233        2026          Week 2 Year to date         Regional    E92000001
#> 1234        2026          Week 2 Year to date         Regional    E92000001
#> 1235        2026          Week 2 Year to date         Regional    E92000001
#> 1236        2026          Week 2 Year to date         Regional    E92000001
#> 1237        2026          Week 2 Year to date  Local authority    E92000001
#> 1238        2026          Week 2 Year to date  Local authority    E92000001
#> 1239        2026          Week 2 Year to date  Local authority    E92000001
#> 1240        2026          Week 2 Year to date  Local authority    E92000001
#> 1241        2026          Week 2 Year to date  Local authority    E92000001
#> 1242        2026          Week 2 Year to date  Local authority    E92000001
#> 1243        2026          Week 2 Year to date  Local authority    E92000001
#> 1244        2026          Week 2 Year to date  Local authority    E92000001
#> 1245        2026          Week 2 Year to date  Local authority    E92000001
#> 1246        2026          Week 2 Year to date  Local authority    E92000001
#> 1247        2026          Week 2 Year to date  Local authority    E92000001
#> 1248        2026          Week 2 Year to date  Local authority    E92000001
#> 1249        2026          Week 2 Year to date  Local authority    E92000001
#> 1250        2026          Week 2 Year to date  Local authority    E92000001
#> 1251        2026          Week 2 Year to date  Local authority    E92000001
#> 1252        2026          Week 2 Year to date  Local authority    E92000001
#> 1253        2026          Week 2 Year to date  Local authority    E92000001
#> 1254        2026          Week 2 Year to date  Local authority    E92000001
#> 1255        2026          Week 2 Year to date  Local authority    E92000001
#> 1256        2026          Week 2 Year to date  Local authority    E92000001
#> 1257        2026          Week 2 Year to date  Local authority    E92000001
#> 1258        2026          Week 2 Year to date  Local authority    E92000001
#> 1259        2026          Week 2 Year to date  Local authority    E92000001
#> 1260        2026          Week 2 Year to date  Local authority    E92000001
#> 1261        2026          Week 2 Year to date  Local authority    E92000001
#> 1262        2026          Week 2 Year to date  Local authority    E92000001
#> 1263        2026          Week 2 Year to date  Local authority    E92000001
#> 1264        2026          Week 2 Year to date  Local authority    E92000001
#> 1265        2026          Week 2 Year to date  Local authority    E92000001
#> 1266        2026          Week 2 Year to date  Local authority    E92000001
#> 1267        2026          Week 2 Year to date  Local authority    E92000001
#> 1268        2026          Week 2 Year to date  Local authority    E92000001
#> 1269        2026          Week 2 Year to date  Local authority    E92000001
#> 1270        2026          Week 2 Year to date  Local authority    E92000001
#> 1271        2026          Week 2 Year to date  Local authority    E92000001
#> 1272        2026          Week 2 Year to date  Local authority    E92000001
#> 1273        2026          Week 2 Year to date  Local authority    E92000001
#> 1274        2026          Week 2 Year to date  Local authority    E92000001
#> 1275        2026          Week 2 Year to date  Local authority    E92000001
#> 1276        2026          Week 2 Year to date  Local authority    E92000001
#> 1277        2026          Week 2 Year to date  Local authority    E92000001
#> 1278        2026          Week 2 Year to date  Local authority    E92000001
#> 1279        2026          Week 2 Year to date  Local authority    E92000001
#> 1280        2026          Week 2 Year to date  Local authority    E92000001
#> 1281        2026          Week 2 Year to date  Local authority    E92000001
#> 1282        2026          Week 2 Year to date  Local authority    E92000001
#> 1283        2026          Week 2 Year to date  Local authority    E92000001
#> 1284        2026          Week 2 Year to date  Local authority    E92000001
#> 1285        2026          Week 2 Year to date  Local authority    E92000001
#> 1286        2026          Week 2 Year to date  Local authority    E92000001
#> 1287        2026          Week 2 Year to date  Local authority    E92000001
#> 1288        2026          Week 2 Year to date  Local authority    E92000001
#> 1289        2026          Week 2 Year to date  Local authority    E92000001
#> 1290        2026          Week 2 Year to date  Local authority    E92000001
#> 1291        2026          Week 2 Year to date  Local authority    E92000001
#> 1292        2026          Week 2 Year to date  Local authority    E92000001
#> 1293        2026          Week 2 Year to date  Local authority    E92000001
#> 1294        2026          Week 2 Year to date  Local authority    E92000001
#> 1295        2025         Week 30 Year to date         National    E92000001
#> 1296        2025         Week 30 Year to date         National    E92000001
#> 1297        2025         Week 30 Year to date         National    E92000001
#> 1298        2025         Week 30 Year to date         National    E92000001
#> 1299        2025         Week 30 Year to date         Regional    E92000001
#> 1300        2025         Week 30 Year to date         Regional    E92000001
#> 1301        2025         Week 30 Year to date         Regional    E92000001
#> 1302        2025         Week 30 Year to date         Regional    E92000001
#> 1303        2025         Week 30 Year to date  Local authority    E92000001
#> 1304        2025         Week 30 Year to date  Local authority    E92000001
#> 1305        2025         Week 30 Year to date  Local authority    E92000001
#> 1306        2025         Week 30 Year to date  Local authority    E92000001
#> 1307        2025         Week 30 Year to date  Local authority    E92000001
#> 1308        2025         Week 30 Year to date  Local authority    E92000001
#> 1309        2025         Week 30 Year to date  Local authority    E92000001
#> 1310        2025         Week 30 Year to date  Local authority    E92000001
#> 1311        2025         Week 30 Year to date  Local authority    E92000001
#> 1312        2025         Week 30 Year to date  Local authority    E92000001
#> 1313        2025         Week 30 Year to date  Local authority    E92000001
#> 1314        2025         Week 30 Year to date  Local authority    E92000001
#> 1315        2025         Week 30 Year to date  Local authority    E92000001
#> 1316        2025         Week 30 Year to date  Local authority    E92000001
#> 1317        2025         Week 30 Year to date  Local authority    E92000001
#> 1318        2025         Week 30 Year to date  Local authority    E92000001
#> 1319        2025         Week 30 Year to date  Local authority    E92000001
#> 1320        2025         Week 30 Year to date  Local authority    E92000001
#> 1321        2025         Week 30 Year to date  Local authority    E92000001
#> 1322        2025         Week 30 Year to date  Local authority    E92000001
#> 1323        2025         Week 30 Year to date  Local authority    E92000001
#> 1324        2025         Week 30 Year to date  Local authority    E92000001
#> 1325        2025         Week 30 Year to date  Local authority    E92000001
#> 1326        2025         Week 30 Year to date  Local authority    E92000001
#> 1327        2025         Week 30 Year to date  Local authority    E92000001
#> 1328        2025         Week 30 Year to date  Local authority    E92000001
#> 1329        2025         Week 30 Year to date  Local authority    E92000001
#> 1330        2025         Week 30 Year to date  Local authority    E92000001
#> 1331        2025         Week 30 Year to date  Local authority    E92000001
#> 1332        2025         Week 30 Year to date  Local authority    E92000001
#> 1333        2025         Week 30 Year to date  Local authority    E92000001
#> 1334        2025         Week 30 Year to date  Local authority    E92000001
#> 1335        2025         Week 30 Year to date  Local authority    E92000001
#> 1336        2025         Week 30 Year to date  Local authority    E92000001
#> 1337        2025         Week 30 Year to date  Local authority    E92000001
#> 1338        2025         Week 30 Year to date  Local authority    E92000001
#> 1339        2025         Week 30 Year to date         Regional    E92000001
#> 1340        2025         Week 30 Year to date         Regional    E92000001
#> 1341        2025         Week 30 Year to date         Regional    E92000001
#> 1342        2025         Week 30 Year to date         Regional    E92000001
#> 1343        2025         Week 30 Year to date  Local authority    E92000001
#> 1344        2025         Week 30 Year to date  Local authority    E92000001
#> 1345        2025         Week 30 Year to date  Local authority    E92000001
#> 1346        2025         Week 30 Year to date  Local authority    E92000001
#> 1347        2025         Week 30 Year to date  Local authority    E92000001
#> 1348        2025         Week 30 Year to date  Local authority    E92000001
#> 1349        2025         Week 30 Year to date  Local authority    E92000001
#> 1350        2025         Week 30 Year to date  Local authority    E92000001
#> 1351        2025         Week 30 Year to date  Local authority    E92000001
#> 1352        2025         Week 30 Year to date  Local authority    E92000001
#> 1353        2025         Week 30 Year to date  Local authority    E92000001
#> 1354        2025         Week 30 Year to date  Local authority    E92000001
#> 1355        2025         Week 30 Year to date  Local authority    E92000001
#> 1356        2025         Week 30 Year to date  Local authority    E92000001
#> 1357        2025         Week 30 Year to date  Local authority    E92000001
#> 1358        2025         Week 30 Year to date  Local authority    E92000001
#> 1359        2025         Week 30 Year to date  Local authority    E92000001
#> 1360        2025         Week 30 Year to date  Local authority    E92000001
#> 1361        2025         Week 30 Year to date  Local authority    E92000001
#> 1362        2025         Week 30 Year to date  Local authority    E92000001
#> 1363        2025         Week 30 Year to date  Local authority    E92000001
#> 1364        2025         Week 30 Year to date  Local authority    E92000001
#> 1365        2025         Week 30 Year to date  Local authority    E92000001
#> 1366        2025         Week 30 Year to date  Local authority    E92000001
#> 1367        2025         Week 30 Year to date  Local authority    E92000001
#> 1368        2025         Week 30 Year to date  Local authority    E92000001
#> 1369        2025         Week 30 Year to date  Local authority    E92000001
#> 1370        2025         Week 30 Year to date  Local authority    E92000001
#> 1371        2025         Week 30 Year to date  Local authority    E92000001
#> 1372        2025         Week 30 Year to date  Local authority    E92000001
#> 1373        2025         Week 30 Year to date  Local authority    E92000001
#> 1374        2025         Week 30 Year to date  Local authority    E92000001
#> 1375        2025         Week 30 Year to date  Local authority    E92000001
#> 1376        2025         Week 30 Year to date  Local authority    E92000001
#> 1377        2025         Week 30 Year to date  Local authority    E92000001
#> 1378        2025         Week 30 Year to date  Local authority    E92000001
#> 1379        2025         Week 30 Year to date  Local authority    E92000001
#> 1380        2025         Week 30 Year to date  Local authority    E92000001
#> 1381        2025         Week 30 Year to date  Local authority    E92000001
#> 1382        2025         Week 30 Year to date  Local authority    E92000001
#> 1383        2025         Week 30 Year to date  Local authority    E92000001
#> 1384        2025         Week 30 Year to date  Local authority    E92000001
#> 1385        2025         Week 30 Year to date  Local authority    E92000001
#> 1386        2025         Week 30 Year to date  Local authority    E92000001
#> 1387        2025         Week 30 Year to date  Local authority    E92000001
#> 1388        2025         Week 30 Year to date  Local authority    E92000001
#> 1389        2025         Week 30 Year to date  Local authority    E92000001
#> 1390        2025         Week 30 Year to date  Local authority    E92000001
#> 1391        2025         Week 30 Year to date  Local authority    E92000001
#> 1392        2025         Week 30 Year to date  Local authority    E92000001
#> 1393        2025         Week 30 Year to date  Local authority    E92000001
#> 1394        2025         Week 30 Year to date  Local authority    E92000001
#> 1395        2025         Week 30 Year to date  Local authority    E92000001
#> 1396        2025         Week 30 Year to date  Local authority    E92000001
#> 1397        2025         Week 30 Year to date  Local authority    E92000001
#> 1398        2025         Week 30 Year to date  Local authority    E92000001
#> 1399        2025         Week 30 Year to date  Local authority    E92000001
#> 1400        2025         Week 30 Year to date  Local authority    E92000001
#> 1401        2025         Week 30 Year to date  Local authority    E92000001
#> 1402        2025         Week 30 Year to date  Local authority    E92000001
#> 1403        2025         Week 30 Year to date  Local authority    E92000001
#> 1404        2025         Week 30 Year to date  Local authority    E92000001
#> 1405        2025         Week 30 Year to date  Local authority    E92000001
#> 1406        2025         Week 30 Year to date  Local authority    E92000001
#> 1407        2025         Week 30 Year to date  Local authority    E92000001
#> 1408        2025         Week 30 Year to date  Local authority    E92000001
#> 1409        2025         Week 30 Year to date  Local authority    E92000001
#> 1410        2025         Week 30 Year to date  Local authority    E92000001
#> 1411        2025         Week 30 Year to date  Local authority    E92000001
#> 1412        2025         Week 30 Year to date  Local authority    E92000001
#> 1413        2025         Week 30 Year to date  Local authority    E92000001
#> 1414        2025         Week 30 Year to date  Local authority    E92000001
#> 1415        2025         Week 30 Year to date         Regional    E92000001
#> 1416        2025         Week 30 Year to date         Regional    E92000001
#> 1417        2025         Week 30 Year to date         Regional    E92000001
#> 1418        2025         Week 30 Year to date         Regional    E92000001
#> 1419        2025         Week 30 Year to date  Local authority    E92000001
#> 1420        2025         Week 30 Year to date  Local authority    E92000001
#> 1421        2025         Week 30 Year to date  Local authority    E92000001
#> 1422        2025         Week 30 Year to date  Local authority    E92000001
#> 1423        2025         Week 30 Year to date  Local authority    E92000001
#> 1424        2025         Week 30 Year to date  Local authority    E92000001
#> 1425        2025         Week 30 Year to date  Local authority    E92000001
#> 1426        2025         Week 30 Year to date  Local authority    E92000001
#> 1427        2025         Week 30 Year to date  Local authority    E92000001
#> 1428        2025         Week 30 Year to date  Local authority    E92000001
#> 1429        2025         Week 30 Year to date  Local authority    E92000001
#> 1430        2025         Week 30 Year to date  Local authority    E92000001
#> 1431        2025         Week 30 Year to date  Local authority    E92000001
#> 1432        2025         Week 30 Year to date  Local authority    E92000001
#> 1433        2025         Week 30 Year to date  Local authority    E92000001
#> 1434        2025         Week 30 Year to date  Local authority    E92000001
#> 1435        2025         Week 30 Year to date  Local authority    E92000001
#> 1436        2025         Week 30 Year to date  Local authority    E92000001
#> 1437        2025         Week 30 Year to date  Local authority    E92000001
#> 1438        2025         Week 30 Year to date  Local authority    E92000001
#> 1439        2025         Week 30 Year to date  Local authority    E92000001
#> 1440        2025         Week 30 Year to date  Local authority    E92000001
#> 1441        2025         Week 30 Year to date  Local authority    E92000001
#> 1442        2025         Week 30 Year to date  Local authority    E92000001
#> 1443        2025         Week 30 Year to date  Local authority    E92000001
#> 1444        2025         Week 30 Year to date  Local authority    E92000001
#> 1445        2025         Week 30 Year to date  Local authority    E92000001
#> 1446        2025         Week 30 Year to date  Local authority    E92000001
#> 1447        2025         Week 30 Year to date  Local authority    E92000001
#> 1448        2025         Week 30 Year to date  Local authority    E92000001
#> 1449        2025         Week 30 Year to date  Local authority    E92000001
#> 1450        2025         Week 30 Year to date  Local authority    E92000001
#> 1451        2025         Week 30 Year to date  Local authority    E92000001
#> 1452        2025         Week 30 Year to date  Local authority    E92000001
#> 1453        2025         Week 30 Year to date  Local authority    E92000001
#> 1454        2025         Week 30 Year to date  Local authority    E92000001
#> 1455        2025         Week 30 Year to date  Local authority    E92000001
#> 1456        2025         Week 30 Year to date  Local authority    E92000001
#> 1457        2025         Week 30 Year to date  Local authority    E92000001
#> 1458        2025         Week 30 Year to date  Local authority    E92000001
#> 1459        2025         Week 30 Year to date  Local authority    E92000001
#> 1460        2025         Week 30 Year to date  Local authority    E92000001
#> 1461        2025         Week 30 Year to date  Local authority    E92000001
#> 1462        2025         Week 30 Year to date  Local authority    E92000001
#> 1463        2025         Week 30 Year to date  Local authority    E92000001
#> 1464        2025         Week 30 Year to date         Regional    E92000001
#> 1465        2025         Week 30 Year to date         Regional    E92000001
#> 1466        2025         Week 30 Year to date         Regional    E92000001
#> 1467        2025         Week 30 Year to date         Regional    E92000001
#> 1468        2025         Week 30 Year to date  Local authority    E92000001
#> 1469        2025         Week 30 Year to date  Local authority    E92000001
#> 1470        2025         Week 30 Year to date  Local authority    E92000001
#> 1471        2025         Week 30 Year to date  Local authority    E92000001
#> 1472        2025         Week 30 Year to date  Local authority    E92000001
#> 1473        2025         Week 30 Year to date  Local authority    E92000001
#> 1474        2025         Week 30 Year to date  Local authority    E92000001
#> 1475        2025         Week 30 Year to date  Local authority    E92000001
#> 1476        2025         Week 30 Year to date  Local authority    E92000001
#> 1477        2025         Week 30 Year to date  Local authority    E92000001
#> 1478        2025         Week 30 Year to date  Local authority    E92000001
#> 1479        2025         Week 30 Year to date  Local authority    E92000001
#> 1480        2025         Week 30 Year to date  Local authority    E92000001
#> 1481        2025         Week 30 Year to date  Local authority    E92000001
#> 1482        2025         Week 30 Year to date  Local authority    E92000001
#> 1483        2025         Week 30 Year to date  Local authority    E92000001
#> 1484        2025         Week 30 Year to date  Local authority    E92000001
#> 1485        2025         Week 30 Year to date  Local authority    E92000001
#> 1486        2025         Week 30 Year to date  Local authority    E92000001
#> 1487        2025         Week 30 Year to date  Local authority    E92000001
#> 1488        2025         Week 30 Year to date  Local authority    E92000001
#> 1489        2025         Week 30 Year to date  Local authority    E92000001
#> 1490        2025         Week 30 Year to date  Local authority    E92000001
#> 1491        2025         Week 30 Year to date  Local authority    E92000001
#> 1492        2025         Week 30 Year to date  Local authority    E92000001
#> 1493        2025         Week 30 Year to date  Local authority    E92000001
#> 1494        2025         Week 30 Year to date  Local authority    E92000001
#> 1495        2025         Week 30 Year to date  Local authority    E92000001
#> 1496        2025         Week 30 Year to date  Local authority    E92000001
#> 1497        2025         Week 30 Year to date         Regional    E92000001
#> 1498        2025         Week 30 Year to date         Regional    E92000001
#> 1499        2025         Week 30 Year to date         Regional    E92000001
#> 1500        2025         Week 30 Year to date         Regional    E92000001
#> 1501        2025         Week 30 Year to date  Local authority    E92000001
#> 1502        2025         Week 30 Year to date  Local authority    E92000001
#> 1503        2025         Week 30 Year to date  Local authority    E92000001
#> 1504        2025         Week 30 Year to date  Local authority    E92000001
#> 1505        2025         Week 30 Year to date  Local authority    E92000001
#> 1506        2025         Week 30 Year to date  Local authority    E92000001
#> 1507        2025         Week 30 Year to date  Local authority    E92000001
#> 1508        2025         Week 30 Year to date  Local authority    E92000001
#> 1509        2025         Week 30 Year to date  Local authority    E92000001
#> 1510        2025         Week 30 Year to date  Local authority    E92000001
#> 1511        2025         Week 30 Year to date  Local authority    E92000001
#> 1512        2025         Week 30 Year to date  Local authority    E92000001
#> 1513        2025         Week 30 Year to date  Local authority    E92000001
#> 1514        2025         Week 30 Year to date  Local authority    E92000001
#> 1515        2025         Week 30 Year to date  Local authority    E92000001
#> 1516        2025         Week 30 Year to date  Local authority    E92000001
#> 1517        2025         Week 30 Year to date  Local authority    E92000001
#> 1518        2025         Week 30 Year to date  Local authority    E92000001
#> 1519        2025         Week 30 Year to date  Local authority    E92000001
#> 1520        2025         Week 30 Year to date  Local authority    E92000001
#> 1521        2025         Week 30 Year to date  Local authority    E92000001
#> 1522        2025         Week 30 Year to date  Local authority    E92000001
#> 1523        2025         Week 30 Year to date  Local authority    E92000001
#> 1524        2025         Week 30 Year to date  Local authority    E92000001
#> 1525        2025         Week 30 Year to date  Local authority    E92000001
#> 1526        2025         Week 30 Year to date  Local authority    E92000001
#> 1527        2025         Week 30 Year to date  Local authority    E92000001
#> 1528        2025         Week 30 Year to date  Local authority    E92000001
#> 1529        2025         Week 30 Year to date  Local authority    E92000001
#> 1530        2025         Week 30 Year to date  Local authority    E92000001
#> 1531        2025         Week 30 Year to date  Local authority    E92000001
#> 1532        2025         Week 30 Year to date  Local authority    E92000001
#> 1533        2025         Week 30 Year to date  Local authority    E92000001
#> 1534        2025         Week 30 Year to date  Local authority    E92000001
#> 1535        2025         Week 30 Year to date  Local authority    E92000001
#> 1536        2025         Week 30 Year to date  Local authority    E92000001
#> 1537        2025         Week 30 Year to date  Local authority    E92000001
#> 1538        2025         Week 30 Year to date  Local authority    E92000001
#> 1539        2025         Week 30 Year to date  Local authority    E92000001
#> 1540        2025         Week 30 Year to date  Local authority    E92000001
#> 1541        2025         Week 30 Year to date  Local authority    E92000001
#> 1542        2025         Week 30 Year to date  Local authority    E92000001
#> 1543        2025         Week 30 Year to date         Regional    E92000001
#> 1544        2025         Week 30 Year to date         Regional    E92000001
#> 1545        2025         Week 30 Year to date         Regional    E92000001
#> 1546        2025         Week 30 Year to date         Regional    E92000001
#> 1547        2025         Week 30 Year to date  Local authority    E92000001
#> 1548        2025         Week 30 Year to date  Local authority    E92000001
#> 1549        2025         Week 30 Year to date  Local authority    E92000001
#> 1550        2025         Week 30 Year to date  Local authority    E92000001
#> 1551        2025         Week 30 Year to date  Local authority    E92000001
#> 1552        2025         Week 30 Year to date  Local authority    E92000001
#> 1553        2025         Week 30 Year to date  Local authority    E92000001
#> 1554        2025         Week 30 Year to date  Local authority    E92000001
#> 1555        2025         Week 30 Year to date  Local authority    E92000001
#> 1556        2025         Week 30 Year to date  Local authority    E92000001
#> 1557        2025         Week 30 Year to date  Local authority    E92000001
#> 1558        2025         Week 30 Year to date  Local authority    E92000001
#> 1559        2025         Week 30 Year to date  Local authority    E92000001
#> 1560        2025         Week 30 Year to date  Local authority    E92000001
#> 1561        2025         Week 30 Year to date  Local authority    E92000001
#> 1562        2025         Week 30 Year to date  Local authority    E92000001
#> 1563        2025         Week 30 Year to date  Local authority    E92000001
#> 1564        2025         Week 30 Year to date  Local authority    E92000001
#> 1565        2025         Week 30 Year to date  Local authority    E92000001
#> 1566        2025         Week 30 Year to date  Local authority    E92000001
#> 1567        2025         Week 30 Year to date  Local authority    E92000001
#> 1568        2025         Week 30 Year to date  Local authority    E92000001
#> 1569        2025         Week 30 Year to date  Local authority    E92000001
#> 1570        2025         Week 30 Year to date  Local authority    E92000001
#> 1571        2025         Week 30 Year to date  Local authority    E92000001
#> 1572        2025         Week 30 Year to date  Local authority    E92000001
#> 1573        2025         Week 30 Year to date  Local authority    E92000001
#> 1574        2025         Week 30 Year to date  Local authority    E92000001
#> 1575        2025         Week 30 Year to date  Local authority    E92000001
#> 1576        2025         Week 30 Year to date  Local authority    E92000001
#> 1577        2025         Week 30 Year to date  Local authority    E92000001
#> 1578        2025         Week 30 Year to date  Local authority    E92000001
#> 1579        2025         Week 30 Year to date  Local authority    E92000001
#> 1580        2025         Week 30 Year to date         Regional    E92000001
#> 1581        2025         Week 30 Year to date         Regional    E92000001
#> 1582        2025         Week 30 Year to date         Regional    E92000001
#> 1583        2025         Week 30 Year to date         Regional    E92000001
#> 1584        2025         Week 30 Year to date  Local authority    E92000001
#> 1585        2025         Week 30 Year to date  Local authority    E92000001
#> 1586        2025         Week 30 Year to date  Local authority    E92000001
#> 1587        2025         Week 30 Year to date  Local authority    E92000001
#> 1588        2025         Week 30 Year to date  Local authority    E92000001
#> 1589        2025         Week 30 Year to date  Local authority    E92000001
#> 1590        2025         Week 30 Year to date  Local authority    E92000001
#> 1591        2025         Week 30 Year to date  Local authority    E92000001
#> 1592        2025         Week 30 Year to date  Local authority    E92000001
#> 1593        2025         Week 30 Year to date  Local authority    E92000001
#> 1594        2025         Week 30 Year to date  Local authority    E92000001
#> 1595        2025         Week 30 Year to date  Local authority    E92000001
#> 1596        2025         Week 30 Year to date  Local authority    E92000001
#> 1597        2025         Week 30 Year to date  Local authority    E92000001
#> 1598        2025         Week 30 Year to date  Local authority    E92000001
#> 1599        2025         Week 30 Year to date  Local authority    E92000001
#> 1600        2025         Week 30 Year to date  Local authority    E92000001
#> 1601        2025         Week 30 Year to date  Local authority    E92000001
#> 1602        2025         Week 30 Year to date  Local authority    E92000001
#> 1603        2025         Week 30 Year to date  Local authority    E92000001
#> 1604        2025         Week 30 Year to date  Local authority    E92000001
#> 1605        2025         Week 30 Year to date  Local authority    E92000001
#> 1606        2025         Week 30 Year to date  Local authority    E92000001
#> 1607        2025         Week 30 Year to date  Local authority    E92000001
#> 1608        2025         Week 30 Year to date  Local authority    E92000001
#> 1609        2025         Week 30 Year to date  Local authority    E92000001
#> 1610        2025         Week 30 Year to date  Local authority    E92000001
#> 1611        2025         Week 30 Year to date  Local authority    E92000001
#> 1612        2025         Week 30 Year to date  Local authority    E92000001
#> 1613        2025         Week 30 Year to date  Local authority    E92000001
#> 1614        2025         Week 30 Year to date  Local authority    E92000001
#> 1615        2025         Week 30 Year to date  Local authority    E92000001
#> 1616        2025         Week 30 Year to date  Local authority    E92000001
#> 1617        2025         Week 30 Year to date  Local authority    E92000001
#> 1618        2025         Week 30 Year to date  Local authority    E92000001
#> 1619        2025         Week 30 Year to date  Local authority    E92000001
#> 1620        2025         Week 30 Year to date  Local authority    E92000001
#> 1621        2025         Week 30 Year to date  Local authority    E92000001
#> 1622        2025         Week 30 Year to date  Local authority    E92000001
#> 1623        2025         Week 30 Year to date  Local authority    E92000001
#> 1624        2025         Week 30 Year to date  Local authority    E92000001
#> 1625        2025         Week 30 Year to date  Local authority    E92000001
#> 1626        2025         Week 30 Year to date  Local authority    E92000001
#> 1627        2025         Week 30 Year to date  Local authority    E92000001
#> 1628        2025         Week 30 Year to date  Local authority    E92000001
#> 1629        2025         Week 30 Year to date  Local authority    E92000001
#> 1630        2025         Week 30 Year to date  Local authority    E92000001
#> 1631        2025         Week 30 Year to date  Local authority    E92000001
#> 1632        2025         Week 30 Year to date  Local authority    E92000001
#> 1633        2025         Week 30 Year to date  Local authority    E92000001
#> 1634        2025         Week 30 Year to date  Local authority    E92000001
#> 1635        2025         Week 30 Year to date  Local authority    E92000001
#> 1636        2025         Week 30 Year to date  Local authority    E92000001
#> 1637        2025         Week 30 Year to date  Local authority    E92000001
#> 1638        2025         Week 30 Year to date  Local authority    E92000001
#> 1639        2025         Week 30 Year to date  Local authority    E92000001
#> 1640        2025         Week 30 Year to date  Local authority    E92000001
#> 1641        2025         Week 30 Year to date  Local authority    E92000001
#> 1642        2025         Week 30 Year to date  Local authority    E92000001
#> 1643        2025         Week 30 Year to date  Local authority    E92000001
#> 1644        2025         Week 30 Year to date  Local authority    E92000001
#> 1645        2025         Week 30 Year to date  Local authority    E92000001
#> 1646        2025         Week 30 Year to date  Local authority    E92000001
#> 1647        2025         Week 30 Year to date  Local authority    E92000001
#> 1648        2025         Week 30 Year to date  Local authority    E92000001
#> 1649        2025         Week 30 Year to date  Local authority    E92000001
#> 1650        2025         Week 30 Year to date  Local authority    E92000001
#> 1651        2025         Week 30 Year to date  Local authority    E92000001
#> 1652        2025         Week 30 Year to date  Local authority    E92000001
#> 1653        2025         Week 30 Year to date  Local authority    E92000001
#> 1654        2025         Week 30 Year to date  Local authority    E92000001
#> 1655        2025         Week 30 Year to date  Local authority    E92000001
#> 1656        2025         Week 30 Year to date  Local authority    E92000001
#> 1657        2025         Week 30 Year to date  Local authority    E92000001
#> 1658        2025         Week 30 Year to date  Local authority    E92000001
#> 1659        2025         Week 30 Year to date  Local authority    E92000001
#> 1660        2025         Week 30 Year to date  Local authority    E92000001
#> 1661        2025         Week 30 Year to date  Local authority    E92000001
#> 1662        2025         Week 30 Year to date  Local authority    E92000001
#> 1663        2025         Week 30 Year to date  Local authority    E92000001
#> 1664        2025         Week 30 Year to date  Local authority    E92000001
#> 1665        2025         Week 30 Year to date  Local authority    E92000001
#> 1666        2025         Week 30 Year to date  Local authority    E92000001
#> 1667        2025         Week 30 Year to date  Local authority    E92000001
#> 1668        2025         Week 30 Year to date  Local authority    E92000001
#> 1669        2025         Week 30 Year to date  Local authority    E92000001
#> 1670        2025         Week 30 Year to date  Local authority    E92000001
#> 1671        2025         Week 30 Year to date  Local authority    E92000001
#> 1672        2025         Week 30 Year to date  Local authority    E92000001
#> 1673        2025         Week 30 Year to date  Local authority    E92000001
#> 1674        2025         Week 30 Year to date  Local authority    E92000001
#> 1675        2025         Week 30 Year to date  Local authority    E92000001
#> 1676        2025         Week 30 Year to date  Local authority    E92000001
#> 1677        2025         Week 30 Year to date  Local authority    E92000001
#> 1678        2025         Week 30 Year to date  Local authority    E92000001
#> 1679        2025         Week 30 Year to date  Local authority    E92000001
#> 1680        2025         Week 30 Year to date  Local authority    E92000001
#> 1681        2025         Week 30 Year to date         Regional    E92000001
#> 1682        2025         Week 30 Year to date         Regional    E92000001
#> 1683        2025         Week 30 Year to date         Regional    E92000001
#> 1684        2025         Week 30 Year to date         Regional    E92000001
#> 1685        2025         Week 30 Year to date  Local authority    E92000001
#> 1686        2025         Week 30 Year to date  Local authority    E92000001
#> 1687        2025         Week 30 Year to date  Local authority    E92000001
#> 1688        2025         Week 30 Year to date  Local authority    E92000001
#> 1689        2025         Week 30 Year to date  Local authority    E92000001
#> 1690        2025         Week 30 Year to date  Local authority    E92000001
#> 1691        2025         Week 30 Year to date  Local authority    E92000001
#> 1692        2025         Week 30 Year to date  Local authority    E92000001
#> 1693        2025         Week 30 Year to date  Local authority    E92000001
#> 1694        2025         Week 30 Year to date  Local authority    E92000001
#> 1695        2025         Week 30 Year to date  Local authority    E92000001
#> 1696        2025         Week 30 Year to date  Local authority    E92000001
#> 1697        2025         Week 30 Year to date  Local authority    E92000001
#> 1698        2025         Week 30 Year to date  Local authority    E92000001
#> 1699        2025         Week 30 Year to date  Local authority    E92000001
#> 1700        2025         Week 30 Year to date  Local authority    E92000001
#> 1701        2025         Week 30 Year to date  Local authority    E92000001
#> 1702        2025         Week 30 Year to date  Local authority    E92000001
#> 1703        2025         Week 30 Year to date  Local authority    E92000001
#> 1704        2025         Week 30 Year to date  Local authority    E92000001
#> 1705        2025         Week 30 Year to date  Local authority    E92000001
#> 1706        2025         Week 30 Year to date  Local authority    E92000001
#> 1707        2025         Week 30 Year to date  Local authority    E92000001
#> 1708        2025         Week 30 Year to date  Local authority    E92000001
#> 1709        2025         Week 30 Year to date  Local authority    E92000001
#> 1710        2025         Week 30 Year to date  Local authority    E92000001
#> 1711        2025         Week 30 Year to date  Local authority    E92000001
#> 1712        2025         Week 30 Year to date  Local authority    E92000001
#> 1713        2025         Week 30 Year to date  Local authority    E92000001
#> 1714        2025         Week 30 Year to date  Local authority    E92000001
#> 1715        2025         Week 30 Year to date  Local authority    E92000001
#> 1716        2025         Week 30 Year to date  Local authority    E92000001
#> 1717        2025         Week 30 Year to date  Local authority    E92000001
#> 1718        2025         Week 30 Year to date  Local authority    E92000001
#> 1719        2025         Week 30 Year to date  Local authority    E92000001
#> 1720        2025         Week 30 Year to date  Local authority    E92000001
#> 1721        2025         Week 30 Year to date  Local authority    E92000001
#> 1722        2025         Week 30 Year to date  Local authority    E92000001
#> 1723        2025         Week 30 Year to date  Local authority    E92000001
#> 1724        2025         Week 30 Year to date  Local authority    E92000001
#> 1725        2025         Week 30 Year to date  Local authority    E92000001
#> 1726        2025         Week 30 Year to date  Local authority    E92000001
#> 1727        2025         Week 30 Year to date  Local authority    E92000001
#> 1728        2025         Week 30 Year to date  Local authority    E92000001
#> 1729        2025         Week 30 Year to date  Local authority    E92000001
#> 1730        2025         Week 30 Year to date  Local authority    E92000001
#> 1731        2025         Week 30 Year to date  Local authority    E92000001
#> 1732        2025         Week 30 Year to date  Local authority    E92000001
#> 1733        2025         Week 30 Year to date  Local authority    E92000001
#> 1734        2025         Week 30 Year to date  Local authority    E92000001
#> 1735        2025         Week 30 Year to date  Local authority    E92000001
#> 1736        2025         Week 30 Year to date  Local authority    E92000001
#> 1737        2025         Week 30 Year to date  Local authority    E92000001
#> 1738        2025         Week 30 Year to date  Local authority    E92000001
#> 1739        2025         Week 30 Year to date  Local authority    E92000001
#> 1740        2025         Week 30 Year to date  Local authority    E92000001
#> 1741        2025         Week 30 Year to date  Local authority    E92000001
#> 1742        2025         Week 30 Year to date         Regional    E92000001
#> 1743        2025         Week 30 Year to date         Regional    E92000001
#> 1744        2025         Week 30 Year to date         Regional    E92000001
#> 1745        2025         Week 30 Year to date         Regional    E92000001
#> 1746        2025         Week 30 Year to date  Local authority    E92000001
#> 1747        2025         Week 30 Year to date  Local authority    E92000001
#> 1748        2025         Week 30 Year to date  Local authority    E92000001
#> 1749        2025         Week 30 Year to date  Local authority    E92000001
#> 1750        2025         Week 30 Year to date  Local authority    E92000001
#> 1751        2025         Week 30 Year to date  Local authority    E92000001
#> 1752        2025         Week 30 Year to date  Local authority    E92000001
#> 1753        2025         Week 30 Year to date  Local authority    E92000001
#> 1754        2025         Week 30 Year to date  Local authority    E92000001
#> 1755        2025         Week 30 Year to date  Local authority    E92000001
#> 1756        2025         Week 30 Year to date  Local authority    E92000001
#> 1757        2025         Week 30 Year to date  Local authority    E92000001
#> 1758        2025         Week 30 Year to date  Local authority    E92000001
#> 1759        2025         Week 30 Year to date  Local authority    E92000001
#> 1760        2025         Week 30 Year to date  Local authority    E92000001
#> 1761        2025         Week 30 Year to date  Local authority    E92000001
#> 1762        2025         Week 30 Year to date  Local authority    E92000001
#> 1763        2025         Week 30 Year to date  Local authority    E92000001
#> 1764        2025         Week 30 Year to date  Local authority    E92000001
#> 1765        2025         Week 30 Year to date  Local authority    E92000001
#> 1766        2025         Week 30 Year to date  Local authority    E92000001
#> 1767        2025         Week 30 Year to date  Local authority    E92000001
#> 1768        2025         Week 30 Year to date  Local authority    E92000001
#> 1769        2025         Week 30 Year to date  Local authority    E92000001
#> 1770        2025         Week 30 Year to date  Local authority    E92000001
#> 1771        2025         Week 30 Year to date  Local authority    E92000001
#> 1772        2025         Week 30 Year to date  Local authority    E92000001
#> 1773        2025         Week 30 Year to date  Local authority    E92000001
#> 1774        2025         Week 30 Year to date  Local authority    E92000001
#> 1775        2025         Week 30 Year to date  Local authority    E92000001
#> 1776        2025         Week 30 Year to date  Local authority    E92000001
#> 1777        2025         Week 30 Year to date  Local authority    E92000001
#> 1778        2025         Week 30 Year to date  Local authority    E92000001
#> 1779        2025         Week 30 Year to date  Local authority    E92000001
#> 1780        2025         Week 30 Year to date  Local authority    E92000001
#> 1781        2025         Week 30 Year to date  Local authority    E92000001
#> 1782        2025         Week 30 Year to date  Local authority    E92000001
#> 1783        2025         Week 30 Year to date  Local authority    E92000001
#> 1784        2025         Week 30 Year to date  Local authority    E92000001
#> 1785        2025         Week 30 Year to date  Local authority    E92000001
#> 1786        2025         Week 30 Year to date  Local authority    E92000001
#> 1787        2025         Week 30 Year to date  Local authority    E92000001
#> 1788        2025         Week 30 Year to date  Local authority    E92000001
#> 1789        2025         Week 28 Year to date         National    E92000001
#> 1790        2025         Week 28 Year to date         National    E92000001
#> 1791        2025         Week 28 Year to date         National    E92000001
#> 1792        2025         Week 28 Year to date         National    E92000001
#> 1793        2025         Week 28 Year to date         Regional    E92000001
#> 1794        2025         Week 28 Year to date         Regional    E92000001
#> 1795        2025         Week 28 Year to date         Regional    E92000001
#> 1796        2025         Week 28 Year to date         Regional    E92000001
#> 1797        2025         Week 28 Year to date  Local authority    E92000001
#> 1798        2025         Week 28 Year to date  Local authority    E92000001
#> 1799        2025         Week 28 Year to date  Local authority    E92000001
#> 1800        2025         Week 28 Year to date  Local authority    E92000001
#> 1801        2025         Week 28 Year to date  Local authority    E92000001
#> 1802        2025         Week 28 Year to date  Local authority    E92000001
#> 1803        2025         Week 28 Year to date  Local authority    E92000001
#> 1804        2025         Week 28 Year to date  Local authority    E92000001
#> 1805        2025         Week 28 Year to date  Local authority    E92000001
#> 1806        2025         Week 28 Year to date  Local authority    E92000001
#> 1807        2025         Week 28 Year to date  Local authority    E92000001
#> 1808        2025         Week 28 Year to date  Local authority    E92000001
#> 1809        2025         Week 28 Year to date  Local authority    E92000001
#> 1810        2025         Week 28 Year to date  Local authority    E92000001
#> 1811        2025         Week 28 Year to date  Local authority    E92000001
#> 1812        2025         Week 28 Year to date  Local authority    E92000001
#> 1813        2025         Week 28 Year to date  Local authority    E92000001
#> 1814        2025         Week 28 Year to date  Local authority    E92000001
#> 1815        2025         Week 28 Year to date  Local authority    E92000001
#> 1816        2025         Week 28 Year to date  Local authority    E92000001
#> 1817        2025         Week 28 Year to date  Local authority    E92000001
#> 1818        2025         Week 28 Year to date  Local authority    E92000001
#> 1819        2025         Week 28 Year to date  Local authority    E92000001
#> 1820        2025         Week 28 Year to date  Local authority    E92000001
#> 1821        2025         Week 28 Year to date  Local authority    E92000001
#> 1822        2025         Week 28 Year to date  Local authority    E92000001
#> 1823        2025         Week 28 Year to date  Local authority    E92000001
#> 1824        2025         Week 28 Year to date  Local authority    E92000001
#> 1825        2025         Week 28 Year to date  Local authority    E92000001
#> 1826        2025         Week 28 Year to date  Local authority    E92000001
#> 1827        2025         Week 28 Year to date  Local authority    E92000001
#> 1828        2025         Week 28 Year to date  Local authority    E92000001
#> 1829        2025         Week 28 Year to date  Local authority    E92000001
#> 1830        2025         Week 28 Year to date  Local authority    E92000001
#> 1831        2025         Week 28 Year to date  Local authority    E92000001
#> 1832        2025         Week 28 Year to date  Local authority    E92000001
#> 1833        2025         Week 28 Year to date         Regional    E92000001
#> 1834        2025         Week 28 Year to date         Regional    E92000001
#> 1835        2025         Week 28 Year to date         Regional    E92000001
#> 1836        2025         Week 28 Year to date         Regional    E92000001
#> 1837        2025         Week 28 Year to date  Local authority    E92000001
#> 1838        2025         Week 28 Year to date  Local authority    E92000001
#> 1839        2025         Week 28 Year to date  Local authority    E92000001
#> 1840        2025         Week 28 Year to date  Local authority    E92000001
#> 1841        2025         Week 28 Year to date  Local authority    E92000001
#> 1842        2025         Week 28 Year to date  Local authority    E92000001
#> 1843        2025         Week 28 Year to date  Local authority    E92000001
#> 1844        2025         Week 28 Year to date  Local authority    E92000001
#> 1845        2025         Week 28 Year to date  Local authority    E92000001
#> 1846        2025         Week 28 Year to date  Local authority    E92000001
#> 1847        2025         Week 28 Year to date  Local authority    E92000001
#> 1848        2025         Week 28 Year to date  Local authority    E92000001
#> 1849        2025         Week 28 Year to date  Local authority    E92000001
#> 1850        2025         Week 28 Year to date  Local authority    E92000001
#> 1851        2025         Week 28 Year to date  Local authority    E92000001
#> 1852        2025         Week 28 Year to date  Local authority    E92000001
#> 1853        2025         Week 28 Year to date  Local authority    E92000001
#> 1854        2025         Week 28 Year to date  Local authority    E92000001
#> 1855        2025         Week 28 Year to date  Local authority    E92000001
#> 1856        2025         Week 28 Year to date  Local authority    E92000001
#> 1857        2025         Week 28 Year to date  Local authority    E92000001
#> 1858        2025         Week 28 Year to date  Local authority    E92000001
#> 1859        2025         Week 28 Year to date  Local authority    E92000001
#> 1860        2025         Week 28 Year to date  Local authority    E92000001
#> 1861        2025         Week 28 Year to date  Local authority    E92000001
#> 1862        2025         Week 28 Year to date  Local authority    E92000001
#> 1863        2025         Week 28 Year to date  Local authority    E92000001
#> 1864        2025         Week 28 Year to date  Local authority    E92000001
#> 1865        2025         Week 28 Year to date  Local authority    E92000001
#> 1866        2025         Week 28 Year to date  Local authority    E92000001
#> 1867        2025         Week 28 Year to date  Local authority    E92000001
#> 1868        2025         Week 28 Year to date  Local authority    E92000001
#> 1869        2025         Week 28 Year to date  Local authority    E92000001
#> 1870        2025         Week 28 Year to date  Local authority    E92000001
#> 1871        2025         Week 28 Year to date  Local authority    E92000001
#> 1872        2025         Week 28 Year to date  Local authority    E92000001
#> 1873        2025         Week 28 Year to date  Local authority    E92000001
#> 1874        2025         Week 28 Year to date  Local authority    E92000001
#> 1875        2025         Week 28 Year to date  Local authority    E92000001
#> 1876        2025         Week 28 Year to date  Local authority    E92000001
#> 1877        2025         Week 28 Year to date  Local authority    E92000001
#> 1878        2025         Week 28 Year to date  Local authority    E92000001
#> 1879        2025         Week 28 Year to date  Local authority    E92000001
#> 1880        2025         Week 28 Year to date  Local authority    E92000001
#> 1881        2025         Week 28 Year to date  Local authority    E92000001
#> 1882        2025         Week 28 Year to date  Local authority    E92000001
#> 1883        2025         Week 28 Year to date  Local authority    E92000001
#> 1884        2025         Week 28 Year to date  Local authority    E92000001
#> 1885        2025         Week 28 Year to date  Local authority    E92000001
#> 1886        2025         Week 28 Year to date  Local authority    E92000001
#> 1887        2025         Week 28 Year to date  Local authority    E92000001
#> 1888        2025         Week 28 Year to date  Local authority    E92000001
#> 1889        2025         Week 28 Year to date  Local authority    E92000001
#> 1890        2025         Week 28 Year to date  Local authority    E92000001
#> 1891        2025         Week 28 Year to date  Local authority    E92000001
#> 1892        2025         Week 28 Year to date  Local authority    E92000001
#> 1893        2025         Week 28 Year to date  Local authority    E92000001
#> 1894        2025         Week 28 Year to date  Local authority    E92000001
#> 1895        2025         Week 28 Year to date  Local authority    E92000001
#> 1896        2025         Week 28 Year to date  Local authority    E92000001
#> 1897        2025         Week 28 Year to date  Local authority    E92000001
#> 1898        2025         Week 28 Year to date  Local authority    E92000001
#> 1899        2025         Week 28 Year to date  Local authority    E92000001
#> 1900        2025         Week 28 Year to date  Local authority    E92000001
#> 1901        2025         Week 28 Year to date  Local authority    E92000001
#> 1902        2025         Week 28 Year to date  Local authority    E92000001
#> 1903        2025         Week 28 Year to date  Local authority    E92000001
#> 1904        2025         Week 28 Year to date  Local authority    E92000001
#> 1905        2025         Week 28 Year to date  Local authority    E92000001
#> 1906        2025         Week 28 Year to date  Local authority    E92000001
#> 1907        2025         Week 28 Year to date  Local authority    E92000001
#> 1908        2025         Week 28 Year to date  Local authority    E92000001
#> 1909        2025         Week 28 Year to date         Regional    E92000001
#> 1910        2025         Week 28 Year to date         Regional    E92000001
#> 1911        2025         Week 28 Year to date         Regional    E92000001
#> 1912        2025         Week 28 Year to date         Regional    E92000001
#> 1913        2025         Week 28 Year to date  Local authority    E92000001
#> 1914        2025         Week 28 Year to date  Local authority    E92000001
#> 1915        2025         Week 28 Year to date  Local authority    E92000001
#> 1916        2025         Week 28 Year to date  Local authority    E92000001
#> 1917        2025         Week 28 Year to date  Local authority    E92000001
#> 1918        2025         Week 28 Year to date  Local authority    E92000001
#> 1919        2025         Week 28 Year to date  Local authority    E92000001
#> 1920        2025         Week 28 Year to date  Local authority    E92000001
#> 1921        2025         Week 28 Year to date  Local authority    E92000001
#> 1922        2025         Week 28 Year to date  Local authority    E92000001
#> 1923        2025         Week 28 Year to date  Local authority    E92000001
#> 1924        2025         Week 28 Year to date  Local authority    E92000001
#> 1925        2025         Week 28 Year to date  Local authority    E92000001
#> 1926        2025         Week 28 Year to date  Local authority    E92000001
#> 1927        2025         Week 28 Year to date  Local authority    E92000001
#> 1928        2025         Week 28 Year to date  Local authority    E92000001
#> 1929        2025         Week 28 Year to date  Local authority    E92000001
#> 1930        2025         Week 28 Year to date  Local authority    E92000001
#> 1931        2025         Week 28 Year to date  Local authority    E92000001
#> 1932        2025         Week 28 Year to date  Local authority    E92000001
#> 1933        2025         Week 28 Year to date  Local authority    E92000001
#> 1934        2025         Week 28 Year to date  Local authority    E92000001
#> 1935        2025         Week 28 Year to date  Local authority    E92000001
#> 1936        2025         Week 28 Year to date  Local authority    E92000001
#> 1937        2025         Week 28 Year to date  Local authority    E92000001
#> 1938        2025         Week 28 Year to date  Local authority    E92000001
#> 1939        2025         Week 28 Year to date  Local authority    E92000001
#> 1940        2025         Week 28 Year to date  Local authority    E92000001
#> 1941        2025         Week 28 Year to date  Local authority    E92000001
#> 1942        2025         Week 28 Year to date  Local authority    E92000001
#> 1943        2025         Week 28 Year to date  Local authority    E92000001
#> 1944        2025         Week 28 Year to date  Local authority    E92000001
#> 1945        2025         Week 28 Year to date  Local authority    E92000001
#> 1946        2025         Week 28 Year to date  Local authority    E92000001
#> 1947        2025         Week 28 Year to date  Local authority    E92000001
#> 1948        2025         Week 28 Year to date  Local authority    E92000001
#> 1949        2025         Week 28 Year to date  Local authority    E92000001
#> 1950        2025         Week 28 Year to date  Local authority    E92000001
#> 1951        2025         Week 28 Year to date  Local authority    E92000001
#> 1952        2025         Week 28 Year to date  Local authority    E92000001
#> 1953        2025         Week 28 Year to date  Local authority    E92000001
#> 1954        2025         Week 28 Year to date  Local authority    E92000001
#> 1955        2025         Week 28 Year to date  Local authority    E92000001
#> 1956        2025         Week 28 Year to date  Local authority    E92000001
#> 1957        2025         Week 28 Year to date  Local authority    E92000001
#> 1958        2025         Week 28 Year to date         Regional    E92000001
#> 1959        2025         Week 28 Year to date         Regional    E92000001
#> 1960        2025         Week 28 Year to date         Regional    E92000001
#> 1961        2025         Week 28 Year to date         Regional    E92000001
#> 1962        2025         Week 28 Year to date  Local authority    E92000001
#> 1963        2025         Week 28 Year to date  Local authority    E92000001
#> 1964        2025         Week 28 Year to date  Local authority    E92000001
#> 1965        2025         Week 28 Year to date  Local authority    E92000001
#> 1966        2025         Week 28 Year to date  Local authority    E92000001
#> 1967        2025         Week 28 Year to date  Local authority    E92000001
#> 1968        2025         Week 28 Year to date  Local authority    E92000001
#> 1969        2025         Week 28 Year to date  Local authority    E92000001
#> 1970        2025         Week 28 Year to date  Local authority    E92000001
#> 1971        2025         Week 28 Year to date  Local authority    E92000001
#> 1972        2025         Week 28 Year to date  Local authority    E92000001
#> 1973        2025         Week 28 Year to date  Local authority    E92000001
#> 1974        2025         Week 28 Year to date  Local authority    E92000001
#> 1975        2025         Week 28 Year to date  Local authority    E92000001
#> 1976        2025         Week 28 Year to date  Local authority    E92000001
#> 1977        2025         Week 28 Year to date  Local authority    E92000001
#> 1978        2025         Week 28 Year to date  Local authority    E92000001
#> 1979        2025         Week 28 Year to date  Local authority    E92000001
#> 1980        2025         Week 28 Year to date  Local authority    E92000001
#> 1981        2025         Week 28 Year to date  Local authority    E92000001
#> 1982        2025         Week 28 Year to date  Local authority    E92000001
#> 1983        2025         Week 28 Year to date  Local authority    E92000001
#> 1984        2025         Week 28 Year to date  Local authority    E92000001
#> 1985        2025         Week 28 Year to date  Local authority    E92000001
#> 1986        2025         Week 28 Year to date  Local authority    E92000001
#> 1987        2025         Week 28 Year to date  Local authority    E92000001
#> 1988        2025         Week 28 Year to date  Local authority    E92000001
#> 1989        2025         Week 28 Year to date  Local authority    E92000001
#> 1990        2025         Week 28 Year to date  Local authority    E92000001
#> 1991        2025         Week 28 Year to date         Regional    E92000001
#> 1992        2025         Week 28 Year to date         Regional    E92000001
#> 1993        2025         Week 28 Year to date         Regional    E92000001
#> 1994        2025         Week 28 Year to date         Regional    E92000001
#> 1995        2025         Week 28 Year to date  Local authority    E92000001
#> 1996        2025         Week 28 Year to date  Local authority    E92000001
#> 1997        2025         Week 28 Year to date  Local authority    E92000001
#> 1998        2025         Week 28 Year to date  Local authority    E92000001
#> 1999        2025         Week 28 Year to date  Local authority    E92000001
#> 2000        2025         Week 28 Year to date  Local authority    E92000001
#> 2001        2025         Week 28 Year to date  Local authority    E92000001
#> 2002        2025         Week 28 Year to date  Local authority    E92000001
#> 2003        2025         Week 28 Year to date  Local authority    E92000001
#> 2004        2025         Week 28 Year to date  Local authority    E92000001
#> 2005        2025         Week 28 Year to date  Local authority    E92000001
#> 2006        2025         Week 28 Year to date  Local authority    E92000001
#> 2007        2025         Week 28 Year to date  Local authority    E92000001
#> 2008        2025         Week 28 Year to date  Local authority    E92000001
#> 2009        2025         Week 28 Year to date  Local authority    E92000001
#> 2010        2025         Week 28 Year to date  Local authority    E92000001
#> 2011        2025         Week 28 Year to date  Local authority    E92000001
#> 2012        2025         Week 28 Year to date  Local authority    E92000001
#> 2013        2025         Week 28 Year to date  Local authority    E92000001
#> 2014        2025         Week 28 Year to date  Local authority    E92000001
#> 2015        2025         Week 28 Year to date  Local authority    E92000001
#> 2016        2025         Week 28 Year to date  Local authority    E92000001
#> 2017        2025         Week 28 Year to date  Local authority    E92000001
#> 2018        2025         Week 28 Year to date  Local authority    E92000001
#> 2019        2025         Week 28 Year to date  Local authority    E92000001
#> 2020        2025         Week 28 Year to date  Local authority    E92000001
#> 2021        2025         Week 28 Year to date  Local authority    E92000001
#> 2022        2025         Week 28 Year to date  Local authority    E92000001
#> 2023        2025         Week 28 Year to date  Local authority    E92000001
#> 2024        2025         Week 28 Year to date  Local authority    E92000001
#> 2025        2025         Week 28 Year to date  Local authority    E92000001
#> 2026        2025         Week 28 Year to date  Local authority    E92000001
#> 2027        2025         Week 28 Year to date  Local authority    E92000001
#> 2028        2025         Week 28 Year to date  Local authority    E92000001
#> 2029        2025         Week 28 Year to date  Local authority    E92000001
#> 2030        2025         Week 28 Year to date  Local authority    E92000001
#> 2031        2025         Week 28 Year to date  Local authority    E92000001
#> 2032        2025         Week 28 Year to date  Local authority    E92000001
#> 2033        2025         Week 28 Year to date  Local authority    E92000001
#> 2034        2025         Week 28 Year to date  Local authority    E92000001
#> 2035        2025         Week 28 Year to date  Local authority    E92000001
#> 2036        2025         Week 28 Year to date  Local authority    E92000001
#> 2037        2025         Week 28 Year to date         Regional    E92000001
#> 2038        2025         Week 28 Year to date         Regional    E92000001
#> 2039        2025         Week 28 Year to date         Regional    E92000001
#> 2040        2025         Week 28 Year to date         Regional    E92000001
#> 2041        2025         Week 28 Year to date  Local authority    E92000001
#> 2042        2025         Week 28 Year to date  Local authority    E92000001
#> 2043        2025         Week 28 Year to date  Local authority    E92000001
#> 2044        2025         Week 28 Year to date  Local authority    E92000001
#> 2045        2025         Week 28 Year to date  Local authority    E92000001
#> 2046        2025         Week 28 Year to date  Local authority    E92000001
#> 2047        2025         Week 28 Year to date  Local authority    E92000001
#> 2048        2025         Week 28 Year to date  Local authority    E92000001
#> 2049        2025         Week 28 Year to date  Local authority    E92000001
#> 2050        2025         Week 28 Year to date  Local authority    E92000001
#> 2051        2025         Week 28 Year to date  Local authority    E92000001
#> 2052        2025         Week 28 Year to date  Local authority    E92000001
#> 2053        2025         Week 28 Year to date  Local authority    E92000001
#> 2054        2025         Week 28 Year to date  Local authority    E92000001
#> 2055        2025         Week 28 Year to date  Local authority    E92000001
#> 2056        2025         Week 28 Year to date  Local authority    E92000001
#> 2057        2025         Week 28 Year to date  Local authority    E92000001
#> 2058        2025         Week 28 Year to date  Local authority    E92000001
#> 2059        2025         Week 28 Year to date  Local authority    E92000001
#> 2060        2025         Week 28 Year to date  Local authority    E92000001
#> 2061        2025         Week 28 Year to date  Local authority    E92000001
#> 2062        2025         Week 28 Year to date  Local authority    E92000001
#> 2063        2025         Week 28 Year to date  Local authority    E92000001
#> 2064        2025         Week 28 Year to date  Local authority    E92000001
#> 2065        2025         Week 28 Year to date  Local authority    E92000001
#> 2066        2025         Week 28 Year to date  Local authority    E92000001
#> 2067        2025         Week 28 Year to date  Local authority    E92000001
#> 2068        2025         Week 28 Year to date  Local authority    E92000001
#> 2069        2025         Week 28 Year to date  Local authority    E92000001
#> 2070        2025         Week 28 Year to date  Local authority    E92000001
#> 2071        2025         Week 28 Year to date  Local authority    E92000001
#> 2072        2025         Week 28 Year to date  Local authority    E92000001
#> 2073        2025         Week 28 Year to date  Local authority    E92000001
#> 2074        2025         Week 28 Year to date         Regional    E92000001
#> 2075        2025         Week 28 Year to date         Regional    E92000001
#> 2076        2025         Week 28 Year to date         Regional    E92000001
#> 2077        2025         Week 28 Year to date         Regional    E92000001
#> 2078        2025         Week 28 Year to date  Local authority    E92000001
#> 2079        2025         Week 28 Year to date  Local authority    E92000001
#> 2080        2025         Week 28 Year to date  Local authority    E92000001
#> 2081        2025         Week 28 Year to date  Local authority    E92000001
#> 2082        2025         Week 28 Year to date  Local authority    E92000001
#> 2083        2025         Week 28 Year to date  Local authority    E92000001
#> 2084        2025         Week 28 Year to date  Local authority    E92000001
#> 2085        2025         Week 28 Year to date  Local authority    E92000001
#> 2086        2025         Week 28 Year to date  Local authority    E92000001
#> 2087        2025         Week 28 Year to date  Local authority    E92000001
#> 2088        2025         Week 28 Year to date  Local authority    E92000001
#> 2089        2025         Week 28 Year to date  Local authority    E92000001
#> 2090        2025         Week 28 Year to date  Local authority    E92000001
#> 2091        2025         Week 28 Year to date  Local authority    E92000001
#> 2092        2025         Week 28 Year to date  Local authority    E92000001
#> 2093        2025         Week 28 Year to date  Local authority    E92000001
#> 2094        2025         Week 28 Year to date  Local authority    E92000001
#> 2095        2025         Week 28 Year to date  Local authority    E92000001
#> 2096        2025         Week 28 Year to date  Local authority    E92000001
#> 2097        2025         Week 28 Year to date  Local authority    E92000001
#> 2098        2025         Week 28 Year to date  Local authority    E92000001
#> 2099        2025         Week 28 Year to date  Local authority    E92000001
#> 2100        2025         Week 28 Year to date  Local authority    E92000001
#> 2101        2025         Week 28 Year to date  Local authority    E92000001
#> 2102        2025         Week 28 Year to date  Local authority    E92000001
#> 2103        2025         Week 28 Year to date  Local authority    E92000001
#> 2104        2025         Week 28 Year to date  Local authority    E92000001
#> 2105        2025         Week 28 Year to date  Local authority    E92000001
#> 2106        2025         Week 28 Year to date  Local authority    E92000001
#> 2107        2025         Week 28 Year to date  Local authority    E92000001
#> 2108        2025         Week 28 Year to date  Local authority    E92000001
#> 2109        2025         Week 28 Year to date  Local authority    E92000001
#> 2110        2025         Week 28 Year to date  Local authority    E92000001
#> 2111        2025         Week 28 Year to date  Local authority    E92000001
#> 2112        2025         Week 28 Year to date  Local authority    E92000001
#> 2113        2025         Week 28 Year to date  Local authority    E92000001
#> 2114        2025         Week 28 Year to date  Local authority    E92000001
#> 2115        2025         Week 28 Year to date  Local authority    E92000001
#> 2116        2025         Week 28 Year to date  Local authority    E92000001
#> 2117        2025         Week 28 Year to date  Local authority    E92000001
#> 2118        2025         Week 28 Year to date  Local authority    E92000001
#> 2119        2025         Week 28 Year to date  Local authority    E92000001
#> 2120        2025         Week 28 Year to date  Local authority    E92000001
#> 2121        2025         Week 28 Year to date  Local authority    E92000001
#> 2122        2025         Week 28 Year to date  Local authority    E92000001
#> 2123        2025         Week 28 Year to date  Local authority    E92000001
#> 2124        2025         Week 28 Year to date  Local authority    E92000001
#> 2125        2025         Week 28 Year to date  Local authority    E92000001
#> 2126        2025         Week 28 Year to date  Local authority    E92000001
#> 2127        2025         Week 28 Year to date  Local authority    E92000001
#> 2128        2025         Week 28 Year to date  Local authority    E92000001
#> 2129        2025         Week 28 Year to date  Local authority    E92000001
#> 2130        2025         Week 28 Year to date  Local authority    E92000001
#> 2131        2025         Week 28 Year to date  Local authority    E92000001
#> 2132        2025         Week 28 Year to date  Local authority    E92000001
#> 2133        2025         Week 28 Year to date  Local authority    E92000001
#> 2134        2025         Week 28 Year to date  Local authority    E92000001
#> 2135        2025         Week 28 Year to date  Local authority    E92000001
#> 2136        2025         Week 28 Year to date  Local authority    E92000001
#> 2137        2025         Week 28 Year to date  Local authority    E92000001
#> 2138        2025         Week 28 Year to date  Local authority    E92000001
#> 2139        2025         Week 28 Year to date  Local authority    E92000001
#> 2140        2025         Week 28 Year to date  Local authority    E92000001
#> 2141        2025         Week 28 Year to date  Local authority    E92000001
#> 2142        2025         Week 28 Year to date  Local authority    E92000001
#> 2143        2025         Week 28 Year to date  Local authority    E92000001
#> 2144        2025         Week 28 Year to date  Local authority    E92000001
#> 2145        2025         Week 28 Year to date  Local authority    E92000001
#> 2146        2025         Week 28 Year to date  Local authority    E92000001
#> 2147        2025         Week 28 Year to date  Local authority    E92000001
#> 2148        2025         Week 28 Year to date  Local authority    E92000001
#> 2149        2025         Week 28 Year to date  Local authority    E92000001
#> 2150        2025         Week 28 Year to date  Local authority    E92000001
#> 2151        2025         Week 28 Year to date  Local authority    E92000001
#> 2152        2025         Week 28 Year to date  Local authority    E92000001
#> 2153        2025         Week 28 Year to date  Local authority    E92000001
#> 2154        2025         Week 28 Year to date  Local authority    E92000001
#> 2155        2025         Week 28 Year to date  Local authority    E92000001
#> 2156        2025         Week 28 Year to date  Local authority    E92000001
#> 2157        2025         Week 28 Year to date  Local authority    E92000001
#> 2158        2025         Week 28 Year to date  Local authority    E92000001
#> 2159        2025         Week 28 Year to date  Local authority    E92000001
#> 2160        2025         Week 28 Year to date  Local authority    E92000001
#> 2161        2025         Week 28 Year to date  Local authority    E92000001
#> 2162        2025         Week 28 Year to date  Local authority    E92000001
#> 2163        2025         Week 28 Year to date  Local authority    E92000001
#> 2164        2025         Week 28 Year to date  Local authority    E92000001
#> 2165        2025         Week 28 Year to date  Local authority    E92000001
#> 2166        2025         Week 28 Year to date  Local authority    E92000001
#> 2167        2025         Week 28 Year to date  Local authority    E92000001
#> 2168        2025         Week 28 Year to date  Local authority    E92000001
#> 2169        2025         Week 28 Year to date  Local authority    E92000001
#> 2170        2025         Week 28 Year to date  Local authority    E92000001
#> 2171        2025         Week 28 Year to date  Local authority    E92000001
#> 2172        2025         Week 28 Year to date  Local authority    E92000001
#> 2173        2025         Week 28 Year to date  Local authority    E92000001
#> 2174        2025         Week 28 Year to date  Local authority    E92000001
#> 2175        2025         Week 28 Year to date         Regional    E92000001
#> 2176        2025         Week 28 Year to date         Regional    E92000001
#> 2177        2025         Week 28 Year to date         Regional    E92000001
#> 2178        2025         Week 28 Year to date         Regional    E92000001
#> 2179        2025         Week 28 Year to date  Local authority    E92000001
#> 2180        2025         Week 28 Year to date  Local authority    E92000001
#> 2181        2025         Week 28 Year to date  Local authority    E92000001
#> 2182        2025         Week 28 Year to date  Local authority    E92000001
#> 2183        2025         Week 28 Year to date  Local authority    E92000001
#> 2184        2025         Week 28 Year to date  Local authority    E92000001
#> 2185        2025         Week 28 Year to date  Local authority    E92000001
#> 2186        2025         Week 28 Year to date  Local authority    E92000001
#> 2187        2025         Week 28 Year to date  Local authority    E92000001
#> 2188        2025         Week 28 Year to date  Local authority    E92000001
#> 2189        2025         Week 28 Year to date  Local authority    E92000001
#> 2190        2025         Week 28 Year to date  Local authority    E92000001
#> 2191        2025         Week 28 Year to date  Local authority    E92000001
#> 2192        2025         Week 28 Year to date  Local authority    E92000001
#> 2193        2025         Week 28 Year to date  Local authority    E92000001
#> 2194        2025         Week 28 Year to date  Local authority    E92000001
#> 2195        2025         Week 28 Year to date  Local authority    E92000001
#> 2196        2025         Week 28 Year to date  Local authority    E92000001
#> 2197        2025         Week 28 Year to date  Local authority    E92000001
#> 2198        2025         Week 28 Year to date  Local authority    E92000001
#> 2199        2025         Week 28 Year to date  Local authority    E92000001
#> 2200        2025         Week 28 Year to date  Local authority    E92000001
#> 2201        2025         Week 28 Year to date  Local authority    E92000001
#> 2202        2025         Week 28 Year to date  Local authority    E92000001
#> 2203        2025         Week 28 Year to date  Local authority    E92000001
#> 2204        2025         Week 28 Year to date  Local authority    E92000001
#> 2205        2025         Week 28 Year to date  Local authority    E92000001
#> 2206        2025         Week 28 Year to date  Local authority    E92000001
#> 2207        2025         Week 28 Year to date  Local authority    E92000001
#> 2208        2025         Week 28 Year to date  Local authority    E92000001
#> 2209        2025         Week 28 Year to date  Local authority    E92000001
#> 2210        2025         Week 28 Year to date  Local authority    E92000001
#> 2211        2025         Week 28 Year to date  Local authority    E92000001
#> 2212        2025         Week 28 Year to date  Local authority    E92000001
#> 2213        2025         Week 28 Year to date  Local authority    E92000001
#> 2214        2025         Week 28 Year to date  Local authority    E92000001
#> 2215        2025         Week 28 Year to date  Local authority    E92000001
#> 2216        2025         Week 28 Year to date  Local authority    E92000001
#> 2217        2025         Week 28 Year to date  Local authority    E92000001
#> 2218        2025         Week 28 Year to date  Local authority    E92000001
#> 2219        2025         Week 28 Year to date  Local authority    E92000001
#> 2220        2025         Week 28 Year to date  Local authority    E92000001
#> 2221        2025         Week 28 Year to date  Local authority    E92000001
#> 2222        2025         Week 28 Year to date  Local authority    E92000001
#> 2223        2025         Week 28 Year to date  Local authority    E92000001
#> 2224        2025         Week 28 Year to date  Local authority    E92000001
#> 2225        2025         Week 28 Year to date  Local authority    E92000001
#> 2226        2025         Week 28 Year to date  Local authority    E92000001
#> 2227        2025         Week 28 Year to date  Local authority    E92000001
#> 2228        2025         Week 28 Year to date  Local authority    E92000001
#> 2229        2025         Week 28 Year to date  Local authority    E92000001
#> 2230        2025         Week 28 Year to date  Local authority    E92000001
#> 2231        2025         Week 28 Year to date  Local authority    E92000001
#> 2232        2025         Week 28 Year to date  Local authority    E92000001
#> 2233        2025         Week 28 Year to date  Local authority    E92000001
#> 2234        2025         Week 28 Year to date  Local authority    E92000001
#> 2235        2025         Week 28 Year to date  Local authority    E92000001
#> 2236        2025         Week 28 Year to date         Regional    E92000001
#> 2237        2025         Week 28 Year to date         Regional    E92000001
#> 2238        2025         Week 28 Year to date         Regional    E92000001
#> 2239        2025         Week 28 Year to date         Regional    E92000001
#> 2240        2025         Week 28 Year to date  Local authority    E92000001
#> 2241        2025         Week 28 Year to date  Local authority    E92000001
#> 2242        2025         Week 28 Year to date  Local authority    E92000001
#> 2243        2025         Week 28 Year to date  Local authority    E92000001
#> 2244        2025         Week 28 Year to date  Local authority    E92000001
#> 2245        2025         Week 28 Year to date  Local authority    E92000001
#> 2246        2025         Week 28 Year to date  Local authority    E92000001
#> 2247        2025         Week 28 Year to date  Local authority    E92000001
#> 2248        2025         Week 28 Year to date  Local authority    E92000001
#> 2249        2025         Week 28 Year to date  Local authority    E92000001
#> 2250        2025         Week 28 Year to date  Local authority    E92000001
#> 2251        2025         Week 28 Year to date  Local authority    E92000001
#> 2252        2025         Week 28 Year to date  Local authority    E92000001
#> 2253        2025         Week 28 Year to date  Local authority    E92000001
#> 2254        2025         Week 28 Year to date  Local authority    E92000001
#> 2255        2025         Week 28 Year to date  Local authority    E92000001
#> 2256        2025         Week 28 Year to date  Local authority    E92000001
#> 2257        2025         Week 28 Year to date  Local authority    E92000001
#> 2258        2025         Week 28 Year to date  Local authority    E92000001
#> 2259        2025         Week 28 Year to date  Local authority    E92000001
#> 2260        2025         Week 28 Year to date  Local authority    E92000001
#> 2261        2025         Week 28 Year to date  Local authority    E92000001
#> 2262        2025         Week 28 Year to date  Local authority    E92000001
#> 2263        2025         Week 28 Year to date  Local authority    E92000001
#> 2264        2025         Week 28 Year to date  Local authority    E92000001
#> 2265        2025         Week 28 Year to date  Local authority    E92000001
#> 2266        2025         Week 28 Year to date  Local authority    E92000001
#> 2267        2025         Week 28 Year to date  Local authority    E92000001
#> 2268        2025         Week 28 Year to date  Local authority    E92000001
#> 2269        2025         Week 28 Year to date  Local authority    E92000001
#> 2270        2025         Week 28 Year to date  Local authority    E92000001
#> 2271        2025         Week 28 Year to date  Local authority    E92000001
#> 2272        2025         Week 28 Year to date  Local authority    E92000001
#> 2273        2025         Week 28 Year to date  Local authority    E92000001
#> 2274        2025         Week 28 Year to date  Local authority    E92000001
#> 2275        2025         Week 28 Year to date  Local authority    E92000001
#> 2276        2025         Week 28 Year to date  Local authority    E92000001
#> 2277        2025         Week 28 Year to date  Local authority    E92000001
#> 2278        2025         Week 28 Year to date  Local authority    E92000001
#> 2279        2025         Week 28 Year to date  Local authority    E92000001
#> 2280        2025         Week 28 Year to date  Local authority    E92000001
#> 2281        2025         Week 28 Year to date  Local authority    E92000001
#> 2282        2025         Week 28 Year to date  Local authority    E92000001
#> 2283        2025         Week 26 Year to date         National    E92000001
#> 2284        2025         Week 26 Year to date         National    E92000001
#> 2285        2025         Week 26 Year to date         National    E92000001
#> 2286        2025         Week 26 Year to date         National    E92000001
#> 2287        2025         Week 26 Year to date         Regional    E92000001
#> 2288        2025         Week 26 Year to date         Regional    E92000001
#> 2289        2025         Week 26 Year to date         Regional    E92000001
#> 2290        2025         Week 26 Year to date         Regional    E92000001
#> 2291        2025         Week 26 Year to date  Local authority    E92000001
#> 2292        2025         Week 26 Year to date  Local authority    E92000001
#> 2293        2025         Week 26 Year to date  Local authority    E92000001
#> 2294        2025         Week 26 Year to date  Local authority    E92000001
#> 2295        2025         Week 26 Year to date  Local authority    E92000001
#> 2296        2025         Week 26 Year to date  Local authority    E92000001
#> 2297        2025         Week 26 Year to date  Local authority    E92000001
#> 2298        2025         Week 26 Year to date  Local authority    E92000001
#> 2299        2025         Week 26 Year to date  Local authority    E92000001
#> 2300        2025         Week 26 Year to date  Local authority    E92000001
#> 2301        2025         Week 26 Year to date  Local authority    E92000001
#> 2302        2025         Week 26 Year to date  Local authority    E92000001
#> 2303        2025         Week 26 Year to date  Local authority    E92000001
#> 2304        2025         Week 26 Year to date  Local authority    E92000001
#> 2305        2025         Week 26 Year to date  Local authority    E92000001
#> 2306        2025         Week 26 Year to date  Local authority    E92000001
#> 2307        2025         Week 26 Year to date  Local authority    E92000001
#> 2308        2025         Week 26 Year to date  Local authority    E92000001
#> 2309        2025         Week 26 Year to date  Local authority    E92000001
#> 2310        2025         Week 26 Year to date  Local authority    E92000001
#> 2311        2025         Week 26 Year to date  Local authority    E92000001
#> 2312        2025         Week 26 Year to date  Local authority    E92000001
#> 2313        2025         Week 26 Year to date  Local authority    E92000001
#> 2314        2025         Week 26 Year to date  Local authority    E92000001
#> 2315        2025         Week 26 Year to date  Local authority    E92000001
#> 2316        2025         Week 26 Year to date  Local authority    E92000001
#> 2317        2025         Week 26 Year to date  Local authority    E92000001
#> 2318        2025         Week 26 Year to date  Local authority    E92000001
#> 2319        2025         Week 26 Year to date  Local authority    E92000001
#> 2320        2025         Week 26 Year to date  Local authority    E92000001
#> 2321        2025         Week 26 Year to date  Local authority    E92000001
#> 2322        2025         Week 26 Year to date  Local authority    E92000001
#> 2323        2025         Week 26 Year to date  Local authority    E92000001
#> 2324        2025         Week 26 Year to date  Local authority    E92000001
#> 2325        2025         Week 26 Year to date  Local authority    E92000001
#> 2326        2025         Week 26 Year to date  Local authority    E92000001
#> 2327        2025         Week 26 Year to date         Regional    E92000001
#> 2328        2025         Week 26 Year to date         Regional    E92000001
#> 2329        2025         Week 26 Year to date         Regional    E92000001
#> 2330        2025         Week 26 Year to date         Regional    E92000001
#> 2331        2025         Week 26 Year to date  Local authority    E92000001
#> 2332        2025         Week 26 Year to date  Local authority    E92000001
#> 2333        2025         Week 26 Year to date  Local authority    E92000001
#> 2334        2025         Week 26 Year to date  Local authority    E92000001
#> 2335        2025         Week 26 Year to date  Local authority    E92000001
#> 2336        2025         Week 26 Year to date  Local authority    E92000001
#> 2337        2025         Week 26 Year to date  Local authority    E92000001
#> 2338        2025         Week 26 Year to date  Local authority    E92000001
#> 2339        2025         Week 26 Year to date  Local authority    E92000001
#> 2340        2025         Week 26 Year to date  Local authority    E92000001
#> 2341        2025         Week 26 Year to date  Local authority    E92000001
#> 2342        2025         Week 26 Year to date  Local authority    E92000001
#> 2343        2025         Week 26 Year to date  Local authority    E92000001
#> 2344        2025         Week 26 Year to date  Local authority    E92000001
#> 2345        2025         Week 26 Year to date  Local authority    E92000001
#> 2346        2025         Week 26 Year to date  Local authority    E92000001
#> 2347        2025         Week 26 Year to date  Local authority    E92000001
#> 2348        2025         Week 26 Year to date  Local authority    E92000001
#> 2349        2025         Week 26 Year to date  Local authority    E92000001
#> 2350        2025         Week 26 Year to date  Local authority    E92000001
#> 2351        2025         Week 26 Year to date  Local authority    E92000001
#> 2352        2025         Week 26 Year to date  Local authority    E92000001
#> 2353        2025         Week 26 Year to date  Local authority    E92000001
#> 2354        2025         Week 26 Year to date  Local authority    E92000001
#> 2355        2025         Week 26 Year to date  Local authority    E92000001
#> 2356        2025         Week 26 Year to date  Local authority    E92000001
#> 2357        2025         Week 26 Year to date  Local authority    E92000001
#> 2358        2025         Week 26 Year to date  Local authority    E92000001
#> 2359        2025         Week 26 Year to date  Local authority    E92000001
#> 2360        2025         Week 26 Year to date  Local authority    E92000001
#> 2361        2025         Week 26 Year to date  Local authority    E92000001
#> 2362        2025         Week 26 Year to date  Local authority    E92000001
#> 2363        2025         Week 26 Year to date  Local authority    E92000001
#> 2364        2025         Week 26 Year to date  Local authority    E92000001
#> 2365        2025         Week 26 Year to date  Local authority    E92000001
#> 2366        2025         Week 26 Year to date  Local authority    E92000001
#> 2367        2025         Week 26 Year to date  Local authority    E92000001
#> 2368        2025         Week 26 Year to date  Local authority    E92000001
#> 2369        2025         Week 26 Year to date  Local authority    E92000001
#> 2370        2025         Week 26 Year to date  Local authority    E92000001
#> 2371        2025         Week 26 Year to date  Local authority    E92000001
#> 2372        2025         Week 26 Year to date  Local authority    E92000001
#> 2373        2025         Week 26 Year to date  Local authority    E92000001
#> 2374        2025         Week 26 Year to date  Local authority    E92000001
#> 2375        2025         Week 26 Year to date  Local authority    E92000001
#> 2376        2025         Week 26 Year to date  Local authority    E92000001
#> 2377        2025         Week 26 Year to date  Local authority    E92000001
#> 2378        2025         Week 26 Year to date  Local authority    E92000001
#> 2379        2025         Week 26 Year to date  Local authority    E92000001
#> 2380        2025         Week 26 Year to date  Local authority    E92000001
#> 2381        2025         Week 26 Year to date  Local authority    E92000001
#> 2382        2025         Week 26 Year to date  Local authority    E92000001
#> 2383        2025         Week 26 Year to date  Local authority    E92000001
#> 2384        2025         Week 26 Year to date  Local authority    E92000001
#> 2385        2025         Week 26 Year to date  Local authority    E92000001
#> 2386        2025         Week 26 Year to date  Local authority    E92000001
#> 2387        2025         Week 26 Year to date  Local authority    E92000001
#> 2388        2025         Week 26 Year to date  Local authority    E92000001
#> 2389        2025         Week 26 Year to date  Local authority    E92000001
#> 2390        2025         Week 26 Year to date  Local authority    E92000001
#> 2391        2025         Week 26 Year to date  Local authority    E92000001
#> 2392        2025         Week 26 Year to date  Local authority    E92000001
#> 2393        2025         Week 26 Year to date  Local authority    E92000001
#> 2394        2025         Week 26 Year to date  Local authority    E92000001
#> 2395        2025         Week 26 Year to date  Local authority    E92000001
#> 2396        2025         Week 26 Year to date  Local authority    E92000001
#> 2397        2025         Week 26 Year to date  Local authority    E92000001
#> 2398        2025         Week 26 Year to date  Local authority    E92000001
#> 2399        2025         Week 26 Year to date  Local authority    E92000001
#> 2400        2025         Week 26 Year to date  Local authority    E92000001
#> 2401        2025         Week 26 Year to date  Local authority    E92000001
#> 2402        2025         Week 26 Year to date  Local authority    E92000001
#> 2403        2025         Week 26 Year to date         Regional    E92000001
#> 2404        2025         Week 26 Year to date         Regional    E92000001
#> 2405        2025         Week 26 Year to date         Regional    E92000001
#> 2406        2025         Week 26 Year to date         Regional    E92000001
#> 2407        2025         Week 26 Year to date  Local authority    E92000001
#> 2408        2025         Week 26 Year to date  Local authority    E92000001
#> 2409        2025         Week 26 Year to date  Local authority    E92000001
#> 2410        2025         Week 26 Year to date  Local authority    E92000001
#> 2411        2025         Week 26 Year to date  Local authority    E92000001
#> 2412        2025         Week 26 Year to date  Local authority    E92000001
#> 2413        2025         Week 26 Year to date  Local authority    E92000001
#> 2414        2025         Week 26 Year to date  Local authority    E92000001
#> 2415        2025         Week 26 Year to date  Local authority    E92000001
#> 2416        2025         Week 26 Year to date  Local authority    E92000001
#> 2417        2025         Week 26 Year to date  Local authority    E92000001
#> 2418        2025         Week 26 Year to date  Local authority    E92000001
#> 2419        2025         Week 26 Year to date  Local authority    E92000001
#> 2420        2025         Week 26 Year to date  Local authority    E92000001
#> 2421        2025         Week 26 Year to date  Local authority    E92000001
#> 2422        2025         Week 26 Year to date  Local authority    E92000001
#> 2423        2025         Week 26 Year to date  Local authority    E92000001
#> 2424        2025         Week 26 Year to date  Local authority    E92000001
#> 2425        2025         Week 26 Year to date  Local authority    E92000001
#> 2426        2025         Week 26 Year to date  Local authority    E92000001
#> 2427        2025         Week 26 Year to date  Local authority    E92000001
#> 2428        2025         Week 26 Year to date  Local authority    E92000001
#> 2429        2025         Week 26 Year to date  Local authority    E92000001
#> 2430        2025         Week 26 Year to date  Local authority    E92000001
#> 2431        2025         Week 26 Year to date  Local authority    E92000001
#> 2432        2025         Week 26 Year to date  Local authority    E92000001
#> 2433        2025         Week 26 Year to date  Local authority    E92000001
#> 2434        2025         Week 26 Year to date  Local authority    E92000001
#> 2435        2025         Week 26 Year to date  Local authority    E92000001
#> 2436        2025         Week 26 Year to date  Local authority    E92000001
#> 2437        2025         Week 26 Year to date  Local authority    E92000001
#> 2438        2025         Week 26 Year to date  Local authority    E92000001
#> 2439        2025         Week 26 Year to date  Local authority    E92000001
#> 2440        2025         Week 26 Year to date  Local authority    E92000001
#> 2441        2025         Week 26 Year to date  Local authority    E92000001
#> 2442        2025         Week 26 Year to date  Local authority    E92000001
#> 2443        2025         Week 26 Year to date  Local authority    E92000001
#> 2444        2025         Week 26 Year to date  Local authority    E92000001
#> 2445        2025         Week 26 Year to date  Local authority    E92000001
#> 2446        2025         Week 26 Year to date  Local authority    E92000001
#> 2447        2025         Week 26 Year to date  Local authority    E92000001
#> 2448        2025         Week 26 Year to date  Local authority    E92000001
#> 2449        2025         Week 26 Year to date  Local authority    E92000001
#> 2450        2025         Week 26 Year to date  Local authority    E92000001
#> 2451        2025         Week 26 Year to date  Local authority    E92000001
#> 2452        2025         Week 26 Year to date         Regional    E92000001
#> 2453        2025         Week 26 Year to date         Regional    E92000001
#> 2454        2025         Week 26 Year to date         Regional    E92000001
#> 2455        2025         Week 26 Year to date         Regional    E92000001
#> 2456        2025         Week 26 Year to date  Local authority    E92000001
#> 2457        2025         Week 26 Year to date  Local authority    E92000001
#> 2458        2025         Week 26 Year to date  Local authority    E92000001
#> 2459        2025         Week 26 Year to date  Local authority    E92000001
#> 2460        2025         Week 26 Year to date  Local authority    E92000001
#> 2461        2025         Week 26 Year to date  Local authority    E92000001
#> 2462        2025         Week 26 Year to date  Local authority    E92000001
#> 2463        2025         Week 26 Year to date  Local authority    E92000001
#> 2464        2025         Week 26 Year to date  Local authority    E92000001
#> 2465        2025         Week 26 Year to date  Local authority    E92000001
#> 2466        2025         Week 26 Year to date  Local authority    E92000001
#> 2467        2025         Week 26 Year to date  Local authority    E92000001
#> 2468        2025         Week 26 Year to date  Local authority    E92000001
#> 2469        2025         Week 26 Year to date  Local authority    E92000001
#> 2470        2025         Week 26 Year to date  Local authority    E92000001
#> 2471        2025         Week 26 Year to date  Local authority    E92000001
#> 2472        2025         Week 26 Year to date  Local authority    E92000001
#> 2473        2025         Week 26 Year to date  Local authority    E92000001
#> 2474        2025         Week 26 Year to date  Local authority    E92000001
#> 2475        2025         Week 26 Year to date  Local authority    E92000001
#> 2476        2025         Week 26 Year to date  Local authority    E92000001
#> 2477        2025         Week 26 Year to date  Local authority    E92000001
#> 2478        2025         Week 26 Year to date  Local authority    E92000001
#> 2479        2025         Week 26 Year to date  Local authority    E92000001
#> 2480        2025         Week 26 Year to date  Local authority    E92000001
#> 2481        2025         Week 26 Year to date  Local authority    E92000001
#> 2482        2025         Week 26 Year to date  Local authority    E92000001
#> 2483        2025         Week 26 Year to date  Local authority    E92000001
#> 2484        2025         Week 26 Year to date  Local authority    E92000001
#> 2485        2025         Week 26 Year to date         Regional    E92000001
#> 2486        2025         Week 26 Year to date         Regional    E92000001
#> 2487        2025         Week 26 Year to date         Regional    E92000001
#> 2488        2025         Week 26 Year to date         Regional    E92000001
#> 2489        2025         Week 26 Year to date  Local authority    E92000001
#> 2490        2025         Week 26 Year to date  Local authority    E92000001
#> 2491        2025         Week 26 Year to date  Local authority    E92000001
#> 2492        2025         Week 26 Year to date  Local authority    E92000001
#> 2493        2025         Week 26 Year to date  Local authority    E92000001
#> 2494        2025         Week 26 Year to date  Local authority    E92000001
#> 2495        2025         Week 26 Year to date  Local authority    E92000001
#> 2496        2025         Week 26 Year to date  Local authority    E92000001
#> 2497        2025         Week 26 Year to date  Local authority    E92000001
#> 2498        2025         Week 26 Year to date  Local authority    E92000001
#> 2499        2025         Week 26 Year to date  Local authority    E92000001
#> 2500        2025         Week 26 Year to date  Local authority    E92000001
#> 2501        2025         Week 26 Year to date  Local authority    E92000001
#> 2502        2025         Week 26 Year to date  Local authority    E92000001
#> 2503        2025         Week 26 Year to date  Local authority    E92000001
#> 2504        2025         Week 26 Year to date  Local authority    E92000001
#> 2505        2025         Week 26 Year to date  Local authority    E92000001
#> 2506        2025         Week 26 Year to date  Local authority    E92000001
#> 2507        2025         Week 26 Year to date  Local authority    E92000001
#> 2508        2025         Week 26 Year to date  Local authority    E92000001
#> 2509        2025         Week 26 Year to date  Local authority    E92000001
#> 2510        2025         Week 26 Year to date  Local authority    E92000001
#> 2511        2025         Week 26 Year to date  Local authority    E92000001
#> 2512        2025         Week 26 Year to date  Local authority    E92000001
#> 2513        2025         Week 26 Year to date  Local authority    E92000001
#> 2514        2025         Week 26 Year to date  Local authority    E92000001
#> 2515        2025         Week 26 Year to date  Local authority    E92000001
#> 2516        2025         Week 26 Year to date  Local authority    E92000001
#> 2517        2025         Week 26 Year to date  Local authority    E92000001
#> 2518        2025         Week 26 Year to date  Local authority    E92000001
#> 2519        2025         Week 26 Year to date  Local authority    E92000001
#> 2520        2025         Week 26 Year to date  Local authority    E92000001
#> 2521        2025         Week 26 Year to date  Local authority    E92000001
#> 2522        2025         Week 26 Year to date  Local authority    E92000001
#> 2523        2025         Week 26 Year to date  Local authority    E92000001
#> 2524        2025         Week 26 Year to date  Local authority    E92000001
#> 2525        2025         Week 26 Year to date  Local authority    E92000001
#> 2526        2025         Week 26 Year to date  Local authority    E92000001
#> 2527        2025         Week 26 Year to date  Local authority    E92000001
#> 2528        2025         Week 26 Year to date  Local authority    E92000001
#> 2529        2025         Week 26 Year to date  Local authority    E92000001
#> 2530        2025         Week 26 Year to date  Local authority    E92000001
#> 2531        2025         Week 26 Year to date         Regional    E92000001
#> 2532        2025         Week 26 Year to date         Regional    E92000001
#> 2533        2025         Week 26 Year to date         Regional    E92000001
#> 2534        2025         Week 26 Year to date         Regional    E92000001
#> 2535        2025         Week 26 Year to date  Local authority    E92000001
#> 2536        2025         Week 26 Year to date  Local authority    E92000001
#> 2537        2025         Week 26 Year to date  Local authority    E92000001
#> 2538        2025         Week 26 Year to date  Local authority    E92000001
#> 2539        2025         Week 26 Year to date  Local authority    E92000001
#> 2540        2025         Week 26 Year to date  Local authority    E92000001
#> 2541        2025         Week 26 Year to date  Local authority    E92000001
#> 2542        2025         Week 26 Year to date  Local authority    E92000001
#> 2543        2025         Week 26 Year to date  Local authority    E92000001
#> 2544        2025         Week 26 Year to date  Local authority    E92000001
#> 2545        2025         Week 26 Year to date  Local authority    E92000001
#> 2546        2025         Week 26 Year to date  Local authority    E92000001
#> 2547        2025         Week 26 Year to date  Local authority    E92000001
#> 2548        2025         Week 26 Year to date  Local authority    E92000001
#> 2549        2025         Week 26 Year to date  Local authority    E92000001
#> 2550        2025         Week 26 Year to date  Local authority    E92000001
#> 2551        2025         Week 26 Year to date  Local authority    E92000001
#> 2552        2025         Week 26 Year to date  Local authority    E92000001
#> 2553        2025         Week 26 Year to date  Local authority    E92000001
#> 2554        2025         Week 26 Year to date  Local authority    E92000001
#> 2555        2025         Week 26 Year to date  Local authority    E92000001
#> 2556        2025         Week 26 Year to date  Local authority    E92000001
#> 2557        2025         Week 26 Year to date  Local authority    E92000001
#> 2558        2025         Week 26 Year to date  Local authority    E92000001
#> 2559        2025         Week 26 Year to date  Local authority    E92000001
#> 2560        2025         Week 26 Year to date  Local authority    E92000001
#> 2561        2025         Week 26 Year to date  Local authority    E92000001
#> 2562        2025         Week 26 Year to date  Local authority    E92000001
#> 2563        2025         Week 26 Year to date  Local authority    E92000001
#> 2564        2025         Week 26 Year to date  Local authority    E92000001
#> 2565        2025         Week 26 Year to date  Local authority    E92000001
#> 2566        2025         Week 26 Year to date  Local authority    E92000001
#> 2567        2025         Week 26 Year to date  Local authority    E92000001
#> 2568        2025         Week 26 Year to date         Regional    E92000001
#> 2569        2025         Week 26 Year to date         Regional    E92000001
#> 2570        2025         Week 26 Year to date         Regional    E92000001
#> 2571        2025         Week 26 Year to date         Regional    E92000001
#> 2572        2025         Week 26 Year to date  Local authority    E92000001
#> 2573        2025         Week 26 Year to date  Local authority    E92000001
#> 2574        2025         Week 26 Year to date  Local authority    E92000001
#> 2575        2025         Week 26 Year to date  Local authority    E92000001
#> 2576        2025         Week 26 Year to date  Local authority    E92000001
#> 2577        2025         Week 26 Year to date  Local authority    E92000001
#> 2578        2025         Week 26 Year to date  Local authority    E92000001
#> 2579        2025         Week 26 Year to date  Local authority    E92000001
#> 2580        2025         Week 26 Year to date  Local authority    E92000001
#> 2581        2025         Week 26 Year to date  Local authority    E92000001
#> 2582        2025         Week 26 Year to date  Local authority    E92000001
#> 2583        2025         Week 26 Year to date  Local authority    E92000001
#> 2584        2025         Week 26 Year to date  Local authority    E92000001
#> 2585        2025         Week 26 Year to date  Local authority    E92000001
#> 2586        2025         Week 26 Year to date  Local authority    E92000001
#> 2587        2025         Week 26 Year to date  Local authority    E92000001
#> 2588        2025         Week 26 Year to date  Local authority    E92000001
#> 2589        2025         Week 26 Year to date  Local authority    E92000001
#> 2590        2025         Week 26 Year to date  Local authority    E92000001
#> 2591        2025         Week 26 Year to date  Local authority    E92000001
#> 2592        2025         Week 26 Year to date  Local authority    E92000001
#> 2593        2025         Week 26 Year to date  Local authority    E92000001
#> 2594        2025         Week 26 Year to date  Local authority    E92000001
#> 2595        2025         Week 26 Year to date  Local authority    E92000001
#> 2596        2025         Week 26 Year to date  Local authority    E92000001
#> 2597        2025         Week 26 Year to date  Local authority    E92000001
#> 2598        2025         Week 26 Year to date  Local authority    E92000001
#> 2599        2025         Week 26 Year to date  Local authority    E92000001
#> 2600        2025         Week 26 Year to date  Local authority    E92000001
#> 2601        2025         Week 26 Year to date  Local authority    E92000001
#> 2602        2025         Week 26 Year to date  Local authority    E92000001
#> 2603        2025         Week 26 Year to date  Local authority    E92000001
#> 2604        2025         Week 26 Year to date  Local authority    E92000001
#> 2605        2025         Week 26 Year to date  Local authority    E92000001
#> 2606        2025         Week 26 Year to date  Local authority    E92000001
#> 2607        2025         Week 26 Year to date  Local authority    E92000001
#> 2608        2025         Week 26 Year to date  Local authority    E92000001
#> 2609        2025         Week 26 Year to date  Local authority    E92000001
#> 2610        2025         Week 26 Year to date  Local authority    E92000001
#> 2611        2025         Week 26 Year to date  Local authority    E92000001
#> 2612        2025         Week 26 Year to date  Local authority    E92000001
#> 2613        2025         Week 26 Year to date  Local authority    E92000001
#> 2614        2025         Week 26 Year to date  Local authority    E92000001
#> 2615        2025         Week 26 Year to date  Local authority    E92000001
#> 2616        2025         Week 26 Year to date  Local authority    E92000001
#> 2617        2025         Week 26 Year to date  Local authority    E92000001
#> 2618        2025         Week 26 Year to date  Local authority    E92000001
#> 2619        2025         Week 26 Year to date  Local authority    E92000001
#> 2620        2025         Week 26 Year to date  Local authority    E92000001
#> 2621        2025         Week 26 Year to date  Local authority    E92000001
#> 2622        2025         Week 26 Year to date  Local authority    E92000001
#> 2623        2025         Week 26 Year to date  Local authority    E92000001
#> 2624        2025         Week 26 Year to date  Local authority    E92000001
#> 2625        2025         Week 26 Year to date  Local authority    E92000001
#> 2626        2025         Week 26 Year to date  Local authority    E92000001
#> 2627        2025         Week 26 Year to date  Local authority    E92000001
#> 2628        2025         Week 26 Year to date  Local authority    E92000001
#> 2629        2025         Week 26 Year to date  Local authority    E92000001
#> 2630        2025         Week 26 Year to date  Local authority    E92000001
#> 2631        2025         Week 26 Year to date  Local authority    E92000001
#> 2632        2025         Week 26 Year to date  Local authority    E92000001
#> 2633        2025         Week 26 Year to date  Local authority    E92000001
#> 2634        2025         Week 26 Year to date  Local authority    E92000001
#> 2635        2025         Week 26 Year to date  Local authority    E92000001
#> 2636        2025         Week 26 Year to date  Local authority    E92000001
#> 2637        2025         Week 26 Year to date  Local authority    E92000001
#> 2638        2025         Week 26 Year to date  Local authority    E92000001
#> 2639        2025         Week 26 Year to date  Local authority    E92000001
#> 2640        2025         Week 26 Year to date  Local authority    E92000001
#> 2641        2025         Week 26 Year to date  Local authority    E92000001
#> 2642        2025         Week 26 Year to date  Local authority    E92000001
#> 2643        2025         Week 26 Year to date  Local authority    E92000001
#> 2644        2025         Week 26 Year to date  Local authority    E92000001
#> 2645        2025         Week 26 Year to date  Local authority    E92000001
#> 2646        2025         Week 26 Year to date  Local authority    E92000001
#> 2647        2025         Week 26 Year to date  Local authority    E92000001
#> 2648        2025         Week 26 Year to date  Local authority    E92000001
#> 2649        2025         Week 26 Year to date  Local authority    E92000001
#> 2650        2025         Week 26 Year to date  Local authority    E92000001
#> 2651        2025         Week 26 Year to date  Local authority    E92000001
#> 2652        2025         Week 26 Year to date  Local authority    E92000001
#> 2653        2025         Week 26 Year to date  Local authority    E92000001
#> 2654        2025         Week 26 Year to date  Local authority    E92000001
#> 2655        2025         Week 26 Year to date  Local authority    E92000001
#> 2656        2025         Week 26 Year to date  Local authority    E92000001
#> 2657        2025         Week 26 Year to date  Local authority    E92000001
#> 2658        2025         Week 26 Year to date  Local authority    E92000001
#> 2659        2025         Week 26 Year to date  Local authority    E92000001
#> 2660        2025         Week 26 Year to date  Local authority    E92000001
#> 2661        2025         Week 26 Year to date  Local authority    E92000001
#> 2662        2025         Week 26 Year to date  Local authority    E92000001
#> 2663        2025         Week 26 Year to date  Local authority    E92000001
#> 2664        2025         Week 26 Year to date  Local authority    E92000001
#> 2665        2025         Week 26 Year to date  Local authority    E92000001
#> 2666        2025         Week 26 Year to date  Local authority    E92000001
#> 2667        2025         Week 26 Year to date  Local authority    E92000001
#> 2668        2025         Week 26 Year to date  Local authority    E92000001
#> 2669        2025         Week 26 Year to date         Regional    E92000001
#> 2670        2025         Week 26 Year to date         Regional    E92000001
#> 2671        2025         Week 26 Year to date         Regional    E92000001
#> 2672        2025         Week 26 Year to date         Regional    E92000001
#> 2673        2025         Week 26 Year to date  Local authority    E92000001
#> 2674        2025         Week 26 Year to date  Local authority    E92000001
#> 2675        2025         Week 26 Year to date  Local authority    E92000001
#> 2676        2025         Week 26 Year to date  Local authority    E92000001
#> 2677        2025         Week 26 Year to date  Local authority    E92000001
#> 2678        2025         Week 26 Year to date  Local authority    E92000001
#> 2679        2025         Week 26 Year to date  Local authority    E92000001
#> 2680        2025         Week 26 Year to date  Local authority    E92000001
#> 2681        2025         Week 26 Year to date  Local authority    E92000001
#> 2682        2025         Week 26 Year to date  Local authority    E92000001
#> 2683        2025         Week 26 Year to date  Local authority    E92000001
#> 2684        2025         Week 26 Year to date  Local authority    E92000001
#> 2685        2025         Week 26 Year to date  Local authority    E92000001
#> 2686        2025         Week 26 Year to date  Local authority    E92000001
#> 2687        2025         Week 26 Year to date  Local authority    E92000001
#> 2688        2025         Week 26 Year to date  Local authority    E92000001
#> 2689        2025         Week 26 Year to date  Local authority    E92000001
#> 2690        2025         Week 26 Year to date  Local authority    E92000001
#> 2691        2025         Week 26 Year to date  Local authority    E92000001
#> 2692        2025         Week 26 Year to date  Local authority    E92000001
#> 2693        2025         Week 26 Year to date  Local authority    E92000001
#> 2694        2025         Week 26 Year to date  Local authority    E92000001
#> 2695        2025         Week 26 Year to date  Local authority    E92000001
#> 2696        2025         Week 26 Year to date  Local authority    E92000001
#> 2697        2025         Week 26 Year to date  Local authority    E92000001
#> 2698        2025         Week 26 Year to date  Local authority    E92000001
#> 2699        2025         Week 26 Year to date  Local authority    E92000001
#> 2700        2025         Week 26 Year to date  Local authority    E92000001
#> 2701        2025         Week 26 Year to date  Local authority    E92000001
#> 2702        2025         Week 26 Year to date  Local authority    E92000001
#> 2703        2025         Week 26 Year to date  Local authority    E92000001
#> 2704        2025         Week 26 Year to date  Local authority    E92000001
#> 2705        2025         Week 26 Year to date  Local authority    E92000001
#> 2706        2025         Week 26 Year to date  Local authority    E92000001
#> 2707        2025         Week 26 Year to date  Local authority    E92000001
#> 2708        2025         Week 26 Year to date  Local authority    E92000001
#> 2709        2025         Week 26 Year to date  Local authority    E92000001
#> 2710        2025         Week 26 Year to date  Local authority    E92000001
#> 2711        2025         Week 26 Year to date  Local authority    E92000001
#> 2712        2025         Week 26 Year to date  Local authority    E92000001
#> 2713        2025         Week 26 Year to date  Local authority    E92000001
#> 2714        2025         Week 26 Year to date  Local authority    E92000001
#> 2715        2025         Week 26 Year to date  Local authority    E92000001
#> 2716        2025         Week 26 Year to date  Local authority    E92000001
#> 2717        2025         Week 26 Year to date  Local authority    E92000001
#> 2718        2025         Week 26 Year to date  Local authority    E92000001
#> 2719        2025         Week 26 Year to date  Local authority    E92000001
#> 2720        2025         Week 26 Year to date  Local authority    E92000001
#> 2721        2025         Week 26 Year to date  Local authority    E92000001
#> 2722        2025         Week 26 Year to date  Local authority    E92000001
#> 2723        2025         Week 26 Year to date  Local authority    E92000001
#> 2724        2025         Week 26 Year to date  Local authority    E92000001
#> 2725        2025         Week 26 Year to date  Local authority    E92000001
#> 2726        2025         Week 26 Year to date  Local authority    E92000001
#> 2727        2025         Week 26 Year to date  Local authority    E92000001
#> 2728        2025         Week 26 Year to date  Local authority    E92000001
#> 2729        2025         Week 26 Year to date  Local authority    E92000001
#> 2730        2025         Week 26 Year to date         Regional    E92000001
#> 2731        2025         Week 26 Year to date         Regional    E92000001
#> 2732        2025         Week 26 Year to date         Regional    E92000001
#> 2733        2025         Week 26 Year to date         Regional    E92000001
#> 2734        2025         Week 26 Year to date  Local authority    E92000001
#> 2735        2025         Week 26 Year to date  Local authority    E92000001
#> 2736        2025         Week 26 Year to date  Local authority    E92000001
#> 2737        2025         Week 26 Year to date  Local authority    E92000001
#> 2738        2025         Week 26 Year to date  Local authority    E92000001
#> 2739        2025         Week 26 Year to date  Local authority    E92000001
#> 2740        2025         Week 26 Year to date  Local authority    E92000001
#> 2741        2025         Week 26 Year to date  Local authority    E92000001
#> 2742        2025         Week 26 Year to date  Local authority    E92000001
#> 2743        2025         Week 26 Year to date  Local authority    E92000001
#> 2744        2025         Week 26 Year to date  Local authority    E92000001
#> 2745        2025         Week 26 Year to date  Local authority    E92000001
#> 2746        2025         Week 26 Year to date  Local authority    E92000001
#> 2747        2025         Week 26 Year to date  Local authority    E92000001
#> 2748        2025         Week 26 Year to date  Local authority    E92000001
#> 2749        2025         Week 26 Year to date  Local authority    E92000001
#> 2750        2025         Week 26 Year to date  Local authority    E92000001
#> 2751        2025         Week 26 Year to date  Local authority    E92000001
#> 2752        2025         Week 26 Year to date  Local authority    E92000001
#> 2753        2025         Week 26 Year to date  Local authority    E92000001
#> 2754        2025         Week 26 Year to date  Local authority    E92000001
#> 2755        2025         Week 26 Year to date  Local authority    E92000001
#> 2756        2025         Week 26 Year to date  Local authority    E92000001
#> 2757        2025         Week 26 Year to date  Local authority    E92000001
#> 2758        2025         Week 26 Year to date  Local authority    E92000001
#> 2759        2025         Week 26 Year to date  Local authority    E92000001
#> 2760        2025         Week 26 Year to date  Local authority    E92000001
#> 2761        2025         Week 26 Year to date  Local authority    E92000001
#> 2762        2025         Week 26 Year to date  Local authority    E92000001
#> 2763        2025         Week 26 Year to date  Local authority    E92000001
#> 2764        2025         Week 26 Year to date  Local authority    E92000001
#> 2765        2025         Week 26 Year to date  Local authority    E92000001
#> 2766        2025         Week 26 Year to date  Local authority    E92000001
#> 2767        2025         Week 26 Year to date  Local authority    E92000001
#> 2768        2025         Week 26 Year to date  Local authority    E92000001
#> 2769        2025         Week 26 Year to date  Local authority    E92000001
#> 2770        2025         Week 26 Year to date  Local authority    E92000001
#> 2771        2025         Week 26 Year to date  Local authority    E92000001
#> 2772        2025         Week 26 Year to date  Local authority    E92000001
#> 2773        2025         Week 26 Year to date  Local authority    E92000001
#> 2774        2025         Week 26 Year to date  Local authority    E92000001
#> 2775        2025         Week 26 Year to date  Local authority    E92000001
#> 2776        2025         Week 26 Year to date  Local authority    E92000001
#> 2777        2025         Week 24 Year to date         National    E92000001
#> 2778        2025         Week 24 Year to date         National    E92000001
#> 2779        2025         Week 24 Year to date         National    E92000001
#> 2780        2025         Week 24 Year to date         National    E92000001
#> 2781        2025         Week 24 Year to date         Regional    E92000001
#> 2782        2025         Week 24 Year to date         Regional    E92000001
#> 2783        2025         Week 24 Year to date         Regional    E92000001
#> 2784        2025         Week 24 Year to date         Regional    E92000001
#> 2785        2025         Week 24 Year to date  Local authority    E92000001
#> 2786        2025         Week 24 Year to date  Local authority    E92000001
#> 2787        2025         Week 24 Year to date  Local authority    E92000001
#> 2788        2025         Week 24 Year to date  Local authority    E92000001
#> 2789        2025         Week 24 Year to date  Local authority    E92000001
#> 2790        2025         Week 24 Year to date  Local authority    E92000001
#> 2791        2025         Week 24 Year to date  Local authority    E92000001
#> 2792        2025         Week 24 Year to date  Local authority    E92000001
#> 2793        2025         Week 24 Year to date  Local authority    E92000001
#> 2794        2025         Week 24 Year to date  Local authority    E92000001
#> 2795        2025         Week 24 Year to date  Local authority    E92000001
#> 2796        2025         Week 24 Year to date  Local authority    E92000001
#> 2797        2025         Week 24 Year to date  Local authority    E92000001
#> 2798        2025         Week 24 Year to date  Local authority    E92000001
#> 2799        2025         Week 24 Year to date  Local authority    E92000001
#> 2800        2025         Week 24 Year to date  Local authority    E92000001
#> 2801        2025         Week 24 Year to date  Local authority    E92000001
#> 2802        2025         Week 24 Year to date  Local authority    E92000001
#> 2803        2025         Week 24 Year to date  Local authority    E92000001
#> 2804        2025         Week 24 Year to date  Local authority    E92000001
#> 2805        2025         Week 24 Year to date  Local authority    E92000001
#> 2806        2025         Week 24 Year to date  Local authority    E92000001
#> 2807        2025         Week 24 Year to date  Local authority    E92000001
#> 2808        2025         Week 24 Year to date  Local authority    E92000001
#> 2809        2025         Week 24 Year to date  Local authority    E92000001
#> 2810        2025         Week 24 Year to date  Local authority    E92000001
#> 2811        2025         Week 24 Year to date  Local authority    E92000001
#> 2812        2025         Week 24 Year to date  Local authority    E92000001
#> 2813        2025         Week 24 Year to date  Local authority    E92000001
#> 2814        2025         Week 24 Year to date  Local authority    E92000001
#> 2815        2025         Week 24 Year to date  Local authority    E92000001
#> 2816        2025         Week 24 Year to date  Local authority    E92000001
#> 2817        2025         Week 24 Year to date  Local authority    E92000001
#> 2818        2025         Week 24 Year to date  Local authority    E92000001
#> 2819        2025         Week 24 Year to date  Local authority    E92000001
#> 2820        2025         Week 24 Year to date  Local authority    E92000001
#> 2821        2025         Week 24 Year to date         Regional    E92000001
#> 2822        2025         Week 24 Year to date         Regional    E92000001
#> 2823        2025         Week 24 Year to date         Regional    E92000001
#> 2824        2025         Week 24 Year to date         Regional    E92000001
#> 2825        2025         Week 24 Year to date  Local authority    E92000001
#> 2826        2025         Week 24 Year to date  Local authority    E92000001
#> 2827        2025         Week 24 Year to date  Local authority    E92000001
#> 2828        2025         Week 24 Year to date  Local authority    E92000001
#> 2829        2025         Week 24 Year to date  Local authority    E92000001
#> 2830        2025         Week 24 Year to date  Local authority    E92000001
#> 2831        2025         Week 24 Year to date  Local authority    E92000001
#> 2832        2025         Week 24 Year to date  Local authority    E92000001
#> 2833        2025         Week 24 Year to date  Local authority    E92000001
#> 2834        2025         Week 24 Year to date  Local authority    E92000001
#> 2835        2025         Week 24 Year to date  Local authority    E92000001
#> 2836        2025         Week 24 Year to date  Local authority    E92000001
#> 2837        2025         Week 24 Year to date  Local authority    E92000001
#> 2838        2025         Week 24 Year to date  Local authority    E92000001
#> 2839        2025         Week 24 Year to date  Local authority    E92000001
#> 2840        2025         Week 24 Year to date  Local authority    E92000001
#> 2841        2025         Week 24 Year to date  Local authority    E92000001
#> 2842        2025         Week 24 Year to date  Local authority    E92000001
#> 2843        2025         Week 24 Year to date  Local authority    E92000001
#> 2844        2025         Week 24 Year to date  Local authority    E92000001
#> 2845        2025         Week 24 Year to date  Local authority    E92000001
#> 2846        2025         Week 24 Year to date  Local authority    E92000001
#> 2847        2025         Week 24 Year to date  Local authority    E92000001
#> 2848        2025         Week 24 Year to date  Local authority    E92000001
#> 2849        2025         Week 24 Year to date  Local authority    E92000001
#> 2850        2025         Week 24 Year to date  Local authority    E92000001
#> 2851        2025         Week 24 Year to date  Local authority    E92000001
#> 2852        2025         Week 24 Year to date  Local authority    E92000001
#> 2853        2025         Week 24 Year to date  Local authority    E92000001
#> 2854        2025         Week 24 Year to date  Local authority    E92000001
#> 2855        2025         Week 24 Year to date  Local authority    E92000001
#> 2856        2025         Week 24 Year to date  Local authority    E92000001
#> 2857        2025         Week 24 Year to date  Local authority    E92000001
#> 2858        2025         Week 24 Year to date  Local authority    E92000001
#> 2859        2025         Week 24 Year to date  Local authority    E92000001
#> 2860        2025         Week 24 Year to date  Local authority    E92000001
#> 2861        2025         Week 24 Year to date  Local authority    E92000001
#> 2862        2025         Week 24 Year to date  Local authority    E92000001
#> 2863        2025         Week 24 Year to date  Local authority    E92000001
#> 2864        2025         Week 24 Year to date  Local authority    E92000001
#> 2865        2025         Week 24 Year to date  Local authority    E92000001
#> 2866        2025         Week 24 Year to date  Local authority    E92000001
#> 2867        2025         Week 24 Year to date  Local authority    E92000001
#> 2868        2025         Week 24 Year to date  Local authority    E92000001
#> 2869        2025         Week 24 Year to date  Local authority    E92000001
#> 2870        2025         Week 24 Year to date  Local authority    E92000001
#> 2871        2025         Week 24 Year to date  Local authority    E92000001
#> 2872        2025         Week 24 Year to date  Local authority    E92000001
#> 2873        2025         Week 24 Year to date  Local authority    E92000001
#> 2874        2025         Week 24 Year to date  Local authority    E92000001
#> 2875        2025         Week 24 Year to date  Local authority    E92000001
#> 2876        2025         Week 24 Year to date  Local authority    E92000001
#> 2877        2025         Week 24 Year to date  Local authority    E92000001
#> 2878        2025         Week 24 Year to date  Local authority    E92000001
#> 2879        2025         Week 24 Year to date  Local authority    E92000001
#> 2880        2025         Week 24 Year to date  Local authority    E92000001
#> 2881        2025         Week 24 Year to date  Local authority    E92000001
#> 2882        2025         Week 24 Year to date  Local authority    E92000001
#> 2883        2025         Week 24 Year to date  Local authority    E92000001
#> 2884        2025         Week 24 Year to date  Local authority    E92000001
#> 2885        2025         Week 24 Year to date  Local authority    E92000001
#> 2886        2025         Week 24 Year to date  Local authority    E92000001
#> 2887        2025         Week 24 Year to date  Local authority    E92000001
#> 2888        2025         Week 24 Year to date  Local authority    E92000001
#> 2889        2025         Week 24 Year to date  Local authority    E92000001
#> 2890        2025         Week 24 Year to date  Local authority    E92000001
#> 2891        2025         Week 24 Year to date  Local authority    E92000001
#> 2892        2025         Week 24 Year to date  Local authority    E92000001
#> 2893        2025         Week 24 Year to date  Local authority    E92000001
#> 2894        2025         Week 24 Year to date  Local authority    E92000001
#> 2895        2025         Week 24 Year to date  Local authority    E92000001
#> 2896        2025         Week 24 Year to date  Local authority    E92000001
#> 2897        2025         Week 24 Year to date         Regional    E92000001
#> 2898        2025         Week 24 Year to date         Regional    E92000001
#> 2899        2025         Week 24 Year to date         Regional    E92000001
#> 2900        2025         Week 24 Year to date         Regional    E92000001
#> 2901        2025         Week 24 Year to date  Local authority    E92000001
#> 2902        2025         Week 24 Year to date  Local authority    E92000001
#> 2903        2025         Week 24 Year to date  Local authority    E92000001
#> 2904        2025         Week 24 Year to date  Local authority    E92000001
#> 2905        2025         Week 24 Year to date  Local authority    E92000001
#> 2906        2025         Week 24 Year to date  Local authority    E92000001
#> 2907        2025         Week 24 Year to date  Local authority    E92000001
#> 2908        2025         Week 24 Year to date  Local authority    E92000001
#> 2909        2025         Week 24 Year to date  Local authority    E92000001
#> 2910        2025         Week 24 Year to date  Local authority    E92000001
#> 2911        2025         Week 24 Year to date  Local authority    E92000001
#> 2912        2025         Week 24 Year to date  Local authority    E92000001
#> 2913        2025         Week 24 Year to date  Local authority    E92000001
#> 2914        2025         Week 24 Year to date  Local authority    E92000001
#> 2915        2025         Week 24 Year to date  Local authority    E92000001
#> 2916        2025         Week 24 Year to date  Local authority    E92000001
#> 2917        2025         Week 24 Year to date  Local authority    E92000001
#> 2918        2025         Week 24 Year to date  Local authority    E92000001
#> 2919        2025         Week 24 Year to date  Local authority    E92000001
#> 2920        2025         Week 24 Year to date  Local authority    E92000001
#> 2921        2025         Week 24 Year to date  Local authority    E92000001
#> 2922        2025         Week 24 Year to date  Local authority    E92000001
#> 2923        2025         Week 24 Year to date  Local authority    E92000001
#> 2924        2025         Week 24 Year to date  Local authority    E92000001
#> 2925        2025         Week 24 Year to date  Local authority    E92000001
#> 2926        2025         Week 24 Year to date  Local authority    E92000001
#> 2927        2025         Week 24 Year to date  Local authority    E92000001
#> 2928        2025         Week 24 Year to date  Local authority    E92000001
#> 2929        2025         Week 24 Year to date  Local authority    E92000001
#> 2930        2025         Week 24 Year to date  Local authority    E92000001
#> 2931        2025         Week 24 Year to date  Local authority    E92000001
#> 2932        2025         Week 24 Year to date  Local authority    E92000001
#> 2933        2025         Week 24 Year to date  Local authority    E92000001
#> 2934        2025         Week 24 Year to date  Local authority    E92000001
#> 2935        2025         Week 24 Year to date  Local authority    E92000001
#> 2936        2025         Week 24 Year to date  Local authority    E92000001
#> 2937        2025         Week 24 Year to date  Local authority    E92000001
#> 2938        2025         Week 24 Year to date  Local authority    E92000001
#> 2939        2025         Week 24 Year to date  Local authority    E92000001
#> 2940        2025         Week 24 Year to date  Local authority    E92000001
#> 2941        2025         Week 24 Year to date  Local authority    E92000001
#> 2942        2025         Week 24 Year to date  Local authority    E92000001
#> 2943        2025         Week 24 Year to date  Local authority    E92000001
#> 2944        2025         Week 24 Year to date  Local authority    E92000001
#> 2945        2025         Week 24 Year to date  Local authority    E92000001
#> 2946        2025         Week 24 Year to date         Regional    E92000001
#> 2947        2025         Week 24 Year to date         Regional    E92000001
#> 2948        2025         Week 24 Year to date         Regional    E92000001
#> 2949        2025         Week 24 Year to date         Regional    E92000001
#> 2950        2025         Week 24 Year to date  Local authority    E92000001
#> 2951        2025         Week 24 Year to date  Local authority    E92000001
#> 2952        2025         Week 24 Year to date  Local authority    E92000001
#> 2953        2025         Week 24 Year to date  Local authority    E92000001
#> 2954        2025         Week 24 Year to date  Local authority    E92000001
#> 2955        2025         Week 24 Year to date  Local authority    E92000001
#> 2956        2025         Week 24 Year to date  Local authority    E92000001
#> 2957        2025         Week 24 Year to date  Local authority    E92000001
#> 2958        2025         Week 24 Year to date  Local authority    E92000001
#> 2959        2025         Week 24 Year to date  Local authority    E92000001
#> 2960        2025         Week 24 Year to date  Local authority    E92000001
#> 2961        2025         Week 24 Year to date  Local authority    E92000001
#> 2962        2025         Week 24 Year to date  Local authority    E92000001
#> 2963        2025         Week 24 Year to date  Local authority    E92000001
#> 2964        2025         Week 24 Year to date  Local authority    E92000001
#> 2965        2025         Week 24 Year to date  Local authority    E92000001
#> 2966        2025         Week 24 Year to date  Local authority    E92000001
#> 2967        2025         Week 24 Year to date  Local authority    E92000001
#> 2968        2025         Week 24 Year to date  Local authority    E92000001
#> 2969        2025         Week 24 Year to date  Local authority    E92000001
#> 2970        2025         Week 24 Year to date  Local authority    E92000001
#> 2971        2025         Week 24 Year to date  Local authority    E92000001
#> 2972        2025         Week 24 Year to date  Local authority    E92000001
#> 2973        2025         Week 24 Year to date  Local authority    E92000001
#> 2974        2025         Week 24 Year to date  Local authority    E92000001
#> 2975        2025         Week 24 Year to date  Local authority    E92000001
#> 2976        2025         Week 24 Year to date  Local authority    E92000001
#> 2977        2025         Week 24 Year to date  Local authority    E92000001
#> 2978        2025         Week 24 Year to date  Local authority    E92000001
#> 2979        2025         Week 24 Year to date         Regional    E92000001
#> 2980        2025         Week 24 Year to date         Regional    E92000001
#> 2981        2025         Week 24 Year to date         Regional    E92000001
#> 2982        2025         Week 24 Year to date         Regional    E92000001
#> 2983        2025         Week 24 Year to date  Local authority    E92000001
#> 2984        2025         Week 24 Year to date  Local authority    E92000001
#> 2985        2025         Week 24 Year to date  Local authority    E92000001
#> 2986        2025         Week 24 Year to date  Local authority    E92000001
#> 2987        2025         Week 24 Year to date  Local authority    E92000001
#> 2988        2025         Week 24 Year to date  Local authority    E92000001
#> 2989        2025         Week 24 Year to date  Local authority    E92000001
#> 2990        2025         Week 24 Year to date  Local authority    E92000001
#> 2991        2025         Week 24 Year to date  Local authority    E92000001
#> 2992        2025         Week 24 Year to date  Local authority    E92000001
#> 2993        2025         Week 24 Year to date  Local authority    E92000001
#> 2994        2025         Week 24 Year to date  Local authority    E92000001
#> 2995        2025         Week 24 Year to date  Local authority    E92000001
#> 2996        2025         Week 24 Year to date  Local authority    E92000001
#> 2997        2025         Week 24 Year to date  Local authority    E92000001
#> 2998        2025         Week 24 Year to date  Local authority    E92000001
#> 2999        2025         Week 24 Year to date  Local authority    E92000001
#> 3000        2025         Week 24 Year to date  Local authority    E92000001
#> 3001        2025         Week 24 Year to date  Local authority    E92000001
#> 3002        2025         Week 24 Year to date  Local authority    E92000001
#> 3003        2025         Week 24 Year to date  Local authority    E92000001
#> 3004        2025         Week 24 Year to date  Local authority    E92000001
#> 3005        2025         Week 24 Year to date  Local authority    E92000001
#> 3006        2025         Week 24 Year to date  Local authority    E92000001
#> 3007        2025         Week 24 Year to date  Local authority    E92000001
#> 3008        2025         Week 24 Year to date  Local authority    E92000001
#> 3009        2025         Week 24 Year to date  Local authority    E92000001
#> 3010        2025         Week 24 Year to date  Local authority    E92000001
#> 3011        2025         Week 24 Year to date  Local authority    E92000001
#> 3012        2025         Week 24 Year to date  Local authority    E92000001
#> 3013        2025         Week 24 Year to date  Local authority    E92000001
#> 3014        2025         Week 24 Year to date  Local authority    E92000001
#> 3015        2025         Week 24 Year to date  Local authority    E92000001
#> 3016        2025         Week 24 Year to date  Local authority    E92000001
#> 3017        2025         Week 24 Year to date  Local authority    E92000001
#> 3018        2025         Week 24 Year to date  Local authority    E92000001
#> 3019        2025         Week 24 Year to date  Local authority    E92000001
#> 3020        2025         Week 24 Year to date  Local authority    E92000001
#> 3021        2025         Week 24 Year to date  Local authority    E92000001
#> 3022        2025         Week 24 Year to date  Local authority    E92000001
#> 3023        2025         Week 24 Year to date  Local authority    E92000001
#> 3024        2025         Week 24 Year to date  Local authority    E92000001
#> 3025        2025         Week 24 Year to date         Regional    E92000001
#> 3026        2025         Week 24 Year to date         Regional    E92000001
#> 3027        2025         Week 24 Year to date         Regional    E92000001
#> 3028        2025         Week 24 Year to date         Regional    E92000001
#> 3029        2025         Week 24 Year to date  Local authority    E92000001
#> 3030        2025         Week 24 Year to date  Local authority    E92000001
#> 3031        2025         Week 24 Year to date  Local authority    E92000001
#> 3032        2025         Week 24 Year to date  Local authority    E92000001
#> 3033        2025         Week 24 Year to date  Local authority    E92000001
#> 3034        2025         Week 24 Year to date  Local authority    E92000001
#> 3035        2025         Week 24 Year to date  Local authority    E92000001
#> 3036        2025         Week 24 Year to date  Local authority    E92000001
#> 3037        2025         Week 24 Year to date  Local authority    E92000001
#> 3038        2025         Week 24 Year to date  Local authority    E92000001
#> 3039        2025         Week 24 Year to date  Local authority    E92000001
#> 3040        2025         Week 24 Year to date  Local authority    E92000001
#> 3041        2025         Week 24 Year to date  Local authority    E92000001
#> 3042        2025         Week 24 Year to date  Local authority    E92000001
#> 3043        2025         Week 24 Year to date  Local authority    E92000001
#> 3044        2025         Week 24 Year to date  Local authority    E92000001
#> 3045        2025         Week 24 Year to date  Local authority    E92000001
#> 3046        2025         Week 24 Year to date  Local authority    E92000001
#> 3047        2025         Week 24 Year to date  Local authority    E92000001
#> 3048        2025         Week 24 Year to date  Local authority    E92000001
#> 3049        2025         Week 24 Year to date  Local authority    E92000001
#> 3050        2025         Week 24 Year to date  Local authority    E92000001
#> 3051        2025         Week 24 Year to date  Local authority    E92000001
#> 3052        2025         Week 24 Year to date  Local authority    E92000001
#> 3053        2025         Week 24 Year to date  Local authority    E92000001
#> 3054        2025         Week 24 Year to date  Local authority    E92000001
#> 3055        2025         Week 24 Year to date  Local authority    E92000001
#> 3056        2025         Week 24 Year to date  Local authority    E92000001
#> 3057        2025         Week 24 Year to date  Local authority    E92000001
#> 3058        2025         Week 24 Year to date  Local authority    E92000001
#> 3059        2025         Week 24 Year to date  Local authority    E92000001
#> 3060        2025         Week 24 Year to date  Local authority    E92000001
#> 3061        2025         Week 24 Year to date  Local authority    E92000001
#> 3062        2025         Week 24 Year to date         Regional    E92000001
#> 3063        2025         Week 24 Year to date         Regional    E92000001
#> 3064        2025         Week 24 Year to date         Regional    E92000001
#> 3065        2025         Week 24 Year to date         Regional    E92000001
#> 3066        2025         Week 24 Year to date  Local authority    E92000001
#> 3067        2025         Week 24 Year to date  Local authority    E92000001
#> 3068        2025         Week 24 Year to date  Local authority    E92000001
#> 3069        2025         Week 24 Year to date  Local authority    E92000001
#> 3070        2025         Week 24 Year to date  Local authority    E92000001
#> 3071        2025         Week 24 Year to date  Local authority    E92000001
#> 3072        2025         Week 24 Year to date  Local authority    E92000001
#> 3073        2025         Week 24 Year to date  Local authority    E92000001
#> 3074        2025         Week 24 Year to date  Local authority    E92000001
#> 3075        2025         Week 24 Year to date  Local authority    E92000001
#> 3076        2025         Week 24 Year to date  Local authority    E92000001
#> 3077        2025         Week 24 Year to date  Local authority    E92000001
#> 3078        2025         Week 24 Year to date  Local authority    E92000001
#> 3079        2025         Week 24 Year to date  Local authority    E92000001
#> 3080        2025         Week 24 Year to date  Local authority    E92000001
#> 3081        2025         Week 24 Year to date  Local authority    E92000001
#> 3082        2025         Week 24 Year to date  Local authority    E92000001
#> 3083        2025         Week 24 Year to date  Local authority    E92000001
#> 3084        2025         Week 24 Year to date  Local authority    E92000001
#> 3085        2025         Week 24 Year to date  Local authority    E92000001
#> 3086        2025         Week 24 Year to date  Local authority    E92000001
#> 3087        2025         Week 24 Year to date  Local authority    E92000001
#> 3088        2025         Week 24 Year to date  Local authority    E92000001
#> 3089        2025         Week 24 Year to date  Local authority    E92000001
#> 3090        2025         Week 24 Year to date  Local authority    E92000001
#> 3091        2025         Week 24 Year to date  Local authority    E92000001
#> 3092        2025         Week 24 Year to date  Local authority    E92000001
#> 3093        2025         Week 24 Year to date  Local authority    E92000001
#> 3094        2025         Week 24 Year to date  Local authority    E92000001
#> 3095        2025         Week 24 Year to date  Local authority    E92000001
#> 3096        2025         Week 24 Year to date  Local authority    E92000001
#> 3097        2025         Week 24 Year to date  Local authority    E92000001
#> 3098        2025         Week 24 Year to date  Local authority    E92000001
#> 3099        2025         Week 24 Year to date  Local authority    E92000001
#> 3100        2025         Week 24 Year to date  Local authority    E92000001
#> 3101        2025         Week 24 Year to date  Local authority    E92000001
#> 3102        2025         Week 24 Year to date  Local authority    E92000001
#> 3103        2025         Week 24 Year to date  Local authority    E92000001
#> 3104        2025         Week 24 Year to date  Local authority    E92000001
#> 3105        2025         Week 24 Year to date  Local authority    E92000001
#> 3106        2025         Week 24 Year to date  Local authority    E92000001
#> 3107        2025         Week 24 Year to date  Local authority    E92000001
#> 3108        2025         Week 24 Year to date  Local authority    E92000001
#> 3109        2025         Week 24 Year to date  Local authority    E92000001
#> 3110        2025         Week 24 Year to date  Local authority    E92000001
#> 3111        2025         Week 24 Year to date  Local authority    E92000001
#> 3112        2025         Week 24 Year to date  Local authority    E92000001
#> 3113        2025         Week 24 Year to date  Local authority    E92000001
#> 3114        2025         Week 24 Year to date  Local authority    E92000001
#> 3115        2025         Week 24 Year to date  Local authority    E92000001
#> 3116        2025         Week 24 Year to date  Local authority    E92000001
#> 3117        2025         Week 24 Year to date  Local authority    E92000001
#> 3118        2025         Week 24 Year to date  Local authority    E92000001
#> 3119        2025         Week 24 Year to date  Local authority    E92000001
#> 3120        2025         Week 24 Year to date  Local authority    E92000001
#> 3121        2025         Week 24 Year to date  Local authority    E92000001
#> 3122        2025         Week 24 Year to date  Local authority    E92000001
#> 3123        2025         Week 24 Year to date  Local authority    E92000001
#> 3124        2025         Week 24 Year to date  Local authority    E92000001
#> 3125        2025         Week 24 Year to date  Local authority    E92000001
#> 3126        2025         Week 24 Year to date  Local authority    E92000001
#> 3127        2025         Week 24 Year to date  Local authority    E92000001
#> 3128        2025         Week 24 Year to date  Local authority    E92000001
#> 3129        2025         Week 24 Year to date  Local authority    E92000001
#> 3130        2025         Week 24 Year to date  Local authority    E92000001
#> 3131        2025         Week 24 Year to date  Local authority    E92000001
#> 3132        2025         Week 24 Year to date  Local authority    E92000001
#> 3133        2025         Week 24 Year to date  Local authority    E92000001
#> 3134        2025         Week 24 Year to date  Local authority    E92000001
#> 3135        2025         Week 24 Year to date  Local authority    E92000001
#> 3136        2025         Week 24 Year to date  Local authority    E92000001
#> 3137        2025         Week 24 Year to date  Local authority    E92000001
#> 3138        2025         Week 24 Year to date  Local authority    E92000001
#> 3139        2025         Week 24 Year to date  Local authority    E92000001
#> 3140        2025         Week 24 Year to date  Local authority    E92000001
#> 3141        2025         Week 24 Year to date  Local authority    E92000001
#> 3142        2025         Week 24 Year to date  Local authority    E92000001
#> 3143        2025         Week 24 Year to date  Local authority    E92000001
#> 3144        2025         Week 24 Year to date  Local authority    E92000001
#> 3145        2025         Week 24 Year to date  Local authority    E92000001
#> 3146        2025         Week 24 Year to date  Local authority    E92000001
#> 3147        2025         Week 24 Year to date  Local authority    E92000001
#> 3148        2025         Week 24 Year to date  Local authority    E92000001
#> 3149        2025         Week 24 Year to date  Local authority    E92000001
#> 3150        2025         Week 24 Year to date  Local authority    E92000001
#> 3151        2025         Week 24 Year to date  Local authority    E92000001
#> 3152        2025         Week 24 Year to date  Local authority    E92000001
#> 3153        2025         Week 24 Year to date  Local authority    E92000001
#> 3154        2025         Week 24 Year to date  Local authority    E92000001
#> 3155        2025         Week 24 Year to date  Local authority    E92000001
#> 3156        2025         Week 24 Year to date  Local authority    E92000001
#> 3157        2025         Week 24 Year to date  Local authority    E92000001
#> 3158        2025         Week 24 Year to date  Local authority    E92000001
#> 3159        2025         Week 24 Year to date  Local authority    E92000001
#> 3160        2025         Week 24 Year to date  Local authority    E92000001
#> 3161        2025         Week 24 Year to date  Local authority    E92000001
#> 3162        2025         Week 24 Year to date  Local authority    E92000001
#> 3163        2025         Week 24 Year to date         Regional    E92000001
#> 3164        2025         Week 24 Year to date         Regional    E92000001
#> 3165        2025         Week 24 Year to date         Regional    E92000001
#> 3166        2025         Week 24 Year to date         Regional    E92000001
#> 3167        2025         Week 24 Year to date  Local authority    E92000001
#> 3168        2025         Week 24 Year to date  Local authority    E92000001
#> 3169        2025         Week 24 Year to date  Local authority    E92000001
#> 3170        2025         Week 24 Year to date  Local authority    E92000001
#> 3171        2025         Week 24 Year to date  Local authority    E92000001
#> 3172        2025         Week 24 Year to date  Local authority    E92000001
#> 3173        2025         Week 24 Year to date  Local authority    E92000001
#> 3174        2025         Week 24 Year to date  Local authority    E92000001
#> 3175        2025         Week 24 Year to date  Local authority    E92000001
#> 3176        2025         Week 24 Year to date  Local authority    E92000001
#> 3177        2025         Week 24 Year to date  Local authority    E92000001
#> 3178        2025         Week 24 Year to date  Local authority    E92000001
#> 3179        2025         Week 24 Year to date  Local authority    E92000001
#> 3180        2025         Week 24 Year to date  Local authority    E92000001
#> 3181        2025         Week 24 Year to date  Local authority    E92000001
#> 3182        2025         Week 24 Year to date  Local authority    E92000001
#> 3183        2025         Week 24 Year to date  Local authority    E92000001
#> 3184        2025         Week 24 Year to date  Local authority    E92000001
#> 3185        2025         Week 24 Year to date  Local authority    E92000001
#> 3186        2025         Week 24 Year to date  Local authority    E92000001
#> 3187        2025         Week 24 Year to date  Local authority    E92000001
#> 3188        2025         Week 24 Year to date  Local authority    E92000001
#> 3189        2025         Week 24 Year to date  Local authority    E92000001
#> 3190        2025         Week 24 Year to date  Local authority    E92000001
#> 3191        2025         Week 24 Year to date  Local authority    E92000001
#> 3192        2025         Week 24 Year to date  Local authority    E92000001
#> 3193        2025         Week 24 Year to date  Local authority    E92000001
#> 3194        2025         Week 24 Year to date  Local authority    E92000001
#> 3195        2025         Week 24 Year to date  Local authority    E92000001
#> 3196        2025         Week 24 Year to date  Local authority    E92000001
#> 3197        2025         Week 24 Year to date  Local authority    E92000001
#> 3198        2025         Week 24 Year to date  Local authority    E92000001
#> 3199        2025         Week 24 Year to date  Local authority    E92000001
#> 3200        2025         Week 24 Year to date  Local authority    E92000001
#> 3201        2025         Week 24 Year to date  Local authority    E92000001
#> 3202        2025         Week 24 Year to date  Local authority    E92000001
#> 3203        2025         Week 24 Year to date  Local authority    E92000001
#> 3204        2025         Week 24 Year to date  Local authority    E92000001
#> 3205        2025         Week 24 Year to date  Local authority    E92000001
#> 3206        2025         Week 24 Year to date  Local authority    E92000001
#> 3207        2025         Week 24 Year to date  Local authority    E92000001
#> 3208        2025         Week 24 Year to date  Local authority    E92000001
#> 3209        2025         Week 24 Year to date  Local authority    E92000001
#> 3210        2025         Week 24 Year to date  Local authority    E92000001
#> 3211        2025         Week 24 Year to date  Local authority    E92000001
#> 3212        2025         Week 24 Year to date  Local authority    E92000001
#> 3213        2025         Week 24 Year to date  Local authority    E92000001
#> 3214        2025         Week 24 Year to date  Local authority    E92000001
#> 3215        2025         Week 24 Year to date  Local authority    E92000001
#> 3216        2025         Week 24 Year to date  Local authority    E92000001
#> 3217        2025         Week 24 Year to date  Local authority    E92000001
#> 3218        2025         Week 24 Year to date  Local authority    E92000001
#> 3219        2025         Week 24 Year to date  Local authority    E92000001
#> 3220        2025         Week 24 Year to date  Local authority    E92000001
#> 3221        2025         Week 24 Year to date  Local authority    E92000001
#> 3222        2025         Week 24 Year to date  Local authority    E92000001
#> 3223        2025         Week 24 Year to date  Local authority    E92000001
#> 3224        2025         Week 24 Year to date         Regional    E92000001
#> 3225        2025         Week 24 Year to date         Regional    E92000001
#> 3226        2025         Week 24 Year to date         Regional    E92000001
#> 3227        2025         Week 24 Year to date         Regional    E92000001
#> 3228        2025         Week 24 Year to date  Local authority    E92000001
#> 3229        2025         Week 24 Year to date  Local authority    E92000001
#> 3230        2025         Week 24 Year to date  Local authority    E92000001
#> 3231        2025         Week 24 Year to date  Local authority    E92000001
#> 3232        2025         Week 24 Year to date  Local authority    E92000001
#> 3233        2025         Week 24 Year to date  Local authority    E92000001
#> 3234        2025         Week 24 Year to date  Local authority    E92000001
#> 3235        2025         Week 24 Year to date  Local authority    E92000001
#> 3236        2025         Week 24 Year to date  Local authority    E92000001
#> 3237        2025         Week 24 Year to date  Local authority    E92000001
#> 3238        2025         Week 24 Year to date  Local authority    E92000001
#> 3239        2025         Week 24 Year to date  Local authority    E92000001
#> 3240        2025         Week 24 Year to date  Local authority    E92000001
#> 3241        2025         Week 24 Year to date  Local authority    E92000001
#> 3242        2025         Week 24 Year to date  Local authority    E92000001
#> 3243        2025         Week 24 Year to date  Local authority    E92000001
#> 3244        2025         Week 24 Year to date  Local authority    E92000001
#> 3245        2025         Week 24 Year to date  Local authority    E92000001
#> 3246        2025         Week 24 Year to date  Local authority    E92000001
#> 3247        2025         Week 24 Year to date  Local authority    E92000001
#> 3248        2025         Week 24 Year to date  Local authority    E92000001
#> 3249        2025         Week 24 Year to date  Local authority    E92000001
#> 3250        2025         Week 24 Year to date  Local authority    E92000001
#> 3251        2025         Week 24 Year to date  Local authority    E92000001
#> 3252        2025         Week 24 Year to date  Local authority    E92000001
#> 3253        2025         Week 24 Year to date  Local authority    E92000001
#> 3254        2025         Week 24 Year to date  Local authority    E92000001
#> 3255        2025         Week 24 Year to date  Local authority    E92000001
#> 3256        2025         Week 24 Year to date  Local authority    E92000001
#> 3257        2025         Week 24 Year to date  Local authority    E92000001
#> 3258        2025         Week 24 Year to date  Local authority    E92000001
#> 3259        2025         Week 24 Year to date  Local authority    E92000001
#> 3260        2025         Week 24 Year to date  Local authority    E92000001
#> 3261        2025         Week 24 Year to date  Local authority    E92000001
#> 3262        2025         Week 24 Year to date  Local authority    E92000001
#> 3263        2025         Week 24 Year to date  Local authority    E92000001
#> 3264        2025         Week 24 Year to date  Local authority    E92000001
#> 3265        2025         Week 24 Year to date  Local authority    E92000001
#> 3266        2025         Week 24 Year to date  Local authority    E92000001
#> 3267        2025         Week 24 Year to date  Local authority    E92000001
#> 3268        2025         Week 24 Year to date  Local authority    E92000001
#> 3269        2025         Week 24 Year to date  Local authority    E92000001
#> 3270        2025         Week 24 Year to date  Local authority    E92000001
#> 3271        2025         Week 21 Year to date         National    E92000001
#> 3272        2025         Week 21 Year to date         National    E92000001
#> 3273        2025         Week 21 Year to date         National    E92000001
#> 3274        2025         Week 21 Year to date         National    E92000001
#> 3275        2025         Week 21 Year to date         Regional    E92000001
#> 3276        2025         Week 21 Year to date         Regional    E92000001
#> 3277        2025         Week 21 Year to date         Regional    E92000001
#> 3278        2025         Week 21 Year to date         Regional    E92000001
#> 3279        2025         Week 21 Year to date  Local authority    E92000001
#> 3280        2025         Week 21 Year to date  Local authority    E92000001
#> 3281        2025         Week 21 Year to date  Local authority    E92000001
#> 3282        2025         Week 21 Year to date  Local authority    E92000001
#> 3283        2025         Week 21 Year to date  Local authority    E92000001
#> 3284        2025         Week 21 Year to date  Local authority    E92000001
#> 3285        2025         Week 21 Year to date  Local authority    E92000001
#> 3286        2025         Week 21 Year to date  Local authority    E92000001
#> 3287        2025         Week 21 Year to date  Local authority    E92000001
#> 3288        2025         Week 21 Year to date  Local authority    E92000001
#> 3289        2025         Week 21 Year to date  Local authority    E92000001
#> 3290        2025         Week 21 Year to date  Local authority    E92000001
#> 3291        2025         Week 21 Year to date  Local authority    E92000001
#> 3292        2025         Week 21 Year to date  Local authority    E92000001
#> 3293        2025         Week 21 Year to date  Local authority    E92000001
#> 3294        2025         Week 21 Year to date  Local authority    E92000001
#> 3295        2025         Week 21 Year to date  Local authority    E92000001
#> 3296        2025         Week 21 Year to date  Local authority    E92000001
#> 3297        2025         Week 21 Year to date  Local authority    E92000001
#> 3298        2025         Week 21 Year to date  Local authority    E92000001
#> 3299        2025         Week 21 Year to date  Local authority    E92000001
#> 3300        2025         Week 21 Year to date  Local authority    E92000001
#> 3301        2025         Week 21 Year to date  Local authority    E92000001
#> 3302        2025         Week 21 Year to date  Local authority    E92000001
#> 3303        2025         Week 21 Year to date  Local authority    E92000001
#> 3304        2025         Week 21 Year to date  Local authority    E92000001
#> 3305        2025         Week 21 Year to date  Local authority    E92000001
#> 3306        2025         Week 21 Year to date  Local authority    E92000001
#> 3307        2025         Week 21 Year to date  Local authority    E92000001
#> 3308        2025         Week 21 Year to date  Local authority    E92000001
#> 3309        2025         Week 21 Year to date  Local authority    E92000001
#> 3310        2025         Week 21 Year to date  Local authority    E92000001
#> 3311        2025         Week 21 Year to date  Local authority    E92000001
#> 3312        2025         Week 21 Year to date  Local authority    E92000001
#> 3313        2025         Week 21 Year to date  Local authority    E92000001
#> 3314        2025         Week 21 Year to date  Local authority    E92000001
#> 3315        2025         Week 21 Year to date         Regional    E92000001
#> 3316        2025         Week 21 Year to date         Regional    E92000001
#> 3317        2025         Week 21 Year to date         Regional    E92000001
#> 3318        2025         Week 21 Year to date         Regional    E92000001
#> 3319        2025         Week 21 Year to date  Local authority    E92000001
#> 3320        2025         Week 21 Year to date  Local authority    E92000001
#> 3321        2025         Week 21 Year to date  Local authority    E92000001
#> 3322        2025         Week 21 Year to date  Local authority    E92000001
#> 3323        2025         Week 21 Year to date  Local authority    E92000001
#> 3324        2025         Week 21 Year to date  Local authority    E92000001
#> 3325        2025         Week 21 Year to date  Local authority    E92000001
#> 3326        2025         Week 21 Year to date  Local authority    E92000001
#> 3327        2025         Week 21 Year to date  Local authority    E92000001
#> 3328        2025         Week 21 Year to date  Local authority    E92000001
#> 3329        2025         Week 21 Year to date  Local authority    E92000001
#> 3330        2025         Week 21 Year to date  Local authority    E92000001
#> 3331        2025         Week 21 Year to date  Local authority    E92000001
#> 3332        2025         Week 21 Year to date  Local authority    E92000001
#> 3333        2025         Week 21 Year to date  Local authority    E92000001
#> 3334        2025         Week 21 Year to date  Local authority    E92000001
#> 3335        2025         Week 21 Year to date  Local authority    E92000001
#> 3336        2025         Week 21 Year to date  Local authority    E92000001
#> 3337        2025         Week 21 Year to date  Local authority    E92000001
#> 3338        2025         Week 21 Year to date  Local authority    E92000001
#> 3339        2025         Week 21 Year to date  Local authority    E92000001
#> 3340        2025         Week 21 Year to date  Local authority    E92000001
#> 3341        2025         Week 21 Year to date  Local authority    E92000001
#> 3342        2025         Week 21 Year to date  Local authority    E92000001
#> 3343        2025         Week 21 Year to date  Local authority    E92000001
#> 3344        2025         Week 21 Year to date  Local authority    E92000001
#> 3345        2025         Week 21 Year to date  Local authority    E92000001
#> 3346        2025         Week 21 Year to date  Local authority    E92000001
#> 3347        2025         Week 21 Year to date  Local authority    E92000001
#> 3348        2025         Week 21 Year to date  Local authority    E92000001
#> 3349        2025         Week 21 Year to date  Local authority    E92000001
#> 3350        2025         Week 21 Year to date  Local authority    E92000001
#> 3351        2025         Week 21 Year to date  Local authority    E92000001
#> 3352        2025         Week 21 Year to date  Local authority    E92000001
#> 3353        2025         Week 21 Year to date  Local authority    E92000001
#> 3354        2025         Week 21 Year to date  Local authority    E92000001
#> 3355        2025         Week 21 Year to date  Local authority    E92000001
#> 3356        2025         Week 21 Year to date  Local authority    E92000001
#> 3357        2025         Week 21 Year to date  Local authority    E92000001
#> 3358        2025         Week 21 Year to date  Local authority    E92000001
#> 3359        2025         Week 21 Year to date  Local authority    E92000001
#> 3360        2025         Week 21 Year to date  Local authority    E92000001
#> 3361        2025         Week 21 Year to date  Local authority    E92000001
#> 3362        2025         Week 21 Year to date  Local authority    E92000001
#> 3363        2025         Week 21 Year to date  Local authority    E92000001
#> 3364        2025         Week 21 Year to date  Local authority    E92000001
#> 3365        2025         Week 21 Year to date  Local authority    E92000001
#> 3366        2025         Week 21 Year to date  Local authority    E92000001
#> 3367        2025         Week 21 Year to date  Local authority    E92000001
#> 3368        2025         Week 21 Year to date  Local authority    E92000001
#> 3369        2025         Week 21 Year to date  Local authority    E92000001
#> 3370        2025         Week 21 Year to date  Local authority    E92000001
#> 3371        2025         Week 21 Year to date  Local authority    E92000001
#> 3372        2025         Week 21 Year to date  Local authority    E92000001
#> 3373        2025         Week 21 Year to date  Local authority    E92000001
#> 3374        2025         Week 21 Year to date  Local authority    E92000001
#> 3375        2025         Week 21 Year to date  Local authority    E92000001
#> 3376        2025         Week 21 Year to date  Local authority    E92000001
#> 3377        2025         Week 21 Year to date  Local authority    E92000001
#> 3378        2025         Week 21 Year to date  Local authority    E92000001
#> 3379        2025         Week 21 Year to date  Local authority    E92000001
#> 3380        2025         Week 21 Year to date  Local authority    E92000001
#> 3381        2025         Week 21 Year to date  Local authority    E92000001
#> 3382        2025         Week 21 Year to date  Local authority    E92000001
#> 3383        2025         Week 21 Year to date  Local authority    E92000001
#> 3384        2025         Week 21 Year to date  Local authority    E92000001
#> 3385        2025         Week 21 Year to date  Local authority    E92000001
#> 3386        2025         Week 21 Year to date  Local authority    E92000001
#> 3387        2025         Week 21 Year to date  Local authority    E92000001
#> 3388        2025         Week 21 Year to date  Local authority    E92000001
#> 3389        2025         Week 21 Year to date  Local authority    E92000001
#> 3390        2025         Week 21 Year to date  Local authority    E92000001
#> 3391        2025         Week 21 Year to date         Regional    E92000001
#> 3392        2025         Week 21 Year to date         Regional    E92000001
#> 3393        2025         Week 21 Year to date         Regional    E92000001
#> 3394        2025         Week 21 Year to date         Regional    E92000001
#> 3395        2025         Week 21 Year to date  Local authority    E92000001
#> 3396        2025         Week 21 Year to date  Local authority    E92000001
#> 3397        2025         Week 21 Year to date  Local authority    E92000001
#> 3398        2025         Week 21 Year to date  Local authority    E92000001
#> 3399        2025         Week 21 Year to date  Local authority    E92000001
#> 3400        2025         Week 21 Year to date  Local authority    E92000001
#> 3401        2025         Week 21 Year to date  Local authority    E92000001
#> 3402        2025         Week 21 Year to date  Local authority    E92000001
#> 3403        2025         Week 21 Year to date  Local authority    E92000001
#> 3404        2025         Week 21 Year to date  Local authority    E92000001
#> 3405        2025         Week 21 Year to date  Local authority    E92000001
#> 3406        2025         Week 21 Year to date  Local authority    E92000001
#> 3407        2025         Week 21 Year to date  Local authority    E92000001
#> 3408        2025         Week 21 Year to date  Local authority    E92000001
#> 3409        2025         Week 21 Year to date  Local authority    E92000001
#> 3410        2025         Week 21 Year to date  Local authority    E92000001
#> 3411        2025         Week 21 Year to date  Local authority    E92000001
#> 3412        2025         Week 21 Year to date  Local authority    E92000001
#> 3413        2025         Week 21 Year to date  Local authority    E92000001
#> 3414        2025         Week 21 Year to date  Local authority    E92000001
#> 3415        2025         Week 21 Year to date  Local authority    E92000001
#> 3416        2025         Week 21 Year to date  Local authority    E92000001
#> 3417        2025         Week 21 Year to date  Local authority    E92000001
#> 3418        2025         Week 21 Year to date  Local authority    E92000001
#> 3419        2025         Week 21 Year to date  Local authority    E92000001
#> 3420        2025         Week 21 Year to date  Local authority    E92000001
#> 3421        2025         Week 21 Year to date  Local authority    E92000001
#> 3422        2025         Week 21 Year to date  Local authority    E92000001
#> 3423        2025         Week 21 Year to date  Local authority    E92000001
#> 3424        2025         Week 21 Year to date  Local authority    E92000001
#> 3425        2025         Week 21 Year to date  Local authority    E92000001
#> 3426        2025         Week 21 Year to date  Local authority    E92000001
#> 3427        2025         Week 21 Year to date  Local authority    E92000001
#> 3428        2025         Week 21 Year to date  Local authority    E92000001
#> 3429        2025         Week 21 Year to date  Local authority    E92000001
#> 3430        2025         Week 21 Year to date  Local authority    E92000001
#> 3431        2025         Week 21 Year to date  Local authority    E92000001
#> 3432        2025         Week 21 Year to date  Local authority    E92000001
#> 3433        2025         Week 21 Year to date  Local authority    E92000001
#> 3434        2025         Week 21 Year to date  Local authority    E92000001
#> 3435        2025         Week 21 Year to date  Local authority    E92000001
#> 3436        2025         Week 21 Year to date  Local authority    E92000001
#> 3437        2025         Week 21 Year to date  Local authority    E92000001
#> 3438        2025         Week 21 Year to date  Local authority    E92000001
#> 3439        2025         Week 21 Year to date  Local authority    E92000001
#> 3440        2025         Week 21 Year to date         Regional    E92000001
#> 3441        2025         Week 21 Year to date         Regional    E92000001
#> 3442        2025         Week 21 Year to date         Regional    E92000001
#> 3443        2025         Week 21 Year to date         Regional    E92000001
#> 3444        2025         Week 21 Year to date  Local authority    E92000001
#> 3445        2025         Week 21 Year to date  Local authority    E92000001
#> 3446        2025         Week 21 Year to date  Local authority    E92000001
#> 3447        2025         Week 21 Year to date  Local authority    E92000001
#> 3448        2025         Week 21 Year to date  Local authority    E92000001
#> 3449        2025         Week 21 Year to date  Local authority    E92000001
#> 3450        2025         Week 21 Year to date  Local authority    E92000001
#> 3451        2025         Week 21 Year to date  Local authority    E92000001
#> 3452        2025         Week 21 Year to date  Local authority    E92000001
#> 3453        2025         Week 21 Year to date  Local authority    E92000001
#> 3454        2025         Week 21 Year to date  Local authority    E92000001
#> 3455        2025         Week 21 Year to date  Local authority    E92000001
#> 3456        2025         Week 21 Year to date  Local authority    E92000001
#> 3457        2025         Week 21 Year to date  Local authority    E92000001
#> 3458        2025         Week 21 Year to date  Local authority    E92000001
#> 3459        2025         Week 21 Year to date  Local authority    E92000001
#> 3460        2025         Week 21 Year to date  Local authority    E92000001
#> 3461        2025         Week 21 Year to date  Local authority    E92000001
#> 3462        2025         Week 21 Year to date  Local authority    E92000001
#> 3463        2025         Week 21 Year to date  Local authority    E92000001
#> 3464        2025         Week 21 Year to date  Local authority    E92000001
#> 3465        2025         Week 21 Year to date  Local authority    E92000001
#> 3466        2025         Week 21 Year to date  Local authority    E92000001
#> 3467        2025         Week 21 Year to date  Local authority    E92000001
#> 3468        2025         Week 21 Year to date  Local authority    E92000001
#> 3469        2025         Week 21 Year to date  Local authority    E92000001
#> 3470        2025         Week 21 Year to date  Local authority    E92000001
#> 3471        2025         Week 21 Year to date  Local authority    E92000001
#> 3472        2025         Week 21 Year to date  Local authority    E92000001
#> 3473        2025         Week 21 Year to date         Regional    E92000001
#> 3474        2025         Week 21 Year to date         Regional    E92000001
#> 3475        2025         Week 21 Year to date         Regional    E92000001
#> 3476        2025         Week 21 Year to date         Regional    E92000001
#> 3477        2025         Week 21 Year to date  Local authority    E92000001
#> 3478        2025         Week 21 Year to date  Local authority    E92000001
#> 3479        2025         Week 21 Year to date  Local authority    E92000001
#> 3480        2025         Week 21 Year to date  Local authority    E92000001
#> 3481        2025         Week 21 Year to date  Local authority    E92000001
#> 3482        2025         Week 21 Year to date  Local authority    E92000001
#> 3483        2025         Week 21 Year to date  Local authority    E92000001
#> 3484        2025         Week 21 Year to date  Local authority    E92000001
#> 3485        2025         Week 21 Year to date  Local authority    E92000001
#> 3486        2025         Week 21 Year to date  Local authority    E92000001
#> 3487        2025         Week 21 Year to date  Local authority    E92000001
#> 3488        2025         Week 21 Year to date  Local authority    E92000001
#> 3489        2025         Week 21 Year to date  Local authority    E92000001
#> 3490        2025         Week 21 Year to date  Local authority    E92000001
#> 3491        2025         Week 21 Year to date  Local authority    E92000001
#> 3492        2025         Week 21 Year to date  Local authority    E92000001
#> 3493        2025         Week 21 Year to date  Local authority    E92000001
#> 3494        2025         Week 21 Year to date  Local authority    E92000001
#> 3495        2025         Week 21 Year to date  Local authority    E92000001
#> 3496        2025         Week 21 Year to date  Local authority    E92000001
#> 3497        2025         Week 21 Year to date  Local authority    E92000001
#> 3498        2025         Week 21 Year to date  Local authority    E92000001
#> 3499        2025         Week 21 Year to date  Local authority    E92000001
#> 3500        2025         Week 21 Year to date  Local authority    E92000001
#> 3501        2025         Week 21 Year to date  Local authority    E92000001
#> 3502        2025         Week 21 Year to date  Local authority    E92000001
#> 3503        2025         Week 21 Year to date  Local authority    E92000001
#> 3504        2025         Week 21 Year to date  Local authority    E92000001
#> 3505        2025         Week 21 Year to date  Local authority    E92000001
#> 3506        2025         Week 21 Year to date  Local authority    E92000001
#> 3507        2025         Week 21 Year to date  Local authority    E92000001
#> 3508        2025         Week 21 Year to date  Local authority    E92000001
#> 3509        2025         Week 21 Year to date  Local authority    E92000001
#> 3510        2025         Week 21 Year to date  Local authority    E92000001
#> 3511        2025         Week 21 Year to date  Local authority    E92000001
#> 3512        2025         Week 21 Year to date  Local authority    E92000001
#> 3513        2025         Week 21 Year to date  Local authority    E92000001
#> 3514        2025         Week 21 Year to date  Local authority    E92000001
#> 3515        2025         Week 21 Year to date  Local authority    E92000001
#> 3516        2025         Week 21 Year to date  Local authority    E92000001
#> 3517        2025         Week 21 Year to date  Local authority    E92000001
#> 3518        2025         Week 21 Year to date  Local authority    E92000001
#> 3519        2025         Week 21 Year to date         Regional    E92000001
#> 3520        2025         Week 21 Year to date         Regional    E92000001
#> 3521        2025         Week 21 Year to date         Regional    E92000001
#> 3522        2025         Week 21 Year to date         Regional    E92000001
#> 3523        2025         Week 21 Year to date  Local authority    E92000001
#> 3524        2025         Week 21 Year to date  Local authority    E92000001
#> 3525        2025         Week 21 Year to date  Local authority    E92000001
#> 3526        2025         Week 21 Year to date  Local authority    E92000001
#> 3527        2025         Week 21 Year to date  Local authority    E92000001
#> 3528        2025         Week 21 Year to date  Local authority    E92000001
#> 3529        2025         Week 21 Year to date  Local authority    E92000001
#> 3530        2025         Week 21 Year to date  Local authority    E92000001
#> 3531        2025         Week 21 Year to date  Local authority    E92000001
#> 3532        2025         Week 21 Year to date  Local authority    E92000001
#> 3533        2025         Week 21 Year to date  Local authority    E92000001
#> 3534        2025         Week 21 Year to date  Local authority    E92000001
#> 3535        2025         Week 21 Year to date  Local authority    E92000001
#> 3536        2025         Week 21 Year to date  Local authority    E92000001
#> 3537        2025         Week 21 Year to date  Local authority    E92000001
#> 3538        2025         Week 21 Year to date  Local authority    E92000001
#> 3539        2025         Week 21 Year to date  Local authority    E92000001
#> 3540        2025         Week 21 Year to date  Local authority    E92000001
#> 3541        2025         Week 21 Year to date  Local authority    E92000001
#> 3542        2025         Week 21 Year to date  Local authority    E92000001
#> 3543        2025         Week 21 Year to date  Local authority    E92000001
#> 3544        2025         Week 21 Year to date  Local authority    E92000001
#> 3545        2025         Week 21 Year to date  Local authority    E92000001
#> 3546        2025         Week 21 Year to date  Local authority    E92000001
#> 3547        2025         Week 21 Year to date  Local authority    E92000001
#> 3548        2025         Week 21 Year to date  Local authority    E92000001
#> 3549        2025         Week 21 Year to date  Local authority    E92000001
#> 3550        2025         Week 21 Year to date  Local authority    E92000001
#> 3551        2025         Week 21 Year to date  Local authority    E92000001
#> 3552        2025         Week 21 Year to date  Local authority    E92000001
#> 3553        2025         Week 21 Year to date  Local authority    E92000001
#> 3554        2025         Week 21 Year to date  Local authority    E92000001
#> 3555        2025         Week 21 Year to date  Local authority    E92000001
#> 3556        2025         Week 21 Year to date         Regional    E92000001
#> 3557        2025         Week 21 Year to date         Regional    E92000001
#> 3558        2025         Week 21 Year to date         Regional    E92000001
#> 3559        2025         Week 21 Year to date         Regional    E92000001
#> 3560        2025         Week 21 Year to date  Local authority    E92000001
#> 3561        2025         Week 21 Year to date  Local authority    E92000001
#> 3562        2025         Week 21 Year to date  Local authority    E92000001
#> 3563        2025         Week 21 Year to date  Local authority    E92000001
#> 3564        2025         Week 21 Year to date  Local authority    E92000001
#> 3565        2025         Week 21 Year to date  Local authority    E92000001
#> 3566        2025         Week 21 Year to date  Local authority    E92000001
#> 3567        2025         Week 21 Year to date  Local authority    E92000001
#> 3568        2025         Week 21 Year to date  Local authority    E92000001
#> 3569        2025         Week 21 Year to date  Local authority    E92000001
#> 3570        2025         Week 21 Year to date  Local authority    E92000001
#> 3571        2025         Week 21 Year to date  Local authority    E92000001
#> 3572        2025         Week 21 Year to date  Local authority    E92000001
#> 3573        2025         Week 21 Year to date  Local authority    E92000001
#> 3574        2025         Week 21 Year to date  Local authority    E92000001
#> 3575        2025         Week 21 Year to date  Local authority    E92000001
#> 3576        2025         Week 21 Year to date  Local authority    E92000001
#> 3577        2025         Week 21 Year to date  Local authority    E92000001
#> 3578        2025         Week 21 Year to date  Local authority    E92000001
#> 3579        2025         Week 21 Year to date  Local authority    E92000001
#> 3580        2025         Week 21 Year to date  Local authority    E92000001
#> 3581        2025         Week 21 Year to date  Local authority    E92000001
#> 3582        2025         Week 21 Year to date  Local authority    E92000001
#> 3583        2025         Week 21 Year to date  Local authority    E92000001
#> 3584        2025         Week 21 Year to date  Local authority    E92000001
#> 3585        2025         Week 21 Year to date  Local authority    E92000001
#> 3586        2025         Week 21 Year to date  Local authority    E92000001
#> 3587        2025         Week 21 Year to date  Local authority    E92000001
#> 3588        2025         Week 21 Year to date  Local authority    E92000001
#> 3589        2025         Week 21 Year to date  Local authority    E92000001
#> 3590        2025         Week 21 Year to date  Local authority    E92000001
#> 3591        2025         Week 21 Year to date  Local authority    E92000001
#> 3592        2025         Week 21 Year to date  Local authority    E92000001
#> 3593        2025         Week 21 Year to date  Local authority    E92000001
#> 3594        2025         Week 21 Year to date  Local authority    E92000001
#> 3595        2025         Week 21 Year to date  Local authority    E92000001
#> 3596        2025         Week 21 Year to date  Local authority    E92000001
#> 3597        2025         Week 21 Year to date  Local authority    E92000001
#> 3598        2025         Week 21 Year to date  Local authority    E92000001
#> 3599        2025         Week 21 Year to date  Local authority    E92000001
#> 3600        2025         Week 21 Year to date  Local authority    E92000001
#> 3601        2025         Week 21 Year to date  Local authority    E92000001
#> 3602        2025         Week 21 Year to date  Local authority    E92000001
#> 3603        2025         Week 21 Year to date  Local authority    E92000001
#> 3604        2025         Week 21 Year to date  Local authority    E92000001
#> 3605        2025         Week 21 Year to date  Local authority    E92000001
#> 3606        2025         Week 21 Year to date  Local authority    E92000001
#> 3607        2025         Week 21 Year to date  Local authority    E92000001
#> 3608        2025         Week 21 Year to date  Local authority    E92000001
#> 3609        2025         Week 21 Year to date  Local authority    E92000001
#> 3610        2025         Week 21 Year to date  Local authority    E92000001
#> 3611        2025         Week 21 Year to date  Local authority    E92000001
#> 3612        2025         Week 21 Year to date  Local authority    E92000001
#> 3613        2025         Week 21 Year to date  Local authority    E92000001
#> 3614        2025         Week 21 Year to date  Local authority    E92000001
#> 3615        2025         Week 21 Year to date  Local authority    E92000001
#> 3616        2025         Week 21 Year to date  Local authority    E92000001
#> 3617        2025         Week 21 Year to date  Local authority    E92000001
#> 3618        2025         Week 21 Year to date  Local authority    E92000001
#> 3619        2025         Week 21 Year to date  Local authority    E92000001
#> 3620        2025         Week 21 Year to date  Local authority    E92000001
#> 3621        2025         Week 21 Year to date  Local authority    E92000001
#> 3622        2025         Week 21 Year to date  Local authority    E92000001
#> 3623        2025         Week 21 Year to date  Local authority    E92000001
#> 3624        2025         Week 21 Year to date  Local authority    E92000001
#> 3625        2025         Week 21 Year to date  Local authority    E92000001
#> 3626        2025         Week 21 Year to date  Local authority    E92000001
#> 3627        2025         Week 21 Year to date  Local authority    E92000001
#> 3628        2025         Week 21 Year to date  Local authority    E92000001
#> 3629        2025         Week 21 Year to date  Local authority    E92000001
#> 3630        2025         Week 21 Year to date  Local authority    E92000001
#> 3631        2025         Week 21 Year to date  Local authority    E92000001
#> 3632        2025         Week 21 Year to date  Local authority    E92000001
#> 3633        2025         Week 21 Year to date  Local authority    E92000001
#> 3634        2025         Week 21 Year to date  Local authority    E92000001
#> 3635        2025         Week 21 Year to date  Local authority    E92000001
#> 3636        2025         Week 21 Year to date  Local authority    E92000001
#> 3637        2025         Week 21 Year to date  Local authority    E92000001
#> 3638        2025         Week 21 Year to date  Local authority    E92000001
#> 3639        2025         Week 21 Year to date  Local authority    E92000001
#> 3640        2025         Week 21 Year to date  Local authority    E92000001
#> 3641        2025         Week 21 Year to date  Local authority    E92000001
#> 3642        2025         Week 21 Year to date  Local authority    E92000001
#> 3643        2025         Week 21 Year to date  Local authority    E92000001
#> 3644        2025         Week 21 Year to date  Local authority    E92000001
#> 3645        2025         Week 21 Year to date  Local authority    E92000001
#> 3646        2025         Week 21 Year to date  Local authority    E92000001
#> 3647        2025         Week 21 Year to date  Local authority    E92000001
#> 3648        2025         Week 21 Year to date  Local authority    E92000001
#> 3649        2025         Week 21 Year to date  Local authority    E92000001
#> 3650        2025         Week 21 Year to date  Local authority    E92000001
#> 3651        2025         Week 21 Year to date  Local authority    E92000001
#> 3652        2025         Week 21 Year to date  Local authority    E92000001
#> 3653        2025         Week 21 Year to date  Local authority    E92000001
#> 3654        2025         Week 21 Year to date  Local authority    E92000001
#> 3655        2025         Week 21 Year to date  Local authority    E92000001
#> 3656        2025         Week 21 Year to date  Local authority    E92000001
#> 3657        2025         Week 21 Year to date         Regional    E92000001
#> 3658        2025         Week 21 Year to date         Regional    E92000001
#> 3659        2025         Week 21 Year to date         Regional    E92000001
#> 3660        2025         Week 21 Year to date         Regional    E92000001
#> 3661        2025         Week 21 Year to date  Local authority    E92000001
#> 3662        2025         Week 21 Year to date  Local authority    E92000001
#> 3663        2025         Week 21 Year to date  Local authority    E92000001
#> 3664        2025         Week 21 Year to date  Local authority    E92000001
#> 3665        2025         Week 21 Year to date  Local authority    E92000001
#> 3666        2025         Week 21 Year to date  Local authority    E92000001
#> 3667        2025         Week 21 Year to date  Local authority    E92000001
#> 3668        2025         Week 21 Year to date  Local authority    E92000001
#> 3669        2025         Week 21 Year to date  Local authority    E92000001
#> 3670        2025         Week 21 Year to date  Local authority    E92000001
#> 3671        2025         Week 21 Year to date  Local authority    E92000001
#> 3672        2025         Week 21 Year to date  Local authority    E92000001
#> 3673        2025         Week 21 Year to date  Local authority    E92000001
#> 3674        2025         Week 21 Year to date  Local authority    E92000001
#> 3675        2025         Week 21 Year to date  Local authority    E92000001
#> 3676        2025         Week 21 Year to date  Local authority    E92000001
#> 3677        2025         Week 21 Year to date  Local authority    E92000001
#> 3678        2025         Week 21 Year to date  Local authority    E92000001
#> 3679        2025         Week 21 Year to date  Local authority    E92000001
#> 3680        2025         Week 21 Year to date  Local authority    E92000001
#> 3681        2025         Week 21 Year to date  Local authority    E92000001
#> 3682        2025         Week 21 Year to date  Local authority    E92000001
#> 3683        2025         Week 21 Year to date  Local authority    E92000001
#> 3684        2025         Week 21 Year to date  Local authority    E92000001
#> 3685        2025         Week 21 Year to date  Local authority    E92000001
#> 3686        2025         Week 21 Year to date  Local authority    E92000001
#> 3687        2025         Week 21 Year to date  Local authority    E92000001
#> 3688        2025         Week 21 Year to date  Local authority    E92000001
#> 3689        2025         Week 21 Year to date  Local authority    E92000001
#> 3690        2025         Week 21 Year to date  Local authority    E92000001
#> 3691        2025         Week 21 Year to date  Local authority    E92000001
#> 3692        2025         Week 21 Year to date  Local authority    E92000001
#> 3693        2025         Week 21 Year to date  Local authority    E92000001
#> 3694        2025         Week 21 Year to date  Local authority    E92000001
#> 3695        2025         Week 21 Year to date  Local authority    E92000001
#> 3696        2025         Week 21 Year to date  Local authority    E92000001
#> 3697        2025         Week 21 Year to date  Local authority    E92000001
#> 3698        2025         Week 21 Year to date  Local authority    E92000001
#> 3699        2025         Week 21 Year to date  Local authority    E92000001
#> 3700        2025         Week 21 Year to date  Local authority    E92000001
#> 3701        2025         Week 21 Year to date  Local authority    E92000001
#> 3702        2025         Week 21 Year to date  Local authority    E92000001
#> 3703        2025         Week 21 Year to date  Local authority    E92000001
#> 3704        2025         Week 21 Year to date  Local authority    E92000001
#> 3705        2025         Week 21 Year to date  Local authority    E92000001
#> 3706        2025         Week 21 Year to date  Local authority    E92000001
#> 3707        2025         Week 21 Year to date  Local authority    E92000001
#> 3708        2025         Week 21 Year to date  Local authority    E92000001
#> 3709        2025         Week 21 Year to date  Local authority    E92000001
#> 3710        2025         Week 21 Year to date  Local authority    E92000001
#> 3711        2025         Week 21 Year to date  Local authority    E92000001
#> 3712        2025         Week 21 Year to date  Local authority    E92000001
#> 3713        2025         Week 21 Year to date  Local authority    E92000001
#> 3714        2025         Week 21 Year to date  Local authority    E92000001
#> 3715        2025         Week 21 Year to date  Local authority    E92000001
#> 3716        2025         Week 21 Year to date  Local authority    E92000001
#> 3717        2025         Week 21 Year to date  Local authority    E92000001
#> 3718        2025         Week 21 Year to date         Regional    E92000001
#> 3719        2025         Week 21 Year to date         Regional    E92000001
#> 3720        2025         Week 21 Year to date         Regional    E92000001
#> 3721        2025         Week 21 Year to date         Regional    E92000001
#> 3722        2025         Week 21 Year to date  Local authority    E92000001
#> 3723        2025         Week 21 Year to date  Local authority    E92000001
#> 3724        2025         Week 21 Year to date  Local authority    E92000001
#> 3725        2025         Week 21 Year to date  Local authority    E92000001
#> 3726        2025         Week 21 Year to date  Local authority    E92000001
#> 3727        2025         Week 21 Year to date  Local authority    E92000001
#> 3728        2025         Week 21 Year to date  Local authority    E92000001
#> 3729        2025         Week 21 Year to date  Local authority    E92000001
#> 3730        2025         Week 21 Year to date  Local authority    E92000001
#> 3731        2025         Week 21 Year to date  Local authority    E92000001
#> 3732        2025         Week 21 Year to date  Local authority    E92000001
#> 3733        2025         Week 21 Year to date  Local authority    E92000001
#> 3734        2025         Week 21 Year to date  Local authority    E92000001
#> 3735        2025         Week 21 Year to date  Local authority    E92000001
#> 3736        2025         Week 21 Year to date  Local authority    E92000001
#> 3737        2025         Week 21 Year to date  Local authority    E92000001
#> 3738        2025         Week 21 Year to date  Local authority    E92000001
#> 3739        2025         Week 21 Year to date  Local authority    E92000001
#> 3740        2025         Week 21 Year to date  Local authority    E92000001
#> 3741        2025         Week 21 Year to date  Local authority    E92000001
#> 3742        2025         Week 21 Year to date  Local authority    E92000001
#> 3743        2025         Week 21 Year to date  Local authority    E92000001
#> 3744        2025         Week 21 Year to date  Local authority    E92000001
#> 3745        2025         Week 21 Year to date  Local authority    E92000001
#> 3746        2025         Week 21 Year to date  Local authority    E92000001
#> 3747        2025         Week 21 Year to date  Local authority    E92000001
#> 3748        2025         Week 21 Year to date  Local authority    E92000001
#> 3749        2025         Week 21 Year to date  Local authority    E92000001
#> 3750        2025         Week 21 Year to date  Local authority    E92000001
#> 3751        2025         Week 21 Year to date  Local authority    E92000001
#> 3752        2025         Week 21 Year to date  Local authority    E92000001
#> 3753        2025         Week 21 Year to date  Local authority    E92000001
#> 3754        2025         Week 21 Year to date  Local authority    E92000001
#> 3755        2025         Week 21 Year to date  Local authority    E92000001
#> 3756        2025         Week 21 Year to date  Local authority    E92000001
#> 3757        2025         Week 21 Year to date  Local authority    E92000001
#> 3758        2025         Week 21 Year to date  Local authority    E92000001
#> 3759        2025         Week 21 Year to date  Local authority    E92000001
#> 3760        2025         Week 21 Year to date  Local authority    E92000001
#> 3761        2025         Week 21 Year to date  Local authority    E92000001
#> 3762        2025         Week 21 Year to date  Local authority    E92000001
#> 3763        2025         Week 21 Year to date  Local authority    E92000001
#> 3764        2025         Week 21 Year to date  Local authority    E92000001
#> 3765        2025         Week 20 Year to date         National    E92000001
#> 3766        2025         Week 20 Year to date         National    E92000001
#> 3767        2025         Week 20 Year to date         National    E92000001
#> 3768        2025         Week 20 Year to date         National    E92000001
#> 3769        2025         Week 20 Year to date         Regional    E92000001
#> 3770        2025         Week 20 Year to date         Regional    E92000001
#> 3771        2025         Week 20 Year to date         Regional    E92000001
#> 3772        2025         Week 20 Year to date         Regional    E92000001
#> 3773        2025         Week 20 Year to date  Local authority    E92000001
#> 3774        2025         Week 20 Year to date  Local authority    E92000001
#> 3775        2025         Week 20 Year to date  Local authority    E92000001
#> 3776        2025         Week 20 Year to date  Local authority    E92000001
#> 3777        2025         Week 20 Year to date  Local authority    E92000001
#> 3778        2025         Week 20 Year to date  Local authority    E92000001
#> 3779        2025         Week 20 Year to date  Local authority    E92000001
#> 3780        2025         Week 20 Year to date  Local authority    E92000001
#> 3781        2025         Week 20 Year to date  Local authority    E92000001
#> 3782        2025         Week 20 Year to date  Local authority    E92000001
#> 3783        2025         Week 20 Year to date  Local authority    E92000001
#> 3784        2025         Week 20 Year to date  Local authority    E92000001
#> 3785        2025         Week 20 Year to date  Local authority    E92000001
#> 3786        2025         Week 20 Year to date  Local authority    E92000001
#> 3787        2025         Week 20 Year to date  Local authority    E92000001
#> 3788        2025         Week 20 Year to date  Local authority    E92000001
#> 3789        2025         Week 20 Year to date  Local authority    E92000001
#> 3790        2025         Week 20 Year to date  Local authority    E92000001
#> 3791        2025         Week 20 Year to date  Local authority    E92000001
#> 3792        2025         Week 20 Year to date  Local authority    E92000001
#> 3793        2025         Week 20 Year to date  Local authority    E92000001
#> 3794        2025         Week 20 Year to date  Local authority    E92000001
#> 3795        2025         Week 20 Year to date  Local authority    E92000001
#> 3796        2025         Week 20 Year to date  Local authority    E92000001
#> 3797        2025         Week 20 Year to date  Local authority    E92000001
#> 3798        2025         Week 20 Year to date  Local authority    E92000001
#> 3799        2025         Week 20 Year to date  Local authority    E92000001
#> 3800        2025         Week 20 Year to date  Local authority    E92000001
#> 3801        2025         Week 20 Year to date  Local authority    E92000001
#> 3802        2025         Week 20 Year to date  Local authority    E92000001
#> 3803        2025         Week 20 Year to date  Local authority    E92000001
#> 3804        2025         Week 20 Year to date  Local authority    E92000001
#> 3805        2025         Week 20 Year to date  Local authority    E92000001
#> 3806        2025         Week 20 Year to date  Local authority    E92000001
#> 3807        2025         Week 20 Year to date  Local authority    E92000001
#> 3808        2025         Week 20 Year to date  Local authority    E92000001
#> 3809        2025         Week 20 Year to date         Regional    E92000001
#> 3810        2025         Week 20 Year to date         Regional    E92000001
#> 3811        2025         Week 20 Year to date         Regional    E92000001
#> 3812        2025         Week 20 Year to date         Regional    E92000001
#> 3813        2025         Week 20 Year to date  Local authority    E92000001
#> 3814        2025         Week 20 Year to date  Local authority    E92000001
#> 3815        2025         Week 20 Year to date  Local authority    E92000001
#> 3816        2025         Week 20 Year to date  Local authority    E92000001
#> 3817        2025         Week 20 Year to date  Local authority    E92000001
#> 3818        2025         Week 20 Year to date  Local authority    E92000001
#> 3819        2025         Week 20 Year to date  Local authority    E92000001
#> 3820        2025         Week 20 Year to date  Local authority    E92000001
#> 3821        2025         Week 20 Year to date  Local authority    E92000001
#> 3822        2025         Week 20 Year to date  Local authority    E92000001
#> 3823        2025         Week 20 Year to date  Local authority    E92000001
#> 3824        2025         Week 20 Year to date  Local authority    E92000001
#> 3825        2025         Week 20 Year to date  Local authority    E92000001
#> 3826        2025         Week 20 Year to date  Local authority    E92000001
#> 3827        2025         Week 20 Year to date  Local authority    E92000001
#> 3828        2025         Week 20 Year to date  Local authority    E92000001
#> 3829        2025         Week 20 Year to date  Local authority    E92000001
#> 3830        2025         Week 20 Year to date  Local authority    E92000001
#> 3831        2025         Week 20 Year to date  Local authority    E92000001
#> 3832        2025         Week 20 Year to date  Local authority    E92000001
#> 3833        2025         Week 20 Year to date  Local authority    E92000001
#> 3834        2025         Week 20 Year to date  Local authority    E92000001
#> 3835        2025         Week 20 Year to date  Local authority    E92000001
#> 3836        2025         Week 20 Year to date  Local authority    E92000001
#> 3837        2025         Week 20 Year to date  Local authority    E92000001
#> 3838        2025         Week 20 Year to date  Local authority    E92000001
#> 3839        2025         Week 20 Year to date  Local authority    E92000001
#> 3840        2025         Week 20 Year to date  Local authority    E92000001
#> 3841        2025         Week 20 Year to date  Local authority    E92000001
#> 3842        2025         Week 20 Year to date  Local authority    E92000001
#> 3843        2025         Week 20 Year to date  Local authority    E92000001
#> 3844        2025         Week 20 Year to date  Local authority    E92000001
#> 3845        2025         Week 20 Year to date  Local authority    E92000001
#> 3846        2025         Week 20 Year to date  Local authority    E92000001
#> 3847        2025         Week 20 Year to date  Local authority    E92000001
#> 3848        2025         Week 20 Year to date  Local authority    E92000001
#> 3849        2025         Week 20 Year to date  Local authority    E92000001
#> 3850        2025         Week 20 Year to date  Local authority    E92000001
#> 3851        2025         Week 20 Year to date  Local authority    E92000001
#> 3852        2025         Week 20 Year to date  Local authority    E92000001
#> 3853        2025         Week 20 Year to date  Local authority    E92000001
#> 3854        2025         Week 20 Year to date  Local authority    E92000001
#> 3855        2025         Week 20 Year to date  Local authority    E92000001
#> 3856        2025         Week 20 Year to date  Local authority    E92000001
#> 3857        2025         Week 20 Year to date  Local authority    E92000001
#> 3858        2025         Week 20 Year to date  Local authority    E92000001
#> 3859        2025         Week 20 Year to date  Local authority    E92000001
#> 3860        2025         Week 20 Year to date  Local authority    E92000001
#> 3861        2025         Week 20 Year to date  Local authority    E92000001
#> 3862        2025         Week 20 Year to date  Local authority    E92000001
#> 3863        2025         Week 20 Year to date  Local authority    E92000001
#> 3864        2025         Week 20 Year to date  Local authority    E92000001
#> 3865        2025         Week 20 Year to date  Local authority    E92000001
#> 3866        2025         Week 20 Year to date  Local authority    E92000001
#> 3867        2025         Week 20 Year to date  Local authority    E92000001
#> 3868        2025         Week 20 Year to date  Local authority    E92000001
#> 3869        2025         Week 20 Year to date  Local authority    E92000001
#> 3870        2025         Week 20 Year to date  Local authority    E92000001
#> 3871        2025         Week 20 Year to date  Local authority    E92000001
#> 3872        2025         Week 20 Year to date  Local authority    E92000001
#> 3873        2025         Week 20 Year to date  Local authority    E92000001
#> 3874        2025         Week 20 Year to date  Local authority    E92000001
#> 3875        2025         Week 20 Year to date  Local authority    E92000001
#> 3876        2025         Week 20 Year to date  Local authority    E92000001
#> 3877        2025         Week 20 Year to date  Local authority    E92000001
#> 3878        2025         Week 20 Year to date  Local authority    E92000001
#> 3879        2025         Week 20 Year to date  Local authority    E92000001
#> 3880        2025         Week 20 Year to date  Local authority    E92000001
#> 3881        2025         Week 20 Year to date  Local authority    E92000001
#> 3882        2025         Week 20 Year to date  Local authority    E92000001
#> 3883        2025         Week 20 Year to date  Local authority    E92000001
#> 3884        2025         Week 20 Year to date  Local authority    E92000001
#> 3885        2025         Week 20 Year to date         Regional    E92000001
#> 3886        2025         Week 20 Year to date         Regional    E92000001
#> 3887        2025         Week 20 Year to date         Regional    E92000001
#> 3888        2025         Week 20 Year to date         Regional    E92000001
#> 3889        2025         Week 20 Year to date  Local authority    E92000001
#> 3890        2025         Week 20 Year to date  Local authority    E92000001
#> 3891        2025         Week 20 Year to date  Local authority    E92000001
#> 3892        2025         Week 20 Year to date  Local authority    E92000001
#> 3893        2025         Week 20 Year to date  Local authority    E92000001
#> 3894        2025         Week 20 Year to date  Local authority    E92000001
#> 3895        2025         Week 20 Year to date  Local authority    E92000001
#> 3896        2025         Week 20 Year to date  Local authority    E92000001
#> 3897        2025         Week 20 Year to date  Local authority    E92000001
#> 3898        2025         Week 20 Year to date  Local authority    E92000001
#> 3899        2025         Week 20 Year to date  Local authority    E92000001
#> 3900        2025         Week 20 Year to date  Local authority    E92000001
#> 3901        2025         Week 20 Year to date  Local authority    E92000001
#> 3902        2025         Week 20 Year to date  Local authority    E92000001
#> 3903        2025         Week 20 Year to date  Local authority    E92000001
#> 3904        2025         Week 20 Year to date  Local authority    E92000001
#> 3905        2025         Week 20 Year to date  Local authority    E92000001
#> 3906        2025         Week 20 Year to date  Local authority    E92000001
#> 3907        2025         Week 20 Year to date  Local authority    E92000001
#> 3908        2025         Week 20 Year to date  Local authority    E92000001
#> 3909        2025         Week 20 Year to date  Local authority    E92000001
#> 3910        2025         Week 20 Year to date  Local authority    E92000001
#> 3911        2025         Week 20 Year to date  Local authority    E92000001
#> 3912        2025         Week 20 Year to date  Local authority    E92000001
#> 3913        2025         Week 20 Year to date  Local authority    E92000001
#> 3914        2025         Week 20 Year to date  Local authority    E92000001
#> 3915        2025         Week 20 Year to date  Local authority    E92000001
#> 3916        2025         Week 20 Year to date  Local authority    E92000001
#> 3917        2025         Week 20 Year to date  Local authority    E92000001
#> 3918        2025         Week 20 Year to date  Local authority    E92000001
#> 3919        2025         Week 20 Year to date  Local authority    E92000001
#> 3920        2025         Week 20 Year to date  Local authority    E92000001
#> 3921        2025         Week 20 Year to date  Local authority    E92000001
#> 3922        2025         Week 20 Year to date  Local authority    E92000001
#> 3923        2025         Week 20 Year to date  Local authority    E92000001
#> 3924        2025         Week 20 Year to date  Local authority    E92000001
#> 3925        2025         Week 20 Year to date  Local authority    E92000001
#> 3926        2025         Week 20 Year to date  Local authority    E92000001
#> 3927        2025         Week 20 Year to date  Local authority    E92000001
#> 3928        2025         Week 20 Year to date  Local authority    E92000001
#> 3929        2025         Week 20 Year to date  Local authority    E92000001
#> 3930        2025         Week 20 Year to date  Local authority    E92000001
#> 3931        2025         Week 20 Year to date  Local authority    E92000001
#> 3932        2025         Week 20 Year to date  Local authority    E92000001
#> 3933        2025         Week 20 Year to date  Local authority    E92000001
#> 3934        2025         Week 20 Year to date         Regional    E92000001
#> 3935        2025         Week 20 Year to date         Regional    E92000001
#> 3936        2025         Week 20 Year to date         Regional    E92000001
#> 3937        2025         Week 20 Year to date         Regional    E92000001
#> 3938        2025         Week 20 Year to date  Local authority    E92000001
#> 3939        2025         Week 20 Year to date  Local authority    E92000001
#> 3940        2025         Week 20 Year to date  Local authority    E92000001
#> 3941        2025         Week 20 Year to date  Local authority    E92000001
#> 3942        2025         Week 20 Year to date  Local authority    E92000001
#> 3943        2025         Week 20 Year to date  Local authority    E92000001
#> 3944        2025         Week 20 Year to date  Local authority    E92000001
#> 3945        2025         Week 20 Year to date  Local authority    E92000001
#> 3946        2025         Week 20 Year to date  Local authority    E92000001
#> 3947        2025         Week 20 Year to date  Local authority    E92000001
#> 3948        2025         Week 20 Year to date  Local authority    E92000001
#> 3949        2025         Week 20 Year to date  Local authority    E92000001
#> 3950        2025         Week 20 Year to date  Local authority    E92000001
#> 3951        2025         Week 20 Year to date  Local authority    E92000001
#> 3952        2025         Week 20 Year to date  Local authority    E92000001
#> 3953        2025         Week 20 Year to date  Local authority    E92000001
#> 3954        2025         Week 20 Year to date  Local authority    E92000001
#> 3955        2025         Week 20 Year to date  Local authority    E92000001
#> 3956        2025         Week 20 Year to date  Local authority    E92000001
#> 3957        2025         Week 20 Year to date  Local authority    E92000001
#> 3958        2025         Week 20 Year to date  Local authority    E92000001
#> 3959        2025         Week 20 Year to date  Local authority    E92000001
#> 3960        2025         Week 20 Year to date  Local authority    E92000001
#> 3961        2025         Week 20 Year to date  Local authority    E92000001
#> 3962        2025         Week 20 Year to date  Local authority    E92000001
#> 3963        2025         Week 20 Year to date  Local authority    E92000001
#> 3964        2025         Week 20 Year to date  Local authority    E92000001
#> 3965        2025         Week 20 Year to date  Local authority    E92000001
#> 3966        2025         Week 20 Year to date  Local authority    E92000001
#> 3967        2025         Week 20 Year to date         Regional    E92000001
#> 3968        2025         Week 20 Year to date         Regional    E92000001
#> 3969        2025         Week 20 Year to date         Regional    E92000001
#> 3970        2025         Week 20 Year to date         Regional    E92000001
#> 3971        2025         Week 20 Year to date  Local authority    E92000001
#> 3972        2025         Week 20 Year to date  Local authority    E92000001
#> 3973        2025         Week 20 Year to date  Local authority    E92000001
#> 3974        2025         Week 20 Year to date  Local authority    E92000001
#> 3975        2025         Week 20 Year to date  Local authority    E92000001
#> 3976        2025         Week 20 Year to date  Local authority    E92000001
#> 3977        2025         Week 20 Year to date  Local authority    E92000001
#> 3978        2025         Week 20 Year to date  Local authority    E92000001
#> 3979        2025         Week 20 Year to date  Local authority    E92000001
#> 3980        2025         Week 20 Year to date  Local authority    E92000001
#> 3981        2025         Week 20 Year to date  Local authority    E92000001
#> 3982        2025         Week 20 Year to date  Local authority    E92000001
#> 3983        2025         Week 20 Year to date  Local authority    E92000001
#> 3984        2025         Week 20 Year to date  Local authority    E92000001
#> 3985        2025         Week 20 Year to date  Local authority    E92000001
#> 3986        2025         Week 20 Year to date  Local authority    E92000001
#> 3987        2025         Week 20 Year to date  Local authority    E92000001
#> 3988        2025         Week 20 Year to date  Local authority    E92000001
#> 3989        2025         Week 20 Year to date  Local authority    E92000001
#> 3990        2025         Week 20 Year to date  Local authority    E92000001
#> 3991        2025         Week 20 Year to date  Local authority    E92000001
#> 3992        2025         Week 20 Year to date  Local authority    E92000001
#> 3993        2025         Week 20 Year to date  Local authority    E92000001
#> 3994        2025         Week 20 Year to date  Local authority    E92000001
#> 3995        2025         Week 20 Year to date  Local authority    E92000001
#> 3996        2025         Week 20 Year to date  Local authority    E92000001
#> 3997        2025         Week 20 Year to date  Local authority    E92000001
#> 3998        2025         Week 20 Year to date  Local authority    E92000001
#> 3999        2025         Week 20 Year to date  Local authority    E92000001
#> 4000        2025         Week 20 Year to date  Local authority    E92000001
#> 4001        2025         Week 20 Year to date  Local authority    E92000001
#> 4002        2025         Week 20 Year to date  Local authority    E92000001
#> 4003        2025         Week 20 Year to date  Local authority    E92000001
#> 4004        2025         Week 20 Year to date  Local authority    E92000001
#> 4005        2025         Week 20 Year to date  Local authority    E92000001
#> 4006        2025         Week 20 Year to date  Local authority    E92000001
#> 4007        2025         Week 20 Year to date  Local authority    E92000001
#> 4008        2025         Week 20 Year to date  Local authority    E92000001
#> 4009        2025         Week 20 Year to date  Local authority    E92000001
#> 4010        2025         Week 20 Year to date  Local authority    E92000001
#> 4011        2025         Week 20 Year to date  Local authority    E92000001
#> 4012        2025         Week 20 Year to date  Local authority    E92000001
#> 4013        2025         Week 20 Year to date         Regional    E92000001
#> 4014        2025         Week 20 Year to date         Regional    E92000001
#> 4015        2025         Week 20 Year to date         Regional    E92000001
#> 4016        2025         Week 20 Year to date         Regional    E92000001
#> 4017        2025         Week 20 Year to date  Local authority    E92000001
#> 4018        2025         Week 20 Year to date  Local authority    E92000001
#> 4019        2025         Week 20 Year to date  Local authority    E92000001
#> 4020        2025         Week 20 Year to date  Local authority    E92000001
#> 4021        2025         Week 20 Year to date  Local authority    E92000001
#> 4022        2025         Week 20 Year to date  Local authority    E92000001
#> 4023        2025         Week 20 Year to date  Local authority    E92000001
#> 4024        2025         Week 20 Year to date  Local authority    E92000001
#> 4025        2025         Week 20 Year to date  Local authority    E92000001
#> 4026        2025         Week 20 Year to date  Local authority    E92000001
#> 4027        2025         Week 20 Year to date  Local authority    E92000001
#> 4028        2025         Week 20 Year to date  Local authority    E92000001
#> 4029        2025         Week 20 Year to date  Local authority    E92000001
#> 4030        2025         Week 20 Year to date  Local authority    E92000001
#> 4031        2025         Week 20 Year to date  Local authority    E92000001
#> 4032        2025         Week 20 Year to date  Local authority    E92000001
#> 4033        2025         Week 20 Year to date  Local authority    E92000001
#> 4034        2025         Week 20 Year to date  Local authority    E92000001
#> 4035        2025         Week 20 Year to date  Local authority    E92000001
#> 4036        2025         Week 20 Year to date  Local authority    E92000001
#> 4037        2025         Week 20 Year to date  Local authority    E92000001
#> 4038        2025         Week 20 Year to date  Local authority    E92000001
#> 4039        2025         Week 20 Year to date  Local authority    E92000001
#> 4040        2025         Week 20 Year to date  Local authority    E92000001
#> 4041        2025         Week 20 Year to date  Local authority    E92000001
#> 4042        2025         Week 20 Year to date  Local authority    E92000001
#> 4043        2025         Week 20 Year to date  Local authority    E92000001
#> 4044        2025         Week 20 Year to date  Local authority    E92000001
#> 4045        2025         Week 20 Year to date  Local authority    E92000001
#> 4046        2025         Week 20 Year to date  Local authority    E92000001
#> 4047        2025         Week 20 Year to date  Local authority    E92000001
#> 4048        2025         Week 20 Year to date  Local authority    E92000001
#> 4049        2025         Week 20 Year to date  Local authority    E92000001
#> 4050        2025         Week 20 Year to date         Regional    E92000001
#> 4051        2025         Week 20 Year to date         Regional    E92000001
#> 4052        2025         Week 20 Year to date         Regional    E92000001
#> 4053        2025         Week 20 Year to date         Regional    E92000001
#> 4054        2025         Week 20 Year to date  Local authority    E92000001
#> 4055        2025         Week 20 Year to date  Local authority    E92000001
#> 4056        2025         Week 20 Year to date  Local authority    E92000001
#> 4057        2025         Week 20 Year to date  Local authority    E92000001
#> 4058        2025         Week 20 Year to date  Local authority    E92000001
#> 4059        2025         Week 20 Year to date  Local authority    E92000001
#> 4060        2025         Week 20 Year to date  Local authority    E92000001
#> 4061        2025         Week 20 Year to date  Local authority    E92000001
#> 4062        2025         Week 20 Year to date  Local authority    E92000001
#> 4063        2025         Week 20 Year to date  Local authority    E92000001
#> 4064        2025         Week 20 Year to date  Local authority    E92000001
#> 4065        2025         Week 20 Year to date  Local authority    E92000001
#> 4066        2025         Week 20 Year to date  Local authority    E92000001
#> 4067        2025         Week 20 Year to date  Local authority    E92000001
#> 4068        2025         Week 20 Year to date  Local authority    E92000001
#> 4069        2025         Week 20 Year to date  Local authority    E92000001
#> 4070        2025         Week 20 Year to date  Local authority    E92000001
#> 4071        2025         Week 20 Year to date  Local authority    E92000001
#> 4072        2025         Week 20 Year to date  Local authority    E92000001
#> 4073        2025         Week 20 Year to date  Local authority    E92000001
#> 4074        2025         Week 20 Year to date  Local authority    E92000001
#> 4075        2025         Week 20 Year to date  Local authority    E92000001
#> 4076        2025         Week 20 Year to date  Local authority    E92000001
#> 4077        2025         Week 20 Year to date  Local authority    E92000001
#> 4078        2025         Week 20 Year to date  Local authority    E92000001
#> 4079        2025         Week 20 Year to date  Local authority    E92000001
#> 4080        2025         Week 20 Year to date  Local authority    E92000001
#> 4081        2025         Week 20 Year to date  Local authority    E92000001
#> 4082        2025         Week 20 Year to date  Local authority    E92000001
#> 4083        2025         Week 20 Year to date  Local authority    E92000001
#> 4084        2025         Week 20 Year to date  Local authority    E92000001
#> 4085        2025         Week 20 Year to date  Local authority    E92000001
#> 4086        2025         Week 20 Year to date  Local authority    E92000001
#> 4087        2025         Week 20 Year to date  Local authority    E92000001
#> 4088        2025         Week 20 Year to date  Local authority    E92000001
#> 4089        2025         Week 20 Year to date  Local authority    E92000001
#> 4090        2025         Week 20 Year to date  Local authority    E92000001
#> 4091        2025         Week 20 Year to date  Local authority    E92000001
#> 4092        2025         Week 20 Year to date  Local authority    E92000001
#> 4093        2025         Week 20 Year to date  Local authority    E92000001
#> 4094        2025         Week 20 Year to date  Local authority    E92000001
#> 4095        2025         Week 20 Year to date  Local authority    E92000001
#> 4096        2025         Week 20 Year to date  Local authority    E92000001
#> 4097        2025         Week 20 Year to date  Local authority    E92000001
#> 4098        2025         Week 20 Year to date  Local authority    E92000001
#> 4099        2025         Week 20 Year to date  Local authority    E92000001
#> 4100        2025         Week 20 Year to date  Local authority    E92000001
#> 4101        2025         Week 20 Year to date  Local authority    E92000001
#> 4102        2025         Week 20 Year to date  Local authority    E92000001
#> 4103        2025         Week 20 Year to date  Local authority    E92000001
#> 4104        2025         Week 20 Year to date  Local authority    E92000001
#> 4105        2025         Week 20 Year to date  Local authority    E92000001
#> 4106        2025         Week 20 Year to date  Local authority    E92000001
#> 4107        2025         Week 20 Year to date  Local authority    E92000001
#> 4108        2025         Week 20 Year to date  Local authority    E92000001
#> 4109        2025         Week 20 Year to date  Local authority    E92000001
#> 4110        2025         Week 20 Year to date  Local authority    E92000001
#> 4111        2025         Week 20 Year to date  Local authority    E92000001
#> 4112        2025         Week 20 Year to date  Local authority    E92000001
#> 4113        2025         Week 20 Year to date  Local authority    E92000001
#> 4114        2025         Week 20 Year to date  Local authority    E92000001
#> 4115        2025         Week 20 Year to date  Local authority    E92000001
#> 4116        2025         Week 20 Year to date  Local authority    E92000001
#> 4117        2025         Week 20 Year to date  Local authority    E92000001
#> 4118        2025         Week 20 Year to date  Local authority    E92000001
#> 4119        2025         Week 20 Year to date  Local authority    E92000001
#> 4120        2025         Week 20 Year to date  Local authority    E92000001
#> 4121        2025         Week 20 Year to date  Local authority    E92000001
#> 4122        2025         Week 20 Year to date  Local authority    E92000001
#> 4123        2025         Week 20 Year to date  Local authority    E92000001
#> 4124        2025         Week 20 Year to date  Local authority    E92000001
#> 4125        2025         Week 20 Year to date  Local authority    E92000001
#> 4126        2025         Week 20 Year to date  Local authority    E92000001
#> 4127        2025         Week 20 Year to date  Local authority    E92000001
#> 4128        2025         Week 20 Year to date  Local authority    E92000001
#> 4129        2025         Week 20 Year to date  Local authority    E92000001
#> 4130        2025         Week 20 Year to date  Local authority    E92000001
#> 4131        2025         Week 20 Year to date  Local authority    E92000001
#> 4132        2025         Week 20 Year to date  Local authority    E92000001
#> 4133        2025         Week 20 Year to date  Local authority    E92000001
#> 4134        2025         Week 20 Year to date  Local authority    E92000001
#> 4135        2025         Week 20 Year to date  Local authority    E92000001
#> 4136        2025         Week 20 Year to date  Local authority    E92000001
#> 4137        2025         Week 20 Year to date  Local authority    E92000001
#> 4138        2025         Week 20 Year to date  Local authority    E92000001
#> 4139        2025         Week 20 Year to date  Local authority    E92000001
#> 4140        2025         Week 20 Year to date  Local authority    E92000001
#> 4141        2025         Week 20 Year to date  Local authority    E92000001
#> 4142        2025         Week 20 Year to date  Local authority    E92000001
#> 4143        2025         Week 20 Year to date  Local authority    E92000001
#> 4144        2025         Week 20 Year to date  Local authority    E92000001
#> 4145        2025         Week 20 Year to date  Local authority    E92000001
#> 4146        2025         Week 20 Year to date  Local authority    E92000001
#> 4147        2025         Week 20 Year to date  Local authority    E92000001
#> 4148        2025         Week 20 Year to date  Local authority    E92000001
#> 4149        2025         Week 20 Year to date  Local authority    E92000001
#> 4150        2025         Week 20 Year to date  Local authority    E92000001
#> 4151        2025         Week 20 Year to date         Regional    E92000001
#> 4152        2025         Week 20 Year to date         Regional    E92000001
#> 4153        2025         Week 20 Year to date         Regional    E92000001
#> 4154        2025         Week 20 Year to date         Regional    E92000001
#> 4155        2025         Week 20 Year to date  Local authority    E92000001
#> 4156        2025         Week 20 Year to date  Local authority    E92000001
#> 4157        2025         Week 20 Year to date  Local authority    E92000001
#> 4158        2025         Week 20 Year to date  Local authority    E92000001
#> 4159        2025         Week 20 Year to date  Local authority    E92000001
#> 4160        2025         Week 20 Year to date  Local authority    E92000001
#> 4161        2025         Week 20 Year to date  Local authority    E92000001
#> 4162        2025         Week 20 Year to date  Local authority    E92000001
#> 4163        2025         Week 20 Year to date  Local authority    E92000001
#> 4164        2025         Week 20 Year to date  Local authority    E92000001
#> 4165        2025         Week 20 Year to date  Local authority    E92000001
#> 4166        2025         Week 20 Year to date  Local authority    E92000001
#> 4167        2025         Week 20 Year to date  Local authority    E92000001
#> 4168        2025         Week 20 Year to date  Local authority    E92000001
#> 4169        2025         Week 20 Year to date  Local authority    E92000001
#> 4170        2025         Week 20 Year to date  Local authority    E92000001
#> 4171        2025         Week 20 Year to date  Local authority    E92000001
#> 4172        2025         Week 20 Year to date  Local authority    E92000001
#> 4173        2025         Week 20 Year to date  Local authority    E92000001
#> 4174        2025         Week 20 Year to date  Local authority    E92000001
#> 4175        2025         Week 20 Year to date  Local authority    E92000001
#> 4176        2025         Week 20 Year to date  Local authority    E92000001
#> 4177        2025         Week 20 Year to date  Local authority    E92000001
#> 4178        2025         Week 20 Year to date  Local authority    E92000001
#> 4179        2025         Week 20 Year to date  Local authority    E92000001
#> 4180        2025         Week 20 Year to date  Local authority    E92000001
#> 4181        2025         Week 20 Year to date  Local authority    E92000001
#> 4182        2025         Week 20 Year to date  Local authority    E92000001
#> 4183        2025         Week 20 Year to date  Local authority    E92000001
#> 4184        2025         Week 20 Year to date  Local authority    E92000001
#> 4185        2025         Week 20 Year to date  Local authority    E92000001
#> 4186        2025         Week 20 Year to date  Local authority    E92000001
#> 4187        2025         Week 20 Year to date  Local authority    E92000001
#> 4188        2025         Week 20 Year to date  Local authority    E92000001
#> 4189        2025         Week 20 Year to date  Local authority    E92000001
#> 4190        2025         Week 20 Year to date  Local authority    E92000001
#> 4191        2025         Week 20 Year to date  Local authority    E92000001
#> 4192        2025         Week 20 Year to date  Local authority    E92000001
#> 4193        2025         Week 20 Year to date  Local authority    E92000001
#> 4194        2025         Week 20 Year to date  Local authority    E92000001
#> 4195        2025         Week 20 Year to date  Local authority    E92000001
#> 4196        2025         Week 20 Year to date  Local authority    E92000001
#> 4197        2025         Week 20 Year to date  Local authority    E92000001
#> 4198        2025         Week 20 Year to date  Local authority    E92000001
#> 4199        2025         Week 20 Year to date  Local authority    E92000001
#> 4200        2025         Week 20 Year to date  Local authority    E92000001
#> 4201        2025         Week 20 Year to date  Local authority    E92000001
#> 4202        2025         Week 20 Year to date  Local authority    E92000001
#> 4203        2025         Week 20 Year to date  Local authority    E92000001
#> 4204        2025         Week 20 Year to date  Local authority    E92000001
#> 4205        2025         Week 20 Year to date  Local authority    E92000001
#> 4206        2025         Week 20 Year to date  Local authority    E92000001
#> 4207        2025         Week 20 Year to date  Local authority    E92000001
#> 4208        2025         Week 20 Year to date  Local authority    E92000001
#> 4209        2025         Week 20 Year to date  Local authority    E92000001
#> 4210        2025         Week 20 Year to date  Local authority    E92000001
#> 4211        2025         Week 20 Year to date  Local authority    E92000001
#> 4212        2025         Week 20 Year to date         Regional    E92000001
#> 4213        2025         Week 20 Year to date         Regional    E92000001
#> 4214        2025         Week 20 Year to date         Regional    E92000001
#> 4215        2025         Week 20 Year to date         Regional    E92000001
#> 4216        2025         Week 20 Year to date  Local authority    E92000001
#> 4217        2025         Week 20 Year to date  Local authority    E92000001
#> 4218        2025         Week 20 Year to date  Local authority    E92000001
#> 4219        2025         Week 20 Year to date  Local authority    E92000001
#> 4220        2025         Week 20 Year to date  Local authority    E92000001
#> 4221        2025         Week 20 Year to date  Local authority    E92000001
#> 4222        2025         Week 20 Year to date  Local authority    E92000001
#> 4223        2025         Week 20 Year to date  Local authority    E92000001
#> 4224        2025         Week 20 Year to date  Local authority    E92000001
#> 4225        2025         Week 20 Year to date  Local authority    E92000001
#> 4226        2025         Week 20 Year to date  Local authority    E92000001
#> 4227        2025         Week 20 Year to date  Local authority    E92000001
#> 4228        2025         Week 20 Year to date  Local authority    E92000001
#> 4229        2025         Week 20 Year to date  Local authority    E92000001
#> 4230        2025         Week 20 Year to date  Local authority    E92000001
#> 4231        2025         Week 20 Year to date  Local authority    E92000001
#> 4232        2025         Week 20 Year to date  Local authority    E92000001
#> 4233        2025         Week 20 Year to date  Local authority    E92000001
#> 4234        2025         Week 20 Year to date  Local authority    E92000001
#> 4235        2025         Week 20 Year to date  Local authority    E92000001
#> 4236        2025         Week 20 Year to date  Local authority    E92000001
#> 4237        2025         Week 20 Year to date  Local authority    E92000001
#> 4238        2025         Week 20 Year to date  Local authority    E92000001
#> 4239        2025         Week 20 Year to date  Local authority    E92000001
#> 4240        2025         Week 20 Year to date  Local authority    E92000001
#> 4241        2025         Week 20 Year to date  Local authority    E92000001
#> 4242        2025         Week 20 Year to date  Local authority    E92000001
#> 4243        2025         Week 20 Year to date  Local authority    E92000001
#> 4244        2025         Week 20 Year to date  Local authority    E92000001
#> 4245        2025         Week 20 Year to date  Local authority    E92000001
#> 4246        2025         Week 20 Year to date  Local authority    E92000001
#> 4247        2025         Week 20 Year to date  Local authority    E92000001
#> 4248        2025         Week 20 Year to date  Local authority    E92000001
#> 4249        2025         Week 20 Year to date  Local authority    E92000001
#> 4250        2025         Week 20 Year to date  Local authority    E92000001
#> 4251        2025         Week 20 Year to date  Local authority    E92000001
#> 4252        2025         Week 20 Year to date  Local authority    E92000001
#> 4253        2025         Week 20 Year to date  Local authority    E92000001
#> 4254        2025         Week 20 Year to date  Local authority    E92000001
#> 4255        2025         Week 20 Year to date  Local authority    E92000001
#> 4256        2025         Week 20 Year to date  Local authority    E92000001
#> 4257        2025         Week 20 Year to date  Local authority    E92000001
#> 4258        2025         Week 20 Year to date  Local authority    E92000001
#> 4259        2025         Week 18 Year to date         National    E92000001
#> 4260        2025         Week 18 Year to date         National    E92000001
#> 4261        2025         Week 18 Year to date         National    E92000001
#> 4262        2025         Week 18 Year to date         National    E92000001
#> 4263        2025         Week 18 Year to date         Regional    E92000001
#> 4264        2025         Week 18 Year to date         Regional    E92000001
#> 4265        2025         Week 18 Year to date         Regional    E92000001
#> 4266        2025         Week 18 Year to date         Regional    E92000001
#> 4267        2025         Week 18 Year to date  Local authority    E92000001
#> 4268        2025         Week 18 Year to date  Local authority    E92000001
#> 4269        2025         Week 18 Year to date  Local authority    E92000001
#> 4270        2025         Week 18 Year to date  Local authority    E92000001
#> 4271        2025         Week 18 Year to date  Local authority    E92000001
#> 4272        2025         Week 18 Year to date  Local authority    E92000001
#> 4273        2025         Week 18 Year to date  Local authority    E92000001
#> 4274        2025         Week 18 Year to date  Local authority    E92000001
#> 4275        2025         Week 18 Year to date  Local authority    E92000001
#> 4276        2025         Week 18 Year to date  Local authority    E92000001
#> 4277        2025         Week 18 Year to date  Local authority    E92000001
#> 4278        2025         Week 18 Year to date  Local authority    E92000001
#> 4279        2025         Week 18 Year to date  Local authority    E92000001
#> 4280        2025         Week 18 Year to date  Local authority    E92000001
#> 4281        2025         Week 18 Year to date  Local authority    E92000001
#> 4282        2025         Week 18 Year to date  Local authority    E92000001
#> 4283        2025         Week 18 Year to date  Local authority    E92000001
#> 4284        2025         Week 18 Year to date  Local authority    E92000001
#> 4285        2025         Week 18 Year to date  Local authority    E92000001
#> 4286        2025         Week 18 Year to date  Local authority    E92000001
#> 4287        2025         Week 18 Year to date  Local authority    E92000001
#> 4288        2025         Week 18 Year to date  Local authority    E92000001
#> 4289        2025         Week 18 Year to date  Local authority    E92000001
#> 4290        2025         Week 18 Year to date  Local authority    E92000001
#> 4291        2025         Week 18 Year to date  Local authority    E92000001
#> 4292        2025         Week 18 Year to date  Local authority    E92000001
#> 4293        2025         Week 18 Year to date  Local authority    E92000001
#> 4294        2025         Week 18 Year to date  Local authority    E92000001
#> 4295        2025         Week 18 Year to date  Local authority    E92000001
#> 4296        2025         Week 18 Year to date  Local authority    E92000001
#> 4297        2025         Week 18 Year to date  Local authority    E92000001
#> 4298        2025         Week 18 Year to date  Local authority    E92000001
#> 4299        2025         Week 18 Year to date  Local authority    E92000001
#> 4300        2025         Week 18 Year to date  Local authority    E92000001
#> 4301        2025         Week 18 Year to date  Local authority    E92000001
#> 4302        2025         Week 18 Year to date  Local authority    E92000001
#> 4303        2025         Week 18 Year to date         Regional    E92000001
#> 4304        2025         Week 18 Year to date         Regional    E92000001
#> 4305        2025         Week 18 Year to date         Regional    E92000001
#> 4306        2025         Week 18 Year to date         Regional    E92000001
#> 4307        2025         Week 18 Year to date  Local authority    E92000001
#> 4308        2025         Week 18 Year to date  Local authority    E92000001
#> 4309        2025         Week 18 Year to date  Local authority    E92000001
#> 4310        2025         Week 18 Year to date  Local authority    E92000001
#> 4311        2025         Week 18 Year to date  Local authority    E92000001
#> 4312        2025         Week 18 Year to date  Local authority    E92000001
#> 4313        2025         Week 18 Year to date  Local authority    E92000001
#> 4314        2025         Week 18 Year to date  Local authority    E92000001
#> 4315        2025         Week 18 Year to date  Local authority    E92000001
#> 4316        2025         Week 18 Year to date  Local authority    E92000001
#> 4317        2025         Week 18 Year to date  Local authority    E92000001
#> 4318        2025         Week 18 Year to date  Local authority    E92000001
#> 4319        2025         Week 18 Year to date  Local authority    E92000001
#> 4320        2025         Week 18 Year to date  Local authority    E92000001
#> 4321        2025         Week 18 Year to date  Local authority    E92000001
#> 4322        2025         Week 18 Year to date  Local authority    E92000001
#> 4323        2025         Week 18 Year to date  Local authority    E92000001
#> 4324        2025         Week 18 Year to date  Local authority    E92000001
#> 4325        2025         Week 18 Year to date  Local authority    E92000001
#> 4326        2025         Week 18 Year to date  Local authority    E92000001
#> 4327        2025         Week 18 Year to date  Local authority    E92000001
#> 4328        2025         Week 18 Year to date  Local authority    E92000001
#> 4329        2025         Week 18 Year to date  Local authority    E92000001
#> 4330        2025         Week 18 Year to date  Local authority    E92000001
#> 4331        2025         Week 18 Year to date  Local authority    E92000001
#> 4332        2025         Week 18 Year to date  Local authority    E92000001
#> 4333        2025         Week 18 Year to date  Local authority    E92000001
#> 4334        2025         Week 18 Year to date  Local authority    E92000001
#> 4335        2025         Week 18 Year to date  Local authority    E92000001
#> 4336        2025         Week 18 Year to date  Local authority    E92000001
#> 4337        2025         Week 18 Year to date  Local authority    E92000001
#> 4338        2025         Week 18 Year to date  Local authority    E92000001
#> 4339        2025         Week 18 Year to date  Local authority    E92000001
#> 4340        2025         Week 18 Year to date  Local authority    E92000001
#> 4341        2025         Week 18 Year to date  Local authority    E92000001
#> 4342        2025         Week 18 Year to date  Local authority    E92000001
#> 4343        2025         Week 18 Year to date  Local authority    E92000001
#> 4344        2025         Week 18 Year to date  Local authority    E92000001
#> 4345        2025         Week 18 Year to date  Local authority    E92000001
#> 4346        2025         Week 18 Year to date  Local authority    E92000001
#> 4347        2025         Week 18 Year to date  Local authority    E92000001
#> 4348        2025         Week 18 Year to date  Local authority    E92000001
#> 4349        2025         Week 18 Year to date  Local authority    E92000001
#> 4350        2025         Week 18 Year to date  Local authority    E92000001
#> 4351        2025         Week 18 Year to date  Local authority    E92000001
#> 4352        2025         Week 18 Year to date  Local authority    E92000001
#> 4353        2025         Week 18 Year to date  Local authority    E92000001
#> 4354        2025         Week 18 Year to date  Local authority    E92000001
#> 4355        2025         Week 18 Year to date  Local authority    E92000001
#> 4356        2025         Week 18 Year to date  Local authority    E92000001
#> 4357        2025         Week 18 Year to date  Local authority    E92000001
#> 4358        2025         Week 18 Year to date  Local authority    E92000001
#> 4359        2025         Week 18 Year to date  Local authority    E92000001
#> 4360        2025         Week 18 Year to date  Local authority    E92000001
#> 4361        2025         Week 18 Year to date  Local authority    E92000001
#> 4362        2025         Week 18 Year to date  Local authority    E92000001
#> 4363        2025         Week 18 Year to date  Local authority    E92000001
#> 4364        2025         Week 18 Year to date  Local authority    E92000001
#> 4365        2025         Week 18 Year to date  Local authority    E92000001
#> 4366        2025         Week 18 Year to date  Local authority    E92000001
#> 4367        2025         Week 18 Year to date  Local authority    E92000001
#> 4368        2025         Week 18 Year to date  Local authority    E92000001
#> 4369        2025         Week 18 Year to date  Local authority    E92000001
#> 4370        2025         Week 18 Year to date  Local authority    E92000001
#> 4371        2025         Week 18 Year to date  Local authority    E92000001
#> 4372        2025         Week 18 Year to date  Local authority    E92000001
#> 4373        2025         Week 18 Year to date  Local authority    E92000001
#> 4374        2025         Week 18 Year to date  Local authority    E92000001
#> 4375        2025         Week 18 Year to date  Local authority    E92000001
#> 4376        2025         Week 18 Year to date  Local authority    E92000001
#> 4377        2025         Week 18 Year to date  Local authority    E92000001
#> 4378        2025         Week 18 Year to date  Local authority    E92000001
#> 4379        2025         Week 18 Year to date         Regional    E92000001
#> 4380        2025         Week 18 Year to date         Regional    E92000001
#> 4381        2025         Week 18 Year to date         Regional    E92000001
#> 4382        2025         Week 18 Year to date         Regional    E92000001
#> 4383        2025         Week 18 Year to date  Local authority    E92000001
#> 4384        2025         Week 18 Year to date  Local authority    E92000001
#> 4385        2025         Week 18 Year to date  Local authority    E92000001
#> 4386        2025         Week 18 Year to date  Local authority    E92000001
#> 4387        2025         Week 18 Year to date  Local authority    E92000001
#> 4388        2025         Week 18 Year to date  Local authority    E92000001
#> 4389        2025         Week 18 Year to date  Local authority    E92000001
#> 4390        2025         Week 18 Year to date  Local authority    E92000001
#> 4391        2025         Week 18 Year to date  Local authority    E92000001
#> 4392        2025         Week 18 Year to date  Local authority    E92000001
#> 4393        2025         Week 18 Year to date  Local authority    E92000001
#> 4394        2025         Week 18 Year to date  Local authority    E92000001
#> 4395        2025         Week 18 Year to date  Local authority    E92000001
#> 4396        2025         Week 18 Year to date  Local authority    E92000001
#> 4397        2025         Week 18 Year to date  Local authority    E92000001
#> 4398        2025         Week 18 Year to date  Local authority    E92000001
#> 4399        2025         Week 18 Year to date  Local authority    E92000001
#> 4400        2025         Week 18 Year to date  Local authority    E92000001
#> 4401        2025         Week 18 Year to date  Local authority    E92000001
#> 4402        2025         Week 18 Year to date  Local authority    E92000001
#> 4403        2025         Week 18 Year to date  Local authority    E92000001
#> 4404        2025         Week 18 Year to date  Local authority    E92000001
#> 4405        2025         Week 18 Year to date  Local authority    E92000001
#> 4406        2025         Week 18 Year to date  Local authority    E92000001
#> 4407        2025         Week 18 Year to date  Local authority    E92000001
#> 4408        2025         Week 18 Year to date  Local authority    E92000001
#> 4409        2025         Week 18 Year to date  Local authority    E92000001
#> 4410        2025         Week 18 Year to date  Local authority    E92000001
#> 4411        2025         Week 18 Year to date  Local authority    E92000001
#> 4412        2025         Week 18 Year to date  Local authority    E92000001
#> 4413        2025         Week 18 Year to date  Local authority    E92000001
#> 4414        2025         Week 18 Year to date  Local authority    E92000001
#> 4415        2025         Week 18 Year to date  Local authority    E92000001
#> 4416        2025         Week 18 Year to date  Local authority    E92000001
#> 4417        2025         Week 18 Year to date  Local authority    E92000001
#> 4418        2025         Week 18 Year to date  Local authority    E92000001
#> 4419        2025         Week 18 Year to date  Local authority    E92000001
#> 4420        2025         Week 18 Year to date  Local authority    E92000001
#> 4421        2025         Week 18 Year to date  Local authority    E92000001
#> 4422        2025         Week 18 Year to date  Local authority    E92000001
#> 4423        2025         Week 18 Year to date  Local authority    E92000001
#> 4424        2025         Week 18 Year to date  Local authority    E92000001
#> 4425        2025         Week 18 Year to date  Local authority    E92000001
#> 4426        2025         Week 18 Year to date  Local authority    E92000001
#> 4427        2025         Week 18 Year to date  Local authority    E92000001
#> 4428        2025         Week 18 Year to date         Regional    E92000001
#> 4429        2025         Week 18 Year to date         Regional    E92000001
#> 4430        2025         Week 18 Year to date         Regional    E92000001
#> 4431        2025         Week 18 Year to date         Regional    E92000001
#> 4432        2025         Week 18 Year to date  Local authority    E92000001
#> 4433        2025         Week 18 Year to date  Local authority    E92000001
#> 4434        2025         Week 18 Year to date  Local authority    E92000001
#> 4435        2025         Week 18 Year to date  Local authority    E92000001
#> 4436        2025         Week 18 Year to date  Local authority    E92000001
#> 4437        2025         Week 18 Year to date  Local authority    E92000001
#> 4438        2025         Week 18 Year to date  Local authority    E92000001
#> 4439        2025         Week 18 Year to date  Local authority    E92000001
#> 4440        2025         Week 18 Year to date  Local authority    E92000001
#> 4441        2025         Week 18 Year to date  Local authority    E92000001
#> 4442        2025         Week 18 Year to date  Local authority    E92000001
#> 4443        2025         Week 18 Year to date  Local authority    E92000001
#> 4444        2025         Week 18 Year to date  Local authority    E92000001
#> 4445        2025         Week 18 Year to date  Local authority    E92000001
#> 4446        2025         Week 18 Year to date  Local authority    E92000001
#> 4447        2025         Week 18 Year to date  Local authority    E92000001
#> 4448        2025         Week 18 Year to date  Local authority    E92000001
#> 4449        2025         Week 18 Year to date  Local authority    E92000001
#> 4450        2025         Week 18 Year to date  Local authority    E92000001
#> 4451        2025         Week 18 Year to date  Local authority    E92000001
#> 4452        2025         Week 18 Year to date  Local authority    E92000001
#> 4453        2025         Week 18 Year to date  Local authority    E92000001
#> 4454        2025         Week 18 Year to date  Local authority    E92000001
#> 4455        2025         Week 18 Year to date  Local authority    E92000001
#> 4456        2025         Week 18 Year to date  Local authority    E92000001
#> 4457        2025         Week 18 Year to date  Local authority    E92000001
#> 4458        2025         Week 18 Year to date  Local authority    E92000001
#> 4459        2025         Week 18 Year to date  Local authority    E92000001
#> 4460        2025         Week 18 Year to date  Local authority    E92000001
#> 4461        2025         Week 18 Year to date         Regional    E92000001
#> 4462        2025         Week 18 Year to date         Regional    E92000001
#> 4463        2025         Week 18 Year to date         Regional    E92000001
#> 4464        2025         Week 18 Year to date         Regional    E92000001
#> 4465        2025         Week 18 Year to date  Local authority    E92000001
#> 4466        2025         Week 18 Year to date  Local authority    E92000001
#> 4467        2025         Week 18 Year to date  Local authority    E92000001
#> 4468        2025         Week 18 Year to date  Local authority    E92000001
#> 4469        2025         Week 18 Year to date  Local authority    E92000001
#> 4470        2025         Week 18 Year to date  Local authority    E92000001
#> 4471        2025         Week 18 Year to date  Local authority    E92000001
#> 4472        2025         Week 18 Year to date  Local authority    E92000001
#> 4473        2025         Week 18 Year to date  Local authority    E92000001
#> 4474        2025         Week 18 Year to date  Local authority    E92000001
#> 4475        2025         Week 18 Year to date  Local authority    E92000001
#> 4476        2025         Week 18 Year to date  Local authority    E92000001
#> 4477        2025         Week 18 Year to date  Local authority    E92000001
#> 4478        2025         Week 18 Year to date  Local authority    E92000001
#> 4479        2025         Week 18 Year to date  Local authority    E92000001
#> 4480        2025         Week 18 Year to date  Local authority    E92000001
#> 4481        2025         Week 18 Year to date  Local authority    E92000001
#> 4482        2025         Week 18 Year to date  Local authority    E92000001
#> 4483        2025         Week 18 Year to date  Local authority    E92000001
#> 4484        2025         Week 18 Year to date  Local authority    E92000001
#> 4485        2025         Week 18 Year to date  Local authority    E92000001
#> 4486        2025         Week 18 Year to date  Local authority    E92000001
#> 4487        2025         Week 18 Year to date  Local authority    E92000001
#> 4488        2025         Week 18 Year to date  Local authority    E92000001
#> 4489        2025         Week 18 Year to date  Local authority    E92000001
#> 4490        2025         Week 18 Year to date  Local authority    E92000001
#> 4491        2025         Week 18 Year to date  Local authority    E92000001
#> 4492        2025         Week 18 Year to date  Local authority    E92000001
#> 4493        2025         Week 18 Year to date  Local authority    E92000001
#> 4494        2025         Week 18 Year to date  Local authority    E92000001
#> 4495        2025         Week 18 Year to date  Local authority    E92000001
#> 4496        2025         Week 18 Year to date  Local authority    E92000001
#> 4497        2025         Week 18 Year to date  Local authority    E92000001
#> 4498        2025         Week 18 Year to date  Local authority    E92000001
#> 4499        2025         Week 18 Year to date  Local authority    E92000001
#> 4500        2025         Week 18 Year to date  Local authority    E92000001
#> 4501        2025         Week 18 Year to date  Local authority    E92000001
#> 4502        2025         Week 18 Year to date  Local authority    E92000001
#> 4503        2025         Week 18 Year to date  Local authority    E92000001
#> 4504        2025         Week 18 Year to date  Local authority    E92000001
#> 4505        2025         Week 18 Year to date  Local authority    E92000001
#> 4506        2025         Week 18 Year to date  Local authority    E92000001
#> 4507        2025         Week 18 Year to date         Regional    E92000001
#> 4508        2025         Week 18 Year to date         Regional    E92000001
#> 4509        2025         Week 18 Year to date         Regional    E92000001
#> 4510        2025         Week 18 Year to date         Regional    E92000001
#> 4511        2025         Week 18 Year to date  Local authority    E92000001
#> 4512        2025         Week 18 Year to date  Local authority    E92000001
#> 4513        2025         Week 18 Year to date  Local authority    E92000001
#> 4514        2025         Week 18 Year to date  Local authority    E92000001
#> 4515        2025         Week 18 Year to date  Local authority    E92000001
#> 4516        2025         Week 18 Year to date  Local authority    E92000001
#> 4517        2025         Week 18 Year to date  Local authority    E92000001
#> 4518        2025         Week 18 Year to date  Local authority    E92000001
#> 4519        2025         Week 18 Year to date  Local authority    E92000001
#> 4520        2025         Week 18 Year to date  Local authority    E92000001
#> 4521        2025         Week 18 Year to date  Local authority    E92000001
#> 4522        2025         Week 18 Year to date  Local authority    E92000001
#> 4523        2025         Week 18 Year to date  Local authority    E92000001
#> 4524        2025         Week 18 Year to date  Local authority    E92000001
#> 4525        2025         Week 18 Year to date  Local authority    E92000001
#> 4526        2025         Week 18 Year to date  Local authority    E92000001
#> 4527        2025         Week 18 Year to date  Local authority    E92000001
#> 4528        2025         Week 18 Year to date  Local authority    E92000001
#> 4529        2025         Week 18 Year to date  Local authority    E92000001
#> 4530        2025         Week 18 Year to date  Local authority    E92000001
#> 4531        2025         Week 18 Year to date  Local authority    E92000001
#> 4532        2025         Week 18 Year to date  Local authority    E92000001
#> 4533        2025         Week 18 Year to date  Local authority    E92000001
#> 4534        2025         Week 18 Year to date  Local authority    E92000001
#> 4535        2025         Week 18 Year to date  Local authority    E92000001
#> 4536        2025         Week 18 Year to date  Local authority    E92000001
#> 4537        2025         Week 18 Year to date  Local authority    E92000001
#> 4538        2025         Week 18 Year to date  Local authority    E92000001
#> 4539        2025         Week 18 Year to date  Local authority    E92000001
#> 4540        2025         Week 18 Year to date  Local authority    E92000001
#> 4541        2025         Week 18 Year to date  Local authority    E92000001
#> 4542        2025         Week 18 Year to date  Local authority    E92000001
#> 4543        2025         Week 18 Year to date  Local authority    E92000001
#> 4544        2025         Week 18 Year to date         Regional    E92000001
#> 4545        2025         Week 18 Year to date         Regional    E92000001
#> 4546        2025         Week 18 Year to date         Regional    E92000001
#> 4547        2025         Week 18 Year to date         Regional    E92000001
#> 4548        2025         Week 18 Year to date  Local authority    E92000001
#> 4549        2025         Week 18 Year to date  Local authority    E92000001
#> 4550        2025         Week 18 Year to date  Local authority    E92000001
#> 4551        2025         Week 18 Year to date  Local authority    E92000001
#> 4552        2025         Week 18 Year to date  Local authority    E92000001
#> 4553        2025         Week 18 Year to date  Local authority    E92000001
#> 4554        2025         Week 18 Year to date  Local authority    E92000001
#> 4555        2025         Week 18 Year to date  Local authority    E92000001
#> 4556        2025         Week 18 Year to date  Local authority    E92000001
#> 4557        2025         Week 18 Year to date  Local authority    E92000001
#> 4558        2025         Week 18 Year to date  Local authority    E92000001
#> 4559        2025         Week 18 Year to date  Local authority    E92000001
#> 4560        2025         Week 18 Year to date  Local authority    E92000001
#> 4561        2025         Week 18 Year to date  Local authority    E92000001
#> 4562        2025         Week 18 Year to date  Local authority    E92000001
#> 4563        2025         Week 18 Year to date  Local authority    E92000001
#> 4564        2025         Week 18 Year to date  Local authority    E92000001
#> 4565        2025         Week 18 Year to date  Local authority    E92000001
#> 4566        2025         Week 18 Year to date  Local authority    E92000001
#> 4567        2025         Week 18 Year to date  Local authority    E92000001
#> 4568        2025         Week 18 Year to date  Local authority    E92000001
#> 4569        2025         Week 18 Year to date  Local authority    E92000001
#> 4570        2025         Week 18 Year to date  Local authority    E92000001
#> 4571        2025         Week 18 Year to date  Local authority    E92000001
#> 4572        2025         Week 18 Year to date  Local authority    E92000001
#> 4573        2025         Week 18 Year to date  Local authority    E92000001
#> 4574        2025         Week 18 Year to date  Local authority    E92000001
#> 4575        2025         Week 18 Year to date  Local authority    E92000001
#> 4576        2025         Week 18 Year to date  Local authority    E92000001
#> 4577        2025         Week 18 Year to date  Local authority    E92000001
#> 4578        2025         Week 18 Year to date  Local authority    E92000001
#> 4579        2025         Week 18 Year to date  Local authority    E92000001
#> 4580        2025         Week 18 Year to date  Local authority    E92000001
#> 4581        2025         Week 18 Year to date  Local authority    E92000001
#> 4582        2025         Week 18 Year to date  Local authority    E92000001
#> 4583        2025         Week 18 Year to date  Local authority    E92000001
#> 4584        2025         Week 18 Year to date  Local authority    E92000001
#> 4585        2025         Week 18 Year to date  Local authority    E92000001
#> 4586        2025         Week 18 Year to date  Local authority    E92000001
#> 4587        2025         Week 18 Year to date  Local authority    E92000001
#> 4588        2025         Week 18 Year to date  Local authority    E92000001
#> 4589        2025         Week 18 Year to date  Local authority    E92000001
#> 4590        2025         Week 18 Year to date  Local authority    E92000001
#> 4591        2025         Week 18 Year to date  Local authority    E92000001
#> 4592        2025         Week 18 Year to date  Local authority    E92000001
#> 4593        2025         Week 18 Year to date  Local authority    E92000001
#> 4594        2025         Week 18 Year to date  Local authority    E92000001
#> 4595        2025         Week 18 Year to date  Local authority    E92000001
#> 4596        2025         Week 18 Year to date  Local authority    E92000001
#> 4597        2025         Week 18 Year to date  Local authority    E92000001
#> 4598        2025         Week 18 Year to date  Local authority    E92000001
#> 4599        2025         Week 18 Year to date  Local authority    E92000001
#> 4600        2025         Week 18 Year to date  Local authority    E92000001
#> 4601        2025         Week 18 Year to date  Local authority    E92000001
#> 4602        2025         Week 18 Year to date  Local authority    E92000001
#> 4603        2025         Week 18 Year to date  Local authority    E92000001
#> 4604        2025         Week 18 Year to date  Local authority    E92000001
#> 4605        2025         Week 18 Year to date  Local authority    E92000001
#> 4606        2025         Week 18 Year to date  Local authority    E92000001
#> 4607        2025         Week 18 Year to date  Local authority    E92000001
#> 4608        2025         Week 18 Year to date  Local authority    E92000001
#> 4609        2025         Week 18 Year to date  Local authority    E92000001
#> 4610        2025         Week 18 Year to date  Local authority    E92000001
#> 4611        2025         Week 18 Year to date  Local authority    E92000001
#> 4612        2025         Week 18 Year to date  Local authority    E92000001
#> 4613        2025         Week 18 Year to date  Local authority    E92000001
#> 4614        2025         Week 18 Year to date  Local authority    E92000001
#> 4615        2025         Week 18 Year to date  Local authority    E92000001
#> 4616        2025         Week 18 Year to date  Local authority    E92000001
#> 4617        2025         Week 18 Year to date  Local authority    E92000001
#> 4618        2025         Week 18 Year to date  Local authority    E92000001
#> 4619        2025         Week 18 Year to date  Local authority    E92000001
#> 4620        2025         Week 18 Year to date  Local authority    E92000001
#> 4621        2025         Week 18 Year to date  Local authority    E92000001
#> 4622        2025         Week 18 Year to date  Local authority    E92000001
#> 4623        2025         Week 18 Year to date  Local authority    E92000001
#> 4624        2025         Week 18 Year to date  Local authority    E92000001
#> 4625        2025         Week 18 Year to date  Local authority    E92000001
#> 4626        2025         Week 18 Year to date  Local authority    E92000001
#> 4627        2025         Week 18 Year to date  Local authority    E92000001
#> 4628        2025         Week 18 Year to date  Local authority    E92000001
#> 4629        2025         Week 18 Year to date  Local authority    E92000001
#> 4630        2025         Week 18 Year to date  Local authority    E92000001
#> 4631        2025         Week 18 Year to date  Local authority    E92000001
#> 4632        2025         Week 18 Year to date  Local authority    E92000001
#> 4633        2025         Week 18 Year to date  Local authority    E92000001
#> 4634        2025         Week 18 Year to date  Local authority    E92000001
#> 4635        2025         Week 18 Year to date  Local authority    E92000001
#> 4636        2025         Week 18 Year to date  Local authority    E92000001
#> 4637        2025         Week 18 Year to date  Local authority    E92000001
#> 4638        2025         Week 18 Year to date  Local authority    E92000001
#> 4639        2025         Week 18 Year to date  Local authority    E92000001
#> 4640        2025         Week 18 Year to date  Local authority    E92000001
#> 4641        2025         Week 18 Year to date  Local authority    E92000001
#> 4642        2025         Week 18 Year to date  Local authority    E92000001
#> 4643        2025         Week 18 Year to date  Local authority    E92000001
#> 4644        2025         Week 18 Year to date  Local authority    E92000001
#> 4645        2025         Week 18 Year to date         Regional    E92000001
#> 4646        2025         Week 18 Year to date         Regional    E92000001
#> 4647        2025         Week 18 Year to date         Regional    E92000001
#> 4648        2025         Week 18 Year to date         Regional    E92000001
#> 4649        2025         Week 18 Year to date  Local authority    E92000001
#> 4650        2025         Week 18 Year to date  Local authority    E92000001
#> 4651        2025         Week 18 Year to date  Local authority    E92000001
#> 4652        2025         Week 18 Year to date  Local authority    E92000001
#> 4653        2025         Week 18 Year to date  Local authority    E92000001
#> 4654        2025         Week 18 Year to date  Local authority    E92000001
#> 4655        2025         Week 18 Year to date  Local authority    E92000001
#> 4656        2025         Week 18 Year to date  Local authority    E92000001
#> 4657        2025         Week 18 Year to date  Local authority    E92000001
#> 4658        2025         Week 18 Year to date  Local authority    E92000001
#> 4659        2025         Week 18 Year to date  Local authority    E92000001
#> 4660        2025         Week 18 Year to date  Local authority    E92000001
#> 4661        2025         Week 18 Year to date  Local authority    E92000001
#> 4662        2025         Week 18 Year to date  Local authority    E92000001
#> 4663        2025         Week 18 Year to date  Local authority    E92000001
#> 4664        2025         Week 18 Year to date  Local authority    E92000001
#> 4665        2025         Week 18 Year to date  Local authority    E92000001
#> 4666        2025         Week 18 Year to date  Local authority    E92000001
#> 4667        2025         Week 18 Year to date  Local authority    E92000001
#> 4668        2025         Week 18 Year to date  Local authority    E92000001
#> 4669        2025         Week 18 Year to date  Local authority    E92000001
#> 4670        2025         Week 18 Year to date  Local authority    E92000001
#> 4671        2025         Week 18 Year to date  Local authority    E92000001
#> 4672        2025         Week 18 Year to date  Local authority    E92000001
#> 4673        2025         Week 18 Year to date  Local authority    E92000001
#> 4674        2025         Week 18 Year to date  Local authority    E92000001
#> 4675        2025         Week 18 Year to date  Local authority    E92000001
#> 4676        2025         Week 18 Year to date  Local authority    E92000001
#> 4677        2025         Week 18 Year to date  Local authority    E92000001
#> 4678        2025         Week 18 Year to date  Local authority    E92000001
#> 4679        2025         Week 18 Year to date  Local authority    E92000001
#> 4680        2025         Week 18 Year to date  Local authority    E92000001
#> 4681        2025         Week 18 Year to date  Local authority    E92000001
#> 4682        2025         Week 18 Year to date  Local authority    E92000001
#> 4683        2025         Week 18 Year to date  Local authority    E92000001
#> 4684        2025         Week 18 Year to date  Local authority    E92000001
#> 4685        2025         Week 18 Year to date  Local authority    E92000001
#> 4686        2025         Week 18 Year to date  Local authority    E92000001
#> 4687        2025         Week 18 Year to date  Local authority    E92000001
#> 4688        2025         Week 18 Year to date  Local authority    E92000001
#> 4689        2025         Week 18 Year to date  Local authority    E92000001
#> 4690        2025         Week 18 Year to date  Local authority    E92000001
#> 4691        2025         Week 18 Year to date  Local authority    E92000001
#> 4692        2025         Week 18 Year to date  Local authority    E92000001
#> 4693        2025         Week 18 Year to date  Local authority    E92000001
#> 4694        2025         Week 18 Year to date  Local authority    E92000001
#> 4695        2025         Week 18 Year to date  Local authority    E92000001
#> 4696        2025         Week 18 Year to date  Local authority    E92000001
#> 4697        2025         Week 18 Year to date  Local authority    E92000001
#> 4698        2025         Week 18 Year to date  Local authority    E92000001
#> 4699        2025         Week 18 Year to date  Local authority    E92000001
#> 4700        2025         Week 18 Year to date  Local authority    E92000001
#> 4701        2025         Week 18 Year to date  Local authority    E92000001
#> 4702        2025         Week 18 Year to date  Local authority    E92000001
#> 4703        2025         Week 18 Year to date  Local authority    E92000001
#> 4704        2025         Week 18 Year to date  Local authority    E92000001
#> 4705        2025         Week 18 Year to date  Local authority    E92000001
#> 4706        2025         Week 18 Year to date         Regional    E92000001
#> 4707        2025         Week 18 Year to date         Regional    E92000001
#> 4708        2025         Week 18 Year to date         Regional    E92000001
#> 4709        2025         Week 18 Year to date         Regional    E92000001
#> 4710        2025         Week 18 Year to date  Local authority    E92000001
#> 4711        2025         Week 18 Year to date  Local authority    E92000001
#> 4712        2025         Week 18 Year to date  Local authority    E92000001
#> 4713        2025         Week 18 Year to date  Local authority    E92000001
#> 4714        2025         Week 18 Year to date  Local authority    E92000001
#> 4715        2025         Week 18 Year to date  Local authority    E92000001
#> 4716        2025         Week 18 Year to date  Local authority    E92000001
#> 4717        2025         Week 18 Year to date  Local authority    E92000001
#> 4718        2025         Week 18 Year to date  Local authority    E92000001
#> 4719        2025         Week 18 Year to date  Local authority    E92000001
#> 4720        2025         Week 18 Year to date  Local authority    E92000001
#> 4721        2025         Week 18 Year to date  Local authority    E92000001
#> 4722        2025         Week 18 Year to date  Local authority    E92000001
#> 4723        2025         Week 18 Year to date  Local authority    E92000001
#> 4724        2025         Week 18 Year to date  Local authority    E92000001
#> 4725        2025         Week 18 Year to date  Local authority    E92000001
#> 4726        2025         Week 18 Year to date  Local authority    E92000001
#> 4727        2025         Week 18 Year to date  Local authority    E92000001
#> 4728        2025         Week 18 Year to date  Local authority    E92000001
#> 4729        2025         Week 18 Year to date  Local authority    E92000001
#> 4730        2025         Week 18 Year to date  Local authority    E92000001
#> 4731        2025         Week 18 Year to date  Local authority    E92000001
#> 4732        2025         Week 18 Year to date  Local authority    E92000001
#> 4733        2025         Week 18 Year to date  Local authority    E92000001
#> 4734        2025         Week 18 Year to date  Local authority    E92000001
#> 4735        2025         Week 18 Year to date  Local authority    E92000001
#> 4736        2025         Week 18 Year to date  Local authority    E92000001
#> 4737        2025         Week 18 Year to date  Local authority    E92000001
#> 4738        2025         Week 18 Year to date  Local authority    E92000001
#> 4739        2025         Week 18 Year to date  Local authority    E92000001
#> 4740        2025         Week 18 Year to date  Local authority    E92000001
#> 4741        2025         Week 18 Year to date  Local authority    E92000001
#> 4742        2025         Week 18 Year to date  Local authority    E92000001
#> 4743        2025         Week 18 Year to date  Local authority    E92000001
#> 4744        2025         Week 18 Year to date  Local authority    E92000001
#> 4745        2025         Week 18 Year to date  Local authority    E92000001
#> 4746        2025         Week 18 Year to date  Local authority    E92000001
#> 4747        2025         Week 18 Year to date  Local authority    E92000001
#> 4748        2025         Week 18 Year to date  Local authority    E92000001
#> 4749        2025         Week 18 Year to date  Local authority    E92000001
#> 4750        2025         Week 18 Year to date  Local authority    E92000001
#> 4751        2025         Week 18 Year to date  Local authority    E92000001
#> 4752        2025         Week 18 Year to date  Local authority    E92000001
#> 4753        2025         Week 15 Year to date         National    E92000001
#> 4754        2025         Week 15 Year to date         National    E92000001
#> 4755        2025         Week 15 Year to date         National    E92000001
#> 4756        2025         Week 15 Year to date         National    E92000001
#> 4757        2025         Week 15 Year to date         Regional    E92000001
#> 4758        2025         Week 15 Year to date         Regional    E92000001
#> 4759        2025         Week 15 Year to date         Regional    E92000001
#> 4760        2025         Week 15 Year to date         Regional    E92000001
#> 4761        2025         Week 15 Year to date  Local authority    E92000001
#> 4762        2025         Week 15 Year to date  Local authority    E92000001
#> 4763        2025         Week 15 Year to date  Local authority    E92000001
#> 4764        2025         Week 15 Year to date  Local authority    E92000001
#> 4765        2025         Week 15 Year to date  Local authority    E92000001
#> 4766        2025         Week 15 Year to date  Local authority    E92000001
#> 4767        2025         Week 15 Year to date  Local authority    E92000001
#> 4768        2025         Week 15 Year to date  Local authority    E92000001
#> 4769        2025         Week 15 Year to date  Local authority    E92000001
#> 4770        2025         Week 15 Year to date  Local authority    E92000001
#> 4771        2025         Week 15 Year to date  Local authority    E92000001
#> 4772        2025         Week 15 Year to date  Local authority    E92000001
#> 4773        2025         Week 15 Year to date  Local authority    E92000001
#> 4774        2025         Week 15 Year to date  Local authority    E92000001
#> 4775        2025         Week 15 Year to date  Local authority    E92000001
#> 4776        2025         Week 15 Year to date  Local authority    E92000001
#> 4777        2025         Week 15 Year to date  Local authority    E92000001
#> 4778        2025         Week 15 Year to date  Local authority    E92000001
#> 4779        2025         Week 15 Year to date  Local authority    E92000001
#> 4780        2025         Week 15 Year to date  Local authority    E92000001
#> 4781        2025         Week 15 Year to date  Local authority    E92000001
#> 4782        2025         Week 15 Year to date  Local authority    E92000001
#> 4783        2025         Week 15 Year to date  Local authority    E92000001
#> 4784        2025         Week 15 Year to date  Local authority    E92000001
#> 4785        2025         Week 15 Year to date  Local authority    E92000001
#> 4786        2025         Week 15 Year to date  Local authority    E92000001
#> 4787        2025         Week 15 Year to date  Local authority    E92000001
#> 4788        2025         Week 15 Year to date  Local authority    E92000001
#> 4789        2025         Week 15 Year to date  Local authority    E92000001
#> 4790        2025         Week 15 Year to date  Local authority    E92000001
#> 4791        2025         Week 15 Year to date  Local authority    E92000001
#> 4792        2025         Week 15 Year to date  Local authority    E92000001
#> 4793        2025         Week 15 Year to date  Local authority    E92000001
#> 4794        2025         Week 15 Year to date  Local authority    E92000001
#> 4795        2025         Week 15 Year to date  Local authority    E92000001
#> 4796        2025         Week 15 Year to date  Local authority    E92000001
#> 4797        2025         Week 15 Year to date         Regional    E92000001
#> 4798        2025         Week 15 Year to date         Regional    E92000001
#> 4799        2025         Week 15 Year to date         Regional    E92000001
#> 4800        2025         Week 15 Year to date         Regional    E92000001
#> 4801        2025         Week 15 Year to date  Local authority    E92000001
#> 4802        2025         Week 15 Year to date  Local authority    E92000001
#> 4803        2025         Week 15 Year to date  Local authority    E92000001
#> 4804        2025         Week 15 Year to date  Local authority    E92000001
#> 4805        2025         Week 15 Year to date  Local authority    E92000001
#> 4806        2025         Week 15 Year to date  Local authority    E92000001
#> 4807        2025         Week 15 Year to date  Local authority    E92000001
#> 4808        2025         Week 15 Year to date  Local authority    E92000001
#> 4809        2025         Week 15 Year to date  Local authority    E92000001
#> 4810        2025         Week 15 Year to date  Local authority    E92000001
#> 4811        2025         Week 15 Year to date  Local authority    E92000001
#> 4812        2025         Week 15 Year to date  Local authority    E92000001
#> 4813        2025         Week 15 Year to date  Local authority    E92000001
#> 4814        2025         Week 15 Year to date  Local authority    E92000001
#> 4815        2025         Week 15 Year to date  Local authority    E92000001
#> 4816        2025         Week 15 Year to date  Local authority    E92000001
#> 4817        2025         Week 15 Year to date  Local authority    E92000001
#> 4818        2025         Week 15 Year to date  Local authority    E92000001
#> 4819        2025         Week 15 Year to date  Local authority    E92000001
#> 4820        2025         Week 15 Year to date  Local authority    E92000001
#> 4821        2025         Week 15 Year to date  Local authority    E92000001
#> 4822        2025         Week 15 Year to date  Local authority    E92000001
#> 4823        2025         Week 15 Year to date  Local authority    E92000001
#> 4824        2025         Week 15 Year to date  Local authority    E92000001
#> 4825        2025         Week 15 Year to date  Local authority    E92000001
#> 4826        2025         Week 15 Year to date  Local authority    E92000001
#> 4827        2025         Week 15 Year to date  Local authority    E92000001
#> 4828        2025         Week 15 Year to date  Local authority    E92000001
#> 4829        2025         Week 15 Year to date  Local authority    E92000001
#> 4830        2025         Week 15 Year to date  Local authority    E92000001
#> 4831        2025         Week 15 Year to date  Local authority    E92000001
#> 4832        2025         Week 15 Year to date  Local authority    E92000001
#> 4833        2025         Week 15 Year to date  Local authority    E92000001
#> 4834        2025         Week 15 Year to date  Local authority    E92000001
#> 4835        2025         Week 15 Year to date  Local authority    E92000001
#> 4836        2025         Week 15 Year to date  Local authority    E92000001
#> 4837        2025         Week 15 Year to date  Local authority    E92000001
#> 4838        2025         Week 15 Year to date  Local authority    E92000001
#> 4839        2025         Week 15 Year to date  Local authority    E92000001
#> 4840        2025         Week 15 Year to date  Local authority    E92000001
#> 4841        2025         Week 15 Year to date  Local authority    E92000001
#> 4842        2025         Week 15 Year to date  Local authority    E92000001
#> 4843        2025         Week 15 Year to date  Local authority    E92000001
#> 4844        2025         Week 15 Year to date  Local authority    E92000001
#> 4845        2025         Week 15 Year to date  Local authority    E92000001
#> 4846        2025         Week 15 Year to date  Local authority    E92000001
#> 4847        2025         Week 15 Year to date  Local authority    E92000001
#> 4848        2025         Week 15 Year to date  Local authority    E92000001
#> 4849        2025         Week 15 Year to date  Local authority    E92000001
#> 4850        2025         Week 15 Year to date  Local authority    E92000001
#> 4851        2025         Week 15 Year to date  Local authority    E92000001
#> 4852        2025         Week 15 Year to date  Local authority    E92000001
#> 4853        2025         Week 15 Year to date  Local authority    E92000001
#> 4854        2025         Week 15 Year to date  Local authority    E92000001
#> 4855        2025         Week 15 Year to date  Local authority    E92000001
#> 4856        2025         Week 15 Year to date  Local authority    E92000001
#> 4857        2025         Week 15 Year to date  Local authority    E92000001
#> 4858        2025         Week 15 Year to date  Local authority    E92000001
#> 4859        2025         Week 15 Year to date  Local authority    E92000001
#> 4860        2025         Week 15 Year to date  Local authority    E92000001
#> 4861        2025         Week 15 Year to date  Local authority    E92000001
#> 4862        2025         Week 15 Year to date  Local authority    E92000001
#> 4863        2025         Week 15 Year to date  Local authority    E92000001
#> 4864        2025         Week 15 Year to date  Local authority    E92000001
#> 4865        2025         Week 15 Year to date  Local authority    E92000001
#> 4866        2025         Week 15 Year to date  Local authority    E92000001
#> 4867        2025         Week 15 Year to date  Local authority    E92000001
#> 4868        2025         Week 15 Year to date  Local authority    E92000001
#> 4869        2025         Week 15 Year to date  Local authority    E92000001
#> 4870        2025         Week 15 Year to date  Local authority    E92000001
#> 4871        2025         Week 15 Year to date  Local authority    E92000001
#> 4872        2025         Week 15 Year to date  Local authority    E92000001
#> 4873        2025         Week 15 Year to date         Regional    E92000001
#> 4874        2025         Week 15 Year to date         Regional    E92000001
#> 4875        2025         Week 15 Year to date         Regional    E92000001
#> 4876        2025         Week 15 Year to date         Regional    E92000001
#> 4877        2025         Week 15 Year to date  Local authority    E92000001
#> 4878        2025         Week 15 Year to date  Local authority    E92000001
#> 4879        2025         Week 15 Year to date  Local authority    E92000001
#> 4880        2025         Week 15 Year to date  Local authority    E92000001
#> 4881        2025         Week 15 Year to date  Local authority    E92000001
#> 4882        2025         Week 15 Year to date  Local authority    E92000001
#> 4883        2025         Week 15 Year to date  Local authority    E92000001
#> 4884        2025         Week 15 Year to date  Local authority    E92000001
#> 4885        2025         Week 15 Year to date  Local authority    E92000001
#> 4886        2025         Week 15 Year to date  Local authority    E92000001
#> 4887        2025         Week 15 Year to date  Local authority    E92000001
#> 4888        2025         Week 15 Year to date  Local authority    E92000001
#> 4889        2025         Week 15 Year to date  Local authority    E92000001
#> 4890        2025         Week 15 Year to date  Local authority    E92000001
#> 4891        2025         Week 15 Year to date  Local authority    E92000001
#> 4892        2025         Week 15 Year to date  Local authority    E92000001
#> 4893        2025         Week 15 Year to date  Local authority    E92000001
#> 4894        2025         Week 15 Year to date  Local authority    E92000001
#> 4895        2025         Week 15 Year to date  Local authority    E92000001
#> 4896        2025         Week 15 Year to date  Local authority    E92000001
#> 4897        2025         Week 15 Year to date  Local authority    E92000001
#> 4898        2025         Week 15 Year to date  Local authority    E92000001
#> 4899        2025         Week 15 Year to date  Local authority    E92000001
#> 4900        2025         Week 15 Year to date  Local authority    E92000001
#> 4901        2025         Week 15 Year to date  Local authority    E92000001
#> 4902        2025         Week 15 Year to date  Local authority    E92000001
#> 4903        2025         Week 15 Year to date  Local authority    E92000001
#> 4904        2025         Week 15 Year to date  Local authority    E92000001
#> 4905        2025         Week 15 Year to date  Local authority    E92000001
#> 4906        2025         Week 15 Year to date  Local authority    E92000001
#> 4907        2025         Week 15 Year to date  Local authority    E92000001
#> 4908        2025         Week 15 Year to date  Local authority    E92000001
#> 4909        2025         Week 15 Year to date  Local authority    E92000001
#> 4910        2025         Week 15 Year to date  Local authority    E92000001
#> 4911        2025         Week 15 Year to date  Local authority    E92000001
#> 4912        2025         Week 15 Year to date  Local authority    E92000001
#> 4913        2025         Week 15 Year to date  Local authority    E92000001
#> 4914        2025         Week 15 Year to date  Local authority    E92000001
#> 4915        2025         Week 15 Year to date  Local authority    E92000001
#> 4916        2025         Week 15 Year to date  Local authority    E92000001
#> 4917        2025         Week 15 Year to date  Local authority    E92000001
#> 4918        2025         Week 15 Year to date  Local authority    E92000001
#> 4919        2025         Week 15 Year to date  Local authority    E92000001
#> 4920        2025         Week 15 Year to date  Local authority    E92000001
#> 4921        2025         Week 15 Year to date  Local authority    E92000001
#> 4922        2025         Week 15 Year to date         Regional    E92000001
#> 4923        2025         Week 15 Year to date         Regional    E92000001
#> 4924        2025         Week 15 Year to date         Regional    E92000001
#> 4925        2025         Week 15 Year to date         Regional    E92000001
#> 4926        2025         Week 15 Year to date  Local authority    E92000001
#> 4927        2025         Week 15 Year to date  Local authority    E92000001
#> 4928        2025         Week 15 Year to date  Local authority    E92000001
#> 4929        2025         Week 15 Year to date  Local authority    E92000001
#> 4930        2025         Week 15 Year to date  Local authority    E92000001
#> 4931        2025         Week 15 Year to date  Local authority    E92000001
#> 4932        2025         Week 15 Year to date  Local authority    E92000001
#> 4933        2025         Week 15 Year to date  Local authority    E92000001
#> 4934        2025         Week 15 Year to date  Local authority    E92000001
#> 4935        2025         Week 15 Year to date  Local authority    E92000001
#> 4936        2025         Week 15 Year to date  Local authority    E92000001
#> 4937        2025         Week 15 Year to date  Local authority    E92000001
#> 4938        2025         Week 15 Year to date  Local authority    E92000001
#> 4939        2025         Week 15 Year to date  Local authority    E92000001
#> 4940        2025         Week 15 Year to date  Local authority    E92000001
#> 4941        2025         Week 15 Year to date  Local authority    E92000001
#> 4942        2025         Week 15 Year to date  Local authority    E92000001
#> 4943        2025         Week 15 Year to date  Local authority    E92000001
#> 4944        2025         Week 15 Year to date  Local authority    E92000001
#> 4945        2025         Week 15 Year to date  Local authority    E92000001
#> 4946        2025         Week 15 Year to date  Local authority    E92000001
#> 4947        2025         Week 15 Year to date  Local authority    E92000001
#> 4948        2025         Week 15 Year to date  Local authority    E92000001
#> 4949        2025         Week 15 Year to date  Local authority    E92000001
#> 4950        2025         Week 15 Year to date  Local authority    E92000001
#> 4951        2025         Week 15 Year to date  Local authority    E92000001
#> 4952        2025         Week 15 Year to date  Local authority    E92000001
#> 4953        2025         Week 15 Year to date  Local authority    E92000001
#> 4954        2025         Week 15 Year to date  Local authority    E92000001
#> 4955        2025         Week 15 Year to date         Regional    E92000001
#> 4956        2025         Week 15 Year to date         Regional    E92000001
#> 4957        2025         Week 15 Year to date         Regional    E92000001
#> 4958        2025         Week 15 Year to date         Regional    E92000001
#> 4959        2025         Week 15 Year to date  Local authority    E92000001
#> 4960        2025         Week 15 Year to date  Local authority    E92000001
#> 4961        2025         Week 15 Year to date  Local authority    E92000001
#> 4962        2025         Week 15 Year to date  Local authority    E92000001
#> 4963        2025         Week 15 Year to date  Local authority    E92000001
#> 4964        2025         Week 15 Year to date  Local authority    E92000001
#> 4965        2025         Week 15 Year to date  Local authority    E92000001
#> 4966        2025         Week 15 Year to date  Local authority    E92000001
#> 4967        2025         Week 15 Year to date  Local authority    E92000001
#> 4968        2025         Week 15 Year to date  Local authority    E92000001
#> 4969        2025         Week 15 Year to date  Local authority    E92000001
#> 4970        2025         Week 15 Year to date  Local authority    E92000001
#> 4971        2025         Week 15 Year to date  Local authority    E92000001
#> 4972        2025         Week 15 Year to date  Local authority    E92000001
#> 4973        2025         Week 15 Year to date  Local authority    E92000001
#> 4974        2025         Week 15 Year to date  Local authority    E92000001
#> 4975        2025         Week 15 Year to date  Local authority    E92000001
#> 4976        2025         Week 15 Year to date  Local authority    E92000001
#> 4977        2025         Week 15 Year to date  Local authority    E92000001
#> 4978        2025         Week 15 Year to date  Local authority    E92000001
#> 4979        2025         Week 15 Year to date  Local authority    E92000001
#> 4980        2025         Week 15 Year to date  Local authority    E92000001
#> 4981        2025         Week 15 Year to date  Local authority    E92000001
#> 4982        2025         Week 15 Year to date  Local authority    E92000001
#> 4983        2025         Week 15 Year to date  Local authority    E92000001
#> 4984        2025         Week 15 Year to date  Local authority    E92000001
#> 4985        2025         Week 15 Year to date  Local authority    E92000001
#> 4986        2025         Week 15 Year to date  Local authority    E92000001
#> 4987        2025         Week 15 Year to date  Local authority    E92000001
#> 4988        2025         Week 15 Year to date  Local authority    E92000001
#> 4989        2025         Week 15 Year to date  Local authority    E92000001
#> 4990        2025         Week 15 Year to date  Local authority    E92000001
#> 4991        2025         Week 15 Year to date  Local authority    E92000001
#> 4992        2025         Week 15 Year to date  Local authority    E92000001
#> 4993        2025         Week 15 Year to date  Local authority    E92000001
#> 4994        2025         Week 15 Year to date  Local authority    E92000001
#> 4995        2025         Week 15 Year to date  Local authority    E92000001
#> 4996        2025         Week 15 Year to date  Local authority    E92000001
#> 4997        2025         Week 15 Year to date  Local authority    E92000001
#> 4998        2025         Week 15 Year to date  Local authority    E92000001
#> 4999        2025         Week 15 Year to date  Local authority    E92000001
#> 5000        2025         Week 15 Year to date  Local authority    E92000001
#> 5001        2025         Week 15 Year to date         Regional    E92000001
#> 5002        2025         Week 15 Year to date         Regional    E92000001
#> 5003        2025         Week 15 Year to date         Regional    E92000001
#> 5004        2025         Week 15 Year to date         Regional    E92000001
#> 5005        2025         Week 15 Year to date  Local authority    E92000001
#> 5006        2025         Week 15 Year to date  Local authority    E92000001
#> 5007        2025         Week 15 Year to date  Local authority    E92000001
#> 5008        2025         Week 15 Year to date  Local authority    E92000001
#> 5009        2025         Week 15 Year to date  Local authority    E92000001
#> 5010        2025         Week 15 Year to date  Local authority    E92000001
#> 5011        2025         Week 15 Year to date  Local authority    E92000001
#> 5012        2025         Week 15 Year to date  Local authority    E92000001
#> 5013        2025         Week 15 Year to date  Local authority    E92000001
#> 5014        2025         Week 15 Year to date  Local authority    E92000001
#> 5015        2025         Week 15 Year to date  Local authority    E92000001
#> 5016        2025         Week 15 Year to date  Local authority    E92000001
#> 5017        2025         Week 15 Year to date  Local authority    E92000001
#> 5018        2025         Week 15 Year to date  Local authority    E92000001
#> 5019        2025         Week 15 Year to date  Local authority    E92000001
#> 5020        2025         Week 15 Year to date  Local authority    E92000001
#> 5021        2025         Week 15 Year to date  Local authority    E92000001
#> 5022        2025         Week 15 Year to date  Local authority    E92000001
#> 5023        2025         Week 15 Year to date  Local authority    E92000001
#> 5024        2025         Week 15 Year to date  Local authority    E92000001
#> 5025        2025         Week 15 Year to date  Local authority    E92000001
#> 5026        2025         Week 15 Year to date  Local authority    E92000001
#> 5027        2025         Week 15 Year to date  Local authority    E92000001
#> 5028        2025         Week 15 Year to date  Local authority    E92000001
#> 5029        2025         Week 15 Year to date  Local authority    E92000001
#> 5030        2025         Week 15 Year to date  Local authority    E92000001
#> 5031        2025         Week 15 Year to date  Local authority    E92000001
#> 5032        2025         Week 15 Year to date  Local authority    E92000001
#> 5033        2025         Week 15 Year to date  Local authority    E92000001
#> 5034        2025         Week 15 Year to date  Local authority    E92000001
#> 5035        2025         Week 15 Year to date  Local authority    E92000001
#> 5036        2025         Week 15 Year to date  Local authority    E92000001
#> 5037        2025         Week 15 Year to date  Local authority    E92000001
#> 5038        2025         Week 15 Year to date         Regional    E92000001
#> 5039        2025         Week 15 Year to date         Regional    E92000001
#> 5040        2025         Week 15 Year to date         Regional    E92000001
#> 5041        2025         Week 15 Year to date         Regional    E92000001
#> 5042        2025         Week 15 Year to date  Local authority    E92000001
#> 5043        2025         Week 15 Year to date  Local authority    E92000001
#> 5044        2025         Week 15 Year to date  Local authority    E92000001
#> 5045        2025         Week 15 Year to date  Local authority    E92000001
#> 5046        2025         Week 15 Year to date  Local authority    E92000001
#> 5047        2025         Week 15 Year to date  Local authority    E92000001
#> 5048        2025         Week 15 Year to date  Local authority    E92000001
#> 5049        2025         Week 15 Year to date  Local authority    E92000001
#> 5050        2025         Week 15 Year to date  Local authority    E92000001
#> 5051        2025         Week 15 Year to date  Local authority    E92000001
#> 5052        2025         Week 15 Year to date  Local authority    E92000001
#> 5053        2025         Week 15 Year to date  Local authority    E92000001
#> 5054        2025         Week 15 Year to date  Local authority    E92000001
#> 5055        2025         Week 15 Year to date  Local authority    E92000001
#> 5056        2025         Week 15 Year to date  Local authority    E92000001
#> 5057        2025         Week 15 Year to date  Local authority    E92000001
#> 5058        2025         Week 15 Year to date  Local authority    E92000001
#> 5059        2025         Week 15 Year to date  Local authority    E92000001
#> 5060        2025         Week 15 Year to date  Local authority    E92000001
#> 5061        2025         Week 15 Year to date  Local authority    E92000001
#> 5062        2025         Week 15 Year to date  Local authority    E92000001
#> 5063        2025         Week 15 Year to date  Local authority    E92000001
#> 5064        2025         Week 15 Year to date  Local authority    E92000001
#> 5065        2025         Week 15 Year to date  Local authority    E92000001
#> 5066        2025         Week 15 Year to date  Local authority    E92000001
#> 5067        2025         Week 15 Year to date  Local authority    E92000001
#> 5068        2025         Week 15 Year to date  Local authority    E92000001
#> 5069        2025         Week 15 Year to date  Local authority    E92000001
#> 5070        2025         Week 15 Year to date  Local authority    E92000001
#> 5071        2025         Week 15 Year to date  Local authority    E92000001
#> 5072        2025         Week 15 Year to date  Local authority    E92000001
#> 5073        2025         Week 15 Year to date  Local authority    E92000001
#> 5074        2025         Week 15 Year to date  Local authority    E92000001
#> 5075        2025         Week 15 Year to date  Local authority    E92000001
#> 5076        2025         Week 15 Year to date  Local authority    E92000001
#> 5077        2025         Week 15 Year to date  Local authority    E92000001
#> 5078        2025         Week 15 Year to date  Local authority    E92000001
#> 5079        2025         Week 15 Year to date  Local authority    E92000001
#> 5080        2025         Week 15 Year to date  Local authority    E92000001
#> 5081        2025         Week 15 Year to date  Local authority    E92000001
#> 5082        2025         Week 15 Year to date  Local authority    E92000001
#> 5083        2025         Week 15 Year to date  Local authority    E92000001
#> 5084        2025         Week 15 Year to date  Local authority    E92000001
#> 5085        2025         Week 15 Year to date  Local authority    E92000001
#> 5086        2025         Week 15 Year to date  Local authority    E92000001
#> 5087        2025         Week 15 Year to date  Local authority    E92000001
#> 5088        2025         Week 15 Year to date  Local authority    E92000001
#> 5089        2025         Week 15 Year to date  Local authority    E92000001
#> 5090        2025         Week 15 Year to date  Local authority    E92000001
#> 5091        2025         Week 15 Year to date  Local authority    E92000001
#> 5092        2025         Week 15 Year to date  Local authority    E92000001
#> 5093        2025         Week 15 Year to date  Local authority    E92000001
#> 5094        2025         Week 15 Year to date  Local authority    E92000001
#> 5095        2025         Week 15 Year to date  Local authority    E92000001
#> 5096        2025         Week 15 Year to date  Local authority    E92000001
#> 5097        2025         Week 15 Year to date  Local authority    E92000001
#> 5098        2025         Week 15 Year to date  Local authority    E92000001
#> 5099        2025         Week 15 Year to date  Local authority    E92000001
#> 5100        2025         Week 15 Year to date  Local authority    E92000001
#> 5101        2025         Week 15 Year to date  Local authority    E92000001
#> 5102        2025         Week 15 Year to date  Local authority    E92000001
#> 5103        2025         Week 15 Year to date  Local authority    E92000001
#> 5104        2025         Week 15 Year to date  Local authority    E92000001
#> 5105        2025         Week 15 Year to date  Local authority    E92000001
#> 5106        2025         Week 15 Year to date  Local authority    E92000001
#> 5107        2025         Week 15 Year to date  Local authority    E92000001
#> 5108        2025         Week 15 Year to date  Local authority    E92000001
#> 5109        2025         Week 15 Year to date  Local authority    E92000001
#> 5110        2025         Week 15 Year to date  Local authority    E92000001
#> 5111        2025         Week 15 Year to date  Local authority    E92000001
#> 5112        2025         Week 15 Year to date  Local authority    E92000001
#> 5113        2025         Week 15 Year to date  Local authority    E92000001
#> 5114        2025         Week 15 Year to date  Local authority    E92000001
#> 5115        2025         Week 15 Year to date  Local authority    E92000001
#> 5116        2025         Week 15 Year to date  Local authority    E92000001
#> 5117        2025         Week 15 Year to date  Local authority    E92000001
#> 5118        2025         Week 15 Year to date  Local authority    E92000001
#> 5119        2025         Week 15 Year to date  Local authority    E92000001
#> 5120        2025         Week 15 Year to date  Local authority    E92000001
#> 5121        2025         Week 15 Year to date  Local authority    E92000001
#> 5122        2025         Week 15 Year to date  Local authority    E92000001
#> 5123        2025         Week 15 Year to date  Local authority    E92000001
#> 5124        2025         Week 15 Year to date  Local authority    E92000001
#> 5125        2025         Week 15 Year to date  Local authority    E92000001
#> 5126        2025         Week 15 Year to date  Local authority    E92000001
#> 5127        2025         Week 15 Year to date  Local authority    E92000001
#> 5128        2025         Week 15 Year to date  Local authority    E92000001
#> 5129        2025         Week 15 Year to date  Local authority    E92000001
#> 5130        2025         Week 15 Year to date  Local authority    E92000001
#> 5131        2025         Week 15 Year to date  Local authority    E92000001
#> 5132        2025         Week 15 Year to date  Local authority    E92000001
#> 5133        2025         Week 15 Year to date  Local authority    E92000001
#> 5134        2025         Week 15 Year to date  Local authority    E92000001
#> 5135        2025         Week 15 Year to date  Local authority    E92000001
#> 5136        2025         Week 15 Year to date  Local authority    E92000001
#> 5137        2025         Week 15 Year to date  Local authority    E92000001
#> 5138        2025         Week 15 Year to date  Local authority    E92000001
#> 5139        2025         Week 15 Year to date         Regional    E92000001
#> 5140        2025         Week 15 Year to date         Regional    E92000001
#> 5141        2025         Week 15 Year to date         Regional    E92000001
#> 5142        2025         Week 15 Year to date         Regional    E92000001
#> 5143        2025         Week 15 Year to date  Local authority    E92000001
#> 5144        2025         Week 15 Year to date  Local authority    E92000001
#> 5145        2025         Week 15 Year to date  Local authority    E92000001
#> 5146        2025         Week 15 Year to date  Local authority    E92000001
#> 5147        2025         Week 15 Year to date  Local authority    E92000001
#> 5148        2025         Week 15 Year to date  Local authority    E92000001
#> 5149        2025         Week 15 Year to date  Local authority    E92000001
#> 5150        2025         Week 15 Year to date  Local authority    E92000001
#> 5151        2025         Week 15 Year to date  Local authority    E92000001
#> 5152        2025         Week 15 Year to date  Local authority    E92000001
#> 5153        2025         Week 15 Year to date  Local authority    E92000001
#> 5154        2025         Week 15 Year to date  Local authority    E92000001
#> 5155        2025         Week 15 Year to date  Local authority    E92000001
#> 5156        2025         Week 15 Year to date  Local authority    E92000001
#> 5157        2025         Week 15 Year to date  Local authority    E92000001
#> 5158        2025         Week 15 Year to date  Local authority    E92000001
#> 5159        2025         Week 15 Year to date  Local authority    E92000001
#> 5160        2025         Week 15 Year to date  Local authority    E92000001
#> 5161        2025         Week 15 Year to date  Local authority    E92000001
#> 5162        2025         Week 15 Year to date  Local authority    E92000001
#> 5163        2025         Week 15 Year to date  Local authority    E92000001
#> 5164        2025         Week 15 Year to date  Local authority    E92000001
#> 5165        2025         Week 15 Year to date  Local authority    E92000001
#> 5166        2025         Week 15 Year to date  Local authority    E92000001
#> 5167        2025         Week 15 Year to date  Local authority    E92000001
#> 5168        2025         Week 15 Year to date  Local authority    E92000001
#> 5169        2025         Week 15 Year to date  Local authority    E92000001
#> 5170        2025         Week 15 Year to date  Local authority    E92000001
#> 5171        2025         Week 15 Year to date  Local authority    E92000001
#> 5172        2025         Week 15 Year to date  Local authority    E92000001
#> 5173        2025         Week 15 Year to date  Local authority    E92000001
#> 5174        2025         Week 15 Year to date  Local authority    E92000001
#> 5175        2025         Week 15 Year to date  Local authority    E92000001
#> 5176        2025         Week 15 Year to date  Local authority    E92000001
#> 5177        2025         Week 15 Year to date  Local authority    E92000001
#> 5178        2025         Week 15 Year to date  Local authority    E92000001
#> 5179        2025         Week 15 Year to date  Local authority    E92000001
#> 5180        2025         Week 15 Year to date  Local authority    E92000001
#> 5181        2025         Week 15 Year to date  Local authority    E92000001
#> 5182        2025         Week 15 Year to date  Local authority    E92000001
#> 5183        2025         Week 15 Year to date  Local authority    E92000001
#> 5184        2025         Week 15 Year to date  Local authority    E92000001
#> 5185        2025         Week 15 Year to date  Local authority    E92000001
#> 5186        2025         Week 15 Year to date  Local authority    E92000001
#> 5187        2025         Week 15 Year to date  Local authority    E92000001
#> 5188        2025         Week 15 Year to date  Local authority    E92000001
#> 5189        2025         Week 15 Year to date  Local authority    E92000001
#> 5190        2025         Week 15 Year to date  Local authority    E92000001
#> 5191        2025         Week 15 Year to date  Local authority    E92000001
#> 5192        2025         Week 15 Year to date  Local authority    E92000001
#> 5193        2025         Week 15 Year to date  Local authority    E92000001
#> 5194        2025         Week 15 Year to date  Local authority    E92000001
#> 5195        2025         Week 15 Year to date  Local authority    E92000001
#> 5196        2025         Week 15 Year to date  Local authority    E92000001
#> 5197        2025         Week 15 Year to date  Local authority    E92000001
#> 5198        2025         Week 15 Year to date  Local authority    E92000001
#> 5199        2025         Week 15 Year to date  Local authority    E92000001
#> 5200        2025         Week 15 Year to date         Regional    E92000001
#> 5201        2025         Week 15 Year to date         Regional    E92000001
#> 5202        2025         Week 15 Year to date         Regional    E92000001
#> 5203        2025         Week 15 Year to date         Regional    E92000001
#> 5204        2025         Week 15 Year to date  Local authority    E92000001
#> 5205        2025         Week 15 Year to date  Local authority    E92000001
#> 5206        2025         Week 15 Year to date  Local authority    E92000001
#> 5207        2025         Week 15 Year to date  Local authority    E92000001
#> 5208        2025         Week 15 Year to date  Local authority    E92000001
#> 5209        2025         Week 15 Year to date  Local authority    E92000001
#> 5210        2025         Week 15 Year to date  Local authority    E92000001
#> 5211        2025         Week 15 Year to date  Local authority    E92000001
#> 5212        2025         Week 15 Year to date  Local authority    E92000001
#> 5213        2025         Week 15 Year to date  Local authority    E92000001
#> 5214        2025         Week 15 Year to date  Local authority    E92000001
#> 5215        2025         Week 15 Year to date  Local authority    E92000001
#> 5216        2025         Week 15 Year to date  Local authority    E92000001
#> 5217        2025         Week 15 Year to date  Local authority    E92000001
#> 5218        2025         Week 15 Year to date  Local authority    E92000001
#> 5219        2025         Week 15 Year to date  Local authority    E92000001
#> 5220        2025         Week 15 Year to date  Local authority    E92000001
#> 5221        2025         Week 15 Year to date  Local authority    E92000001
#> 5222        2025         Week 15 Year to date  Local authority    E92000001
#> 5223        2025         Week 15 Year to date  Local authority    E92000001
#> 5224        2025         Week 15 Year to date  Local authority    E92000001
#> 5225        2025         Week 15 Year to date  Local authority    E92000001
#> 5226        2025         Week 15 Year to date  Local authority    E92000001
#> 5227        2025         Week 15 Year to date  Local authority    E92000001
#> 5228        2025         Week 15 Year to date  Local authority    E92000001
#> 5229        2025         Week 15 Year to date  Local authority    E92000001
#> 5230        2025         Week 15 Year to date  Local authority    E92000001
#> 5231        2025         Week 15 Year to date  Local authority    E92000001
#> 5232        2025         Week 15 Year to date  Local authority    E92000001
#> 5233        2025         Week 15 Year to date  Local authority    E92000001
#> 5234        2025         Week 15 Year to date  Local authority    E92000001
#> 5235        2025         Week 15 Year to date  Local authority    E92000001
#> 5236        2025         Week 15 Year to date  Local authority    E92000001
#> 5237        2025         Week 15 Year to date  Local authority    E92000001
#> 5238        2025         Week 15 Year to date  Local authority    E92000001
#> 5239        2025         Week 15 Year to date  Local authority    E92000001
#> 5240        2025         Week 15 Year to date  Local authority    E92000001
#> 5241        2025         Week 15 Year to date  Local authority    E92000001
#> 5242        2025         Week 15 Year to date  Local authority    E92000001
#> 5243        2025         Week 15 Year to date  Local authority    E92000001
#> 5244        2025         Week 15 Year to date  Local authority    E92000001
#> 5245        2025         Week 15 Year to date  Local authority    E92000001
#> 5246        2025         Week 15 Year to date  Local authority    E92000001
#> 5247        2025         Week 14 Year to date         National    E92000001
#> 5248        2025         Week 14 Year to date         National    E92000001
#> 5249        2025         Week 14 Year to date         National    E92000001
#> 5250        2025         Week 14 Year to date         National    E92000001
#> 5251        2025         Week 14 Year to date         Regional    E92000001
#> 5252        2025         Week 14 Year to date         Regional    E92000001
#> 5253        2025         Week 14 Year to date         Regional    E92000001
#> 5254        2025         Week 14 Year to date         Regional    E92000001
#> 5255        2025         Week 14 Year to date  Local authority    E92000001
#> 5256        2025         Week 14 Year to date  Local authority    E92000001
#> 5257        2025         Week 14 Year to date  Local authority    E92000001
#> 5258        2025         Week 14 Year to date  Local authority    E92000001
#> 5259        2025         Week 14 Year to date  Local authority    E92000001
#> 5260        2025         Week 14 Year to date  Local authority    E92000001
#> 5261        2025         Week 14 Year to date  Local authority    E92000001
#> 5262        2025         Week 14 Year to date  Local authority    E92000001
#> 5263        2025         Week 14 Year to date  Local authority    E92000001
#> 5264        2025         Week 14 Year to date  Local authority    E92000001
#> 5265        2025         Week 14 Year to date  Local authority    E92000001
#> 5266        2025         Week 14 Year to date  Local authority    E92000001
#> 5267        2025         Week 14 Year to date  Local authority    E92000001
#> 5268        2025         Week 14 Year to date  Local authority    E92000001
#> 5269        2025         Week 14 Year to date  Local authority    E92000001
#> 5270        2025         Week 14 Year to date  Local authority    E92000001
#> 5271        2025         Week 14 Year to date  Local authority    E92000001
#> 5272        2025         Week 14 Year to date  Local authority    E92000001
#> 5273        2025         Week 14 Year to date  Local authority    E92000001
#> 5274        2025         Week 14 Year to date  Local authority    E92000001
#> 5275        2025         Week 14 Year to date  Local authority    E92000001
#> 5276        2025         Week 14 Year to date  Local authority    E92000001
#> 5277        2025         Week 14 Year to date  Local authority    E92000001
#> 5278        2025         Week 14 Year to date  Local authority    E92000001
#> 5279        2025         Week 14 Year to date  Local authority    E92000001
#> 5280        2025         Week 14 Year to date  Local authority    E92000001
#> 5281        2025         Week 14 Year to date  Local authority    E92000001
#> 5282        2025         Week 14 Year to date  Local authority    E92000001
#> 5283        2025         Week 14 Year to date  Local authority    E92000001
#> 5284        2025         Week 14 Year to date  Local authority    E92000001
#> 5285        2025         Week 14 Year to date  Local authority    E92000001
#> 5286        2025         Week 14 Year to date  Local authority    E92000001
#> 5287        2025         Week 14 Year to date  Local authority    E92000001
#> 5288        2025         Week 14 Year to date  Local authority    E92000001
#> 5289        2025         Week 14 Year to date  Local authority    E92000001
#> 5290        2025         Week 14 Year to date  Local authority    E92000001
#> 5291        2025         Week 14 Year to date         Regional    E92000001
#> 5292        2025         Week 14 Year to date         Regional    E92000001
#> 5293        2025         Week 14 Year to date         Regional    E92000001
#> 5294        2025         Week 14 Year to date         Regional    E92000001
#> 5295        2025         Week 14 Year to date  Local authority    E92000001
#> 5296        2025         Week 14 Year to date  Local authority    E92000001
#> 5297        2025         Week 14 Year to date  Local authority    E92000001
#> 5298        2025         Week 14 Year to date  Local authority    E92000001
#> 5299        2025         Week 14 Year to date  Local authority    E92000001
#> 5300        2025         Week 14 Year to date  Local authority    E92000001
#> 5301        2025         Week 14 Year to date  Local authority    E92000001
#> 5302        2025         Week 14 Year to date  Local authority    E92000001
#> 5303        2025         Week 14 Year to date  Local authority    E92000001
#> 5304        2025         Week 14 Year to date  Local authority    E92000001
#> 5305        2025         Week 14 Year to date  Local authority    E92000001
#> 5306        2025         Week 14 Year to date  Local authority    E92000001
#> 5307        2025         Week 14 Year to date  Local authority    E92000001
#> 5308        2025         Week 14 Year to date  Local authority    E92000001
#> 5309        2025         Week 14 Year to date  Local authority    E92000001
#> 5310        2025         Week 14 Year to date  Local authority    E92000001
#> 5311        2025         Week 14 Year to date  Local authority    E92000001
#> 5312        2025         Week 14 Year to date  Local authority    E92000001
#> 5313        2025         Week 14 Year to date  Local authority    E92000001
#> 5314        2025         Week 14 Year to date  Local authority    E92000001
#> 5315        2025         Week 14 Year to date  Local authority    E92000001
#> 5316        2025         Week 14 Year to date  Local authority    E92000001
#> 5317        2025         Week 14 Year to date  Local authority    E92000001
#> 5318        2025         Week 14 Year to date  Local authority    E92000001
#> 5319        2025         Week 14 Year to date  Local authority    E92000001
#> 5320        2025         Week 14 Year to date  Local authority    E92000001
#> 5321        2025         Week 14 Year to date  Local authority    E92000001
#> 5322        2025         Week 14 Year to date  Local authority    E92000001
#> 5323        2025         Week 14 Year to date  Local authority    E92000001
#> 5324        2025         Week 14 Year to date  Local authority    E92000001
#> 5325        2025         Week 14 Year to date  Local authority    E92000001
#> 5326        2025         Week 14 Year to date  Local authority    E92000001
#> 5327        2025         Week 14 Year to date  Local authority    E92000001
#> 5328        2025         Week 14 Year to date  Local authority    E92000001
#> 5329        2025         Week 14 Year to date  Local authority    E92000001
#> 5330        2025         Week 14 Year to date  Local authority    E92000001
#> 5331        2025         Week 14 Year to date  Local authority    E92000001
#> 5332        2025         Week 14 Year to date  Local authority    E92000001
#> 5333        2025         Week 14 Year to date  Local authority    E92000001
#> 5334        2025         Week 14 Year to date  Local authority    E92000001
#> 5335        2025         Week 14 Year to date  Local authority    E92000001
#> 5336        2025         Week 14 Year to date  Local authority    E92000001
#> 5337        2025         Week 14 Year to date  Local authority    E92000001
#> 5338        2025         Week 14 Year to date  Local authority    E92000001
#> 5339        2025         Week 14 Year to date  Local authority    E92000001
#> 5340        2025         Week 14 Year to date  Local authority    E92000001
#> 5341        2025         Week 14 Year to date  Local authority    E92000001
#> 5342        2025         Week 14 Year to date  Local authority    E92000001
#> 5343        2025         Week 14 Year to date  Local authority    E92000001
#> 5344        2025         Week 14 Year to date  Local authority    E92000001
#> 5345        2025         Week 14 Year to date  Local authority    E92000001
#> 5346        2025         Week 14 Year to date  Local authority    E92000001
#> 5347        2025         Week 14 Year to date  Local authority    E92000001
#> 5348        2025         Week 14 Year to date  Local authority    E92000001
#> 5349        2025         Week 14 Year to date  Local authority    E92000001
#> 5350        2025         Week 14 Year to date  Local authority    E92000001
#> 5351        2025         Week 14 Year to date  Local authority    E92000001
#> 5352        2025         Week 14 Year to date  Local authority    E92000001
#> 5353        2025         Week 14 Year to date  Local authority    E92000001
#> 5354        2025         Week 14 Year to date  Local authority    E92000001
#> 5355        2025         Week 14 Year to date  Local authority    E92000001
#> 5356        2025         Week 14 Year to date  Local authority    E92000001
#> 5357        2025         Week 14 Year to date  Local authority    E92000001
#> 5358        2025         Week 14 Year to date  Local authority    E92000001
#> 5359        2025         Week 14 Year to date  Local authority    E92000001
#> 5360        2025         Week 14 Year to date  Local authority    E92000001
#> 5361        2025         Week 14 Year to date  Local authority    E92000001
#> 5362        2025         Week 14 Year to date  Local authority    E92000001
#> 5363        2025         Week 14 Year to date  Local authority    E92000001
#> 5364        2025         Week 14 Year to date  Local authority    E92000001
#> 5365        2025         Week 14 Year to date  Local authority    E92000001
#> 5366        2025         Week 14 Year to date  Local authority    E92000001
#> 5367        2025         Week 14 Year to date         Regional    E92000001
#> 5368        2025         Week 14 Year to date         Regional    E92000001
#> 5369        2025         Week 14 Year to date         Regional    E92000001
#> 5370        2025         Week 14 Year to date         Regional    E92000001
#> 5371        2025         Week 14 Year to date  Local authority    E92000001
#> 5372        2025         Week 14 Year to date  Local authority    E92000001
#> 5373        2025         Week 14 Year to date  Local authority    E92000001
#> 5374        2025         Week 14 Year to date  Local authority    E92000001
#> 5375        2025         Week 14 Year to date  Local authority    E92000001
#> 5376        2025         Week 14 Year to date  Local authority    E92000001
#> 5377        2025         Week 14 Year to date  Local authority    E92000001
#> 5378        2025         Week 14 Year to date  Local authority    E92000001
#> 5379        2025         Week 14 Year to date  Local authority    E92000001
#> 5380        2025         Week 14 Year to date  Local authority    E92000001
#> 5381        2025         Week 14 Year to date  Local authority    E92000001
#> 5382        2025         Week 14 Year to date  Local authority    E92000001
#> 5383        2025         Week 14 Year to date  Local authority    E92000001
#> 5384        2025         Week 14 Year to date  Local authority    E92000001
#> 5385        2025         Week 14 Year to date  Local authority    E92000001
#> 5386        2025         Week 14 Year to date  Local authority    E92000001
#> 5387        2025         Week 14 Year to date  Local authority    E92000001
#> 5388        2025         Week 14 Year to date  Local authority    E92000001
#> 5389        2025         Week 14 Year to date  Local authority    E92000001
#> 5390        2025         Week 14 Year to date  Local authority    E92000001
#> 5391        2025         Week 14 Year to date  Local authority    E92000001
#> 5392        2025         Week 14 Year to date  Local authority    E92000001
#> 5393        2025         Week 14 Year to date  Local authority    E92000001
#> 5394        2025         Week 14 Year to date  Local authority    E92000001
#> 5395        2025         Week 14 Year to date  Local authority    E92000001
#> 5396        2025         Week 14 Year to date  Local authority    E92000001
#> 5397        2025         Week 14 Year to date  Local authority    E92000001
#> 5398        2025         Week 14 Year to date  Local authority    E92000001
#> 5399        2025         Week 14 Year to date  Local authority    E92000001
#> 5400        2025         Week 14 Year to date  Local authority    E92000001
#> 5401        2025         Week 14 Year to date  Local authority    E92000001
#> 5402        2025         Week 14 Year to date  Local authority    E92000001
#> 5403        2025         Week 14 Year to date  Local authority    E92000001
#> 5404        2025         Week 14 Year to date  Local authority    E92000001
#> 5405        2025         Week 14 Year to date  Local authority    E92000001
#> 5406        2025         Week 14 Year to date  Local authority    E92000001
#> 5407        2025         Week 14 Year to date  Local authority    E92000001
#> 5408        2025         Week 14 Year to date  Local authority    E92000001
#> 5409        2025         Week 14 Year to date  Local authority    E92000001
#> 5410        2025         Week 14 Year to date  Local authority    E92000001
#> 5411        2025         Week 14 Year to date  Local authority    E92000001
#> 5412        2025         Week 14 Year to date  Local authority    E92000001
#> 5413        2025         Week 14 Year to date  Local authority    E92000001
#> 5414        2025         Week 14 Year to date  Local authority    E92000001
#> 5415        2025         Week 14 Year to date  Local authority    E92000001
#> 5416        2025         Week 14 Year to date         Regional    E92000001
#> 5417        2025         Week 14 Year to date         Regional    E92000001
#> 5418        2025         Week 14 Year to date         Regional    E92000001
#> 5419        2025         Week 14 Year to date         Regional    E92000001
#> 5420        2025         Week 14 Year to date  Local authority    E92000001
#> 5421        2025         Week 14 Year to date  Local authority    E92000001
#> 5422        2025         Week 14 Year to date  Local authority    E92000001
#> 5423        2025         Week 14 Year to date  Local authority    E92000001
#> 5424        2025         Week 14 Year to date  Local authority    E92000001
#> 5425        2025         Week 14 Year to date  Local authority    E92000001
#> 5426        2025         Week 14 Year to date  Local authority    E92000001
#> 5427        2025         Week 14 Year to date  Local authority    E92000001
#> 5428        2025         Week 14 Year to date  Local authority    E92000001
#> 5429        2025         Week 14 Year to date  Local authority    E92000001
#> 5430        2025         Week 14 Year to date  Local authority    E92000001
#> 5431        2025         Week 14 Year to date  Local authority    E92000001
#> 5432        2025         Week 14 Year to date  Local authority    E92000001
#> 5433        2025         Week 14 Year to date  Local authority    E92000001
#> 5434        2025         Week 14 Year to date  Local authority    E92000001
#> 5435        2025         Week 14 Year to date  Local authority    E92000001
#> 5436        2025         Week 14 Year to date  Local authority    E92000001
#> 5437        2025         Week 14 Year to date  Local authority    E92000001
#> 5438        2025         Week 14 Year to date  Local authority    E92000001
#> 5439        2025         Week 14 Year to date  Local authority    E92000001
#> 5440        2025         Week 14 Year to date  Local authority    E92000001
#> 5441        2025         Week 14 Year to date  Local authority    E92000001
#> 5442        2025         Week 14 Year to date  Local authority    E92000001
#> 5443        2025         Week 14 Year to date  Local authority    E92000001
#> 5444        2025         Week 14 Year to date  Local authority    E92000001
#> 5445        2025         Week 14 Year to date  Local authority    E92000001
#> 5446        2025         Week 14 Year to date  Local authority    E92000001
#> 5447        2025         Week 14 Year to date  Local authority    E92000001
#> 5448        2025         Week 14 Year to date  Local authority    E92000001
#> 5449        2025         Week 14 Year to date         Regional    E92000001
#> 5450        2025         Week 14 Year to date         Regional    E92000001
#> 5451        2025         Week 14 Year to date         Regional    E92000001
#> 5452        2025         Week 14 Year to date         Regional    E92000001
#> 5453        2025         Week 14 Year to date  Local authority    E92000001
#> 5454        2025         Week 14 Year to date  Local authority    E92000001
#> 5455        2025         Week 14 Year to date  Local authority    E92000001
#> 5456        2025         Week 14 Year to date  Local authority    E92000001
#> 5457        2025         Week 14 Year to date  Local authority    E92000001
#> 5458        2025         Week 14 Year to date  Local authority    E92000001
#> 5459        2025         Week 14 Year to date  Local authority    E92000001
#> 5460        2025         Week 14 Year to date  Local authority    E92000001
#> 5461        2025         Week 14 Year to date  Local authority    E92000001
#> 5462        2025         Week 14 Year to date  Local authority    E92000001
#> 5463        2025         Week 14 Year to date  Local authority    E92000001
#> 5464        2025         Week 14 Year to date  Local authority    E92000001
#> 5465        2025         Week 14 Year to date  Local authority    E92000001
#> 5466        2025         Week 14 Year to date  Local authority    E92000001
#> 5467        2025         Week 14 Year to date  Local authority    E92000001
#> 5468        2025         Week 14 Year to date  Local authority    E92000001
#> 5469        2025         Week 14 Year to date  Local authority    E92000001
#> 5470        2025         Week 14 Year to date  Local authority    E92000001
#> 5471        2025         Week 14 Year to date  Local authority    E92000001
#> 5472        2025         Week 14 Year to date  Local authority    E92000001
#> 5473        2025         Week 14 Year to date  Local authority    E92000001
#> 5474        2025         Week 14 Year to date  Local authority    E92000001
#> 5475        2025         Week 14 Year to date  Local authority    E92000001
#> 5476        2025         Week 14 Year to date  Local authority    E92000001
#> 5477        2025         Week 14 Year to date  Local authority    E92000001
#> 5478        2025         Week 14 Year to date  Local authority    E92000001
#> 5479        2025         Week 14 Year to date  Local authority    E92000001
#> 5480        2025         Week 14 Year to date  Local authority    E92000001
#> 5481        2025         Week 14 Year to date  Local authority    E92000001
#> 5482        2025         Week 14 Year to date  Local authority    E92000001
#> 5483        2025         Week 14 Year to date  Local authority    E92000001
#> 5484        2025         Week 14 Year to date  Local authority    E92000001
#> 5485        2025         Week 14 Year to date  Local authority    E92000001
#> 5486        2025         Week 14 Year to date  Local authority    E92000001
#> 5487        2025         Week 14 Year to date  Local authority    E92000001
#> 5488        2025         Week 14 Year to date  Local authority    E92000001
#> 5489        2025         Week 14 Year to date  Local authority    E92000001
#> 5490        2025         Week 14 Year to date  Local authority    E92000001
#> 5491        2025         Week 14 Year to date  Local authority    E92000001
#> 5492        2025         Week 14 Year to date  Local authority    E92000001
#> 5493        2025         Week 14 Year to date  Local authority    E92000001
#> 5494        2025         Week 14 Year to date  Local authority    E92000001
#> 5495        2025         Week 14 Year to date         Regional    E92000001
#> 5496        2025         Week 14 Year to date         Regional    E92000001
#> 5497        2025         Week 14 Year to date         Regional    E92000001
#> 5498        2025         Week 14 Year to date         Regional    E92000001
#> 5499        2025         Week 14 Year to date  Local authority    E92000001
#> 5500        2025         Week 14 Year to date  Local authority    E92000001
#> 5501        2025         Week 14 Year to date  Local authority    E92000001
#> 5502        2025         Week 14 Year to date  Local authority    E92000001
#> 5503        2025         Week 14 Year to date  Local authority    E92000001
#> 5504        2025         Week 14 Year to date  Local authority    E92000001
#> 5505        2025         Week 14 Year to date  Local authority    E92000001
#> 5506        2025         Week 14 Year to date  Local authority    E92000001
#> 5507        2025         Week 14 Year to date  Local authority    E92000001
#> 5508        2025         Week 14 Year to date  Local authority    E92000001
#> 5509        2025         Week 14 Year to date  Local authority    E92000001
#> 5510        2025         Week 14 Year to date  Local authority    E92000001
#> 5511        2025         Week 14 Year to date  Local authority    E92000001
#> 5512        2025         Week 14 Year to date  Local authority    E92000001
#> 5513        2025         Week 14 Year to date  Local authority    E92000001
#> 5514        2025         Week 14 Year to date  Local authority    E92000001
#> 5515        2025         Week 14 Year to date  Local authority    E92000001
#> 5516        2025         Week 14 Year to date  Local authority    E92000001
#> 5517        2025         Week 14 Year to date  Local authority    E92000001
#> 5518        2025         Week 14 Year to date  Local authority    E92000001
#> 5519        2025         Week 14 Year to date  Local authority    E92000001
#> 5520        2025         Week 14 Year to date  Local authority    E92000001
#> 5521        2025         Week 14 Year to date  Local authority    E92000001
#> 5522        2025         Week 14 Year to date  Local authority    E92000001
#> 5523        2025         Week 14 Year to date  Local authority    E92000001
#> 5524        2025         Week 14 Year to date  Local authority    E92000001
#> 5525        2025         Week 14 Year to date  Local authority    E92000001
#> 5526        2025         Week 14 Year to date  Local authority    E92000001
#> 5527        2025         Week 14 Year to date  Local authority    E92000001
#> 5528        2025         Week 14 Year to date  Local authority    E92000001
#> 5529        2025         Week 14 Year to date  Local authority    E92000001
#> 5530        2025         Week 14 Year to date  Local authority    E92000001
#> 5531        2025         Week 14 Year to date  Local authority    E92000001
#> 5532        2025         Week 14 Year to date         Regional    E92000001
#> 5533        2025         Week 14 Year to date         Regional    E92000001
#> 5534        2025         Week 14 Year to date         Regional    E92000001
#> 5535        2025         Week 14 Year to date         Regional    E92000001
#> 5536        2025         Week 14 Year to date  Local authority    E92000001
#> 5537        2025         Week 14 Year to date  Local authority    E92000001
#> 5538        2025         Week 14 Year to date  Local authority    E92000001
#> 5539        2025         Week 14 Year to date  Local authority    E92000001
#> 5540        2025         Week 14 Year to date  Local authority    E92000001
#> 5541        2025         Week 14 Year to date  Local authority    E92000001
#> 5542        2025         Week 14 Year to date  Local authority    E92000001
#> 5543        2025         Week 14 Year to date  Local authority    E92000001
#> 5544        2025         Week 14 Year to date  Local authority    E92000001
#> 5545        2025         Week 14 Year to date  Local authority    E92000001
#> 5546        2025         Week 14 Year to date  Local authority    E92000001
#> 5547        2025         Week 14 Year to date  Local authority    E92000001
#> 5548        2025         Week 14 Year to date  Local authority    E92000001
#> 5549        2025         Week 14 Year to date  Local authority    E92000001
#> 5550        2025         Week 14 Year to date  Local authority    E92000001
#> 5551        2025         Week 14 Year to date  Local authority    E92000001
#> 5552        2025         Week 14 Year to date  Local authority    E92000001
#> 5553        2025         Week 14 Year to date  Local authority    E92000001
#> 5554        2025         Week 14 Year to date  Local authority    E92000001
#> 5555        2025         Week 14 Year to date  Local authority    E92000001
#> 5556        2025         Week 14 Year to date  Local authority    E92000001
#> 5557        2025         Week 14 Year to date  Local authority    E92000001
#> 5558        2025         Week 14 Year to date  Local authority    E92000001
#> 5559        2025         Week 14 Year to date  Local authority    E92000001
#> 5560        2025         Week 14 Year to date  Local authority    E92000001
#> 5561        2025         Week 14 Year to date  Local authority    E92000001
#> 5562        2025         Week 14 Year to date  Local authority    E92000001
#> 5563        2025         Week 14 Year to date  Local authority    E92000001
#> 5564        2025         Week 14 Year to date  Local authority    E92000001
#> 5565        2025         Week 14 Year to date  Local authority    E92000001
#> 5566        2025         Week 14 Year to date  Local authority    E92000001
#> 5567        2025         Week 14 Year to date  Local authority    E92000001
#> 5568        2025         Week 14 Year to date  Local authority    E92000001
#> 5569        2025         Week 14 Year to date  Local authority    E92000001
#> 5570        2025         Week 14 Year to date  Local authority    E92000001
#> 5571        2025         Week 14 Year to date  Local authority    E92000001
#> 5572        2025         Week 14 Year to date  Local authority    E92000001
#> 5573        2025         Week 14 Year to date  Local authority    E92000001
#> 5574        2025         Week 14 Year to date  Local authority    E92000001
#> 5575        2025         Week 14 Year to date  Local authority    E92000001
#> 5576        2025         Week 14 Year to date  Local authority    E92000001
#> 5577        2025         Week 14 Year to date  Local authority    E92000001
#> 5578        2025         Week 14 Year to date  Local authority    E92000001
#> 5579        2025         Week 14 Year to date  Local authority    E92000001
#> 5580        2025         Week 14 Year to date  Local authority    E92000001
#> 5581        2025         Week 14 Year to date  Local authority    E92000001
#> 5582        2025         Week 14 Year to date  Local authority    E92000001
#> 5583        2025         Week 14 Year to date  Local authority    E92000001
#> 5584        2025         Week 14 Year to date  Local authority    E92000001
#> 5585        2025         Week 14 Year to date  Local authority    E92000001
#> 5586        2025         Week 14 Year to date  Local authority    E92000001
#> 5587        2025         Week 14 Year to date  Local authority    E92000001
#> 5588        2025         Week 14 Year to date  Local authority    E92000001
#> 5589        2025         Week 14 Year to date  Local authority    E92000001
#> 5590        2025         Week 14 Year to date  Local authority    E92000001
#> 5591        2025         Week 14 Year to date  Local authority    E92000001
#> 5592        2025         Week 14 Year to date  Local authority    E92000001
#> 5593        2025         Week 14 Year to date  Local authority    E92000001
#> 5594        2025         Week 14 Year to date  Local authority    E92000001
#> 5595        2025         Week 14 Year to date  Local authority    E92000001
#> 5596        2025         Week 14 Year to date  Local authority    E92000001
#> 5597        2025         Week 14 Year to date  Local authority    E92000001
#> 5598        2025         Week 14 Year to date  Local authority    E92000001
#> 5599        2025         Week 14 Year to date  Local authority    E92000001
#> 5600        2025         Week 14 Year to date  Local authority    E92000001
#> 5601        2025         Week 14 Year to date  Local authority    E92000001
#> 5602        2025         Week 14 Year to date  Local authority    E92000001
#> 5603        2025         Week 14 Year to date  Local authority    E92000001
#> 5604        2025         Week 14 Year to date  Local authority    E92000001
#> 5605        2025         Week 14 Year to date  Local authority    E92000001
#> 5606        2025         Week 14 Year to date  Local authority    E92000001
#> 5607        2025         Week 14 Year to date  Local authority    E92000001
#> 5608        2025         Week 14 Year to date  Local authority    E92000001
#> 5609        2025         Week 14 Year to date  Local authority    E92000001
#> 5610        2025         Week 14 Year to date  Local authority    E92000001
#> 5611        2025         Week 14 Year to date  Local authority    E92000001
#> 5612        2025         Week 14 Year to date  Local authority    E92000001
#> 5613        2025         Week 14 Year to date  Local authority    E92000001
#> 5614        2025         Week 14 Year to date  Local authority    E92000001
#> 5615        2025         Week 14 Year to date  Local authority    E92000001
#> 5616        2025         Week 14 Year to date  Local authority    E92000001
#> 5617        2025         Week 14 Year to date  Local authority    E92000001
#> 5618        2025         Week 14 Year to date  Local authority    E92000001
#> 5619        2025         Week 14 Year to date  Local authority    E92000001
#> 5620        2025         Week 14 Year to date  Local authority    E92000001
#> 5621        2025         Week 14 Year to date  Local authority    E92000001
#> 5622        2025         Week 14 Year to date  Local authority    E92000001
#> 5623        2025         Week 14 Year to date  Local authority    E92000001
#> 5624        2025         Week 14 Year to date  Local authority    E92000001
#> 5625        2025         Week 14 Year to date  Local authority    E92000001
#> 5626        2025         Week 14 Year to date  Local authority    E92000001
#> 5627        2025         Week 14 Year to date  Local authority    E92000001
#> 5628        2025         Week 14 Year to date  Local authority    E92000001
#> 5629        2025         Week 14 Year to date  Local authority    E92000001
#> 5630        2025         Week 14 Year to date  Local authority    E92000001
#> 5631        2025         Week 14 Year to date  Local authority    E92000001
#> 5632        2025         Week 14 Year to date  Local authority    E92000001
#> 5633        2025         Week 14 Year to date         Regional    E92000001
#> 5634        2025         Week 14 Year to date         Regional    E92000001
#> 5635        2025         Week 14 Year to date         Regional    E92000001
#> 5636        2025         Week 14 Year to date         Regional    E92000001
#> 5637        2025         Week 14 Year to date  Local authority    E92000001
#> 5638        2025         Week 14 Year to date  Local authority    E92000001
#> 5639        2025         Week 14 Year to date  Local authority    E92000001
#> 5640        2025         Week 14 Year to date  Local authority    E92000001
#> 5641        2025         Week 14 Year to date  Local authority    E92000001
#> 5642        2025         Week 14 Year to date  Local authority    E92000001
#> 5643        2025         Week 14 Year to date  Local authority    E92000001
#> 5644        2025         Week 14 Year to date  Local authority    E92000001
#> 5645        2025         Week 14 Year to date  Local authority    E92000001
#> 5646        2025         Week 14 Year to date  Local authority    E92000001
#> 5647        2025         Week 14 Year to date  Local authority    E92000001
#> 5648        2025         Week 14 Year to date  Local authority    E92000001
#> 5649        2025         Week 14 Year to date  Local authority    E92000001
#> 5650        2025         Week 14 Year to date  Local authority    E92000001
#> 5651        2025         Week 14 Year to date  Local authority    E92000001
#> 5652        2025         Week 14 Year to date  Local authority    E92000001
#> 5653        2025         Week 14 Year to date  Local authority    E92000001
#> 5654        2025         Week 14 Year to date  Local authority    E92000001
#> 5655        2025         Week 14 Year to date  Local authority    E92000001
#> 5656        2025         Week 14 Year to date  Local authority    E92000001
#> 5657        2025         Week 14 Year to date  Local authority    E92000001
#> 5658        2025         Week 14 Year to date  Local authority    E92000001
#> 5659        2025         Week 14 Year to date  Local authority    E92000001
#> 5660        2025         Week 14 Year to date  Local authority    E92000001
#> 5661        2025         Week 14 Year to date  Local authority    E92000001
#> 5662        2025         Week 14 Year to date  Local authority    E92000001
#> 5663        2025         Week 14 Year to date  Local authority    E92000001
#> 5664        2025         Week 14 Year to date  Local authority    E92000001
#> 5665        2025         Week 14 Year to date  Local authority    E92000001
#> 5666        2025         Week 14 Year to date  Local authority    E92000001
#> 5667        2025         Week 14 Year to date  Local authority    E92000001
#> 5668        2025         Week 14 Year to date  Local authority    E92000001
#> 5669        2025         Week 14 Year to date  Local authority    E92000001
#> 5670        2025         Week 14 Year to date  Local authority    E92000001
#> 5671        2025         Week 14 Year to date  Local authority    E92000001
#> 5672        2025         Week 14 Year to date  Local authority    E92000001
#> 5673        2025         Week 14 Year to date  Local authority    E92000001
#> 5674        2025         Week 14 Year to date  Local authority    E92000001
#> 5675        2025         Week 14 Year to date  Local authority    E92000001
#> 5676        2025         Week 14 Year to date  Local authority    E92000001
#> 5677        2025         Week 14 Year to date  Local authority    E92000001
#> 5678        2025         Week 14 Year to date  Local authority    E92000001
#> 5679        2025         Week 14 Year to date  Local authority    E92000001
#> 5680        2025         Week 14 Year to date  Local authority    E92000001
#> 5681        2025         Week 14 Year to date  Local authority    E92000001
#> 5682        2025         Week 14 Year to date  Local authority    E92000001
#> 5683        2025         Week 14 Year to date  Local authority    E92000001
#> 5684        2025         Week 14 Year to date  Local authority    E92000001
#> 5685        2025         Week 14 Year to date  Local authority    E92000001
#> 5686        2025         Week 14 Year to date  Local authority    E92000001
#> 5687        2025         Week 14 Year to date  Local authority    E92000001
#> 5688        2025         Week 14 Year to date  Local authority    E92000001
#> 5689        2025         Week 14 Year to date  Local authority    E92000001
#> 5690        2025         Week 14 Year to date  Local authority    E92000001
#> 5691        2025         Week 14 Year to date  Local authority    E92000001
#> 5692        2025         Week 14 Year to date  Local authority    E92000001
#> 5693        2025         Week 14 Year to date  Local authority    E92000001
#> 5694        2025         Week 14 Year to date         Regional    E92000001
#> 5695        2025         Week 14 Year to date         Regional    E92000001
#> 5696        2025         Week 14 Year to date         Regional    E92000001
#> 5697        2025         Week 14 Year to date         Regional    E92000001
#> 5698        2025         Week 14 Year to date  Local authority    E92000001
#> 5699        2025         Week 14 Year to date  Local authority    E92000001
#> 5700        2025         Week 14 Year to date  Local authority    E92000001
#> 5701        2025         Week 14 Year to date  Local authority    E92000001
#> 5702        2025         Week 14 Year to date  Local authority    E92000001
#> 5703        2025         Week 14 Year to date  Local authority    E92000001
#> 5704        2025         Week 14 Year to date  Local authority    E92000001
#> 5705        2025         Week 14 Year to date  Local authority    E92000001
#> 5706        2025         Week 14 Year to date  Local authority    E92000001
#> 5707        2025         Week 14 Year to date  Local authority    E92000001
#> 5708        2025         Week 14 Year to date  Local authority    E92000001
#> 5709        2025         Week 14 Year to date  Local authority    E92000001
#> 5710        2025         Week 14 Year to date  Local authority    E92000001
#> 5711        2025         Week 14 Year to date  Local authority    E92000001
#> 5712        2025         Week 14 Year to date  Local authority    E92000001
#> 5713        2025         Week 14 Year to date  Local authority    E92000001
#> 5714        2025         Week 14 Year to date  Local authority    E92000001
#> 5715        2025         Week 14 Year to date  Local authority    E92000001
#> 5716        2025         Week 14 Year to date  Local authority    E92000001
#> 5717        2025         Week 14 Year to date  Local authority    E92000001
#> 5718        2025         Week 14 Year to date  Local authority    E92000001
#> 5719        2025         Week 14 Year to date  Local authority    E92000001
#> 5720        2025         Week 14 Year to date  Local authority    E92000001
#> 5721        2025         Week 14 Year to date  Local authority    E92000001
#> 5722        2025         Week 14 Year to date  Local authority    E92000001
#> 5723        2025         Week 14 Year to date  Local authority    E92000001
#> 5724        2025         Week 14 Year to date  Local authority    E92000001
#> 5725        2025         Week 14 Year to date  Local authority    E92000001
#> 5726        2025         Week 14 Year to date  Local authority    E92000001
#> 5727        2025         Week 14 Year to date  Local authority    E92000001
#> 5728        2025         Week 14 Year to date  Local authority    E92000001
#> 5729        2025         Week 14 Year to date  Local authority    E92000001
#> 5730        2025         Week 14 Year to date  Local authority    E92000001
#> 5731        2025         Week 14 Year to date  Local authority    E92000001
#> 5732        2025         Week 14 Year to date  Local authority    E92000001
#> 5733        2025         Week 14 Year to date  Local authority    E92000001
#> 5734        2025         Week 14 Year to date  Local authority    E92000001
#> 5735        2025         Week 14 Year to date  Local authority    E92000001
#> 5736        2025         Week 14 Year to date  Local authority    E92000001
#> 5737        2025         Week 14 Year to date  Local authority    E92000001
#> 5738        2025         Week 14 Year to date  Local authority    E92000001
#> 5739        2025         Week 14 Year to date  Local authority    E92000001
#> 5740        2025         Week 14 Year to date  Local authority    E92000001
#> 5741        2025         Week 12 Year to date         National    E92000001
#> 5742        2025         Week 12 Year to date         National    E92000001
#> 5743        2025         Week 12 Year to date         National    E92000001
#> 5744        2025         Week 12 Year to date         National    E92000001
#> 5745        2025         Week 12 Year to date         Regional    E92000001
#> 5746        2025         Week 12 Year to date         Regional    E92000001
#> 5747        2025         Week 12 Year to date         Regional    E92000001
#> 5748        2025         Week 12 Year to date         Regional    E92000001
#> 5749        2025         Week 12 Year to date  Local authority    E92000001
#> 5750        2025         Week 12 Year to date  Local authority    E92000001
#> 5751        2025         Week 12 Year to date  Local authority    E92000001
#> 5752        2025         Week 12 Year to date  Local authority    E92000001
#> 5753        2025         Week 12 Year to date  Local authority    E92000001
#> 5754        2025         Week 12 Year to date  Local authority    E92000001
#> 5755        2025         Week 12 Year to date  Local authority    E92000001
#> 5756        2025         Week 12 Year to date  Local authority    E92000001
#> 5757        2025         Week 12 Year to date  Local authority    E92000001
#> 5758        2025         Week 12 Year to date  Local authority    E92000001
#> 5759        2025         Week 12 Year to date  Local authority    E92000001
#> 5760        2025         Week 12 Year to date  Local authority    E92000001
#> 5761        2025         Week 12 Year to date  Local authority    E92000001
#> 5762        2025         Week 12 Year to date  Local authority    E92000001
#> 5763        2025         Week 12 Year to date  Local authority    E92000001
#> 5764        2025         Week 12 Year to date  Local authority    E92000001
#> 5765        2025         Week 12 Year to date  Local authority    E92000001
#> 5766        2025         Week 12 Year to date  Local authority    E92000001
#> 5767        2025         Week 12 Year to date  Local authority    E92000001
#> 5768        2025         Week 12 Year to date  Local authority    E92000001
#> 5769        2025         Week 12 Year to date  Local authority    E92000001
#> 5770        2025         Week 12 Year to date  Local authority    E92000001
#> 5771        2025         Week 12 Year to date  Local authority    E92000001
#> 5772        2025         Week 12 Year to date  Local authority    E92000001
#> 5773        2025         Week 12 Year to date  Local authority    E92000001
#> 5774        2025         Week 12 Year to date  Local authority    E92000001
#> 5775        2025         Week 12 Year to date  Local authority    E92000001
#> 5776        2025         Week 12 Year to date  Local authority    E92000001
#> 5777        2025         Week 12 Year to date  Local authority    E92000001
#> 5778        2025         Week 12 Year to date  Local authority    E92000001
#> 5779        2025         Week 12 Year to date  Local authority    E92000001
#> 5780        2025         Week 12 Year to date  Local authority    E92000001
#> 5781        2025         Week 12 Year to date  Local authority    E92000001
#> 5782        2025         Week 12 Year to date  Local authority    E92000001
#> 5783        2025         Week 12 Year to date  Local authority    E92000001
#> 5784        2025         Week 12 Year to date  Local authority    E92000001
#> 5785        2025         Week 12 Year to date         Regional    E92000001
#> 5786        2025         Week 12 Year to date         Regional    E92000001
#> 5787        2025         Week 12 Year to date         Regional    E92000001
#> 5788        2025         Week 12 Year to date         Regional    E92000001
#> 5789        2025         Week 12 Year to date  Local authority    E92000001
#> 5790        2025         Week 12 Year to date  Local authority    E92000001
#> 5791        2025         Week 12 Year to date  Local authority    E92000001
#> 5792        2025         Week 12 Year to date  Local authority    E92000001
#> 5793        2025         Week 12 Year to date  Local authority    E92000001
#> 5794        2025         Week 12 Year to date  Local authority    E92000001
#> 5795        2025         Week 12 Year to date  Local authority    E92000001
#> 5796        2025         Week 12 Year to date  Local authority    E92000001
#> 5797        2025         Week 12 Year to date  Local authority    E92000001
#> 5798        2025         Week 12 Year to date  Local authority    E92000001
#> 5799        2025         Week 12 Year to date  Local authority    E92000001
#> 5800        2025         Week 12 Year to date  Local authority    E92000001
#> 5801        2025         Week 12 Year to date  Local authority    E92000001
#> 5802        2025         Week 12 Year to date  Local authority    E92000001
#> 5803        2025         Week 12 Year to date  Local authority    E92000001
#> 5804        2025         Week 12 Year to date  Local authority    E92000001
#> 5805        2025         Week 12 Year to date  Local authority    E92000001
#> 5806        2025         Week 12 Year to date  Local authority    E92000001
#> 5807        2025         Week 12 Year to date  Local authority    E92000001
#> 5808        2025         Week 12 Year to date  Local authority    E92000001
#> 5809        2025         Week 12 Year to date  Local authority    E92000001
#> 5810        2025         Week 12 Year to date  Local authority    E92000001
#> 5811        2025         Week 12 Year to date  Local authority    E92000001
#> 5812        2025         Week 12 Year to date  Local authority    E92000001
#> 5813        2025         Week 12 Year to date  Local authority    E92000001
#> 5814        2025         Week 12 Year to date  Local authority    E92000001
#> 5815        2025         Week 12 Year to date  Local authority    E92000001
#> 5816        2025         Week 12 Year to date  Local authority    E92000001
#> 5817        2025         Week 12 Year to date  Local authority    E92000001
#> 5818        2025         Week 12 Year to date  Local authority    E92000001
#> 5819        2025         Week 12 Year to date  Local authority    E92000001
#> 5820        2025         Week 12 Year to date  Local authority    E92000001
#> 5821        2025         Week 12 Year to date  Local authority    E92000001
#> 5822        2025         Week 12 Year to date  Local authority    E92000001
#> 5823        2025         Week 12 Year to date  Local authority    E92000001
#> 5824        2025         Week 12 Year to date  Local authority    E92000001
#> 5825        2025         Week 12 Year to date  Local authority    E92000001
#> 5826        2025         Week 12 Year to date  Local authority    E92000001
#> 5827        2025         Week 12 Year to date  Local authority    E92000001
#> 5828        2025         Week 12 Year to date  Local authority    E92000001
#> 5829        2025         Week 12 Year to date  Local authority    E92000001
#> 5830        2025         Week 12 Year to date  Local authority    E92000001
#> 5831        2025         Week 12 Year to date  Local authority    E92000001
#> 5832        2025         Week 12 Year to date  Local authority    E92000001
#> 5833        2025         Week 12 Year to date  Local authority    E92000001
#> 5834        2025         Week 12 Year to date  Local authority    E92000001
#> 5835        2025         Week 12 Year to date  Local authority    E92000001
#> 5836        2025         Week 12 Year to date  Local authority    E92000001
#> 5837        2025         Week 12 Year to date  Local authority    E92000001
#> 5838        2025         Week 12 Year to date  Local authority    E92000001
#> 5839        2025         Week 12 Year to date  Local authority    E92000001
#> 5840        2025         Week 12 Year to date  Local authority    E92000001
#> 5841        2025         Week 12 Year to date  Local authority    E92000001
#> 5842        2025         Week 12 Year to date  Local authority    E92000001
#> 5843        2025         Week 12 Year to date  Local authority    E92000001
#> 5844        2025         Week 12 Year to date  Local authority    E92000001
#> 5845        2025         Week 12 Year to date  Local authority    E92000001
#> 5846        2025         Week 12 Year to date  Local authority    E92000001
#> 5847        2025         Week 12 Year to date  Local authority    E92000001
#> 5848        2025         Week 12 Year to date  Local authority    E92000001
#> 5849        2025         Week 12 Year to date  Local authority    E92000001
#> 5850        2025         Week 12 Year to date  Local authority    E92000001
#> 5851        2025         Week 12 Year to date  Local authority    E92000001
#> 5852        2025         Week 12 Year to date  Local authority    E92000001
#> 5853        2025         Week 12 Year to date  Local authority    E92000001
#> 5854        2025         Week 12 Year to date  Local authority    E92000001
#> 5855        2025         Week 12 Year to date  Local authority    E92000001
#> 5856        2025         Week 12 Year to date  Local authority    E92000001
#> 5857        2025         Week 12 Year to date  Local authority    E92000001
#> 5858        2025         Week 12 Year to date  Local authority    E92000001
#> 5859        2025         Week 12 Year to date  Local authority    E92000001
#> 5860        2025         Week 12 Year to date  Local authority    E92000001
#> 5861        2025         Week 12 Year to date         Regional    E92000001
#> 5862        2025         Week 12 Year to date         Regional    E92000001
#> 5863        2025         Week 12 Year to date         Regional    E92000001
#> 5864        2025         Week 12 Year to date         Regional    E92000001
#> 5865        2025         Week 12 Year to date  Local authority    E92000001
#> 5866        2025         Week 12 Year to date  Local authority    E92000001
#> 5867        2025         Week 12 Year to date  Local authority    E92000001
#> 5868        2025         Week 12 Year to date  Local authority    E92000001
#> 5869        2025         Week 12 Year to date  Local authority    E92000001
#> 5870        2025         Week 12 Year to date  Local authority    E92000001
#> 5871        2025         Week 12 Year to date  Local authority    E92000001
#> 5872        2025         Week 12 Year to date  Local authority    E92000001
#> 5873        2025         Week 12 Year to date  Local authority    E92000001
#> 5874        2025         Week 12 Year to date  Local authority    E92000001
#> 5875        2025         Week 12 Year to date  Local authority    E92000001
#> 5876        2025         Week 12 Year to date  Local authority    E92000001
#> 5877        2025         Week 12 Year to date  Local authority    E92000001
#> 5878        2025         Week 12 Year to date  Local authority    E92000001
#> 5879        2025         Week 12 Year to date  Local authority    E92000001
#> 5880        2025         Week 12 Year to date  Local authority    E92000001
#> 5881        2025         Week 12 Year to date  Local authority    E92000001
#> 5882        2025         Week 12 Year to date  Local authority    E92000001
#> 5883        2025         Week 12 Year to date  Local authority    E92000001
#> 5884        2025         Week 12 Year to date  Local authority    E92000001
#> 5885        2025         Week 12 Year to date  Local authority    E92000001
#> 5886        2025         Week 12 Year to date  Local authority    E92000001
#> 5887        2025         Week 12 Year to date  Local authority    E92000001
#> 5888        2025         Week 12 Year to date  Local authority    E92000001
#> 5889        2025         Week 12 Year to date  Local authority    E92000001
#> 5890        2025         Week 12 Year to date  Local authority    E92000001
#> 5891        2025         Week 12 Year to date  Local authority    E92000001
#> 5892        2025         Week 12 Year to date  Local authority    E92000001
#> 5893        2025         Week 12 Year to date  Local authority    E92000001
#> 5894        2025         Week 12 Year to date  Local authority    E92000001
#> 5895        2025         Week 12 Year to date  Local authority    E92000001
#> 5896        2025         Week 12 Year to date  Local authority    E92000001
#> 5897        2025         Week 12 Year to date  Local authority    E92000001
#> 5898        2025         Week 12 Year to date  Local authority    E92000001
#> 5899        2025         Week 12 Year to date  Local authority    E92000001
#> 5900        2025         Week 12 Year to date  Local authority    E92000001
#> 5901        2025         Week 12 Year to date  Local authority    E92000001
#> 5902        2025         Week 12 Year to date  Local authority    E92000001
#> 5903        2025         Week 12 Year to date  Local authority    E92000001
#> 5904        2025         Week 12 Year to date  Local authority    E92000001
#> 5905        2025         Week 12 Year to date  Local authority    E92000001
#> 5906        2025         Week 12 Year to date  Local authority    E92000001
#> 5907        2025         Week 12 Year to date  Local authority    E92000001
#> 5908        2025         Week 12 Year to date  Local authority    E92000001
#> 5909        2025         Week 12 Year to date  Local authority    E92000001
#> 5910        2025         Week 12 Year to date         Regional    E92000001
#> 5911        2025         Week 12 Year to date         Regional    E92000001
#> 5912        2025         Week 12 Year to date         Regional    E92000001
#> 5913        2025         Week 12 Year to date         Regional    E92000001
#> 5914        2025         Week 12 Year to date  Local authority    E92000001
#> 5915        2025         Week 12 Year to date  Local authority    E92000001
#> 5916        2025         Week 12 Year to date  Local authority    E92000001
#> 5917        2025         Week 12 Year to date  Local authority    E92000001
#> 5918        2025         Week 12 Year to date  Local authority    E92000001
#> 5919        2025         Week 12 Year to date  Local authority    E92000001
#> 5920        2025         Week 12 Year to date  Local authority    E92000001
#> 5921        2025         Week 12 Year to date  Local authority    E92000001
#> 5922        2025         Week 12 Year to date  Local authority    E92000001
#> 5923        2025         Week 12 Year to date  Local authority    E92000001
#> 5924        2025         Week 12 Year to date  Local authority    E92000001
#> 5925        2025         Week 12 Year to date  Local authority    E92000001
#> 5926        2025         Week 12 Year to date  Local authority    E92000001
#> 5927        2025         Week 12 Year to date  Local authority    E92000001
#> 5928        2025         Week 12 Year to date  Local authority    E92000001
#> 5929        2025         Week 12 Year to date  Local authority    E92000001
#> 5930        2025         Week 12 Year to date  Local authority    E92000001
#> 5931        2025         Week 12 Year to date  Local authority    E92000001
#> 5932        2025         Week 12 Year to date  Local authority    E92000001
#> 5933        2025         Week 12 Year to date  Local authority    E92000001
#> 5934        2025         Week 12 Year to date  Local authority    E92000001
#> 5935        2025         Week 12 Year to date  Local authority    E92000001
#> 5936        2025         Week 12 Year to date  Local authority    E92000001
#> 5937        2025         Week 12 Year to date  Local authority    E92000001
#> 5938        2025         Week 12 Year to date  Local authority    E92000001
#> 5939        2025         Week 12 Year to date  Local authority    E92000001
#> 5940        2025         Week 12 Year to date  Local authority    E92000001
#> 5941        2025         Week 12 Year to date  Local authority    E92000001
#> 5942        2025         Week 12 Year to date  Local authority    E92000001
#> 5943        2025         Week 12 Year to date         Regional    E92000001
#> 5944        2025         Week 12 Year to date         Regional    E92000001
#> 5945        2025         Week 12 Year to date         Regional    E92000001
#> 5946        2025         Week 12 Year to date         Regional    E92000001
#> 5947        2025         Week 12 Year to date  Local authority    E92000001
#> 5948        2025         Week 12 Year to date  Local authority    E92000001
#> 5949        2025         Week 12 Year to date  Local authority    E92000001
#> 5950        2025         Week 12 Year to date  Local authority    E92000001
#> 5951        2025         Week 12 Year to date  Local authority    E92000001
#> 5952        2025         Week 12 Year to date  Local authority    E92000001
#> 5953        2025         Week 12 Year to date  Local authority    E92000001
#> 5954        2025         Week 12 Year to date  Local authority    E92000001
#> 5955        2025         Week 12 Year to date  Local authority    E92000001
#> 5956        2025         Week 12 Year to date  Local authority    E92000001
#> 5957        2025         Week 12 Year to date  Local authority    E92000001
#> 5958        2025         Week 12 Year to date  Local authority    E92000001
#> 5959        2025         Week 12 Year to date  Local authority    E92000001
#> 5960        2025         Week 12 Year to date  Local authority    E92000001
#> 5961        2025         Week 12 Year to date  Local authority    E92000001
#> 5962        2025         Week 12 Year to date  Local authority    E92000001
#> 5963        2025         Week 12 Year to date  Local authority    E92000001
#> 5964        2025         Week 12 Year to date  Local authority    E92000001
#> 5965        2025         Week 12 Year to date  Local authority    E92000001
#> 5966        2025         Week 12 Year to date  Local authority    E92000001
#> 5967        2025         Week 12 Year to date  Local authority    E92000001
#> 5968        2025         Week 12 Year to date  Local authority    E92000001
#> 5969        2025         Week 12 Year to date  Local authority    E92000001
#> 5970        2025         Week 12 Year to date  Local authority    E92000001
#> 5971        2025         Week 12 Year to date  Local authority    E92000001
#> 5972        2025         Week 12 Year to date  Local authority    E92000001
#> 5973        2025         Week 12 Year to date  Local authority    E92000001
#> 5974        2025         Week 12 Year to date  Local authority    E92000001
#> 5975        2025         Week 12 Year to date  Local authority    E92000001
#> 5976        2025         Week 12 Year to date  Local authority    E92000001
#> 5977        2025         Week 12 Year to date  Local authority    E92000001
#> 5978        2025         Week 12 Year to date  Local authority    E92000001
#> 5979        2025         Week 12 Year to date  Local authority    E92000001
#> 5980        2025         Week 12 Year to date  Local authority    E92000001
#> 5981        2025         Week 12 Year to date  Local authority    E92000001
#> 5982        2025         Week 12 Year to date  Local authority    E92000001
#> 5983        2025         Week 12 Year to date  Local authority    E92000001
#> 5984        2025         Week 12 Year to date  Local authority    E92000001
#> 5985        2025         Week 12 Year to date  Local authority    E92000001
#> 5986        2025         Week 12 Year to date  Local authority    E92000001
#> 5987        2025         Week 12 Year to date  Local authority    E92000001
#> 5988        2025         Week 12 Year to date  Local authority    E92000001
#> 5989        2025         Week 12 Year to date         Regional    E92000001
#> 5990        2025         Week 12 Year to date         Regional    E92000001
#> 5991        2025         Week 12 Year to date         Regional    E92000001
#> 5992        2025         Week 12 Year to date         Regional    E92000001
#> 5993        2025         Week 12 Year to date  Local authority    E92000001
#> 5994        2025         Week 12 Year to date  Local authority    E92000001
#> 5995        2025         Week 12 Year to date  Local authority    E92000001
#> 5996        2025         Week 12 Year to date  Local authority    E92000001
#> 5997        2025         Week 12 Year to date  Local authority    E92000001
#> 5998        2025         Week 12 Year to date  Local authority    E92000001
#> 5999        2025         Week 12 Year to date  Local authority    E92000001
#> 6000        2025         Week 12 Year to date  Local authority    E92000001
#> 6001        2025         Week 12 Year to date  Local authority    E92000001
#> 6002        2025         Week 12 Year to date  Local authority    E92000001
#> 6003        2025         Week 12 Year to date  Local authority    E92000001
#> 6004        2025         Week 12 Year to date  Local authority    E92000001
#> 6005        2025         Week 12 Year to date  Local authority    E92000001
#> 6006        2025         Week 12 Year to date  Local authority    E92000001
#> 6007        2025         Week 12 Year to date  Local authority    E92000001
#> 6008        2025         Week 12 Year to date  Local authority    E92000001
#> 6009        2025         Week 12 Year to date  Local authority    E92000001
#> 6010        2025         Week 12 Year to date  Local authority    E92000001
#> 6011        2025         Week 12 Year to date  Local authority    E92000001
#> 6012        2025         Week 12 Year to date  Local authority    E92000001
#> 6013        2025         Week 12 Year to date  Local authority    E92000001
#> 6014        2025         Week 12 Year to date  Local authority    E92000001
#> 6015        2025         Week 12 Year to date  Local authority    E92000001
#> 6016        2025         Week 12 Year to date  Local authority    E92000001
#> 6017        2025         Week 12 Year to date  Local authority    E92000001
#> 6018        2025         Week 12 Year to date  Local authority    E92000001
#> 6019        2025         Week 12 Year to date  Local authority    E92000001
#> 6020        2025         Week 12 Year to date  Local authority    E92000001
#> 6021        2025         Week 12 Year to date  Local authority    E92000001
#> 6022        2025         Week 12 Year to date  Local authority    E92000001
#> 6023        2025         Week 12 Year to date  Local authority    E92000001
#> 6024        2025         Week 12 Year to date  Local authority    E92000001
#> 6025        2025         Week 12 Year to date  Local authority    E92000001
#> 6026        2025         Week 12 Year to date         Regional    E92000001
#> 6027        2025         Week 12 Year to date         Regional    E92000001
#> 6028        2025         Week 12 Year to date         Regional    E92000001
#> 6029        2025         Week 12 Year to date         Regional    E92000001
#> 6030        2025         Week 12 Year to date  Local authority    E92000001
#> 6031        2025         Week 12 Year to date  Local authority    E92000001
#> 6032        2025         Week 12 Year to date  Local authority    E92000001
#> 6033        2025         Week 12 Year to date  Local authority    E92000001
#> 6034        2025         Week 12 Year to date  Local authority    E92000001
#> 6035        2025         Week 12 Year to date  Local authority    E92000001
#> 6036        2025         Week 12 Year to date  Local authority    E92000001
#> 6037        2025         Week 12 Year to date  Local authority    E92000001
#> 6038        2025         Week 12 Year to date  Local authority    E92000001
#> 6039        2025         Week 12 Year to date  Local authority    E92000001
#> 6040        2025         Week 12 Year to date  Local authority    E92000001
#> 6041        2025         Week 12 Year to date  Local authority    E92000001
#> 6042        2025         Week 12 Year to date  Local authority    E92000001
#> 6043        2025         Week 12 Year to date  Local authority    E92000001
#> 6044        2025         Week 12 Year to date  Local authority    E92000001
#> 6045        2025         Week 12 Year to date  Local authority    E92000001
#> 6046        2025         Week 12 Year to date  Local authority    E92000001
#> 6047        2025         Week 12 Year to date  Local authority    E92000001
#> 6048        2025         Week 12 Year to date  Local authority    E92000001
#> 6049        2025         Week 12 Year to date  Local authority    E92000001
#> 6050        2025         Week 12 Year to date  Local authority    E92000001
#> 6051        2025         Week 12 Year to date  Local authority    E92000001
#> 6052        2025         Week 12 Year to date  Local authority    E92000001
#> 6053        2025         Week 12 Year to date  Local authority    E92000001
#> 6054        2025         Week 12 Year to date  Local authority    E92000001
#> 6055        2025         Week 12 Year to date  Local authority    E92000001
#> 6056        2025         Week 12 Year to date  Local authority    E92000001
#> 6057        2025         Week 12 Year to date  Local authority    E92000001
#> 6058        2025         Week 12 Year to date  Local authority    E92000001
#> 6059        2025         Week 12 Year to date  Local authority    E92000001
#> 6060        2025         Week 12 Year to date  Local authority    E92000001
#> 6061        2025         Week 12 Year to date  Local authority    E92000001
#> 6062        2025         Week 12 Year to date  Local authority    E92000001
#> 6063        2025         Week 12 Year to date  Local authority    E92000001
#> 6064        2025         Week 12 Year to date  Local authority    E92000001
#> 6065        2025         Week 12 Year to date  Local authority    E92000001
#> 6066        2025         Week 12 Year to date  Local authority    E92000001
#> 6067        2025         Week 12 Year to date  Local authority    E92000001
#> 6068        2025         Week 12 Year to date  Local authority    E92000001
#> 6069        2025         Week 12 Year to date  Local authority    E92000001
#> 6070        2025         Week 12 Year to date  Local authority    E92000001
#> 6071        2025         Week 12 Year to date  Local authority    E92000001
#> 6072        2025         Week 12 Year to date  Local authority    E92000001
#> 6073        2025         Week 12 Year to date  Local authority    E92000001
#> 6074        2025         Week 12 Year to date  Local authority    E92000001
#> 6075        2025         Week 12 Year to date  Local authority    E92000001
#> 6076        2025         Week 12 Year to date  Local authority    E92000001
#> 6077        2025         Week 12 Year to date  Local authority    E92000001
#> 6078        2025         Week 12 Year to date  Local authority    E92000001
#> 6079        2025         Week 12 Year to date  Local authority    E92000001
#> 6080        2025         Week 12 Year to date  Local authority    E92000001
#> 6081        2025         Week 12 Year to date  Local authority    E92000001
#> 6082        2025         Week 12 Year to date  Local authority    E92000001
#> 6083        2025         Week 12 Year to date  Local authority    E92000001
#> 6084        2025         Week 12 Year to date  Local authority    E92000001
#> 6085        2025         Week 12 Year to date  Local authority    E92000001
#> 6086        2025         Week 12 Year to date  Local authority    E92000001
#> 6087        2025         Week 12 Year to date  Local authority    E92000001
#> 6088        2025         Week 12 Year to date  Local authority    E92000001
#> 6089        2025         Week 12 Year to date  Local authority    E92000001
#> 6090        2025         Week 12 Year to date  Local authority    E92000001
#> 6091        2025         Week 12 Year to date  Local authority    E92000001
#> 6092        2025         Week 12 Year to date  Local authority    E92000001
#> 6093        2025         Week 12 Year to date  Local authority    E92000001
#> 6094        2025         Week 12 Year to date  Local authority    E92000001
#> 6095        2025         Week 12 Year to date  Local authority    E92000001
#> 6096        2025         Week 12 Year to date  Local authority    E92000001
#> 6097        2025         Week 12 Year to date  Local authority    E92000001
#> 6098        2025         Week 12 Year to date  Local authority    E92000001
#> 6099        2025         Week 12 Year to date  Local authority    E92000001
#> 6100        2025         Week 12 Year to date  Local authority    E92000001
#> 6101        2025         Week 12 Year to date  Local authority    E92000001
#> 6102        2025         Week 12 Year to date  Local authority    E92000001
#> 6103        2025         Week 12 Year to date  Local authority    E92000001
#> 6104        2025         Week 12 Year to date  Local authority    E92000001
#> 6105        2025         Week 12 Year to date  Local authority    E92000001
#> 6106        2025         Week 12 Year to date  Local authority    E92000001
#> 6107        2025         Week 12 Year to date  Local authority    E92000001
#> 6108        2025         Week 12 Year to date  Local authority    E92000001
#> 6109        2025         Week 12 Year to date  Local authority    E92000001
#> 6110        2025         Week 12 Year to date  Local authority    E92000001
#> 6111        2025         Week 12 Year to date  Local authority    E92000001
#> 6112        2025         Week 12 Year to date  Local authority    E92000001
#> 6113        2025         Week 12 Year to date  Local authority    E92000001
#> 6114        2025         Week 12 Year to date  Local authority    E92000001
#> 6115        2025         Week 12 Year to date  Local authority    E92000001
#> 6116        2025         Week 12 Year to date  Local authority    E92000001
#> 6117        2025         Week 12 Year to date  Local authority    E92000001
#> 6118        2025         Week 12 Year to date  Local authority    E92000001
#> 6119        2025         Week 12 Year to date  Local authority    E92000001
#> 6120        2025         Week 12 Year to date  Local authority    E92000001
#> 6121        2025         Week 12 Year to date  Local authority    E92000001
#> 6122        2025         Week 12 Year to date  Local authority    E92000001
#> 6123        2025         Week 12 Year to date  Local authority    E92000001
#> 6124        2025         Week 12 Year to date  Local authority    E92000001
#> 6125        2025         Week 12 Year to date  Local authority    E92000001
#> 6126        2025         Week 12 Year to date  Local authority    E92000001
#> 6127        2025         Week 12 Year to date         Regional    E92000001
#> 6128        2025         Week 12 Year to date         Regional    E92000001
#> 6129        2025         Week 12 Year to date         Regional    E92000001
#> 6130        2025         Week 12 Year to date         Regional    E92000001
#> 6131        2025         Week 12 Year to date  Local authority    E92000001
#> 6132        2025         Week 12 Year to date  Local authority    E92000001
#> 6133        2025         Week 12 Year to date  Local authority    E92000001
#> 6134        2025         Week 12 Year to date  Local authority    E92000001
#> 6135        2025         Week 12 Year to date  Local authority    E92000001
#> 6136        2025         Week 12 Year to date  Local authority    E92000001
#> 6137        2025         Week 12 Year to date  Local authority    E92000001
#> 6138        2025         Week 12 Year to date  Local authority    E92000001
#> 6139        2025         Week 12 Year to date  Local authority    E92000001
#> 6140        2025         Week 12 Year to date  Local authority    E92000001
#> 6141        2025         Week 12 Year to date  Local authority    E92000001
#> 6142        2025         Week 12 Year to date  Local authority    E92000001
#> 6143        2025         Week 12 Year to date  Local authority    E92000001
#> 6144        2025         Week 12 Year to date  Local authority    E92000001
#> 6145        2025         Week 12 Year to date  Local authority    E92000001
#> 6146        2025         Week 12 Year to date  Local authority    E92000001
#> 6147        2025         Week 12 Year to date  Local authority    E92000001
#> 6148        2025         Week 12 Year to date  Local authority    E92000001
#> 6149        2025         Week 12 Year to date  Local authority    E92000001
#> 6150        2025         Week 12 Year to date  Local authority    E92000001
#> 6151        2025         Week 12 Year to date  Local authority    E92000001
#> 6152        2025         Week 12 Year to date  Local authority    E92000001
#> 6153        2025         Week 12 Year to date  Local authority    E92000001
#> 6154        2025         Week 12 Year to date  Local authority    E92000001
#> 6155        2025         Week 12 Year to date  Local authority    E92000001
#> 6156        2025         Week 12 Year to date  Local authority    E92000001
#> 6157        2025         Week 12 Year to date  Local authority    E92000001
#> 6158        2025         Week 12 Year to date  Local authority    E92000001
#> 6159        2025         Week 12 Year to date  Local authority    E92000001
#> 6160        2025         Week 12 Year to date  Local authority    E92000001
#> 6161        2025         Week 12 Year to date  Local authority    E92000001
#> 6162        2025         Week 12 Year to date  Local authority    E92000001
#> 6163        2025         Week 12 Year to date  Local authority    E92000001
#> 6164        2025         Week 12 Year to date  Local authority    E92000001
#> 6165        2025         Week 12 Year to date  Local authority    E92000001
#> 6166        2025         Week 12 Year to date  Local authority    E92000001
#> 6167        2025         Week 12 Year to date  Local authority    E92000001
#> 6168        2025         Week 12 Year to date  Local authority    E92000001
#> 6169        2025         Week 12 Year to date  Local authority    E92000001
#> 6170        2025         Week 12 Year to date  Local authority    E92000001
#> 6171        2025         Week 12 Year to date  Local authority    E92000001
#> 6172        2025         Week 12 Year to date  Local authority    E92000001
#> 6173        2025         Week 12 Year to date  Local authority    E92000001
#> 6174        2025         Week 12 Year to date  Local authority    E92000001
#> 6175        2025         Week 12 Year to date  Local authority    E92000001
#> 6176        2025         Week 12 Year to date  Local authority    E92000001
#> 6177        2025         Week 12 Year to date  Local authority    E92000001
#> 6178        2025         Week 12 Year to date  Local authority    E92000001
#> 6179        2025         Week 12 Year to date  Local authority    E92000001
#> 6180        2025         Week 12 Year to date  Local authority    E92000001
#> 6181        2025         Week 12 Year to date  Local authority    E92000001
#> 6182        2025         Week 12 Year to date  Local authority    E92000001
#> 6183        2025         Week 12 Year to date  Local authority    E92000001
#> 6184        2025         Week 12 Year to date  Local authority    E92000001
#> 6185        2025         Week 12 Year to date  Local authority    E92000001
#> 6186        2025         Week 12 Year to date  Local authority    E92000001
#> 6187        2025         Week 12 Year to date  Local authority    E92000001
#> 6188        2025         Week 12 Year to date         Regional    E92000001
#> 6189        2025         Week 12 Year to date         Regional    E92000001
#> 6190        2025         Week 12 Year to date         Regional    E92000001
#> 6191        2025         Week 12 Year to date         Regional    E92000001
#> 6192        2025         Week 12 Year to date  Local authority    E92000001
#> 6193        2025         Week 12 Year to date  Local authority    E92000001
#> 6194        2025         Week 12 Year to date  Local authority    E92000001
#> 6195        2025         Week 12 Year to date  Local authority    E92000001
#> 6196        2025         Week 12 Year to date  Local authority    E92000001
#> 6197        2025         Week 12 Year to date  Local authority    E92000001
#> 6198        2025         Week 12 Year to date  Local authority    E92000001
#> 6199        2025         Week 12 Year to date  Local authority    E92000001
#> 6200        2025         Week 12 Year to date  Local authority    E92000001
#> 6201        2025         Week 12 Year to date  Local authority    E92000001
#> 6202        2025         Week 12 Year to date  Local authority    E92000001
#> 6203        2025         Week 12 Year to date  Local authority    E92000001
#> 6204        2025         Week 12 Year to date  Local authority    E92000001
#> 6205        2025         Week 12 Year to date  Local authority    E92000001
#> 6206        2025         Week 12 Year to date  Local authority    E92000001
#> 6207        2025         Week 12 Year to date  Local authority    E92000001
#> 6208        2025         Week 12 Year to date  Local authority    E92000001
#> 6209        2025         Week 12 Year to date  Local authority    E92000001
#> 6210        2025         Week 12 Year to date  Local authority    E92000001
#> 6211        2025         Week 12 Year to date  Local authority    E92000001
#> 6212        2025         Week 12 Year to date  Local authority    E92000001
#> 6213        2025         Week 12 Year to date  Local authority    E92000001
#> 6214        2025         Week 12 Year to date  Local authority    E92000001
#> 6215        2025         Week 12 Year to date  Local authority    E92000001
#> 6216        2025         Week 12 Year to date  Local authority    E92000001
#> 6217        2025         Week 12 Year to date  Local authority    E92000001
#> 6218        2025         Week 12 Year to date  Local authority    E92000001
#> 6219        2025         Week 12 Year to date  Local authority    E92000001
#> 6220        2025         Week 12 Year to date  Local authority    E92000001
#> 6221        2025         Week 12 Year to date  Local authority    E92000001
#> 6222        2025         Week 12 Year to date  Local authority    E92000001
#> 6223        2025         Week 12 Year to date  Local authority    E92000001
#> 6224        2025         Week 12 Year to date  Local authority    E92000001
#> 6225        2025         Week 12 Year to date  Local authority    E92000001
#> 6226        2025         Week 12 Year to date  Local authority    E92000001
#> 6227        2025         Week 12 Year to date  Local authority    E92000001
#> 6228        2025         Week 12 Year to date  Local authority    E92000001
#> 6229        2025         Week 12 Year to date  Local authority    E92000001
#> 6230        2025         Week 12 Year to date  Local authority    E92000001
#> 6231        2025         Week 12 Year to date  Local authority    E92000001
#> 6232        2025         Week 12 Year to date  Local authority    E92000001
#> 6233        2025         Week 12 Year to date  Local authority    E92000001
#> 6234        2025         Week 12 Year to date  Local authority    E92000001
#> 6235        2025         Week 10 Year to date         National    E92000001
#> 6236        2025         Week 10 Year to date         National    E92000001
#> 6237        2025         Week 10 Year to date         National    E92000001
#> 6238        2025         Week 10 Year to date         National    E92000001
#> 6239        2025         Week 10 Year to date         Regional    E92000001
#> 6240        2025         Week 10 Year to date         Regional    E92000001
#> 6241        2025         Week 10 Year to date         Regional    E92000001
#> 6242        2025         Week 10 Year to date         Regional    E92000001
#> 6243        2025         Week 10 Year to date  Local authority    E92000001
#> 6244        2025         Week 10 Year to date  Local authority    E92000001
#> 6245        2025         Week 10 Year to date  Local authority    E92000001
#> 6246        2025         Week 10 Year to date  Local authority    E92000001
#> 6247        2025         Week 10 Year to date  Local authority    E92000001
#> 6248        2025         Week 10 Year to date  Local authority    E92000001
#> 6249        2025         Week 10 Year to date  Local authority    E92000001
#> 6250        2025         Week 10 Year to date  Local authority    E92000001
#> 6251        2025         Week 10 Year to date  Local authority    E92000001
#> 6252        2025         Week 10 Year to date  Local authority    E92000001
#> 6253        2025         Week 10 Year to date  Local authority    E92000001
#> 6254        2025         Week 10 Year to date  Local authority    E92000001
#> 6255        2025         Week 10 Year to date  Local authority    E92000001
#> 6256        2025         Week 10 Year to date  Local authority    E92000001
#> 6257        2025         Week 10 Year to date  Local authority    E92000001
#> 6258        2025         Week 10 Year to date  Local authority    E92000001
#> 6259        2025         Week 10 Year to date  Local authority    E92000001
#> 6260        2025         Week 10 Year to date  Local authority    E92000001
#> 6261        2025         Week 10 Year to date  Local authority    E92000001
#> 6262        2025         Week 10 Year to date  Local authority    E92000001
#> 6263        2025         Week 10 Year to date  Local authority    E92000001
#> 6264        2025         Week 10 Year to date  Local authority    E92000001
#> 6265        2025         Week 10 Year to date  Local authority    E92000001
#> 6266        2025         Week 10 Year to date  Local authority    E92000001
#> 6267        2025         Week 10 Year to date  Local authority    E92000001
#> 6268        2025         Week 10 Year to date  Local authority    E92000001
#> 6269        2025         Week 10 Year to date  Local authority    E92000001
#> 6270        2025         Week 10 Year to date  Local authority    E92000001
#> 6271        2025         Week 10 Year to date  Local authority    E92000001
#> 6272        2025         Week 10 Year to date  Local authority    E92000001
#> 6273        2025         Week 10 Year to date  Local authority    E92000001
#> 6274        2025         Week 10 Year to date  Local authority    E92000001
#> 6275        2025         Week 10 Year to date  Local authority    E92000001
#> 6276        2025         Week 10 Year to date  Local authority    E92000001
#> 6277        2025         Week 10 Year to date  Local authority    E92000001
#> 6278        2025         Week 10 Year to date  Local authority    E92000001
#> 6279        2025         Week 10 Year to date         Regional    E92000001
#> 6280        2025         Week 10 Year to date         Regional    E92000001
#> 6281        2025         Week 10 Year to date         Regional    E92000001
#> 6282        2025         Week 10 Year to date         Regional    E92000001
#> 6283        2025         Week 10 Year to date  Local authority    E92000001
#> 6284        2025         Week 10 Year to date  Local authority    E92000001
#> 6285        2025         Week 10 Year to date  Local authority    E92000001
#> 6286        2025         Week 10 Year to date  Local authority    E92000001
#> 6287        2025         Week 10 Year to date  Local authority    E92000001
#> 6288        2025         Week 10 Year to date  Local authority    E92000001
#> 6289        2025         Week 10 Year to date  Local authority    E92000001
#> 6290        2025         Week 10 Year to date  Local authority    E92000001
#> 6291        2025         Week 10 Year to date  Local authority    E92000001
#> 6292        2025         Week 10 Year to date  Local authority    E92000001
#> 6293        2025         Week 10 Year to date  Local authority    E92000001
#> 6294        2025         Week 10 Year to date  Local authority    E92000001
#> 6295        2025         Week 10 Year to date  Local authority    E92000001
#> 6296        2025         Week 10 Year to date  Local authority    E92000001
#> 6297        2025         Week 10 Year to date  Local authority    E92000001
#> 6298        2025         Week 10 Year to date  Local authority    E92000001
#> 6299        2025         Week 10 Year to date  Local authority    E92000001
#> 6300        2025         Week 10 Year to date  Local authority    E92000001
#> 6301        2025         Week 10 Year to date  Local authority    E92000001
#> 6302        2025         Week 10 Year to date  Local authority    E92000001
#> 6303        2025         Week 10 Year to date  Local authority    E92000001
#> 6304        2025         Week 10 Year to date  Local authority    E92000001
#> 6305        2025         Week 10 Year to date  Local authority    E92000001
#> 6306        2025         Week 10 Year to date  Local authority    E92000001
#> 6307        2025         Week 10 Year to date  Local authority    E92000001
#> 6308        2025         Week 10 Year to date  Local authority    E92000001
#> 6309        2025         Week 10 Year to date  Local authority    E92000001
#> 6310        2025         Week 10 Year to date  Local authority    E92000001
#> 6311        2025         Week 10 Year to date  Local authority    E92000001
#> 6312        2025         Week 10 Year to date  Local authority    E92000001
#> 6313        2025         Week 10 Year to date  Local authority    E92000001
#> 6314        2025         Week 10 Year to date  Local authority    E92000001
#> 6315        2025         Week 10 Year to date  Local authority    E92000001
#> 6316        2025         Week 10 Year to date  Local authority    E92000001
#> 6317        2025         Week 10 Year to date  Local authority    E92000001
#> 6318        2025         Week 10 Year to date  Local authority    E92000001
#> 6319        2025         Week 10 Year to date  Local authority    E92000001
#> 6320        2025         Week 10 Year to date  Local authority    E92000001
#> 6321        2025         Week 10 Year to date  Local authority    E92000001
#> 6322        2025         Week 10 Year to date  Local authority    E92000001
#> 6323        2025         Week 10 Year to date  Local authority    E92000001
#> 6324        2025         Week 10 Year to date  Local authority    E92000001
#> 6325        2025         Week 10 Year to date  Local authority    E92000001
#> 6326        2025         Week 10 Year to date  Local authority    E92000001
#> 6327        2025         Week 10 Year to date  Local authority    E92000001
#> 6328        2025         Week 10 Year to date  Local authority    E92000001
#> 6329        2025         Week 10 Year to date  Local authority    E92000001
#> 6330        2025         Week 10 Year to date  Local authority    E92000001
#> 6331        2025         Week 10 Year to date  Local authority    E92000001
#> 6332        2025         Week 10 Year to date  Local authority    E92000001
#> 6333        2025         Week 10 Year to date  Local authority    E92000001
#> 6334        2025         Week 10 Year to date  Local authority    E92000001
#> 6335        2025         Week 10 Year to date  Local authority    E92000001
#> 6336        2025         Week 10 Year to date  Local authority    E92000001
#> 6337        2025         Week 10 Year to date  Local authority    E92000001
#> 6338        2025         Week 10 Year to date  Local authority    E92000001
#> 6339        2025         Week 10 Year to date  Local authority    E92000001
#> 6340        2025         Week 10 Year to date  Local authority    E92000001
#> 6341        2025         Week 10 Year to date  Local authority    E92000001
#> 6342        2025         Week 10 Year to date  Local authority    E92000001
#> 6343        2025         Week 10 Year to date  Local authority    E92000001
#> 6344        2025         Week 10 Year to date  Local authority    E92000001
#> 6345        2025         Week 10 Year to date  Local authority    E92000001
#> 6346        2025         Week 10 Year to date  Local authority    E92000001
#> 6347        2025         Week 10 Year to date  Local authority    E92000001
#> 6348        2025         Week 10 Year to date  Local authority    E92000001
#> 6349        2025         Week 10 Year to date  Local authority    E92000001
#> 6350        2025         Week 10 Year to date  Local authority    E92000001
#> 6351        2025         Week 10 Year to date  Local authority    E92000001
#> 6352        2025         Week 10 Year to date  Local authority    E92000001
#> 6353        2025         Week 10 Year to date  Local authority    E92000001
#> 6354        2025         Week 10 Year to date  Local authority    E92000001
#> 6355        2025         Week 10 Year to date         Regional    E92000001
#> 6356        2025         Week 10 Year to date         Regional    E92000001
#> 6357        2025         Week 10 Year to date         Regional    E92000001
#> 6358        2025         Week 10 Year to date         Regional    E92000001
#> 6359        2025         Week 10 Year to date  Local authority    E92000001
#> 6360        2025         Week 10 Year to date  Local authority    E92000001
#> 6361        2025         Week 10 Year to date  Local authority    E92000001
#> 6362        2025         Week 10 Year to date  Local authority    E92000001
#> 6363        2025         Week 10 Year to date  Local authority    E92000001
#> 6364        2025         Week 10 Year to date  Local authority    E92000001
#> 6365        2025         Week 10 Year to date  Local authority    E92000001
#> 6366        2025         Week 10 Year to date  Local authority    E92000001
#> 6367        2025         Week 10 Year to date  Local authority    E92000001
#> 6368        2025         Week 10 Year to date  Local authority    E92000001
#> 6369        2025         Week 10 Year to date  Local authority    E92000001
#> 6370        2025         Week 10 Year to date  Local authority    E92000001
#> 6371        2025         Week 10 Year to date  Local authority    E92000001
#> 6372        2025         Week 10 Year to date  Local authority    E92000001
#> 6373        2025         Week 10 Year to date  Local authority    E92000001
#> 6374        2025         Week 10 Year to date  Local authority    E92000001
#> 6375        2025         Week 10 Year to date  Local authority    E92000001
#> 6376        2025         Week 10 Year to date  Local authority    E92000001
#> 6377        2025         Week 10 Year to date  Local authority    E92000001
#> 6378        2025         Week 10 Year to date  Local authority    E92000001
#> 6379        2025         Week 10 Year to date  Local authority    E92000001
#> 6380        2025         Week 10 Year to date  Local authority    E92000001
#> 6381        2025         Week 10 Year to date  Local authority    E92000001
#> 6382        2025         Week 10 Year to date  Local authority    E92000001
#> 6383        2025         Week 10 Year to date  Local authority    E92000001
#> 6384        2025         Week 10 Year to date  Local authority    E92000001
#> 6385        2025         Week 10 Year to date  Local authority    E92000001
#> 6386        2025         Week 10 Year to date  Local authority    E92000001
#> 6387        2025         Week 10 Year to date  Local authority    E92000001
#> 6388        2025         Week 10 Year to date  Local authority    E92000001
#> 6389        2025         Week 10 Year to date  Local authority    E92000001
#> 6390        2025         Week 10 Year to date  Local authority    E92000001
#> 6391        2025         Week 10 Year to date  Local authority    E92000001
#> 6392        2025         Week 10 Year to date  Local authority    E92000001
#> 6393        2025         Week 10 Year to date  Local authority    E92000001
#> 6394        2025         Week 10 Year to date  Local authority    E92000001
#> 6395        2025         Week 10 Year to date  Local authority    E92000001
#> 6396        2025         Week 10 Year to date  Local authority    E92000001
#> 6397        2025         Week 10 Year to date  Local authority    E92000001
#> 6398        2025         Week 10 Year to date  Local authority    E92000001
#> 6399        2025         Week 10 Year to date  Local authority    E92000001
#> 6400        2025         Week 10 Year to date  Local authority    E92000001
#> 6401        2025         Week 10 Year to date  Local authority    E92000001
#> 6402        2025         Week 10 Year to date  Local authority    E92000001
#> 6403        2025         Week 10 Year to date  Local authority    E92000001
#> 6404        2025         Week 10 Year to date         Regional    E92000001
#> 6405        2025         Week 10 Year to date         Regional    E92000001
#> 6406        2025         Week 10 Year to date         Regional    E92000001
#> 6407        2025         Week 10 Year to date         Regional    E92000001
#> 6408        2025         Week 10 Year to date  Local authority    E92000001
#> 6409        2025         Week 10 Year to date  Local authority    E92000001
#> 6410        2025         Week 10 Year to date  Local authority    E92000001
#> 6411        2025         Week 10 Year to date  Local authority    E92000001
#> 6412        2025         Week 10 Year to date  Local authority    E92000001
#> 6413        2025         Week 10 Year to date  Local authority    E92000001
#> 6414        2025         Week 10 Year to date  Local authority    E92000001
#> 6415        2025         Week 10 Year to date  Local authority    E92000001
#> 6416        2025         Week 10 Year to date  Local authority    E92000001
#> 6417        2025         Week 10 Year to date  Local authority    E92000001
#> 6418        2025         Week 10 Year to date  Local authority    E92000001
#> 6419        2025         Week 10 Year to date  Local authority    E92000001
#> 6420        2025         Week 10 Year to date  Local authority    E92000001
#> 6421        2025         Week 10 Year to date  Local authority    E92000001
#> 6422        2025         Week 10 Year to date  Local authority    E92000001
#> 6423        2025         Week 10 Year to date  Local authority    E92000001
#> 6424        2025         Week 10 Year to date  Local authority    E92000001
#> 6425        2025         Week 10 Year to date  Local authority    E92000001
#> 6426        2025         Week 10 Year to date  Local authority    E92000001
#> 6427        2025         Week 10 Year to date  Local authority    E92000001
#> 6428        2025         Week 10 Year to date  Local authority    E92000001
#> 6429        2025         Week 10 Year to date  Local authority    E92000001
#> 6430        2025         Week 10 Year to date  Local authority    E92000001
#> 6431        2025         Week 10 Year to date  Local authority    E92000001
#> 6432        2025         Week 10 Year to date  Local authority    E92000001
#> 6433        2025         Week 10 Year to date  Local authority    E92000001
#> 6434        2025         Week 10 Year to date  Local authority    E92000001
#> 6435        2025         Week 10 Year to date  Local authority    E92000001
#> 6436        2025         Week 10 Year to date  Local authority    E92000001
#> 6437        2025         Week 10 Year to date         Regional    E92000001
#> 6438        2025         Week 10 Year to date         Regional    E92000001
#> 6439        2025         Week 10 Year to date         Regional    E92000001
#> 6440        2025         Week 10 Year to date         Regional    E92000001
#> 6441        2025         Week 10 Year to date  Local authority    E92000001
#> 6442        2025         Week 10 Year to date  Local authority    E92000001
#> 6443        2025         Week 10 Year to date  Local authority    E92000001
#> 6444        2025         Week 10 Year to date  Local authority    E92000001
#> 6445        2025         Week 10 Year to date  Local authority    E92000001
#> 6446        2025         Week 10 Year to date  Local authority    E92000001
#> 6447        2025         Week 10 Year to date  Local authority    E92000001
#> 6448        2025         Week 10 Year to date  Local authority    E92000001
#> 6449        2025         Week 10 Year to date  Local authority    E92000001
#> 6450        2025         Week 10 Year to date  Local authority    E92000001
#> 6451        2025         Week 10 Year to date  Local authority    E92000001
#> 6452        2025         Week 10 Year to date  Local authority    E92000001
#> 6453        2025         Week 10 Year to date  Local authority    E92000001
#> 6454        2025         Week 10 Year to date  Local authority    E92000001
#> 6455        2025         Week 10 Year to date  Local authority    E92000001
#> 6456        2025         Week 10 Year to date  Local authority    E92000001
#> 6457        2025         Week 10 Year to date  Local authority    E92000001
#> 6458        2025         Week 10 Year to date  Local authority    E92000001
#> 6459        2025         Week 10 Year to date  Local authority    E92000001
#> 6460        2025         Week 10 Year to date  Local authority    E92000001
#> 6461        2025         Week 10 Year to date  Local authority    E92000001
#> 6462        2025         Week 10 Year to date  Local authority    E92000001
#> 6463        2025         Week 10 Year to date  Local authority    E92000001
#> 6464        2025         Week 10 Year to date  Local authority    E92000001
#> 6465        2025         Week 10 Year to date  Local authority    E92000001
#> 6466        2025         Week 10 Year to date  Local authority    E92000001
#> 6467        2025         Week 10 Year to date  Local authority    E92000001
#> 6468        2025         Week 10 Year to date  Local authority    E92000001
#> 6469        2025         Week 10 Year to date  Local authority    E92000001
#> 6470        2025         Week 10 Year to date  Local authority    E92000001
#> 6471        2025         Week 10 Year to date  Local authority    E92000001
#> 6472        2025         Week 10 Year to date  Local authority    E92000001
#> 6473        2025         Week 10 Year to date  Local authority    E92000001
#> 6474        2025         Week 10 Year to date  Local authority    E92000001
#> 6475        2025         Week 10 Year to date  Local authority    E92000001
#> 6476        2025         Week 10 Year to date  Local authority    E92000001
#> 6477        2025         Week 10 Year to date  Local authority    E92000001
#> 6478        2025         Week 10 Year to date  Local authority    E92000001
#> 6479        2025         Week 10 Year to date  Local authority    E92000001
#> 6480        2025         Week 10 Year to date  Local authority    E92000001
#> 6481        2025         Week 10 Year to date  Local authority    E92000001
#> 6482        2025         Week 10 Year to date  Local authority    E92000001
#> 6483        2025         Week 10 Year to date         Regional    E92000001
#> 6484        2025         Week 10 Year to date         Regional    E92000001
#> 6485        2025         Week 10 Year to date         Regional    E92000001
#> 6486        2025         Week 10 Year to date         Regional    E92000001
#> 6487        2025         Week 10 Year to date  Local authority    E92000001
#> 6488        2025         Week 10 Year to date  Local authority    E92000001
#> 6489        2025         Week 10 Year to date  Local authority    E92000001
#> 6490        2025         Week 10 Year to date  Local authority    E92000001
#> 6491        2025         Week 10 Year to date  Local authority    E92000001
#> 6492        2025         Week 10 Year to date  Local authority    E92000001
#> 6493        2025         Week 10 Year to date  Local authority    E92000001
#> 6494        2025         Week 10 Year to date  Local authority    E92000001
#> 6495        2025         Week 10 Year to date  Local authority    E92000001
#> 6496        2025         Week 10 Year to date  Local authority    E92000001
#> 6497        2025         Week 10 Year to date  Local authority    E92000001
#> 6498        2025         Week 10 Year to date  Local authority    E92000001
#> 6499        2025         Week 10 Year to date  Local authority    E92000001
#> 6500        2025         Week 10 Year to date  Local authority    E92000001
#> 6501        2025         Week 10 Year to date  Local authority    E92000001
#> 6502        2025         Week 10 Year to date  Local authority    E92000001
#> 6503        2025         Week 10 Year to date  Local authority    E92000001
#> 6504        2025         Week 10 Year to date  Local authority    E92000001
#> 6505        2025         Week 10 Year to date  Local authority    E92000001
#> 6506        2025         Week 10 Year to date  Local authority    E92000001
#> 6507        2025         Week 10 Year to date  Local authority    E92000001
#> 6508        2025         Week 10 Year to date  Local authority    E92000001
#> 6509        2025         Week 10 Year to date  Local authority    E92000001
#> 6510        2025         Week 10 Year to date  Local authority    E92000001
#> 6511        2025         Week 10 Year to date  Local authority    E92000001
#> 6512        2025         Week 10 Year to date  Local authority    E92000001
#> 6513        2025         Week 10 Year to date  Local authority    E92000001
#> 6514        2025         Week 10 Year to date  Local authority    E92000001
#> 6515        2025         Week 10 Year to date  Local authority    E92000001
#> 6516        2025         Week 10 Year to date  Local authority    E92000001
#> 6517        2025         Week 10 Year to date  Local authority    E92000001
#> 6518        2025         Week 10 Year to date  Local authority    E92000001
#> 6519        2025         Week 10 Year to date  Local authority    E92000001
#> 6520        2025         Week 10 Year to date         Regional    E92000001
#> 6521        2025         Week 10 Year to date         Regional    E92000001
#> 6522        2025         Week 10 Year to date         Regional    E92000001
#> 6523        2025         Week 10 Year to date         Regional    E92000001
#> 6524        2025         Week 10 Year to date  Local authority    E92000001
#> 6525        2025         Week 10 Year to date  Local authority    E92000001
#> 6526        2025         Week 10 Year to date  Local authority    E92000001
#> 6527        2025         Week 10 Year to date  Local authority    E92000001
#> 6528        2025         Week 10 Year to date  Local authority    E92000001
#> 6529        2025         Week 10 Year to date  Local authority    E92000001
#> 6530        2025         Week 10 Year to date  Local authority    E92000001
#> 6531        2025         Week 10 Year to date  Local authority    E92000001
#> 6532        2025         Week 10 Year to date  Local authority    E92000001
#> 6533        2025         Week 10 Year to date  Local authority    E92000001
#> 6534        2025         Week 10 Year to date  Local authority    E92000001
#> 6535        2025         Week 10 Year to date  Local authority    E92000001
#> 6536        2025         Week 10 Year to date  Local authority    E92000001
#> 6537        2025         Week 10 Year to date  Local authority    E92000001
#> 6538        2025         Week 10 Year to date  Local authority    E92000001
#> 6539        2025         Week 10 Year to date  Local authority    E92000001
#> 6540        2025         Week 10 Year to date  Local authority    E92000001
#> 6541        2025         Week 10 Year to date  Local authority    E92000001
#> 6542        2025         Week 10 Year to date  Local authority    E92000001
#> 6543        2025         Week 10 Year to date  Local authority    E92000001
#> 6544        2025         Week 10 Year to date  Local authority    E92000001
#> 6545        2025         Week 10 Year to date  Local authority    E92000001
#> 6546        2025         Week 10 Year to date  Local authority    E92000001
#> 6547        2025         Week 10 Year to date  Local authority    E92000001
#> 6548        2025         Week 10 Year to date  Local authority    E92000001
#> 6549        2025         Week 10 Year to date  Local authority    E92000001
#> 6550        2025         Week 10 Year to date  Local authority    E92000001
#> 6551        2025         Week 10 Year to date  Local authority    E92000001
#> 6552        2025         Week 10 Year to date  Local authority    E92000001
#> 6553        2025         Week 10 Year to date  Local authority    E92000001
#> 6554        2025         Week 10 Year to date  Local authority    E92000001
#> 6555        2025         Week 10 Year to date  Local authority    E92000001
#> 6556        2025         Week 10 Year to date  Local authority    E92000001
#> 6557        2025         Week 10 Year to date  Local authority    E92000001
#> 6558        2025         Week 10 Year to date  Local authority    E92000001
#> 6559        2025         Week 10 Year to date  Local authority    E92000001
#> 6560        2025         Week 10 Year to date  Local authority    E92000001
#> 6561        2025         Week 10 Year to date  Local authority    E92000001
#> 6562        2025         Week 10 Year to date  Local authority    E92000001
#> 6563        2025         Week 10 Year to date  Local authority    E92000001
#> 6564        2025         Week 10 Year to date  Local authority    E92000001
#> 6565        2025         Week 10 Year to date  Local authority    E92000001
#> 6566        2025         Week 10 Year to date  Local authority    E92000001
#> 6567        2025         Week 10 Year to date  Local authority    E92000001
#> 6568        2025         Week 10 Year to date  Local authority    E92000001
#> 6569        2025         Week 10 Year to date  Local authority    E92000001
#> 6570        2025         Week 10 Year to date  Local authority    E92000001
#> 6571        2025         Week 10 Year to date  Local authority    E92000001
#> 6572        2025         Week 10 Year to date  Local authority    E92000001
#> 6573        2025         Week 10 Year to date  Local authority    E92000001
#> 6574        2025         Week 10 Year to date  Local authority    E92000001
#> 6575        2025         Week 10 Year to date  Local authority    E92000001
#> 6576        2025         Week 10 Year to date  Local authority    E92000001
#> 6577        2025         Week 10 Year to date  Local authority    E92000001
#> 6578        2025         Week 10 Year to date  Local authority    E92000001
#> 6579        2025         Week 10 Year to date  Local authority    E92000001
#> 6580        2025         Week 10 Year to date  Local authority    E92000001
#> 6581        2025         Week 10 Year to date  Local authority    E92000001
#> 6582        2025         Week 10 Year to date  Local authority    E92000001
#> 6583        2025         Week 10 Year to date  Local authority    E92000001
#> 6584        2025         Week 10 Year to date  Local authority    E92000001
#> 6585        2025         Week 10 Year to date  Local authority    E92000001
#> 6586        2025         Week 10 Year to date  Local authority    E92000001
#> 6587        2025         Week 10 Year to date  Local authority    E92000001
#> 6588        2025         Week 10 Year to date  Local authority    E92000001
#> 6589        2025         Week 10 Year to date  Local authority    E92000001
#> 6590        2025         Week 10 Year to date  Local authority    E92000001
#> 6591        2025         Week 10 Year to date  Local authority    E92000001
#> 6592        2025         Week 10 Year to date  Local authority    E92000001
#> 6593        2025         Week 10 Year to date  Local authority    E92000001
#> 6594        2025         Week 10 Year to date  Local authority    E92000001
#> 6595        2025         Week 10 Year to date  Local authority    E92000001
#> 6596        2025         Week 10 Year to date  Local authority    E92000001
#> 6597        2025         Week 10 Year to date  Local authority    E92000001
#> 6598        2025         Week 10 Year to date  Local authority    E92000001
#> 6599        2025         Week 10 Year to date  Local authority    E92000001
#> 6600        2025         Week 10 Year to date  Local authority    E92000001
#> 6601        2025         Week 10 Year to date  Local authority    E92000001
#> 6602        2025         Week 10 Year to date  Local authority    E92000001
#> 6603        2025         Week 10 Year to date  Local authority    E92000001
#> 6604        2025         Week 10 Year to date  Local authority    E92000001
#> 6605        2025         Week 10 Year to date  Local authority    E92000001
#> 6606        2025         Week 10 Year to date  Local authority    E92000001
#> 6607        2025         Week 10 Year to date  Local authority    E92000001
#> 6608        2025         Week 10 Year to date  Local authority    E92000001
#> 6609        2025         Week 10 Year to date  Local authority    E92000001
#> 6610        2025         Week 10 Year to date  Local authority    E92000001
#> 6611        2025         Week 10 Year to date  Local authority    E92000001
#> 6612        2025         Week 10 Year to date  Local authority    E92000001
#> 6613        2025         Week 10 Year to date  Local authority    E92000001
#> 6614        2025         Week 10 Year to date  Local authority    E92000001
#> 6615        2025         Week 10 Year to date  Local authority    E92000001
#> 6616        2025         Week 10 Year to date  Local authority    E92000001
#> 6617        2025         Week 10 Year to date  Local authority    E92000001
#> 6618        2025         Week 10 Year to date  Local authority    E92000001
#> 6619        2025         Week 10 Year to date  Local authority    E92000001
#> 6620        2025         Week 10 Year to date  Local authority    E92000001
#> 6621        2025         Week 10 Year to date         Regional    E92000001
#> 6622        2025         Week 10 Year to date         Regional    E92000001
#> 6623        2025         Week 10 Year to date         Regional    E92000001
#> 6624        2025         Week 10 Year to date         Regional    E92000001
#> 6625        2025         Week 10 Year to date  Local authority    E92000001
#> 6626        2025         Week 10 Year to date  Local authority    E92000001
#> 6627        2025         Week 10 Year to date  Local authority    E92000001
#> 6628        2025         Week 10 Year to date  Local authority    E92000001
#> 6629        2025         Week 10 Year to date  Local authority    E92000001
#> 6630        2025         Week 10 Year to date  Local authority    E92000001
#> 6631        2025         Week 10 Year to date  Local authority    E92000001
#> 6632        2025         Week 10 Year to date  Local authority    E92000001
#> 6633        2025         Week 10 Year to date  Local authority    E92000001
#> 6634        2025         Week 10 Year to date  Local authority    E92000001
#> 6635        2025         Week 10 Year to date  Local authority    E92000001
#> 6636        2025         Week 10 Year to date  Local authority    E92000001
#> 6637        2025         Week 10 Year to date  Local authority    E92000001
#> 6638        2025         Week 10 Year to date  Local authority    E92000001
#> 6639        2025         Week 10 Year to date  Local authority    E92000001
#> 6640        2025         Week 10 Year to date  Local authority    E92000001
#> 6641        2025         Week 10 Year to date  Local authority    E92000001
#> 6642        2025         Week 10 Year to date  Local authority    E92000001
#> 6643        2025         Week 10 Year to date  Local authority    E92000001
#> 6644        2025         Week 10 Year to date  Local authority    E92000001
#> 6645        2025         Week 10 Year to date  Local authority    E92000001
#> 6646        2025         Week 10 Year to date  Local authority    E92000001
#> 6647        2025         Week 10 Year to date  Local authority    E92000001
#> 6648        2025         Week 10 Year to date  Local authority    E92000001
#> 6649        2025         Week 10 Year to date  Local authority    E92000001
#> 6650        2025         Week 10 Year to date  Local authority    E92000001
#> 6651        2025         Week 10 Year to date  Local authority    E92000001
#> 6652        2025         Week 10 Year to date  Local authority    E92000001
#> 6653        2025         Week 10 Year to date  Local authority    E92000001
#> 6654        2025         Week 10 Year to date  Local authority    E92000001
#> 6655        2025         Week 10 Year to date  Local authority    E92000001
#> 6656        2025         Week 10 Year to date  Local authority    E92000001
#> 6657        2025         Week 10 Year to date  Local authority    E92000001
#> 6658        2025         Week 10 Year to date  Local authority    E92000001
#> 6659        2025         Week 10 Year to date  Local authority    E92000001
#> 6660        2025         Week 10 Year to date  Local authority    E92000001
#> 6661        2025         Week 10 Year to date  Local authority    E92000001
#> 6662        2025         Week 10 Year to date  Local authority    E92000001
#> 6663        2025         Week 10 Year to date  Local authority    E92000001
#> 6664        2025         Week 10 Year to date  Local authority    E92000001
#> 6665        2025         Week 10 Year to date  Local authority    E92000001
#> 6666        2025         Week 10 Year to date  Local authority    E92000001
#> 6667        2025         Week 10 Year to date  Local authority    E92000001
#> 6668        2025         Week 10 Year to date  Local authority    E92000001
#> 6669        2025         Week 10 Year to date  Local authority    E92000001
#> 6670        2025         Week 10 Year to date  Local authority    E92000001
#> 6671        2025         Week 10 Year to date  Local authority    E92000001
#> 6672        2025         Week 10 Year to date  Local authority    E92000001
#> 6673        2025         Week 10 Year to date  Local authority    E92000001
#> 6674        2025         Week 10 Year to date  Local authority    E92000001
#> 6675        2025         Week 10 Year to date  Local authority    E92000001
#> 6676        2025         Week 10 Year to date  Local authority    E92000001
#> 6677        2025         Week 10 Year to date  Local authority    E92000001
#> 6678        2025         Week 10 Year to date  Local authority    E92000001
#> 6679        2025         Week 10 Year to date  Local authority    E92000001
#> 6680        2025         Week 10 Year to date  Local authority    E92000001
#> 6681        2025         Week 10 Year to date  Local authority    E92000001
#> 6682        2025         Week 10 Year to date         Regional    E92000001
#> 6683        2025         Week 10 Year to date         Regional    E92000001
#> 6684        2025         Week 10 Year to date         Regional    E92000001
#> 6685        2025         Week 10 Year to date         Regional    E92000001
#> 6686        2025         Week 10 Year to date  Local authority    E92000001
#> 6687        2025         Week 10 Year to date  Local authority    E92000001
#> 6688        2025         Week 10 Year to date  Local authority    E92000001
#> 6689        2025         Week 10 Year to date  Local authority    E92000001
#> 6690        2025         Week 10 Year to date  Local authority    E92000001
#> 6691        2025         Week 10 Year to date  Local authority    E92000001
#> 6692        2025         Week 10 Year to date  Local authority    E92000001
#> 6693        2025         Week 10 Year to date  Local authority    E92000001
#> 6694        2025         Week 10 Year to date  Local authority    E92000001
#> 6695        2025         Week 10 Year to date  Local authority    E92000001
#> 6696        2025         Week 10 Year to date  Local authority    E92000001
#> 6697        2025         Week 10 Year to date  Local authority    E92000001
#> 6698        2025         Week 10 Year to date  Local authority    E92000001
#> 6699        2025         Week 10 Year to date  Local authority    E92000001
#> 6700        2025         Week 10 Year to date  Local authority    E92000001
#> 6701        2025         Week 10 Year to date  Local authority    E92000001
#> 6702        2025         Week 10 Year to date  Local authority    E92000001
#> 6703        2025         Week 10 Year to date  Local authority    E92000001
#> 6704        2025         Week 10 Year to date  Local authority    E92000001
#> 6705        2025         Week 10 Year to date  Local authority    E92000001
#> 6706        2025         Week 10 Year to date  Local authority    E92000001
#> 6707        2025         Week 10 Year to date  Local authority    E92000001
#> 6708        2025         Week 10 Year to date  Local authority    E92000001
#> 6709        2025         Week 10 Year to date  Local authority    E92000001
#> 6710        2025         Week 10 Year to date  Local authority    E92000001
#> 6711        2025         Week 10 Year to date  Local authority    E92000001
#> 6712        2025         Week 10 Year to date  Local authority    E92000001
#> 6713        2025         Week 10 Year to date  Local authority    E92000001
#> 6714        2025         Week 10 Year to date  Local authority    E92000001
#> 6715        2025         Week 10 Year to date  Local authority    E92000001
#> 6716        2025         Week 10 Year to date  Local authority    E92000001
#> 6717        2025         Week 10 Year to date  Local authority    E92000001
#> 6718        2025         Week 10 Year to date  Local authority    E92000001
#> 6719        2025         Week 10 Year to date  Local authority    E92000001
#> 6720        2025         Week 10 Year to date  Local authority    E92000001
#> 6721        2025         Week 10 Year to date  Local authority    E92000001
#> 6722        2025         Week 10 Year to date  Local authority    E92000001
#> 6723        2025         Week 10 Year to date  Local authority    E92000001
#> 6724        2025         Week 10 Year to date  Local authority    E92000001
#> 6725        2025         Week 10 Year to date  Local authority    E92000001
#> 6726        2025         Week 10 Year to date  Local authority    E92000001
#> 6727        2025         Week 10 Year to date  Local authority    E92000001
#> 6728        2025         Week 10 Year to date  Local authority    E92000001
#> 6729        2025          Week 8 Year to date         National    E92000001
#> 6730        2025          Week 8 Year to date         National    E92000001
#> 6731        2025          Week 8 Year to date         National    E92000001
#> 6732        2025          Week 8 Year to date         National    E92000001
#> 6733        2025          Week 8 Year to date         Regional    E92000001
#> 6734        2025          Week 8 Year to date         Regional    E92000001
#> 6735        2025          Week 8 Year to date         Regional    E92000001
#> 6736        2025          Week 8 Year to date         Regional    E92000001
#> 6737        2025          Week 8 Year to date  Local authority    E92000001
#> 6738        2025          Week 8 Year to date  Local authority    E92000001
#> 6739        2025          Week 8 Year to date  Local authority    E92000001
#> 6740        2025          Week 8 Year to date  Local authority    E92000001
#> 6741        2025          Week 8 Year to date  Local authority    E92000001
#> 6742        2025          Week 8 Year to date  Local authority    E92000001
#> 6743        2025          Week 8 Year to date  Local authority    E92000001
#> 6744        2025          Week 8 Year to date  Local authority    E92000001
#> 6745        2025          Week 8 Year to date  Local authority    E92000001
#> 6746        2025          Week 8 Year to date  Local authority    E92000001
#> 6747        2025          Week 8 Year to date  Local authority    E92000001
#> 6748        2025          Week 8 Year to date  Local authority    E92000001
#> 6749        2025          Week 8 Year to date  Local authority    E92000001
#> 6750        2025          Week 8 Year to date  Local authority    E92000001
#> 6751        2025          Week 8 Year to date  Local authority    E92000001
#> 6752        2025          Week 8 Year to date  Local authority    E92000001
#> 6753        2025          Week 8 Year to date  Local authority    E92000001
#> 6754        2025          Week 8 Year to date  Local authority    E92000001
#> 6755        2025          Week 8 Year to date  Local authority    E92000001
#> 6756        2025          Week 8 Year to date  Local authority    E92000001
#> 6757        2025          Week 8 Year to date  Local authority    E92000001
#> 6758        2025          Week 8 Year to date  Local authority    E92000001
#> 6759        2025          Week 8 Year to date  Local authority    E92000001
#> 6760        2025          Week 8 Year to date  Local authority    E92000001
#> 6761        2025          Week 8 Year to date  Local authority    E92000001
#> 6762        2025          Week 8 Year to date  Local authority    E92000001
#> 6763        2025          Week 8 Year to date  Local authority    E92000001
#> 6764        2025          Week 8 Year to date  Local authority    E92000001
#> 6765        2025          Week 8 Year to date  Local authority    E92000001
#> 6766        2025          Week 8 Year to date  Local authority    E92000001
#> 6767        2025          Week 8 Year to date  Local authority    E92000001
#> 6768        2025          Week 8 Year to date  Local authority    E92000001
#> 6769        2025          Week 8 Year to date  Local authority    E92000001
#> 6770        2025          Week 8 Year to date  Local authority    E92000001
#> 6771        2025          Week 8 Year to date  Local authority    E92000001
#> 6772        2025          Week 8 Year to date  Local authority    E92000001
#> 6773        2025          Week 8 Year to date         Regional    E92000001
#> 6774        2025          Week 8 Year to date         Regional    E92000001
#> 6775        2025          Week 8 Year to date         Regional    E92000001
#> 6776        2025          Week 8 Year to date         Regional    E92000001
#> 6777        2025          Week 8 Year to date  Local authority    E92000001
#> 6778        2025          Week 8 Year to date  Local authority    E92000001
#> 6779        2025          Week 8 Year to date  Local authority    E92000001
#> 6780        2025          Week 8 Year to date  Local authority    E92000001
#> 6781        2025          Week 8 Year to date  Local authority    E92000001
#> 6782        2025          Week 8 Year to date  Local authority    E92000001
#> 6783        2025          Week 8 Year to date  Local authority    E92000001
#> 6784        2025          Week 8 Year to date  Local authority    E92000001
#> 6785        2025          Week 8 Year to date  Local authority    E92000001
#> 6786        2025          Week 8 Year to date  Local authority    E92000001
#> 6787        2025          Week 8 Year to date  Local authority    E92000001
#> 6788        2025          Week 8 Year to date  Local authority    E92000001
#> 6789        2025          Week 8 Year to date  Local authority    E92000001
#> 6790        2025          Week 8 Year to date  Local authority    E92000001
#> 6791        2025          Week 8 Year to date  Local authority    E92000001
#> 6792        2025          Week 8 Year to date  Local authority    E92000001
#> 6793        2025          Week 8 Year to date  Local authority    E92000001
#> 6794        2025          Week 8 Year to date  Local authority    E92000001
#> 6795        2025          Week 8 Year to date  Local authority    E92000001
#> 6796        2025          Week 8 Year to date  Local authority    E92000001
#> 6797        2025          Week 8 Year to date  Local authority    E92000001
#> 6798        2025          Week 8 Year to date  Local authority    E92000001
#> 6799        2025          Week 8 Year to date  Local authority    E92000001
#> 6800        2025          Week 8 Year to date  Local authority    E92000001
#> 6801        2025          Week 8 Year to date  Local authority    E92000001
#> 6802        2025          Week 8 Year to date  Local authority    E92000001
#> 6803        2025          Week 8 Year to date  Local authority    E92000001
#> 6804        2025          Week 8 Year to date  Local authority    E92000001
#> 6805        2025          Week 8 Year to date  Local authority    E92000001
#> 6806        2025          Week 8 Year to date  Local authority    E92000001
#> 6807        2025          Week 8 Year to date  Local authority    E92000001
#> 6808        2025          Week 8 Year to date  Local authority    E92000001
#> 6809        2025          Week 8 Year to date  Local authority    E92000001
#> 6810        2025          Week 8 Year to date  Local authority    E92000001
#> 6811        2025          Week 8 Year to date  Local authority    E92000001
#> 6812        2025          Week 8 Year to date  Local authority    E92000001
#> 6813        2025          Week 8 Year to date  Local authority    E92000001
#> 6814        2025          Week 8 Year to date  Local authority    E92000001
#> 6815        2025          Week 8 Year to date  Local authority    E92000001
#> 6816        2025          Week 8 Year to date  Local authority    E92000001
#> 6817        2025          Week 8 Year to date  Local authority    E92000001
#> 6818        2025          Week 8 Year to date  Local authority    E92000001
#> 6819        2025          Week 8 Year to date  Local authority    E92000001
#> 6820        2025          Week 8 Year to date  Local authority    E92000001
#> 6821        2025          Week 8 Year to date  Local authority    E92000001
#> 6822        2025          Week 8 Year to date  Local authority    E92000001
#> 6823        2025          Week 8 Year to date  Local authority    E92000001
#> 6824        2025          Week 8 Year to date  Local authority    E92000001
#> 6825        2025          Week 8 Year to date  Local authority    E92000001
#> 6826        2025          Week 8 Year to date  Local authority    E92000001
#> 6827        2025          Week 8 Year to date  Local authority    E92000001
#> 6828        2025          Week 8 Year to date  Local authority    E92000001
#> 6829        2025          Week 8 Year to date  Local authority    E92000001
#> 6830        2025          Week 8 Year to date  Local authority    E92000001
#> 6831        2025          Week 8 Year to date  Local authority    E92000001
#> 6832        2025          Week 8 Year to date  Local authority    E92000001
#> 6833        2025          Week 8 Year to date  Local authority    E92000001
#> 6834        2025          Week 8 Year to date  Local authority    E92000001
#> 6835        2025          Week 8 Year to date  Local authority    E92000001
#> 6836        2025          Week 8 Year to date  Local authority    E92000001
#> 6837        2025          Week 8 Year to date  Local authority    E92000001
#> 6838        2025          Week 8 Year to date  Local authority    E92000001
#> 6839        2025          Week 8 Year to date  Local authority    E92000001
#> 6840        2025          Week 8 Year to date  Local authority    E92000001
#> 6841        2025          Week 8 Year to date  Local authority    E92000001
#> 6842        2025          Week 8 Year to date  Local authority    E92000001
#> 6843        2025          Week 8 Year to date  Local authority    E92000001
#> 6844        2025          Week 8 Year to date  Local authority    E92000001
#> 6845        2025          Week 8 Year to date  Local authority    E92000001
#> 6846        2025          Week 8 Year to date  Local authority    E92000001
#> 6847        2025          Week 8 Year to date  Local authority    E92000001
#> 6848        2025          Week 8 Year to date  Local authority    E92000001
#> 6849        2025          Week 8 Year to date         Regional    E92000001
#> 6850        2025          Week 8 Year to date         Regional    E92000001
#> 6851        2025          Week 8 Year to date         Regional    E92000001
#> 6852        2025          Week 8 Year to date         Regional    E92000001
#> 6853        2025          Week 8 Year to date  Local authority    E92000001
#> 6854        2025          Week 8 Year to date  Local authority    E92000001
#> 6855        2025          Week 8 Year to date  Local authority    E92000001
#> 6856        2025          Week 8 Year to date  Local authority    E92000001
#> 6857        2025          Week 8 Year to date  Local authority    E92000001
#> 6858        2025          Week 8 Year to date  Local authority    E92000001
#> 6859        2025          Week 8 Year to date  Local authority    E92000001
#> 6860        2025          Week 8 Year to date  Local authority    E92000001
#> 6861        2025          Week 8 Year to date  Local authority    E92000001
#> 6862        2025          Week 8 Year to date  Local authority    E92000001
#> 6863        2025          Week 8 Year to date  Local authority    E92000001
#> 6864        2025          Week 8 Year to date  Local authority    E92000001
#> 6865        2025          Week 8 Year to date  Local authority    E92000001
#> 6866        2025          Week 8 Year to date  Local authority    E92000001
#> 6867        2025          Week 8 Year to date  Local authority    E92000001
#> 6868        2025          Week 8 Year to date  Local authority    E92000001
#> 6869        2025          Week 8 Year to date  Local authority    E92000001
#> 6870        2025          Week 8 Year to date  Local authority    E92000001
#> 6871        2025          Week 8 Year to date  Local authority    E92000001
#> 6872        2025          Week 8 Year to date  Local authority    E92000001
#> 6873        2025          Week 8 Year to date  Local authority    E92000001
#> 6874        2025          Week 8 Year to date  Local authority    E92000001
#> 6875        2025          Week 8 Year to date  Local authority    E92000001
#> 6876        2025          Week 8 Year to date  Local authority    E92000001
#> 6877        2025          Week 8 Year to date  Local authority    E92000001
#> 6878        2025          Week 8 Year to date  Local authority    E92000001
#> 6879        2025          Week 8 Year to date  Local authority    E92000001
#> 6880        2025          Week 8 Year to date  Local authority    E92000001
#> 6881        2025          Week 8 Year to date  Local authority    E92000001
#> 6882        2025          Week 8 Year to date  Local authority    E92000001
#> 6883        2025          Week 8 Year to date  Local authority    E92000001
#> 6884        2025          Week 8 Year to date  Local authority    E92000001
#> 6885        2025          Week 8 Year to date  Local authority    E92000001
#> 6886        2025          Week 8 Year to date  Local authority    E92000001
#> 6887        2025          Week 8 Year to date  Local authority    E92000001
#> 6888        2025          Week 8 Year to date  Local authority    E92000001
#> 6889        2025          Week 8 Year to date  Local authority    E92000001
#> 6890        2025          Week 8 Year to date  Local authority    E92000001
#> 6891        2025          Week 8 Year to date  Local authority    E92000001
#> 6892        2025          Week 8 Year to date  Local authority    E92000001
#> 6893        2025          Week 8 Year to date  Local authority    E92000001
#> 6894        2025          Week 8 Year to date  Local authority    E92000001
#> 6895        2025          Week 8 Year to date  Local authority    E92000001
#> 6896        2025          Week 8 Year to date  Local authority    E92000001
#> 6897        2025          Week 8 Year to date  Local authority    E92000001
#> 6898        2025          Week 8 Year to date         Regional    E92000001
#> 6899        2025          Week 8 Year to date         Regional    E92000001
#> 6900        2025          Week 8 Year to date         Regional    E92000001
#> 6901        2025          Week 8 Year to date         Regional    E92000001
#> 6902        2025          Week 8 Year to date  Local authority    E92000001
#> 6903        2025          Week 8 Year to date  Local authority    E92000001
#> 6904        2025          Week 8 Year to date  Local authority    E92000001
#> 6905        2025          Week 8 Year to date  Local authority    E92000001
#> 6906        2025          Week 8 Year to date  Local authority    E92000001
#> 6907        2025          Week 8 Year to date  Local authority    E92000001
#> 6908        2025          Week 8 Year to date  Local authority    E92000001
#> 6909        2025          Week 8 Year to date  Local authority    E92000001
#> 6910        2025          Week 8 Year to date  Local authority    E92000001
#> 6911        2025          Week 8 Year to date  Local authority    E92000001
#> 6912        2025          Week 8 Year to date  Local authority    E92000001
#> 6913        2025          Week 8 Year to date  Local authority    E92000001
#> 6914        2025          Week 8 Year to date  Local authority    E92000001
#> 6915        2025          Week 8 Year to date  Local authority    E92000001
#> 6916        2025          Week 8 Year to date  Local authority    E92000001
#> 6917        2025          Week 8 Year to date  Local authority    E92000001
#> 6918        2025          Week 8 Year to date  Local authority    E92000001
#> 6919        2025          Week 8 Year to date  Local authority    E92000001
#> 6920        2025          Week 8 Year to date  Local authority    E92000001
#> 6921        2025          Week 8 Year to date  Local authority    E92000001
#> 6922        2025          Week 8 Year to date  Local authority    E92000001
#> 6923        2025          Week 8 Year to date  Local authority    E92000001
#> 6924        2025          Week 8 Year to date  Local authority    E92000001
#> 6925        2025          Week 8 Year to date  Local authority    E92000001
#> 6926        2025          Week 8 Year to date  Local authority    E92000001
#> 6927        2025          Week 8 Year to date  Local authority    E92000001
#> 6928        2025          Week 8 Year to date  Local authority    E92000001
#> 6929        2025          Week 8 Year to date  Local authority    E92000001
#> 6930        2025          Week 8 Year to date  Local authority    E92000001
#> 6931        2025          Week 8 Year to date         Regional    E92000001
#> 6932        2025          Week 8 Year to date         Regional    E92000001
#> 6933        2025          Week 8 Year to date         Regional    E92000001
#> 6934        2025          Week 8 Year to date         Regional    E92000001
#> 6935        2025          Week 8 Year to date  Local authority    E92000001
#> 6936        2025          Week 8 Year to date  Local authority    E92000001
#> 6937        2025          Week 8 Year to date  Local authority    E92000001
#> 6938        2025          Week 8 Year to date  Local authority    E92000001
#> 6939        2025          Week 8 Year to date  Local authority    E92000001
#> 6940        2025          Week 8 Year to date  Local authority    E92000001
#> 6941        2025          Week 8 Year to date  Local authority    E92000001
#> 6942        2025          Week 8 Year to date  Local authority    E92000001
#> 6943        2025          Week 8 Year to date  Local authority    E92000001
#> 6944        2025          Week 8 Year to date  Local authority    E92000001
#> 6945        2025          Week 8 Year to date  Local authority    E92000001
#> 6946        2025          Week 8 Year to date  Local authority    E92000001
#> 6947        2025          Week 8 Year to date  Local authority    E92000001
#> 6948        2025          Week 8 Year to date  Local authority    E92000001
#> 6949        2025          Week 8 Year to date  Local authority    E92000001
#> 6950        2025          Week 8 Year to date  Local authority    E92000001
#> 6951        2025          Week 8 Year to date  Local authority    E92000001
#> 6952        2025          Week 8 Year to date  Local authority    E92000001
#> 6953        2025          Week 8 Year to date  Local authority    E92000001
#> 6954        2025          Week 8 Year to date  Local authority    E92000001
#> 6955        2025          Week 8 Year to date  Local authority    E92000001
#> 6956        2025          Week 8 Year to date  Local authority    E92000001
#> 6957        2025          Week 8 Year to date  Local authority    E92000001
#> 6958        2025          Week 8 Year to date  Local authority    E92000001
#> 6959        2025          Week 8 Year to date  Local authority    E92000001
#> 6960        2025          Week 8 Year to date  Local authority    E92000001
#> 6961        2025          Week 8 Year to date  Local authority    E92000001
#> 6962        2025          Week 8 Year to date  Local authority    E92000001
#> 6963        2025          Week 8 Year to date  Local authority    E92000001
#> 6964        2025          Week 8 Year to date  Local authority    E92000001
#> 6965        2025          Week 8 Year to date  Local authority    E92000001
#> 6966        2025          Week 8 Year to date  Local authority    E92000001
#> 6967        2025          Week 8 Year to date  Local authority    E92000001
#> 6968        2025          Week 8 Year to date  Local authority    E92000001
#> 6969        2025          Week 8 Year to date  Local authority    E92000001
#> 6970        2025          Week 8 Year to date  Local authority    E92000001
#> 6971        2025          Week 8 Year to date  Local authority    E92000001
#> 6972        2025          Week 8 Year to date  Local authority    E92000001
#> 6973        2025          Week 8 Year to date  Local authority    E92000001
#> 6974        2025          Week 8 Year to date  Local authority    E92000001
#> 6975        2025          Week 8 Year to date  Local authority    E92000001
#> 6976        2025          Week 8 Year to date  Local authority    E92000001
#> 6977        2025          Week 8 Year to date         Regional    E92000001
#> 6978        2025          Week 8 Year to date         Regional    E92000001
#> 6979        2025          Week 8 Year to date         Regional    E92000001
#> 6980        2025          Week 8 Year to date         Regional    E92000001
#> 6981        2025          Week 8 Year to date  Local authority    E92000001
#> 6982        2025          Week 8 Year to date  Local authority    E92000001
#> 6983        2025          Week 8 Year to date  Local authority    E92000001
#> 6984        2025          Week 8 Year to date  Local authority    E92000001
#> 6985        2025          Week 8 Year to date  Local authority    E92000001
#> 6986        2025          Week 8 Year to date  Local authority    E92000001
#> 6987        2025          Week 8 Year to date  Local authority    E92000001
#> 6988        2025          Week 8 Year to date  Local authority    E92000001
#> 6989        2025          Week 8 Year to date  Local authority    E92000001
#> 6990        2025          Week 8 Year to date  Local authority    E92000001
#> 6991        2025          Week 8 Year to date  Local authority    E92000001
#> 6992        2025          Week 8 Year to date  Local authority    E92000001
#> 6993        2025          Week 8 Year to date  Local authority    E92000001
#> 6994        2025          Week 8 Year to date  Local authority    E92000001
#> 6995        2025          Week 8 Year to date  Local authority    E92000001
#> 6996        2025          Week 8 Year to date  Local authority    E92000001
#> 6997        2025          Week 8 Year to date  Local authority    E92000001
#> 6998        2025          Week 8 Year to date  Local authority    E92000001
#> 6999        2025          Week 8 Year to date  Local authority    E92000001
#> 7000        2025          Week 8 Year to date  Local authority    E92000001
#> 7001        2025          Week 8 Year to date  Local authority    E92000001
#> 7002        2025          Week 8 Year to date  Local authority    E92000001
#> 7003        2025          Week 8 Year to date  Local authority    E92000001
#> 7004        2025          Week 8 Year to date  Local authority    E92000001
#> 7005        2025          Week 8 Year to date  Local authority    E92000001
#> 7006        2025          Week 8 Year to date  Local authority    E92000001
#> 7007        2025          Week 8 Year to date  Local authority    E92000001
#> 7008        2025          Week 8 Year to date  Local authority    E92000001
#> 7009        2025          Week 8 Year to date  Local authority    E92000001
#> 7010        2025          Week 8 Year to date  Local authority    E92000001
#> 7011        2025          Week 8 Year to date  Local authority    E92000001
#> 7012        2025          Week 8 Year to date  Local authority    E92000001
#> 7013        2025          Week 8 Year to date  Local authority    E92000001
#> 7014        2025          Week 8 Year to date         Regional    E92000001
#> 7015        2025          Week 8 Year to date         Regional    E92000001
#> 7016        2025          Week 8 Year to date         Regional    E92000001
#> 7017        2025          Week 8 Year to date         Regional    E92000001
#> 7018        2025          Week 8 Year to date  Local authority    E92000001
#> 7019        2025          Week 8 Year to date  Local authority    E92000001
#> 7020        2025          Week 8 Year to date  Local authority    E92000001
#> 7021        2025          Week 8 Year to date  Local authority    E92000001
#> 7022        2025          Week 8 Year to date  Local authority    E92000001
#> 7023        2025          Week 8 Year to date  Local authority    E92000001
#> 7024        2025          Week 8 Year to date  Local authority    E92000001
#> 7025        2025          Week 8 Year to date  Local authority    E92000001
#> 7026        2025          Week 8 Year to date  Local authority    E92000001
#> 7027        2025          Week 8 Year to date  Local authority    E92000001
#> 7028        2025          Week 8 Year to date  Local authority    E92000001
#> 7029        2025          Week 8 Year to date  Local authority    E92000001
#> 7030        2025          Week 8 Year to date  Local authority    E92000001
#> 7031        2025          Week 8 Year to date  Local authority    E92000001
#> 7032        2025          Week 8 Year to date  Local authority    E92000001
#> 7033        2025          Week 8 Year to date  Local authority    E92000001
#> 7034        2025          Week 8 Year to date  Local authority    E92000001
#> 7035        2025          Week 8 Year to date  Local authority    E92000001
#> 7036        2025          Week 8 Year to date  Local authority    E92000001
#> 7037        2025          Week 8 Year to date  Local authority    E92000001
#> 7038        2025          Week 8 Year to date  Local authority    E92000001
#> 7039        2025          Week 8 Year to date  Local authority    E92000001
#> 7040        2025          Week 8 Year to date  Local authority    E92000001
#> 7041        2025          Week 8 Year to date  Local authority    E92000001
#> 7042        2025          Week 8 Year to date  Local authority    E92000001
#> 7043        2025          Week 8 Year to date  Local authority    E92000001
#> 7044        2025          Week 8 Year to date  Local authority    E92000001
#> 7045        2025          Week 8 Year to date  Local authority    E92000001
#> 7046        2025          Week 8 Year to date  Local authority    E92000001
#> 7047        2025          Week 8 Year to date  Local authority    E92000001
#> 7048        2025          Week 8 Year to date  Local authority    E92000001
#> 7049        2025          Week 8 Year to date  Local authority    E92000001
#> 7050        2025          Week 8 Year to date  Local authority    E92000001
#> 7051        2025          Week 8 Year to date  Local authority    E92000001
#> 7052        2025          Week 8 Year to date  Local authority    E92000001
#> 7053        2025          Week 8 Year to date  Local authority    E92000001
#> 7054        2025          Week 8 Year to date  Local authority    E92000001
#> 7055        2025          Week 8 Year to date  Local authority    E92000001
#> 7056        2025          Week 8 Year to date  Local authority    E92000001
#> 7057        2025          Week 8 Year to date  Local authority    E92000001
#> 7058        2025          Week 8 Year to date  Local authority    E92000001
#> 7059        2025          Week 8 Year to date  Local authority    E92000001
#> 7060        2025          Week 8 Year to date  Local authority    E92000001
#> 7061        2025          Week 8 Year to date  Local authority    E92000001
#> 7062        2025          Week 8 Year to date  Local authority    E92000001
#> 7063        2025          Week 8 Year to date  Local authority    E92000001
#> 7064        2025          Week 8 Year to date  Local authority    E92000001
#> 7065        2025          Week 8 Year to date  Local authority    E92000001
#> 7066        2025          Week 8 Year to date  Local authority    E92000001
#> 7067        2025          Week 8 Year to date  Local authority    E92000001
#> 7068        2025          Week 8 Year to date  Local authority    E92000001
#> 7069        2025          Week 8 Year to date  Local authority    E92000001
#> 7070        2025          Week 8 Year to date  Local authority    E92000001
#> 7071        2025          Week 8 Year to date  Local authority    E92000001
#> 7072        2025          Week 8 Year to date  Local authority    E92000001
#> 7073        2025          Week 8 Year to date  Local authority    E92000001
#> 7074        2025          Week 8 Year to date  Local authority    E92000001
#> 7075        2025          Week 8 Year to date  Local authority    E92000001
#> 7076        2025          Week 8 Year to date  Local authority    E92000001
#> 7077        2025          Week 8 Year to date  Local authority    E92000001
#> 7078        2025          Week 8 Year to date  Local authority    E92000001
#> 7079        2025          Week 8 Year to date  Local authority    E92000001
#> 7080        2025          Week 8 Year to date  Local authority    E92000001
#> 7081        2025          Week 8 Year to date  Local authority    E92000001
#> 7082        2025          Week 8 Year to date  Local authority    E92000001
#> 7083        2025          Week 8 Year to date  Local authority    E92000001
#> 7084        2025          Week 8 Year to date  Local authority    E92000001
#> 7085        2025          Week 8 Year to date  Local authority    E92000001
#> 7086        2025          Week 8 Year to date  Local authority    E92000001
#> 7087        2025          Week 8 Year to date  Local authority    E92000001
#> 7088        2025          Week 8 Year to date  Local authority    E92000001
#> 7089        2025          Week 8 Year to date  Local authority    E92000001
#> 7090        2025          Week 8 Year to date  Local authority    E92000001
#> 7091        2025          Week 8 Year to date  Local authority    E92000001
#> 7092        2025          Week 8 Year to date  Local authority    E92000001
#> 7093        2025          Week 8 Year to date  Local authority    E92000001
#> 7094        2025          Week 8 Year to date  Local authority    E92000001
#> 7095        2025          Week 8 Year to date  Local authority    E92000001
#> 7096        2025          Week 8 Year to date  Local authority    E92000001
#> 7097        2025          Week 8 Year to date  Local authority    E92000001
#> 7098        2025          Week 8 Year to date  Local authority    E92000001
#> 7099        2025          Week 8 Year to date  Local authority    E92000001
#> 7100        2025          Week 8 Year to date  Local authority    E92000001
#> 7101        2025          Week 8 Year to date  Local authority    E92000001
#> 7102        2025          Week 8 Year to date  Local authority    E92000001
#> 7103        2025          Week 8 Year to date  Local authority    E92000001
#> 7104        2025          Week 8 Year to date  Local authority    E92000001
#> 7105        2025          Week 8 Year to date  Local authority    E92000001
#> 7106        2025          Week 8 Year to date  Local authority    E92000001
#> 7107        2025          Week 8 Year to date  Local authority    E92000001
#> 7108        2025          Week 8 Year to date  Local authority    E92000001
#> 7109        2025          Week 8 Year to date  Local authority    E92000001
#> 7110        2025          Week 8 Year to date  Local authority    E92000001
#> 7111        2025          Week 8 Year to date  Local authority    E92000001
#> 7112        2025          Week 8 Year to date  Local authority    E92000001
#> 7113        2025          Week 8 Year to date  Local authority    E92000001
#> 7114        2025          Week 8 Year to date  Local authority    E92000001
#> 7115        2025          Week 8 Year to date         Regional    E92000001
#> 7116        2025          Week 8 Year to date         Regional    E92000001
#> 7117        2025          Week 8 Year to date         Regional    E92000001
#> 7118        2025          Week 8 Year to date         Regional    E92000001
#> 7119        2025          Week 8 Year to date  Local authority    E92000001
#> 7120        2025          Week 8 Year to date  Local authority    E92000001
#> 7121        2025          Week 8 Year to date  Local authority    E92000001
#> 7122        2025          Week 8 Year to date  Local authority    E92000001
#> 7123        2025          Week 8 Year to date  Local authority    E92000001
#> 7124        2025          Week 8 Year to date  Local authority    E92000001
#> 7125        2025          Week 8 Year to date  Local authority    E92000001
#> 7126        2025          Week 8 Year to date  Local authority    E92000001
#> 7127        2025          Week 8 Year to date  Local authority    E92000001
#> 7128        2025          Week 8 Year to date  Local authority    E92000001
#> 7129        2025          Week 8 Year to date  Local authority    E92000001
#> 7130        2025          Week 8 Year to date  Local authority    E92000001
#> 7131        2025          Week 8 Year to date  Local authority    E92000001
#> 7132        2025          Week 8 Year to date  Local authority    E92000001
#> 7133        2025          Week 8 Year to date  Local authority    E92000001
#> 7134        2025          Week 8 Year to date  Local authority    E92000001
#> 7135        2025          Week 8 Year to date  Local authority    E92000001
#> 7136        2025          Week 8 Year to date  Local authority    E92000001
#> 7137        2025          Week 8 Year to date  Local authority    E92000001
#> 7138        2025          Week 8 Year to date  Local authority    E92000001
#> 7139        2025          Week 8 Year to date  Local authority    E92000001
#> 7140        2025          Week 8 Year to date  Local authority    E92000001
#> 7141        2025          Week 8 Year to date  Local authority    E92000001
#> 7142        2025          Week 8 Year to date  Local authority    E92000001
#> 7143        2025          Week 8 Year to date  Local authority    E92000001
#> 7144        2025          Week 8 Year to date  Local authority    E92000001
#> 7145        2025          Week 8 Year to date  Local authority    E92000001
#> 7146        2025          Week 8 Year to date  Local authority    E92000001
#> 7147        2025          Week 8 Year to date  Local authority    E92000001
#> 7148        2025          Week 8 Year to date  Local authority    E92000001
#> 7149        2025          Week 8 Year to date  Local authority    E92000001
#> 7150        2025          Week 8 Year to date  Local authority    E92000001
#> 7151        2025          Week 8 Year to date  Local authority    E92000001
#> 7152        2025          Week 8 Year to date  Local authority    E92000001
#> 7153        2025          Week 8 Year to date  Local authority    E92000001
#> 7154        2025          Week 8 Year to date  Local authority    E92000001
#> 7155        2025          Week 8 Year to date  Local authority    E92000001
#> 7156        2025          Week 8 Year to date  Local authority    E92000001
#> 7157        2025          Week 8 Year to date  Local authority    E92000001
#> 7158        2025          Week 8 Year to date  Local authority    E92000001
#> 7159        2025          Week 8 Year to date  Local authority    E92000001
#> 7160        2025          Week 8 Year to date  Local authority    E92000001
#> 7161        2025          Week 8 Year to date  Local authority    E92000001
#> 7162        2025          Week 8 Year to date  Local authority    E92000001
#> 7163        2025          Week 8 Year to date  Local authority    E92000001
#> 7164        2025          Week 8 Year to date  Local authority    E92000001
#> 7165        2025          Week 8 Year to date  Local authority    E92000001
#> 7166        2025          Week 8 Year to date  Local authority    E92000001
#> 7167        2025          Week 8 Year to date  Local authority    E92000001
#> 7168        2025          Week 8 Year to date  Local authority    E92000001
#> 7169        2025          Week 8 Year to date  Local authority    E92000001
#> 7170        2025          Week 8 Year to date  Local authority    E92000001
#> 7171        2025          Week 8 Year to date  Local authority    E92000001
#> 7172        2025          Week 8 Year to date  Local authority    E92000001
#> 7173        2025          Week 8 Year to date  Local authority    E92000001
#> 7174        2025          Week 8 Year to date  Local authority    E92000001
#> 7175        2025          Week 8 Year to date  Local authority    E92000001
#> 7176        2025          Week 8 Year to date         Regional    E92000001
#> 7177        2025          Week 8 Year to date         Regional    E92000001
#> 7178        2025          Week 8 Year to date         Regional    E92000001
#> 7179        2025          Week 8 Year to date         Regional    E92000001
#> 7180        2025          Week 8 Year to date  Local authority    E92000001
#> 7181        2025          Week 8 Year to date  Local authority    E92000001
#> 7182        2025          Week 8 Year to date  Local authority    E92000001
#> 7183        2025          Week 8 Year to date  Local authority    E92000001
#> 7184        2025          Week 8 Year to date  Local authority    E92000001
#> 7185        2025          Week 8 Year to date  Local authority    E92000001
#> 7186        2025          Week 8 Year to date  Local authority    E92000001
#> 7187        2025          Week 8 Year to date  Local authority    E92000001
#> 7188        2025          Week 8 Year to date  Local authority    E92000001
#> 7189        2025          Week 8 Year to date  Local authority    E92000001
#> 7190        2025          Week 8 Year to date  Local authority    E92000001
#> 7191        2025          Week 8 Year to date  Local authority    E92000001
#> 7192        2025          Week 8 Year to date  Local authority    E92000001
#> 7193        2025          Week 8 Year to date  Local authority    E92000001
#> 7194        2025          Week 8 Year to date  Local authority    E92000001
#> 7195        2025          Week 8 Year to date  Local authority    E92000001
#> 7196        2025          Week 8 Year to date  Local authority    E92000001
#> 7197        2025          Week 8 Year to date  Local authority    E92000001
#> 7198        2025          Week 8 Year to date  Local authority    E92000001
#> 7199        2025          Week 8 Year to date  Local authority    E92000001
#> 7200        2025          Week 8 Year to date  Local authority    E92000001
#> 7201        2025          Week 8 Year to date  Local authority    E92000001
#> 7202        2025          Week 8 Year to date  Local authority    E92000001
#> 7203        2025          Week 8 Year to date  Local authority    E92000001
#> 7204        2025          Week 8 Year to date  Local authority    E92000001
#> 7205        2025          Week 8 Year to date  Local authority    E92000001
#> 7206        2025          Week 8 Year to date  Local authority    E92000001
#> 7207        2025          Week 8 Year to date  Local authority    E92000001
#> 7208        2025          Week 8 Year to date  Local authority    E92000001
#> 7209        2025          Week 8 Year to date  Local authority    E92000001
#> 7210        2025          Week 8 Year to date  Local authority    E92000001
#> 7211        2025          Week 8 Year to date  Local authority    E92000001
#> 7212        2025          Week 8 Year to date  Local authority    E92000001
#> 7213        2025          Week 8 Year to date  Local authority    E92000001
#> 7214        2025          Week 8 Year to date  Local authority    E92000001
#> 7215        2025          Week 8 Year to date  Local authority    E92000001
#> 7216        2025          Week 8 Year to date  Local authority    E92000001
#> 7217        2025          Week 8 Year to date  Local authority    E92000001
#> 7218        2025          Week 8 Year to date  Local authority    E92000001
#> 7219        2025          Week 8 Year to date  Local authority    E92000001
#> 7220        2025          Week 8 Year to date  Local authority    E92000001
#> 7221        2025          Week 8 Year to date  Local authority    E92000001
#> 7222        2025          Week 8 Year to date  Local authority    E92000001
#>      country_name region_code              region_name new_la_code
#> 1         England        <NA>                     <NA>        <NA>
#> 2         England        <NA>                     <NA>        <NA>
#> 3         England        <NA>                     <NA>        <NA>
#> 4         England        <NA>                     <NA>        <NA>
#> 5         England   E12000001               North East        <NA>
#> 6         England   E12000001               North East        <NA>
#> 7         England   E12000001               North East        <NA>
#> 8         England   E12000001               North East        <NA>
#> 9         England   E12000001               North East   E06000001
#> 10        England   E12000001               North East   E06000001
#> 11        England   E12000001               North East   E06000001
#> 12        England   E12000001               North East   E06000001
#> 13        England   E12000001               North East   E06000002
#> 14        England   E12000001               North East   E06000002
#> 15        England   E12000001               North East   E06000002
#> 16        England   E12000001               North East   E06000002
#> 17        England   E12000001               North East   E06000003
#> 18        England   E12000001               North East   E06000003
#> 19        England   E12000001               North East   E06000003
#> 20        England   E12000001               North East   E06000003
#> 21        England   E12000001               North East   E06000004
#> 22        England   E12000001               North East   E06000004
#> 23        England   E12000001               North East   E06000004
#> 24        England   E12000001               North East   E06000004
#> 25        England   E12000001               North East   E06000005
#> 26        England   E12000001               North East   E06000005
#> 27        England   E12000001               North East   E06000005
#> 28        England   E12000001               North East   E06000005
#> 29        England   E12000001               North East   E06000047
#> 30        England   E12000001               North East   E06000047
#> 31        England   E12000001               North East   E06000047
#> 32        England   E12000001               North East   E06000047
#> 33        England   E12000001               North East   E06000057
#> 34        England   E12000001               North East   E06000057
#> 35        England   E12000001               North East   E06000057
#> 36        England   E12000001               North East   E06000057
#> 37        England   E12000001               North East   E08000021
#> 38        England   E12000001               North East   E08000021
#> 39        England   E12000001               North East   E08000021
#> 40        England   E12000001               North East   E08000021
#> 41        England   E12000001               North East   E08000022
#> 42        England   E12000001               North East   E08000022
#> 43        England   E12000001               North East   E08000022
#> 44        England   E12000001               North East   E08000022
#> 45        England   E12000001               North East   E08000023
#> 46        England   E12000001               North East   E08000023
#> 47        England   E12000001               North East   E08000023
#> 48        England   E12000001               North East   E08000023
#> 49        England   E12000001               North East   E08000024
#> 50        England   E12000001               North East   E08000024
#> 51        England   E12000001               North East   E08000024
#> 52        England   E12000001               North East   E08000024
#> 53        England   E12000001               North East   E08000037
#> 54        England   E12000001               North East   E08000037
#> 55        England   E12000001               North East   E08000037
#> 56        England   E12000001               North East   E08000037
#> 57        England   E12000002               North West        <NA>
#> 58        England   E12000002               North West        <NA>
#> 59        England   E12000002               North West        <NA>
#> 60        England   E12000002               North West        <NA>
#> 61        England   E12000002               North West   E06000006
#> 62        England   E12000002               North West   E06000006
#> 63        England   E12000002               North West   E06000006
#> 64        England   E12000002               North West   E06000006
#> 65        England   E12000002               North West   E06000007
#> 66        England   E12000002               North West   E06000007
#> 67        England   E12000002               North West   E06000007
#> 68        England   E12000002               North West   E06000007
#> 69        England   E12000002               North West   E06000008
#> 70        England   E12000002               North West   E06000008
#> 71        England   E12000002               North West   E06000008
#> 72        England   E12000002               North West   E06000008
#> 73        England   E12000002               North West   E06000009
#> 74        England   E12000002               North West   E06000009
#> 75        England   E12000002               North West   E06000009
#> 76        England   E12000002               North West   E06000009
#> 77        England   E12000002               North West   E06000049
#> 78        England   E12000002               North West   E06000049
#> 79        England   E12000002               North West   E06000049
#> 80        England   E12000002               North West   E06000049
#> 81        England   E12000002               North West   E06000050
#> 82        England   E12000002               North West   E06000050
#> 83        England   E12000002               North West   E06000050
#> 84        England   E12000002               North West   E06000050
#> 85        England   E12000002               North West   E06000063
#> 86        England   E12000002               North West   E06000063
#> 87        England   E12000002               North West   E06000063
#> 88        England   E12000002               North West   E06000063
#> 89        England   E12000002               North West   E06000064
#> 90        England   E12000002               North West   E06000064
#> 91        England   E12000002               North West   E06000064
#> 92        England   E12000002               North West   E06000064
#> 93        England   E12000002               North West   E08000001
#> 94        England   E12000002               North West   E08000001
#> 95        England   E12000002               North West   E08000001
#> 96        England   E12000002               North West   E08000001
#> 97        England   E12000002               North West   E08000002
#> 98        England   E12000002               North West   E08000002
#> 99        England   E12000002               North West   E08000002
#> 100       England   E12000002               North West   E08000002
#> 101       England   E12000002               North West   E08000003
#> 102       England   E12000002               North West   E08000003
#> 103       England   E12000002               North West   E08000003
#> 104       England   E12000002               North West   E08000003
#> 105       England   E12000002               North West   E08000004
#> 106       England   E12000002               North West   E08000004
#> 107       England   E12000002               North West   E08000004
#> 108       England   E12000002               North West   E08000004
#> 109       England   E12000002               North West   E08000005
#> 110       England   E12000002               North West   E08000005
#> 111       England   E12000002               North West   E08000005
#> 112       England   E12000002               North West   E08000005
#> 113       England   E12000002               North West   E08000006
#> 114       England   E12000002               North West   E08000006
#> 115       England   E12000002               North West   E08000006
#> 116       England   E12000002               North West   E08000006
#> 117       England   E12000002               North West   E08000007
#> 118       England   E12000002               North West   E08000007
#> 119       England   E12000002               North West   E08000007
#> 120       England   E12000002               North West   E08000007
#> 121       England   E12000002               North West   E08000008
#> 122       England   E12000002               North West   E08000008
#> 123       England   E12000002               North West   E08000008
#> 124       England   E12000002               North West   E08000008
#> 125       England   E12000002               North West   E08000009
#> 126       England   E12000002               North West   E08000009
#> 127       England   E12000002               North West   E08000009
#> 128       England   E12000002               North West   E08000009
#> 129       England   E12000002               North West   E08000010
#> 130       England   E12000002               North West   E08000010
#> 131       England   E12000002               North West   E08000010
#> 132       England   E12000002               North West   E08000010
#> 133       England   E12000002               North West   E08000011
#> 134       England   E12000002               North West   E08000011
#> 135       England   E12000002               North West   E08000011
#> 136       England   E12000002               North West   E08000011
#> 137       England   E12000002               North West   E08000012
#> 138       England   E12000002               North West   E08000012
#> 139       England   E12000002               North West   E08000012
#> 140       England   E12000002               North West   E08000012
#> 141       England   E12000002               North West   E08000013
#> 142       England   E12000002               North West   E08000013
#> 143       England   E12000002               North West   E08000013
#> 144       England   E12000002               North West   E08000013
#> 145       England   E12000002               North West   E08000014
#> 146       England   E12000002               North West   E08000014
#> 147       England   E12000002               North West   E08000014
#> 148       England   E12000002               North West   E08000014
#> 149       England   E12000002               North West   E08000015
#> 150       England   E12000002               North West   E08000015
#> 151       England   E12000002               North West   E08000015
#> 152       England   E12000002               North West   E08000015
#> 153       England   E12000002               North West   E10000017
#> 154       England   E12000002               North West   E10000017
#> 155       England   E12000002               North West   E10000017
#> 156       England   E12000002               North West   E10000017
#> 157       England   E12000003 Yorkshire and The Humber        <NA>
#> 158       England   E12000003 Yorkshire and The Humber        <NA>
#> 159       England   E12000003 Yorkshire and The Humber        <NA>
#> 160       England   E12000003 Yorkshire and The Humber        <NA>
#> 161       England   E12000003 Yorkshire and The Humber   E06000010
#> 162       England   E12000003 Yorkshire and The Humber   E06000010
#> 163       England   E12000003 Yorkshire and The Humber   E06000010
#> 164       England   E12000003 Yorkshire and The Humber   E06000010
#> 165       England   E12000003 Yorkshire and The Humber   E06000011
#> 166       England   E12000003 Yorkshire and The Humber   E06000011
#> 167       England   E12000003 Yorkshire and The Humber   E06000011
#> 168       England   E12000003 Yorkshire and The Humber   E06000011
#> 169       England   E12000003 Yorkshire and The Humber   E06000012
#> 170       England   E12000003 Yorkshire and The Humber   E06000012
#> 171       England   E12000003 Yorkshire and The Humber   E06000012
#> 172       England   E12000003 Yorkshire and The Humber   E06000012
#> 173       England   E12000003 Yorkshire and The Humber   E06000013
#> 174       England   E12000003 Yorkshire and The Humber   E06000013
#> 175       England   E12000003 Yorkshire and The Humber   E06000013
#> 176       England   E12000003 Yorkshire and The Humber   E06000013
#> 177       England   E12000003 Yorkshire and The Humber   E06000014
#> 178       England   E12000003 Yorkshire and The Humber   E06000014
#> 179       England   E12000003 Yorkshire and The Humber   E06000014
#> 180       England   E12000003 Yorkshire and The Humber   E06000014
#> 181       England   E12000003 Yorkshire and The Humber   E06000065
#> 182       England   E12000003 Yorkshire and The Humber   E06000065
#> 183       England   E12000003 Yorkshire and The Humber   E06000065
#> 184       England   E12000003 Yorkshire and The Humber   E06000065
#> 185       England   E12000003 Yorkshire and The Humber   E08000016
#> 186       England   E12000003 Yorkshire and The Humber   E08000016
#> 187       England   E12000003 Yorkshire and The Humber   E08000016
#> 188       England   E12000003 Yorkshire and The Humber   E08000016
#> 189       England   E12000003 Yorkshire and The Humber   E08000017
#> 190       England   E12000003 Yorkshire and The Humber   E08000017
#> 191       England   E12000003 Yorkshire and The Humber   E08000017
#> 192       England   E12000003 Yorkshire and The Humber   E08000017
#> 193       England   E12000003 Yorkshire and The Humber   E08000018
#> 194       England   E12000003 Yorkshire and The Humber   E08000018
#> 195       England   E12000003 Yorkshire and The Humber   E08000018
#> 196       England   E12000003 Yorkshire and The Humber   E08000018
#> 197       England   E12000003 Yorkshire and The Humber   E08000019
#> 198       England   E12000003 Yorkshire and The Humber   E08000019
#> 199       England   E12000003 Yorkshire and The Humber   E08000019
#> 200       England   E12000003 Yorkshire and The Humber   E08000019
#> 201       England   E12000003 Yorkshire and The Humber   E08000032
#> 202       England   E12000003 Yorkshire and The Humber   E08000032
#> 203       England   E12000003 Yorkshire and The Humber   E08000032
#> 204       England   E12000003 Yorkshire and The Humber   E08000032
#> 205       England   E12000003 Yorkshire and The Humber   E08000033
#> 206       England   E12000003 Yorkshire and The Humber   E08000033
#> 207       England   E12000003 Yorkshire and The Humber   E08000033
#> 208       England   E12000003 Yorkshire and The Humber   E08000033
#> 209       England   E12000003 Yorkshire and The Humber   E08000034
#> 210       England   E12000003 Yorkshire and The Humber   E08000034
#> 211       England   E12000003 Yorkshire and The Humber   E08000034
#> 212       England   E12000003 Yorkshire and The Humber   E08000034
#> 213       England   E12000003 Yorkshire and The Humber   E08000035
#> 214       England   E12000003 Yorkshire and The Humber   E08000035
#> 215       England   E12000003 Yorkshire and The Humber   E08000035
#> 216       England   E12000003 Yorkshire and The Humber   E08000035
#> 217       England   E12000003 Yorkshire and The Humber   E08000036
#> 218       England   E12000003 Yorkshire and The Humber   E08000036
#> 219       England   E12000003 Yorkshire and The Humber   E08000036
#> 220       England   E12000003 Yorkshire and The Humber   E08000036
#> 221       England   E12000004            East Midlands        <NA>
#> 222       England   E12000004            East Midlands        <NA>
#> 223       England   E12000004            East Midlands        <NA>
#> 224       England   E12000004            East Midlands        <NA>
#> 225       England   E12000004            East Midlands   E06000015
#> 226       England   E12000004            East Midlands   E06000015
#> 227       England   E12000004            East Midlands   E06000015
#> 228       England   E12000004            East Midlands   E06000015
#> 229       England   E12000004            East Midlands   E06000016
#> 230       England   E12000004            East Midlands   E06000016
#> 231       England   E12000004            East Midlands   E06000016
#> 232       England   E12000004            East Midlands   E06000016
#> 233       England   E12000004            East Midlands   E06000017
#> 234       England   E12000004            East Midlands   E06000017
#> 235       England   E12000004            East Midlands   E06000017
#> 236       England   E12000004            East Midlands   E06000018
#> 237       England   E12000004            East Midlands   E06000018
#> 238       England   E12000004            East Midlands   E06000018
#> 239       England   E12000004            East Midlands   E06000018
#> 240       England   E12000004            East Midlands   E06000061
#> 241       England   E12000004            East Midlands   E06000061
#> 242       England   E12000004            East Midlands   E06000061
#> 243       England   E12000004            East Midlands   E06000061
#> 244       England   E12000004            East Midlands   E06000062
#> 245       England   E12000004            East Midlands   E06000062
#> 246       England   E12000004            East Midlands   E06000062
#> 247       England   E12000004            East Midlands   E06000062
#> 248       England   E12000004            East Midlands   E10000007
#> 249       England   E12000004            East Midlands   E10000007
#> 250       England   E12000004            East Midlands   E10000007
#> 251       England   E12000004            East Midlands   E10000007
#> 252       England   E12000004            East Midlands   E10000018
#> 253       England   E12000004            East Midlands   E10000018
#> 254       England   E12000004            East Midlands   E10000018
#> 255       England   E12000004            East Midlands   E10000018
#> 256       England   E12000004            East Midlands   E10000019
#> 257       England   E12000004            East Midlands   E10000019
#> 258       England   E12000004            East Midlands   E10000019
#> 259       England   E12000004            East Midlands   E10000019
#> 260       England   E12000004            East Midlands   E10000024
#> 261       England   E12000004            East Midlands   E10000024
#> 262       England   E12000004            East Midlands   E10000024
#> 263       England   E12000004            East Midlands   E10000024
#> 264       England   E12000005            West Midlands        <NA>
#> 265       England   E12000005            West Midlands        <NA>
#> 266       England   E12000005            West Midlands        <NA>
#> 267       England   E12000005            West Midlands        <NA>
#> 268       England   E12000005            West Midlands   E06000019
#> 269       England   E12000005            West Midlands   E06000019
#> 270       England   E12000005            West Midlands   E06000019
#> 271       England   E12000005            West Midlands   E06000019
#> 272       England   E12000005            West Midlands   E06000020
#> 273       England   E12000005            West Midlands   E06000020
#> 274       England   E12000005            West Midlands   E06000020
#> 275       England   E12000005            West Midlands   E06000020
#> 276       England   E12000005            West Midlands   E06000021
#> 277       England   E12000005            West Midlands   E06000021
#> 278       England   E12000005            West Midlands   E06000021
#> 279       England   E12000005            West Midlands   E06000021
#> 280       England   E12000005            West Midlands   E06000051
#> 281       England   E12000005            West Midlands   E06000051
#> 282       England   E12000005            West Midlands   E06000051
#> 283       England   E12000005            West Midlands   E06000051
#> 284       England   E12000005            West Midlands   E08000025
#> 285       England   E12000005            West Midlands   E08000025
#> 286       England   E12000005            West Midlands   E08000025
#> 287       England   E12000005            West Midlands   E08000025
#> 288       England   E12000005            West Midlands   E08000026
#> 289       England   E12000005            West Midlands   E08000026
#> 290       England   E12000005            West Midlands   E08000026
#> 291       England   E12000005            West Midlands   E08000026
#> 292       England   E12000005            West Midlands   E08000027
#> 293       England   E12000005            West Midlands   E08000027
#> 294       England   E12000005            West Midlands   E08000027
#> 295       England   E12000005            West Midlands   E08000027
#> 296       England   E12000005            West Midlands   E08000028
#> 297       England   E12000005            West Midlands   E08000028
#> 298       England   E12000005            West Midlands   E08000028
#> 299       England   E12000005            West Midlands   E08000028
#> 300       England   E12000005            West Midlands   E08000029
#> 301       England   E12000005            West Midlands   E08000029
#> 302       England   E12000005            West Midlands   E08000029
#> 303       England   E12000005            West Midlands   E08000029
#> 304       England   E12000005            West Midlands   E08000030
#> 305       England   E12000005            West Midlands   E08000030
#> 306       England   E12000005            West Midlands   E08000030
#> 307       England   E12000005            West Midlands   E08000030
#> 308       England   E12000005            West Midlands   E08000031
#> 309       England   E12000005            West Midlands   E08000031
#> 310       England   E12000005            West Midlands   E08000031
#> 311       England   E12000005            West Midlands   E08000031
#> 312       England   E12000005            West Midlands   E10000028
#> 313       England   E12000005            West Midlands   E10000028
#> 314       England   E12000005            West Midlands   E10000028
#> 315       England   E12000005            West Midlands   E10000028
#> 316       England   E12000005            West Midlands   E10000031
#> 317       England   E12000005            West Midlands   E10000031
#> 318       England   E12000005            West Midlands   E10000031
#> 319       England   E12000005            West Midlands   E10000031
#> 320       England   E12000005            West Midlands   E10000034
#> 321       England   E12000005            West Midlands   E10000034
#> 322       England   E12000005            West Midlands   E10000034
#> 323       England   E12000005            West Midlands   E10000034
#> 324       England   E12000006          East of England        <NA>
#> 325       England   E12000006          East of England        <NA>
#> 326       England   E12000006          East of England        <NA>
#> 327       England   E12000006          East of England        <NA>
#> 328       England   E12000006          East of England   E06000031
#> 329       England   E12000006          East of England   E06000031
#> 330       England   E12000006          East of England   E06000031
#> 331       England   E12000006          East of England   E06000031
#> 332       England   E12000006          East of England   E06000032
#> 333       England   E12000006          East of England   E06000032
#> 334       England   E12000006          East of England   E06000032
#> 335       England   E12000006          East of England   E06000032
#> 336       England   E12000006          East of England   E06000033
#> 337       England   E12000006          East of England   E06000033
#> 338       England   E12000006          East of England   E06000033
#> 339       England   E12000006          East of England   E06000033
#> 340       England   E12000006          East of England   E06000034
#> 341       England   E12000006          East of England   E06000034
#> 342       England   E12000006          East of England   E06000034
#> 343       England   E12000006          East of England   E06000034
#> 344       England   E12000006          East of England   E06000055
#> 345       England   E12000006          East of England   E06000055
#> 346       England   E12000006          East of England   E06000055
#> 347       England   E12000006          East of England   E06000055
#> 348       England   E12000006          East of England   E06000056
#> 349       England   E12000006          East of England   E06000056
#> 350       England   E12000006          East of England   E06000056
#> 351       England   E12000006          East of England   E06000056
#> 352       England   E12000006          East of England   E10000003
#> 353       England   E12000006          East of England   E10000003
#> 354       England   E12000006          East of England   E10000003
#> 355       England   E12000006          East of England   E10000003
#> 356       England   E12000006          East of England   E10000012
#> 357       England   E12000006          East of England   E10000012
#> 358       England   E12000006          East of England   E10000012
#> 359       England   E12000006          East of England   E10000012
#> 360       England   E12000006          East of England   E10000015
#> 361       England   E12000006          East of England   E10000015
#> 362       England   E12000006          East of England   E10000015
#> 363       England   E12000006          East of England   E10000015
#> 364       England   E12000006          East of England   E10000020
#> 365       England   E12000006          East of England   E10000020
#> 366       England   E12000006          East of England   E10000020
#> 367       England   E12000006          East of England   E10000020
#> 368       England   E12000006          East of England   E10000029
#> 369       England   E12000006          East of England   E10000029
#> 370       England   E12000006          East of England   E10000029
#> 371       England   E12000006          East of England   E10000029
#> 372       England   E12000007                   London        <NA>
#> 373       England   E12000007                   London        <NA>
#> 374       England   E12000007                   London        <NA>
#> 375       England   E12000007                   London        <NA>
#> 376       England   E12000007                   London   E09000001
#> 377       England   E12000007                   London   E09000001
#> 378       England   E12000007                   London   E09000002
#> 379       England   E12000007                   London   E09000002
#> 380       England   E12000007                   London   E09000002
#> 381       England   E12000007                   London   E09000002
#> 382       England   E12000007                   London   E09000003
#> 383       England   E12000007                   London   E09000003
#> 384       England   E12000007                   London   E09000003
#> 385       England   E12000007                   London   E09000003
#> 386       England   E12000007                   London   E09000004
#> 387       England   E12000007                   London   E09000004
#> 388       England   E12000007                   London   E09000004
#> 389       England   E12000007                   London   E09000004
#> 390       England   E12000007                   London   E09000005
#> 391       England   E12000007                   London   E09000005
#> 392       England   E12000007                   London   E09000005
#> 393       England   E12000007                   London   E09000005
#> 394       England   E12000007                   London   E09000006
#> 395       England   E12000007                   London   E09000006
#> 396       England   E12000007                   London   E09000006
#> 397       England   E12000007                   London   E09000006
#> 398       England   E12000007                   London   E09000007
#> 399       England   E12000007                   London   E09000007
#> 400       England   E12000007                   London   E09000007
#> 401       England   E12000007                   London   E09000007
#> 402       England   E12000007                   London   E09000008
#> 403       England   E12000007                   London   E09000008
#> 404       England   E12000007                   London   E09000008
#> 405       England   E12000007                   London   E09000008
#> 406       England   E12000007                   London   E09000009
#> 407       England   E12000007                   London   E09000009
#> 408       England   E12000007                   London   E09000009
#> 409       England   E12000007                   London   E09000009
#> 410       England   E12000007                   London   E09000010
#> 411       England   E12000007                   London   E09000010
#> 412       England   E12000007                   London   E09000010
#> 413       England   E12000007                   London   E09000010
#> 414       England   E12000007                   London   E09000011
#> 415       England   E12000007                   London   E09000011
#> 416       England   E12000007                   London   E09000011
#> 417       England   E12000007                   London   E09000011
#> 418       England   E12000007                   London   E09000012
#> 419       England   E12000007                   London   E09000012
#> 420       England   E12000007                   London   E09000012
#> 421       England   E12000007                   London   E09000012
#> 422       England   E12000007                   London   E09000013
#> 423       England   E12000007                   London   E09000013
#> 424       England   E12000007                   London   E09000013
#> 425       England   E12000007                   London   E09000013
#> 426       England   E12000007                   London   E09000014
#> 427       England   E12000007                   London   E09000014
#> 428       England   E12000007                   London   E09000014
#> 429       England   E12000007                   London   E09000014
#> 430       England   E12000007                   London   E09000015
#> 431       England   E12000007                   London   E09000015
#> 432       England   E12000007                   London   E09000015
#> 433       England   E12000007                   London   E09000015
#> 434       England   E12000007                   London   E09000016
#> 435       England   E12000007                   London   E09000016
#> 436       England   E12000007                   London   E09000016
#> 437       England   E12000007                   London   E09000016
#> 438       England   E12000007                   London   E09000017
#> 439       England   E12000007                   London   E09000017
#> 440       England   E12000007                   London   E09000017
#> 441       England   E12000007                   London   E09000017
#> 442       England   E12000007                   London   E09000018
#> 443       England   E12000007                   London   E09000018
#> 444       England   E12000007                   London   E09000018
#> 445       England   E12000007                   London   E09000018
#> 446       England   E12000007                   London   E09000019
#> 447       England   E12000007                   London   E09000019
#> 448       England   E12000007                   London   E09000019
#> 449       England   E12000007                   London   E09000019
#> 450       England   E12000007                   London   E09000020
#> 451       England   E12000007                   London   E09000020
#> 452       England   E12000007                   London   E09000020
#> 453       England   E12000007                   London   E09000020
#> 454       England   E12000007                   London   E09000021
#> 455       England   E12000007                   London   E09000021
#> 456       England   E12000007                   London   E09000021
#> 457       England   E12000007                   London   E09000021
#> 458       England   E12000007                   London   E09000022
#> 459       England   E12000007                   London   E09000022
#> 460       England   E12000007                   London   E09000022
#> 461       England   E12000007                   London   E09000022
#> 462       England   E12000007                   London   E09000023
#> 463       England   E12000007                   London   E09000023
#> 464       England   E12000007                   London   E09000023
#> 465       England   E12000007                   London   E09000023
#> 466       England   E12000007                   London   E09000024
#> 467       England   E12000007                   London   E09000024
#> 468       England   E12000007                   London   E09000024
#> 469       England   E12000007                   London   E09000024
#> 470       England   E12000007                   London   E09000025
#> 471       England   E12000007                   London   E09000025
#> 472       England   E12000007                   London   E09000025
#> 473       England   E12000007                   London   E09000025
#> 474       England   E12000007                   London   E09000026
#> 475       England   E12000007                   London   E09000026
#> 476       England   E12000007                   London   E09000026
#> 477       England   E12000007                   London   E09000026
#> 478       England   E12000007                   London   E09000027
#> 479       England   E12000007                   London   E09000027
#> 480       England   E12000007                   London   E09000027
#> 481       England   E12000007                   London   E09000027
#> 482       England   E12000007                   London   E09000028
#> 483       England   E12000007                   London   E09000028
#> 484       England   E12000007                   London   E09000028
#> 485       England   E12000007                   London   E09000028
#> 486       England   E12000007                   London   E09000029
#> 487       England   E12000007                   London   E09000029
#> 488       England   E12000007                   London   E09000029
#> 489       England   E12000007                   London   E09000029
#> 490       England   E12000007                   London   E09000030
#> 491       England   E12000007                   London   E09000030
#> 492       England   E12000007                   London   E09000030
#> 493       England   E12000007                   London   E09000030
#> 494       England   E12000007                   London   E09000031
#> 495       England   E12000007                   London   E09000031
#> 496       England   E12000007                   London   E09000031
#> 497       England   E12000007                   London   E09000031
#> 498       England   E12000007                   London   E09000032
#> 499       England   E12000007                   London   E09000032
#> 500       England   E12000007                   London   E09000032
#> 501       England   E12000007                   London   E09000032
#> 502       England   E12000007                   London   E09000033
#> 503       England   E12000007                   London   E09000033
#> 504       England   E12000007                   London   E09000033
#> 505       England   E12000007                   London   E09000033
#> 506       England   E12000008               South East        <NA>
#> 507       England   E12000008               South East        <NA>
#> 508       England   E12000008               South East        <NA>
#> 509       England   E12000008               South East        <NA>
#> 510       England   E12000008               South East   E06000035
#> 511       England   E12000008               South East   E06000035
#> 512       England   E12000008               South East   E06000035
#> 513       England   E12000008               South East   E06000035
#> 514       England   E12000008               South East   E06000036
#> 515       England   E12000008               South East   E06000036
#> 516       England   E12000008               South East   E06000036
#> 517       England   E12000008               South East   E06000036
#> 518       England   E12000008               South East   E06000037
#> 519       England   E12000008               South East   E06000037
#> 520       England   E12000008               South East   E06000037
#> 521       England   E12000008               South East   E06000037
#> 522       England   E12000008               South East   E06000038
#> 523       England   E12000008               South East   E06000038
#> 524       England   E12000008               South East   E06000038
#> 525       England   E12000008               South East   E06000038
#> 526       England   E12000008               South East   E06000039
#> 527       England   E12000008               South East   E06000039
#> 528       England   E12000008               South East   E06000039
#> 529       England   E12000008               South East   E06000039
#> 530       England   E12000008               South East   E06000040
#> 531       England   E12000008               South East   E06000040
#> 532       England   E12000008               South East   E06000040
#> 533       England   E12000008               South East   E06000040
#> 534       England   E12000008               South East   E06000041
#> 535       England   E12000008               South East   E06000041
#> 536       England   E12000008               South East   E06000041
#> 537       England   E12000008               South East   E06000041
#> 538       England   E12000008               South East   E06000042
#> 539       England   E12000008               South East   E06000042
#> 540       England   E12000008               South East   E06000042
#> 541       England   E12000008               South East   E06000042
#> 542       England   E12000008               South East   E06000043
#> 543       England   E12000008               South East   E06000043
#> 544       England   E12000008               South East   E06000043
#> 545       England   E12000008               South East   E06000043
#> 546       England   E12000008               South East   E06000044
#> 547       England   E12000008               South East   E06000044
#> 548       England   E12000008               South East   E06000044
#> 549       England   E12000008               South East   E06000044
#> 550       England   E12000008               South East   E06000045
#> 551       England   E12000008               South East   E06000045
#> 552       England   E12000008               South East   E06000045
#> 553       England   E12000008               South East   E06000045
#> 554       England   E12000008               South East   E06000046
#> 555       England   E12000008               South East   E06000046
#> 556       England   E12000008               South East   E06000046
#> 557       England   E12000008               South East   E06000046
#> 558       England   E12000008               South East   E06000060
#> 559       England   E12000008               South East   E06000060
#> 560       England   E12000008               South East   E06000060
#> 561       England   E12000008               South East   E06000060
#> 562       England   E12000008               South East   E10000011
#> 563       England   E12000008               South East   E10000011
#> 564       England   E12000008               South East   E10000011
#> 565       England   E12000008               South East   E10000011
#> 566       England   E12000008               South East   E10000014
#> 567       England   E12000008               South East   E10000014
#> 568       England   E12000008               South East   E10000014
#> 569       England   E12000008               South East   E10000014
#> 570       England   E12000008               South East   E10000016
#> 571       England   E12000008               South East   E10000016
#> 572       England   E12000008               South East   E10000016
#> 573       England   E12000008               South East   E10000016
#> 574       England   E12000008               South East   E10000025
#> 575       England   E12000008               South East   E10000025
#> 576       England   E12000008               South East   E10000025
#> 577       England   E12000008               South East   E10000025
#> 578       England   E12000008               South East   E10000030
#> 579       England   E12000008               South East   E10000030
#> 580       England   E12000008               South East   E10000030
#> 581       England   E12000008               South East   E10000030
#> 582       England   E12000008               South East   E10000032
#> 583       England   E12000008               South East   E10000032
#> 584       England   E12000008               South East   E10000032
#> 585       England   E12000008               South East   E10000032
#> 586       England   E12000009               South West        <NA>
#> 587       England   E12000009               South West        <NA>
#> 588       England   E12000009               South West        <NA>
#> 589       England   E12000009               South West        <NA>
#> 590       England   E12000009               South West   E06000022
#> 591       England   E12000009               South West   E06000022
#> 592       England   E12000009               South West   E06000022
#> 593       England   E12000009               South West   E06000022
#> 594       England   E12000009               South West   E06000023
#> 595       England   E12000009               South West   E06000023
#> 596       England   E12000009               South West   E06000023
#> 597       England   E12000009               South West   E06000023
#> 598       England   E12000009               South West   E06000024
#> 599       England   E12000009               South West   E06000024
#> 600       England   E12000009               South West   E06000024
#> 601       England   E12000009               South West   E06000024
#> 602       England   E12000009               South West   E06000025
#> 603       England   E12000009               South West   E06000025
#> 604       England   E12000009               South West   E06000025
#> 605       England   E12000009               South West   E06000025
#> 606       England   E12000009               South West   E06000026
#> 607       England   E12000009               South West   E06000026
#> 608       England   E12000009               South West   E06000026
#> 609       England   E12000009               South West   E06000026
#> 610       England   E12000009               South West   E06000027
#> 611       England   E12000009               South West   E06000027
#> 612       England   E12000009               South West   E06000027
#> 613       England   E12000009               South West   E06000027
#> 614       England   E12000009               South West   E06000030
#> 615       England   E12000009               South West   E06000030
#> 616       England   E12000009               South West   E06000030
#> 617       England   E12000009               South West   E06000030
#> 618       England   E12000009               South West   E06000052
#> 619       England   E12000009               South West   E06000052
#> 620       England   E12000009               South West   E06000052
#> 621       England   E12000009               South West   E06000052
#> 622       England   E12000009               South West   E06000053
#> 623       England   E12000009               South West   E06000053
#> 624       England   E12000009               South West   E06000054
#> 625       England   E12000009               South West   E06000054
#> 626       England   E12000009               South West   E06000054
#> 627       England   E12000009               South West   E06000054
#> 628       England   E12000009               South West   E06000058
#> 629       England   E12000009               South West   E06000058
#> 630       England   E12000009               South West   E06000058
#> 631       England   E12000009               South West   E06000058
#> 632       England   E12000009               South West   E06000059
#> 633       England   E12000009               South West   E06000059
#> 634       England   E12000009               South West   E06000059
#> 635       England   E12000009               South West   E06000059
#> 636       England   E12000009               South West   E06000066
#> 637       England   E12000009               South West   E06000066
#> 638       England   E12000009               South West   E06000066
#> 639       England   E12000009               South West   E06000066
#> 640       England   E12000009               South West   E10000008
#> 641       England   E12000009               South West   E10000008
#> 642       England   E12000009               South West   E10000008
#> 643       England   E12000009               South West   E10000008
#> 644       England   E12000009               South West   E10000013
#> 645       England   E12000009               South West   E10000013
#> 646       England   E12000009               South West   E10000013
#> 647       England   E12000009               South West   E10000013
#> 648       England        <NA>                     <NA>        <NA>
#> 649       England        <NA>                     <NA>        <NA>
#> 650       England        <NA>                     <NA>        <NA>
#> 651       England        <NA>                     <NA>        <NA>
#> 652       England   E12000001               North East        <NA>
#> 653       England   E12000001               North East        <NA>
#> 654       England   E12000001               North East        <NA>
#> 655       England   E12000001               North East        <NA>
#> 656       England   E12000001               North East   E06000001
#> 657       England   E12000001               North East   E06000001
#> 658       England   E12000001               North East   E06000001
#> 659       England   E12000001               North East   E06000001
#> 660       England   E12000001               North East   E06000002
#> 661       England   E12000001               North East   E06000002
#> 662       England   E12000001               North East   E06000002
#> 663       England   E12000001               North East   E06000002
#> 664       England   E12000001               North East   E06000003
#> 665       England   E12000001               North East   E06000003
#> 666       England   E12000001               North East   E06000003
#> 667       England   E12000001               North East   E06000003
#> 668       England   E12000001               North East   E06000004
#> 669       England   E12000001               North East   E06000004
#> 670       England   E12000001               North East   E06000004
#> 671       England   E12000001               North East   E06000004
#> 672       England   E12000001               North East   E06000005
#> 673       England   E12000001               North East   E06000005
#> 674       England   E12000001               North East   E06000005
#> 675       England   E12000001               North East   E06000005
#> 676       England   E12000001               North East   E06000047
#> 677       England   E12000001               North East   E06000047
#> 678       England   E12000001               North East   E06000047
#> 679       England   E12000001               North East   E06000047
#> 680       England   E12000001               North East   E06000057
#> 681       England   E12000001               North East   E06000057
#> 682       England   E12000001               North East   E06000057
#> 683       England   E12000001               North East   E06000057
#> 684       England   E12000001               North East   E08000021
#> 685       England   E12000001               North East   E08000021
#> 686       England   E12000001               North East   E08000021
#> 687       England   E12000001               North East   E08000021
#> 688       England   E12000001               North East   E08000022
#> 689       England   E12000001               North East   E08000022
#> 690       England   E12000001               North East   E08000022
#> 691       England   E12000001               North East   E08000022
#> 692       England   E12000001               North East   E08000023
#> 693       England   E12000001               North East   E08000023
#> 694       England   E12000001               North East   E08000023
#> 695       England   E12000001               North East   E08000023
#> 696       England   E12000001               North East   E08000024
#> 697       England   E12000001               North East   E08000024
#> 698       England   E12000001               North East   E08000024
#> 699       England   E12000001               North East   E08000024
#> 700       England   E12000001               North East   E08000037
#> 701       England   E12000001               North East   E08000037
#> 702       England   E12000001               North East   E08000037
#> 703       England   E12000001               North East   E08000037
#> 704       England   E12000002               North West        <NA>
#> 705       England   E12000002               North West        <NA>
#> 706       England   E12000002               North West        <NA>
#> 707       England   E12000002               North West        <NA>
#> 708       England   E12000002               North West   E06000006
#> 709       England   E12000002               North West   E06000006
#> 710       England   E12000002               North West   E06000006
#> 711       England   E12000002               North West   E06000006
#> 712       England   E12000002               North West   E06000007
#> 713       England   E12000002               North West   E06000007
#> 714       England   E12000002               North West   E06000007
#> 715       England   E12000002               North West   E06000007
#> 716       England   E12000002               North West   E06000008
#> 717       England   E12000002               North West   E06000008
#> 718       England   E12000002               North West   E06000008
#> 719       England   E12000002               North West   E06000008
#> 720       England   E12000002               North West   E06000009
#> 721       England   E12000002               North West   E06000009
#> 722       England   E12000002               North West   E06000009
#> 723       England   E12000002               North West   E06000009
#> 724       England   E12000002               North West   E06000049
#> 725       England   E12000002               North West   E06000049
#> 726       England   E12000002               North West   E06000049
#> 727       England   E12000002               North West   E06000049
#> 728       England   E12000002               North West   E06000050
#> 729       England   E12000002               North West   E06000050
#> 730       England   E12000002               North West   E06000050
#> 731       England   E12000002               North West   E06000050
#> 732       England   E12000002               North West   E06000063
#> 733       England   E12000002               North West   E06000063
#> 734       England   E12000002               North West   E06000063
#> 735       England   E12000002               North West   E06000063
#> 736       England   E12000002               North West   E06000064
#> 737       England   E12000002               North West   E06000064
#> 738       England   E12000002               North West   E06000064
#> 739       England   E12000002               North West   E06000064
#> 740       England   E12000002               North West   E08000001
#> 741       England   E12000002               North West   E08000001
#> 742       England   E12000002               North West   E08000001
#> 743       England   E12000002               North West   E08000001
#> 744       England   E12000002               North West   E08000002
#> 745       England   E12000002               North West   E08000002
#> 746       England   E12000002               North West   E08000002
#> 747       England   E12000002               North West   E08000002
#> 748       England   E12000002               North West   E08000003
#> 749       England   E12000002               North West   E08000003
#> 750       England   E12000002               North West   E08000003
#> 751       England   E12000002               North West   E08000003
#> 752       England   E12000002               North West   E08000004
#> 753       England   E12000002               North West   E08000004
#> 754       England   E12000002               North West   E08000004
#> 755       England   E12000002               North West   E08000004
#> 756       England   E12000002               North West   E08000005
#> 757       England   E12000002               North West   E08000005
#> 758       England   E12000002               North West   E08000005
#> 759       England   E12000002               North West   E08000005
#> 760       England   E12000002               North West   E08000006
#> 761       England   E12000002               North West   E08000006
#> 762       England   E12000002               North West   E08000006
#> 763       England   E12000002               North West   E08000006
#> 764       England   E12000002               North West   E08000007
#> 765       England   E12000002               North West   E08000007
#> 766       England   E12000002               North West   E08000007
#> 767       England   E12000002               North West   E08000007
#> 768       England   E12000002               North West   E08000008
#> 769       England   E12000002               North West   E08000008
#> 770       England   E12000002               North West   E08000008
#> 771       England   E12000002               North West   E08000008
#> 772       England   E12000002               North West   E08000009
#> 773       England   E12000002               North West   E08000009
#> 774       England   E12000002               North West   E08000009
#> 775       England   E12000002               North West   E08000009
#> 776       England   E12000002               North West   E08000010
#> 777       England   E12000002               North West   E08000010
#> 778       England   E12000002               North West   E08000010
#> 779       England   E12000002               North West   E08000010
#> 780       England   E12000002               North West   E08000011
#> 781       England   E12000002               North West   E08000011
#> 782       England   E12000002               North West   E08000011
#> 783       England   E12000002               North West   E08000011
#> 784       England   E12000002               North West   E08000012
#> 785       England   E12000002               North West   E08000012
#> 786       England   E12000002               North West   E08000012
#> 787       England   E12000002               North West   E08000012
#> 788       England   E12000002               North West   E08000013
#> 789       England   E12000002               North West   E08000013
#> 790       England   E12000002               North West   E08000013
#> 791       England   E12000002               North West   E08000013
#> 792       England   E12000002               North West   E08000014
#> 793       England   E12000002               North West   E08000014
#> 794       England   E12000002               North West   E08000014
#> 795       England   E12000002               North West   E08000014
#> 796       England   E12000002               North West   E08000015
#> 797       England   E12000002               North West   E08000015
#> 798       England   E12000002               North West   E08000015
#> 799       England   E12000002               North West   E08000015
#> 800       England   E12000002               North West   E10000017
#> 801       England   E12000002               North West   E10000017
#> 802       England   E12000002               North West   E10000017
#> 803       England   E12000002               North West   E10000017
#> 804       England   E12000003 Yorkshire and The Humber        <NA>
#> 805       England   E12000003 Yorkshire and The Humber        <NA>
#> 806       England   E12000003 Yorkshire and The Humber        <NA>
#> 807       England   E12000003 Yorkshire and The Humber        <NA>
#> 808       England   E12000003 Yorkshire and The Humber   E06000010
#> 809       England   E12000003 Yorkshire and The Humber   E06000010
#> 810       England   E12000003 Yorkshire and The Humber   E06000010
#> 811       England   E12000003 Yorkshire and The Humber   E06000010
#> 812       England   E12000003 Yorkshire and The Humber   E06000011
#> 813       England   E12000003 Yorkshire and The Humber   E06000011
#> 814       England   E12000003 Yorkshire and The Humber   E06000011
#> 815       England   E12000003 Yorkshire and The Humber   E06000011
#> 816       England   E12000003 Yorkshire and The Humber   E06000012
#> 817       England   E12000003 Yorkshire and The Humber   E06000012
#> 818       England   E12000003 Yorkshire and The Humber   E06000012
#> 819       England   E12000003 Yorkshire and The Humber   E06000012
#> 820       England   E12000003 Yorkshire and The Humber   E06000013
#> 821       England   E12000003 Yorkshire and The Humber   E06000013
#> 822       England   E12000003 Yorkshire and The Humber   E06000013
#> 823       England   E12000003 Yorkshire and The Humber   E06000013
#> 824       England   E12000003 Yorkshire and The Humber   E06000014
#> 825       England   E12000003 Yorkshire and The Humber   E06000014
#> 826       England   E12000003 Yorkshire and The Humber   E06000014
#> 827       England   E12000003 Yorkshire and The Humber   E06000014
#> 828       England   E12000003 Yorkshire and The Humber   E06000065
#> 829       England   E12000003 Yorkshire and The Humber   E06000065
#> 830       England   E12000003 Yorkshire and The Humber   E06000065
#> 831       England   E12000003 Yorkshire and The Humber   E06000065
#> 832       England   E12000003 Yorkshire and The Humber   E08000016
#> 833       England   E12000003 Yorkshire and The Humber   E08000016
#> 834       England   E12000003 Yorkshire and The Humber   E08000016
#> 835       England   E12000003 Yorkshire and The Humber   E08000016
#> 836       England   E12000003 Yorkshire and The Humber   E08000017
#> 837       England   E12000003 Yorkshire and The Humber   E08000017
#> 838       England   E12000003 Yorkshire and The Humber   E08000017
#> 839       England   E12000003 Yorkshire and The Humber   E08000017
#> 840       England   E12000003 Yorkshire and The Humber   E08000018
#> 841       England   E12000003 Yorkshire and The Humber   E08000018
#> 842       England   E12000003 Yorkshire and The Humber   E08000018
#> 843       England   E12000003 Yorkshire and The Humber   E08000018
#> 844       England   E12000003 Yorkshire and The Humber   E08000019
#> 845       England   E12000003 Yorkshire and The Humber   E08000019
#> 846       England   E12000003 Yorkshire and The Humber   E08000019
#> 847       England   E12000003 Yorkshire and The Humber   E08000019
#> 848       England   E12000003 Yorkshire and The Humber   E08000032
#> 849       England   E12000003 Yorkshire and The Humber   E08000032
#> 850       England   E12000003 Yorkshire and The Humber   E08000032
#> 851       England   E12000003 Yorkshire and The Humber   E08000032
#> 852       England   E12000003 Yorkshire and The Humber   E08000033
#> 853       England   E12000003 Yorkshire and The Humber   E08000033
#> 854       England   E12000003 Yorkshire and The Humber   E08000033
#> 855       England   E12000003 Yorkshire and The Humber   E08000033
#> 856       England   E12000003 Yorkshire and The Humber   E08000034
#> 857       England   E12000003 Yorkshire and The Humber   E08000034
#> 858       England   E12000003 Yorkshire and The Humber   E08000034
#> 859       England   E12000003 Yorkshire and The Humber   E08000034
#> 860       England   E12000003 Yorkshire and The Humber   E08000035
#> 861       England   E12000003 Yorkshire and The Humber   E08000035
#> 862       England   E12000003 Yorkshire and The Humber   E08000035
#> 863       England   E12000003 Yorkshire and The Humber   E08000035
#> 864       England   E12000003 Yorkshire and The Humber   E08000036
#> 865       England   E12000003 Yorkshire and The Humber   E08000036
#> 866       England   E12000003 Yorkshire and The Humber   E08000036
#> 867       England   E12000003 Yorkshire and The Humber   E08000036
#> 868       England   E12000004            East Midlands        <NA>
#> 869       England   E12000004            East Midlands        <NA>
#> 870       England   E12000004            East Midlands        <NA>
#> 871       England   E12000004            East Midlands        <NA>
#> 872       England   E12000004            East Midlands   E06000015
#> 873       England   E12000004            East Midlands   E06000015
#> 874       England   E12000004            East Midlands   E06000015
#> 875       England   E12000004            East Midlands   E06000015
#> 876       England   E12000004            East Midlands   E06000016
#> 877       England   E12000004            East Midlands   E06000016
#> 878       England   E12000004            East Midlands   E06000016
#> 879       England   E12000004            East Midlands   E06000016
#> 880       England   E12000004            East Midlands   E06000017
#> 881       England   E12000004            East Midlands   E06000017
#> 882       England   E12000004            East Midlands   E06000017
#> 883       England   E12000004            East Midlands   E06000018
#> 884       England   E12000004            East Midlands   E06000018
#> 885       England   E12000004            East Midlands   E06000018
#> 886       England   E12000004            East Midlands   E06000018
#> 887       England   E12000004            East Midlands   E06000061
#> 888       England   E12000004            East Midlands   E06000061
#> 889       England   E12000004            East Midlands   E06000061
#> 890       England   E12000004            East Midlands   E06000061
#> 891       England   E12000004            East Midlands   E06000062
#> 892       England   E12000004            East Midlands   E06000062
#> 893       England   E12000004            East Midlands   E06000062
#> 894       England   E12000004            East Midlands   E06000062
#> 895       England   E12000004            East Midlands   E10000007
#> 896       England   E12000004            East Midlands   E10000007
#> 897       England   E12000004            East Midlands   E10000007
#> 898       England   E12000004            East Midlands   E10000007
#> 899       England   E12000004            East Midlands   E10000018
#> 900       England   E12000004            East Midlands   E10000018
#> 901       England   E12000004            East Midlands   E10000018
#> 902       England   E12000004            East Midlands   E10000018
#> 903       England   E12000004            East Midlands   E10000019
#> 904       England   E12000004            East Midlands   E10000019
#> 905       England   E12000004            East Midlands   E10000019
#> 906       England   E12000004            East Midlands   E10000019
#> 907       England   E12000004            East Midlands   E10000024
#> 908       England   E12000004            East Midlands   E10000024
#> 909       England   E12000004            East Midlands   E10000024
#> 910       England   E12000004            East Midlands   E10000024
#> 911       England   E12000005            West Midlands        <NA>
#> 912       England   E12000005            West Midlands        <NA>
#> 913       England   E12000005            West Midlands        <NA>
#> 914       England   E12000005            West Midlands        <NA>
#> 915       England   E12000005            West Midlands   E06000019
#> 916       England   E12000005            West Midlands   E06000019
#> 917       England   E12000005            West Midlands   E06000019
#> 918       England   E12000005            West Midlands   E06000019
#> 919       England   E12000005            West Midlands   E06000020
#> 920       England   E12000005            West Midlands   E06000020
#> 921       England   E12000005            West Midlands   E06000020
#> 922       England   E12000005            West Midlands   E06000020
#> 923       England   E12000005            West Midlands   E06000021
#> 924       England   E12000005            West Midlands   E06000021
#> 925       England   E12000005            West Midlands   E06000021
#> 926       England   E12000005            West Midlands   E06000021
#> 927       England   E12000005            West Midlands   E06000051
#> 928       England   E12000005            West Midlands   E06000051
#> 929       England   E12000005            West Midlands   E06000051
#> 930       England   E12000005            West Midlands   E06000051
#> 931       England   E12000005            West Midlands   E08000025
#> 932       England   E12000005            West Midlands   E08000025
#> 933       England   E12000005            West Midlands   E08000025
#> 934       England   E12000005            West Midlands   E08000025
#> 935       England   E12000005            West Midlands   E08000026
#> 936       England   E12000005            West Midlands   E08000026
#> 937       England   E12000005            West Midlands   E08000026
#> 938       England   E12000005            West Midlands   E08000026
#> 939       England   E12000005            West Midlands   E08000027
#> 940       England   E12000005            West Midlands   E08000027
#> 941       England   E12000005            West Midlands   E08000027
#> 942       England   E12000005            West Midlands   E08000027
#> 943       England   E12000005            West Midlands   E08000028
#> 944       England   E12000005            West Midlands   E08000028
#> 945       England   E12000005            West Midlands   E08000028
#> 946       England   E12000005            West Midlands   E08000028
#> 947       England   E12000005            West Midlands   E08000029
#> 948       England   E12000005            West Midlands   E08000029
#> 949       England   E12000005            West Midlands   E08000029
#> 950       England   E12000005            West Midlands   E08000029
#> 951       England   E12000005            West Midlands   E08000030
#> 952       England   E12000005            West Midlands   E08000030
#> 953       England   E12000005            West Midlands   E08000030
#> 954       England   E12000005            West Midlands   E08000030
#> 955       England   E12000005            West Midlands   E08000031
#> 956       England   E12000005            West Midlands   E08000031
#> 957       England   E12000005            West Midlands   E08000031
#> 958       England   E12000005            West Midlands   E08000031
#> 959       England   E12000005            West Midlands   E10000028
#> 960       England   E12000005            West Midlands   E10000028
#> 961       England   E12000005            West Midlands   E10000028
#> 962       England   E12000005            West Midlands   E10000028
#> 963       England   E12000005            West Midlands   E10000031
#> 964       England   E12000005            West Midlands   E10000031
#> 965       England   E12000005            West Midlands   E10000031
#> 966       England   E12000005            West Midlands   E10000031
#> 967       England   E12000005            West Midlands   E10000034
#> 968       England   E12000005            West Midlands   E10000034
#> 969       England   E12000005            West Midlands   E10000034
#> 970       England   E12000005            West Midlands   E10000034
#> 971       England   E12000006          East of England        <NA>
#> 972       England   E12000006          East of England        <NA>
#> 973       England   E12000006          East of England        <NA>
#> 974       England   E12000006          East of England        <NA>
#> 975       England   E12000006          East of England   E06000031
#> 976       England   E12000006          East of England   E06000031
#> 977       England   E12000006          East of England   E06000031
#> 978       England   E12000006          East of England   E06000031
#> 979       England   E12000006          East of England   E06000032
#> 980       England   E12000006          East of England   E06000032
#> 981       England   E12000006          East of England   E06000032
#> 982       England   E12000006          East of England   E06000032
#> 983       England   E12000006          East of England   E06000033
#> 984       England   E12000006          East of England   E06000033
#> 985       England   E12000006          East of England   E06000033
#> 986       England   E12000006          East of England   E06000033
#> 987       England   E12000006          East of England   E06000034
#> 988       England   E12000006          East of England   E06000034
#> 989       England   E12000006          East of England   E06000034
#> 990       England   E12000006          East of England   E06000034
#> 991       England   E12000006          East of England   E06000055
#> 992       England   E12000006          East of England   E06000055
#> 993       England   E12000006          East of England   E06000055
#> 994       England   E12000006          East of England   E06000055
#> 995       England   E12000006          East of England   E06000056
#> 996       England   E12000006          East of England   E06000056
#> 997       England   E12000006          East of England   E06000056
#> 998       England   E12000006          East of England   E06000056
#> 999       England   E12000006          East of England   E10000003
#> 1000      England   E12000006          East of England   E10000003
#> 1001      England   E12000006          East of England   E10000003
#> 1002      England   E12000006          East of England   E10000003
#> 1003      England   E12000006          East of England   E10000012
#> 1004      England   E12000006          East of England   E10000012
#> 1005      England   E12000006          East of England   E10000012
#> 1006      England   E12000006          East of England   E10000012
#> 1007      England   E12000006          East of England   E10000015
#> 1008      England   E12000006          East of England   E10000015
#> 1009      England   E12000006          East of England   E10000015
#> 1010      England   E12000006          East of England   E10000015
#> 1011      England   E12000006          East of England   E10000020
#> 1012      England   E12000006          East of England   E10000020
#> 1013      England   E12000006          East of England   E10000020
#> 1014      England   E12000006          East of England   E10000020
#> 1015      England   E12000006          East of England   E10000029
#> 1016      England   E12000006          East of England   E10000029
#> 1017      England   E12000006          East of England   E10000029
#> 1018      England   E12000006          East of England   E10000029
#> 1019      England   E12000007                   London        <NA>
#> 1020      England   E12000007                   London        <NA>
#> 1021      England   E12000007                   London        <NA>
#> 1022      England   E12000007                   London        <NA>
#> 1023      England   E12000007                   London   E09000001
#> 1024      England   E12000007                   London   E09000001
#> 1025      England   E12000007                   London   E09000002
#> 1026      England   E12000007                   London   E09000002
#> 1027      England   E12000007                   London   E09000002
#> 1028      England   E12000007                   London   E09000002
#> 1029      England   E12000007                   London   E09000003
#> 1030      England   E12000007                   London   E09000003
#> 1031      England   E12000007                   London   E09000003
#> 1032      England   E12000007                   London   E09000003
#> 1033      England   E12000007                   London   E09000004
#> 1034      England   E12000007                   London   E09000004
#> 1035      England   E12000007                   London   E09000004
#> 1036      England   E12000007                   London   E09000004
#> 1037      England   E12000007                   London   E09000005
#> 1038      England   E12000007                   London   E09000005
#> 1039      England   E12000007                   London   E09000005
#> 1040      England   E12000007                   London   E09000005
#> 1041      England   E12000007                   London   E09000006
#> 1042      England   E12000007                   London   E09000006
#> 1043      England   E12000007                   London   E09000006
#> 1044      England   E12000007                   London   E09000006
#> 1045      England   E12000007                   London   E09000007
#> 1046      England   E12000007                   London   E09000007
#> 1047      England   E12000007                   London   E09000007
#> 1048      England   E12000007                   London   E09000007
#> 1049      England   E12000007                   London   E09000008
#> 1050      England   E12000007                   London   E09000008
#> 1051      England   E12000007                   London   E09000008
#> 1052      England   E12000007                   London   E09000008
#> 1053      England   E12000007                   London   E09000009
#> 1054      England   E12000007                   London   E09000009
#> 1055      England   E12000007                   London   E09000009
#> 1056      England   E12000007                   London   E09000009
#> 1057      England   E12000007                   London   E09000010
#> 1058      England   E12000007                   London   E09000010
#> 1059      England   E12000007                   London   E09000010
#> 1060      England   E12000007                   London   E09000010
#> 1061      England   E12000007                   London   E09000011
#> 1062      England   E12000007                   London   E09000011
#> 1063      England   E12000007                   London   E09000011
#> 1064      England   E12000007                   London   E09000011
#> 1065      England   E12000007                   London   E09000012
#> 1066      England   E12000007                   London   E09000012
#> 1067      England   E12000007                   London   E09000012
#> 1068      England   E12000007                   London   E09000012
#> 1069      England   E12000007                   London   E09000013
#> 1070      England   E12000007                   London   E09000013
#> 1071      England   E12000007                   London   E09000013
#> 1072      England   E12000007                   London   E09000013
#> 1073      England   E12000007                   London   E09000014
#> 1074      England   E12000007                   London   E09000014
#> 1075      England   E12000007                   London   E09000014
#> 1076      England   E12000007                   London   E09000014
#> 1077      England   E12000007                   London   E09000015
#> 1078      England   E12000007                   London   E09000015
#> 1079      England   E12000007                   London   E09000015
#> 1080      England   E12000007                   London   E09000015
#> 1081      England   E12000007                   London   E09000016
#> 1082      England   E12000007                   London   E09000016
#> 1083      England   E12000007                   London   E09000016
#> 1084      England   E12000007                   London   E09000016
#> 1085      England   E12000007                   London   E09000017
#> 1086      England   E12000007                   London   E09000017
#> 1087      England   E12000007                   London   E09000017
#> 1088      England   E12000007                   London   E09000017
#> 1089      England   E12000007                   London   E09000018
#> 1090      England   E12000007                   London   E09000018
#> 1091      England   E12000007                   London   E09000018
#> 1092      England   E12000007                   London   E09000018
#> 1093      England   E12000007                   London   E09000019
#> 1094      England   E12000007                   London   E09000019
#> 1095      England   E12000007                   London   E09000019
#> 1096      England   E12000007                   London   E09000019
#> 1097      England   E12000007                   London   E09000020
#> 1098      England   E12000007                   London   E09000020
#> 1099      England   E12000007                   London   E09000020
#> 1100      England   E12000007                   London   E09000020
#> 1101      England   E12000007                   London   E09000021
#> 1102      England   E12000007                   London   E09000021
#> 1103      England   E12000007                   London   E09000021
#> 1104      England   E12000007                   London   E09000021
#> 1105      England   E12000007                   London   E09000022
#> 1106      England   E12000007                   London   E09000022
#> 1107      England   E12000007                   London   E09000022
#> 1108      England   E12000007                   London   E09000022
#> 1109      England   E12000007                   London   E09000023
#> 1110      England   E12000007                   London   E09000023
#> 1111      England   E12000007                   London   E09000023
#> 1112      England   E12000007                   London   E09000023
#> 1113      England   E12000007                   London   E09000024
#> 1114      England   E12000007                   London   E09000024
#> 1115      England   E12000007                   London   E09000024
#> 1116      England   E12000007                   London   E09000024
#> 1117      England   E12000007                   London   E09000025
#> 1118      England   E12000007                   London   E09000025
#> 1119      England   E12000007                   London   E09000025
#> 1120      England   E12000007                   London   E09000025
#> 1121      England   E12000007                   London   E09000026
#> 1122      England   E12000007                   London   E09000026
#> 1123      England   E12000007                   London   E09000026
#> 1124      England   E12000007                   London   E09000026
#> 1125      England   E12000007                   London   E09000027
#> 1126      England   E12000007                   London   E09000027
#> 1127      England   E12000007                   London   E09000027
#> 1128      England   E12000007                   London   E09000027
#> 1129      England   E12000007                   London   E09000028
#> 1130      England   E12000007                   London   E09000028
#> 1131      England   E12000007                   London   E09000028
#> 1132      England   E12000007                   London   E09000028
#> 1133      England   E12000007                   London   E09000029
#> 1134      England   E12000007                   London   E09000029
#> 1135      England   E12000007                   London   E09000029
#> 1136      England   E12000007                   London   E09000029
#> 1137      England   E12000007                   London   E09000030
#> 1138      England   E12000007                   London   E09000030
#> 1139      England   E12000007                   London   E09000030
#> 1140      England   E12000007                   London   E09000030
#> 1141      England   E12000007                   London   E09000031
#> 1142      England   E12000007                   London   E09000031
#> 1143      England   E12000007                   London   E09000031
#> 1144      England   E12000007                   London   E09000031
#> 1145      England   E12000007                   London   E09000032
#> 1146      England   E12000007                   London   E09000032
#> 1147      England   E12000007                   London   E09000032
#> 1148      England   E12000007                   London   E09000032
#> 1149      England   E12000007                   London   E09000033
#> 1150      England   E12000007                   London   E09000033
#> 1151      England   E12000007                   London   E09000033
#> 1152      England   E12000007                   London   E09000033
#> 1153      England   E12000008               South East        <NA>
#> 1154      England   E12000008               South East        <NA>
#> 1155      England   E12000008               South East        <NA>
#> 1156      England   E12000008               South East        <NA>
#> 1157      England   E12000008               South East   E06000035
#> 1158      England   E12000008               South East   E06000035
#> 1159      England   E12000008               South East   E06000035
#> 1160      England   E12000008               South East   E06000035
#> 1161      England   E12000008               South East   E06000036
#> 1162      England   E12000008               South East   E06000036
#> 1163      England   E12000008               South East   E06000036
#> 1164      England   E12000008               South East   E06000036
#> 1165      England   E12000008               South East   E06000037
#> 1166      England   E12000008               South East   E06000037
#> 1167      England   E12000008               South East   E06000037
#> 1168      England   E12000008               South East   E06000037
#> 1169      England   E12000008               South East   E06000038
#> 1170      England   E12000008               South East   E06000038
#> 1171      England   E12000008               South East   E06000038
#> 1172      England   E12000008               South East   E06000038
#> 1173      England   E12000008               South East   E06000039
#> 1174      England   E12000008               South East   E06000039
#> 1175      England   E12000008               South East   E06000039
#> 1176      England   E12000008               South East   E06000039
#> 1177      England   E12000008               South East   E06000040
#> 1178      England   E12000008               South East   E06000040
#> 1179      England   E12000008               South East   E06000040
#> 1180      England   E12000008               South East   E06000040
#> 1181      England   E12000008               South East   E06000041
#> 1182      England   E12000008               South East   E06000041
#> 1183      England   E12000008               South East   E06000041
#> 1184      England   E12000008               South East   E06000041
#> 1185      England   E12000008               South East   E06000042
#> 1186      England   E12000008               South East   E06000042
#> 1187      England   E12000008               South East   E06000042
#> 1188      England   E12000008               South East   E06000042
#> 1189      England   E12000008               South East   E06000043
#> 1190      England   E12000008               South East   E06000043
#> 1191      England   E12000008               South East   E06000043
#> 1192      England   E12000008               South East   E06000043
#> 1193      England   E12000008               South East   E06000044
#> 1194      England   E12000008               South East   E06000044
#> 1195      England   E12000008               South East   E06000044
#> 1196      England   E12000008               South East   E06000044
#> 1197      England   E12000008               South East   E06000045
#> 1198      England   E12000008               South East   E06000045
#> 1199      England   E12000008               South East   E06000045
#> 1200      England   E12000008               South East   E06000045
#> 1201      England   E12000008               South East   E06000046
#> 1202      England   E12000008               South East   E06000046
#> 1203      England   E12000008               South East   E06000046
#> 1204      England   E12000008               South East   E06000046
#> 1205      England   E12000008               South East   E06000060
#> 1206      England   E12000008               South East   E06000060
#> 1207      England   E12000008               South East   E06000060
#> 1208      England   E12000008               South East   E06000060
#> 1209      England   E12000008               South East   E10000011
#> 1210      England   E12000008               South East   E10000011
#> 1211      England   E12000008               South East   E10000011
#> 1212      England   E12000008               South East   E10000011
#> 1213      England   E12000008               South East   E10000014
#> 1214      England   E12000008               South East   E10000014
#> 1215      England   E12000008               South East   E10000014
#> 1216      England   E12000008               South East   E10000014
#> 1217      England   E12000008               South East   E10000016
#> 1218      England   E12000008               South East   E10000016
#> 1219      England   E12000008               South East   E10000016
#> 1220      England   E12000008               South East   E10000016
#> 1221      England   E12000008               South East   E10000025
#> 1222      England   E12000008               South East   E10000025
#> 1223      England   E12000008               South East   E10000025
#> 1224      England   E12000008               South East   E10000025
#> 1225      England   E12000008               South East   E10000030
#> 1226      England   E12000008               South East   E10000030
#> 1227      England   E12000008               South East   E10000030
#> 1228      England   E12000008               South East   E10000030
#> 1229      England   E12000008               South East   E10000032
#> 1230      England   E12000008               South East   E10000032
#> 1231      England   E12000008               South East   E10000032
#> 1232      England   E12000008               South East   E10000032
#> 1233      England   E12000009               South West        <NA>
#> 1234      England   E12000009               South West        <NA>
#> 1235      England   E12000009               South West        <NA>
#> 1236      England   E12000009               South West        <NA>
#> 1237      England   E12000009               South West   E06000022
#> 1238      England   E12000009               South West   E06000022
#> 1239      England   E12000009               South West   E06000022
#> 1240      England   E12000009               South West   E06000022
#> 1241      England   E12000009               South West   E06000023
#> 1242      England   E12000009               South West   E06000023
#> 1243      England   E12000009               South West   E06000023
#> 1244      England   E12000009               South West   E06000023
#> 1245      England   E12000009               South West   E06000024
#> 1246      England   E12000009               South West   E06000024
#> 1247      England   E12000009               South West   E06000024
#> 1248      England   E12000009               South West   E06000024
#> 1249      England   E12000009               South West   E06000025
#> 1250      England   E12000009               South West   E06000025
#> 1251      England   E12000009               South West   E06000025
#> 1252      England   E12000009               South West   E06000025
#> 1253      England   E12000009               South West   E06000026
#> 1254      England   E12000009               South West   E06000026
#> 1255      England   E12000009               South West   E06000026
#> 1256      England   E12000009               South West   E06000026
#> 1257      England   E12000009               South West   E06000027
#> 1258      England   E12000009               South West   E06000027
#> 1259      England   E12000009               South West   E06000027
#> 1260      England   E12000009               South West   E06000027
#> 1261      England   E12000009               South West   E06000030
#> 1262      England   E12000009               South West   E06000030
#> 1263      England   E12000009               South West   E06000030
#> 1264      England   E12000009               South West   E06000030
#> 1265      England   E12000009               South West   E06000052
#> 1266      England   E12000009               South West   E06000052
#> 1267      England   E12000009               South West   E06000052
#> 1268      England   E12000009               South West   E06000052
#> 1269      England   E12000009               South West   E06000053
#> 1270      England   E12000009               South West   E06000053
#> 1271      England   E12000009               South West   E06000054
#> 1272      England   E12000009               South West   E06000054
#> 1273      England   E12000009               South West   E06000054
#> 1274      England   E12000009               South West   E06000054
#> 1275      England   E12000009               South West   E06000058
#> 1276      England   E12000009               South West   E06000058
#> 1277      England   E12000009               South West   E06000058
#> 1278      England   E12000009               South West   E06000058
#> 1279      England   E12000009               South West   E06000059
#> 1280      England   E12000009               South West   E06000059
#> 1281      England   E12000009               South West   E06000059
#> 1282      England   E12000009               South West   E06000059
#> 1283      England   E12000009               South West   E06000066
#> 1284      England   E12000009               South West   E06000066
#> 1285      England   E12000009               South West   E06000066
#> 1286      England   E12000009               South West   E06000066
#> 1287      England   E12000009               South West   E10000008
#> 1288      England   E12000009               South West   E10000008
#> 1289      England   E12000009               South West   E10000008
#> 1290      England   E12000009               South West   E10000008
#> 1291      England   E12000009               South West   E10000013
#> 1292      England   E12000009               South West   E10000013
#> 1293      England   E12000009               South West   E10000013
#> 1294      England   E12000009               South West   E10000013
#> 1295      England        <NA>                     <NA>        <NA>
#> 1296      England        <NA>                     <NA>        <NA>
#> 1297      England        <NA>                     <NA>        <NA>
#> 1298      England        <NA>                     <NA>        <NA>
#> 1299      England   E12000001               North East        <NA>
#> 1300      England   E12000001               North East        <NA>
#> 1301      England   E12000001               North East        <NA>
#> 1302      England   E12000001               North East        <NA>
#> 1303      England   E12000001               North East   E06000001
#> 1304      England   E12000001               North East   E06000001
#> 1305      England   E12000001               North East   E06000001
#> 1306      England   E12000001               North East   E06000002
#> 1307      England   E12000001               North East   E06000002
#> 1308      England   E12000001               North East   E06000002
#> 1309      England   E12000001               North East   E06000003
#> 1310      England   E12000001               North East   E06000003
#> 1311      England   E12000001               North East   E06000003
#> 1312      England   E12000001               North East   E06000004
#> 1313      England   E12000001               North East   E06000004
#> 1314      England   E12000001               North East   E06000004
#> 1315      England   E12000001               North East   E06000005
#> 1316      England   E12000001               North East   E06000005
#> 1317      England   E12000001               North East   E06000005
#> 1318      England   E12000001               North East   E06000047
#> 1319      England   E12000001               North East   E06000047
#> 1320      England   E12000001               North East   E06000047
#> 1321      England   E12000001               North East   E06000057
#> 1322      England   E12000001               North East   E06000057
#> 1323      England   E12000001               North East   E06000057
#> 1324      England   E12000001               North East   E08000021
#> 1325      England   E12000001               North East   E08000021
#> 1326      England   E12000001               North East   E08000021
#> 1327      England   E12000001               North East   E08000022
#> 1328      England   E12000001               North East   E08000022
#> 1329      England   E12000001               North East   E08000022
#> 1330      England   E12000001               North East   E08000023
#> 1331      England   E12000001               North East   E08000023
#> 1332      England   E12000001               North East   E08000023
#> 1333      England   E12000001               North East   E08000024
#> 1334      England   E12000001               North East   E08000024
#> 1335      England   E12000001               North East   E08000024
#> 1336      England   E12000001               North East   E08000037
#> 1337      England   E12000001               North East   E08000037
#> 1338      England   E12000001               North East   E08000037
#> 1339      England   E12000002               North West        <NA>
#> 1340      England   E12000002               North West        <NA>
#> 1341      England   E12000002               North West        <NA>
#> 1342      England   E12000002               North West        <NA>
#> 1343      England   E12000002               North West   E06000006
#> 1344      England   E12000002               North West   E06000006
#> 1345      England   E12000002               North West   E06000006
#> 1346      England   E12000002               North West   E06000007
#> 1347      England   E12000002               North West   E06000007
#> 1348      England   E12000002               North West   E06000007
#> 1349      England   E12000002               North West   E06000008
#> 1350      England   E12000002               North West   E06000008
#> 1351      England   E12000002               North West   E06000008
#> 1352      England   E12000002               North West   E06000009
#> 1353      England   E12000002               North West   E06000009
#> 1354      England   E12000002               North West   E06000009
#> 1355      England   E12000002               North West   E06000049
#> 1356      England   E12000002               North West   E06000049
#> 1357      England   E12000002               North West   E06000049
#> 1358      England   E12000002               North West   E06000050
#> 1359      England   E12000002               North West   E06000050
#> 1360      England   E12000002               North West   E06000050
#> 1361      England   E12000002               North West   E06000063
#> 1362      England   E12000002               North West   E06000063
#> 1363      England   E12000002               North West   E06000063
#> 1364      England   E12000002               North West   E06000064
#> 1365      England   E12000002               North West   E06000064
#> 1366      England   E12000002               North West   E06000064
#> 1367      England   E12000002               North West   E08000001
#> 1368      England   E12000002               North West   E08000001
#> 1369      England   E12000002               North West   E08000001
#> 1370      England   E12000002               North West   E08000002
#> 1371      England   E12000002               North West   E08000002
#> 1372      England   E12000002               North West   E08000002
#> 1373      England   E12000002               North West   E08000003
#> 1374      England   E12000002               North West   E08000003
#> 1375      England   E12000002               North West   E08000003
#> 1376      England   E12000002               North West   E08000004
#> 1377      England   E12000002               North West   E08000004
#> 1378      England   E12000002               North West   E08000004
#> 1379      England   E12000002               North West   E08000005
#> 1380      England   E12000002               North West   E08000005
#> 1381      England   E12000002               North West   E08000005
#> 1382      England   E12000002               North West   E08000006
#> 1383      England   E12000002               North West   E08000006
#> 1384      England   E12000002               North West   E08000006
#> 1385      England   E12000002               North West   E08000007
#> 1386      England   E12000002               North West   E08000007
#> 1387      England   E12000002               North West   E08000007
#> 1388      England   E12000002               North West   E08000008
#> 1389      England   E12000002               North West   E08000008
#> 1390      England   E12000002               North West   E08000008
#> 1391      England   E12000002               North West   E08000009
#> 1392      England   E12000002               North West   E08000009
#> 1393      England   E12000002               North West   E08000009
#> 1394      England   E12000002               North West   E08000010
#> 1395      England   E12000002               North West   E08000010
#> 1396      England   E12000002               North West   E08000010
#> 1397      England   E12000002               North West   E08000011
#> 1398      England   E12000002               North West   E08000011
#> 1399      England   E12000002               North West   E08000011
#> 1400      England   E12000002               North West   E08000012
#> 1401      England   E12000002               North West   E08000012
#> 1402      England   E12000002               North West   E08000012
#> 1403      England   E12000002               North West   E08000013
#> 1404      England   E12000002               North West   E08000013
#> 1405      England   E12000002               North West   E08000013
#> 1406      England   E12000002               North West   E08000014
#> 1407      England   E12000002               North West   E08000014
#> 1408      England   E12000002               North West   E08000014
#> 1409      England   E12000002               North West   E08000015
#> 1410      England   E12000002               North West   E08000015
#> 1411      England   E12000002               North West   E08000015
#> 1412      England   E12000002               North West   E10000017
#> 1413      England   E12000002               North West   E10000017
#> 1414      England   E12000002               North West   E10000017
#> 1415      England   E12000003 Yorkshire and The Humber        <NA>
#> 1416      England   E12000003 Yorkshire and The Humber        <NA>
#> 1417      England   E12000003 Yorkshire and The Humber        <NA>
#> 1418      England   E12000003 Yorkshire and The Humber        <NA>
#> 1419      England   E12000003 Yorkshire and The Humber   E06000010
#> 1420      England   E12000003 Yorkshire and The Humber   E06000010
#> 1421      England   E12000003 Yorkshire and The Humber   E06000010
#> 1422      England   E12000003 Yorkshire and The Humber   E06000011
#> 1423      England   E12000003 Yorkshire and The Humber   E06000011
#> 1424      England   E12000003 Yorkshire and The Humber   E06000011
#> 1425      England   E12000003 Yorkshire and The Humber   E06000012
#> 1426      England   E12000003 Yorkshire and The Humber   E06000012
#> 1427      England   E12000003 Yorkshire and The Humber   E06000012
#> 1428      England   E12000003 Yorkshire and The Humber   E06000013
#> 1429      England   E12000003 Yorkshire and The Humber   E06000013
#> 1430      England   E12000003 Yorkshire and The Humber   E06000013
#> 1431      England   E12000003 Yorkshire and The Humber   E06000014
#> 1432      England   E12000003 Yorkshire and The Humber   E06000014
#> 1433      England   E12000003 Yorkshire and The Humber   E06000014
#> 1434      England   E12000003 Yorkshire and The Humber   E06000065
#> 1435      England   E12000003 Yorkshire and The Humber   E06000065
#> 1436      England   E12000003 Yorkshire and The Humber   E06000065
#> 1437      England   E12000003 Yorkshire and The Humber   E08000016
#> 1438      England   E12000003 Yorkshire and The Humber   E08000016
#> 1439      England   E12000003 Yorkshire and The Humber   E08000016
#> 1440      England   E12000003 Yorkshire and The Humber   E08000017
#> 1441      England   E12000003 Yorkshire and The Humber   E08000017
#> 1442      England   E12000003 Yorkshire and The Humber   E08000017
#> 1443      England   E12000003 Yorkshire and The Humber   E08000018
#> 1444      England   E12000003 Yorkshire and The Humber   E08000018
#> 1445      England   E12000003 Yorkshire and The Humber   E08000018
#> 1446      England   E12000003 Yorkshire and The Humber   E08000019
#> 1447      England   E12000003 Yorkshire and The Humber   E08000019
#> 1448      England   E12000003 Yorkshire and The Humber   E08000019
#> 1449      England   E12000003 Yorkshire and The Humber   E08000032
#> 1450      England   E12000003 Yorkshire and The Humber   E08000032
#> 1451      England   E12000003 Yorkshire and The Humber   E08000032
#> 1452      England   E12000003 Yorkshire and The Humber   E08000033
#> 1453      England   E12000003 Yorkshire and The Humber   E08000033
#> 1454      England   E12000003 Yorkshire and The Humber   E08000033
#> 1455      England   E12000003 Yorkshire and The Humber   E08000034
#> 1456      England   E12000003 Yorkshire and The Humber   E08000034
#> 1457      England   E12000003 Yorkshire and The Humber   E08000034
#> 1458      England   E12000003 Yorkshire and The Humber   E08000035
#> 1459      England   E12000003 Yorkshire and The Humber   E08000035
#> 1460      England   E12000003 Yorkshire and The Humber   E08000035
#> 1461      England   E12000003 Yorkshire and The Humber   E08000036
#> 1462      England   E12000003 Yorkshire and The Humber   E08000036
#> 1463      England   E12000003 Yorkshire and The Humber   E08000036
#> 1464      England   E12000004            East Midlands        <NA>
#> 1465      England   E12000004            East Midlands        <NA>
#> 1466      England   E12000004            East Midlands        <NA>
#> 1467      England   E12000004            East Midlands        <NA>
#> 1468      England   E12000004            East Midlands   E06000015
#> 1469      England   E12000004            East Midlands   E06000015
#> 1470      England   E12000004            East Midlands   E06000015
#> 1471      England   E12000004            East Midlands   E06000016
#> 1472      England   E12000004            East Midlands   E06000016
#> 1473      England   E12000004            East Midlands   E06000016
#> 1474      England   E12000004            East Midlands   E06000017
#> 1475      England   E12000004            East Midlands   E06000017
#> 1476      England   E12000004            East Midlands   E06000018
#> 1477      England   E12000004            East Midlands   E06000018
#> 1478      England   E12000004            East Midlands   E06000018
#> 1479      England   E12000004            East Midlands   E06000061
#> 1480      England   E12000004            East Midlands   E06000061
#> 1481      England   E12000004            East Midlands   E06000061
#> 1482      England   E12000004            East Midlands   E06000062
#> 1483      England   E12000004            East Midlands   E06000062
#> 1484      England   E12000004            East Midlands   E06000062
#> 1485      England   E12000004            East Midlands   E10000007
#> 1486      England   E12000004            East Midlands   E10000007
#> 1487      England   E12000004            East Midlands   E10000007
#> 1488      England   E12000004            East Midlands   E10000018
#> 1489      England   E12000004            East Midlands   E10000018
#> 1490      England   E12000004            East Midlands   E10000018
#> 1491      England   E12000004            East Midlands   E10000019
#> 1492      England   E12000004            East Midlands   E10000019
#> 1493      England   E12000004            East Midlands   E10000019
#> 1494      England   E12000004            East Midlands   E10000024
#> 1495      England   E12000004            East Midlands   E10000024
#> 1496      England   E12000004            East Midlands   E10000024
#> 1497      England   E12000005            West Midlands        <NA>
#> 1498      England   E12000005            West Midlands        <NA>
#> 1499      England   E12000005            West Midlands        <NA>
#> 1500      England   E12000005            West Midlands        <NA>
#> 1501      England   E12000005            West Midlands   E06000019
#> 1502      England   E12000005            West Midlands   E06000019
#> 1503      England   E12000005            West Midlands   E06000019
#> 1504      England   E12000005            West Midlands   E06000020
#> 1505      England   E12000005            West Midlands   E06000020
#> 1506      England   E12000005            West Midlands   E06000020
#> 1507      England   E12000005            West Midlands   E06000021
#> 1508      England   E12000005            West Midlands   E06000021
#> 1509      England   E12000005            West Midlands   E06000021
#> 1510      England   E12000005            West Midlands   E06000051
#> 1511      England   E12000005            West Midlands   E06000051
#> 1512      England   E12000005            West Midlands   E06000051
#> 1513      England   E12000005            West Midlands   E08000025
#> 1514      England   E12000005            West Midlands   E08000025
#> 1515      England   E12000005            West Midlands   E08000025
#> 1516      England   E12000005            West Midlands   E08000026
#> 1517      England   E12000005            West Midlands   E08000026
#> 1518      England   E12000005            West Midlands   E08000026
#> 1519      England   E12000005            West Midlands   E08000027
#> 1520      England   E12000005            West Midlands   E08000027
#> 1521      England   E12000005            West Midlands   E08000027
#> 1522      England   E12000005            West Midlands   E08000028
#> 1523      England   E12000005            West Midlands   E08000028
#> 1524      England   E12000005            West Midlands   E08000028
#> 1525      England   E12000005            West Midlands   E08000029
#> 1526      England   E12000005            West Midlands   E08000029
#> 1527      England   E12000005            West Midlands   E08000029
#> 1528      England   E12000005            West Midlands   E08000030
#> 1529      England   E12000005            West Midlands   E08000030
#> 1530      England   E12000005            West Midlands   E08000030
#> 1531      England   E12000005            West Midlands   E08000031
#> 1532      England   E12000005            West Midlands   E08000031
#> 1533      England   E12000005            West Midlands   E08000031
#> 1534      England   E12000005            West Midlands   E10000028
#> 1535      England   E12000005            West Midlands   E10000028
#> 1536      England   E12000005            West Midlands   E10000028
#> 1537      England   E12000005            West Midlands   E10000031
#> 1538      England   E12000005            West Midlands   E10000031
#> 1539      England   E12000005            West Midlands   E10000031
#> 1540      England   E12000005            West Midlands   E10000034
#> 1541      England   E12000005            West Midlands   E10000034
#> 1542      England   E12000005            West Midlands   E10000034
#> 1543      England   E12000006          East of England        <NA>
#> 1544      England   E12000006          East of England        <NA>
#> 1545      England   E12000006          East of England        <NA>
#> 1546      England   E12000006          East of England        <NA>
#> 1547      England   E12000006          East of England   E06000031
#> 1548      England   E12000006          East of England   E06000031
#> 1549      England   E12000006          East of England   E06000031
#> 1550      England   E12000006          East of England   E06000032
#> 1551      England   E12000006          East of England   E06000032
#> 1552      England   E12000006          East of England   E06000032
#> 1553      England   E12000006          East of England   E06000033
#> 1554      England   E12000006          East of England   E06000033
#> 1555      England   E12000006          East of England   E06000033
#> 1556      England   E12000006          East of England   E06000034
#> 1557      England   E12000006          East of England   E06000034
#> 1558      England   E12000006          East of England   E06000034
#> 1559      England   E12000006          East of England   E06000055
#> 1560      England   E12000006          East of England   E06000055
#> 1561      England   E12000006          East of England   E06000055
#> 1562      England   E12000006          East of England   E06000056
#> 1563      England   E12000006          East of England   E06000056
#> 1564      England   E12000006          East of England   E06000056
#> 1565      England   E12000006          East of England   E10000003
#> 1566      England   E12000006          East of England   E10000003
#> 1567      England   E12000006          East of England   E10000003
#> 1568      England   E12000006          East of England   E10000012
#> 1569      England   E12000006          East of England   E10000012
#> 1570      England   E12000006          East of England   E10000012
#> 1571      England   E12000006          East of England   E10000015
#> 1572      England   E12000006          East of England   E10000015
#> 1573      England   E12000006          East of England   E10000015
#> 1574      England   E12000006          East of England   E10000020
#> 1575      England   E12000006          East of England   E10000020
#> 1576      England   E12000006          East of England   E10000020
#> 1577      England   E12000006          East of England   E10000029
#> 1578      England   E12000006          East of England   E10000029
#> 1579      England   E12000006          East of England   E10000029
#> 1580      England   E12000007                   London        <NA>
#> 1581      England   E12000007                   London        <NA>
#> 1582      England   E12000007                   London        <NA>
#> 1583      England   E12000007                   London        <NA>
#> 1584      England   E12000007                   London   E09000001
#> 1585      England   E12000007                   London   E09000002
#> 1586      England   E12000007                   London   E09000002
#> 1587      England   E12000007                   London   E09000002
#> 1588      England   E12000007                   London   E09000003
#> 1589      England   E12000007                   London   E09000003
#> 1590      England   E12000007                   London   E09000003
#> 1591      England   E12000007                   London   E09000004
#> 1592      England   E12000007                   London   E09000004
#> 1593      England   E12000007                   London   E09000004
#> 1594      England   E12000007                   London   E09000005
#> 1595      England   E12000007                   London   E09000005
#> 1596      England   E12000007                   London   E09000005
#> 1597      England   E12000007                   London   E09000006
#> 1598      England   E12000007                   London   E09000006
#> 1599      England   E12000007                   London   E09000006
#> 1600      England   E12000007                   London   E09000007
#> 1601      England   E12000007                   London   E09000007
#> 1602      England   E12000007                   London   E09000007
#> 1603      England   E12000007                   London   E09000008
#> 1604      England   E12000007                   London   E09000008
#> 1605      England   E12000007                   London   E09000008
#> 1606      England   E12000007                   London   E09000009
#> 1607      England   E12000007                   London   E09000009
#> 1608      England   E12000007                   London   E09000009
#> 1609      England   E12000007                   London   E09000010
#> 1610      England   E12000007                   London   E09000010
#> 1611      England   E12000007                   London   E09000010
#> 1612      England   E12000007                   London   E09000011
#> 1613      England   E12000007                   London   E09000011
#> 1614      England   E12000007                   London   E09000011
#> 1615      England   E12000007                   London   E09000012
#> 1616      England   E12000007                   London   E09000012
#> 1617      England   E12000007                   London   E09000012
#> 1618      England   E12000007                   London   E09000013
#> 1619      England   E12000007                   London   E09000013
#> 1620      England   E12000007                   London   E09000013
#> 1621      England   E12000007                   London   E09000014
#> 1622      England   E12000007                   London   E09000014
#> 1623      England   E12000007                   London   E09000014
#> 1624      England   E12000007                   London   E09000015
#> 1625      England   E12000007                   London   E09000015
#> 1626      England   E12000007                   London   E09000015
#> 1627      England   E12000007                   London   E09000016
#> 1628      England   E12000007                   London   E09000016
#> 1629      England   E12000007                   London   E09000016
#> 1630      England   E12000007                   London   E09000017
#> 1631      England   E12000007                   London   E09000017
#> 1632      England   E12000007                   London   E09000017
#> 1633      England   E12000007                   London   E09000018
#> 1634      England   E12000007                   London   E09000018
#> 1635      England   E12000007                   London   E09000018
#> 1636      England   E12000007                   London   E09000019
#> 1637      England   E12000007                   London   E09000019
#> 1638      England   E12000007                   London   E09000019
#> 1639      England   E12000007                   London   E09000020
#> 1640      England   E12000007                   London   E09000020
#> 1641      England   E12000007                   London   E09000020
#> 1642      England   E12000007                   London   E09000021
#> 1643      England   E12000007                   London   E09000021
#> 1644      England   E12000007                   London   E09000021
#> 1645      England   E12000007                   London   E09000022
#> 1646      England   E12000007                   London   E09000022
#> 1647      England   E12000007                   London   E09000022
#> 1648      England   E12000007                   London   E09000023
#> 1649      England   E12000007                   London   E09000023
#> 1650      England   E12000007                   London   E09000023
#> 1651      England   E12000007                   London   E09000024
#> 1652      England   E12000007                   London   E09000024
#> 1653      England   E12000007                   London   E09000024
#> 1654      England   E12000007                   London   E09000025
#> 1655      England   E12000007                   London   E09000025
#> 1656      England   E12000007                   London   E09000025
#> 1657      England   E12000007                   London   E09000026
#> 1658      England   E12000007                   London   E09000026
#> 1659      England   E12000007                   London   E09000026
#> 1660      England   E12000007                   London   E09000027
#> 1661      England   E12000007                   London   E09000027
#> 1662      England   E12000007                   London   E09000027
#> 1663      England   E12000007                   London   E09000028
#> 1664      England   E12000007                   London   E09000028
#> 1665      England   E12000007                   London   E09000028
#> 1666      England   E12000007                   London   E09000029
#> 1667      England   E12000007                   London   E09000029
#> 1668      England   E12000007                   London   E09000029
#> 1669      England   E12000007                   London   E09000030
#> 1670      England   E12000007                   London   E09000030
#> 1671      England   E12000007                   London   E09000030
#> 1672      England   E12000007                   London   E09000031
#> 1673      England   E12000007                   London   E09000031
#> 1674      England   E12000007                   London   E09000031
#> 1675      England   E12000007                   London   E09000032
#> 1676      England   E12000007                   London   E09000032
#> 1677      England   E12000007                   London   E09000032
#> 1678      England   E12000007                   London   E09000033
#> 1679      England   E12000007                   London   E09000033
#> 1680      England   E12000007                   London   E09000033
#> 1681      England   E12000008               South East        <NA>
#> 1682      England   E12000008               South East        <NA>
#> 1683      England   E12000008               South East        <NA>
#> 1684      England   E12000008               South East        <NA>
#> 1685      England   E12000008               South East   E06000035
#> 1686      England   E12000008               South East   E06000035
#> 1687      England   E12000008               South East   E06000035
#> 1688      England   E12000008               South East   E06000036
#> 1689      England   E12000008               South East   E06000036
#> 1690      England   E12000008               South East   E06000036
#> 1691      England   E12000008               South East   E06000037
#> 1692      England   E12000008               South East   E06000037
#> 1693      England   E12000008               South East   E06000037
#> 1694      England   E12000008               South East   E06000038
#> 1695      England   E12000008               South East   E06000038
#> 1696      England   E12000008               South East   E06000038
#> 1697      England   E12000008               South East   E06000039
#> 1698      England   E12000008               South East   E06000039
#> 1699      England   E12000008               South East   E06000039
#> 1700      England   E12000008               South East   E06000040
#> 1701      England   E12000008               South East   E06000040
#> 1702      England   E12000008               South East   E06000040
#> 1703      England   E12000008               South East   E06000041
#> 1704      England   E12000008               South East   E06000041
#> 1705      England   E12000008               South East   E06000041
#> 1706      England   E12000008               South East   E06000042
#> 1707      England   E12000008               South East   E06000042
#> 1708      England   E12000008               South East   E06000042
#> 1709      England   E12000008               South East   E06000043
#> 1710      England   E12000008               South East   E06000043
#> 1711      England   E12000008               South East   E06000043
#> 1712      England   E12000008               South East   E06000044
#> 1713      England   E12000008               South East   E06000044
#> 1714      England   E12000008               South East   E06000044
#> 1715      England   E12000008               South East   E06000045
#> 1716      England   E12000008               South East   E06000045
#> 1717      England   E12000008               South East   E06000045
#> 1718      England   E12000008               South East   E06000046
#> 1719      England   E12000008               South East   E06000046
#> 1720      England   E12000008               South East   E06000046
#> 1721      England   E12000008               South East   E06000060
#> 1722      England   E12000008               South East   E06000060
#> 1723      England   E12000008               South East   E06000060
#> 1724      England   E12000008               South East   E10000011
#> 1725      England   E12000008               South East   E10000011
#> 1726      England   E12000008               South East   E10000011
#> 1727      England   E12000008               South East   E10000014
#> 1728      England   E12000008               South East   E10000014
#> 1729      England   E12000008               South East   E10000014
#> 1730      England   E12000008               South East   E10000016
#> 1731      England   E12000008               South East   E10000016
#> 1732      England   E12000008               South East   E10000016
#> 1733      England   E12000008               South East   E10000025
#> 1734      England   E12000008               South East   E10000025
#> 1735      England   E12000008               South East   E10000025
#> 1736      England   E12000008               South East   E10000030
#> 1737      England   E12000008               South East   E10000030
#> 1738      England   E12000008               South East   E10000030
#> 1739      England   E12000008               South East   E10000032
#> 1740      England   E12000008               South East   E10000032
#> 1741      England   E12000008               South East   E10000032
#> 1742      England   E12000009               South West        <NA>
#> 1743      England   E12000009               South West        <NA>
#> 1744      England   E12000009               South West        <NA>
#> 1745      England   E12000009               South West        <NA>
#> 1746      England   E12000009               South West   E06000022
#> 1747      England   E12000009               South West   E06000022
#> 1748      England   E12000009               South West   E06000022
#> 1749      England   E12000009               South West   E06000023
#> 1750      England   E12000009               South West   E06000023
#> 1751      England   E12000009               South West   E06000023
#> 1752      England   E12000009               South West   E06000024
#> 1753      England   E12000009               South West   E06000024
#> 1754      England   E12000009               South West   E06000024
#> 1755      England   E12000009               South West   E06000025
#> 1756      England   E12000009               South West   E06000025
#> 1757      England   E12000009               South West   E06000025
#> 1758      England   E12000009               South West   E06000026
#> 1759      England   E12000009               South West   E06000026
#> 1760      England   E12000009               South West   E06000026
#> 1761      England   E12000009               South West   E06000027
#> 1762      England   E12000009               South West   E06000027
#> 1763      England   E12000009               South West   E06000027
#> 1764      England   E12000009               South West   E06000030
#> 1765      England   E12000009               South West   E06000030
#> 1766      England   E12000009               South West   E06000030
#> 1767      England   E12000009               South West   E06000052
#> 1768      England   E12000009               South West   E06000052
#> 1769      England   E12000009               South West   E06000052
#> 1770      England   E12000009               South West   E06000053
#> 1771      England   E12000009               South West   E06000054
#> 1772      England   E12000009               South West   E06000054
#> 1773      England   E12000009               South West   E06000054
#> 1774      England   E12000009               South West   E06000058
#> 1775      England   E12000009               South West   E06000058
#> 1776      England   E12000009               South West   E06000058
#> 1777      England   E12000009               South West   E06000059
#> 1778      England   E12000009               South West   E06000059
#> 1779      England   E12000009               South West   E06000059
#> 1780      England   E12000009               South West   E06000066
#> 1781      England   E12000009               South West   E06000066
#> 1782      England   E12000009               South West   E06000066
#> 1783      England   E12000009               South West   E10000008
#> 1784      England   E12000009               South West   E10000008
#> 1785      England   E12000009               South West   E10000008
#> 1786      England   E12000009               South West   E10000013
#> 1787      England   E12000009               South West   E10000013
#> 1788      England   E12000009               South West   E10000013
#> 1789      England        <NA>                     <NA>        <NA>
#> 1790      England        <NA>                     <NA>        <NA>
#> 1791      England        <NA>                     <NA>        <NA>
#> 1792      England        <NA>                     <NA>        <NA>
#> 1793      England   E12000001               North East        <NA>
#> 1794      England   E12000001               North East        <NA>
#> 1795      England   E12000001               North East        <NA>
#> 1796      England   E12000001               North East        <NA>
#> 1797      England   E12000001               North East   E06000001
#> 1798      England   E12000001               North East   E06000001
#> 1799      England   E12000001               North East   E06000001
#> 1800      England   E12000001               North East   E06000002
#> 1801      England   E12000001               North East   E06000002
#> 1802      England   E12000001               North East   E06000002
#> 1803      England   E12000001               North East   E06000003
#> 1804      England   E12000001               North East   E06000003
#> 1805      England   E12000001               North East   E06000003
#> 1806      England   E12000001               North East   E06000004
#> 1807      England   E12000001               North East   E06000004
#> 1808      England   E12000001               North East   E06000004
#> 1809      England   E12000001               North East   E06000005
#> 1810      England   E12000001               North East   E06000005
#> 1811      England   E12000001               North East   E06000005
#> 1812      England   E12000001               North East   E06000047
#> 1813      England   E12000001               North East   E06000047
#> 1814      England   E12000001               North East   E06000047
#> 1815      England   E12000001               North East   E06000057
#> 1816      England   E12000001               North East   E06000057
#> 1817      England   E12000001               North East   E06000057
#> 1818      England   E12000001               North East   E08000021
#> 1819      England   E12000001               North East   E08000021
#> 1820      England   E12000001               North East   E08000021
#> 1821      England   E12000001               North East   E08000022
#> 1822      England   E12000001               North East   E08000022
#> 1823      England   E12000001               North East   E08000022
#> 1824      England   E12000001               North East   E08000023
#> 1825      England   E12000001               North East   E08000023
#> 1826      England   E12000001               North East   E08000023
#> 1827      England   E12000001               North East   E08000024
#> 1828      England   E12000001               North East   E08000024
#> 1829      England   E12000001               North East   E08000024
#> 1830      England   E12000001               North East   E08000037
#> 1831      England   E12000001               North East   E08000037
#> 1832      England   E12000001               North East   E08000037
#> 1833      England   E12000002               North West        <NA>
#> 1834      England   E12000002               North West        <NA>
#> 1835      England   E12000002               North West        <NA>
#> 1836      England   E12000002               North West        <NA>
#> 1837      England   E12000002               North West   E06000006
#> 1838      England   E12000002               North West   E06000006
#> 1839      England   E12000002               North West   E06000006
#> 1840      England   E12000002               North West   E06000007
#> 1841      England   E12000002               North West   E06000007
#> 1842      England   E12000002               North West   E06000007
#> 1843      England   E12000002               North West   E06000008
#> 1844      England   E12000002               North West   E06000008
#> 1845      England   E12000002               North West   E06000008
#> 1846      England   E12000002               North West   E06000009
#> 1847      England   E12000002               North West   E06000009
#> 1848      England   E12000002               North West   E06000009
#> 1849      England   E12000002               North West   E06000049
#> 1850      England   E12000002               North West   E06000049
#> 1851      England   E12000002               North West   E06000049
#> 1852      England   E12000002               North West   E06000050
#> 1853      England   E12000002               North West   E06000050
#> 1854      England   E12000002               North West   E06000050
#> 1855      England   E12000002               North West   E06000063
#> 1856      England   E12000002               North West   E06000063
#> 1857      England   E12000002               North West   E06000063
#> 1858      England   E12000002               North West   E06000064
#> 1859      England   E12000002               North West   E06000064
#> 1860      England   E12000002               North West   E06000064
#> 1861      England   E12000002               North West   E08000001
#> 1862      England   E12000002               North West   E08000001
#> 1863      England   E12000002               North West   E08000001
#> 1864      England   E12000002               North West   E08000002
#> 1865      England   E12000002               North West   E08000002
#> 1866      England   E12000002               North West   E08000002
#> 1867      England   E12000002               North West   E08000003
#> 1868      England   E12000002               North West   E08000003
#> 1869      England   E12000002               North West   E08000003
#> 1870      England   E12000002               North West   E08000004
#> 1871      England   E12000002               North West   E08000004
#> 1872      England   E12000002               North West   E08000004
#> 1873      England   E12000002               North West   E08000005
#> 1874      England   E12000002               North West   E08000005
#> 1875      England   E12000002               North West   E08000005
#> 1876      England   E12000002               North West   E08000006
#> 1877      England   E12000002               North West   E08000006
#> 1878      England   E12000002               North West   E08000006
#> 1879      England   E12000002               North West   E08000007
#> 1880      England   E12000002               North West   E08000007
#> 1881      England   E12000002               North West   E08000007
#> 1882      England   E12000002               North West   E08000008
#> 1883      England   E12000002               North West   E08000008
#> 1884      England   E12000002               North West   E08000008
#> 1885      England   E12000002               North West   E08000009
#> 1886      England   E12000002               North West   E08000009
#> 1887      England   E12000002               North West   E08000009
#> 1888      England   E12000002               North West   E08000010
#> 1889      England   E12000002               North West   E08000010
#> 1890      England   E12000002               North West   E08000010
#> 1891      England   E12000002               North West   E08000011
#> 1892      England   E12000002               North West   E08000011
#> 1893      England   E12000002               North West   E08000011
#> 1894      England   E12000002               North West   E08000012
#> 1895      England   E12000002               North West   E08000012
#> 1896      England   E12000002               North West   E08000012
#> 1897      England   E12000002               North West   E08000013
#> 1898      England   E12000002               North West   E08000013
#> 1899      England   E12000002               North West   E08000013
#> 1900      England   E12000002               North West   E08000014
#> 1901      England   E12000002               North West   E08000014
#> 1902      England   E12000002               North West   E08000014
#> 1903      England   E12000002               North West   E08000015
#> 1904      England   E12000002               North West   E08000015
#> 1905      England   E12000002               North West   E08000015
#> 1906      England   E12000002               North West   E10000017
#> 1907      England   E12000002               North West   E10000017
#> 1908      England   E12000002               North West   E10000017
#> 1909      England   E12000003 Yorkshire and The Humber        <NA>
#> 1910      England   E12000003 Yorkshire and The Humber        <NA>
#> 1911      England   E12000003 Yorkshire and The Humber        <NA>
#> 1912      England   E12000003 Yorkshire and The Humber        <NA>
#> 1913      England   E12000003 Yorkshire and The Humber   E06000010
#> 1914      England   E12000003 Yorkshire and The Humber   E06000010
#> 1915      England   E12000003 Yorkshire and The Humber   E06000010
#> 1916      England   E12000003 Yorkshire and The Humber   E06000011
#> 1917      England   E12000003 Yorkshire and The Humber   E06000011
#> 1918      England   E12000003 Yorkshire and The Humber   E06000011
#> 1919      England   E12000003 Yorkshire and The Humber   E06000012
#> 1920      England   E12000003 Yorkshire and The Humber   E06000012
#> 1921      England   E12000003 Yorkshire and The Humber   E06000012
#> 1922      England   E12000003 Yorkshire and The Humber   E06000013
#> 1923      England   E12000003 Yorkshire and The Humber   E06000013
#> 1924      England   E12000003 Yorkshire and The Humber   E06000013
#> 1925      England   E12000003 Yorkshire and The Humber   E06000014
#> 1926      England   E12000003 Yorkshire and The Humber   E06000014
#> 1927      England   E12000003 Yorkshire and The Humber   E06000014
#> 1928      England   E12000003 Yorkshire and The Humber   E06000065
#> 1929      England   E12000003 Yorkshire and The Humber   E06000065
#> 1930      England   E12000003 Yorkshire and The Humber   E06000065
#> 1931      England   E12000003 Yorkshire and The Humber   E08000016
#> 1932      England   E12000003 Yorkshire and The Humber   E08000016
#> 1933      England   E12000003 Yorkshire and The Humber   E08000016
#> 1934      England   E12000003 Yorkshire and The Humber   E08000017
#> 1935      England   E12000003 Yorkshire and The Humber   E08000017
#> 1936      England   E12000003 Yorkshire and The Humber   E08000017
#> 1937      England   E12000003 Yorkshire and The Humber   E08000018
#> 1938      England   E12000003 Yorkshire and The Humber   E08000018
#> 1939      England   E12000003 Yorkshire and The Humber   E08000018
#> 1940      England   E12000003 Yorkshire and The Humber   E08000019
#> 1941      England   E12000003 Yorkshire and The Humber   E08000019
#> 1942      England   E12000003 Yorkshire and The Humber   E08000019
#> 1943      England   E12000003 Yorkshire and The Humber   E08000032
#> 1944      England   E12000003 Yorkshire and The Humber   E08000032
#> 1945      England   E12000003 Yorkshire and The Humber   E08000032
#> 1946      England   E12000003 Yorkshire and The Humber   E08000033
#> 1947      England   E12000003 Yorkshire and The Humber   E08000033
#> 1948      England   E12000003 Yorkshire and The Humber   E08000033
#> 1949      England   E12000003 Yorkshire and The Humber   E08000034
#> 1950      England   E12000003 Yorkshire and The Humber   E08000034
#> 1951      England   E12000003 Yorkshire and The Humber   E08000034
#> 1952      England   E12000003 Yorkshire and The Humber   E08000035
#> 1953      England   E12000003 Yorkshire and The Humber   E08000035
#> 1954      England   E12000003 Yorkshire and The Humber   E08000035
#> 1955      England   E12000003 Yorkshire and The Humber   E08000036
#> 1956      England   E12000003 Yorkshire and The Humber   E08000036
#> 1957      England   E12000003 Yorkshire and The Humber   E08000036
#> 1958      England   E12000004            East Midlands        <NA>
#> 1959      England   E12000004            East Midlands        <NA>
#> 1960      England   E12000004            East Midlands        <NA>
#> 1961      England   E12000004            East Midlands        <NA>
#> 1962      England   E12000004            East Midlands   E06000015
#> 1963      England   E12000004            East Midlands   E06000015
#> 1964      England   E12000004            East Midlands   E06000015
#> 1965      England   E12000004            East Midlands   E06000016
#> 1966      England   E12000004            East Midlands   E06000016
#> 1967      England   E12000004            East Midlands   E06000016
#> 1968      England   E12000004            East Midlands   E06000017
#> 1969      England   E12000004            East Midlands   E06000017
#> 1970      England   E12000004            East Midlands   E06000018
#> 1971      England   E12000004            East Midlands   E06000018
#> 1972      England   E12000004            East Midlands   E06000018
#> 1973      England   E12000004            East Midlands   E06000061
#> 1974      England   E12000004            East Midlands   E06000061
#> 1975      England   E12000004            East Midlands   E06000061
#> 1976      England   E12000004            East Midlands   E06000062
#> 1977      England   E12000004            East Midlands   E06000062
#> 1978      England   E12000004            East Midlands   E06000062
#> 1979      England   E12000004            East Midlands   E10000007
#> 1980      England   E12000004            East Midlands   E10000007
#> 1981      England   E12000004            East Midlands   E10000007
#> 1982      England   E12000004            East Midlands   E10000018
#> 1983      England   E12000004            East Midlands   E10000018
#> 1984      England   E12000004            East Midlands   E10000018
#> 1985      England   E12000004            East Midlands   E10000019
#> 1986      England   E12000004            East Midlands   E10000019
#> 1987      England   E12000004            East Midlands   E10000019
#> 1988      England   E12000004            East Midlands   E10000024
#> 1989      England   E12000004            East Midlands   E10000024
#> 1990      England   E12000004            East Midlands   E10000024
#> 1991      England   E12000005            West Midlands        <NA>
#> 1992      England   E12000005            West Midlands        <NA>
#> 1993      England   E12000005            West Midlands        <NA>
#> 1994      England   E12000005            West Midlands        <NA>
#> 1995      England   E12000005            West Midlands   E06000019
#> 1996      England   E12000005            West Midlands   E06000019
#> 1997      England   E12000005            West Midlands   E06000019
#> 1998      England   E12000005            West Midlands   E06000020
#> 1999      England   E12000005            West Midlands   E06000020
#> 2000      England   E12000005            West Midlands   E06000020
#> 2001      England   E12000005            West Midlands   E06000021
#> 2002      England   E12000005            West Midlands   E06000021
#> 2003      England   E12000005            West Midlands   E06000021
#> 2004      England   E12000005            West Midlands   E06000051
#> 2005      England   E12000005            West Midlands   E06000051
#> 2006      England   E12000005            West Midlands   E06000051
#> 2007      England   E12000005            West Midlands   E08000025
#> 2008      England   E12000005            West Midlands   E08000025
#> 2009      England   E12000005            West Midlands   E08000025
#> 2010      England   E12000005            West Midlands   E08000026
#> 2011      England   E12000005            West Midlands   E08000026
#> 2012      England   E12000005            West Midlands   E08000026
#> 2013      England   E12000005            West Midlands   E08000027
#> 2014      England   E12000005            West Midlands   E08000027
#> 2015      England   E12000005            West Midlands   E08000027
#> 2016      England   E12000005            West Midlands   E08000028
#> 2017      England   E12000005            West Midlands   E08000028
#> 2018      England   E12000005            West Midlands   E08000028
#> 2019      England   E12000005            West Midlands   E08000029
#> 2020      England   E12000005            West Midlands   E08000029
#> 2021      England   E12000005            West Midlands   E08000029
#> 2022      England   E12000005            West Midlands   E08000030
#> 2023      England   E12000005            West Midlands   E08000030
#> 2024      England   E12000005            West Midlands   E08000030
#> 2025      England   E12000005            West Midlands   E08000031
#> 2026      England   E12000005            West Midlands   E08000031
#> 2027      England   E12000005            West Midlands   E08000031
#> 2028      England   E12000005            West Midlands   E10000028
#> 2029      England   E12000005            West Midlands   E10000028
#> 2030      England   E12000005            West Midlands   E10000028
#> 2031      England   E12000005            West Midlands   E10000031
#> 2032      England   E12000005            West Midlands   E10000031
#> 2033      England   E12000005            West Midlands   E10000031
#> 2034      England   E12000005            West Midlands   E10000034
#> 2035      England   E12000005            West Midlands   E10000034
#> 2036      England   E12000005            West Midlands   E10000034
#> 2037      England   E12000006          East of England        <NA>
#> 2038      England   E12000006          East of England        <NA>
#> 2039      England   E12000006          East of England        <NA>
#> 2040      England   E12000006          East of England        <NA>
#> 2041      England   E12000006          East of England   E06000031
#> 2042      England   E12000006          East of England   E06000031
#> 2043      England   E12000006          East of England   E06000031
#> 2044      England   E12000006          East of England   E06000032
#> 2045      England   E12000006          East of England   E06000032
#> 2046      England   E12000006          East of England   E06000032
#> 2047      England   E12000006          East of England   E06000033
#> 2048      England   E12000006          East of England   E06000033
#> 2049      England   E12000006          East of England   E06000033
#> 2050      England   E12000006          East of England   E06000034
#> 2051      England   E12000006          East of England   E06000034
#> 2052      England   E12000006          East of England   E06000034
#> 2053      England   E12000006          East of England   E06000055
#> 2054      England   E12000006          East of England   E06000055
#> 2055      England   E12000006          East of England   E06000055
#> 2056      England   E12000006          East of England   E06000056
#> 2057      England   E12000006          East of England   E06000056
#> 2058      England   E12000006          East of England   E06000056
#> 2059      England   E12000006          East of England   E10000003
#> 2060      England   E12000006          East of England   E10000003
#> 2061      England   E12000006          East of England   E10000003
#> 2062      England   E12000006          East of England   E10000012
#> 2063      England   E12000006          East of England   E10000012
#> 2064      England   E12000006          East of England   E10000012
#> 2065      England   E12000006          East of England   E10000015
#> 2066      England   E12000006          East of England   E10000015
#> 2067      England   E12000006          East of England   E10000015
#> 2068      England   E12000006          East of England   E10000020
#> 2069      England   E12000006          East of England   E10000020
#> 2070      England   E12000006          East of England   E10000020
#> 2071      England   E12000006          East of England   E10000029
#> 2072      England   E12000006          East of England   E10000029
#> 2073      England   E12000006          East of England   E10000029
#> 2074      England   E12000007                   London        <NA>
#> 2075      England   E12000007                   London        <NA>
#> 2076      England   E12000007                   London        <NA>
#> 2077      England   E12000007                   London        <NA>
#> 2078      England   E12000007                   London   E09000001
#> 2079      England   E12000007                   London   E09000002
#> 2080      England   E12000007                   London   E09000002
#> 2081      England   E12000007                   London   E09000002
#> 2082      England   E12000007                   London   E09000003
#> 2083      England   E12000007                   London   E09000003
#> 2084      England   E12000007                   London   E09000003
#> 2085      England   E12000007                   London   E09000004
#> 2086      England   E12000007                   London   E09000004
#> 2087      England   E12000007                   London   E09000004
#> 2088      England   E12000007                   London   E09000005
#> 2089      England   E12000007                   London   E09000005
#> 2090      England   E12000007                   London   E09000005
#> 2091      England   E12000007                   London   E09000006
#> 2092      England   E12000007                   London   E09000006
#> 2093      England   E12000007                   London   E09000006
#> 2094      England   E12000007                   London   E09000007
#> 2095      England   E12000007                   London   E09000007
#> 2096      England   E12000007                   London   E09000007
#> 2097      England   E12000007                   London   E09000008
#> 2098      England   E12000007                   London   E09000008
#> 2099      England   E12000007                   London   E09000008
#> 2100      England   E12000007                   London   E09000009
#> 2101      England   E12000007                   London   E09000009
#> 2102      England   E12000007                   London   E09000009
#> 2103      England   E12000007                   London   E09000010
#> 2104      England   E12000007                   London   E09000010
#> 2105      England   E12000007                   London   E09000010
#> 2106      England   E12000007                   London   E09000011
#> 2107      England   E12000007                   London   E09000011
#> 2108      England   E12000007                   London   E09000011
#> 2109      England   E12000007                   London   E09000012
#> 2110      England   E12000007                   London   E09000012
#> 2111      England   E12000007                   London   E09000012
#> 2112      England   E12000007                   London   E09000013
#> 2113      England   E12000007                   London   E09000013
#> 2114      England   E12000007                   London   E09000013
#> 2115      England   E12000007                   London   E09000014
#> 2116      England   E12000007                   London   E09000014
#> 2117      England   E12000007                   London   E09000014
#> 2118      England   E12000007                   London   E09000015
#> 2119      England   E12000007                   London   E09000015
#> 2120      England   E12000007                   London   E09000015
#> 2121      England   E12000007                   London   E09000016
#> 2122      England   E12000007                   London   E09000016
#> 2123      England   E12000007                   London   E09000016
#> 2124      England   E12000007                   London   E09000017
#> 2125      England   E12000007                   London   E09000017
#> 2126      England   E12000007                   London   E09000017
#> 2127      England   E12000007                   London   E09000018
#> 2128      England   E12000007                   London   E09000018
#> 2129      England   E12000007                   London   E09000018
#> 2130      England   E12000007                   London   E09000019
#> 2131      England   E12000007                   London   E09000019
#> 2132      England   E12000007                   London   E09000019
#> 2133      England   E12000007                   London   E09000020
#> 2134      England   E12000007                   London   E09000020
#> 2135      England   E12000007                   London   E09000020
#> 2136      England   E12000007                   London   E09000021
#> 2137      England   E12000007                   London   E09000021
#> 2138      England   E12000007                   London   E09000021
#> 2139      England   E12000007                   London   E09000022
#> 2140      England   E12000007                   London   E09000022
#> 2141      England   E12000007                   London   E09000022
#> 2142      England   E12000007                   London   E09000023
#> 2143      England   E12000007                   London   E09000023
#> 2144      England   E12000007                   London   E09000023
#> 2145      England   E12000007                   London   E09000024
#> 2146      England   E12000007                   London   E09000024
#> 2147      England   E12000007                   London   E09000024
#> 2148      England   E12000007                   London   E09000025
#> 2149      England   E12000007                   London   E09000025
#> 2150      England   E12000007                   London   E09000025
#> 2151      England   E12000007                   London   E09000026
#> 2152      England   E12000007                   London   E09000026
#> 2153      England   E12000007                   London   E09000026
#> 2154      England   E12000007                   London   E09000027
#> 2155      England   E12000007                   London   E09000027
#> 2156      England   E12000007                   London   E09000027
#> 2157      England   E12000007                   London   E09000028
#> 2158      England   E12000007                   London   E09000028
#> 2159      England   E12000007                   London   E09000028
#> 2160      England   E12000007                   London   E09000029
#> 2161      England   E12000007                   London   E09000029
#> 2162      England   E12000007                   London   E09000029
#> 2163      England   E12000007                   London   E09000030
#> 2164      England   E12000007                   London   E09000030
#> 2165      England   E12000007                   London   E09000030
#> 2166      England   E12000007                   London   E09000031
#> 2167      England   E12000007                   London   E09000031
#> 2168      England   E12000007                   London   E09000031
#> 2169      England   E12000007                   London   E09000032
#> 2170      England   E12000007                   London   E09000032
#> 2171      England   E12000007                   London   E09000032
#> 2172      England   E12000007                   London   E09000033
#> 2173      England   E12000007                   London   E09000033
#> 2174      England   E12000007                   London   E09000033
#> 2175      England   E12000008               South East        <NA>
#> 2176      England   E12000008               South East        <NA>
#> 2177      England   E12000008               South East        <NA>
#> 2178      England   E12000008               South East        <NA>
#> 2179      England   E12000008               South East   E06000035
#> 2180      England   E12000008               South East   E06000035
#> 2181      England   E12000008               South East   E06000035
#> 2182      England   E12000008               South East   E06000036
#> 2183      England   E12000008               South East   E06000036
#> 2184      England   E12000008               South East   E06000036
#> 2185      England   E12000008               South East   E06000037
#> 2186      England   E12000008               South East   E06000037
#> 2187      England   E12000008               South East   E06000037
#> 2188      England   E12000008               South East   E06000038
#> 2189      England   E12000008               South East   E06000038
#> 2190      England   E12000008               South East   E06000038
#> 2191      England   E12000008               South East   E06000039
#> 2192      England   E12000008               South East   E06000039
#> 2193      England   E12000008               South East   E06000039
#> 2194      England   E12000008               South East   E06000040
#> 2195      England   E12000008               South East   E06000040
#> 2196      England   E12000008               South East   E06000040
#> 2197      England   E12000008               South East   E06000041
#> 2198      England   E12000008               South East   E06000041
#> 2199      England   E12000008               South East   E06000041
#> 2200      England   E12000008               South East   E06000042
#> 2201      England   E12000008               South East   E06000042
#> 2202      England   E12000008               South East   E06000042
#> 2203      England   E12000008               South East   E06000043
#> 2204      England   E12000008               South East   E06000043
#> 2205      England   E12000008               South East   E06000043
#> 2206      England   E12000008               South East   E06000044
#> 2207      England   E12000008               South East   E06000044
#> 2208      England   E12000008               South East   E06000044
#> 2209      England   E12000008               South East   E06000045
#> 2210      England   E12000008               South East   E06000045
#> 2211      England   E12000008               South East   E06000045
#> 2212      England   E12000008               South East   E06000046
#> 2213      England   E12000008               South East   E06000046
#> 2214      England   E12000008               South East   E06000046
#> 2215      England   E12000008               South East   E06000060
#> 2216      England   E12000008               South East   E06000060
#> 2217      England   E12000008               South East   E06000060
#> 2218      England   E12000008               South East   E10000011
#> 2219      England   E12000008               South East   E10000011
#> 2220      England   E12000008               South East   E10000011
#> 2221      England   E12000008               South East   E10000014
#> 2222      England   E12000008               South East   E10000014
#> 2223      England   E12000008               South East   E10000014
#> 2224      England   E12000008               South East   E10000016
#> 2225      England   E12000008               South East   E10000016
#> 2226      England   E12000008               South East   E10000016
#> 2227      England   E12000008               South East   E10000025
#> 2228      England   E12000008               South East   E10000025
#> 2229      England   E12000008               South East   E10000025
#> 2230      England   E12000008               South East   E10000030
#> 2231      England   E12000008               South East   E10000030
#> 2232      England   E12000008               South East   E10000030
#> 2233      England   E12000008               South East   E10000032
#> 2234      England   E12000008               South East   E10000032
#> 2235      England   E12000008               South East   E10000032
#> 2236      England   E12000009               South West        <NA>
#> 2237      England   E12000009               South West        <NA>
#> 2238      England   E12000009               South West        <NA>
#> 2239      England   E12000009               South West        <NA>
#> 2240      England   E12000009               South West   E06000022
#> 2241      England   E12000009               South West   E06000022
#> 2242      England   E12000009               South West   E06000022
#> 2243      England   E12000009               South West   E06000023
#> 2244      England   E12000009               South West   E06000023
#> 2245      England   E12000009               South West   E06000023
#> 2246      England   E12000009               South West   E06000024
#> 2247      England   E12000009               South West   E06000024
#> 2248      England   E12000009               South West   E06000024
#> 2249      England   E12000009               South West   E06000025
#> 2250      England   E12000009               South West   E06000025
#> 2251      England   E12000009               South West   E06000025
#> 2252      England   E12000009               South West   E06000026
#> 2253      England   E12000009               South West   E06000026
#> 2254      England   E12000009               South West   E06000026
#> 2255      England   E12000009               South West   E06000027
#> 2256      England   E12000009               South West   E06000027
#> 2257      England   E12000009               South West   E06000027
#> 2258      England   E12000009               South West   E06000030
#> 2259      England   E12000009               South West   E06000030
#> 2260      England   E12000009               South West   E06000030
#> 2261      England   E12000009               South West   E06000052
#> 2262      England   E12000009               South West   E06000052
#> 2263      England   E12000009               South West   E06000052
#> 2264      England   E12000009               South West   E06000053
#> 2265      England   E12000009               South West   E06000054
#> 2266      England   E12000009               South West   E06000054
#> 2267      England   E12000009               South West   E06000054
#> 2268      England   E12000009               South West   E06000058
#> 2269      England   E12000009               South West   E06000058
#> 2270      England   E12000009               South West   E06000058
#> 2271      England   E12000009               South West   E06000059
#> 2272      England   E12000009               South West   E06000059
#> 2273      England   E12000009               South West   E06000059
#> 2274      England   E12000009               South West   E06000066
#> 2275      England   E12000009               South West   E06000066
#> 2276      England   E12000009               South West   E06000066
#> 2277      England   E12000009               South West   E10000008
#> 2278      England   E12000009               South West   E10000008
#> 2279      England   E12000009               South West   E10000008
#> 2280      England   E12000009               South West   E10000013
#> 2281      England   E12000009               South West   E10000013
#> 2282      England   E12000009               South West   E10000013
#> 2283      England        <NA>                     <NA>        <NA>
#> 2284      England        <NA>                     <NA>        <NA>
#> 2285      England        <NA>                     <NA>        <NA>
#> 2286      England        <NA>                     <NA>        <NA>
#> 2287      England   E12000001               North East        <NA>
#> 2288      England   E12000001               North East        <NA>
#> 2289      England   E12000001               North East        <NA>
#> 2290      England   E12000001               North East        <NA>
#> 2291      England   E12000001               North East   E06000001
#> 2292      England   E12000001               North East   E06000001
#> 2293      England   E12000001               North East   E06000001
#> 2294      England   E12000001               North East   E06000002
#> 2295      England   E12000001               North East   E06000002
#> 2296      England   E12000001               North East   E06000002
#> 2297      England   E12000001               North East   E06000003
#> 2298      England   E12000001               North East   E06000003
#> 2299      England   E12000001               North East   E06000003
#> 2300      England   E12000001               North East   E06000004
#> 2301      England   E12000001               North East   E06000004
#> 2302      England   E12000001               North East   E06000004
#> 2303      England   E12000001               North East   E06000005
#> 2304      England   E12000001               North East   E06000005
#> 2305      England   E12000001               North East   E06000005
#> 2306      England   E12000001               North East   E06000047
#> 2307      England   E12000001               North East   E06000047
#> 2308      England   E12000001               North East   E06000047
#> 2309      England   E12000001               North East   E06000057
#> 2310      England   E12000001               North East   E06000057
#> 2311      England   E12000001               North East   E06000057
#> 2312      England   E12000001               North East   E08000021
#> 2313      England   E12000001               North East   E08000021
#> 2314      England   E12000001               North East   E08000021
#> 2315      England   E12000001               North East   E08000022
#> 2316      England   E12000001               North East   E08000022
#> 2317      England   E12000001               North East   E08000022
#> 2318      England   E12000001               North East   E08000023
#> 2319      England   E12000001               North East   E08000023
#> 2320      England   E12000001               North East   E08000023
#> 2321      England   E12000001               North East   E08000024
#> 2322      England   E12000001               North East   E08000024
#> 2323      England   E12000001               North East   E08000024
#> 2324      England   E12000001               North East   E08000037
#> 2325      England   E12000001               North East   E08000037
#> 2326      England   E12000001               North East   E08000037
#> 2327      England   E12000002               North West        <NA>
#> 2328      England   E12000002               North West        <NA>
#> 2329      England   E12000002               North West        <NA>
#> 2330      England   E12000002               North West        <NA>
#> 2331      England   E12000002               North West   E06000006
#> 2332      England   E12000002               North West   E06000006
#> 2333      England   E12000002               North West   E06000006
#> 2334      England   E12000002               North West   E06000007
#> 2335      England   E12000002               North West   E06000007
#> 2336      England   E12000002               North West   E06000007
#> 2337      England   E12000002               North West   E06000008
#> 2338      England   E12000002               North West   E06000008
#> 2339      England   E12000002               North West   E06000008
#> 2340      England   E12000002               North West   E06000009
#> 2341      England   E12000002               North West   E06000009
#> 2342      England   E12000002               North West   E06000009
#> 2343      England   E12000002               North West   E06000049
#> 2344      England   E12000002               North West   E06000049
#> 2345      England   E12000002               North West   E06000049
#> 2346      England   E12000002               North West   E06000050
#> 2347      England   E12000002               North West   E06000050
#> 2348      England   E12000002               North West   E06000050
#> 2349      England   E12000002               North West   E06000063
#> 2350      England   E12000002               North West   E06000063
#> 2351      England   E12000002               North West   E06000063
#> 2352      England   E12000002               North West   E06000064
#> 2353      England   E12000002               North West   E06000064
#> 2354      England   E12000002               North West   E06000064
#> 2355      England   E12000002               North West   E08000001
#> 2356      England   E12000002               North West   E08000001
#> 2357      England   E12000002               North West   E08000001
#> 2358      England   E12000002               North West   E08000002
#> 2359      England   E12000002               North West   E08000002
#> 2360      England   E12000002               North West   E08000002
#> 2361      England   E12000002               North West   E08000003
#> 2362      England   E12000002               North West   E08000003
#> 2363      England   E12000002               North West   E08000003
#> 2364      England   E12000002               North West   E08000004
#> 2365      England   E12000002               North West   E08000004
#> 2366      England   E12000002               North West   E08000004
#> 2367      England   E12000002               North West   E08000005
#> 2368      England   E12000002               North West   E08000005
#> 2369      England   E12000002               North West   E08000005
#> 2370      England   E12000002               North West   E08000006
#> 2371      England   E12000002               North West   E08000006
#> 2372      England   E12000002               North West   E08000006
#> 2373      England   E12000002               North West   E08000007
#> 2374      England   E12000002               North West   E08000007
#> 2375      England   E12000002               North West   E08000007
#> 2376      England   E12000002               North West   E08000008
#> 2377      England   E12000002               North West   E08000008
#> 2378      England   E12000002               North West   E08000008
#> 2379      England   E12000002               North West   E08000009
#> 2380      England   E12000002               North West   E08000009
#> 2381      England   E12000002               North West   E08000009
#> 2382      England   E12000002               North West   E08000010
#> 2383      England   E12000002               North West   E08000010
#> 2384      England   E12000002               North West   E08000010
#> 2385      England   E12000002               North West   E08000011
#> 2386      England   E12000002               North West   E08000011
#> 2387      England   E12000002               North West   E08000011
#> 2388      England   E12000002               North West   E08000012
#> 2389      England   E12000002               North West   E08000012
#> 2390      England   E12000002               North West   E08000012
#> 2391      England   E12000002               North West   E08000013
#> 2392      England   E12000002               North West   E08000013
#> 2393      England   E12000002               North West   E08000013
#> 2394      England   E12000002               North West   E08000014
#> 2395      England   E12000002               North West   E08000014
#> 2396      England   E12000002               North West   E08000014
#> 2397      England   E12000002               North West   E08000015
#> 2398      England   E12000002               North West   E08000015
#> 2399      England   E12000002               North West   E08000015
#> 2400      England   E12000002               North West   E10000017
#> 2401      England   E12000002               North West   E10000017
#> 2402      England   E12000002               North West   E10000017
#> 2403      England   E12000003 Yorkshire and The Humber        <NA>
#> 2404      England   E12000003 Yorkshire and The Humber        <NA>
#> 2405      England   E12000003 Yorkshire and The Humber        <NA>
#> 2406      England   E12000003 Yorkshire and The Humber        <NA>
#> 2407      England   E12000003 Yorkshire and The Humber   E06000010
#> 2408      England   E12000003 Yorkshire and The Humber   E06000010
#> 2409      England   E12000003 Yorkshire and The Humber   E06000010
#> 2410      England   E12000003 Yorkshire and The Humber   E06000011
#> 2411      England   E12000003 Yorkshire and The Humber   E06000011
#> 2412      England   E12000003 Yorkshire and The Humber   E06000011
#> 2413      England   E12000003 Yorkshire and The Humber   E06000012
#> 2414      England   E12000003 Yorkshire and The Humber   E06000012
#> 2415      England   E12000003 Yorkshire and The Humber   E06000012
#> 2416      England   E12000003 Yorkshire and The Humber   E06000013
#> 2417      England   E12000003 Yorkshire and The Humber   E06000013
#> 2418      England   E12000003 Yorkshire and The Humber   E06000013
#> 2419      England   E12000003 Yorkshire and The Humber   E06000014
#> 2420      England   E12000003 Yorkshire and The Humber   E06000014
#> 2421      England   E12000003 Yorkshire and The Humber   E06000014
#> 2422      England   E12000003 Yorkshire and The Humber   E06000065
#> 2423      England   E12000003 Yorkshire and The Humber   E06000065
#> 2424      England   E12000003 Yorkshire and The Humber   E06000065
#> 2425      England   E12000003 Yorkshire and The Humber   E08000016
#> 2426      England   E12000003 Yorkshire and The Humber   E08000016
#> 2427      England   E12000003 Yorkshire and The Humber   E08000016
#> 2428      England   E12000003 Yorkshire and The Humber   E08000017
#> 2429      England   E12000003 Yorkshire and The Humber   E08000017
#> 2430      England   E12000003 Yorkshire and The Humber   E08000017
#> 2431      England   E12000003 Yorkshire and The Humber   E08000018
#> 2432      England   E12000003 Yorkshire and The Humber   E08000018
#> 2433      England   E12000003 Yorkshire and The Humber   E08000018
#> 2434      England   E12000003 Yorkshire and The Humber   E08000019
#> 2435      England   E12000003 Yorkshire and The Humber   E08000019
#> 2436      England   E12000003 Yorkshire and The Humber   E08000019
#> 2437      England   E12000003 Yorkshire and The Humber   E08000032
#> 2438      England   E12000003 Yorkshire and The Humber   E08000032
#> 2439      England   E12000003 Yorkshire and The Humber   E08000032
#> 2440      England   E12000003 Yorkshire and The Humber   E08000033
#> 2441      England   E12000003 Yorkshire and The Humber   E08000033
#> 2442      England   E12000003 Yorkshire and The Humber   E08000033
#> 2443      England   E12000003 Yorkshire and The Humber   E08000034
#> 2444      England   E12000003 Yorkshire and The Humber   E08000034
#> 2445      England   E12000003 Yorkshire and The Humber   E08000034
#> 2446      England   E12000003 Yorkshire and The Humber   E08000035
#> 2447      England   E12000003 Yorkshire and The Humber   E08000035
#> 2448      England   E12000003 Yorkshire and The Humber   E08000035
#> 2449      England   E12000003 Yorkshire and The Humber   E08000036
#> 2450      England   E12000003 Yorkshire and The Humber   E08000036
#> 2451      England   E12000003 Yorkshire and The Humber   E08000036
#> 2452      England   E12000004            East Midlands        <NA>
#> 2453      England   E12000004            East Midlands        <NA>
#> 2454      England   E12000004            East Midlands        <NA>
#> 2455      England   E12000004            East Midlands        <NA>
#> 2456      England   E12000004            East Midlands   E06000015
#> 2457      England   E12000004            East Midlands   E06000015
#> 2458      England   E12000004            East Midlands   E06000015
#> 2459      England   E12000004            East Midlands   E06000016
#> 2460      England   E12000004            East Midlands   E06000016
#> 2461      England   E12000004            East Midlands   E06000016
#> 2462      England   E12000004            East Midlands   E06000017
#> 2463      England   E12000004            East Midlands   E06000017
#> 2464      England   E12000004            East Midlands   E06000018
#> 2465      England   E12000004            East Midlands   E06000018
#> 2466      England   E12000004            East Midlands   E06000018
#> 2467      England   E12000004            East Midlands   E06000061
#> 2468      England   E12000004            East Midlands   E06000061
#> 2469      England   E12000004            East Midlands   E06000061
#> 2470      England   E12000004            East Midlands   E06000062
#> 2471      England   E12000004            East Midlands   E06000062
#> 2472      England   E12000004            East Midlands   E06000062
#> 2473      England   E12000004            East Midlands   E10000007
#> 2474      England   E12000004            East Midlands   E10000007
#> 2475      England   E12000004            East Midlands   E10000007
#> 2476      England   E12000004            East Midlands   E10000018
#> 2477      England   E12000004            East Midlands   E10000018
#> 2478      England   E12000004            East Midlands   E10000018
#> 2479      England   E12000004            East Midlands   E10000019
#> 2480      England   E12000004            East Midlands   E10000019
#> 2481      England   E12000004            East Midlands   E10000019
#> 2482      England   E12000004            East Midlands   E10000024
#> 2483      England   E12000004            East Midlands   E10000024
#> 2484      England   E12000004            East Midlands   E10000024
#> 2485      England   E12000005            West Midlands        <NA>
#> 2486      England   E12000005            West Midlands        <NA>
#> 2487      England   E12000005            West Midlands        <NA>
#> 2488      England   E12000005            West Midlands        <NA>
#> 2489      England   E12000005            West Midlands   E06000019
#> 2490      England   E12000005            West Midlands   E06000019
#> 2491      England   E12000005            West Midlands   E06000019
#> 2492      England   E12000005            West Midlands   E06000020
#> 2493      England   E12000005            West Midlands   E06000020
#> 2494      England   E12000005            West Midlands   E06000020
#> 2495      England   E12000005            West Midlands   E06000021
#> 2496      England   E12000005            West Midlands   E06000021
#> 2497      England   E12000005            West Midlands   E06000021
#> 2498      England   E12000005            West Midlands   E06000051
#> 2499      England   E12000005            West Midlands   E06000051
#> 2500      England   E12000005            West Midlands   E06000051
#> 2501      England   E12000005            West Midlands   E08000025
#> 2502      England   E12000005            West Midlands   E08000025
#> 2503      England   E12000005            West Midlands   E08000025
#> 2504      England   E12000005            West Midlands   E08000026
#> 2505      England   E12000005            West Midlands   E08000026
#> 2506      England   E12000005            West Midlands   E08000026
#> 2507      England   E12000005            West Midlands   E08000027
#> 2508      England   E12000005            West Midlands   E08000027
#> 2509      England   E12000005            West Midlands   E08000027
#> 2510      England   E12000005            West Midlands   E08000028
#> 2511      England   E12000005            West Midlands   E08000028
#> 2512      England   E12000005            West Midlands   E08000028
#> 2513      England   E12000005            West Midlands   E08000029
#> 2514      England   E12000005            West Midlands   E08000029
#> 2515      England   E12000005            West Midlands   E08000029
#> 2516      England   E12000005            West Midlands   E08000030
#> 2517      England   E12000005            West Midlands   E08000030
#> 2518      England   E12000005            West Midlands   E08000030
#> 2519      England   E12000005            West Midlands   E08000031
#> 2520      England   E12000005            West Midlands   E08000031
#> 2521      England   E12000005            West Midlands   E08000031
#> 2522      England   E12000005            West Midlands   E10000028
#> 2523      England   E12000005            West Midlands   E10000028
#> 2524      England   E12000005            West Midlands   E10000028
#> 2525      England   E12000005            West Midlands   E10000031
#> 2526      England   E12000005            West Midlands   E10000031
#> 2527      England   E12000005            West Midlands   E10000031
#> 2528      England   E12000005            West Midlands   E10000034
#> 2529      England   E12000005            West Midlands   E10000034
#> 2530      England   E12000005            West Midlands   E10000034
#> 2531      England   E12000006          East of England        <NA>
#> 2532      England   E12000006          East of England        <NA>
#> 2533      England   E12000006          East of England        <NA>
#> 2534      England   E12000006          East of England        <NA>
#> 2535      England   E12000006          East of England   E06000031
#> 2536      England   E12000006          East of England   E06000031
#> 2537      England   E12000006          East of England   E06000031
#> 2538      England   E12000006          East of England   E06000032
#> 2539      England   E12000006          East of England   E06000032
#> 2540      England   E12000006          East of England   E06000032
#> 2541      England   E12000006          East of England   E06000033
#> 2542      England   E12000006          East of England   E06000033
#> 2543      England   E12000006          East of England   E06000033
#> 2544      England   E12000006          East of England   E06000034
#> 2545      England   E12000006          East of England   E06000034
#> 2546      England   E12000006          East of England   E06000034
#> 2547      England   E12000006          East of England   E06000055
#> 2548      England   E12000006          East of England   E06000055
#> 2549      England   E12000006          East of England   E06000055
#> 2550      England   E12000006          East of England   E06000056
#> 2551      England   E12000006          East of England   E06000056
#> 2552      England   E12000006          East of England   E06000056
#> 2553      England   E12000006          East of England   E10000003
#> 2554      England   E12000006          East of England   E10000003
#> 2555      England   E12000006          East of England   E10000003
#> 2556      England   E12000006          East of England   E10000012
#> 2557      England   E12000006          East of England   E10000012
#> 2558      England   E12000006          East of England   E10000012
#> 2559      England   E12000006          East of England   E10000015
#> 2560      England   E12000006          East of England   E10000015
#> 2561      England   E12000006          East of England   E10000015
#> 2562      England   E12000006          East of England   E10000020
#> 2563      England   E12000006          East of England   E10000020
#> 2564      England   E12000006          East of England   E10000020
#> 2565      England   E12000006          East of England   E10000029
#> 2566      England   E12000006          East of England   E10000029
#> 2567      England   E12000006          East of England   E10000029
#> 2568      England   E12000007                   London        <NA>
#> 2569      England   E12000007                   London        <NA>
#> 2570      England   E12000007                   London        <NA>
#> 2571      England   E12000007                   London        <NA>
#> 2572      England   E12000007                   London   E09000001
#> 2573      England   E12000007                   London   E09000002
#> 2574      England   E12000007                   London   E09000002
#> 2575      England   E12000007                   London   E09000002
#> 2576      England   E12000007                   London   E09000003
#> 2577      England   E12000007                   London   E09000003
#> 2578      England   E12000007                   London   E09000003
#> 2579      England   E12000007                   London   E09000004
#> 2580      England   E12000007                   London   E09000004
#> 2581      England   E12000007                   London   E09000004
#> 2582      England   E12000007                   London   E09000005
#> 2583      England   E12000007                   London   E09000005
#> 2584      England   E12000007                   London   E09000005
#> 2585      England   E12000007                   London   E09000006
#> 2586      England   E12000007                   London   E09000006
#> 2587      England   E12000007                   London   E09000006
#> 2588      England   E12000007                   London   E09000007
#> 2589      England   E12000007                   London   E09000007
#> 2590      England   E12000007                   London   E09000007
#> 2591      England   E12000007                   London   E09000008
#> 2592      England   E12000007                   London   E09000008
#> 2593      England   E12000007                   London   E09000008
#> 2594      England   E12000007                   London   E09000009
#> 2595      England   E12000007                   London   E09000009
#> 2596      England   E12000007                   London   E09000009
#> 2597      England   E12000007                   London   E09000010
#> 2598      England   E12000007                   London   E09000010
#> 2599      England   E12000007                   London   E09000010
#> 2600      England   E12000007                   London   E09000011
#> 2601      England   E12000007                   London   E09000011
#> 2602      England   E12000007                   London   E09000011
#> 2603      England   E12000007                   London   E09000012
#> 2604      England   E12000007                   London   E09000012
#> 2605      England   E12000007                   London   E09000012
#> 2606      England   E12000007                   London   E09000013
#> 2607      England   E12000007                   London   E09000013
#> 2608      England   E12000007                   London   E09000013
#> 2609      England   E12000007                   London   E09000014
#> 2610      England   E12000007                   London   E09000014
#> 2611      England   E12000007                   London   E09000014
#> 2612      England   E12000007                   London   E09000015
#> 2613      England   E12000007                   London   E09000015
#> 2614      England   E12000007                   London   E09000015
#> 2615      England   E12000007                   London   E09000016
#> 2616      England   E12000007                   London   E09000016
#> 2617      England   E12000007                   London   E09000016
#> 2618      England   E12000007                   London   E09000017
#> 2619      England   E12000007                   London   E09000017
#> 2620      England   E12000007                   London   E09000017
#> 2621      England   E12000007                   London   E09000018
#> 2622      England   E12000007                   London   E09000018
#> 2623      England   E12000007                   London   E09000018
#> 2624      England   E12000007                   London   E09000019
#> 2625      England   E12000007                   London   E09000019
#> 2626      England   E12000007                   London   E09000019
#> 2627      England   E12000007                   London   E09000020
#> 2628      England   E12000007                   London   E09000020
#> 2629      England   E12000007                   London   E09000020
#> 2630      England   E12000007                   London   E09000021
#> 2631      England   E12000007                   London   E09000021
#> 2632      England   E12000007                   London   E09000021
#> 2633      England   E12000007                   London   E09000022
#> 2634      England   E12000007                   London   E09000022
#> 2635      England   E12000007                   London   E09000022
#> 2636      England   E12000007                   London   E09000023
#> 2637      England   E12000007                   London   E09000023
#> 2638      England   E12000007                   London   E09000023
#> 2639      England   E12000007                   London   E09000024
#> 2640      England   E12000007                   London   E09000024
#> 2641      England   E12000007                   London   E09000024
#> 2642      England   E12000007                   London   E09000025
#> 2643      England   E12000007                   London   E09000025
#> 2644      England   E12000007                   London   E09000025
#> 2645      England   E12000007                   London   E09000026
#> 2646      England   E12000007                   London   E09000026
#> 2647      England   E12000007                   London   E09000026
#> 2648      England   E12000007                   London   E09000027
#> 2649      England   E12000007                   London   E09000027
#> 2650      England   E12000007                   London   E09000027
#> 2651      England   E12000007                   London   E09000028
#> 2652      England   E12000007                   London   E09000028
#> 2653      England   E12000007                   London   E09000028
#> 2654      England   E12000007                   London   E09000029
#> 2655      England   E12000007                   London   E09000029
#> 2656      England   E12000007                   London   E09000029
#> 2657      England   E12000007                   London   E09000030
#> 2658      England   E12000007                   London   E09000030
#> 2659      England   E12000007                   London   E09000030
#> 2660      England   E12000007                   London   E09000031
#> 2661      England   E12000007                   London   E09000031
#> 2662      England   E12000007                   London   E09000031
#> 2663      England   E12000007                   London   E09000032
#> 2664      England   E12000007                   London   E09000032
#> 2665      England   E12000007                   London   E09000032
#> 2666      England   E12000007                   London   E09000033
#> 2667      England   E12000007                   London   E09000033
#> 2668      England   E12000007                   London   E09000033
#> 2669      England   E12000008               South East        <NA>
#> 2670      England   E12000008               South East        <NA>
#> 2671      England   E12000008               South East        <NA>
#> 2672      England   E12000008               South East        <NA>
#> 2673      England   E12000008               South East   E06000035
#> 2674      England   E12000008               South East   E06000035
#> 2675      England   E12000008               South East   E06000035
#> 2676      England   E12000008               South East   E06000036
#> 2677      England   E12000008               South East   E06000036
#> 2678      England   E12000008               South East   E06000036
#> 2679      England   E12000008               South East   E06000037
#> 2680      England   E12000008               South East   E06000037
#> 2681      England   E12000008               South East   E06000037
#> 2682      England   E12000008               South East   E06000038
#> 2683      England   E12000008               South East   E06000038
#> 2684      England   E12000008               South East   E06000038
#> 2685      England   E12000008               South East   E06000039
#> 2686      England   E12000008               South East   E06000039
#> 2687      England   E12000008               South East   E06000039
#> 2688      England   E12000008               South East   E06000040
#> 2689      England   E12000008               South East   E06000040
#> 2690      England   E12000008               South East   E06000040
#> 2691      England   E12000008               South East   E06000041
#> 2692      England   E12000008               South East   E06000041
#> 2693      England   E12000008               South East   E06000041
#> 2694      England   E12000008               South East   E06000042
#> 2695      England   E12000008               South East   E06000042
#> 2696      England   E12000008               South East   E06000042
#> 2697      England   E12000008               South East   E06000043
#> 2698      England   E12000008               South East   E06000043
#> 2699      England   E12000008               South East   E06000043
#> 2700      England   E12000008               South East   E06000044
#> 2701      England   E12000008               South East   E06000044
#> 2702      England   E12000008               South East   E06000044
#> 2703      England   E12000008               South East   E06000045
#> 2704      England   E12000008               South East   E06000045
#> 2705      England   E12000008               South East   E06000045
#> 2706      England   E12000008               South East   E06000046
#> 2707      England   E12000008               South East   E06000046
#> 2708      England   E12000008               South East   E06000046
#> 2709      England   E12000008               South East   E06000060
#> 2710      England   E12000008               South East   E06000060
#> 2711      England   E12000008               South East   E06000060
#> 2712      England   E12000008               South East   E10000011
#> 2713      England   E12000008               South East   E10000011
#> 2714      England   E12000008               South East   E10000011
#> 2715      England   E12000008               South East   E10000014
#> 2716      England   E12000008               South East   E10000014
#> 2717      England   E12000008               South East   E10000014
#> 2718      England   E12000008               South East   E10000016
#> 2719      England   E12000008               South East   E10000016
#> 2720      England   E12000008               South East   E10000016
#> 2721      England   E12000008               South East   E10000025
#> 2722      England   E12000008               South East   E10000025
#> 2723      England   E12000008               South East   E10000025
#> 2724      England   E12000008               South East   E10000030
#> 2725      England   E12000008               South East   E10000030
#> 2726      England   E12000008               South East   E10000030
#> 2727      England   E12000008               South East   E10000032
#> 2728      England   E12000008               South East   E10000032
#> 2729      England   E12000008               South East   E10000032
#> 2730      England   E12000009               South West        <NA>
#> 2731      England   E12000009               South West        <NA>
#> 2732      England   E12000009               South West        <NA>
#> 2733      England   E12000009               South West        <NA>
#> 2734      England   E12000009               South West   E06000022
#> 2735      England   E12000009               South West   E06000022
#> 2736      England   E12000009               South West   E06000022
#> 2737      England   E12000009               South West   E06000023
#> 2738      England   E12000009               South West   E06000023
#> 2739      England   E12000009               South West   E06000023
#> 2740      England   E12000009               South West   E06000024
#> 2741      England   E12000009               South West   E06000024
#> 2742      England   E12000009               South West   E06000024
#> 2743      England   E12000009               South West   E06000025
#> 2744      England   E12000009               South West   E06000025
#> 2745      England   E12000009               South West   E06000025
#> 2746      England   E12000009               South West   E06000026
#> 2747      England   E12000009               South West   E06000026
#> 2748      England   E12000009               South West   E06000026
#> 2749      England   E12000009               South West   E06000027
#> 2750      England   E12000009               South West   E06000027
#> 2751      England   E12000009               South West   E06000027
#> 2752      England   E12000009               South West   E06000030
#> 2753      England   E12000009               South West   E06000030
#> 2754      England   E12000009               South West   E06000030
#> 2755      England   E12000009               South West   E06000052
#> 2756      England   E12000009               South West   E06000052
#> 2757      England   E12000009               South West   E06000052
#> 2758      England   E12000009               South West   E06000053
#> 2759      England   E12000009               South West   E06000054
#> 2760      England   E12000009               South West   E06000054
#> 2761      England   E12000009               South West   E06000054
#> 2762      England   E12000009               South West   E06000058
#> 2763      England   E12000009               South West   E06000058
#> 2764      England   E12000009               South West   E06000058
#> 2765      England   E12000009               South West   E06000059
#> 2766      England   E12000009               South West   E06000059
#> 2767      England   E12000009               South West   E06000059
#> 2768      England   E12000009               South West   E06000066
#> 2769      England   E12000009               South West   E06000066
#> 2770      England   E12000009               South West   E06000066
#> 2771      England   E12000009               South West   E10000008
#> 2772      England   E12000009               South West   E10000008
#> 2773      England   E12000009               South West   E10000008
#> 2774      England   E12000009               South West   E10000013
#> 2775      England   E12000009               South West   E10000013
#> 2776      England   E12000009               South West   E10000013
#> 2777      England        <NA>                     <NA>        <NA>
#> 2778      England        <NA>                     <NA>        <NA>
#> 2779      England        <NA>                     <NA>        <NA>
#> 2780      England        <NA>                     <NA>        <NA>
#> 2781      England   E12000001               North East        <NA>
#> 2782      England   E12000001               North East        <NA>
#> 2783      England   E12000001               North East        <NA>
#> 2784      England   E12000001               North East        <NA>
#> 2785      England   E12000001               North East   E06000001
#> 2786      England   E12000001               North East   E06000001
#> 2787      England   E12000001               North East   E06000001
#> 2788      England   E12000001               North East   E06000002
#> 2789      England   E12000001               North East   E06000002
#> 2790      England   E12000001               North East   E06000002
#> 2791      England   E12000001               North East   E06000003
#> 2792      England   E12000001               North East   E06000003
#> 2793      England   E12000001               North East   E06000003
#> 2794      England   E12000001               North East   E06000004
#> 2795      England   E12000001               North East   E06000004
#> 2796      England   E12000001               North East   E06000004
#> 2797      England   E12000001               North East   E06000005
#> 2798      England   E12000001               North East   E06000005
#> 2799      England   E12000001               North East   E06000005
#> 2800      England   E12000001               North East   E06000047
#> 2801      England   E12000001               North East   E06000047
#> 2802      England   E12000001               North East   E06000047
#> 2803      England   E12000001               North East   E06000057
#> 2804      England   E12000001               North East   E06000057
#> 2805      England   E12000001               North East   E06000057
#> 2806      England   E12000001               North East   E08000021
#> 2807      England   E12000001               North East   E08000021
#> 2808      England   E12000001               North East   E08000021
#> 2809      England   E12000001               North East   E08000022
#> 2810      England   E12000001               North East   E08000022
#> 2811      England   E12000001               North East   E08000022
#> 2812      England   E12000001               North East   E08000023
#> 2813      England   E12000001               North East   E08000023
#> 2814      England   E12000001               North East   E08000023
#> 2815      England   E12000001               North East   E08000024
#> 2816      England   E12000001               North East   E08000024
#> 2817      England   E12000001               North East   E08000024
#> 2818      England   E12000001               North East   E08000037
#> 2819      England   E12000001               North East   E08000037
#> 2820      England   E12000001               North East   E08000037
#> 2821      England   E12000002               North West        <NA>
#> 2822      England   E12000002               North West        <NA>
#> 2823      England   E12000002               North West        <NA>
#> 2824      England   E12000002               North West        <NA>
#> 2825      England   E12000002               North West   E06000006
#> 2826      England   E12000002               North West   E06000006
#> 2827      England   E12000002               North West   E06000006
#> 2828      England   E12000002               North West   E06000007
#> 2829      England   E12000002               North West   E06000007
#> 2830      England   E12000002               North West   E06000007
#> 2831      England   E12000002               North West   E06000008
#> 2832      England   E12000002               North West   E06000008
#> 2833      England   E12000002               North West   E06000008
#> 2834      England   E12000002               North West   E06000009
#> 2835      England   E12000002               North West   E06000009
#> 2836      England   E12000002               North West   E06000009
#> 2837      England   E12000002               North West   E06000049
#> 2838      England   E12000002               North West   E06000049
#> 2839      England   E12000002               North West   E06000049
#> 2840      England   E12000002               North West   E06000050
#> 2841      England   E12000002               North West   E06000050
#> 2842      England   E12000002               North West   E06000050
#> 2843      England   E12000002               North West   E06000063
#> 2844      England   E12000002               North West   E06000063
#> 2845      England   E12000002               North West   E06000063
#> 2846      England   E12000002               North West   E06000064
#> 2847      England   E12000002               North West   E06000064
#> 2848      England   E12000002               North West   E06000064
#> 2849      England   E12000002               North West   E08000001
#> 2850      England   E12000002               North West   E08000001
#> 2851      England   E12000002               North West   E08000001
#> 2852      England   E12000002               North West   E08000002
#> 2853      England   E12000002               North West   E08000002
#> 2854      England   E12000002               North West   E08000002
#> 2855      England   E12000002               North West   E08000003
#> 2856      England   E12000002               North West   E08000003
#> 2857      England   E12000002               North West   E08000003
#> 2858      England   E12000002               North West   E08000004
#> 2859      England   E12000002               North West   E08000004
#> 2860      England   E12000002               North West   E08000004
#> 2861      England   E12000002               North West   E08000005
#> 2862      England   E12000002               North West   E08000005
#> 2863      England   E12000002               North West   E08000005
#> 2864      England   E12000002               North West   E08000006
#> 2865      England   E12000002               North West   E08000006
#> 2866      England   E12000002               North West   E08000006
#> 2867      England   E12000002               North West   E08000007
#> 2868      England   E12000002               North West   E08000007
#> 2869      England   E12000002               North West   E08000007
#> 2870      England   E12000002               North West   E08000008
#> 2871      England   E12000002               North West   E08000008
#> 2872      England   E12000002               North West   E08000008
#> 2873      England   E12000002               North West   E08000009
#> 2874      England   E12000002               North West   E08000009
#> 2875      England   E12000002               North West   E08000009
#> 2876      England   E12000002               North West   E08000010
#> 2877      England   E12000002               North West   E08000010
#> 2878      England   E12000002               North West   E08000010
#> 2879      England   E12000002               North West   E08000011
#> 2880      England   E12000002               North West   E08000011
#> 2881      England   E12000002               North West   E08000011
#> 2882      England   E12000002               North West   E08000012
#> 2883      England   E12000002               North West   E08000012
#> 2884      England   E12000002               North West   E08000012
#> 2885      England   E12000002               North West   E08000013
#> 2886      England   E12000002               North West   E08000013
#> 2887      England   E12000002               North West   E08000013
#> 2888      England   E12000002               North West   E08000014
#> 2889      England   E12000002               North West   E08000014
#> 2890      England   E12000002               North West   E08000014
#> 2891      England   E12000002               North West   E08000015
#> 2892      England   E12000002               North West   E08000015
#> 2893      England   E12000002               North West   E08000015
#> 2894      England   E12000002               North West   E10000017
#> 2895      England   E12000002               North West   E10000017
#> 2896      England   E12000002               North West   E10000017
#> 2897      England   E12000003 Yorkshire and The Humber        <NA>
#> 2898      England   E12000003 Yorkshire and The Humber        <NA>
#> 2899      England   E12000003 Yorkshire and The Humber        <NA>
#> 2900      England   E12000003 Yorkshire and The Humber        <NA>
#> 2901      England   E12000003 Yorkshire and The Humber   E06000010
#> 2902      England   E12000003 Yorkshire and The Humber   E06000010
#> 2903      England   E12000003 Yorkshire and The Humber   E06000010
#> 2904      England   E12000003 Yorkshire and The Humber   E06000011
#> 2905      England   E12000003 Yorkshire and The Humber   E06000011
#> 2906      England   E12000003 Yorkshire and The Humber   E06000011
#> 2907      England   E12000003 Yorkshire and The Humber   E06000012
#> 2908      England   E12000003 Yorkshire and The Humber   E06000012
#> 2909      England   E12000003 Yorkshire and The Humber   E06000012
#> 2910      England   E12000003 Yorkshire and The Humber   E06000013
#> 2911      England   E12000003 Yorkshire and The Humber   E06000013
#> 2912      England   E12000003 Yorkshire and The Humber   E06000013
#> 2913      England   E12000003 Yorkshire and The Humber   E06000014
#> 2914      England   E12000003 Yorkshire and The Humber   E06000014
#> 2915      England   E12000003 Yorkshire and The Humber   E06000014
#> 2916      England   E12000003 Yorkshire and The Humber   E06000065
#> 2917      England   E12000003 Yorkshire and The Humber   E06000065
#> 2918      England   E12000003 Yorkshire and The Humber   E06000065
#> 2919      England   E12000003 Yorkshire and The Humber   E08000016
#> 2920      England   E12000003 Yorkshire and The Humber   E08000016
#> 2921      England   E12000003 Yorkshire and The Humber   E08000016
#> 2922      England   E12000003 Yorkshire and The Humber   E08000017
#> 2923      England   E12000003 Yorkshire and The Humber   E08000017
#> 2924      England   E12000003 Yorkshire and The Humber   E08000017
#> 2925      England   E12000003 Yorkshire and The Humber   E08000018
#> 2926      England   E12000003 Yorkshire and The Humber   E08000018
#> 2927      England   E12000003 Yorkshire and The Humber   E08000018
#> 2928      England   E12000003 Yorkshire and The Humber   E08000019
#> 2929      England   E12000003 Yorkshire and The Humber   E08000019
#> 2930      England   E12000003 Yorkshire and The Humber   E08000019
#> 2931      England   E12000003 Yorkshire and The Humber   E08000032
#> 2932      England   E12000003 Yorkshire and The Humber   E08000032
#> 2933      England   E12000003 Yorkshire and The Humber   E08000032
#> 2934      England   E12000003 Yorkshire and The Humber   E08000033
#> 2935      England   E12000003 Yorkshire and The Humber   E08000033
#> 2936      England   E12000003 Yorkshire and The Humber   E08000033
#> 2937      England   E12000003 Yorkshire and The Humber   E08000034
#> 2938      England   E12000003 Yorkshire and The Humber   E08000034
#> 2939      England   E12000003 Yorkshire and The Humber   E08000034
#> 2940      England   E12000003 Yorkshire and The Humber   E08000035
#> 2941      England   E12000003 Yorkshire and The Humber   E08000035
#> 2942      England   E12000003 Yorkshire and The Humber   E08000035
#> 2943      England   E12000003 Yorkshire and The Humber   E08000036
#> 2944      England   E12000003 Yorkshire and The Humber   E08000036
#> 2945      England   E12000003 Yorkshire and The Humber   E08000036
#> 2946      England   E12000004            East Midlands        <NA>
#> 2947      England   E12000004            East Midlands        <NA>
#> 2948      England   E12000004            East Midlands        <NA>
#> 2949      England   E12000004            East Midlands        <NA>
#> 2950      England   E12000004            East Midlands   E06000015
#> 2951      England   E12000004            East Midlands   E06000015
#> 2952      England   E12000004            East Midlands   E06000015
#> 2953      England   E12000004            East Midlands   E06000016
#> 2954      England   E12000004            East Midlands   E06000016
#> 2955      England   E12000004            East Midlands   E06000016
#> 2956      England   E12000004            East Midlands   E06000017
#> 2957      England   E12000004            East Midlands   E06000017
#> 2958      England   E12000004            East Midlands   E06000018
#> 2959      England   E12000004            East Midlands   E06000018
#> 2960      England   E12000004            East Midlands   E06000018
#> 2961      England   E12000004            East Midlands   E06000061
#> 2962      England   E12000004            East Midlands   E06000061
#> 2963      England   E12000004            East Midlands   E06000061
#> 2964      England   E12000004            East Midlands   E06000062
#> 2965      England   E12000004            East Midlands   E06000062
#> 2966      England   E12000004            East Midlands   E06000062
#> 2967      England   E12000004            East Midlands   E10000007
#> 2968      England   E12000004            East Midlands   E10000007
#> 2969      England   E12000004            East Midlands   E10000007
#> 2970      England   E12000004            East Midlands   E10000018
#> 2971      England   E12000004            East Midlands   E10000018
#> 2972      England   E12000004            East Midlands   E10000018
#> 2973      England   E12000004            East Midlands   E10000019
#> 2974      England   E12000004            East Midlands   E10000019
#> 2975      England   E12000004            East Midlands   E10000019
#> 2976      England   E12000004            East Midlands   E10000024
#> 2977      England   E12000004            East Midlands   E10000024
#> 2978      England   E12000004            East Midlands   E10000024
#> 2979      England   E12000005            West Midlands        <NA>
#> 2980      England   E12000005            West Midlands        <NA>
#> 2981      England   E12000005            West Midlands        <NA>
#> 2982      England   E12000005            West Midlands        <NA>
#> 2983      England   E12000005            West Midlands   E06000019
#> 2984      England   E12000005            West Midlands   E06000019
#> 2985      England   E12000005            West Midlands   E06000019
#> 2986      England   E12000005            West Midlands   E06000020
#> 2987      England   E12000005            West Midlands   E06000020
#> 2988      England   E12000005            West Midlands   E06000020
#> 2989      England   E12000005            West Midlands   E06000021
#> 2990      England   E12000005            West Midlands   E06000021
#> 2991      England   E12000005            West Midlands   E06000021
#> 2992      England   E12000005            West Midlands   E06000051
#> 2993      England   E12000005            West Midlands   E06000051
#> 2994      England   E12000005            West Midlands   E06000051
#> 2995      England   E12000005            West Midlands   E08000025
#> 2996      England   E12000005            West Midlands   E08000025
#> 2997      England   E12000005            West Midlands   E08000025
#> 2998      England   E12000005            West Midlands   E08000026
#> 2999      England   E12000005            West Midlands   E08000026
#> 3000      England   E12000005            West Midlands   E08000026
#> 3001      England   E12000005            West Midlands   E08000027
#> 3002      England   E12000005            West Midlands   E08000027
#> 3003      England   E12000005            West Midlands   E08000027
#> 3004      England   E12000005            West Midlands   E08000028
#> 3005      England   E12000005            West Midlands   E08000028
#> 3006      England   E12000005            West Midlands   E08000028
#> 3007      England   E12000005            West Midlands   E08000029
#> 3008      England   E12000005            West Midlands   E08000029
#> 3009      England   E12000005            West Midlands   E08000029
#> 3010      England   E12000005            West Midlands   E08000030
#> 3011      England   E12000005            West Midlands   E08000030
#> 3012      England   E12000005            West Midlands   E08000030
#> 3013      England   E12000005            West Midlands   E08000031
#> 3014      England   E12000005            West Midlands   E08000031
#> 3015      England   E12000005            West Midlands   E08000031
#> 3016      England   E12000005            West Midlands   E10000028
#> 3017      England   E12000005            West Midlands   E10000028
#> 3018      England   E12000005            West Midlands   E10000028
#> 3019      England   E12000005            West Midlands   E10000031
#> 3020      England   E12000005            West Midlands   E10000031
#> 3021      England   E12000005            West Midlands   E10000031
#> 3022      England   E12000005            West Midlands   E10000034
#> 3023      England   E12000005            West Midlands   E10000034
#> 3024      England   E12000005            West Midlands   E10000034
#> 3025      England   E12000006          East of England        <NA>
#> 3026      England   E12000006          East of England        <NA>
#> 3027      England   E12000006          East of England        <NA>
#> 3028      England   E12000006          East of England        <NA>
#> 3029      England   E12000006          East of England   E06000031
#> 3030      England   E12000006          East of England   E06000031
#> 3031      England   E12000006          East of England   E06000031
#> 3032      England   E12000006          East of England   E06000032
#> 3033      England   E12000006          East of England   E06000032
#> 3034      England   E12000006          East of England   E06000032
#> 3035      England   E12000006          East of England   E06000033
#> 3036      England   E12000006          East of England   E06000033
#> 3037      England   E12000006          East of England   E06000033
#> 3038      England   E12000006          East of England   E06000034
#> 3039      England   E12000006          East of England   E06000034
#> 3040      England   E12000006          East of England   E06000034
#> 3041      England   E12000006          East of England   E06000055
#> 3042      England   E12000006          East of England   E06000055
#> 3043      England   E12000006          East of England   E06000055
#> 3044      England   E12000006          East of England   E06000056
#> 3045      England   E12000006          East of England   E06000056
#> 3046      England   E12000006          East of England   E06000056
#> 3047      England   E12000006          East of England   E10000003
#> 3048      England   E12000006          East of England   E10000003
#> 3049      England   E12000006          East of England   E10000003
#> 3050      England   E12000006          East of England   E10000012
#> 3051      England   E12000006          East of England   E10000012
#> 3052      England   E12000006          East of England   E10000012
#> 3053      England   E12000006          East of England   E10000015
#> 3054      England   E12000006          East of England   E10000015
#> 3055      England   E12000006          East of England   E10000015
#> 3056      England   E12000006          East of England   E10000020
#> 3057      England   E12000006          East of England   E10000020
#> 3058      England   E12000006          East of England   E10000020
#> 3059      England   E12000006          East of England   E10000029
#> 3060      England   E12000006          East of England   E10000029
#> 3061      England   E12000006          East of England   E10000029
#> 3062      England   E12000007                   London        <NA>
#> 3063      England   E12000007                   London        <NA>
#> 3064      England   E12000007                   London        <NA>
#> 3065      England   E12000007                   London        <NA>
#> 3066      England   E12000007                   London   E09000001
#> 3067      England   E12000007                   London   E09000002
#> 3068      England   E12000007                   London   E09000002
#> 3069      England   E12000007                   London   E09000002
#> 3070      England   E12000007                   London   E09000003
#> 3071      England   E12000007                   London   E09000003
#> 3072      England   E12000007                   London   E09000003
#> 3073      England   E12000007                   London   E09000004
#> 3074      England   E12000007                   London   E09000004
#> 3075      England   E12000007                   London   E09000004
#> 3076      England   E12000007                   London   E09000005
#> 3077      England   E12000007                   London   E09000005
#> 3078      England   E12000007                   London   E09000005
#> 3079      England   E12000007                   London   E09000006
#> 3080      England   E12000007                   London   E09000006
#> 3081      England   E12000007                   London   E09000006
#> 3082      England   E12000007                   London   E09000007
#> 3083      England   E12000007                   London   E09000007
#> 3084      England   E12000007                   London   E09000007
#> 3085      England   E12000007                   London   E09000008
#> 3086      England   E12000007                   London   E09000008
#> 3087      England   E12000007                   London   E09000008
#> 3088      England   E12000007                   London   E09000009
#> 3089      England   E12000007                   London   E09000009
#> 3090      England   E12000007                   London   E09000009
#> 3091      England   E12000007                   London   E09000010
#> 3092      England   E12000007                   London   E09000010
#> 3093      England   E12000007                   London   E09000010
#> 3094      England   E12000007                   London   E09000011
#> 3095      England   E12000007                   London   E09000011
#> 3096      England   E12000007                   London   E09000011
#> 3097      England   E12000007                   London   E09000012
#> 3098      England   E12000007                   London   E09000012
#> 3099      England   E12000007                   London   E09000012
#> 3100      England   E12000007                   London   E09000013
#> 3101      England   E12000007                   London   E09000013
#> 3102      England   E12000007                   London   E09000013
#> 3103      England   E12000007                   London   E09000014
#> 3104      England   E12000007                   London   E09000014
#> 3105      England   E12000007                   London   E09000014
#> 3106      England   E12000007                   London   E09000015
#> 3107      England   E12000007                   London   E09000015
#> 3108      England   E12000007                   London   E09000015
#> 3109      England   E12000007                   London   E09000016
#> 3110      England   E12000007                   London   E09000016
#> 3111      England   E12000007                   London   E09000016
#> 3112      England   E12000007                   London   E09000017
#> 3113      England   E12000007                   London   E09000017
#> 3114      England   E12000007                   London   E09000017
#> 3115      England   E12000007                   London   E09000018
#> 3116      England   E12000007                   London   E09000018
#> 3117      England   E12000007                   London   E09000018
#> 3118      England   E12000007                   London   E09000019
#> 3119      England   E12000007                   London   E09000019
#> 3120      England   E12000007                   London   E09000019
#> 3121      England   E12000007                   London   E09000020
#> 3122      England   E12000007                   London   E09000020
#> 3123      England   E12000007                   London   E09000020
#> 3124      England   E12000007                   London   E09000021
#> 3125      England   E12000007                   London   E09000021
#> 3126      England   E12000007                   London   E09000021
#> 3127      England   E12000007                   London   E09000022
#> 3128      England   E12000007                   London   E09000022
#> 3129      England   E12000007                   London   E09000022
#> 3130      England   E12000007                   London   E09000023
#> 3131      England   E12000007                   London   E09000023
#> 3132      England   E12000007                   London   E09000023
#> 3133      England   E12000007                   London   E09000024
#> 3134      England   E12000007                   London   E09000024
#> 3135      England   E12000007                   London   E09000024
#> 3136      England   E12000007                   London   E09000025
#> 3137      England   E12000007                   London   E09000025
#> 3138      England   E12000007                   London   E09000025
#> 3139      England   E12000007                   London   E09000026
#> 3140      England   E12000007                   London   E09000026
#> 3141      England   E12000007                   London   E09000026
#> 3142      England   E12000007                   London   E09000027
#> 3143      England   E12000007                   London   E09000027
#> 3144      England   E12000007                   London   E09000027
#> 3145      England   E12000007                   London   E09000028
#> 3146      England   E12000007                   London   E09000028
#> 3147      England   E12000007                   London   E09000028
#> 3148      England   E12000007                   London   E09000029
#> 3149      England   E12000007                   London   E09000029
#> 3150      England   E12000007                   London   E09000029
#> 3151      England   E12000007                   London   E09000030
#> 3152      England   E12000007                   London   E09000030
#> 3153      England   E12000007                   London   E09000030
#> 3154      England   E12000007                   London   E09000031
#> 3155      England   E12000007                   London   E09000031
#> 3156      England   E12000007                   London   E09000031
#> 3157      England   E12000007                   London   E09000032
#> 3158      England   E12000007                   London   E09000032
#> 3159      England   E12000007                   London   E09000032
#> 3160      England   E12000007                   London   E09000033
#> 3161      England   E12000007                   London   E09000033
#> 3162      England   E12000007                   London   E09000033
#> 3163      England   E12000008               South East        <NA>
#> 3164      England   E12000008               South East        <NA>
#> 3165      England   E12000008               South East        <NA>
#> 3166      England   E12000008               South East        <NA>
#> 3167      England   E12000008               South East   E06000035
#> 3168      England   E12000008               South East   E06000035
#> 3169      England   E12000008               South East   E06000035
#> 3170      England   E12000008               South East   E06000036
#> 3171      England   E12000008               South East   E06000036
#> 3172      England   E12000008               South East   E06000036
#> 3173      England   E12000008               South East   E06000037
#> 3174      England   E12000008               South East   E06000037
#> 3175      England   E12000008               South East   E06000037
#> 3176      England   E12000008               South East   E06000038
#> 3177      England   E12000008               South East   E06000038
#> 3178      England   E12000008               South East   E06000038
#> 3179      England   E12000008               South East   E06000039
#> 3180      England   E12000008               South East   E06000039
#> 3181      England   E12000008               South East   E06000039
#> 3182      England   E12000008               South East   E06000040
#> 3183      England   E12000008               South East   E06000040
#> 3184      England   E12000008               South East   E06000040
#> 3185      England   E12000008               South East   E06000041
#> 3186      England   E12000008               South East   E06000041
#> 3187      England   E12000008               South East   E06000041
#> 3188      England   E12000008               South East   E06000042
#> 3189      England   E12000008               South East   E06000042
#> 3190      England   E12000008               South East   E06000042
#> 3191      England   E12000008               South East   E06000043
#> 3192      England   E12000008               South East   E06000043
#> 3193      England   E12000008               South East   E06000043
#> 3194      England   E12000008               South East   E06000044
#> 3195      England   E12000008               South East   E06000044
#> 3196      England   E12000008               South East   E06000044
#> 3197      England   E12000008               South East   E06000045
#> 3198      England   E12000008               South East   E06000045
#> 3199      England   E12000008               South East   E06000045
#> 3200      England   E12000008               South East   E06000046
#> 3201      England   E12000008               South East   E06000046
#> 3202      England   E12000008               South East   E06000046
#> 3203      England   E12000008               South East   E06000060
#> 3204      England   E12000008               South East   E06000060
#> 3205      England   E12000008               South East   E06000060
#> 3206      England   E12000008               South East   E10000011
#> 3207      England   E12000008               South East   E10000011
#> 3208      England   E12000008               South East   E10000011
#> 3209      England   E12000008               South East   E10000014
#> 3210      England   E12000008               South East   E10000014
#> 3211      England   E12000008               South East   E10000014
#> 3212      England   E12000008               South East   E10000016
#> 3213      England   E12000008               South East   E10000016
#> 3214      England   E12000008               South East   E10000016
#> 3215      England   E12000008               South East   E10000025
#> 3216      England   E12000008               South East   E10000025
#> 3217      England   E12000008               South East   E10000025
#> 3218      England   E12000008               South East   E10000030
#> 3219      England   E12000008               South East   E10000030
#> 3220      England   E12000008               South East   E10000030
#> 3221      England   E12000008               South East   E10000032
#> 3222      England   E12000008               South East   E10000032
#> 3223      England   E12000008               South East   E10000032
#> 3224      England   E12000009               South West        <NA>
#> 3225      England   E12000009               South West        <NA>
#> 3226      England   E12000009               South West        <NA>
#> 3227      England   E12000009               South West        <NA>
#> 3228      England   E12000009               South West   E06000022
#> 3229      England   E12000009               South West   E06000022
#> 3230      England   E12000009               South West   E06000022
#> 3231      England   E12000009               South West   E06000023
#> 3232      England   E12000009               South West   E06000023
#> 3233      England   E12000009               South West   E06000023
#> 3234      England   E12000009               South West   E06000024
#> 3235      England   E12000009               South West   E06000024
#> 3236      England   E12000009               South West   E06000024
#> 3237      England   E12000009               South West   E06000025
#> 3238      England   E12000009               South West   E06000025
#> 3239      England   E12000009               South West   E06000025
#> 3240      England   E12000009               South West   E06000026
#> 3241      England   E12000009               South West   E06000026
#> 3242      England   E12000009               South West   E06000026
#> 3243      England   E12000009               South West   E06000027
#> 3244      England   E12000009               South West   E06000027
#> 3245      England   E12000009               South West   E06000027
#> 3246      England   E12000009               South West   E06000030
#> 3247      England   E12000009               South West   E06000030
#> 3248      England   E12000009               South West   E06000030
#> 3249      England   E12000009               South West   E06000052
#> 3250      England   E12000009               South West   E06000052
#> 3251      England   E12000009               South West   E06000052
#> 3252      England   E12000009               South West   E06000053
#> 3253      England   E12000009               South West   E06000054
#> 3254      England   E12000009               South West   E06000054
#> 3255      England   E12000009               South West   E06000054
#> 3256      England   E12000009               South West   E06000058
#> 3257      England   E12000009               South West   E06000058
#> 3258      England   E12000009               South West   E06000058
#> 3259      England   E12000009               South West   E06000059
#> 3260      England   E12000009               South West   E06000059
#> 3261      England   E12000009               South West   E06000059
#> 3262      England   E12000009               South West   E06000066
#> 3263      England   E12000009               South West   E06000066
#> 3264      England   E12000009               South West   E06000066
#> 3265      England   E12000009               South West   E10000008
#> 3266      England   E12000009               South West   E10000008
#> 3267      England   E12000009               South West   E10000008
#> 3268      England   E12000009               South West   E10000013
#> 3269      England   E12000009               South West   E10000013
#> 3270      England   E12000009               South West   E10000013
#> 3271      England        <NA>                     <NA>        <NA>
#> 3272      England        <NA>                     <NA>        <NA>
#> 3273      England        <NA>                     <NA>        <NA>
#> 3274      England        <NA>                     <NA>        <NA>
#> 3275      England   E12000001               North East        <NA>
#> 3276      England   E12000001               North East        <NA>
#> 3277      England   E12000001               North East        <NA>
#> 3278      England   E12000001               North East        <NA>
#> 3279      England   E12000001               North East   E06000001
#> 3280      England   E12000001               North East   E06000001
#> 3281      England   E12000001               North East   E06000001
#> 3282      England   E12000001               North East   E06000002
#> 3283      England   E12000001               North East   E06000002
#> 3284      England   E12000001               North East   E06000002
#> 3285      England   E12000001               North East   E06000003
#> 3286      England   E12000001               North East   E06000003
#> 3287      England   E12000001               North East   E06000003
#> 3288      England   E12000001               North East   E06000004
#> 3289      England   E12000001               North East   E06000004
#> 3290      England   E12000001               North East   E06000004
#> 3291      England   E12000001               North East   E06000005
#> 3292      England   E12000001               North East   E06000005
#> 3293      England   E12000001               North East   E06000005
#> 3294      England   E12000001               North East   E06000047
#> 3295      England   E12000001               North East   E06000047
#> 3296      England   E12000001               North East   E06000047
#> 3297      England   E12000001               North East   E06000057
#> 3298      England   E12000001               North East   E06000057
#> 3299      England   E12000001               North East   E06000057
#> 3300      England   E12000001               North East   E08000021
#> 3301      England   E12000001               North East   E08000021
#> 3302      England   E12000001               North East   E08000021
#> 3303      England   E12000001               North East   E08000022
#> 3304      England   E12000001               North East   E08000022
#> 3305      England   E12000001               North East   E08000022
#> 3306      England   E12000001               North East   E08000023
#> 3307      England   E12000001               North East   E08000023
#> 3308      England   E12000001               North East   E08000023
#> 3309      England   E12000001               North East   E08000024
#> 3310      England   E12000001               North East   E08000024
#> 3311      England   E12000001               North East   E08000024
#> 3312      England   E12000001               North East   E08000037
#> 3313      England   E12000001               North East   E08000037
#> 3314      England   E12000001               North East   E08000037
#> 3315      England   E12000002               North West        <NA>
#> 3316      England   E12000002               North West        <NA>
#> 3317      England   E12000002               North West        <NA>
#> 3318      England   E12000002               North West        <NA>
#> 3319      England   E12000002               North West   E06000006
#> 3320      England   E12000002               North West   E06000006
#> 3321      England   E12000002               North West   E06000006
#> 3322      England   E12000002               North West   E06000007
#> 3323      England   E12000002               North West   E06000007
#> 3324      England   E12000002               North West   E06000007
#> 3325      England   E12000002               North West   E06000008
#> 3326      England   E12000002               North West   E06000008
#> 3327      England   E12000002               North West   E06000008
#> 3328      England   E12000002               North West   E06000009
#> 3329      England   E12000002               North West   E06000009
#> 3330      England   E12000002               North West   E06000009
#> 3331      England   E12000002               North West   E06000049
#> 3332      England   E12000002               North West   E06000049
#> 3333      England   E12000002               North West   E06000049
#> 3334      England   E12000002               North West   E06000050
#> 3335      England   E12000002               North West   E06000050
#> 3336      England   E12000002               North West   E06000050
#> 3337      England   E12000002               North West   E06000063
#> 3338      England   E12000002               North West   E06000063
#> 3339      England   E12000002               North West   E06000063
#> 3340      England   E12000002               North West   E06000064
#> 3341      England   E12000002               North West   E06000064
#> 3342      England   E12000002               North West   E06000064
#> 3343      England   E12000002               North West   E08000001
#> 3344      England   E12000002               North West   E08000001
#> 3345      England   E12000002               North West   E08000001
#> 3346      England   E12000002               North West   E08000002
#> 3347      England   E12000002               North West   E08000002
#> 3348      England   E12000002               North West   E08000002
#> 3349      England   E12000002               North West   E08000003
#> 3350      England   E12000002               North West   E08000003
#> 3351      England   E12000002               North West   E08000003
#> 3352      England   E12000002               North West   E08000004
#> 3353      England   E12000002               North West   E08000004
#> 3354      England   E12000002               North West   E08000004
#> 3355      England   E12000002               North West   E08000005
#> 3356      England   E12000002               North West   E08000005
#> 3357      England   E12000002               North West   E08000005
#> 3358      England   E12000002               North West   E08000006
#> 3359      England   E12000002               North West   E08000006
#> 3360      England   E12000002               North West   E08000006
#> 3361      England   E12000002               North West   E08000007
#> 3362      England   E12000002               North West   E08000007
#> 3363      England   E12000002               North West   E08000007
#> 3364      England   E12000002               North West   E08000008
#> 3365      England   E12000002               North West   E08000008
#> 3366      England   E12000002               North West   E08000008
#> 3367      England   E12000002               North West   E08000009
#> 3368      England   E12000002               North West   E08000009
#> 3369      England   E12000002               North West   E08000009
#> 3370      England   E12000002               North West   E08000010
#> 3371      England   E12000002               North West   E08000010
#> 3372      England   E12000002               North West   E08000010
#> 3373      England   E12000002               North West   E08000011
#> 3374      England   E12000002               North West   E08000011
#> 3375      England   E12000002               North West   E08000011
#> 3376      England   E12000002               North West   E08000012
#> 3377      England   E12000002               North West   E08000012
#> 3378      England   E12000002               North West   E08000012
#> 3379      England   E12000002               North West   E08000013
#> 3380      England   E12000002               North West   E08000013
#> 3381      England   E12000002               North West   E08000013
#> 3382      England   E12000002               North West   E08000014
#> 3383      England   E12000002               North West   E08000014
#> 3384      England   E12000002               North West   E08000014
#> 3385      England   E12000002               North West   E08000015
#> 3386      England   E12000002               North West   E08000015
#> 3387      England   E12000002               North West   E08000015
#> 3388      England   E12000002               North West   E10000017
#> 3389      England   E12000002               North West   E10000017
#> 3390      England   E12000002               North West   E10000017
#> 3391      England   E12000003 Yorkshire and The Humber        <NA>
#> 3392      England   E12000003 Yorkshire and The Humber        <NA>
#> 3393      England   E12000003 Yorkshire and The Humber        <NA>
#> 3394      England   E12000003 Yorkshire and The Humber        <NA>
#> 3395      England   E12000003 Yorkshire and The Humber   E06000010
#> 3396      England   E12000003 Yorkshire and The Humber   E06000010
#> 3397      England   E12000003 Yorkshire and The Humber   E06000010
#> 3398      England   E12000003 Yorkshire and The Humber   E06000011
#> 3399      England   E12000003 Yorkshire and The Humber   E06000011
#> 3400      England   E12000003 Yorkshire and The Humber   E06000011
#> 3401      England   E12000003 Yorkshire and The Humber   E06000012
#> 3402      England   E12000003 Yorkshire and The Humber   E06000012
#> 3403      England   E12000003 Yorkshire and The Humber   E06000012
#> 3404      England   E12000003 Yorkshire and The Humber   E06000013
#> 3405      England   E12000003 Yorkshire and The Humber   E06000013
#> 3406      England   E12000003 Yorkshire and The Humber   E06000013
#> 3407      England   E12000003 Yorkshire and The Humber   E06000014
#> 3408      England   E12000003 Yorkshire and The Humber   E06000014
#> 3409      England   E12000003 Yorkshire and The Humber   E06000014
#> 3410      England   E12000003 Yorkshire and The Humber   E06000065
#> 3411      England   E12000003 Yorkshire and The Humber   E06000065
#> 3412      England   E12000003 Yorkshire and The Humber   E06000065
#> 3413      England   E12000003 Yorkshire and The Humber   E08000016
#> 3414      England   E12000003 Yorkshire and The Humber   E08000016
#> 3415      England   E12000003 Yorkshire and The Humber   E08000016
#> 3416      England   E12000003 Yorkshire and The Humber   E08000017
#> 3417      England   E12000003 Yorkshire and The Humber   E08000017
#> 3418      England   E12000003 Yorkshire and The Humber   E08000017
#> 3419      England   E12000003 Yorkshire and The Humber   E08000018
#> 3420      England   E12000003 Yorkshire and The Humber   E08000018
#> 3421      England   E12000003 Yorkshire and The Humber   E08000018
#> 3422      England   E12000003 Yorkshire and The Humber   E08000019
#> 3423      England   E12000003 Yorkshire and The Humber   E08000019
#> 3424      England   E12000003 Yorkshire and The Humber   E08000019
#> 3425      England   E12000003 Yorkshire and The Humber   E08000032
#> 3426      England   E12000003 Yorkshire and The Humber   E08000032
#> 3427      England   E12000003 Yorkshire and The Humber   E08000032
#> 3428      England   E12000003 Yorkshire and The Humber   E08000033
#> 3429      England   E12000003 Yorkshire and The Humber   E08000033
#> 3430      England   E12000003 Yorkshire and The Humber   E08000033
#> 3431      England   E12000003 Yorkshire and The Humber   E08000034
#> 3432      England   E12000003 Yorkshire and The Humber   E08000034
#> 3433      England   E12000003 Yorkshire and The Humber   E08000034
#> 3434      England   E12000003 Yorkshire and The Humber   E08000035
#> 3435      England   E12000003 Yorkshire and The Humber   E08000035
#> 3436      England   E12000003 Yorkshire and The Humber   E08000035
#> 3437      England   E12000003 Yorkshire and The Humber   E08000036
#> 3438      England   E12000003 Yorkshire and The Humber   E08000036
#> 3439      England   E12000003 Yorkshire and The Humber   E08000036
#> 3440      England   E12000004            East Midlands        <NA>
#> 3441      England   E12000004            East Midlands        <NA>
#> 3442      England   E12000004            East Midlands        <NA>
#> 3443      England   E12000004            East Midlands        <NA>
#> 3444      England   E12000004            East Midlands   E06000015
#> 3445      England   E12000004            East Midlands   E06000015
#> 3446      England   E12000004            East Midlands   E06000015
#> 3447      England   E12000004            East Midlands   E06000016
#> 3448      England   E12000004            East Midlands   E06000016
#> 3449      England   E12000004            East Midlands   E06000016
#> 3450      England   E12000004            East Midlands   E06000017
#> 3451      England   E12000004            East Midlands   E06000017
#> 3452      England   E12000004            East Midlands   E06000018
#> 3453      England   E12000004            East Midlands   E06000018
#> 3454      England   E12000004            East Midlands   E06000018
#> 3455      England   E12000004            East Midlands   E06000061
#> 3456      England   E12000004            East Midlands   E06000061
#> 3457      England   E12000004            East Midlands   E06000061
#> 3458      England   E12000004            East Midlands   E06000062
#> 3459      England   E12000004            East Midlands   E06000062
#> 3460      England   E12000004            East Midlands   E06000062
#> 3461      England   E12000004            East Midlands   E10000007
#> 3462      England   E12000004            East Midlands   E10000007
#> 3463      England   E12000004            East Midlands   E10000007
#> 3464      England   E12000004            East Midlands   E10000018
#> 3465      England   E12000004            East Midlands   E10000018
#> 3466      England   E12000004            East Midlands   E10000018
#> 3467      England   E12000004            East Midlands   E10000019
#> 3468      England   E12000004            East Midlands   E10000019
#> 3469      England   E12000004            East Midlands   E10000019
#> 3470      England   E12000004            East Midlands   E10000024
#> 3471      England   E12000004            East Midlands   E10000024
#> 3472      England   E12000004            East Midlands   E10000024
#> 3473      England   E12000005            West Midlands        <NA>
#> 3474      England   E12000005            West Midlands        <NA>
#> 3475      England   E12000005            West Midlands        <NA>
#> 3476      England   E12000005            West Midlands        <NA>
#> 3477      England   E12000005            West Midlands   E06000019
#> 3478      England   E12000005            West Midlands   E06000019
#> 3479      England   E12000005            West Midlands   E06000019
#> 3480      England   E12000005            West Midlands   E06000020
#> 3481      England   E12000005            West Midlands   E06000020
#> 3482      England   E12000005            West Midlands   E06000020
#> 3483      England   E12000005            West Midlands   E06000021
#> 3484      England   E12000005            West Midlands   E06000021
#> 3485      England   E12000005            West Midlands   E06000021
#> 3486      England   E12000005            West Midlands   E06000051
#> 3487      England   E12000005            West Midlands   E06000051
#> 3488      England   E12000005            West Midlands   E06000051
#> 3489      England   E12000005            West Midlands   E08000025
#> 3490      England   E12000005            West Midlands   E08000025
#> 3491      England   E12000005            West Midlands   E08000025
#> 3492      England   E12000005            West Midlands   E08000026
#> 3493      England   E12000005            West Midlands   E08000026
#> 3494      England   E12000005            West Midlands   E08000026
#> 3495      England   E12000005            West Midlands   E08000027
#> 3496      England   E12000005            West Midlands   E08000027
#> 3497      England   E12000005            West Midlands   E08000027
#> 3498      England   E12000005            West Midlands   E08000028
#> 3499      England   E12000005            West Midlands   E08000028
#> 3500      England   E12000005            West Midlands   E08000028
#> 3501      England   E12000005            West Midlands   E08000029
#> 3502      England   E12000005            West Midlands   E08000029
#> 3503      England   E12000005            West Midlands   E08000029
#> 3504      England   E12000005            West Midlands   E08000030
#> 3505      England   E12000005            West Midlands   E08000030
#> 3506      England   E12000005            West Midlands   E08000030
#> 3507      England   E12000005            West Midlands   E08000031
#> 3508      England   E12000005            West Midlands   E08000031
#> 3509      England   E12000005            West Midlands   E08000031
#> 3510      England   E12000005            West Midlands   E10000028
#> 3511      England   E12000005            West Midlands   E10000028
#> 3512      England   E12000005            West Midlands   E10000028
#> 3513      England   E12000005            West Midlands   E10000031
#> 3514      England   E12000005            West Midlands   E10000031
#> 3515      England   E12000005            West Midlands   E10000031
#> 3516      England   E12000005            West Midlands   E10000034
#> 3517      England   E12000005            West Midlands   E10000034
#> 3518      England   E12000005            West Midlands   E10000034
#> 3519      England   E12000006          East of England        <NA>
#> 3520      England   E12000006          East of England        <NA>
#> 3521      England   E12000006          East of England        <NA>
#> 3522      England   E12000006          East of England        <NA>
#> 3523      England   E12000006          East of England   E06000031
#> 3524      England   E12000006          East of England   E06000031
#> 3525      England   E12000006          East of England   E06000031
#> 3526      England   E12000006          East of England   E06000032
#> 3527      England   E12000006          East of England   E06000032
#> 3528      England   E12000006          East of England   E06000032
#> 3529      England   E12000006          East of England   E06000033
#> 3530      England   E12000006          East of England   E06000033
#> 3531      England   E12000006          East of England   E06000033
#> 3532      England   E12000006          East of England   E06000034
#> 3533      England   E12000006          East of England   E06000034
#> 3534      England   E12000006          East of England   E06000034
#> 3535      England   E12000006          East of England   E06000055
#> 3536      England   E12000006          East of England   E06000055
#> 3537      England   E12000006          East of England   E06000055
#> 3538      England   E12000006          East of England   E06000056
#> 3539      England   E12000006          East of England   E06000056
#> 3540      England   E12000006          East of England   E06000056
#> 3541      England   E12000006          East of England   E10000003
#> 3542      England   E12000006          East of England   E10000003
#> 3543      England   E12000006          East of England   E10000003
#> 3544      England   E12000006          East of England   E10000012
#> 3545      England   E12000006          East of England   E10000012
#> 3546      England   E12000006          East of England   E10000012
#> 3547      England   E12000006          East of England   E10000015
#> 3548      England   E12000006          East of England   E10000015
#> 3549      England   E12000006          East of England   E10000015
#> 3550      England   E12000006          East of England   E10000020
#> 3551      England   E12000006          East of England   E10000020
#> 3552      England   E12000006          East of England   E10000020
#> 3553      England   E12000006          East of England   E10000029
#> 3554      England   E12000006          East of England   E10000029
#> 3555      England   E12000006          East of England   E10000029
#> 3556      England   E12000007                   London        <NA>
#> 3557      England   E12000007                   London        <NA>
#> 3558      England   E12000007                   London        <NA>
#> 3559      England   E12000007                   London        <NA>
#> 3560      England   E12000007                   London   E09000001
#> 3561      England   E12000007                   London   E09000002
#> 3562      England   E12000007                   London   E09000002
#> 3563      England   E12000007                   London   E09000002
#> 3564      England   E12000007                   London   E09000003
#> 3565      England   E12000007                   London   E09000003
#> 3566      England   E12000007                   London   E09000003
#> 3567      England   E12000007                   London   E09000004
#> 3568      England   E12000007                   London   E09000004
#> 3569      England   E12000007                   London   E09000004
#> 3570      England   E12000007                   London   E09000005
#> 3571      England   E12000007                   London   E09000005
#> 3572      England   E12000007                   London   E09000005
#> 3573      England   E12000007                   London   E09000006
#> 3574      England   E12000007                   London   E09000006
#> 3575      England   E12000007                   London   E09000006
#> 3576      England   E12000007                   London   E09000007
#> 3577      England   E12000007                   London   E09000007
#> 3578      England   E12000007                   London   E09000007
#> 3579      England   E12000007                   London   E09000008
#> 3580      England   E12000007                   London   E09000008
#> 3581      England   E12000007                   London   E09000008
#> 3582      England   E12000007                   London   E09000009
#> 3583      England   E12000007                   London   E09000009
#> 3584      England   E12000007                   London   E09000009
#> 3585      England   E12000007                   London   E09000010
#> 3586      England   E12000007                   London   E09000010
#> 3587      England   E12000007                   London   E09000010
#> 3588      England   E12000007                   London   E09000011
#> 3589      England   E12000007                   London   E09000011
#> 3590      England   E12000007                   London   E09000011
#> 3591      England   E12000007                   London   E09000012
#> 3592      England   E12000007                   London   E09000012
#> 3593      England   E12000007                   London   E09000012
#> 3594      England   E12000007                   London   E09000013
#> 3595      England   E12000007                   London   E09000013
#> 3596      England   E12000007                   London   E09000013
#> 3597      England   E12000007                   London   E09000014
#> 3598      England   E12000007                   London   E09000014
#> 3599      England   E12000007                   London   E09000014
#> 3600      England   E12000007                   London   E09000015
#> 3601      England   E12000007                   London   E09000015
#> 3602      England   E12000007                   London   E09000015
#> 3603      England   E12000007                   London   E09000016
#> 3604      England   E12000007                   London   E09000016
#> 3605      England   E12000007                   London   E09000016
#> 3606      England   E12000007                   London   E09000017
#> 3607      England   E12000007                   London   E09000017
#> 3608      England   E12000007                   London   E09000017
#> 3609      England   E12000007                   London   E09000018
#> 3610      England   E12000007                   London   E09000018
#> 3611      England   E12000007                   London   E09000018
#> 3612      England   E12000007                   London   E09000019
#> 3613      England   E12000007                   London   E09000019
#> 3614      England   E12000007                   London   E09000019
#> 3615      England   E12000007                   London   E09000020
#> 3616      England   E12000007                   London   E09000020
#> 3617      England   E12000007                   London   E09000020
#> 3618      England   E12000007                   London   E09000021
#> 3619      England   E12000007                   London   E09000021
#> 3620      England   E12000007                   London   E09000021
#> 3621      England   E12000007                   London   E09000022
#> 3622      England   E12000007                   London   E09000022
#> 3623      England   E12000007                   London   E09000022
#> 3624      England   E12000007                   London   E09000023
#> 3625      England   E12000007                   London   E09000023
#> 3626      England   E12000007                   London   E09000023
#> 3627      England   E12000007                   London   E09000024
#> 3628      England   E12000007                   London   E09000024
#> 3629      England   E12000007                   London   E09000024
#> 3630      England   E12000007                   London   E09000025
#> 3631      England   E12000007                   London   E09000025
#> 3632      England   E12000007                   London   E09000025
#> 3633      England   E12000007                   London   E09000026
#> 3634      England   E12000007                   London   E09000026
#> 3635      England   E12000007                   London   E09000026
#> 3636      England   E12000007                   London   E09000027
#> 3637      England   E12000007                   London   E09000027
#> 3638      England   E12000007                   London   E09000027
#> 3639      England   E12000007                   London   E09000028
#> 3640      England   E12000007                   London   E09000028
#> 3641      England   E12000007                   London   E09000028
#> 3642      England   E12000007                   London   E09000029
#> 3643      England   E12000007                   London   E09000029
#> 3644      England   E12000007                   London   E09000029
#> 3645      England   E12000007                   London   E09000030
#> 3646      England   E12000007                   London   E09000030
#> 3647      England   E12000007                   London   E09000030
#> 3648      England   E12000007                   London   E09000031
#> 3649      England   E12000007                   London   E09000031
#> 3650      England   E12000007                   London   E09000031
#> 3651      England   E12000007                   London   E09000032
#> 3652      England   E12000007                   London   E09000032
#> 3653      England   E12000007                   London   E09000032
#> 3654      England   E12000007                   London   E09000033
#> 3655      England   E12000007                   London   E09000033
#> 3656      England   E12000007                   London   E09000033
#> 3657      England   E12000008               South East        <NA>
#> 3658      England   E12000008               South East        <NA>
#> 3659      England   E12000008               South East        <NA>
#> 3660      England   E12000008               South East        <NA>
#> 3661      England   E12000008               South East   E06000035
#> 3662      England   E12000008               South East   E06000035
#> 3663      England   E12000008               South East   E06000035
#> 3664      England   E12000008               South East   E06000036
#> 3665      England   E12000008               South East   E06000036
#> 3666      England   E12000008               South East   E06000036
#> 3667      England   E12000008               South East   E06000037
#> 3668      England   E12000008               South East   E06000037
#> 3669      England   E12000008               South East   E06000037
#> 3670      England   E12000008               South East   E06000038
#> 3671      England   E12000008               South East   E06000038
#> 3672      England   E12000008               South East   E06000038
#> 3673      England   E12000008               South East   E06000039
#> 3674      England   E12000008               South East   E06000039
#> 3675      England   E12000008               South East   E06000039
#> 3676      England   E12000008               South East   E06000040
#> 3677      England   E12000008               South East   E06000040
#> 3678      England   E12000008               South East   E06000040
#> 3679      England   E12000008               South East   E06000041
#> 3680      England   E12000008               South East   E06000041
#> 3681      England   E12000008               South East   E06000041
#> 3682      England   E12000008               South East   E06000042
#> 3683      England   E12000008               South East   E06000042
#> 3684      England   E12000008               South East   E06000042
#> 3685      England   E12000008               South East   E06000043
#> 3686      England   E12000008               South East   E06000043
#> 3687      England   E12000008               South East   E06000043
#> 3688      England   E12000008               South East   E06000044
#> 3689      England   E12000008               South East   E06000044
#> 3690      England   E12000008               South East   E06000044
#> 3691      England   E12000008               South East   E06000045
#> 3692      England   E12000008               South East   E06000045
#> 3693      England   E12000008               South East   E06000045
#> 3694      England   E12000008               South East   E06000046
#> 3695      England   E12000008               South East   E06000046
#> 3696      England   E12000008               South East   E06000046
#> 3697      England   E12000008               South East   E06000060
#> 3698      England   E12000008               South East   E06000060
#> 3699      England   E12000008               South East   E06000060
#> 3700      England   E12000008               South East   E10000011
#> 3701      England   E12000008               South East   E10000011
#> 3702      England   E12000008               South East   E10000011
#> 3703      England   E12000008               South East   E10000014
#> 3704      England   E12000008               South East   E10000014
#> 3705      England   E12000008               South East   E10000014
#> 3706      England   E12000008               South East   E10000016
#> 3707      England   E12000008               South East   E10000016
#> 3708      England   E12000008               South East   E10000016
#> 3709      England   E12000008               South East   E10000025
#> 3710      England   E12000008               South East   E10000025
#> 3711      England   E12000008               South East   E10000025
#> 3712      England   E12000008               South East   E10000030
#> 3713      England   E12000008               South East   E10000030
#> 3714      England   E12000008               South East   E10000030
#> 3715      England   E12000008               South East   E10000032
#> 3716      England   E12000008               South East   E10000032
#> 3717      England   E12000008               South East   E10000032
#> 3718      England   E12000009               South West        <NA>
#> 3719      England   E12000009               South West        <NA>
#> 3720      England   E12000009               South West        <NA>
#> 3721      England   E12000009               South West        <NA>
#> 3722      England   E12000009               South West   E06000022
#> 3723      England   E12000009               South West   E06000022
#> 3724      England   E12000009               South West   E06000022
#> 3725      England   E12000009               South West   E06000023
#> 3726      England   E12000009               South West   E06000023
#> 3727      England   E12000009               South West   E06000023
#> 3728      England   E12000009               South West   E06000024
#> 3729      England   E12000009               South West   E06000024
#> 3730      England   E12000009               South West   E06000024
#> 3731      England   E12000009               South West   E06000025
#> 3732      England   E12000009               South West   E06000025
#> 3733      England   E12000009               South West   E06000025
#> 3734      England   E12000009               South West   E06000026
#> 3735      England   E12000009               South West   E06000026
#> 3736      England   E12000009               South West   E06000026
#> 3737      England   E12000009               South West   E06000027
#> 3738      England   E12000009               South West   E06000027
#> 3739      England   E12000009               South West   E06000027
#> 3740      England   E12000009               South West   E06000030
#> 3741      England   E12000009               South West   E06000030
#> 3742      England   E12000009               South West   E06000030
#> 3743      England   E12000009               South West   E06000052
#> 3744      England   E12000009               South West   E06000052
#> 3745      England   E12000009               South West   E06000052
#> 3746      England   E12000009               South West   E06000053
#> 3747      England   E12000009               South West   E06000054
#> 3748      England   E12000009               South West   E06000054
#> 3749      England   E12000009               South West   E06000054
#> 3750      England   E12000009               South West   E06000058
#> 3751      England   E12000009               South West   E06000058
#> 3752      England   E12000009               South West   E06000058
#> 3753      England   E12000009               South West   E06000059
#> 3754      England   E12000009               South West   E06000059
#> 3755      England   E12000009               South West   E06000059
#> 3756      England   E12000009               South West   E06000066
#> 3757      England   E12000009               South West   E06000066
#> 3758      England   E12000009               South West   E06000066
#> 3759      England   E12000009               South West   E10000008
#> 3760      England   E12000009               South West   E10000008
#> 3761      England   E12000009               South West   E10000008
#> 3762      England   E12000009               South West   E10000013
#> 3763      England   E12000009               South West   E10000013
#> 3764      England   E12000009               South West   E10000013
#> 3765      England        <NA>                     <NA>        <NA>
#> 3766      England        <NA>                     <NA>        <NA>
#> 3767      England        <NA>                     <NA>        <NA>
#> 3768      England        <NA>                     <NA>        <NA>
#> 3769      England   E12000001               North East        <NA>
#> 3770      England   E12000001               North East        <NA>
#> 3771      England   E12000001               North East        <NA>
#> 3772      England   E12000001               North East        <NA>
#> 3773      England   E12000001               North East   E06000001
#> 3774      England   E12000001               North East   E06000001
#> 3775      England   E12000001               North East   E06000001
#> 3776      England   E12000001               North East   E06000002
#> 3777      England   E12000001               North East   E06000002
#> 3778      England   E12000001               North East   E06000002
#> 3779      England   E12000001               North East   E06000003
#> 3780      England   E12000001               North East   E06000003
#> 3781      England   E12000001               North East   E06000003
#> 3782      England   E12000001               North East   E06000004
#> 3783      England   E12000001               North East   E06000004
#> 3784      England   E12000001               North East   E06000004
#> 3785      England   E12000001               North East   E06000005
#> 3786      England   E12000001               North East   E06000005
#> 3787      England   E12000001               North East   E06000005
#> 3788      England   E12000001               North East   E06000047
#> 3789      England   E12000001               North East   E06000047
#> 3790      England   E12000001               North East   E06000047
#> 3791      England   E12000001               North East   E06000057
#> 3792      England   E12000001               North East   E06000057
#> 3793      England   E12000001               North East   E06000057
#> 3794      England   E12000001               North East   E08000021
#> 3795      England   E12000001               North East   E08000021
#> 3796      England   E12000001               North East   E08000021
#> 3797      England   E12000001               North East   E08000022
#> 3798      England   E12000001               North East   E08000022
#> 3799      England   E12000001               North East   E08000022
#> 3800      England   E12000001               North East   E08000023
#> 3801      England   E12000001               North East   E08000023
#> 3802      England   E12000001               North East   E08000023
#> 3803      England   E12000001               North East   E08000024
#> 3804      England   E12000001               North East   E08000024
#> 3805      England   E12000001               North East   E08000024
#> 3806      England   E12000001               North East   E08000037
#> 3807      England   E12000001               North East   E08000037
#> 3808      England   E12000001               North East   E08000037
#> 3809      England   E12000002               North West        <NA>
#> 3810      England   E12000002               North West        <NA>
#> 3811      England   E12000002               North West        <NA>
#> 3812      England   E12000002               North West        <NA>
#> 3813      England   E12000002               North West   E06000006
#> 3814      England   E12000002               North West   E06000006
#> 3815      England   E12000002               North West   E06000006
#> 3816      England   E12000002               North West   E06000007
#> 3817      England   E12000002               North West   E06000007
#> 3818      England   E12000002               North West   E06000007
#> 3819      England   E12000002               North West   E06000008
#> 3820      England   E12000002               North West   E06000008
#> 3821      England   E12000002               North West   E06000008
#> 3822      England   E12000002               North West   E06000009
#> 3823      England   E12000002               North West   E06000009
#> 3824      England   E12000002               North West   E06000009
#> 3825      England   E12000002               North West   E06000049
#> 3826      England   E12000002               North West   E06000049
#> 3827      England   E12000002               North West   E06000049
#> 3828      England   E12000002               North West   E06000050
#> 3829      England   E12000002               North West   E06000050
#> 3830      England   E12000002               North West   E06000050
#> 3831      England   E12000002               North West   E06000063
#> 3832      England   E12000002               North West   E06000063
#> 3833      England   E12000002               North West   E06000063
#> 3834      England   E12000002               North West   E06000064
#> 3835      England   E12000002               North West   E06000064
#> 3836      England   E12000002               North West   E06000064
#> 3837      England   E12000002               North West   E08000001
#> 3838      England   E12000002               North West   E08000001
#> 3839      England   E12000002               North West   E08000001
#> 3840      England   E12000002               North West   E08000002
#> 3841      England   E12000002               North West   E08000002
#> 3842      England   E12000002               North West   E08000002
#> 3843      England   E12000002               North West   E08000003
#> 3844      England   E12000002               North West   E08000003
#> 3845      England   E12000002               North West   E08000003
#> 3846      England   E12000002               North West   E08000004
#> 3847      England   E12000002               North West   E08000004
#> 3848      England   E12000002               North West   E08000004
#> 3849      England   E12000002               North West   E08000005
#> 3850      England   E12000002               North West   E08000005
#> 3851      England   E12000002               North West   E08000005
#> 3852      England   E12000002               North West   E08000006
#> 3853      England   E12000002               North West   E08000006
#> 3854      England   E12000002               North West   E08000006
#> 3855      England   E12000002               North West   E08000007
#> 3856      England   E12000002               North West   E08000007
#> 3857      England   E12000002               North West   E08000007
#> 3858      England   E12000002               North West   E08000008
#> 3859      England   E12000002               North West   E08000008
#> 3860      England   E12000002               North West   E08000008
#> 3861      England   E12000002               North West   E08000009
#> 3862      England   E12000002               North West   E08000009
#> 3863      England   E12000002               North West   E08000009
#> 3864      England   E12000002               North West   E08000010
#> 3865      England   E12000002               North West   E08000010
#> 3866      England   E12000002               North West   E08000010
#> 3867      England   E12000002               North West   E08000011
#> 3868      England   E12000002               North West   E08000011
#> 3869      England   E12000002               North West   E08000011
#> 3870      England   E12000002               North West   E08000012
#> 3871      England   E12000002               North West   E08000012
#> 3872      England   E12000002               North West   E08000012
#> 3873      England   E12000002               North West   E08000013
#> 3874      England   E12000002               North West   E08000013
#> 3875      England   E12000002               North West   E08000013
#> 3876      England   E12000002               North West   E08000014
#> 3877      England   E12000002               North West   E08000014
#> 3878      England   E12000002               North West   E08000014
#> 3879      England   E12000002               North West   E08000015
#> 3880      England   E12000002               North West   E08000015
#> 3881      England   E12000002               North West   E08000015
#> 3882      England   E12000002               North West   E10000017
#> 3883      England   E12000002               North West   E10000017
#> 3884      England   E12000002               North West   E10000017
#> 3885      England   E12000003 Yorkshire and The Humber        <NA>
#> 3886      England   E12000003 Yorkshire and The Humber        <NA>
#> 3887      England   E12000003 Yorkshire and The Humber        <NA>
#> 3888      England   E12000003 Yorkshire and The Humber        <NA>
#> 3889      England   E12000003 Yorkshire and The Humber   E06000010
#> 3890      England   E12000003 Yorkshire and The Humber   E06000010
#> 3891      England   E12000003 Yorkshire and The Humber   E06000010
#> 3892      England   E12000003 Yorkshire and The Humber   E06000011
#> 3893      England   E12000003 Yorkshire and The Humber   E06000011
#> 3894      England   E12000003 Yorkshire and The Humber   E06000011
#> 3895      England   E12000003 Yorkshire and The Humber   E06000012
#> 3896      England   E12000003 Yorkshire and The Humber   E06000012
#> 3897      England   E12000003 Yorkshire and The Humber   E06000012
#> 3898      England   E12000003 Yorkshire and The Humber   E06000013
#> 3899      England   E12000003 Yorkshire and The Humber   E06000013
#> 3900      England   E12000003 Yorkshire and The Humber   E06000013
#> 3901      England   E12000003 Yorkshire and The Humber   E06000014
#> 3902      England   E12000003 Yorkshire and The Humber   E06000014
#> 3903      England   E12000003 Yorkshire and The Humber   E06000014
#> 3904      England   E12000003 Yorkshire and The Humber   E06000065
#> 3905      England   E12000003 Yorkshire and The Humber   E06000065
#> 3906      England   E12000003 Yorkshire and The Humber   E06000065
#> 3907      England   E12000003 Yorkshire and The Humber   E08000016
#> 3908      England   E12000003 Yorkshire and The Humber   E08000016
#> 3909      England   E12000003 Yorkshire and The Humber   E08000016
#> 3910      England   E12000003 Yorkshire and The Humber   E08000017
#> 3911      England   E12000003 Yorkshire and The Humber   E08000017
#> 3912      England   E12000003 Yorkshire and The Humber   E08000017
#> 3913      England   E12000003 Yorkshire and The Humber   E08000018
#> 3914      England   E12000003 Yorkshire and The Humber   E08000018
#> 3915      England   E12000003 Yorkshire and The Humber   E08000018
#> 3916      England   E12000003 Yorkshire and The Humber   E08000019
#> 3917      England   E12000003 Yorkshire and The Humber   E08000019
#> 3918      England   E12000003 Yorkshire and The Humber   E08000019
#> 3919      England   E12000003 Yorkshire and The Humber   E08000032
#> 3920      England   E12000003 Yorkshire and The Humber   E08000032
#> 3921      England   E12000003 Yorkshire and The Humber   E08000032
#> 3922      England   E12000003 Yorkshire and The Humber   E08000033
#> 3923      England   E12000003 Yorkshire and The Humber   E08000033
#> 3924      England   E12000003 Yorkshire and The Humber   E08000033
#> 3925      England   E12000003 Yorkshire and The Humber   E08000034
#> 3926      England   E12000003 Yorkshire and The Humber   E08000034
#> 3927      England   E12000003 Yorkshire and The Humber   E08000034
#> 3928      England   E12000003 Yorkshire and The Humber   E08000035
#> 3929      England   E12000003 Yorkshire and The Humber   E08000035
#> 3930      England   E12000003 Yorkshire and The Humber   E08000035
#> 3931      England   E12000003 Yorkshire and The Humber   E08000036
#> 3932      England   E12000003 Yorkshire and The Humber   E08000036
#> 3933      England   E12000003 Yorkshire and The Humber   E08000036
#> 3934      England   E12000004            East Midlands        <NA>
#> 3935      England   E12000004            East Midlands        <NA>
#> 3936      England   E12000004            East Midlands        <NA>
#> 3937      England   E12000004            East Midlands        <NA>
#> 3938      England   E12000004            East Midlands   E06000015
#> 3939      England   E12000004            East Midlands   E06000015
#> 3940      England   E12000004            East Midlands   E06000015
#> 3941      England   E12000004            East Midlands   E06000016
#> 3942      England   E12000004            East Midlands   E06000016
#> 3943      England   E12000004            East Midlands   E06000016
#> 3944      England   E12000004            East Midlands   E06000017
#> 3945      England   E12000004            East Midlands   E06000017
#> 3946      England   E12000004            East Midlands   E06000018
#> 3947      England   E12000004            East Midlands   E06000018
#> 3948      England   E12000004            East Midlands   E06000018
#> 3949      England   E12000004            East Midlands   E06000061
#> 3950      England   E12000004            East Midlands   E06000061
#> 3951      England   E12000004            East Midlands   E06000061
#> 3952      England   E12000004            East Midlands   E06000062
#> 3953      England   E12000004            East Midlands   E06000062
#> 3954      England   E12000004            East Midlands   E06000062
#> 3955      England   E12000004            East Midlands   E10000007
#> 3956      England   E12000004            East Midlands   E10000007
#> 3957      England   E12000004            East Midlands   E10000007
#> 3958      England   E12000004            East Midlands   E10000018
#> 3959      England   E12000004            East Midlands   E10000018
#> 3960      England   E12000004            East Midlands   E10000018
#> 3961      England   E12000004            East Midlands   E10000019
#> 3962      England   E12000004            East Midlands   E10000019
#> 3963      England   E12000004            East Midlands   E10000019
#> 3964      England   E12000004            East Midlands   E10000024
#> 3965      England   E12000004            East Midlands   E10000024
#> 3966      England   E12000004            East Midlands   E10000024
#> 3967      England   E12000005            West Midlands        <NA>
#> 3968      England   E12000005            West Midlands        <NA>
#> 3969      England   E12000005            West Midlands        <NA>
#> 3970      England   E12000005            West Midlands        <NA>
#> 3971      England   E12000005            West Midlands   E06000019
#> 3972      England   E12000005            West Midlands   E06000019
#> 3973      England   E12000005            West Midlands   E06000019
#> 3974      England   E12000005            West Midlands   E06000020
#> 3975      England   E12000005            West Midlands   E06000020
#> 3976      England   E12000005            West Midlands   E06000020
#> 3977      England   E12000005            West Midlands   E06000021
#> 3978      England   E12000005            West Midlands   E06000021
#> 3979      England   E12000005            West Midlands   E06000021
#> 3980      England   E12000005            West Midlands   E06000051
#> 3981      England   E12000005            West Midlands   E06000051
#> 3982      England   E12000005            West Midlands   E06000051
#> 3983      England   E12000005            West Midlands   E08000025
#> 3984      England   E12000005            West Midlands   E08000025
#> 3985      England   E12000005            West Midlands   E08000025
#> 3986      England   E12000005            West Midlands   E08000026
#> 3987      England   E12000005            West Midlands   E08000026
#> 3988      England   E12000005            West Midlands   E08000026
#> 3989      England   E12000005            West Midlands   E08000027
#> 3990      England   E12000005            West Midlands   E08000027
#> 3991      England   E12000005            West Midlands   E08000027
#> 3992      England   E12000005            West Midlands   E08000028
#> 3993      England   E12000005            West Midlands   E08000028
#> 3994      England   E12000005            West Midlands   E08000028
#> 3995      England   E12000005            West Midlands   E08000029
#> 3996      England   E12000005            West Midlands   E08000029
#> 3997      England   E12000005            West Midlands   E08000029
#> 3998      England   E12000005            West Midlands   E08000030
#> 3999      England   E12000005            West Midlands   E08000030
#> 4000      England   E12000005            West Midlands   E08000030
#> 4001      England   E12000005            West Midlands   E08000031
#> 4002      England   E12000005            West Midlands   E08000031
#> 4003      England   E12000005            West Midlands   E08000031
#> 4004      England   E12000005            West Midlands   E10000028
#> 4005      England   E12000005            West Midlands   E10000028
#> 4006      England   E12000005            West Midlands   E10000028
#> 4007      England   E12000005            West Midlands   E10000031
#> 4008      England   E12000005            West Midlands   E10000031
#> 4009      England   E12000005            West Midlands   E10000031
#> 4010      England   E12000005            West Midlands   E10000034
#> 4011      England   E12000005            West Midlands   E10000034
#> 4012      England   E12000005            West Midlands   E10000034
#> 4013      England   E12000006          East of England        <NA>
#> 4014      England   E12000006          East of England        <NA>
#> 4015      England   E12000006          East of England        <NA>
#> 4016      England   E12000006          East of England        <NA>
#> 4017      England   E12000006          East of England   E06000031
#> 4018      England   E12000006          East of England   E06000031
#> 4019      England   E12000006          East of England   E06000031
#> 4020      England   E12000006          East of England   E06000032
#> 4021      England   E12000006          East of England   E06000032
#> 4022      England   E12000006          East of England   E06000032
#> 4023      England   E12000006          East of England   E06000033
#> 4024      England   E12000006          East of England   E06000033
#> 4025      England   E12000006          East of England   E06000033
#> 4026      England   E12000006          East of England   E06000034
#> 4027      England   E12000006          East of England   E06000034
#> 4028      England   E12000006          East of England   E06000034
#> 4029      England   E12000006          East of England   E06000055
#> 4030      England   E12000006          East of England   E06000055
#> 4031      England   E12000006          East of England   E06000055
#> 4032      England   E12000006          East of England   E06000056
#> 4033      England   E12000006          East of England   E06000056
#> 4034      England   E12000006          East of England   E06000056
#> 4035      England   E12000006          East of England   E10000003
#> 4036      England   E12000006          East of England   E10000003
#> 4037      England   E12000006          East of England   E10000003
#> 4038      England   E12000006          East of England   E10000012
#> 4039      England   E12000006          East of England   E10000012
#> 4040      England   E12000006          East of England   E10000012
#> 4041      England   E12000006          East of England   E10000015
#> 4042      England   E12000006          East of England   E10000015
#> 4043      England   E12000006          East of England   E10000015
#> 4044      England   E12000006          East of England   E10000020
#> 4045      England   E12000006          East of England   E10000020
#> 4046      England   E12000006          East of England   E10000020
#> 4047      England   E12000006          East of England   E10000029
#> 4048      England   E12000006          East of England   E10000029
#> 4049      England   E12000006          East of England   E10000029
#> 4050      England   E12000007                   London        <NA>
#> 4051      England   E12000007                   London        <NA>
#> 4052      England   E12000007                   London        <NA>
#> 4053      England   E12000007                   London        <NA>
#> 4054      England   E12000007                   London   E09000001
#> 4055      England   E12000007                   London   E09000002
#> 4056      England   E12000007                   London   E09000002
#> 4057      England   E12000007                   London   E09000002
#> 4058      England   E12000007                   London   E09000003
#> 4059      England   E12000007                   London   E09000003
#> 4060      England   E12000007                   London   E09000003
#> 4061      England   E12000007                   London   E09000004
#> 4062      England   E12000007                   London   E09000004
#> 4063      England   E12000007                   London   E09000004
#> 4064      England   E12000007                   London   E09000005
#> 4065      England   E12000007                   London   E09000005
#> 4066      England   E12000007                   London   E09000005
#> 4067      England   E12000007                   London   E09000006
#> 4068      England   E12000007                   London   E09000006
#> 4069      England   E12000007                   London   E09000006
#> 4070      England   E12000007                   London   E09000007
#> 4071      England   E12000007                   London   E09000007
#> 4072      England   E12000007                   London   E09000007
#> 4073      England   E12000007                   London   E09000008
#> 4074      England   E12000007                   London   E09000008
#> 4075      England   E12000007                   London   E09000008
#> 4076      England   E12000007                   London   E09000009
#> 4077      England   E12000007                   London   E09000009
#> 4078      England   E12000007                   London   E09000009
#> 4079      England   E12000007                   London   E09000010
#> 4080      England   E12000007                   London   E09000010
#> 4081      England   E12000007                   London   E09000010
#> 4082      England   E12000007                   London   E09000011
#> 4083      England   E12000007                   London   E09000011
#> 4084      England   E12000007                   London   E09000011
#> 4085      England   E12000007                   London   E09000012
#> 4086      England   E12000007                   London   E09000012
#> 4087      England   E12000007                   London   E09000012
#> 4088      England   E12000007                   London   E09000013
#> 4089      England   E12000007                   London   E09000013
#> 4090      England   E12000007                   London   E09000013
#> 4091      England   E12000007                   London   E09000014
#> 4092      England   E12000007                   London   E09000014
#> 4093      England   E12000007                   London   E09000014
#> 4094      England   E12000007                   London   E09000015
#> 4095      England   E12000007                   London   E09000015
#> 4096      England   E12000007                   London   E09000015
#> 4097      England   E12000007                   London   E09000016
#> 4098      England   E12000007                   London   E09000016
#> 4099      England   E12000007                   London   E09000016
#> 4100      England   E12000007                   London   E09000017
#> 4101      England   E12000007                   London   E09000017
#> 4102      England   E12000007                   London   E09000017
#> 4103      England   E12000007                   London   E09000018
#> 4104      England   E12000007                   London   E09000018
#> 4105      England   E12000007                   London   E09000018
#> 4106      England   E12000007                   London   E09000019
#> 4107      England   E12000007                   London   E09000019
#> 4108      England   E12000007                   London   E09000019
#> 4109      England   E12000007                   London   E09000020
#> 4110      England   E12000007                   London   E09000020
#> 4111      England   E12000007                   London   E09000020
#> 4112      England   E12000007                   London   E09000021
#> 4113      England   E12000007                   London   E09000021
#> 4114      England   E12000007                   London   E09000021
#> 4115      England   E12000007                   London   E09000022
#> 4116      England   E12000007                   London   E09000022
#> 4117      England   E12000007                   London   E09000022
#> 4118      England   E12000007                   London   E09000023
#> 4119      England   E12000007                   London   E09000023
#> 4120      England   E12000007                   London   E09000023
#> 4121      England   E12000007                   London   E09000024
#> 4122      England   E12000007                   London   E09000024
#> 4123      England   E12000007                   London   E09000024
#> 4124      England   E12000007                   London   E09000025
#> 4125      England   E12000007                   London   E09000025
#> 4126      England   E12000007                   London   E09000025
#> 4127      England   E12000007                   London   E09000026
#> 4128      England   E12000007                   London   E09000026
#> 4129      England   E12000007                   London   E09000026
#> 4130      England   E12000007                   London   E09000027
#> 4131      England   E12000007                   London   E09000027
#> 4132      England   E12000007                   London   E09000027
#> 4133      England   E12000007                   London   E09000028
#> 4134      England   E12000007                   London   E09000028
#> 4135      England   E12000007                   London   E09000028
#> 4136      England   E12000007                   London   E09000029
#> 4137      England   E12000007                   London   E09000029
#> 4138      England   E12000007                   London   E09000029
#> 4139      England   E12000007                   London   E09000030
#> 4140      England   E12000007                   London   E09000030
#> 4141      England   E12000007                   London   E09000030
#> 4142      England   E12000007                   London   E09000031
#> 4143      England   E12000007                   London   E09000031
#> 4144      England   E12000007                   London   E09000031
#> 4145      England   E12000007                   London   E09000032
#> 4146      England   E12000007                   London   E09000032
#> 4147      England   E12000007                   London   E09000032
#> 4148      England   E12000007                   London   E09000033
#> 4149      England   E12000007                   London   E09000033
#> 4150      England   E12000007                   London   E09000033
#> 4151      England   E12000008               South East        <NA>
#> 4152      England   E12000008               South East        <NA>
#> 4153      England   E12000008               South East        <NA>
#> 4154      England   E12000008               South East        <NA>
#> 4155      England   E12000008               South East   E06000035
#> 4156      England   E12000008               South East   E06000035
#> 4157      England   E12000008               South East   E06000035
#> 4158      England   E12000008               South East   E06000036
#> 4159      England   E12000008               South East   E06000036
#> 4160      England   E12000008               South East   E06000036
#> 4161      England   E12000008               South East   E06000037
#> 4162      England   E12000008               South East   E06000037
#> 4163      England   E12000008               South East   E06000037
#> 4164      England   E12000008               South East   E06000038
#> 4165      England   E12000008               South East   E06000038
#> 4166      England   E12000008               South East   E06000038
#> 4167      England   E12000008               South East   E06000039
#> 4168      England   E12000008               South East   E06000039
#> 4169      England   E12000008               South East   E06000039
#> 4170      England   E12000008               South East   E06000040
#> 4171      England   E12000008               South East   E06000040
#> 4172      England   E12000008               South East   E06000040
#> 4173      England   E12000008               South East   E06000041
#> 4174      England   E12000008               South East   E06000041
#> 4175      England   E12000008               South East   E06000041
#> 4176      England   E12000008               South East   E06000042
#> 4177      England   E12000008               South East   E06000042
#> 4178      England   E12000008               South East   E06000042
#> 4179      England   E12000008               South East   E06000043
#> 4180      England   E12000008               South East   E06000043
#> 4181      England   E12000008               South East   E06000043
#> 4182      England   E12000008               South East   E06000044
#> 4183      England   E12000008               South East   E06000044
#> 4184      England   E12000008               South East   E06000044
#> 4185      England   E12000008               South East   E06000045
#> 4186      England   E12000008               South East   E06000045
#> 4187      England   E12000008               South East   E06000045
#> 4188      England   E12000008               South East   E06000046
#> 4189      England   E12000008               South East   E06000046
#> 4190      England   E12000008               South East   E06000046
#> 4191      England   E12000008               South East   E06000060
#> 4192      England   E12000008               South East   E06000060
#> 4193      England   E12000008               South East   E06000060
#> 4194      England   E12000008               South East   E10000011
#> 4195      England   E12000008               South East   E10000011
#> 4196      England   E12000008               South East   E10000011
#> 4197      England   E12000008               South East   E10000014
#> 4198      England   E12000008               South East   E10000014
#> 4199      England   E12000008               South East   E10000014
#> 4200      England   E12000008               South East   E10000016
#> 4201      England   E12000008               South East   E10000016
#> 4202      England   E12000008               South East   E10000016
#> 4203      England   E12000008               South East   E10000025
#> 4204      England   E12000008               South East   E10000025
#> 4205      England   E12000008               South East   E10000025
#> 4206      England   E12000008               South East   E10000030
#> 4207      England   E12000008               South East   E10000030
#> 4208      England   E12000008               South East   E10000030
#> 4209      England   E12000008               South East   E10000032
#> 4210      England   E12000008               South East   E10000032
#> 4211      England   E12000008               South East   E10000032
#> 4212      England   E12000009               South West        <NA>
#> 4213      England   E12000009               South West        <NA>
#> 4214      England   E12000009               South West        <NA>
#> 4215      England   E12000009               South West        <NA>
#> 4216      England   E12000009               South West   E06000022
#> 4217      England   E12000009               South West   E06000022
#> 4218      England   E12000009               South West   E06000022
#> 4219      England   E12000009               South West   E06000023
#> 4220      England   E12000009               South West   E06000023
#> 4221      England   E12000009               South West   E06000023
#> 4222      England   E12000009               South West   E06000024
#> 4223      England   E12000009               South West   E06000024
#> 4224      England   E12000009               South West   E06000024
#> 4225      England   E12000009               South West   E06000025
#> 4226      England   E12000009               South West   E06000025
#> 4227      England   E12000009               South West   E06000025
#> 4228      England   E12000009               South West   E06000026
#> 4229      England   E12000009               South West   E06000026
#> 4230      England   E12000009               South West   E06000026
#> 4231      England   E12000009               South West   E06000027
#> 4232      England   E12000009               South West   E06000027
#> 4233      England   E12000009               South West   E06000027
#> 4234      England   E12000009               South West   E06000030
#> 4235      England   E12000009               South West   E06000030
#> 4236      England   E12000009               South West   E06000030
#> 4237      England   E12000009               South West   E06000052
#> 4238      England   E12000009               South West   E06000052
#> 4239      England   E12000009               South West   E06000052
#> 4240      England   E12000009               South West   E06000053
#> 4241      England   E12000009               South West   E06000054
#> 4242      England   E12000009               South West   E06000054
#> 4243      England   E12000009               South West   E06000054
#> 4244      England   E12000009               South West   E06000058
#> 4245      England   E12000009               South West   E06000058
#> 4246      England   E12000009               South West   E06000058
#> 4247      England   E12000009               South West   E06000059
#> 4248      England   E12000009               South West   E06000059
#> 4249      England   E12000009               South West   E06000059
#> 4250      England   E12000009               South West   E06000066
#> 4251      England   E12000009               South West   E06000066
#> 4252      England   E12000009               South West   E06000066
#> 4253      England   E12000009               South West   E10000008
#> 4254      England   E12000009               South West   E10000008
#> 4255      England   E12000009               South West   E10000008
#> 4256      England   E12000009               South West   E10000013
#> 4257      England   E12000009               South West   E10000013
#> 4258      England   E12000009               South West   E10000013
#> 4259      England        <NA>                     <NA>        <NA>
#> 4260      England        <NA>                     <NA>        <NA>
#> 4261      England        <NA>                     <NA>        <NA>
#> 4262      England        <NA>                     <NA>        <NA>
#> 4263      England   E12000001               North East        <NA>
#> 4264      England   E12000001               North East        <NA>
#> 4265      England   E12000001               North East        <NA>
#> 4266      England   E12000001               North East        <NA>
#> 4267      England   E12000001               North East   E06000001
#> 4268      England   E12000001               North East   E06000001
#> 4269      England   E12000001               North East   E06000001
#> 4270      England   E12000001               North East   E06000002
#> 4271      England   E12000001               North East   E06000002
#> 4272      England   E12000001               North East   E06000002
#> 4273      England   E12000001               North East   E06000003
#> 4274      England   E12000001               North East   E06000003
#> 4275      England   E12000001               North East   E06000003
#> 4276      England   E12000001               North East   E06000004
#> 4277      England   E12000001               North East   E06000004
#> 4278      England   E12000001               North East   E06000004
#> 4279      England   E12000001               North East   E06000005
#> 4280      England   E12000001               North East   E06000005
#> 4281      England   E12000001               North East   E06000005
#> 4282      England   E12000001               North East   E06000047
#> 4283      England   E12000001               North East   E06000047
#> 4284      England   E12000001               North East   E06000047
#> 4285      England   E12000001               North East   E06000057
#> 4286      England   E12000001               North East   E06000057
#> 4287      England   E12000001               North East   E06000057
#> 4288      England   E12000001               North East   E08000021
#> 4289      England   E12000001               North East   E08000021
#> 4290      England   E12000001               North East   E08000021
#> 4291      England   E12000001               North East   E08000022
#> 4292      England   E12000001               North East   E08000022
#> 4293      England   E12000001               North East   E08000022
#> 4294      England   E12000001               North East   E08000023
#> 4295      England   E12000001               North East   E08000023
#> 4296      England   E12000001               North East   E08000023
#> 4297      England   E12000001               North East   E08000024
#> 4298      England   E12000001               North East   E08000024
#> 4299      England   E12000001               North East   E08000024
#> 4300      England   E12000001               North East   E08000037
#> 4301      England   E12000001               North East   E08000037
#> 4302      England   E12000001               North East   E08000037
#> 4303      England   E12000002               North West        <NA>
#> 4304      England   E12000002               North West        <NA>
#> 4305      England   E12000002               North West        <NA>
#> 4306      England   E12000002               North West        <NA>
#> 4307      England   E12000002               North West   E06000006
#> 4308      England   E12000002               North West   E06000006
#> 4309      England   E12000002               North West   E06000006
#> 4310      England   E12000002               North West   E06000007
#> 4311      England   E12000002               North West   E06000007
#> 4312      England   E12000002               North West   E06000007
#> 4313      England   E12000002               North West   E06000008
#> 4314      England   E12000002               North West   E06000008
#> 4315      England   E12000002               North West   E06000008
#> 4316      England   E12000002               North West   E06000009
#> 4317      England   E12000002               North West   E06000009
#> 4318      England   E12000002               North West   E06000009
#> 4319      England   E12000002               North West   E06000049
#> 4320      England   E12000002               North West   E06000049
#> 4321      England   E12000002               North West   E06000049
#> 4322      England   E12000002               North West   E06000050
#> 4323      England   E12000002               North West   E06000050
#> 4324      England   E12000002               North West   E06000050
#> 4325      England   E12000002               North West   E06000063
#> 4326      England   E12000002               North West   E06000063
#> 4327      England   E12000002               North West   E06000063
#> 4328      England   E12000002               North West   E06000064
#> 4329      England   E12000002               North West   E06000064
#> 4330      England   E12000002               North West   E06000064
#> 4331      England   E12000002               North West   E08000001
#> 4332      England   E12000002               North West   E08000001
#> 4333      England   E12000002               North West   E08000001
#> 4334      England   E12000002               North West   E08000002
#> 4335      England   E12000002               North West   E08000002
#> 4336      England   E12000002               North West   E08000002
#> 4337      England   E12000002               North West   E08000003
#> 4338      England   E12000002               North West   E08000003
#> 4339      England   E12000002               North West   E08000003
#> 4340      England   E12000002               North West   E08000004
#> 4341      England   E12000002               North West   E08000004
#> 4342      England   E12000002               North West   E08000004
#> 4343      England   E12000002               North West   E08000005
#> 4344      England   E12000002               North West   E08000005
#> 4345      England   E12000002               North West   E08000005
#> 4346      England   E12000002               North West   E08000006
#> 4347      England   E12000002               North West   E08000006
#> 4348      England   E12000002               North West   E08000006
#> 4349      England   E12000002               North West   E08000007
#> 4350      England   E12000002               North West   E08000007
#> 4351      England   E12000002               North West   E08000007
#> 4352      England   E12000002               North West   E08000008
#> 4353      England   E12000002               North West   E08000008
#> 4354      England   E12000002               North West   E08000008
#> 4355      England   E12000002               North West   E08000009
#> 4356      England   E12000002               North West   E08000009
#> 4357      England   E12000002               North West   E08000009
#> 4358      England   E12000002               North West   E08000010
#> 4359      England   E12000002               North West   E08000010
#> 4360      England   E12000002               North West   E08000010
#> 4361      England   E12000002               North West   E08000011
#> 4362      England   E12000002               North West   E08000011
#> 4363      England   E12000002               North West   E08000011
#> 4364      England   E12000002               North West   E08000012
#> 4365      England   E12000002               North West   E08000012
#> 4366      England   E12000002               North West   E08000012
#> 4367      England   E12000002               North West   E08000013
#> 4368      England   E12000002               North West   E08000013
#> 4369      England   E12000002               North West   E08000013
#> 4370      England   E12000002               North West   E08000014
#> 4371      England   E12000002               North West   E08000014
#> 4372      England   E12000002               North West   E08000014
#> 4373      England   E12000002               North West   E08000015
#> 4374      England   E12000002               North West   E08000015
#> 4375      England   E12000002               North West   E08000015
#> 4376      England   E12000002               North West   E10000017
#> 4377      England   E12000002               North West   E10000017
#> 4378      England   E12000002               North West   E10000017
#> 4379      England   E12000003 Yorkshire and The Humber        <NA>
#> 4380      England   E12000003 Yorkshire and The Humber        <NA>
#> 4381      England   E12000003 Yorkshire and The Humber        <NA>
#> 4382      England   E12000003 Yorkshire and The Humber        <NA>
#> 4383      England   E12000003 Yorkshire and The Humber   E06000010
#> 4384      England   E12000003 Yorkshire and The Humber   E06000010
#> 4385      England   E12000003 Yorkshire and The Humber   E06000010
#> 4386      England   E12000003 Yorkshire and The Humber   E06000011
#> 4387      England   E12000003 Yorkshire and The Humber   E06000011
#> 4388      England   E12000003 Yorkshire and The Humber   E06000011
#> 4389      England   E12000003 Yorkshire and The Humber   E06000012
#> 4390      England   E12000003 Yorkshire and The Humber   E06000012
#> 4391      England   E12000003 Yorkshire and The Humber   E06000012
#> 4392      England   E12000003 Yorkshire and The Humber   E06000013
#> 4393      England   E12000003 Yorkshire and The Humber   E06000013
#> 4394      England   E12000003 Yorkshire and The Humber   E06000013
#> 4395      England   E12000003 Yorkshire and The Humber   E06000014
#> 4396      England   E12000003 Yorkshire and The Humber   E06000014
#> 4397      England   E12000003 Yorkshire and The Humber   E06000014
#> 4398      England   E12000003 Yorkshire and The Humber   E06000065
#> 4399      England   E12000003 Yorkshire and The Humber   E06000065
#> 4400      England   E12000003 Yorkshire and The Humber   E06000065
#> 4401      England   E12000003 Yorkshire and The Humber   E08000016
#> 4402      England   E12000003 Yorkshire and The Humber   E08000016
#> 4403      England   E12000003 Yorkshire and The Humber   E08000016
#> 4404      England   E12000003 Yorkshire and The Humber   E08000017
#> 4405      England   E12000003 Yorkshire and The Humber   E08000017
#> 4406      England   E12000003 Yorkshire and The Humber   E08000017
#> 4407      England   E12000003 Yorkshire and The Humber   E08000018
#> 4408      England   E12000003 Yorkshire and The Humber   E08000018
#> 4409      England   E12000003 Yorkshire and The Humber   E08000018
#> 4410      England   E12000003 Yorkshire and The Humber   E08000019
#> 4411      England   E12000003 Yorkshire and The Humber   E08000019
#> 4412      England   E12000003 Yorkshire and The Humber   E08000019
#> 4413      England   E12000003 Yorkshire and The Humber   E08000032
#> 4414      England   E12000003 Yorkshire and The Humber   E08000032
#> 4415      England   E12000003 Yorkshire and The Humber   E08000032
#> 4416      England   E12000003 Yorkshire and The Humber   E08000033
#> 4417      England   E12000003 Yorkshire and The Humber   E08000033
#> 4418      England   E12000003 Yorkshire and The Humber   E08000033
#> 4419      England   E12000003 Yorkshire and The Humber   E08000034
#> 4420      England   E12000003 Yorkshire and The Humber   E08000034
#> 4421      England   E12000003 Yorkshire and The Humber   E08000034
#> 4422      England   E12000003 Yorkshire and The Humber   E08000035
#> 4423      England   E12000003 Yorkshire and The Humber   E08000035
#> 4424      England   E12000003 Yorkshire and The Humber   E08000035
#> 4425      England   E12000003 Yorkshire and The Humber   E08000036
#> 4426      England   E12000003 Yorkshire and The Humber   E08000036
#> 4427      England   E12000003 Yorkshire and The Humber   E08000036
#> 4428      England   E12000004            East Midlands        <NA>
#> 4429      England   E12000004            East Midlands        <NA>
#> 4430      England   E12000004            East Midlands        <NA>
#> 4431      England   E12000004            East Midlands        <NA>
#> 4432      England   E12000004            East Midlands   E06000015
#> 4433      England   E12000004            East Midlands   E06000015
#> 4434      England   E12000004            East Midlands   E06000015
#> 4435      England   E12000004            East Midlands   E06000016
#> 4436      England   E12000004            East Midlands   E06000016
#> 4437      England   E12000004            East Midlands   E06000016
#> 4438      England   E12000004            East Midlands   E06000017
#> 4439      England   E12000004            East Midlands   E06000017
#> 4440      England   E12000004            East Midlands   E06000018
#> 4441      England   E12000004            East Midlands   E06000018
#> 4442      England   E12000004            East Midlands   E06000018
#> 4443      England   E12000004            East Midlands   E06000061
#> 4444      England   E12000004            East Midlands   E06000061
#> 4445      England   E12000004            East Midlands   E06000061
#> 4446      England   E12000004            East Midlands   E06000062
#> 4447      England   E12000004            East Midlands   E06000062
#> 4448      England   E12000004            East Midlands   E06000062
#> 4449      England   E12000004            East Midlands   E10000007
#> 4450      England   E12000004            East Midlands   E10000007
#> 4451      England   E12000004            East Midlands   E10000007
#> 4452      England   E12000004            East Midlands   E10000018
#> 4453      England   E12000004            East Midlands   E10000018
#> 4454      England   E12000004            East Midlands   E10000018
#> 4455      England   E12000004            East Midlands   E10000019
#> 4456      England   E12000004            East Midlands   E10000019
#> 4457      England   E12000004            East Midlands   E10000019
#> 4458      England   E12000004            East Midlands   E10000024
#> 4459      England   E12000004            East Midlands   E10000024
#> 4460      England   E12000004            East Midlands   E10000024
#> 4461      England   E12000005            West Midlands        <NA>
#> 4462      England   E12000005            West Midlands        <NA>
#> 4463      England   E12000005            West Midlands        <NA>
#> 4464      England   E12000005            West Midlands        <NA>
#> 4465      England   E12000005            West Midlands   E06000019
#> 4466      England   E12000005            West Midlands   E06000019
#> 4467      England   E12000005            West Midlands   E06000019
#> 4468      England   E12000005            West Midlands   E06000020
#> 4469      England   E12000005            West Midlands   E06000020
#> 4470      England   E12000005            West Midlands   E06000020
#> 4471      England   E12000005            West Midlands   E06000021
#> 4472      England   E12000005            West Midlands   E06000021
#> 4473      England   E12000005            West Midlands   E06000021
#> 4474      England   E12000005            West Midlands   E06000051
#> 4475      England   E12000005            West Midlands   E06000051
#> 4476      England   E12000005            West Midlands   E06000051
#> 4477      England   E12000005            West Midlands   E08000025
#> 4478      England   E12000005            West Midlands   E08000025
#> 4479      England   E12000005            West Midlands   E08000025
#> 4480      England   E12000005            West Midlands   E08000026
#> 4481      England   E12000005            West Midlands   E08000026
#> 4482      England   E12000005            West Midlands   E08000026
#> 4483      England   E12000005            West Midlands   E08000027
#> 4484      England   E12000005            West Midlands   E08000027
#> 4485      England   E12000005            West Midlands   E08000027
#> 4486      England   E12000005            West Midlands   E08000028
#> 4487      England   E12000005            West Midlands   E08000028
#> 4488      England   E12000005            West Midlands   E08000028
#> 4489      England   E12000005            West Midlands   E08000029
#> 4490      England   E12000005            West Midlands   E08000029
#> 4491      England   E12000005            West Midlands   E08000029
#> 4492      England   E12000005            West Midlands   E08000030
#> 4493      England   E12000005            West Midlands   E08000030
#> 4494      England   E12000005            West Midlands   E08000030
#> 4495      England   E12000005            West Midlands   E08000031
#> 4496      England   E12000005            West Midlands   E08000031
#> 4497      England   E12000005            West Midlands   E08000031
#> 4498      England   E12000005            West Midlands   E10000028
#> 4499      England   E12000005            West Midlands   E10000028
#> 4500      England   E12000005            West Midlands   E10000028
#> 4501      England   E12000005            West Midlands   E10000031
#> 4502      England   E12000005            West Midlands   E10000031
#> 4503      England   E12000005            West Midlands   E10000031
#> 4504      England   E12000005            West Midlands   E10000034
#> 4505      England   E12000005            West Midlands   E10000034
#> 4506      England   E12000005            West Midlands   E10000034
#> 4507      England   E12000006          East of England        <NA>
#> 4508      England   E12000006          East of England        <NA>
#> 4509      England   E12000006          East of England        <NA>
#> 4510      England   E12000006          East of England        <NA>
#> 4511      England   E12000006          East of England   E06000031
#> 4512      England   E12000006          East of England   E06000031
#> 4513      England   E12000006          East of England   E06000031
#> 4514      England   E12000006          East of England   E06000032
#> 4515      England   E12000006          East of England   E06000032
#> 4516      England   E12000006          East of England   E06000032
#> 4517      England   E12000006          East of England   E06000033
#> 4518      England   E12000006          East of England   E06000033
#> 4519      England   E12000006          East of England   E06000033
#> 4520      England   E12000006          East of England   E06000034
#> 4521      England   E12000006          East of England   E06000034
#> 4522      England   E12000006          East of England   E06000034
#> 4523      England   E12000006          East of England   E06000055
#> 4524      England   E12000006          East of England   E06000055
#> 4525      England   E12000006          East of England   E06000055
#> 4526      England   E12000006          East of England   E06000056
#> 4527      England   E12000006          East of England   E06000056
#> 4528      England   E12000006          East of England   E06000056
#> 4529      England   E12000006          East of England   E10000003
#> 4530      England   E12000006          East of England   E10000003
#> 4531      England   E12000006          East of England   E10000003
#> 4532      England   E12000006          East of England   E10000012
#> 4533      England   E12000006          East of England   E10000012
#> 4534      England   E12000006          East of England   E10000012
#> 4535      England   E12000006          East of England   E10000015
#> 4536      England   E12000006          East of England   E10000015
#> 4537      England   E12000006          East of England   E10000015
#> 4538      England   E12000006          East of England   E10000020
#> 4539      England   E12000006          East of England   E10000020
#> 4540      England   E12000006          East of England   E10000020
#> 4541      England   E12000006          East of England   E10000029
#> 4542      England   E12000006          East of England   E10000029
#> 4543      England   E12000006          East of England   E10000029
#> 4544      England   E12000007                   London        <NA>
#> 4545      England   E12000007                   London        <NA>
#> 4546      England   E12000007                   London        <NA>
#> 4547      England   E12000007                   London        <NA>
#> 4548      England   E12000007                   London   E09000001
#> 4549      England   E12000007                   London   E09000002
#> 4550      England   E12000007                   London   E09000002
#> 4551      England   E12000007                   London   E09000002
#> 4552      England   E12000007                   London   E09000003
#> 4553      England   E12000007                   London   E09000003
#> 4554      England   E12000007                   London   E09000003
#> 4555      England   E12000007                   London   E09000004
#> 4556      England   E12000007                   London   E09000004
#> 4557      England   E12000007                   London   E09000004
#> 4558      England   E12000007                   London   E09000005
#> 4559      England   E12000007                   London   E09000005
#> 4560      England   E12000007                   London   E09000005
#> 4561      England   E12000007                   London   E09000006
#> 4562      England   E12000007                   London   E09000006
#> 4563      England   E12000007                   London   E09000006
#> 4564      England   E12000007                   London   E09000007
#> 4565      England   E12000007                   London   E09000007
#> 4566      England   E12000007                   London   E09000007
#> 4567      England   E12000007                   London   E09000008
#> 4568      England   E12000007                   London   E09000008
#> 4569      England   E12000007                   London   E09000008
#> 4570      England   E12000007                   London   E09000009
#> 4571      England   E12000007                   London   E09000009
#> 4572      England   E12000007                   London   E09000009
#> 4573      England   E12000007                   London   E09000010
#> 4574      England   E12000007                   London   E09000010
#> 4575      England   E12000007                   London   E09000010
#> 4576      England   E12000007                   London   E09000011
#> 4577      England   E12000007                   London   E09000011
#> 4578      England   E12000007                   London   E09000011
#> 4579      England   E12000007                   London   E09000012
#> 4580      England   E12000007                   London   E09000012
#> 4581      England   E12000007                   London   E09000012
#> 4582      England   E12000007                   London   E09000013
#> 4583      England   E12000007                   London   E09000013
#> 4584      England   E12000007                   London   E09000013
#> 4585      England   E12000007                   London   E09000014
#> 4586      England   E12000007                   London   E09000014
#> 4587      England   E12000007                   London   E09000014
#> 4588      England   E12000007                   London   E09000015
#> 4589      England   E12000007                   London   E09000015
#> 4590      England   E12000007                   London   E09000015
#> 4591      England   E12000007                   London   E09000016
#> 4592      England   E12000007                   London   E09000016
#> 4593      England   E12000007                   London   E09000016
#> 4594      England   E12000007                   London   E09000017
#> 4595      England   E12000007                   London   E09000017
#> 4596      England   E12000007                   London   E09000017
#> 4597      England   E12000007                   London   E09000018
#> 4598      England   E12000007                   London   E09000018
#> 4599      England   E12000007                   London   E09000018
#> 4600      England   E12000007                   London   E09000019
#> 4601      England   E12000007                   London   E09000019
#> 4602      England   E12000007                   London   E09000019
#> 4603      England   E12000007                   London   E09000020
#> 4604      England   E12000007                   London   E09000020
#> 4605      England   E12000007                   London   E09000020
#> 4606      England   E12000007                   London   E09000021
#> 4607      England   E12000007                   London   E09000021
#> 4608      England   E12000007                   London   E09000021
#> 4609      England   E12000007                   London   E09000022
#> 4610      England   E12000007                   London   E09000022
#> 4611      England   E12000007                   London   E09000022
#> 4612      England   E12000007                   London   E09000023
#> 4613      England   E12000007                   London   E09000023
#> 4614      England   E12000007                   London   E09000023
#> 4615      England   E12000007                   London   E09000024
#> 4616      England   E12000007                   London   E09000024
#> 4617      England   E12000007                   London   E09000024
#> 4618      England   E12000007                   London   E09000025
#> 4619      England   E12000007                   London   E09000025
#> 4620      England   E12000007                   London   E09000025
#> 4621      England   E12000007                   London   E09000026
#> 4622      England   E12000007                   London   E09000026
#> 4623      England   E12000007                   London   E09000026
#> 4624      England   E12000007                   London   E09000027
#> 4625      England   E12000007                   London   E09000027
#> 4626      England   E12000007                   London   E09000027
#> 4627      England   E12000007                   London   E09000028
#> 4628      England   E12000007                   London   E09000028
#> 4629      England   E12000007                   London   E09000028
#> 4630      England   E12000007                   London   E09000029
#> 4631      England   E12000007                   London   E09000029
#> 4632      England   E12000007                   London   E09000029
#> 4633      England   E12000007                   London   E09000030
#> 4634      England   E12000007                   London   E09000030
#> 4635      England   E12000007                   London   E09000030
#> 4636      England   E12000007                   London   E09000031
#> 4637      England   E12000007                   London   E09000031
#> 4638      England   E12000007                   London   E09000031
#> 4639      England   E12000007                   London   E09000032
#> 4640      England   E12000007                   London   E09000032
#> 4641      England   E12000007                   London   E09000032
#> 4642      England   E12000007                   London   E09000033
#> 4643      England   E12000007                   London   E09000033
#> 4644      England   E12000007                   London   E09000033
#> 4645      England   E12000008               South East        <NA>
#> 4646      England   E12000008               South East        <NA>
#> 4647      England   E12000008               South East        <NA>
#> 4648      England   E12000008               South East        <NA>
#> 4649      England   E12000008               South East   E06000035
#> 4650      England   E12000008               South East   E06000035
#> 4651      England   E12000008               South East   E06000035
#> 4652      England   E12000008               South East   E06000036
#> 4653      England   E12000008               South East   E06000036
#> 4654      England   E12000008               South East   E06000036
#> 4655      England   E12000008               South East   E06000037
#> 4656      England   E12000008               South East   E06000037
#> 4657      England   E12000008               South East   E06000037
#> 4658      England   E12000008               South East   E06000038
#> 4659      England   E12000008               South East   E06000038
#> 4660      England   E12000008               South East   E06000038
#> 4661      England   E12000008               South East   E06000039
#> 4662      England   E12000008               South East   E06000039
#> 4663      England   E12000008               South East   E06000039
#> 4664      England   E12000008               South East   E06000040
#> 4665      England   E12000008               South East   E06000040
#> 4666      England   E12000008               South East   E06000040
#> 4667      England   E12000008               South East   E06000041
#> 4668      England   E12000008               South East   E06000041
#> 4669      England   E12000008               South East   E06000041
#> 4670      England   E12000008               South East   E06000042
#> 4671      England   E12000008               South East   E06000042
#> 4672      England   E12000008               South East   E06000042
#> 4673      England   E12000008               South East   E06000043
#> 4674      England   E12000008               South East   E06000043
#> 4675      England   E12000008               South East   E06000043
#> 4676      England   E12000008               South East   E06000044
#> 4677      England   E12000008               South East   E06000044
#> 4678      England   E12000008               South East   E06000044
#> 4679      England   E12000008               South East   E06000045
#> 4680      England   E12000008               South East   E06000045
#> 4681      England   E12000008               South East   E06000045
#> 4682      England   E12000008               South East   E06000046
#> 4683      England   E12000008               South East   E06000046
#> 4684      England   E12000008               South East   E06000046
#> 4685      England   E12000008               South East   E06000060
#> 4686      England   E12000008               South East   E06000060
#> 4687      England   E12000008               South East   E06000060
#> 4688      England   E12000008               South East   E10000011
#> 4689      England   E12000008               South East   E10000011
#> 4690      England   E12000008               South East   E10000011
#> 4691      England   E12000008               South East   E10000014
#> 4692      England   E12000008               South East   E10000014
#> 4693      England   E12000008               South East   E10000014
#> 4694      England   E12000008               South East   E10000016
#> 4695      England   E12000008               South East   E10000016
#> 4696      England   E12000008               South East   E10000016
#> 4697      England   E12000008               South East   E10000025
#> 4698      England   E12000008               South East   E10000025
#> 4699      England   E12000008               South East   E10000025
#> 4700      England   E12000008               South East   E10000030
#> 4701      England   E12000008               South East   E10000030
#> 4702      England   E12000008               South East   E10000030
#> 4703      England   E12000008               South East   E10000032
#> 4704      England   E12000008               South East   E10000032
#> 4705      England   E12000008               South East   E10000032
#> 4706      England   E12000009               South West        <NA>
#> 4707      England   E12000009               South West        <NA>
#> 4708      England   E12000009               South West        <NA>
#> 4709      England   E12000009               South West        <NA>
#> 4710      England   E12000009               South West   E06000022
#> 4711      England   E12000009               South West   E06000022
#> 4712      England   E12000009               South West   E06000022
#> 4713      England   E12000009               South West   E06000023
#> 4714      England   E12000009               South West   E06000023
#> 4715      England   E12000009               South West   E06000023
#> 4716      England   E12000009               South West   E06000024
#> 4717      England   E12000009               South West   E06000024
#> 4718      England   E12000009               South West   E06000024
#> 4719      England   E12000009               South West   E06000025
#> 4720      England   E12000009               South West   E06000025
#> 4721      England   E12000009               South West   E06000025
#> 4722      England   E12000009               South West   E06000026
#> 4723      England   E12000009               South West   E06000026
#> 4724      England   E12000009               South West   E06000026
#> 4725      England   E12000009               South West   E06000027
#> 4726      England   E12000009               South West   E06000027
#> 4727      England   E12000009               South West   E06000027
#> 4728      England   E12000009               South West   E06000030
#> 4729      England   E12000009               South West   E06000030
#> 4730      England   E12000009               South West   E06000030
#> 4731      England   E12000009               South West   E06000052
#> 4732      England   E12000009               South West   E06000052
#> 4733      England   E12000009               South West   E06000052
#> 4734      England   E12000009               South West   E06000053
#> 4735      England   E12000009               South West   E06000054
#> 4736      England   E12000009               South West   E06000054
#> 4737      England   E12000009               South West   E06000054
#> 4738      England   E12000009               South West   E06000058
#> 4739      England   E12000009               South West   E06000058
#> 4740      England   E12000009               South West   E06000058
#> 4741      England   E12000009               South West   E06000059
#> 4742      England   E12000009               South West   E06000059
#> 4743      England   E12000009               South West   E06000059
#> 4744      England   E12000009               South West   E06000066
#> 4745      England   E12000009               South West   E06000066
#> 4746      England   E12000009               South West   E06000066
#> 4747      England   E12000009               South West   E10000008
#> 4748      England   E12000009               South West   E10000008
#> 4749      England   E12000009               South West   E10000008
#> 4750      England   E12000009               South West   E10000013
#> 4751      England   E12000009               South West   E10000013
#> 4752      England   E12000009               South West   E10000013
#> 4753      England        <NA>                     <NA>        <NA>
#> 4754      England        <NA>                     <NA>        <NA>
#> 4755      England        <NA>                     <NA>        <NA>
#> 4756      England        <NA>                     <NA>        <NA>
#> 4757      England   E12000001               North East        <NA>
#> 4758      England   E12000001               North East        <NA>
#> 4759      England   E12000001               North East        <NA>
#> 4760      England   E12000001               North East        <NA>
#> 4761      England   E12000001               North East   E06000001
#> 4762      England   E12000001               North East   E06000001
#> 4763      England   E12000001               North East   E06000001
#> 4764      England   E12000001               North East   E06000002
#> 4765      England   E12000001               North East   E06000002
#> 4766      England   E12000001               North East   E06000002
#> 4767      England   E12000001               North East   E06000003
#> 4768      England   E12000001               North East   E06000003
#> 4769      England   E12000001               North East   E06000003
#> 4770      England   E12000001               North East   E06000004
#> 4771      England   E12000001               North East   E06000004
#> 4772      England   E12000001               North East   E06000004
#> 4773      England   E12000001               North East   E06000005
#> 4774      England   E12000001               North East   E06000005
#> 4775      England   E12000001               North East   E06000005
#> 4776      England   E12000001               North East   E06000047
#> 4777      England   E12000001               North East   E06000047
#> 4778      England   E12000001               North East   E06000047
#> 4779      England   E12000001               North East   E06000057
#> 4780      England   E12000001               North East   E06000057
#> 4781      England   E12000001               North East   E06000057
#> 4782      England   E12000001               North East   E08000021
#> 4783      England   E12000001               North East   E08000021
#> 4784      England   E12000001               North East   E08000021
#> 4785      England   E12000001               North East   E08000022
#> 4786      England   E12000001               North East   E08000022
#> 4787      England   E12000001               North East   E08000022
#> 4788      England   E12000001               North East   E08000023
#> 4789      England   E12000001               North East   E08000023
#> 4790      England   E12000001               North East   E08000023
#> 4791      England   E12000001               North East   E08000024
#> 4792      England   E12000001               North East   E08000024
#> 4793      England   E12000001               North East   E08000024
#> 4794      England   E12000001               North East   E08000037
#> 4795      England   E12000001               North East   E08000037
#> 4796      England   E12000001               North East   E08000037
#> 4797      England   E12000002               North West        <NA>
#> 4798      England   E12000002               North West        <NA>
#> 4799      England   E12000002               North West        <NA>
#> 4800      England   E12000002               North West        <NA>
#> 4801      England   E12000002               North West   E06000006
#> 4802      England   E12000002               North West   E06000006
#> 4803      England   E12000002               North West   E06000006
#> 4804      England   E12000002               North West   E06000007
#> 4805      England   E12000002               North West   E06000007
#> 4806      England   E12000002               North West   E06000007
#> 4807      England   E12000002               North West   E06000008
#> 4808      England   E12000002               North West   E06000008
#> 4809      England   E12000002               North West   E06000008
#> 4810      England   E12000002               North West   E06000009
#> 4811      England   E12000002               North West   E06000009
#> 4812      England   E12000002               North West   E06000009
#> 4813      England   E12000002               North West   E06000049
#> 4814      England   E12000002               North West   E06000049
#> 4815      England   E12000002               North West   E06000049
#> 4816      England   E12000002               North West   E06000050
#> 4817      England   E12000002               North West   E06000050
#> 4818      England   E12000002               North West   E06000050
#> 4819      England   E12000002               North West   E06000063
#> 4820      England   E12000002               North West   E06000063
#> 4821      England   E12000002               North West   E06000063
#> 4822      England   E12000002               North West   E06000064
#> 4823      England   E12000002               North West   E06000064
#> 4824      England   E12000002               North West   E06000064
#> 4825      England   E12000002               North West   E08000001
#> 4826      England   E12000002               North West   E08000001
#> 4827      England   E12000002               North West   E08000001
#> 4828      England   E12000002               North West   E08000002
#> 4829      England   E12000002               North West   E08000002
#> 4830      England   E12000002               North West   E08000002
#> 4831      England   E12000002               North West   E08000003
#> 4832      England   E12000002               North West   E08000003
#> 4833      England   E12000002               North West   E08000003
#> 4834      England   E12000002               North West   E08000004
#> 4835      England   E12000002               North West   E08000004
#> 4836      England   E12000002               North West   E08000004
#> 4837      England   E12000002               North West   E08000005
#> 4838      England   E12000002               North West   E08000005
#> 4839      England   E12000002               North West   E08000005
#> 4840      England   E12000002               North West   E08000006
#> 4841      England   E12000002               North West   E08000006
#> 4842      England   E12000002               North West   E08000006
#> 4843      England   E12000002               North West   E08000007
#> 4844      England   E12000002               North West   E08000007
#> 4845      England   E12000002               North West   E08000007
#> 4846      England   E12000002               North West   E08000008
#> 4847      England   E12000002               North West   E08000008
#> 4848      England   E12000002               North West   E08000008
#> 4849      England   E12000002               North West   E08000009
#> 4850      England   E12000002               North West   E08000009
#> 4851      England   E12000002               North West   E08000009
#> 4852      England   E12000002               North West   E08000010
#> 4853      England   E12000002               North West   E08000010
#> 4854      England   E12000002               North West   E08000010
#> 4855      England   E12000002               North West   E08000011
#> 4856      England   E12000002               North West   E08000011
#> 4857      England   E12000002               North West   E08000011
#> 4858      England   E12000002               North West   E08000012
#> 4859      England   E12000002               North West   E08000012
#> 4860      England   E12000002               North West   E08000012
#> 4861      England   E12000002               North West   E08000013
#> 4862      England   E12000002               North West   E08000013
#> 4863      England   E12000002               North West   E08000013
#> 4864      England   E12000002               North West   E08000014
#> 4865      England   E12000002               North West   E08000014
#> 4866      England   E12000002               North West   E08000014
#> 4867      England   E12000002               North West   E08000015
#> 4868      England   E12000002               North West   E08000015
#> 4869      England   E12000002               North West   E08000015
#> 4870      England   E12000002               North West   E10000017
#> 4871      England   E12000002               North West   E10000017
#> 4872      England   E12000002               North West   E10000017
#> 4873      England   E12000003 Yorkshire and The Humber        <NA>
#> 4874      England   E12000003 Yorkshire and The Humber        <NA>
#> 4875      England   E12000003 Yorkshire and The Humber        <NA>
#> 4876      England   E12000003 Yorkshire and The Humber        <NA>
#> 4877      England   E12000003 Yorkshire and The Humber   E06000010
#> 4878      England   E12000003 Yorkshire and The Humber   E06000010
#> 4879      England   E12000003 Yorkshire and The Humber   E06000010
#> 4880      England   E12000003 Yorkshire and The Humber   E06000011
#> 4881      England   E12000003 Yorkshire and The Humber   E06000011
#> 4882      England   E12000003 Yorkshire and The Humber   E06000011
#> 4883      England   E12000003 Yorkshire and The Humber   E06000012
#> 4884      England   E12000003 Yorkshire and The Humber   E06000012
#> 4885      England   E12000003 Yorkshire and The Humber   E06000012
#> 4886      England   E12000003 Yorkshire and The Humber   E06000013
#> 4887      England   E12000003 Yorkshire and The Humber   E06000013
#> 4888      England   E12000003 Yorkshire and The Humber   E06000013
#> 4889      England   E12000003 Yorkshire and The Humber   E06000014
#> 4890      England   E12000003 Yorkshire and The Humber   E06000014
#> 4891      England   E12000003 Yorkshire and The Humber   E06000014
#> 4892      England   E12000003 Yorkshire and The Humber   E06000065
#> 4893      England   E12000003 Yorkshire and The Humber   E06000065
#> 4894      England   E12000003 Yorkshire and The Humber   E06000065
#> 4895      England   E12000003 Yorkshire and The Humber   E08000016
#> 4896      England   E12000003 Yorkshire and The Humber   E08000016
#> 4897      England   E12000003 Yorkshire and The Humber   E08000016
#> 4898      England   E12000003 Yorkshire and The Humber   E08000017
#> 4899      England   E12000003 Yorkshire and The Humber   E08000017
#> 4900      England   E12000003 Yorkshire and The Humber   E08000017
#> 4901      England   E12000003 Yorkshire and The Humber   E08000018
#> 4902      England   E12000003 Yorkshire and The Humber   E08000018
#> 4903      England   E12000003 Yorkshire and The Humber   E08000018
#> 4904      England   E12000003 Yorkshire and The Humber   E08000019
#> 4905      England   E12000003 Yorkshire and The Humber   E08000019
#> 4906      England   E12000003 Yorkshire and The Humber   E08000019
#> 4907      England   E12000003 Yorkshire and The Humber   E08000032
#> 4908      England   E12000003 Yorkshire and The Humber   E08000032
#> 4909      England   E12000003 Yorkshire and The Humber   E08000032
#> 4910      England   E12000003 Yorkshire and The Humber   E08000033
#> 4911      England   E12000003 Yorkshire and The Humber   E08000033
#> 4912      England   E12000003 Yorkshire and The Humber   E08000033
#> 4913      England   E12000003 Yorkshire and The Humber   E08000034
#> 4914      England   E12000003 Yorkshire and The Humber   E08000034
#> 4915      England   E12000003 Yorkshire and The Humber   E08000034
#> 4916      England   E12000003 Yorkshire and The Humber   E08000035
#> 4917      England   E12000003 Yorkshire and The Humber   E08000035
#> 4918      England   E12000003 Yorkshire and The Humber   E08000035
#> 4919      England   E12000003 Yorkshire and The Humber   E08000036
#> 4920      England   E12000003 Yorkshire and The Humber   E08000036
#> 4921      England   E12000003 Yorkshire and The Humber   E08000036
#> 4922      England   E12000004            East Midlands        <NA>
#> 4923      England   E12000004            East Midlands        <NA>
#> 4924      England   E12000004            East Midlands        <NA>
#> 4925      England   E12000004            East Midlands        <NA>
#> 4926      England   E12000004            East Midlands   E06000015
#> 4927      England   E12000004            East Midlands   E06000015
#> 4928      England   E12000004            East Midlands   E06000015
#> 4929      England   E12000004            East Midlands   E06000016
#> 4930      England   E12000004            East Midlands   E06000016
#> 4931      England   E12000004            East Midlands   E06000016
#> 4932      England   E12000004            East Midlands   E06000017
#> 4933      England   E12000004            East Midlands   E06000017
#> 4934      England   E12000004            East Midlands   E06000018
#> 4935      England   E12000004            East Midlands   E06000018
#> 4936      England   E12000004            East Midlands   E06000018
#> 4937      England   E12000004            East Midlands   E06000061
#> 4938      England   E12000004            East Midlands   E06000061
#> 4939      England   E12000004            East Midlands   E06000061
#> 4940      England   E12000004            East Midlands   E06000062
#> 4941      England   E12000004            East Midlands   E06000062
#> 4942      England   E12000004            East Midlands   E06000062
#> 4943      England   E12000004            East Midlands   E10000007
#> 4944      England   E12000004            East Midlands   E10000007
#> 4945      England   E12000004            East Midlands   E10000007
#> 4946      England   E12000004            East Midlands   E10000018
#> 4947      England   E12000004            East Midlands   E10000018
#> 4948      England   E12000004            East Midlands   E10000018
#> 4949      England   E12000004            East Midlands   E10000019
#> 4950      England   E12000004            East Midlands   E10000019
#> 4951      England   E12000004            East Midlands   E10000019
#> 4952      England   E12000004            East Midlands   E10000024
#> 4953      England   E12000004            East Midlands   E10000024
#> 4954      England   E12000004            East Midlands   E10000024
#> 4955      England   E12000005            West Midlands        <NA>
#> 4956      England   E12000005            West Midlands        <NA>
#> 4957      England   E12000005            West Midlands        <NA>
#> 4958      England   E12000005            West Midlands        <NA>
#> 4959      England   E12000005            West Midlands   E06000019
#> 4960      England   E12000005            West Midlands   E06000019
#> 4961      England   E12000005            West Midlands   E06000019
#> 4962      England   E12000005            West Midlands   E06000020
#> 4963      England   E12000005            West Midlands   E06000020
#> 4964      England   E12000005            West Midlands   E06000020
#> 4965      England   E12000005            West Midlands   E06000021
#> 4966      England   E12000005            West Midlands   E06000021
#> 4967      England   E12000005            West Midlands   E06000021
#> 4968      England   E12000005            West Midlands   E06000051
#> 4969      England   E12000005            West Midlands   E06000051
#> 4970      England   E12000005            West Midlands   E06000051
#> 4971      England   E12000005            West Midlands   E08000025
#> 4972      England   E12000005            West Midlands   E08000025
#> 4973      England   E12000005            West Midlands   E08000025
#> 4974      England   E12000005            West Midlands   E08000026
#> 4975      England   E12000005            West Midlands   E08000026
#> 4976      England   E12000005            West Midlands   E08000026
#> 4977      England   E12000005            West Midlands   E08000027
#> 4978      England   E12000005            West Midlands   E08000027
#> 4979      England   E12000005            West Midlands   E08000027
#> 4980      England   E12000005            West Midlands   E08000028
#> 4981      England   E12000005            West Midlands   E08000028
#> 4982      England   E12000005            West Midlands   E08000028
#> 4983      England   E12000005            West Midlands   E08000029
#> 4984      England   E12000005            West Midlands   E08000029
#> 4985      England   E12000005            West Midlands   E08000029
#> 4986      England   E12000005            West Midlands   E08000030
#> 4987      England   E12000005            West Midlands   E08000030
#> 4988      England   E12000005            West Midlands   E08000030
#> 4989      England   E12000005            West Midlands   E08000031
#> 4990      England   E12000005            West Midlands   E08000031
#> 4991      England   E12000005            West Midlands   E08000031
#> 4992      England   E12000005            West Midlands   E10000028
#> 4993      England   E12000005            West Midlands   E10000028
#> 4994      England   E12000005            West Midlands   E10000028
#> 4995      England   E12000005            West Midlands   E10000031
#> 4996      England   E12000005            West Midlands   E10000031
#> 4997      England   E12000005            West Midlands   E10000031
#> 4998      England   E12000005            West Midlands   E10000034
#> 4999      England   E12000005            West Midlands   E10000034
#> 5000      England   E12000005            West Midlands   E10000034
#> 5001      England   E12000006          East of England        <NA>
#> 5002      England   E12000006          East of England        <NA>
#> 5003      England   E12000006          East of England        <NA>
#> 5004      England   E12000006          East of England        <NA>
#> 5005      England   E12000006          East of England   E06000031
#> 5006      England   E12000006          East of England   E06000031
#> 5007      England   E12000006          East of England   E06000031
#> 5008      England   E12000006          East of England   E06000032
#> 5009      England   E12000006          East of England   E06000032
#> 5010      England   E12000006          East of England   E06000032
#> 5011      England   E12000006          East of England   E06000033
#> 5012      England   E12000006          East of England   E06000033
#> 5013      England   E12000006          East of England   E06000033
#> 5014      England   E12000006          East of England   E06000034
#> 5015      England   E12000006          East of England   E06000034
#> 5016      England   E12000006          East of England   E06000034
#> 5017      England   E12000006          East of England   E06000055
#> 5018      England   E12000006          East of England   E06000055
#> 5019      England   E12000006          East of England   E06000055
#> 5020      England   E12000006          East of England   E06000056
#> 5021      England   E12000006          East of England   E06000056
#> 5022      England   E12000006          East of England   E06000056
#> 5023      England   E12000006          East of England   E10000003
#> 5024      England   E12000006          East of England   E10000003
#> 5025      England   E12000006          East of England   E10000003
#> 5026      England   E12000006          East of England   E10000012
#> 5027      England   E12000006          East of England   E10000012
#> 5028      England   E12000006          East of England   E10000012
#> 5029      England   E12000006          East of England   E10000015
#> 5030      England   E12000006          East of England   E10000015
#> 5031      England   E12000006          East of England   E10000015
#> 5032      England   E12000006          East of England   E10000020
#> 5033      England   E12000006          East of England   E10000020
#> 5034      England   E12000006          East of England   E10000020
#> 5035      England   E12000006          East of England   E10000029
#> 5036      England   E12000006          East of England   E10000029
#> 5037      England   E12000006          East of England   E10000029
#> 5038      England   E12000007                   London        <NA>
#> 5039      England   E12000007                   London        <NA>
#> 5040      England   E12000007                   London        <NA>
#> 5041      England   E12000007                   London        <NA>
#> 5042      England   E12000007                   London   E09000001
#> 5043      England   E12000007                   London   E09000002
#> 5044      England   E12000007                   London   E09000002
#> 5045      England   E12000007                   London   E09000002
#> 5046      England   E12000007                   London   E09000003
#> 5047      England   E12000007                   London   E09000003
#> 5048      England   E12000007                   London   E09000003
#> 5049      England   E12000007                   London   E09000004
#> 5050      England   E12000007                   London   E09000004
#> 5051      England   E12000007                   London   E09000004
#> 5052      England   E12000007                   London   E09000005
#> 5053      England   E12000007                   London   E09000005
#> 5054      England   E12000007                   London   E09000005
#> 5055      England   E12000007                   London   E09000006
#> 5056      England   E12000007                   London   E09000006
#> 5057      England   E12000007                   London   E09000006
#> 5058      England   E12000007                   London   E09000007
#> 5059      England   E12000007                   London   E09000007
#> 5060      England   E12000007                   London   E09000007
#> 5061      England   E12000007                   London   E09000008
#> 5062      England   E12000007                   London   E09000008
#> 5063      England   E12000007                   London   E09000008
#> 5064      England   E12000007                   London   E09000009
#> 5065      England   E12000007                   London   E09000009
#> 5066      England   E12000007                   London   E09000009
#> 5067      England   E12000007                   London   E09000010
#> 5068      England   E12000007                   London   E09000010
#> 5069      England   E12000007                   London   E09000010
#> 5070      England   E12000007                   London   E09000011
#> 5071      England   E12000007                   London   E09000011
#> 5072      England   E12000007                   London   E09000011
#> 5073      England   E12000007                   London   E09000012
#> 5074      England   E12000007                   London   E09000012
#> 5075      England   E12000007                   London   E09000012
#> 5076      England   E12000007                   London   E09000013
#> 5077      England   E12000007                   London   E09000013
#> 5078      England   E12000007                   London   E09000013
#> 5079      England   E12000007                   London   E09000014
#> 5080      England   E12000007                   London   E09000014
#> 5081      England   E12000007                   London   E09000014
#> 5082      England   E12000007                   London   E09000015
#> 5083      England   E12000007                   London   E09000015
#> 5084      England   E12000007                   London   E09000015
#> 5085      England   E12000007                   London   E09000016
#> 5086      England   E12000007                   London   E09000016
#> 5087      England   E12000007                   London   E09000016
#> 5088      England   E12000007                   London   E09000017
#> 5089      England   E12000007                   London   E09000017
#> 5090      England   E12000007                   London   E09000017
#> 5091      England   E12000007                   London   E09000018
#> 5092      England   E12000007                   London   E09000018
#> 5093      England   E12000007                   London   E09000018
#> 5094      England   E12000007                   London   E09000019
#> 5095      England   E12000007                   London   E09000019
#> 5096      England   E12000007                   London   E09000019
#> 5097      England   E12000007                   London   E09000020
#> 5098      England   E12000007                   London   E09000020
#> 5099      England   E12000007                   London   E09000020
#> 5100      England   E12000007                   London   E09000021
#> 5101      England   E12000007                   London   E09000021
#> 5102      England   E12000007                   London   E09000021
#> 5103      England   E12000007                   London   E09000022
#> 5104      England   E12000007                   London   E09000022
#> 5105      England   E12000007                   London   E09000022
#> 5106      England   E12000007                   London   E09000023
#> 5107      England   E12000007                   London   E09000023
#> 5108      England   E12000007                   London   E09000023
#> 5109      England   E12000007                   London   E09000024
#> 5110      England   E12000007                   London   E09000024
#> 5111      England   E12000007                   London   E09000024
#> 5112      England   E12000007                   London   E09000025
#> 5113      England   E12000007                   London   E09000025
#> 5114      England   E12000007                   London   E09000025
#> 5115      England   E12000007                   London   E09000026
#> 5116      England   E12000007                   London   E09000026
#> 5117      England   E12000007                   London   E09000026
#> 5118      England   E12000007                   London   E09000027
#> 5119      England   E12000007                   London   E09000027
#> 5120      England   E12000007                   London   E09000027
#> 5121      England   E12000007                   London   E09000028
#> 5122      England   E12000007                   London   E09000028
#> 5123      England   E12000007                   London   E09000028
#> 5124      England   E12000007                   London   E09000029
#> 5125      England   E12000007                   London   E09000029
#> 5126      England   E12000007                   London   E09000029
#> 5127      England   E12000007                   London   E09000030
#> 5128      England   E12000007                   London   E09000030
#> 5129      England   E12000007                   London   E09000030
#> 5130      England   E12000007                   London   E09000031
#> 5131      England   E12000007                   London   E09000031
#> 5132      England   E12000007                   London   E09000031
#> 5133      England   E12000007                   London   E09000032
#> 5134      England   E12000007                   London   E09000032
#> 5135      England   E12000007                   London   E09000032
#> 5136      England   E12000007                   London   E09000033
#> 5137      England   E12000007                   London   E09000033
#> 5138      England   E12000007                   London   E09000033
#> 5139      England   E12000008               South East        <NA>
#> 5140      England   E12000008               South East        <NA>
#> 5141      England   E12000008               South East        <NA>
#> 5142      England   E12000008               South East        <NA>
#> 5143      England   E12000008               South East   E06000035
#> 5144      England   E12000008               South East   E06000035
#> 5145      England   E12000008               South East   E06000035
#> 5146      England   E12000008               South East   E06000036
#> 5147      England   E12000008               South East   E06000036
#> 5148      England   E12000008               South East   E06000036
#> 5149      England   E12000008               South East   E06000037
#> 5150      England   E12000008               South East   E06000037
#> 5151      England   E12000008               South East   E06000037
#> 5152      England   E12000008               South East   E06000038
#> 5153      England   E12000008               South East   E06000038
#> 5154      England   E12000008               South East   E06000038
#> 5155      England   E12000008               South East   E06000039
#> 5156      England   E12000008               South East   E06000039
#> 5157      England   E12000008               South East   E06000039
#> 5158      England   E12000008               South East   E06000040
#> 5159      England   E12000008               South East   E06000040
#> 5160      England   E12000008               South East   E06000040
#> 5161      England   E12000008               South East   E06000041
#> 5162      England   E12000008               South East   E06000041
#> 5163      England   E12000008               South East   E06000041
#> 5164      England   E12000008               South East   E06000042
#> 5165      England   E12000008               South East   E06000042
#> 5166      England   E12000008               South East   E06000042
#> 5167      England   E12000008               South East   E06000043
#> 5168      England   E12000008               South East   E06000043
#> 5169      England   E12000008               South East   E06000043
#> 5170      England   E12000008               South East   E06000044
#> 5171      England   E12000008               South East   E06000044
#> 5172      England   E12000008               South East   E06000044
#> 5173      England   E12000008               South East   E06000045
#> 5174      England   E12000008               South East   E06000045
#> 5175      England   E12000008               South East   E06000045
#> 5176      England   E12000008               South East   E06000046
#> 5177      England   E12000008               South East   E06000046
#> 5178      England   E12000008               South East   E06000046
#> 5179      England   E12000008               South East   E06000060
#> 5180      England   E12000008               South East   E06000060
#> 5181      England   E12000008               South East   E06000060
#> 5182      England   E12000008               South East   E10000011
#> 5183      England   E12000008               South East   E10000011
#> 5184      England   E12000008               South East   E10000011
#> 5185      England   E12000008               South East   E10000014
#> 5186      England   E12000008               South East   E10000014
#> 5187      England   E12000008               South East   E10000014
#> 5188      England   E12000008               South East   E10000016
#> 5189      England   E12000008               South East   E10000016
#> 5190      England   E12000008               South East   E10000016
#> 5191      England   E12000008               South East   E10000025
#> 5192      England   E12000008               South East   E10000025
#> 5193      England   E12000008               South East   E10000025
#> 5194      England   E12000008               South East   E10000030
#> 5195      England   E12000008               South East   E10000030
#> 5196      England   E12000008               South East   E10000030
#> 5197      England   E12000008               South East   E10000032
#> 5198      England   E12000008               South East   E10000032
#> 5199      England   E12000008               South East   E10000032
#> 5200      England   E12000009               South West        <NA>
#> 5201      England   E12000009               South West        <NA>
#> 5202      England   E12000009               South West        <NA>
#> 5203      England   E12000009               South West        <NA>
#> 5204      England   E12000009               South West   E06000022
#> 5205      England   E12000009               South West   E06000022
#> 5206      England   E12000009               South West   E06000022
#> 5207      England   E12000009               South West   E06000023
#> 5208      England   E12000009               South West   E06000023
#> 5209      England   E12000009               South West   E06000023
#> 5210      England   E12000009               South West   E06000024
#> 5211      England   E12000009               South West   E06000024
#> 5212      England   E12000009               South West   E06000024
#> 5213      England   E12000009               South West   E06000025
#> 5214      England   E12000009               South West   E06000025
#> 5215      England   E12000009               South West   E06000025
#> 5216      England   E12000009               South West   E06000026
#> 5217      England   E12000009               South West   E06000026
#> 5218      England   E12000009               South West   E06000026
#> 5219      England   E12000009               South West   E06000027
#> 5220      England   E12000009               South West   E06000027
#> 5221      England   E12000009               South West   E06000027
#> 5222      England   E12000009               South West   E06000030
#> 5223      England   E12000009               South West   E06000030
#> 5224      England   E12000009               South West   E06000030
#> 5225      England   E12000009               South West   E06000052
#> 5226      England   E12000009               South West   E06000052
#> 5227      England   E12000009               South West   E06000052
#> 5228      England   E12000009               South West   E06000053
#> 5229      England   E12000009               South West   E06000054
#> 5230      England   E12000009               South West   E06000054
#> 5231      England   E12000009               South West   E06000054
#> 5232      England   E12000009               South West   E06000058
#> 5233      England   E12000009               South West   E06000058
#> 5234      England   E12000009               South West   E06000058
#> 5235      England   E12000009               South West   E06000059
#> 5236      England   E12000009               South West   E06000059
#> 5237      England   E12000009               South West   E06000059
#> 5238      England   E12000009               South West   E06000066
#> 5239      England   E12000009               South West   E06000066
#> 5240      England   E12000009               South West   E06000066
#> 5241      England   E12000009               South West   E10000008
#> 5242      England   E12000009               South West   E10000008
#> 5243      England   E12000009               South West   E10000008
#> 5244      England   E12000009               South West   E10000013
#> 5245      England   E12000009               South West   E10000013
#> 5246      England   E12000009               South West   E10000013
#> 5247      England        <NA>                     <NA>        <NA>
#> 5248      England        <NA>                     <NA>        <NA>
#> 5249      England        <NA>                     <NA>        <NA>
#> 5250      England        <NA>                     <NA>        <NA>
#> 5251      England   E12000001               North East        <NA>
#> 5252      England   E12000001               North East        <NA>
#> 5253      England   E12000001               North East        <NA>
#> 5254      England   E12000001               North East        <NA>
#> 5255      England   E12000001               North East   E06000001
#> 5256      England   E12000001               North East   E06000001
#> 5257      England   E12000001               North East   E06000001
#> 5258      England   E12000001               North East   E06000002
#> 5259      England   E12000001               North East   E06000002
#> 5260      England   E12000001               North East   E06000002
#> 5261      England   E12000001               North East   E06000003
#> 5262      England   E12000001               North East   E06000003
#> 5263      England   E12000001               North East   E06000003
#> 5264      England   E12000001               North East   E06000004
#> 5265      England   E12000001               North East   E06000004
#> 5266      England   E12000001               North East   E06000004
#> 5267      England   E12000001               North East   E06000005
#> 5268      England   E12000001               North East   E06000005
#> 5269      England   E12000001               North East   E06000005
#> 5270      England   E12000001               North East   E06000047
#> 5271      England   E12000001               North East   E06000047
#> 5272      England   E12000001               North East   E06000047
#> 5273      England   E12000001               North East   E06000057
#> 5274      England   E12000001               North East   E06000057
#> 5275      England   E12000001               North East   E06000057
#> 5276      England   E12000001               North East   E08000021
#> 5277      England   E12000001               North East   E08000021
#> 5278      England   E12000001               North East   E08000021
#> 5279      England   E12000001               North East   E08000022
#> 5280      England   E12000001               North East   E08000022
#> 5281      England   E12000001               North East   E08000022
#> 5282      England   E12000001               North East   E08000023
#> 5283      England   E12000001               North East   E08000023
#> 5284      England   E12000001               North East   E08000023
#> 5285      England   E12000001               North East   E08000024
#> 5286      England   E12000001               North East   E08000024
#> 5287      England   E12000001               North East   E08000024
#> 5288      England   E12000001               North East   E08000037
#> 5289      England   E12000001               North East   E08000037
#> 5290      England   E12000001               North East   E08000037
#> 5291      England   E12000002               North West        <NA>
#> 5292      England   E12000002               North West        <NA>
#> 5293      England   E12000002               North West        <NA>
#> 5294      England   E12000002               North West        <NA>
#> 5295      England   E12000002               North West   E06000006
#> 5296      England   E12000002               North West   E06000006
#> 5297      England   E12000002               North West   E06000006
#> 5298      England   E12000002               North West   E06000007
#> 5299      England   E12000002               North West   E06000007
#> 5300      England   E12000002               North West   E06000007
#> 5301      England   E12000002               North West   E06000008
#> 5302      England   E12000002               North West   E06000008
#> 5303      England   E12000002               North West   E06000008
#> 5304      England   E12000002               North West   E06000009
#> 5305      England   E12000002               North West   E06000009
#> 5306      England   E12000002               North West   E06000009
#> 5307      England   E12000002               North West   E06000049
#> 5308      England   E12000002               North West   E06000049
#> 5309      England   E12000002               North West   E06000049
#> 5310      England   E12000002               North West   E06000050
#> 5311      England   E12000002               North West   E06000050
#> 5312      England   E12000002               North West   E06000050
#> 5313      England   E12000002               North West   E06000063
#> 5314      England   E12000002               North West   E06000063
#> 5315      England   E12000002               North West   E06000063
#> 5316      England   E12000002               North West   E06000064
#> 5317      England   E12000002               North West   E06000064
#> 5318      England   E12000002               North West   E06000064
#> 5319      England   E12000002               North West   E08000001
#> 5320      England   E12000002               North West   E08000001
#> 5321      England   E12000002               North West   E08000001
#> 5322      England   E12000002               North West   E08000002
#> 5323      England   E12000002               North West   E08000002
#> 5324      England   E12000002               North West   E08000002
#> 5325      England   E12000002               North West   E08000003
#> 5326      England   E12000002               North West   E08000003
#> 5327      England   E12000002               North West   E08000003
#> 5328      England   E12000002               North West   E08000004
#> 5329      England   E12000002               North West   E08000004
#> 5330      England   E12000002               North West   E08000004
#> 5331      England   E12000002               North West   E08000005
#> 5332      England   E12000002               North West   E08000005
#> 5333      England   E12000002               North West   E08000005
#> 5334      England   E12000002               North West   E08000006
#> 5335      England   E12000002               North West   E08000006
#> 5336      England   E12000002               North West   E08000006
#> 5337      England   E12000002               North West   E08000007
#> 5338      England   E12000002               North West   E08000007
#> 5339      England   E12000002               North West   E08000007
#> 5340      England   E12000002               North West   E08000008
#> 5341      England   E12000002               North West   E08000008
#> 5342      England   E12000002               North West   E08000008
#> 5343      England   E12000002               North West   E08000009
#> 5344      England   E12000002               North West   E08000009
#> 5345      England   E12000002               North West   E08000009
#> 5346      England   E12000002               North West   E08000010
#> 5347      England   E12000002               North West   E08000010
#> 5348      England   E12000002               North West   E08000010
#> 5349      England   E12000002               North West   E08000011
#> 5350      England   E12000002               North West   E08000011
#> 5351      England   E12000002               North West   E08000011
#> 5352      England   E12000002               North West   E08000012
#> 5353      England   E12000002               North West   E08000012
#> 5354      England   E12000002               North West   E08000012
#> 5355      England   E12000002               North West   E08000013
#> 5356      England   E12000002               North West   E08000013
#> 5357      England   E12000002               North West   E08000013
#> 5358      England   E12000002               North West   E08000014
#> 5359      England   E12000002               North West   E08000014
#> 5360      England   E12000002               North West   E08000014
#> 5361      England   E12000002               North West   E08000015
#> 5362      England   E12000002               North West   E08000015
#> 5363      England   E12000002               North West   E08000015
#> 5364      England   E12000002               North West   E10000017
#> 5365      England   E12000002               North West   E10000017
#> 5366      England   E12000002               North West   E10000017
#> 5367      England   E12000003 Yorkshire and The Humber        <NA>
#> 5368      England   E12000003 Yorkshire and The Humber        <NA>
#> 5369      England   E12000003 Yorkshire and The Humber        <NA>
#> 5370      England   E12000003 Yorkshire and The Humber        <NA>
#> 5371      England   E12000003 Yorkshire and The Humber   E06000010
#> 5372      England   E12000003 Yorkshire and The Humber   E06000010
#> 5373      England   E12000003 Yorkshire and The Humber   E06000010
#> 5374      England   E12000003 Yorkshire and The Humber   E06000011
#> 5375      England   E12000003 Yorkshire and The Humber   E06000011
#> 5376      England   E12000003 Yorkshire and The Humber   E06000011
#> 5377      England   E12000003 Yorkshire and The Humber   E06000012
#> 5378      England   E12000003 Yorkshire and The Humber   E06000012
#> 5379      England   E12000003 Yorkshire and The Humber   E06000012
#> 5380      England   E12000003 Yorkshire and The Humber   E06000013
#> 5381      England   E12000003 Yorkshire and The Humber   E06000013
#> 5382      England   E12000003 Yorkshire and The Humber   E06000013
#> 5383      England   E12000003 Yorkshire and The Humber   E06000014
#> 5384      England   E12000003 Yorkshire and The Humber   E06000014
#> 5385      England   E12000003 Yorkshire and The Humber   E06000014
#> 5386      England   E12000003 Yorkshire and The Humber   E06000065
#> 5387      England   E12000003 Yorkshire and The Humber   E06000065
#> 5388      England   E12000003 Yorkshire and The Humber   E06000065
#> 5389      England   E12000003 Yorkshire and The Humber   E08000016
#> 5390      England   E12000003 Yorkshire and The Humber   E08000016
#> 5391      England   E12000003 Yorkshire and The Humber   E08000016
#> 5392      England   E12000003 Yorkshire and The Humber   E08000017
#> 5393      England   E12000003 Yorkshire and The Humber   E08000017
#> 5394      England   E12000003 Yorkshire and The Humber   E08000017
#> 5395      England   E12000003 Yorkshire and The Humber   E08000018
#> 5396      England   E12000003 Yorkshire and The Humber   E08000018
#> 5397      England   E12000003 Yorkshire and The Humber   E08000018
#> 5398      England   E12000003 Yorkshire and The Humber   E08000019
#> 5399      England   E12000003 Yorkshire and The Humber   E08000019
#> 5400      England   E12000003 Yorkshire and The Humber   E08000019
#> 5401      England   E12000003 Yorkshire and The Humber   E08000032
#> 5402      England   E12000003 Yorkshire and The Humber   E08000032
#> 5403      England   E12000003 Yorkshire and The Humber   E08000032
#> 5404      England   E12000003 Yorkshire and The Humber   E08000033
#> 5405      England   E12000003 Yorkshire and The Humber   E08000033
#> 5406      England   E12000003 Yorkshire and The Humber   E08000033
#> 5407      England   E12000003 Yorkshire and The Humber   E08000034
#> 5408      England   E12000003 Yorkshire and The Humber   E08000034
#> 5409      England   E12000003 Yorkshire and The Humber   E08000034
#> 5410      England   E12000003 Yorkshire and The Humber   E08000035
#> 5411      England   E12000003 Yorkshire and The Humber   E08000035
#> 5412      England   E12000003 Yorkshire and The Humber   E08000035
#> 5413      England   E12000003 Yorkshire and The Humber   E08000036
#> 5414      England   E12000003 Yorkshire and The Humber   E08000036
#> 5415      England   E12000003 Yorkshire and The Humber   E08000036
#> 5416      England   E12000004            East Midlands        <NA>
#> 5417      England   E12000004            East Midlands        <NA>
#> 5418      England   E12000004            East Midlands        <NA>
#> 5419      England   E12000004            East Midlands        <NA>
#> 5420      England   E12000004            East Midlands   E06000015
#> 5421      England   E12000004            East Midlands   E06000015
#> 5422      England   E12000004            East Midlands   E06000015
#> 5423      England   E12000004            East Midlands   E06000016
#> 5424      England   E12000004            East Midlands   E06000016
#> 5425      England   E12000004            East Midlands   E06000016
#> 5426      England   E12000004            East Midlands   E06000017
#> 5427      England   E12000004            East Midlands   E06000017
#> 5428      England   E12000004            East Midlands   E06000018
#> 5429      England   E12000004            East Midlands   E06000018
#> 5430      England   E12000004            East Midlands   E06000018
#> 5431      England   E12000004            East Midlands   E06000061
#> 5432      England   E12000004            East Midlands   E06000061
#> 5433      England   E12000004            East Midlands   E06000061
#> 5434      England   E12000004            East Midlands   E06000062
#> 5435      England   E12000004            East Midlands   E06000062
#> 5436      England   E12000004            East Midlands   E06000062
#> 5437      England   E12000004            East Midlands   E10000007
#> 5438      England   E12000004            East Midlands   E10000007
#> 5439      England   E12000004            East Midlands   E10000007
#> 5440      England   E12000004            East Midlands   E10000018
#> 5441      England   E12000004            East Midlands   E10000018
#> 5442      England   E12000004            East Midlands   E10000018
#> 5443      England   E12000004            East Midlands   E10000019
#> 5444      England   E12000004            East Midlands   E10000019
#> 5445      England   E12000004            East Midlands   E10000019
#> 5446      England   E12000004            East Midlands   E10000024
#> 5447      England   E12000004            East Midlands   E10000024
#> 5448      England   E12000004            East Midlands   E10000024
#> 5449      England   E12000005            West Midlands        <NA>
#> 5450      England   E12000005            West Midlands        <NA>
#> 5451      England   E12000005            West Midlands        <NA>
#> 5452      England   E12000005            West Midlands        <NA>
#> 5453      England   E12000005            West Midlands   E06000019
#> 5454      England   E12000005            West Midlands   E06000019
#> 5455      England   E12000005            West Midlands   E06000019
#> 5456      England   E12000005            West Midlands   E06000020
#> 5457      England   E12000005            West Midlands   E06000020
#> 5458      England   E12000005            West Midlands   E06000020
#> 5459      England   E12000005            West Midlands   E06000021
#> 5460      England   E12000005            West Midlands   E06000021
#> 5461      England   E12000005            West Midlands   E06000021
#> 5462      England   E12000005            West Midlands   E06000051
#> 5463      England   E12000005            West Midlands   E06000051
#> 5464      England   E12000005            West Midlands   E06000051
#> 5465      England   E12000005            West Midlands   E08000025
#> 5466      England   E12000005            West Midlands   E08000025
#> 5467      England   E12000005            West Midlands   E08000025
#> 5468      England   E12000005            West Midlands   E08000026
#> 5469      England   E12000005            West Midlands   E08000026
#> 5470      England   E12000005            West Midlands   E08000026
#> 5471      England   E12000005            West Midlands   E08000027
#> 5472      England   E12000005            West Midlands   E08000027
#> 5473      England   E12000005            West Midlands   E08000027
#> 5474      England   E12000005            West Midlands   E08000028
#> 5475      England   E12000005            West Midlands   E08000028
#> 5476      England   E12000005            West Midlands   E08000028
#> 5477      England   E12000005            West Midlands   E08000029
#> 5478      England   E12000005            West Midlands   E08000029
#> 5479      England   E12000005            West Midlands   E08000029
#> 5480      England   E12000005            West Midlands   E08000030
#> 5481      England   E12000005            West Midlands   E08000030
#> 5482      England   E12000005            West Midlands   E08000030
#> 5483      England   E12000005            West Midlands   E08000031
#> 5484      England   E12000005            West Midlands   E08000031
#> 5485      England   E12000005            West Midlands   E08000031
#> 5486      England   E12000005            West Midlands   E10000028
#> 5487      England   E12000005            West Midlands   E10000028
#> 5488      England   E12000005            West Midlands   E10000028
#> 5489      England   E12000005            West Midlands   E10000031
#> 5490      England   E12000005            West Midlands   E10000031
#> 5491      England   E12000005            West Midlands   E10000031
#> 5492      England   E12000005            West Midlands   E10000034
#> 5493      England   E12000005            West Midlands   E10000034
#> 5494      England   E12000005            West Midlands   E10000034
#> 5495      England   E12000006          East of England        <NA>
#> 5496      England   E12000006          East of England        <NA>
#> 5497      England   E12000006          East of England        <NA>
#> 5498      England   E12000006          East of England        <NA>
#> 5499      England   E12000006          East of England   E06000031
#> 5500      England   E12000006          East of England   E06000031
#> 5501      England   E12000006          East of England   E06000031
#> 5502      England   E12000006          East of England   E06000032
#> 5503      England   E12000006          East of England   E06000032
#> 5504      England   E12000006          East of England   E06000032
#> 5505      England   E12000006          East of England   E06000033
#> 5506      England   E12000006          East of England   E06000033
#> 5507      England   E12000006          East of England   E06000033
#> 5508      England   E12000006          East of England   E06000034
#> 5509      England   E12000006          East of England   E06000034
#> 5510      England   E12000006          East of England   E06000034
#> 5511      England   E12000006          East of England   E06000055
#> 5512      England   E12000006          East of England   E06000055
#> 5513      England   E12000006          East of England   E06000055
#> 5514      England   E12000006          East of England   E06000056
#> 5515      England   E12000006          East of England   E06000056
#> 5516      England   E12000006          East of England   E06000056
#> 5517      England   E12000006          East of England   E10000003
#> 5518      England   E12000006          East of England   E10000003
#> 5519      England   E12000006          East of England   E10000003
#> 5520      England   E12000006          East of England   E10000012
#> 5521      England   E12000006          East of England   E10000012
#> 5522      England   E12000006          East of England   E10000012
#> 5523      England   E12000006          East of England   E10000015
#> 5524      England   E12000006          East of England   E10000015
#> 5525      England   E12000006          East of England   E10000015
#> 5526      England   E12000006          East of England   E10000020
#> 5527      England   E12000006          East of England   E10000020
#> 5528      England   E12000006          East of England   E10000020
#> 5529      England   E12000006          East of England   E10000029
#> 5530      England   E12000006          East of England   E10000029
#> 5531      England   E12000006          East of England   E10000029
#> 5532      England   E12000007                   London        <NA>
#> 5533      England   E12000007                   London        <NA>
#> 5534      England   E12000007                   London        <NA>
#> 5535      England   E12000007                   London        <NA>
#> 5536      England   E12000007                   London   E09000001
#> 5537      England   E12000007                   London   E09000002
#> 5538      England   E12000007                   London   E09000002
#> 5539      England   E12000007                   London   E09000002
#> 5540      England   E12000007                   London   E09000003
#> 5541      England   E12000007                   London   E09000003
#> 5542      England   E12000007                   London   E09000003
#> 5543      England   E12000007                   London   E09000004
#> 5544      England   E12000007                   London   E09000004
#> 5545      England   E12000007                   London   E09000004
#> 5546      England   E12000007                   London   E09000005
#> 5547      England   E12000007                   London   E09000005
#> 5548      England   E12000007                   London   E09000005
#> 5549      England   E12000007                   London   E09000006
#> 5550      England   E12000007                   London   E09000006
#> 5551      England   E12000007                   London   E09000006
#> 5552      England   E12000007                   London   E09000007
#> 5553      England   E12000007                   London   E09000007
#> 5554      England   E12000007                   London   E09000007
#> 5555      England   E12000007                   London   E09000008
#> 5556      England   E12000007                   London   E09000008
#> 5557      England   E12000007                   London   E09000008
#> 5558      England   E12000007                   London   E09000009
#> 5559      England   E12000007                   London   E09000009
#> 5560      England   E12000007                   London   E09000009
#> 5561      England   E12000007                   London   E09000010
#> 5562      England   E12000007                   London   E09000010
#> 5563      England   E12000007                   London   E09000010
#> 5564      England   E12000007                   London   E09000011
#> 5565      England   E12000007                   London   E09000011
#> 5566      England   E12000007                   London   E09000011
#> 5567      England   E12000007                   London   E09000012
#> 5568      England   E12000007                   London   E09000012
#> 5569      England   E12000007                   London   E09000012
#> 5570      England   E12000007                   London   E09000013
#> 5571      England   E12000007                   London   E09000013
#> 5572      England   E12000007                   London   E09000013
#> 5573      England   E12000007                   London   E09000014
#> 5574      England   E12000007                   London   E09000014
#> 5575      England   E12000007                   London   E09000014
#> 5576      England   E12000007                   London   E09000015
#> 5577      England   E12000007                   London   E09000015
#> 5578      England   E12000007                   London   E09000015
#> 5579      England   E12000007                   London   E09000016
#> 5580      England   E12000007                   London   E09000016
#> 5581      England   E12000007                   London   E09000016
#> 5582      England   E12000007                   London   E09000017
#> 5583      England   E12000007                   London   E09000017
#> 5584      England   E12000007                   London   E09000017
#> 5585      England   E12000007                   London   E09000018
#> 5586      England   E12000007                   London   E09000018
#> 5587      England   E12000007                   London   E09000018
#> 5588      England   E12000007                   London   E09000019
#> 5589      England   E12000007                   London   E09000019
#> 5590      England   E12000007                   London   E09000019
#> 5591      England   E12000007                   London   E09000020
#> 5592      England   E12000007                   London   E09000020
#> 5593      England   E12000007                   London   E09000020
#> 5594      England   E12000007                   London   E09000021
#> 5595      England   E12000007                   London   E09000021
#> 5596      England   E12000007                   London   E09000021
#> 5597      England   E12000007                   London   E09000022
#> 5598      England   E12000007                   London   E09000022
#> 5599      England   E12000007                   London   E09000022
#> 5600      England   E12000007                   London   E09000023
#> 5601      England   E12000007                   London   E09000023
#> 5602      England   E12000007                   London   E09000023
#> 5603      England   E12000007                   London   E09000024
#> 5604      England   E12000007                   London   E09000024
#> 5605      England   E12000007                   London   E09000024
#> 5606      England   E12000007                   London   E09000025
#> 5607      England   E12000007                   London   E09000025
#> 5608      England   E12000007                   London   E09000025
#> 5609      England   E12000007                   London   E09000026
#> 5610      England   E12000007                   London   E09000026
#> 5611      England   E12000007                   London   E09000026
#> 5612      England   E12000007                   London   E09000027
#> 5613      England   E12000007                   London   E09000027
#> 5614      England   E12000007                   London   E09000027
#> 5615      England   E12000007                   London   E09000028
#> 5616      England   E12000007                   London   E09000028
#> 5617      England   E12000007                   London   E09000028
#> 5618      England   E12000007                   London   E09000029
#> 5619      England   E12000007                   London   E09000029
#> 5620      England   E12000007                   London   E09000029
#> 5621      England   E12000007                   London   E09000030
#> 5622      England   E12000007                   London   E09000030
#> 5623      England   E12000007                   London   E09000030
#> 5624      England   E12000007                   London   E09000031
#> 5625      England   E12000007                   London   E09000031
#> 5626      England   E12000007                   London   E09000031
#> 5627      England   E12000007                   London   E09000032
#> 5628      England   E12000007                   London   E09000032
#> 5629      England   E12000007                   London   E09000032
#> 5630      England   E12000007                   London   E09000033
#> 5631      England   E12000007                   London   E09000033
#> 5632      England   E12000007                   London   E09000033
#> 5633      England   E12000008               South East        <NA>
#> 5634      England   E12000008               South East        <NA>
#> 5635      England   E12000008               South East        <NA>
#> 5636      England   E12000008               South East        <NA>
#> 5637      England   E12000008               South East   E06000035
#> 5638      England   E12000008               South East   E06000035
#> 5639      England   E12000008               South East   E06000035
#> 5640      England   E12000008               South East   E06000036
#> 5641      England   E12000008               South East   E06000036
#> 5642      England   E12000008               South East   E06000036
#> 5643      England   E12000008               South East   E06000037
#> 5644      England   E12000008               South East   E06000037
#> 5645      England   E12000008               South East   E06000037
#> 5646      England   E12000008               South East   E06000038
#> 5647      England   E12000008               South East   E06000038
#> 5648      England   E12000008               South East   E06000038
#> 5649      England   E12000008               South East   E06000039
#> 5650      England   E12000008               South East   E06000039
#> 5651      England   E12000008               South East   E06000039
#> 5652      England   E12000008               South East   E06000040
#> 5653      England   E12000008               South East   E06000040
#> 5654      England   E12000008               South East   E06000040
#> 5655      England   E12000008               South East   E06000041
#> 5656      England   E12000008               South East   E06000041
#> 5657      England   E12000008               South East   E06000041
#> 5658      England   E12000008               South East   E06000042
#> 5659      England   E12000008               South East   E06000042
#> 5660      England   E12000008               South East   E06000042
#> 5661      England   E12000008               South East   E06000043
#> 5662      England   E12000008               South East   E06000043
#> 5663      England   E12000008               South East   E06000043
#> 5664      England   E12000008               South East   E06000044
#> 5665      England   E12000008               South East   E06000044
#> 5666      England   E12000008               South East   E06000044
#> 5667      England   E12000008               South East   E06000045
#> 5668      England   E12000008               South East   E06000045
#> 5669      England   E12000008               South East   E06000045
#> 5670      England   E12000008               South East   E06000046
#> 5671      England   E12000008               South East   E06000046
#> 5672      England   E12000008               South East   E06000046
#> 5673      England   E12000008               South East   E06000060
#> 5674      England   E12000008               South East   E06000060
#> 5675      England   E12000008               South East   E06000060
#> 5676      England   E12000008               South East   E10000011
#> 5677      England   E12000008               South East   E10000011
#> 5678      England   E12000008               South East   E10000011
#> 5679      England   E12000008               South East   E10000014
#> 5680      England   E12000008               South East   E10000014
#> 5681      England   E12000008               South East   E10000014
#> 5682      England   E12000008               South East   E10000016
#> 5683      England   E12000008               South East   E10000016
#> 5684      England   E12000008               South East   E10000016
#> 5685      England   E12000008               South East   E10000025
#> 5686      England   E12000008               South East   E10000025
#> 5687      England   E12000008               South East   E10000025
#> 5688      England   E12000008               South East   E10000030
#> 5689      England   E12000008               South East   E10000030
#> 5690      England   E12000008               South East   E10000030
#> 5691      England   E12000008               South East   E10000032
#> 5692      England   E12000008               South East   E10000032
#> 5693      England   E12000008               South East   E10000032
#> 5694      England   E12000009               South West        <NA>
#> 5695      England   E12000009               South West        <NA>
#> 5696      England   E12000009               South West        <NA>
#> 5697      England   E12000009               South West        <NA>
#> 5698      England   E12000009               South West   E06000022
#> 5699      England   E12000009               South West   E06000022
#> 5700      England   E12000009               South West   E06000022
#> 5701      England   E12000009               South West   E06000023
#> 5702      England   E12000009               South West   E06000023
#> 5703      England   E12000009               South West   E06000023
#> 5704      England   E12000009               South West   E06000024
#> 5705      England   E12000009               South West   E06000024
#> 5706      England   E12000009               South West   E06000024
#> 5707      England   E12000009               South West   E06000025
#> 5708      England   E12000009               South West   E06000025
#> 5709      England   E12000009               South West   E06000025
#> 5710      England   E12000009               South West   E06000026
#> 5711      England   E12000009               South West   E06000026
#> 5712      England   E12000009               South West   E06000026
#> 5713      England   E12000009               South West   E06000027
#> 5714      England   E12000009               South West   E06000027
#> 5715      England   E12000009               South West   E06000027
#> 5716      England   E12000009               South West   E06000030
#> 5717      England   E12000009               South West   E06000030
#> 5718      England   E12000009               South West   E06000030
#> 5719      England   E12000009               South West   E06000052
#> 5720      England   E12000009               South West   E06000052
#> 5721      England   E12000009               South West   E06000052
#> 5722      England   E12000009               South West   E06000053
#> 5723      England   E12000009               South West   E06000054
#> 5724      England   E12000009               South West   E06000054
#> 5725      England   E12000009               South West   E06000054
#> 5726      England   E12000009               South West   E06000058
#> 5727      England   E12000009               South West   E06000058
#> 5728      England   E12000009               South West   E06000058
#> 5729      England   E12000009               South West   E06000059
#> 5730      England   E12000009               South West   E06000059
#> 5731      England   E12000009               South West   E06000059
#> 5732      England   E12000009               South West   E06000066
#> 5733      England   E12000009               South West   E06000066
#> 5734      England   E12000009               South West   E06000066
#> 5735      England   E12000009               South West   E10000008
#> 5736      England   E12000009               South West   E10000008
#> 5737      England   E12000009               South West   E10000008
#> 5738      England   E12000009               South West   E10000013
#> 5739      England   E12000009               South West   E10000013
#> 5740      England   E12000009               South West   E10000013
#> 5741      England        <NA>                     <NA>        <NA>
#> 5742      England        <NA>                     <NA>        <NA>
#> 5743      England        <NA>                     <NA>        <NA>
#> 5744      England        <NA>                     <NA>        <NA>
#> 5745      England   E12000001               North East        <NA>
#> 5746      England   E12000001               North East        <NA>
#> 5747      England   E12000001               North East        <NA>
#> 5748      England   E12000001               North East        <NA>
#> 5749      England   E12000001               North East   E06000001
#> 5750      England   E12000001               North East   E06000001
#> 5751      England   E12000001               North East   E06000001
#> 5752      England   E12000001               North East   E06000002
#> 5753      England   E12000001               North East   E06000002
#> 5754      England   E12000001               North East   E06000002
#> 5755      England   E12000001               North East   E06000003
#> 5756      England   E12000001               North East   E06000003
#> 5757      England   E12000001               North East   E06000003
#> 5758      England   E12000001               North East   E06000004
#> 5759      England   E12000001               North East   E06000004
#> 5760      England   E12000001               North East   E06000004
#> 5761      England   E12000001               North East   E06000005
#> 5762      England   E12000001               North East   E06000005
#> 5763      England   E12000001               North East   E06000005
#> 5764      England   E12000001               North East   E06000047
#> 5765      England   E12000001               North East   E06000047
#> 5766      England   E12000001               North East   E06000047
#> 5767      England   E12000001               North East   E06000057
#> 5768      England   E12000001               North East   E06000057
#> 5769      England   E12000001               North East   E06000057
#> 5770      England   E12000001               North East   E08000021
#> 5771      England   E12000001               North East   E08000021
#> 5772      England   E12000001               North East   E08000021
#> 5773      England   E12000001               North East   E08000022
#> 5774      England   E12000001               North East   E08000022
#> 5775      England   E12000001               North East   E08000022
#> 5776      England   E12000001               North East   E08000023
#> 5777      England   E12000001               North East   E08000023
#> 5778      England   E12000001               North East   E08000023
#> 5779      England   E12000001               North East   E08000024
#> 5780      England   E12000001               North East   E08000024
#> 5781      England   E12000001               North East   E08000024
#> 5782      England   E12000001               North East   E08000037
#> 5783      England   E12000001               North East   E08000037
#> 5784      England   E12000001               North East   E08000037
#> 5785      England   E12000002               North West        <NA>
#> 5786      England   E12000002               North West        <NA>
#> 5787      England   E12000002               North West        <NA>
#> 5788      England   E12000002               North West        <NA>
#> 5789      England   E12000002               North West   E06000006
#> 5790      England   E12000002               North West   E06000006
#> 5791      England   E12000002               North West   E06000006
#> 5792      England   E12000002               North West   E06000007
#> 5793      England   E12000002               North West   E06000007
#> 5794      England   E12000002               North West   E06000007
#> 5795      England   E12000002               North West   E06000008
#> 5796      England   E12000002               North West   E06000008
#> 5797      England   E12000002               North West   E06000008
#> 5798      England   E12000002               North West   E06000009
#> 5799      England   E12000002               North West   E06000009
#> 5800      England   E12000002               North West   E06000009
#> 5801      England   E12000002               North West   E06000049
#> 5802      England   E12000002               North West   E06000049
#> 5803      England   E12000002               North West   E06000049
#> 5804      England   E12000002               North West   E06000050
#> 5805      England   E12000002               North West   E06000050
#> 5806      England   E12000002               North West   E06000050
#> 5807      England   E12000002               North West   E06000063
#> 5808      England   E12000002               North West   E06000063
#> 5809      England   E12000002               North West   E06000063
#> 5810      England   E12000002               North West   E06000064
#> 5811      England   E12000002               North West   E06000064
#> 5812      England   E12000002               North West   E06000064
#> 5813      England   E12000002               North West   E08000001
#> 5814      England   E12000002               North West   E08000001
#> 5815      England   E12000002               North West   E08000001
#> 5816      England   E12000002               North West   E08000002
#> 5817      England   E12000002               North West   E08000002
#> 5818      England   E12000002               North West   E08000002
#> 5819      England   E12000002               North West   E08000003
#> 5820      England   E12000002               North West   E08000003
#> 5821      England   E12000002               North West   E08000003
#> 5822      England   E12000002               North West   E08000004
#> 5823      England   E12000002               North West   E08000004
#> 5824      England   E12000002               North West   E08000004
#> 5825      England   E12000002               North West   E08000005
#> 5826      England   E12000002               North West   E08000005
#> 5827      England   E12000002               North West   E08000005
#> 5828      England   E12000002               North West   E08000006
#> 5829      England   E12000002               North West   E08000006
#> 5830      England   E12000002               North West   E08000006
#> 5831      England   E12000002               North West   E08000007
#> 5832      England   E12000002               North West   E08000007
#> 5833      England   E12000002               North West   E08000007
#> 5834      England   E12000002               North West   E08000008
#> 5835      England   E12000002               North West   E08000008
#> 5836      England   E12000002               North West   E08000008
#> 5837      England   E12000002               North West   E08000009
#> 5838      England   E12000002               North West   E08000009
#> 5839      England   E12000002               North West   E08000009
#> 5840      England   E12000002               North West   E08000010
#> 5841      England   E12000002               North West   E08000010
#> 5842      England   E12000002               North West   E08000010
#> 5843      England   E12000002               North West   E08000011
#> 5844      England   E12000002               North West   E08000011
#> 5845      England   E12000002               North West   E08000011
#> 5846      England   E12000002               North West   E08000012
#> 5847      England   E12000002               North West   E08000012
#> 5848      England   E12000002               North West   E08000012
#> 5849      England   E12000002               North West   E08000013
#> 5850      England   E12000002               North West   E08000013
#> 5851      England   E12000002               North West   E08000013
#> 5852      England   E12000002               North West   E08000014
#> 5853      England   E12000002               North West   E08000014
#> 5854      England   E12000002               North West   E08000014
#> 5855      England   E12000002               North West   E08000015
#> 5856      England   E12000002               North West   E08000015
#> 5857      England   E12000002               North West   E08000015
#> 5858      England   E12000002               North West   E10000017
#> 5859      England   E12000002               North West   E10000017
#> 5860      England   E12000002               North West   E10000017
#> 5861      England   E12000003 Yorkshire and The Humber        <NA>
#> 5862      England   E12000003 Yorkshire and The Humber        <NA>
#> 5863      England   E12000003 Yorkshire and The Humber        <NA>
#> 5864      England   E12000003 Yorkshire and The Humber        <NA>
#> 5865      England   E12000003 Yorkshire and The Humber   E06000010
#> 5866      England   E12000003 Yorkshire and The Humber   E06000010
#> 5867      England   E12000003 Yorkshire and The Humber   E06000010
#> 5868      England   E12000003 Yorkshire and The Humber   E06000011
#> 5869      England   E12000003 Yorkshire and The Humber   E06000011
#> 5870      England   E12000003 Yorkshire and The Humber   E06000011
#> 5871      England   E12000003 Yorkshire and The Humber   E06000012
#> 5872      England   E12000003 Yorkshire and The Humber   E06000012
#> 5873      England   E12000003 Yorkshire and The Humber   E06000012
#> 5874      England   E12000003 Yorkshire and The Humber   E06000013
#> 5875      England   E12000003 Yorkshire and The Humber   E06000013
#> 5876      England   E12000003 Yorkshire and The Humber   E06000013
#> 5877      England   E12000003 Yorkshire and The Humber   E06000014
#> 5878      England   E12000003 Yorkshire and The Humber   E06000014
#> 5879      England   E12000003 Yorkshire and The Humber   E06000014
#> 5880      England   E12000003 Yorkshire and The Humber   E06000065
#> 5881      England   E12000003 Yorkshire and The Humber   E06000065
#> 5882      England   E12000003 Yorkshire and The Humber   E06000065
#> 5883      England   E12000003 Yorkshire and The Humber   E08000016
#> 5884      England   E12000003 Yorkshire and The Humber   E08000016
#> 5885      England   E12000003 Yorkshire and The Humber   E08000016
#> 5886      England   E12000003 Yorkshire and The Humber   E08000017
#> 5887      England   E12000003 Yorkshire and The Humber   E08000017
#> 5888      England   E12000003 Yorkshire and The Humber   E08000017
#> 5889      England   E12000003 Yorkshire and The Humber   E08000018
#> 5890      England   E12000003 Yorkshire and The Humber   E08000018
#> 5891      England   E12000003 Yorkshire and The Humber   E08000018
#> 5892      England   E12000003 Yorkshire and The Humber   E08000019
#> 5893      England   E12000003 Yorkshire and The Humber   E08000019
#> 5894      England   E12000003 Yorkshire and The Humber   E08000019
#> 5895      England   E12000003 Yorkshire and The Humber   E08000032
#> 5896      England   E12000003 Yorkshire and The Humber   E08000032
#> 5897      England   E12000003 Yorkshire and The Humber   E08000032
#> 5898      England   E12000003 Yorkshire and The Humber   E08000033
#> 5899      England   E12000003 Yorkshire and The Humber   E08000033
#> 5900      England   E12000003 Yorkshire and The Humber   E08000033
#> 5901      England   E12000003 Yorkshire and The Humber   E08000034
#> 5902      England   E12000003 Yorkshire and The Humber   E08000034
#> 5903      England   E12000003 Yorkshire and The Humber   E08000034
#> 5904      England   E12000003 Yorkshire and The Humber   E08000035
#> 5905      England   E12000003 Yorkshire and The Humber   E08000035
#> 5906      England   E12000003 Yorkshire and The Humber   E08000035
#> 5907      England   E12000003 Yorkshire and The Humber   E08000036
#> 5908      England   E12000003 Yorkshire and The Humber   E08000036
#> 5909      England   E12000003 Yorkshire and The Humber   E08000036
#> 5910      England   E12000004            East Midlands        <NA>
#> 5911      England   E12000004            East Midlands        <NA>
#> 5912      England   E12000004            East Midlands        <NA>
#> 5913      England   E12000004            East Midlands        <NA>
#> 5914      England   E12000004            East Midlands   E06000015
#> 5915      England   E12000004            East Midlands   E06000015
#> 5916      England   E12000004            East Midlands   E06000015
#> 5917      England   E12000004            East Midlands   E06000016
#> 5918      England   E12000004            East Midlands   E06000016
#> 5919      England   E12000004            East Midlands   E06000016
#> 5920      England   E12000004            East Midlands   E06000017
#> 5921      England   E12000004            East Midlands   E06000017
#> 5922      England   E12000004            East Midlands   E06000018
#> 5923      England   E12000004            East Midlands   E06000018
#> 5924      England   E12000004            East Midlands   E06000018
#> 5925      England   E12000004            East Midlands   E06000061
#> 5926      England   E12000004            East Midlands   E06000061
#> 5927      England   E12000004            East Midlands   E06000061
#> 5928      England   E12000004            East Midlands   E06000062
#> 5929      England   E12000004            East Midlands   E06000062
#> 5930      England   E12000004            East Midlands   E06000062
#> 5931      England   E12000004            East Midlands   E10000007
#> 5932      England   E12000004            East Midlands   E10000007
#> 5933      England   E12000004            East Midlands   E10000007
#> 5934      England   E12000004            East Midlands   E10000018
#> 5935      England   E12000004            East Midlands   E10000018
#> 5936      England   E12000004            East Midlands   E10000018
#> 5937      England   E12000004            East Midlands   E10000019
#> 5938      England   E12000004            East Midlands   E10000019
#> 5939      England   E12000004            East Midlands   E10000019
#> 5940      England   E12000004            East Midlands   E10000024
#> 5941      England   E12000004            East Midlands   E10000024
#> 5942      England   E12000004            East Midlands   E10000024
#> 5943      England   E12000005            West Midlands        <NA>
#> 5944      England   E12000005            West Midlands        <NA>
#> 5945      England   E12000005            West Midlands        <NA>
#> 5946      England   E12000005            West Midlands        <NA>
#> 5947      England   E12000005            West Midlands   E06000019
#> 5948      England   E12000005            West Midlands   E06000019
#> 5949      England   E12000005            West Midlands   E06000019
#> 5950      England   E12000005            West Midlands   E06000020
#> 5951      England   E12000005            West Midlands   E06000020
#> 5952      England   E12000005            West Midlands   E06000020
#> 5953      England   E12000005            West Midlands   E06000021
#> 5954      England   E12000005            West Midlands   E06000021
#> 5955      England   E12000005            West Midlands   E06000021
#> 5956      England   E12000005            West Midlands   E06000051
#> 5957      England   E12000005            West Midlands   E06000051
#> 5958      England   E12000005            West Midlands   E06000051
#> 5959      England   E12000005            West Midlands   E08000025
#> 5960      England   E12000005            West Midlands   E08000025
#> 5961      England   E12000005            West Midlands   E08000025
#> 5962      England   E12000005            West Midlands   E08000026
#> 5963      England   E12000005            West Midlands   E08000026
#> 5964      England   E12000005            West Midlands   E08000026
#> 5965      England   E12000005            West Midlands   E08000027
#> 5966      England   E12000005            West Midlands   E08000027
#> 5967      England   E12000005            West Midlands   E08000027
#> 5968      England   E12000005            West Midlands   E08000028
#> 5969      England   E12000005            West Midlands   E08000028
#> 5970      England   E12000005            West Midlands   E08000028
#> 5971      England   E12000005            West Midlands   E08000029
#> 5972      England   E12000005            West Midlands   E08000029
#> 5973      England   E12000005            West Midlands   E08000029
#> 5974      England   E12000005            West Midlands   E08000030
#> 5975      England   E12000005            West Midlands   E08000030
#> 5976      England   E12000005            West Midlands   E08000030
#> 5977      England   E12000005            West Midlands   E08000031
#> 5978      England   E12000005            West Midlands   E08000031
#> 5979      England   E12000005            West Midlands   E08000031
#> 5980      England   E12000005            West Midlands   E10000028
#> 5981      England   E12000005            West Midlands   E10000028
#> 5982      England   E12000005            West Midlands   E10000028
#> 5983      England   E12000005            West Midlands   E10000031
#> 5984      England   E12000005            West Midlands   E10000031
#> 5985      England   E12000005            West Midlands   E10000031
#> 5986      England   E12000005            West Midlands   E10000034
#> 5987      England   E12000005            West Midlands   E10000034
#> 5988      England   E12000005            West Midlands   E10000034
#> 5989      England   E12000006          East of England        <NA>
#> 5990      England   E12000006          East of England        <NA>
#> 5991      England   E12000006          East of England        <NA>
#> 5992      England   E12000006          East of England        <NA>
#> 5993      England   E12000006          East of England   E06000031
#> 5994      England   E12000006          East of England   E06000031
#> 5995      England   E12000006          East of England   E06000031
#> 5996      England   E12000006          East of England   E06000032
#> 5997      England   E12000006          East of England   E06000032
#> 5998      England   E12000006          East of England   E06000032
#> 5999      England   E12000006          East of England   E06000033
#> 6000      England   E12000006          East of England   E06000033
#> 6001      England   E12000006          East of England   E06000033
#> 6002      England   E12000006          East of England   E06000034
#> 6003      England   E12000006          East of England   E06000034
#> 6004      England   E12000006          East of England   E06000034
#> 6005      England   E12000006          East of England   E06000055
#> 6006      England   E12000006          East of England   E06000055
#> 6007      England   E12000006          East of England   E06000055
#> 6008      England   E12000006          East of England   E06000056
#> 6009      England   E12000006          East of England   E06000056
#> 6010      England   E12000006          East of England   E06000056
#> 6011      England   E12000006          East of England   E10000003
#> 6012      England   E12000006          East of England   E10000003
#> 6013      England   E12000006          East of England   E10000003
#> 6014      England   E12000006          East of England   E10000012
#> 6015      England   E12000006          East of England   E10000012
#> 6016      England   E12000006          East of England   E10000012
#> 6017      England   E12000006          East of England   E10000015
#> 6018      England   E12000006          East of England   E10000015
#> 6019      England   E12000006          East of England   E10000015
#> 6020      England   E12000006          East of England   E10000020
#> 6021      England   E12000006          East of England   E10000020
#> 6022      England   E12000006          East of England   E10000020
#> 6023      England   E12000006          East of England   E10000029
#> 6024      England   E12000006          East of England   E10000029
#> 6025      England   E12000006          East of England   E10000029
#> 6026      England   E12000007                   London        <NA>
#> 6027      England   E12000007                   London        <NA>
#> 6028      England   E12000007                   London        <NA>
#> 6029      England   E12000007                   London        <NA>
#> 6030      England   E12000007                   London   E09000001
#> 6031      England   E12000007                   London   E09000002
#> 6032      England   E12000007                   London   E09000002
#> 6033      England   E12000007                   London   E09000002
#> 6034      England   E12000007                   London   E09000003
#> 6035      England   E12000007                   London   E09000003
#> 6036      England   E12000007                   London   E09000003
#> 6037      England   E12000007                   London   E09000004
#> 6038      England   E12000007                   London   E09000004
#> 6039      England   E12000007                   London   E09000004
#> 6040      England   E12000007                   London   E09000005
#> 6041      England   E12000007                   London   E09000005
#> 6042      England   E12000007                   London   E09000005
#> 6043      England   E12000007                   London   E09000006
#> 6044      England   E12000007                   London   E09000006
#> 6045      England   E12000007                   London   E09000006
#> 6046      England   E12000007                   London   E09000007
#> 6047      England   E12000007                   London   E09000007
#> 6048      England   E12000007                   London   E09000007
#> 6049      England   E12000007                   London   E09000008
#> 6050      England   E12000007                   London   E09000008
#> 6051      England   E12000007                   London   E09000008
#> 6052      England   E12000007                   London   E09000009
#> 6053      England   E12000007                   London   E09000009
#> 6054      England   E12000007                   London   E09000009
#> 6055      England   E12000007                   London   E09000010
#> 6056      England   E12000007                   London   E09000010
#> 6057      England   E12000007                   London   E09000010
#> 6058      England   E12000007                   London   E09000011
#> 6059      England   E12000007                   London   E09000011
#> 6060      England   E12000007                   London   E09000011
#> 6061      England   E12000007                   London   E09000012
#> 6062      England   E12000007                   London   E09000012
#> 6063      England   E12000007                   London   E09000012
#> 6064      England   E12000007                   London   E09000013
#> 6065      England   E12000007                   London   E09000013
#> 6066      England   E12000007                   London   E09000013
#> 6067      England   E12000007                   London   E09000014
#> 6068      England   E12000007                   London   E09000014
#> 6069      England   E12000007                   London   E09000014
#> 6070      England   E12000007                   London   E09000015
#> 6071      England   E12000007                   London   E09000015
#> 6072      England   E12000007                   London   E09000015
#> 6073      England   E12000007                   London   E09000016
#> 6074      England   E12000007                   London   E09000016
#> 6075      England   E12000007                   London   E09000016
#> 6076      England   E12000007                   London   E09000017
#> 6077      England   E12000007                   London   E09000017
#> 6078      England   E12000007                   London   E09000017
#> 6079      England   E12000007                   London   E09000018
#> 6080      England   E12000007                   London   E09000018
#> 6081      England   E12000007                   London   E09000018
#> 6082      England   E12000007                   London   E09000019
#> 6083      England   E12000007                   London   E09000019
#> 6084      England   E12000007                   London   E09000019
#> 6085      England   E12000007                   London   E09000020
#> 6086      England   E12000007                   London   E09000020
#> 6087      England   E12000007                   London   E09000020
#> 6088      England   E12000007                   London   E09000021
#> 6089      England   E12000007                   London   E09000021
#> 6090      England   E12000007                   London   E09000021
#> 6091      England   E12000007                   London   E09000022
#> 6092      England   E12000007                   London   E09000022
#> 6093      England   E12000007                   London   E09000022
#> 6094      England   E12000007                   London   E09000023
#> 6095      England   E12000007                   London   E09000023
#> 6096      England   E12000007                   London   E09000023
#> 6097      England   E12000007                   London   E09000024
#> 6098      England   E12000007                   London   E09000024
#> 6099      England   E12000007                   London   E09000024
#> 6100      England   E12000007                   London   E09000025
#> 6101      England   E12000007                   London   E09000025
#> 6102      England   E12000007                   London   E09000025
#> 6103      England   E12000007                   London   E09000026
#> 6104      England   E12000007                   London   E09000026
#> 6105      England   E12000007                   London   E09000026
#> 6106      England   E12000007                   London   E09000027
#> 6107      England   E12000007                   London   E09000027
#> 6108      England   E12000007                   London   E09000027
#> 6109      England   E12000007                   London   E09000028
#> 6110      England   E12000007                   London   E09000028
#> 6111      England   E12000007                   London   E09000028
#> 6112      England   E12000007                   London   E09000029
#> 6113      England   E12000007                   London   E09000029
#> 6114      England   E12000007                   London   E09000029
#> 6115      England   E12000007                   London   E09000030
#> 6116      England   E12000007                   London   E09000030
#> 6117      England   E12000007                   London   E09000030
#> 6118      England   E12000007                   London   E09000031
#> 6119      England   E12000007                   London   E09000031
#> 6120      England   E12000007                   London   E09000031
#> 6121      England   E12000007                   London   E09000032
#> 6122      England   E12000007                   London   E09000032
#> 6123      England   E12000007                   London   E09000032
#> 6124      England   E12000007                   London   E09000033
#> 6125      England   E12000007                   London   E09000033
#> 6126      England   E12000007                   London   E09000033
#> 6127      England   E12000008               South East        <NA>
#> 6128      England   E12000008               South East        <NA>
#> 6129      England   E12000008               South East        <NA>
#> 6130      England   E12000008               South East        <NA>
#> 6131      England   E12000008               South East   E06000035
#> 6132      England   E12000008               South East   E06000035
#> 6133      England   E12000008               South East   E06000035
#> 6134      England   E12000008               South East   E06000036
#> 6135      England   E12000008               South East   E06000036
#> 6136      England   E12000008               South East   E06000036
#> 6137      England   E12000008               South East   E06000037
#> 6138      England   E12000008               South East   E06000037
#> 6139      England   E12000008               South East   E06000037
#> 6140      England   E12000008               South East   E06000038
#> 6141      England   E12000008               South East   E06000038
#> 6142      England   E12000008               South East   E06000038
#> 6143      England   E12000008               South East   E06000039
#> 6144      England   E12000008               South East   E06000039
#> 6145      England   E12000008               South East   E06000039
#> 6146      England   E12000008               South East   E06000040
#> 6147      England   E12000008               South East   E06000040
#> 6148      England   E12000008               South East   E06000040
#> 6149      England   E12000008               South East   E06000041
#> 6150      England   E12000008               South East   E06000041
#> 6151      England   E12000008               South East   E06000041
#> 6152      England   E12000008               South East   E06000042
#> 6153      England   E12000008               South East   E06000042
#> 6154      England   E12000008               South East   E06000042
#> 6155      England   E12000008               South East   E06000043
#> 6156      England   E12000008               South East   E06000043
#> 6157      England   E12000008               South East   E06000043
#> 6158      England   E12000008               South East   E06000044
#> 6159      England   E12000008               South East   E06000044
#> 6160      England   E12000008               South East   E06000044
#> 6161      England   E12000008               South East   E06000045
#> 6162      England   E12000008               South East   E06000045
#> 6163      England   E12000008               South East   E06000045
#> 6164      England   E12000008               South East   E06000046
#> 6165      England   E12000008               South East   E06000046
#> 6166      England   E12000008               South East   E06000046
#> 6167      England   E12000008               South East   E06000060
#> 6168      England   E12000008               South East   E06000060
#> 6169      England   E12000008               South East   E06000060
#> 6170      England   E12000008               South East   E10000011
#> 6171      England   E12000008               South East   E10000011
#> 6172      England   E12000008               South East   E10000011
#> 6173      England   E12000008               South East   E10000014
#> 6174      England   E12000008               South East   E10000014
#> 6175      England   E12000008               South East   E10000014
#> 6176      England   E12000008               South East   E10000016
#> 6177      England   E12000008               South East   E10000016
#> 6178      England   E12000008               South East   E10000016
#> 6179      England   E12000008               South East   E10000025
#> 6180      England   E12000008               South East   E10000025
#> 6181      England   E12000008               South East   E10000025
#> 6182      England   E12000008               South East   E10000030
#> 6183      England   E12000008               South East   E10000030
#> 6184      England   E12000008               South East   E10000030
#> 6185      England   E12000008               South East   E10000032
#> 6186      England   E12000008               South East   E10000032
#> 6187      England   E12000008               South East   E10000032
#> 6188      England   E12000009               South West        <NA>
#> 6189      England   E12000009               South West        <NA>
#> 6190      England   E12000009               South West        <NA>
#> 6191      England   E12000009               South West        <NA>
#> 6192      England   E12000009               South West   E06000022
#> 6193      England   E12000009               South West   E06000022
#> 6194      England   E12000009               South West   E06000022
#> 6195      England   E12000009               South West   E06000023
#> 6196      England   E12000009               South West   E06000023
#> 6197      England   E12000009               South West   E06000023
#> 6198      England   E12000009               South West   E06000024
#> 6199      England   E12000009               South West   E06000024
#> 6200      England   E12000009               South West   E06000024
#> 6201      England   E12000009               South West   E06000025
#> 6202      England   E12000009               South West   E06000025
#> 6203      England   E12000009               South West   E06000025
#> 6204      England   E12000009               South West   E06000026
#> 6205      England   E12000009               South West   E06000026
#> 6206      England   E12000009               South West   E06000026
#> 6207      England   E12000009               South West   E06000027
#> 6208      England   E12000009               South West   E06000027
#> 6209      England   E12000009               South West   E06000027
#> 6210      England   E12000009               South West   E06000030
#> 6211      England   E12000009               South West   E06000030
#> 6212      England   E12000009               South West   E06000030
#> 6213      England   E12000009               South West   E06000052
#> 6214      England   E12000009               South West   E06000052
#> 6215      England   E12000009               South West   E06000052
#> 6216      England   E12000009               South West   E06000053
#> 6217      England   E12000009               South West   E06000054
#> 6218      England   E12000009               South West   E06000054
#> 6219      England   E12000009               South West   E06000054
#> 6220      England   E12000009               South West   E06000058
#> 6221      England   E12000009               South West   E06000058
#> 6222      England   E12000009               South West   E06000058
#> 6223      England   E12000009               South West   E06000059
#> 6224      England   E12000009               South West   E06000059
#> 6225      England   E12000009               South West   E06000059
#> 6226      England   E12000009               South West   E06000066
#> 6227      England   E12000009               South West   E06000066
#> 6228      England   E12000009               South West   E06000066
#> 6229      England   E12000009               South West   E10000008
#> 6230      England   E12000009               South West   E10000008
#> 6231      England   E12000009               South West   E10000008
#> 6232      England   E12000009               South West   E10000013
#> 6233      England   E12000009               South West   E10000013
#> 6234      England   E12000009               South West   E10000013
#> 6235      England        <NA>                     <NA>        <NA>
#> 6236      England        <NA>                     <NA>        <NA>
#> 6237      England        <NA>                     <NA>        <NA>
#> 6238      England        <NA>                     <NA>        <NA>
#> 6239      England   E12000001               North East        <NA>
#> 6240      England   E12000001               North East        <NA>
#> 6241      England   E12000001               North East        <NA>
#> 6242      England   E12000001               North East        <NA>
#> 6243      England   E12000001               North East   E06000001
#> 6244      England   E12000001               North East   E06000001
#> 6245      England   E12000001               North East   E06000001
#> 6246      England   E12000001               North East   E06000002
#> 6247      England   E12000001               North East   E06000002
#> 6248      England   E12000001               North East   E06000002
#> 6249      England   E12000001               North East   E06000003
#> 6250      England   E12000001               North East   E06000003
#> 6251      England   E12000001               North East   E06000003
#> 6252      England   E12000001               North East   E06000004
#> 6253      England   E12000001               North East   E06000004
#> 6254      England   E12000001               North East   E06000004
#> 6255      England   E12000001               North East   E06000005
#> 6256      England   E12000001               North East   E06000005
#> 6257      England   E12000001               North East   E06000005
#> 6258      England   E12000001               North East   E06000047
#> 6259      England   E12000001               North East   E06000047
#> 6260      England   E12000001               North East   E06000047
#> 6261      England   E12000001               North East   E06000057
#> 6262      England   E12000001               North East   E06000057
#> 6263      England   E12000001               North East   E06000057
#> 6264      England   E12000001               North East   E08000021
#> 6265      England   E12000001               North East   E08000021
#> 6266      England   E12000001               North East   E08000021
#> 6267      England   E12000001               North East   E08000022
#> 6268      England   E12000001               North East   E08000022
#> 6269      England   E12000001               North East   E08000022
#> 6270      England   E12000001               North East   E08000023
#> 6271      England   E12000001               North East   E08000023
#> 6272      England   E12000001               North East   E08000023
#> 6273      England   E12000001               North East   E08000024
#> 6274      England   E12000001               North East   E08000024
#> 6275      England   E12000001               North East   E08000024
#> 6276      England   E12000001               North East   E08000037
#> 6277      England   E12000001               North East   E08000037
#> 6278      England   E12000001               North East   E08000037
#> 6279      England   E12000002               North West        <NA>
#> 6280      England   E12000002               North West        <NA>
#> 6281      England   E12000002               North West        <NA>
#> 6282      England   E12000002               North West        <NA>
#> 6283      England   E12000002               North West   E06000006
#> 6284      England   E12000002               North West   E06000006
#> 6285      England   E12000002               North West   E06000006
#> 6286      England   E12000002               North West   E06000007
#> 6287      England   E12000002               North West   E06000007
#> 6288      England   E12000002               North West   E06000007
#> 6289      England   E12000002               North West   E06000008
#> 6290      England   E12000002               North West   E06000008
#> 6291      England   E12000002               North West   E06000008
#> 6292      England   E12000002               North West   E06000009
#> 6293      England   E12000002               North West   E06000009
#> 6294      England   E12000002               North West   E06000009
#> 6295      England   E12000002               North West   E06000049
#> 6296      England   E12000002               North West   E06000049
#> 6297      England   E12000002               North West   E06000049
#> 6298      England   E12000002               North West   E06000050
#> 6299      England   E12000002               North West   E06000050
#> 6300      England   E12000002               North West   E06000050
#> 6301      England   E12000002               North West   E06000063
#> 6302      England   E12000002               North West   E06000063
#> 6303      England   E12000002               North West   E06000063
#> 6304      England   E12000002               North West   E06000064
#> 6305      England   E12000002               North West   E06000064
#> 6306      England   E12000002               North West   E06000064
#> 6307      England   E12000002               North West   E08000001
#> 6308      England   E12000002               North West   E08000001
#> 6309      England   E12000002               North West   E08000001
#> 6310      England   E12000002               North West   E08000002
#> 6311      England   E12000002               North West   E08000002
#> 6312      England   E12000002               North West   E08000002
#> 6313      England   E12000002               North West   E08000003
#> 6314      England   E12000002               North West   E08000003
#> 6315      England   E12000002               North West   E08000003
#> 6316      England   E12000002               North West   E08000004
#> 6317      England   E12000002               North West   E08000004
#> 6318      England   E12000002               North West   E08000004
#> 6319      England   E12000002               North West   E08000005
#> 6320      England   E12000002               North West   E08000005
#> 6321      England   E12000002               North West   E08000005
#> 6322      England   E12000002               North West   E08000006
#> 6323      England   E12000002               North West   E08000006
#> 6324      England   E12000002               North West   E08000006
#> 6325      England   E12000002               North West   E08000007
#> 6326      England   E12000002               North West   E08000007
#> 6327      England   E12000002               North West   E08000007
#> 6328      England   E12000002               North West   E08000008
#> 6329      England   E12000002               North West   E08000008
#> 6330      England   E12000002               North West   E08000008
#> 6331      England   E12000002               North West   E08000009
#> 6332      England   E12000002               North West   E08000009
#> 6333      England   E12000002               North West   E08000009
#> 6334      England   E12000002               North West   E08000010
#> 6335      England   E12000002               North West   E08000010
#> 6336      England   E12000002               North West   E08000010
#> 6337      England   E12000002               North West   E08000011
#> 6338      England   E12000002               North West   E08000011
#> 6339      England   E12000002               North West   E08000011
#> 6340      England   E12000002               North West   E08000012
#> 6341      England   E12000002               North West   E08000012
#> 6342      England   E12000002               North West   E08000012
#> 6343      England   E12000002               North West   E08000013
#> 6344      England   E12000002               North West   E08000013
#> 6345      England   E12000002               North West   E08000013
#> 6346      England   E12000002               North West   E08000014
#> 6347      England   E12000002               North West   E08000014
#> 6348      England   E12000002               North West   E08000014
#> 6349      England   E12000002               North West   E08000015
#> 6350      England   E12000002               North West   E08000015
#> 6351      England   E12000002               North West   E08000015
#> 6352      England   E12000002               North West   E10000017
#> 6353      England   E12000002               North West   E10000017
#> 6354      England   E12000002               North West   E10000017
#> 6355      England   E12000003 Yorkshire and The Humber        <NA>
#> 6356      England   E12000003 Yorkshire and The Humber        <NA>
#> 6357      England   E12000003 Yorkshire and The Humber        <NA>
#> 6358      England   E12000003 Yorkshire and The Humber        <NA>
#> 6359      England   E12000003 Yorkshire and The Humber   E06000010
#> 6360      England   E12000003 Yorkshire and The Humber   E06000010
#> 6361      England   E12000003 Yorkshire and The Humber   E06000010
#> 6362      England   E12000003 Yorkshire and The Humber   E06000011
#> 6363      England   E12000003 Yorkshire and The Humber   E06000011
#> 6364      England   E12000003 Yorkshire and The Humber   E06000011
#> 6365      England   E12000003 Yorkshire and The Humber   E06000012
#> 6366      England   E12000003 Yorkshire and The Humber   E06000012
#> 6367      England   E12000003 Yorkshire and The Humber   E06000012
#> 6368      England   E12000003 Yorkshire and The Humber   E06000013
#> 6369      England   E12000003 Yorkshire and The Humber   E06000013
#> 6370      England   E12000003 Yorkshire and The Humber   E06000013
#> 6371      England   E12000003 Yorkshire and The Humber   E06000014
#> 6372      England   E12000003 Yorkshire and The Humber   E06000014
#> 6373      England   E12000003 Yorkshire and The Humber   E06000014
#> 6374      England   E12000003 Yorkshire and The Humber   E06000065
#> 6375      England   E12000003 Yorkshire and The Humber   E06000065
#> 6376      England   E12000003 Yorkshire and The Humber   E06000065
#> 6377      England   E12000003 Yorkshire and The Humber   E08000016
#> 6378      England   E12000003 Yorkshire and The Humber   E08000016
#> 6379      England   E12000003 Yorkshire and The Humber   E08000016
#> 6380      England   E12000003 Yorkshire and The Humber   E08000017
#> 6381      England   E12000003 Yorkshire and The Humber   E08000017
#> 6382      England   E12000003 Yorkshire and The Humber   E08000017
#> 6383      England   E12000003 Yorkshire and The Humber   E08000018
#> 6384      England   E12000003 Yorkshire and The Humber   E08000018
#> 6385      England   E12000003 Yorkshire and The Humber   E08000018
#> 6386      England   E12000003 Yorkshire and The Humber   E08000019
#> 6387      England   E12000003 Yorkshire and The Humber   E08000019
#> 6388      England   E12000003 Yorkshire and The Humber   E08000019
#> 6389      England   E12000003 Yorkshire and The Humber   E08000032
#> 6390      England   E12000003 Yorkshire and The Humber   E08000032
#> 6391      England   E12000003 Yorkshire and The Humber   E08000032
#> 6392      England   E12000003 Yorkshire and The Humber   E08000033
#> 6393      England   E12000003 Yorkshire and The Humber   E08000033
#> 6394      England   E12000003 Yorkshire and The Humber   E08000033
#> 6395      England   E12000003 Yorkshire and The Humber   E08000034
#> 6396      England   E12000003 Yorkshire and The Humber   E08000034
#> 6397      England   E12000003 Yorkshire and The Humber   E08000034
#> 6398      England   E12000003 Yorkshire and The Humber   E08000035
#> 6399      England   E12000003 Yorkshire and The Humber   E08000035
#> 6400      England   E12000003 Yorkshire and The Humber   E08000035
#> 6401      England   E12000003 Yorkshire and The Humber   E08000036
#> 6402      England   E12000003 Yorkshire and The Humber   E08000036
#> 6403      England   E12000003 Yorkshire and The Humber   E08000036
#> 6404      England   E12000004            East Midlands        <NA>
#> 6405      England   E12000004            East Midlands        <NA>
#> 6406      England   E12000004            East Midlands        <NA>
#> 6407      England   E12000004            East Midlands        <NA>
#> 6408      England   E12000004            East Midlands   E06000015
#> 6409      England   E12000004            East Midlands   E06000015
#> 6410      England   E12000004            East Midlands   E06000015
#> 6411      England   E12000004            East Midlands   E06000016
#> 6412      England   E12000004            East Midlands   E06000016
#> 6413      England   E12000004            East Midlands   E06000016
#> 6414      England   E12000004            East Midlands   E06000017
#> 6415      England   E12000004            East Midlands   E06000017
#> 6416      England   E12000004            East Midlands   E06000018
#> 6417      England   E12000004            East Midlands   E06000018
#> 6418      England   E12000004            East Midlands   E06000018
#> 6419      England   E12000004            East Midlands   E06000061
#> 6420      England   E12000004            East Midlands   E06000061
#> 6421      England   E12000004            East Midlands   E06000061
#> 6422      England   E12000004            East Midlands   E06000062
#> 6423      England   E12000004            East Midlands   E06000062
#> 6424      England   E12000004            East Midlands   E06000062
#> 6425      England   E12000004            East Midlands   E10000007
#> 6426      England   E12000004            East Midlands   E10000007
#> 6427      England   E12000004            East Midlands   E10000007
#> 6428      England   E12000004            East Midlands   E10000018
#> 6429      England   E12000004            East Midlands   E10000018
#> 6430      England   E12000004            East Midlands   E10000018
#> 6431      England   E12000004            East Midlands   E10000019
#> 6432      England   E12000004            East Midlands   E10000019
#> 6433      England   E12000004            East Midlands   E10000019
#> 6434      England   E12000004            East Midlands   E10000024
#> 6435      England   E12000004            East Midlands   E10000024
#> 6436      England   E12000004            East Midlands   E10000024
#> 6437      England   E12000005            West Midlands        <NA>
#> 6438      England   E12000005            West Midlands        <NA>
#> 6439      England   E12000005            West Midlands        <NA>
#> 6440      England   E12000005            West Midlands        <NA>
#> 6441      England   E12000005            West Midlands   E06000019
#> 6442      England   E12000005            West Midlands   E06000019
#> 6443      England   E12000005            West Midlands   E06000019
#> 6444      England   E12000005            West Midlands   E06000020
#> 6445      England   E12000005            West Midlands   E06000020
#> 6446      England   E12000005            West Midlands   E06000020
#> 6447      England   E12000005            West Midlands   E06000021
#> 6448      England   E12000005            West Midlands   E06000021
#> 6449      England   E12000005            West Midlands   E06000021
#> 6450      England   E12000005            West Midlands   E06000051
#> 6451      England   E12000005            West Midlands   E06000051
#> 6452      England   E12000005            West Midlands   E06000051
#> 6453      England   E12000005            West Midlands   E08000025
#> 6454      England   E12000005            West Midlands   E08000025
#> 6455      England   E12000005            West Midlands   E08000025
#> 6456      England   E12000005            West Midlands   E08000026
#> 6457      England   E12000005            West Midlands   E08000026
#> 6458      England   E12000005            West Midlands   E08000026
#> 6459      England   E12000005            West Midlands   E08000027
#> 6460      England   E12000005            West Midlands   E08000027
#> 6461      England   E12000005            West Midlands   E08000027
#> 6462      England   E12000005            West Midlands   E08000028
#> 6463      England   E12000005            West Midlands   E08000028
#> 6464      England   E12000005            West Midlands   E08000028
#> 6465      England   E12000005            West Midlands   E08000029
#> 6466      England   E12000005            West Midlands   E08000029
#> 6467      England   E12000005            West Midlands   E08000029
#> 6468      England   E12000005            West Midlands   E08000030
#> 6469      England   E12000005            West Midlands   E08000030
#> 6470      England   E12000005            West Midlands   E08000030
#> 6471      England   E12000005            West Midlands   E08000031
#> 6472      England   E12000005            West Midlands   E08000031
#> 6473      England   E12000005            West Midlands   E08000031
#> 6474      England   E12000005            West Midlands   E10000028
#> 6475      England   E12000005            West Midlands   E10000028
#> 6476      England   E12000005            West Midlands   E10000028
#> 6477      England   E12000005            West Midlands   E10000031
#> 6478      England   E12000005            West Midlands   E10000031
#> 6479      England   E12000005            West Midlands   E10000031
#> 6480      England   E12000005            West Midlands   E10000034
#> 6481      England   E12000005            West Midlands   E10000034
#> 6482      England   E12000005            West Midlands   E10000034
#> 6483      England   E12000006          East of England        <NA>
#> 6484      England   E12000006          East of England        <NA>
#> 6485      England   E12000006          East of England        <NA>
#> 6486      England   E12000006          East of England        <NA>
#> 6487      England   E12000006          East of England   E06000031
#> 6488      England   E12000006          East of England   E06000031
#> 6489      England   E12000006          East of England   E06000031
#> 6490      England   E12000006          East of England   E06000032
#> 6491      England   E12000006          East of England   E06000032
#> 6492      England   E12000006          East of England   E06000032
#> 6493      England   E12000006          East of England   E06000033
#> 6494      England   E12000006          East of England   E06000033
#> 6495      England   E12000006          East of England   E06000033
#> 6496      England   E12000006          East of England   E06000034
#> 6497      England   E12000006          East of England   E06000034
#> 6498      England   E12000006          East of England   E06000034
#> 6499      England   E12000006          East of England   E06000055
#> 6500      England   E12000006          East of England   E06000055
#> 6501      England   E12000006          East of England   E06000055
#> 6502      England   E12000006          East of England   E06000056
#> 6503      England   E12000006          East of England   E06000056
#> 6504      England   E12000006          East of England   E06000056
#> 6505      England   E12000006          East of England   E10000003
#> 6506      England   E12000006          East of England   E10000003
#> 6507      England   E12000006          East of England   E10000003
#> 6508      England   E12000006          East of England   E10000012
#> 6509      England   E12000006          East of England   E10000012
#> 6510      England   E12000006          East of England   E10000012
#> 6511      England   E12000006          East of England   E10000015
#> 6512      England   E12000006          East of England   E10000015
#> 6513      England   E12000006          East of England   E10000015
#> 6514      England   E12000006          East of England   E10000020
#> 6515      England   E12000006          East of England   E10000020
#> 6516      England   E12000006          East of England   E10000020
#> 6517      England   E12000006          East of England   E10000029
#> 6518      England   E12000006          East of England   E10000029
#> 6519      England   E12000006          East of England   E10000029
#> 6520      England   E12000007                   London        <NA>
#> 6521      England   E12000007                   London        <NA>
#> 6522      England   E12000007                   London        <NA>
#> 6523      England   E12000007                   London        <NA>
#> 6524      England   E12000007                   London   E09000001
#> 6525      England   E12000007                   London   E09000002
#> 6526      England   E12000007                   London   E09000002
#> 6527      England   E12000007                   London   E09000002
#> 6528      England   E12000007                   London   E09000003
#> 6529      England   E12000007                   London   E09000003
#> 6530      England   E12000007                   London   E09000003
#> 6531      England   E12000007                   London   E09000004
#> 6532      England   E12000007                   London   E09000004
#> 6533      England   E12000007                   London   E09000004
#> 6534      England   E12000007                   London   E09000005
#> 6535      England   E12000007                   London   E09000005
#> 6536      England   E12000007                   London   E09000005
#> 6537      England   E12000007                   London   E09000006
#> 6538      England   E12000007                   London   E09000006
#> 6539      England   E12000007                   London   E09000006
#> 6540      England   E12000007                   London   E09000007
#> 6541      England   E12000007                   London   E09000007
#> 6542      England   E12000007                   London   E09000007
#> 6543      England   E12000007                   London   E09000008
#> 6544      England   E12000007                   London   E09000008
#> 6545      England   E12000007                   London   E09000008
#> 6546      England   E12000007                   London   E09000009
#> 6547      England   E12000007                   London   E09000009
#> 6548      England   E12000007                   London   E09000009
#> 6549      England   E12000007                   London   E09000010
#> 6550      England   E12000007                   London   E09000010
#> 6551      England   E12000007                   London   E09000010
#> 6552      England   E12000007                   London   E09000011
#> 6553      England   E12000007                   London   E09000011
#> 6554      England   E12000007                   London   E09000011
#> 6555      England   E12000007                   London   E09000012
#> 6556      England   E12000007                   London   E09000012
#> 6557      England   E12000007                   London   E09000012
#> 6558      England   E12000007                   London   E09000013
#> 6559      England   E12000007                   London   E09000013
#> 6560      England   E12000007                   London   E09000013
#> 6561      England   E12000007                   London   E09000014
#> 6562      England   E12000007                   London   E09000014
#> 6563      England   E12000007                   London   E09000014
#> 6564      England   E12000007                   London   E09000015
#> 6565      England   E12000007                   London   E09000015
#> 6566      England   E12000007                   London   E09000015
#> 6567      England   E12000007                   London   E09000016
#> 6568      England   E12000007                   London   E09000016
#> 6569      England   E12000007                   London   E09000016
#> 6570      England   E12000007                   London   E09000017
#> 6571      England   E12000007                   London   E09000017
#> 6572      England   E12000007                   London   E09000017
#> 6573      England   E12000007                   London   E09000018
#> 6574      England   E12000007                   London   E09000018
#> 6575      England   E12000007                   London   E09000018
#> 6576      England   E12000007                   London   E09000019
#> 6577      England   E12000007                   London   E09000019
#> 6578      England   E12000007                   London   E09000019
#> 6579      England   E12000007                   London   E09000020
#> 6580      England   E12000007                   London   E09000020
#> 6581      England   E12000007                   London   E09000020
#> 6582      England   E12000007                   London   E09000021
#> 6583      England   E12000007                   London   E09000021
#> 6584      England   E12000007                   London   E09000021
#> 6585      England   E12000007                   London   E09000022
#> 6586      England   E12000007                   London   E09000022
#> 6587      England   E12000007                   London   E09000022
#> 6588      England   E12000007                   London   E09000023
#> 6589      England   E12000007                   London   E09000023
#> 6590      England   E12000007                   London   E09000023
#> 6591      England   E12000007                   London   E09000024
#> 6592      England   E12000007                   London   E09000024
#> 6593      England   E12000007                   London   E09000024
#> 6594      England   E12000007                   London   E09000025
#> 6595      England   E12000007                   London   E09000025
#> 6596      England   E12000007                   London   E09000025
#> 6597      England   E12000007                   London   E09000026
#> 6598      England   E12000007                   London   E09000026
#> 6599      England   E12000007                   London   E09000026
#> 6600      England   E12000007                   London   E09000027
#> 6601      England   E12000007                   London   E09000027
#> 6602      England   E12000007                   London   E09000027
#> 6603      England   E12000007                   London   E09000028
#> 6604      England   E12000007                   London   E09000028
#> 6605      England   E12000007                   London   E09000028
#> 6606      England   E12000007                   London   E09000029
#> 6607      England   E12000007                   London   E09000029
#> 6608      England   E12000007                   London   E09000029
#> 6609      England   E12000007                   London   E09000030
#> 6610      England   E12000007                   London   E09000030
#> 6611      England   E12000007                   London   E09000030
#> 6612      England   E12000007                   London   E09000031
#> 6613      England   E12000007                   London   E09000031
#> 6614      England   E12000007                   London   E09000031
#> 6615      England   E12000007                   London   E09000032
#> 6616      England   E12000007                   London   E09000032
#> 6617      England   E12000007                   London   E09000032
#> 6618      England   E12000007                   London   E09000033
#> 6619      England   E12000007                   London   E09000033
#> 6620      England   E12000007                   London   E09000033
#> 6621      England   E12000008               South East        <NA>
#> 6622      England   E12000008               South East        <NA>
#> 6623      England   E12000008               South East        <NA>
#> 6624      England   E12000008               South East        <NA>
#> 6625      England   E12000008               South East   E06000035
#> 6626      England   E12000008               South East   E06000035
#> 6627      England   E12000008               South East   E06000035
#> 6628      England   E12000008               South East   E06000036
#> 6629      England   E12000008               South East   E06000036
#> 6630      England   E12000008               South East   E06000036
#> 6631      England   E12000008               South East   E06000037
#> 6632      England   E12000008               South East   E06000037
#> 6633      England   E12000008               South East   E06000037
#> 6634      England   E12000008               South East   E06000038
#> 6635      England   E12000008               South East   E06000038
#> 6636      England   E12000008               South East   E06000038
#> 6637      England   E12000008               South East   E06000039
#> 6638      England   E12000008               South East   E06000039
#> 6639      England   E12000008               South East   E06000039
#> 6640      England   E12000008               South East   E06000040
#> 6641      England   E12000008               South East   E06000040
#> 6642      England   E12000008               South East   E06000040
#> 6643      England   E12000008               South East   E06000041
#> 6644      England   E12000008               South East   E06000041
#> 6645      England   E12000008               South East   E06000041
#> 6646      England   E12000008               South East   E06000042
#> 6647      England   E12000008               South East   E06000042
#> 6648      England   E12000008               South East   E06000042
#> 6649      England   E12000008               South East   E06000043
#> 6650      England   E12000008               South East   E06000043
#> 6651      England   E12000008               South East   E06000043
#> 6652      England   E12000008               South East   E06000044
#> 6653      England   E12000008               South East   E06000044
#> 6654      England   E12000008               South East   E06000044
#> 6655      England   E12000008               South East   E06000045
#> 6656      England   E12000008               South East   E06000045
#> 6657      England   E12000008               South East   E06000045
#> 6658      England   E12000008               South East   E06000046
#> 6659      England   E12000008               South East   E06000046
#> 6660      England   E12000008               South East   E06000046
#> 6661      England   E12000008               South East   E06000060
#> 6662      England   E12000008               South East   E06000060
#> 6663      England   E12000008               South East   E06000060
#> 6664      England   E12000008               South East   E10000011
#> 6665      England   E12000008               South East   E10000011
#> 6666      England   E12000008               South East   E10000011
#> 6667      England   E12000008               South East   E10000014
#> 6668      England   E12000008               South East   E10000014
#> 6669      England   E12000008               South East   E10000014
#> 6670      England   E12000008               South East   E10000016
#> 6671      England   E12000008               South East   E10000016
#> 6672      England   E12000008               South East   E10000016
#> 6673      England   E12000008               South East   E10000025
#> 6674      England   E12000008               South East   E10000025
#> 6675      England   E12000008               South East   E10000025
#> 6676      England   E12000008               South East   E10000030
#> 6677      England   E12000008               South East   E10000030
#> 6678      England   E12000008               South East   E10000030
#> 6679      England   E12000008               South East   E10000032
#> 6680      England   E12000008               South East   E10000032
#> 6681      England   E12000008               South East   E10000032
#> 6682      England   E12000009               South West        <NA>
#> 6683      England   E12000009               South West        <NA>
#> 6684      England   E12000009               South West        <NA>
#> 6685      England   E12000009               South West        <NA>
#> 6686      England   E12000009               South West   E06000022
#> 6687      England   E12000009               South West   E06000022
#> 6688      England   E12000009               South West   E06000022
#> 6689      England   E12000009               South West   E06000023
#> 6690      England   E12000009               South West   E06000023
#> 6691      England   E12000009               South West   E06000023
#> 6692      England   E12000009               South West   E06000024
#> 6693      England   E12000009               South West   E06000024
#> 6694      England   E12000009               South West   E06000024
#> 6695      England   E12000009               South West   E06000025
#> 6696      England   E12000009               South West   E06000025
#> 6697      England   E12000009               South West   E06000025
#> 6698      England   E12000009               South West   E06000026
#> 6699      England   E12000009               South West   E06000026
#> 6700      England   E12000009               South West   E06000026
#> 6701      England   E12000009               South West   E06000027
#> 6702      England   E12000009               South West   E06000027
#> 6703      England   E12000009               South West   E06000027
#> 6704      England   E12000009               South West   E06000030
#> 6705      England   E12000009               South West   E06000030
#> 6706      England   E12000009               South West   E06000030
#> 6707      England   E12000009               South West   E06000052
#> 6708      England   E12000009               South West   E06000052
#> 6709      England   E12000009               South West   E06000052
#> 6710      England   E12000009               South West   E06000053
#> 6711      England   E12000009               South West   E06000054
#> 6712      England   E12000009               South West   E06000054
#> 6713      England   E12000009               South West   E06000054
#> 6714      England   E12000009               South West   E06000058
#> 6715      England   E12000009               South West   E06000058
#> 6716      England   E12000009               South West   E06000058
#> 6717      England   E12000009               South West   E06000059
#> 6718      England   E12000009               South West   E06000059
#> 6719      England   E12000009               South West   E06000059
#> 6720      England   E12000009               South West   E06000066
#> 6721      England   E12000009               South West   E06000066
#> 6722      England   E12000009               South West   E06000066
#> 6723      England   E12000009               South West   E10000008
#> 6724      England   E12000009               South West   E10000008
#> 6725      England   E12000009               South West   E10000008
#> 6726      England   E12000009               South West   E10000013
#> 6727      England   E12000009               South West   E10000013
#> 6728      England   E12000009               South West   E10000013
#> 6729      England        <NA>                     <NA>        <NA>
#> 6730      England        <NA>                     <NA>        <NA>
#> 6731      England        <NA>                     <NA>        <NA>
#> 6732      England        <NA>                     <NA>        <NA>
#> 6733      England   E12000001               North East        <NA>
#> 6734      England   E12000001               North East        <NA>
#> 6735      England   E12000001               North East        <NA>
#> 6736      England   E12000001               North East        <NA>
#> 6737      England   E12000001               North East   E06000001
#> 6738      England   E12000001               North East   E06000001
#> 6739      England   E12000001               North East   E06000001
#> 6740      England   E12000001               North East   E06000002
#> 6741      England   E12000001               North East   E06000002
#> 6742      England   E12000001               North East   E06000002
#> 6743      England   E12000001               North East   E06000003
#> 6744      England   E12000001               North East   E06000003
#> 6745      England   E12000001               North East   E06000003
#> 6746      England   E12000001               North East   E06000004
#> 6747      England   E12000001               North East   E06000004
#> 6748      England   E12000001               North East   E06000004
#> 6749      England   E12000001               North East   E06000005
#> 6750      England   E12000001               North East   E06000005
#> 6751      England   E12000001               North East   E06000005
#> 6752      England   E12000001               North East   E06000047
#> 6753      England   E12000001               North East   E06000047
#> 6754      England   E12000001               North East   E06000047
#> 6755      England   E12000001               North East   E06000057
#> 6756      England   E12000001               North East   E06000057
#> 6757      England   E12000001               North East   E06000057
#> 6758      England   E12000001               North East   E08000021
#> 6759      England   E12000001               North East   E08000021
#> 6760      England   E12000001               North East   E08000021
#> 6761      England   E12000001               North East   E08000022
#> 6762      England   E12000001               North East   E08000022
#> 6763      England   E12000001               North East   E08000022
#> 6764      England   E12000001               North East   E08000023
#> 6765      England   E12000001               North East   E08000023
#> 6766      England   E12000001               North East   E08000023
#> 6767      England   E12000001               North East   E08000024
#> 6768      England   E12000001               North East   E08000024
#> 6769      England   E12000001               North East   E08000024
#> 6770      England   E12000001               North East   E08000037
#> 6771      England   E12000001               North East   E08000037
#> 6772      England   E12000001               North East   E08000037
#> 6773      England   E12000002               North West        <NA>
#> 6774      England   E12000002               North West        <NA>
#> 6775      England   E12000002               North West        <NA>
#> 6776      England   E12000002               North West        <NA>
#> 6777      England   E12000002               North West   E06000006
#> 6778      England   E12000002               North West   E06000006
#> 6779      England   E12000002               North West   E06000006
#> 6780      England   E12000002               North West   E06000007
#> 6781      England   E12000002               North West   E06000007
#> 6782      England   E12000002               North West   E06000007
#> 6783      England   E12000002               North West   E06000008
#> 6784      England   E12000002               North West   E06000008
#> 6785      England   E12000002               North West   E06000008
#> 6786      England   E12000002               North West   E06000009
#> 6787      England   E12000002               North West   E06000009
#> 6788      England   E12000002               North West   E06000009
#> 6789      England   E12000002               North West   E06000049
#> 6790      England   E12000002               North West   E06000049
#> 6791      England   E12000002               North West   E06000049
#> 6792      England   E12000002               North West   E06000050
#> 6793      England   E12000002               North West   E06000050
#> 6794      England   E12000002               North West   E06000050
#> 6795      England   E12000002               North West   E06000063
#> 6796      England   E12000002               North West   E06000063
#> 6797      England   E12000002               North West   E06000063
#> 6798      England   E12000002               North West   E06000064
#> 6799      England   E12000002               North West   E06000064
#> 6800      England   E12000002               North West   E06000064
#> 6801      England   E12000002               North West   E08000001
#> 6802      England   E12000002               North West   E08000001
#> 6803      England   E12000002               North West   E08000001
#> 6804      England   E12000002               North West   E08000002
#> 6805      England   E12000002               North West   E08000002
#> 6806      England   E12000002               North West   E08000002
#> 6807      England   E12000002               North West   E08000003
#> 6808      England   E12000002               North West   E08000003
#> 6809      England   E12000002               North West   E08000003
#> 6810      England   E12000002               North West   E08000004
#> 6811      England   E12000002               North West   E08000004
#> 6812      England   E12000002               North West   E08000004
#> 6813      England   E12000002               North West   E08000005
#> 6814      England   E12000002               North West   E08000005
#> 6815      England   E12000002               North West   E08000005
#> 6816      England   E12000002               North West   E08000006
#> 6817      England   E12000002               North West   E08000006
#> 6818      England   E12000002               North West   E08000006
#> 6819      England   E12000002               North West   E08000007
#> 6820      England   E12000002               North West   E08000007
#> 6821      England   E12000002               North West   E08000007
#> 6822      England   E12000002               North West   E08000008
#> 6823      England   E12000002               North West   E08000008
#> 6824      England   E12000002               North West   E08000008
#> 6825      England   E12000002               North West   E08000009
#> 6826      England   E12000002               North West   E08000009
#> 6827      England   E12000002               North West   E08000009
#> 6828      England   E12000002               North West   E08000010
#> 6829      England   E12000002               North West   E08000010
#> 6830      England   E12000002               North West   E08000010
#> 6831      England   E12000002               North West   E08000011
#> 6832      England   E12000002               North West   E08000011
#> 6833      England   E12000002               North West   E08000011
#> 6834      England   E12000002               North West   E08000012
#> 6835      England   E12000002               North West   E08000012
#> 6836      England   E12000002               North West   E08000012
#> 6837      England   E12000002               North West   E08000013
#> 6838      England   E12000002               North West   E08000013
#> 6839      England   E12000002               North West   E08000013
#> 6840      England   E12000002               North West   E08000014
#> 6841      England   E12000002               North West   E08000014
#> 6842      England   E12000002               North West   E08000014
#> 6843      England   E12000002               North West   E08000015
#> 6844      England   E12000002               North West   E08000015
#> 6845      England   E12000002               North West   E08000015
#> 6846      England   E12000002               North West   E10000017
#> 6847      England   E12000002               North West   E10000017
#> 6848      England   E12000002               North West   E10000017
#> 6849      England   E12000003 Yorkshire and The Humber        <NA>
#> 6850      England   E12000003 Yorkshire and The Humber        <NA>
#> 6851      England   E12000003 Yorkshire and The Humber        <NA>
#> 6852      England   E12000003 Yorkshire and The Humber        <NA>
#> 6853      England   E12000003 Yorkshire and The Humber   E06000010
#> 6854      England   E12000003 Yorkshire and The Humber   E06000010
#> 6855      England   E12000003 Yorkshire and The Humber   E06000010
#> 6856      England   E12000003 Yorkshire and The Humber   E06000011
#> 6857      England   E12000003 Yorkshire and The Humber   E06000011
#> 6858      England   E12000003 Yorkshire and The Humber   E06000011
#> 6859      England   E12000003 Yorkshire and The Humber   E06000012
#> 6860      England   E12000003 Yorkshire and The Humber   E06000012
#> 6861      England   E12000003 Yorkshire and The Humber   E06000012
#> 6862      England   E12000003 Yorkshire and The Humber   E06000013
#> 6863      England   E12000003 Yorkshire and The Humber   E06000013
#> 6864      England   E12000003 Yorkshire and The Humber   E06000013
#> 6865      England   E12000003 Yorkshire and The Humber   E06000014
#> 6866      England   E12000003 Yorkshire and The Humber   E06000014
#> 6867      England   E12000003 Yorkshire and The Humber   E06000014
#> 6868      England   E12000003 Yorkshire and The Humber   E06000065
#> 6869      England   E12000003 Yorkshire and The Humber   E06000065
#> 6870      England   E12000003 Yorkshire and The Humber   E06000065
#> 6871      England   E12000003 Yorkshire and The Humber   E08000016
#> 6872      England   E12000003 Yorkshire and The Humber   E08000016
#> 6873      England   E12000003 Yorkshire and The Humber   E08000016
#> 6874      England   E12000003 Yorkshire and The Humber   E08000017
#> 6875      England   E12000003 Yorkshire and The Humber   E08000017
#> 6876      England   E12000003 Yorkshire and The Humber   E08000017
#> 6877      England   E12000003 Yorkshire and The Humber   E08000018
#> 6878      England   E12000003 Yorkshire and The Humber   E08000018
#> 6879      England   E12000003 Yorkshire and The Humber   E08000018
#> 6880      England   E12000003 Yorkshire and The Humber   E08000019
#> 6881      England   E12000003 Yorkshire and The Humber   E08000019
#> 6882      England   E12000003 Yorkshire and The Humber   E08000019
#> 6883      England   E12000003 Yorkshire and The Humber   E08000032
#> 6884      England   E12000003 Yorkshire and The Humber   E08000032
#> 6885      England   E12000003 Yorkshire and The Humber   E08000032
#> 6886      England   E12000003 Yorkshire and The Humber   E08000033
#> 6887      England   E12000003 Yorkshire and The Humber   E08000033
#> 6888      England   E12000003 Yorkshire and The Humber   E08000033
#> 6889      England   E12000003 Yorkshire and The Humber   E08000034
#> 6890      England   E12000003 Yorkshire and The Humber   E08000034
#> 6891      England   E12000003 Yorkshire and The Humber   E08000034
#> 6892      England   E12000003 Yorkshire and The Humber   E08000035
#> 6893      England   E12000003 Yorkshire and The Humber   E08000035
#> 6894      England   E12000003 Yorkshire and The Humber   E08000035
#> 6895      England   E12000003 Yorkshire and The Humber   E08000036
#> 6896      England   E12000003 Yorkshire and The Humber   E08000036
#> 6897      England   E12000003 Yorkshire and The Humber   E08000036
#> 6898      England   E12000004            East Midlands        <NA>
#> 6899      England   E12000004            East Midlands        <NA>
#> 6900      England   E12000004            East Midlands        <NA>
#> 6901      England   E12000004            East Midlands        <NA>
#> 6902      England   E12000004            East Midlands   E06000015
#> 6903      England   E12000004            East Midlands   E06000015
#> 6904      England   E12000004            East Midlands   E06000015
#> 6905      England   E12000004            East Midlands   E06000016
#> 6906      England   E12000004            East Midlands   E06000016
#> 6907      England   E12000004            East Midlands   E06000016
#> 6908      England   E12000004            East Midlands   E06000017
#> 6909      England   E12000004            East Midlands   E06000017
#> 6910      England   E12000004            East Midlands   E06000018
#> 6911      England   E12000004            East Midlands   E06000018
#> 6912      England   E12000004            East Midlands   E06000018
#> 6913      England   E12000004            East Midlands   E06000061
#> 6914      England   E12000004            East Midlands   E06000061
#> 6915      England   E12000004            East Midlands   E06000061
#> 6916      England   E12000004            East Midlands   E06000062
#> 6917      England   E12000004            East Midlands   E06000062
#> 6918      England   E12000004            East Midlands   E06000062
#> 6919      England   E12000004            East Midlands   E10000007
#> 6920      England   E12000004            East Midlands   E10000007
#> 6921      England   E12000004            East Midlands   E10000007
#> 6922      England   E12000004            East Midlands   E10000018
#> 6923      England   E12000004            East Midlands   E10000018
#> 6924      England   E12000004            East Midlands   E10000018
#> 6925      England   E12000004            East Midlands   E10000019
#> 6926      England   E12000004            East Midlands   E10000019
#> 6927      England   E12000004            East Midlands   E10000019
#> 6928      England   E12000004            East Midlands   E10000024
#> 6929      England   E12000004            East Midlands   E10000024
#> 6930      England   E12000004            East Midlands   E10000024
#> 6931      England   E12000005            West Midlands        <NA>
#> 6932      England   E12000005            West Midlands        <NA>
#> 6933      England   E12000005            West Midlands        <NA>
#> 6934      England   E12000005            West Midlands        <NA>
#> 6935      England   E12000005            West Midlands   E06000019
#> 6936      England   E12000005            West Midlands   E06000019
#> 6937      England   E12000005            West Midlands   E06000019
#> 6938      England   E12000005            West Midlands   E06000020
#> 6939      England   E12000005            West Midlands   E06000020
#> 6940      England   E12000005            West Midlands   E06000020
#> 6941      England   E12000005            West Midlands   E06000021
#> 6942      England   E12000005            West Midlands   E06000021
#> 6943      England   E12000005            West Midlands   E06000021
#> 6944      England   E12000005            West Midlands   E06000051
#> 6945      England   E12000005            West Midlands   E06000051
#> 6946      England   E12000005            West Midlands   E06000051
#> 6947      England   E12000005            West Midlands   E08000025
#> 6948      England   E12000005            West Midlands   E08000025
#> 6949      England   E12000005            West Midlands   E08000025
#> 6950      England   E12000005            West Midlands   E08000026
#> 6951      England   E12000005            West Midlands   E08000026
#> 6952      England   E12000005            West Midlands   E08000026
#> 6953      England   E12000005            West Midlands   E08000027
#> 6954      England   E12000005            West Midlands   E08000027
#> 6955      England   E12000005            West Midlands   E08000027
#> 6956      England   E12000005            West Midlands   E08000028
#> 6957      England   E12000005            West Midlands   E08000028
#> 6958      England   E12000005            West Midlands   E08000028
#> 6959      England   E12000005            West Midlands   E08000029
#> 6960      England   E12000005            West Midlands   E08000029
#> 6961      England   E12000005            West Midlands   E08000029
#> 6962      England   E12000005            West Midlands   E08000030
#> 6963      England   E12000005            West Midlands   E08000030
#> 6964      England   E12000005            West Midlands   E08000030
#> 6965      England   E12000005            West Midlands   E08000031
#> 6966      England   E12000005            West Midlands   E08000031
#> 6967      England   E12000005            West Midlands   E08000031
#> 6968      England   E12000005            West Midlands   E10000028
#> 6969      England   E12000005            West Midlands   E10000028
#> 6970      England   E12000005            West Midlands   E10000028
#> 6971      England   E12000005            West Midlands   E10000031
#> 6972      England   E12000005            West Midlands   E10000031
#> 6973      England   E12000005            West Midlands   E10000031
#> 6974      England   E12000005            West Midlands   E10000034
#> 6975      England   E12000005            West Midlands   E10000034
#> 6976      England   E12000005            West Midlands   E10000034
#> 6977      England   E12000006          East of England        <NA>
#> 6978      England   E12000006          East of England        <NA>
#> 6979      England   E12000006          East of England        <NA>
#> 6980      England   E12000006          East of England        <NA>
#> 6981      England   E12000006          East of England   E06000031
#> 6982      England   E12000006          East of England   E06000031
#> 6983      England   E12000006          East of England   E06000031
#> 6984      England   E12000006          East of England   E06000032
#> 6985      England   E12000006          East of England   E06000032
#> 6986      England   E12000006          East of England   E06000032
#> 6987      England   E12000006          East of England   E06000033
#> 6988      England   E12000006          East of England   E06000033
#> 6989      England   E12000006          East of England   E06000033
#> 6990      England   E12000006          East of England   E06000034
#> 6991      England   E12000006          East of England   E06000034
#> 6992      England   E12000006          East of England   E06000034
#> 6993      England   E12000006          East of England   E06000055
#> 6994      England   E12000006          East of England   E06000055
#> 6995      England   E12000006          East of England   E06000055
#> 6996      England   E12000006          East of England   E06000056
#> 6997      England   E12000006          East of England   E06000056
#> 6998      England   E12000006          East of England   E06000056
#> 6999      England   E12000006          East of England   E10000003
#> 7000      England   E12000006          East of England   E10000003
#> 7001      England   E12000006          East of England   E10000003
#> 7002      England   E12000006          East of England   E10000012
#> 7003      England   E12000006          East of England   E10000012
#> 7004      England   E12000006          East of England   E10000012
#> 7005      England   E12000006          East of England   E10000015
#> 7006      England   E12000006          East of England   E10000015
#> 7007      England   E12000006          East of England   E10000015
#> 7008      England   E12000006          East of England   E10000020
#> 7009      England   E12000006          East of England   E10000020
#> 7010      England   E12000006          East of England   E10000020
#> 7011      England   E12000006          East of England   E10000029
#> 7012      England   E12000006          East of England   E10000029
#> 7013      England   E12000006          East of England   E10000029
#> 7014      England   E12000007                   London        <NA>
#> 7015      England   E12000007                   London        <NA>
#> 7016      England   E12000007                   London        <NA>
#> 7017      England   E12000007                   London        <NA>
#> 7018      England   E12000007                   London   E09000001
#> 7019      England   E12000007                   London   E09000002
#> 7020      England   E12000007                   London   E09000002
#> 7021      England   E12000007                   London   E09000002
#> 7022      England   E12000007                   London   E09000003
#> 7023      England   E12000007                   London   E09000003
#> 7024      England   E12000007                   London   E09000003
#> 7025      England   E12000007                   London   E09000004
#> 7026      England   E12000007                   London   E09000004
#> 7027      England   E12000007                   London   E09000004
#> 7028      England   E12000007                   London   E09000005
#> 7029      England   E12000007                   London   E09000005
#> 7030      England   E12000007                   London   E09000005
#> 7031      England   E12000007                   London   E09000006
#> 7032      England   E12000007                   London   E09000006
#> 7033      England   E12000007                   London   E09000006
#> 7034      England   E12000007                   London   E09000007
#> 7035      England   E12000007                   London   E09000007
#> 7036      England   E12000007                   London   E09000007
#> 7037      England   E12000007                   London   E09000008
#> 7038      England   E12000007                   London   E09000008
#> 7039      England   E12000007                   London   E09000008
#> 7040      England   E12000007                   London   E09000009
#> 7041      England   E12000007                   London   E09000009
#> 7042      England   E12000007                   London   E09000009
#> 7043      England   E12000007                   London   E09000010
#> 7044      England   E12000007                   London   E09000010
#> 7045      England   E12000007                   London   E09000010
#> 7046      England   E12000007                   London   E09000011
#> 7047      England   E12000007                   London   E09000011
#> 7048      England   E12000007                   London   E09000011
#> 7049      England   E12000007                   London   E09000012
#> 7050      England   E12000007                   London   E09000012
#> 7051      England   E12000007                   London   E09000012
#> 7052      England   E12000007                   London   E09000013
#> 7053      England   E12000007                   London   E09000013
#> 7054      England   E12000007                   London   E09000013
#> 7055      England   E12000007                   London   E09000014
#> 7056      England   E12000007                   London   E09000014
#> 7057      England   E12000007                   London   E09000014
#> 7058      England   E12000007                   London   E09000015
#> 7059      England   E12000007                   London   E09000015
#> 7060      England   E12000007                   London   E09000015
#> 7061      England   E12000007                   London   E09000016
#> 7062      England   E12000007                   London   E09000016
#> 7063      England   E12000007                   London   E09000016
#> 7064      England   E12000007                   London   E09000017
#> 7065      England   E12000007                   London   E09000017
#> 7066      England   E12000007                   London   E09000017
#> 7067      England   E12000007                   London   E09000018
#> 7068      England   E12000007                   London   E09000018
#> 7069      England   E12000007                   London   E09000018
#> 7070      England   E12000007                   London   E09000019
#> 7071      England   E12000007                   London   E09000019
#> 7072      England   E12000007                   London   E09000019
#> 7073      England   E12000007                   London   E09000020
#> 7074      England   E12000007                   London   E09000020
#> 7075      England   E12000007                   London   E09000020
#> 7076      England   E12000007                   London   E09000021
#> 7077      England   E12000007                   London   E09000021
#> 7078      England   E12000007                   London   E09000021
#> 7079      England   E12000007                   London   E09000022
#> 7080      England   E12000007                   London   E09000022
#> 7081      England   E12000007                   London   E09000022
#> 7082      England   E12000007                   London   E09000023
#> 7083      England   E12000007                   London   E09000023
#> 7084      England   E12000007                   London   E09000023
#> 7085      England   E12000007                   London   E09000024
#> 7086      England   E12000007                   London   E09000024
#> 7087      England   E12000007                   London   E09000024
#> 7088      England   E12000007                   London   E09000025
#> 7089      England   E12000007                   London   E09000025
#> 7090      England   E12000007                   London   E09000025
#> 7091      England   E12000007                   London   E09000026
#> 7092      England   E12000007                   London   E09000026
#> 7093      England   E12000007                   London   E09000026
#> 7094      England   E12000007                   London   E09000027
#> 7095      England   E12000007                   London   E09000027
#> 7096      England   E12000007                   London   E09000027
#> 7097      England   E12000007                   London   E09000028
#> 7098      England   E12000007                   London   E09000028
#> 7099      England   E12000007                   London   E09000028
#> 7100      England   E12000007                   London   E09000029
#> 7101      England   E12000007                   London   E09000029
#> 7102      England   E12000007                   London   E09000029
#> 7103      England   E12000007                   London   E09000030
#> 7104      England   E12000007                   London   E09000030
#> 7105      England   E12000007                   London   E09000030
#> 7106      England   E12000007                   London   E09000031
#> 7107      England   E12000007                   London   E09000031
#> 7108      England   E12000007                   London   E09000031
#> 7109      England   E12000007                   London   E09000032
#> 7110      England   E12000007                   London   E09000032
#> 7111      England   E12000007                   London   E09000032
#> 7112      England   E12000007                   London   E09000033
#> 7113      England   E12000007                   London   E09000033
#> 7114      England   E12000007                   London   E09000033
#> 7115      England   E12000008               South East        <NA>
#> 7116      England   E12000008               South East        <NA>
#> 7117      England   E12000008               South East        <NA>
#> 7118      England   E12000008               South East        <NA>
#> 7119      England   E12000008               South East   E06000035
#> 7120      England   E12000008               South East   E06000035
#> 7121      England   E12000008               South East   E06000035
#> 7122      England   E12000008               South East   E06000036
#> 7123      England   E12000008               South East   E06000036
#> 7124      England   E12000008               South East   E06000036
#> 7125      England   E12000008               South East   E06000037
#> 7126      England   E12000008               South East   E06000037
#> 7127      England   E12000008               South East   E06000037
#> 7128      England   E12000008               South East   E06000038
#> 7129      England   E12000008               South East   E06000038
#> 7130      England   E12000008               South East   E06000038
#> 7131      England   E12000008               South East   E06000039
#> 7132      England   E12000008               South East   E06000039
#> 7133      England   E12000008               South East   E06000039
#> 7134      England   E12000008               South East   E06000040
#> 7135      England   E12000008               South East   E06000040
#> 7136      England   E12000008               South East   E06000040
#> 7137      England   E12000008               South East   E06000041
#> 7138      England   E12000008               South East   E06000041
#> 7139      England   E12000008               South East   E06000041
#> 7140      England   E12000008               South East   E06000042
#> 7141      England   E12000008               South East   E06000042
#> 7142      England   E12000008               South East   E06000042
#> 7143      England   E12000008               South East   E06000043
#> 7144      England   E12000008               South East   E06000043
#> 7145      England   E12000008               South East   E06000043
#> 7146      England   E12000008               South East   E06000044
#> 7147      England   E12000008               South East   E06000044
#> 7148      England   E12000008               South East   E06000044
#> 7149      England   E12000008               South East   E06000045
#> 7150      England   E12000008               South East   E06000045
#> 7151      England   E12000008               South East   E06000045
#> 7152      England   E12000008               South East   E06000046
#> 7153      England   E12000008               South East   E06000046
#> 7154      England   E12000008               South East   E06000046
#> 7155      England   E12000008               South East   E06000060
#> 7156      England   E12000008               South East   E06000060
#> 7157      England   E12000008               South East   E06000060
#> 7158      England   E12000008               South East   E10000011
#> 7159      England   E12000008               South East   E10000011
#> 7160      England   E12000008               South East   E10000011
#> 7161      England   E12000008               South East   E10000014
#> 7162      England   E12000008               South East   E10000014
#> 7163      England   E12000008               South East   E10000014
#> 7164      England   E12000008               South East   E10000016
#> 7165      England   E12000008               South East   E10000016
#> 7166      England   E12000008               South East   E10000016
#> 7167      England   E12000008               South East   E10000025
#> 7168      England   E12000008               South East   E10000025
#> 7169      England   E12000008               South East   E10000025
#> 7170      England   E12000008               South East   E10000030
#> 7171      England   E12000008               South East   E10000030
#> 7172      England   E12000008               South East   E10000030
#> 7173      England   E12000008               South East   E10000032
#> 7174      England   E12000008               South East   E10000032
#> 7175      England   E12000008               South East   E10000032
#> 7176      England   E12000009               South West        <NA>
#> 7177      England   E12000009               South West        <NA>
#> 7178      England   E12000009               South West        <NA>
#> 7179      England   E12000009               South West        <NA>
#> 7180      England   E12000009               South West   E06000022
#> 7181      England   E12000009               South West   E06000022
#> 7182      England   E12000009               South West   E06000022
#> 7183      England   E12000009               South West   E06000023
#> 7184      England   E12000009               South West   E06000023
#> 7185      England   E12000009               South West   E06000023
#> 7186      England   E12000009               South West   E06000024
#> 7187      England   E12000009               South West   E06000024
#> 7188      England   E12000009               South West   E06000024
#> 7189      England   E12000009               South West   E06000025
#> 7190      England   E12000009               South West   E06000025
#> 7191      England   E12000009               South West   E06000025
#> 7192      England   E12000009               South West   E06000026
#> 7193      England   E12000009               South West   E06000026
#> 7194      England   E12000009               South West   E06000026
#> 7195      England   E12000009               South West   E06000027
#> 7196      England   E12000009               South West   E06000027
#> 7197      England   E12000009               South West   E06000027
#> 7198      England   E12000009               South West   E06000030
#> 7199      England   E12000009               South West   E06000030
#> 7200      England   E12000009               South West   E06000030
#> 7201      England   E12000009               South West   E06000052
#> 7202      England   E12000009               South West   E06000052
#> 7203      England   E12000009               South West   E06000052
#> 7204      England   E12000009               South West   E06000053
#> 7205      England   E12000009               South West   E06000054
#> 7206      England   E12000009               South West   E06000054
#> 7207      England   E12000009               South West   E06000054
#> 7208      England   E12000009               South West   E06000058
#> 7209      England   E12000009               South West   E06000058
#> 7210      England   E12000009               South West   E06000058
#> 7211      England   E12000009               South West   E06000059
#> 7212      England   E12000009               South West   E06000059
#> 7213      England   E12000009               South West   E06000059
#> 7214      England   E12000009               South West   E06000066
#> 7215      England   E12000009               South West   E06000066
#> 7216      England   E12000009               South West   E06000066
#> 7217      England   E12000009               South West   E10000008
#> 7218      England   E12000009               South West   E10000008
#> 7219      England   E12000009               South West   E10000008
#> 7220      England   E12000009               South West   E10000013
#> 7221      England   E12000009               South West   E10000013
#> 7222      England   E12000009               South West   E10000013
#>                                  la_name old_la_code education_phase
#> 1                                   <NA>          NA     All schools
#> 2                                   <NA>          NA         Primary
#> 3                                   <NA>          NA       Secondary
#> 4                                   <NA>          NA         Special
#> 5                                   <NA>          NA     All schools
#> 6                                   <NA>          NA         Primary
#> 7                                   <NA>          NA       Secondary
#> 8                                   <NA>          NA         Special
#> 9                             Hartlepool         805     All schools
#> 10                            Hartlepool         805         Primary
#> 11                            Hartlepool         805       Secondary
#> 12                            Hartlepool         805         Special
#> 13                         Middlesbrough         806     All schools
#> 14                         Middlesbrough         806         Primary
#> 15                         Middlesbrough         806       Secondary
#> 16                         Middlesbrough         806         Special
#> 17                  Redcar and Cleveland         807     All schools
#> 18                  Redcar and Cleveland         807         Primary
#> 19                  Redcar and Cleveland         807       Secondary
#> 20                  Redcar and Cleveland         807         Special
#> 21                      Stockton-on-Tees         808     All schools
#> 22                      Stockton-on-Tees         808         Primary
#> 23                      Stockton-on-Tees         808       Secondary
#> 24                      Stockton-on-Tees         808         Special
#> 25                            Darlington         841     All schools
#> 26                            Darlington         841         Primary
#> 27                            Darlington         841       Secondary
#> 28                            Darlington         841         Special
#> 29                         County Durham         840     All schools
#> 30                         County Durham         840         Primary
#> 31                         County Durham         840       Secondary
#> 32                         County Durham         840         Special
#> 33                        Northumberland         929     All schools
#> 34                        Northumberland         929         Primary
#> 35                        Northumberland         929       Secondary
#> 36                        Northumberland         929         Special
#> 37                   Newcastle upon Tyne         391     All schools
#> 38                   Newcastle upon Tyne         391         Primary
#> 39                   Newcastle upon Tyne         391       Secondary
#> 40                   Newcastle upon Tyne         391         Special
#> 41                        North Tyneside         392     All schools
#> 42                        North Tyneside         392         Primary
#> 43                        North Tyneside         392       Secondary
#> 44                        North Tyneside         392         Special
#> 45                        South Tyneside         393     All schools
#> 46                        South Tyneside         393         Primary
#> 47                        South Tyneside         393       Secondary
#> 48                        South Tyneside         393         Special
#> 49                            Sunderland         394     All schools
#> 50                            Sunderland         394         Primary
#> 51                            Sunderland         394       Secondary
#> 52                            Sunderland         394         Special
#> 53                             Gateshead         390     All schools
#> 54                             Gateshead         390         Primary
#> 55                             Gateshead         390       Secondary
#> 56                             Gateshead         390         Special
#> 57                                  <NA>          NA     All schools
#> 58                                  <NA>          NA         Primary
#> 59                                  <NA>          NA       Secondary
#> 60                                  <NA>          NA         Special
#> 61                                Halton         876     All schools
#> 62                                Halton         876         Primary
#> 63                                Halton         876       Secondary
#> 64                                Halton         876         Special
#> 65                            Warrington         877     All schools
#> 66                            Warrington         877         Primary
#> 67                            Warrington         877       Secondary
#> 68                            Warrington         877         Special
#> 69                 Blackburn with Darwen         889     All schools
#> 70                 Blackburn with Darwen         889         Primary
#> 71                 Blackburn with Darwen         889       Secondary
#> 72                 Blackburn with Darwen         889         Special
#> 73                             Blackpool         890     All schools
#> 74                             Blackpool         890         Primary
#> 75                             Blackpool         890       Secondary
#> 76                             Blackpool         890         Special
#> 77                         Cheshire East         895     All schools
#> 78                         Cheshire East         895         Primary
#> 79                         Cheshire East         895       Secondary
#> 80                         Cheshire East         895         Special
#> 81             Cheshire West and Chester         896     All schools
#> 82             Cheshire West and Chester         896         Primary
#> 83             Cheshire West and Chester         896       Secondary
#> 84             Cheshire West and Chester         896         Special
#> 85                            Cumberland         942     All schools
#> 86                            Cumberland         942         Primary
#> 87                            Cumberland         942       Secondary
#> 88                            Cumberland         942         Special
#> 89               Westmorland and Furness         943     All schools
#> 90               Westmorland and Furness         943         Primary
#> 91               Westmorland and Furness         943       Secondary
#> 92               Westmorland and Furness         943         Special
#> 93                                Bolton         350     All schools
#> 94                                Bolton         350         Primary
#> 95                                Bolton         350       Secondary
#> 96                                Bolton         350         Special
#> 97                                  Bury         351     All schools
#> 98                                  Bury         351         Primary
#> 99                                  Bury         351       Secondary
#> 100                                 Bury         351         Special
#> 101                           Manchester         352     All schools
#> 102                           Manchester         352         Primary
#> 103                           Manchester         352       Secondary
#> 104                           Manchester         352         Special
#> 105                               Oldham         353     All schools
#> 106                               Oldham         353         Primary
#> 107                               Oldham         353       Secondary
#> 108                               Oldham         353         Special
#> 109                             Rochdale         354     All schools
#> 110                             Rochdale         354         Primary
#> 111                             Rochdale         354       Secondary
#> 112                             Rochdale         354         Special
#> 113                              Salford         355     All schools
#> 114                              Salford         355         Primary
#> 115                              Salford         355       Secondary
#> 116                              Salford         355         Special
#> 117                            Stockport         356     All schools
#> 118                            Stockport         356         Primary
#> 119                            Stockport         356       Secondary
#> 120                            Stockport         356         Special
#> 121                             Tameside         357     All schools
#> 122                             Tameside         357         Primary
#> 123                             Tameside         357       Secondary
#> 124                             Tameside         357         Special
#> 125                             Trafford         358     All schools
#> 126                             Trafford         358         Primary
#> 127                             Trafford         358       Secondary
#> 128                             Trafford         358         Special
#> 129                                Wigan         359     All schools
#> 130                                Wigan         359         Primary
#> 131                                Wigan         359       Secondary
#> 132                                Wigan         359         Special
#> 133                             Knowsley         340     All schools
#> 134                             Knowsley         340         Primary
#> 135                             Knowsley         340       Secondary
#> 136                             Knowsley         340         Special
#> 137                            Liverpool         341     All schools
#> 138                            Liverpool         341         Primary
#> 139                            Liverpool         341       Secondary
#> 140                            Liverpool         341         Special
#> 141                           St. Helens         342     All schools
#> 142                           St. Helens         342         Primary
#> 143                           St. Helens         342       Secondary
#> 144                           St. Helens         342         Special
#> 145                               Sefton         343     All schools
#> 146                               Sefton         343         Primary
#> 147                               Sefton         343       Secondary
#> 148                               Sefton         343         Special
#> 149                               Wirral         344     All schools
#> 150                               Wirral         344         Primary
#> 151                               Wirral         344       Secondary
#> 152                               Wirral         344         Special
#> 153                           Lancashire         888     All schools
#> 154                           Lancashire         888         Primary
#> 155                           Lancashire         888       Secondary
#> 156                           Lancashire         888         Special
#> 157                                 <NA>          NA     All schools
#> 158                                 <NA>          NA         Primary
#> 159                                 <NA>          NA       Secondary
#> 160                                 <NA>          NA         Special
#> 161          Kingston upon Hull, City of         810     All schools
#> 162          Kingston upon Hull, City of         810         Primary
#> 163          Kingston upon Hull, City of         810       Secondary
#> 164          Kingston upon Hull, City of         810         Special
#> 165             East Riding of Yorkshire         811     All schools
#> 166             East Riding of Yorkshire         811         Primary
#> 167             East Riding of Yorkshire         811       Secondary
#> 168             East Riding of Yorkshire         811         Special
#> 169              North East Lincolnshire         812     All schools
#> 170              North East Lincolnshire         812         Primary
#> 171              North East Lincolnshire         812       Secondary
#> 172              North East Lincolnshire         812         Special
#> 173                   North Lincolnshire         813     All schools
#> 174                   North Lincolnshire         813         Primary
#> 175                   North Lincolnshire         813       Secondary
#> 176                   North Lincolnshire         813         Special
#> 177                                 York         816     All schools
#> 178                                 York         816         Primary
#> 179                                 York         816       Secondary
#> 180                                 York         816         Special
#> 181                      North Yorkshire         815     All schools
#> 182                      North Yorkshire         815         Primary
#> 183                      North Yorkshire         815       Secondary
#> 184                      North Yorkshire         815         Special
#> 185                             Barnsley         370     All schools
#> 186                             Barnsley         370         Primary
#> 187                             Barnsley         370       Secondary
#> 188                             Barnsley         370         Special
#> 189                            Doncaster         371     All schools
#> 190                            Doncaster         371         Primary
#> 191                            Doncaster         371       Secondary
#> 192                            Doncaster         371         Special
#> 193                            Rotherham         372     All schools
#> 194                            Rotherham         372         Primary
#> 195                            Rotherham         372       Secondary
#> 196                            Rotherham         372         Special
#> 197                            Sheffield         373     All schools
#> 198                            Sheffield         373         Primary
#> 199                            Sheffield         373       Secondary
#> 200                            Sheffield         373         Special
#> 201                             Bradford         380     All schools
#> 202                             Bradford         380         Primary
#> 203                             Bradford         380       Secondary
#> 204                             Bradford         380         Special
#> 205                           Calderdale         381     All schools
#> 206                           Calderdale         381         Primary
#> 207                           Calderdale         381       Secondary
#> 208                           Calderdale         381         Special
#> 209                             Kirklees         382     All schools
#> 210                             Kirklees         382         Primary
#> 211                             Kirklees         382       Secondary
#> 212                             Kirklees         382         Special
#> 213                                Leeds         383     All schools
#> 214                                Leeds         383         Primary
#> 215                                Leeds         383       Secondary
#> 216                                Leeds         383         Special
#> 217                            Wakefield         384     All schools
#> 218                            Wakefield         384         Primary
#> 219                            Wakefield         384       Secondary
#> 220                            Wakefield         384         Special
#> 221                                 <NA>          NA     All schools
#> 222                                 <NA>          NA         Primary
#> 223                                 <NA>          NA       Secondary
#> 224                                 <NA>          NA         Special
#> 225                                Derby         831     All schools
#> 226                                Derby         831         Primary
#> 227                                Derby         831       Secondary
#> 228                                Derby         831         Special
#> 229                            Leicester         856     All schools
#> 230                            Leicester         856         Primary
#> 231                            Leicester         856       Secondary
#> 232                            Leicester         856         Special
#> 233                              Rutland         857     All schools
#> 234                              Rutland         857         Primary
#> 235                              Rutland         857       Secondary
#> 236                           Nottingham         892     All schools
#> 237                           Nottingham         892         Primary
#> 238                           Nottingham         892       Secondary
#> 239                           Nottingham         892         Special
#> 240               North Northamptonshire         940     All schools
#> 241               North Northamptonshire         940         Primary
#> 242               North Northamptonshire         940       Secondary
#> 243               North Northamptonshire         940         Special
#> 244                West Northamptonshire         941     All schools
#> 245                West Northamptonshire         941         Primary
#> 246                West Northamptonshire         941       Secondary
#> 247                West Northamptonshire         941         Special
#> 248                           Derbyshire         830     All schools
#> 249                           Derbyshire         830         Primary
#> 250                           Derbyshire         830       Secondary
#> 251                           Derbyshire         830         Special
#> 252                       Leicestershire         855     All schools
#> 253                       Leicestershire         855         Primary
#> 254                       Leicestershire         855       Secondary
#> 255                       Leicestershire         855         Special
#> 256                         Lincolnshire         925     All schools
#> 257                         Lincolnshire         925         Primary
#> 258                         Lincolnshire         925       Secondary
#> 259                         Lincolnshire         925         Special
#> 260                      Nottinghamshire         891     All schools
#> 261                      Nottinghamshire         891         Primary
#> 262                      Nottinghamshire         891       Secondary
#> 263                      Nottinghamshire         891         Special
#> 264                                 <NA>          NA     All schools
#> 265                                 <NA>          NA         Primary
#> 266                                 <NA>          NA       Secondary
#> 267                                 <NA>          NA         Special
#> 268             Herefordshire, County of         884     All schools
#> 269             Herefordshire, County of         884         Primary
#> 270             Herefordshire, County of         884       Secondary
#> 271             Herefordshire, County of         884         Special
#> 272                   Telford and Wrekin         894     All schools
#> 273                   Telford and Wrekin         894         Primary
#> 274                   Telford and Wrekin         894       Secondary
#> 275                   Telford and Wrekin         894         Special
#> 276                       Stoke-on-Trent         861     All schools
#> 277                       Stoke-on-Trent         861         Primary
#> 278                       Stoke-on-Trent         861       Secondary
#> 279                       Stoke-on-Trent         861         Special
#> 280                           Shropshire         893     All schools
#> 281                           Shropshire         893         Primary
#> 282                           Shropshire         893       Secondary
#> 283                           Shropshire         893         Special
#> 284                           Birmingham         330     All schools
#> 285                           Birmingham         330         Primary
#> 286                           Birmingham         330       Secondary
#> 287                           Birmingham         330         Special
#> 288                             Coventry         331     All schools
#> 289                             Coventry         331         Primary
#> 290                             Coventry         331       Secondary
#> 291                             Coventry         331         Special
#> 292                               Dudley         332     All schools
#> 293                               Dudley         332         Primary
#> 294                               Dudley         332       Secondary
#> 295                               Dudley         332         Special
#> 296                             Sandwell         333     All schools
#> 297                             Sandwell         333         Primary
#> 298                             Sandwell         333       Secondary
#> 299                             Sandwell         333         Special
#> 300                             Solihull         334     All schools
#> 301                             Solihull         334         Primary
#> 302                             Solihull         334       Secondary
#> 303                             Solihull         334         Special
#> 304                              Walsall         335     All schools
#> 305                              Walsall         335         Primary
#> 306                              Walsall         335       Secondary
#> 307                              Walsall         335         Special
#> 308                        Wolverhampton         336     All schools
#> 309                        Wolverhampton         336         Primary
#> 310                        Wolverhampton         336       Secondary
#> 311                        Wolverhampton         336         Special
#> 312                        Staffordshire         860     All schools
#> 313                        Staffordshire         860         Primary
#> 314                        Staffordshire         860       Secondary
#> 315                        Staffordshire         860         Special
#> 316                         Warwickshire         937     All schools
#> 317                         Warwickshire         937         Primary
#> 318                         Warwickshire         937       Secondary
#> 319                         Warwickshire         937         Special
#> 320                       Worcestershire         885     All schools
#> 321                       Worcestershire         885         Primary
#> 322                       Worcestershire         885       Secondary
#> 323                       Worcestershire         885         Special
#> 324                                 <NA>          NA     All schools
#> 325                                 <NA>          NA         Primary
#> 326                                 <NA>          NA       Secondary
#> 327                                 <NA>          NA         Special
#> 328                         Peterborough         874     All schools
#> 329                         Peterborough         874         Primary
#> 330                         Peterborough         874       Secondary
#> 331                         Peterborough         874         Special
#> 332                                Luton         821     All schools
#> 333                                Luton         821         Primary
#> 334                                Luton         821       Secondary
#> 335                                Luton         821         Special
#> 336                      Southend-on-Sea         882     All schools
#> 337                      Southend-on-Sea         882         Primary
#> 338                      Southend-on-Sea         882       Secondary
#> 339                      Southend-on-Sea         882         Special
#> 340                             Thurrock         883     All schools
#> 341                             Thurrock         883         Primary
#> 342                             Thurrock         883       Secondary
#> 343                             Thurrock         883         Special
#> 344                              Bedford         822     All schools
#> 345                              Bedford         822         Primary
#> 346                              Bedford         822       Secondary
#> 347                              Bedford         822         Special
#> 348                 Central Bedfordshire         823     All schools
#> 349                 Central Bedfordshire         823         Primary
#> 350                 Central Bedfordshire         823       Secondary
#> 351                 Central Bedfordshire         823         Special
#> 352                       Cambridgeshire         873     All schools
#> 353                       Cambridgeshire         873         Primary
#> 354                       Cambridgeshire         873       Secondary
#> 355                       Cambridgeshire         873         Special
#> 356                                Essex         881     All schools
#> 357                                Essex         881         Primary
#> 358                                Essex         881       Secondary
#> 359                                Essex         881         Special
#> 360                        Hertfordshire         919     All schools
#> 361                        Hertfordshire         919         Primary
#> 362                        Hertfordshire         919       Secondary
#> 363                        Hertfordshire         919         Special
#> 364                              Norfolk         926     All schools
#> 365                              Norfolk         926         Primary
#> 366                              Norfolk         926       Secondary
#> 367                              Norfolk         926         Special
#> 368                              Suffolk         935     All schools
#> 369                              Suffolk         935         Primary
#> 370                              Suffolk         935       Secondary
#> 371                              Suffolk         935         Special
#> 372                                 <NA>          NA     All schools
#> 373                                 <NA>          NA         Primary
#> 374                                 <NA>          NA       Secondary
#> 375                                 <NA>          NA         Special
#> 376                       City of London         201     All schools
#> 377                       City of London         201         Primary
#> 378                 Barking and Dagenham         301     All schools
#> 379                 Barking and Dagenham         301         Primary
#> 380                 Barking and Dagenham         301       Secondary
#> 381                 Barking and Dagenham         301         Special
#> 382                               Barnet         302     All schools
#> 383                               Barnet         302         Primary
#> 384                               Barnet         302       Secondary
#> 385                               Barnet         302         Special
#> 386                               Bexley         303     All schools
#> 387                               Bexley         303         Primary
#> 388                               Bexley         303       Secondary
#> 389                               Bexley         303         Special
#> 390                                Brent         304     All schools
#> 391                                Brent         304         Primary
#> 392                                Brent         304       Secondary
#> 393                                Brent         304         Special
#> 394                              Bromley         305     All schools
#> 395                              Bromley         305         Primary
#> 396                              Bromley         305       Secondary
#> 397                              Bromley         305         Special
#> 398                               Camden         202     All schools
#> 399                               Camden         202         Primary
#> 400                               Camden         202       Secondary
#> 401                               Camden         202         Special
#> 402                              Croydon         306     All schools
#> 403                              Croydon         306         Primary
#> 404                              Croydon         306       Secondary
#> 405                              Croydon         306         Special
#> 406                               Ealing         307     All schools
#> 407                               Ealing         307         Primary
#> 408                               Ealing         307       Secondary
#> 409                               Ealing         307         Special
#> 410                              Enfield         308     All schools
#> 411                              Enfield         308         Primary
#> 412                              Enfield         308       Secondary
#> 413                              Enfield         308         Special
#> 414                            Greenwich         203     All schools
#> 415                            Greenwich         203         Primary
#> 416                            Greenwich         203       Secondary
#> 417                            Greenwich         203         Special
#> 418                              Hackney         204     All schools
#> 419                              Hackney         204         Primary
#> 420                              Hackney         204       Secondary
#> 421                              Hackney         204         Special
#> 422               Hammersmith and Fulham         205     All schools
#> 423               Hammersmith and Fulham         205         Primary
#> 424               Hammersmith and Fulham         205       Secondary
#> 425               Hammersmith and Fulham         205         Special
#> 426                             Haringey         309     All schools
#> 427                             Haringey         309         Primary
#> 428                             Haringey         309       Secondary
#> 429                             Haringey         309         Special
#> 430                               Harrow         310     All schools
#> 431                               Harrow         310         Primary
#> 432                               Harrow         310       Secondary
#> 433                               Harrow         310         Special
#> 434                             Havering         311     All schools
#> 435                             Havering         311         Primary
#> 436                             Havering         311       Secondary
#> 437                             Havering         311         Special
#> 438                           Hillingdon         312     All schools
#> 439                           Hillingdon         312         Primary
#> 440                           Hillingdon         312       Secondary
#> 441                           Hillingdon         312         Special
#> 442                             Hounslow         313     All schools
#> 443                             Hounslow         313         Primary
#> 444                             Hounslow         313       Secondary
#> 445                             Hounslow         313         Special
#> 446                            Islington         206     All schools
#> 447                            Islington         206         Primary
#> 448                            Islington         206       Secondary
#> 449                            Islington         206         Special
#> 450               Kensington and Chelsea         207     All schools
#> 451               Kensington and Chelsea         207         Primary
#> 452               Kensington and Chelsea         207       Secondary
#> 453               Kensington and Chelsea         207         Special
#> 454                 Kingston upon Thames         314     All schools
#> 455                 Kingston upon Thames         314         Primary
#> 456                 Kingston upon Thames         314       Secondary
#> 457                 Kingston upon Thames         314         Special
#> 458                              Lambeth         208     All schools
#> 459                              Lambeth         208         Primary
#> 460                              Lambeth         208       Secondary
#> 461                              Lambeth         208         Special
#> 462                             Lewisham         209     All schools
#> 463                             Lewisham         209         Primary
#> 464                             Lewisham         209       Secondary
#> 465                             Lewisham         209         Special
#> 466                               Merton         315     All schools
#> 467                               Merton         315         Primary
#> 468                               Merton         315       Secondary
#> 469                               Merton         315         Special
#> 470                               Newham         316     All schools
#> 471                               Newham         316         Primary
#> 472                               Newham         316       Secondary
#> 473                               Newham         316         Special
#> 474                            Redbridge         317     All schools
#> 475                            Redbridge         317         Primary
#> 476                            Redbridge         317       Secondary
#> 477                            Redbridge         317         Special
#> 478                 Richmond upon Thames         318     All schools
#> 479                 Richmond upon Thames         318         Primary
#> 480                 Richmond upon Thames         318       Secondary
#> 481                 Richmond upon Thames         318         Special
#> 482                            Southwark         210     All schools
#> 483                            Southwark         210         Primary
#> 484                            Southwark         210       Secondary
#> 485                            Southwark         210         Special
#> 486                               Sutton         319     All schools
#> 487                               Sutton         319         Primary
#> 488                               Sutton         319       Secondary
#> 489                               Sutton         319         Special
#> 490                        Tower Hamlets         211     All schools
#> 491                        Tower Hamlets         211         Primary
#> 492                        Tower Hamlets         211       Secondary
#> 493                        Tower Hamlets         211         Special
#> 494                       Waltham Forest         320     All schools
#> 495                       Waltham Forest         320         Primary
#> 496                       Waltham Forest         320       Secondary
#> 497                       Waltham Forest         320         Special
#> 498                           Wandsworth         212     All schools
#> 499                           Wandsworth         212         Primary
#> 500                           Wandsworth         212       Secondary
#> 501                           Wandsworth         212         Special
#> 502                          Westminster         213     All schools
#> 503                          Westminster         213         Primary
#> 504                          Westminster         213       Secondary
#> 505                          Westminster         213         Special
#> 506                                 <NA>          NA     All schools
#> 507                                 <NA>          NA         Primary
#> 508                                 <NA>          NA       Secondary
#> 509                                 <NA>          NA         Special
#> 510                               Medway         887     All schools
#> 511                               Medway         887         Primary
#> 512                               Medway         887       Secondary
#> 513                               Medway         887         Special
#> 514                     Bracknell Forest         867     All schools
#> 515                     Bracknell Forest         867         Primary
#> 516                     Bracknell Forest         867       Secondary
#> 517                     Bracknell Forest         867         Special
#> 518                       West Berkshire         869     All schools
#> 519                       West Berkshire         869         Primary
#> 520                       West Berkshire         869       Secondary
#> 521                       West Berkshire         869         Special
#> 522                              Reading         870     All schools
#> 523                              Reading         870         Primary
#> 524                              Reading         870       Secondary
#> 525                              Reading         870         Special
#> 526                               Slough         871     All schools
#> 527                               Slough         871         Primary
#> 528                               Slough         871       Secondary
#> 529                               Slough         871         Special
#> 530               Windsor and Maidenhead         868     All schools
#> 531               Windsor and Maidenhead         868         Primary
#> 532               Windsor and Maidenhead         868       Secondary
#> 533               Windsor and Maidenhead         868         Special
#> 534                            Wokingham         872     All schools
#> 535                            Wokingham         872         Primary
#> 536                            Wokingham         872       Secondary
#> 537                            Wokingham         872         Special
#> 538                        Milton Keynes         826     All schools
#> 539                        Milton Keynes         826         Primary
#> 540                        Milton Keynes         826       Secondary
#> 541                        Milton Keynes         826         Special
#> 542                    Brighton and Hove         846     All schools
#> 543                    Brighton and Hove         846         Primary
#> 544                    Brighton and Hove         846       Secondary
#> 545                    Brighton and Hove         846         Special
#> 546                           Portsmouth         851     All schools
#> 547                           Portsmouth         851         Primary
#> 548                           Portsmouth         851       Secondary
#> 549                           Portsmouth         851         Special
#> 550                          Southampton         852     All schools
#> 551                          Southampton         852         Primary
#> 552                          Southampton         852       Secondary
#> 553                          Southampton         852         Special
#> 554                        Isle of Wight         921     All schools
#> 555                        Isle of Wight         921         Primary
#> 556                        Isle of Wight         921       Secondary
#> 557                        Isle of Wight         921         Special
#> 558                      Buckinghamshire         825     All schools
#> 559                      Buckinghamshire         825         Primary
#> 560                      Buckinghamshire         825       Secondary
#> 561                      Buckinghamshire         825         Special
#> 562                          East Sussex         845     All schools
#> 563                          East Sussex         845         Primary
#> 564                          East Sussex         845       Secondary
#> 565                          East Sussex         845         Special
#> 566                            Hampshire         850     All schools
#> 567                            Hampshire         850         Primary
#> 568                            Hampshire         850       Secondary
#> 569                            Hampshire         850         Special
#> 570                                 Kent         886     All schools
#> 571                                 Kent         886         Primary
#> 572                                 Kent         886       Secondary
#> 573                                 Kent         886         Special
#> 574                          Oxfordshire         931     All schools
#> 575                          Oxfordshire         931         Primary
#> 576                          Oxfordshire         931       Secondary
#> 577                          Oxfordshire         931         Special
#> 578                               Surrey         936     All schools
#> 579                               Surrey         936         Primary
#> 580                               Surrey         936       Secondary
#> 581                               Surrey         936         Special
#> 582                          West Sussex         938     All schools
#> 583                          West Sussex         938         Primary
#> 584                          West Sussex         938       Secondary
#> 585                          West Sussex         938         Special
#> 586                                 <NA>          NA     All schools
#> 587                                 <NA>          NA         Primary
#> 588                                 <NA>          NA       Secondary
#> 589                                 <NA>          NA         Special
#> 590         Bath and North East Somerset         800     All schools
#> 591         Bath and North East Somerset         800         Primary
#> 592         Bath and North East Somerset         800       Secondary
#> 593         Bath and North East Somerset         800         Special
#> 594                     Bristol, City of         801     All schools
#> 595                     Bristol, City of         801         Primary
#> 596                     Bristol, City of         801       Secondary
#> 597                     Bristol, City of         801         Special
#> 598                       North Somerset         802     All schools
#> 599                       North Somerset         802         Primary
#> 600                       North Somerset         802       Secondary
#> 601                       North Somerset         802         Special
#> 602                South Gloucestershire         803     All schools
#> 603                South Gloucestershire         803         Primary
#> 604                South Gloucestershire         803       Secondary
#> 605                South Gloucestershire         803         Special
#> 606                             Plymouth         879     All schools
#> 607                             Plymouth         879         Primary
#> 608                             Plymouth         879       Secondary
#> 609                             Plymouth         879         Special
#> 610                               Torbay         880     All schools
#> 611                               Torbay         880         Primary
#> 612                               Torbay         880       Secondary
#> 613                               Torbay         880         Special
#> 614                              Swindon         866     All schools
#> 615                              Swindon         866         Primary
#> 616                              Swindon         866       Secondary
#> 617                              Swindon         866         Special
#> 618                             Cornwall         908     All schools
#> 619                             Cornwall         908         Primary
#> 620                             Cornwall         908       Secondary
#> 621                             Cornwall         908         Special
#> 622                      Isles of Scilly         420     All schools
#> 623                      Isles of Scilly         420       Secondary
#> 624                            Wiltshire         865     All schools
#> 625                            Wiltshire         865         Primary
#> 626                            Wiltshire         865       Secondary
#> 627                            Wiltshire         865         Special
#> 628  Bournemouth, Christchurch and Poole         839     All schools
#> 629  Bournemouth, Christchurch and Poole         839         Primary
#> 630  Bournemouth, Christchurch and Poole         839       Secondary
#> 631  Bournemouth, Christchurch and Poole         839         Special
#> 632                               Dorset         838     All schools
#> 633                               Dorset         838         Primary
#> 634                               Dorset         838       Secondary
#> 635                               Dorset         838         Special
#> 636                             Somerset         933     All schools
#> 637                             Somerset         933         Primary
#> 638                             Somerset         933       Secondary
#> 639                             Somerset         933         Special
#> 640                                Devon         878     All schools
#> 641                                Devon         878         Primary
#> 642                                Devon         878       Secondary
#> 643                                Devon         878         Special
#> 644                      Gloucestershire         916     All schools
#> 645                      Gloucestershire         916         Primary
#> 646                      Gloucestershire         916       Secondary
#> 647                      Gloucestershire         916         Special
#> 648                                 <NA>          NA     All schools
#> 649                                 <NA>          NA         Primary
#> 650                                 <NA>          NA       Secondary
#> 651                                 <NA>          NA         Special
#> 652                                 <NA>          NA     All schools
#> 653                                 <NA>          NA         Primary
#> 654                                 <NA>          NA       Secondary
#> 655                                 <NA>          NA         Special
#> 656                           Hartlepool         805     All schools
#> 657                           Hartlepool         805         Primary
#> 658                           Hartlepool         805       Secondary
#> 659                           Hartlepool         805         Special
#> 660                        Middlesbrough         806     All schools
#> 661                        Middlesbrough         806         Primary
#> 662                        Middlesbrough         806       Secondary
#> 663                        Middlesbrough         806         Special
#> 664                 Redcar and Cleveland         807     All schools
#> 665                 Redcar and Cleveland         807         Primary
#> 666                 Redcar and Cleveland         807       Secondary
#> 667                 Redcar and Cleveland         807         Special
#> 668                     Stockton-on-Tees         808     All schools
#> 669                     Stockton-on-Tees         808         Primary
#> 670                     Stockton-on-Tees         808       Secondary
#> 671                     Stockton-on-Tees         808         Special
#> 672                           Darlington         841     All schools
#> 673                           Darlington         841         Primary
#> 674                           Darlington         841       Secondary
#> 675                           Darlington         841         Special
#> 676                        County Durham         840     All schools
#> 677                        County Durham         840         Primary
#> 678                        County Durham         840       Secondary
#> 679                        County Durham         840         Special
#> 680                       Northumberland         929     All schools
#> 681                       Northumberland         929         Primary
#> 682                       Northumberland         929       Secondary
#> 683                       Northumberland         929         Special
#> 684                  Newcastle upon Tyne         391     All schools
#> 685                  Newcastle upon Tyne         391         Primary
#> 686                  Newcastle upon Tyne         391       Secondary
#> 687                  Newcastle upon Tyne         391         Special
#> 688                       North Tyneside         392     All schools
#> 689                       North Tyneside         392         Primary
#> 690                       North Tyneside         392       Secondary
#> 691                       North Tyneside         392         Special
#> 692                       South Tyneside         393     All schools
#> 693                       South Tyneside         393         Primary
#> 694                       South Tyneside         393       Secondary
#> 695                       South Tyneside         393         Special
#> 696                           Sunderland         394     All schools
#> 697                           Sunderland         394         Primary
#> 698                           Sunderland         394       Secondary
#> 699                           Sunderland         394         Special
#> 700                            Gateshead         390     All schools
#> 701                            Gateshead         390         Primary
#> 702                            Gateshead         390       Secondary
#> 703                            Gateshead         390         Special
#> 704                                 <NA>          NA     All schools
#> 705                                 <NA>          NA         Primary
#> 706                                 <NA>          NA       Secondary
#> 707                                 <NA>          NA         Special
#> 708                               Halton         876     All schools
#> 709                               Halton         876         Primary
#> 710                               Halton         876       Secondary
#> 711                               Halton         876         Special
#> 712                           Warrington         877     All schools
#> 713                           Warrington         877         Primary
#> 714                           Warrington         877       Secondary
#> 715                           Warrington         877         Special
#> 716                Blackburn with Darwen         889     All schools
#> 717                Blackburn with Darwen         889         Primary
#> 718                Blackburn with Darwen         889       Secondary
#> 719                Blackburn with Darwen         889         Special
#> 720                            Blackpool         890     All schools
#> 721                            Blackpool         890         Primary
#> 722                            Blackpool         890       Secondary
#> 723                            Blackpool         890         Special
#> 724                        Cheshire East         895     All schools
#> 725                        Cheshire East         895         Primary
#> 726                        Cheshire East         895       Secondary
#> 727                        Cheshire East         895         Special
#> 728            Cheshire West and Chester         896     All schools
#> 729            Cheshire West and Chester         896         Primary
#> 730            Cheshire West and Chester         896       Secondary
#> 731            Cheshire West and Chester         896         Special
#> 732                           Cumberland         942     All schools
#> 733                           Cumberland         942         Primary
#> 734                           Cumberland         942       Secondary
#> 735                           Cumberland         942         Special
#> 736              Westmorland and Furness         943     All schools
#> 737              Westmorland and Furness         943         Primary
#> 738              Westmorland and Furness         943       Secondary
#> 739              Westmorland and Furness         943         Special
#> 740                               Bolton         350     All schools
#> 741                               Bolton         350         Primary
#> 742                               Bolton         350       Secondary
#> 743                               Bolton         350         Special
#> 744                                 Bury         351     All schools
#> 745                                 Bury         351         Primary
#> 746                                 Bury         351       Secondary
#> 747                                 Bury         351         Special
#> 748                           Manchester         352     All schools
#> 749                           Manchester         352         Primary
#> 750                           Manchester         352       Secondary
#> 751                           Manchester         352         Special
#> 752                               Oldham         353     All schools
#> 753                               Oldham         353         Primary
#> 754                               Oldham         353       Secondary
#> 755                               Oldham         353         Special
#> 756                             Rochdale         354     All schools
#> 757                             Rochdale         354         Primary
#> 758                             Rochdale         354       Secondary
#> 759                             Rochdale         354         Special
#> 760                              Salford         355     All schools
#> 761                              Salford         355         Primary
#> 762                              Salford         355       Secondary
#> 763                              Salford         355         Special
#> 764                            Stockport         356     All schools
#> 765                            Stockport         356         Primary
#> 766                            Stockport         356       Secondary
#> 767                            Stockport         356         Special
#> 768                             Tameside         357     All schools
#> 769                             Tameside         357         Primary
#> 770                             Tameside         357       Secondary
#> 771                             Tameside         357         Special
#> 772                             Trafford         358     All schools
#> 773                             Trafford         358         Primary
#> 774                             Trafford         358       Secondary
#> 775                             Trafford         358         Special
#> 776                                Wigan         359     All schools
#> 777                                Wigan         359         Primary
#> 778                                Wigan         359       Secondary
#> 779                                Wigan         359         Special
#> 780                             Knowsley         340     All schools
#> 781                             Knowsley         340         Primary
#> 782                             Knowsley         340       Secondary
#> 783                             Knowsley         340         Special
#> 784                            Liverpool         341     All schools
#> 785                            Liverpool         341         Primary
#> 786                            Liverpool         341       Secondary
#> 787                            Liverpool         341         Special
#> 788                           St. Helens         342     All schools
#> 789                           St. Helens         342         Primary
#> 790                           St. Helens         342       Secondary
#> 791                           St. Helens         342         Special
#> 792                               Sefton         343     All schools
#> 793                               Sefton         343         Primary
#> 794                               Sefton         343       Secondary
#> 795                               Sefton         343         Special
#> 796                               Wirral         344     All schools
#> 797                               Wirral         344         Primary
#> 798                               Wirral         344       Secondary
#> 799                               Wirral         344         Special
#> 800                           Lancashire         888     All schools
#> 801                           Lancashire         888         Primary
#> 802                           Lancashire         888       Secondary
#> 803                           Lancashire         888         Special
#> 804                                 <NA>          NA     All schools
#> 805                                 <NA>          NA         Primary
#> 806                                 <NA>          NA       Secondary
#> 807                                 <NA>          NA         Special
#> 808          Kingston upon Hull, City of         810     All schools
#> 809          Kingston upon Hull, City of         810         Primary
#> 810          Kingston upon Hull, City of         810       Secondary
#> 811          Kingston upon Hull, City of         810         Special
#> 812             East Riding of Yorkshire         811     All schools
#> 813             East Riding of Yorkshire         811         Primary
#> 814             East Riding of Yorkshire         811       Secondary
#> 815             East Riding of Yorkshire         811         Special
#> 816              North East Lincolnshire         812     All schools
#> 817              North East Lincolnshire         812         Primary
#> 818              North East Lincolnshire         812       Secondary
#> 819              North East Lincolnshire         812         Special
#> 820                   North Lincolnshire         813     All schools
#> 821                   North Lincolnshire         813         Primary
#> 822                   North Lincolnshire         813       Secondary
#> 823                   North Lincolnshire         813         Special
#> 824                                 York         816     All schools
#> 825                                 York         816         Primary
#> 826                                 York         816       Secondary
#> 827                                 York         816         Special
#> 828                      North Yorkshire         815     All schools
#> 829                      North Yorkshire         815         Primary
#> 830                      North Yorkshire         815       Secondary
#> 831                      North Yorkshire         815         Special
#> 832                             Barnsley         370     All schools
#> 833                             Barnsley         370         Primary
#> 834                             Barnsley         370       Secondary
#> 835                             Barnsley         370         Special
#> 836                            Doncaster         371     All schools
#> 837                            Doncaster         371         Primary
#> 838                            Doncaster         371       Secondary
#> 839                            Doncaster         371         Special
#> 840                            Rotherham         372     All schools
#> 841                            Rotherham         372         Primary
#> 842                            Rotherham         372       Secondary
#> 843                            Rotherham         372         Special
#> 844                            Sheffield         373     All schools
#> 845                            Sheffield         373         Primary
#> 846                            Sheffield         373       Secondary
#> 847                            Sheffield         373         Special
#> 848                             Bradford         380     All schools
#> 849                             Bradford         380         Primary
#> 850                             Bradford         380       Secondary
#> 851                             Bradford         380         Special
#> 852                           Calderdale         381     All schools
#> 853                           Calderdale         381         Primary
#> 854                           Calderdale         381       Secondary
#> 855                           Calderdale         381         Special
#> 856                             Kirklees         382     All schools
#> 857                             Kirklees         382         Primary
#> 858                             Kirklees         382       Secondary
#> 859                             Kirklees         382         Special
#> 860                                Leeds         383     All schools
#> 861                                Leeds         383         Primary
#> 862                                Leeds         383       Secondary
#> 863                                Leeds         383         Special
#> 864                            Wakefield         384     All schools
#> 865                            Wakefield         384         Primary
#> 866                            Wakefield         384       Secondary
#> 867                            Wakefield         384         Special
#> 868                                 <NA>          NA     All schools
#> 869                                 <NA>          NA         Primary
#> 870                                 <NA>          NA       Secondary
#> 871                                 <NA>          NA         Special
#> 872                                Derby         831     All schools
#> 873                                Derby         831         Primary
#> 874                                Derby         831       Secondary
#> 875                                Derby         831         Special
#> 876                            Leicester         856     All schools
#> 877                            Leicester         856         Primary
#> 878                            Leicester         856       Secondary
#> 879                            Leicester         856         Special
#> 880                              Rutland         857     All schools
#> 881                              Rutland         857         Primary
#> 882                              Rutland         857       Secondary
#> 883                           Nottingham         892     All schools
#> 884                           Nottingham         892         Primary
#> 885                           Nottingham         892       Secondary
#> 886                           Nottingham         892         Special
#> 887               North Northamptonshire         940     All schools
#> 888               North Northamptonshire         940         Primary
#> 889               North Northamptonshire         940       Secondary
#> 890               North Northamptonshire         940         Special
#> 891                West Northamptonshire         941     All schools
#> 892                West Northamptonshire         941         Primary
#> 893                West Northamptonshire         941       Secondary
#> 894                West Northamptonshire         941         Special
#> 895                           Derbyshire         830     All schools
#> 896                           Derbyshire         830         Primary
#> 897                           Derbyshire         830       Secondary
#> 898                           Derbyshire         830         Special
#> 899                       Leicestershire         855     All schools
#> 900                       Leicestershire         855         Primary
#> 901                       Leicestershire         855       Secondary
#> 902                       Leicestershire         855         Special
#> 903                         Lincolnshire         925     All schools
#> 904                         Lincolnshire         925         Primary
#> 905                         Lincolnshire         925       Secondary
#> 906                         Lincolnshire         925         Special
#> 907                      Nottinghamshire         891     All schools
#> 908                      Nottinghamshire         891         Primary
#> 909                      Nottinghamshire         891       Secondary
#> 910                      Nottinghamshire         891         Special
#> 911                                 <NA>          NA     All schools
#> 912                                 <NA>          NA         Primary
#> 913                                 <NA>          NA       Secondary
#> 914                                 <NA>          NA         Special
#> 915             Herefordshire, County of         884     All schools
#> 916             Herefordshire, County of         884         Primary
#> 917             Herefordshire, County of         884       Secondary
#> 918             Herefordshire, County of         884         Special
#> 919                   Telford and Wrekin         894     All schools
#> 920                   Telford and Wrekin         894         Primary
#> 921                   Telford and Wrekin         894       Secondary
#> 922                   Telford and Wrekin         894         Special
#> 923                       Stoke-on-Trent         861     All schools
#> 924                       Stoke-on-Trent         861         Primary
#> 925                       Stoke-on-Trent         861       Secondary
#> 926                       Stoke-on-Trent         861         Special
#> 927                           Shropshire         893     All schools
#> 928                           Shropshire         893         Primary
#> 929                           Shropshire         893       Secondary
#> 930                           Shropshire         893         Special
#> 931                           Birmingham         330     All schools
#> 932                           Birmingham         330         Primary
#> 933                           Birmingham         330       Secondary
#> 934                           Birmingham         330         Special
#> 935                             Coventry         331     All schools
#> 936                             Coventry         331         Primary
#> 937                             Coventry         331       Secondary
#> 938                             Coventry         331         Special
#> 939                               Dudley         332     All schools
#> 940                               Dudley         332         Primary
#> 941                               Dudley         332       Secondary
#> 942                               Dudley         332         Special
#> 943                             Sandwell         333     All schools
#> 944                             Sandwell         333         Primary
#> 945                             Sandwell         333       Secondary
#> 946                             Sandwell         333         Special
#> 947                             Solihull         334     All schools
#> 948                             Solihull         334         Primary
#> 949                             Solihull         334       Secondary
#> 950                             Solihull         334         Special
#> 951                              Walsall         335     All schools
#> 952                              Walsall         335         Primary
#> 953                              Walsall         335       Secondary
#> 954                              Walsall         335         Special
#> 955                        Wolverhampton         336     All schools
#> 956                        Wolverhampton         336         Primary
#> 957                        Wolverhampton         336       Secondary
#> 958                        Wolverhampton         336         Special
#> 959                        Staffordshire         860     All schools
#> 960                        Staffordshire         860         Primary
#> 961                        Staffordshire         860       Secondary
#> 962                        Staffordshire         860         Special
#> 963                         Warwickshire         937     All schools
#> 964                         Warwickshire         937         Primary
#> 965                         Warwickshire         937       Secondary
#> 966                         Warwickshire         937         Special
#> 967                       Worcestershire         885     All schools
#> 968                       Worcestershire         885         Primary
#> 969                       Worcestershire         885       Secondary
#> 970                       Worcestershire         885         Special
#> 971                                 <NA>          NA     All schools
#> 972                                 <NA>          NA         Primary
#> 973                                 <NA>          NA       Secondary
#> 974                                 <NA>          NA         Special
#> 975                         Peterborough         874     All schools
#> 976                         Peterborough         874         Primary
#> 977                         Peterborough         874       Secondary
#> 978                         Peterborough         874         Special
#> 979                                Luton         821     All schools
#> 980                                Luton         821         Primary
#> 981                                Luton         821       Secondary
#> 982                                Luton         821         Special
#> 983                      Southend-on-Sea         882     All schools
#> 984                      Southend-on-Sea         882         Primary
#> 985                      Southend-on-Sea         882       Secondary
#> 986                      Southend-on-Sea         882         Special
#> 987                             Thurrock         883     All schools
#> 988                             Thurrock         883         Primary
#> 989                             Thurrock         883       Secondary
#> 990                             Thurrock         883         Special
#> 991                              Bedford         822     All schools
#> 992                              Bedford         822         Primary
#> 993                              Bedford         822       Secondary
#> 994                              Bedford         822         Special
#> 995                 Central Bedfordshire         823     All schools
#> 996                 Central Bedfordshire         823         Primary
#> 997                 Central Bedfordshire         823       Secondary
#> 998                 Central Bedfordshire         823         Special
#> 999                       Cambridgeshire         873     All schools
#> 1000                      Cambridgeshire         873         Primary
#> 1001                      Cambridgeshire         873       Secondary
#> 1002                      Cambridgeshire         873         Special
#> 1003                               Essex         881     All schools
#> 1004                               Essex         881         Primary
#> 1005                               Essex         881       Secondary
#> 1006                               Essex         881         Special
#> 1007                       Hertfordshire         919     All schools
#> 1008                       Hertfordshire         919         Primary
#> 1009                       Hertfordshire         919       Secondary
#> 1010                       Hertfordshire         919         Special
#> 1011                             Norfolk         926     All schools
#> 1012                             Norfolk         926         Primary
#> 1013                             Norfolk         926       Secondary
#> 1014                             Norfolk         926         Special
#> 1015                             Suffolk         935     All schools
#> 1016                             Suffolk         935         Primary
#> 1017                             Suffolk         935       Secondary
#> 1018                             Suffolk         935         Special
#> 1019                                <NA>          NA     All schools
#> 1020                                <NA>          NA         Primary
#> 1021                                <NA>          NA       Secondary
#> 1022                                <NA>          NA         Special
#> 1023                      City of London         201     All schools
#> 1024                      City of London         201         Primary
#> 1025                Barking and Dagenham         301     All schools
#> 1026                Barking and Dagenham         301         Primary
#> 1027                Barking and Dagenham         301       Secondary
#> 1028                Barking and Dagenham         301         Special
#> 1029                              Barnet         302     All schools
#> 1030                              Barnet         302         Primary
#> 1031                              Barnet         302       Secondary
#> 1032                              Barnet         302         Special
#> 1033                              Bexley         303     All schools
#> 1034                              Bexley         303         Primary
#> 1035                              Bexley         303       Secondary
#> 1036                              Bexley         303         Special
#> 1037                               Brent         304     All schools
#> 1038                               Brent         304         Primary
#> 1039                               Brent         304       Secondary
#> 1040                               Brent         304         Special
#> 1041                             Bromley         305     All schools
#> 1042                             Bromley         305         Primary
#> 1043                             Bromley         305       Secondary
#> 1044                             Bromley         305         Special
#> 1045                              Camden         202     All schools
#> 1046                              Camden         202         Primary
#> 1047                              Camden         202       Secondary
#> 1048                              Camden         202         Special
#> 1049                             Croydon         306     All schools
#> 1050                             Croydon         306         Primary
#> 1051                             Croydon         306       Secondary
#> 1052                             Croydon         306         Special
#> 1053                              Ealing         307     All schools
#> 1054                              Ealing         307         Primary
#> 1055                              Ealing         307       Secondary
#> 1056                              Ealing         307         Special
#> 1057                             Enfield         308     All schools
#> 1058                             Enfield         308         Primary
#> 1059                             Enfield         308       Secondary
#> 1060                             Enfield         308         Special
#> 1061                           Greenwich         203     All schools
#> 1062                           Greenwich         203         Primary
#> 1063                           Greenwich         203       Secondary
#> 1064                           Greenwich         203         Special
#> 1065                             Hackney         204     All schools
#> 1066                             Hackney         204         Primary
#> 1067                             Hackney         204       Secondary
#> 1068                             Hackney         204         Special
#> 1069              Hammersmith and Fulham         205     All schools
#> 1070              Hammersmith and Fulham         205         Primary
#> 1071              Hammersmith and Fulham         205       Secondary
#> 1072              Hammersmith and Fulham         205         Special
#> 1073                            Haringey         309     All schools
#> 1074                            Haringey         309         Primary
#> 1075                            Haringey         309       Secondary
#> 1076                            Haringey         309         Special
#> 1077                              Harrow         310     All schools
#> 1078                              Harrow         310         Primary
#> 1079                              Harrow         310       Secondary
#> 1080                              Harrow         310         Special
#> 1081                            Havering         311     All schools
#> 1082                            Havering         311         Primary
#> 1083                            Havering         311       Secondary
#> 1084                            Havering         311         Special
#> 1085                          Hillingdon         312     All schools
#> 1086                          Hillingdon         312         Primary
#> 1087                          Hillingdon         312       Secondary
#> 1088                          Hillingdon         312         Special
#> 1089                            Hounslow         313     All schools
#> 1090                            Hounslow         313         Primary
#> 1091                            Hounslow         313       Secondary
#> 1092                            Hounslow         313         Special
#> 1093                           Islington         206     All schools
#> 1094                           Islington         206         Primary
#> 1095                           Islington         206       Secondary
#> 1096                           Islington         206         Special
#> 1097              Kensington and Chelsea         207     All schools
#> 1098              Kensington and Chelsea         207         Primary
#> 1099              Kensington and Chelsea         207       Secondary
#> 1100              Kensington and Chelsea         207         Special
#> 1101                Kingston upon Thames         314     All schools
#> 1102                Kingston upon Thames         314         Primary
#> 1103                Kingston upon Thames         314       Secondary
#> 1104                Kingston upon Thames         314         Special
#> 1105                             Lambeth         208     All schools
#> 1106                             Lambeth         208         Primary
#> 1107                             Lambeth         208       Secondary
#> 1108                             Lambeth         208         Special
#> 1109                            Lewisham         209     All schools
#> 1110                            Lewisham         209         Primary
#> 1111                            Lewisham         209       Secondary
#> 1112                            Lewisham         209         Special
#> 1113                              Merton         315     All schools
#> 1114                              Merton         315         Primary
#> 1115                              Merton         315       Secondary
#> 1116                              Merton         315         Special
#> 1117                              Newham         316     All schools
#> 1118                              Newham         316         Primary
#> 1119                              Newham         316       Secondary
#> 1120                              Newham         316         Special
#> 1121                           Redbridge         317     All schools
#> 1122                           Redbridge         317         Primary
#> 1123                           Redbridge         317       Secondary
#> 1124                           Redbridge         317         Special
#> 1125                Richmond upon Thames         318     All schools
#> 1126                Richmond upon Thames         318         Primary
#> 1127                Richmond upon Thames         318       Secondary
#> 1128                Richmond upon Thames         318         Special
#> 1129                           Southwark         210     All schools
#> 1130                           Southwark         210         Primary
#> 1131                           Southwark         210       Secondary
#> 1132                           Southwark         210         Special
#> 1133                              Sutton         319     All schools
#> 1134                              Sutton         319         Primary
#> 1135                              Sutton         319       Secondary
#> 1136                              Sutton         319         Special
#> 1137                       Tower Hamlets         211     All schools
#> 1138                       Tower Hamlets         211         Primary
#> 1139                       Tower Hamlets         211       Secondary
#> 1140                       Tower Hamlets         211         Special
#> 1141                      Waltham Forest         320     All schools
#> 1142                      Waltham Forest         320         Primary
#> 1143                      Waltham Forest         320       Secondary
#> 1144                      Waltham Forest         320         Special
#> 1145                          Wandsworth         212     All schools
#> 1146                          Wandsworth         212         Primary
#> 1147                          Wandsworth         212       Secondary
#> 1148                          Wandsworth         212         Special
#> 1149                         Westminster         213     All schools
#> 1150                         Westminster         213         Primary
#> 1151                         Westminster         213       Secondary
#> 1152                         Westminster         213         Special
#> 1153                                <NA>          NA     All schools
#> 1154                                <NA>          NA         Primary
#> 1155                                <NA>          NA       Secondary
#> 1156                                <NA>          NA         Special
#> 1157                              Medway         887     All schools
#> 1158                              Medway         887         Primary
#> 1159                              Medway         887       Secondary
#> 1160                              Medway         887         Special
#> 1161                    Bracknell Forest         867     All schools
#> 1162                    Bracknell Forest         867         Primary
#> 1163                    Bracknell Forest         867       Secondary
#> 1164                    Bracknell Forest         867         Special
#> 1165                      West Berkshire         869     All schools
#> 1166                      West Berkshire         869         Primary
#> 1167                      West Berkshire         869       Secondary
#> 1168                      West Berkshire         869         Special
#> 1169                             Reading         870     All schools
#> 1170                             Reading         870         Primary
#> 1171                             Reading         870       Secondary
#> 1172                             Reading         870         Special
#> 1173                              Slough         871     All schools
#> 1174                              Slough         871         Primary
#> 1175                              Slough         871       Secondary
#> 1176                              Slough         871         Special
#> 1177              Windsor and Maidenhead         868     All schools
#> 1178              Windsor and Maidenhead         868         Primary
#> 1179              Windsor and Maidenhead         868       Secondary
#> 1180              Windsor and Maidenhead         868         Special
#> 1181                           Wokingham         872     All schools
#> 1182                           Wokingham         872         Primary
#> 1183                           Wokingham         872       Secondary
#> 1184                           Wokingham         872         Special
#> 1185                       Milton Keynes         826     All schools
#> 1186                       Milton Keynes         826         Primary
#> 1187                       Milton Keynes         826       Secondary
#> 1188                       Milton Keynes         826         Special
#> 1189                   Brighton and Hove         846     All schools
#> 1190                   Brighton and Hove         846         Primary
#> 1191                   Brighton and Hove         846       Secondary
#> 1192                   Brighton and Hove         846         Special
#> 1193                          Portsmouth         851     All schools
#> 1194                          Portsmouth         851         Primary
#> 1195                          Portsmouth         851       Secondary
#> 1196                          Portsmouth         851         Special
#> 1197                         Southampton         852     All schools
#> 1198                         Southampton         852         Primary
#> 1199                         Southampton         852       Secondary
#> 1200                         Southampton         852         Special
#> 1201                       Isle of Wight         921     All schools
#> 1202                       Isle of Wight         921         Primary
#> 1203                       Isle of Wight         921       Secondary
#> 1204                       Isle of Wight         921         Special
#> 1205                     Buckinghamshire         825     All schools
#> 1206                     Buckinghamshire         825         Primary
#> 1207                     Buckinghamshire         825       Secondary
#> 1208                     Buckinghamshire         825         Special
#> 1209                         East Sussex         845     All schools
#> 1210                         East Sussex         845         Primary
#> 1211                         East Sussex         845       Secondary
#> 1212                         East Sussex         845         Special
#> 1213                           Hampshire         850     All schools
#> 1214                           Hampshire         850         Primary
#> 1215                           Hampshire         850       Secondary
#> 1216                           Hampshire         850         Special
#> 1217                                Kent         886     All schools
#> 1218                                Kent         886         Primary
#> 1219                                Kent         886       Secondary
#> 1220                                Kent         886         Special
#> 1221                         Oxfordshire         931     All schools
#> 1222                         Oxfordshire         931         Primary
#> 1223                         Oxfordshire         931       Secondary
#> 1224                         Oxfordshire         931         Special
#> 1225                              Surrey         936     All schools
#> 1226                              Surrey         936         Primary
#> 1227                              Surrey         936       Secondary
#> 1228                              Surrey         936         Special
#> 1229                         West Sussex         938     All schools
#> 1230                         West Sussex         938         Primary
#> 1231                         West Sussex         938       Secondary
#> 1232                         West Sussex         938         Special
#> 1233                                <NA>          NA     All schools
#> 1234                                <NA>          NA         Primary
#> 1235                                <NA>          NA       Secondary
#> 1236                                <NA>          NA         Special
#> 1237        Bath and North East Somerset         800     All schools
#> 1238        Bath and North East Somerset         800         Primary
#> 1239        Bath and North East Somerset         800       Secondary
#> 1240        Bath and North East Somerset         800         Special
#> 1241                    Bristol, City of         801     All schools
#> 1242                    Bristol, City of         801         Primary
#> 1243                    Bristol, City of         801       Secondary
#> 1244                    Bristol, City of         801         Special
#> 1245                      North Somerset         802     All schools
#> 1246                      North Somerset         802         Primary
#> 1247                      North Somerset         802       Secondary
#> 1248                      North Somerset         802         Special
#> 1249               South Gloucestershire         803     All schools
#> 1250               South Gloucestershire         803         Primary
#> 1251               South Gloucestershire         803       Secondary
#> 1252               South Gloucestershire         803         Special
#> 1253                            Plymouth         879     All schools
#> 1254                            Plymouth         879         Primary
#> 1255                            Plymouth         879       Secondary
#> 1256                            Plymouth         879         Special
#> 1257                              Torbay         880     All schools
#> 1258                              Torbay         880         Primary
#> 1259                              Torbay         880       Secondary
#> 1260                              Torbay         880         Special
#> 1261                             Swindon         866     All schools
#> 1262                             Swindon         866         Primary
#> 1263                             Swindon         866       Secondary
#> 1264                             Swindon         866         Special
#> 1265                            Cornwall         908     All schools
#> 1266                            Cornwall         908         Primary
#> 1267                            Cornwall         908       Secondary
#> 1268                            Cornwall         908         Special
#> 1269                     Isles of Scilly         420     All schools
#> 1270                     Isles of Scilly         420       Secondary
#> 1271                           Wiltshire         865     All schools
#> 1272                           Wiltshire         865         Primary
#> 1273                           Wiltshire         865       Secondary
#> 1274                           Wiltshire         865         Special
#> 1275 Bournemouth, Christchurch and Poole         839     All schools
#> 1276 Bournemouth, Christchurch and Poole         839         Primary
#> 1277 Bournemouth, Christchurch and Poole         839       Secondary
#> 1278 Bournemouth, Christchurch and Poole         839         Special
#> 1279                              Dorset         838     All schools
#> 1280                              Dorset         838         Primary
#> 1281                              Dorset         838       Secondary
#> 1282                              Dorset         838         Special
#> 1283                            Somerset         933     All schools
#> 1284                            Somerset         933         Primary
#> 1285                            Somerset         933       Secondary
#> 1286                            Somerset         933         Special
#> 1287                               Devon         878     All schools
#> 1288                               Devon         878         Primary
#> 1289                               Devon         878       Secondary
#> 1290                               Devon         878         Special
#> 1291                     Gloucestershire         916     All schools
#> 1292                     Gloucestershire         916         Primary
#> 1293                     Gloucestershire         916       Secondary
#> 1294                     Gloucestershire         916         Special
#> 1295                                <NA>          NA     All schools
#> 1296                                <NA>          NA         Primary
#> 1297                                <NA>          NA       Secondary
#> 1298                                <NA>          NA         Special
#> 1299                                <NA>          NA     All schools
#> 1300                                <NA>          NA         Primary
#> 1301                                <NA>          NA       Secondary
#> 1302                                <NA>          NA         Special
#> 1303                          Hartlepool         805         Primary
#> 1304                          Hartlepool         805       Secondary
#> 1305                          Hartlepool         805         Special
#> 1306                       Middlesbrough         806         Primary
#> 1307                       Middlesbrough         806       Secondary
#> 1308                       Middlesbrough         806         Special
#> 1309                Redcar and Cleveland         807         Primary
#> 1310                Redcar and Cleveland         807       Secondary
#> 1311                Redcar and Cleveland         807         Special
#> 1312                    Stockton-on-Tees         808         Primary
#> 1313                    Stockton-on-Tees         808       Secondary
#> 1314                    Stockton-on-Tees         808         Special
#> 1315                          Darlington         841         Primary
#> 1316                          Darlington         841       Secondary
#> 1317                          Darlington         841         Special
#> 1318                       County Durham         840         Primary
#> 1319                       County Durham         840       Secondary
#> 1320                       County Durham         840         Special
#> 1321                      Northumberland         929         Primary
#> 1322                      Northumberland         929       Secondary
#> 1323                      Northumberland         929         Special
#> 1324                 Newcastle upon Tyne         391         Primary
#> 1325                 Newcastle upon Tyne         391       Secondary
#> 1326                 Newcastle upon Tyne         391         Special
#> 1327                      North Tyneside         392         Primary
#> 1328                      North Tyneside         392       Secondary
#> 1329                      North Tyneside         392         Special
#> 1330                      South Tyneside         393         Primary
#> 1331                      South Tyneside         393       Secondary
#> 1332                      South Tyneside         393         Special
#> 1333                          Sunderland         394         Primary
#> 1334                          Sunderland         394       Secondary
#> 1335                          Sunderland         394         Special
#> 1336                           Gateshead         390         Primary
#> 1337                           Gateshead         390       Secondary
#> 1338                           Gateshead         390         Special
#> 1339                                <NA>          NA     All schools
#> 1340                                <NA>          NA         Primary
#> 1341                                <NA>          NA       Secondary
#> 1342                                <NA>          NA         Special
#> 1343                              Halton         876         Primary
#> 1344                              Halton         876       Secondary
#> 1345                              Halton         876         Special
#> 1346                          Warrington         877         Primary
#> 1347                          Warrington         877       Secondary
#> 1348                          Warrington         877         Special
#> 1349               Blackburn with Darwen         889         Primary
#> 1350               Blackburn with Darwen         889       Secondary
#> 1351               Blackburn with Darwen         889         Special
#> 1352                           Blackpool         890         Primary
#> 1353                           Blackpool         890       Secondary
#> 1354                           Blackpool         890         Special
#> 1355                       Cheshire East         895         Primary
#> 1356                       Cheshire East         895       Secondary
#> 1357                       Cheshire East         895         Special
#> 1358           Cheshire West and Chester         896         Primary
#> 1359           Cheshire West and Chester         896       Secondary
#> 1360           Cheshire West and Chester         896         Special
#> 1361                          Cumberland         942         Primary
#> 1362                          Cumberland         942       Secondary
#> 1363                          Cumberland         942         Special
#> 1364             Westmorland and Furness         943         Primary
#> 1365             Westmorland and Furness         943       Secondary
#> 1366             Westmorland and Furness         943         Special
#> 1367                              Bolton         350         Primary
#> 1368                              Bolton         350       Secondary
#> 1369                              Bolton         350         Special
#> 1370                                Bury         351         Primary
#> 1371                                Bury         351       Secondary
#> 1372                                Bury         351         Special
#> 1373                          Manchester         352         Primary
#> 1374                          Manchester         352       Secondary
#> 1375                          Manchester         352         Special
#> 1376                              Oldham         353         Primary
#> 1377                              Oldham         353       Secondary
#> 1378                              Oldham         353         Special
#> 1379                            Rochdale         354         Primary
#> 1380                            Rochdale         354       Secondary
#> 1381                            Rochdale         354         Special
#> 1382                             Salford         355         Primary
#> 1383                             Salford         355       Secondary
#> 1384                             Salford         355         Special
#> 1385                           Stockport         356         Primary
#> 1386                           Stockport         356       Secondary
#> 1387                           Stockport         356         Special
#> 1388                            Tameside         357         Primary
#> 1389                            Tameside         357       Secondary
#> 1390                            Tameside         357         Special
#> 1391                            Trafford         358         Primary
#> 1392                            Trafford         358       Secondary
#> 1393                            Trafford         358         Special
#> 1394                               Wigan         359         Primary
#> 1395                               Wigan         359       Secondary
#> 1396                               Wigan         359         Special
#> 1397                            Knowsley         340         Primary
#> 1398                            Knowsley         340       Secondary
#> 1399                            Knowsley         340         Special
#> 1400                           Liverpool         341         Primary
#> 1401                           Liverpool         341       Secondary
#> 1402                           Liverpool         341         Special
#> 1403                          St. Helens         342         Primary
#> 1404                          St. Helens         342       Secondary
#> 1405                          St. Helens         342         Special
#> 1406                              Sefton         343         Primary
#> 1407                              Sefton         343       Secondary
#> 1408                              Sefton         343         Special
#> 1409                              Wirral         344         Primary
#> 1410                              Wirral         344       Secondary
#> 1411                              Wirral         344         Special
#> 1412                          Lancashire         888         Primary
#> 1413                          Lancashire         888       Secondary
#> 1414                          Lancashire         888         Special
#> 1415                                <NA>          NA     All schools
#> 1416                                <NA>          NA         Primary
#> 1417                                <NA>          NA       Secondary
#> 1418                                <NA>          NA         Special
#> 1419         Kingston upon Hull, City of         810         Primary
#> 1420         Kingston upon Hull, City of         810       Secondary
#> 1421         Kingston upon Hull, City of         810         Special
#> 1422            East Riding of Yorkshire         811         Primary
#> 1423            East Riding of Yorkshire         811       Secondary
#> 1424            East Riding of Yorkshire         811         Special
#> 1425             North East Lincolnshire         812         Primary
#> 1426             North East Lincolnshire         812       Secondary
#> 1427             North East Lincolnshire         812         Special
#> 1428                  North Lincolnshire         813         Primary
#> 1429                  North Lincolnshire         813       Secondary
#> 1430                  North Lincolnshire         813         Special
#> 1431                                York         816         Primary
#> 1432                                York         816       Secondary
#> 1433                                York         816         Special
#> 1434                     North Yorkshire         815         Primary
#> 1435                     North Yorkshire         815       Secondary
#> 1436                     North Yorkshire         815         Special
#> 1437                            Barnsley         370         Primary
#> 1438                            Barnsley         370       Secondary
#> 1439                            Barnsley         370         Special
#> 1440                           Doncaster         371         Primary
#> 1441                           Doncaster         371       Secondary
#> 1442                           Doncaster         371         Special
#> 1443                           Rotherham         372         Primary
#> 1444                           Rotherham         372       Secondary
#> 1445                           Rotherham         372         Special
#> 1446                           Sheffield         373         Primary
#> 1447                           Sheffield         373       Secondary
#> 1448                           Sheffield         373         Special
#> 1449                            Bradford         380         Primary
#> 1450                            Bradford         380       Secondary
#> 1451                            Bradford         380         Special
#> 1452                          Calderdale         381         Primary
#> 1453                          Calderdale         381       Secondary
#> 1454                          Calderdale         381         Special
#> 1455                            Kirklees         382         Primary
#> 1456                            Kirklees         382       Secondary
#> 1457                            Kirklees         382         Special
#> 1458                               Leeds         383         Primary
#> 1459                               Leeds         383       Secondary
#> 1460                               Leeds         383         Special
#> 1461                           Wakefield         384         Primary
#> 1462                           Wakefield         384       Secondary
#> 1463                           Wakefield         384         Special
#> 1464                                <NA>          NA     All schools
#> 1465                                <NA>          NA         Primary
#> 1466                                <NA>          NA       Secondary
#> 1467                                <NA>          NA         Special
#> 1468                               Derby         831         Primary
#> 1469                               Derby         831       Secondary
#> 1470                               Derby         831         Special
#> 1471                           Leicester         856         Primary
#> 1472                           Leicester         856       Secondary
#> 1473                           Leicester         856         Special
#> 1474                             Rutland         857         Primary
#> 1475                             Rutland         857       Secondary
#> 1476                          Nottingham         892         Primary
#> 1477                          Nottingham         892       Secondary
#> 1478                          Nottingham         892         Special
#> 1479              North Northamptonshire         940         Primary
#> 1480              North Northamptonshire         940       Secondary
#> 1481              North Northamptonshire         940         Special
#> 1482               West Northamptonshire         941         Primary
#> 1483               West Northamptonshire         941       Secondary
#> 1484               West Northamptonshire         941         Special
#> 1485                          Derbyshire         830         Primary
#> 1486                          Derbyshire         830       Secondary
#> 1487                          Derbyshire         830         Special
#> 1488                      Leicestershire         855         Primary
#> 1489                      Leicestershire         855       Secondary
#> 1490                      Leicestershire         855         Special
#> 1491                        Lincolnshire         925         Primary
#> 1492                        Lincolnshire         925       Secondary
#> 1493                        Lincolnshire         925         Special
#> 1494                     Nottinghamshire         891         Primary
#> 1495                     Nottinghamshire         891       Secondary
#> 1496                     Nottinghamshire         891         Special
#> 1497                                <NA>          NA     All schools
#> 1498                                <NA>          NA         Primary
#> 1499                                <NA>          NA       Secondary
#> 1500                                <NA>          NA         Special
#> 1501            Herefordshire, County of         884         Primary
#> 1502            Herefordshire, County of         884       Secondary
#> 1503            Herefordshire, County of         884         Special
#> 1504                  Telford and Wrekin         894         Primary
#> 1505                  Telford and Wrekin         894       Secondary
#> 1506                  Telford and Wrekin         894         Special
#> 1507                      Stoke-on-Trent         861         Primary
#> 1508                      Stoke-on-Trent         861       Secondary
#> 1509                      Stoke-on-Trent         861         Special
#> 1510                          Shropshire         893         Primary
#> 1511                          Shropshire         893       Secondary
#> 1512                          Shropshire         893         Special
#> 1513                          Birmingham         330         Primary
#> 1514                          Birmingham         330       Secondary
#> 1515                          Birmingham         330         Special
#> 1516                            Coventry         331         Primary
#> 1517                            Coventry         331       Secondary
#> 1518                            Coventry         331         Special
#> 1519                              Dudley         332         Primary
#> 1520                              Dudley         332       Secondary
#> 1521                              Dudley         332         Special
#> 1522                            Sandwell         333         Primary
#> 1523                            Sandwell         333       Secondary
#> 1524                            Sandwell         333         Special
#> 1525                            Solihull         334         Primary
#> 1526                            Solihull         334       Secondary
#> 1527                            Solihull         334         Special
#> 1528                             Walsall         335         Primary
#> 1529                             Walsall         335       Secondary
#> 1530                             Walsall         335         Special
#> 1531                       Wolverhampton         336         Primary
#> 1532                       Wolverhampton         336       Secondary
#> 1533                       Wolverhampton         336         Special
#> 1534                       Staffordshire         860         Primary
#> 1535                       Staffordshire         860       Secondary
#> 1536                       Staffordshire         860         Special
#> 1537                        Warwickshire         937         Primary
#> 1538                        Warwickshire         937       Secondary
#> 1539                        Warwickshire         937         Special
#> 1540                      Worcestershire         885         Primary
#> 1541                      Worcestershire         885       Secondary
#> 1542                      Worcestershire         885         Special
#> 1543                                <NA>          NA     All schools
#> 1544                                <NA>          NA         Primary
#> 1545                                <NA>          NA       Secondary
#> 1546                                <NA>          NA         Special
#> 1547                        Peterborough         874         Primary
#> 1548                        Peterborough         874       Secondary
#> 1549                        Peterborough         874         Special
#> 1550                               Luton         821         Primary
#> 1551                               Luton         821       Secondary
#> 1552                               Luton         821         Special
#> 1553                     Southend-on-Sea         882         Primary
#> 1554                     Southend-on-Sea         882       Secondary
#> 1555                     Southend-on-Sea         882         Special
#> 1556                            Thurrock         883         Primary
#> 1557                            Thurrock         883       Secondary
#> 1558                            Thurrock         883         Special
#> 1559                             Bedford         822         Primary
#> 1560                             Bedford         822       Secondary
#> 1561                             Bedford         822         Special
#> 1562                Central Bedfordshire         823         Primary
#> 1563                Central Bedfordshire         823       Secondary
#> 1564                Central Bedfordshire         823         Special
#> 1565                      Cambridgeshire         873         Primary
#> 1566                      Cambridgeshire         873       Secondary
#> 1567                      Cambridgeshire         873         Special
#> 1568                               Essex         881         Primary
#> 1569                               Essex         881       Secondary
#> 1570                               Essex         881         Special
#> 1571                       Hertfordshire         919         Primary
#> 1572                       Hertfordshire         919       Secondary
#> 1573                       Hertfordshire         919         Special
#> 1574                             Norfolk         926         Primary
#> 1575                             Norfolk         926       Secondary
#> 1576                             Norfolk         926         Special
#> 1577                             Suffolk         935         Primary
#> 1578                             Suffolk         935       Secondary
#> 1579                             Suffolk         935         Special
#> 1580                                <NA>          NA     All schools
#> 1581                                <NA>          NA         Primary
#> 1582                                <NA>          NA       Secondary
#> 1583                                <NA>          NA         Special
#> 1584                      City of London         201         Primary
#> 1585                Barking and Dagenham         301         Primary
#> 1586                Barking and Dagenham         301       Secondary
#> 1587                Barking and Dagenham         301         Special
#> 1588                              Barnet         302         Primary
#> 1589                              Barnet         302       Secondary
#> 1590                              Barnet         302         Special
#> 1591                              Bexley         303         Primary
#> 1592                              Bexley         303       Secondary
#> 1593                              Bexley         303         Special
#> 1594                               Brent         304         Primary
#> 1595                               Brent         304       Secondary
#> 1596                               Brent         304         Special
#> 1597                             Bromley         305         Primary
#> 1598                             Bromley         305       Secondary
#> 1599                             Bromley         305         Special
#> 1600                              Camden         202         Primary
#> 1601                              Camden         202       Secondary
#> 1602                              Camden         202         Special
#> 1603                             Croydon         306         Primary
#> 1604                             Croydon         306       Secondary
#> 1605                             Croydon         306         Special
#> 1606                              Ealing         307         Primary
#> 1607                              Ealing         307       Secondary
#> 1608                              Ealing         307         Special
#> 1609                             Enfield         308         Primary
#> 1610                             Enfield         308       Secondary
#> 1611                             Enfield         308         Special
#> 1612                           Greenwich         203         Primary
#> 1613                           Greenwich         203       Secondary
#> 1614                           Greenwich         203         Special
#> 1615                             Hackney         204         Primary
#> 1616                             Hackney         204       Secondary
#> 1617                             Hackney         204         Special
#> 1618              Hammersmith and Fulham         205         Primary
#> 1619              Hammersmith and Fulham         205       Secondary
#> 1620              Hammersmith and Fulham         205         Special
#> 1621                            Haringey         309         Primary
#> 1622                            Haringey         309       Secondary
#> 1623                            Haringey         309         Special
#> 1624                              Harrow         310         Primary
#> 1625                              Harrow         310       Secondary
#> 1626                              Harrow         310         Special
#> 1627                            Havering         311         Primary
#> 1628                            Havering         311       Secondary
#> 1629                            Havering         311         Special
#> 1630                          Hillingdon         312         Primary
#> 1631                          Hillingdon         312       Secondary
#> 1632                          Hillingdon         312         Special
#> 1633                            Hounslow         313         Primary
#> 1634                            Hounslow         313       Secondary
#> 1635                            Hounslow         313         Special
#> 1636                           Islington         206         Primary
#> 1637                           Islington         206       Secondary
#> 1638                           Islington         206         Special
#> 1639              Kensington and Chelsea         207         Primary
#> 1640              Kensington and Chelsea         207       Secondary
#> 1641              Kensington and Chelsea         207         Special
#> 1642                Kingston upon Thames         314         Primary
#> 1643                Kingston upon Thames         314       Secondary
#> 1644                Kingston upon Thames         314         Special
#> 1645                             Lambeth         208         Primary
#> 1646                             Lambeth         208       Secondary
#> 1647                             Lambeth         208         Special
#> 1648                            Lewisham         209         Primary
#> 1649                            Lewisham         209       Secondary
#> 1650                            Lewisham         209         Special
#> 1651                              Merton         315         Primary
#> 1652                              Merton         315       Secondary
#> 1653                              Merton         315         Special
#> 1654                              Newham         316         Primary
#> 1655                              Newham         316       Secondary
#> 1656                              Newham         316         Special
#> 1657                           Redbridge         317         Primary
#> 1658                           Redbridge         317       Secondary
#> 1659                           Redbridge         317         Special
#> 1660                Richmond upon Thames         318         Primary
#> 1661                Richmond upon Thames         318       Secondary
#> 1662                Richmond upon Thames         318         Special
#> 1663                           Southwark         210         Primary
#> 1664                           Southwark         210       Secondary
#> 1665                           Southwark         210         Special
#> 1666                              Sutton         319         Primary
#> 1667                              Sutton         319       Secondary
#> 1668                              Sutton         319         Special
#> 1669                       Tower Hamlets         211         Primary
#> 1670                       Tower Hamlets         211       Secondary
#> 1671                       Tower Hamlets         211         Special
#> 1672                      Waltham Forest         320         Primary
#> 1673                      Waltham Forest         320       Secondary
#> 1674                      Waltham Forest         320         Special
#> 1675                          Wandsworth         212         Primary
#> 1676                          Wandsworth         212       Secondary
#> 1677                          Wandsworth         212         Special
#> 1678                         Westminster         213         Primary
#> 1679                         Westminster         213       Secondary
#> 1680                         Westminster         213         Special
#> 1681                                <NA>          NA     All schools
#> 1682                                <NA>          NA         Primary
#> 1683                                <NA>          NA       Secondary
#> 1684                                <NA>          NA         Special
#> 1685                              Medway         887         Primary
#> 1686                              Medway         887       Secondary
#> 1687                              Medway         887         Special
#> 1688                    Bracknell Forest         867         Primary
#> 1689                    Bracknell Forest         867       Secondary
#> 1690                    Bracknell Forest         867         Special
#> 1691                      West Berkshire         869         Primary
#> 1692                      West Berkshire         869       Secondary
#> 1693                      West Berkshire         869         Special
#> 1694                             Reading         870         Primary
#> 1695                             Reading         870       Secondary
#> 1696                             Reading         870         Special
#> 1697                              Slough         871         Primary
#> 1698                              Slough         871       Secondary
#> 1699                              Slough         871         Special
#> 1700              Windsor and Maidenhead         868         Primary
#> 1701              Windsor and Maidenhead         868       Secondary
#> 1702              Windsor and Maidenhead         868         Special
#> 1703                           Wokingham         872         Primary
#> 1704                           Wokingham         872       Secondary
#> 1705                           Wokingham         872         Special
#> 1706                       Milton Keynes         826         Primary
#> 1707                       Milton Keynes         826       Secondary
#> 1708                       Milton Keynes         826         Special
#> 1709                   Brighton and Hove         846         Primary
#> 1710                   Brighton and Hove         846       Secondary
#> 1711                   Brighton and Hove         846         Special
#> 1712                          Portsmouth         851         Primary
#> 1713                          Portsmouth         851       Secondary
#> 1714                          Portsmouth         851         Special
#> 1715                         Southampton         852         Primary
#> 1716                         Southampton         852       Secondary
#> 1717                         Southampton         852         Special
#> 1718                       Isle of Wight         921         Primary
#> 1719                       Isle of Wight         921       Secondary
#> 1720                       Isle of Wight         921         Special
#> 1721                     Buckinghamshire         825         Primary
#> 1722                     Buckinghamshire         825       Secondary
#> 1723                     Buckinghamshire         825         Special
#> 1724                         East Sussex         845         Primary
#> 1725                         East Sussex         845       Secondary
#> 1726                         East Sussex         845         Special
#> 1727                           Hampshire         850         Primary
#> 1728                           Hampshire         850       Secondary
#> 1729                           Hampshire         850         Special
#> 1730                                Kent         886         Primary
#> 1731                                Kent         886       Secondary
#> 1732                                Kent         886         Special
#> 1733                         Oxfordshire         931         Primary
#> 1734                         Oxfordshire         931       Secondary
#> 1735                         Oxfordshire         931         Special
#> 1736                              Surrey         936         Primary
#> 1737                              Surrey         936       Secondary
#> 1738                              Surrey         936         Special
#> 1739                         West Sussex         938         Primary
#> 1740                         West Sussex         938       Secondary
#> 1741                         West Sussex         938         Special
#> 1742                                <NA>          NA     All schools
#> 1743                                <NA>          NA         Primary
#> 1744                                <NA>          NA       Secondary
#> 1745                                <NA>          NA         Special
#> 1746        Bath and North East Somerset         800         Primary
#> 1747        Bath and North East Somerset         800       Secondary
#> 1748        Bath and North East Somerset         800         Special
#> 1749                    Bristol, City of         801         Primary
#> 1750                    Bristol, City of         801       Secondary
#> 1751                    Bristol, City of         801         Special
#> 1752                      North Somerset         802         Primary
#> 1753                      North Somerset         802       Secondary
#> 1754                      North Somerset         802         Special
#> 1755               South Gloucestershire         803         Primary
#> 1756               South Gloucestershire         803       Secondary
#> 1757               South Gloucestershire         803         Special
#> 1758                            Plymouth         879         Primary
#> 1759                            Plymouth         879       Secondary
#> 1760                            Plymouth         879         Special
#> 1761                              Torbay         880         Primary
#> 1762                              Torbay         880       Secondary
#> 1763                              Torbay         880         Special
#> 1764                             Swindon         866         Primary
#> 1765                             Swindon         866       Secondary
#> 1766                             Swindon         866         Special
#> 1767                            Cornwall         908         Primary
#> 1768                            Cornwall         908       Secondary
#> 1769                            Cornwall         908         Special
#> 1770                     Isles of Scilly         420       Secondary
#> 1771                           Wiltshire         865         Primary
#> 1772                           Wiltshire         865       Secondary
#> 1773                           Wiltshire         865         Special
#> 1774 Bournemouth, Christchurch and Poole         839         Primary
#> 1775 Bournemouth, Christchurch and Poole         839       Secondary
#> 1776 Bournemouth, Christchurch and Poole         839         Special
#> 1777                              Dorset         838         Primary
#> 1778                              Dorset         838       Secondary
#> 1779                              Dorset         838         Special
#> 1780                            Somerset         933         Primary
#> 1781                            Somerset         933       Secondary
#> 1782                            Somerset         933         Special
#> 1783                               Devon         878         Primary
#> 1784                               Devon         878       Secondary
#> 1785                               Devon         878         Special
#> 1786                     Gloucestershire         916         Primary
#> 1787                     Gloucestershire         916       Secondary
#> 1788                     Gloucestershire         916         Special
#> 1789                                <NA>          NA     All schools
#> 1790                                <NA>          NA         Primary
#> 1791                                <NA>          NA       Secondary
#> 1792                                <NA>          NA         Special
#> 1793                                <NA>          NA     All schools
#> 1794                                <NA>          NA         Primary
#> 1795                                <NA>          NA       Secondary
#> 1796                                <NA>          NA         Special
#> 1797                          Hartlepool         805         Primary
#> 1798                          Hartlepool         805       Secondary
#> 1799                          Hartlepool         805         Special
#> 1800                       Middlesbrough         806         Primary
#> 1801                       Middlesbrough         806       Secondary
#> 1802                       Middlesbrough         806         Special
#> 1803                Redcar and Cleveland         807         Primary
#> 1804                Redcar and Cleveland         807       Secondary
#> 1805                Redcar and Cleveland         807         Special
#> 1806                    Stockton-on-Tees         808         Primary
#> 1807                    Stockton-on-Tees         808       Secondary
#> 1808                    Stockton-on-Tees         808         Special
#> 1809                          Darlington         841         Primary
#> 1810                          Darlington         841       Secondary
#> 1811                          Darlington         841         Special
#> 1812                       County Durham         840         Primary
#> 1813                       County Durham         840       Secondary
#> 1814                       County Durham         840         Special
#> 1815                      Northumberland         929         Primary
#> 1816                      Northumberland         929       Secondary
#> 1817                      Northumberland         929         Special
#> 1818                 Newcastle upon Tyne         391         Primary
#> 1819                 Newcastle upon Tyne         391       Secondary
#> 1820                 Newcastle upon Tyne         391         Special
#> 1821                      North Tyneside         392         Primary
#> 1822                      North Tyneside         392       Secondary
#> 1823                      North Tyneside         392         Special
#> 1824                      South Tyneside         393         Primary
#> 1825                      South Tyneside         393       Secondary
#> 1826                      South Tyneside         393         Special
#> 1827                          Sunderland         394         Primary
#> 1828                          Sunderland         394       Secondary
#> 1829                          Sunderland         394         Special
#> 1830                           Gateshead         390         Primary
#> 1831                           Gateshead         390       Secondary
#> 1832                           Gateshead         390         Special
#> 1833                                <NA>          NA     All schools
#> 1834                                <NA>          NA         Primary
#> 1835                                <NA>          NA       Secondary
#> 1836                                <NA>          NA         Special
#> 1837                              Halton         876         Primary
#> 1838                              Halton         876       Secondary
#> 1839                              Halton         876         Special
#> 1840                          Warrington         877         Primary
#> 1841                          Warrington         877       Secondary
#> 1842                          Warrington         877         Special
#> 1843               Blackburn with Darwen         889         Primary
#> 1844               Blackburn with Darwen         889       Secondary
#> 1845               Blackburn with Darwen         889         Special
#> 1846                           Blackpool         890         Primary
#> 1847                           Blackpool         890       Secondary
#> 1848                           Blackpool         890         Special
#> 1849                       Cheshire East         895         Primary
#> 1850                       Cheshire East         895       Secondary
#> 1851                       Cheshire East         895         Special
#> 1852           Cheshire West and Chester         896         Primary
#> 1853           Cheshire West and Chester         896       Secondary
#> 1854           Cheshire West and Chester         896         Special
#> 1855                          Cumberland         942         Primary
#> 1856                          Cumberland         942       Secondary
#> 1857                          Cumberland         942         Special
#> 1858             Westmorland and Furness         943         Primary
#> 1859             Westmorland and Furness         943       Secondary
#> 1860             Westmorland and Furness         943         Special
#> 1861                              Bolton         350         Primary
#> 1862                              Bolton         350       Secondary
#> 1863                              Bolton         350         Special
#> 1864                                Bury         351         Primary
#> 1865                                Bury         351       Secondary
#> 1866                                Bury         351         Special
#> 1867                          Manchester         352         Primary
#> 1868                          Manchester         352       Secondary
#> 1869                          Manchester         352         Special
#> 1870                              Oldham         353         Primary
#> 1871                              Oldham         353       Secondary
#> 1872                              Oldham         353         Special
#> 1873                            Rochdale         354         Primary
#> 1874                            Rochdale         354       Secondary
#> 1875                            Rochdale         354         Special
#> 1876                             Salford         355         Primary
#> 1877                             Salford         355       Secondary
#> 1878                             Salford         355         Special
#> 1879                           Stockport         356         Primary
#> 1880                           Stockport         356       Secondary
#> 1881                           Stockport         356         Special
#> 1882                            Tameside         357         Primary
#> 1883                            Tameside         357       Secondary
#> 1884                            Tameside         357         Special
#> 1885                            Trafford         358         Primary
#> 1886                            Trafford         358       Secondary
#> 1887                            Trafford         358         Special
#> 1888                               Wigan         359         Primary
#> 1889                               Wigan         359       Secondary
#> 1890                               Wigan         359         Special
#> 1891                            Knowsley         340         Primary
#> 1892                            Knowsley         340       Secondary
#> 1893                            Knowsley         340         Special
#> 1894                           Liverpool         341         Primary
#> 1895                           Liverpool         341       Secondary
#> 1896                           Liverpool         341         Special
#> 1897                          St. Helens         342         Primary
#> 1898                          St. Helens         342       Secondary
#> 1899                          St. Helens         342         Special
#> 1900                              Sefton         343         Primary
#> 1901                              Sefton         343       Secondary
#> 1902                              Sefton         343         Special
#> 1903                              Wirral         344         Primary
#> 1904                              Wirral         344       Secondary
#> 1905                              Wirral         344         Special
#> 1906                          Lancashire         888         Primary
#> 1907                          Lancashire         888       Secondary
#> 1908                          Lancashire         888         Special
#> 1909                                <NA>          NA     All schools
#> 1910                                <NA>          NA         Primary
#> 1911                                <NA>          NA       Secondary
#> 1912                                <NA>          NA         Special
#> 1913         Kingston upon Hull, City of         810         Primary
#> 1914         Kingston upon Hull, City of         810       Secondary
#> 1915         Kingston upon Hull, City of         810         Special
#> 1916            East Riding of Yorkshire         811         Primary
#> 1917            East Riding of Yorkshire         811       Secondary
#> 1918            East Riding of Yorkshire         811         Special
#> 1919             North East Lincolnshire         812         Primary
#> 1920             North East Lincolnshire         812       Secondary
#> 1921             North East Lincolnshire         812         Special
#> 1922                  North Lincolnshire         813         Primary
#> 1923                  North Lincolnshire         813       Secondary
#> 1924                  North Lincolnshire         813         Special
#> 1925                                York         816         Primary
#> 1926                                York         816       Secondary
#> 1927                                York         816         Special
#> 1928                     North Yorkshire         815         Primary
#> 1929                     North Yorkshire         815       Secondary
#> 1930                     North Yorkshire         815         Special
#> 1931                            Barnsley         370         Primary
#> 1932                            Barnsley         370       Secondary
#> 1933                            Barnsley         370         Special
#> 1934                           Doncaster         371         Primary
#> 1935                           Doncaster         371       Secondary
#> 1936                           Doncaster         371         Special
#> 1937                           Rotherham         372         Primary
#> 1938                           Rotherham         372       Secondary
#> 1939                           Rotherham         372         Special
#> 1940                           Sheffield         373         Primary
#> 1941                           Sheffield         373       Secondary
#> 1942                           Sheffield         373         Special
#> 1943                            Bradford         380         Primary
#> 1944                            Bradford         380       Secondary
#> 1945                            Bradford         380         Special
#> 1946                          Calderdale         381         Primary
#> 1947                          Calderdale         381       Secondary
#> 1948                          Calderdale         381         Special
#> 1949                            Kirklees         382         Primary
#> 1950                            Kirklees         382       Secondary
#> 1951                            Kirklees         382         Special
#> 1952                               Leeds         383         Primary
#> 1953                               Leeds         383       Secondary
#> 1954                               Leeds         383         Special
#> 1955                           Wakefield         384         Primary
#> 1956                           Wakefield         384       Secondary
#> 1957                           Wakefield         384         Special
#> 1958                                <NA>          NA     All schools
#> 1959                                <NA>          NA         Primary
#> 1960                                <NA>          NA       Secondary
#> 1961                                <NA>          NA         Special
#> 1962                               Derby         831         Primary
#> 1963                               Derby         831       Secondary
#> 1964                               Derby         831         Special
#> 1965                           Leicester         856         Primary
#> 1966                           Leicester         856       Secondary
#> 1967                           Leicester         856         Special
#> 1968                             Rutland         857         Primary
#> 1969                             Rutland         857       Secondary
#> 1970                          Nottingham         892         Primary
#> 1971                          Nottingham         892       Secondary
#> 1972                          Nottingham         892         Special
#> 1973              North Northamptonshire         940         Primary
#> 1974              North Northamptonshire         940       Secondary
#> 1975              North Northamptonshire         940         Special
#> 1976               West Northamptonshire         941         Primary
#> 1977               West Northamptonshire         941       Secondary
#> 1978               West Northamptonshire         941         Special
#> 1979                          Derbyshire         830         Primary
#> 1980                          Derbyshire         830       Secondary
#> 1981                          Derbyshire         830         Special
#> 1982                      Leicestershire         855         Primary
#> 1983                      Leicestershire         855       Secondary
#> 1984                      Leicestershire         855         Special
#> 1985                        Lincolnshire         925         Primary
#> 1986                        Lincolnshire         925       Secondary
#> 1987                        Lincolnshire         925         Special
#> 1988                     Nottinghamshire         891         Primary
#> 1989                     Nottinghamshire         891       Secondary
#> 1990                     Nottinghamshire         891         Special
#> 1991                                <NA>          NA     All schools
#> 1992                                <NA>          NA         Primary
#> 1993                                <NA>          NA       Secondary
#> 1994                                <NA>          NA         Special
#> 1995            Herefordshire, County of         884         Primary
#> 1996            Herefordshire, County of         884       Secondary
#> 1997            Herefordshire, County of         884         Special
#> 1998                  Telford and Wrekin         894         Primary
#> 1999                  Telford and Wrekin         894       Secondary
#> 2000                  Telford and Wrekin         894         Special
#> 2001                      Stoke-on-Trent         861         Primary
#> 2002                      Stoke-on-Trent         861       Secondary
#> 2003                      Stoke-on-Trent         861         Special
#> 2004                          Shropshire         893         Primary
#> 2005                          Shropshire         893       Secondary
#> 2006                          Shropshire         893         Special
#> 2007                          Birmingham         330         Primary
#> 2008                          Birmingham         330       Secondary
#> 2009                          Birmingham         330         Special
#> 2010                            Coventry         331         Primary
#> 2011                            Coventry         331       Secondary
#> 2012                            Coventry         331         Special
#> 2013                              Dudley         332         Primary
#> 2014                              Dudley         332       Secondary
#> 2015                              Dudley         332         Special
#> 2016                            Sandwell         333         Primary
#> 2017                            Sandwell         333       Secondary
#> 2018                            Sandwell         333         Special
#> 2019                            Solihull         334         Primary
#> 2020                            Solihull         334       Secondary
#> 2021                            Solihull         334         Special
#> 2022                             Walsall         335         Primary
#> 2023                             Walsall         335       Secondary
#> 2024                             Walsall         335         Special
#> 2025                       Wolverhampton         336         Primary
#> 2026                       Wolverhampton         336       Secondary
#> 2027                       Wolverhampton         336         Special
#> 2028                       Staffordshire         860         Primary
#> 2029                       Staffordshire         860       Secondary
#> 2030                       Staffordshire         860         Special
#> 2031                        Warwickshire         937         Primary
#> 2032                        Warwickshire         937       Secondary
#> 2033                        Warwickshire         937         Special
#> 2034                      Worcestershire         885         Primary
#> 2035                      Worcestershire         885       Secondary
#> 2036                      Worcestershire         885         Special
#> 2037                                <NA>          NA     All schools
#> 2038                                <NA>          NA         Primary
#> 2039                                <NA>          NA       Secondary
#> 2040                                <NA>          NA         Special
#> 2041                        Peterborough         874         Primary
#> 2042                        Peterborough         874       Secondary
#> 2043                        Peterborough         874         Special
#> 2044                               Luton         821         Primary
#> 2045                               Luton         821       Secondary
#> 2046                               Luton         821         Special
#> 2047                     Southend-on-Sea         882         Primary
#> 2048                     Southend-on-Sea         882       Secondary
#> 2049                     Southend-on-Sea         882         Special
#> 2050                            Thurrock         883         Primary
#> 2051                            Thurrock         883       Secondary
#> 2052                            Thurrock         883         Special
#> 2053                             Bedford         822         Primary
#> 2054                             Bedford         822       Secondary
#> 2055                             Bedford         822         Special
#> 2056                Central Bedfordshire         823         Primary
#> 2057                Central Bedfordshire         823       Secondary
#> 2058                Central Bedfordshire         823         Special
#> 2059                      Cambridgeshire         873         Primary
#> 2060                      Cambridgeshire         873       Secondary
#> 2061                      Cambridgeshire         873         Special
#> 2062                               Essex         881         Primary
#> 2063                               Essex         881       Secondary
#> 2064                               Essex         881         Special
#> 2065                       Hertfordshire         919         Primary
#> 2066                       Hertfordshire         919       Secondary
#> 2067                       Hertfordshire         919         Special
#> 2068                             Norfolk         926         Primary
#> 2069                             Norfolk         926       Secondary
#> 2070                             Norfolk         926         Special
#> 2071                             Suffolk         935         Primary
#> 2072                             Suffolk         935       Secondary
#> 2073                             Suffolk         935         Special
#> 2074                                <NA>          NA     All schools
#> 2075                                <NA>          NA         Primary
#> 2076                                <NA>          NA       Secondary
#> 2077                                <NA>          NA         Special
#> 2078                      City of London         201         Primary
#> 2079                Barking and Dagenham         301         Primary
#> 2080                Barking and Dagenham         301       Secondary
#> 2081                Barking and Dagenham         301         Special
#> 2082                              Barnet         302         Primary
#> 2083                              Barnet         302       Secondary
#> 2084                              Barnet         302         Special
#> 2085                              Bexley         303         Primary
#> 2086                              Bexley         303       Secondary
#> 2087                              Bexley         303         Special
#> 2088                               Brent         304         Primary
#> 2089                               Brent         304       Secondary
#> 2090                               Brent         304         Special
#> 2091                             Bromley         305         Primary
#> 2092                             Bromley         305       Secondary
#> 2093                             Bromley         305         Special
#> 2094                              Camden         202         Primary
#> 2095                              Camden         202       Secondary
#> 2096                              Camden         202         Special
#> 2097                             Croydon         306         Primary
#> 2098                             Croydon         306       Secondary
#> 2099                             Croydon         306         Special
#> 2100                              Ealing         307         Primary
#> 2101                              Ealing         307       Secondary
#> 2102                              Ealing         307         Special
#> 2103                             Enfield         308         Primary
#> 2104                             Enfield         308       Secondary
#> 2105                             Enfield         308         Special
#> 2106                           Greenwich         203         Primary
#> 2107                           Greenwich         203       Secondary
#> 2108                           Greenwich         203         Special
#> 2109                             Hackney         204         Primary
#> 2110                             Hackney         204       Secondary
#> 2111                             Hackney         204         Special
#> 2112              Hammersmith and Fulham         205         Primary
#> 2113              Hammersmith and Fulham         205       Secondary
#> 2114              Hammersmith and Fulham         205         Special
#> 2115                            Haringey         309         Primary
#> 2116                            Haringey         309       Secondary
#> 2117                            Haringey         309         Special
#> 2118                              Harrow         310         Primary
#> 2119                              Harrow         310       Secondary
#> 2120                              Harrow         310         Special
#> 2121                            Havering         311         Primary
#> 2122                            Havering         311       Secondary
#> 2123                            Havering         311         Special
#> 2124                          Hillingdon         312         Primary
#> 2125                          Hillingdon         312       Secondary
#> 2126                          Hillingdon         312         Special
#> 2127                            Hounslow         313         Primary
#> 2128                            Hounslow         313       Secondary
#> 2129                            Hounslow         313         Special
#> 2130                           Islington         206         Primary
#> 2131                           Islington         206       Secondary
#> 2132                           Islington         206         Special
#> 2133              Kensington and Chelsea         207         Primary
#> 2134              Kensington and Chelsea         207       Secondary
#> 2135              Kensington and Chelsea         207         Special
#> 2136                Kingston upon Thames         314         Primary
#> 2137                Kingston upon Thames         314       Secondary
#> 2138                Kingston upon Thames         314         Special
#> 2139                             Lambeth         208         Primary
#> 2140                             Lambeth         208       Secondary
#> 2141                             Lambeth         208         Special
#> 2142                            Lewisham         209         Primary
#> 2143                            Lewisham         209       Secondary
#> 2144                            Lewisham         209         Special
#> 2145                              Merton         315         Primary
#> 2146                              Merton         315       Secondary
#> 2147                              Merton         315         Special
#> 2148                              Newham         316         Primary
#> 2149                              Newham         316       Secondary
#> 2150                              Newham         316         Special
#> 2151                           Redbridge         317         Primary
#> 2152                           Redbridge         317       Secondary
#> 2153                           Redbridge         317         Special
#> 2154                Richmond upon Thames         318         Primary
#> 2155                Richmond upon Thames         318       Secondary
#> 2156                Richmond upon Thames         318         Special
#> 2157                           Southwark         210         Primary
#> 2158                           Southwark         210       Secondary
#> 2159                           Southwark         210         Special
#> 2160                              Sutton         319         Primary
#> 2161                              Sutton         319       Secondary
#> 2162                              Sutton         319         Special
#> 2163                       Tower Hamlets         211         Primary
#> 2164                       Tower Hamlets         211       Secondary
#> 2165                       Tower Hamlets         211         Special
#> 2166                      Waltham Forest         320         Primary
#> 2167                      Waltham Forest         320       Secondary
#> 2168                      Waltham Forest         320         Special
#> 2169                          Wandsworth         212         Primary
#> 2170                          Wandsworth         212       Secondary
#> 2171                          Wandsworth         212         Special
#> 2172                         Westminster         213         Primary
#> 2173                         Westminster         213       Secondary
#> 2174                         Westminster         213         Special
#> 2175                                <NA>          NA     All schools
#> 2176                                <NA>          NA         Primary
#> 2177                                <NA>          NA       Secondary
#> 2178                                <NA>          NA         Special
#> 2179                              Medway         887         Primary
#> 2180                              Medway         887       Secondary
#> 2181                              Medway         887         Special
#> 2182                    Bracknell Forest         867         Primary
#> 2183                    Bracknell Forest         867       Secondary
#> 2184                    Bracknell Forest         867         Special
#> 2185                      West Berkshire         869         Primary
#> 2186                      West Berkshire         869       Secondary
#> 2187                      West Berkshire         869         Special
#> 2188                             Reading         870         Primary
#> 2189                             Reading         870       Secondary
#> 2190                             Reading         870         Special
#> 2191                              Slough         871         Primary
#> 2192                              Slough         871       Secondary
#> 2193                              Slough         871         Special
#> 2194              Windsor and Maidenhead         868         Primary
#> 2195              Windsor and Maidenhead         868       Secondary
#> 2196              Windsor and Maidenhead         868         Special
#> 2197                           Wokingham         872         Primary
#> 2198                           Wokingham         872       Secondary
#> 2199                           Wokingham         872         Special
#> 2200                       Milton Keynes         826         Primary
#> 2201                       Milton Keynes         826       Secondary
#> 2202                       Milton Keynes         826         Special
#> 2203                   Brighton and Hove         846         Primary
#> 2204                   Brighton and Hove         846       Secondary
#> 2205                   Brighton and Hove         846         Special
#> 2206                          Portsmouth         851         Primary
#> 2207                          Portsmouth         851       Secondary
#> 2208                          Portsmouth         851         Special
#> 2209                         Southampton         852         Primary
#> 2210                         Southampton         852       Secondary
#> 2211                         Southampton         852         Special
#> 2212                       Isle of Wight         921         Primary
#> 2213                       Isle of Wight         921       Secondary
#> 2214                       Isle of Wight         921         Special
#> 2215                     Buckinghamshire         825         Primary
#> 2216                     Buckinghamshire         825       Secondary
#> 2217                     Buckinghamshire         825         Special
#> 2218                         East Sussex         845         Primary
#> 2219                         East Sussex         845       Secondary
#> 2220                         East Sussex         845         Special
#> 2221                           Hampshire         850         Primary
#> 2222                           Hampshire         850       Secondary
#> 2223                           Hampshire         850         Special
#> 2224                                Kent         886         Primary
#> 2225                                Kent         886       Secondary
#> 2226                                Kent         886         Special
#> 2227                         Oxfordshire         931         Primary
#> 2228                         Oxfordshire         931       Secondary
#> 2229                         Oxfordshire         931         Special
#> 2230                              Surrey         936         Primary
#> 2231                              Surrey         936       Secondary
#> 2232                              Surrey         936         Special
#> 2233                         West Sussex         938         Primary
#> 2234                         West Sussex         938       Secondary
#> 2235                         West Sussex         938         Special
#> 2236                                <NA>          NA     All schools
#> 2237                                <NA>          NA         Primary
#> 2238                                <NA>          NA       Secondary
#> 2239                                <NA>          NA         Special
#> 2240        Bath and North East Somerset         800         Primary
#> 2241        Bath and North East Somerset         800       Secondary
#> 2242        Bath and North East Somerset         800         Special
#> 2243                    Bristol, City of         801         Primary
#> 2244                    Bristol, City of         801       Secondary
#> 2245                    Bristol, City of         801         Special
#> 2246                      North Somerset         802         Primary
#> 2247                      North Somerset         802       Secondary
#> 2248                      North Somerset         802         Special
#> 2249               South Gloucestershire         803         Primary
#> 2250               South Gloucestershire         803       Secondary
#> 2251               South Gloucestershire         803         Special
#> 2252                            Plymouth         879         Primary
#> 2253                            Plymouth         879       Secondary
#> 2254                            Plymouth         879         Special
#> 2255                              Torbay         880         Primary
#> 2256                              Torbay         880       Secondary
#> 2257                              Torbay         880         Special
#> 2258                             Swindon         866         Primary
#> 2259                             Swindon         866       Secondary
#> 2260                             Swindon         866         Special
#> 2261                            Cornwall         908         Primary
#> 2262                            Cornwall         908       Secondary
#> 2263                            Cornwall         908         Special
#> 2264                     Isles of Scilly         420       Secondary
#> 2265                           Wiltshire         865         Primary
#> 2266                           Wiltshire         865       Secondary
#> 2267                           Wiltshire         865         Special
#> 2268 Bournemouth, Christchurch and Poole         839         Primary
#> 2269 Bournemouth, Christchurch and Poole         839       Secondary
#> 2270 Bournemouth, Christchurch and Poole         839         Special
#> 2271                              Dorset         838         Primary
#> 2272                              Dorset         838       Secondary
#> 2273                              Dorset         838         Special
#> 2274                            Somerset         933         Primary
#> 2275                            Somerset         933       Secondary
#> 2276                            Somerset         933         Special
#> 2277                               Devon         878         Primary
#> 2278                               Devon         878       Secondary
#> 2279                               Devon         878         Special
#> 2280                     Gloucestershire         916         Primary
#> 2281                     Gloucestershire         916       Secondary
#> 2282                     Gloucestershire         916         Special
#> 2283                                <NA>          NA     All schools
#> 2284                                <NA>          NA         Primary
#> 2285                                <NA>          NA       Secondary
#> 2286                                <NA>          NA         Special
#> 2287                                <NA>          NA     All schools
#> 2288                                <NA>          NA         Primary
#> 2289                                <NA>          NA       Secondary
#> 2290                                <NA>          NA         Special
#> 2291                          Hartlepool         805         Primary
#> 2292                          Hartlepool         805       Secondary
#> 2293                          Hartlepool         805         Special
#> 2294                       Middlesbrough         806         Primary
#> 2295                       Middlesbrough         806       Secondary
#> 2296                       Middlesbrough         806         Special
#> 2297                Redcar and Cleveland         807         Primary
#> 2298                Redcar and Cleveland         807       Secondary
#> 2299                Redcar and Cleveland         807         Special
#> 2300                    Stockton-on-Tees         808         Primary
#> 2301                    Stockton-on-Tees         808       Secondary
#> 2302                    Stockton-on-Tees         808         Special
#> 2303                          Darlington         841         Primary
#> 2304                          Darlington         841       Secondary
#> 2305                          Darlington         841         Special
#> 2306                       County Durham         840         Primary
#> 2307                       County Durham         840       Secondary
#> 2308                       County Durham         840         Special
#> 2309                      Northumberland         929         Primary
#> 2310                      Northumberland         929       Secondary
#> 2311                      Northumberland         929         Special
#> 2312                 Newcastle upon Tyne         391         Primary
#> 2313                 Newcastle upon Tyne         391       Secondary
#> 2314                 Newcastle upon Tyne         391         Special
#> 2315                      North Tyneside         392         Primary
#> 2316                      North Tyneside         392       Secondary
#> 2317                      North Tyneside         392         Special
#> 2318                      South Tyneside         393         Primary
#> 2319                      South Tyneside         393       Secondary
#> 2320                      South Tyneside         393         Special
#> 2321                          Sunderland         394         Primary
#> 2322                          Sunderland         394       Secondary
#> 2323                          Sunderland         394         Special
#> 2324                           Gateshead         390         Primary
#> 2325                           Gateshead         390       Secondary
#> 2326                           Gateshead         390         Special
#> 2327                                <NA>          NA     All schools
#> 2328                                <NA>          NA         Primary
#> 2329                                <NA>          NA       Secondary
#> 2330                                <NA>          NA         Special
#> 2331                              Halton         876         Primary
#> 2332                              Halton         876       Secondary
#> 2333                              Halton         876         Special
#> 2334                          Warrington         877         Primary
#> 2335                          Warrington         877       Secondary
#> 2336                          Warrington         877         Special
#> 2337               Blackburn with Darwen         889         Primary
#> 2338               Blackburn with Darwen         889       Secondary
#> 2339               Blackburn with Darwen         889         Special
#> 2340                           Blackpool         890         Primary
#> 2341                           Blackpool         890       Secondary
#> 2342                           Blackpool         890         Special
#> 2343                       Cheshire East         895         Primary
#> 2344                       Cheshire East         895       Secondary
#> 2345                       Cheshire East         895         Special
#> 2346           Cheshire West and Chester         896         Primary
#> 2347           Cheshire West and Chester         896       Secondary
#> 2348           Cheshire West and Chester         896         Special
#> 2349                          Cumberland         942         Primary
#> 2350                          Cumberland         942       Secondary
#> 2351                          Cumberland         942         Special
#> 2352             Westmorland and Furness         943         Primary
#> 2353             Westmorland and Furness         943       Secondary
#> 2354             Westmorland and Furness         943         Special
#> 2355                              Bolton         350         Primary
#> 2356                              Bolton         350       Secondary
#> 2357                              Bolton         350         Special
#> 2358                                Bury         351         Primary
#> 2359                                Bury         351       Secondary
#> 2360                                Bury         351         Special
#> 2361                          Manchester         352         Primary
#> 2362                          Manchester         352       Secondary
#> 2363                          Manchester         352         Special
#> 2364                              Oldham         353         Primary
#> 2365                              Oldham         353       Secondary
#> 2366                              Oldham         353         Special
#> 2367                            Rochdale         354         Primary
#> 2368                            Rochdale         354       Secondary
#> 2369                            Rochdale         354         Special
#> 2370                             Salford         355         Primary
#> 2371                             Salford         355       Secondary
#> 2372                             Salford         355         Special
#> 2373                           Stockport         356         Primary
#> 2374                           Stockport         356       Secondary
#> 2375                           Stockport         356         Special
#> 2376                            Tameside         357         Primary
#> 2377                            Tameside         357       Secondary
#> 2378                            Tameside         357         Special
#> 2379                            Trafford         358         Primary
#> 2380                            Trafford         358       Secondary
#> 2381                            Trafford         358         Special
#> 2382                               Wigan         359         Primary
#> 2383                               Wigan         359       Secondary
#> 2384                               Wigan         359         Special
#> 2385                            Knowsley         340         Primary
#> 2386                            Knowsley         340       Secondary
#> 2387                            Knowsley         340         Special
#> 2388                           Liverpool         341         Primary
#> 2389                           Liverpool         341       Secondary
#> 2390                           Liverpool         341         Special
#> 2391                          St. Helens         342         Primary
#> 2392                          St. Helens         342       Secondary
#> 2393                          St. Helens         342         Special
#> 2394                              Sefton         343         Primary
#> 2395                              Sefton         343       Secondary
#> 2396                              Sefton         343         Special
#> 2397                              Wirral         344         Primary
#> 2398                              Wirral         344       Secondary
#> 2399                              Wirral         344         Special
#> 2400                          Lancashire         888         Primary
#> 2401                          Lancashire         888       Secondary
#> 2402                          Lancashire         888         Special
#> 2403                                <NA>          NA     All schools
#> 2404                                <NA>          NA         Primary
#> 2405                                <NA>          NA       Secondary
#> 2406                                <NA>          NA         Special
#> 2407         Kingston upon Hull, City of         810         Primary
#> 2408         Kingston upon Hull, City of         810       Secondary
#> 2409         Kingston upon Hull, City of         810         Special
#> 2410            East Riding of Yorkshire         811         Primary
#> 2411            East Riding of Yorkshire         811       Secondary
#> 2412            East Riding of Yorkshire         811         Special
#> 2413             North East Lincolnshire         812         Primary
#> 2414             North East Lincolnshire         812       Secondary
#> 2415             North East Lincolnshire         812         Special
#> 2416                  North Lincolnshire         813         Primary
#> 2417                  North Lincolnshire         813       Secondary
#> 2418                  North Lincolnshire         813         Special
#> 2419                                York         816         Primary
#> 2420                                York         816       Secondary
#> 2421                                York         816         Special
#> 2422                     North Yorkshire         815         Primary
#> 2423                     North Yorkshire         815       Secondary
#> 2424                     North Yorkshire         815         Special
#> 2425                            Barnsley         370         Primary
#> 2426                            Barnsley         370       Secondary
#> 2427                            Barnsley         370         Special
#> 2428                           Doncaster         371         Primary
#> 2429                           Doncaster         371       Secondary
#> 2430                           Doncaster         371         Special
#> 2431                           Rotherham         372         Primary
#> 2432                           Rotherham         372       Secondary
#> 2433                           Rotherham         372         Special
#> 2434                           Sheffield         373         Primary
#> 2435                           Sheffield         373       Secondary
#> 2436                           Sheffield         373         Special
#> 2437                            Bradford         380         Primary
#> 2438                            Bradford         380       Secondary
#> 2439                            Bradford         380         Special
#> 2440                          Calderdale         381         Primary
#> 2441                          Calderdale         381       Secondary
#> 2442                          Calderdale         381         Special
#> 2443                            Kirklees         382         Primary
#> 2444                            Kirklees         382       Secondary
#> 2445                            Kirklees         382         Special
#> 2446                               Leeds         383         Primary
#> 2447                               Leeds         383       Secondary
#> 2448                               Leeds         383         Special
#> 2449                           Wakefield         384         Primary
#> 2450                           Wakefield         384       Secondary
#> 2451                           Wakefield         384         Special
#> 2452                                <NA>          NA     All schools
#> 2453                                <NA>          NA         Primary
#> 2454                                <NA>          NA       Secondary
#> 2455                                <NA>          NA         Special
#> 2456                               Derby         831         Primary
#> 2457                               Derby         831       Secondary
#> 2458                               Derby         831         Special
#> 2459                           Leicester         856         Primary
#> 2460                           Leicester         856       Secondary
#> 2461                           Leicester         856         Special
#> 2462                             Rutland         857         Primary
#> 2463                             Rutland         857       Secondary
#> 2464                          Nottingham         892         Primary
#> 2465                          Nottingham         892       Secondary
#> 2466                          Nottingham         892         Special
#> 2467              North Northamptonshire         940         Primary
#> 2468              North Northamptonshire         940       Secondary
#> 2469              North Northamptonshire         940         Special
#> 2470               West Northamptonshire         941         Primary
#> 2471               West Northamptonshire         941       Secondary
#> 2472               West Northamptonshire         941         Special
#> 2473                          Derbyshire         830         Primary
#> 2474                          Derbyshire         830       Secondary
#> 2475                          Derbyshire         830         Special
#> 2476                      Leicestershire         855         Primary
#> 2477                      Leicestershire         855       Secondary
#> 2478                      Leicestershire         855         Special
#> 2479                        Lincolnshire         925         Primary
#> 2480                        Lincolnshire         925       Secondary
#> 2481                        Lincolnshire         925         Special
#> 2482                     Nottinghamshire         891         Primary
#> 2483                     Nottinghamshire         891       Secondary
#> 2484                     Nottinghamshire         891         Special
#> 2485                                <NA>          NA     All schools
#> 2486                                <NA>          NA         Primary
#> 2487                                <NA>          NA       Secondary
#> 2488                                <NA>          NA         Special
#> 2489            Herefordshire, County of         884         Primary
#> 2490            Herefordshire, County of         884       Secondary
#> 2491            Herefordshire, County of         884         Special
#> 2492                  Telford and Wrekin         894         Primary
#> 2493                  Telford and Wrekin         894       Secondary
#> 2494                  Telford and Wrekin         894         Special
#> 2495                      Stoke-on-Trent         861         Primary
#> 2496                      Stoke-on-Trent         861       Secondary
#> 2497                      Stoke-on-Trent         861         Special
#> 2498                          Shropshire         893         Primary
#> 2499                          Shropshire         893       Secondary
#> 2500                          Shropshire         893         Special
#> 2501                          Birmingham         330         Primary
#> 2502                          Birmingham         330       Secondary
#> 2503                          Birmingham         330         Special
#> 2504                            Coventry         331         Primary
#> 2505                            Coventry         331       Secondary
#> 2506                            Coventry         331         Special
#> 2507                              Dudley         332         Primary
#> 2508                              Dudley         332       Secondary
#> 2509                              Dudley         332         Special
#> 2510                            Sandwell         333         Primary
#> 2511                            Sandwell         333       Secondary
#> 2512                            Sandwell         333         Special
#> 2513                            Solihull         334         Primary
#> 2514                            Solihull         334       Secondary
#> 2515                            Solihull         334         Special
#> 2516                             Walsall         335         Primary
#> 2517                             Walsall         335       Secondary
#> 2518                             Walsall         335         Special
#> 2519                       Wolverhampton         336         Primary
#> 2520                       Wolverhampton         336       Secondary
#> 2521                       Wolverhampton         336         Special
#> 2522                       Staffordshire         860         Primary
#> 2523                       Staffordshire         860       Secondary
#> 2524                       Staffordshire         860         Special
#> 2525                        Warwickshire         937         Primary
#> 2526                        Warwickshire         937       Secondary
#> 2527                        Warwickshire         937         Special
#> 2528                      Worcestershire         885         Primary
#> 2529                      Worcestershire         885       Secondary
#> 2530                      Worcestershire         885         Special
#> 2531                                <NA>          NA     All schools
#> 2532                                <NA>          NA         Primary
#> 2533                                <NA>          NA       Secondary
#> 2534                                <NA>          NA         Special
#> 2535                        Peterborough         874         Primary
#> 2536                        Peterborough         874       Secondary
#> 2537                        Peterborough         874         Special
#> 2538                               Luton         821         Primary
#> 2539                               Luton         821       Secondary
#> 2540                               Luton         821         Special
#> 2541                     Southend-on-Sea         882         Primary
#> 2542                     Southend-on-Sea         882       Secondary
#> 2543                     Southend-on-Sea         882         Special
#> 2544                            Thurrock         883         Primary
#> 2545                            Thurrock         883       Secondary
#> 2546                            Thurrock         883         Special
#> 2547                             Bedford         822         Primary
#> 2548                             Bedford         822       Secondary
#> 2549                             Bedford         822         Special
#> 2550                Central Bedfordshire         823         Primary
#> 2551                Central Bedfordshire         823       Secondary
#> 2552                Central Bedfordshire         823         Special
#> 2553                      Cambridgeshire         873         Primary
#> 2554                      Cambridgeshire         873       Secondary
#> 2555                      Cambridgeshire         873         Special
#> 2556                               Essex         881         Primary
#> 2557                               Essex         881       Secondary
#> 2558                               Essex         881         Special
#> 2559                       Hertfordshire         919         Primary
#> 2560                       Hertfordshire         919       Secondary
#> 2561                       Hertfordshire         919         Special
#> 2562                             Norfolk         926         Primary
#> 2563                             Norfolk         926       Secondary
#> 2564                             Norfolk         926         Special
#> 2565                             Suffolk         935         Primary
#> 2566                             Suffolk         935       Secondary
#> 2567                             Suffolk         935         Special
#> 2568                                <NA>          NA     All schools
#> 2569                                <NA>          NA         Primary
#> 2570                                <NA>          NA       Secondary
#> 2571                                <NA>          NA         Special
#> 2572                      City of London         201         Primary
#> 2573                Barking and Dagenham         301         Primary
#> 2574                Barking and Dagenham         301       Secondary
#> 2575                Barking and Dagenham         301         Special
#> 2576                              Barnet         302         Primary
#> 2577                              Barnet         302       Secondary
#> 2578                              Barnet         302         Special
#> 2579                              Bexley         303         Primary
#> 2580                              Bexley         303       Secondary
#> 2581                              Bexley         303         Special
#> 2582                               Brent         304         Primary
#> 2583                               Brent         304       Secondary
#> 2584                               Brent         304         Special
#> 2585                             Bromley         305         Primary
#> 2586                             Bromley         305       Secondary
#> 2587                             Bromley         305         Special
#> 2588                              Camden         202         Primary
#> 2589                              Camden         202       Secondary
#> 2590                              Camden         202         Special
#> 2591                             Croydon         306         Primary
#> 2592                             Croydon         306       Secondary
#> 2593                             Croydon         306         Special
#> 2594                              Ealing         307         Primary
#> 2595                              Ealing         307       Secondary
#> 2596                              Ealing         307         Special
#> 2597                             Enfield         308         Primary
#> 2598                             Enfield         308       Secondary
#> 2599                             Enfield         308         Special
#> 2600                           Greenwich         203         Primary
#> 2601                           Greenwich         203       Secondary
#> 2602                           Greenwich         203         Special
#> 2603                             Hackney         204         Primary
#> 2604                             Hackney         204       Secondary
#> 2605                             Hackney         204         Special
#> 2606              Hammersmith and Fulham         205         Primary
#> 2607              Hammersmith and Fulham         205       Secondary
#> 2608              Hammersmith and Fulham         205         Special
#> 2609                            Haringey         309         Primary
#> 2610                            Haringey         309       Secondary
#> 2611                            Haringey         309         Special
#> 2612                              Harrow         310         Primary
#> 2613                              Harrow         310       Secondary
#> 2614                              Harrow         310         Special
#> 2615                            Havering         311         Primary
#> 2616                            Havering         311       Secondary
#> 2617                            Havering         311         Special
#> 2618                          Hillingdon         312         Primary
#> 2619                          Hillingdon         312       Secondary
#> 2620                          Hillingdon         312         Special
#> 2621                            Hounslow         313         Primary
#> 2622                            Hounslow         313       Secondary
#> 2623                            Hounslow         313         Special
#> 2624                           Islington         206         Primary
#> 2625                           Islington         206       Secondary
#> 2626                           Islington         206         Special
#> 2627              Kensington and Chelsea         207         Primary
#> 2628              Kensington and Chelsea         207       Secondary
#> 2629              Kensington and Chelsea         207         Special
#> 2630                Kingston upon Thames         314         Primary
#> 2631                Kingston upon Thames         314       Secondary
#> 2632                Kingston upon Thames         314         Special
#> 2633                             Lambeth         208         Primary
#> 2634                             Lambeth         208       Secondary
#> 2635                             Lambeth         208         Special
#> 2636                            Lewisham         209         Primary
#> 2637                            Lewisham         209       Secondary
#> 2638                            Lewisham         209         Special
#> 2639                              Merton         315         Primary
#> 2640                              Merton         315       Secondary
#> 2641                              Merton         315         Special
#> 2642                              Newham         316         Primary
#> 2643                              Newham         316       Secondary
#> 2644                              Newham         316         Special
#> 2645                           Redbridge         317         Primary
#> 2646                           Redbridge         317       Secondary
#> 2647                           Redbridge         317         Special
#> 2648                Richmond upon Thames         318         Primary
#> 2649                Richmond upon Thames         318       Secondary
#> 2650                Richmond upon Thames         318         Special
#> 2651                           Southwark         210         Primary
#> 2652                           Southwark         210       Secondary
#> 2653                           Southwark         210         Special
#> 2654                              Sutton         319         Primary
#> 2655                              Sutton         319       Secondary
#> 2656                              Sutton         319         Special
#> 2657                       Tower Hamlets         211         Primary
#> 2658                       Tower Hamlets         211       Secondary
#> 2659                       Tower Hamlets         211         Special
#> 2660                      Waltham Forest         320         Primary
#> 2661                      Waltham Forest         320       Secondary
#> 2662                      Waltham Forest         320         Special
#> 2663                          Wandsworth         212         Primary
#> 2664                          Wandsworth         212       Secondary
#> 2665                          Wandsworth         212         Special
#> 2666                         Westminster         213         Primary
#> 2667                         Westminster         213       Secondary
#> 2668                         Westminster         213         Special
#> 2669                                <NA>          NA     All schools
#> 2670                                <NA>          NA         Primary
#> 2671                                <NA>          NA       Secondary
#> 2672                                <NA>          NA         Special
#> 2673                              Medway         887         Primary
#> 2674                              Medway         887       Secondary
#> 2675                              Medway         887         Special
#> 2676                    Bracknell Forest         867         Primary
#> 2677                    Bracknell Forest         867       Secondary
#> 2678                    Bracknell Forest         867         Special
#> 2679                      West Berkshire         869         Primary
#> 2680                      West Berkshire         869       Secondary
#> 2681                      West Berkshire         869         Special
#> 2682                             Reading         870         Primary
#> 2683                             Reading         870       Secondary
#> 2684                             Reading         870         Special
#> 2685                              Slough         871         Primary
#> 2686                              Slough         871       Secondary
#> 2687                              Slough         871         Special
#> 2688              Windsor and Maidenhead         868         Primary
#> 2689              Windsor and Maidenhead         868       Secondary
#> 2690              Windsor and Maidenhead         868         Special
#> 2691                           Wokingham         872         Primary
#> 2692                           Wokingham         872       Secondary
#> 2693                           Wokingham         872         Special
#> 2694                       Milton Keynes         826         Primary
#> 2695                       Milton Keynes         826       Secondary
#> 2696                       Milton Keynes         826         Special
#> 2697                   Brighton and Hove         846         Primary
#> 2698                   Brighton and Hove         846       Secondary
#> 2699                   Brighton and Hove         846         Special
#> 2700                          Portsmouth         851         Primary
#> 2701                          Portsmouth         851       Secondary
#> 2702                          Portsmouth         851         Special
#> 2703                         Southampton         852         Primary
#> 2704                         Southampton         852       Secondary
#> 2705                         Southampton         852         Special
#> 2706                       Isle of Wight         921         Primary
#> 2707                       Isle of Wight         921       Secondary
#> 2708                       Isle of Wight         921         Special
#> 2709                     Buckinghamshire         825         Primary
#> 2710                     Buckinghamshire         825       Secondary
#> 2711                     Buckinghamshire         825         Special
#> 2712                         East Sussex         845         Primary
#> 2713                         East Sussex         845       Secondary
#> 2714                         East Sussex         845         Special
#> 2715                           Hampshire         850         Primary
#> 2716                           Hampshire         850       Secondary
#> 2717                           Hampshire         850         Special
#> 2718                                Kent         886         Primary
#> 2719                                Kent         886       Secondary
#> 2720                                Kent         886         Special
#> 2721                         Oxfordshire         931         Primary
#> 2722                         Oxfordshire         931       Secondary
#> 2723                         Oxfordshire         931         Special
#> 2724                              Surrey         936         Primary
#> 2725                              Surrey         936       Secondary
#> 2726                              Surrey         936         Special
#> 2727                         West Sussex         938         Primary
#> 2728                         West Sussex         938       Secondary
#> 2729                         West Sussex         938         Special
#> 2730                                <NA>          NA     All schools
#> 2731                                <NA>          NA         Primary
#> 2732                                <NA>          NA       Secondary
#> 2733                                <NA>          NA         Special
#> 2734        Bath and North East Somerset         800         Primary
#> 2735        Bath and North East Somerset         800       Secondary
#> 2736        Bath and North East Somerset         800         Special
#> 2737                    Bristol, City of         801         Primary
#> 2738                    Bristol, City of         801       Secondary
#> 2739                    Bristol, City of         801         Special
#> 2740                      North Somerset         802         Primary
#> 2741                      North Somerset         802       Secondary
#> 2742                      North Somerset         802         Special
#> 2743               South Gloucestershire         803         Primary
#> 2744               South Gloucestershire         803       Secondary
#> 2745               South Gloucestershire         803         Special
#> 2746                            Plymouth         879         Primary
#> 2747                            Plymouth         879       Secondary
#> 2748                            Plymouth         879         Special
#> 2749                              Torbay         880         Primary
#> 2750                              Torbay         880       Secondary
#> 2751                              Torbay         880         Special
#> 2752                             Swindon         866         Primary
#> 2753                             Swindon         866       Secondary
#> 2754                             Swindon         866         Special
#> 2755                            Cornwall         908         Primary
#> 2756                            Cornwall         908       Secondary
#> 2757                            Cornwall         908         Special
#> 2758                     Isles of Scilly         420       Secondary
#> 2759                           Wiltshire         865         Primary
#> 2760                           Wiltshire         865       Secondary
#> 2761                           Wiltshire         865         Special
#> 2762 Bournemouth, Christchurch and Poole         839         Primary
#> 2763 Bournemouth, Christchurch and Poole         839       Secondary
#> 2764 Bournemouth, Christchurch and Poole         839         Special
#> 2765                              Dorset         838         Primary
#> 2766                              Dorset         838       Secondary
#> 2767                              Dorset         838         Special
#> 2768                            Somerset         933         Primary
#> 2769                            Somerset         933       Secondary
#> 2770                            Somerset         933         Special
#> 2771                               Devon         878         Primary
#> 2772                               Devon         878       Secondary
#> 2773                               Devon         878         Special
#> 2774                     Gloucestershire         916         Primary
#> 2775                     Gloucestershire         916       Secondary
#> 2776                     Gloucestershire         916         Special
#> 2777                                <NA>          NA     All schools
#> 2778                                <NA>          NA         Primary
#> 2779                                <NA>          NA       Secondary
#> 2780                                <NA>          NA         Special
#> 2781                                <NA>          NA     All schools
#> 2782                                <NA>          NA         Primary
#> 2783                                <NA>          NA       Secondary
#> 2784                                <NA>          NA         Special
#> 2785                          Hartlepool         805         Primary
#> 2786                          Hartlepool         805       Secondary
#> 2787                          Hartlepool         805         Special
#> 2788                       Middlesbrough         806         Primary
#> 2789                       Middlesbrough         806       Secondary
#> 2790                       Middlesbrough         806         Special
#> 2791                Redcar and Cleveland         807         Primary
#> 2792                Redcar and Cleveland         807       Secondary
#> 2793                Redcar and Cleveland         807         Special
#> 2794                    Stockton-on-Tees         808         Primary
#> 2795                    Stockton-on-Tees         808       Secondary
#> 2796                    Stockton-on-Tees         808         Special
#> 2797                          Darlington         841         Primary
#> 2798                          Darlington         841       Secondary
#> 2799                          Darlington         841         Special
#> 2800                       County Durham         840         Primary
#> 2801                       County Durham         840       Secondary
#> 2802                       County Durham         840         Special
#> 2803                      Northumberland         929         Primary
#> 2804                      Northumberland         929       Secondary
#> 2805                      Northumberland         929         Special
#> 2806                 Newcastle upon Tyne         391         Primary
#> 2807                 Newcastle upon Tyne         391       Secondary
#> 2808                 Newcastle upon Tyne         391         Special
#> 2809                      North Tyneside         392         Primary
#> 2810                      North Tyneside         392       Secondary
#> 2811                      North Tyneside         392         Special
#> 2812                      South Tyneside         393         Primary
#> 2813                      South Tyneside         393       Secondary
#> 2814                      South Tyneside         393         Special
#> 2815                          Sunderland         394         Primary
#> 2816                          Sunderland         394       Secondary
#> 2817                          Sunderland         394         Special
#> 2818                           Gateshead         390         Primary
#> 2819                           Gateshead         390       Secondary
#> 2820                           Gateshead         390         Special
#> 2821                                <NA>          NA     All schools
#> 2822                                <NA>          NA         Primary
#> 2823                                <NA>          NA       Secondary
#> 2824                                <NA>          NA         Special
#> 2825                              Halton         876         Primary
#> 2826                              Halton         876       Secondary
#> 2827                              Halton         876         Special
#> 2828                          Warrington         877         Primary
#> 2829                          Warrington         877       Secondary
#> 2830                          Warrington         877         Special
#> 2831               Blackburn with Darwen         889         Primary
#> 2832               Blackburn with Darwen         889       Secondary
#> 2833               Blackburn with Darwen         889         Special
#> 2834                           Blackpool         890         Primary
#> 2835                           Blackpool         890       Secondary
#> 2836                           Blackpool         890         Special
#> 2837                       Cheshire East         895         Primary
#> 2838                       Cheshire East         895       Secondary
#> 2839                       Cheshire East         895         Special
#> 2840           Cheshire West and Chester         896         Primary
#> 2841           Cheshire West and Chester         896       Secondary
#> 2842           Cheshire West and Chester         896         Special
#> 2843                          Cumberland         942         Primary
#> 2844                          Cumberland         942       Secondary
#> 2845                          Cumberland         942         Special
#> 2846             Westmorland and Furness         943         Primary
#> 2847             Westmorland and Furness         943       Secondary
#> 2848             Westmorland and Furness         943         Special
#> 2849                              Bolton         350         Primary
#> 2850                              Bolton         350       Secondary
#> 2851                              Bolton         350         Special
#> 2852                                Bury         351         Primary
#> 2853                                Bury         351       Secondary
#> 2854                                Bury         351         Special
#> 2855                          Manchester         352         Primary
#> 2856                          Manchester         352       Secondary
#> 2857                          Manchester         352         Special
#> 2858                              Oldham         353         Primary
#> 2859                              Oldham         353       Secondary
#> 2860                              Oldham         353         Special
#> 2861                            Rochdale         354         Primary
#> 2862                            Rochdale         354       Secondary
#> 2863                            Rochdale         354         Special
#> 2864                             Salford         355         Primary
#> 2865                             Salford         355       Secondary
#> 2866                             Salford         355         Special
#> 2867                           Stockport         356         Primary
#> 2868                           Stockport         356       Secondary
#> 2869                           Stockport         356         Special
#> 2870                            Tameside         357         Primary
#> 2871                            Tameside         357       Secondary
#> 2872                            Tameside         357         Special
#> 2873                            Trafford         358         Primary
#> 2874                            Trafford         358       Secondary
#> 2875                            Trafford         358         Special
#> 2876                               Wigan         359         Primary
#> 2877                               Wigan         359       Secondary
#> 2878                               Wigan         359         Special
#> 2879                            Knowsley         340         Primary
#> 2880                            Knowsley         340       Secondary
#> 2881                            Knowsley         340         Special
#> 2882                           Liverpool         341         Primary
#> 2883                           Liverpool         341       Secondary
#> 2884                           Liverpool         341         Special
#> 2885                          St. Helens         342         Primary
#> 2886                          St. Helens         342       Secondary
#> 2887                          St. Helens         342         Special
#> 2888                              Sefton         343         Primary
#> 2889                              Sefton         343       Secondary
#> 2890                              Sefton         343         Special
#> 2891                              Wirral         344         Primary
#> 2892                              Wirral         344       Secondary
#> 2893                              Wirral         344         Special
#> 2894                          Lancashire         888         Primary
#> 2895                          Lancashire         888       Secondary
#> 2896                          Lancashire         888         Special
#> 2897                                <NA>          NA     All schools
#> 2898                                <NA>          NA         Primary
#> 2899                                <NA>          NA       Secondary
#> 2900                                <NA>          NA         Special
#> 2901         Kingston upon Hull, City of         810         Primary
#> 2902         Kingston upon Hull, City of         810       Secondary
#> 2903         Kingston upon Hull, City of         810         Special
#> 2904            East Riding of Yorkshire         811         Primary
#> 2905            East Riding of Yorkshire         811       Secondary
#> 2906            East Riding of Yorkshire         811         Special
#> 2907             North East Lincolnshire         812         Primary
#> 2908             North East Lincolnshire         812       Secondary
#> 2909             North East Lincolnshire         812         Special
#> 2910                  North Lincolnshire         813         Primary
#> 2911                  North Lincolnshire         813       Secondary
#> 2912                  North Lincolnshire         813         Special
#> 2913                                York         816         Primary
#> 2914                                York         816       Secondary
#> 2915                                York         816         Special
#> 2916                     North Yorkshire         815         Primary
#> 2917                     North Yorkshire         815       Secondary
#> 2918                     North Yorkshire         815         Special
#> 2919                            Barnsley         370         Primary
#> 2920                            Barnsley         370       Secondary
#> 2921                            Barnsley         370         Special
#> 2922                           Doncaster         371         Primary
#> 2923                           Doncaster         371       Secondary
#> 2924                           Doncaster         371         Special
#> 2925                           Rotherham         372         Primary
#> 2926                           Rotherham         372       Secondary
#> 2927                           Rotherham         372         Special
#> 2928                           Sheffield         373         Primary
#> 2929                           Sheffield         373       Secondary
#> 2930                           Sheffield         373         Special
#> 2931                            Bradford         380         Primary
#> 2932                            Bradford         380       Secondary
#> 2933                            Bradford         380         Special
#> 2934                          Calderdale         381         Primary
#> 2935                          Calderdale         381       Secondary
#> 2936                          Calderdale         381         Special
#> 2937                            Kirklees         382         Primary
#> 2938                            Kirklees         382       Secondary
#> 2939                            Kirklees         382         Special
#> 2940                               Leeds         383         Primary
#> 2941                               Leeds         383       Secondary
#> 2942                               Leeds         383         Special
#> 2943                           Wakefield         384         Primary
#> 2944                           Wakefield         384       Secondary
#> 2945                           Wakefield         384         Special
#> 2946                                <NA>          NA     All schools
#> 2947                                <NA>          NA         Primary
#> 2948                                <NA>          NA       Secondary
#> 2949                                <NA>          NA         Special
#> 2950                               Derby         831         Primary
#> 2951                               Derby         831       Secondary
#> 2952                               Derby         831         Special
#> 2953                           Leicester         856         Primary
#> 2954                           Leicester         856       Secondary
#> 2955                           Leicester         856         Special
#> 2956                             Rutland         857         Primary
#> 2957                             Rutland         857       Secondary
#> 2958                          Nottingham         892         Primary
#> 2959                          Nottingham         892       Secondary
#> 2960                          Nottingham         892         Special
#> 2961              North Northamptonshire         940         Primary
#> 2962              North Northamptonshire         940       Secondary
#> 2963              North Northamptonshire         940         Special
#> 2964               West Northamptonshire         941         Primary
#> 2965               West Northamptonshire         941       Secondary
#> 2966               West Northamptonshire         941         Special
#> 2967                          Derbyshire         830         Primary
#> 2968                          Derbyshire         830       Secondary
#> 2969                          Derbyshire         830         Special
#> 2970                      Leicestershire         855         Primary
#> 2971                      Leicestershire         855       Secondary
#> 2972                      Leicestershire         855         Special
#> 2973                        Lincolnshire         925         Primary
#> 2974                        Lincolnshire         925       Secondary
#> 2975                        Lincolnshire         925         Special
#> 2976                     Nottinghamshire         891         Primary
#> 2977                     Nottinghamshire         891       Secondary
#> 2978                     Nottinghamshire         891         Special
#> 2979                                <NA>          NA     All schools
#> 2980                                <NA>          NA         Primary
#> 2981                                <NA>          NA       Secondary
#> 2982                                <NA>          NA         Special
#> 2983            Herefordshire, County of         884         Primary
#> 2984            Herefordshire, County of         884       Secondary
#> 2985            Herefordshire, County of         884         Special
#> 2986                  Telford and Wrekin         894         Primary
#> 2987                  Telford and Wrekin         894       Secondary
#> 2988                  Telford and Wrekin         894         Special
#> 2989                      Stoke-on-Trent         861         Primary
#> 2990                      Stoke-on-Trent         861       Secondary
#> 2991                      Stoke-on-Trent         861         Special
#> 2992                          Shropshire         893         Primary
#> 2993                          Shropshire         893       Secondary
#> 2994                          Shropshire         893         Special
#> 2995                          Birmingham         330         Primary
#> 2996                          Birmingham         330       Secondary
#> 2997                          Birmingham         330         Special
#> 2998                            Coventry         331         Primary
#> 2999                            Coventry         331       Secondary
#> 3000                            Coventry         331         Special
#> 3001                              Dudley         332         Primary
#> 3002                              Dudley         332       Secondary
#> 3003                              Dudley         332         Special
#> 3004                            Sandwell         333         Primary
#> 3005                            Sandwell         333       Secondary
#> 3006                            Sandwell         333         Special
#> 3007                            Solihull         334         Primary
#> 3008                            Solihull         334       Secondary
#> 3009                            Solihull         334         Special
#> 3010                             Walsall         335         Primary
#> 3011                             Walsall         335       Secondary
#> 3012                             Walsall         335         Special
#> 3013                       Wolverhampton         336         Primary
#> 3014                       Wolverhampton         336       Secondary
#> 3015                       Wolverhampton         336         Special
#> 3016                       Staffordshire         860         Primary
#> 3017                       Staffordshire         860       Secondary
#> 3018                       Staffordshire         860         Special
#> 3019                        Warwickshire         937         Primary
#> 3020                        Warwickshire         937       Secondary
#> 3021                        Warwickshire         937         Special
#> 3022                      Worcestershire         885         Primary
#> 3023                      Worcestershire         885       Secondary
#> 3024                      Worcestershire         885         Special
#> 3025                                <NA>          NA     All schools
#> 3026                                <NA>          NA         Primary
#> 3027                                <NA>          NA       Secondary
#> 3028                                <NA>          NA         Special
#> 3029                        Peterborough         874         Primary
#> 3030                        Peterborough         874       Secondary
#> 3031                        Peterborough         874         Special
#> 3032                               Luton         821         Primary
#> 3033                               Luton         821       Secondary
#> 3034                               Luton         821         Special
#> 3035                     Southend-on-Sea         882         Primary
#> 3036                     Southend-on-Sea         882       Secondary
#> 3037                     Southend-on-Sea         882         Special
#> 3038                            Thurrock         883         Primary
#> 3039                            Thurrock         883       Secondary
#> 3040                            Thurrock         883         Special
#> 3041                             Bedford         822         Primary
#> 3042                             Bedford         822       Secondary
#> 3043                             Bedford         822         Special
#> 3044                Central Bedfordshire         823         Primary
#> 3045                Central Bedfordshire         823       Secondary
#> 3046                Central Bedfordshire         823         Special
#> 3047                      Cambridgeshire         873         Primary
#> 3048                      Cambridgeshire         873       Secondary
#> 3049                      Cambridgeshire         873         Special
#> 3050                               Essex         881         Primary
#> 3051                               Essex         881       Secondary
#> 3052                               Essex         881         Special
#> 3053                       Hertfordshire         919         Primary
#> 3054                       Hertfordshire         919       Secondary
#> 3055                       Hertfordshire         919         Special
#> 3056                             Norfolk         926         Primary
#> 3057                             Norfolk         926       Secondary
#> 3058                             Norfolk         926         Special
#> 3059                             Suffolk         935         Primary
#> 3060                             Suffolk         935       Secondary
#> 3061                             Suffolk         935         Special
#> 3062                                <NA>          NA     All schools
#> 3063                                <NA>          NA         Primary
#> 3064                                <NA>          NA       Secondary
#> 3065                                <NA>          NA         Special
#> 3066                      City of London         201         Primary
#> 3067                Barking and Dagenham         301         Primary
#> 3068                Barking and Dagenham         301       Secondary
#> 3069                Barking and Dagenham         301         Special
#> 3070                              Barnet         302         Primary
#> 3071                              Barnet         302       Secondary
#> 3072                              Barnet         302         Special
#> 3073                              Bexley         303         Primary
#> 3074                              Bexley         303       Secondary
#> 3075                              Bexley         303         Special
#> 3076                               Brent         304         Primary
#> 3077                               Brent         304       Secondary
#> 3078                               Brent         304         Special
#> 3079                             Bromley         305         Primary
#> 3080                             Bromley         305       Secondary
#> 3081                             Bromley         305         Special
#> 3082                              Camden         202         Primary
#> 3083                              Camden         202       Secondary
#> 3084                              Camden         202         Special
#> 3085                             Croydon         306         Primary
#> 3086                             Croydon         306       Secondary
#> 3087                             Croydon         306         Special
#> 3088                              Ealing         307         Primary
#> 3089                              Ealing         307       Secondary
#> 3090                              Ealing         307         Special
#> 3091                             Enfield         308         Primary
#> 3092                             Enfield         308       Secondary
#> 3093                             Enfield         308         Special
#> 3094                           Greenwich         203         Primary
#> 3095                           Greenwich         203       Secondary
#> 3096                           Greenwich         203         Special
#> 3097                             Hackney         204         Primary
#> 3098                             Hackney         204       Secondary
#> 3099                             Hackney         204         Special
#> 3100              Hammersmith and Fulham         205         Primary
#> 3101              Hammersmith and Fulham         205       Secondary
#> 3102              Hammersmith and Fulham         205         Special
#> 3103                            Haringey         309         Primary
#> 3104                            Haringey         309       Secondary
#> 3105                            Haringey         309         Special
#> 3106                              Harrow         310         Primary
#> 3107                              Harrow         310       Secondary
#> 3108                              Harrow         310         Special
#> 3109                            Havering         311         Primary
#> 3110                            Havering         311       Secondary
#> 3111                            Havering         311         Special
#> 3112                          Hillingdon         312         Primary
#> 3113                          Hillingdon         312       Secondary
#> 3114                          Hillingdon         312         Special
#> 3115                            Hounslow         313         Primary
#> 3116                            Hounslow         313       Secondary
#> 3117                            Hounslow         313         Special
#> 3118                           Islington         206         Primary
#> 3119                           Islington         206       Secondary
#> 3120                           Islington         206         Special
#> 3121              Kensington and Chelsea         207         Primary
#> 3122              Kensington and Chelsea         207       Secondary
#> 3123              Kensington and Chelsea         207         Special
#> 3124                Kingston upon Thames         314         Primary
#> 3125                Kingston upon Thames         314       Secondary
#> 3126                Kingston upon Thames         314         Special
#> 3127                             Lambeth         208         Primary
#> 3128                             Lambeth         208       Secondary
#> 3129                             Lambeth         208         Special
#> 3130                            Lewisham         209         Primary
#> 3131                            Lewisham         209       Secondary
#> 3132                            Lewisham         209         Special
#> 3133                              Merton         315         Primary
#> 3134                              Merton         315       Secondary
#> 3135                              Merton         315         Special
#> 3136                              Newham         316         Primary
#> 3137                              Newham         316       Secondary
#> 3138                              Newham         316         Special
#> 3139                           Redbridge         317         Primary
#> 3140                           Redbridge         317       Secondary
#> 3141                           Redbridge         317         Special
#> 3142                Richmond upon Thames         318         Primary
#> 3143                Richmond upon Thames         318       Secondary
#> 3144                Richmond upon Thames         318         Special
#> 3145                           Southwark         210         Primary
#> 3146                           Southwark         210       Secondary
#> 3147                           Southwark         210         Special
#> 3148                              Sutton         319         Primary
#> 3149                              Sutton         319       Secondary
#> 3150                              Sutton         319         Special
#> 3151                       Tower Hamlets         211         Primary
#> 3152                       Tower Hamlets         211       Secondary
#> 3153                       Tower Hamlets         211         Special
#> 3154                      Waltham Forest         320         Primary
#> 3155                      Waltham Forest         320       Secondary
#> 3156                      Waltham Forest         320         Special
#> 3157                          Wandsworth         212         Primary
#> 3158                          Wandsworth         212       Secondary
#> 3159                          Wandsworth         212         Special
#> 3160                         Westminster         213         Primary
#> 3161                         Westminster         213       Secondary
#> 3162                         Westminster         213         Special
#> 3163                                <NA>          NA     All schools
#> 3164                                <NA>          NA         Primary
#> 3165                                <NA>          NA       Secondary
#> 3166                                <NA>          NA         Special
#> 3167                              Medway         887         Primary
#> 3168                              Medway         887       Secondary
#> 3169                              Medway         887         Special
#> 3170                    Bracknell Forest         867         Primary
#> 3171                    Bracknell Forest         867       Secondary
#> 3172                    Bracknell Forest         867         Special
#> 3173                      West Berkshire         869         Primary
#> 3174                      West Berkshire         869       Secondary
#> 3175                      West Berkshire         869         Special
#> 3176                             Reading         870         Primary
#> 3177                             Reading         870       Secondary
#> 3178                             Reading         870         Special
#> 3179                              Slough         871         Primary
#> 3180                              Slough         871       Secondary
#> 3181                              Slough         871         Special
#> 3182              Windsor and Maidenhead         868         Primary
#> 3183              Windsor and Maidenhead         868       Secondary
#> 3184              Windsor and Maidenhead         868         Special
#> 3185                           Wokingham         872         Primary
#> 3186                           Wokingham         872       Secondary
#> 3187                           Wokingham         872         Special
#> 3188                       Milton Keynes         826         Primary
#> 3189                       Milton Keynes         826       Secondary
#> 3190                       Milton Keynes         826         Special
#> 3191                   Brighton and Hove         846         Primary
#> 3192                   Brighton and Hove         846       Secondary
#> 3193                   Brighton and Hove         846         Special
#> 3194                          Portsmouth         851         Primary
#> 3195                          Portsmouth         851       Secondary
#> 3196                          Portsmouth         851         Special
#> 3197                         Southampton         852         Primary
#> 3198                         Southampton         852       Secondary
#> 3199                         Southampton         852         Special
#> 3200                       Isle of Wight         921         Primary
#> 3201                       Isle of Wight         921       Secondary
#> 3202                       Isle of Wight         921         Special
#> 3203                     Buckinghamshire         825         Primary
#> 3204                     Buckinghamshire         825       Secondary
#> 3205                     Buckinghamshire         825         Special
#> 3206                         East Sussex         845         Primary
#> 3207                         East Sussex         845       Secondary
#> 3208                         East Sussex         845         Special
#> 3209                           Hampshire         850         Primary
#> 3210                           Hampshire         850       Secondary
#> 3211                           Hampshire         850         Special
#> 3212                                Kent         886         Primary
#> 3213                                Kent         886       Secondary
#> 3214                                Kent         886         Special
#> 3215                         Oxfordshire         931         Primary
#> 3216                         Oxfordshire         931       Secondary
#> 3217                         Oxfordshire         931         Special
#> 3218                              Surrey         936         Primary
#> 3219                              Surrey         936       Secondary
#> 3220                              Surrey         936         Special
#> 3221                         West Sussex         938         Primary
#> 3222                         West Sussex         938       Secondary
#> 3223                         West Sussex         938         Special
#> 3224                                <NA>          NA     All schools
#> 3225                                <NA>          NA         Primary
#> 3226                                <NA>          NA       Secondary
#> 3227                                <NA>          NA         Special
#> 3228        Bath and North East Somerset         800         Primary
#> 3229        Bath and North East Somerset         800       Secondary
#> 3230        Bath and North East Somerset         800         Special
#> 3231                    Bristol, City of         801         Primary
#> 3232                    Bristol, City of         801       Secondary
#> 3233                    Bristol, City of         801         Special
#> 3234                      North Somerset         802         Primary
#> 3235                      North Somerset         802       Secondary
#> 3236                      North Somerset         802         Special
#> 3237               South Gloucestershire         803         Primary
#> 3238               South Gloucestershire         803       Secondary
#> 3239               South Gloucestershire         803         Special
#> 3240                            Plymouth         879         Primary
#> 3241                            Plymouth         879       Secondary
#> 3242                            Plymouth         879         Special
#> 3243                              Torbay         880         Primary
#> 3244                              Torbay         880       Secondary
#> 3245                              Torbay         880         Special
#> 3246                             Swindon         866         Primary
#> 3247                             Swindon         866       Secondary
#> 3248                             Swindon         866         Special
#> 3249                            Cornwall         908         Primary
#> 3250                            Cornwall         908       Secondary
#> 3251                            Cornwall         908         Special
#> 3252                     Isles of Scilly         420       Secondary
#> 3253                           Wiltshire         865         Primary
#> 3254                           Wiltshire         865       Secondary
#> 3255                           Wiltshire         865         Special
#> 3256 Bournemouth, Christchurch and Poole         839         Primary
#> 3257 Bournemouth, Christchurch and Poole         839       Secondary
#> 3258 Bournemouth, Christchurch and Poole         839         Special
#> 3259                              Dorset         838         Primary
#> 3260                              Dorset         838       Secondary
#> 3261                              Dorset         838         Special
#> 3262                            Somerset         933         Primary
#> 3263                            Somerset         933       Secondary
#> 3264                            Somerset         933         Special
#> 3265                               Devon         878         Primary
#> 3266                               Devon         878       Secondary
#> 3267                               Devon         878         Special
#> 3268                     Gloucestershire         916         Primary
#> 3269                     Gloucestershire         916       Secondary
#> 3270                     Gloucestershire         916         Special
#> 3271                                <NA>          NA     All schools
#> 3272                                <NA>          NA         Primary
#> 3273                                <NA>          NA       Secondary
#> 3274                                <NA>          NA         Special
#> 3275                                <NA>          NA     All schools
#> 3276                                <NA>          NA         Primary
#> 3277                                <NA>          NA       Secondary
#> 3278                                <NA>          NA         Special
#> 3279                          Hartlepool         805         Primary
#> 3280                          Hartlepool         805       Secondary
#> 3281                          Hartlepool         805         Special
#> 3282                       Middlesbrough         806         Primary
#> 3283                       Middlesbrough         806       Secondary
#> 3284                       Middlesbrough         806         Special
#> 3285                Redcar and Cleveland         807         Primary
#> 3286                Redcar and Cleveland         807       Secondary
#> 3287                Redcar and Cleveland         807         Special
#> 3288                    Stockton-on-Tees         808         Primary
#> 3289                    Stockton-on-Tees         808       Secondary
#> 3290                    Stockton-on-Tees         808         Special
#> 3291                          Darlington         841         Primary
#> 3292                          Darlington         841       Secondary
#> 3293                          Darlington         841         Special
#> 3294                       County Durham         840         Primary
#> 3295                       County Durham         840       Secondary
#> 3296                       County Durham         840         Special
#> 3297                      Northumberland         929         Primary
#> 3298                      Northumberland         929       Secondary
#> 3299                      Northumberland         929         Special
#> 3300                 Newcastle upon Tyne         391         Primary
#> 3301                 Newcastle upon Tyne         391       Secondary
#> 3302                 Newcastle upon Tyne         391         Special
#> 3303                      North Tyneside         392         Primary
#> 3304                      North Tyneside         392       Secondary
#> 3305                      North Tyneside         392         Special
#> 3306                      South Tyneside         393         Primary
#> 3307                      South Tyneside         393       Secondary
#> 3308                      South Tyneside         393         Special
#> 3309                          Sunderland         394         Primary
#> 3310                          Sunderland         394       Secondary
#> 3311                          Sunderland         394         Special
#> 3312                           Gateshead         390         Primary
#> 3313                           Gateshead         390       Secondary
#> 3314                           Gateshead         390         Special
#> 3315                                <NA>          NA     All schools
#> 3316                                <NA>          NA         Primary
#> 3317                                <NA>          NA       Secondary
#> 3318                                <NA>          NA         Special
#> 3319                              Halton         876         Primary
#> 3320                              Halton         876       Secondary
#> 3321                              Halton         876         Special
#> 3322                          Warrington         877         Primary
#> 3323                          Warrington         877       Secondary
#> 3324                          Warrington         877         Special
#> 3325               Blackburn with Darwen         889         Primary
#> 3326               Blackburn with Darwen         889       Secondary
#> 3327               Blackburn with Darwen         889         Special
#> 3328                           Blackpool         890         Primary
#> 3329                           Blackpool         890       Secondary
#> 3330                           Blackpool         890         Special
#> 3331                       Cheshire East         895         Primary
#> 3332                       Cheshire East         895       Secondary
#> 3333                       Cheshire East         895         Special
#> 3334           Cheshire West and Chester         896         Primary
#> 3335           Cheshire West and Chester         896       Secondary
#> 3336           Cheshire West and Chester         896         Special
#> 3337                          Cumberland         942         Primary
#> 3338                          Cumberland         942       Secondary
#> 3339                          Cumberland         942         Special
#> 3340             Westmorland and Furness         943         Primary
#> 3341             Westmorland and Furness         943       Secondary
#> 3342             Westmorland and Furness         943         Special
#> 3343                              Bolton         350         Primary
#> 3344                              Bolton         350       Secondary
#> 3345                              Bolton         350         Special
#> 3346                                Bury         351         Primary
#> 3347                                Bury         351       Secondary
#> 3348                                Bury         351         Special
#> 3349                          Manchester         352         Primary
#> 3350                          Manchester         352       Secondary
#> 3351                          Manchester         352         Special
#> 3352                              Oldham         353         Primary
#> 3353                              Oldham         353       Secondary
#> 3354                              Oldham         353         Special
#> 3355                            Rochdale         354         Primary
#> 3356                            Rochdale         354       Secondary
#> 3357                            Rochdale         354         Special
#> 3358                             Salford         355         Primary
#> 3359                             Salford         355       Secondary
#> 3360                             Salford         355         Special
#> 3361                           Stockport         356         Primary
#> 3362                           Stockport         356       Secondary
#> 3363                           Stockport         356         Special
#> 3364                            Tameside         357         Primary
#> 3365                            Tameside         357       Secondary
#> 3366                            Tameside         357         Special
#> 3367                            Trafford         358         Primary
#> 3368                            Trafford         358       Secondary
#> 3369                            Trafford         358         Special
#> 3370                               Wigan         359         Primary
#> 3371                               Wigan         359       Secondary
#> 3372                               Wigan         359         Special
#> 3373                            Knowsley         340         Primary
#> 3374                            Knowsley         340       Secondary
#> 3375                            Knowsley         340         Special
#> 3376                           Liverpool         341         Primary
#> 3377                           Liverpool         341       Secondary
#> 3378                           Liverpool         341         Special
#> 3379                          St. Helens         342         Primary
#> 3380                          St. Helens         342       Secondary
#> 3381                          St. Helens         342         Special
#> 3382                              Sefton         343         Primary
#> 3383                              Sefton         343       Secondary
#> 3384                              Sefton         343         Special
#> 3385                              Wirral         344         Primary
#> 3386                              Wirral         344       Secondary
#> 3387                              Wirral         344         Special
#> 3388                          Lancashire         888         Primary
#> 3389                          Lancashire         888       Secondary
#> 3390                          Lancashire         888         Special
#> 3391                                <NA>          NA     All schools
#> 3392                                <NA>          NA         Primary
#> 3393                                <NA>          NA       Secondary
#> 3394                                <NA>          NA         Special
#> 3395         Kingston upon Hull, City of         810         Primary
#> 3396         Kingston upon Hull, City of         810       Secondary
#> 3397         Kingston upon Hull, City of         810         Special
#> 3398            East Riding of Yorkshire         811         Primary
#> 3399            East Riding of Yorkshire         811       Secondary
#> 3400            East Riding of Yorkshire         811         Special
#> 3401             North East Lincolnshire         812         Primary
#> 3402             North East Lincolnshire         812       Secondary
#> 3403             North East Lincolnshire         812         Special
#> 3404                  North Lincolnshire         813         Primary
#> 3405                  North Lincolnshire         813       Secondary
#> 3406                  North Lincolnshire         813         Special
#> 3407                                York         816         Primary
#> 3408                                York         816       Secondary
#> 3409                                York         816         Special
#> 3410                     North Yorkshire         815         Primary
#> 3411                     North Yorkshire         815       Secondary
#> 3412                     North Yorkshire         815         Special
#> 3413                            Barnsley         370         Primary
#> 3414                            Barnsley         370       Secondary
#> 3415                            Barnsley         370         Special
#> 3416                           Doncaster         371         Primary
#> 3417                           Doncaster         371       Secondary
#> 3418                           Doncaster         371         Special
#> 3419                           Rotherham         372         Primary
#> 3420                           Rotherham         372       Secondary
#> 3421                           Rotherham         372         Special
#> 3422                           Sheffield         373         Primary
#> 3423                           Sheffield         373       Secondary
#> 3424                           Sheffield         373         Special
#> 3425                            Bradford         380         Primary
#> 3426                            Bradford         380       Secondary
#> 3427                            Bradford         380         Special
#> 3428                          Calderdale         381         Primary
#> 3429                          Calderdale         381       Secondary
#> 3430                          Calderdale         381         Special
#> 3431                            Kirklees         382         Primary
#> 3432                            Kirklees         382       Secondary
#> 3433                            Kirklees         382         Special
#> 3434                               Leeds         383         Primary
#> 3435                               Leeds         383       Secondary
#> 3436                               Leeds         383         Special
#> 3437                           Wakefield         384         Primary
#> 3438                           Wakefield         384       Secondary
#> 3439                           Wakefield         384         Special
#> 3440                                <NA>          NA     All schools
#> 3441                                <NA>          NA         Primary
#> 3442                                <NA>          NA       Secondary
#> 3443                                <NA>          NA         Special
#> 3444                               Derby         831         Primary
#> 3445                               Derby         831       Secondary
#> 3446                               Derby         831         Special
#> 3447                           Leicester         856         Primary
#> 3448                           Leicester         856       Secondary
#> 3449                           Leicester         856         Special
#> 3450                             Rutland         857         Primary
#> 3451                             Rutland         857       Secondary
#> 3452                          Nottingham         892         Primary
#> 3453                          Nottingham         892       Secondary
#> 3454                          Nottingham         892         Special
#> 3455              North Northamptonshire         940         Primary
#> 3456              North Northamptonshire         940       Secondary
#> 3457              North Northamptonshire         940         Special
#> 3458               West Northamptonshire         941         Primary
#> 3459               West Northamptonshire         941       Secondary
#> 3460               West Northamptonshire         941         Special
#> 3461                          Derbyshire         830         Primary
#> 3462                          Derbyshire         830       Secondary
#> 3463                          Derbyshire         830         Special
#> 3464                      Leicestershire         855         Primary
#> 3465                      Leicestershire         855       Secondary
#> 3466                      Leicestershire         855         Special
#> 3467                        Lincolnshire         925         Primary
#> 3468                        Lincolnshire         925       Secondary
#> 3469                        Lincolnshire         925         Special
#> 3470                     Nottinghamshire         891         Primary
#> 3471                     Nottinghamshire         891       Secondary
#> 3472                     Nottinghamshire         891         Special
#> 3473                                <NA>          NA     All schools
#> 3474                                <NA>          NA         Primary
#> 3475                                <NA>          NA       Secondary
#> 3476                                <NA>          NA         Special
#> 3477            Herefordshire, County of         884         Primary
#> 3478            Herefordshire, County of         884       Secondary
#> 3479            Herefordshire, County of         884         Special
#> 3480                  Telford and Wrekin         894         Primary
#> 3481                  Telford and Wrekin         894       Secondary
#> 3482                  Telford and Wrekin         894         Special
#> 3483                      Stoke-on-Trent         861         Primary
#> 3484                      Stoke-on-Trent         861       Secondary
#> 3485                      Stoke-on-Trent         861         Special
#> 3486                          Shropshire         893         Primary
#> 3487                          Shropshire         893       Secondary
#> 3488                          Shropshire         893         Special
#> 3489                          Birmingham         330         Primary
#> 3490                          Birmingham         330       Secondary
#> 3491                          Birmingham         330         Special
#> 3492                            Coventry         331         Primary
#> 3493                            Coventry         331       Secondary
#> 3494                            Coventry         331         Special
#> 3495                              Dudley         332         Primary
#> 3496                              Dudley         332       Secondary
#> 3497                              Dudley         332         Special
#> 3498                            Sandwell         333         Primary
#> 3499                            Sandwell         333       Secondary
#> 3500                            Sandwell         333         Special
#> 3501                            Solihull         334         Primary
#> 3502                            Solihull         334       Secondary
#> 3503                            Solihull         334         Special
#> 3504                             Walsall         335         Primary
#> 3505                             Walsall         335       Secondary
#> 3506                             Walsall         335         Special
#> 3507                       Wolverhampton         336         Primary
#> 3508                       Wolverhampton         336       Secondary
#> 3509                       Wolverhampton         336         Special
#> 3510                       Staffordshire         860         Primary
#> 3511                       Staffordshire         860       Secondary
#> 3512                       Staffordshire         860         Special
#> 3513                        Warwickshire         937         Primary
#> 3514                        Warwickshire         937       Secondary
#> 3515                        Warwickshire         937         Special
#> 3516                      Worcestershire         885         Primary
#> 3517                      Worcestershire         885       Secondary
#> 3518                      Worcestershire         885         Special
#> 3519                                <NA>          NA     All schools
#> 3520                                <NA>          NA         Primary
#> 3521                                <NA>          NA       Secondary
#> 3522                                <NA>          NA         Special
#> 3523                        Peterborough         874         Primary
#> 3524                        Peterborough         874       Secondary
#> 3525                        Peterborough         874         Special
#> 3526                               Luton         821         Primary
#> 3527                               Luton         821       Secondary
#> 3528                               Luton         821         Special
#> 3529                     Southend-on-Sea         882         Primary
#> 3530                     Southend-on-Sea         882       Secondary
#> 3531                     Southend-on-Sea         882         Special
#> 3532                            Thurrock         883         Primary
#> 3533                            Thurrock         883       Secondary
#> 3534                            Thurrock         883         Special
#> 3535                             Bedford         822         Primary
#> 3536                             Bedford         822       Secondary
#> 3537                             Bedford         822         Special
#> 3538                Central Bedfordshire         823         Primary
#> 3539                Central Bedfordshire         823       Secondary
#> 3540                Central Bedfordshire         823         Special
#> 3541                      Cambridgeshire         873         Primary
#> 3542                      Cambridgeshire         873       Secondary
#> 3543                      Cambridgeshire         873         Special
#> 3544                               Essex         881         Primary
#> 3545                               Essex         881       Secondary
#> 3546                               Essex         881         Special
#> 3547                       Hertfordshire         919         Primary
#> 3548                       Hertfordshire         919       Secondary
#> 3549                       Hertfordshire         919         Special
#> 3550                             Norfolk         926         Primary
#> 3551                             Norfolk         926       Secondary
#> 3552                             Norfolk         926         Special
#> 3553                             Suffolk         935         Primary
#> 3554                             Suffolk         935       Secondary
#> 3555                             Suffolk         935         Special
#> 3556                                <NA>          NA     All schools
#> 3557                                <NA>          NA         Primary
#> 3558                                <NA>          NA       Secondary
#> 3559                                <NA>          NA         Special
#> 3560                      City of London         201         Primary
#> 3561                Barking and Dagenham         301         Primary
#> 3562                Barking and Dagenham         301       Secondary
#> 3563                Barking and Dagenham         301         Special
#> 3564                              Barnet         302         Primary
#> 3565                              Barnet         302       Secondary
#> 3566                              Barnet         302         Special
#> 3567                              Bexley         303         Primary
#> 3568                              Bexley         303       Secondary
#> 3569                              Bexley         303         Special
#> 3570                               Brent         304         Primary
#> 3571                               Brent         304       Secondary
#> 3572                               Brent         304         Special
#> 3573                             Bromley         305         Primary
#> 3574                             Bromley         305       Secondary
#> 3575                             Bromley         305         Special
#> 3576                              Camden         202         Primary
#> 3577                              Camden         202       Secondary
#> 3578                              Camden         202         Special
#> 3579                             Croydon         306         Primary
#> 3580                             Croydon         306       Secondary
#> 3581                             Croydon         306         Special
#> 3582                              Ealing         307         Primary
#> 3583                              Ealing         307       Secondary
#> 3584                              Ealing         307         Special
#> 3585                             Enfield         308         Primary
#> 3586                             Enfield         308       Secondary
#> 3587                             Enfield         308         Special
#> 3588                           Greenwich         203         Primary
#> 3589                           Greenwich         203       Secondary
#> 3590                           Greenwich         203         Special
#> 3591                             Hackney         204         Primary
#> 3592                             Hackney         204       Secondary
#> 3593                             Hackney         204         Special
#> 3594              Hammersmith and Fulham         205         Primary
#> 3595              Hammersmith and Fulham         205       Secondary
#> 3596              Hammersmith and Fulham         205         Special
#> 3597                            Haringey         309         Primary
#> 3598                            Haringey         309       Secondary
#> 3599                            Haringey         309         Special
#> 3600                              Harrow         310         Primary
#> 3601                              Harrow         310       Secondary
#> 3602                              Harrow         310         Special
#> 3603                            Havering         311         Primary
#> 3604                            Havering         311       Secondary
#> 3605                            Havering         311         Special
#> 3606                          Hillingdon         312         Primary
#> 3607                          Hillingdon         312       Secondary
#> 3608                          Hillingdon         312         Special
#> 3609                            Hounslow         313         Primary
#> 3610                            Hounslow         313       Secondary
#> 3611                            Hounslow         313         Special
#> 3612                           Islington         206         Primary
#> 3613                           Islington         206       Secondary
#> 3614                           Islington         206         Special
#> 3615              Kensington and Chelsea         207         Primary
#> 3616              Kensington and Chelsea         207       Secondary
#> 3617              Kensington and Chelsea         207         Special
#> 3618                Kingston upon Thames         314         Primary
#> 3619                Kingston upon Thames         314       Secondary
#> 3620                Kingston upon Thames         314         Special
#> 3621                             Lambeth         208         Primary
#> 3622                             Lambeth         208       Secondary
#> 3623                             Lambeth         208         Special
#> 3624                            Lewisham         209         Primary
#> 3625                            Lewisham         209       Secondary
#> 3626                            Lewisham         209         Special
#> 3627                              Merton         315         Primary
#> 3628                              Merton         315       Secondary
#> 3629                              Merton         315         Special
#> 3630                              Newham         316         Primary
#> 3631                              Newham         316       Secondary
#> 3632                              Newham         316         Special
#> 3633                           Redbridge         317         Primary
#> 3634                           Redbridge         317       Secondary
#> 3635                           Redbridge         317         Special
#> 3636                Richmond upon Thames         318         Primary
#> 3637                Richmond upon Thames         318       Secondary
#> 3638                Richmond upon Thames         318         Special
#> 3639                           Southwark         210         Primary
#> 3640                           Southwark         210       Secondary
#> 3641                           Southwark         210         Special
#> 3642                              Sutton         319         Primary
#> 3643                              Sutton         319       Secondary
#> 3644                              Sutton         319         Special
#> 3645                       Tower Hamlets         211         Primary
#> 3646                       Tower Hamlets         211       Secondary
#> 3647                       Tower Hamlets         211         Special
#> 3648                      Waltham Forest         320         Primary
#> 3649                      Waltham Forest         320       Secondary
#> 3650                      Waltham Forest         320         Special
#> 3651                          Wandsworth         212         Primary
#> 3652                          Wandsworth         212       Secondary
#> 3653                          Wandsworth         212         Special
#> 3654                         Westminster         213         Primary
#> 3655                         Westminster         213       Secondary
#> 3656                         Westminster         213         Special
#> 3657                                <NA>          NA     All schools
#> 3658                                <NA>          NA         Primary
#> 3659                                <NA>          NA       Secondary
#> 3660                                <NA>          NA         Special
#> 3661                              Medway         887         Primary
#> 3662                              Medway         887       Secondary
#> 3663                              Medway         887         Special
#> 3664                    Bracknell Forest         867         Primary
#> 3665                    Bracknell Forest         867       Secondary
#> 3666                    Bracknell Forest         867         Special
#> 3667                      West Berkshire         869         Primary
#> 3668                      West Berkshire         869       Secondary
#> 3669                      West Berkshire         869         Special
#> 3670                             Reading         870         Primary
#> 3671                             Reading         870       Secondary
#> 3672                             Reading         870         Special
#> 3673                              Slough         871         Primary
#> 3674                              Slough         871       Secondary
#> 3675                              Slough         871         Special
#> 3676              Windsor and Maidenhead         868         Primary
#> 3677              Windsor and Maidenhead         868       Secondary
#> 3678              Windsor and Maidenhead         868         Special
#> 3679                           Wokingham         872         Primary
#> 3680                           Wokingham         872       Secondary
#> 3681                           Wokingham         872         Special
#> 3682                       Milton Keynes         826         Primary
#> 3683                       Milton Keynes         826       Secondary
#> 3684                       Milton Keynes         826         Special
#> 3685                   Brighton and Hove         846         Primary
#> 3686                   Brighton and Hove         846       Secondary
#> 3687                   Brighton and Hove         846         Special
#> 3688                          Portsmouth         851         Primary
#> 3689                          Portsmouth         851       Secondary
#> 3690                          Portsmouth         851         Special
#> 3691                         Southampton         852         Primary
#> 3692                         Southampton         852       Secondary
#> 3693                         Southampton         852         Special
#> 3694                       Isle of Wight         921         Primary
#> 3695                       Isle of Wight         921       Secondary
#> 3696                       Isle of Wight         921         Special
#> 3697                     Buckinghamshire         825         Primary
#> 3698                     Buckinghamshire         825       Secondary
#> 3699                     Buckinghamshire         825         Special
#> 3700                         East Sussex         845         Primary
#> 3701                         East Sussex         845       Secondary
#> 3702                         East Sussex         845         Special
#> 3703                           Hampshire         850         Primary
#> 3704                           Hampshire         850       Secondary
#> 3705                           Hampshire         850         Special
#> 3706                                Kent         886         Primary
#> 3707                                Kent         886       Secondary
#> 3708                                Kent         886         Special
#> 3709                         Oxfordshire         931         Primary
#> 3710                         Oxfordshire         931       Secondary
#> 3711                         Oxfordshire         931         Special
#> 3712                              Surrey         936         Primary
#> 3713                              Surrey         936       Secondary
#> 3714                              Surrey         936         Special
#> 3715                         West Sussex         938         Primary
#> 3716                         West Sussex         938       Secondary
#> 3717                         West Sussex         938         Special
#> 3718                                <NA>          NA     All schools
#> 3719                                <NA>          NA         Primary
#> 3720                                <NA>          NA       Secondary
#> 3721                                <NA>          NA         Special
#> 3722        Bath and North East Somerset         800         Primary
#> 3723        Bath and North East Somerset         800       Secondary
#> 3724        Bath and North East Somerset         800         Special
#> 3725                    Bristol, City of         801         Primary
#> 3726                    Bristol, City of         801       Secondary
#> 3727                    Bristol, City of         801         Special
#> 3728                      North Somerset         802         Primary
#> 3729                      North Somerset         802       Secondary
#> 3730                      North Somerset         802         Special
#> 3731               South Gloucestershire         803         Primary
#> 3732               South Gloucestershire         803       Secondary
#> 3733               South Gloucestershire         803         Special
#> 3734                            Plymouth         879         Primary
#> 3735                            Plymouth         879       Secondary
#> 3736                            Plymouth         879         Special
#> 3737                              Torbay         880         Primary
#> 3738                              Torbay         880       Secondary
#> 3739                              Torbay         880         Special
#> 3740                             Swindon         866         Primary
#> 3741                             Swindon         866       Secondary
#> 3742                             Swindon         866         Special
#> 3743                            Cornwall         908         Primary
#> 3744                            Cornwall         908       Secondary
#> 3745                            Cornwall         908         Special
#> 3746                     Isles of Scilly         420       Secondary
#> 3747                           Wiltshire         865         Primary
#> 3748                           Wiltshire         865       Secondary
#> 3749                           Wiltshire         865         Special
#> 3750 Bournemouth, Christchurch and Poole         839         Primary
#> 3751 Bournemouth, Christchurch and Poole         839       Secondary
#> 3752 Bournemouth, Christchurch and Poole         839         Special
#> 3753                              Dorset         838         Primary
#> 3754                              Dorset         838       Secondary
#> 3755                              Dorset         838         Special
#> 3756                            Somerset         933         Primary
#> 3757                            Somerset         933       Secondary
#> 3758                            Somerset         933         Special
#> 3759                               Devon         878         Primary
#> 3760                               Devon         878       Secondary
#> 3761                               Devon         878         Special
#> 3762                     Gloucestershire         916         Primary
#> 3763                     Gloucestershire         916       Secondary
#> 3764                     Gloucestershire         916         Special
#> 3765                                <NA>          NA     All schools
#> 3766                                <NA>          NA         Primary
#> 3767                                <NA>          NA       Secondary
#> 3768                                <NA>          NA         Special
#> 3769                                <NA>          NA     All schools
#> 3770                                <NA>          NA         Primary
#> 3771                                <NA>          NA       Secondary
#> 3772                                <NA>          NA         Special
#> 3773                          Hartlepool         805         Primary
#> 3774                          Hartlepool         805       Secondary
#> 3775                          Hartlepool         805         Special
#> 3776                       Middlesbrough         806         Primary
#> 3777                       Middlesbrough         806       Secondary
#> 3778                       Middlesbrough         806         Special
#> 3779                Redcar and Cleveland         807         Primary
#> 3780                Redcar and Cleveland         807       Secondary
#> 3781                Redcar and Cleveland         807         Special
#> 3782                    Stockton-on-Tees         808         Primary
#> 3783                    Stockton-on-Tees         808       Secondary
#> 3784                    Stockton-on-Tees         808         Special
#> 3785                          Darlington         841         Primary
#> 3786                          Darlington         841       Secondary
#> 3787                          Darlington         841         Special
#> 3788                       County Durham         840         Primary
#> 3789                       County Durham         840       Secondary
#> 3790                       County Durham         840         Special
#> 3791                      Northumberland         929         Primary
#> 3792                      Northumberland         929       Secondary
#> 3793                      Northumberland         929         Special
#> 3794                 Newcastle upon Tyne         391         Primary
#> 3795                 Newcastle upon Tyne         391       Secondary
#> 3796                 Newcastle upon Tyne         391         Special
#> 3797                      North Tyneside         392         Primary
#> 3798                      North Tyneside         392       Secondary
#> 3799                      North Tyneside         392         Special
#> 3800                      South Tyneside         393         Primary
#> 3801                      South Tyneside         393       Secondary
#> 3802                      South Tyneside         393         Special
#> 3803                          Sunderland         394         Primary
#> 3804                          Sunderland         394       Secondary
#> 3805                          Sunderland         394         Special
#> 3806                           Gateshead         390         Primary
#> 3807                           Gateshead         390       Secondary
#> 3808                           Gateshead         390         Special
#> 3809                                <NA>          NA     All schools
#> 3810                                <NA>          NA         Primary
#> 3811                                <NA>          NA       Secondary
#> 3812                                <NA>          NA         Special
#> 3813                              Halton         876         Primary
#> 3814                              Halton         876       Secondary
#> 3815                              Halton         876         Special
#> 3816                          Warrington         877         Primary
#> 3817                          Warrington         877       Secondary
#> 3818                          Warrington         877         Special
#> 3819               Blackburn with Darwen         889         Primary
#> 3820               Blackburn with Darwen         889       Secondary
#> 3821               Blackburn with Darwen         889         Special
#> 3822                           Blackpool         890         Primary
#> 3823                           Blackpool         890       Secondary
#> 3824                           Blackpool         890         Special
#> 3825                       Cheshire East         895         Primary
#> 3826                       Cheshire East         895       Secondary
#> 3827                       Cheshire East         895         Special
#> 3828           Cheshire West and Chester         896         Primary
#> 3829           Cheshire West and Chester         896       Secondary
#> 3830           Cheshire West and Chester         896         Special
#> 3831                          Cumberland         942         Primary
#> 3832                          Cumberland         942       Secondary
#> 3833                          Cumberland         942         Special
#> 3834             Westmorland and Furness         943         Primary
#> 3835             Westmorland and Furness         943       Secondary
#> 3836             Westmorland and Furness         943         Special
#> 3837                              Bolton         350         Primary
#> 3838                              Bolton         350       Secondary
#> 3839                              Bolton         350         Special
#> 3840                                Bury         351         Primary
#> 3841                                Bury         351       Secondary
#> 3842                                Bury         351         Special
#> 3843                          Manchester         352         Primary
#> 3844                          Manchester         352       Secondary
#> 3845                          Manchester         352         Special
#> 3846                              Oldham         353         Primary
#> 3847                              Oldham         353       Secondary
#> 3848                              Oldham         353         Special
#> 3849                            Rochdale         354         Primary
#> 3850                            Rochdale         354       Secondary
#> 3851                            Rochdale         354         Special
#> 3852                             Salford         355         Primary
#> 3853                             Salford         355       Secondary
#> 3854                             Salford         355         Special
#> 3855                           Stockport         356         Primary
#> 3856                           Stockport         356       Secondary
#> 3857                           Stockport         356         Special
#> 3858                            Tameside         357         Primary
#> 3859                            Tameside         357       Secondary
#> 3860                            Tameside         357         Special
#> 3861                            Trafford         358         Primary
#> 3862                            Trafford         358       Secondary
#> 3863                            Trafford         358         Special
#> 3864                               Wigan         359         Primary
#> 3865                               Wigan         359       Secondary
#> 3866                               Wigan         359         Special
#> 3867                            Knowsley         340         Primary
#> 3868                            Knowsley         340       Secondary
#> 3869                            Knowsley         340         Special
#> 3870                           Liverpool         341         Primary
#> 3871                           Liverpool         341       Secondary
#> 3872                           Liverpool         341         Special
#> 3873                          St. Helens         342         Primary
#> 3874                          St. Helens         342       Secondary
#> 3875                          St. Helens         342         Special
#> 3876                              Sefton         343         Primary
#> 3877                              Sefton         343       Secondary
#> 3878                              Sefton         343         Special
#> 3879                              Wirral         344         Primary
#> 3880                              Wirral         344       Secondary
#> 3881                              Wirral         344         Special
#> 3882                          Lancashire         888         Primary
#> 3883                          Lancashire         888       Secondary
#> 3884                          Lancashire         888         Special
#> 3885                                <NA>          NA     All schools
#> 3886                                <NA>          NA         Primary
#> 3887                                <NA>          NA       Secondary
#> 3888                                <NA>          NA         Special
#> 3889         Kingston upon Hull, City of         810         Primary
#> 3890         Kingston upon Hull, City of         810       Secondary
#> 3891         Kingston upon Hull, City of         810         Special
#> 3892            East Riding of Yorkshire         811         Primary
#> 3893            East Riding of Yorkshire         811       Secondary
#> 3894            East Riding of Yorkshire         811         Special
#> 3895             North East Lincolnshire         812         Primary
#> 3896             North East Lincolnshire         812       Secondary
#> 3897             North East Lincolnshire         812         Special
#> 3898                  North Lincolnshire         813         Primary
#> 3899                  North Lincolnshire         813       Secondary
#> 3900                  North Lincolnshire         813         Special
#> 3901                                York         816         Primary
#> 3902                                York         816       Secondary
#> 3903                                York         816         Special
#> 3904                     North Yorkshire         815         Primary
#> 3905                     North Yorkshire         815       Secondary
#> 3906                     North Yorkshire         815         Special
#> 3907                            Barnsley         370         Primary
#> 3908                            Barnsley         370       Secondary
#> 3909                            Barnsley         370         Special
#> 3910                           Doncaster         371         Primary
#> 3911                           Doncaster         371       Secondary
#> 3912                           Doncaster         371         Special
#> 3913                           Rotherham         372         Primary
#> 3914                           Rotherham         372       Secondary
#> 3915                           Rotherham         372         Special
#> 3916                           Sheffield         373         Primary
#> 3917                           Sheffield         373       Secondary
#> 3918                           Sheffield         373         Special
#> 3919                            Bradford         380         Primary
#> 3920                            Bradford         380       Secondary
#> 3921                            Bradford         380         Special
#> 3922                          Calderdale         381         Primary
#> 3923                          Calderdale         381       Secondary
#> 3924                          Calderdale         381         Special
#> 3925                            Kirklees         382         Primary
#> 3926                            Kirklees         382       Secondary
#> 3927                            Kirklees         382         Special
#> 3928                               Leeds         383         Primary
#> 3929                               Leeds         383       Secondary
#> 3930                               Leeds         383         Special
#> 3931                           Wakefield         384         Primary
#> 3932                           Wakefield         384       Secondary
#> 3933                           Wakefield         384         Special
#> 3934                                <NA>          NA     All schools
#> 3935                                <NA>          NA         Primary
#> 3936                                <NA>          NA       Secondary
#> 3937                                <NA>          NA         Special
#> 3938                               Derby         831         Primary
#> 3939                               Derby         831       Secondary
#> 3940                               Derby         831         Special
#> 3941                           Leicester         856         Primary
#> 3942                           Leicester         856       Secondary
#> 3943                           Leicester         856         Special
#> 3944                             Rutland         857         Primary
#> 3945                             Rutland         857       Secondary
#> 3946                          Nottingham         892         Primary
#> 3947                          Nottingham         892       Secondary
#> 3948                          Nottingham         892         Special
#> 3949              North Northamptonshire         940         Primary
#> 3950              North Northamptonshire         940       Secondary
#> 3951              North Northamptonshire         940         Special
#> 3952               West Northamptonshire         941         Primary
#> 3953               West Northamptonshire         941       Secondary
#> 3954               West Northamptonshire         941         Special
#> 3955                          Derbyshire         830         Primary
#> 3956                          Derbyshire         830       Secondary
#> 3957                          Derbyshire         830         Special
#> 3958                      Leicestershire         855         Primary
#> 3959                      Leicestershire         855       Secondary
#> 3960                      Leicestershire         855         Special
#> 3961                        Lincolnshire         925         Primary
#> 3962                        Lincolnshire         925       Secondary
#> 3963                        Lincolnshire         925         Special
#> 3964                     Nottinghamshire         891         Primary
#> 3965                     Nottinghamshire         891       Secondary
#> 3966                     Nottinghamshire         891         Special
#> 3967                                <NA>          NA     All schools
#> 3968                                <NA>          NA         Primary
#> 3969                                <NA>          NA       Secondary
#> 3970                                <NA>          NA         Special
#> 3971            Herefordshire, County of         884         Primary
#> 3972            Herefordshire, County of         884       Secondary
#> 3973            Herefordshire, County of         884         Special
#> 3974                  Telford and Wrekin         894         Primary
#> 3975                  Telford and Wrekin         894       Secondary
#> 3976                  Telford and Wrekin         894         Special
#> 3977                      Stoke-on-Trent         861         Primary
#> 3978                      Stoke-on-Trent         861       Secondary
#> 3979                      Stoke-on-Trent         861         Special
#> 3980                          Shropshire         893         Primary
#> 3981                          Shropshire         893       Secondary
#> 3982                          Shropshire         893         Special
#> 3983                          Birmingham         330         Primary
#> 3984                          Birmingham         330       Secondary
#> 3985                          Birmingham         330         Special
#> 3986                            Coventry         331         Primary
#> 3987                            Coventry         331       Secondary
#> 3988                            Coventry         331         Special
#> 3989                              Dudley         332         Primary
#> 3990                              Dudley         332       Secondary
#> 3991                              Dudley         332         Special
#> 3992                            Sandwell         333         Primary
#> 3993                            Sandwell         333       Secondary
#> 3994                            Sandwell         333         Special
#> 3995                            Solihull         334         Primary
#> 3996                            Solihull         334       Secondary
#> 3997                            Solihull         334         Special
#> 3998                             Walsall         335         Primary
#> 3999                             Walsall         335       Secondary
#> 4000                             Walsall         335         Special
#> 4001                       Wolverhampton         336         Primary
#> 4002                       Wolverhampton         336       Secondary
#> 4003                       Wolverhampton         336         Special
#> 4004                       Staffordshire         860         Primary
#> 4005                       Staffordshire         860       Secondary
#> 4006                       Staffordshire         860         Special
#> 4007                        Warwickshire         937         Primary
#> 4008                        Warwickshire         937       Secondary
#> 4009                        Warwickshire         937         Special
#> 4010                      Worcestershire         885         Primary
#> 4011                      Worcestershire         885       Secondary
#> 4012                      Worcestershire         885         Special
#> 4013                                <NA>          NA     All schools
#> 4014                                <NA>          NA         Primary
#> 4015                                <NA>          NA       Secondary
#> 4016                                <NA>          NA         Special
#> 4017                        Peterborough         874         Primary
#> 4018                        Peterborough         874       Secondary
#> 4019                        Peterborough         874         Special
#> 4020                               Luton         821         Primary
#> 4021                               Luton         821       Secondary
#> 4022                               Luton         821         Special
#> 4023                     Southend-on-Sea         882         Primary
#> 4024                     Southend-on-Sea         882       Secondary
#> 4025                     Southend-on-Sea         882         Special
#> 4026                            Thurrock         883         Primary
#> 4027                            Thurrock         883       Secondary
#> 4028                            Thurrock         883         Special
#> 4029                             Bedford         822         Primary
#> 4030                             Bedford         822       Secondary
#> 4031                             Bedford         822         Special
#> 4032                Central Bedfordshire         823         Primary
#> 4033                Central Bedfordshire         823       Secondary
#> 4034                Central Bedfordshire         823         Special
#> 4035                      Cambridgeshire         873         Primary
#> 4036                      Cambridgeshire         873       Secondary
#> 4037                      Cambridgeshire         873         Special
#> 4038                               Essex         881         Primary
#> 4039                               Essex         881       Secondary
#> 4040                               Essex         881         Special
#> 4041                       Hertfordshire         919         Primary
#> 4042                       Hertfordshire         919       Secondary
#> 4043                       Hertfordshire         919         Special
#> 4044                             Norfolk         926         Primary
#> 4045                             Norfolk         926       Secondary
#> 4046                             Norfolk         926         Special
#> 4047                             Suffolk         935         Primary
#> 4048                             Suffolk         935       Secondary
#> 4049                             Suffolk         935         Special
#> 4050                                <NA>          NA     All schools
#> 4051                                <NA>          NA         Primary
#> 4052                                <NA>          NA       Secondary
#> 4053                                <NA>          NA         Special
#> 4054                      City of London         201         Primary
#> 4055                Barking and Dagenham         301         Primary
#> 4056                Barking and Dagenham         301       Secondary
#> 4057                Barking and Dagenham         301         Special
#> 4058                              Barnet         302         Primary
#> 4059                              Barnet         302       Secondary
#> 4060                              Barnet         302         Special
#> 4061                              Bexley         303         Primary
#> 4062                              Bexley         303       Secondary
#> 4063                              Bexley         303         Special
#> 4064                               Brent         304         Primary
#> 4065                               Brent         304       Secondary
#> 4066                               Brent         304         Special
#> 4067                             Bromley         305         Primary
#> 4068                             Bromley         305       Secondary
#> 4069                             Bromley         305         Special
#> 4070                              Camden         202         Primary
#> 4071                              Camden         202       Secondary
#> 4072                              Camden         202         Special
#> 4073                             Croydon         306         Primary
#> 4074                             Croydon         306       Secondary
#> 4075                             Croydon         306         Special
#> 4076                              Ealing         307         Primary
#> 4077                              Ealing         307       Secondary
#> 4078                              Ealing         307         Special
#> 4079                             Enfield         308         Primary
#> 4080                             Enfield         308       Secondary
#> 4081                             Enfield         308         Special
#> 4082                           Greenwich         203         Primary
#> 4083                           Greenwich         203       Secondary
#> 4084                           Greenwich         203         Special
#> 4085                             Hackney         204         Primary
#> 4086                             Hackney         204       Secondary
#> 4087                             Hackney         204         Special
#> 4088              Hammersmith and Fulham         205         Primary
#> 4089              Hammersmith and Fulham         205       Secondary
#> 4090              Hammersmith and Fulham         205         Special
#> 4091                            Haringey         309         Primary
#> 4092                            Haringey         309       Secondary
#> 4093                            Haringey         309         Special
#> 4094                              Harrow         310         Primary
#> 4095                              Harrow         310       Secondary
#> 4096                              Harrow         310         Special
#> 4097                            Havering         311         Primary
#> 4098                            Havering         311       Secondary
#> 4099                            Havering         311         Special
#> 4100                          Hillingdon         312         Primary
#> 4101                          Hillingdon         312       Secondary
#> 4102                          Hillingdon         312         Special
#> 4103                            Hounslow         313         Primary
#> 4104                            Hounslow         313       Secondary
#> 4105                            Hounslow         313         Special
#> 4106                           Islington         206         Primary
#> 4107                           Islington         206       Secondary
#> 4108                           Islington         206         Special
#> 4109              Kensington and Chelsea         207         Primary
#> 4110              Kensington and Chelsea         207       Secondary
#> 4111              Kensington and Chelsea         207         Special
#> 4112                Kingston upon Thames         314         Primary
#> 4113                Kingston upon Thames         314       Secondary
#> 4114                Kingston upon Thames         314         Special
#> 4115                             Lambeth         208         Primary
#> 4116                             Lambeth         208       Secondary
#> 4117                             Lambeth         208         Special
#> 4118                            Lewisham         209         Primary
#> 4119                            Lewisham         209       Secondary
#> 4120                            Lewisham         209         Special
#> 4121                              Merton         315         Primary
#> 4122                              Merton         315       Secondary
#> 4123                              Merton         315         Special
#> 4124                              Newham         316         Primary
#> 4125                              Newham         316       Secondary
#> 4126                              Newham         316         Special
#> 4127                           Redbridge         317         Primary
#> 4128                           Redbridge         317       Secondary
#> 4129                           Redbridge         317         Special
#> 4130                Richmond upon Thames         318         Primary
#> 4131                Richmond upon Thames         318       Secondary
#> 4132                Richmond upon Thames         318         Special
#> 4133                           Southwark         210         Primary
#> 4134                           Southwark         210       Secondary
#> 4135                           Southwark         210         Special
#> 4136                              Sutton         319         Primary
#> 4137                              Sutton         319       Secondary
#> 4138                              Sutton         319         Special
#> 4139                       Tower Hamlets         211         Primary
#> 4140                       Tower Hamlets         211       Secondary
#> 4141                       Tower Hamlets         211         Special
#> 4142                      Waltham Forest         320         Primary
#> 4143                      Waltham Forest         320       Secondary
#> 4144                      Waltham Forest         320         Special
#> 4145                          Wandsworth         212         Primary
#> 4146                          Wandsworth         212       Secondary
#> 4147                          Wandsworth         212         Special
#> 4148                         Westminster         213         Primary
#> 4149                         Westminster         213       Secondary
#> 4150                         Westminster         213         Special
#> 4151                                <NA>          NA     All schools
#> 4152                                <NA>          NA         Primary
#> 4153                                <NA>          NA       Secondary
#> 4154                                <NA>          NA         Special
#> 4155                              Medway         887         Primary
#> 4156                              Medway         887       Secondary
#> 4157                              Medway         887         Special
#> 4158                    Bracknell Forest         867         Primary
#> 4159                    Bracknell Forest         867       Secondary
#> 4160                    Bracknell Forest         867         Special
#> 4161                      West Berkshire         869         Primary
#> 4162                      West Berkshire         869       Secondary
#> 4163                      West Berkshire         869         Special
#> 4164                             Reading         870         Primary
#> 4165                             Reading         870       Secondary
#> 4166                             Reading         870         Special
#> 4167                              Slough         871         Primary
#> 4168                              Slough         871       Secondary
#> 4169                              Slough         871         Special
#> 4170              Windsor and Maidenhead         868         Primary
#> 4171              Windsor and Maidenhead         868       Secondary
#> 4172              Windsor and Maidenhead         868         Special
#> 4173                           Wokingham         872         Primary
#> 4174                           Wokingham         872       Secondary
#> 4175                           Wokingham         872         Special
#> 4176                       Milton Keynes         826         Primary
#> 4177                       Milton Keynes         826       Secondary
#> 4178                       Milton Keynes         826         Special
#> 4179                   Brighton and Hove         846         Primary
#> 4180                   Brighton and Hove         846       Secondary
#> 4181                   Brighton and Hove         846         Special
#> 4182                          Portsmouth         851         Primary
#> 4183                          Portsmouth         851       Secondary
#> 4184                          Portsmouth         851         Special
#> 4185                         Southampton         852         Primary
#> 4186                         Southampton         852       Secondary
#> 4187                         Southampton         852         Special
#> 4188                       Isle of Wight         921         Primary
#> 4189                       Isle of Wight         921       Secondary
#> 4190                       Isle of Wight         921         Special
#> 4191                     Buckinghamshire         825         Primary
#> 4192                     Buckinghamshire         825       Secondary
#> 4193                     Buckinghamshire         825         Special
#> 4194                         East Sussex         845         Primary
#> 4195                         East Sussex         845       Secondary
#> 4196                         East Sussex         845         Special
#> 4197                           Hampshire         850         Primary
#> 4198                           Hampshire         850       Secondary
#> 4199                           Hampshire         850         Special
#> 4200                                Kent         886         Primary
#> 4201                                Kent         886       Secondary
#> 4202                                Kent         886         Special
#> 4203                         Oxfordshire         931         Primary
#> 4204                         Oxfordshire         931       Secondary
#> 4205                         Oxfordshire         931         Special
#> 4206                              Surrey         936         Primary
#> 4207                              Surrey         936       Secondary
#> 4208                              Surrey         936         Special
#> 4209                         West Sussex         938         Primary
#> 4210                         West Sussex         938       Secondary
#> 4211                         West Sussex         938         Special
#> 4212                                <NA>          NA     All schools
#> 4213                                <NA>          NA         Primary
#> 4214                                <NA>          NA       Secondary
#> 4215                                <NA>          NA         Special
#> 4216        Bath and North East Somerset         800         Primary
#> 4217        Bath and North East Somerset         800       Secondary
#> 4218        Bath and North East Somerset         800         Special
#> 4219                    Bristol, City of         801         Primary
#> 4220                    Bristol, City of         801       Secondary
#> 4221                    Bristol, City of         801         Special
#> 4222                      North Somerset         802         Primary
#> 4223                      North Somerset         802       Secondary
#> 4224                      North Somerset         802         Special
#> 4225               South Gloucestershire         803         Primary
#> 4226               South Gloucestershire         803       Secondary
#> 4227               South Gloucestershire         803         Special
#> 4228                            Plymouth         879         Primary
#> 4229                            Plymouth         879       Secondary
#> 4230                            Plymouth         879         Special
#> 4231                              Torbay         880         Primary
#> 4232                              Torbay         880       Secondary
#> 4233                              Torbay         880         Special
#> 4234                             Swindon         866         Primary
#> 4235                             Swindon         866       Secondary
#> 4236                             Swindon         866         Special
#> 4237                            Cornwall         908         Primary
#> 4238                            Cornwall         908       Secondary
#> 4239                            Cornwall         908         Special
#> 4240                     Isles of Scilly         420       Secondary
#> 4241                           Wiltshire         865         Primary
#> 4242                           Wiltshire         865       Secondary
#> 4243                           Wiltshire         865         Special
#> 4244 Bournemouth, Christchurch and Poole         839         Primary
#> 4245 Bournemouth, Christchurch and Poole         839       Secondary
#> 4246 Bournemouth, Christchurch and Poole         839         Special
#> 4247                              Dorset         838         Primary
#> 4248                              Dorset         838       Secondary
#> 4249                              Dorset         838         Special
#> 4250                            Somerset         933         Primary
#> 4251                            Somerset         933       Secondary
#> 4252                            Somerset         933         Special
#> 4253                               Devon         878         Primary
#> 4254                               Devon         878       Secondary
#> 4255                               Devon         878         Special
#> 4256                     Gloucestershire         916         Primary
#> 4257                     Gloucestershire         916       Secondary
#> 4258                     Gloucestershire         916         Special
#> 4259                                <NA>          NA     All schools
#> 4260                                <NA>          NA         Primary
#> 4261                                <NA>          NA       Secondary
#> 4262                                <NA>          NA         Special
#> 4263                                <NA>          NA     All schools
#> 4264                                <NA>          NA         Primary
#> 4265                                <NA>          NA       Secondary
#> 4266                                <NA>          NA         Special
#> 4267                          Hartlepool         805         Primary
#> 4268                          Hartlepool         805       Secondary
#> 4269                          Hartlepool         805         Special
#> 4270                       Middlesbrough         806         Primary
#> 4271                       Middlesbrough         806       Secondary
#> 4272                       Middlesbrough         806         Special
#> 4273                Redcar and Cleveland         807         Primary
#> 4274                Redcar and Cleveland         807       Secondary
#> 4275                Redcar and Cleveland         807         Special
#> 4276                    Stockton-on-Tees         808         Primary
#> 4277                    Stockton-on-Tees         808       Secondary
#> 4278                    Stockton-on-Tees         808         Special
#> 4279                          Darlington         841         Primary
#> 4280                          Darlington         841       Secondary
#> 4281                          Darlington         841         Special
#> 4282                       County Durham         840         Primary
#> 4283                       County Durham         840       Secondary
#> 4284                       County Durham         840         Special
#> 4285                      Northumberland         929         Primary
#> 4286                      Northumberland         929       Secondary
#> 4287                      Northumberland         929         Special
#> 4288                 Newcastle upon Tyne         391         Primary
#> 4289                 Newcastle upon Tyne         391       Secondary
#> 4290                 Newcastle upon Tyne         391         Special
#> 4291                      North Tyneside         392         Primary
#> 4292                      North Tyneside         392       Secondary
#> 4293                      North Tyneside         392         Special
#> 4294                      South Tyneside         393         Primary
#> 4295                      South Tyneside         393       Secondary
#> 4296                      South Tyneside         393         Special
#> 4297                          Sunderland         394         Primary
#> 4298                          Sunderland         394       Secondary
#> 4299                          Sunderland         394         Special
#> 4300                           Gateshead         390         Primary
#> 4301                           Gateshead         390       Secondary
#> 4302                           Gateshead         390         Special
#> 4303                                <NA>          NA     All schools
#> 4304                                <NA>          NA         Primary
#> 4305                                <NA>          NA       Secondary
#> 4306                                <NA>          NA         Special
#> 4307                              Halton         876         Primary
#> 4308                              Halton         876       Secondary
#> 4309                              Halton         876         Special
#> 4310                          Warrington         877         Primary
#> 4311                          Warrington         877       Secondary
#> 4312                          Warrington         877         Special
#> 4313               Blackburn with Darwen         889         Primary
#> 4314               Blackburn with Darwen         889       Secondary
#> 4315               Blackburn with Darwen         889         Special
#> 4316                           Blackpool         890         Primary
#> 4317                           Blackpool         890       Secondary
#> 4318                           Blackpool         890         Special
#> 4319                       Cheshire East         895         Primary
#> 4320                       Cheshire East         895       Secondary
#> 4321                       Cheshire East         895         Special
#> 4322           Cheshire West and Chester         896         Primary
#> 4323           Cheshire West and Chester         896       Secondary
#> 4324           Cheshire West and Chester         896         Special
#> 4325                          Cumberland         942         Primary
#> 4326                          Cumberland         942       Secondary
#> 4327                          Cumberland         942         Special
#> 4328             Westmorland and Furness         943         Primary
#> 4329             Westmorland and Furness         943       Secondary
#> 4330             Westmorland and Furness         943         Special
#> 4331                              Bolton         350         Primary
#> 4332                              Bolton         350       Secondary
#> 4333                              Bolton         350         Special
#> 4334                                Bury         351         Primary
#> 4335                                Bury         351       Secondary
#> 4336                                Bury         351         Special
#> 4337                          Manchester         352         Primary
#> 4338                          Manchester         352       Secondary
#> 4339                          Manchester         352         Special
#> 4340                              Oldham         353         Primary
#> 4341                              Oldham         353       Secondary
#> 4342                              Oldham         353         Special
#> 4343                            Rochdale         354         Primary
#> 4344                            Rochdale         354       Secondary
#> 4345                            Rochdale         354         Special
#> 4346                             Salford         355         Primary
#> 4347                             Salford         355       Secondary
#> 4348                             Salford         355         Special
#> 4349                           Stockport         356         Primary
#> 4350                           Stockport         356       Secondary
#> 4351                           Stockport         356         Special
#> 4352                            Tameside         357         Primary
#> 4353                            Tameside         357       Secondary
#> 4354                            Tameside         357         Special
#> 4355                            Trafford         358         Primary
#> 4356                            Trafford         358       Secondary
#> 4357                            Trafford         358         Special
#> 4358                               Wigan         359         Primary
#> 4359                               Wigan         359       Secondary
#> 4360                               Wigan         359         Special
#> 4361                            Knowsley         340         Primary
#> 4362                            Knowsley         340       Secondary
#> 4363                            Knowsley         340         Special
#> 4364                           Liverpool         341         Primary
#> 4365                           Liverpool         341       Secondary
#> 4366                           Liverpool         341         Special
#> 4367                          St. Helens         342         Primary
#> 4368                          St. Helens         342       Secondary
#> 4369                          St. Helens         342         Special
#> 4370                              Sefton         343         Primary
#> 4371                              Sefton         343       Secondary
#> 4372                              Sefton         343         Special
#> 4373                              Wirral         344         Primary
#> 4374                              Wirral         344       Secondary
#> 4375                              Wirral         344         Special
#> 4376                          Lancashire         888         Primary
#> 4377                          Lancashire         888       Secondary
#> 4378                          Lancashire         888         Special
#> 4379                                <NA>          NA     All schools
#> 4380                                <NA>          NA         Primary
#> 4381                                <NA>          NA       Secondary
#> 4382                                <NA>          NA         Special
#> 4383         Kingston upon Hull, City of         810         Primary
#> 4384         Kingston upon Hull, City of         810       Secondary
#> 4385         Kingston upon Hull, City of         810         Special
#> 4386            East Riding of Yorkshire         811         Primary
#> 4387            East Riding of Yorkshire         811       Secondary
#> 4388            East Riding of Yorkshire         811         Special
#> 4389             North East Lincolnshire         812         Primary
#> 4390             North East Lincolnshire         812       Secondary
#> 4391             North East Lincolnshire         812         Special
#> 4392                  North Lincolnshire         813         Primary
#> 4393                  North Lincolnshire         813       Secondary
#> 4394                  North Lincolnshire         813         Special
#> 4395                                York         816         Primary
#> 4396                                York         816       Secondary
#> 4397                                York         816         Special
#> 4398                     North Yorkshire         815         Primary
#> 4399                     North Yorkshire         815       Secondary
#> 4400                     North Yorkshire         815         Special
#> 4401                            Barnsley         370         Primary
#> 4402                            Barnsley         370       Secondary
#> 4403                            Barnsley         370         Special
#> 4404                           Doncaster         371         Primary
#> 4405                           Doncaster         371       Secondary
#> 4406                           Doncaster         371         Special
#> 4407                           Rotherham         372         Primary
#> 4408                           Rotherham         372       Secondary
#> 4409                           Rotherham         372         Special
#> 4410                           Sheffield         373         Primary
#> 4411                           Sheffield         373       Secondary
#> 4412                           Sheffield         373         Special
#> 4413                            Bradford         380         Primary
#> 4414                            Bradford         380       Secondary
#> 4415                            Bradford         380         Special
#> 4416                          Calderdale         381         Primary
#> 4417                          Calderdale         381       Secondary
#> 4418                          Calderdale         381         Special
#> 4419                            Kirklees         382         Primary
#> 4420                            Kirklees         382       Secondary
#> 4421                            Kirklees         382         Special
#> 4422                               Leeds         383         Primary
#> 4423                               Leeds         383       Secondary
#> 4424                               Leeds         383         Special
#> 4425                           Wakefield         384         Primary
#> 4426                           Wakefield         384       Secondary
#> 4427                           Wakefield         384         Special
#> 4428                                <NA>          NA     All schools
#> 4429                                <NA>          NA         Primary
#> 4430                                <NA>          NA       Secondary
#> 4431                                <NA>          NA         Special
#> 4432                               Derby         831         Primary
#> 4433                               Derby         831       Secondary
#> 4434                               Derby         831         Special
#> 4435                           Leicester         856         Primary
#> 4436                           Leicester         856       Secondary
#> 4437                           Leicester         856         Special
#> 4438                             Rutland         857         Primary
#> 4439                             Rutland         857       Secondary
#> 4440                          Nottingham         892         Primary
#> 4441                          Nottingham         892       Secondary
#> 4442                          Nottingham         892         Special
#> 4443              North Northamptonshire         940         Primary
#> 4444              North Northamptonshire         940       Secondary
#> 4445              North Northamptonshire         940         Special
#> 4446               West Northamptonshire         941         Primary
#> 4447               West Northamptonshire         941       Secondary
#> 4448               West Northamptonshire         941         Special
#> 4449                          Derbyshire         830         Primary
#> 4450                          Derbyshire         830       Secondary
#> 4451                          Derbyshire         830         Special
#> 4452                      Leicestershire         855         Primary
#> 4453                      Leicestershire         855       Secondary
#> 4454                      Leicestershire         855         Special
#> 4455                        Lincolnshire         925         Primary
#> 4456                        Lincolnshire         925       Secondary
#> 4457                        Lincolnshire         925         Special
#> 4458                     Nottinghamshire         891         Primary
#> 4459                     Nottinghamshire         891       Secondary
#> 4460                     Nottinghamshire         891         Special
#> 4461                                <NA>          NA     All schools
#> 4462                                <NA>          NA         Primary
#> 4463                                <NA>          NA       Secondary
#> 4464                                <NA>          NA         Special
#> 4465            Herefordshire, County of         884         Primary
#> 4466            Herefordshire, County of         884       Secondary
#> 4467            Herefordshire, County of         884         Special
#> 4468                  Telford and Wrekin         894         Primary
#> 4469                  Telford and Wrekin         894       Secondary
#> 4470                  Telford and Wrekin         894         Special
#> 4471                      Stoke-on-Trent         861         Primary
#> 4472                      Stoke-on-Trent         861       Secondary
#> 4473                      Stoke-on-Trent         861         Special
#> 4474                          Shropshire         893         Primary
#> 4475                          Shropshire         893       Secondary
#> 4476                          Shropshire         893         Special
#> 4477                          Birmingham         330         Primary
#> 4478                          Birmingham         330       Secondary
#> 4479                          Birmingham         330         Special
#> 4480                            Coventry         331         Primary
#> 4481                            Coventry         331       Secondary
#> 4482                            Coventry         331         Special
#> 4483                              Dudley         332         Primary
#> 4484                              Dudley         332       Secondary
#> 4485                              Dudley         332         Special
#> 4486                            Sandwell         333         Primary
#> 4487                            Sandwell         333       Secondary
#> 4488                            Sandwell         333         Special
#> 4489                            Solihull         334         Primary
#> 4490                            Solihull         334       Secondary
#> 4491                            Solihull         334         Special
#> 4492                             Walsall         335         Primary
#> 4493                             Walsall         335       Secondary
#> 4494                             Walsall         335         Special
#> 4495                       Wolverhampton         336         Primary
#> 4496                       Wolverhampton         336       Secondary
#> 4497                       Wolverhampton         336         Special
#> 4498                       Staffordshire         860         Primary
#> 4499                       Staffordshire         860       Secondary
#> 4500                       Staffordshire         860         Special
#> 4501                        Warwickshire         937         Primary
#> 4502                        Warwickshire         937       Secondary
#> 4503                        Warwickshire         937         Special
#> 4504                      Worcestershire         885         Primary
#> 4505                      Worcestershire         885       Secondary
#> 4506                      Worcestershire         885         Special
#> 4507                                <NA>          NA     All schools
#> 4508                                <NA>          NA         Primary
#> 4509                                <NA>          NA       Secondary
#> 4510                                <NA>          NA         Special
#> 4511                        Peterborough         874         Primary
#> 4512                        Peterborough         874       Secondary
#> 4513                        Peterborough         874         Special
#> 4514                               Luton         821         Primary
#> 4515                               Luton         821       Secondary
#> 4516                               Luton         821         Special
#> 4517                     Southend-on-Sea         882         Primary
#> 4518                     Southend-on-Sea         882       Secondary
#> 4519                     Southend-on-Sea         882         Special
#> 4520                            Thurrock         883         Primary
#> 4521                            Thurrock         883       Secondary
#> 4522                            Thurrock         883         Special
#> 4523                             Bedford         822         Primary
#> 4524                             Bedford         822       Secondary
#> 4525                             Bedford         822         Special
#> 4526                Central Bedfordshire         823         Primary
#> 4527                Central Bedfordshire         823       Secondary
#> 4528                Central Bedfordshire         823         Special
#> 4529                      Cambridgeshire         873         Primary
#> 4530                      Cambridgeshire         873       Secondary
#> 4531                      Cambridgeshire         873         Special
#> 4532                               Essex         881         Primary
#> 4533                               Essex         881       Secondary
#> 4534                               Essex         881         Special
#> 4535                       Hertfordshire         919         Primary
#> 4536                       Hertfordshire         919       Secondary
#> 4537                       Hertfordshire         919         Special
#> 4538                             Norfolk         926         Primary
#> 4539                             Norfolk         926       Secondary
#> 4540                             Norfolk         926         Special
#> 4541                             Suffolk         935         Primary
#> 4542                             Suffolk         935       Secondary
#> 4543                             Suffolk         935         Special
#> 4544                                <NA>          NA     All schools
#> 4545                                <NA>          NA         Primary
#> 4546                                <NA>          NA       Secondary
#> 4547                                <NA>          NA         Special
#> 4548                      City of London         201         Primary
#> 4549                Barking and Dagenham         301         Primary
#> 4550                Barking and Dagenham         301       Secondary
#> 4551                Barking and Dagenham         301         Special
#> 4552                              Barnet         302         Primary
#> 4553                              Barnet         302       Secondary
#> 4554                              Barnet         302         Special
#> 4555                              Bexley         303         Primary
#> 4556                              Bexley         303       Secondary
#> 4557                              Bexley         303         Special
#> 4558                               Brent         304         Primary
#> 4559                               Brent         304       Secondary
#> 4560                               Brent         304         Special
#> 4561                             Bromley         305         Primary
#> 4562                             Bromley         305       Secondary
#> 4563                             Bromley         305         Special
#> 4564                              Camden         202         Primary
#> 4565                              Camden         202       Secondary
#> 4566                              Camden         202         Special
#> 4567                             Croydon         306         Primary
#> 4568                             Croydon         306       Secondary
#> 4569                             Croydon         306         Special
#> 4570                              Ealing         307         Primary
#> 4571                              Ealing         307       Secondary
#> 4572                              Ealing         307         Special
#> 4573                             Enfield         308         Primary
#> 4574                             Enfield         308       Secondary
#> 4575                             Enfield         308         Special
#> 4576                           Greenwich         203         Primary
#> 4577                           Greenwich         203       Secondary
#> 4578                           Greenwich         203         Special
#> 4579                             Hackney         204         Primary
#> 4580                             Hackney         204       Secondary
#> 4581                             Hackney         204         Special
#> 4582              Hammersmith and Fulham         205         Primary
#> 4583              Hammersmith and Fulham         205       Secondary
#> 4584              Hammersmith and Fulham         205         Special
#> 4585                            Haringey         309         Primary
#> 4586                            Haringey         309       Secondary
#> 4587                            Haringey         309         Special
#> 4588                              Harrow         310         Primary
#> 4589                              Harrow         310       Secondary
#> 4590                              Harrow         310         Special
#> 4591                            Havering         311         Primary
#> 4592                            Havering         311       Secondary
#> 4593                            Havering         311         Special
#> 4594                          Hillingdon         312         Primary
#> 4595                          Hillingdon         312       Secondary
#> 4596                          Hillingdon         312         Special
#> 4597                            Hounslow         313         Primary
#> 4598                            Hounslow         313       Secondary
#> 4599                            Hounslow         313         Special
#> 4600                           Islington         206         Primary
#> 4601                           Islington         206       Secondary
#> 4602                           Islington         206         Special
#> 4603              Kensington and Chelsea         207         Primary
#> 4604              Kensington and Chelsea         207       Secondary
#> 4605              Kensington and Chelsea         207         Special
#> 4606                Kingston upon Thames         314         Primary
#> 4607                Kingston upon Thames         314       Secondary
#> 4608                Kingston upon Thames         314         Special
#> 4609                             Lambeth         208         Primary
#> 4610                             Lambeth         208       Secondary
#> 4611                             Lambeth         208         Special
#> 4612                            Lewisham         209         Primary
#> 4613                            Lewisham         209       Secondary
#> 4614                            Lewisham         209         Special
#> 4615                              Merton         315         Primary
#> 4616                              Merton         315       Secondary
#> 4617                              Merton         315         Special
#> 4618                              Newham         316         Primary
#> 4619                              Newham         316       Secondary
#> 4620                              Newham         316         Special
#> 4621                           Redbridge         317         Primary
#> 4622                           Redbridge         317       Secondary
#> 4623                           Redbridge         317         Special
#> 4624                Richmond upon Thames         318         Primary
#> 4625                Richmond upon Thames         318       Secondary
#> 4626                Richmond upon Thames         318         Special
#> 4627                           Southwark         210         Primary
#> 4628                           Southwark         210       Secondary
#> 4629                           Southwark         210         Special
#> 4630                              Sutton         319         Primary
#> 4631                              Sutton         319       Secondary
#> 4632                              Sutton         319         Special
#> 4633                       Tower Hamlets         211         Primary
#> 4634                       Tower Hamlets         211       Secondary
#> 4635                       Tower Hamlets         211         Special
#> 4636                      Waltham Forest         320         Primary
#> 4637                      Waltham Forest         320       Secondary
#> 4638                      Waltham Forest         320         Special
#> 4639                          Wandsworth         212         Primary
#> 4640                          Wandsworth         212       Secondary
#> 4641                          Wandsworth         212         Special
#> 4642                         Westminster         213         Primary
#> 4643                         Westminster         213       Secondary
#> 4644                         Westminster         213         Special
#> 4645                                <NA>          NA     All schools
#> 4646                                <NA>          NA         Primary
#> 4647                                <NA>          NA       Secondary
#> 4648                                <NA>          NA         Special
#> 4649                              Medway         887         Primary
#> 4650                              Medway         887       Secondary
#> 4651                              Medway         887         Special
#> 4652                    Bracknell Forest         867         Primary
#> 4653                    Bracknell Forest         867       Secondary
#> 4654                    Bracknell Forest         867         Special
#> 4655                      West Berkshire         869         Primary
#> 4656                      West Berkshire         869       Secondary
#> 4657                      West Berkshire         869         Special
#> 4658                             Reading         870         Primary
#> 4659                             Reading         870       Secondary
#> 4660                             Reading         870         Special
#> 4661                              Slough         871         Primary
#> 4662                              Slough         871       Secondary
#> 4663                              Slough         871         Special
#> 4664              Windsor and Maidenhead         868         Primary
#> 4665              Windsor and Maidenhead         868       Secondary
#> 4666              Windsor and Maidenhead         868         Special
#> 4667                           Wokingham         872         Primary
#> 4668                           Wokingham         872       Secondary
#> 4669                           Wokingham         872         Special
#> 4670                       Milton Keynes         826         Primary
#> 4671                       Milton Keynes         826       Secondary
#> 4672                       Milton Keynes         826         Special
#> 4673                   Brighton and Hove         846         Primary
#> 4674                   Brighton and Hove         846       Secondary
#> 4675                   Brighton and Hove         846         Special
#> 4676                          Portsmouth         851         Primary
#> 4677                          Portsmouth         851       Secondary
#> 4678                          Portsmouth         851         Special
#> 4679                         Southampton         852         Primary
#> 4680                         Southampton         852       Secondary
#> 4681                         Southampton         852         Special
#> 4682                       Isle of Wight         921         Primary
#> 4683                       Isle of Wight         921       Secondary
#> 4684                       Isle of Wight         921         Special
#> 4685                     Buckinghamshire         825         Primary
#> 4686                     Buckinghamshire         825       Secondary
#> 4687                     Buckinghamshire         825         Special
#> 4688                         East Sussex         845         Primary
#> 4689                         East Sussex         845       Secondary
#> 4690                         East Sussex         845         Special
#> 4691                           Hampshire         850         Primary
#> 4692                           Hampshire         850       Secondary
#> 4693                           Hampshire         850         Special
#> 4694                                Kent         886         Primary
#> 4695                                Kent         886       Secondary
#> 4696                                Kent         886         Special
#> 4697                         Oxfordshire         931         Primary
#> 4698                         Oxfordshire         931       Secondary
#> 4699                         Oxfordshire         931         Special
#> 4700                              Surrey         936         Primary
#> 4701                              Surrey         936       Secondary
#> 4702                              Surrey         936         Special
#> 4703                         West Sussex         938         Primary
#> 4704                         West Sussex         938       Secondary
#> 4705                         West Sussex         938         Special
#> 4706                                <NA>          NA     All schools
#> 4707                                <NA>          NA         Primary
#> 4708                                <NA>          NA       Secondary
#> 4709                                <NA>          NA         Special
#> 4710        Bath and North East Somerset         800         Primary
#> 4711        Bath and North East Somerset         800       Secondary
#> 4712        Bath and North East Somerset         800         Special
#> 4713                    Bristol, City of         801         Primary
#> 4714                    Bristol, City of         801       Secondary
#> 4715                    Bristol, City of         801         Special
#> 4716                      North Somerset         802         Primary
#> 4717                      North Somerset         802       Secondary
#> 4718                      North Somerset         802         Special
#> 4719               South Gloucestershire         803         Primary
#> 4720               South Gloucestershire         803       Secondary
#> 4721               South Gloucestershire         803         Special
#> 4722                            Plymouth         879         Primary
#> 4723                            Plymouth         879       Secondary
#> 4724                            Plymouth         879         Special
#> 4725                              Torbay         880         Primary
#> 4726                              Torbay         880       Secondary
#> 4727                              Torbay         880         Special
#> 4728                             Swindon         866         Primary
#> 4729                             Swindon         866       Secondary
#> 4730                             Swindon         866         Special
#> 4731                            Cornwall         908         Primary
#> 4732                            Cornwall         908       Secondary
#> 4733                            Cornwall         908         Special
#> 4734                     Isles of Scilly         420       Secondary
#> 4735                           Wiltshire         865         Primary
#> 4736                           Wiltshire         865       Secondary
#> 4737                           Wiltshire         865         Special
#> 4738 Bournemouth, Christchurch and Poole         839         Primary
#> 4739 Bournemouth, Christchurch and Poole         839       Secondary
#> 4740 Bournemouth, Christchurch and Poole         839         Special
#> 4741                              Dorset         838         Primary
#> 4742                              Dorset         838       Secondary
#> 4743                              Dorset         838         Special
#> 4744                            Somerset         933         Primary
#> 4745                            Somerset         933       Secondary
#> 4746                            Somerset         933         Special
#> 4747                               Devon         878         Primary
#> 4748                               Devon         878       Secondary
#> 4749                               Devon         878         Special
#> 4750                     Gloucestershire         916         Primary
#> 4751                     Gloucestershire         916       Secondary
#> 4752                     Gloucestershire         916         Special
#> 4753                                <NA>          NA     All schools
#> 4754                                <NA>          NA         Primary
#> 4755                                <NA>          NA       Secondary
#> 4756                                <NA>          NA         Special
#> 4757                                <NA>          NA     All schools
#> 4758                                <NA>          NA         Primary
#> 4759                                <NA>          NA       Secondary
#> 4760                                <NA>          NA         Special
#> 4761                          Hartlepool         805         Primary
#> 4762                          Hartlepool         805       Secondary
#> 4763                          Hartlepool         805         Special
#> 4764                       Middlesbrough         806         Primary
#> 4765                       Middlesbrough         806       Secondary
#> 4766                       Middlesbrough         806         Special
#> 4767                Redcar and Cleveland         807         Primary
#> 4768                Redcar and Cleveland         807       Secondary
#> 4769                Redcar and Cleveland         807         Special
#> 4770                    Stockton-on-Tees         808         Primary
#> 4771                    Stockton-on-Tees         808       Secondary
#> 4772                    Stockton-on-Tees         808         Special
#> 4773                          Darlington         841         Primary
#> 4774                          Darlington         841       Secondary
#> 4775                          Darlington         841         Special
#> 4776                       County Durham         840         Primary
#> 4777                       County Durham         840       Secondary
#> 4778                       County Durham         840         Special
#> 4779                      Northumberland         929         Primary
#> 4780                      Northumberland         929       Secondary
#> 4781                      Northumberland         929         Special
#> 4782                 Newcastle upon Tyne         391         Primary
#> 4783                 Newcastle upon Tyne         391       Secondary
#> 4784                 Newcastle upon Tyne         391         Special
#> 4785                      North Tyneside         392         Primary
#> 4786                      North Tyneside         392       Secondary
#> 4787                      North Tyneside         392         Special
#> 4788                      South Tyneside         393         Primary
#> 4789                      South Tyneside         393       Secondary
#> 4790                      South Tyneside         393         Special
#> 4791                          Sunderland         394         Primary
#> 4792                          Sunderland         394       Secondary
#> 4793                          Sunderland         394         Special
#> 4794                           Gateshead         390         Primary
#> 4795                           Gateshead         390       Secondary
#> 4796                           Gateshead         390         Special
#> 4797                                <NA>          NA     All schools
#> 4798                                <NA>          NA         Primary
#> 4799                                <NA>          NA       Secondary
#> 4800                                <NA>          NA         Special
#> 4801                              Halton         876         Primary
#> 4802                              Halton         876       Secondary
#> 4803                              Halton         876         Special
#> 4804                          Warrington         877         Primary
#> 4805                          Warrington         877       Secondary
#> 4806                          Warrington         877         Special
#> 4807               Blackburn with Darwen         889         Primary
#> 4808               Blackburn with Darwen         889       Secondary
#> 4809               Blackburn with Darwen         889         Special
#> 4810                           Blackpool         890         Primary
#> 4811                           Blackpool         890       Secondary
#> 4812                           Blackpool         890         Special
#> 4813                       Cheshire East         895         Primary
#> 4814                       Cheshire East         895       Secondary
#> 4815                       Cheshire East         895         Special
#> 4816           Cheshire West and Chester         896         Primary
#> 4817           Cheshire West and Chester         896       Secondary
#> 4818           Cheshire West and Chester         896         Special
#> 4819                          Cumberland         942         Primary
#> 4820                          Cumberland         942       Secondary
#> 4821                          Cumberland         942         Special
#> 4822             Westmorland and Furness         943         Primary
#> 4823             Westmorland and Furness         943       Secondary
#> 4824             Westmorland and Furness         943         Special
#> 4825                              Bolton         350         Primary
#> 4826                              Bolton         350       Secondary
#> 4827                              Bolton         350         Special
#> 4828                                Bury         351         Primary
#> 4829                                Bury         351       Secondary
#> 4830                                Bury         351         Special
#> 4831                          Manchester         352         Primary
#> 4832                          Manchester         352       Secondary
#> 4833                          Manchester         352         Special
#> 4834                              Oldham         353         Primary
#> 4835                              Oldham         353       Secondary
#> 4836                              Oldham         353         Special
#> 4837                            Rochdale         354         Primary
#> 4838                            Rochdale         354       Secondary
#> 4839                            Rochdale         354         Special
#> 4840                             Salford         355         Primary
#> 4841                             Salford         355       Secondary
#> 4842                             Salford         355         Special
#> 4843                           Stockport         356         Primary
#> 4844                           Stockport         356       Secondary
#> 4845                           Stockport         356         Special
#> 4846                            Tameside         357         Primary
#> 4847                            Tameside         357       Secondary
#> 4848                            Tameside         357         Special
#> 4849                            Trafford         358         Primary
#> 4850                            Trafford         358       Secondary
#> 4851                            Trafford         358         Special
#> 4852                               Wigan         359         Primary
#> 4853                               Wigan         359       Secondary
#> 4854                               Wigan         359         Special
#> 4855                            Knowsley         340         Primary
#> 4856                            Knowsley         340       Secondary
#> 4857                            Knowsley         340         Special
#> 4858                           Liverpool         341         Primary
#> 4859                           Liverpool         341       Secondary
#> 4860                           Liverpool         341         Special
#> 4861                          St. Helens         342         Primary
#> 4862                          St. Helens         342       Secondary
#> 4863                          St. Helens         342         Special
#> 4864                              Sefton         343         Primary
#> 4865                              Sefton         343       Secondary
#> 4866                              Sefton         343         Special
#> 4867                              Wirral         344         Primary
#> 4868                              Wirral         344       Secondary
#> 4869                              Wirral         344         Special
#> 4870                          Lancashire         888         Primary
#> 4871                          Lancashire         888       Secondary
#> 4872                          Lancashire         888         Special
#> 4873                                <NA>          NA     All schools
#> 4874                                <NA>          NA         Primary
#> 4875                                <NA>          NA       Secondary
#> 4876                                <NA>          NA         Special
#> 4877         Kingston upon Hull, City of         810         Primary
#> 4878         Kingston upon Hull, City of         810       Secondary
#> 4879         Kingston upon Hull, City of         810         Special
#> 4880            East Riding of Yorkshire         811         Primary
#> 4881            East Riding of Yorkshire         811       Secondary
#> 4882            East Riding of Yorkshire         811         Special
#> 4883             North East Lincolnshire         812         Primary
#> 4884             North East Lincolnshire         812       Secondary
#> 4885             North East Lincolnshire         812         Special
#> 4886                  North Lincolnshire         813         Primary
#> 4887                  North Lincolnshire         813       Secondary
#> 4888                  North Lincolnshire         813         Special
#> 4889                                York         816         Primary
#> 4890                                York         816       Secondary
#> 4891                                York         816         Special
#> 4892                     North Yorkshire         815         Primary
#> 4893                     North Yorkshire         815       Secondary
#> 4894                     North Yorkshire         815         Special
#> 4895                            Barnsley         370         Primary
#> 4896                            Barnsley         370       Secondary
#> 4897                            Barnsley         370         Special
#> 4898                           Doncaster         371         Primary
#> 4899                           Doncaster         371       Secondary
#> 4900                           Doncaster         371         Special
#> 4901                           Rotherham         372         Primary
#> 4902                           Rotherham         372       Secondary
#> 4903                           Rotherham         372         Special
#> 4904                           Sheffield         373         Primary
#> 4905                           Sheffield         373       Secondary
#> 4906                           Sheffield         373         Special
#> 4907                            Bradford         380         Primary
#> 4908                            Bradford         380       Secondary
#> 4909                            Bradford         380         Special
#> 4910                          Calderdale         381         Primary
#> 4911                          Calderdale         381       Secondary
#> 4912                          Calderdale         381         Special
#> 4913                            Kirklees         382         Primary
#> 4914                            Kirklees         382       Secondary
#> 4915                            Kirklees         382         Special
#> 4916                               Leeds         383         Primary
#> 4917                               Leeds         383       Secondary
#> 4918                               Leeds         383         Special
#> 4919                           Wakefield         384         Primary
#> 4920                           Wakefield         384       Secondary
#> 4921                           Wakefield         384         Special
#> 4922                                <NA>          NA     All schools
#> 4923                                <NA>          NA         Primary
#> 4924                                <NA>          NA       Secondary
#> 4925                                <NA>          NA         Special
#> 4926                               Derby         831         Primary
#> 4927                               Derby         831       Secondary
#> 4928                               Derby         831         Special
#> 4929                           Leicester         856         Primary
#> 4930                           Leicester         856       Secondary
#> 4931                           Leicester         856         Special
#> 4932                             Rutland         857         Primary
#> 4933                             Rutland         857       Secondary
#> 4934                          Nottingham         892         Primary
#> 4935                          Nottingham         892       Secondary
#> 4936                          Nottingham         892         Special
#> 4937              North Northamptonshire         940         Primary
#> 4938              North Northamptonshire         940       Secondary
#> 4939              North Northamptonshire         940         Special
#> 4940               West Northamptonshire         941         Primary
#> 4941               West Northamptonshire         941       Secondary
#> 4942               West Northamptonshire         941         Special
#> 4943                          Derbyshire         830         Primary
#> 4944                          Derbyshire         830       Secondary
#> 4945                          Derbyshire         830         Special
#> 4946                      Leicestershire         855         Primary
#> 4947                      Leicestershire         855       Secondary
#> 4948                      Leicestershire         855         Special
#> 4949                        Lincolnshire         925         Primary
#> 4950                        Lincolnshire         925       Secondary
#> 4951                        Lincolnshire         925         Special
#> 4952                     Nottinghamshire         891         Primary
#> 4953                     Nottinghamshire         891       Secondary
#> 4954                     Nottinghamshire         891         Special
#> 4955                                <NA>          NA     All schools
#> 4956                                <NA>          NA         Primary
#> 4957                                <NA>          NA       Secondary
#> 4958                                <NA>          NA         Special
#> 4959            Herefordshire, County of         884         Primary
#> 4960            Herefordshire, County of         884       Secondary
#> 4961            Herefordshire, County of         884         Special
#> 4962                  Telford and Wrekin         894         Primary
#> 4963                  Telford and Wrekin         894       Secondary
#> 4964                  Telford and Wrekin         894         Special
#> 4965                      Stoke-on-Trent         861         Primary
#> 4966                      Stoke-on-Trent         861       Secondary
#> 4967                      Stoke-on-Trent         861         Special
#> 4968                          Shropshire         893         Primary
#> 4969                          Shropshire         893       Secondary
#> 4970                          Shropshire         893         Special
#> 4971                          Birmingham         330         Primary
#> 4972                          Birmingham         330       Secondary
#> 4973                          Birmingham         330         Special
#> 4974                            Coventry         331         Primary
#> 4975                            Coventry         331       Secondary
#> 4976                            Coventry         331         Special
#> 4977                              Dudley         332         Primary
#> 4978                              Dudley         332       Secondary
#> 4979                              Dudley         332         Special
#> 4980                            Sandwell         333         Primary
#> 4981                            Sandwell         333       Secondary
#> 4982                            Sandwell         333         Special
#> 4983                            Solihull         334         Primary
#> 4984                            Solihull         334       Secondary
#> 4985                            Solihull         334         Special
#> 4986                             Walsall         335         Primary
#> 4987                             Walsall         335       Secondary
#> 4988                             Walsall         335         Special
#> 4989                       Wolverhampton         336         Primary
#> 4990                       Wolverhampton         336       Secondary
#> 4991                       Wolverhampton         336         Special
#> 4992                       Staffordshire         860         Primary
#> 4993                       Staffordshire         860       Secondary
#> 4994                       Staffordshire         860         Special
#> 4995                        Warwickshire         937         Primary
#> 4996                        Warwickshire         937       Secondary
#> 4997                        Warwickshire         937         Special
#> 4998                      Worcestershire         885         Primary
#> 4999                      Worcestershire         885       Secondary
#> 5000                      Worcestershire         885         Special
#> 5001                                <NA>          NA     All schools
#> 5002                                <NA>          NA         Primary
#> 5003                                <NA>          NA       Secondary
#> 5004                                <NA>          NA         Special
#> 5005                        Peterborough         874         Primary
#> 5006                        Peterborough         874       Secondary
#> 5007                        Peterborough         874         Special
#> 5008                               Luton         821         Primary
#> 5009                               Luton         821       Secondary
#> 5010                               Luton         821         Special
#> 5011                     Southend-on-Sea         882         Primary
#> 5012                     Southend-on-Sea         882       Secondary
#> 5013                     Southend-on-Sea         882         Special
#> 5014                            Thurrock         883         Primary
#> 5015                            Thurrock         883       Secondary
#> 5016                            Thurrock         883         Special
#> 5017                             Bedford         822         Primary
#> 5018                             Bedford         822       Secondary
#> 5019                             Bedford         822         Special
#> 5020                Central Bedfordshire         823         Primary
#> 5021                Central Bedfordshire         823       Secondary
#> 5022                Central Bedfordshire         823         Special
#> 5023                      Cambridgeshire         873         Primary
#> 5024                      Cambridgeshire         873       Secondary
#> 5025                      Cambridgeshire         873         Special
#> 5026                               Essex         881         Primary
#> 5027                               Essex         881       Secondary
#> 5028                               Essex         881         Special
#> 5029                       Hertfordshire         919         Primary
#> 5030                       Hertfordshire         919       Secondary
#> 5031                       Hertfordshire         919         Special
#> 5032                             Norfolk         926         Primary
#> 5033                             Norfolk         926       Secondary
#> 5034                             Norfolk         926         Special
#> 5035                             Suffolk         935         Primary
#> 5036                             Suffolk         935       Secondary
#> 5037                             Suffolk         935         Special
#> 5038                                <NA>          NA     All schools
#> 5039                                <NA>          NA         Primary
#> 5040                                <NA>          NA       Secondary
#> 5041                                <NA>          NA         Special
#> 5042                      City of London         201         Primary
#> 5043                Barking and Dagenham         301         Primary
#> 5044                Barking and Dagenham         301       Secondary
#> 5045                Barking and Dagenham         301         Special
#> 5046                              Barnet         302         Primary
#> 5047                              Barnet         302       Secondary
#> 5048                              Barnet         302         Special
#> 5049                              Bexley         303         Primary
#> 5050                              Bexley         303       Secondary
#> 5051                              Bexley         303         Special
#> 5052                               Brent         304         Primary
#> 5053                               Brent         304       Secondary
#> 5054                               Brent         304         Special
#> 5055                             Bromley         305         Primary
#> 5056                             Bromley         305       Secondary
#> 5057                             Bromley         305         Special
#> 5058                              Camden         202         Primary
#> 5059                              Camden         202       Secondary
#> 5060                              Camden         202         Special
#> 5061                             Croydon         306         Primary
#> 5062                             Croydon         306       Secondary
#> 5063                             Croydon         306         Special
#> 5064                              Ealing         307         Primary
#> 5065                              Ealing         307       Secondary
#> 5066                              Ealing         307         Special
#> 5067                             Enfield         308         Primary
#> 5068                             Enfield         308       Secondary
#> 5069                             Enfield         308         Special
#> 5070                           Greenwich         203         Primary
#> 5071                           Greenwich         203       Secondary
#> 5072                           Greenwich         203         Special
#> 5073                             Hackney         204         Primary
#> 5074                             Hackney         204       Secondary
#> 5075                             Hackney         204         Special
#> 5076              Hammersmith and Fulham         205         Primary
#> 5077              Hammersmith and Fulham         205       Secondary
#> 5078              Hammersmith and Fulham         205         Special
#> 5079                            Haringey         309         Primary
#> 5080                            Haringey         309       Secondary
#> 5081                            Haringey         309         Special
#> 5082                              Harrow         310         Primary
#> 5083                              Harrow         310       Secondary
#> 5084                              Harrow         310         Special
#> 5085                            Havering         311         Primary
#> 5086                            Havering         311       Secondary
#> 5087                            Havering         311         Special
#> 5088                          Hillingdon         312         Primary
#> 5089                          Hillingdon         312       Secondary
#> 5090                          Hillingdon         312         Special
#> 5091                            Hounslow         313         Primary
#> 5092                            Hounslow         313       Secondary
#> 5093                            Hounslow         313         Special
#> 5094                           Islington         206         Primary
#> 5095                           Islington         206       Secondary
#> 5096                           Islington         206         Special
#> 5097              Kensington and Chelsea         207         Primary
#> 5098              Kensington and Chelsea         207       Secondary
#> 5099              Kensington and Chelsea         207         Special
#> 5100                Kingston upon Thames         314         Primary
#> 5101                Kingston upon Thames         314       Secondary
#> 5102                Kingston upon Thames         314         Special
#> 5103                             Lambeth         208         Primary
#> 5104                             Lambeth         208       Secondary
#> 5105                             Lambeth         208         Special
#> 5106                            Lewisham         209         Primary
#> 5107                            Lewisham         209       Secondary
#> 5108                            Lewisham         209         Special
#> 5109                              Merton         315         Primary
#> 5110                              Merton         315       Secondary
#> 5111                              Merton         315         Special
#> 5112                              Newham         316         Primary
#> 5113                              Newham         316       Secondary
#> 5114                              Newham         316         Special
#> 5115                           Redbridge         317         Primary
#> 5116                           Redbridge         317       Secondary
#> 5117                           Redbridge         317         Special
#> 5118                Richmond upon Thames         318         Primary
#> 5119                Richmond upon Thames         318       Secondary
#> 5120                Richmond upon Thames         318         Special
#> 5121                           Southwark         210         Primary
#> 5122                           Southwark         210       Secondary
#> 5123                           Southwark         210         Special
#> 5124                              Sutton         319         Primary
#> 5125                              Sutton         319       Secondary
#> 5126                              Sutton         319         Special
#> 5127                       Tower Hamlets         211         Primary
#> 5128                       Tower Hamlets         211       Secondary
#> 5129                       Tower Hamlets         211         Special
#> 5130                      Waltham Forest         320         Primary
#> 5131                      Waltham Forest         320       Secondary
#> 5132                      Waltham Forest         320         Special
#> 5133                          Wandsworth         212         Primary
#> 5134                          Wandsworth         212       Secondary
#> 5135                          Wandsworth         212         Special
#> 5136                         Westminster         213         Primary
#> 5137                         Westminster         213       Secondary
#> 5138                         Westminster         213         Special
#> 5139                                <NA>          NA     All schools
#> 5140                                <NA>          NA         Primary
#> 5141                                <NA>          NA       Secondary
#> 5142                                <NA>          NA         Special
#> 5143                              Medway         887         Primary
#> 5144                              Medway         887       Secondary
#> 5145                              Medway         887         Special
#> 5146                    Bracknell Forest         867         Primary
#> 5147                    Bracknell Forest         867       Secondary
#> 5148                    Bracknell Forest         867         Special
#> 5149                      West Berkshire         869         Primary
#> 5150                      West Berkshire         869       Secondary
#> 5151                      West Berkshire         869         Special
#> 5152                             Reading         870         Primary
#> 5153                             Reading         870       Secondary
#> 5154                             Reading         870         Special
#> 5155                              Slough         871         Primary
#> 5156                              Slough         871       Secondary
#> 5157                              Slough         871         Special
#> 5158              Windsor and Maidenhead         868         Primary
#> 5159              Windsor and Maidenhead         868       Secondary
#> 5160              Windsor and Maidenhead         868         Special
#> 5161                           Wokingham         872         Primary
#> 5162                           Wokingham         872       Secondary
#> 5163                           Wokingham         872         Special
#> 5164                       Milton Keynes         826         Primary
#> 5165                       Milton Keynes         826       Secondary
#> 5166                       Milton Keynes         826         Special
#> 5167                   Brighton and Hove         846         Primary
#> 5168                   Brighton and Hove         846       Secondary
#> 5169                   Brighton and Hove         846         Special
#> 5170                          Portsmouth         851         Primary
#> 5171                          Portsmouth         851       Secondary
#> 5172                          Portsmouth         851         Special
#> 5173                         Southampton         852         Primary
#> 5174                         Southampton         852       Secondary
#> 5175                         Southampton         852         Special
#> 5176                       Isle of Wight         921         Primary
#> 5177                       Isle of Wight         921       Secondary
#> 5178                       Isle of Wight         921         Special
#> 5179                     Buckinghamshire         825         Primary
#> 5180                     Buckinghamshire         825       Secondary
#> 5181                     Buckinghamshire         825         Special
#> 5182                         East Sussex         845         Primary
#> 5183                         East Sussex         845       Secondary
#> 5184                         East Sussex         845         Special
#> 5185                           Hampshire         850         Primary
#> 5186                           Hampshire         850       Secondary
#> 5187                           Hampshire         850         Special
#> 5188                                Kent         886         Primary
#> 5189                                Kent         886       Secondary
#> 5190                                Kent         886         Special
#> 5191                         Oxfordshire         931         Primary
#> 5192                         Oxfordshire         931       Secondary
#> 5193                         Oxfordshire         931         Special
#> 5194                              Surrey         936         Primary
#> 5195                              Surrey         936       Secondary
#> 5196                              Surrey         936         Special
#> 5197                         West Sussex         938         Primary
#> 5198                         West Sussex         938       Secondary
#> 5199                         West Sussex         938         Special
#> 5200                                <NA>          NA     All schools
#> 5201                                <NA>          NA         Primary
#> 5202                                <NA>          NA       Secondary
#> 5203                                <NA>          NA         Special
#> 5204        Bath and North East Somerset         800         Primary
#> 5205        Bath and North East Somerset         800       Secondary
#> 5206        Bath and North East Somerset         800         Special
#> 5207                    Bristol, City of         801         Primary
#> 5208                    Bristol, City of         801       Secondary
#> 5209                    Bristol, City of         801         Special
#> 5210                      North Somerset         802         Primary
#> 5211                      North Somerset         802       Secondary
#> 5212                      North Somerset         802         Special
#> 5213               South Gloucestershire         803         Primary
#> 5214               South Gloucestershire         803       Secondary
#> 5215               South Gloucestershire         803         Special
#> 5216                            Plymouth         879         Primary
#> 5217                            Plymouth         879       Secondary
#> 5218                            Plymouth         879         Special
#> 5219                              Torbay         880         Primary
#> 5220                              Torbay         880       Secondary
#> 5221                              Torbay         880         Special
#> 5222                             Swindon         866         Primary
#> 5223                             Swindon         866       Secondary
#> 5224                             Swindon         866         Special
#> 5225                            Cornwall         908         Primary
#> 5226                            Cornwall         908       Secondary
#> 5227                            Cornwall         908         Special
#> 5228                     Isles of Scilly         420       Secondary
#> 5229                           Wiltshire         865         Primary
#> 5230                           Wiltshire         865       Secondary
#> 5231                           Wiltshire         865         Special
#> 5232 Bournemouth, Christchurch and Poole         839         Primary
#> 5233 Bournemouth, Christchurch and Poole         839       Secondary
#> 5234 Bournemouth, Christchurch and Poole         839         Special
#> 5235                              Dorset         838         Primary
#> 5236                              Dorset         838       Secondary
#> 5237                              Dorset         838         Special
#> 5238                            Somerset         933         Primary
#> 5239                            Somerset         933       Secondary
#> 5240                            Somerset         933         Special
#> 5241                               Devon         878         Primary
#> 5242                               Devon         878       Secondary
#> 5243                               Devon         878         Special
#> 5244                     Gloucestershire         916         Primary
#> 5245                     Gloucestershire         916       Secondary
#> 5246                     Gloucestershire         916         Special
#> 5247                                <NA>          NA     All schools
#> 5248                                <NA>          NA         Primary
#> 5249                                <NA>          NA       Secondary
#> 5250                                <NA>          NA         Special
#> 5251                                <NA>          NA     All schools
#> 5252                                <NA>          NA         Primary
#> 5253                                <NA>          NA       Secondary
#> 5254                                <NA>          NA         Special
#> 5255                          Hartlepool         805         Primary
#> 5256                          Hartlepool         805       Secondary
#> 5257                          Hartlepool         805         Special
#> 5258                       Middlesbrough         806         Primary
#> 5259                       Middlesbrough         806       Secondary
#> 5260                       Middlesbrough         806         Special
#> 5261                Redcar and Cleveland         807         Primary
#> 5262                Redcar and Cleveland         807       Secondary
#> 5263                Redcar and Cleveland         807         Special
#> 5264                    Stockton-on-Tees         808         Primary
#> 5265                    Stockton-on-Tees         808       Secondary
#> 5266                    Stockton-on-Tees         808         Special
#> 5267                          Darlington         841         Primary
#> 5268                          Darlington         841       Secondary
#> 5269                          Darlington         841         Special
#> 5270                       County Durham         840         Primary
#> 5271                       County Durham         840       Secondary
#> 5272                       County Durham         840         Special
#> 5273                      Northumberland         929         Primary
#> 5274                      Northumberland         929       Secondary
#> 5275                      Northumberland         929         Special
#> 5276                 Newcastle upon Tyne         391         Primary
#> 5277                 Newcastle upon Tyne         391       Secondary
#> 5278                 Newcastle upon Tyne         391         Special
#> 5279                      North Tyneside         392         Primary
#> 5280                      North Tyneside         392       Secondary
#> 5281                      North Tyneside         392         Special
#> 5282                      South Tyneside         393         Primary
#> 5283                      South Tyneside         393       Secondary
#> 5284                      South Tyneside         393         Special
#> 5285                          Sunderland         394         Primary
#> 5286                          Sunderland         394       Secondary
#> 5287                          Sunderland         394         Special
#> 5288                           Gateshead         390         Primary
#> 5289                           Gateshead         390       Secondary
#> 5290                           Gateshead         390         Special
#> 5291                                <NA>          NA     All schools
#> 5292                                <NA>          NA         Primary
#> 5293                                <NA>          NA       Secondary
#> 5294                                <NA>          NA         Special
#> 5295                              Halton         876         Primary
#> 5296                              Halton         876       Secondary
#> 5297                              Halton         876         Special
#> 5298                          Warrington         877         Primary
#> 5299                          Warrington         877       Secondary
#> 5300                          Warrington         877         Special
#> 5301               Blackburn with Darwen         889         Primary
#> 5302               Blackburn with Darwen         889       Secondary
#> 5303               Blackburn with Darwen         889         Special
#> 5304                           Blackpool         890         Primary
#> 5305                           Blackpool         890       Secondary
#> 5306                           Blackpool         890         Special
#> 5307                       Cheshire East         895         Primary
#> 5308                       Cheshire East         895       Secondary
#> 5309                       Cheshire East         895         Special
#> 5310           Cheshire West and Chester         896         Primary
#> 5311           Cheshire West and Chester         896       Secondary
#> 5312           Cheshire West and Chester         896         Special
#> 5313                          Cumberland         942         Primary
#> 5314                          Cumberland         942       Secondary
#> 5315                          Cumberland         942         Special
#> 5316             Westmorland and Furness         943         Primary
#> 5317             Westmorland and Furness         943       Secondary
#> 5318             Westmorland and Furness         943         Special
#> 5319                              Bolton         350         Primary
#> 5320                              Bolton         350       Secondary
#> 5321                              Bolton         350         Special
#> 5322                                Bury         351         Primary
#> 5323                                Bury         351       Secondary
#> 5324                                Bury         351         Special
#> 5325                          Manchester         352         Primary
#> 5326                          Manchester         352       Secondary
#> 5327                          Manchester         352         Special
#> 5328                              Oldham         353         Primary
#> 5329                              Oldham         353       Secondary
#> 5330                              Oldham         353         Special
#> 5331                            Rochdale         354         Primary
#> 5332                            Rochdale         354       Secondary
#> 5333                            Rochdale         354         Special
#> 5334                             Salford         355         Primary
#> 5335                             Salford         355       Secondary
#> 5336                             Salford         355         Special
#> 5337                           Stockport         356         Primary
#> 5338                           Stockport         356       Secondary
#> 5339                           Stockport         356         Special
#> 5340                            Tameside         357         Primary
#> 5341                            Tameside         357       Secondary
#> 5342                            Tameside         357         Special
#> 5343                            Trafford         358         Primary
#> 5344                            Trafford         358       Secondary
#> 5345                            Trafford         358         Special
#> 5346                               Wigan         359         Primary
#> 5347                               Wigan         359       Secondary
#> 5348                               Wigan         359         Special
#> 5349                            Knowsley         340         Primary
#> 5350                            Knowsley         340       Secondary
#> 5351                            Knowsley         340         Special
#> 5352                           Liverpool         341         Primary
#> 5353                           Liverpool         341       Secondary
#> 5354                           Liverpool         341         Special
#> 5355                          St. Helens         342         Primary
#> 5356                          St. Helens         342       Secondary
#> 5357                          St. Helens         342         Special
#> 5358                              Sefton         343         Primary
#> 5359                              Sefton         343       Secondary
#> 5360                              Sefton         343         Special
#> 5361                              Wirral         344         Primary
#> 5362                              Wirral         344       Secondary
#> 5363                              Wirral         344         Special
#> 5364                          Lancashire         888         Primary
#> 5365                          Lancashire         888       Secondary
#> 5366                          Lancashire         888         Special
#> 5367                                <NA>          NA     All schools
#> 5368                                <NA>          NA         Primary
#> 5369                                <NA>          NA       Secondary
#> 5370                                <NA>          NA         Special
#> 5371         Kingston upon Hull, City of         810         Primary
#> 5372         Kingston upon Hull, City of         810       Secondary
#> 5373         Kingston upon Hull, City of         810         Special
#> 5374            East Riding of Yorkshire         811         Primary
#> 5375            East Riding of Yorkshire         811       Secondary
#> 5376            East Riding of Yorkshire         811         Special
#> 5377             North East Lincolnshire         812         Primary
#> 5378             North East Lincolnshire         812       Secondary
#> 5379             North East Lincolnshire         812         Special
#> 5380                  North Lincolnshire         813         Primary
#> 5381                  North Lincolnshire         813       Secondary
#> 5382                  North Lincolnshire         813         Special
#> 5383                                York         816         Primary
#> 5384                                York         816       Secondary
#> 5385                                York         816         Special
#> 5386                     North Yorkshire         815         Primary
#> 5387                     North Yorkshire         815       Secondary
#> 5388                     North Yorkshire         815         Special
#> 5389                            Barnsley         370         Primary
#> 5390                            Barnsley         370       Secondary
#> 5391                            Barnsley         370         Special
#> 5392                           Doncaster         371         Primary
#> 5393                           Doncaster         371       Secondary
#> 5394                           Doncaster         371         Special
#> 5395                           Rotherham         372         Primary
#> 5396                           Rotherham         372       Secondary
#> 5397                           Rotherham         372         Special
#> 5398                           Sheffield         373         Primary
#> 5399                           Sheffield         373       Secondary
#> 5400                           Sheffield         373         Special
#> 5401                            Bradford         380         Primary
#> 5402                            Bradford         380       Secondary
#> 5403                            Bradford         380         Special
#> 5404                          Calderdale         381         Primary
#> 5405                          Calderdale         381       Secondary
#> 5406                          Calderdale         381         Special
#> 5407                            Kirklees         382         Primary
#> 5408                            Kirklees         382       Secondary
#> 5409                            Kirklees         382         Special
#> 5410                               Leeds         383         Primary
#> 5411                               Leeds         383       Secondary
#> 5412                               Leeds         383         Special
#> 5413                           Wakefield         384         Primary
#> 5414                           Wakefield         384       Secondary
#> 5415                           Wakefield         384         Special
#> 5416                                <NA>          NA     All schools
#> 5417                                <NA>          NA         Primary
#> 5418                                <NA>          NA       Secondary
#> 5419                                <NA>          NA         Special
#> 5420                               Derby         831         Primary
#> 5421                               Derby         831       Secondary
#> 5422                               Derby         831         Special
#> 5423                           Leicester         856         Primary
#> 5424                           Leicester         856       Secondary
#> 5425                           Leicester         856         Special
#> 5426                             Rutland         857         Primary
#> 5427                             Rutland         857       Secondary
#> 5428                          Nottingham         892         Primary
#> 5429                          Nottingham         892       Secondary
#> 5430                          Nottingham         892         Special
#> 5431              North Northamptonshire         940         Primary
#> 5432              North Northamptonshire         940       Secondary
#> 5433              North Northamptonshire         940         Special
#> 5434               West Northamptonshire         941         Primary
#> 5435               West Northamptonshire         941       Secondary
#> 5436               West Northamptonshire         941         Special
#> 5437                          Derbyshire         830         Primary
#> 5438                          Derbyshire         830       Secondary
#> 5439                          Derbyshire         830         Special
#> 5440                      Leicestershire         855         Primary
#> 5441                      Leicestershire         855       Secondary
#> 5442                      Leicestershire         855         Special
#> 5443                        Lincolnshire         925         Primary
#> 5444                        Lincolnshire         925       Secondary
#> 5445                        Lincolnshire         925         Special
#> 5446                     Nottinghamshire         891         Primary
#> 5447                     Nottinghamshire         891       Secondary
#> 5448                     Nottinghamshire         891         Special
#> 5449                                <NA>          NA     All schools
#> 5450                                <NA>          NA         Primary
#> 5451                                <NA>          NA       Secondary
#> 5452                                <NA>          NA         Special
#> 5453            Herefordshire, County of         884         Primary
#> 5454            Herefordshire, County of         884       Secondary
#> 5455            Herefordshire, County of         884         Special
#> 5456                  Telford and Wrekin         894         Primary
#> 5457                  Telford and Wrekin         894       Secondary
#> 5458                  Telford and Wrekin         894         Special
#> 5459                      Stoke-on-Trent         861         Primary
#> 5460                      Stoke-on-Trent         861       Secondary
#> 5461                      Stoke-on-Trent         861         Special
#> 5462                          Shropshire         893         Primary
#> 5463                          Shropshire         893       Secondary
#> 5464                          Shropshire         893         Special
#> 5465                          Birmingham         330         Primary
#> 5466                          Birmingham         330       Secondary
#> 5467                          Birmingham         330         Special
#> 5468                            Coventry         331         Primary
#> 5469                            Coventry         331       Secondary
#> 5470                            Coventry         331         Special
#> 5471                              Dudley         332         Primary
#> 5472                              Dudley         332       Secondary
#> 5473                              Dudley         332         Special
#> 5474                            Sandwell         333         Primary
#> 5475                            Sandwell         333       Secondary
#> 5476                            Sandwell         333         Special
#> 5477                            Solihull         334         Primary
#> 5478                            Solihull         334       Secondary
#> 5479                            Solihull         334         Special
#> 5480                             Walsall         335         Primary
#> 5481                             Walsall         335       Secondary
#> 5482                             Walsall         335         Special
#> 5483                       Wolverhampton         336         Primary
#> 5484                       Wolverhampton         336       Secondary
#> 5485                       Wolverhampton         336         Special
#> 5486                       Staffordshire         860         Primary
#> 5487                       Staffordshire         860       Secondary
#> 5488                       Staffordshire         860         Special
#> 5489                        Warwickshire         937         Primary
#> 5490                        Warwickshire         937       Secondary
#> 5491                        Warwickshire         937         Special
#> 5492                      Worcestershire         885         Primary
#> 5493                      Worcestershire         885       Secondary
#> 5494                      Worcestershire         885         Special
#> 5495                                <NA>          NA     All schools
#> 5496                                <NA>          NA         Primary
#> 5497                                <NA>          NA       Secondary
#> 5498                                <NA>          NA         Special
#> 5499                        Peterborough         874         Primary
#> 5500                        Peterborough         874       Secondary
#> 5501                        Peterborough         874         Special
#> 5502                               Luton         821         Primary
#> 5503                               Luton         821       Secondary
#> 5504                               Luton         821         Special
#> 5505                     Southend-on-Sea         882         Primary
#> 5506                     Southend-on-Sea         882       Secondary
#> 5507                     Southend-on-Sea         882         Special
#> 5508                            Thurrock         883         Primary
#> 5509                            Thurrock         883       Secondary
#> 5510                            Thurrock         883         Special
#> 5511                             Bedford         822         Primary
#> 5512                             Bedford         822       Secondary
#> 5513                             Bedford         822         Special
#> 5514                Central Bedfordshire         823         Primary
#> 5515                Central Bedfordshire         823       Secondary
#> 5516                Central Bedfordshire         823         Special
#> 5517                      Cambridgeshire         873         Primary
#> 5518                      Cambridgeshire         873       Secondary
#> 5519                      Cambridgeshire         873         Special
#> 5520                               Essex         881         Primary
#> 5521                               Essex         881       Secondary
#> 5522                               Essex         881         Special
#> 5523                       Hertfordshire         919         Primary
#> 5524                       Hertfordshire         919       Secondary
#> 5525                       Hertfordshire         919         Special
#> 5526                             Norfolk         926         Primary
#> 5527                             Norfolk         926       Secondary
#> 5528                             Norfolk         926         Special
#> 5529                             Suffolk         935         Primary
#> 5530                             Suffolk         935       Secondary
#> 5531                             Suffolk         935         Special
#> 5532                                <NA>          NA     All schools
#> 5533                                <NA>          NA         Primary
#> 5534                                <NA>          NA       Secondary
#> 5535                                <NA>          NA         Special
#> 5536                      City of London         201         Primary
#> 5537                Barking and Dagenham         301         Primary
#> 5538                Barking and Dagenham         301       Secondary
#> 5539                Barking and Dagenham         301         Special
#> 5540                              Barnet         302         Primary
#> 5541                              Barnet         302       Secondary
#> 5542                              Barnet         302         Special
#> 5543                              Bexley         303         Primary
#> 5544                              Bexley         303       Secondary
#> 5545                              Bexley         303         Special
#> 5546                               Brent         304         Primary
#> 5547                               Brent         304       Secondary
#> 5548                               Brent         304         Special
#> 5549                             Bromley         305         Primary
#> 5550                             Bromley         305       Secondary
#> 5551                             Bromley         305         Special
#> 5552                              Camden         202         Primary
#> 5553                              Camden         202       Secondary
#> 5554                              Camden         202         Special
#> 5555                             Croydon         306         Primary
#> 5556                             Croydon         306       Secondary
#> 5557                             Croydon         306         Special
#> 5558                              Ealing         307         Primary
#> 5559                              Ealing         307       Secondary
#> 5560                              Ealing         307         Special
#> 5561                             Enfield         308         Primary
#> 5562                             Enfield         308       Secondary
#> 5563                             Enfield         308         Special
#> 5564                           Greenwich         203         Primary
#> 5565                           Greenwich         203       Secondary
#> 5566                           Greenwich         203         Special
#> 5567                             Hackney         204         Primary
#> 5568                             Hackney         204       Secondary
#> 5569                             Hackney         204         Special
#> 5570              Hammersmith and Fulham         205         Primary
#> 5571              Hammersmith and Fulham         205       Secondary
#> 5572              Hammersmith and Fulham         205         Special
#> 5573                            Haringey         309         Primary
#> 5574                            Haringey         309       Secondary
#> 5575                            Haringey         309         Special
#> 5576                              Harrow         310         Primary
#> 5577                              Harrow         310       Secondary
#> 5578                              Harrow         310         Special
#> 5579                            Havering         311         Primary
#> 5580                            Havering         311       Secondary
#> 5581                            Havering         311         Special
#> 5582                          Hillingdon         312         Primary
#> 5583                          Hillingdon         312       Secondary
#> 5584                          Hillingdon         312         Special
#> 5585                            Hounslow         313         Primary
#> 5586                            Hounslow         313       Secondary
#> 5587                            Hounslow         313         Special
#> 5588                           Islington         206         Primary
#> 5589                           Islington         206       Secondary
#> 5590                           Islington         206         Special
#> 5591              Kensington and Chelsea         207         Primary
#> 5592              Kensington and Chelsea         207       Secondary
#> 5593              Kensington and Chelsea         207         Special
#> 5594                Kingston upon Thames         314         Primary
#> 5595                Kingston upon Thames         314       Secondary
#> 5596                Kingston upon Thames         314         Special
#> 5597                             Lambeth         208         Primary
#> 5598                             Lambeth         208       Secondary
#> 5599                             Lambeth         208         Special
#> 5600                            Lewisham         209         Primary
#> 5601                            Lewisham         209       Secondary
#> 5602                            Lewisham         209         Special
#> 5603                              Merton         315         Primary
#> 5604                              Merton         315       Secondary
#> 5605                              Merton         315         Special
#> 5606                              Newham         316         Primary
#> 5607                              Newham         316       Secondary
#> 5608                              Newham         316         Special
#> 5609                           Redbridge         317         Primary
#> 5610                           Redbridge         317       Secondary
#> 5611                           Redbridge         317         Special
#> 5612                Richmond upon Thames         318         Primary
#> 5613                Richmond upon Thames         318       Secondary
#> 5614                Richmond upon Thames         318         Special
#> 5615                           Southwark         210         Primary
#> 5616                           Southwark         210       Secondary
#> 5617                           Southwark         210         Special
#> 5618                              Sutton         319         Primary
#> 5619                              Sutton         319       Secondary
#> 5620                              Sutton         319         Special
#> 5621                       Tower Hamlets         211         Primary
#> 5622                       Tower Hamlets         211       Secondary
#> 5623                       Tower Hamlets         211         Special
#> 5624                      Waltham Forest         320         Primary
#> 5625                      Waltham Forest         320       Secondary
#> 5626                      Waltham Forest         320         Special
#> 5627                          Wandsworth         212         Primary
#> 5628                          Wandsworth         212       Secondary
#> 5629                          Wandsworth         212         Special
#> 5630                         Westminster         213         Primary
#> 5631                         Westminster         213       Secondary
#> 5632                         Westminster         213         Special
#> 5633                                <NA>          NA     All schools
#> 5634                                <NA>          NA         Primary
#> 5635                                <NA>          NA       Secondary
#> 5636                                <NA>          NA         Special
#> 5637                              Medway         887         Primary
#> 5638                              Medway         887       Secondary
#> 5639                              Medway         887         Special
#> 5640                    Bracknell Forest         867         Primary
#> 5641                    Bracknell Forest         867       Secondary
#> 5642                    Bracknell Forest         867         Special
#> 5643                      West Berkshire         869         Primary
#> 5644                      West Berkshire         869       Secondary
#> 5645                      West Berkshire         869         Special
#> 5646                             Reading         870         Primary
#> 5647                             Reading         870       Secondary
#> 5648                             Reading         870         Special
#> 5649                              Slough         871         Primary
#> 5650                              Slough         871       Secondary
#> 5651                              Slough         871         Special
#> 5652              Windsor and Maidenhead         868         Primary
#> 5653              Windsor and Maidenhead         868       Secondary
#> 5654              Windsor and Maidenhead         868         Special
#> 5655                           Wokingham         872         Primary
#> 5656                           Wokingham         872       Secondary
#> 5657                           Wokingham         872         Special
#> 5658                       Milton Keynes         826         Primary
#> 5659                       Milton Keynes         826       Secondary
#> 5660                       Milton Keynes         826         Special
#> 5661                   Brighton and Hove         846         Primary
#> 5662                   Brighton and Hove         846       Secondary
#> 5663                   Brighton and Hove         846         Special
#> 5664                          Portsmouth         851         Primary
#> 5665                          Portsmouth         851       Secondary
#> 5666                          Portsmouth         851         Special
#> 5667                         Southampton         852         Primary
#> 5668                         Southampton         852       Secondary
#> 5669                         Southampton         852         Special
#> 5670                       Isle of Wight         921         Primary
#> 5671                       Isle of Wight         921       Secondary
#> 5672                       Isle of Wight         921         Special
#> 5673                     Buckinghamshire         825         Primary
#> 5674                     Buckinghamshire         825       Secondary
#> 5675                     Buckinghamshire         825         Special
#> 5676                         East Sussex         845         Primary
#> 5677                         East Sussex         845       Secondary
#> 5678                         East Sussex         845         Special
#> 5679                           Hampshire         850         Primary
#> 5680                           Hampshire         850       Secondary
#> 5681                           Hampshire         850         Special
#> 5682                                Kent         886         Primary
#> 5683                                Kent         886       Secondary
#> 5684                                Kent         886         Special
#> 5685                         Oxfordshire         931         Primary
#> 5686                         Oxfordshire         931       Secondary
#> 5687                         Oxfordshire         931         Special
#> 5688                              Surrey         936         Primary
#> 5689                              Surrey         936       Secondary
#> 5690                              Surrey         936         Special
#> 5691                         West Sussex         938         Primary
#> 5692                         West Sussex         938       Secondary
#> 5693                         West Sussex         938         Special
#> 5694                                <NA>          NA     All schools
#> 5695                                <NA>          NA         Primary
#> 5696                                <NA>          NA       Secondary
#> 5697                                <NA>          NA         Special
#> 5698        Bath and North East Somerset         800         Primary
#> 5699        Bath and North East Somerset         800       Secondary
#> 5700        Bath and North East Somerset         800         Special
#> 5701                    Bristol, City of         801         Primary
#> 5702                    Bristol, City of         801       Secondary
#> 5703                    Bristol, City of         801         Special
#> 5704                      North Somerset         802         Primary
#> 5705                      North Somerset         802       Secondary
#> 5706                      North Somerset         802         Special
#> 5707               South Gloucestershire         803         Primary
#> 5708               South Gloucestershire         803       Secondary
#> 5709               South Gloucestershire         803         Special
#> 5710                            Plymouth         879         Primary
#> 5711                            Plymouth         879       Secondary
#> 5712                            Plymouth         879         Special
#> 5713                              Torbay         880         Primary
#> 5714                              Torbay         880       Secondary
#> 5715                              Torbay         880         Special
#> 5716                             Swindon         866         Primary
#> 5717                             Swindon         866       Secondary
#> 5718                             Swindon         866         Special
#> 5719                            Cornwall         908         Primary
#> 5720                            Cornwall         908       Secondary
#> 5721                            Cornwall         908         Special
#> 5722                     Isles of Scilly         420       Secondary
#> 5723                           Wiltshire         865         Primary
#> 5724                           Wiltshire         865       Secondary
#> 5725                           Wiltshire         865         Special
#> 5726 Bournemouth, Christchurch and Poole         839         Primary
#> 5727 Bournemouth, Christchurch and Poole         839       Secondary
#> 5728 Bournemouth, Christchurch and Poole         839         Special
#> 5729                              Dorset         838         Primary
#> 5730                              Dorset         838       Secondary
#> 5731                              Dorset         838         Special
#> 5732                            Somerset         933         Primary
#> 5733                            Somerset         933       Secondary
#> 5734                            Somerset         933         Special
#> 5735                               Devon         878         Primary
#> 5736                               Devon         878       Secondary
#> 5737                               Devon         878         Special
#> 5738                     Gloucestershire         916         Primary
#> 5739                     Gloucestershire         916       Secondary
#> 5740                     Gloucestershire         916         Special
#> 5741                                <NA>          NA     All schools
#> 5742                                <NA>          NA         Primary
#> 5743                                <NA>          NA       Secondary
#> 5744                                <NA>          NA         Special
#> 5745                                <NA>          NA     All schools
#> 5746                                <NA>          NA         Primary
#> 5747                                <NA>          NA       Secondary
#> 5748                                <NA>          NA         Special
#> 5749                          Hartlepool         805         Primary
#> 5750                          Hartlepool         805       Secondary
#> 5751                          Hartlepool         805         Special
#> 5752                       Middlesbrough         806         Primary
#> 5753                       Middlesbrough         806       Secondary
#> 5754                       Middlesbrough         806         Special
#> 5755                Redcar and Cleveland         807         Primary
#> 5756                Redcar and Cleveland         807       Secondary
#> 5757                Redcar and Cleveland         807         Special
#> 5758                    Stockton-on-Tees         808         Primary
#> 5759                    Stockton-on-Tees         808       Secondary
#> 5760                    Stockton-on-Tees         808         Special
#> 5761                          Darlington         841         Primary
#> 5762                          Darlington         841       Secondary
#> 5763                          Darlington         841         Special
#> 5764                       County Durham         840         Primary
#> 5765                       County Durham         840       Secondary
#> 5766                       County Durham         840         Special
#> 5767                      Northumberland         929         Primary
#> 5768                      Northumberland         929       Secondary
#> 5769                      Northumberland         929         Special
#> 5770                 Newcastle upon Tyne         391         Primary
#> 5771                 Newcastle upon Tyne         391       Secondary
#> 5772                 Newcastle upon Tyne         391         Special
#> 5773                      North Tyneside         392         Primary
#> 5774                      North Tyneside         392       Secondary
#> 5775                      North Tyneside         392         Special
#> 5776                      South Tyneside         393         Primary
#> 5777                      South Tyneside         393       Secondary
#> 5778                      South Tyneside         393         Special
#> 5779                          Sunderland         394         Primary
#> 5780                          Sunderland         394       Secondary
#> 5781                          Sunderland         394         Special
#> 5782                           Gateshead         390         Primary
#> 5783                           Gateshead         390       Secondary
#> 5784                           Gateshead         390         Special
#> 5785                                <NA>          NA     All schools
#> 5786                                <NA>          NA         Primary
#> 5787                                <NA>          NA       Secondary
#> 5788                                <NA>          NA         Special
#> 5789                              Halton         876         Primary
#> 5790                              Halton         876       Secondary
#> 5791                              Halton         876         Special
#> 5792                          Warrington         877         Primary
#> 5793                          Warrington         877       Secondary
#> 5794                          Warrington         877         Special
#> 5795               Blackburn with Darwen         889         Primary
#> 5796               Blackburn with Darwen         889       Secondary
#> 5797               Blackburn with Darwen         889         Special
#> 5798                           Blackpool         890         Primary
#> 5799                           Blackpool         890       Secondary
#> 5800                           Blackpool         890         Special
#> 5801                       Cheshire East         895         Primary
#> 5802                       Cheshire East         895       Secondary
#> 5803                       Cheshire East         895         Special
#> 5804           Cheshire West and Chester         896         Primary
#> 5805           Cheshire West and Chester         896       Secondary
#> 5806           Cheshire West and Chester         896         Special
#> 5807                          Cumberland         942         Primary
#> 5808                          Cumberland         942       Secondary
#> 5809                          Cumberland         942         Special
#> 5810             Westmorland and Furness         943         Primary
#> 5811             Westmorland and Furness         943       Secondary
#> 5812             Westmorland and Furness         943         Special
#> 5813                              Bolton         350         Primary
#> 5814                              Bolton         350       Secondary
#> 5815                              Bolton         350         Special
#> 5816                                Bury         351         Primary
#> 5817                                Bury         351       Secondary
#> 5818                                Bury         351         Special
#> 5819                          Manchester         352         Primary
#> 5820                          Manchester         352       Secondary
#> 5821                          Manchester         352         Special
#> 5822                              Oldham         353         Primary
#> 5823                              Oldham         353       Secondary
#> 5824                              Oldham         353         Special
#> 5825                            Rochdale         354         Primary
#> 5826                            Rochdale         354       Secondary
#> 5827                            Rochdale         354         Special
#> 5828                             Salford         355         Primary
#> 5829                             Salford         355       Secondary
#> 5830                             Salford         355         Special
#> 5831                           Stockport         356         Primary
#> 5832                           Stockport         356       Secondary
#> 5833                           Stockport         356         Special
#> 5834                            Tameside         357         Primary
#> 5835                            Tameside         357       Secondary
#> 5836                            Tameside         357         Special
#> 5837                            Trafford         358         Primary
#> 5838                            Trafford         358       Secondary
#> 5839                            Trafford         358         Special
#> 5840                               Wigan         359         Primary
#> 5841                               Wigan         359       Secondary
#> 5842                               Wigan         359         Special
#> 5843                            Knowsley         340         Primary
#> 5844                            Knowsley         340       Secondary
#> 5845                            Knowsley         340         Special
#> 5846                           Liverpool         341         Primary
#> 5847                           Liverpool         341       Secondary
#> 5848                           Liverpool         341         Special
#> 5849                          St. Helens         342         Primary
#> 5850                          St. Helens         342       Secondary
#> 5851                          St. Helens         342         Special
#> 5852                              Sefton         343         Primary
#> 5853                              Sefton         343       Secondary
#> 5854                              Sefton         343         Special
#> 5855                              Wirral         344         Primary
#> 5856                              Wirral         344       Secondary
#> 5857                              Wirral         344         Special
#> 5858                          Lancashire         888         Primary
#> 5859                          Lancashire         888       Secondary
#> 5860                          Lancashire         888         Special
#> 5861                                <NA>          NA     All schools
#> 5862                                <NA>          NA         Primary
#> 5863                                <NA>          NA       Secondary
#> 5864                                <NA>          NA         Special
#> 5865         Kingston upon Hull, City of         810         Primary
#> 5866         Kingston upon Hull, City of         810       Secondary
#> 5867         Kingston upon Hull, City of         810         Special
#> 5868            East Riding of Yorkshire         811         Primary
#> 5869            East Riding of Yorkshire         811       Secondary
#> 5870            East Riding of Yorkshire         811         Special
#> 5871             North East Lincolnshire         812         Primary
#> 5872             North East Lincolnshire         812       Secondary
#> 5873             North East Lincolnshire         812         Special
#> 5874                  North Lincolnshire         813         Primary
#> 5875                  North Lincolnshire         813       Secondary
#> 5876                  North Lincolnshire         813         Special
#> 5877                                York         816         Primary
#> 5878                                York         816       Secondary
#> 5879                                York         816         Special
#> 5880                     North Yorkshire         815         Primary
#> 5881                     North Yorkshire         815       Secondary
#> 5882                     North Yorkshire         815         Special
#> 5883                            Barnsley         370         Primary
#> 5884                            Barnsley         370       Secondary
#> 5885                            Barnsley         370         Special
#> 5886                           Doncaster         371         Primary
#> 5887                           Doncaster         371       Secondary
#> 5888                           Doncaster         371         Special
#> 5889                           Rotherham         372         Primary
#> 5890                           Rotherham         372       Secondary
#> 5891                           Rotherham         372         Special
#> 5892                           Sheffield         373         Primary
#> 5893                           Sheffield         373       Secondary
#> 5894                           Sheffield         373         Special
#> 5895                            Bradford         380         Primary
#> 5896                            Bradford         380       Secondary
#> 5897                            Bradford         380         Special
#> 5898                          Calderdale         381         Primary
#> 5899                          Calderdale         381       Secondary
#> 5900                          Calderdale         381         Special
#> 5901                            Kirklees         382         Primary
#> 5902                            Kirklees         382       Secondary
#> 5903                            Kirklees         382         Special
#> 5904                               Leeds         383         Primary
#> 5905                               Leeds         383       Secondary
#> 5906                               Leeds         383         Special
#> 5907                           Wakefield         384         Primary
#> 5908                           Wakefield         384       Secondary
#> 5909                           Wakefield         384         Special
#> 5910                                <NA>          NA     All schools
#> 5911                                <NA>          NA         Primary
#> 5912                                <NA>          NA       Secondary
#> 5913                                <NA>          NA         Special
#> 5914                               Derby         831         Primary
#> 5915                               Derby         831       Secondary
#> 5916                               Derby         831         Special
#> 5917                           Leicester         856         Primary
#> 5918                           Leicester         856       Secondary
#> 5919                           Leicester         856         Special
#> 5920                             Rutland         857         Primary
#> 5921                             Rutland         857       Secondary
#> 5922                          Nottingham         892         Primary
#> 5923                          Nottingham         892       Secondary
#> 5924                          Nottingham         892         Special
#> 5925              North Northamptonshire         940         Primary
#> 5926              North Northamptonshire         940       Secondary
#> 5927              North Northamptonshire         940         Special
#> 5928               West Northamptonshire         941         Primary
#> 5929               West Northamptonshire         941       Secondary
#> 5930               West Northamptonshire         941         Special
#> 5931                          Derbyshire         830         Primary
#> 5932                          Derbyshire         830       Secondary
#> 5933                          Derbyshire         830         Special
#> 5934                      Leicestershire         855         Primary
#> 5935                      Leicestershire         855       Secondary
#> 5936                      Leicestershire         855         Special
#> 5937                        Lincolnshire         925         Primary
#> 5938                        Lincolnshire         925       Secondary
#> 5939                        Lincolnshire         925         Special
#> 5940                     Nottinghamshire         891         Primary
#> 5941                     Nottinghamshire         891       Secondary
#> 5942                     Nottinghamshire         891         Special
#> 5943                                <NA>          NA     All schools
#> 5944                                <NA>          NA         Primary
#> 5945                                <NA>          NA       Secondary
#> 5946                                <NA>          NA         Special
#> 5947            Herefordshire, County of         884         Primary
#> 5948            Herefordshire, County of         884       Secondary
#> 5949            Herefordshire, County of         884         Special
#> 5950                  Telford and Wrekin         894         Primary
#> 5951                  Telford and Wrekin         894       Secondary
#> 5952                  Telford and Wrekin         894         Special
#> 5953                      Stoke-on-Trent         861         Primary
#> 5954                      Stoke-on-Trent         861       Secondary
#> 5955                      Stoke-on-Trent         861         Special
#> 5956                          Shropshire         893         Primary
#> 5957                          Shropshire         893       Secondary
#> 5958                          Shropshire         893         Special
#> 5959                          Birmingham         330         Primary
#> 5960                          Birmingham         330       Secondary
#> 5961                          Birmingham         330         Special
#> 5962                            Coventry         331         Primary
#> 5963                            Coventry         331       Secondary
#> 5964                            Coventry         331         Special
#> 5965                              Dudley         332         Primary
#> 5966                              Dudley         332       Secondary
#> 5967                              Dudley         332         Special
#> 5968                            Sandwell         333         Primary
#> 5969                            Sandwell         333       Secondary
#> 5970                            Sandwell         333         Special
#> 5971                            Solihull         334         Primary
#> 5972                            Solihull         334       Secondary
#> 5973                            Solihull         334         Special
#> 5974                             Walsall         335         Primary
#> 5975                             Walsall         335       Secondary
#> 5976                             Walsall         335         Special
#> 5977                       Wolverhampton         336         Primary
#> 5978                       Wolverhampton         336       Secondary
#> 5979                       Wolverhampton         336         Special
#> 5980                       Staffordshire         860         Primary
#> 5981                       Staffordshire         860       Secondary
#> 5982                       Staffordshire         860         Special
#> 5983                        Warwickshire         937         Primary
#> 5984                        Warwickshire         937       Secondary
#> 5985                        Warwickshire         937         Special
#> 5986                      Worcestershire         885         Primary
#> 5987                      Worcestershire         885       Secondary
#> 5988                      Worcestershire         885         Special
#> 5989                                <NA>          NA     All schools
#> 5990                                <NA>          NA         Primary
#> 5991                                <NA>          NA       Secondary
#> 5992                                <NA>          NA         Special
#> 5993                        Peterborough         874         Primary
#> 5994                        Peterborough         874       Secondary
#> 5995                        Peterborough         874         Special
#> 5996                               Luton         821         Primary
#> 5997                               Luton         821       Secondary
#> 5998                               Luton         821         Special
#> 5999                     Southend-on-Sea         882         Primary
#> 6000                     Southend-on-Sea         882       Secondary
#> 6001                     Southend-on-Sea         882         Special
#> 6002                            Thurrock         883         Primary
#> 6003                            Thurrock         883       Secondary
#> 6004                            Thurrock         883         Special
#> 6005                             Bedford         822         Primary
#> 6006                             Bedford         822       Secondary
#> 6007                             Bedford         822         Special
#> 6008                Central Bedfordshire         823         Primary
#> 6009                Central Bedfordshire         823       Secondary
#> 6010                Central Bedfordshire         823         Special
#> 6011                      Cambridgeshire         873         Primary
#> 6012                      Cambridgeshire         873       Secondary
#> 6013                      Cambridgeshire         873         Special
#> 6014                               Essex         881         Primary
#> 6015                               Essex         881       Secondary
#> 6016                               Essex         881         Special
#> 6017                       Hertfordshire         919         Primary
#> 6018                       Hertfordshire         919       Secondary
#> 6019                       Hertfordshire         919         Special
#> 6020                             Norfolk         926         Primary
#> 6021                             Norfolk         926       Secondary
#> 6022                             Norfolk         926         Special
#> 6023                             Suffolk         935         Primary
#> 6024                             Suffolk         935       Secondary
#> 6025                             Suffolk         935         Special
#> 6026                                <NA>          NA     All schools
#> 6027                                <NA>          NA         Primary
#> 6028                                <NA>          NA       Secondary
#> 6029                                <NA>          NA         Special
#> 6030                      City of London         201         Primary
#> 6031                Barking and Dagenham         301         Primary
#> 6032                Barking and Dagenham         301       Secondary
#> 6033                Barking and Dagenham         301         Special
#> 6034                              Barnet         302         Primary
#> 6035                              Barnet         302       Secondary
#> 6036                              Barnet         302         Special
#> 6037                              Bexley         303         Primary
#> 6038                              Bexley         303       Secondary
#> 6039                              Bexley         303         Special
#> 6040                               Brent         304         Primary
#> 6041                               Brent         304       Secondary
#> 6042                               Brent         304         Special
#> 6043                             Bromley         305         Primary
#> 6044                             Bromley         305       Secondary
#> 6045                             Bromley         305         Special
#> 6046                              Camden         202         Primary
#> 6047                              Camden         202       Secondary
#> 6048                              Camden         202         Special
#> 6049                             Croydon         306         Primary
#> 6050                             Croydon         306       Secondary
#> 6051                             Croydon         306         Special
#> 6052                              Ealing         307         Primary
#> 6053                              Ealing         307       Secondary
#> 6054                              Ealing         307         Special
#> 6055                             Enfield         308         Primary
#> 6056                             Enfield         308       Secondary
#> 6057                             Enfield         308         Special
#> 6058                           Greenwich         203         Primary
#> 6059                           Greenwich         203       Secondary
#> 6060                           Greenwich         203         Special
#> 6061                             Hackney         204         Primary
#> 6062                             Hackney         204       Secondary
#> 6063                             Hackney         204         Special
#> 6064              Hammersmith and Fulham         205         Primary
#> 6065              Hammersmith and Fulham         205       Secondary
#> 6066              Hammersmith and Fulham         205         Special
#> 6067                            Haringey         309         Primary
#> 6068                            Haringey         309       Secondary
#> 6069                            Haringey         309         Special
#> 6070                              Harrow         310         Primary
#> 6071                              Harrow         310       Secondary
#> 6072                              Harrow         310         Special
#> 6073                            Havering         311         Primary
#> 6074                            Havering         311       Secondary
#> 6075                            Havering         311         Special
#> 6076                          Hillingdon         312         Primary
#> 6077                          Hillingdon         312       Secondary
#> 6078                          Hillingdon         312         Special
#> 6079                            Hounslow         313         Primary
#> 6080                            Hounslow         313       Secondary
#> 6081                            Hounslow         313         Special
#> 6082                           Islington         206         Primary
#> 6083                           Islington         206       Secondary
#> 6084                           Islington         206         Special
#> 6085              Kensington and Chelsea         207         Primary
#> 6086              Kensington and Chelsea         207       Secondary
#> 6087              Kensington and Chelsea         207         Special
#> 6088                Kingston upon Thames         314         Primary
#> 6089                Kingston upon Thames         314       Secondary
#> 6090                Kingston upon Thames         314         Special
#> 6091                             Lambeth         208         Primary
#> 6092                             Lambeth         208       Secondary
#> 6093                             Lambeth         208         Special
#> 6094                            Lewisham         209         Primary
#> 6095                            Lewisham         209       Secondary
#> 6096                            Lewisham         209         Special
#> 6097                              Merton         315         Primary
#> 6098                              Merton         315       Secondary
#> 6099                              Merton         315         Special
#> 6100                              Newham         316         Primary
#> 6101                              Newham         316       Secondary
#> 6102                              Newham         316         Special
#> 6103                           Redbridge         317         Primary
#> 6104                           Redbridge         317       Secondary
#> 6105                           Redbridge         317         Special
#> 6106                Richmond upon Thames         318         Primary
#> 6107                Richmond upon Thames         318       Secondary
#> 6108                Richmond upon Thames         318         Special
#> 6109                           Southwark         210         Primary
#> 6110                           Southwark         210       Secondary
#> 6111                           Southwark         210         Special
#> 6112                              Sutton         319         Primary
#> 6113                              Sutton         319       Secondary
#> 6114                              Sutton         319         Special
#> 6115                       Tower Hamlets         211         Primary
#> 6116                       Tower Hamlets         211       Secondary
#> 6117                       Tower Hamlets         211         Special
#> 6118                      Waltham Forest         320         Primary
#> 6119                      Waltham Forest         320       Secondary
#> 6120                      Waltham Forest         320         Special
#> 6121                          Wandsworth         212         Primary
#> 6122                          Wandsworth         212       Secondary
#> 6123                          Wandsworth         212         Special
#> 6124                         Westminster         213         Primary
#> 6125                         Westminster         213       Secondary
#> 6126                         Westminster         213         Special
#> 6127                                <NA>          NA     All schools
#> 6128                                <NA>          NA         Primary
#> 6129                                <NA>          NA       Secondary
#> 6130                                <NA>          NA         Special
#> 6131                              Medway         887         Primary
#> 6132                              Medway         887       Secondary
#> 6133                              Medway         887         Special
#> 6134                    Bracknell Forest         867         Primary
#> 6135                    Bracknell Forest         867       Secondary
#> 6136                    Bracknell Forest         867         Special
#> 6137                      West Berkshire         869         Primary
#> 6138                      West Berkshire         869       Secondary
#> 6139                      West Berkshire         869         Special
#> 6140                             Reading         870         Primary
#> 6141                             Reading         870       Secondary
#> 6142                             Reading         870         Special
#> 6143                              Slough         871         Primary
#> 6144                              Slough         871       Secondary
#> 6145                              Slough         871         Special
#> 6146              Windsor and Maidenhead         868         Primary
#> 6147              Windsor and Maidenhead         868       Secondary
#> 6148              Windsor and Maidenhead         868         Special
#> 6149                           Wokingham         872         Primary
#> 6150                           Wokingham         872       Secondary
#> 6151                           Wokingham         872         Special
#> 6152                       Milton Keynes         826         Primary
#> 6153                       Milton Keynes         826       Secondary
#> 6154                       Milton Keynes         826         Special
#> 6155                   Brighton and Hove         846         Primary
#> 6156                   Brighton and Hove         846       Secondary
#> 6157                   Brighton and Hove         846         Special
#> 6158                          Portsmouth         851         Primary
#> 6159                          Portsmouth         851       Secondary
#> 6160                          Portsmouth         851         Special
#> 6161                         Southampton         852         Primary
#> 6162                         Southampton         852       Secondary
#> 6163                         Southampton         852         Special
#> 6164                       Isle of Wight         921         Primary
#> 6165                       Isle of Wight         921       Secondary
#> 6166                       Isle of Wight         921         Special
#> 6167                     Buckinghamshire         825         Primary
#> 6168                     Buckinghamshire         825       Secondary
#> 6169                     Buckinghamshire         825         Special
#> 6170                         East Sussex         845         Primary
#> 6171                         East Sussex         845       Secondary
#> 6172                         East Sussex         845         Special
#> 6173                           Hampshire         850         Primary
#> 6174                           Hampshire         850       Secondary
#> 6175                           Hampshire         850         Special
#> 6176                                Kent         886         Primary
#> 6177                                Kent         886       Secondary
#> 6178                                Kent         886         Special
#> 6179                         Oxfordshire         931         Primary
#> 6180                         Oxfordshire         931       Secondary
#> 6181                         Oxfordshire         931         Special
#> 6182                              Surrey         936         Primary
#> 6183                              Surrey         936       Secondary
#> 6184                              Surrey         936         Special
#> 6185                         West Sussex         938         Primary
#> 6186                         West Sussex         938       Secondary
#> 6187                         West Sussex         938         Special
#> 6188                                <NA>          NA     All schools
#> 6189                                <NA>          NA         Primary
#> 6190                                <NA>          NA       Secondary
#> 6191                                <NA>          NA         Special
#> 6192        Bath and North East Somerset         800         Primary
#> 6193        Bath and North East Somerset         800       Secondary
#> 6194        Bath and North East Somerset         800         Special
#> 6195                    Bristol, City of         801         Primary
#> 6196                    Bristol, City of         801       Secondary
#> 6197                    Bristol, City of         801         Special
#> 6198                      North Somerset         802         Primary
#> 6199                      North Somerset         802       Secondary
#> 6200                      North Somerset         802         Special
#> 6201               South Gloucestershire         803         Primary
#> 6202               South Gloucestershire         803       Secondary
#> 6203               South Gloucestershire         803         Special
#> 6204                            Plymouth         879         Primary
#> 6205                            Plymouth         879       Secondary
#> 6206                            Plymouth         879         Special
#> 6207                              Torbay         880         Primary
#> 6208                              Torbay         880       Secondary
#> 6209                              Torbay         880         Special
#> 6210                             Swindon         866         Primary
#> 6211                             Swindon         866       Secondary
#> 6212                             Swindon         866         Special
#> 6213                            Cornwall         908         Primary
#> 6214                            Cornwall         908       Secondary
#> 6215                            Cornwall         908         Special
#> 6216                     Isles of Scilly         420       Secondary
#> 6217                           Wiltshire         865         Primary
#> 6218                           Wiltshire         865       Secondary
#> 6219                           Wiltshire         865         Special
#> 6220 Bournemouth, Christchurch and Poole         839         Primary
#> 6221 Bournemouth, Christchurch and Poole         839       Secondary
#> 6222 Bournemouth, Christchurch and Poole         839         Special
#> 6223                              Dorset         838         Primary
#> 6224                              Dorset         838       Secondary
#> 6225                              Dorset         838         Special
#> 6226                            Somerset         933         Primary
#> 6227                            Somerset         933       Secondary
#> 6228                            Somerset         933         Special
#> 6229                               Devon         878         Primary
#> 6230                               Devon         878       Secondary
#> 6231                               Devon         878         Special
#> 6232                     Gloucestershire         916         Primary
#> 6233                     Gloucestershire         916       Secondary
#> 6234                     Gloucestershire         916         Special
#> 6235                                <NA>          NA     All schools
#> 6236                                <NA>          NA         Primary
#> 6237                                <NA>          NA       Secondary
#> 6238                                <NA>          NA         Special
#> 6239                                <NA>          NA     All schools
#> 6240                                <NA>          NA         Primary
#> 6241                                <NA>          NA       Secondary
#> 6242                                <NA>          NA         Special
#> 6243                          Hartlepool         805         Primary
#> 6244                          Hartlepool         805       Secondary
#> 6245                          Hartlepool         805         Special
#> 6246                       Middlesbrough         806         Primary
#> 6247                       Middlesbrough         806       Secondary
#> 6248                       Middlesbrough         806         Special
#> 6249                Redcar and Cleveland         807         Primary
#> 6250                Redcar and Cleveland         807       Secondary
#> 6251                Redcar and Cleveland         807         Special
#> 6252                    Stockton-on-Tees         808         Primary
#> 6253                    Stockton-on-Tees         808       Secondary
#> 6254                    Stockton-on-Tees         808         Special
#> 6255                          Darlington         841         Primary
#> 6256                          Darlington         841       Secondary
#> 6257                          Darlington         841         Special
#> 6258                       County Durham         840         Primary
#> 6259                       County Durham         840       Secondary
#> 6260                       County Durham         840         Special
#> 6261                      Northumberland         929         Primary
#> 6262                      Northumberland         929       Secondary
#> 6263                      Northumberland         929         Special
#> 6264                 Newcastle upon Tyne         391         Primary
#> 6265                 Newcastle upon Tyne         391       Secondary
#> 6266                 Newcastle upon Tyne         391         Special
#> 6267                      North Tyneside         392         Primary
#> 6268                      North Tyneside         392       Secondary
#> 6269                      North Tyneside         392         Special
#> 6270                      South Tyneside         393         Primary
#> 6271                      South Tyneside         393       Secondary
#> 6272                      South Tyneside         393         Special
#> 6273                          Sunderland         394         Primary
#> 6274                          Sunderland         394       Secondary
#> 6275                          Sunderland         394         Special
#> 6276                           Gateshead         390         Primary
#> 6277                           Gateshead         390       Secondary
#> 6278                           Gateshead         390         Special
#> 6279                                <NA>          NA     All schools
#> 6280                                <NA>          NA         Primary
#> 6281                                <NA>          NA       Secondary
#> 6282                                <NA>          NA         Special
#> 6283                              Halton         876         Primary
#> 6284                              Halton         876       Secondary
#> 6285                              Halton         876         Special
#> 6286                          Warrington         877         Primary
#> 6287                          Warrington         877       Secondary
#> 6288                          Warrington         877         Special
#> 6289               Blackburn with Darwen         889         Primary
#> 6290               Blackburn with Darwen         889       Secondary
#> 6291               Blackburn with Darwen         889         Special
#> 6292                           Blackpool         890         Primary
#> 6293                           Blackpool         890       Secondary
#> 6294                           Blackpool         890         Special
#> 6295                       Cheshire East         895         Primary
#> 6296                       Cheshire East         895       Secondary
#> 6297                       Cheshire East         895         Special
#> 6298           Cheshire West and Chester         896         Primary
#> 6299           Cheshire West and Chester         896       Secondary
#> 6300           Cheshire West and Chester         896         Special
#> 6301                          Cumberland         942         Primary
#> 6302                          Cumberland         942       Secondary
#> 6303                          Cumberland         942         Special
#> 6304             Westmorland and Furness         943         Primary
#> 6305             Westmorland and Furness         943       Secondary
#> 6306             Westmorland and Furness         943         Special
#> 6307                              Bolton         350         Primary
#> 6308                              Bolton         350       Secondary
#> 6309                              Bolton         350         Special
#> 6310                                Bury         351         Primary
#> 6311                                Bury         351       Secondary
#> 6312                                Bury         351         Special
#> 6313                          Manchester         352         Primary
#> 6314                          Manchester         352       Secondary
#> 6315                          Manchester         352         Special
#> 6316                              Oldham         353         Primary
#> 6317                              Oldham         353       Secondary
#> 6318                              Oldham         353         Special
#> 6319                            Rochdale         354         Primary
#> 6320                            Rochdale         354       Secondary
#> 6321                            Rochdale         354         Special
#> 6322                             Salford         355         Primary
#> 6323                             Salford         355       Secondary
#> 6324                             Salford         355         Special
#> 6325                           Stockport         356         Primary
#> 6326                           Stockport         356       Secondary
#> 6327                           Stockport         356         Special
#> 6328                            Tameside         357         Primary
#> 6329                            Tameside         357       Secondary
#> 6330                            Tameside         357         Special
#> 6331                            Trafford         358         Primary
#> 6332                            Trafford         358       Secondary
#> 6333                            Trafford         358         Special
#> 6334                               Wigan         359         Primary
#> 6335                               Wigan         359       Secondary
#> 6336                               Wigan         359         Special
#> 6337                            Knowsley         340         Primary
#> 6338                            Knowsley         340       Secondary
#> 6339                            Knowsley         340         Special
#> 6340                           Liverpool         341         Primary
#> 6341                           Liverpool         341       Secondary
#> 6342                           Liverpool         341         Special
#> 6343                          St. Helens         342         Primary
#> 6344                          St. Helens         342       Secondary
#> 6345                          St. Helens         342         Special
#> 6346                              Sefton         343         Primary
#> 6347                              Sefton         343       Secondary
#> 6348                              Sefton         343         Special
#> 6349                              Wirral         344         Primary
#> 6350                              Wirral         344       Secondary
#> 6351                              Wirral         344         Special
#> 6352                          Lancashire         888         Primary
#> 6353                          Lancashire         888       Secondary
#> 6354                          Lancashire         888         Special
#> 6355                                <NA>          NA     All schools
#> 6356                                <NA>          NA         Primary
#> 6357                                <NA>          NA       Secondary
#> 6358                                <NA>          NA         Special
#> 6359         Kingston upon Hull, City of         810         Primary
#> 6360         Kingston upon Hull, City of         810       Secondary
#> 6361         Kingston upon Hull, City of         810         Special
#> 6362            East Riding of Yorkshire         811         Primary
#> 6363            East Riding of Yorkshire         811       Secondary
#> 6364            East Riding of Yorkshire         811         Special
#> 6365             North East Lincolnshire         812         Primary
#> 6366             North East Lincolnshire         812       Secondary
#> 6367             North East Lincolnshire         812         Special
#> 6368                  North Lincolnshire         813         Primary
#> 6369                  North Lincolnshire         813       Secondary
#> 6370                  North Lincolnshire         813         Special
#> 6371                                York         816         Primary
#> 6372                                York         816       Secondary
#> 6373                                York         816         Special
#> 6374                     North Yorkshire         815         Primary
#> 6375                     North Yorkshire         815       Secondary
#> 6376                     North Yorkshire         815         Special
#> 6377                            Barnsley         370         Primary
#> 6378                            Barnsley         370       Secondary
#> 6379                            Barnsley         370         Special
#> 6380                           Doncaster         371         Primary
#> 6381                           Doncaster         371       Secondary
#> 6382                           Doncaster         371         Special
#> 6383                           Rotherham         372         Primary
#> 6384                           Rotherham         372       Secondary
#> 6385                           Rotherham         372         Special
#> 6386                           Sheffield         373         Primary
#> 6387                           Sheffield         373       Secondary
#> 6388                           Sheffield         373         Special
#> 6389                            Bradford         380         Primary
#> 6390                            Bradford         380       Secondary
#> 6391                            Bradford         380         Special
#> 6392                          Calderdale         381         Primary
#> 6393                          Calderdale         381       Secondary
#> 6394                          Calderdale         381         Special
#> 6395                            Kirklees         382         Primary
#> 6396                            Kirklees         382       Secondary
#> 6397                            Kirklees         382         Special
#> 6398                               Leeds         383         Primary
#> 6399                               Leeds         383       Secondary
#> 6400                               Leeds         383         Special
#> 6401                           Wakefield         384         Primary
#> 6402                           Wakefield         384       Secondary
#> 6403                           Wakefield         384         Special
#> 6404                                <NA>          NA     All schools
#> 6405                                <NA>          NA         Primary
#> 6406                                <NA>          NA       Secondary
#> 6407                                <NA>          NA         Special
#> 6408                               Derby         831         Primary
#> 6409                               Derby         831       Secondary
#> 6410                               Derby         831         Special
#> 6411                           Leicester         856         Primary
#> 6412                           Leicester         856       Secondary
#> 6413                           Leicester         856         Special
#> 6414                             Rutland         857         Primary
#> 6415                             Rutland         857       Secondary
#> 6416                          Nottingham         892         Primary
#> 6417                          Nottingham         892       Secondary
#> 6418                          Nottingham         892         Special
#> 6419              North Northamptonshire         940         Primary
#> 6420              North Northamptonshire         940       Secondary
#> 6421              North Northamptonshire         940         Special
#> 6422               West Northamptonshire         941         Primary
#> 6423               West Northamptonshire         941       Secondary
#> 6424               West Northamptonshire         941         Special
#> 6425                          Derbyshire         830         Primary
#> 6426                          Derbyshire         830       Secondary
#> 6427                          Derbyshire         830         Special
#> 6428                      Leicestershire         855         Primary
#> 6429                      Leicestershire         855       Secondary
#> 6430                      Leicestershire         855         Special
#> 6431                        Lincolnshire         925         Primary
#> 6432                        Lincolnshire         925       Secondary
#> 6433                        Lincolnshire         925         Special
#> 6434                     Nottinghamshire         891         Primary
#> 6435                     Nottinghamshire         891       Secondary
#> 6436                     Nottinghamshire         891         Special
#> 6437                                <NA>          NA     All schools
#> 6438                                <NA>          NA         Primary
#> 6439                                <NA>          NA       Secondary
#> 6440                                <NA>          NA         Special
#> 6441            Herefordshire, County of         884         Primary
#> 6442            Herefordshire, County of         884       Secondary
#> 6443            Herefordshire, County of         884         Special
#> 6444                  Telford and Wrekin         894         Primary
#> 6445                  Telford and Wrekin         894       Secondary
#> 6446                  Telford and Wrekin         894         Special
#> 6447                      Stoke-on-Trent         861         Primary
#> 6448                      Stoke-on-Trent         861       Secondary
#> 6449                      Stoke-on-Trent         861         Special
#> 6450                          Shropshire         893         Primary
#> 6451                          Shropshire         893       Secondary
#> 6452                          Shropshire         893         Special
#> 6453                          Birmingham         330         Primary
#> 6454                          Birmingham         330       Secondary
#> 6455                          Birmingham         330         Special
#> 6456                            Coventry         331         Primary
#> 6457                            Coventry         331       Secondary
#> 6458                            Coventry         331         Special
#> 6459                              Dudley         332         Primary
#> 6460                              Dudley         332       Secondary
#> 6461                              Dudley         332         Special
#> 6462                            Sandwell         333         Primary
#> 6463                            Sandwell         333       Secondary
#> 6464                            Sandwell         333         Special
#> 6465                            Solihull         334         Primary
#> 6466                            Solihull         334       Secondary
#> 6467                            Solihull         334         Special
#> 6468                             Walsall         335         Primary
#> 6469                             Walsall         335       Secondary
#> 6470                             Walsall         335         Special
#> 6471                       Wolverhampton         336         Primary
#> 6472                       Wolverhampton         336       Secondary
#> 6473                       Wolverhampton         336         Special
#> 6474                       Staffordshire         860         Primary
#> 6475                       Staffordshire         860       Secondary
#> 6476                       Staffordshire         860         Special
#> 6477                        Warwickshire         937         Primary
#> 6478                        Warwickshire         937       Secondary
#> 6479                        Warwickshire         937         Special
#> 6480                      Worcestershire         885         Primary
#> 6481                      Worcestershire         885       Secondary
#> 6482                      Worcestershire         885         Special
#> 6483                                <NA>          NA     All schools
#> 6484                                <NA>          NA         Primary
#> 6485                                <NA>          NA       Secondary
#> 6486                                <NA>          NA         Special
#> 6487                        Peterborough         874         Primary
#> 6488                        Peterborough         874       Secondary
#> 6489                        Peterborough         874         Special
#> 6490                               Luton         821         Primary
#> 6491                               Luton         821       Secondary
#> 6492                               Luton         821         Special
#> 6493                     Southend-on-Sea         882         Primary
#> 6494                     Southend-on-Sea         882       Secondary
#> 6495                     Southend-on-Sea         882         Special
#> 6496                            Thurrock         883         Primary
#> 6497                            Thurrock         883       Secondary
#> 6498                            Thurrock         883         Special
#> 6499                             Bedford         822         Primary
#> 6500                             Bedford         822       Secondary
#> 6501                             Bedford         822         Special
#> 6502                Central Bedfordshire         823         Primary
#> 6503                Central Bedfordshire         823       Secondary
#> 6504                Central Bedfordshire         823         Special
#> 6505                      Cambridgeshire         873         Primary
#> 6506                      Cambridgeshire         873       Secondary
#> 6507                      Cambridgeshire         873         Special
#> 6508                               Essex         881         Primary
#> 6509                               Essex         881       Secondary
#> 6510                               Essex         881         Special
#> 6511                       Hertfordshire         919         Primary
#> 6512                       Hertfordshire         919       Secondary
#> 6513                       Hertfordshire         919         Special
#> 6514                             Norfolk         926         Primary
#> 6515                             Norfolk         926       Secondary
#> 6516                             Norfolk         926         Special
#> 6517                             Suffolk         935         Primary
#> 6518                             Suffolk         935       Secondary
#> 6519                             Suffolk         935         Special
#> 6520                                <NA>          NA     All schools
#> 6521                                <NA>          NA         Primary
#> 6522                                <NA>          NA       Secondary
#> 6523                                <NA>          NA         Special
#> 6524                      City of London         201         Primary
#> 6525                Barking and Dagenham         301         Primary
#> 6526                Barking and Dagenham         301       Secondary
#> 6527                Barking and Dagenham         301         Special
#> 6528                              Barnet         302         Primary
#> 6529                              Barnet         302       Secondary
#> 6530                              Barnet         302         Special
#> 6531                              Bexley         303         Primary
#> 6532                              Bexley         303       Secondary
#> 6533                              Bexley         303         Special
#> 6534                               Brent         304         Primary
#> 6535                               Brent         304       Secondary
#> 6536                               Brent         304         Special
#> 6537                             Bromley         305         Primary
#> 6538                             Bromley         305       Secondary
#> 6539                             Bromley         305         Special
#> 6540                              Camden         202         Primary
#> 6541                              Camden         202       Secondary
#> 6542                              Camden         202         Special
#> 6543                             Croydon         306         Primary
#> 6544                             Croydon         306       Secondary
#> 6545                             Croydon         306         Special
#> 6546                              Ealing         307         Primary
#> 6547                              Ealing         307       Secondary
#> 6548                              Ealing         307         Special
#> 6549                             Enfield         308         Primary
#> 6550                             Enfield         308       Secondary
#> 6551                             Enfield         308         Special
#> 6552                           Greenwich         203         Primary
#> 6553                           Greenwich         203       Secondary
#> 6554                           Greenwich         203         Special
#> 6555                             Hackney         204         Primary
#> 6556                             Hackney         204       Secondary
#> 6557                             Hackney         204         Special
#> 6558              Hammersmith and Fulham         205         Primary
#> 6559              Hammersmith and Fulham         205       Secondary
#> 6560              Hammersmith and Fulham         205         Special
#> 6561                            Haringey         309         Primary
#> 6562                            Haringey         309       Secondary
#> 6563                            Haringey         309         Special
#> 6564                              Harrow         310         Primary
#> 6565                              Harrow         310       Secondary
#> 6566                              Harrow         310         Special
#> 6567                            Havering         311         Primary
#> 6568                            Havering         311       Secondary
#> 6569                            Havering         311         Special
#> 6570                          Hillingdon         312         Primary
#> 6571                          Hillingdon         312       Secondary
#> 6572                          Hillingdon         312         Special
#> 6573                            Hounslow         313         Primary
#> 6574                            Hounslow         313       Secondary
#> 6575                            Hounslow         313         Special
#> 6576                           Islington         206         Primary
#> 6577                           Islington         206       Secondary
#> 6578                           Islington         206         Special
#> 6579              Kensington and Chelsea         207         Primary
#> 6580              Kensington and Chelsea         207       Secondary
#> 6581              Kensington and Chelsea         207         Special
#> 6582                Kingston upon Thames         314         Primary
#> 6583                Kingston upon Thames         314       Secondary
#> 6584                Kingston upon Thames         314         Special
#> 6585                             Lambeth         208         Primary
#> 6586                             Lambeth         208       Secondary
#> 6587                             Lambeth         208         Special
#> 6588                            Lewisham         209         Primary
#> 6589                            Lewisham         209       Secondary
#> 6590                            Lewisham         209         Special
#> 6591                              Merton         315         Primary
#> 6592                              Merton         315       Secondary
#> 6593                              Merton         315         Special
#> 6594                              Newham         316         Primary
#> 6595                              Newham         316       Secondary
#> 6596                              Newham         316         Special
#> 6597                           Redbridge         317         Primary
#> 6598                           Redbridge         317       Secondary
#> 6599                           Redbridge         317         Special
#> 6600                Richmond upon Thames         318         Primary
#> 6601                Richmond upon Thames         318       Secondary
#> 6602                Richmond upon Thames         318         Special
#> 6603                           Southwark         210         Primary
#> 6604                           Southwark         210       Secondary
#> 6605                           Southwark         210         Special
#> 6606                              Sutton         319         Primary
#> 6607                              Sutton         319       Secondary
#> 6608                              Sutton         319         Special
#> 6609                       Tower Hamlets         211         Primary
#> 6610                       Tower Hamlets         211       Secondary
#> 6611                       Tower Hamlets         211         Special
#> 6612                      Waltham Forest         320         Primary
#> 6613                      Waltham Forest         320       Secondary
#> 6614                      Waltham Forest         320         Special
#> 6615                          Wandsworth         212         Primary
#> 6616                          Wandsworth         212       Secondary
#> 6617                          Wandsworth         212         Special
#> 6618                         Westminster         213         Primary
#> 6619                         Westminster         213       Secondary
#> 6620                         Westminster         213         Special
#> 6621                                <NA>          NA     All schools
#> 6622                                <NA>          NA         Primary
#> 6623                                <NA>          NA       Secondary
#> 6624                                <NA>          NA         Special
#> 6625                              Medway         887         Primary
#> 6626                              Medway         887       Secondary
#> 6627                              Medway         887         Special
#> 6628                    Bracknell Forest         867         Primary
#> 6629                    Bracknell Forest         867       Secondary
#> 6630                    Bracknell Forest         867         Special
#> 6631                      West Berkshire         869         Primary
#> 6632                      West Berkshire         869       Secondary
#> 6633                      West Berkshire         869         Special
#> 6634                             Reading         870         Primary
#> 6635                             Reading         870       Secondary
#> 6636                             Reading         870         Special
#> 6637                              Slough         871         Primary
#> 6638                              Slough         871       Secondary
#> 6639                              Slough         871         Special
#> 6640              Windsor and Maidenhead         868         Primary
#> 6641              Windsor and Maidenhead         868       Secondary
#> 6642              Windsor and Maidenhead         868         Special
#> 6643                           Wokingham         872         Primary
#> 6644                           Wokingham         872       Secondary
#> 6645                           Wokingham         872         Special
#> 6646                       Milton Keynes         826         Primary
#> 6647                       Milton Keynes         826       Secondary
#> 6648                       Milton Keynes         826         Special
#> 6649                   Brighton and Hove         846         Primary
#> 6650                   Brighton and Hove         846       Secondary
#> 6651                   Brighton and Hove         846         Special
#> 6652                          Portsmouth         851         Primary
#> 6653                          Portsmouth         851       Secondary
#> 6654                          Portsmouth         851         Special
#> 6655                         Southampton         852         Primary
#> 6656                         Southampton         852       Secondary
#> 6657                         Southampton         852         Special
#> 6658                       Isle of Wight         921         Primary
#> 6659                       Isle of Wight         921       Secondary
#> 6660                       Isle of Wight         921         Special
#> 6661                     Buckinghamshire         825         Primary
#> 6662                     Buckinghamshire         825       Secondary
#> 6663                     Buckinghamshire         825         Special
#> 6664                         East Sussex         845         Primary
#> 6665                         East Sussex         845       Secondary
#> 6666                         East Sussex         845         Special
#> 6667                           Hampshire         850         Primary
#> 6668                           Hampshire         850       Secondary
#> 6669                           Hampshire         850         Special
#> 6670                                Kent         886         Primary
#> 6671                                Kent         886       Secondary
#> 6672                                Kent         886         Special
#> 6673                         Oxfordshire         931         Primary
#> 6674                         Oxfordshire         931       Secondary
#> 6675                         Oxfordshire         931         Special
#> 6676                              Surrey         936         Primary
#> 6677                              Surrey         936       Secondary
#> 6678                              Surrey         936         Special
#> 6679                         West Sussex         938         Primary
#> 6680                         West Sussex         938       Secondary
#> 6681                         West Sussex         938         Special
#> 6682                                <NA>          NA     All schools
#> 6683                                <NA>          NA         Primary
#> 6684                                <NA>          NA       Secondary
#> 6685                                <NA>          NA         Special
#> 6686        Bath and North East Somerset         800         Primary
#> 6687        Bath and North East Somerset         800       Secondary
#> 6688        Bath and North East Somerset         800         Special
#> 6689                    Bristol, City of         801         Primary
#> 6690                    Bristol, City of         801       Secondary
#> 6691                    Bristol, City of         801         Special
#> 6692                      North Somerset         802         Primary
#> 6693                      North Somerset         802       Secondary
#> 6694                      North Somerset         802         Special
#> 6695               South Gloucestershire         803         Primary
#> 6696               South Gloucestershire         803       Secondary
#> 6697               South Gloucestershire         803         Special
#> 6698                            Plymouth         879         Primary
#> 6699                            Plymouth         879       Secondary
#> 6700                            Plymouth         879         Special
#> 6701                              Torbay         880         Primary
#> 6702                              Torbay         880       Secondary
#> 6703                              Torbay         880         Special
#> 6704                             Swindon         866         Primary
#> 6705                             Swindon         866       Secondary
#> 6706                             Swindon         866         Special
#> 6707                            Cornwall         908         Primary
#> 6708                            Cornwall         908       Secondary
#> 6709                            Cornwall         908         Special
#> 6710                     Isles of Scilly         420       Secondary
#> 6711                           Wiltshire         865         Primary
#> 6712                           Wiltshire         865       Secondary
#> 6713                           Wiltshire         865         Special
#> 6714 Bournemouth, Christchurch and Poole         839         Primary
#> 6715 Bournemouth, Christchurch and Poole         839       Secondary
#> 6716 Bournemouth, Christchurch and Poole         839         Special
#> 6717                              Dorset         838         Primary
#> 6718                              Dorset         838       Secondary
#> 6719                              Dorset         838         Special
#> 6720                            Somerset         933         Primary
#> 6721                            Somerset         933       Secondary
#> 6722                            Somerset         933         Special
#> 6723                               Devon         878         Primary
#> 6724                               Devon         878       Secondary
#> 6725                               Devon         878         Special
#> 6726                     Gloucestershire         916         Primary
#> 6727                     Gloucestershire         916       Secondary
#> 6728                     Gloucestershire         916         Special
#> 6729                                <NA>          NA     All schools
#> 6730                                <NA>          NA         Primary
#> 6731                                <NA>          NA       Secondary
#> 6732                                <NA>          NA         Special
#> 6733                                <NA>          NA     All schools
#> 6734                                <NA>          NA         Primary
#> 6735                                <NA>          NA       Secondary
#> 6736                                <NA>          NA         Special
#> 6737                          Hartlepool         805         Primary
#> 6738                          Hartlepool         805       Secondary
#> 6739                          Hartlepool         805         Special
#> 6740                       Middlesbrough         806         Primary
#> 6741                       Middlesbrough         806       Secondary
#> 6742                       Middlesbrough         806         Special
#> 6743                Redcar and Cleveland         807         Primary
#> 6744                Redcar and Cleveland         807       Secondary
#> 6745                Redcar and Cleveland         807         Special
#> 6746                    Stockton-on-Tees         808         Primary
#> 6747                    Stockton-on-Tees         808       Secondary
#> 6748                    Stockton-on-Tees         808         Special
#> 6749                          Darlington         841         Primary
#> 6750                          Darlington         841       Secondary
#> 6751                          Darlington         841         Special
#> 6752                       County Durham         840         Primary
#> 6753                       County Durham         840       Secondary
#> 6754                       County Durham         840         Special
#> 6755                      Northumberland         929         Primary
#> 6756                      Northumberland         929       Secondary
#> 6757                      Northumberland         929         Special
#> 6758                 Newcastle upon Tyne         391         Primary
#> 6759                 Newcastle upon Tyne         391       Secondary
#> 6760                 Newcastle upon Tyne         391         Special
#> 6761                      North Tyneside         392         Primary
#> 6762                      North Tyneside         392       Secondary
#> 6763                      North Tyneside         392         Special
#> 6764                      South Tyneside         393         Primary
#> 6765                      South Tyneside         393       Secondary
#> 6766                      South Tyneside         393         Special
#> 6767                          Sunderland         394         Primary
#> 6768                          Sunderland         394       Secondary
#> 6769                          Sunderland         394         Special
#> 6770                           Gateshead         390         Primary
#> 6771                           Gateshead         390       Secondary
#> 6772                           Gateshead         390         Special
#> 6773                                <NA>          NA     All schools
#> 6774                                <NA>          NA         Primary
#> 6775                                <NA>          NA       Secondary
#> 6776                                <NA>          NA         Special
#> 6777                              Halton         876         Primary
#> 6778                              Halton         876       Secondary
#> 6779                              Halton         876         Special
#> 6780                          Warrington         877         Primary
#> 6781                          Warrington         877       Secondary
#> 6782                          Warrington         877         Special
#> 6783               Blackburn with Darwen         889         Primary
#> 6784               Blackburn with Darwen         889       Secondary
#> 6785               Blackburn with Darwen         889         Special
#> 6786                           Blackpool         890         Primary
#> 6787                           Blackpool         890       Secondary
#> 6788                           Blackpool         890         Special
#> 6789                       Cheshire East         895         Primary
#> 6790                       Cheshire East         895       Secondary
#> 6791                       Cheshire East         895         Special
#> 6792           Cheshire West and Chester         896         Primary
#> 6793           Cheshire West and Chester         896       Secondary
#> 6794           Cheshire West and Chester         896         Special
#> 6795                          Cumberland         942         Primary
#> 6796                          Cumberland         942       Secondary
#> 6797                          Cumberland         942         Special
#> 6798             Westmorland and Furness         943         Primary
#> 6799             Westmorland and Furness         943       Secondary
#> 6800             Westmorland and Furness         943         Special
#> 6801                              Bolton         350         Primary
#> 6802                              Bolton         350       Secondary
#> 6803                              Bolton         350         Special
#> 6804                                Bury         351         Primary
#> 6805                                Bury         351       Secondary
#> 6806                                Bury         351         Special
#> 6807                          Manchester         352         Primary
#> 6808                          Manchester         352       Secondary
#> 6809                          Manchester         352         Special
#> 6810                              Oldham         353         Primary
#> 6811                              Oldham         353       Secondary
#> 6812                              Oldham         353         Special
#> 6813                            Rochdale         354         Primary
#> 6814                            Rochdale         354       Secondary
#> 6815                            Rochdale         354         Special
#> 6816                             Salford         355         Primary
#> 6817                             Salford         355       Secondary
#> 6818                             Salford         355         Special
#> 6819                           Stockport         356         Primary
#> 6820                           Stockport         356       Secondary
#> 6821                           Stockport         356         Special
#> 6822                            Tameside         357         Primary
#> 6823                            Tameside         357       Secondary
#> 6824                            Tameside         357         Special
#> 6825                            Trafford         358         Primary
#> 6826                            Trafford         358       Secondary
#> 6827                            Trafford         358         Special
#> 6828                               Wigan         359         Primary
#> 6829                               Wigan         359       Secondary
#> 6830                               Wigan         359         Special
#> 6831                            Knowsley         340         Primary
#> 6832                            Knowsley         340       Secondary
#> 6833                            Knowsley         340         Special
#> 6834                           Liverpool         341         Primary
#> 6835                           Liverpool         341       Secondary
#> 6836                           Liverpool         341         Special
#> 6837                          St. Helens         342         Primary
#> 6838                          St. Helens         342       Secondary
#> 6839                          St. Helens         342         Special
#> 6840                              Sefton         343         Primary
#> 6841                              Sefton         343       Secondary
#> 6842                              Sefton         343         Special
#> 6843                              Wirral         344         Primary
#> 6844                              Wirral         344       Secondary
#> 6845                              Wirral         344         Special
#> 6846                          Lancashire         888         Primary
#> 6847                          Lancashire         888       Secondary
#> 6848                          Lancashire         888         Special
#> 6849                                <NA>          NA     All schools
#> 6850                                <NA>          NA         Primary
#> 6851                                <NA>          NA       Secondary
#> 6852                                <NA>          NA         Special
#> 6853         Kingston upon Hull, City of         810         Primary
#> 6854         Kingston upon Hull, City of         810       Secondary
#> 6855         Kingston upon Hull, City of         810         Special
#> 6856            East Riding of Yorkshire         811         Primary
#> 6857            East Riding of Yorkshire         811       Secondary
#> 6858            East Riding of Yorkshire         811         Special
#> 6859             North East Lincolnshire         812         Primary
#> 6860             North East Lincolnshire         812       Secondary
#> 6861             North East Lincolnshire         812         Special
#> 6862                  North Lincolnshire         813         Primary
#> 6863                  North Lincolnshire         813       Secondary
#> 6864                  North Lincolnshire         813         Special
#> 6865                                York         816         Primary
#> 6866                                York         816       Secondary
#> 6867                                York         816         Special
#> 6868                     North Yorkshire         815         Primary
#> 6869                     North Yorkshire         815       Secondary
#> 6870                     North Yorkshire         815         Special
#> 6871                            Barnsley         370         Primary
#> 6872                            Barnsley         370       Secondary
#> 6873                            Barnsley         370         Special
#> 6874                           Doncaster         371         Primary
#> 6875                           Doncaster         371       Secondary
#> 6876                           Doncaster         371         Special
#> 6877                           Rotherham         372         Primary
#> 6878                           Rotherham         372       Secondary
#> 6879                           Rotherham         372         Special
#> 6880                           Sheffield         373         Primary
#> 6881                           Sheffield         373       Secondary
#> 6882                           Sheffield         373         Special
#> 6883                            Bradford         380         Primary
#> 6884                            Bradford         380       Secondary
#> 6885                            Bradford         380         Special
#> 6886                          Calderdale         381         Primary
#> 6887                          Calderdale         381       Secondary
#> 6888                          Calderdale         381         Special
#> 6889                            Kirklees         382         Primary
#> 6890                            Kirklees         382       Secondary
#> 6891                            Kirklees         382         Special
#> 6892                               Leeds         383         Primary
#> 6893                               Leeds         383       Secondary
#> 6894                               Leeds         383         Special
#> 6895                           Wakefield         384         Primary
#> 6896                           Wakefield         384       Secondary
#> 6897                           Wakefield         384         Special
#> 6898                                <NA>          NA     All schools
#> 6899                                <NA>          NA         Primary
#> 6900                                <NA>          NA       Secondary
#> 6901                                <NA>          NA         Special
#> 6902                               Derby         831         Primary
#> 6903                               Derby         831       Secondary
#> 6904                               Derby         831         Special
#> 6905                           Leicester         856         Primary
#> 6906                           Leicester         856       Secondary
#> 6907                           Leicester         856         Special
#> 6908                             Rutland         857         Primary
#> 6909                             Rutland         857       Secondary
#> 6910                          Nottingham         892         Primary
#> 6911                          Nottingham         892       Secondary
#> 6912                          Nottingham         892         Special
#> 6913              North Northamptonshire         940         Primary
#> 6914              North Northamptonshire         940       Secondary
#> 6915              North Northamptonshire         940         Special
#> 6916               West Northamptonshire         941         Primary
#> 6917               West Northamptonshire         941       Secondary
#> 6918               West Northamptonshire         941         Special
#> 6919                          Derbyshire         830         Primary
#> 6920                          Derbyshire         830       Secondary
#> 6921                          Derbyshire         830         Special
#> 6922                      Leicestershire         855         Primary
#> 6923                      Leicestershire         855       Secondary
#> 6924                      Leicestershire         855         Special
#> 6925                        Lincolnshire         925         Primary
#> 6926                        Lincolnshire         925       Secondary
#> 6927                        Lincolnshire         925         Special
#> 6928                     Nottinghamshire         891         Primary
#> 6929                     Nottinghamshire         891       Secondary
#> 6930                     Nottinghamshire         891         Special
#> 6931                                <NA>          NA     All schools
#> 6932                                <NA>          NA         Primary
#> 6933                                <NA>          NA       Secondary
#> 6934                                <NA>          NA         Special
#> 6935            Herefordshire, County of         884         Primary
#> 6936            Herefordshire, County of         884       Secondary
#> 6937            Herefordshire, County of         884         Special
#> 6938                  Telford and Wrekin         894         Primary
#> 6939                  Telford and Wrekin         894       Secondary
#> 6940                  Telford and Wrekin         894         Special
#> 6941                      Stoke-on-Trent         861         Primary
#> 6942                      Stoke-on-Trent         861       Secondary
#> 6943                      Stoke-on-Trent         861         Special
#> 6944                          Shropshire         893         Primary
#> 6945                          Shropshire         893       Secondary
#> 6946                          Shropshire         893         Special
#> 6947                          Birmingham         330         Primary
#> 6948                          Birmingham         330       Secondary
#> 6949                          Birmingham         330         Special
#> 6950                            Coventry         331         Primary
#> 6951                            Coventry         331       Secondary
#> 6952                            Coventry         331         Special
#> 6953                              Dudley         332         Primary
#> 6954                              Dudley         332       Secondary
#> 6955                              Dudley         332         Special
#> 6956                            Sandwell         333         Primary
#> 6957                            Sandwell         333       Secondary
#> 6958                            Sandwell         333         Special
#> 6959                            Solihull         334         Primary
#> 6960                            Solihull         334       Secondary
#> 6961                            Solihull         334         Special
#> 6962                             Walsall         335         Primary
#> 6963                             Walsall         335       Secondary
#> 6964                             Walsall         335         Special
#> 6965                       Wolverhampton         336         Primary
#> 6966                       Wolverhampton         336       Secondary
#> 6967                       Wolverhampton         336         Special
#> 6968                       Staffordshire         860         Primary
#> 6969                       Staffordshire         860       Secondary
#> 6970                       Staffordshire         860         Special
#> 6971                        Warwickshire         937         Primary
#> 6972                        Warwickshire         937       Secondary
#> 6973                        Warwickshire         937         Special
#> 6974                      Worcestershire         885         Primary
#> 6975                      Worcestershire         885       Secondary
#> 6976                      Worcestershire         885         Special
#> 6977                                <NA>          NA     All schools
#> 6978                                <NA>          NA         Primary
#> 6979                                <NA>          NA       Secondary
#> 6980                                <NA>          NA         Special
#> 6981                        Peterborough         874         Primary
#> 6982                        Peterborough         874       Secondary
#> 6983                        Peterborough         874         Special
#> 6984                               Luton         821         Primary
#> 6985                               Luton         821       Secondary
#> 6986                               Luton         821         Special
#> 6987                     Southend-on-Sea         882         Primary
#> 6988                     Southend-on-Sea         882       Secondary
#> 6989                     Southend-on-Sea         882         Special
#> 6990                            Thurrock         883         Primary
#> 6991                            Thurrock         883       Secondary
#> 6992                            Thurrock         883         Special
#> 6993                             Bedford         822         Primary
#> 6994                             Bedford         822       Secondary
#> 6995                             Bedford         822         Special
#> 6996                Central Bedfordshire         823         Primary
#> 6997                Central Bedfordshire         823       Secondary
#> 6998                Central Bedfordshire         823         Special
#> 6999                      Cambridgeshire         873         Primary
#> 7000                      Cambridgeshire         873       Secondary
#> 7001                      Cambridgeshire         873         Special
#> 7002                               Essex         881         Primary
#> 7003                               Essex         881       Secondary
#> 7004                               Essex         881         Special
#> 7005                       Hertfordshire         919         Primary
#> 7006                       Hertfordshire         919       Secondary
#> 7007                       Hertfordshire         919         Special
#> 7008                             Norfolk         926         Primary
#> 7009                             Norfolk         926       Secondary
#> 7010                             Norfolk         926         Special
#> 7011                             Suffolk         935         Primary
#> 7012                             Suffolk         935       Secondary
#> 7013                             Suffolk         935         Special
#> 7014                                <NA>          NA     All schools
#> 7015                                <NA>          NA         Primary
#> 7016                                <NA>          NA       Secondary
#> 7017                                <NA>          NA         Special
#> 7018                      City of London         201         Primary
#> 7019                Barking and Dagenham         301         Primary
#> 7020                Barking and Dagenham         301       Secondary
#> 7021                Barking and Dagenham         301         Special
#> 7022                              Barnet         302         Primary
#> 7023                              Barnet         302       Secondary
#> 7024                              Barnet         302         Special
#> 7025                              Bexley         303         Primary
#> 7026                              Bexley         303       Secondary
#> 7027                              Bexley         303         Special
#> 7028                               Brent         304         Primary
#> 7029                               Brent         304       Secondary
#> 7030                               Brent         304         Special
#> 7031                             Bromley         305         Primary
#> 7032                             Bromley         305       Secondary
#> 7033                             Bromley         305         Special
#> 7034                              Camden         202         Primary
#> 7035                              Camden         202       Secondary
#> 7036                              Camden         202         Special
#> 7037                             Croydon         306         Primary
#> 7038                             Croydon         306       Secondary
#> 7039                             Croydon         306         Special
#> 7040                              Ealing         307         Primary
#> 7041                              Ealing         307       Secondary
#> 7042                              Ealing         307         Special
#> 7043                             Enfield         308         Primary
#> 7044                             Enfield         308       Secondary
#> 7045                             Enfield         308         Special
#> 7046                           Greenwich         203         Primary
#> 7047                           Greenwich         203       Secondary
#> 7048                           Greenwich         203         Special
#> 7049                             Hackney         204         Primary
#> 7050                             Hackney         204       Secondary
#> 7051                             Hackney         204         Special
#> 7052              Hammersmith and Fulham         205         Primary
#> 7053              Hammersmith and Fulham         205       Secondary
#> 7054              Hammersmith and Fulham         205         Special
#> 7055                            Haringey         309         Primary
#> 7056                            Haringey         309       Secondary
#> 7057                            Haringey         309         Special
#> 7058                              Harrow         310         Primary
#> 7059                              Harrow         310       Secondary
#> 7060                              Harrow         310         Special
#> 7061                            Havering         311         Primary
#> 7062                            Havering         311       Secondary
#> 7063                            Havering         311         Special
#> 7064                          Hillingdon         312         Primary
#> 7065                          Hillingdon         312       Secondary
#> 7066                          Hillingdon         312         Special
#> 7067                            Hounslow         313         Primary
#> 7068                            Hounslow         313       Secondary
#> 7069                            Hounslow         313         Special
#> 7070                           Islington         206         Primary
#> 7071                           Islington         206       Secondary
#> 7072                           Islington         206         Special
#> 7073              Kensington and Chelsea         207         Primary
#> 7074              Kensington and Chelsea         207       Secondary
#> 7075              Kensington and Chelsea         207         Special
#> 7076                Kingston upon Thames         314         Primary
#> 7077                Kingston upon Thames         314       Secondary
#> 7078                Kingston upon Thames         314         Special
#> 7079                             Lambeth         208         Primary
#> 7080                             Lambeth         208       Secondary
#> 7081                             Lambeth         208         Special
#> 7082                            Lewisham         209         Primary
#> 7083                            Lewisham         209       Secondary
#> 7084                            Lewisham         209         Special
#> 7085                              Merton         315         Primary
#> 7086                              Merton         315       Secondary
#> 7087                              Merton         315         Special
#> 7088                              Newham         316         Primary
#> 7089                              Newham         316       Secondary
#> 7090                              Newham         316         Special
#> 7091                           Redbridge         317         Primary
#> 7092                           Redbridge         317       Secondary
#> 7093                           Redbridge         317         Special
#> 7094                Richmond upon Thames         318         Primary
#> 7095                Richmond upon Thames         318       Secondary
#> 7096                Richmond upon Thames         318         Special
#> 7097                           Southwark         210         Primary
#> 7098                           Southwark         210       Secondary
#> 7099                           Southwark         210         Special
#> 7100                              Sutton         319         Primary
#> 7101                              Sutton         319       Secondary
#> 7102                              Sutton         319         Special
#> 7103                       Tower Hamlets         211         Primary
#> 7104                       Tower Hamlets         211       Secondary
#> 7105                       Tower Hamlets         211         Special
#> 7106                      Waltham Forest         320         Primary
#> 7107                      Waltham Forest         320       Secondary
#> 7108                      Waltham Forest         320         Special
#> 7109                          Wandsworth         212         Primary
#> 7110                          Wandsworth         212       Secondary
#> 7111                          Wandsworth         212         Special
#> 7112                         Westminster         213         Primary
#> 7113                         Westminster         213       Secondary
#> 7114                         Westminster         213         Special
#> 7115                                <NA>          NA     All schools
#> 7116                                <NA>          NA         Primary
#> 7117                                <NA>          NA       Secondary
#> 7118                                <NA>          NA         Special
#> 7119                              Medway         887         Primary
#> 7120                              Medway         887       Secondary
#> 7121                              Medway         887         Special
#> 7122                    Bracknell Forest         867         Primary
#> 7123                    Bracknell Forest         867       Secondary
#> 7124                    Bracknell Forest         867         Special
#> 7125                      West Berkshire         869         Primary
#> 7126                      West Berkshire         869       Secondary
#> 7127                      West Berkshire         869         Special
#> 7128                             Reading         870         Primary
#> 7129                             Reading         870       Secondary
#> 7130                             Reading         870         Special
#> 7131                              Slough         871         Primary
#> 7132                              Slough         871       Secondary
#> 7133                              Slough         871         Special
#> 7134              Windsor and Maidenhead         868         Primary
#> 7135              Windsor and Maidenhead         868       Secondary
#> 7136              Windsor and Maidenhead         868         Special
#> 7137                           Wokingham         872         Primary
#> 7138                           Wokingham         872       Secondary
#> 7139                           Wokingham         872         Special
#> 7140                       Milton Keynes         826         Primary
#> 7141                       Milton Keynes         826       Secondary
#> 7142                       Milton Keynes         826         Special
#> 7143                   Brighton and Hove         846         Primary
#> 7144                   Brighton and Hove         846       Secondary
#> 7145                   Brighton and Hove         846         Special
#> 7146                          Portsmouth         851         Primary
#> 7147                          Portsmouth         851       Secondary
#> 7148                          Portsmouth         851         Special
#> 7149                         Southampton         852         Primary
#> 7150                         Southampton         852       Secondary
#> 7151                         Southampton         852         Special
#> 7152                       Isle of Wight         921         Primary
#> 7153                       Isle of Wight         921       Secondary
#> 7154                       Isle of Wight         921         Special
#> 7155                     Buckinghamshire         825         Primary
#> 7156                     Buckinghamshire         825       Secondary
#> 7157                     Buckinghamshire         825         Special
#> 7158                         East Sussex         845         Primary
#> 7159                         East Sussex         845       Secondary
#> 7160                         East Sussex         845         Special
#> 7161                           Hampshire         850         Primary
#> 7162                           Hampshire         850       Secondary
#> 7163                           Hampshire         850         Special
#> 7164                                Kent         886         Primary
#> 7165                                Kent         886       Secondary
#> 7166                                Kent         886         Special
#> 7167                         Oxfordshire         931         Primary
#> 7168                         Oxfordshire         931       Secondary
#> 7169                         Oxfordshire         931         Special
#> 7170                              Surrey         936         Primary
#> 7171                              Surrey         936       Secondary
#> 7172                              Surrey         936         Special
#> 7173                         West Sussex         938         Primary
#> 7174                         West Sussex         938       Secondary
#> 7175                         West Sussex         938         Special
#> 7176                                <NA>          NA     All schools
#> 7177                                <NA>          NA         Primary
#> 7178                                <NA>          NA       Secondary
#> 7179                                <NA>          NA         Special
#> 7180        Bath and North East Somerset         800         Primary
#> 7181        Bath and North East Somerset         800       Secondary
#> 7182        Bath and North East Somerset         800         Special
#> 7183                    Bristol, City of         801         Primary
#> 7184                    Bristol, City of         801       Secondary
#> 7185                    Bristol, City of         801         Special
#> 7186                      North Somerset         802         Primary
#> 7187                      North Somerset         802       Secondary
#> 7188                      North Somerset         802         Special
#> 7189               South Gloucestershire         803         Primary
#> 7190               South Gloucestershire         803       Secondary
#> 7191               South Gloucestershire         803         Special
#> 7192                            Plymouth         879         Primary
#> 7193                            Plymouth         879       Secondary
#> 7194                            Plymouth         879         Special
#> 7195                              Torbay         880         Primary
#> 7196                              Torbay         880       Secondary
#> 7197                              Torbay         880         Special
#> 7198                             Swindon         866         Primary
#> 7199                             Swindon         866       Secondary
#> 7200                             Swindon         866         Special
#> 7201                            Cornwall         908         Primary
#> 7202                            Cornwall         908       Secondary
#> 7203                            Cornwall         908         Special
#> 7204                     Isles of Scilly         420       Secondary
#> 7205                           Wiltshire         865         Primary
#> 7206                           Wiltshire         865       Secondary
#> 7207                           Wiltshire         865         Special
#> 7208 Bournemouth, Christchurch and Poole         839         Primary
#> 7209 Bournemouth, Christchurch and Poole         839       Secondary
#> 7210 Bournemouth, Christchurch and Poole         839         Special
#> 7211                              Dorset         838         Primary
#> 7212                              Dorset         838       Secondary
#> 7213                              Dorset         838         Special
#> 7214                            Somerset         933         Primary
#> 7215                            Somerset         933       Secondary
#> 7216                            Somerset         933         Special
#> 7217                               Devon         878         Primary
#> 7218                               Devon         878       Secondary
#> 7219                               Devon         878         Special
#> 7220                     Gloucestershire         916         Primary
#> 7221                     Gloucestershire         916       Secondary
#> 7222                     Gloucestershire         916         Special
#>      persistent_absence_percent
#> 1                         18.62
#> 2                         14.73
#> 3                         22.28
#> 4                         35.35
#> 5                         20.68
#> 6                         15.89
#> 7                         25.06
#> 8                         34.29
#> 9                         20.94
#> 10                        15.72
#> 11                        26.17
#> 12                        35.69
#> 13                        22.28
#> 14                        16.98
#> 15                        28.49
#> 16                         31.7
#> 17                        22.02
#> 18                        16.09
#> 19                        27.37
#> 20                        37.58
#> 21                         19.6
#> 22                        14.81
#> 23                        24.57
#> 24                        32.08
#> 25                        21.14
#> 26                         18.1
#> 27                        24.09
#> 28                        26.46
#> 29                        20.29
#> 30                        16.21
#> 31                        24.25
#> 32                        33.59
#> 33                        20.58
#> 34                        15.38
#> 35                        23.52
#> 36                        41.04
#> 37                        20.62
#> 38                        16.31
#> 39                        24.24
#> 40                        38.95
#> 41                        18.85
#> 42                        14.37
#> 43                        22.17
#> 44                         32.9
#> 45                        22.85
#> 46                        16.91
#> 47                        28.99
#> 48                        29.62
#> 49                         21.8
#> 50                        15.97
#> 51                        27.94
#> 52                         32.7
#> 53                        18.88
#> 54                        14.58
#> 55                        22.97
#> 56                        30.14
#> 57                        19.27
#> 58                        15.13
#> 59                        23.21
#> 60                        35.74
#> 61                        22.56
#> 62                        16.98
#> 63                        27.59
#> 64                        35.14
#> 65                        16.22
#> 66                        11.74
#> 67                        20.39
#> 68                        38.12
#> 69                        19.88
#> 70                        14.47
#> 71                        25.47
#> 72                        40.42
#> 73                        21.51
#> 74                        18.24
#> 75                        24.88
#> 76                        30.32
#> 77                        16.22
#> 78                        12.18
#> 79                        20.45
#> 80                        32.19
#> 81                         18.8
#> 82                         13.6
#> 83                         24.2
#> 84                           33
#> 85                        18.85
#> 86                        13.64
#> 87                        24.33
#> 88                        30.08
#> 89                        17.46
#> 90                        11.67
#> 91                        22.74
#> 92                        32.09
#> 93                        19.68
#> 94                        15.85
#> 95                        23.21
#> 96                         34.4
#> 97                        19.47
#> 98                        14.63
#> 99                        24.06
#> 100                       41.95
#> 101                       19.63
#> 102                       17.46
#> 103                       20.79
#> 104                       41.34
#> 105                       20.13
#> 106                        16.7
#> 107                       22.49
#> 108                       42.13
#> 109                       20.43
#> 110                       16.57
#> 111                       24.42
#> 112                       41.25
#> 113                       21.48
#> 114                       17.49
#> 115                       25.84
#> 116                       36.65
#> 117                       17.36
#> 118                       13.35
#> 119                       21.32
#> 120                        38.2
#> 121                       19.63
#> 122                       14.82
#> 123                       24.21
#> 124                       35.04
#> 125                       13.56
#> 126                       11.13
#> 127                        15.3
#> 128                       28.16
#> 129                       18.63
#> 130                       14.67
#> 131                       22.42
#> 132                       34.02
#> 133                       26.03
#> 134                       21.48
#> 135                       32.99
#> 136                       42.23
#> 137                       21.71
#> 138                       17.15
#> 139                       25.88
#> 140                       37.66
#> 141                       18.61
#> 142                        14.3
#> 143                       22.98
#> 144                        35.8
#> 145                       21.76
#> 146                       15.24
#> 147                       28.41
#> 148                       32.48
#> 149                       20.58
#> 150                       15.71
#> 151                       24.44
#> 152                       35.01
#> 153                       18.61
#> 154                       14.65
#> 155                       22.67
#> 156                       31.18
#> 157                       19.97
#> 158                       15.63
#> 159                        24.3
#> 160                       35.51
#> 161                       20.65
#> 162                        16.7
#> 163                       24.87
#> 164                       32.08
#> 165                       17.94
#> 166                       12.85
#> 167                       23.36
#> 168                       28.53
#> 169                       22.85
#> 170                       16.54
#> 171                       30.58
#> 172                       26.77
#> 173                       19.95
#> 174                       15.35
#> 175                       24.57
#> 176                       28.49
#> 177                       18.12
#> 178                       13.19
#> 179                       23.11
#> 180                       30.56
#> 181                       18.11
#> 182                       12.97
#> 183                       23.02
#> 184                       38.15
#> 185                       20.89
#> 186                       15.44
#> 187                       26.88
#> 188                        38.6
#> 189                        19.5
#> 190                       15.64
#> 191                       23.64
#> 192                       31.75
#> 193                       20.87
#> 194                       16.76
#> 195                       24.55
#> 196                       33.59
#> 197                       20.94
#> 198                       16.42
#> 199                        25.1
#> 200                       38.22
#> 201                       23.67
#> 202                       18.57
#> 203                       29.08
#> 204                       40.43
#> 205                       18.57
#> 206                       15.05
#> 207                       21.47
#> 208                        32.5
#> 209                       17.24
#> 210                       14.26
#> 211                       20.07
#> 212                       33.78
#> 213                       19.65
#> 214                       16.25
#> 215                       22.81
#> 216                       35.92
#> 217                       19.58
#> 218                       15.05
#> 219                       24.46
#> 220                       39.47
#> 221                       18.29
#> 222                       14.14
#> 223                       22.32
#> 224                       35.06
#> 225                       20.91
#> 226                       17.14
#> 227                       24.26
#> 228                       37.35
#> 229                       18.68
#> 230                        15.9
#> 231                       20.23
#> 232                       49.48
#> 233                       16.46
#> 234                       10.54
#> 235                       20.91
#> 236                       21.23
#> 237                       18.75
#> 238                       23.83
#> 239                       32.87
#> 240                       19.55
#> 241                       14.76
#> 242                       24.25
#> 243                       35.68
#> 244                        17.1
#> 245                       12.89
#> 246                       20.94
#> 247                       33.88
#> 248                       17.34
#> 249                       13.19
#> 250                       21.85
#> 251                       30.06
#> 252                       16.71
#> 253                       11.84
#> 254                       21.85
#> 255                       29.37
#> 256                       18.57
#> 257                       13.65
#> 258                       22.96
#> 259                       35.67
#> 260                       17.99
#> 261                          14
#> 262                       22.24
#> 263                       31.51
#> 264                       18.87
#> 265                       15.07
#> 266                       22.27
#> 267                       35.76
#> 268                       15.98
#> 269                       11.12
#> 270                       20.88
#> 271                       33.88
#> 272                       17.77
#> 273                       14.25
#> 274                       20.94
#> 275                       29.01
#> 276                       20.32
#> 277                       15.46
#> 278                       25.31
#> 279                       38.17
#> 280                       18.54
#> 281                        12.8
#> 282                       24.33
#> 283                       37.75
#> 284                       19.98
#> 285                       17.06
#> 286                       21.86
#> 287                       44.03
#> 288                       20.38
#> 289                       17.03
#> 290                        23.8
#> 291                       34.06
#> 292                       19.41
#> 293                       15.15
#> 294                       23.93
#> 295                       30.94
#> 296                        19.9
#> 297                       16.61
#> 298                       23.17
#> 299                       36.52
#> 300                       18.34
#> 301                       13.69
#> 302                       21.98
#> 303                       41.16
#> 304                        20.2
#> 305                        16.2
#> 306                       24.02
#> 307                       34.71
#> 308                       19.23
#> 309                       16.97
#> 310                       21.06
#> 311                       34.18
#> 312                       16.94
#> 313                       12.88
#> 314                        20.7
#> 315                       27.72
#> 316                       17.89
#> 317                       13.69
#> 318                       22.07
#> 319                       32.15
#> 320                       17.84
#> 321                       13.19
#> 322                       21.56
#> 323                       32.59
#> 324                       17.61
#> 325                       13.92
#> 326                       21.16
#> 327                        32.7
#> 328                       18.58
#> 329                       14.76
#> 330                       21.99
#> 331                       33.28
#> 332                       17.63
#> 333                       14.69
#> 334                       20.09
#> 335                       39.01
#> 336                       17.99
#> 337                       15.82
#> 338                       19.51
#> 339                       32.56
#> 340                       17.58
#> 341                       15.16
#> 342                       20.34
#> 343                       30.42
#> 344                       17.62
#> 345                       13.24
#> 346                       22.05
#> 347                       28.18
#> 348                       16.66
#> 349                       12.75
#> 350                        19.5
#> 351                       33.63
#> 352                       16.48
#> 353                       13.11
#> 354                       19.79
#> 355                       33.51
#> 356                        18.2
#> 357                       14.64
#> 358                       21.91
#> 359                       32.24
#> 360                       16.23
#> 361                       12.82
#> 362                       19.24
#> 363                       33.27
#> 364                       18.67
#> 365                       14.31
#> 366                       23.07
#> 367                       30.66
#> 368                       18.56
#> 369                       13.71
#> 370                       23.64
#> 371                       32.27
#> 372                       17.85
#> 373                       15.78
#> 374                       19.47
#> 375                       36.93
#> 376                           c
#> 377                           c
#> 378                       18.47
#> 379                          17
#> 380                       19.13
#> 381                        47.8
#> 382                       14.65
#> 383                       12.54
#> 384                       16.12
#> 385                       37.19
#> 386                       16.69
#> 387                       13.79
#> 388                        18.9
#> 389                       35.85
#> 390                       17.32
#> 391                       15.24
#> 392                       19.23
#> 393                       30.21
#> 394                       16.33
#> 395                       13.59
#> 396                       18.77
#> 397                       39.32
#> 398                       22.57
#> 399                       18.05
#> 400                       26.85
#> 401                       41.38
#> 402                       19.91
#> 403                       16.97
#> 404                       23.18
#> 405                       35.79
#> 406                       16.91
#> 407                       14.57
#> 408                       19.13
#> 409                       31.88
#> 410                       18.52
#> 411                        15.8
#> 412                       20.63
#> 413                       38.44
#> 414                       17.95
#> 415                       15.29
#> 416                        20.5
#> 417                       38.52
#> 418                       19.11
#> 419                       16.71
#> 420                       21.44
#> 421                       29.75
#> 422                       17.03
#> 423                       14.44
#> 424                       18.07
#> 425                       36.52
#> 426                       18.52
#> 427                       16.12
#> 428                       20.53
#> 429                       35.66
#> 430                       16.09
#> 431                       13.59
#> 432                       18.76
#> 433                       36.53
#> 434                       16.87
#> 435                       14.58
#> 436                       19.44
#> 437                       37.87
#> 438                       20.24
#> 439                       18.07
#> 440                       22.06
#> 441                        34.4
#> 442                       18.03
#> 443                       16.82
#> 444                       18.59
#> 445                       32.59
#> 446                       20.78
#> 447                        18.9
#> 448                       22.04
#> 449                       40.24
#> 450                       19.53
#> 451                       17.79
#> 452                       21.04
#> 453                       26.19
#> 454                       14.24
#> 455                       12.83
#> 456                        14.6
#> 457                       35.45
#> 458                       19.75
#> 459                       17.46
#> 460                        21.8
#> 461                       31.93
#> 462                       17.42
#> 463                       15.91
#> 464                       18.75
#> 465                       31.92
#> 466                       15.62
#> 467                       13.56
#> 468                       17.14
#> 469                       37.83
#> 470                       20.82
#> 471                       20.47
#> 472                        20.9
#> 473                       48.34
#> 474                       17.75
#> 475                       17.15
#> 476                       17.79
#> 477                       35.62
#> 478                       13.32
#> 479                       10.19
#> 480                       16.76
#> 481                       28.57
#> 482                       18.25
#> 483                       16.13
#> 484                       19.68
#> 485                       39.38
#> 486                       14.87
#> 487                       13.21
#> 488                       15.52
#> 489                        38.6
#> 490                        20.3
#> 491                       20.15
#> 492                       19.34
#> 493                       44.53
#> 494                       18.27
#> 495                       14.99
#> 496                       21.23
#> 497                       45.76
#> 498                       17.26
#> 499                       14.81
#> 500                       19.18
#> 501                       44.57
#> 502                       19.96
#> 503                          19
#> 504                        20.1
#> 505                       36.13
#> 506                       17.89
#> 507                       13.85
#> 508                       21.68
#> 509                       35.66
#> 510                       19.92
#> 511                       17.17
#> 512                       22.21
#> 513                       35.57
#> 514                       15.12
#> 515                       11.32
#> 516                       18.93
#> 517                       33.33
#> 518                       17.24
#> 519                       11.98
#> 520                          22
#> 521                       30.99
#> 522                       18.56
#> 523                       15.99
#> 524                        21.1
#> 525                       40.58
#> 526                       18.76
#> 527                       17.66
#> 528                       19.52
#> 529                       34.47
#> 530                       17.51
#> 531                       12.37
#> 532                       21.08
#> 533                       31.84
#> 534                       13.53
#> 535                       10.11
#> 536                       16.85
#> 537                       26.15
#> 538                        16.7
#> 539                       12.64
#> 540                       20.27
#> 541                       35.78
#> 542                       20.35
#> 543                       14.88
#> 544                       27.16
#> 545                       36.03
#> 546                       19.83
#> 547                       13.97
#> 548                       24.36
#> 549                       53.17
#> 550                       21.77
#> 551                        17.4
#> 552                       26.28
#> 553                       33.37
#> 554                       23.96
#> 555                       18.67
#> 556                       28.72
#> 557                       38.56
#> 558                       16.72
#> 559                       13.27
#> 560                       19.64
#> 561                       35.35
#> 562                       20.71
#> 563                        16.5
#> 564                       24.25
#> 565                       38.57
#> 566                       16.26
#> 567                       11.28
#> 568                       21.51
#> 569                       32.46
#> 570                       19.68
#> 571                       15.91
#> 572                       22.87
#> 573                       38.97
#> 574                       17.44
#> 575                       12.82
#> 576                       22.39
#> 577                       30.21
#> 578                       15.33
#> 579                       12.07
#> 580                       18.42
#> 581                       31.92
#> 582                       17.75
#> 583                       13.64
#> 584                        21.7
#> 585                       36.04
#> 586                       18.88
#> 587                       13.57
#> 588                        24.1
#> 589                       35.13
#> 590                        16.7
#> 591                       10.75
#> 592                       21.64
#> 593                       38.83
#> 594                       22.24
#> 595                       16.77
#> 596                       28.28
#> 597                       41.44
#> 598                       18.24
#> 599                       12.84
#> 600                       23.65
#> 601                       32.78
#> 602                       17.47
#> 603                        12.5
#> 604                       23.35
#> 605                       33.02
#> 606                       20.81
#> 607                       14.49
#> 608                       26.81
#> 609                       35.51
#> 610                        21.2
#> 611                       16.23
#> 612                       24.46
#> 613                       42.66
#> 614                       17.63
#> 615                       12.46
#> 616                       22.88
#> 617                       31.93
#> 618                       20.45
#> 619                       15.03
#> 620                       26.36
#> 621                       31.41
#> 622                           c
#> 623                           c
#> 624                       16.59
#> 625                       11.28
#> 626                       22.28
#> 627                        30.1
#> 628                       16.67
#> 629                        12.2
#> 630                       20.32
#> 631                       34.24
#> 632                        19.6
#> 633                       14.29
#> 634                       23.39
#> 635                       30.85
#> 636                       19.77
#> 637                       14.34
#> 638                       24.92
#> 639                       39.33
#> 640                       19.29
#> 641                        13.4
#> 642                       25.69
#> 643                       34.79
#> 644                       17.52
#> 645                          13
#> 646                       21.86
#> 647                       34.69
#> 648                       18.91
#> 649                       15.13
#> 650                       22.45
#> 651                       35.67
#> 652                       21.16
#> 653                       16.47
#> 654                       25.41
#> 655                       35.19
#> 656                       21.83
#> 657                       16.86
#> 658                       26.66
#> 659                       39.22
#> 660                       22.82
#> 661                       17.49
#> 662                       29.04
#> 663                       32.72
#> 664                        22.6
#> 665                       17.16
#> 666                       27.47
#> 667                       37.58
#> 668                        20.2
#> 669                       15.39
#> 670                       25.11
#> 671                       34.36
#> 672                       21.74
#> 673                        18.6
#> 674                        24.7
#> 675                       28.57
#> 676                       20.78
#> 677                       16.85
#> 678                       24.53
#> 679                        34.5
#> 680                       21.07
#> 681                       16.07
#> 682                       23.84
#> 683                       41.55
#> 684                       20.93
#> 685                       16.59
#> 686                       24.66
#> 687                       38.15
#> 688                       19.31
#> 689                       14.81
#> 690                       22.58
#> 691                       34.31
#> 692                       23.16
#> 693                       17.54
#> 694                       28.88
#> 695                       30.63
#> 696                       22.19
#> 697                       16.36
#> 698                       28.25
#> 699                       34.28
#> 700                       19.39
#> 701                       15.17
#> 702                       23.41
#> 703                       30.29
#> 704                       19.68
#> 705                       15.63
#> 706                        23.5
#> 707                       36.24
#> 708                       23.29
#> 709                       18.01
#> 710                       28.09
#> 711                       34.51
#> 712                       16.82
#> 713                        12.5
#> 714                       20.82
#> 715                       38.92
#> 716                       20.08
#> 717                       14.75
#> 718                       25.57
#> 719                       40.42
#> 720                       21.84
#> 721                       18.55
#> 722                       25.18
#> 723                       31.32
#> 724                       16.73
#> 725                       12.76
#> 726                       20.88
#> 727                       32.81
#> 728                        19.3
#> 729                       14.08
#> 730                       24.68
#> 731                       34.09
#> 732                       19.08
#> 733                       13.93
#> 734                       24.48
#> 735                       31.14
#> 736                       17.99
#> 737                        12.2
#> 738                       23.31
#> 739                       30.51
#> 740                       20.15
#> 741                       16.48
#> 742                       23.46
#> 743                       36.04
#> 744                       19.87
#> 745                        15.2
#> 746                       24.28
#> 747                       41.77
#> 748                       19.93
#> 749                       17.79
#> 750                       21.04
#> 751                        41.6
#> 752                       20.53
#> 753                       17.12
#> 754                       22.89
#> 755                       42.19
#> 756                       20.72
#> 757                       16.97
#> 758                       24.54
#> 759                       42.51
#> 760                       21.77
#> 761                       18.07
#> 762                        25.7
#> 763                       37.46
#> 764                       17.79
#> 765                       14.02
#> 766                       21.48
#> 767                       38.14
#> 768                       20.02
#> 769                       15.38
#> 770                       24.32
#> 771                       36.87
#> 772                       13.79
#> 773                       11.45
#> 774                       15.47
#> 775                       27.81
#> 776                       19.22
#> 777                        15.4
#> 778                       22.85
#> 779                       34.74
#> 780                       26.58
#> 781                       22.03
#> 782                       33.49
#> 783                       43.31
#> 784                       21.98
#> 785                       17.58
#> 786                       25.96
#> 787                       37.97
#> 788                       18.97
#> 789                       14.64
#> 790                       23.37
#> 791                       36.03
#> 792                       22.08
#> 793                       15.67
#> 794                       28.61
#> 795                       32.89
#> 796                       21.15
#> 797                       16.31
#> 798                       24.94
#> 799                       35.85
#> 800                       19.04
#> 801                       15.15
#> 802                       23.03
#> 803                       31.41
#> 804                       20.41
#> 805                       16.23
#> 806                       24.53
#> 807                        36.4
#> 808                       20.93
#> 809                       17.12
#> 810                       25.01
#> 811                       31.82
#> 812                       18.36
#> 813                       13.38
#> 814                       23.65
#> 815                       29.41
#> 816                       23.72
#> 817                        17.5
#> 818                       31.26
#> 819                       30.32
#> 820                        20.4
#> 821                       15.79
#> 822                       24.93
#> 823                       31.69
#> 824                       18.52
#> 825                       13.87
#> 826                       23.24
#> 827                       30.25
#> 828                       18.48
#> 829                       13.63
#> 830                       23.11
#> 831                       37.87
#> 832                        21.6
#> 833                       16.22
#> 834                       27.47
#> 835                       41.36
#> 836                       19.68
#> 837                       16.12
#> 838                       23.41
#> 839                       33.41
#> 840                        21.5
#> 841                       17.58
#> 842                       24.94
#> 843                       34.66
#> 844                       21.37
#> 845                       17.05
#> 846                       25.33
#> 847                       38.46
#> 848                       24.14
#> 849                       19.18
#> 850                       29.34
#> 851                       42.11
#> 852                       18.96
#> 853                       15.65
#> 854                       21.63
#> 855                       33.65
#> 856                       17.64
#> 857                       14.72
#> 858                        20.4
#> 859                       34.56
#> 860                       20.02
#> 861                       16.74
#> 862                       23.03
#> 863                       36.44
#> 864                       20.11
#> 865                       15.79
#> 866                        24.7
#> 867                        41.3
#> 868                       18.71
#> 869                       14.69
#> 870                       22.61
#> 871                       35.18
#> 872                       21.27
#> 873                       17.72
#> 874                       24.33
#> 875                       38.38
#> 876                        18.7
#> 877                       15.89
#> 878                       20.35
#> 879                       48.56
#> 880                       16.89
#> 881                       11.26
#> 882                        21.1
#> 883                       21.73
#> 884                       19.16
#> 885                       24.43
#> 886                       32.92
#> 887                        20.1
#> 888                       15.54
#> 889                       24.51
#> 890                       36.54
#> 891                       17.51
#> 892                       13.39
#> 893                       21.27
#> 894                       34.56
#> 895                       17.88
#> 896                        13.9
#> 897                       22.22
#> 898                       29.76
#> 899                       17.11
#> 900                       12.42
#> 901                       22.05
#> 902                       29.74
#> 903                        18.8
#> 904                       14.07
#> 905                       23.01
#> 906                       35.41
#> 907                       18.63
#> 908                       14.74
#> 909                       22.78
#> 910                       31.67
#> 911                       19.28
#> 912                       15.64
#> 913                        22.5
#> 914                       35.99
#> 915                       16.04
#> 916                       11.39
#> 917                       20.72
#> 918                       33.42
#> 919                       18.53
#> 920                       15.17
#> 921                       21.54
#> 922                       29.43
#> 923                       20.92
#> 924                       16.35
#> 925                       25.57
#> 926                          38
#> 927                       18.82
#> 928                       13.08
#> 929                       24.59
#> 930                       38.35
#> 931                       20.36
#> 932                       17.62
#> 933                       22.06
#> 934                       43.97
#> 935                       20.73
#> 936                       17.72
#> 937                       23.78
#> 938                       33.25
#> 939                       19.87
#> 940                        15.8
#> 941                       24.24
#> 942                       30.01
#> 943                       20.19
#> 944                       16.95
#> 945                        23.4
#> 946                       36.89
#> 947                       18.57
#> 948                       14.12
#> 949                       22.06
#> 950                       40.21
#> 951                        20.4
#> 952                       16.67
#> 953                       23.87
#> 954                       35.47
#> 955                       19.46
#> 956                       17.27
#> 957                       21.19
#> 958                       34.62
#> 959                       17.62
#> 960                       13.69
#> 961                       21.22
#> 962                       28.86
#> 963                       18.28
#> 964                       14.14
#> 965                       22.34
#> 966                       33.58
#> 967                       18.21
#> 968                       13.72
#> 969                       21.78
#> 970                       32.91
#> 971                       17.67
#> 972                       14.05
#> 973                       21.16
#> 974                       32.64
#> 975                       18.94
#> 976                       15.15
#> 977                       22.35
#> 978                       32.85
#> 979                       17.57
#> 980                       14.43
#> 981                       20.21
#> 982                       39.56
#> 983                       18.18
#> 984                       16.03
#> 985                       19.71
#> 986                       31.79
#> 987                       18.05
#> 988                        15.7
#> 989                       20.79
#> 990                       28.45
#> 991                       17.68
#> 992                       13.47
#> 993                       21.88
#> 994                       29.55
#> 995                       16.83
#> 996                       13.03
#> 997                       19.55
#> 998                       34.71
#> 999                       16.52
#> 1000                      13.28
#> 1001                      19.69
#> 1002                      33.28
#> 1003                      18.18
#> 1004                      14.71
#> 1005                      21.81
#> 1006                      31.59
#> 1007                       16.3
#> 1008                      12.93
#> 1009                      19.26
#> 1010                      33.68
#> 1011                      18.74
#> 1012                       14.5
#> 1013                         23
#> 1014                      31.24
#> 1015                      18.53
#> 1016                      13.67
#> 1017                      23.63
#> 1018                      31.73
#> 1019                       18.1
#> 1020                      16.12
#> 1021                      19.61
#> 1022                      37.31
#> 1023                          c
#> 1024                          c
#> 1025                      18.71
#> 1026                      17.32
#> 1027                      19.29
#> 1028                      48.14
#> 1029                      14.92
#> 1030                      12.89
#> 1031                       16.3
#> 1032                      37.54
#> 1033                      17.33
#> 1034                      14.59
#> 1035                      19.36
#> 1036                      36.29
#> 1037                      17.51
#> 1038                      15.29
#> 1039                      19.57
#> 1040                      30.34
#> 1041                      16.98
#> 1042                      14.35
#> 1043                       19.3
#> 1044                       39.7
#> 1045                      22.53
#> 1046                      18.02
#> 1047                      26.74
#> 1048                      42.91
#> 1049                      20.34
#> 1050                       17.5
#> 1051                      23.38
#> 1052                       37.2
#> 1053                      16.97
#> 1054                      14.84
#> 1055                      18.92
#> 1056                      32.18
#> 1057                      18.61
#> 1058                      15.97
#> 1059                      20.67
#> 1060                      37.97
#> 1061                      18.29
#> 1062                      15.61
#> 1063                      20.88
#> 1064                      38.39
#> 1065                       19.1
#> 1066                      16.74
#> 1067                      21.38
#> 1068                      30.05
#> 1069                      17.62
#> 1070                      15.26
#> 1071                      18.48
#> 1072                      36.73
#> 1073                      18.36
#> 1074                      16.14
#> 1075                      20.19
#> 1076                      34.75
#> 1077                      16.39
#> 1078                      13.98
#> 1079                      18.93
#> 1080                      36.38
#> 1081                         17
#> 1082                      14.88
#> 1083                      19.37
#> 1084                      36.36
#> 1085                      20.23
#> 1086                      18.01
#> 1087                       22.1
#> 1088                      34.35
#> 1089                      18.52
#> 1090                      17.33
#> 1091                      19.12
#> 1092                      31.52
#> 1093                      21.12
#> 1094                       19.4
#> 1095                      22.13
#> 1096                      40.71
#> 1097                      19.85
#> 1098                      18.49
#> 1099                         21
#> 1100                      26.21
#> 1101                      14.65
#> 1102                      13.63
#> 1103                      14.57
#> 1104                      36.42
#> 1105                      19.88
#> 1106                       17.8
#> 1107                      21.64
#> 1108                      32.52
#> 1109                      17.62
#> 1110                      16.32
#> 1111                      18.59
#> 1112                      33.09
#> 1113                      15.95
#> 1114                      14.06
#> 1115                      17.19
#> 1116                      39.05
#> 1117                      20.85
#> 1118                      20.53
#> 1119                      20.89
#> 1120                      49.26
#> 1121                      18.13
#> 1122                      17.61
#> 1123                      18.04
#> 1124                      37.69
#> 1125                      13.62
#> 1126                      10.69
#> 1127                      16.84
#> 1128                      27.96
#> 1129                      18.74
#> 1130                      16.62
#> 1131                      20.09
#> 1132                      41.61
#> 1133                      15.21
#> 1134                      13.58
#> 1135                      15.79
#> 1136                      39.74
#> 1137                      20.28
#> 1138                      20.21
#> 1139                      19.21
#> 1140                      44.59
#> 1141                      18.46
#> 1142                       15.2
#> 1143                      21.41
#> 1144                      45.07
#> 1145                      17.59
#> 1146                      15.31
#> 1147                      19.23
#> 1148                      45.12
#> 1149                      20.22
#> 1150                         19
#> 1151                      20.52
#> 1152                         37
#> 1153                      18.05
#> 1154                      14.09
#> 1155                      21.75
#> 1156                      35.84
#> 1157                      20.23
#> 1158                      17.55
#> 1159                      22.48
#> 1160                      35.13
#> 1161                      15.22
#> 1162                       11.6
#> 1163                       18.9
#> 1164                      30.41
#> 1165                       17.4
#> 1166                      12.17
#> 1167                      22.09
#> 1168                      32.09
#> 1169                      18.68
#> 1170                      15.96
#> 1171                      21.45
#> 1172                      39.89
#> 1173                      19.26
#> 1174                      18.22
#> 1175                      19.91
#> 1176                      37.28
#> 1177                      17.68
#> 1178                      12.49
#> 1179                      21.31
#> 1180                      31.76
#> 1181                      13.54
#> 1182                      10.41
#> 1183                      16.55
#> 1184                      25.93
#> 1185                       16.9
#> 1186                      12.86
#> 1187                      20.42
#> 1188                      36.27
#> 1189                      20.52
#> 1190                      14.98
#> 1191                      27.44
#> 1192                      36.24
#> 1193                      19.88
#> 1194                      14.18
#> 1195                      24.33
#> 1196                      52.03
#> 1197                      21.96
#> 1198                      17.55
#> 1199                      26.45
#> 1200                      34.34
#> 1201                      23.94
#> 1202                      18.92
#> 1203                      28.46
#> 1204                      37.73
#> 1205                      17.07
#> 1206                      13.79
#> 1207                       19.8
#> 1208                      36.07
#> 1209                      20.76
#> 1210                      16.64
#> 1211                       24.2
#> 1212                      38.87
#> 1213                      16.25
#> 1214                      11.42
#> 1215                      21.31
#> 1216                      32.83
#> 1217                      19.97
#> 1218                      16.21
#> 1219                      23.12
#> 1220                      39.52
#> 1221                      17.49
#> 1222                      12.94
#> 1223                      22.34
#> 1224                      30.46
#> 1225                      15.54
#> 1226                       12.3
#> 1227                      18.62
#> 1228                      31.66
#> 1229                      17.82
#> 1230                      13.89
#> 1231                      21.57
#> 1232                      35.63
#> 1233                      19.05
#> 1234                      13.83
#> 1235                      24.17
#> 1236                      35.07
#> 1237                      16.99
#> 1238                      11.24
#> 1239                      21.74
#> 1240                      38.83
#> 1241                      22.51
#> 1242                      16.93
#> 1243                       28.7
#> 1244                      41.71
#> 1245                      18.34
#> 1246                      13.02
#> 1247                      23.77
#> 1248                      29.85
#> 1249                      17.87
#> 1250                      12.86
#> 1251                       23.7
#> 1252                      35.76
#> 1253                      21.11
#> 1254                      15.06
#> 1255                      26.85
#> 1256                      35.38
#> 1257                      21.63
#> 1258                      16.26
#> 1259                      25.26
#> 1260                      43.13
#> 1261                      17.74
#> 1262                      12.68
#> 1263                       22.8
#> 1264                      32.99
#> 1265                      20.84
#> 1266                      15.59
#> 1267                      26.56
#> 1268                       32.5
#> 1269                          c
#> 1270                          c
#> 1271                      16.67
#> 1272                      11.47
#> 1273                      22.28
#> 1274                      28.56
#> 1275                      16.64
#> 1276                      12.48
#> 1277                      19.99
#> 1278                      33.77
#> 1279                      19.69
#> 1280                      14.79
#> 1281                      23.16
#> 1282                      30.77
#> 1283                      19.83
#> 1284                      14.41
#> 1285                         25
#> 1286                      38.95
#> 1287                      19.32
#> 1288                      13.51
#> 1289                      25.62
#> 1290                      34.66
#> 1291                      17.69
#> 1292                      13.22
#> 1293                      21.99
#> 1294                      34.58
#> 1295                       18.7
#> 1296                       13.5
#> 1297                      24.32
#> 1298                       35.8
#> 1299                      19.18
#> 1300                      13.26
#> 1301                         26
#> 1302                      32.09
#> 1303                       13.8
#> 1304                       26.6
#> 1305                      28.32
#> 1306                      15.99
#> 1307                      30.76
#> 1308                      29.41
#> 1309                      13.21
#> 1310                      26.14
#> 1311                      36.67
#> 1312                      12.53
#> 1313                      27.81
#> 1314                      29.93
#> 1315                      14.71
#> 1316                       26.2
#> 1317                      22.56
#> 1318                      13.82
#> 1319                      25.66
#> 1320                      33.59
#> 1321                      10.91
#> 1322                      22.88
#> 1323                      37.42
#> 1324                      14.87
#> 1325                      26.67
#> 1326                      38.65
#> 1327                      11.35
#> 1328                      21.36
#> 1329                      27.68
#> 1330                      13.61
#> 1331                       28.5
#> 1332                      24.79
#> 1333                       13.8
#> 1334                      28.77
#> 1335                      34.15
#> 1336                      10.54
#> 1337                      24.19
#> 1338                      25.93
#> 1339                      18.48
#> 1340                      13.29
#> 1341                      24.53
#> 1342                      35.43
#> 1343                      15.24
#> 1344                      29.56
#> 1345                      33.26
#> 1346                       9.09
#> 1347                      20.54
#> 1348                      37.61
#> 1349                      14.56
#> 1350                      24.89
#> 1351                      37.88
#> 1352                      16.35
#> 1353                      30.39
#> 1354                      30.57
#> 1355                       9.86
#> 1356                      22.05
#> 1357                      35.76
#> 1358                      11.42
#> 1359                      25.23
#> 1360                      31.18
#> 1361                      10.46
#> 1362                      23.66
#> 1363                      24.01
#> 1364                        8.8
#> 1365                      22.15
#> 1366                      30.19
#> 1367                       14.1
#> 1368                      23.96
#> 1369                       34.7
#> 1370                       12.3
#> 1371                      25.66
#> 1372                      41.85
#> 1373                      16.11
#> 1374                      22.78
#> 1375                      42.51
#> 1376                      15.05
#> 1377                      23.54
#> 1378                      41.89
#> 1379                      14.72
#> 1380                      27.48
#> 1381                      47.28
#> 1382                      16.15
#> 1383                      27.82
#> 1384                      36.85
#> 1385                      11.65
#> 1386                      23.43
#> 1387                      34.42
#> 1388                      12.48
#> 1389                      25.92
#> 1390                      32.56
#> 1391                       9.42
#> 1392                      16.35
#> 1393                      28.59
#> 1394                      12.41
#> 1395                      23.81
#> 1396                      30.47
#> 1397                      19.71
#> 1398                      32.73
#> 1399                      40.18
#> 1400                       15.7
#> 1401                       27.7
#> 1402                      38.26
#> 1403                      12.82
#> 1404                      25.49
#> 1405                      35.52
#> 1406                      13.37
#> 1407                      28.59
#> 1408                      32.83
#> 1409                      14.67
#> 1410                      25.96
#> 1411                      36.39
#> 1412                       12.7
#> 1413                      23.84
#> 1414                      30.11
#> 1415                      19.55
#> 1416                      13.99
#> 1417                      26.11
#> 1418                      34.32
#> 1419                      15.09
#> 1420                      26.82
#> 1421                      35.55
#> 1422                      10.63
#> 1423                      24.17
#> 1424                      24.56
#> 1425                      12.91
#> 1426                      29.63
#> 1427                      18.91
#> 1428                      12.69
#> 1429                      25.17
#> 1430                      26.92
#> 1431                      11.89
#> 1432                      24.62
#> 1433                      24.44
#> 1434                      10.69
#> 1435                      24.61
#> 1436                      39.11
#> 1437                      12.33
#> 1438                      26.94
#> 1439                      37.79
#> 1440                      13.95
#> 1441                      25.47
#> 1442                      30.34
#> 1443                      14.51
#> 1444                      26.01
#> 1445                      36.68
#> 1446                      16.03
#> 1447                      27.41
#> 1448                      34.75
#> 1449                      16.91
#> 1450                      32.15
#> 1451                      36.86
#> 1452                      12.51
#> 1453                      23.18
#> 1454                      25.86
#> 1455                      13.86
#> 1456                      22.44
#> 1457                      33.67
#> 1458                      14.87
#> 1459                      24.51
#> 1460                      36.06
#> 1461                       13.9
#> 1462                      27.23
#> 1463                      38.73
#> 1464                      17.85
#> 1465                      12.58
#> 1466                      23.63
#> 1467                      35.59
#> 1468                      15.35
#> 1469                      25.16
#> 1470                      38.74
#> 1471                      16.98
#> 1472                      23.57
#> 1473                      52.47
#> 1474                       9.23
#> 1475                      18.58
#> 1476                      17.36
#> 1477                      26.62
#> 1478                      36.87
#> 1479                      12.69
#> 1480                      24.27
#> 1481                      35.52
#> 1482                      11.75
#> 1483                      22.43
#> 1484                      33.43
#> 1485                      10.64
#> 1486                      22.49
#> 1487                      29.08
#> 1488                      10.21
#> 1489                      22.54
#> 1490                      27.02
#> 1491                      12.46
#> 1492                      24.75
#> 1493                      36.54
#> 1494                      11.64
#> 1495                      23.43
#> 1496                      30.66
#> 1497                      19.47
#> 1498                      14.41
#> 1499                      24.79
#> 1500                      37.79
#> 1501                      10.34
#> 1502                      22.39
#> 1503                       34.5
#> 1504                      12.36
#> 1505                      22.77
#> 1506                      30.03
#> 1507                      14.41
#> 1508                      28.59
#> 1509                      39.63
#> 1510                      11.66
#> 1511                      24.45
#> 1512                       45.2
#> 1513                      17.58
#> 1514                      26.04
#> 1515                      47.54
#> 1516                       16.5
#> 1517                      26.66
#> 1518                      32.85
#> 1519                      14.83
#> 1520                      26.36
#> 1521                      30.62
#> 1522                      16.01
#> 1523                       25.6
#> 1524                      37.89
#> 1525                      12.76
#> 1526                      23.93
#> 1527                      43.75
#> 1528                      16.53
#> 1529                      28.71
#> 1530                      32.82
#> 1531                      15.49
#> 1532                       21.9
#> 1533                      33.15
#> 1534                      10.53
#> 1535                      21.41
#> 1536                      28.63
#> 1537                      12.87
#> 1538                      24.83
#> 1539                      34.09
#> 1540                      12.54
#> 1541                      23.61
#> 1542                      36.48
#> 1543                      17.97
#> 1544                      12.91
#> 1545                       23.4
#> 1546                      33.54
#> 1547                      14.23
#> 1548                      24.82
#> 1549                       35.5
#> 1550                         16
#> 1551                      22.99
#> 1552                      37.62
#> 1553                      14.99
#> 1554                      22.04
#> 1555                      33.01
#> 1556                      14.58
#> 1557                      22.43
#> 1558                      27.04
#> 1559                      12.91
#> 1560                      25.26
#> 1561                      26.42
#> 1562                      11.56
#> 1563                      20.65
#> 1564                      34.91
#> 1565                      12.31
#> 1566                       21.7
#> 1567                      35.84
#> 1568                      13.31
#> 1569                      24.16
#> 1570                      32.56
#> 1571                      11.72
#> 1572                      22.68
#> 1573                      34.03
#> 1574                      12.69
#> 1575                      24.15
#> 1576                       32.3
#> 1577                      12.45
#> 1578                      25.04
#> 1579                      34.31
#> 1580                       18.8
#> 1581                       15.1
#> 1582                      22.31
#> 1583                      38.15
#> 1584                          c
#> 1585                      17.02
#> 1586                      21.21
#> 1587                      46.14
#> 1588                      11.72
#> 1589                      20.92
#> 1590                      40.25
#> 1591                      12.27
#> 1592                      20.86
#> 1593                       36.2
#> 1594                      15.09
#> 1595                       22.3
#> 1596                      32.59
#> 1597                       11.9
#> 1598                         21
#> 1599                      36.66
#> 1600                       16.1
#> 1601                      30.78
#> 1602                      46.42
#> 1603                      16.25
#> 1604                      27.23
#> 1605                      35.82
#> 1606                      14.71
#> 1607                      24.31
#> 1608                      32.27
#> 1609                         15
#> 1610                      24.16
#> 1611                      39.18
#> 1612                       14.9
#> 1613                      22.76
#> 1614                      36.28
#> 1615                      15.38
#> 1616                      23.16
#> 1617                      30.61
#> 1618                      15.99
#> 1619                       22.7
#> 1620                      38.46
#> 1621                      15.78
#> 1622                      24.47
#> 1623                      38.09
#> 1624                      12.84
#> 1625                      22.74
#> 1626                      36.87
#> 1627                      12.89
#> 1628                      20.29
#> 1629                      37.85
#> 1630                      17.85
#> 1631                      24.26
#> 1632                      37.75
#> 1633                      15.61
#> 1634                      21.86
#> 1635                       34.5
#> 1636                      19.74
#> 1637                      26.88
#> 1638                      40.28
#> 1639                      17.12
#> 1640                      27.07
#> 1641                      28.28
#> 1642                      11.57
#> 1643                       18.4
#> 1644                      38.68
#> 1645                         17
#> 1646                      23.61
#> 1647                       33.5
#> 1648                      14.83
#> 1649                      20.44
#> 1650                      34.88
#> 1651                         12
#> 1652                      19.46
#> 1653                      41.45
#> 1654                      20.24
#> 1655                      22.37
#> 1656                      54.55
#> 1657                      17.07
#> 1658                      20.83
#> 1659                      47.35
#> 1660                       8.71
#> 1661                      17.48
#> 1662                      29.14
#> 1663                         15
#> 1664                      21.27
#> 1665                      38.39
#> 1666                      11.59
#> 1667                      17.31
#> 1668                      37.76
#> 1669                       18.8
#> 1670                      18.85
#> 1671                      41.44
#> 1672                      15.28
#> 1673                      25.18
#> 1674                      45.32
#> 1675                      14.24
#> 1676                      21.07
#> 1677                      45.04
#> 1678                      20.02
#> 1679                      25.05
#> 1680                      37.28
#> 1681                      18.33
#> 1682                      12.87
#> 1683                      24.06
#> 1684                      36.68
#> 1685                      15.95
#> 1686                      23.96
#> 1687                      34.16
#> 1688                      10.16
#> 1689                      21.37
#> 1690                          c
#> 1691                      11.29
#> 1692                      22.27
#> 1693                      29.54
#> 1694                      16.79
#> 1695                      25.16
#> 1696                      43.99
#> 1697                      16.53
#> 1698                      23.75
#> 1699                       38.3
#> 1700                      12.35
#> 1701                      23.57
#> 1702                      34.56
#> 1703                       9.78
#> 1704                       21.2
#> 1705                         32
#> 1706                       12.5
#> 1707                      24.06
#> 1708                      35.99
#> 1709                      14.11
#> 1710                      31.25
#> 1711                      36.71
#> 1712                      13.17
#> 1713                      26.46
#> 1714                      56.29
#> 1715                       16.7
#> 1716                      28.32
#> 1717                      35.13
#> 1718                      15.48
#> 1719                      29.95
#> 1720                      32.68
#> 1721                      12.26
#> 1722                      23.92
#> 1723                      36.93
#> 1724                      14.89
#> 1725                      26.75
#> 1726                      39.78
#> 1727                      10.01
#> 1728                      22.82
#> 1729                      34.44
#> 1730                      15.04
#> 1731                      25.15
#> 1732                      40.44
#> 1733                      12.36
#> 1734                      24.54
#> 1735                      31.81
#> 1736                      11.07
#> 1737                      20.03
#> 1738                      31.84
#> 1739                      11.98
#> 1740                      24.29
#> 1741                      34.82
#> 1742                      18.94
#> 1743                      12.45
#> 1744                      25.97
#> 1745                      35.38
#> 1746                      10.39
#> 1747                      23.69
#> 1748                      36.76
#> 1749                      16.72
#> 1750                      30.99
#> 1751                      44.77
#> 1752                      11.66
#> 1753                      25.82
#> 1754                      29.45
#> 1755                       12.4
#> 1756                      24.82
#> 1757                      32.03
#> 1758                      13.32
#> 1759                      29.68
#> 1760                      32.52
#> 1761                      14.48
#> 1762                      24.28
#> 1763                      40.35
#> 1764                      11.27
#> 1765                      25.75
#> 1766                      34.66
#> 1767                      12.43
#> 1768                      27.68
#> 1769                      32.51
#> 1770                          c
#> 1771                      10.63
#> 1772                      23.43
#> 1773                      32.25
#> 1774                      11.26
#> 1775                      22.96
#> 1776                      36.22
#> 1777                      13.19
#> 1778                      25.17
#> 1779                      30.21
#> 1780                      13.32
#> 1781                      26.48
#> 1782                      41.65
#> 1783                      11.46
#> 1784                      27.77
#> 1785                      33.35
#> 1786                      12.14
#> 1787                      23.43
#> 1788                      32.91
#> 1789                      18.42
#> 1790                      13.41
#> 1791                      23.84
#> 1792                      35.66
#> 1793                      18.96
#> 1794                      13.09
#> 1795                      25.52
#> 1796                      31.95
#> 1797                      13.59
#> 1798                      26.53
#> 1799                      27.34
#> 1800                      15.52
#> 1801                      30.19
#> 1802                      29.86
#> 1803                      12.97
#> 1804                      25.45
#> 1805                      36.46
#> 1806                      12.46
#> 1807                      27.36
#> 1808                       30.1
#> 1809                      14.42
#> 1810                      25.78
#> 1811                      21.79
#> 1812                      13.68
#> 1813                      25.34
#> 1814                      33.29
#> 1815                         11
#> 1816                      22.54
#> 1817                      37.49
#> 1818                      14.63
#> 1819                      26.02
#> 1820                      38.16
#> 1821                       11.3
#> 1822                      20.93
#> 1823                      27.37
#> 1824                      13.58
#> 1825                         28
#> 1826                      25.29
#> 1827                      13.38
#> 1828                      28.01
#> 1829                      34.15
#> 1830                      10.38
#> 1831                      23.64
#> 1832                      25.66
#> 1833                      18.14
#> 1834                      13.17
#> 1835                      23.98
#> 1836                      35.12
#> 1837                      15.15
#> 1838                      28.49
#> 1839                      32.05
#> 1840                       8.93
#> 1841                      19.78
#> 1842                      37.03
#> 1843                      14.18
#> 1844                       24.4
#> 1845                      37.18
#> 1846                      16.39
#> 1847                      29.68
#> 1848                      30.94
#> 1849                       9.78
#> 1850                      21.66
#> 1851                      34.63
#> 1852                      11.44
#> 1853                      24.83
#> 1854                      30.32
#> 1855                      10.33
#> 1856                      23.12
#> 1857                      23.78
#> 1858                       8.62
#> 1859                      21.77
#> 1860                      30.19
#> 1861                      14.01
#> 1862                      23.42
#> 1863                      35.08
#> 1864                      12.25
#> 1865                      24.64
#> 1866                      41.49
#> 1867                      15.88
#> 1868                      22.16
#> 1869                      42.12
#> 1870                      14.84
#> 1871                       22.9
#> 1872                      41.74
#> 1873                      14.44
#> 1874                      27.02
#> 1875                      47.28
#> 1876                      16.19
#> 1877                      27.14
#> 1878                      36.96
#> 1879                       11.6
#> 1880                      23.21
#> 1881                      34.79
#> 1882                      12.37
#> 1883                      25.49
#> 1884                      31.83
#> 1885                        9.4
#> 1886                      16.01
#> 1887                      28.25
#> 1888                      12.18
#> 1889                      22.89
#> 1890                      29.91
#> 1891                      19.57
#> 1892                      32.29
#> 1893                      38.82
#> 1894                       15.4
#> 1895                      27.15
#> 1896                      38.13
#> 1897                      12.84
#> 1898                      24.87
#> 1899                      35.52
#> 1900                      13.27
#> 1901                      28.22
#> 1902                      33.46
#> 1903                       14.7
#> 1904                      25.59
#> 1905                      36.22
#> 1906                      12.57
#> 1907                      23.25
#> 1908                      29.58
#> 1909                      19.22
#> 1910                      13.88
#> 1911                      25.56
#> 1912                      34.13
#> 1913                      15.03
#> 1914                      26.07
#> 1915                      36.08
#> 1916                      10.57
#> 1917                      23.31
#> 1918                      25.74
#> 1919                       12.9
#> 1920                      28.77
#> 1921                      20.19
#> 1922                      12.56
#> 1923                      24.55
#> 1924                      26.41
#> 1925                      11.79
#> 1926                       24.2
#> 1927                      23.79
#> 1928                      10.67
#> 1929                      24.22
#> 1930                       39.1
#> 1931                      12.16
#> 1932                      26.26
#> 1933                      37.56
#> 1934                      13.81
#> 1935                      25.02
#> 1936                      29.96
#> 1937                      14.31
#> 1938                      25.78
#> 1939                      36.06
#> 1940                      15.93
#> 1941                      26.79
#> 1942                      34.22
#> 1943                      16.73
#> 1944                      31.42
#> 1945                      36.24
#> 1946                      12.33
#> 1947                      22.75
#> 1948                       26.3
#> 1949                      13.74
#> 1950                      22.12
#> 1951                      33.92
#> 1952                      14.68
#> 1953                      23.95
#> 1954                      35.69
#> 1955                       13.9
#> 1956                      26.69
#> 1957                      39.08
#> 1958                       17.7
#> 1959                      12.57
#> 1960                      23.28
#> 1961                       35.6
#> 1962                      15.18
#> 1963                      24.46
#> 1964                      38.52
#> 1965                      16.98
#> 1966                      23.62
#> 1967                       52.4
#> 1968                       9.02
#> 1969                      18.58
#> 1970                       17.1
#> 1971                      25.96
#> 1972                      36.42
#> 1973                       12.6
#> 1974                      23.73
#> 1975                      35.63
#> 1976                      11.75
#> 1977                      22.01
#> 1978                      33.27
#> 1979                      10.81
#> 1980                      22.14
#> 1981                      29.59
#> 1982                       10.2
#> 1983                      22.53
#> 1984                      27.02
#> 1985                      12.57
#> 1986                      24.39
#> 1987                      36.57
#> 1988                      11.61
#> 1989                      22.97
#> 1990                      30.74
#> 1991                       19.2
#> 1992                      14.24
#> 1993                      24.29
#> 1994                      37.67
#> 1995                      10.21
#> 1996                      22.04
#> 1997                       34.5
#> 1998                      12.15
#> 1999                      22.49
#> 2000                      30.16
#> 2001                      14.23
#> 2002                      27.87
#> 2003                      39.41
#> 2004                      11.68
#> 2005                      23.86
#> 2006                      43.54
#> 2007                      17.32
#> 2008                      25.41
#> 2009                      47.48
#> 2010                      16.21
#> 2011                      26.08
#> 2012                      32.67
#> 2013                      14.75
#> 2014                      25.69
#> 2015                      30.43
#> 2016                      15.84
#> 2017                      25.13
#> 2018                      37.62
#> 2019                      12.65
#> 2020                      23.54
#> 2021                      43.28
#> 2022                      16.22
#> 2023                      28.36
#> 2024                      32.82
#> 2025                      15.35
#> 2026                      21.52
#> 2027                      33.05
#> 2028                      10.53
#> 2029                      20.95
#> 2030                       28.6
#> 2031                       12.7
#> 2032                      24.38
#> 2033                      33.82
#> 2034                      12.46
#> 2035                      23.22
#> 2036                      36.93
#> 2037                      17.78
#> 2038                       12.9
#> 2039                      22.99
#> 2040                      33.44
#> 2041                      14.18
#> 2042                      24.26
#> 2043                      35.05
#> 2044                      15.72
#> 2045                      22.32
#> 2046                      37.42
#> 2047                      14.88
#> 2048                      21.42
#> 2049                      32.74
#> 2050                       14.3
#> 2051                      21.99
#> 2052                      26.39
#> 2053                       12.8
#> 2054                      24.74
#> 2055                      26.86
#> 2056                      11.62
#> 2057                      20.44
#> 2058                      34.65
#> 2059                      12.29
#> 2060                      21.43
#> 2061                       35.1
#> 2062                      13.33
#> 2063                      23.76
#> 2064                      32.77
#> 2065                      11.66
#> 2066                      22.24
#> 2067                         34
#> 2068                      12.85
#> 2069                      23.76
#> 2070                      32.53
#> 2071                      12.52
#> 2072                      24.68
#> 2073                      34.02
#> 2074                      18.36
#> 2075                      14.86
#> 2076                      21.74
#> 2077                      37.96
#> 2078                          c
#> 2079                      16.69
#> 2080                      20.68
#> 2081                      45.32
#> 2082                      11.65
#> 2083                       20.4
#> 2084                      40.41
#> 2085                      12.02
#> 2086                      20.42
#> 2087                      36.56
#> 2088                      14.76
#> 2089                      21.57
#> 2090                      31.68
#> 2091                      11.83
#> 2092                      20.35
#> 2093                      36.28
#> 2094                         16
#> 2095                      29.93
#> 2096                      46.76
#> 2097                      15.97
#> 2098                      26.71
#> 2099                      36.12
#> 2100                      14.29
#> 2101                      23.49
#> 2102                       33.3
#> 2103                      14.57
#> 2104                      23.25
#> 2105                      39.26
#> 2106                      14.65
#> 2107                      22.38
#> 2108                      36.85
#> 2109                       15.1
#> 2110                      22.63
#> 2111                      30.84
#> 2112                       15.6
#> 2113                       22.3
#> 2114                      38.97
#> 2115                       15.3
#> 2116                      23.63
#> 2117                      38.09
#> 2118                      12.65
#> 2119                       22.2
#> 2120                      36.18
#> 2121                      12.85
#> 2122                       19.9
#> 2123                      37.85
#> 2124                      17.64
#> 2125                      23.56
#> 2126                      37.75
#> 2127                      15.59
#> 2128                      21.39
#> 2129                      33.66
#> 2130                      19.44
#> 2131                      26.49
#> 2132                      39.48
#> 2133                       16.6
#> 2134                      26.04
#> 2135                      25.76
#> 2136                      11.35
#> 2137                      17.93
#> 2138                      38.24
#> 2139                      16.76
#> 2140                      23.16
#> 2141                      32.85
#> 2142                      14.69
#> 2143                      19.73
#> 2144                      34.44
#> 2145                      11.96
#> 2146                         19
#> 2147                      40.61
#> 2148                      19.81
#> 2149                      21.81
#> 2150                      54.17
#> 2151                      16.73
#> 2152                      20.58
#> 2153                      46.96
#> 2154                       8.71
#> 2155                      17.07
#> 2156                      27.43
#> 2157                      14.66
#> 2158                      20.72
#> 2159                      37.83
#> 2160                      11.51
#> 2161                      17.01
#> 2162                      37.41
#> 2163                      18.91
#> 2164                      18.39
#> 2165                      41.44
#> 2166                      14.81
#> 2167                      24.25
#> 2168                      45.47
#> 2169                      13.96
#> 2170                      20.51
#> 2171                      44.48
#> 2172                      19.76
#> 2173                      24.05
#> 2174                       36.2
#> 2175                       18.1
#> 2176                      12.85
#> 2177                      23.69
#> 2178                       36.6
#> 2179                      15.75
#> 2180                      23.43
#> 2181                       33.6
#> 2182                      10.13
#> 2183                      21.09
#> 2184                          c
#> 2185                       11.6
#> 2186                      21.87
#> 2187                      29.39
#> 2188                      16.66
#> 2189                      24.23
#> 2190                      43.72
#> 2191                      16.19
#> 2192                      23.12
#> 2193                      37.99
#> 2194                      12.32
#> 2195                      22.97
#> 2196                      34.44
#> 2197                       9.81
#> 2198                      20.99
#> 2199                       32.4
#> 2200                      12.38
#> 2201                      23.73
#> 2202                      36.23
#> 2203                      13.88
#> 2204                      30.96
#> 2205                      35.59
#> 2206                       13.1
#> 2207                      26.14
#> 2208                         56
#> 2209                       16.5
#> 2210                      27.69
#> 2211                      35.62
#> 2212                       15.6
#> 2213                      29.57
#> 2214                       33.8
#> 2215                      12.21
#> 2216                       23.8
#> 2217                      36.86
#> 2218                      14.93
#> 2219                      26.31
#> 2220                      39.55
#> 2221                      10.16
#> 2222                      22.55
#> 2223                      34.45
#> 2224                      14.97
#> 2225                      24.74
#> 2226                      40.36
#> 2227                      12.32
#> 2228                      24.09
#> 2229                      31.69
#> 2230                      10.99
#> 2231                      19.66
#> 2232                      31.83
#> 2233                      12.07
#> 2234                      24.01
#> 2235                      34.62
#> 2236                      18.75
#> 2237                      12.44
#> 2238                      25.51
#> 2239                      35.31
#> 2240                      10.37
#> 2241                      23.12
#> 2242                      36.17
#> 2243                      16.57
#> 2244                      30.37
#> 2245                      43.96
#> 2246                       11.7
#> 2247                      25.04
#> 2248                      30.14
#> 2249                      12.33
#> 2250                      24.23
#> 2251                      32.19
#> 2252                       13.3
#> 2253                       29.3
#> 2254                      32.52
#> 2255                      14.25
#> 2256                      24.01
#> 2257                      39.37
#> 2258                      11.43
#> 2259                      25.47
#> 2260                      35.01
#> 2261                      12.52
#> 2262                      26.75
#> 2263                      33.13
#> 2264                          c
#> 2265                      10.72
#> 2266                      23.14
#> 2267                      32.09
#> 2268                      11.28
#> 2269                      22.65
#> 2270                      35.86
#> 2271                      13.09
#> 2272                      24.88
#> 2273                      31.34
#> 2274                       13.5
#> 2275                      26.05
#> 2276                      41.82
#> 2277                      11.39
#> 2278                      27.34
#> 2279                      33.41
#> 2280                      12.03
#> 2281                      23.12
#> 2282                       32.4
#> 2283                      18.34
#> 2284                      13.46
#> 2285                      23.58
#> 2286                       35.6
#> 2287                       18.9
#> 2288                      13.16
#> 2289                       25.3
#> 2290                      31.87
#> 2291                      13.69
#> 2292                       26.1
#> 2293                       27.7
#> 2294                      15.39
#> 2295                      29.84
#> 2296                      29.56
#> 2297                      13.06
#> 2298                      25.09
#> 2299                      36.32
#> 2300                      12.46
#> 2301                       26.9
#> 2302                       30.1
#> 2303                      14.82
#> 2304                       25.2
#> 2305                      21.34
#> 2306                      13.69
#> 2307                      25.13
#> 2308                      33.67
#> 2309                      11.06
#> 2310                       22.4
#> 2311                      37.11
#> 2312                      14.77
#> 2313                      25.66
#> 2314                      38.26
#> 2315                       11.5
#> 2316                      20.93
#> 2317                      27.85
#> 2318                      13.92
#> 2319                      27.74
#> 2320                      24.96
#> 2321                      13.47
#> 2322                      27.72
#> 2323                      33.72
#> 2324                      10.27
#> 2325                      24.04
#> 2326                      25.03
#> 2327                      18.13
#> 2328                      13.33
#> 2329                      23.73
#> 2330                      35.09
#> 2331                      15.27
#> 2332                      27.84
#> 2333                      32.35
#> 2334                       9.09
#> 2335                      19.38
#> 2336                      37.25
#> 2337                      14.43
#> 2338                      23.98
#> 2339                      37.74
#> 2340                      16.59
#> 2341                      29.75
#> 2342                      30.63
#> 2343                       9.85
#> 2344                      21.44
#> 2345                      35.07
#> 2346                      11.63
#> 2347                      24.61
#> 2348                      31.27
#> 2349                      10.57
#> 2350                      22.97
#> 2351                      23.54
#> 2352                       8.87
#> 2353                      21.49
#> 2354                      30.19
#> 2355                      14.05
#> 2356                      22.98
#> 2357                      35.08
#> 2358                      12.33
#> 2359                      24.34
#> 2360                      41.53
#> 2361                      15.95
#> 2362                         22
#> 2363                      42.09
#> 2364                       15.1
#> 2365                      22.72
#> 2366                      41.82
#> 2367                      14.65
#> 2368                      26.83
#> 2369                       46.6
#> 2370                      16.29
#> 2371                      27.05
#> 2372                      36.22
#> 2373                      12.62
#> 2374                      22.93
#> 2375                      35.17
#> 2376                      12.44
#> 2377                      25.34
#> 2378                       31.1
#> 2379                       9.45
#> 2380                      15.93
#> 2381                      29.19
#> 2382                      12.28
#> 2383                      22.64
#> 2384                      30.25
#> 2385                      19.65
#> 2386                      32.35
#> 2387                      38.58
#> 2388                      15.49
#> 2389                      26.75
#> 2390                      38.06
#> 2391                      12.82
#> 2392                      24.55
#> 2393                      35.97
#> 2394                      13.44
#> 2395                      28.05
#> 2396                      32.96
#> 2397                      14.84
#> 2398                      25.15
#> 2399                       35.4
#> 2400                      12.73
#> 2401                      23.03
#> 2402                      29.58
#> 2403                      19.15
#> 2404                      13.94
#> 2405                      25.31
#> 2406                      34.25
#> 2407                      15.24
#> 2408                      25.84
#> 2409                      35.69
#> 2410                      10.78
#> 2411                      23.09
#> 2412                      26.04
#> 2413                      12.87
#> 2414                      28.34
#> 2415                      20.19
#> 2416                      12.25
#> 2417                      24.23
#> 2418                      26.71
#> 2419                      11.68
#> 2420                      23.77
#> 2421                      24.12
#> 2422                      10.59
#> 2423                      23.95
#> 2424                      38.71
#> 2425                      12.11
#> 2426                      26.05
#> 2427                      36.71
#> 2428                      13.83
#> 2429                      24.56
#> 2430                         30
#> 2431                      14.47
#> 2432                      25.61
#> 2433                      36.59
#> 2434                      15.75
#> 2435                      26.45
#> 2436                      34.32
#> 2437                      16.96
#> 2438                      31.18
#> 2439                      35.66
#> 2440                      12.74
#> 2441                      22.95
#> 2442                       26.3
#> 2443                      14.06
#> 2444                         22
#> 2445                       34.8
#> 2446                      14.68
#> 2447                      23.75
#> 2448                      36.48
#> 2449                      13.94
#> 2450                      26.24
#> 2451                      39.26
#> 2452                      17.57
#> 2453                       12.6
#> 2454                      22.94
#> 2455                      35.51
#> 2456                      15.31
#> 2457                      24.24
#> 2458                      38.76
#> 2459                      16.91
#> 2460                      22.95
#> 2461                      51.92
#> 2462                       9.11
#> 2463                      18.47
#> 2464                      17.08
#> 2465                      25.67
#> 2466                      36.47
#> 2467                      12.66
#> 2468                      23.47
#> 2469                      35.24
#> 2470                      11.88
#> 2471                      21.78
#> 2472                      32.68
#> 2473                      10.84
#> 2474                      22.08
#> 2475                      29.56
#> 2476                      10.14
#> 2477                      21.71
#> 2478                      27.02
#> 2479                      12.57
#> 2480                      24.16
#> 2481                      36.67
#> 2482                      11.69
#> 2483                      22.72
#> 2484                      30.98
#> 2485                      19.13
#> 2486                      14.33
#> 2487                      24.03
#> 2488                      37.65
#> 2489                      10.43
#> 2490                       21.7
#> 2491                      36.12
#> 2492                      12.39
#> 2493                      22.32
#> 2494                      28.82
#> 2495                      14.42
#> 2496                      27.59
#> 2497                      39.57
#> 2498                      11.75
#> 2499                      23.76
#> 2500                      44.07
#> 2501                      17.45
#> 2502                       25.1
#> 2503                      47.35
#> 2504                      16.26
#> 2505                      25.85
#> 2506                      33.05
#> 2507                      14.77
#> 2508                      25.26
#> 2509                      30.13
#> 2510                         16
#> 2511                      25.07
#> 2512                      37.45
#> 2513                      12.56
#> 2514                      23.45
#> 2515                      43.14
#> 2516                      16.29
#> 2517                      28.12
#> 2518                      33.44
#> 2519                      15.27
#> 2520                      21.33
#> 2521                      33.59
#> 2522                      10.64
#> 2523                      20.66
#> 2524                      28.81
#> 2525                      12.76
#> 2526                      24.11
#> 2527                      33.89
#> 2528                      12.43
#> 2529                      22.87
#> 2530                      36.33
#> 2531                      17.69
#> 2532                      12.95
#> 2533                      22.74
#> 2534                      33.41
#> 2535                      14.11
#> 2536                      24.01
#> 2537                      34.14
#> 2538                      15.86
#> 2539                      22.05
#> 2540                      36.81
#> 2541                      14.72
#> 2542                       21.2
#> 2543                      33.17
#> 2544                       14.4
#> 2545                      21.69
#> 2546                      27.25
#> 2547                      12.87
#> 2548                      24.48
#> 2549                      27.35
#> 2550                       11.7
#> 2551                      20.29
#> 2552                       35.3
#> 2553                      12.35
#> 2554                      21.23
#> 2555                      35.34
#> 2556                      13.33
#> 2557                      23.39
#> 2558                      32.54
#> 2559                      11.72
#> 2560                      22.08
#> 2561                      33.83
#> 2562                      12.98
#> 2563                      23.55
#> 2564                      32.84
#> 2565                      12.64
#> 2566                      24.38
#> 2567                      33.74
#> 2568                      18.15
#> 2569                      14.77
#> 2570                       21.4
#> 2571                      37.65
#> 2572                          c
#> 2573                      16.55
#> 2574                      20.32
#> 2575                      44.75
#> 2576                      11.55
#> 2577                       20.1
#> 2578                      39.59
#> 2579                      11.73
#> 2580                         20
#> 2581                      35.36
#> 2582                      14.67
#> 2583                      21.03
#> 2584                      31.16
#> 2585                      11.79
#> 2586                      20.12
#> 2587                      36.28
#> 2588                      16.19
#> 2589                      29.52
#> 2590                      46.76
#> 2591                      15.84
#> 2592                      26.12
#> 2593                      35.99
#> 2594                      14.15
#> 2595                      23.25
#> 2596                      33.98
#> 2597                      14.57
#> 2598                      22.97
#> 2599                       38.2
#> 2600                      14.48
#> 2601                      21.89
#> 2602                      35.51
#> 2603                      14.96
#> 2604                      22.37
#> 2605                      31.31
#> 2606                      15.41
#> 2607                       21.8
#> 2608                      38.46
#> 2609                      15.17
#> 2610                      23.19
#> 2611                      37.06
#> 2612                      12.62
#> 2613                      21.98
#> 2614                      35.48
#> 2615                      12.85
#> 2616                      19.59
#> 2617                      37.85
#> 2618                      17.59
#> 2619                      23.23
#> 2620                      37.27
#> 2621                      15.65
#> 2622                      21.14
#> 2623                      33.53
#> 2624                      19.07
#> 2625                      26.01
#> 2626                      39.44
#> 2627                      16.26
#> 2628                      25.19
#> 2629                      26.77
#> 2630                      11.33
#> 2631                      17.39
#> 2632                      38.02
#> 2633                      16.53
#> 2634                       22.7
#> 2635                      32.85
#> 2636                       14.6
#> 2637                      19.59
#> 2638                      35.31
#> 2639                         12
#> 2640                       18.7
#> 2641                      40.85
#> 2642                      19.85
#> 2643                      21.36
#> 2644                      55.13
#> 2645                      16.87
#> 2646                       20.4
#> 2647                      45.88
#> 2648                       8.51
#> 2649                      16.57
#> 2650                      27.43
#> 2651                      14.59
#> 2652                      20.27
#> 2653                      37.42
#> 2654                      11.34
#> 2655                      17.29
#> 2656                      37.24
#> 2657                      18.77
#> 2658                      17.96
#> 2659                      41.26
#> 2660                      14.72
#> 2661                      23.76
#> 2662                      45.01
#> 2663                      13.86
#> 2664                       20.5
#> 2665                      43.77
#> 2666                      19.45
#> 2667                      23.91
#> 2668                      37.28
#> 2669                      18.03
#> 2670                      12.92
#> 2671                      23.46
#> 2672                      36.46
#> 2673                      15.57
#> 2674                         23
#> 2675                      32.94
#> 2676                      10.01
#> 2677                      20.89
#> 2678                          c
#> 2679                      11.76
#> 2680                      21.48
#> 2681                      30.04
#> 2682                      16.78
#> 2683                      23.96
#> 2684                      43.72
#> 2685                      16.28
#> 2686                      22.97
#> 2687                       38.3
#> 2688                      12.42
#> 2689                      22.72
#> 2690                      32.94
#> 2691                       9.93
#> 2692                      20.86
#> 2693                       32.4
#> 2694                      12.49
#> 2695                      23.92
#> 2696                      36.23
#> 2697                      14.16
#> 2698                      30.42
#> 2699                      35.36
#> 2700                      13.17
#> 2701                      25.72
#> 2702                      55.66
#> 2703                      16.81
#> 2704                      27.45
#> 2705                      35.66
#> 2706                      15.88
#> 2707                       29.6
#> 2708                      34.64
#> 2709                      12.31
#> 2710                      23.54
#> 2711                      36.73
#> 2712                      15.02
#> 2713                      25.98
#> 2714                      39.39
#> 2715                      10.21
#> 2716                      22.37
#> 2717                      34.22
#> 2718                      15.02
#> 2719                      24.45
#> 2720                      40.26
#> 2721                      12.41
#> 2722                      23.87
#> 2723                      31.71
#> 2724                      10.96
#> 2725                      19.59
#> 2726                      31.61
#> 2727                      12.24
#> 2728                      23.71
#> 2729                      34.77
#> 2730                      18.72
#> 2731                      12.54
#> 2732                      25.32
#> 2733                      35.52
#> 2734                      10.59
#> 2735                      22.76
#> 2736                      36.76
#> 2737                      16.59
#> 2738                      30.35
#> 2739                      44.26
#> 2740                      11.69
#> 2741                      24.93
#> 2742                      30.37
#> 2743                      12.53
#> 2744                      24.23
#> 2745                      32.35
#> 2746                      13.38
#> 2747                      29.03
#> 2748                      32.38
#> 2749                      14.34
#> 2750                      23.83
#> 2751                      38.46
#> 2752                      11.68
#> 2753                      25.29
#> 2754                      35.59
#> 2755                       12.7
#> 2756                      26.82
#> 2757                      33.33
#> 2758                          c
#> 2759                      10.82
#> 2760                      22.88
#> 2761                      32.58
#> 2762                      11.31
#> 2763                      22.52
#> 2764                      36.52
#> 2765                      13.35
#> 2766                       24.7
#> 2767                      32.21
#> 2768                      13.45
#> 2769                      25.62
#> 2770                      42.57
#> 2771                      11.47
#> 2772                       27.1
#> 2773                      33.33
#> 2774                      12.09
#> 2775                      22.84
#> 2776                       31.8
#> 2777                      18.37
#> 2778                      13.57
#> 2779                      23.54
#> 2780                      35.55
#> 2781                      18.76
#> 2782                       13.1
#> 2783                      25.08
#> 2784                      31.37
#> 2785                         14
#> 2786                      25.95
#> 2787                      26.98
#> 2788                      15.43
#> 2789                      29.66
#> 2790                      29.11
#> 2791                      12.78
#> 2792                      24.77
#> 2793                       35.9
#> 2794                      12.36
#> 2795                      26.55
#> 2796                      29.77
#> 2797                       14.6
#> 2798                      24.96
#> 2799                      20.62
#> 2800                      13.55
#> 2801                      24.91
#> 2802                      32.39
#> 2803                      11.03
#> 2804                      22.16
#> 2805                      36.71
#> 2806                      14.66
#> 2807                      25.61
#> 2808                      38.76
#> 2809                       11.4
#> 2810                      20.96
#> 2811                      27.17
#> 2812                      14.02
#> 2813                      27.35
#> 2814                      24.13
#> 2815                      13.32
#> 2816                      27.48
#> 2817                      33.76
#> 2818                       10.5
#> 2819                      23.78
#> 2820                      24.54
#> 2821                      18.12
#> 2822                      13.34
#> 2823                      23.69
#> 2824                      35.18
#> 2825                      14.91
#> 2826                      27.78
#> 2827                      32.27
#> 2828                       9.07
#> 2829                      19.36
#> 2830                      37.78
#> 2831                      14.68
#> 2832                       24.1
#> 2833                      38.77
#> 2834                      16.76
#> 2835                      29.63
#> 2836                      31.37
#> 2837                       9.72
#> 2838                      21.33
#> 2839                      34.53
#> 2840                      11.72
#> 2841                       24.3
#> 2842                      30.38
#> 2843                      10.48
#> 2844                      22.89
#> 2845                      25.64
#> 2846                       8.93
#> 2847                      21.54
#> 2848                      31.32
#> 2849                       14.2
#> 2850                      23.13
#> 2851                      35.49
#> 2852                      12.35
#> 2853                       24.2
#> 2854                      41.25
#> 2855                       16.1
#> 2856                      22.07
#> 2857                      42.19
#> 2858                      15.33
#> 2859                      22.71
#> 2860                      42.22
#> 2861                      14.64
#> 2862                      26.69
#> 2863                      46.85
#> 2864                      16.13
#> 2865                      26.73
#> 2866                      35.92
#> 2867                       11.7
#> 2868                      22.93
#> 2869                      35.21
#> 2870                      12.36
#> 2871                      25.32
#> 2872                      31.22
#> 2873                       9.57
#> 2874                      15.98
#> 2875                       30.1
#> 2876                      12.24
#> 2877                      22.41
#> 2878                      30.36
#> 2879                      19.97
#> 2880                      32.45
#> 2881                       38.3
#> 2882                      15.41
#> 2883                      26.68
#> 2884                      38.16
#> 2885                      12.87
#> 2886                      24.53
#> 2887                      35.97
#> 2888                      13.41
#> 2889                      27.98
#> 2890                      32.25
#> 2891                      14.66
#> 2892                      25.06
#> 2893                      35.24
#> 2894                      12.87
#> 2895                      23.07
#> 2896                       29.6
#> 2897                      19.16
#> 2898                      13.99
#> 2899                      25.27
#> 2900                      34.15
#> 2901                      15.17
#> 2902                      25.71
#> 2903                      35.17
#> 2904                      10.88
#> 2905                       22.7
#> 2906                      26.92
#> 2907                      12.89
#> 2908                      27.98
#> 2909                      21.47
#> 2910                      12.34
#> 2911                      24.17
#> 2912                      26.71
#> 2913                      11.71
#> 2914                      23.77
#> 2915                      24.76
#> 2916                      10.56
#> 2917                      23.91
#> 2918                      38.78
#> 2919                      12.18
#> 2920                      25.89
#> 2921                      36.79
#> 2922                      13.74
#> 2923                      24.19
#> 2924                      29.87
#> 2925                      14.36
#> 2926                      25.61
#> 2927                      36.06
#> 2928                      15.84
#> 2929                      26.35
#> 2930                      34.68
#> 2931                      17.13
#> 2932                      31.35
#> 2933                      35.46
#> 2934                      12.92
#> 2935                      23.12
#> 2936                       26.1
#> 2937                      14.24
#> 2938                      22.15
#> 2939                      33.42
#> 2940                      14.74
#> 2941                      23.78
#> 2942                      35.95
#> 2943                      13.96
#> 2944                      26.15
#> 2945                      40.32
#> 2946                      17.62
#> 2947                      12.75
#> 2948                      22.88
#> 2949                      35.33
#> 2950                      15.61
#> 2951                      24.38
#> 2952                      39.33
#> 2953                      17.36
#> 2954                      23.06
#> 2955                      51.58
#> 2956                       8.87
#> 2957                      18.39
#> 2958                       17.3
#> 2959                      25.86
#> 2960                      35.87
#> 2961                      12.71
#> 2962                      23.32
#> 2963                      34.51
#> 2964                      12.04
#> 2965                      21.75
#> 2966                      32.49
#> 2967                       10.9
#> 2968                      22.02
#> 2969                      29.21
#> 2970                      10.36
#> 2971                      21.57
#> 2972                      26.89
#> 2973                      12.63
#> 2974                         24
#> 2975                      36.76
#> 2976                      11.76
#> 2977                      22.56
#> 2978                      30.91
#> 2979                      19.15
#> 2980                      14.42
#> 2981                      23.98
#> 2982                      37.36
#> 2983                       10.5
#> 2984                      21.49
#> 2985                      36.22
#> 2986                      12.55
#> 2987                      22.17
#> 2988                      29.26
#> 2989                      14.67
#> 2990                      27.48
#> 2991                      40.61
#> 2992                      11.72
#> 2993                       23.5
#> 2994                      42.93
#> 2995                      17.63
#> 2996                      25.15
#> 2997                      46.88
#> 2998                       16.3
#> 2999                      25.82
#> 3000                      33.05
#> 3001                      14.85
#> 3002                      25.28
#> 3003                      30.72
#> 3004                      15.99
#> 3005                      24.97
#> 3006                      37.38
#> 3007                      12.78
#> 3008                      23.59
#> 3009                      43.01
#> 3010                      16.51
#> 3011                         28
#> 3012                      32.61
#> 3013                      15.39
#> 3014                      21.37
#> 3015                      33.15
#> 3016                      10.63
#> 3017                      20.65
#> 3018                      28.54
#> 3019                      12.86
#> 3020                      23.99
#> 3021                         34
#> 3022                       12.4
#> 3023                      22.69
#> 3024                      35.07
#> 3025                      17.74
#> 3026                      13.06
#> 3027                      22.71
#> 3028                      33.48
#> 3029                      14.16
#> 3030                      24.08
#> 3031                      34.74
#> 3032                      16.43
#> 3033                      22.35
#> 3034                       37.3
#> 3035                      14.63
#> 3036                      21.06
#> 3037                      33.33
#> 3038                      14.44
#> 3039                      21.54
#> 3040                      27.47
#> 3041                      13.08
#> 3042                      24.65
#> 3043                      26.91
#> 3044                      11.68
#> 3045                      20.12
#> 3046                      35.66
#> 3047                      12.48
#> 3048                      21.27
#> 3049                      35.28
#> 3050                      13.36
#> 3051                      23.29
#> 3052                      32.42
#> 3053                      11.94
#> 3054                      22.15
#> 3055                      34.19
#> 3056                      13.03
#> 3057                      23.35
#> 3058                      32.74
#> 3059                      12.71
#> 3060                       24.3
#> 3061                      33.51
#> 3062                      18.35
#> 3063                      15.03
#> 3064                      21.52
#> 3065                      37.88
#> 3066                          c
#> 3067                         17
#> 3068                       20.5
#> 3069                      44.94
#> 3070                      11.94
#> 3071                      20.12
#> 3072                      39.17
#> 3073                      11.86
#> 3074                         20
#> 3075                      35.13
#> 3076                      15.04
#> 3077                      21.16
#> 3078                       31.5
#> 3079                      11.85
#> 3080                      19.94
#> 3081                      35.99
#> 3082                       16.8
#> 3083                      29.74
#> 3084                      45.73
#> 3085                      15.96
#> 3086                      25.98
#> 3087                      35.84
#> 3088                      14.58
#> 3089                      23.28
#> 3090                      34.82
#> 3091                      14.59
#> 3092                      23.23
#> 3093                      38.59
#> 3094                      14.54
#> 3095                      22.01
#> 3096                      36.54
#> 3097                      15.07
#> 3098                       22.3
#> 3099                      31.54
#> 3100                      15.72
#> 3101                      21.87
#> 3102                      39.32
#> 3103                      15.49
#> 3104                      24.56
#> 3105                      36.97
#> 3106                      13.02
#> 3107                         22
#> 3108                      36.64
#> 3109                       12.8
#> 3110                      19.76
#> 3111                      38.46
#> 3112                      17.84
#> 3113                      23.35
#> 3114                      37.17
#> 3115                         16
#> 3116                      21.47
#> 3117                      34.02
#> 3118                      19.22
#> 3119                      26.09
#> 3120                      40.44
#> 3121                      16.65
#> 3122                      25.64
#> 3123                       26.9
#> 3124                       11.5
#> 3125                      17.49
#> 3126                      39.56
#> 3127                      16.46
#> 3128                      22.63
#> 3129                       33.5
#> 3130                      14.81
#> 3131                      19.63
#> 3132                      35.89
#> 3133                      12.13
#> 3134                       18.6
#> 3135                      39.39
#> 3136                      20.26
#> 3137                      21.45
#> 3138                      55.51
#> 3139                      17.24
#> 3140                      20.56
#> 3141                      45.64
#> 3142                       8.88
#> 3143                      16.75
#> 3144                      27.14
#> 3145                      14.73
#> 3146                      20.39
#> 3147                      38.79
#> 3148                      11.53
#> 3149                      17.37
#> 3150                       36.9
#> 3151                      19.24
#> 3152                      18.16
#> 3153                      40.85
#> 3154                      15.09
#> 3155                      24.02
#> 3156                      45.45
#> 3157                      14.23
#> 3158                      20.74
#> 3159                      43.97
#> 3160                      19.51
#> 3161                      24.14
#> 3162                      37.63
#> 3163                      18.07
#> 3164                      13.05
#> 3165                      23.39
#> 3166                      36.43
#> 3167                      15.56
#> 3168                      22.83
#> 3169                      32.83
#> 3170                      10.15
#> 3171                      20.87
#> 3172                          c
#> 3173                      11.66
#> 3174                      21.34
#> 3175                      29.82
#> 3176                      17.12
#> 3177                      23.93
#> 3178                      45.08
#> 3179                      16.56
#> 3180                      23.17
#> 3181                      39.21
#> 3182                      12.58
#> 3183                      22.88
#> 3184                      32.23
#> 3185                       9.92
#> 3186                      20.83
#> 3187                       31.4
#> 3188                      12.88
#> 3189                      24.06
#> 3190                         36
#> 3191                      14.08
#> 3192                      30.39
#> 3193                      35.14
#> 3194                      13.06
#> 3195                      25.52
#> 3196                      56.38
#> 3197                      16.78
#> 3198                      27.24
#> 3199                      34.19
#> 3200                      16.25
#> 3201                      29.26
#> 3202                       35.2
#> 3203                      12.53
#> 3204                      23.64
#> 3205                      37.01
#> 3206                      15.15
#> 3207                      25.95
#> 3208                      39.15
#> 3209                      10.28
#> 3210                      22.25
#> 3211                      34.31
#> 3212                      15.14
#> 3213                      24.34
#> 3214                      40.22
#> 3215                      12.63
#> 3216                      23.88
#> 3217                      32.29
#> 3218                      11.11
#> 3219                      19.51
#> 3220                      31.51
#> 3221                      12.39
#> 3222                      23.56
#> 3223                      34.58
#> 3224                      18.69
#> 3225                       12.6
#> 3226                      25.17
#> 3227                       35.5
#> 3228                      10.65
#> 3229                      22.51
#> 3230                      36.76
#> 3231                      16.56
#> 3232                       30.2
#> 3233                      44.17
#> 3234                      11.74
#> 3235                      24.87
#> 3236                      29.91
#> 3237                      12.36
#> 3238                      23.75
#> 3239                      32.08
#> 3240                      13.42
#> 3241                      28.99
#> 3242                      32.24
#> 3243                      14.41
#> 3244                      23.87
#> 3245                      38.54
#> 3246                      11.84
#> 3247                      25.34
#> 3248                      35.71
#> 3249                      12.88
#> 3250                      26.63
#> 3251                      33.75
#> 3252                          c
#> 3253                      10.82
#> 3254                       22.7
#> 3255                      32.54
#> 3256                      11.52
#> 3257                      22.42
#> 3258                       36.7
#> 3259                      13.39
#> 3260                      24.48
#> 3261                      32.33
#> 3262                      13.47
#> 3263                      25.47
#> 3264                       42.2
#> 3265                      11.64
#> 3266                      27.05
#> 3267                      33.37
#> 3268                      12.11
#> 3269                      22.63
#> 3270                      31.91
#> 3271                      18.16
#> 3272                      13.42
#> 3273                      23.25
#> 3274                      35.38
#> 3275                      18.55
#> 3276                      12.98
#> 3277                      24.76
#> 3278                      31.44
#> 3279                      13.82
#> 3280                      25.47
#> 3281                      26.81
#> 3282                      15.16
#> 3283                      28.89
#> 3284                      29.86
#> 3285                      12.65
#> 3286                      24.27
#> 3287                      37.04
#> 3288                      12.28
#> 3289                      26.32
#> 3290                      30.26
#> 3291                      14.37
#> 3292                      24.76
#> 3293                      20.67
#> 3294                      13.59
#> 3295                      24.76
#> 3296                      32.21
#> 3297                      10.95
#> 3298                      21.99
#> 3299                      36.04
#> 3300                      14.31
#> 3301                      25.19
#> 3302                      38.54
#> 3303                       11.3
#> 3304                       20.5
#> 3305                       28.2
#> 3306                      13.71
#> 3307                      27.22
#> 3308                      22.64
#> 3309                      13.22
#> 3310                      26.97
#> 3311                      33.97
#> 3312                      10.47
#> 3313                      23.55
#> 3314                      25.33
#> 3315                      17.88
#> 3316                       13.2
#> 3317                      23.33
#> 3318                      34.92
#> 3319                         15
#> 3320                      27.26
#> 3321                      31.72
#> 3322                       9.04
#> 3323                      18.89
#> 3324                      38.62
#> 3325                      14.16
#> 3326                      23.59
#> 3327                      37.68
#> 3328                      16.85
#> 3329                      30.65
#> 3330                      31.48
#> 3331                       9.65
#> 3332                      21.19
#> 3333                      33.59
#> 3334                      11.73
#> 3335                      24.28
#> 3336                      31.08
#> 3337                      10.65
#> 3338                      22.87
#> 3339                      24.77
#> 3340                       9.05
#> 3341                      21.49
#> 3342                      32.45
#> 3343                      14.08
#> 3344                      22.37
#> 3345                      35.41
#> 3346                      12.05
#> 3347                      23.67
#> 3348                      40.78
#> 3349                       15.7
#> 3350                      21.38
#> 3351                      41.73
#> 3352                      14.81
#> 3353                      22.27
#> 3354                      41.62
#> 3355                      14.21
#> 3356                      26.24
#> 3357                      46.34
#> 3358                      15.83
#> 3359                      26.34
#> 3360                      35.16
#> 3361                      11.65
#> 3362                      22.72
#> 3363                      34.84
#> 3364                      12.28
#> 3365                      24.66
#> 3366                      30.49
#> 3367                       9.63
#> 3368                      15.63
#> 3369                      29.41
#> 3370                      12.28
#> 3371                      22.37
#> 3372                      30.51
#> 3373                      19.64
#> 3374                      32.06
#> 3375                       38.2
#> 3376                       15.3
#> 3377                      26.33
#> 3378                      37.93
#> 3379                      12.76
#> 3380                      24.22
#> 3381                      35.07
#> 3382                      13.48
#> 3383                      27.51
#> 3384                      31.91
#> 3385                      14.68
#> 3386                      24.83
#> 3387                      34.82
#> 3388                      12.73
#> 3389                      22.75
#> 3390                      29.82
#> 3391                      18.86
#> 3392                      13.77
#> 3393                      24.85
#> 3394                      33.98
#> 3395                      15.14
#> 3396                      25.51
#> 3397                      35.09
#> 3398                      10.82
#> 3399                      22.54
#> 3400                      25.82
#> 3401                      12.89
#> 3402                      27.61
#> 3403                      21.15
#> 3404                      12.19
#> 3405                      24.15
#> 3406                      26.71
#> 3407                      11.46
#> 3408                      23.25
#> 3409                      24.19
#> 3410                      10.51
#> 3411                       23.7
#> 3412                         38
#> 3413                      12.28
#> 3414                      25.48
#> 3415                      37.59
#> 3416                      13.55
#> 3417                      24.01
#> 3418                      30.04
#> 3419                      14.12
#> 3420                      25.25
#> 3421                      36.44
#> 3422                      15.44
#> 3423                      25.74
#> 3424                      34.78
#> 3425                      16.63
#> 3426                      30.52
#> 3427                      35.59
#> 3428                      12.84
#> 3429                      22.82
#> 3430                      25.63
#> 3431                      13.74
#> 3432                      21.55
#> 3433                       32.7
#> 3434                      14.56
#> 3435                      23.29
#> 3436                      35.44
#> 3437                      13.74
#> 3438                      25.87
#> 3439                      40.49
#> 3440                      17.46
#> 3441                      12.65
#> 3442                      22.65
#> 3443                      35.31
#> 3444                      15.21
#> 3445                      24.07
#> 3446                      39.37
#> 3447                      17.09
#> 3448                      22.61
#> 3449                      51.28
#> 3450                       8.98
#> 3451                      18.11
#> 3452                      16.86
#> 3453                      25.26
#> 3454                      35.38
#> 3455                      12.81
#> 3456                      23.27
#> 3457                      34.74
#> 3458                       11.9
#> 3459                       21.6
#> 3460                      33.33
#> 3461                       10.9
#> 3462                      21.81
#> 3463                       29.2
#> 3464                       10.4
#> 3465                      21.36
#> 3466                      27.16
#> 3467                      12.57
#> 3468                      23.87
#> 3469                      36.65
#> 3470                      11.68
#> 3471                      22.41
#> 3472                      30.35
#> 3473                      18.84
#> 3474                       14.2
#> 3475                      23.58
#> 3476                       36.9
#> 3477                      10.61
#> 3478                      21.55
#> 3479                      36.76
#> 3480                      12.52
#> 3481                      21.99
#> 3482                      28.98
#> 3483                      14.53
#> 3484                      26.95
#> 3485                       39.5
#> 3486                      11.79
#> 3487                      23.55
#> 3488                      43.14
#> 3489                      16.98
#> 3490                       24.4
#> 3491                      46.04
#> 3492                      15.94
#> 3493                      25.42
#> 3494                       32.5
#> 3495                      14.64
#> 3496                      24.72
#> 3497                      30.23
#> 3498                      15.69
#> 3499                      24.27
#> 3500                      36.58
#> 3501                      12.56
#> 3502                      23.11
#> 3503                      42.88
#> 3504                      16.45
#> 3505                       27.7
#> 3506                      31.99
#> 3507                       15.4
#> 3508                      21.21
#> 3509                      32.54
#> 3510                      10.66
#> 3511                       20.5
#> 3512                      28.66
#> 3513                      12.72
#> 3514                      23.78
#> 3515                      33.98
#> 3516                      12.33
#> 3517                      22.33
#> 3518                      34.75
#> 3519                      17.62
#> 3520                      12.97
#> 3521                      22.56
#> 3522                      33.39
#> 3523                      13.95
#> 3524                      23.69
#> 3525                       34.9
#> 3526                      15.56
#> 3527                      21.32
#> 3528                      36.61
#> 3529                      14.67
#> 3530                      20.96
#> 3531                      33.93
#> 3532                      14.27
#> 3533                      21.21
#> 3534                      26.61
#> 3535                      12.79
#> 3536                      24.47
#> 3537                      26.97
#> 3538                      11.67
#> 3539                      19.96
#> 3540                      35.18
#> 3541                      12.37
#> 3542                      21.16
#> 3543                      35.91
#> 3544                      13.29
#> 3545                      23.29
#> 3546                      32.28
#> 3547                      11.93
#> 3548                      22.05
#> 3549                      33.74
#> 3550                      13.02
#> 3551                      23.26
#> 3552                      33.16
#> 3553                      12.78
#> 3554                      24.13
#> 3555                       33.2
#> 3556                      17.99
#> 3557                       14.7
#> 3558                      21.12
#> 3559                      37.63
#> 3560                          c
#> 3561                      16.34
#> 3562                      19.94
#> 3563                         45
#> 3564                       11.8
#> 3565                      19.27
#> 3566                      39.14
#> 3567                      11.83
#> 3568                      19.83
#> 3569                      35.17
#> 3570                       14.7
#> 3571                       20.6
#> 3572                      30.85
#> 3573                      11.82
#> 3574                      19.74
#> 3575                      36.12
#> 3576                      16.12
#> 3577                      28.94
#> 3578                      44.67
#> 3579                      15.77
#> 3580                      25.87
#> 3581                      35.68
#> 3582                      14.19
#> 3583                      22.68
#> 3584                      33.94
#> 3585                      14.21
#> 3586                      22.73
#> 3587                       38.1
#> 3588                      14.25
#> 3589                      21.62
#> 3590                      35.58
#> 3591                      14.88
#> 3592                      21.74
#> 3593                      31.54
#> 3594                      15.27
#> 3595                      21.59
#> 3596                      38.36
#> 3597                      15.15
#> 3598                      24.27
#> 3599                      37.41
#> 3600                      12.54
#> 3601                      21.44
#> 3602                      35.94
#> 3603                      12.63
#> 3604                      19.47
#> 3605                      38.27
#> 3606                      17.54
#> 3607                      22.84
#> 3608                      37.37
#> 3609                       15.6
#> 3610                      20.89
#> 3611                       33.7
#> 3612                      18.63
#> 3613                      25.56
#> 3614                      39.52
#> 3615                      16.31
#> 3616                      25.74
#> 3617                      27.41
#> 3618                       11.2
#> 3619                      17.22
#> 3620                      38.68
#> 3621                      16.49
#> 3622                      22.44
#> 3623                      33.17
#> 3624                      14.55
#> 3625                      19.65
#> 3626                      35.46
#> 3627                      11.94
#> 3628                      18.37
#> 3629                      39.39
#> 3630                      19.33
#> 3631                      21.17
#> 3632                      55.56
#> 3633                      16.54
#> 3634                      19.79
#> 3635                      45.75
#> 3636                       8.78
#> 3637                      16.65
#> 3638                      27.22
#> 3639                      14.55
#> 3640                      19.72
#> 3641                      37.72
#> 3642                      11.54
#> 3643                      17.31
#> 3644                      37.71
#> 3645                      18.99
#> 3646                      18.27
#> 3647                      41.64
#> 3648                      14.69
#> 3649                      23.32
#> 3650                      44.48
#> 3651                      13.85
#> 3652                      21.06
#> 3653                       44.4
#> 3654                      19.18
#> 3655                      23.52
#> 3656                      36.92
#> 3657                      17.99
#> 3658                      13.01
#> 3659                      23.26
#> 3660                      36.25
#> 3661                       15.4
#> 3662                      22.67
#> 3663                      32.93
#> 3664                         10
#> 3665                      20.62
#> 3666                          c
#> 3667                       11.8
#> 3668                      21.71
#> 3669                      29.67
#> 3670                       16.8
#> 3671                      23.57
#> 3672                      46.28
#> 3673                         16
#> 3674                      22.68
#> 3675                       37.8
#> 3676                      12.51
#> 3677                      22.77
#> 3678                      31.95
#> 3679                      10.08
#> 3680                      20.58
#> 3681                       31.8
#> 3682                      12.79
#> 3683                      23.76
#> 3684                      35.66
#> 3685                      14.14
#> 3686                       30.4
#> 3687                      32.62
#> 3688                      12.95
#> 3689                      25.41
#> 3690                      55.81
#> 3691                      16.52
#> 3692                      26.86
#> 3693                      34.23
#> 3694                      16.48
#> 3695                      28.89
#> 3696                      34.83
#> 3697                      12.26
#> 3698                      23.49
#> 3699                      36.87
#> 3700                      15.17
#> 3701                      25.85
#> 3702                      38.54
#> 3703                      10.29
#> 3704                      22.06
#> 3705                      33.84
#> 3706                      15.19
#> 3707                       24.4
#> 3708                      39.64
#> 3709                      12.61
#> 3710                      23.68
#> 3711                      32.31
#> 3712                      11.13
#> 3713                      19.38
#> 3714                      31.95
#> 3715                      12.43
#> 3716                      23.36
#> 3717                      35.09
#> 3718                      18.62
#> 3719                       12.6
#> 3720                      25.02
#> 3721                      35.72
#> 3722                      10.59
#> 3723                       22.4
#> 3724                      37.03
#> 3725                      16.29
#> 3726                      29.71
#> 3727                      44.65
#> 3728                      11.84
#> 3729                      24.72
#> 3730                      30.37
#> 3731                      12.41
#> 3732                      23.76
#> 3733                      32.02
#> 3734                      13.39
#> 3735                      28.82
#> 3736                      32.43
#> 3737                      14.21
#> 3738                       23.7
#> 3739                      38.74
#> 3740                      11.85
#> 3741                      25.27
#> 3742                      36.68
#> 3743                      12.82
#> 3744                      26.24
#> 3745                      34.17
#> 3746                          c
#> 3747                      10.94
#> 3748                      22.58
#> 3749                      33.07
#> 3750                      11.57
#> 3751                      22.23
#> 3752                      37.14
#> 3753                      13.33
#> 3754                      24.68
#> 3755                      32.67
#> 3756                      13.54
#> 3757                      25.43
#> 3758                      41.46
#> 3759                      11.74
#> 3760                      26.93
#> 3761                      33.01
#> 3762                      12.09
#> 3763                      22.49
#> 3764                      32.53
#> 3765                      17.99
#> 3766                      13.41
#> 3767                      22.89
#> 3768                      35.31
#> 3769                      18.43
#> 3770                      12.93
#> 3771                      24.55
#> 3772                      31.42
#> 3773                      13.86
#> 3774                      25.24
#> 3775                      27.54
#> 3776                      15.05
#> 3777                       28.6
#> 3778                      29.11
#> 3779                      12.53
#> 3780                      24.03
#> 3781                      36.27
#> 3782                      12.29
#> 3783                      26.23
#> 3784                      29.32
#> 3785                      14.33
#> 3786                      24.51
#> 3787                      20.67
#> 3788                       13.5
#> 3789                       24.6
#> 3790                      32.27
#> 3791                      11.07
#> 3792                      21.77
#> 3793                      36.09
#> 3794                      14.43
#> 3795                      25.03
#> 3796                      39.22
#> 3797                      11.23
#> 3798                      20.32
#> 3799                       28.2
#> 3800                      13.81
#> 3801                      26.72
#> 3802                      22.81
#> 3803                      12.96
#> 3804                      26.75
#> 3805                      33.76
#> 3806                       10.3
#> 3807                      23.45
#> 3808                      25.73
#> 3809                       17.8
#> 3810                      13.18
#> 3811                      23.15
#> 3812                      34.76
#> 3813                      14.92
#> 3814                      26.93
#> 3815                      31.95
#> 3816                       9.23
#> 3817                      19.45
#> 3818                      38.84
#> 3819                      14.02
#> 3820                      23.26
#> 3821                      36.49
#> 3822                      16.63
#> 3823                      30.26
#> 3824                      30.56
#> 3825                       9.66
#> 3826                      21.16
#> 3827                      33.43
#> 3828                      11.72
#> 3829                      23.85
#> 3830                      31.27
#> 3831                      10.74
#> 3832                      22.81
#> 3833                      24.12
#> 3834                          9
#> 3835                      21.19
#> 3836                      32.95
#> 3837                       13.9
#> 3838                      22.28
#> 3839                      35.12
#> 3840                      12.01
#> 3841                      23.27
#> 3842                      41.15
#> 3843                      15.69
#> 3844                      21.23
#> 3845                      40.36
#> 3846                      14.81
#> 3847                       22.2
#> 3848                      41.47
#> 3849                       14.1
#> 3850                      26.15
#> 3851                         46
#> 3852                      15.96
#> 3853                      25.99
#> 3854                      35.41
#> 3855                      11.64
#> 3856                      22.47
#> 3857                      35.18
#> 3858                      12.21
#> 3859                      24.87
#> 3860                         30
#> 3861                       9.64
#> 3862                      15.03
#> 3863                      29.32
#> 3864                      12.31
#> 3865                      22.01
#> 3866                      31.22
#> 3867                      19.63
#> 3868                       31.6
#> 3869                      37.65
#> 3870                      15.17
#> 3871                      26.11
#> 3872                      37.94
#> 3873                      12.77
#> 3874                      23.83
#> 3875                      34.84
#> 3876                      13.39
#> 3877                       27.1
#> 3878                      31.91
#> 3879                      14.77
#> 3880                      24.96
#> 3881                      34.27
#> 3882                       12.7
#> 3883                      22.49
#> 3884                      30.15
#> 3885                      18.66
#> 3886                      13.68
#> 3887                      24.54
#> 3888                      33.87
#> 3889                      14.83
#> 3890                      25.22
#> 3891                      35.57
#> 3892                      10.68
#> 3893                      22.15
#> 3894                      24.63
#> 3895                      12.74
#> 3896                      27.22
#> 3897                      21.15
#> 3898                      12.17
#> 3899                      24.18
#> 3900                      26.41
#> 3901                       11.2
#> 3902                      23.22
#> 3903                      24.19
#> 3904                      10.53
#> 3905                      23.15
#> 3906                      37.71
#> 3907                      12.15
#> 3908                      24.92
#> 3909                      36.43
#> 3910                       13.4
#> 3911                      23.72
#> 3912                      29.91
#> 3913                      14.12
#> 3914                      24.86
#> 3915                      36.53
#> 3916                      15.37
#> 3917                      25.43
#> 3918                       34.9
#> 3919                      16.62
#> 3920                       30.3
#> 3921                      35.44
#> 3922                      12.78
#> 3923                      22.38
#> 3924                      25.24
#> 3925                      13.69
#> 3926                      21.22
#> 3927                      31.95
#> 3928                      14.49
#> 3929                      23.09
#> 3930                      35.49
#> 3931                      13.59
#> 3932                      25.68
#> 3933                      40.85
#> 3934                      17.31
#> 3935                      12.63
#> 3936                      22.35
#> 3937                      35.26
#> 3938                      15.23
#> 3939                      23.85
#> 3940                      39.06
#> 3941                       17.4
#> 3942                      22.68
#> 3943                      49.54
#> 3944                       8.69
#> 3945                      18.12
#> 3946                      16.81
#> 3947                      25.32
#> 3948                      35.53
#> 3949                      12.88
#> 3950                      22.93
#> 3951                      34.69
#> 3952                      11.96
#> 3953                      21.41
#> 3954                      33.24
#> 3955                      10.82
#> 3956                       21.3
#> 3957                      29.02
#> 3958                      10.45
#> 3959                      21.23
#> 3960                      27.58
#> 3961                      12.44
#> 3962                      23.12
#> 3963                      36.79
#> 3964                      11.54
#> 3965                       22.1
#> 3966                      30.31
#> 3967                      18.73
#> 3968                      14.26
#> 3969                      23.28
#> 3970                      36.87
#> 3971                      10.63
#> 3972                      21.39
#> 3973                      36.86
#> 3974                      12.51
#> 3975                      21.29
#> 3976                      28.34
#> 3977                      14.66
#> 3978                      26.99
#> 3979                      40.64
#> 3980                      11.77
#> 3981                      23.24
#> 3982                      42.68
#> 3983                      17.07
#> 3984                      24.11
#> 3985                      45.74
#> 3986                      16.12
#> 3987                      25.31
#> 3988                      33.45
#> 3989                      14.59
#> 3990                      24.66
#> 3991                      30.38
#> 3992                      15.93
#> 3993                      23.86
#> 3994                      36.33
#> 3995                      12.83
#> 3996                      22.74
#> 3997                      41.87
#> 3998                      16.64
#> 3999                      27.43
#> 4000                      32.02
#> 4001                      15.49
#> 4002                      20.97
#> 4003                      32.65
#> 4004                      10.62
#> 4005                      20.23
#> 4006                      28.56
#> 4007                      12.79
#> 4008                       23.2
#> 4009                      33.98
#> 4010                      12.25
#> 4011                      21.98
#> 4012                      35.23
#> 4013                      17.33
#> 4014                      12.91
#> 4015                      21.99
#> 4016                      33.34
#> 4017                      13.99
#> 4018                      23.29
#> 4019                      35.05
#> 4020                      15.75
#> 4021                      21.18
#> 4022                      36.44
#> 4023                      14.67
#> 4024                      20.44
#> 4025                      33.93
#> 4026                       14.2
#> 4027                      21.19
#> 4028                      27.47
#> 4029                      12.93
#> 4030                      24.09
#> 4031                      27.19
#> 4032                      11.54
#> 4033                      19.45
#> 4034                      34.65
#> 4035                      12.32
#> 4036                      20.86
#> 4037                      35.57
#> 4038                      13.16
#> 4039                      22.78
#> 4040                       32.6
#> 4041                      11.88
#> 4042                      20.71
#> 4043                      33.95
#> 4044                      12.95
#> 4045                      22.98
#> 4046                      31.84
#> 4047                      12.65
#> 4048                      23.84
#> 4049                      33.28
#> 4050                      17.91
#> 4051                      14.79
#> 4052                      20.83
#> 4053                      37.52
#> 4054                          c
#> 4055                      16.57
#> 4056                      19.75
#> 4057                       44.9
#> 4058                       11.9
#> 4059                      18.78
#> 4060                      39.62
#> 4061                      11.77
#> 4062                      19.43
#> 4063                      34.45
#> 4064                      14.78
#> 4065                      20.38
#> 4066                       31.9
#> 4067                      11.84
#> 4068                      19.45
#> 4069                      35.53
#> 4070                      16.15
#> 4071                      28.03
#> 4072                      44.67
#> 4073                      15.81
#> 4074                      25.44
#> 4075                      35.55
#> 4076                      14.45
#> 4077                      22.27
#> 4078                      34.17
#> 4079                      14.27
#> 4080                      23.12
#> 4081                      37.62
#> 4082                      14.14
#> 4083                       21.4
#> 4084                      35.65
#> 4085                         15
#> 4086                      21.67
#> 4087                      31.78
#> 4088                      15.21
#> 4089                      20.02
#> 4090                      38.94
#> 4091                       15.3
#> 4092                      23.94
#> 4093                      36.98
#> 4094                      12.84
#> 4095                      20.69
#> 4096                      35.71
#> 4097                      12.77
#> 4098                      19.24
#> 4099                       39.2
#> 4100                      17.58
#> 4101                      22.33
#> 4102                      36.59
#> 4103                      15.78
#> 4104                       20.8
#> 4105                      33.94
#> 4106                       18.7
#> 4107                      25.46
#> 4108                      39.68
#> 4109                      16.47
#> 4110                      25.63
#> 4111                       26.4
#> 4112                      11.39
#> 4113                      17.02
#> 4114                       38.9
#> 4115                      16.58
#> 4116                      22.29
#> 4117                      32.85
#> 4118                      14.54
#> 4119                      19.45
#> 4120                      35.36
#> 4121                      11.94
#> 4122                      18.06
#> 4123                      40.16
#> 4124                      19.42
#> 4125                      21.23
#> 4126                      53.85
#> 4127                      16.82
#> 4128                       19.3
#> 4129                      47.35
#> 4130                       8.76
#> 4131                      15.98
#> 4132                      27.51
#> 4133                      14.73
#> 4134                      19.72
#> 4135                      37.93
#> 4136                      11.56
#> 4137                      16.54
#> 4138                       35.2
#> 4139                      19.14
#> 4140                      18.28
#> 4141                      42.02
#> 4142                      14.81
#> 4143                      23.19
#> 4144                      44.25
#> 4145                      13.89
#> 4146                      20.41
#> 4147                      43.83
#> 4148                      18.91
#> 4149                      23.47
#> 4150                      36.56
#> 4151                      17.69
#> 4152                      12.94
#> 4153                      22.65
#> 4154                      36.19
#> 4155                      15.28
#> 4156                      21.94
#> 4157                       33.2
#> 4158                      10.16
#> 4159                      19.92
#> 4160                          c
#> 4161                      11.61
#> 4162                      21.21
#> 4163                      29.45
#> 4164                      16.67
#> 4165                      23.06
#> 4166                      46.83
#> 4167                      15.92
#> 4168                      21.69
#> 4169                      38.41
#> 4170                      12.24
#> 4171                      21.72
#> 4172                      31.62
#> 4173                      10.05
#> 4174                       18.7
#> 4175                      30.26
#> 4176                       12.7
#> 4177                      23.02
#> 4178                      35.77
#> 4179                      14.17
#> 4180                      29.45
#> 4181                      30.48
#> 4182                      12.71
#> 4183                      25.16
#> 4184                      55.52
#> 4185                      16.46
#> 4186                      26.65
#> 4187                      34.97
#> 4188                      16.41
#> 4189                      28.68
#> 4190                      33.71
#> 4191                      12.31
#> 4192                      22.32
#> 4193                      36.42
#> 4194                      15.08
#> 4195                      25.42
#> 4196                      37.89
#> 4197                      10.17
#> 4198                       21.8
#> 4199                      33.81
#> 4200                       15.1
#> 4201                      23.62
#> 4202                      39.65
#> 4203                      12.73
#> 4204                      23.53
#> 4205                      32.52
#> 4206                      11.09
#> 4207                      18.77
#> 4208                      32.07
#> 4209                      12.31
#> 4210                      22.93
#> 4211                      35.21
#> 4212                      18.42
#> 4213                      12.57
#> 4214                      24.62
#> 4215                      35.69
#> 4216                      10.42
#> 4217                         22
#> 4218                      36.44
#> 4219                      16.17
#> 4220                       29.2
#> 4221                      44.77
#> 4222                      11.62
#> 4223                      24.05
#> 4224                      30.82
#> 4225                      12.43
#> 4226                      23.37
#> 4227                      32.51
#> 4228                      13.35
#> 4229                      28.46
#> 4230                      32.29
#> 4231                      14.11
#> 4232                       23.6
#> 4233                      38.54
#> 4234                      11.92
#> 4235                      25.17
#> 4236                       36.3
#> 4237                      12.83
#> 4238                      25.88
#> 4239                      35.07
#> 4240                          c
#> 4241                      10.87
#> 4242                      22.31
#> 4243                      32.47
#> 4244                      11.66
#> 4245                      22.04
#> 4246                      36.96
#> 4247                      13.31
#> 4248                      24.15
#> 4249                      31.79
#> 4250                      13.57
#> 4251                      25.11
#> 4252                      41.62
#> 4253                      11.75
#> 4254                      26.31
#> 4255                      33.33
#> 4256                      12.02
#> 4257                      21.98
#> 4258                       32.6
#> 4259                       18.1
#> 4260                      13.76
#> 4261                       22.7
#> 4262                      35.42
#> 4263                      18.67
#> 4264                      13.28
#> 4265                      24.66
#> 4266                      31.89
#> 4267                      14.27
#> 4268                      25.15
#> 4269                      28.99
#> 4270                       15.5
#> 4271                       28.8
#> 4272                      30.02
#> 4273                      13.07
#> 4274                      24.06
#> 4275                      36.34
#> 4276                      12.48
#> 4277                      26.27
#> 4278                      30.69
#> 4279                       14.8
#> 4280                      24.61
#> 4281                      21.76
#> 4282                      13.82
#> 4283                      24.66
#> 4284                       32.9
#> 4285                      11.23
#> 4286                      21.87
#> 4287                      36.92
#> 4288                      14.76
#> 4289                      25.42
#> 4290                         38
#> 4291                      11.47
#> 4292                      20.65
#> 4293                      28.11
#> 4294                      14.06
#> 4295                      26.63
#> 4296                      23.47
#> 4297                      13.49
#> 4298                      26.72
#> 4299                      34.26
#> 4300                      10.82
#> 4301                      23.53
#> 4302                      26.44
#> 4303                      18.01
#> 4304                      13.54
#> 4305                      23.16
#> 4306                       34.9
#> 4307                      14.96
#> 4308                       27.1
#> 4309                      31.72
#> 4310                        9.6
#> 4311                      19.67
#> 4312                      38.93
#> 4313                      14.46
#> 4314                      23.42
#> 4315                      37.91
#> 4316                      17.46
#> 4317                      30.09
#> 4318                       30.3
#> 4319                      10.06
#> 4320                      20.96
#> 4321                      33.08
#> 4322                      12.07
#> 4323                      23.66
#> 4324                      31.52
#> 4325                      11.05
#> 4326                      22.89
#> 4327                      24.36
#> 4328                       9.43
#> 4329                      21.15
#> 4330                      33.33
#> 4331                      14.31
#> 4332                      22.34
#> 4333                      35.74
#> 4334                      12.55
#> 4335                      23.39
#> 4336                      40.49
#> 4337                       16.1
#> 4338                       21.3
#> 4339                      40.52
#> 4340                      15.33
#> 4341                      22.33
#> 4342                      41.58
#> 4343                      14.48
#> 4344                      26.25
#> 4345                      47.36
#> 4346                      16.27
#> 4347                      26.06
#> 4348                      35.06
#> 4349                      11.99
#> 4350                      22.24
#> 4351                      35.98
#> 4352                      12.65
#> 4353                      24.96
#> 4354                      31.14
#> 4355                       9.97
#> 4356                      14.63
#> 4357                       29.1
#> 4358                      12.49
#> 4359                      21.97
#> 4360                      31.29
#> 4361                      19.88
#> 4362                      31.75
#> 4363                      37.31
#> 4364                      15.39
#> 4365                      26.14
#> 4366                      37.56
#> 4367                      12.99
#> 4368                       23.9
#> 4369                      33.26
#> 4370                      13.74
#> 4371                      26.94
#> 4372                      31.82
#> 4373                      15.25
#> 4374                      25.12
#> 4375                      34.79
#> 4376                      13.06
#> 4377                      22.51
#> 4378                      30.33
#> 4379                      18.81
#> 4380                      13.97
#> 4381                      24.51
#> 4382                      33.93
#> 4383                      15.05
#> 4384                      25.27
#> 4385                      35.97
#> 4386                         11
#> 4387                      22.14
#> 4388                      25.22
#> 4389                      13.01
#> 4390                      27.21
#> 4391                      20.51
#> 4392                      12.67
#> 4393                      24.41
#> 4394                       27.3
#> 4395                      11.62
#> 4396                      23.29
#> 4397                      23.38
#> 4398                      10.87
#> 4399                       22.9
#> 4400                      37.56
#> 4401                      12.24
#> 4402                      24.89
#> 4403                      36.12
#> 4404                       13.6
#> 4405                      23.52
#> 4406                      29.78
#> 4407                      14.27
#> 4408                      25.12
#> 4409                      36.83
#> 4410                      15.52
#> 4411                      25.24
#> 4412                       35.3
#> 4413                      17.23
#> 4414                      30.35
#> 4415                      35.02
#> 4416                      12.98
#> 4417                      22.51
#> 4418                      25.24
#> 4419                      14.03
#> 4420                      21.37
#> 4421                      32.24
#> 4422                       14.7
#> 4423                      23.02
#> 4424                      35.97
#> 4425                      13.84
#> 4426                      25.47
#> 4427                      39.26
#> 4428                      17.47
#> 4429                      12.96
#> 4430                       22.3
#> 4431                      35.35
#> 4432                      15.52
#> 4433                      24.03
#> 4434                      38.63
#> 4435                      18.17
#> 4436                      22.95
#> 4437                       50.5
#> 4438                       8.75
#> 4439                      18.41
#> 4440                      17.32
#> 4441                      25.35
#> 4442                      35.53
#> 4443                      13.08
#> 4444                      22.72
#> 4445                      35.22
#> 4446                      12.15
#> 4447                      21.43
#> 4448                      33.82
#> 4449                      11.11
#> 4450                      21.11
#> 4451                      29.13
#> 4452                      11.02
#> 4453                      21.31
#> 4454                      27.66
#> 4455                      12.43
#> 4456                      22.72
#> 4457                      36.21
#> 4458                      11.83
#> 4459                      22.15
#> 4460                      30.17
#> 4461                      18.92
#> 4462                      14.69
#> 4463                       23.2
#> 4464                      37.05
#> 4465                      10.93
#> 4466                      21.72
#> 4467                      36.68
#> 4468                      13.09
#> 4469                      21.31
#> 4470                      29.46
#> 4471                      15.14
#> 4472                      26.87
#> 4473                      40.83
#> 4474                      12.03
#> 4475                      23.29
#> 4476                      42.57
#> 4477                      17.57
#> 4478                      23.94
#> 4479                      45.98
#> 4480                      16.46
#> 4481                      25.15
#> 4482                       33.3
#> 4483                       14.9
#> 4484                      24.61
#> 4485                      30.97
#> 4486                      16.49
#> 4487                      24.07
#> 4488                      36.71
#> 4489                      13.37
#> 4490                      22.41
#> 4491                      42.86
#> 4492                      17.23
#> 4493                      27.14
#> 4494                       32.4
#> 4495                       15.8
#> 4496                       20.9
#> 4497                      32.68
#> 4498                      10.97
#> 4499                      20.32
#> 4500                      28.39
#> 4501                      13.19
#> 4502                      22.88
#> 4503                      33.42
#> 4504                      12.58
#> 4505                      22.01
#> 4506                      35.62
#> 4507                      17.27
#> 4508                      13.18
#> 4509                      21.55
#> 4510                      33.45
#> 4511                      14.32
#> 4512                      22.97
#> 4513                      35.51
#> 4514                      16.28
#> 4515                      21.12
#> 4516                       36.8
#> 4517                      15.08
#> 4518                      19.78
#> 4519                      34.32
#> 4520                      14.64
#> 4521                       21.5
#> 4522                      26.82
#> 4523                      13.29
#> 4524                      23.86
#> 4525                      28.14
#> 4526                      11.79
#> 4527                      19.44
#> 4528                      34.78
#> 4529                      12.52
#> 4530                      20.57
#> 4531                      35.29
#> 4532                      13.49
#> 4533                      22.55
#> 4534                      32.44
#> 4535                      12.15
#> 4536                      19.36
#> 4537                      33.92
#> 4538                      12.97
#> 4539                      22.76
#> 4540                      32.33
#> 4541                      12.84
#> 4542                      23.69
#> 4543                       33.6
#> 4544                      18.04
#> 4545                      15.29
#> 4546                      20.53
#> 4547                      37.61
#> 4548                          c
#> 4549                      17.18
#> 4550                      19.68
#> 4551                       44.9
#> 4552                      12.59
#> 4553                      18.36
#> 4554                       39.9
#> 4555                      12.23
#> 4556                      19.07
#> 4557                      33.97
#> 4558                      15.38
#> 4559                      19.96
#> 4560                      32.16
#> 4561                      12.14
#> 4562                      18.89
#> 4563                      36.42
#> 4564                      16.55
#> 4565                      27.41
#> 4566                      44.67
#> 4567                      16.15
#> 4568                      24.54
#> 4569                      34.91
#> 4570                      15.05
#> 4571                      21.54
#> 4572                      33.52
#> 4573                      14.66
#> 4574                      22.32
#> 4575                      37.25
#> 4576                      14.45
#> 4577                      21.17
#> 4578                      34.68
#> 4579                      15.59
#> 4580                      22.18
#> 4581                      31.31
#> 4582                      15.82
#> 4583                      19.15
#> 4584                      38.14
#> 4585                      15.73
#> 4586                      23.96
#> 4587                      37.19
#> 4588                      13.39
#> 4589                      19.82
#> 4590                       37.1
#> 4591                      13.21
#> 4592                       19.1
#> 4593                      39.81
#> 4594                      18.17
#> 4595                      22.07
#> 4596                      36.52
#> 4597                      16.42
#> 4598                      20.57
#> 4599                      35.39
#> 4600                       19.1
#> 4601                      25.53
#> 4602                      40.16
#> 4603                      17.05
#> 4604                      26.33
#> 4605                       26.9
#> 4606                      11.81
#> 4607                      16.49
#> 4608                      39.12
#> 4609                      17.11
#> 4610                      22.18
#> 4611                      33.98
#> 4612                      15.05
#> 4613                       19.5
#> 4614                      35.94
#> 4615                      12.44
#> 4616                      17.87
#> 4617                      40.71
#> 4618                      19.81
#> 4619                      21.25
#> 4620                      54.44
#> 4621                      17.42
#> 4622                      18.78
#> 4623                      49.14
#> 4624                       9.13
#> 4625                      15.53
#> 4626                      28.16
#> 4627                      15.13
#> 4628                      20.03
#> 4629                      38.33
#> 4630                      11.85
#> 4631                      15.53
#> 4632                      31.13
#> 4633                      19.92
#> 4634                      18.68
#> 4635                      41.84
#> 4636                       15.3
#> 4637                      23.49
#> 4638                      44.66
#> 4639                       14.4
#> 4640                      20.08
#> 4641                      45.39
#> 4642                      19.69
#> 4643                       23.5
#> 4644                      37.99
#> 4645                      17.69
#> 4646                      13.29
#> 4647                      22.23
#> 4648                      36.19
#> 4649                      15.54
#> 4650                      21.34
#> 4651                      32.53
#> 4652                       10.4
#> 4653                      19.82
#> 4654                          c
#> 4655                      11.87
#> 4656                         21
#> 4657                      30.62
#> 4658                      17.27
#> 4659                      23.22
#> 4660                      45.73
#> 4661                      16.87
#> 4662                       20.6
#> 4663                      39.94
#> 4664                      12.68
#> 4665                       20.8
#> 4666                      31.68
#> 4667                      10.48
#> 4668                      17.19
#> 4669                      30.04
#> 4670                      13.13
#> 4671                      22.46
#> 4672                      36.16
#> 4673                      14.56
#> 4674                      29.01
#> 4675                      33.16
#> 4676                      13.19
#> 4677                      25.05
#> 4678                      55.79
#> 4679                      16.84
#> 4680                      26.73
#> 4681                      35.71
#> 4682                      16.76
#> 4683                      28.56
#> 4684                       33.8
#> 4685                      12.56
#> 4686                      20.32
#> 4687                      35.91
#> 4688                      15.41
#> 4689                      25.42
#> 4690                      38.09
#> 4691                      10.41
#> 4692                      21.58
#> 4693                      33.46
#> 4694                      15.48
#> 4695                      23.31
#> 4696                      39.46
#> 4697                      12.99
#> 4698                      23.45
#> 4699                      32.21
#> 4700                      11.48
#> 4701                      18.39
#> 4702                      32.28
#> 4703                      12.61
#> 4704                      22.76
#> 4705                      35.73
#> 4706                      18.46
#> 4707                      12.83
#> 4708                       24.4
#> 4709                       35.7
#> 4710                      10.42
#> 4711                      21.52
#> 4712                      36.63
#> 4713                      16.42
#> 4714                      29.02
#> 4715                      44.44
#> 4716                      11.79
#> 4717                      23.79
#> 4718                      31.28
#> 4719                      12.88
#> 4720                      23.25
#> 4721                      31.91
#> 4722                      13.57
#> 4723                      28.11
#> 4724                      33.15
#> 4725                      14.51
#> 4726                      23.46
#> 4727                      39.72
#> 4728                      12.37
#> 4729                      25.49
#> 4730                       35.6
#> 4731                      13.11
#> 4732                      25.72
#> 4733                      35.49
#> 4734                          c
#> 4735                      11.13
#> 4736                      22.17
#> 4737                      32.57
#> 4738                      11.82
#> 4739                      21.86
#> 4740                      37.01
#> 4741                       13.4
#> 4742                      23.65
#> 4743                      32.21
#> 4744                       13.9
#> 4745                      24.88
#> 4746                      42.03
#> 4747                      11.95
#> 4748                       26.1
#> 4749                      33.05
#> 4750                      12.31
#> 4751                      21.69
#> 4752                      32.13
#> 4753                      18.35
#> 4754                       14.1
#> 4755                      22.83
#> 4756                      35.73
#> 4757                      18.71
#> 4758                      13.33
#> 4759                      24.66
#> 4760                      31.92
#> 4761                      14.51
#> 4762                      25.18
#> 4763                      29.56
#> 4764                      15.31
#> 4765                      28.78
#> 4766                      30.56
#> 4767                      13.01
#> 4768                      24.01
#> 4769                      37.53
#> 4770                      12.51
#> 4771                      26.21
#> 4772                      29.26
#> 4773                      14.81
#> 4774                      24.67
#> 4775                      22.08
#> 4776                      13.97
#> 4777                      24.65
#> 4778                      32.86
#> 4779                      11.33
#> 4780                      21.81
#> 4781                      36.83
#> 4782                       14.8
#> 4783                      25.37
#> 4784                      37.77
#> 4785                      11.75
#> 4786                       20.7
#> 4787                      28.72
#> 4788                      14.02
#> 4789                      26.72
#> 4790                      23.97
#> 4791                      13.51
#> 4792                      26.79
#> 4793                      33.72
#> 4794                      10.77
#> 4795                      23.57
#> 4796                      26.54
#> 4797                      18.26
#> 4798                      13.86
#> 4799                      23.31
#> 4800                      35.15
#> 4801                      15.29
#> 4802                      27.08
#> 4803                      30.65
#> 4804                       9.99
#> 4805                      20.59
#> 4806                      39.86
#> 4807                      14.69
#> 4808                      23.32
#> 4809                      36.67
#> 4810                       17.7
#> 4811                       30.6
#> 4812                      31.02
#> 4813                      10.37
#> 4814                      21.06
#> 4815                      33.49
#> 4816                      12.37
#> 4817                      23.65
#> 4818                      31.23
#> 4819                       11.7
#> 4820                      23.27
#> 4821                      24.82
#> 4822                      10.14
#> 4823                      21.61
#> 4824                      32.58
#> 4825                      14.51
#> 4826                      22.92
#> 4827                      35.21
#> 4828                      12.82
#> 4829                      23.62
#> 4830                      39.85
#> 4831                      16.54
#> 4832                      21.42
#> 4833                      42.77
#> 4834                      15.49
#> 4835                      22.54
#> 4836                      40.96
#> 4837                      14.74
#> 4838                      26.35
#> 4839                      46.75
#> 4840                      16.23
#> 4841                      26.04
#> 4842                      35.73
#> 4843                      12.04
#> 4844                      22.34
#> 4845                      35.89
#> 4846                      12.88
#> 4847                      24.38
#> 4848                      31.62
#> 4849                      10.57
#> 4850                      14.87
#> 4851                      29.03
#> 4852                      12.92
#> 4853                      22.17
#> 4854                      31.33
#> 4855                      19.81
#> 4856                      31.54
#> 4857                      37.33
#> 4858                      15.75
#> 4859                      26.19
#> 4860                      37.41
#> 4861                      13.12
#> 4862                         24
#> 4863                      33.03
#> 4864                      13.99
#> 4865                      27.23
#> 4866                      33.08
#> 4867                      15.64
#> 4868                      24.62
#> 4869                      35.87
#> 4870                      13.46
#> 4871                      22.75
#> 4872                      30.44
#> 4873                      19.06
#> 4874                      14.31
#> 4875                      24.65
#> 4876                      34.03
#> 4877                      15.78
#> 4878                      25.27
#> 4879                      36.46
#> 4880                      11.54
#> 4881                       22.5
#> 4882                       25.6
#> 4883                      13.39
#> 4884                      27.25
#> 4885                      20.83
#> 4886                      13.09
#> 4887                      24.82
#> 4888                      29.17
#> 4889                      12.15
#> 4890                      23.57
#> 4891                      24.68
#> 4892                      11.16
#> 4893                      23.13
#> 4894                      36.77
#> 4895                      12.66
#> 4896                       25.1
#> 4897                      36.23
#> 4898                      13.93
#> 4899                      23.51
#> 4900                      29.78
#> 4901                      14.36
#> 4902                      25.12
#> 4903                      36.48
#> 4904                      15.47
#> 4905                      25.12
#> 4906                       35.1
#> 4907                      17.66
#> 4908                      30.44
#> 4909                      35.55
#> 4910                      13.56
#> 4911                      22.23
#> 4912                      25.82
#> 4913                      14.29
#> 4914                      21.45
#> 4915                      33.17
#> 4916                      14.95
#> 4917                      23.38
#> 4918                       36.2
#> 4919                      14.36
#> 4920                      25.54
#> 4921                       38.1
#> 4922                      17.74
#> 4923                      13.33
#> 4924                      22.45
#> 4925                      35.74
#> 4926                      16.06
#> 4927                         24
#> 4928                       38.6
#> 4929                       18.3
#> 4930                         23
#> 4931                       49.9
#> 4932                          9
#> 4933                      18.48
#> 4934                      17.88
#> 4935                      25.48
#> 4936                       36.6
#> 4937                       13.6
#> 4938                      22.96
#> 4939                      35.77
#> 4940                      12.57
#> 4941                      21.58
#> 4942                      34.51
#> 4943                      11.34
#> 4944                      21.12
#> 4945                      30.02
#> 4946                      11.12
#> 4947                      21.48
#> 4948                      27.98
#> 4949                      12.81
#> 4950                      23.14
#> 4951                      36.68
#> 4952                      12.42
#> 4953                      22.22
#> 4954                      31.04
#> 4955                      18.92
#> 4956                      14.69
#> 4957                      23.18
#> 4958                      37.12
#> 4959                      10.99
#> 4960                      21.71
#> 4961                      36.16
#> 4962                      13.09
#> 4963                      21.19
#> 4964                      30.27
#> 4965                      14.98
#> 4966                      26.79
#> 4967                       40.6
#> 4968                      12.15
#> 4969                      23.49
#> 4970                      42.41
#> 4971                      17.62
#> 4972                      23.89
#> 4973                      45.53
#> 4974                      16.41
#> 4975                      25.06
#> 4976                      33.48
#> 4977                      15.05
#> 4978                      24.67
#> 4979                      31.11
#> 4980                      16.44
#> 4981                      24.17
#> 4982                      36.65
#> 4983                      13.27
#> 4984                      22.41
#> 4985                      42.93
#> 4986                       17.1
#> 4987                      26.92
#> 4988                       32.4
#> 4989                      15.88
#> 4990                      21.03
#> 4991                      33.88
#> 4992                      11.13
#> 4993                      20.28
#> 4994                      28.73
#> 4995                      13.06
#> 4996                      22.83
#> 4997                      33.96
#> 4998                      12.53
#> 4999                         22
#> 5000                       36.1
#> 5001                       17.6
#> 5002                      13.61
#> 5003                      21.73
#> 5004                      33.97
#> 5005                      14.46
#> 5006                      22.97
#> 5007                      35.21
#> 5008                      16.74
#> 5009                      21.18
#> 5010                      38.24
#> 5011                      15.43
#> 5012                      19.87
#> 5013                      34.21
#> 5014                      15.24
#> 5015                      21.78
#> 5016                      27.59
#> 5017                       13.7
#> 5018                      23.89
#> 5019                      29.87
#> 5020                       12.6
#> 5021                      19.77
#> 5022                      36.23
#> 5023                      12.88
#> 5024                      20.84
#> 5025                      36.39
#> 5026                      13.95
#> 5027                      22.74
#> 5028                      32.72
#> 5029                      12.59
#> 5030                      19.43
#> 5031                      34.71
#> 5032                      13.42
#> 5033                      22.92
#> 5034                      32.95
#> 5035                      13.24
#> 5036                      24.06
#> 5037                         33
#> 5038                      18.34
#> 5039                      15.76
#> 5040                      20.61
#> 5041                      38.18
#> 5042                          c
#> 5043                      17.63
#> 5044                      19.89
#> 5045                      45.54
#> 5046                      13.02
#> 5047                      18.46
#> 5048                      40.71
#> 5049                      12.62
#> 5050                       19.1
#> 5051                      34.09
#> 5052                      15.78
#> 5053                      20.13
#> 5054                      32.98
#> 5055                      12.54
#> 5056                      19.06
#> 5057                       37.1
#> 5058                      17.31
#> 5059                      27.66
#> 5060                      44.14
#> 5061                      16.63
#> 5062                      24.38
#> 5063                      35.16
#> 5064                      15.62
#> 5065                      21.45
#> 5066                      33.87
#> 5067                         15
#> 5068                      21.34
#> 5069                      37.63
#> 5070                      14.68
#> 5071                       21.3
#> 5072                      35.33
#> 5073                      15.93
#> 5074                      21.75
#> 5075                      31.78
#> 5076                      16.44
#> 5077                      19.18
#> 5078                      38.86
#> 5079                      16.13
#> 5080                      24.03
#> 5081                      37.15
#> 5082                      13.98
#> 5083                      20.07
#> 5084                      37.79
#> 5085                      13.71
#> 5086                      19.41
#> 5087                      39.56
#> 5088                      18.61
#> 5089                      22.44
#> 5090                      37.34
#> 5091                      17.02
#> 5092                      20.96
#> 5093                      34.95
#> 5094                      19.75
#> 5095                      25.28
#> 5096                      40.57
#> 5097                      17.59
#> 5098                      25.55
#> 5099                      28.93
#> 5100                      12.15
#> 5101                      16.62
#> 5102                      38.41
#> 5103                      17.38
#> 5104                      22.67
#> 5105                      35.08
#> 5106                      15.56
#> 5107                       19.9
#> 5108                      35.76
#> 5109                      12.78
#> 5110                      17.84
#> 5111                      41.23
#> 5112                      20.23
#> 5113                      21.66
#> 5114                      54.65
#> 5115                      18.05
#> 5116                      19.02
#> 5117                      51.64
#> 5118                        9.6
#> 5119                      15.72
#> 5120                      28.82
#> 5121                      15.79
#> 5122                      20.32
#> 5123                      38.03
#> 5124                      12.54
#> 5125                      14.69
#> 5126                      37.82
#> 5127                      20.63
#> 5128                      19.08
#> 5129                      40.92
#> 5130                      15.46
#> 5131                      23.52
#> 5132                      44.58
#> 5133                      14.89
#> 5134                       20.1
#> 5135                      45.09
#> 5136                      20.27
#> 5137                       23.8
#> 5138                      35.38
#> 5139                      18.03
#> 5140                      13.76
#> 5141                      22.41
#> 5142                      36.52
#> 5143                      15.94
#> 5144                      21.67
#> 5145                       33.5
#> 5146                      11.19
#> 5147                      20.17
#> 5148                          c
#> 5149                      12.34
#> 5150                      21.28
#> 5151                      30.68
#> 5152                      17.52
#> 5153                      23.24
#> 5154                      45.43
#> 5155                      17.51
#> 5156                       20.8
#> 5157                      39.14
#> 5158                      13.27
#> 5159                      21.07
#> 5160                      32.67
#> 5161                      10.95
#> 5162                      17.29
#> 5163                      31.57
#> 5164                      13.89
#> 5165                      22.59
#> 5166                      36.86
#> 5167                      15.25
#> 5168                      29.12
#> 5169                      32.62
#> 5170                      13.44
#> 5171                      25.23
#> 5172                      55.34
#> 5173                      17.16
#> 5174                      27.01
#> 5175                      37.25
#> 5176                      17.14
#> 5177                      28.82
#> 5178                      34.08
#> 5179                      12.89
#> 5180                      20.34
#> 5181                      36.15
#> 5182                      15.97
#> 5183                      25.57
#> 5184                      38.17
#> 5185                      10.85
#> 5186                      21.72
#> 5187                      33.92
#> 5188                      16.06
#> 5189                      23.51
#> 5190                      39.88
#> 5191                      13.41
#> 5192                      23.51
#> 5193                      32.25
#> 5194                      11.79
#> 5195                      18.66
#> 5196                      32.77
#> 5197                      13.07
#> 5198                      22.96
#> 5199                      35.36
#> 5200                      18.78
#> 5201                      13.16
#> 5202                      24.71
#> 5203                      36.14
#> 5204                      10.91
#> 5205                      21.33
#> 5206                      37.43
#> 5207                      16.57
#> 5208                      31.48
#> 5209                      44.45
#> 5210                      12.28
#> 5211                      23.55
#> 5212                      30.82
#> 5213                      12.97
#> 5214                      23.03
#> 5215                      31.85
#> 5216                      14.01
#> 5217                      27.88
#> 5218                      33.11
#> 5219                      14.75
#> 5220                      23.43
#> 5221                      38.69
#> 5222                      12.64
#> 5223                      25.64
#> 5224                      37.92
#> 5225                      13.64
#> 5226                      25.87
#> 5227                      36.74
#> 5228                          c
#> 5229                      11.57
#> 5230                      22.44
#> 5231                      32.83
#> 5232                      12.19
#> 5233                      22.62
#> 5234                      37.71
#> 5235                      13.77
#> 5236                      23.86
#> 5237                      31.78
#> 5238                      14.39
#> 5239                      25.04
#> 5240                      42.67
#> 5241                      12.25
#> 5242                       26.3
#> 5243                      34.12
#> 5244                      12.44
#> 5245                      21.88
#> 5246                      32.22
#> 5247                      18.38
#> 5248                      14.15
#> 5249                      22.86
#> 5250                       35.8
#> 5251                      18.86
#> 5252                       13.6
#> 5253                      24.69
#> 5254                      32.19
#> 5255                      14.98
#> 5256                      25.09
#> 5257                      29.56
#> 5258                      15.55
#> 5259                      28.65
#> 5260                      30.71
#> 5261                      13.36
#> 5262                      23.83
#> 5263                      37.96
#> 5264                      12.73
#> 5265                      26.21
#> 5266                      30.13
#> 5267                      14.85
#> 5268                      24.85
#> 5269                      22.86
#> 5270                      14.16
#> 5271                      24.71
#> 5272                      32.48
#> 5273                      11.54
#> 5274                      21.89
#> 5275                       37.2
#> 5276                      14.98
#> 5277                      25.43
#> 5278                       38.2
#> 5279                      12.04
#> 5280                       20.9
#> 5281                      29.41
#> 5282                      14.32
#> 5283                      26.64
#> 5284                      23.47
#> 5285                      13.87
#> 5286                      26.68
#> 5287                      34.26
#> 5288                      11.21
#> 5289                      23.84
#> 5290                      26.98
#> 5291                      18.23
#> 5292                      13.84
#> 5293                      23.28
#> 5294                      35.13
#> 5295                       15.2
#> 5296                      27.09
#> 5297                      30.65
#> 5298                       9.86
#> 5299                      20.56
#> 5300                      39.86
#> 5301                      14.58
#> 5302                      23.42
#> 5303                      36.67
#> 5304                      17.83
#> 5305                      30.66
#> 5306                      31.39
#> 5307                      10.35
#> 5308                      21.07
#> 5309                      33.49
#> 5310                       12.4
#> 5311                      24.01
#> 5312                      31.23
#> 5313                       11.7
#> 5314                      23.27
#> 5315                      24.82
#> 5316                      10.14
#> 5317                      21.62
#> 5318                      32.58
#> 5319                       14.6
#> 5320                      22.89
#> 5321                      35.21
#> 5322                      12.72
#> 5323                      23.64
#> 5324                      39.85
#> 5325                      16.47
#> 5326                      21.43
#> 5327                      42.77
#> 5328                      15.46
#> 5329                      22.07
#> 5330                      40.96
#> 5331                      14.68
#> 5332                      26.35
#> 5333                      46.75
#> 5334                      16.29
#> 5335                      26.09
#> 5336                      35.73
#> 5337                      12.08
#> 5338                      23.05
#> 5339                       35.7
#> 5340                       12.8
#> 5341                      24.41
#> 5342                      31.25
#> 5343                      10.58
#> 5344                      14.82
#> 5345                      29.03
#> 5346                       12.9
#> 5347                      22.05
#> 5348                      31.44
#> 5349                      19.81
#> 5350                      31.64
#> 5351                      37.33
#> 5352                      15.78
#> 5353                      25.42
#> 5354                      37.41
#> 5355                      13.11
#> 5356                      23.99
#> 5357                      32.58
#> 5358                      13.96
#> 5359                      27.25
#> 5360                      33.21
#> 5361                      15.65
#> 5362                      24.62
#> 5363                      35.87
#> 5364                      13.39
#> 5365                      22.75
#> 5366                      30.38
#> 5367                      19.07
#> 5368                      14.32
#> 5369                      24.65
#> 5370                      34.09
#> 5371                      15.77
#> 5372                      25.28
#> 5373                      36.46
#> 5374                      11.53
#> 5375                      22.51
#> 5376                       25.6
#> 5377                      13.34
#> 5378                      27.25
#> 5379                      20.83
#> 5380                      13.14
#> 5381                      24.81
#> 5382                      29.17
#> 5383                      12.14
#> 5384                      23.57
#> 5385                      24.68
#> 5386                      11.16
#> 5387                      23.14
#> 5388                      36.77
#> 5389                      12.63
#> 5390                      25.09
#> 5391                      36.23
#> 5392                      14.01
#> 5393                       23.5
#> 5394                      29.72
#> 5395                      14.57
#> 5396                       25.2
#> 5397                       36.4
#> 5398                      15.66
#> 5399                      25.18
#> 5400                       35.6
#> 5401                       17.5
#> 5402                      30.43
#> 5403                      35.48
#> 5404                      13.49
#> 5405                      22.24
#> 5406                      25.82
#> 5407                      14.26
#> 5408                      21.46
#> 5409                      33.17
#> 5410                      14.98
#> 5411                      23.39
#> 5412                       36.2
#> 5413                      14.36
#> 5414                      25.47
#> 5415                       38.1
#> 5416                      17.81
#> 5417                       13.4
#> 5418                      22.52
#> 5419                      35.84
#> 5420                      16.05
#> 5421                      24.02
#> 5422                       38.6
#> 5423                      18.51
#> 5424                      23.13
#> 5425                      51.86
#> 5426                          9
#> 5427                      18.48
#> 5428                      17.89
#> 5429                      25.49
#> 5430                       36.6
#> 5431                       13.6
#> 5432                      22.95
#> 5433                      35.77
#> 5434                      12.58
#> 5435                      21.58
#> 5436                      34.51
#> 5437                      11.34
#> 5438                      21.14
#> 5439                      30.02
#> 5440                      11.41
#> 5441                       21.6
#> 5442                      28.01
#> 5443                      12.81
#> 5444                      23.41
#> 5445                      36.68
#> 5446                      12.47
#> 5447                      22.26
#> 5448                      31.04
#> 5449                      19.05
#> 5450                      14.94
#> 5451                      23.19
#> 5452                      37.32
#> 5453                       11.4
#> 5454                      21.72
#> 5455                      36.99
#> 5456                      13.49
#> 5457                      21.13
#> 5458                      31.35
#> 5459                      15.17
#> 5460                      26.78
#> 5461                      40.49
#> 5462                      12.38
#> 5463                      23.55
#> 5464                      42.04
#> 5465                      17.86
#> 5466                      23.85
#> 5467                      45.72
#> 5468                      16.59
#> 5469                      25.02
#> 5470                      33.99
#> 5471                      15.33
#> 5472                      24.79
#> 5473                      31.78
#> 5474                      16.76
#> 5475                      24.14
#> 5476                      36.77
#> 5477                      13.18
#> 5478                      22.54
#> 5479                      42.99
#> 5480                      17.25
#> 5481                      26.95
#> 5482                      32.92
#> 5483                      16.26
#> 5484                      21.11
#> 5485                      33.66
#> 5486                       11.4
#> 5487                      20.39
#> 5488                      28.81
#> 5489                      13.33
#> 5490                      22.78
#> 5491                      34.03
#> 5492                      12.66
#> 5493                      22.04
#> 5494                      36.16
#> 5495                       17.6
#> 5496                      13.62
#> 5497                      21.75
#> 5498                      33.97
#> 5499                      14.51
#> 5500                      22.97
#> 5501                      35.37
#> 5502                      16.74
#> 5503                      21.17
#> 5504                       38.1
#> 5505                      15.47
#> 5506                      19.87
#> 5507                      34.21
#> 5508                      15.29
#> 5509                      21.73
#> 5510                      27.59
#> 5511                      13.69
#> 5512                       23.9
#> 5513                      30.05
#> 5514                      12.59
#> 5515                      19.79
#> 5516                      36.23
#> 5517                      12.89
#> 5518                      20.85
#> 5519                      36.45
#> 5520                      13.95
#> 5521                      22.87
#> 5522                      32.75
#> 5523                      12.59
#> 5524                      19.42
#> 5525                      34.61
#> 5526                      13.42
#> 5527                      22.92
#> 5528                      32.95
#> 5529                      13.23
#> 5530                      24.04
#> 5531                         33
#> 5532                      18.38
#> 5533                      15.75
#> 5534                      20.71
#> 5535                      38.18
#> 5536                          c
#> 5537                      17.63
#> 5538                      19.93
#> 5539                      45.54
#> 5540                      12.97
#> 5541                       18.6
#> 5542                      40.71
#> 5543                       12.6
#> 5544                      19.11
#> 5545                      34.09
#> 5546                      15.74
#> 5547                      20.11
#> 5548                      32.98
#> 5549                      12.56
#> 5550                      19.07
#> 5551                       37.1
#> 5552                      17.31
#> 5553                      28.69
#> 5554                      44.14
#> 5555                      16.64
#> 5556                      24.41
#> 5557                      35.16
#> 5558                       15.6
#> 5559                      21.47
#> 5560                      33.87
#> 5561                      14.99
#> 5562                      21.33
#> 5563                      37.57
#> 5564                      14.67
#> 5565                      21.32
#> 5566                      35.33
#> 5567                      15.94
#> 5568                      21.68
#> 5569                      31.78
#> 5570                      16.37
#> 5571                      19.18
#> 5572                      38.86
#> 5573                      16.13
#> 5574                      24.42
#> 5575                      37.15
#> 5576                      13.99
#> 5577                       20.1
#> 5578                      37.79
#> 5579                      13.71
#> 5580                      19.42
#> 5581                      39.56
#> 5582                      18.62
#> 5583                      23.23
#> 5584                      37.34
#> 5585                      17.02
#> 5586                      20.97
#> 5587                      34.95
#> 5588                      19.73
#> 5589                      25.28
#> 5590                      40.57
#> 5591                      17.57
#> 5592                      25.55
#> 5593                      28.93
#> 5594                      12.07
#> 5595                      16.64
#> 5596                      38.41
#> 5597                      17.38
#> 5598                      22.68
#> 5599                      35.14
#> 5600                      15.56
#> 5601                      19.91
#> 5602                      35.76
#> 5603                      12.78
#> 5604                      17.88
#> 5605                      41.23
#> 5606                      20.19
#> 5607                      21.69
#> 5608                      54.65
#> 5609                      18.07
#> 5610                      19.02
#> 5611                      51.64
#> 5612                        9.6
#> 5613                      15.95
#> 5614                      29.11
#> 5615                       15.9
#> 5616                      20.33
#> 5617                      38.03
#> 5618                      12.54
#> 5619                       14.7
#> 5620                      37.82
#> 5621                      20.59
#> 5622                      19.13
#> 5623                      40.92
#> 5624                      15.46
#> 5625                      23.81
#> 5626                      44.58
#> 5627                      14.86
#> 5628                       20.2
#> 5629                      45.09
#> 5630                      20.25
#> 5631                       23.8
#> 5632                      35.38
#> 5633                      18.03
#> 5634                      13.76
#> 5635                      22.42
#> 5636                      36.62
#> 5637                         16
#> 5638                       21.7
#> 5639                       33.5
#> 5640                      10.66
#> 5641                      20.16
#> 5642                          c
#> 5643                      12.35
#> 5644                      21.32
#> 5645                      35.77
#> 5646                      17.52
#> 5647                      23.32
#> 5648                      45.43
#> 5649                      17.48
#> 5650                      20.75
#> 5651                      39.14
#> 5652                      13.27
#> 5653                      21.07
#> 5654                      32.67
#> 5655                         11
#> 5656                      17.33
#> 5657                      31.57
#> 5658                      13.87
#> 5659                      22.68
#> 5660                      36.86
#> 5661                      15.25
#> 5662                      29.34
#> 5663                      32.62
#> 5664                      13.42
#> 5665                      25.24
#> 5666                      55.34
#> 5667                      17.16
#> 5668                      27.01
#> 5669                      37.25
#> 5670                      17.13
#> 5671                      28.84
#> 5672                      34.08
#> 5673                       12.9
#> 5674                      20.28
#> 5675                      36.15
#> 5676                         16
#> 5677                      25.57
#> 5678                      38.17
#> 5679                      10.86
#> 5680                      21.73
#> 5681                      33.89
#> 5682                      16.06
#> 5683                      23.51
#> 5684                      39.89
#> 5685                       13.4
#> 5686                      23.53
#> 5687                      32.25
#> 5688                      11.78
#> 5689                      18.65
#> 5690                      32.77
#> 5691                      13.07
#> 5692                      22.96
#> 5693                      35.36
#> 5694                      18.78
#> 5695                      13.17
#> 5696                      24.71
#> 5697                      36.19
#> 5698                      10.84
#> 5699                      21.69
#> 5700                      37.43
#> 5701                      16.57
#> 5702                      31.48
#> 5703                      44.37
#> 5704                       12.3
#> 5705                      23.63
#> 5706                      30.82
#> 5707                      12.99
#> 5708                      23.03
#> 5709                      31.85
#> 5710                      14.01
#> 5711                      27.92
#> 5712                      33.11
#> 5713                      14.78
#> 5714                      23.43
#> 5715                      38.69
#> 5716                      12.66
#> 5717                      25.65
#> 5718                       37.8
#> 5719                      13.64
#> 5720                      25.69
#> 5721                      36.74
#> 5722                          c
#> 5723                      11.56
#> 5724                      22.46
#> 5725                      32.83
#> 5726                      12.19
#> 5727                      22.62
#> 5728                      37.71
#> 5729                      13.81
#> 5730                       23.9
#> 5731                      31.78
#> 5732                       14.4
#> 5733                      25.04
#> 5734                      42.67
#> 5735                      12.19
#> 5736                      26.29
#> 5737                      34.18
#> 5738                      12.59
#> 5739                      21.74
#> 5740                      32.71
#> 5741                      18.15
#> 5742                      14.06
#> 5743                      22.45
#> 5744                      35.51
#> 5745                      18.95
#> 5746                      13.78
#> 5747                      24.64
#> 5748                      32.42
#> 5749                      14.83
#> 5750                      24.76
#> 5751                      31.02
#> 5752                      15.78
#> 5753                      28.21
#> 5754                      31.77
#> 5755                      13.96
#> 5756                      23.96
#> 5757                      39.26
#> 5758                      12.89
#> 5759                      25.86
#> 5760                      30.18
#> 5761                      15.06
#> 5762                      24.83
#> 5763                      21.82
#> 5764                      14.46
#> 5765                      24.81
#> 5766                      32.63
#> 5767                      11.83
#> 5768                      21.97
#> 5769                      37.84
#> 5770                      14.82
#> 5771                      25.16
#> 5772                      37.88
#> 5773                      12.11
#> 5774                      20.88
#> 5775                      29.13
#> 5776                      14.65
#> 5777                      26.68
#> 5778                      23.64
#> 5779                      14.27
#> 5780                      26.77
#> 5781                      34.68
#> 5782                      10.96
#> 5783                      23.79
#> 5784                      26.82
#> 5785                      17.98
#> 5786                      13.74
#> 5787                      22.83
#> 5788                      34.85
#> 5789                      15.49
#> 5790                      26.88
#> 5791                      31.18
#> 5792                       10.3
#> 5793                      20.52
#> 5794                      42.08
#> 5795                      13.81
#> 5796                      22.28
#> 5797                      35.48
#> 5798                      17.98
#> 5799                      30.42
#> 5800                       32.2
#> 5801                      10.57
#> 5802                      21.02
#> 5803                      33.18
#> 5804                      12.42
#> 5805                      23.93
#> 5806                      31.71
#> 5807                      11.92
#> 5808                      23.05
#> 5809                      25.29
#> 5810                      10.28
#> 5811                      21.45
#> 5812                      33.33
#> 5813                      14.32
#> 5814                      22.07
#> 5815                       34.5
#> 5816                       12.3
#> 5817                      22.48
#> 5818                      37.95
#> 5819                      15.78
#> 5820                      20.54
#> 5821                      41.35
#> 5822                      14.79
#> 5823                      21.22
#> 5824                      40.16
#> 5825                      14.38
#> 5826                      24.88
#> 5827                      45.38
#> 5828                      16.04
#> 5829                      25.75
#> 5830                      35.66
#> 5831                      11.86
#> 5832                      22.94
#> 5833                      35.35
#> 5834                      12.67
#> 5835                      23.93
#> 5836                      31.25
#> 5837                      10.34
#> 5838                      14.51
#> 5839                       29.1
#> 5840                      13.04
#> 5841                      21.94
#> 5842                      31.33
#> 5843                      19.97
#> 5844                      31.78
#> 5845                      37.44
#> 5846                      15.62
#> 5847                      25.12
#> 5848                      36.79
#> 5849                      13.54
#> 5850                      23.75
#> 5851                      32.88
#> 5852                      14.52
#> 5853                      26.98
#> 5854                      33.21
#> 5855                      15.88
#> 5856                      24.76
#> 5857                      36.07
#> 5858                      13.28
#> 5859                      22.17
#> 5860                      30.17
#> 5861                      18.75
#> 5862                      14.15
#> 5863                      24.13
#> 5864                      33.95
#> 5865                      15.75
#> 5866                      25.23
#> 5867                      36.42
#> 5868                      11.72
#> 5869                      22.51
#> 5870                      27.68
#> 5871                      13.69
#> 5872                      27.24
#> 5873                      22.44
#> 5874                      13.46
#> 5875                      24.55
#> 5876                      28.57
#> 5877                       11.9
#> 5878                      23.74
#> 5879                      25.32
#> 5880                      11.41
#> 5881                      23.01
#> 5882                      36.83
#> 5883                      13.01
#> 5884                      25.19
#> 5885                      36.17
#> 5886                      14.45
#> 5887                      23.54
#> 5888                      29.97
#> 5889                      14.68
#> 5890                      25.09
#> 5891                      37.47
#> 5892                      15.69
#> 5893                      24.88
#> 5894                      35.01
#> 5895                      16.42
#> 5896                      28.62
#> 5897                      34.22
#> 5898                      13.24
#> 5899                      21.44
#> 5900                      26.25
#> 5901                      13.23
#> 5902                      20.03
#> 5903                      31.02
#> 5904                      14.63
#> 5905                      22.79
#> 5906                      36.04
#> 5907                      14.43
#> 5908                      25.11
#> 5909                      38.45
#> 5910                       17.7
#> 5911                      13.44
#> 5912                      22.23
#> 5913                      35.51
#> 5914                      15.75
#> 5915                      23.33
#> 5916                      37.34
#> 5917                      18.02
#> 5918                      22.59
#> 5919                      50.96
#> 5920                        9.4
#> 5921                       18.4
#> 5922                      17.53
#> 5923                      24.32
#> 5924                      36.65
#> 5925                      13.74
#> 5926                      22.83
#> 5927                      34.58
#> 5928                      12.52
#> 5929                      21.43
#> 5930                      34.91
#> 5931                      11.53
#> 5932                      21.16
#> 5933                       30.1
#> 5934                      11.65
#> 5935                      21.52
#> 5936                      28.04
#> 5937                      13.01
#> 5938                      23.08
#> 5939                      36.33
#> 5940                      12.64
#> 5941                         22
#> 5942                      31.46
#> 5943                      18.74
#> 5944                      14.78
#> 5945                       22.7
#> 5946                      36.78
#> 5947                      11.59
#> 5948                      21.54
#> 5949                      37.46
#> 5950                      13.53
#> 5951                       20.7
#> 5952                      30.95
#> 5953                      14.77
#> 5954                      26.23
#> 5955                      39.93
#> 5956                      12.72
#> 5957                      23.39
#> 5958                      42.41
#> 5959                      17.03
#> 5960                      22.46
#> 5961                      44.42
#> 5962                      16.47
#> 5963                      24.64
#> 5964                       34.2
#> 5965                      15.21
#> 5966                       24.3
#> 5967                      30.89
#> 5968                      16.63
#> 5969                      23.45
#> 5970                      36.27
#> 5971                       13.1
#> 5972                      22.27
#> 5973                      41.91
#> 5974                      17.07
#> 5975                      26.42
#> 5976                      31.43
#> 5977                      16.32
#> 5978                      20.74
#> 5979                      33.95
#> 5980                      11.57
#> 5981                      20.53
#> 5982                      29.26
#> 5983                      13.49
#> 5984                      22.68
#> 5985                      33.72
#> 5986                      12.86
#> 5987                      21.98
#> 5988                      35.84
#> 5989                      17.46
#> 5990                      13.61
#> 5991                      21.47
#> 5992                       33.5
#> 5993                      14.19
#> 5994                       22.3
#> 5995                      33.69
#> 5996                      15.56
#> 5997                      19.39
#> 5998                      34.77
#> 5999                      15.36
#> 6000                      19.58
#> 6001                      33.28
#> 6002                      15.28
#> 6003                      21.31
#> 6004                      27.59
#> 6005                      13.61
#> 6006                      23.44
#> 6007                      28.86
#> 6008                      12.75
#> 6009                      19.63
#> 6010                      34.79
#> 6011                      12.94
#> 6012                      20.66
#> 6013                       36.2
#> 6014                      14.03
#> 6015                       22.7
#> 6016                      32.24
#> 6017                      12.56
#> 6018                       19.2
#> 6019                       34.9
#> 6020                       13.6
#> 6021                       22.8
#> 6022                      33.09
#> 6023                      13.41
#> 6024                      23.95
#> 6025                      32.89
#> 6026                      17.83
#> 6027                      15.39
#> 6028                      19.94
#> 6029                      37.57
#> 6030                          c
#> 6031                      17.03
#> 6032                      19.47
#> 6033                      43.84
#> 6034                       12.8
#> 6035                      18.02
#> 6036                      39.42
#> 6037                       12.7
#> 6038                      19.24
#> 6039                      34.06
#> 6040                      15.25
#> 6041                      18.79
#> 6042                      31.02
#> 6043                       12.7
#> 6044                      18.95
#> 6045                      36.98
#> 6046                       16.4
#> 6047                      26.85
#> 6048                      43.79
#> 6049                      16.33
#> 6050                      23.96
#> 6051                      35.14
#> 6052                      14.89
#> 6053                      20.55
#> 6054                      34.79
#> 6055                      14.92
#> 6056                      21.21
#> 6057                      37.22
#> 6058                      14.54
#> 6059                      20.73
#> 6060                      35.14
#> 6061                      15.64
#> 6062                      20.77
#> 6063                      30.84
#> 6064                      15.72
#> 6065                      18.18
#> 6066                      37.65
#> 6067                       15.9
#> 6068                      23.09
#> 6069                       36.4
#> 6070                      13.74
#> 6071                      18.54
#> 6072                      38.25
#> 6073                      13.54
#> 6074                      19.32
#> 6075                      38.94
#> 6076                      18.13
#> 6077                      22.57
#> 6078                      36.06
#> 6079                       16.5
#> 6080                       19.9
#> 6081                      34.38
#> 6082                      19.05
#> 6083                      24.15
#> 6084                      40.37
#> 6085                      16.86
#> 6086                      23.82
#> 6087                      28.43
#> 6088                      12.05
#> 6089                      16.11
#> 6090                      37.53
#> 6091                      17.27
#> 6092                      21.88
#> 6093                      34.27
#> 6094                      15.53
#> 6095                      19.68
#> 6096                      35.71
#> 6097                      12.74
#> 6098                      17.31
#> 6099                      39.92
#> 6100                      19.22
#> 6101                      20.68
#> 6102                      53.31
#> 6103                      16.77
#> 6104                      17.26
#> 6105                      51.34
#> 6106                       9.76
#> 6107                      15.77
#> 6108                      29.97
#> 6109                      15.62
#> 6110                      19.84
#> 6111                      36.98
#> 6112                      12.44
#> 6113                      14.63
#> 6114                      37.48
#> 6115                      20.64
#> 6116                      18.86
#> 6117                      41.47
#> 6118                      14.85
#> 6119                      22.28
#> 6120                      44.28
#> 6121                       14.4
#> 6122                      19.09
#> 6123                      42.43
#> 6124                      19.01
#> 6125                      21.74
#> 6126                      33.21
#> 6127                      17.89
#> 6128                      13.74
#> 6129                      22.14
#> 6130                      36.48
#> 6131                      16.11
#> 6132                      21.48
#> 6133                       32.9
#> 6134                      10.69
#> 6135                      20.12
#> 6136                          c
#> 6137                      12.53
#> 6138                      21.13
#> 6139                       35.4
#> 6140                      17.08
#> 6141                      22.55
#> 6142                      45.71
#> 6143                      16.55
#> 6144                      19.18
#> 6145                      39.76
#> 6146                      13.14
#> 6147                       20.8
#> 6148                      32.57
#> 6149                      10.62
#> 6150                      17.08
#> 6151                      30.82
#> 6152                      13.68
#> 6153                      22.18
#> 6154                      37.56
#> 6155                      15.06
#> 6156                      29.16
#> 6157                      31.55
#> 6158                      13.51
#> 6159                      25.28
#> 6160                      54.71
#> 6161                       16.7
#> 6162                      26.67
#> 6163                         38
#> 6164                      17.29
#> 6165                      28.78
#> 6166                      33.71
#> 6167                      12.61
#> 6168                      19.53
#> 6169                      35.57
#> 6170                      15.93
#> 6171                      25.63
#> 6172                      38.56
#> 6173                      10.97
#> 6174                      21.77
#> 6175                      33.75
#> 6176                       16.2
#> 6177                      23.31
#> 6178                      39.65
#> 6179                      13.33
#> 6180                      22.83
#> 6181                      32.48
#> 6182                      11.86
#> 6183                       18.4
#> 6184                      32.48
#> 6185                      13.22
#> 6186                       22.8
#> 6187                      35.25
#> 6188                      18.72
#> 6189                      13.21
#> 6190                      24.54
#> 6191                      36.12
#> 6192                      11.08
#> 6193                      21.76
#> 6194                      37.43
#> 6195                      16.23
#> 6196                       30.6
#> 6197                      43.63
#> 6198                       12.2
#> 6199                      23.53
#> 6200                      30.14
#> 6201                      12.91
#> 6202                      22.62
#> 6203                      32.28
#> 6204                      14.08
#> 6205                      27.54
#> 6206                      33.88
#> 6207                      14.95
#> 6208                      23.49
#> 6209                      37.77
#> 6210                      12.72
#> 6211                      25.64
#> 6212                      37.96
#> 6213                      13.76
#> 6214                      25.61
#> 6215                      35.83
#> 6216                          c
#> 6217                      11.61
#> 6218                       22.4
#> 6219                      32.77
#> 6220                      12.34
#> 6221                      22.38
#> 6222                      37.51
#> 6223                      13.76
#> 6224                      23.73
#> 6225                      31.39
#> 6226                      14.37
#> 6227                      24.85
#> 6228                       42.8
#> 6229                      12.21
#> 6230                      26.17
#> 6231                      34.23
#> 6232                      12.81
#> 6233                      21.74
#> 6234                      33.07
#> 6235                      18.39
#> 6236                      14.41
#> 6237                      22.56
#> 6238                      35.64
#> 6239                      19.18
#> 6240                      14.13
#> 6241                      24.72
#> 6242                      32.77
#> 6243                       15.2
#> 6244                      24.98
#> 6245                      32.12
#> 6246                       16.2
#> 6247                      28.48
#> 6248                      32.22
#> 6249                      14.27
#> 6250                      24.23
#> 6251                      38.48
#> 6252                      13.39
#> 6253                      25.99
#> 6254                      29.78
#> 6255                      15.45
#> 6256                      25.23
#> 6257                       22.4
#> 6258                      14.74
#> 6259                      25.06
#> 6260                      34.03
#> 6261                       12.4
#> 6262                      22.03
#> 6263                      37.33
#> 6264                      15.03
#> 6265                      24.74
#> 6266                      38.21
#> 6267                      12.45
#> 6268                      21.03
#> 6269                      29.39
#> 6270                      14.92
#> 6271                      26.67
#> 6272                      23.59
#> 6273                      14.64
#> 6274                      26.85
#> 6275                      35.11
#> 6276                       11.1
#> 6277                      23.69
#> 6278                      27.49
#> 6279                      18.28
#> 6280                      14.13
#> 6281                         23
#> 6282                      35.06
#> 6283                      15.59
#> 6284                      26.93
#> 6285                      32.18
#> 6286                      10.65
#> 6287                      20.68
#> 6288                      40.95
#> 6289                      14.17
#> 6290                      22.14
#> 6291                      35.08
#> 6292                      18.44
#> 6293                      30.35
#> 6294                       31.5
#> 6295                      10.99
#> 6296                      21.27
#> 6297                      33.38
#> 6298                      12.86
#> 6299                      23.98
#> 6300                       32.6
#> 6301                      12.37
#> 6302                      22.94
#> 6303                      25.29
#> 6304                      10.82
#> 6305                      21.82
#> 6306                      36.74
#> 6307                      14.74
#> 6308                      22.01
#> 6309                      34.69
#> 6310                      12.74
#> 6311                      22.86
#> 6312                      38.21
#> 6313                      16.18
#> 6314                      20.73
#> 6315                      41.79
#> 6316                      15.27
#> 6317                      21.64
#> 6318                      40.27
#> 6319                      14.66
#> 6320                      25.28
#> 6321                      46.22
#> 6322                      16.47
#> 6323                      25.83
#> 6324                      36.02
#> 6325                      12.21
#> 6326                      22.44
#> 6327                      36.32
#> 6328                      13.17
#> 6329                      24.02
#> 6330                      31.04
#> 6331                      10.76
#> 6332                      14.59
#> 6333                      28.21
#> 6334                      13.32
#> 6335                      21.91
#> 6336                      32.12
#> 6337                      20.45
#> 6338                      32.35
#> 6339                      37.27
#> 6340                      16.09
#> 6341                      25.27
#> 6342                       37.3
#> 6343                      13.51
#> 6344                      23.99
#> 6345                       32.2
#> 6346                      14.87
#> 6347                      27.18
#> 6348                      32.87
#> 6349                      16.16
#> 6350                      25.22
#> 6351                      36.23
#> 6352                      13.76
#> 6353                      22.57
#> 6354                      30.24
#> 6355                      18.99
#> 6356                      14.52
#> 6357                      24.21
#> 6358                      33.97
#> 6359                      16.06
#> 6360                      25.36
#> 6361                      36.34
#> 6362                       12.1
#> 6363                      22.71
#> 6364                      26.79
#> 6365                      13.84
#> 6366                      27.18
#> 6367                      20.51
#> 6368                      13.81
#> 6369                      24.81
#> 6370                      27.08
#> 6371                      12.15
#> 6372                      23.77
#> 6373                       26.3
#> 6374                      11.72
#> 6375                      23.11
#> 6376                      36.86
#> 6377                      13.56
#> 6378                      25.25
#> 6379                      35.04
#> 6380                      14.85
#> 6381                      23.67
#> 6382                      30.61
#> 6383                      15.17
#> 6384                      25.11
#> 6385                      38.71
#> 6386                      15.96
#> 6387                      24.75
#> 6388                      35.65
#> 6389                      16.74
#> 6390                      28.72
#> 6391                      34.78
#> 6392                      13.62
#> 6393                      21.24
#> 6394                      25.48
#> 6395                      13.71
#> 6396                      20.15
#> 6397                      30.93
#> 6398                      14.97
#> 6399                      22.93
#> 6400                      35.27
#> 6401                      15.03
#> 6402                       25.3
#> 6403                       38.1
#> 6404                      18.01
#> 6405                      13.84
#> 6406                      22.44
#> 6407                       35.8
#> 6408                      16.25
#> 6409                      23.54
#> 6410                       38.1
#> 6411                      18.36
#> 6412                      22.68
#> 6413                      51.23
#> 6414                       9.92
#> 6415                      18.67
#> 6416                      18.04
#> 6417                      24.62
#> 6418                      36.76
#> 6419                      14.16
#> 6420                      22.91
#> 6421                      35.43
#> 6422                      12.81
#> 6423                      21.56
#> 6424                      34.91
#> 6425                      11.92
#> 6426                      21.53
#> 6427                      29.61
#> 6428                      12.06
#> 6429                      21.77
#> 6430                      28.76
#> 6431                      13.31
#> 6432                      23.35
#> 6433                       36.4
#> 6434                      13.13
#> 6435                      22.11
#> 6436                      31.92
#> 6437                      18.97
#> 6438                      15.16
#> 6439                      22.78
#> 6440                      36.62
#> 6441                      12.12
#> 6442                      21.66
#> 6443                      37.57
#> 6444                       13.7
#> 6445                      20.61
#> 6446                      31.94
#> 6447                      15.37
#> 6448                       26.5
#> 6449                       40.8
#> 6450                      13.24
#> 6451                      23.27
#> 6452                      41.98
#> 6453                      17.42
#> 6454                      22.47
#> 6455                      44.34
#> 6456                      16.71
#> 6457                      24.43
#> 6458                       34.2
#> 6459                      15.45
#> 6460                       24.4
#> 6461                      31.29
#> 6462                      17.18
#> 6463                      23.68
#> 6464                      36.19
#> 6465                      13.42
#> 6466                      22.47
#> 6467                      41.89
#> 6468                      17.45
#> 6469                      26.24
#> 6470                       32.4
#> 6471                      16.77
#> 6472                      21.05
#> 6473                      27.75
#> 6474                      11.97
#> 6475                      20.71
#> 6476                      29.34
#> 6477                       13.9
#> 6478                      22.75
#> 6479                      34.21
#> 6480                      13.13
#> 6481                      22.09
#> 6482                       35.9
#> 6483                      17.67
#> 6484                       13.9
#> 6485                      21.57
#> 6486                      33.91
#> 6487                      14.55
#> 6488                      22.55
#> 6489                      33.69
#> 6490                      15.74
#> 6491                      19.42
#> 6492                      36.54
#> 6493                      15.68
#> 6494                      19.49
#> 6495                      33.77
#> 6496                      15.55
#> 6497                      21.53
#> 6498                      27.59
#> 6499                      13.91
#> 6500                      23.46
#> 6501                      29.19
#> 6502                      13.08
#> 6503                      19.88
#> 6504                      39.64
#> 6505                      13.16
#> 6506                      20.78
#> 6507                      36.29
#> 6508                      14.41
#> 6509                      22.73
#> 6510                      32.07
#> 6511                      12.74
#> 6512                      19.32
#> 6513                      34.72
#> 6514                      13.93
#> 6515                      22.97
#> 6516                      33.99
#> 6517                      13.74
#> 6518                      23.92
#> 6519                      33.59
#> 6520                      18.06
#> 6521                       15.8
#> 6522                      19.98
#> 6523                      37.37
#> 6524                          c
#> 6525                      17.51
#> 6526                       19.4
#> 6527                      44.59
#> 6528                      13.14
#> 6529                      17.98
#> 6530                       38.9
#> 6531                      13.33
#> 6532                       19.5
#> 6533                      33.37
#> 6534                      15.74
#> 6535                      18.98
#> 6536                      32.11
#> 6537                      13.05
#> 6538                      19.19
#> 6539                      37.48
#> 6540                      16.92
#> 6541                       26.4
#> 6542                      43.79
#> 6543                      16.71
#> 6544                      24.05
#> 6545                      35.83
#> 6546                      15.31
#> 6547                      20.62
#> 6548                      35.63
#> 6549                         15
#> 6550                       21.5
#> 6551                      36.62
#> 6552                      14.78
#> 6553                      20.64
#> 6554                      35.92
#> 6555                      16.01
#> 6556                      20.72
#> 6557                      31.62
#> 6558                      16.23
#> 6559                      18.32
#> 6560                      37.31
#> 6561                      16.25
#> 6562                      22.45
#> 6563                      35.51
#> 6564                      14.32
#> 6565                      19.01
#> 6566                      38.02
#> 6567                      13.87
#> 6568                      19.48
#> 6569                      39.81
#> 6570                      18.75
#> 6571                      22.59
#> 6572                       35.8
#> 6573                      16.99
#> 6574                      20.11
#> 6575                      34.79
#> 6576                      19.16
#> 6577                      23.86
#> 6578                      39.22
#> 6579                      17.31
#> 6580                      23.29
#> 6581                      27.92
#> 6582                      12.38
#> 6583                      16.28
#> 6584                      36.64
#> 6585                      17.73
#> 6586                      21.82
#> 6587                      34.38
#> 6588                      15.92
#> 6589                      19.74
#> 6590                      35.96
#> 6591                      13.16
#> 6592                      17.51
#> 6593                      41.33
#> 6594                      19.73
#> 6595                      20.55
#> 6596                      54.12
#> 6597                      17.37
#> 6598                      17.36
#> 6599                      41.39
#> 6600                      10.23
#> 6601                      15.78
#> 6602                      30.14
#> 6603                      15.89
#> 6604                      19.96
#> 6605                      37.58
#> 6606                       12.9
#> 6607                       14.8
#> 6608                      36.96
#> 6609                      21.09
#> 6610                      19.09
#> 6611                      41.35
#> 6612                      15.05
#> 6613                      22.44
#> 6614                      44.18
#> 6615                      14.95
#> 6616                      18.86
#> 6617                      42.14
#> 6618                      19.29
#> 6619                      21.48
#> 6620                      35.38
#> 6621                      18.12
#> 6622                      14.04
#> 6623                      22.29
#> 6624                      36.79
#> 6625                      16.15
#> 6626                      21.59
#> 6627                      33.27
#> 6628                      11.41
#> 6629                       20.3
#> 6630                          c
#> 6631                      12.69
#> 6632                       21.2
#> 6633                      32.67
#> 6634                      17.72
#> 6635                      22.53
#> 6636                      44.32
#> 6637                      17.18
#> 6638                      19.73
#> 6639                      39.01
#> 6640                      13.63
#> 6641                      20.94
#> 6642                      32.84
#> 6643                      10.89
#> 6644                       17.5
#> 6645                      32.52
#> 6646                      13.91
#> 6647                      22.15
#> 6648                      38.11
#> 6649                      15.39
#> 6650                      29.24
#> 6651                      30.48
#> 6652                      13.86
#> 6653                      25.34
#> 6654                      54.42
#> 6655                      17.07
#> 6656                      26.84
#> 6657                      38.46
#> 6658                      17.46
#> 6659                      29.31
#> 6660                      35.23
#> 6661                      13.05
#> 6662                      19.86
#> 6663                       35.6
#> 6664                      16.11
#> 6665                      25.47
#> 6666                      38.61
#> 6667                      11.26
#> 6668                      21.75
#> 6669                      34.19
#> 6670                      16.55
#> 6671                      23.57
#> 6672                      40.21
#> 6673                      13.53
#> 6674                      23.21
#> 6675                      32.53
#> 6676                      12.19
#> 6677                      18.49
#> 6678                      33.25
#> 6679                      13.37
#> 6680                      22.88
#> 6681                      35.54
#> 6682                       18.9
#> 6683                      13.49
#> 6684                       24.6
#> 6685                      36.16
#> 6686                      11.31
#> 6687                      22.04
#> 6688                      35.05
#> 6689                      16.43
#> 6690                       30.6
#> 6691                      42.49
#> 6692                      12.38
#> 6693                      23.43
#> 6694                      31.05
#> 6695                      13.32
#> 6696                       22.8
#> 6697                      32.45
#> 6698                      14.31
#> 6699                      27.82
#> 6700                      33.74
#> 6701                      15.25
#> 6702                      23.58
#> 6703                      38.92
#> 6704                      13.15
#> 6705                      25.49
#> 6706                      38.42
#> 6707                      14.07
#> 6708                      25.58
#> 6709                      36.04
#> 6710                          c
#> 6711                      11.79
#> 6712                      22.48
#> 6713                      33.27
#> 6714                      12.79
#> 6715                      22.47
#> 6716                      37.79
#> 6717                      14.29
#> 6718                      23.92
#> 6719                      31.52
#> 6720                      14.58
#> 6721                      24.96
#> 6722                      43.19
#> 6723                      12.45
#> 6724                      26.12
#> 6725                      34.11
#> 6726                      13.09
#> 6727                       21.9
#> 6728                       33.6
#> 6729                      18.82
#> 6730                      14.95
#> 6731                      22.84
#> 6732                      36.02
#> 6733                      19.24
#> 6734                      14.24
#> 6735                      24.74
#> 6736                      32.57
#> 6737                       15.3
#> 6738                      24.96
#> 6739                      27.34
#> 6740                      16.33
#> 6741                      28.26
#> 6742                      32.42
#> 6743                      14.61
#> 6744                      24.33
#> 6745                         39
#> 6746                      13.46
#> 6747                      26.38
#> 6748                      29.45
#> 6749                      15.38
#> 6750                      25.32
#> 6751                      22.51
#> 6752                      14.89
#> 6753                      24.98
#> 6754                       33.6
#> 6755                       12.4
#> 6756                      21.96
#> 6757                       36.5
#> 6758                      15.18
#> 6759                      24.92
#> 6760                      38.61
#> 6761                      12.56
#> 6762                      20.95
#> 6763                      29.84
#> 6764                      15.05
#> 6765                      26.58
#> 6766                       22.8
#> 6767                      14.82
#> 6768                      26.96
#> 6769                      35.57
#> 6770                      11.03
#> 6771                      23.64
#> 6772                       27.6
#> 6773                      18.71
#> 6774                       14.7
#> 6775                      23.25
#> 6776                      35.65
#> 6777                      16.06
#> 6778                      27.16
#> 6779                      32.71
#> 6780                       11.3
#> 6781                       20.9
#> 6782                      42.01
#> 6783                      14.49
#> 6784                      22.11
#> 6785                      36.12
#> 6786                      19.06
#> 6787                      30.76
#> 6788                      31.08
#> 6789                       11.3
#> 6790                      21.75
#> 6791                      34.05
#> 6792                      13.33
#> 6793                      24.12
#> 6794                      33.33
#> 6795                       12.8
#> 6796                      23.33
#> 6797                      25.65
#> 6798                      11.47
#> 6799                      22.12
#> 6800                      36.74
#> 6801                      15.19
#> 6802                      22.39
#> 6803                       35.4
#> 6804                      13.24
#> 6805                      23.11
#> 6806                      40.12
#> 6807                      16.74
#> 6808                      20.79
#> 6809                      41.96
#> 6810                      15.83
#> 6811                      21.93
#> 6812                      40.89
#> 6813                      15.37
#> 6814                       25.4
#> 6815                       48.1
#> 6816                      16.87
#> 6817                      26.05
#> 6818                      36.76
#> 6819                       12.7
#> 6820                      22.85
#> 6821                      36.72
#> 6822                      13.77
#> 6823                      24.29
#> 6824                      31.48
#> 6825                      11.36
#> 6826                      15.01
#> 6827                      29.32
#> 6828                      14.04
#> 6829                       21.9
#> 6830                      33.11
#> 6831                      21.14
#> 6832                      32.76
#> 6833                      36.99
#> 6834                      16.66
#> 6835                      25.58
#> 6836                      38.25
#> 6837                       14.5
#> 6838                      24.22
#> 6839                      31.59
#> 6840                      15.71
#> 6841                      27.63
#> 6842                      34.13
#> 6843                      16.84
#> 6844                      25.21
#> 6845                       36.4
#> 6846                      14.29
#> 6847                      22.84
#> 6848                       30.7
#> 6849                      19.41
#> 6850                      15.08
#> 6851                      24.43
#> 6852                      34.66
#> 6853                      16.65
#> 6854                      25.67
#> 6855                      36.93
#> 6856                      12.91
#> 6857                      23.23
#> 6858                      27.38
#> 6859                      14.45
#> 6860                      27.29
#> 6861                      20.51
#> 6862                      14.43
#> 6863                      25.29
#> 6864                      28.96
#> 6865                       12.7
#> 6866                      23.82
#> 6867                       27.6
#> 6868                      12.27
#> 6869                      23.41
#> 6870                      38.07
#> 6871                      14.34
#> 6872                       25.7
#> 6873                       36.1
#> 6874                      15.44
#> 6875                      23.95
#> 6876                      32.23
#> 6877                      15.75
#> 6878                      25.55
#> 6879                      39.54
#> 6880                      16.59
#> 6881                      25.05
#> 6882                      35.95
#> 6883                      17.05
#> 6884                      28.62
#> 6885                      35.14
#> 6886                      14.37
#> 6887                      21.56
#> 6888                      25.29
#> 6889                      14.31
#> 6890                      20.25
#> 6891                      30.95
#> 6892                      15.39
#> 6893                      22.98
#> 6894                      36.02
#> 6895                      15.64
#> 6896                      25.64
#> 6897                      39.05
#> 6898                      18.42
#> 6899                       14.4
#> 6900                      22.66
#> 6901                         36
#> 6902                      16.97
#> 6903                      24.04
#> 6904                      37.77
#> 6905                      18.38
#> 6906                      22.54
#> 6907                      50.79
#> 6908                       9.88
#> 6909                      19.05
#> 6910                       18.7
#> 6911                      25.01
#> 6912                      36.87
#> 6913                      14.75
#> 6914                      23.04
#> 6915                      36.62
#> 6916                      13.36
#> 6917                      21.66
#> 6918                      35.57
#> 6919                      12.53
#> 6920                      21.41
#> 6921                      29.78
#> 6922                      12.76
#> 6923                      22.14
#> 6924                      29.03
#> 6925                      13.85
#> 6926                      23.66
#> 6927                      36.95
#> 6928                      13.74
#> 6929                       22.5
#> 6930                      31.36
#> 6931                      19.47
#> 6932                      15.79
#> 6933                      23.13
#> 6934                      37.15
#> 6935                      12.24
#> 6936                      22.09
#> 6937                      37.61
#> 6938                      14.07
#> 6939                      20.79
#> 6940                      30.65
#> 6941                      15.95
#> 6942                      26.57
#> 6943                      41.94
#> 6944                      13.73
#> 6945                      23.84
#> 6946                      41.51
#> 6947                      18.08
#> 6948                      22.68
#> 6949                      44.51
#> 6950                      17.28
#> 6951                      24.74
#> 6952                      34.75
#> 6953                      16.32
#> 6954                       25.2
#> 6955                      31.18
#> 6956                      17.68
#> 6957                      24.05
#> 6958                      36.61
#> 6959                      14.15
#> 6960                      22.91
#> 6961                      43.57
#> 6962                      17.97
#> 6963                      26.44
#> 6964                      33.58
#> 6965                      17.26
#> 6966                      21.43
#> 6967                      32.28
#> 6968                      12.84
#> 6969                      21.25
#> 6970                      29.45
#> 6971                      14.43
#> 6972                      22.99
#> 6973                      34.92
#> 6974                      13.82
#> 6975                       22.5
#> 6976                      36.43
#> 6977                       18.1
#> 6978                      14.39
#> 6979                      21.93
#> 6980                      34.22
#> 6981                      15.18
#> 6982                      22.93
#> 6983                      33.84
#> 6984                       16.1
#> 6985                      19.29
#> 6986                      36.88
#> 6987                      16.13
#> 6988                      19.94
#> 6989                      34.16
#> 6990                      16.17
#> 6991                      21.78
#> 6992                      28.04
#> 6993                      14.31
#> 6994                      23.81
#> 6995                      28.02
#> 6996                      13.54
#> 6997                      20.31
#> 6998                      39.52
#> 6999                      13.52
#> 7000                      21.07
#> 7001                      36.47
#> 7002                      14.86
#> 7003                      23.13
#> 7004                      32.28
#> 7005                      13.22
#> 7006                      19.56
#> 7007                      35.04
#> 7008                      14.59
#> 7009                      23.68
#> 7010                      34.62
#> 7011                      14.22
#> 7012                      24.25
#> 7013                      34.23
#> 7014                      18.49
#> 7015                      16.36
#> 7016                      20.26
#> 7017                      37.67
#> 7018                          c
#> 7019                      17.91
#> 7020                      19.75
#> 7021                      44.47
#> 7022                      13.92
#> 7023                      18.24
#> 7024                      39.67
#> 7025                      13.96
#> 7026                       19.8
#> 7027                      34.02
#> 7028                      16.29
#> 7029                      19.09
#> 7030                      32.33
#> 7031                      13.57
#> 7032                      19.64
#> 7033                      38.34
#> 7034                      17.57
#> 7035                      26.61
#> 7036                      44.14
#> 7037                      17.13
#> 7038                      24.14
#> 7039                      35.51
#> 7040                      15.84
#> 7041                      20.98
#> 7042                      36.82
#> 7043                      15.57
#> 7044                      21.93
#> 7045                      37.06
#> 7046                      15.42
#> 7047                      21.02
#> 7048                      35.42
#> 7049                      16.78
#> 7050                      20.99
#> 7051                      33.72
#> 7052                      16.96
#> 7053                      18.45
#> 7054                      38.47
#> 7055                      16.55
#> 7056                      22.69
#> 7057                      34.83
#> 7058                      14.94
#> 7059                      19.31
#> 7060                      39.95
#> 7061                      14.38
#> 7062                      19.93
#> 7063                      39.94
#> 7064                       19.3
#> 7065                      22.67
#> 7066                      36.33
#> 7067                      17.71
#> 7068                      20.53
#> 7069                      35.44
#> 7070                      19.82
#> 7071                      23.87
#> 7072                      40.41
#> 7073                      17.87
#> 7074                      24.88
#> 7075                      28.35
#> 7076                       13.1
#> 7077                      16.53
#> 7078                      37.75
#> 7079                      18.36
#> 7080                      21.98
#> 7081                       34.4
#> 7082                      16.45
#> 7083                      20.91
#> 7084                      35.48
#> 7085                      13.71
#> 7086                      17.69
#> 7087                      40.69
#> 7088                      20.32
#> 7089                      20.58
#> 7090                       55.2
#> 7091                      18.03
#> 7092                      17.73
#> 7093                      42.83
#> 7094                      10.82
#> 7095                       15.8
#> 7096                      29.74
#> 7097                      16.44
#> 7098                      20.21
#> 7099                      37.02
#> 7100                      13.58
#> 7101                      15.18
#> 7102                       37.2
#> 7103                      21.51
#> 7104                      19.35
#> 7105                      41.16
#> 7106                      15.33
#> 7107                      22.24
#> 7108                      44.55
#> 7109                      15.56
#> 7110                      19.13
#> 7111                      41.75
#> 7112                      19.72
#> 7113                      21.71
#> 7114                      34.06
#> 7115                      18.56
#> 7116                       14.6
#> 7117                      22.59
#> 7118                       37.2
#> 7119                      16.64
#> 7120                       21.9
#> 7121                      34.08
#> 7122                      11.99
#> 7123                       20.4
#> 7124                          c
#> 7125                      13.22
#> 7126                      21.37
#> 7127                      32.96
#> 7128                      18.49
#> 7129                      22.83
#> 7130                      43.89
#> 7131                      17.93
#> 7132                      19.89
#> 7133                      40.31
#> 7134                      13.99
#> 7135                      21.02
#> 7136                       32.2
#> 7137                      11.45
#> 7138                      17.51
#> 7139                      32.79
#> 7140                      14.33
#> 7141                      22.24
#> 7142                       38.2
#> 7143                      15.96
#> 7144                      29.12
#> 7145                      31.55
#> 7146                      14.58
#> 7147                      25.25
#> 7148                       54.2
#> 7149                      17.76
#> 7150                      27.13
#> 7151                      37.58
#> 7152                      18.16
#> 7153                      29.48
#> 7154                      36.29
#> 7155                      13.69
#> 7156                      20.13
#> 7157                      36.31
#> 7158                      16.65
#> 7159                      26.03
#> 7160                      39.32
#> 7161                      11.77
#> 7162                      22.11
#> 7163                      35.01
#> 7164                      17.13
#> 7165                      23.96
#> 7166                      40.44
#> 7167                      13.97
#> 7168                      23.47
#> 7169                      32.96
#> 7170                       12.7
#> 7171                      18.77
#> 7172                      33.77
#> 7173                         14
#> 7174                      23.38
#> 7175                      35.87
#> 7176                      19.39
#> 7177                      14.07
#> 7178                      24.99
#> 7179                      36.41
#> 7180                      11.88
#> 7181                      22.43
#> 7182                      35.98
#> 7183                      17.03
#> 7184                      30.98
#> 7185                      43.15
#> 7186                      13.12
#> 7187                      23.99
#> 7188                      31.51
#> 7189                       13.7
#> 7190                      23.54
#> 7191                      33.06
#> 7192                      15.07
#> 7193                      28.19
#> 7194                      35.35
#> 7195                      15.65
#> 7196                       23.8
#> 7197                      38.57
#> 7198                      13.81
#> 7199                      25.97
#> 7200                      38.75
#> 7201                      14.73
#> 7202                      25.97
#> 7203                       35.7
#> 7204                          c
#> 7205                      12.29
#> 7206                      22.84
#> 7207                      32.83
#> 7208                      13.38
#> 7209                      22.54
#> 7210                      37.69
#> 7211                      14.81
#> 7212                      24.33
#> 7213                      31.65
#> 7214                      15.21
#> 7215                      25.27
#> 7216                      43.29
#> 7217                      13.05
#> 7218                      26.52
#> 7219                      34.69
#> 7220                      13.61
#> 7221                      22.32
#> 7222                      33.36