diff --git a/notebooks/explore.ipynb b/notebooks/explore.ipynb index 44c18f0..aac160f 100644 --- a/notebooks/explore.ipynb +++ b/notebooks/explore.ipynb @@ -2,14 +2,22 @@ "cells": [ { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "import popgetter\n", "from icecream import ic\n", "import pandas as pd\n", - "\n", + "import re" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ "catalog: pd.DataFrame = popgetter.defs.load_asset_value([\"be\", \"catalog_as_dataframe\"])\n", "\n", "geo_cat = catalog[\n", @@ -34,6 +42,55 @@ "# \"node\" : \"https://statbel.fgov.be/node/4726\"," ] }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2024-07-04 11:42:45 +0100 - dagster - DEBUG - system - Loading file from: /Users/a.smith/code/urbananalytics/popgetter/persist/storage/gbr/catalog using PickledObjectFilesystemIOManager...\n", + "ic| source_download_url: array(['https://www.nomisweb.co.uk/output/census/2021/census2021-ts001.zip'],\n", + " dtype=object)\n", + "ic| source_archive_file_path: 'census2021-ts001-oa.csv'\n", + "ic| source_download_url: array(['https://www.nomisweb.co.uk/output/census/2021/census2021-ts001.zip'],\n", + " dtype=object)\n", + "ic| source_archive_file_path: 'census2021-ts001-oa.csv'\n" + ] + }, + { + "data": { + "text/plain": [ + "'census2021-ts001-oa.csv'" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "catalog: pd.DataFrame = popgetter.defs.load_asset_value([\"gbr\", \"catalog\"])\n", + "\n", + "# catalog.head(1).T\n", + "\n", + "current_table = catalog[catalog[\"partition_key\"] == \"oa/TS001\"]\n", + "\n", + "source_download_url = current_table[\"source_download_url\"].values\n", + "source_archive_file_path = current_table[\"source_archive_file_path\"].values[0]\n", + "\n", + "ic(source_download_url)\n", + "ic(source_archive_file_path)\n", + "\n", + "source_download_url = current_table[\"source_download_url\"].to_numpy()\n", + "source_archive_file_path = current_table[\"source_archive_file_path\"].to_numpy()[0]\n", + "\n", + "ic(source_download_url)\n", + "ic(source_archive_file_path)" + ] + }, { "cell_type": "code", "execution_count": null, @@ -48,6 +105,352 @@ "# ic(geometry.columns)\n", "geometry.plot(legend=True)" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import requests\n", + "\n", + "# Get description of the table\n", + "api_url = \"https://www.nomisweb.co.uk/api/v01/dataset/nm_1_1.overview.json?select=DateMetadata,DatasetMetadata,Dimensions,DimensionMetadata\"\n", + "\n", + "api_url = \"https://www.nomisweb.co.uk/api/v01/dataset/C2021TS001/overview.json?select=DatesetInfo\"\n", + "\n", + "api_url = \"https://www.nomisweb.co.uk/api/v01/concept/C2021TS001.def.sdmx.json\"\n", + "\n", + "\n", + "# DatasetInfo" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "ic| df.shape: (331, 312)\n", + "ic| list(range(5, 17)): [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]\n", + "ic| columns_to_sum: ['Sex: All persons; Age: Aged 5 years; measures: Value',\n", + " 'Sex: All persons; Age: Aged 6 years; measures: Value',\n", + " 'Sex: All persons; Age: Aged 7 years; measures: Value',\n", + " 'Sex: All persons; Age: Aged 8 years; measures: Value',\n", + " 'Sex: All persons; Age: Aged 9 years; measures: Value',\n", + " 'Sex: All persons; Age: Aged 10 years; measures: Value',\n", + " 'Sex: All persons; Age: Aged 11 years; measures: Value',\n", + " 'Sex: All persons; Age: Aged 12 years; measures: Value',\n", + " 'Sex: All persons; Age: Aged 13 years; measures: Value',\n", + " 'Sex: All persons; Age: Aged 14 years; measures: Value',\n", + " 'Sex: All persons; Age: Aged 15 years; measures: Value',\n", + " 'Sex: All persons; Age: Aged 16 years; measures: Value',\n", + " 'Sex: All persons; Age: Aged 17 years; measures: Value']\n", + "ic| new_table.shape: (331, 4)\n", + "ic| new_table.head(): date geography geography code new_col\n", + " 0 2021 Hartlepool E06000001 14847\n", + " 1 2021 Middlesbrough E06000002 24540\n", + " 2 2021 Redcar and Cleveland E06000003 20440\n", + " 3 2021 Stockton-on-Tees E06000004 32528\n", + " 4 2021 Darlington E06000005 16739\n", + "ic| new_table.columns: Index(['date', 'geography', 'geography code', 'new_col'], dtype='object')\n" + ] + }, + { + "data": { + "text/plain": [ + "Index(['date', 'geography', 'geography code', 'new_col'], dtype='object')" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Test aggregation of census2021-ts009-ltla\n", + "\n", + "df = pd.read_csv(\"/Users/a.smith/Downloads/census2021-ts009/census2021-ts009-ltla.csv\")\n", + "ic(df.shape)\n", + "\n", + "# single_row = df.head(1)\n", + "# ic(single_row.T)\n", + "\n", + "# Reproduce this example from NI:\n", + "# DerivedColumn(\n", + "# hxltag=\"#population+children+age5_17\",\n", + "# filter_func=lambda df: df.query(f\"{age_code} >= 5 and {age_code} < 18\"),\n", + "# output_column_name=\"children_5_17\",\n", + "# human_readable_name=\"Children aged 5 to 17\",\n", + "# ),\n", + "\n", + "\n", + "def columns_for_5_17():\n", + " regex_str = r\"Sex: All persons; Age: Aged (?P\\d\\d?) years?; measures: Value\"\n", + " regex = re.compile(regex_str)\n", + "\n", + " ic(list(range(5, 17)))\n", + "\n", + " columns_to_sum = []\n", + " for col in df.columns:\n", + " match = regex.search(col)\n", + " if match and int(match.group(\"age\")) in list(range(5, 18)):\n", + " columns_to_sum.append(col)\n", + " return columns_to_sum\n", + "\n", + "\n", + "# [col for col in df.columns if ic(regex.search(col).group(\"age\")) in (\"0\", \"1\")]\n", + "columns_to_sum = columns_for_5_17()\n", + "ic(columns_to_sum)\n", + "\n", + "# filter_func = lambda row: sum([col in row for col in (\"All ages\", \"All\")])\n", + "func = lambda row: sum([row[col] for col in columns_to_sum])\n", + "\n", + "# result = single_row.apply(filter_func, axis=1)\n", + "# ic(result)\n", + "\n", + "new_table = df.assign(**{\"new_col\": df.apply(func, axis=1)}).filter(\n", + " [\"date\", \"geography\", \"geography code\", \"new_col\"]\n", + ")\n", + "ic(new_table.shape)\n", + "ic(new_table.head())\n", + "ic(new_table.columns)\n", + "# for r in single_row.columns:\n", + "# print(r)\n", + "# ic(new_table[['date', 'geography', 'geography code', 'new_col']])" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "ic| l: ['z', 'a', 'b', 'c']\n" + ] + }, + { + "data": { + "text/plain": [ + "['z', 'a', 'b', 'c']" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "d = {\"a\": 1, \"b\": 2, \"c\": 3}\n", + "\n", + "l = [\"z\", *d.keys()]\n", + "ic(l)" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "abc\n", + "defghi\n", + "jklmnopqrstuvwxyz\n" + ] + } + ], + "source": [ + "# Understanding partials\n", + "\n", + "from functools import partial\n", + "\n", + "\n", + "all_columns_to_sum = [\n", + " [\"a\", \"b\", \"c\"],\n", + " [\"d\", \"e\", \"f\", \"g\", \"h\", \"i\"],\n", + " [\n", + " \"j\",\n", + " \"k\",\n", + " \"l\",\n", + " \"m\",\n", + " \"n\",\n", + " \"o\",\n", + " \"p\",\n", + " \"q\",\n", + " \"r\",\n", + " \"s\",\n", + " \"t\",\n", + " \"u\",\n", + " \"v\",\n", + " \"w\",\n", + " \"x\",\n", + " \"y\",\n", + " \"z\",\n", + " ],\n", + "]\n", + "\n", + "all_funcs = []\n", + "\n", + "for columns_to_sum in all_columns_to_sum:\n", + "\n", + " def func(char_list):\n", + " # return sum([row[col] for col in columns_to_sum])\n", + " # return partial(lambda x: \"\".join(x), char_list)\n", + " return \"\".join(char_list)\n", + "\n", + " all_funcs.append(partial(func, char_list=columns_to_sum))\n", + "\n", + "\n", + "for my_func in all_funcs:\n", + " print(my_func())\n", + " # print(filter_func({\"a\": 1, \"b\": 2, \"c\": 3, \"d\": 4, \"e\": 5, \"f\": 6}))\n", + "\n", + "# def filter_func(row):\n", + "# return sum([row[col] for col in columns_to_sum])" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2024-07-04 20:31:03 +0100 - dagster - DEBUG - system - Loading file from: /Users/a.smith/code/urbananalytics/popgetter/persist/storage/gbr/census_tables/ltla/TS009 using PickledObjectFilesystemIOManager...\n", + "ic| type(derived): \n", + "ic| derived.head(1).T: 0\n", + " date 2021\n", + " geography Hartlepool\n", + " geography code E06000001\n", + " Sex: All persons; Age: Total; measures: Value 92347\n", + " Sex: All persons; Age: Aged 4 years and under; ... 4981\n", + " ... ...\n", + " Sex: Male; Age: Aged 86 years; measures: Value 122\n", + " Sex: Male; Age: Aged 87 years; measures: Value 122\n", + " Sex: Male; Age: Aged 88 years; measures: Value 101\n", + " Sex: Male; Age: Aged 89 years; measures: Value 81\n", + " Sex: Male; Age: Aged 90 years and over; measure... 217\n", + " \n", + " [312 rows x 1 columns]\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0
date2021
geographyHartlepool
geography codeE06000001
Sex: All persons; Age: Total; measures: Value92347
Sex: All persons; Age: Aged 4 years and under; measures: Value4981
......
Sex: Male; Age: Aged 86 years; measures: Value122
Sex: Male; Age: Aged 87 years; measures: Value122
Sex: Male; Age: Aged 88 years; measures: Value101
Sex: Male; Age: Aged 89 years; measures: Value81
Sex: Male; Age: Aged 90 years and over; measures: Value217
\n", + "

312 rows × 1 columns

\n", + "
" + ], + "text/plain": [ + " 0\n", + "date 2021\n", + "geography Hartlepool\n", + "geography code E06000001\n", + "Sex: All persons; Age: Total; measures: Value 92347\n", + "Sex: All persons; Age: Aged 4 years and under; ... 4981\n", + "... ...\n", + "Sex: Male; Age: Aged 86 years; measures: Value 122\n", + "Sex: Male; Age: Aged 87 years; measures: Value 122\n", + "Sex: Male; Age: Aged 88 years; measures: Value 101\n", + "Sex: Male; Age: Aged 89 years; measures: Value 81\n", + "Sex: Male; Age: Aged 90 years and over; measure... 217\n", + "\n", + "[312 rows x 1 columns]" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "derived = popgetter.defs.load_asset_value(\n", + " [\"gbr\", \"census_tables\"], partition_key=\"ltla/TS009\"\n", + ")\n", + "\n", + "ic(type(derived))\n", + "ic(derived.head(1).T)\n", + "# ic(derived.metadata)\n", + "# ic(derived.metrics.head(1).T)" + ] } ], "metadata": { @@ -66,7 +469,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.3" + "version": "3.12.2" } }, "nbformat": 4, diff --git a/python/popgetter/assets/uk/__init__.py b/python/popgetter/assets/uk/__init__.py index 610c6e1..720276a 100644 --- a/python/popgetter/assets/uk/__init__.py +++ b/python/popgetter/assets/uk/__init__.py @@ -3,7 +3,8 @@ from pathlib import Path from . import ( - uk_os_opendata, # noqa: F401 + england_wales_census, # noqa: F401 + # uk_os_opendata, united_kingdom, # noqa: F401 ) @@ -12,6 +13,10 @@ uk_venv_path: str = str((Path(__file__).parent.parent / "uk_venv").absolute()) +#################### +# Remove the following code block +# For now-just to check the list of assets +#################### # @asset(key_prefix="uk", name="create_custom_venv") # def create_custom_venv( # context, diff --git a/python/popgetter/assets/uk/england_wales_census.py b/python/popgetter/assets/uk/england_wales_census.py new file mode 100644 index 0000000..ebf75bd --- /dev/null +++ b/python/popgetter/assets/uk/england_wales_census.py @@ -0,0 +1,819 @@ +from __future__ import annotations + +import re +import zipfile +from collections.abc import Callable, Iterable +from dataclasses import dataclass +from datetime import date +from functools import partial +from pathlib import Path +from tempfile import TemporaryDirectory +from typing import Any, ClassVar, Literal +from urllib.parse import urljoin + +import dagster +import geopandas as gpd +import pandas as pd +import requests +from bs4 import BeautifulSoup +from dagster import MetadataValue +from icecream import ic +from pandas import DataFrame + +from popgetter.assets.country import Country +from popgetter.cloud_outputs import GeometryOutput, MetricsOutput +from popgetter.metadata import ( + COL, + CountryMetadata, + DataPublisher, + GeometryMetadata, + MetricMetadata, + SourceDataRelease, + metadata_to_dataframe, +) +from popgetter.utils import ( + SourceDataAssumptionsOutdated, + add_metadata, + extract_main_file_from_zip, + markdown_from_plot, +) + +# TODO: +# - Create a asset which is a catalog of the available data / tables / metrics +# - This catalog must include a field which is the smallest geometry level where the data is available +# - The geometry level is only discoverable after downloading the zip file +# - The zip files can contain multiple CSV files, one for each geometry level +# - Some of the downloaded files mistakenly have two consecutive `.` in the filename, e.g. `census2021-ts002-lsoa..csv`. We need to be able to gracefully handle this +# - The catalog must to parsed into an Dagster Partition, so that +# - individual tables can be uploaded to the cloud table sensor +# - the metadata object can be created for each table/metric +from .united_kingdom import country + + +@dataclass +class EWCensusGeometryLevel: + level: str + geo_id_column: str + name_columns: dict[str, str] # keys = language codes, values = column names + data_download_url: str + documentation_url: str + hxl_tag: str = "" + + def __post_init__(self): + if self.hxl_tag == "": + self.hxl_tag = f"#geo+bounds+code+{self.level}" + + +@dataclass +class SourceTable: + hxltag: str + geo_level: str + geo_column: str + source_column: str + + +@dataclass +class DerivedColumn: + hxltag: str + # If `None`, then just the named `source_column` will be used + column_select: Callable[[pd.DataFrame], list[str]] + output_column_name: str + human_readable_name: str + + +def census_table_metadata( + catalog_row: dict[str, str], + source_table: SourceTable, + source_data_releases: dict[str, SourceDataRelease], +) -> MetricMetadata: + return MetricMetadata( + human_readable_name=catalog_row["human_readable_name"], + source_download_url=catalog_row["source_download_url"], + source_archive_file_path=catalog_row["source_archive_file_path"], + source_documentation_url=catalog_row["source_documentation_url"], + source_data_release_id=source_data_releases[source_table.geo_level].id, + # TODO - this is a placeholder + parent_metric_id="unknown_at_this_stage", + potential_denominator_ids=None, + parquet_margin_of_error_file=None, + parquet_margin_of_error_column=None, + parquet_column_name=source_table.source_column, + # TODO - this is a placeholder + metric_parquet_path="unknown_at_this_stage", + hxl_tag=source_table.hxltag, + description=catalog_row["description"], + source_metric_id=source_table.hxltag, + ) + + +CENSUS_COLLECTION_DATE = date(2021, 3, 21) + +EW_CENSUS_GEO_LEVELS: dict[str, EWCensusGeometryLevel] = { + "oa": EWCensusGeometryLevel( + level="oa", + geo_id_column="oa21cd", + name_columns={"eng": "name"}, + data_download_url="https://borders.ukdataservice.ac.uk/ukborders/easy_download/prebuilt/shape/Ew_oa_2021.zip", + documentation_url="https://borders.ukdataservice.ac.uk/easy_download_data.html?data=Ew_oa_2021", + ), + "lsoa": EWCensusGeometryLevel( + level="lsoa", + geo_id_column="lsoa21cd", + name_columns={"eng": "name"}, + data_download_url="https://borders.ukdataservice.ac.uk/ukborders/easy_download/prebuilt/shape/Ew_lsoa_2021.zip", + documentation_url="https://borders.ukdataservice.ac.uk/easy_download_data.html?data=Ew_lsoa_2021", + ), + "msoa": EWCensusGeometryLevel( + level="msoa", + geo_id_column="msoa21cd", + name_columns={"eng": "name"}, + data_download_url="https://borders.ukdataservice.ac.uk/ukborders/easy_download/prebuilt/shape/Ew_msoa_2021.zip", + documentation_url="https://borders.ukdataservice.ac.uk/easy_download_data.html?data=Ew_msoa_2021", + ), + "ltla": EWCensusGeometryLevel( + level="ltla", + geo_id_column="ltla22cd", + name_columns={"eng": "ltla22nm", "cym": "ltla22nmw"}, + data_download_url="https://borders.ukdataservice.ac.uk/ukborders/easy_download/prebuilt/shape/Ew_ltla_2022.zip", + documentation_url="https://borders.ukdataservice.ac.uk/easy_download_data.html?data=Ew_ltla_2022", + ), + "rgn": EWCensusGeometryLevel( + level="rgn", + geo_id_column="rgn22cd", + name_columns={"eng": "rgn22nm", "cym": "rgn22nmw"}, + data_download_url="https://borders.ukdataservice.ac.uk/ukborders/easy_download/prebuilt/shape/Ew_rgn_2022.zip", + documentation_url="https://borders.ukdataservice.ac.uk/easy_download_data.html?data=Ew_rgn_2022", + ), + "ctry": EWCensusGeometryLevel( + level="ctry", + geo_id_column="ctry22cd", + name_columns={"eng": "ctry22nm", "cym": "ctry22nmw"}, + data_download_url="https://borders.ukdataservice.ac.uk/ukborders/easy_download/prebuilt/shape/Ew_ctry_2022.zip", + documentation_url="https://borders.ukdataservice.ac.uk/easy_download_data.html?data=Ew_ctry_2022", + ), +} + + +# TODO - this is probably only required for tests, +# hence would be best move to a test fixture +# REQUIRED_TABLES = ["TS009"] if os.getenv("ENV") == "dev" else None +REQUIRED_TABLES = None + +# TODO - these regexes are probably only useful for table TS009. +# At present that is the only table we use using for any of the derived metrics +# In future we might need to structure these in a more scalable manner +SexCategory = Literal["female", "male", "total"] + +sex_regexes: dict[SexCategory, re.Pattern[str]] = { + "total": re.compile(r"Sex: All persons;"), + "female": re.compile(r"Sex: Female;"), + "male": re.compile(r"Sex: Male;"), +} + +age_regex = re.compile( + r"Age: (Aged (?P\d\d?) years?;|(?PAged under 1 year);|(?PAged 90 years and over);) measures: Value" +) +all_ages_regex = re.compile(r"Age: Total; measures: Value") + + +def columns_selector( + columns_list: Iterable[Any], age_range: list[int] | None, sex: SexCategory +): + sex_regex = sex_regexes[sex] + + columns_to_sum = [] + for col in columns_list: + if not sex_regex.search(col): + continue + + # No age range specified, so just look for the total column + if age_range is None: + match = all_ages_regex.search(col) + if match: + columns_to_sum.append(col) + continue + + # Else look for the specific age range + match = age_regex.search(col) + if match and ( + (match.group("baby") and 0 in age_range) + or (match.group("ninetyplus") and 90 in age_range) + or (match.group("age") and int(match.group("age")) in age_range) + ): + columns_to_sum.append(col) + + return columns_to_sum + + +DERIVED_COLUMNS = [ + DerivedColumn( + hxltag="#population+children+age5_17", + column_select=lambda df: columns_selector( + df.columns, list(range(5, 18)), "total" + ), + output_column_name="children_5_17", + human_readable_name="Children aged 5 to 17", + ), + DerivedColumn( + hxltag="#population+infants+age0_4", + column_select=lambda df: columns_selector( + df.columns, + list(range(5)), + "total", + ), + output_column_name="infants_0_4", + human_readable_name="Infants aged 0 to 4", + ), + DerivedColumn( + hxltag="#population+children+age0_17", + column_select=lambda df: columns_selector(df.columns, list(range(18)), "total"), + output_column_name="children_0_17", + human_readable_name="Children aged 0 to 17", + ), + DerivedColumn( + hxltag="#population+adults+f", + output_column_name="adults_f", + column_select=lambda df: columns_selector( + df.columns, list(range(18, 91)), "female" + ), + human_readable_name="Female adults", + ), + DerivedColumn( + hxltag="#population+adults+m", + column_select=lambda df: columns_selector( + df.columns, list(range(18, 91)), "male" + ), + output_column_name="adults_m", + human_readable_name="Male adults", + ), + DerivedColumn( + hxltag="#population+adults", + column_select=lambda df: columns_selector( + df.columns, list(range(18, 91)), "total" + ), + output_column_name="adults", + human_readable_name="Adults", + ), + DerivedColumn( + hxltag="#population+ind", + column_select=lambda df: columns_selector(df.columns, None, "total"), + output_column_name="individuals", + human_readable_name="Total individuals", + ), +] + +# Lookup of `partition_key` (eg geom + source table id) to `DerivedColumn` (columns that can be derived from the source table) +DERIVED_COLUMN_SPECIFICATIONS: dict[str, list[DerivedColumn]] = { + "ltla/TS009": DERIVED_COLUMNS, +} + + +class EnglandAndWales(Country): + geo_levels: ClassVar[list[str]] = list(EW_CENSUS_GEO_LEVELS.keys()) + required_tables: list[str] | None = REQUIRED_TABLES + country_metadata: ClassVar[CountryMetadata] = country + + def _country_metadata(self, _context) -> CountryMetadata: + return country + + def _data_publisher( + self, _context, _country_metdata: CountryMetadata + ) -> DataPublisher: + return DataPublisher( + name="Office for National Statistics", + url="https://www.nomisweb.co.uk/sources/census_2021_bulk", + description="We are the UK's largest independent producer of official statistics and its recognised national statistical institute. We are responsible for collecting and publishing statistics related to the economy, population and society at national, regional and local levels. We also conduct the census in England and Wales every 10 years.", + countries_of_interest=[country.id], + ) + + def _catalog(self, context) -> pd.DataFrame: + self.remove_all_partition_keys(context) + + catalog_summary = { + "node": [], + "partition_key": [], + "table_id": [], + "geo_level": [], + "human_readable_name": [], + "description": [], + "metric_parquet_file_url": [], + "parquet_column_name": [], + "parquet_margin_of_error_column": [], + "parquet_margin_of_error_file": [], + "potential_denominator_ids": [], + "parent_metric_id": [], + "source_data_release_id": [], + "source_download_url": [], + "source_format": [], + "source_archive_file_path": [], + "source_documentation_url": [], + } + + bulk_downloads_df = bulk_downloads_webpage() + + for bulk_downloads_index, row in bulk_downloads_df.iterrows(): + table_id = row["table_id"] + + source_documentation_url = _guess_source_documentation_url(table_id) + + # Get description of the table + # TODO - For now this is page scraping the description from the source_documentation_url page + # In the future we should retrieve the description by finding a suitable API call. + # The relevant API is here "https://www.nomisweb.co.uk/api/v01/" + description = row["table_name"] + description = _retrieve_table_description(source_documentation_url) + + # For now this does not use the "extra_post_release_filename" and "extra_post_release_url" tables + for geo_level in self.geo_levels: + # get the path within the zip file + archive_file_path = _guess_csv_filename( + row["original_release_filename"], geo_level + ) + + catalog_summary["node"].append(bulk_downloads_index) + catalog_summary["table_id"].append(table_id) + catalog_summary["geo_level"].append(geo_level) + catalog_summary["partition_key"].append(f"{geo_level}/{table_id}") + catalog_summary["human_readable_name"].append(row["table_name"]) + catalog_summary["description"].append(description) + catalog_summary["metric_parquet_file_url"].append(None) + catalog_summary["parquet_column_name"].append(None) + catalog_summary["parquet_margin_of_error_column"].append(None) + catalog_summary["parquet_margin_of_error_file"].append(None) + catalog_summary["potential_denominator_ids"].append(None) + catalog_summary["parent_metric_id"].append(None) + catalog_summary["source_data_release_id"].append(None) + catalog_summary["source_download_url"].append( + row["original_release_url"] + ) + catalog_summary["source_format"].append(None) + catalog_summary["source_archive_file_path"].append(archive_file_path) + catalog_summary["source_documentation_url"].append( + source_documentation_url + ) + + catalog_df = pd.DataFrame.from_records(catalog_summary) + self.add_partition_keys(context, catalog_df["partition_key"].to_list()) + + add_metadata(context, catalog_df, "Catalog") + return catalog_df + + def _census_tables(self, context, catalog: pd.DataFrame) -> pd.DataFrame: + """ + WIP: + At present this function will download each zipfile multiple times. This is a consequence + of the fact that + * Each partition is a unique combination of topic summary and geometry level. + * Each zip file contains multiple files including every geometry level for a given topic + summary. + + I cannot see an easy way to share a cached downloaded zip file where different files are + then extracted for different partitions (given dagster can in-theory execute partitions + in arbitrary order and even on a cluster of machines). However a better solution may exist. + """ + partition_key = context.asset_partition_key_for_output() + current_table = catalog[catalog["partition_key"] == partition_key] + + source_download_url = current_table["source_download_url"].to_numpy()[0] + source_archive_file_path = current_table["source_archive_file_path"].to_numpy()[ + 0 + ] + + def _extract_csv_from_zipfile(temp_zip: Path, archive_path: Path) -> str: + # This function works around certain bugs in the upstream source data + # + # 1) in some of the filenames have two consecutive `.` in the filename + # e.g. `census2021-ts002-lsoa..csv` + # + # 2) In some cases the individual csv file exists within zipfile, but + # is zero-sized. We treat this the same as if the file does not exist. + # + # 3) In at least one case the zipfile itself is malformed and cannot + # be read. + try: + extract_file_path = extract_main_file_from_zip( + temp_zip, Path(temp_dir), archive_path + ) + except ValueError: + source_archive_file_path = str(Path(archive_path).with_suffix("..csv")) + # If the file does not exist this second call will fail and we + # allow the exception to propagate. + extract_file_path = extract_main_file_from_zip( + temp_zip, Path(temp_dir), source_archive_file_path + ) + except zipfile.BadZipFile as bzf: + err_msg = "The downloaded zipfile is malformed and cannot be read." + raise ValueError(err_msg) from bzf + + ic(extract_file_path) + if Path(extract_file_path).stat().st_size == 0: + err_msg = f"File {archive_path} exists but is zero-sized. Cannot read." + raise ValueError(err_msg) + + return extract_file_path + + # Keep the temp directory when developing, for debugging purposes + # del_temp_dir = os.getenv("ENV") != "dev" + with TemporaryDirectory() as temp_dir: # pyright: ignore [reportCallIssue] + ic(source_download_url) + temp_zip = Path(_download_zipfile(source_download_url, temp_dir)) + + extract_file_path = None + try: + extract_file_path = _extract_csv_from_zipfile( + temp_zip, source_archive_file_path + ) + except ValueError: + # If we still can't find the file, then we assume that this combination of + # table and geometry level does not exist. + # We believe that there are ~63 cases (out of a possible 462) where this is the case + # There does not seems to be a way to determine prior to this point in the + # pipeline. + # In this case we will return an empty dataframe + err_msg = ( + f"Unable to find the file `{source_archive_file_path}` in the" + f" zip file: {source_download_url}. Assuming this combination" + " of topic summary and geometry level does not exist." + ) + context.log.warning(err_msg) + # context.instance.delete_dynamic_partition(self.partition_name, partition_key) + return pd.DataFrame() + + # If we still can't find the file, then there is a different, unforeseen problem + if not extract_file_path: + err_msg = f"Unable to find the file `{source_archive_file_path}` in the zip file: {source_download_url}" + raise SourceDataAssumptionsOutdated(err_msg) + + census_table = pd.read_csv(extract_file_path) + + add_metadata(context, census_table, title=partition_key) + return census_table + + def _derived_metrics( + self, context, census_tables: DataFrame, source_metric_metadata: MetricMetadata + ) -> MetricsOutput: + _SEP = "_" + partition_key = context.partition_key + _geo_level = partition_key.split("/")[0] + source_table = census_tables + source_mmd = source_metric_metadata + # source_column = source_mmd.parquet_column_name + # context.log.debug(ic(source_table.columns)) + # context.log.debug(ic(source_column)) + # context.log.debug(ic(source_table.head())) + context.log.debug(ic(len(source_table))) + + if len(source_table) == 0: + # Source data not available + msg = f"Source data not available for partition key: {partition_key}" + context.log.warning(msg) + return MetricsOutput(metadata=[], metrics=pd.DataFrame()) + + # geo_id = EW_CENSUS_GEO_LEVELS[geo_level].census_table_column + # The columns "date", "geography" and "geography code" appear to be common to all tables + # TODO - Could we use the "date" column to update the mmds? + geo_id = "geography code" + source_table = source_table.rename(columns={geo_id: COL.GEO_ID.value}).drop( + # Drop the "geography" column as it is the name, not the ID + columns=["date", "geography"] + ) + + parquet_file_name = ( + f"{self.key_prefix}/metrics/" + f"{''.join(c for c in partition_key if c.isalnum()) + '.parquet'}" + ) + derived_mmd: list[MetricMetadata] = [] + + # Create MMD for all of the existing columns + for col in source_table.columns: + # We do not need an MMD for the GEO_ID column + if col == COL.GEO_ID.value: + continue + new_mmd = source_mmd.model_copy(deep=True) + new_mmd.parent_metric_id = source_mmd.source_metric_id + new_mmd.metric_parquet_path = parquet_file_name + new_mmd.hxl_tag = "#population+details_unknown" + new_mmd.parquet_column_name = str(col) + new_mmd.human_readable_name = str(col) + derived_mmd.append(new_mmd) + + # Now deal with the derived columns - create MMD and functions to calculate them + new_column_funcs = {} + + # Filter function to sum the columns (which will be used in the loop below) + def sum_cols_func(df, col_names: Iterable[str]): + return df[col_names].sum(axis=1) + # sum([df[col] for col in col_names]) + + try: + metric_specs = DERIVED_COLUMN_SPECIFICATIONS[partition_key] + for metric_spec in metric_specs: + # Get the list of columns that need to be summed + columns_to_sum = metric_spec.column_select(source_table) + # ic(type(columns_to_sum)) + # ic(columns_to_sum) + # Add details to the dict of new columns that will be created + new_column_funcs[metric_spec.output_column_name] = partial( + sum_cols_func, col_names=columns_to_sum + ) + + # Create a new metric metadata object + new_mmd = source_mmd.model_copy(deep=True) + new_mmd.parent_metric_id = source_mmd.source_metric_id + new_mmd.metric_parquet_path = parquet_file_name + new_mmd.hxl_tag = metric_spec.hxltag + new_mmd.parquet_column_name = metric_spec.output_column_name + new_mmd.human_readable_name = metric_spec.human_readable_name + derived_mmd.append(new_mmd) + except KeyError: + # No extra derived metrics specified for this partition -- only use + # those from pivoted data + pass + + # Create a new table which only has the GEO_ID and the new columns + new_table = source_table.assign(**new_column_funcs) + + ic(len(derived_mmd)) + ic(len(new_table.columns)) + ic(type(context)) + + # TODO - adding metadata does not work in the tests + # checking the type of the `context` object is a workarroun for this + # A more robust solution is required + if not isinstance( + context, + dagster._core.execution.context.invocation.DirectAssetExecutionContext, + ): + context.add_output_metadata( + metadata={ + "metadata_preview": MetadataValue.md( + metadata_to_dataframe(derived_mmd).head().to_markdown() + ), + "metrics_shape": f"{new_table.shape[0]} rows x {new_table.shape[1]} columns", + "metrics_columns": MetadataValue.json(new_table.columns.to_list()), + "metrics_preview": MetadataValue.md(new_table.head().to_markdown()), + }, + ) + + return MetricsOutput(metadata=derived_mmd, metrics=new_table) + + def _source_data_releases( + self, + _context, + geometry: list[GeometryOutput], + data_publisher: DataPublisher, + ) -> dict[str, SourceDataRelease]: + source_data_releases = {} + + for geo_output in geometry: + geo_metadata = geo_output.metadata + source_data_release: SourceDataRelease = SourceDataRelease( + name="Census 2021", + date_published=date(2022, 6, 28), + reference_period_start=CENSUS_COLLECTION_DATE, + reference_period_end=CENSUS_COLLECTION_DATE, + collection_period_start=CENSUS_COLLECTION_DATE, + collection_period_end=CENSUS_COLLECTION_DATE, + expect_next_update=date(2031, 1, 1), + url="https://www.ons.gov.uk/census", + data_publisher_id=data_publisher.id, + # Taken from https://www.ons.gov.uk/census + description="The census takes place every 10 years. It gives us a picture of all the people and households in England and Wales.", + geometry_metadata_id=geo_metadata.id, + ) + source_data_releases[geo_metadata.level] = source_data_release + return source_data_releases + + def _source_metric_metadata( + self, + context, + catalog: pd.DataFrame, + source_data_releases: dict[str, SourceDataRelease], + ) -> MetricMetadata: + partition_key = context.partition_key + if ( + self.required_tables is not None + and partition_key not in DERIVED_COLUMN_SPECIFICATIONS + ): + skip_reason = ( + f"Skipping as requested partition {partition_key} is not configured " + f"for derived metrics {DERIVED_COLUMN_SPECIFICATIONS.keys()}" + ) + context.log.warning(skip_reason) + raise RuntimeError(skip_reason) + + catalog_row = catalog[catalog["partition_key"] == partition_key].to_dict( + orient="records" + )[0] + + geo_level = catalog_row["geo_level"] + source_table = SourceTable( + # TODO: how programmatically do this + hxltag="TBD", + geo_level=geo_level, + geo_column=EW_CENSUS_GEO_LEVELS[geo_level].geo_id_column, + source_column="Count", + ) + + return census_table_metadata( + catalog_row, + source_table, + source_data_releases, + ) + + def _geometry(self, context) -> list[GeometryOutput]: + # TODO: This is almost identical to Northern Ireland and Belgium so can probably be refactored to common + # function with config of releases and languages + geometries_to_return = [] + for level_details in EW_CENSUS_GEO_LEVELS.values(): + # TODO: get correct values + geometry_metadata = GeometryMetadata( + validity_period_start=CENSUS_COLLECTION_DATE, + validity_period_end=CENSUS_COLLECTION_DATE, + level=level_details.level, + hxl_tag=level_details.hxl_tag, + country_metadata=country, + ) + geometries_raw: gpd.GeoDataFrame = gpd.read_file( + level_details.data_download_url + ) + + context.log.debug(ic(level_details)) + context.log.debug(ic(geometries_raw.head(1).T)) + + # Standardised the column names + geometries_gdf = geometries_raw.rename( + columns={level_details.geo_id_column: "GEO_ID"} + ).loc[:, ["geometry", "GEO_ID"]] + name_lookup_df = ( + geometries_raw.rename( + columns={ + level_details.geo_id_column: "GEO_ID", + level_details.name_columns["eng"]: "eng", + } + ) + .loc[:, ["GEO_ID", "eng"]] + .drop_duplicates() + ) + geometries_to_return.append( + GeometryOutput( + metadata=geometry_metadata, + gdf=geometries_gdf, + names_df=name_lookup_df, + ) + ) + + # Add output metadata + # TODO, It is not clear that this is the best way to represent the metadata + # Specifically, this assumes that the order of EW_CENSUS_GEO_LEVELS is based + # on the hierarchy of the geometries, which may not be the case. + example_geometry_output = geometries_to_return[0] + first_metadata = example_geometry_output.metadata + first_gdf = example_geometry_output.gdf + first_names = example_geometry_output.names_df + first_joined_gdf = first_gdf.merge(first_names, on="GEO_ID") + ax = first_joined_gdf.plot(column="eng", legend=False) + ax.set_title(f"England & Wales 2021 {first_metadata.level}") + md_plot = markdown_from_plot() + context.add_output_metadata( + metadata={ + "all_geom_levels": MetadataValue.md( + ",".join( + [ + geom_output.metadata.level + for geom_output in geometries_to_return + ] + ) + ), + "first_geometry_plot": MetadataValue.md(md_plot), + "first_names_preview": MetadataValue.md( + first_names.head().to_markdown() + ), + } + ) + + return geometries_to_return + + +def _guess_source_documentation_url(table_id): + return f"https://www.nomisweb.co.uk/datasets/c2021{table_id.lower()}" + + +def _retrieve_table_description(source_documentation_url): + soup = BeautifulSoup( + requests.get(source_documentation_url).content, features="lxml" + ) + landing_info = soup.find_all(id="dataset-landing-information") + + try: + assert len(landing_info) == 1 + landing_info = landing_info[0] + except AssertionError as ae: + err_msg = f"Expected a single section with `id=dataset-landing-information`, but found {len(landing_info)}." + raise SourceDataAssumptionsOutdated(err_msg) from ae + + return "\n".join([text.strip() for text in landing_info.stripped_strings]) + + +def _guess_csv_filename(zip_filename, geometry_level): + """ + Guess the name of the main file in the zip file. + """ + stem = Path(zip_filename).stem + return f"{stem}-{geometry_level}.csv" + + +def bulk_downloads_webpage() -> pd.DataFrame: + """ + Get the list of bulk zip files from the bulk downloads page. + """ + bulk_downloads_page = "https://www.nomisweb.co.uk/sources/census_2021_bulk" + columns = ["table_id", "description", "original_release", "extra_post_release"] + dfs = pd.read_html(bulk_downloads_page, header=0, extract_links="all") + + if len(dfs) != 1: + err_msg = f"Expected a single table on the bulk downloads page, but found {len(dfs)} tables." + raise SourceDataAssumptionsOutdated(err_msg) + + # The first table is the one we want + download_df = dfs[0] + download_df.columns = columns + + # There are some subheadings in the table, which are added as rows by `read_html` + # These can be identified by the `table_id` == `description` == `original_release_filename` + # We need to drop these rows + download_df = download_df[download_df["table_id"] != download_df["description"]] + # expand the tuples into individual columns + return _expand_tuples_in_df(download_df) + + +def _expand_tuples_in_df(df) -> pd.DataFrame: + """ + Expand the tuples in the DataFrame. + """ + root_url = "https://www.nomisweb.co.uk/" + + columns = [ + "table_id", + "table_name", + "original_release_filename", + "original_release_url", + "extra_post_release_filename", + "extra_post_release_url", + ] + new_df = pd.DataFrame(columns=columns) + + # Copy individual columns from the tuples + # If there is a URL, it is in the second element of the tuple, and should be joined with the root URL + # "table_id" and "description" do not have URLs + new_df["table_id"] = df["table_id"].apply(lambda x: x[0]) + new_df["table_name"] = df["description"].apply(lambda x: x[0]) + new_df["original_release_filename"] = df["original_release"].apply(lambda x: x[0]) + new_df["original_release_url"] = df["original_release"].apply( + lambda x: urljoin(root_url, x[1]) + ) + + # There may not be a valid value for "extra_post_release", hence the check using `isinstance` + new_df["extra_post_release_filename"] = df["extra_post_release"].apply( + lambda x: x[0] if isinstance(x, tuple) else None + ) + new_df["extra_post_release_url"] = df["extra_post_release"].apply( + lambda x: urljoin(root_url, x[1]) if isinstance(x, tuple) else None + ) + + return new_df + + +def _download_zipfile(source_download_url, temp_dir) -> str: + temp_dir = Path(temp_dir) + temp_file = temp_dir / "data.zip" + + with requests.get(source_download_url, stream=True) as r: + r.raise_for_status() + with Path(temp_file).open(mode="wb") as f: + for chunk in r.iter_content(chunk_size=(16 * 1024 * 1024)): + f.write(chunk) + + return str(temp_file.resolve()) + + +# if __name__ == "__main__": +# # This is for testing only +# # bulk_files_df = bulk_downloads_webpage() +# # bulk_files_df = bulk_files_df.head(2) +# # ic(bulk_files_df) + +# download_zip_files(bulk_files_df) + + +# Assets +ew_census = EnglandAndWales() +country_metadata = ew_census.create_country_metadata() +data_publisher = ew_census.create_data_publisher() +geometry = ew_census.create_geometry() +source_data_releases = ew_census.create_source_data_releases() +catalog = ew_census.create_catalog() +census_tables = ew_census.create_census_tables() +source_metric_metadata = ew_census.create_source_metric_metadata() +derived_metrics = ew_census.create_derived_metrics() +metrics = ew_census.create_metrics() diff --git a/python/popgetter/assets/uk/uk_os_opendata.py b/python/popgetter/assets/uk/uk_os_opendata.py_ignore similarity index 100% rename from python/popgetter/assets/uk/uk_os_opendata.py rename to python/popgetter/assets/uk/uk_os_opendata.py_ignore diff --git a/tests/demo_data/gbr_ew_census2021-ts009-ltla.csv b/tests/demo_data/gbr_ew_census2021-ts009-ltla.csv new file mode 100644 index 0000000..18e5bb5 --- /dev/null +++ b/tests/demo_data/gbr_ew_census2021-ts009-ltla.csv @@ -0,0 +1,332 @@ +"date","geography","geography code","Sex: All persons; Age: Total; measures: Value","Sex: All persons; Age: Aged 4 years and under; measures: Value","Sex: All persons; Age: Aged under 1 year; measures: Value","Sex: All persons; Age: Aged 1 year; measures: Value","Sex: All persons; Age: Aged 2 years; measures: Value","Sex: All persons; Age: Aged 3 years; measures: Value","Sex: All persons; Age: Aged 4 years; measures: Value","Sex: All persons; Age: Aged 5 to 9 years; measures: Value","Sex: All persons; Age: Aged 5 years; measures: Value","Sex: All persons; Age: Aged 6 years; measures: Value","Sex: All persons; Age: Aged 7 years; measures: Value","Sex: All persons; Age: Aged 8 years; measures: Value","Sex: All persons; Age: Aged 9 years; measures: Value","Sex: All persons; Age: Aged 10 to 15 years; measures: Value","Sex: All persons; Age: Aged 10 years; measures: Value","Sex: All persons; Age: Aged 11 years; measures: Value","Sex: All persons; Age: Aged 12 years; measures: Value","Sex: All persons; Age: Aged 13 years; measures: Value","Sex: All persons; Age: Aged 14 years; measures: Value","Sex: All persons; Age: Aged 15 years; measures: Value","Sex: All persons; Age: Aged 16 to 19 years; measures: Value","Sex: All persons; Age: Aged 16 years; measures: Value","Sex: All persons; Age: Aged 17 years; measures: Value","Sex: All persons; Age: Aged 18 years; measures: Value","Sex: All persons; Age: Aged 19 years; measures: Value","Sex: All persons; Age: Aged 20 to 24 years; measures: Value","Sex: All persons; Age: Aged 20 years; measures: Value","Sex: All persons; Age: Aged 21 years; measures: Value","Sex: All persons; Age: Aged 22 years; measures: Value","Sex: All persons; Age: Aged 23 years; measures: Value","Sex: All persons; Age: Aged 24 years; measures: Value","Sex: All persons; Age: Aged 25 to 34 years; measures: Value","Sex: All persons; Age: Aged 25 years; measures: Value","Sex: All persons; Age: Aged 26 years; measures: Value","Sex: All persons; Age: Aged 27 years; measures: Value","Sex: All persons; Age: Aged 28 years; measures: Value","Sex: All persons; Age: Aged 29 years; measures: Value","Sex: All persons; Age: Aged 30 years; measures: Value","Sex: All persons; Age: Aged 31 years; measures: Value","Sex: All persons; Age: Aged 32 years; measures: Value","Sex: All persons; Age: Aged 33 years; measures: Value","Sex: All persons; Age: Aged 34 years; measures: Value","Sex: All persons; Age: Aged 35 to 49 years; measures: Value","Sex: All persons; Age: Aged 35 years; measures: Value","Sex: All persons; Age: Aged 36 years; measures: Value","Sex: All persons; Age: Aged 37 years; measures: Value","Sex: All persons; Age: Aged 38 years; measures: Value","Sex: All persons; Age: Aged 39 years; measures: Value","Sex: All persons; Age: Aged 40 years; measures: Value","Sex: All persons; Age: Aged 41 years; measures: Value","Sex: All persons; Age: Aged 42 years; measures: Value","Sex: All persons; Age: Aged 43 years; measures: Value","Sex: All persons; Age: Aged 44 years; measures: Value","Sex: All persons; Age: Aged 45 years; measures: Value","Sex: All persons; Age: Aged 46 years; measures: Value","Sex: All persons; Age: Aged 47 years; measures: Value","Sex: All persons; Age: Aged 48 years; measures: Value","Sex: All persons; Age: Aged 49 years; measures: Value","Sex: All persons; Age: Aged 50 to 64 years; measures: Value","Sex: All persons; Age: Aged 50 years; measures: Value","Sex: All persons; Age: Aged 51 years; measures: Value","Sex: All persons; Age: Aged 52 years; measures: Value","Sex: All persons; Age: Aged 53 years; measures: Value","Sex: All persons; Age: Aged 54 years; measures: Value","Sex: All persons; Age: Aged 55 years; measures: Value","Sex: All persons; Age: Aged 56 years; measures: Value","Sex: All persons; Age: Aged 57 years; measures: Value","Sex: All persons; Age: Aged 58 years; measures: Value","Sex: All persons; Age: Aged 59 years; measures: Value","Sex: All persons; Age: Aged 60 years; measures: Value","Sex: All persons; Age: Aged 61 years; measures: Value","Sex: All persons; Age: Aged 62 years; measures: Value","Sex: All persons; Age: Aged 63 years; measures: Value","Sex: All persons; Age: Aged 64 years; measures: Value","Sex: All persons; Age: Aged 65 to 74 years; measures: Value","Sex: All persons; Age: Aged 65 years; measures: Value","Sex: All persons; Age: Aged 66 years; measures: Value","Sex: All persons; Age: Aged 67 years; measures: Value","Sex: All persons; Age: Aged 68 years; measures: Value","Sex: All persons; Age: Aged 69 years; measures: Value","Sex: All persons; Age: Aged 70 years; measures: Value","Sex: All persons; Age: Aged 71 years; measures: Value","Sex: All persons; Age: Aged 72 years; measures: Value","Sex: All persons; Age: Aged 73 years; measures: Value","Sex: All persons; Age: Aged 74 years; measures: Value","Sex: All persons; Age: Aged 75 to 84 years; measures: Value","Sex: All persons; Age: Aged 75 years; measures: Value","Sex: All persons; Age: Aged 76 years; measures: Value","Sex: All persons; Age: Aged 77 years; measures: Value","Sex: All persons; Age: Aged 78 years; measures: Value","Sex: All persons; Age: Aged 79 years; measures: Value","Sex: All persons; Age: Aged 80 years; measures: Value","Sex: All persons; Age: Aged 81 years; measures: Value","Sex: All persons; Age: Aged 82 years; measures: Value","Sex: All persons; Age: Aged 83 years; measures: Value","Sex: All persons; Age: Aged 84 years; measures: Value","Sex: All persons; Age: Aged 85 years and over; measures: Value","Sex: All persons; Age: Aged 85 years; measures: Value","Sex: All persons; Age: Aged 86 years; measures: Value","Sex: All persons; Age: Aged 87 years; measures: Value","Sex: All persons; Age: Aged 88 years; measures: Value","Sex: All persons; Age: Aged 89 years; measures: Value","Sex: All persons; Age: Aged 90 years and over; measures: Value","Sex: Female; Age: Total; measures: Value","Sex: Female; Age: Aged 4 years and under; measures: Value","Sex: Female; Age: Aged under 1 year; measures: Value","Sex: Female; Age: Aged 1 year; measures: Value","Sex: Female; Age: Aged 2 years; measures: Value","Sex: Female; Age: Aged 3 years; measures: Value","Sex: Female; Age: Aged 4 years; measures: Value","Sex: Female; Age: Aged 5 to 9 years; measures: Value","Sex: Female; Age: Aged 5 years; measures: Value","Sex: Female; Age: Aged 6 years; measures: Value","Sex: Female; Age: Aged 7 years; measures: Value","Sex: Female; Age: Aged 8 years; measures: Value","Sex: Female; Age: Aged 9 years; measures: Value","Sex: Female; Age: Aged 10 to 15 years; measures: Value","Sex: Female; Age: Aged 10 years; measures: Value","Sex: Female; Age: Aged 11 years; measures: Value","Sex: Female; Age: Aged 12 years; measures: Value","Sex: Female; Age: Aged 13 years; measures: Value","Sex: Female; Age: Aged 14 years; measures: Value","Sex: Female; Age: Aged 15 years; measures: Value","Sex: Female; Age: Aged 16 to 19 years; measures: Value","Sex: Female; Age: Aged 16 years; measures: Value","Sex: Female; Age: Aged 17 years; measures: Value","Sex: Female; Age: Aged 18 years; measures: Value","Sex: Female; Age: Aged 19 years; measures: Value","Sex: Female; Age: Aged 20 to 24 years; measures: Value","Sex: Female; Age: Aged 20 years; measures: Value","Sex: Female; Age: Aged 21 years; measures: Value","Sex: Female; Age: Aged 22 years; measures: Value","Sex: Female; Age: Aged 23 years; measures: Value","Sex: Female; Age: Aged 24 years; measures: Value","Sex: Female; Age: Aged 25 to 34 years; measures: Value","Sex: Female; Age: Aged 25 years; measures: Value","Sex: Female; Age: Aged 26 years; measures: Value","Sex: Female; Age: Aged 27 years; measures: Value","Sex: Female; Age: Aged 28 years; measures: Value","Sex: Female; Age: Aged 29 years; measures: Value","Sex: Female; Age: Aged 30 years; measures: Value","Sex: Female; Age: Aged 31 years; measures: Value","Sex: Female; Age: Aged 32 years; measures: Value","Sex: Female; Age: Aged 33 years; measures: Value","Sex: Female; Age: Aged 34 years; measures: Value","Sex: Female; Age: Aged 35 to 49 years; measures: Value","Sex: Female; Age: Aged 35 years; measures: Value","Sex: Female; Age: Aged 36 years; measures: Value","Sex: Female; Age: Aged 37 years; measures: Value","Sex: Female; Age: Aged 38 years; measures: Value","Sex: Female; Age: Aged 39 years; measures: Value","Sex: Female; Age: Aged 40 years; measures: Value","Sex: Female; Age: Aged 41 years; measures: Value","Sex: Female; Age: Aged 42 years; measures: Value","Sex: Female; Age: Aged 43 years; measures: Value","Sex: Female; Age: Aged 44 years; measures: Value","Sex: Female; Age: Aged 45 years; measures: Value","Sex: Female; Age: Aged 46 years; measures: Value","Sex: Female; Age: Aged 47 years; measures: Value","Sex: Female; Age: Aged 48 years; measures: Value","Sex: Female; Age: Aged 49 years; measures: Value","Sex: Female; Age: Aged 50 to 64 years; measures: Value","Sex: Female; Age: Aged 50 years; measures: Value","Sex: Female; Age: Aged 51 years; measures: Value","Sex: Female; Age: Aged 52 years; measures: Value","Sex: Female; Age: Aged 53 years; measures: Value","Sex: Female; Age: Aged 54 years; measures: Value","Sex: Female; Age: Aged 55 years; measures: Value","Sex: Female; Age: Aged 56 years; measures: Value","Sex: Female; Age: Aged 57 years; measures: Value","Sex: Female; Age: Aged 58 years; measures: Value","Sex: Female; Age: Aged 59 years; measures: Value","Sex: Female; Age: Aged 60 years; measures: Value","Sex: Female; Age: Aged 61 years; measures: Value","Sex: Female; Age: Aged 62 years; measures: Value","Sex: Female; Age: Aged 63 years; measures: Value","Sex: Female; Age: Aged 64 years; measures: Value","Sex: Female; Age: Aged 65 to 74 years; measures: Value","Sex: Female; Age: Aged 65 years; measures: Value","Sex: Female; Age: Aged 66 years; measures: Value","Sex: Female; Age: Aged 67 years; measures: Value","Sex: Female; Age: Aged 68 years; measures: Value","Sex: Female; Age: Aged 69 years; measures: Value","Sex: Female; Age: Aged 70 years; measures: Value","Sex: Female; Age: Aged 71 years; measures: Value","Sex: Female; Age: Aged 72 years; measures: Value","Sex: Female; Age: Aged 73 years; measures: Value","Sex: Female; Age: Aged 74 years; measures: Value","Sex: Female; Age: Aged 75 to 84 years; measures: Value","Sex: Female; Age: Aged 75 years; measures: Value","Sex: Female; Age: Aged 76 years; measures: Value","Sex: Female; Age: Aged 77 years; measures: Value","Sex: Female; Age: Aged 78 years; measures: Value","Sex: Female; Age: Aged 79 years; measures: Value","Sex: Female; Age: Aged 80 years; measures: Value","Sex: Female; Age: Aged 81 years; measures: Value","Sex: Female; Age: Aged 82 years; measures: Value","Sex: Female; Age: Aged 83 years; measures: Value","Sex: Female; Age: Aged 84 years; measures: Value","Sex: Female; Age: Aged 85 years and over; measures: Value","Sex: Female; Age: Aged 85 years; measures: Value","Sex: Female; Age: Aged 86 years; measures: Value","Sex: Female; Age: Aged 87 years; measures: Value","Sex: Female; Age: Aged 88 years; measures: Value","Sex: Female; Age: Aged 89 years; measures: Value","Sex: Female; Age: Aged 90 years and over; measures: Value","Sex: Male; Age: Total; measures: Value","Sex: Male; Age: Aged 4 years and under; measures: Value","Sex: Male; Age: Aged under 1 year; measures: Value","Sex: Male; Age: Aged 1 year; measures: Value","Sex: Male; Age: Aged 2 years; measures: Value","Sex: Male; Age: Aged 3 years; measures: Value","Sex: Male; Age: Aged 4 years; measures: Value","Sex: Male; Age: Aged 5 to 9 years; measures: Value","Sex: Male; Age: Aged 5 years; measures: Value","Sex: Male; Age: Aged 6 years; measures: Value","Sex: Male; Age: Aged 7 years; measures: Value","Sex: Male; Age: Aged 8 years; measures: Value","Sex: Male; Age: Aged 9 years; measures: Value","Sex: Male; Age: Aged 10 to 15 years; measures: Value","Sex: Male; Age: Aged 10 years; measures: Value","Sex: Male; Age: Aged 11 years; measures: Value","Sex: Male; Age: Aged 12 years; measures: Value","Sex: Male; Age: Aged 13 years; measures: Value","Sex: Male; Age: Aged 14 years; measures: Value","Sex: Male; Age: Aged 15 years; measures: Value","Sex: Male; Age: Aged 16 to 19 years; measures: Value","Sex: Male; Age: Aged 16 years; measures: Value","Sex: Male; Age: Aged 17 years; measures: Value","Sex: Male; Age: Aged 18 years; measures: Value","Sex: Male; Age: Aged 19 years; measures: Value","Sex: Male; Age: Aged 20 to 24 years; measures: Value","Sex: Male; Age: Aged 20 years; measures: Value","Sex: Male; Age: Aged 21 years; measures: Value","Sex: Male; Age: Aged 22 years; measures: Value","Sex: Male; Age: Aged 23 years; measures: Value","Sex: Male; Age: Aged 24 years; measures: Value","Sex: Male; Age: Aged 25 to 34 years; measures: Value","Sex: Male; Age: Aged 25 years; measures: Value","Sex: Male; Age: Aged 26 years; measures: Value","Sex: Male; Age: Aged 27 years; measures: Value","Sex: Male; Age: Aged 28 years; measures: Value","Sex: Male; Age: Aged 29 years; measures: Value","Sex: Male; Age: Aged 30 years; measures: Value","Sex: Male; Age: Aged 31 years; measures: Value","Sex: Male; Age: Aged 32 years; measures: Value","Sex: Male; Age: Aged 33 years; measures: Value","Sex: Male; Age: Aged 34 years; measures: Value","Sex: Male; Age: Aged 35 to 49 years; measures: Value","Sex: Male; Age: Aged 35 years; measures: Value","Sex: Male; Age: Aged 36 years; measures: Value","Sex: Male; Age: Aged 37 years; measures: Value","Sex: Male; Age: Aged 38 years; measures: Value","Sex: Male; Age: Aged 39 years; measures: Value","Sex: Male; Age: Aged 40 years; measures: Value","Sex: Male; Age: Aged 41 years; measures: Value","Sex: Male; Age: Aged 42 years; measures: Value","Sex: Male; Age: Aged 43 years; measures: Value","Sex: Male; Age: Aged 44 years; measures: Value","Sex: Male; Age: Aged 45 years; measures: Value","Sex: Male; Age: Aged 46 years; measures: Value","Sex: Male; Age: Aged 47 years; measures: Value","Sex: Male; Age: Aged 48 years; measures: Value","Sex: Male; Age: Aged 49 years; measures: Value","Sex: Male; Age: Aged 50 to 64 years; measures: Value","Sex: Male; Age: Aged 50 years; measures: Value","Sex: Male; Age: Aged 51 years; measures: Value","Sex: Male; Age: Aged 52 years; measures: Value","Sex: Male; Age: Aged 53 years; measures: Value","Sex: Male; Age: Aged 54 years; measures: Value","Sex: Male; Age: Aged 55 years; measures: Value","Sex: Male; Age: Aged 56 years; measures: Value","Sex: Male; Age: Aged 57 years; measures: Value","Sex: Male; Age: Aged 58 years; measures: Value","Sex: Male; Age: Aged 59 years; measures: Value","Sex: Male; Age: Aged 60 years; measures: Value","Sex: Male; Age: Aged 61 years; measures: Value","Sex: Male; Age: Aged 62 years; measures: Value","Sex: Male; Age: Aged 63 years; measures: Value","Sex: Male; Age: Aged 64 years; measures: Value","Sex: Male; Age: Aged 65 to 74 years; measures: Value","Sex: Male; Age: Aged 65 years; measures: Value","Sex: Male; Age: Aged 66 years; measures: Value","Sex: Male; Age: Aged 67 years; measures: Value","Sex: Male; Age: Aged 68 years; measures: Value","Sex: Male; Age: Aged 69 years; measures: Value","Sex: Male; Age: Aged 70 years; measures: Value","Sex: Male; Age: Aged 71 years; measures: Value","Sex: Male; Age: Aged 72 years; measures: Value","Sex: Male; Age: Aged 73 years; measures: Value","Sex: Male; Age: Aged 74 years; measures: Value","Sex: Male; Age: Aged 75 to 84 years; measures: Value","Sex: Male; Age: Aged 75 years; measures: Value","Sex: Male; Age: Aged 76 years; measures: Value","Sex: Male; Age: Aged 77 years; measures: Value","Sex: Male; Age: Aged 78 years; measures: Value","Sex: Male; Age: Aged 79 years; measures: Value","Sex: Male; Age: Aged 80 years; measures: Value","Sex: Male; Age: Aged 81 years; measures: Value","Sex: Male; Age: Aged 82 years; measures: Value","Sex: Male; Age: Aged 83 years; measures: Value","Sex: Male; Age: Aged 84 years; measures: Value","Sex: Male; Age: Aged 85 years and over; measures: Value","Sex: Male; Age: Aged 85 years; measures: Value","Sex: Male; Age: Aged 86 years; measures: Value","Sex: Male; Age: Aged 87 years; measures: Value","Sex: Male; Age: Aged 88 years; measures: Value","Sex: Male; Age: Aged 89 years; measures: Value","Sex: Male; Age: Aged 90 years and over; measures: Value" +"2021","Hartlepool","E06000001",92347,4981,918,954,1046,986,1077,5582,1109,1032,1097,1172,1172,7089,1168,1238,1188,1190,1137,1168,4012,1091,1085,927,909,5112,982,1014,1065,999,1052,11382,1064,1077,1114,1106,1135,1195,1129,1177,1185,1200,15946,1106,1139,1080,1057,1081,1071,1110,999,948,937,1020,944,1058,1141,1255,20007,1309,1253,1308,1351,1357,1436,1450,1433,1411,1402,1384,1266,1277,1186,1184,10331,1120,1053,1010,1043,1020,957,1030,1017,1067,1014,5685,762,719,616,566,558,503,515,496,509,441,2220,378,341,288,269,216,728,47656,2411,449,458,510,476,518,2737,551,505,528,561,592,3441,564,596,579,568,563,571,1952,554,542,425,431,2622,495,514,563,535,515,6039,554,548,601,579,606,629,617,612,646,647,8252,574,600,560,565,583,555,581,499,501,502,501,492,560,546,633,10296,680,664,698,705,709,759,719,753,730,740,691,633,650,590,575,5307,572,542,489,561,507,491,534,545,543,523,3191,371,372,341,345,322,274,302,281,310,273,1408,209,219,166,168,135,511,44691,2570,469,496,536,510,559,2845,558,527,569,611,580,3648,604,642,609,622,574,597,2060,537,543,502,478,2490,487,500,502,464,537,5343,510,529,513,527,529,566,512,565,539,553,7694,532,539,520,492,498,516,529,500,447,435,519,452,498,595,622,9711,629,589,610,646,648,677,731,680,681,662,693,633,627,596,609,5024,548,511,521,482,513,466,496,472,524,491,2494,391,347,275,221,236,229,213,215,199,168,812,169,122,122,101,81,217 +"2021","Middlesbrough","E06000002",143922,8925,1621,1720,1763,1908,1913,9793,1863,1920,1947,2079,1984,11266,2033,1969,1824,1832,1810,1798,6773,1763,1718,1654,1638,10169,1898,1977,2006,2206,2082,20642,2072,2058,2070,2045,2077,2017,2039,2105,2084,2075,25348,2050,1958,1920,1748,1701,1761,1736,1652,1445,1447,1566,1503,1590,1586,1685,26823,1713,1700,1688,1817,1818,1870,1910,1851,1886,1850,1787,1716,1757,1786,1674,13670,1529,1523,1435,1406,1315,1306,1266,1256,1291,1343,7537,962,938,823,816,762,707,667,658,639,565,2976,521,432,392,335,284,1012,73035,4398,825,854,856,911,952,4724,853,942,930,1011,988,5516,1005,924,902,893,889,903,3257,871,851,779,756,4844,874,964,972,1048,986,10429,971,1053,1067,1032,1067,1015,1021,1047,1073,1083,12911,1028,1030,966,919,860,936,867,833,697,751,793,754,767,832,878,13772,900,883,901,935,905,946,959,967,958,945,918,873,908,933,841,7071,814,781,757,712,652,702,657,651,659,686,4201,525,485,436,452,416,405,385,377,390,330,1912,323,263,250,208,172,696,70887,4527,796,866,907,997,961,5069,1010,978,1017,1068,996,5750,1028,1045,922,939,921,895,3516,892,867,875,882,5325,1024,1013,1034,1158,1096,10213,1101,1005,1003,1013,1010,1002,1018,1058,1011,992,12437,1022,928,954,829,841,825,869,819,748,696,773,749,823,754,807,13051,813,817,787,882,913,924,951,884,928,905,869,843,849,853,833,6599,715,742,678,694,663,604,609,605,632,657,3336,437,453,387,364,346,302,282,281,249,235,1064,198,169,142,127,112,316 +"2021","Redcar and Cleveland","E06000003",136538,6815,1176,1347,1354,1429,1509,7873,1460,1503,1513,1657,1740,9501,1601,1596,1562,1599,1635,1508,5616,1553,1513,1290,1260,6577,1158,1281,1366,1321,1451,15367,1459,1417,1451,1500,1634,1634,1556,1545,1593,1578,22806,1581,1579,1496,1460,1488,1616,1548,1432,1346,1309,1452,1447,1563,1697,1792,30232,1927,1924,1981,1987,2195,2170,2068,2185,2108,2124,1956,1926,1976,1913,1792,17172,1762,1654,1751,1657,1673,1598,1677,1745,1831,1824,10819,1422,1465,1245,1144,1068,997,977,935,830,736,3760,657,556,488,409,343,1307,70448,3383,566,691,674,716,736,3816,712,725,756,806,817,4628,797,762,768,770,797,734,2643,719,731,604,589,3305,581,623,675,697,729,8071,712,755,729,790,866,868,833,825,839,854,11923,870,839,786,753,803,860,800,778,683,676,722,739,788,892,934,15540,995,1002,1017,1056,1121,1123,1088,1091,1096,1098,967,1002,1022,961,901,8981,901,826,925,886,854,852,897,920,955,965,5844,771,745,662,583,591,515,572,511,472,422,2314,376,327,277,257,213,864,66090,3432,610,656,680,713,773,4057,748,778,757,851,923,4873,804,834,794,829,838,774,2973,834,782,686,671,3272,577,658,691,624,722,7296,747,662,722,710,768,766,723,720,754,724,10883,711,740,710,707,685,756,748,654,663,633,730,708,775,805,858,14692,932,922,964,931,1074,1047,980,1094,1012,1026,989,924,954,952,891,8191,861,828,826,771,819,746,780,825,876,859,4975,651,720,583,561,477,482,405,424,358,314,1446,281,229,211,152,130,443 +"2021","Stockton-on-Tees","E06000004",196587,10733,1916,2078,2150,2178,2411,12429,2344,2314,2459,2722,2590,15419,2688,2583,2674,2547,2525,2402,8215,2321,2359,1899,1636,9688,1700,1813,1883,1999,2293,25053,2139,2212,2477,2499,2591,2639,2513,2608,2695,2680,37193,2702,2679,2612,2595,2464,2688,2518,2515,2168,2077,2273,2307,2441,2392,2762,40674,2784,2719,2773,2797,2859,2783,2754,2863,2851,2757,2670,2571,2560,2438,2495,21045,2319,2140,2193,2102,2038,2028,1938,2055,2189,2043,11826,1482,1589,1355,1216,1230,1103,1037,1050,928,836,4312,753,610,535,509,460,1445,100070,5304,983,1046,1019,1073,1183,6008,1153,1109,1168,1307,1271,7593,1267,1259,1353,1249,1285,1180,3951,1136,1166,919,730,4753,831,826,916,976,1204,12845,1118,1076,1283,1220,1371,1350,1278,1324,1452,1373,18829,1313,1435,1303,1385,1213,1371,1278,1204,1098,1085,1176,1161,1243,1173,1391,20782,1405,1385,1382,1384,1450,1414,1402,1527,1464,1448,1354,1347,1310,1279,1231,10842,1159,1126,1104,1059,1070,1055,975,1036,1190,1068,6437,795,786,736,670,664,603,619,593,511,460,2726,441,374,350,314,290,957,96517,5429,933,1032,1131,1105,1228,6421,1191,1205,1291,1415,1319,7826,1421,1324,1321,1298,1240,1222,4264,1185,1193,980,906,4935,869,987,967,1023,1089,12208,1021,1136,1194,1279,1220,1289,1235,1284,1243,1307,18364,1389,1244,1309,1210,1251,1317,1240,1311,1070,992,1097,1146,1198,1219,1371,19892,1379,1334,1391,1413,1409,1369,1352,1336,1387,1309,1316,1224,1250,1159,1264,10203,1160,1014,1089,1043,968,973,963,1019,999,975,5389,687,803,619,546,566,500,418,457,417,376,1586,312,236,185,195,170,488 +"2021","Darlington","E06000005",107806,5493,1040,1047,1109,1167,1130,6329,1220,1229,1257,1305,1318,7869,1345,1340,1350,1306,1285,1243,4542,1303,1238,1150,851,5426,815,1037,1123,1198,1253,13346,1228,1202,1309,1284,1355,1482,1363,1367,1382,1374,20125,1362,1294,1330,1290,1287,1358,1400,1409,1252,1225,1256,1312,1397,1416,1537,22633,1578,1527,1514,1522,1629,1595,1621,1547,1588,1507,1530,1356,1439,1415,1265,11939,1285,1126,1224,1169,1155,1121,1145,1205,1285,1224,7272,942,995,824,716,672,679,658,678,587,521,2832,460,425,362,313,279,993,55137,2731,526,542,524,581,558,3048,569,603,587,631,658,3877,650,669,615,685,639,619,2135,619,581,542,393,2773,405,519,609,600,640,6892,637,612,657,663,700,779,704,717,700,723,10295,688,662,693,657,696,679,725,690,624,602,662,654,744,740,779,11523,817,766,754,780,820,798,812,811,781,768,774,679,746,750,667,6143,627,561,614,579,613,602,598,592,681,676,3958,505,521,438,374,356,366,367,377,343,311,1762,266,251,216,194,163,672,52669,2762,514,505,585,586,572,3281,651,626,670,674,660,3992,695,671,735,621,646,624,2407,684,657,608,458,2653,410,518,514,598,613,6454,591,590,652,621,655,703,659,650,682,651,9830,674,632,637,633,591,679,675,719,628,623,594,658,653,676,758,11110,761,761,760,742,809,797,809,736,807,739,756,677,693,665,598,5796,658,565,610,590,542,519,547,613,604,548,3314,437,474,386,342,316,313,291,301,244,210,1070,194,174,146,119,116,321 +"2021","County Durham","E06000047",522069,24752,4623,4809,4969,4990,5361,28357,5534,5468,5650,5763,5942,35001,5934,5922,5714,6064,5867,5500,25733,5631,5319,6563,8220,33055,7548,7225,6712,5827,5743,59885,5622,5648,5717,6109,6110,6346,6021,6046,6130,6136,91436,6267,6048,6037,6089,6179,6246,6158,5958,5464,5359,5691,5783,6101,6849,7207,112515,7506,7271,7668,7600,7889,8110,8002,7997,7652,7695,7306,6980,7188,7011,6640,61755,6509,6290,6160,6109,5972,5928,6037,5992,6386,6372,36789,4814,5110,4433,3923,3452,3310,3185,3081,2820,2661,12791,2256,1977,1696,1447,1173,4242,266762,11995,2162,2365,2325,2513,2630,13773,2677,2774,2713,2741,2868,17128,2874,2920,2836,2955,2814,2729,12611,2752,2563,3306,3990,16416,3792,3534,3283,2850,2957,31036,2821,2910,2943,3161,3173,3271,3182,3223,3194,3158,47040,3283,3116,3047,3137,3184,3261,3184,3045,2751,2821,2885,2967,3141,3496,3722,57311,3854,3665,3965,3817,4080,4086,4032,4119,3858,3885,3724,3582,3699,3602,3343,31587,3297,3158,3104,3108,3006,3043,3127,3113,3350,3281,19804,2496,2670,2319,2124,1835,1854,1681,1702,1597,1526,8061,1372,1199,1008,880,745,2857,255307,12757,2461,2444,2644,2477,2731,14584,2857,2694,2937,3022,3074,17873,3060,3002,2878,3109,3053,2771,13122,2879,2756,3257,4230,16639,3756,3691,3429,2977,2786,28849,2801,2738,2774,2948,2937,3075,2839,2823,2936,2978,44396,2984,2932,2990,2952,2995,2985,2974,2913,2713,2538,2806,2816,2960,3353,3485,55204,3652,3606,3703,3783,3809,4024,3970,3878,3794,3810,3582,3398,3489,3409,3297,30168,3212,3132,3056,3001,2966,2885,2910,2879,3036,3091,16985,2318,2440,2114,1799,1617,1456,1504,1379,1223,1135,4730,884,778,688,567,428,1385 +"2021","Northumberland","E06000057",320562,14235,2575,2631,2905,2985,3139,16686,3231,3191,3280,3550,3434,20797,3607,3454,3481,3466,3398,3391,12287,3333,3364,3032,2558,13906,2431,2623,2780,3006,3066,32861,3021,3131,3180,3181,3414,3351,3277,3356,3511,3439,54491,3470,3554,3421,3398,3565,3545,3817,3528,3190,3334,3489,3715,3778,4144,4543,73747,4530,4378,4602,4784,4919,4982,5308,5135,5091,5260,5022,5020,5065,4882,4769,45561,4705,4485,4641,4370,4384,4349,4452,4481,5016,4678,26407,3491,3684,3236,2970,2433,2342,2248,2153,2014,1836,9584,1587,1456,1161,1080,963,3337,163983,6948,1237,1309,1427,1396,1579,8075,1535,1567,1552,1741,1680,10007,1720,1665,1731,1652,1646,1593,5848,1585,1623,1440,1200,6652,1101,1264,1331,1461,1495,16674,1456,1614,1563,1622,1774,1674,1715,1712,1763,1781,28121,1807,1824,1774,1680,1915,1865,1988,1827,1599,1714,1800,1880,1890,2155,2403,38185,2345,2343,2371,2445,2502,2597,2740,2662,2673,2696,2593,2581,2628,2564,2445,23349,2391,2301,2288,2237,2232,2254,2299,2333,2614,2400,14194,1802,1933,1650,1579,1290,1263,1237,1222,1155,1063,5930,887,835,663,661,614,2270,156579,7287,1338,1322,1478,1589,1560,8611,1696,1624,1728,1809,1754,10790,1887,1789,1750,1814,1752,1798,6439,1748,1741,1592,1358,7254,1330,1359,1449,1545,1571,16187,1565,1517,1617,1559,1640,1677,1562,1644,1748,1658,26370,1663,1730,1647,1718,1650,1680,1829,1701,1591,1620,1689,1835,1888,1989,2140,35562,2185,2035,2231,2339,2417,2385,2568,2473,2418,2564,2429,2439,2437,2318,2324,22212,2314,2184,2353,2133,2152,2095,2153,2148,2402,2278,12213,1689,1751,1586,1391,1143,1079,1011,931,859,773,3654,700,621,498,419,349,1067 +"2021","Newcastle upon Tyne","E08000021",300135,15650,2972,3061,3128,3231,3258,16704,3390,3213,3346,3355,3400,19320,3472,3301,3293,3258,3080,2916,20439,2941,2971,5306,9221,36645,9323,8751,7112,5950,5509,44638,4947,4895,4626,4495,4429,4313,4333,4062,4429,4109,52598,4080,4051,3793,3897,3773,3721,3660,3388,3142,3033,3224,3280,3021,3170,3365,49621,3488,3232,3303,3368,3373,3466,3581,3487,3398,3428,3160,3261,3142,2998,2936,24463,2686,2599,2582,2459,2349,2241,2335,2297,2436,2479,13838,1733,1813,1594,1454,1269,1236,1347,1238,1134,1020,6219,1027,857,796,678,616,2245,151804,7618,1391,1550,1527,1592,1558,8133,1684,1546,1667,1625,1611,9364,1673,1595,1595,1619,1462,1420,10607,1467,1529,2730,4881,18115,4809,4306,3400,2857,2743,22399,2482,2322,2307,2237,2221,2179,2147,2071,2299,2134,26202,1985,2065,1893,1953,1886,1904,1816,1645,1580,1459,1639,1659,1558,1496,1664,25030,1703,1596,1680,1789,1661,1766,1716,1758,1760,1735,1604,1684,1642,1428,1508,12614,1405,1289,1317,1257,1237,1182,1175,1185,1259,1308,7771,889,989,855,790,680,732,770,721,720,625,3951,599,506,476,429,384,1557,148331,8032,1581,1511,1601,1639,1700,8571,1706,1667,1679,1730,1789,9956,1799,1706,1698,1639,1618,1496,9832,1474,1442,2576,4340,18530,4514,4445,3712,3093,2766,22239,2465,2573,2319,2258,2208,2134,2186,1991,2130,1975,26396,2095,1986,1900,1944,1887,1817,1844,1743,1562,1574,1585,1621,1463,1674,1701,24591,1785,1636,1623,1579,1712,1700,1865,1729,1638,1693,1556,1577,1500,1570,1428,11849,1281,1310,1265,1202,1112,1059,1160,1112,1177,1171,6067,844,824,739,664,589,504,577,517,414,395,2268,428,351,320,249,232,688 +"2021","North Tyneside","E08000022",208974,10991,1978,2121,2298,2243,2351,11939,2416,2318,2363,2442,2400,14526,2442,2477,2428,2457,2349,2373,7997,2276,2194,1974,1553,9510,1646,1685,1874,2148,2157,26069,2272,2282,2420,2551,2687,2715,2632,2790,2882,2838,41592,2917,2869,2865,2824,2847,2957,3079,2744,2439,2425,2531,2657,2654,2807,2977,43452,3015,2888,2885,2869,2979,2996,3106,3093,3092,2933,2784,2764,2702,2762,2584,23971,2497,2467,2506,2412,2270,2190,2314,2358,2490,2467,13482,1810,1842,1548,1435,1202,1187,1194,1173,1101,990,5445,880,799,673,598,547,1948,107637,5326,944,986,1158,1081,1157,5786,1171,1109,1122,1180,1204,6933,1166,1195,1137,1159,1129,1147,3881,1117,1088,952,724,4703,775,817,906,1084,1121,13614,1194,1139,1259,1297,1410,1410,1365,1463,1563,1514,21438,1478,1538,1526,1425,1499,1541,1543,1393,1255,1248,1331,1347,1378,1436,1500,22399,1534,1492,1541,1474,1500,1508,1598,1550,1567,1526,1441,1444,1424,1454,1346,12577,1319,1293,1294,1260,1148,1171,1234,1220,1291,1347,7503,945,980,836,783,662,680,693,662,660,602,3477,515,470,407,382,360,1343,101337,5665,1034,1135,1140,1162,1194,6153,1245,1209,1241,1262,1196,7593,1276,1282,1291,1298,1220,1226,4116,1159,1106,1022,829,4807,871,868,968,1064,1036,12455,1078,1143,1161,1254,1277,1305,1267,1327,1319,1324,20154,1439,1331,1339,1399,1348,1416,1536,1351,1184,1177,1200,1310,1276,1371,1477,21053,1481,1396,1344,1395,1479,1488,1508,1543,1525,1407,1343,1320,1278,1308,1238,11394,1178,1174,1212,1152,1122,1019,1080,1138,1199,1120,5979,865,862,712,652,540,507,501,511,441,388,1968,365,329,266,216,187,605 +"2021","South Tyneside","E08000023",147776,7824,1455,1467,1544,1647,1711,8468,1699,1645,1686,1705,1733,10193,1801,1724,1757,1678,1672,1561,5919,1546,1628,1442,1303,7287,1325,1387,1413,1563,1599,18526,1656,1660,1706,1783,1865,1951,1830,1991,1991,2093,26589,2086,1901,1798,1776,1813,1904,1843,1757,1476,1483,1624,1618,1726,1797,1987,32132,2019,1959,2163,2114,2173,2255,2294,2279,2214,2186,2224,2164,2138,2018,1932,17152,1898,1759,1817,1753,1551,1633,1698,1624,1759,1660,9852,1257,1261,1115,1047,874,924,858,914,822,780,3834,609,568,513,450,363,1331,76062,3753,703,669,776,788,817,4114,793,803,829,814,875,4993,891,834,842,865,798,763,2876,756,795,694,631,3630,635,671,727,779,818,9686,829,884,897,932,924,1045,965,1049,1042,1119,13725,1072,1019,937,925,932,962,938,905,755,790,838,840,878,908,1026,16460,1035,1014,1102,1072,1110,1182,1191,1160,1120,1132,1154,1089,1108,1027,964,8845,980,871,959,917,798,827,909,832,919,833,5488,673,688,632,577,473,525,481,528,475,436,2492,356,354,328,294,232,928,71714,4071,752,798,768,859,894,4354,906,842,857,891,858,5200,910,890,915,813,874,798,3043,790,833,748,672,3657,690,716,686,784,781,8840,827,776,809,851,941,906,865,942,949,974,12864,1014,882,861,851,881,942,905,852,721,693,786,778,848,889,961,15672,984,945,1061,1042,1063,1073,1103,1119,1094,1054,1070,1075,1030,991,968,8307,918,888,858,836,753,806,789,792,840,827,4364,584,573,483,470,401,399,377,386,347,344,1342,253,214,185,156,131,403 +"2021","Sunderland","E08000024",274168,13849,2617,2626,2692,2930,2984,15240,3004,2854,3029,3027,3326,19013,3204,3220,3168,3279,3162,2980,11661,3081,2901,2914,2765,15141,2777,2901,3042,3171,3250,35067,3152,3293,3401,3496,3681,3726,3553,3548,3655,3562,49538,3550,3442,3316,3398,3349,3350,3394,3168,2887,2855,3046,3106,3226,3543,3908,58394,3946,3749,3885,3893,3974,3884,4091,4040,4065,3954,3877,3731,3821,3831,3653,31596,3298,3341,3253,3111,3100,3054,2980,3007,3252,3200,17929,2278,2326,2034,1919,1666,1645,1667,1583,1488,1323,6740,1133,1037,880,785,724,2181,141077,6674,1226,1320,1272,1415,1441,7388,1454,1378,1448,1469,1639,9370,1531,1616,1551,1627,1574,1471,5723,1546,1397,1392,1388,7600,1358,1414,1547,1616,1665,18154,1578,1709,1781,1801,1931,1891,1812,1818,1936,1897,25657,1818,1771,1714,1796,1698,1768,1755,1644,1484,1509,1605,1570,1672,1829,2024,29805,1992,1923,1967,1974,2079,2006,2075,2078,2087,2044,1963,1895,1937,1927,1858,16498,1709,1727,1677,1643,1598,1593,1586,1556,1666,1743,9878,1185,1283,1063,1041,938,928,948,900,851,741,4330,722,635,532,477,460,1504,133091,7175,1391,1306,1420,1515,1543,7852,1550,1476,1581,1558,1687,9643,1673,1604,1617,1652,1588,1509,5938,1535,1504,1522,1377,7541,1419,1487,1495,1555,1585,16913,1574,1584,1620,1695,1750,1835,1741,1730,1719,1665,23881,1732,1671,1602,1602,1651,1582,1639,1524,1403,1346,1441,1536,1554,1714,1884,28589,1954,1826,1918,1919,1895,1878,2016,1962,1978,1910,1914,1836,1884,1904,1795,15098,1589,1614,1576,1468,1502,1461,1394,1451,1586,1457,8051,1093,1043,971,878,728,717,719,683,637,582,2410,411,402,348,308,264,677 +"2021","Gateshead","E08000037",196163,10053,1883,1980,1983,2041,2166,11070,2166,2209,2189,2224,2282,13279,2413,2317,2224,2125,2154,2046,8028,2101,2022,1974,1931,10411,1822,1787,2124,2261,2417,25875,2429,2581,2523,2525,2675,2643,2596,2638,2660,2605,36934,2724,2587,2594,2604,2466,2622,2588,2341,2186,2162,2258,2241,2368,2424,2769,40734,2741,2710,2745,2807,2933,2864,2887,2843,2850,2799,2620,2544,2488,2539,2364,21362,2211,2241,2109,2039,2019,1991,2115,2165,2274,2198,13204,1625,1701,1517,1275,1240,1261,1238,1225,1144,978,5213,858,760,719,627,512,1737,99958,4990,963,960,1017,973,1077,5400,1047,1044,1091,1110,1108,6539,1164,1108,1115,1051,1112,989,3974,1081,1032,967,894,5137,839,867,1060,1134,1237,13043,1163,1357,1268,1222,1395,1365,1271,1384,1333,1285,18725,1378,1317,1290,1338,1240,1322,1345,1167,1081,1101,1141,1128,1229,1256,1392,20576,1394,1359,1382,1414,1508,1455,1450,1458,1442,1374,1347,1263,1247,1276,1207,10950,1107,1115,1058,1046,1043,1027,1098,1147,1164,1145,7299,866,929,831,695,709,693,681,662,661,572,3325,536,459,449,385,297,1199,96205,5063,920,1020,966,1068,1089,5670,1119,1165,1098,1114,1174,6740,1249,1209,1109,1074,1042,1057,4054,1020,990,1007,1037,5274,983,920,1064,1127,1180,12832,1266,1224,1255,1303,1280,1278,1325,1254,1327,1320,18209,1346,1270,1304,1266,1226,1300,1243,1174,1105,1061,1117,1113,1139,1168,1377,20158,1347,1351,1363,1393,1425,1409,1437,1385,1408,1425,1273,1281,1241,1263,1157,10412,1104,1126,1051,993,976,964,1017,1018,1110,1053,5905,759,772,686,580,531,568,557,563,483,406,1888,322,301,270,242,215,538 +"2021","Halton","E06000006",128470,6954,1261,1416,1367,1408,1502,7892,1526,1521,1536,1618,1691,9682,1591,1628,1590,1642,1612,1619,5531,1511,1478,1287,1255,6704,1202,1361,1360,1355,1426,16478,1480,1531,1610,1619,1723,1699,1631,1643,1822,1720,24858,1628,1765,1778,1651,1716,1682,1662,1584,1491,1573,1572,1609,1657,1695,1795,26412,1896,1804,1766,1826,1792,1779,1844,1764,1885,1872,1667,1666,1656,1641,1554,14359,1476,1497,1456,1426,1399,1434,1411,1397,1501,1362,7160,992,897,879,814,711,623,655,581,524,484,2440,435,400,341,278,216,770,65543,3339,601,691,638,692,717,3848,745,758,752,778,815,4762,789,845,770,782,793,783,2653,706,707,607,633,3291,601,627,638,694,731,8667,766,786,824,847,886,872,882,870,971,963,12659,814,928,920,848,827,907,850,812,745,771,749,813,889,888,898,13503,963,861,902,953,923,899,930,847,993,967,866,881,826,865,827,7478,772,796,757,722,738,746,710,724,805,708,3816,500,465,477,404,377,322,379,329,283,280,1527,254,233,209,169,137,525,62927,3615,660,725,729,716,785,4044,781,763,784,840,876,4920,802,783,820,860,819,836,2878,805,771,680,622,3413,601,734,722,661,695,7811,714,745,786,772,837,827,749,773,851,757,12199,814,837,858,803,889,775,812,772,746,802,823,796,768,807,897,12909,933,943,864,873,869,880,914,917,892,905,801,785,830,776,727,6881,704,701,699,704,661,688,701,673,696,654,3344,492,432,402,410,334,301,276,252,241,204,913,181,167,132,109,79,245 +"2021","Warrington","E06000007",210971,10631,1946,2118,2208,2103,2256,12365,2413,2404,2457,2539,2552,15262,2588,2569,2608,2638,2416,2443,8684,2471,2398,2086,1729,10500,1713,2007,2134,2197,2449,26440,2465,2388,2449,2512,2697,2823,2728,2755,2809,2814,42174,2833,2951,2793,2798,2826,2854,2939,2691,2537,2634,2650,2766,2792,3017,3093,44758,3190,3227,3138,3200,3319,3350,3209,3144,3167,3011,2764,2678,2590,2498,2273,21442,2259,2202,2164,2088,2006,2014,2059,2101,2265,2284,14013,1823,1800,1625,1596,1361,1258,1326,1232,1069,923,4702,811,726,619,531,413,1602,106527,5182,930,1028,1102,1014,1108,5975,1181,1144,1207,1218,1225,7438,1333,1180,1272,1305,1166,1182,4194,1207,1187,993,807,5083,780,972,1086,1083,1162,13275,1264,1169,1207,1216,1357,1440,1356,1409,1423,1434,21160,1422,1502,1388,1427,1462,1409,1522,1323,1249,1354,1332,1354,1378,1518,1520,22470,1603,1680,1541,1563,1664,1685,1595,1583,1582,1538,1373,1342,1315,1301,1105,11080,1119,1138,1115,1040,1056,1056,1019,1084,1214,1239,7715,950,942,884,851,808,704,735,689,622,530,2955,481,409,370,320,270,1105,104444,5449,1016,1090,1106,1089,1148,6390,1232,1260,1250,1321,1327,7824,1255,1389,1336,1333,1250,1261,4490,1264,1211,1093,922,5417,933,1035,1048,1114,1287,13165,1201,1219,1242,1296,1340,1383,1372,1346,1386,1380,21014,1411,1449,1405,1371,1364,1445,1417,1368,1288,1280,1318,1412,1414,1499,1573,22288,1587,1547,1597,1637,1655,1665,1614,1561,1585,1473,1391,1336,1275,1197,1168,10362,1140,1064,1049,1048,950,958,1040,1017,1051,1045,6298,873,858,741,745,553,554,591,543,447,393,1747,330,317,249,211,143,497 +"2021","Blackburn with Darwen","E06000008",154739,10056,1925,2014,2084,1943,2090,11163,2212,2194,2132,2283,2342,14016,2342,2363,2329,2407,2295,2280,8578,2273,2289,2110,1906,9453,1797,1746,1945,1956,2009,20706,1939,1981,2040,1990,2113,2123,2074,2137,2189,2120,30703,2185,2175,2157,2128,2147,2232,2070,1987,1949,1784,1869,1967,1933,2042,2078,27664,2046,2051,2135,2084,1984,1880,1925,1860,1877,1818,1752,1661,1575,1489,1527,12881,1442,1366,1249,1386,1235,1192,1218,1241,1286,1266,6932,907,874,821,813,669,606,618,626,534,464,2587,427,378,337,281,258,906,78037,5044,981,1002,1049,993,1019,5466,1075,1099,1040,1088,1164,6939,1137,1162,1145,1201,1183,1111,4122,1103,1087,1009,923,4665,870,832,965,970,1028,10601,956,976,1032,1023,1076,1070,1063,1103,1175,1127,15577,1140,1127,1168,1088,1103,1168,1071,977,929,847,919,991,965,1024,1060,13738,1028,1029,1043,1026,990,927,949,922,952,909,888,803,768,739,765,6506,698,698,637,700,613,605,623,647,630,655,3744,478,472,434,428,354,315,345,354,292,272,1635,231,226,209,163,168,638,76702,5012,944,1012,1035,950,1071,5697,1137,1095,1092,1195,1178,7077,1205,1201,1184,1206,1112,1169,4456,1170,1202,1101,983,4788,927,914,980,986,981,10105,983,1005,1008,967,1037,1053,1011,1034,1014,993,15126,1045,1048,989,1040,1044,1064,999,1010,1020,937,950,976,968,1018,1018,13926,1018,1022,1092,1058,994,953,976,938,925,909,864,858,807,750,762,6375,744,668,612,686,622,587,595,594,656,611,3188,429,402,387,385,315,291,273,272,242,192,952,196,152,128,118,90,268 +"2021","Blackpool","E06000009",141029,7363,1409,1422,1504,1493,1535,7905,1546,1595,1549,1589,1626,9432,1538,1611,1637,1571,1507,1568,5822,1631,1564,1343,1284,7445,1349,1318,1472,1573,1733,18065,1606,1607,1676,1784,1896,1940,1932,1855,1887,1882,24864,1822,1780,1667,1682,1574,1608,1671,1551,1420,1470,1513,1581,1682,1836,2007,30949,2009,2068,2149,2116,2196,2215,2257,2233,2174,2114,2021,1940,1893,1814,1750,15541,1730,1544,1545,1441,1414,1483,1454,1560,1728,1642,9954,1291,1279,1209,1091,948,882,910,851,760,733,3689,614,561,435,390,377,1312,71415,3646,698,701,739,705,803,3858,724,798,753,755,828,4540,780,789,774,750,697,750,2795,797,759,625,614,3751,660,674,742,782,893,9438,871,846,855,954,986,1026,988,966,973,973,12557,954,946,825,862,774,796,842,794,713,723,744,815,851,941,977,15214,1002,1002,1091,1048,1061,1091,1124,1109,1051,1048,975,920,933,892,867,7821,834,776,769,719,715,738,773,789,894,814,5444,688,668,640,579,534,487,518,455,435,440,2351,372,346,263,238,250,882,69614,3717,711,721,765,788,732,4047,822,797,796,834,798,4892,758,822,863,821,810,818,3027,834,805,718,670,3694,689,644,730,791,840,8627,735,761,821,830,910,914,944,889,914,909,12307,868,834,842,820,800,812,829,757,707,747,769,766,831,895,1030,15735,1007,1066,1058,1068,1135,1124,1133,1124,1123,1066,1046,1020,960,922,883,7720,896,768,776,722,699,745,681,771,834,828,4510,603,611,569,512,414,395,392,396,325,293,1338,242,215,172,152,127,430 +"2021","Cheshire East","E06000049",398775,19930,3648,3850,3942,4275,4215,22095,4385,4122,4346,4637,4605,27273,4629,4564,4685,4523,4480,4392,15308,4574,4371,3618,2745,17619,2743,3186,3731,3856,4103,46086,4014,4399,4360,4462,4508,5027,4817,4766,4968,4765,74837,5015,5029,4770,4880,4840,4897,5091,4705,4542,4638,4791,5147,5139,5508,5845,86396,5882,5914,6148,6362,5973,6203,6241,6063,6039,5925,5611,5334,5091,4899,4711,46688,4455,4540,4552,4375,4413,4612,4547,4757,5293,5144,30479,3764,4207,3799,3364,2901,2699,2692,2567,2363,2123,12064,1993,1713,1410,1317,1148,4483,203196,9655,1714,1836,2008,2051,2046,10728,2042,2095,2099,2244,2248,13141,2220,2177,2252,2162,2225,2105,7510,2227,2236,1733,1314,8744,1281,1593,1799,1973,2098,23275,1953,2291,2186,2207,2274,2563,2413,2491,2512,2385,38116,2526,2611,2463,2513,2417,2456,2624,2374,2228,2378,2517,2595,2646,2808,2960,43888,3003,3051,3127,3249,3081,3150,3164,3080,3078,2986,2816,2697,2553,2449,2404,24132,2218,2291,2330,2239,2274,2458,2320,2504,2849,2649,16569,1976,2192,2027,1810,1597,1470,1504,1432,1336,1225,7438,1174,988,839,788,704,2945,195579,10275,1934,2014,1934,2224,2169,11367,2343,2027,2247,2393,2357,14132,2409,2387,2433,2361,2255,2287,7798,2347,2135,1885,1431,8875,1462,1593,1932,1883,2005,22811,2061,2108,2174,2255,2234,2464,2404,2275,2456,2380,36721,2489,2418,2307,2367,2423,2441,2467,2331,2314,2260,2274,2552,2493,2700,2885,42508,2879,2863,3021,3113,2892,3053,3077,2983,2961,2939,2795,2637,2538,2450,2307,22556,2237,2249,2222,2136,2139,2154,2227,2253,2444,2495,13910,1788,2015,1772,1554,1304,1229,1188,1135,1027,898,4626,819,725,571,529,444,1538 +"2021","Cheshire West and Chester","E06000050",357147,17615,3280,3435,3502,3625,3773,19846,3865,3781,3983,4065,4152,24328,4138,4089,4041,4090,3997,3973,14755,3883,3853,3567,3452,19681,3500,3835,3988,4111,4247,43702,3913,4172,4298,4266,4587,4626,4512,4434,4583,4311,66147,4488,4547,4421,4402,4493,4411,4409,4295,3868,3879,4166,4252,4555,4835,5126,75323,5185,5212,5217,5228,5203,5498,5306,5358,5328,5082,4895,4531,4535,4441,4304,40379,4108,3892,4086,3931,3807,3911,3900,4024,4448,4272,25643,3255,3498,3052,2791,2386,2370,2356,2118,2003,1814,9728,1562,1417,1166,1091,949,3543,182841,8635,1685,1680,1678,1753,1839,9642,1909,1837,1902,1942,2052,11755,2033,1983,1921,1980,1882,1956,7354,1934,1853,1808,1759,10183,1787,1992,2100,2114,2190,22121,1965,2050,2129,2190,2304,2328,2207,2261,2403,2284,33901,2266,2260,2279,2294,2274,2276,2244,2195,2019,1994,2105,2262,2377,2401,2655,38441,2628,2635,2685,2612,2727,2887,2718,2668,2642,2627,2488,2307,2320,2273,2224,20811,2094,1951,2009,2010,1972,2037,2054,2088,2360,2236,13876,1702,1841,1570,1482,1292,1291,1322,1130,1176,1070,6122,931,850,707,682,590,2362,174306,8980,1595,1755,1824,1872,1934,10204,1956,1944,2081,2123,2100,12573,2105,2106,2120,2110,2115,2017,7401,1949,2000,1759,1693,9498,1713,1843,1888,1997,2057,21581,1948,2122,2169,2076,2283,2298,2305,2173,2180,2027,32246,2222,2287,2142,2108,2219,2135,2165,2100,1849,1885,2061,1990,2178,2434,2471,36882,2557,2577,2532,2616,2476,2611,2588,2690,2686,2455,2407,2224,2215,2168,2080,19568,2014,1941,2077,1921,1835,1874,1846,1936,2088,2036,11767,1553,1657,1482,1309,1094,1079,1034,988,827,744,3606,631,567,459,409,359,1181 +"2021","Allerdale","E07000026",96145,4341,841,821,834,910,935,4883,951,952,955,1003,1022,6415,1107,1089,1100,1075,1063,981,3622,1024,972,854,772,4386,708,847,936,921,974,10324,918,1038,1020,1052,1114,1139,1034,1039,1009,961,16048,1091,1031,1027,1021,1034,1092,1068,954,957,950,986,1045,1155,1288,1349,22315,1513,1430,1483,1533,1661,1500,1564,1525,1529,1485,1470,1434,1465,1399,1324,12998,1278,1214,1280,1299,1228,1279,1299,1347,1438,1336,7791,981,1011,922,857,761,702,716,653,619,569,3022,501,423,363,358,314,1063,49061,2125,421,415,390,447,452,2473,469,476,500,495,533,3116,554,523,511,535,525,468,1718,487,456,420,355,2154,341,421,454,450,488,5192,484,510,505,503,555,561,523,547,514,490,8300,558,545,528,524,536,564,545,473,473,488,543,527,606,660,730,11317,768,757,746,807,824,739,778,751,802,755,734,721,745,708,682,6674,657,605,681,679,609,666,686,669,756,666,4103,486,519,500,441,404,338,376,372,357,310,1889,285,241,213,220,182,748,47084,2216,420,406,444,463,483,2410,482,476,455,508,489,3299,553,566,589,540,538,513,1904,537,516,434,417,2232,367,426,482,471,486,5132,434,528,515,549,559,578,511,492,495,471,7748,533,486,499,497,498,528,523,481,484,462,443,518,549,628,619,10998,745,673,737,726,837,761,786,774,727,730,736,713,720,691,642,6324,621,609,599,620,619,613,613,678,682,670,3688,495,492,422,416,357,364,340,281,262,259,1133,216,182,150,138,132,315 +"2021","Barrow-in-Furness","E07000027",67402,3485,634,685,723,679,764,3674,776,692,743,726,737,4415,690,734,755,744,755,737,2770,728,735,635,672,3662,672,682,767,759,782,8824,839,843,972,892,900,880,852,927,884,835,11528,850,776,824,806,747,741,695,703,690,674,713,739,786,843,941,14496,998,953,970,1030,1063,1040,1070,1023,1010,933,938,950,869,857,792,7884,786,744,781,766,747,750,754,791,899,866,5030,660,636,572,603,487,509,429,419,385,330,1634,294,247,195,184,147,567,33981,1655,272,335,329,338,381,1821,404,328,368,347,374,2126,328,351,346,383,379,339,1334,344,366,323,301,1751,323,359,337,366,366,4365,427,398,482,460,441,429,417,461,428,422,5856,449,381,401,388,393,383,325,353,352,357,356,373,416,442,487,7250,515,505,492,507,534,525,551,499,488,440,442,472,467,401,412,4052,409,387,402,380,388,390,401,399,469,427,2730,363,332,303,311,265,287,224,225,224,196,1041,170,167,114,114,89,387,33421,1830,362,350,394,341,383,1853,372,364,375,379,363,2289,362,383,409,361,376,398,1436,384,369,312,371,1911,349,323,430,393,416,4459,412,445,490,432,459,451,435,466,456,413,5672,401,395,423,418,354,358,370,350,338,317,357,366,370,401,454,7246,483,448,478,523,529,515,519,524,522,493,496,478,402,456,380,3832,377,357,379,386,359,360,353,392,430,439,2300,297,304,269,292,222,222,205,194,161,134,593,124,80,81,70,58,180 +"2021","Carlisle","E07000028",110017,5377,995,1095,1075,1063,1149,6100,1184,1245,1177,1179,1315,7207,1231,1288,1178,1206,1137,1167,4436,1187,1170,1106,973,5803,1083,1024,1173,1226,1297,13736,1268,1283,1398,1370,1526,1407,1395,1366,1379,1344,19751,1357,1398,1373,1381,1322,1304,1268,1202,1188,1187,1155,1288,1339,1470,1519,23733,1559,1520,1621,1576,1539,1665,1650,1696,1645,1611,1641,1565,1592,1487,1366,12999,1254,1329,1320,1314,1251,1273,1303,1289,1307,1359,7766,978,942,933,872,775,731,688,636,628,583,3109,542,427,413,381,308,1038,56138,2619,509,515,542,490,563,2980,578,616,581,576,629,3517,609,618,566,581,574,569,2195,575,557,562,501,2979,571,515,597,648,648,7013,648,641,694,721,797,728,726,697,687,674,9939,674,696,701,723,651,648,659,596,600,627,586,629,684,730,735,12006,784,777,821,819,769,853,822,861,812,838,806,776,793,762,713,6649,628,676,657,681,661,622,677,660,692,695,4248,519,497,492,452,428,417,369,353,358,363,1993,314,269,255,229,188,738,53879,2758,486,580,533,573,586,3120,606,629,596,603,686,3690,622,670,612,625,563,598,2241,612,613,544,472,2824,512,509,576,578,649,6723,620,642,704,649,729,679,669,669,692,670,9812,683,702,672,658,671,656,609,606,588,560,569,659,655,740,784,11727,775,743,800,757,770,812,828,835,833,773,835,789,799,725,653,6350,626,653,663,633,590,651,626,629,615,664,3518,459,445,441,420,347,314,319,283,270,220,1116,228,158,158,152,120,300 +"2021","Copeland","E07000029",67078,3135,599,565,604,655,712,3613,673,673,721,750,796,4324,748,734,710,709,704,719,2514,678,684,632,520,3188,521,587,656,700,724,7716,717,749,765,787,806,766,773,804,788,761,11311,758,752,707,805,750,745,722,688,650,662,745,726,836,827,938,15752,940,998,1008,987,1102,1139,1173,1114,1139,1083,1041,1029,1027,987,985,8681,937,887,863,795,826,877,836,864,923,873,5111,589,717,591,544,556,446,487,409,399,373,1733,300,271,222,187,185,568,33635,1539,288,289,285,327,350,1748,338,325,363,343,379,2072,370,363,335,347,320,337,1197,329,341,281,246,1527,237,265,323,346,356,3878,335,363,353,385,405,427,406,397,405,402,5747,347,406,350,404,357,400,374,366,334,327,393,380,425,414,470,7834,501,507,511,504,555,563,585,576,537,535,502,479,499,495,485,4320,455,444,409,417,407,454,418,424,464,428,2728,302,335,309,292,288,248,263,255,218,218,1045,161,161,138,107,110,368,33443,1596,311,276,319,328,362,1865,335,348,358,407,417,2252,378,371,375,362,384,382,1317,349,343,351,274,1661,284,322,333,354,368,3838,382,386,412,402,401,339,367,407,383,359,5564,411,346,357,401,393,345,348,322,316,335,352,346,411,413,468,7918,439,491,497,483,547,576,588,538,602,548,539,550,528,492,500,4361,482,443,454,378,419,423,418,440,459,445,2383,287,382,282,252,268,198,224,154,181,155,688,139,110,84,80,75,200 +"2021","Eden","E07000030",54738,2152,403,443,440,423,443,2576,490,489,516,572,509,3371,564,582,543,568,535,579,2011,551,629,462,369,2336,395,460,475,471,535,5377,498,516,480,551,543,574,571,550,564,530,8961,543,555,556,527,590,579,591,559,538,563,624,613,638,717,768,13551,810,835,915,933,910,899,1018,987,933,935,896,929,873,900,778,7843,768,797,765,725,811,828,761,767,847,774,4786,616,660,586,497,444,416,436,455,358,318,1774,300,240,218,206,181,629,27597,1039,200,196,212,224,207,1257,248,236,257,280,236,1620,286,278,243,294,241,278,945,244,305,220,176,1115,168,228,248,217,254,2663,232,258,240,268,272,275,301,278,298,241,4533,294,269,268,262,295,271,298,288,299,291,305,305,347,345,396,6883,415,450,484,482,458,480,493,490,476,473,461,433,456,453,379,3964,403,387,367,383,406,408,400,393,435,382,2503,302,362,296,243,239,210,230,257,191,173,1075,172,133,135,115,89,431,27141,1113,203,247,228,199,236,1319,242,253,259,292,273,1751,278,304,300,274,294,301,1066,307,324,242,193,1221,227,232,227,254,281,2714,266,258,240,283,271,299,270,272,266,289,4428,249,286,288,265,295,308,293,271,239,272,319,308,291,372,372,6668,395,385,431,451,452,419,525,497,457,462,435,496,417,447,399,3879,365,410,398,342,405,420,361,374,412,392,2283,314,298,290,254,205,206,206,198,167,145,699,128,107,83,91,92,198 +"2021","South Lakeland","E07000031",104448,3917,704,725,826,786,876,4447,845,843,900,930,929,6381,953,998,1069,1065,1154,1142,4081,1128,1163,967,823,4229,688,824,860,942,915,10198,948,949,957,1032,1034,1103,1062,1040,1019,1054,17092,1058,1062,1071,1070,1108,1125,1095,1024,1034,1076,1102,1209,1293,1252,1513,24746,1499,1604,1568,1598,1701,1642,1733,1833,1779,1660,1694,1705,1672,1553,1505,15251,1424,1512,1492,1403,1393,1457,1577,1594,1719,1680,10077,1326,1306,1260,1120,939,853,919,841,825,688,4029,640,524,492,474,390,1509,53299,2001,354,381,432,410,424,2124,384,399,419,445,477,3112,476,469,511,506,560,590,1859,519,549,433,358,1962,320,380,385,449,428,5016,446,463,472,488,530,537,484,519,512,565,8788,542,545,529,549,591,586,566,515,543,534,583,612,656,652,785,12769,769,820,815,838,929,800,918,961,928,834,879,872,865,772,769,7789,734,743,754,699,716,792,845,805,855,846,5392,679,688,658,611,482,440,501,476,459,398,2487,346,309,275,300,237,1020,51149,1916,350,344,394,376,452,2323,461,444,481,485,452,3269,477,529,558,559,594,552,2222,609,614,534,465,2267,368,444,475,493,487,5182,502,486,485,544,504,566,578,521,507,489,8304,516,517,542,521,517,539,529,509,491,542,519,597,637,600,728,11977,730,784,753,760,772,842,815,872,851,826,815,833,807,781,736,7462,690,769,738,704,677,665,732,789,864,834,4685,647,618,602,509,457,413,418,365,366,290,1542,294,215,217,174,153,489 +"2021","Burnley","E07000117",94658,5760,1050,1192,1165,1130,1223,6175,1258,1179,1218,1286,1234,7518,1261,1244,1319,1266,1190,1238,4234,1158,1136,1002,938,5173,923,951,1058,1135,1106,12900,1121,1140,1249,1296,1341,1417,1296,1325,1388,1327,17740,1356,1280,1289,1220,1169,1207,1163,1106,1093,1129,1079,1136,1150,1117,1246,18259,1216,1266,1320,1266,1261,1258,1302,1252,1264,1265,1215,1108,1171,1110,985,9552,997,947,943,954,893,907,869,1014,1030,998,5467,728,742,689,614,545,492,460,435,402,360,1880,326,268,220,194,172,700,47862,2795,493,598,580,561,563,3018,601,588,595,645,589,3645,603,599,669,583,552,639,1995,541,566,452,436,2567,414,452,587,546,568,6681,576,591,655,681,674,716,700,666,722,700,8928,678,623,651,617,587,649,575,562,527,558,542,582,599,569,609,9105,590,638,635,619,642,668,658,635,644,613,635,554,547,550,477,4965,516,485,487,474,476,483,455,533,524,532,2945,371,400,363,324,310,241,258,242,219,217,1218,203,154,154,109,109,489,46796,2965,557,594,585,569,660,3157,657,591,623,641,645,3873,658,645,650,683,638,599,2239,617,570,550,502,2606,509,499,471,589,538,6219,545,549,594,615,667,701,596,659,666,627,8812,678,657,638,603,582,558,588,544,566,571,537,554,551,548,637,9154,626,628,685,647,619,590,644,617,620,652,580,554,624,560,508,4587,481,462,456,480,417,424,414,481,506,466,2522,357,342,326,290,235,251,202,193,183,143,662,123,114,66,85,63,211 +"2021","Chorley","E07000118",117742,6062,1108,1117,1183,1271,1383,6972,1379,1358,1331,1425,1479,8329,1459,1401,1406,1354,1367,1342,4532,1340,1242,1075,875,5339,894,981,1119,1179,1166,14264,1240,1294,1250,1396,1425,1491,1448,1511,1620,1589,23181,1588,1579,1496,1539,1603,1544,1570,1441,1403,1398,1536,1510,1530,1663,1781,24942,1891,1777,1784,1792,1744,1749,1830,1788,1649,1641,1563,1499,1385,1473,1377,13395,1274,1268,1396,1239,1219,1290,1298,1397,1548,1466,8146,1064,1160,970,979,778,729,720,626,610,510,2580,403,409,328,308,245,887,59047,2980,533,564,583,630,670,3388,674,671,641,685,717,4033,686,700,687,679,661,620,2182,650,607,537,388,2572,428,469,543,570,562,7191,624,656,606,724,702,729,738,772,837,803,11528,834,787,717,803,790,725,762,729,710,708,766,705,757,829,906,12458,931,884,889,913,855,863,916,902,858,811,744,766,675,735,716,6831,696,646,697,609,620,674,645,712,825,707,4294,529,600,492,488,409,423,380,354,331,288,1590,224,232,195,177,139,623,58695,3082,575,553,600,641,713,3584,705,687,690,740,762,4296,773,701,719,675,706,722,2350,690,635,538,487,2767,466,512,576,609,604,7073,616,638,644,672,723,762,710,739,783,786,11653,754,792,779,736,813,819,808,712,693,690,770,805,773,834,875,12484,960,893,895,879,889,886,914,886,791,830,819,733,710,738,661,6564,578,622,699,630,599,616,653,685,723,759,3852,535,560,478,491,369,306,340,272,279,222,990,179,177,133,131,106,264 +"2021","Fylde","E07000119",81364,3313,581,641,687,686,718,3920,709,736,782,823,870,4893,811,810,806,815,831,820,2884,861,802,653,568,3250,550,600,650,720,730,8041,724,762,764,732,794,851,855,876,821,862,13414,853,896,882,938,893,897,892,839,775,805,806,869,944,967,1158,19010,1153,1110,1225,1235,1302,1274,1325,1313,1358,1390,1372,1259,1198,1281,1215,11569,1138,1126,1156,1116,1038,1119,1104,1224,1262,1286,7871,1027,1031,959,928,724,670,706,651,610,565,3199,520,445,419,317,294,1204,41511,1613,270,313,327,336,367,1954,355,354,395,409,441,2408,385,389,408,421,413,392,1350,421,376,307,246,1562,265,262,325,357,353,4012,373,380,355,362,402,426,440,448,395,431,6811,449,431,436,463,443,470,447,418,380,431,418,431,505,477,612,9677,600,568,608,636,634,674,701,646,705,704,732,621,591,640,617,5868,578,530,562,582,495,580,598,630,627,686,4242,503,536,476,485,396,383,413,373,346,331,2014,298,273,245,194,169,835,39853,1700,311,328,360,350,351,1966,354,382,387,414,429,2485,426,421,398,394,418,428,1534,440,426,346,322,1688,285,338,325,363,377,4029,351,382,409,370,392,425,415,428,426,431,6603,404,465,446,475,450,427,445,421,395,374,388,438,439,490,546,9333,553,542,617,599,668,600,624,667,653,686,640,638,607,641,598,5701,560,596,594,534,543,539,506,594,635,600,3629,524,495,483,443,328,287,293,278,264,234,1185,222,172,174,123,125,369 +"2021","Hyndburn","E07000120",82238,4925,891,1011,986,1005,1032,5281,974,1045,1050,1081,1131,6400,1093,1101,1066,1035,1041,1064,3886,1079,1060,902,845,4537,813,834,900,954,1036,11009,1070,982,1111,1074,1119,1144,1095,1140,1136,1138,14989,1089,1061,1014,976,1049,1034,993,960,887,862,953,935,1014,1001,1161,16205,1173,1197,1220,1164,1165,1126,1132,1105,1102,1044,992,1001,928,918,938,8286,850,784,787,808,825,791,777,882,937,845,5004,676,688,600,559,504,421,447,382,374,353,1716,313,248,217,184,176,578,41766,2366,400,514,460,487,505,2672,511,531,518,537,575,3163,523,547,530,549,512,502,1810,462,505,424,419,2292,387,392,458,518,537,5642,558,491,592,530,568,612,534,608,575,574,7724,552,538,505,503,566,548,521,512,466,411,481,462,507,534,618,8103,576,601,587,542,549,575,574,573,538,511,493,533,461,488,502,4156,420,396,409,415,396,393,385,456,469,417,2747,361,375,327,278,271,238,255,230,206,206,1091,173,148,141,122,106,401,40472,2559,491,497,526,518,527,2609,463,514,532,544,556,3237,570,554,536,486,529,562,2076,617,555,478,426,2245,426,442,442,436,499,5367,512,491,519,544,551,532,561,532,561,564,7265,537,523,509,473,483,486,472,448,421,451,472,473,507,467,543,8102,597,596,633,622,616,551,558,532,564,533,499,468,467,430,436,4130,430,388,378,393,429,398,392,426,468,428,2257,315,313,273,281,233,183,192,152,168,147,625,140,100,76,62,70,177 +"2021","Lancaster","E07000121",142922,6741,1235,1363,1399,1346,1398,7460,1469,1402,1477,1542,1570,9093,1547,1513,1518,1493,1485,1537,9168,1438,1442,2538,3750,12778,3674,3150,2332,1866,1756,16228,1538,1586,1611,1601,1642,1634,1584,1735,1727,1570,24024,1614,1764,1747,1714,1594,1674,1658,1526,1431,1404,1444,1508,1538,1645,1763,28085,1850,1871,1921,1888,1973,1932,2069,1917,1977,1888,1884,1827,1801,1715,1572,15677,1555,1553,1569,1526,1519,1495,1509,1569,1671,1711,9760,1275,1229,1191,1073,974,862,870,782,809,695,3908,620,537,503,430,386,1432,72996,3301,621,656,690,659,675,3715,765,707,713,754,776,4420,758,721,755,692,713,781,4638,691,726,1308,1913,6177,1823,1525,1082,897,850,8300,783,781,846,800,841,781,830,914,894,830,12163,833,849,856,927,812,839,851,771,706,727,747,737,751,857,900,14422,946,944,974,1004,992,1019,1019,967,1042,963,973,950,924,900,805,8074,806,775,830,801,788,770,782,777,895,850,5290,667,689,618,545,529,469,492,445,432,404,2496,375,321,306,257,240,997,69926,3440,614,707,709,687,723,3745,704,695,764,788,794,4673,789,792,763,801,772,756,4530,747,716,1230,1837,6601,1851,1625,1250,969,906,7928,755,805,765,801,801,853,754,821,833,740,11861,781,915,891,787,782,835,807,755,725,677,697,771,787,788,863,13663,904,927,947,884,981,913,1050,950,935,925,911,877,877,815,767,7603,749,778,739,725,731,725,727,792,776,861,4470,608,540,573,528,445,393,378,337,377,291,1412,245,216,197,173,146,435 +"2021","Pendle","E07000122",95761,5952,1105,1248,1159,1167,1273,6553,1348,1281,1277,1318,1329,8029,1384,1369,1380,1331,1301,1264,4505,1270,1182,1042,1011,5222,951,1045,1034,1071,1121,12024,1037,1020,1099,1180,1258,1233,1256,1282,1323,1336,18263,1248,1319,1326,1287,1335,1284,1238,1136,1132,1071,1182,1117,1116,1209,1263,17966,1266,1245,1227,1299,1235,1200,1238,1211,1258,1240,1138,1109,1095,1108,1097,9753,998,957,992,957,899,959,996,919,1064,1012,5468,721,758,685,620,519,506,479,412,379,389,2026,304,330,254,220,176,742,48396,2899,547,590,566,565,631,3241,688,617,663,584,689,3890,663,656,679,652,615,625,2230,624,601,502,503,2487,453,496,464,527,547,6245,550,541,534,642,660,643,637,644,715,679,9227,647,684,722,637,676,674,597,588,564,541,595,563,540,592,607,9109,672,613,613,657,638,569,627,622,611,627,583,580,547,563,587,4906,526,507,466,467,428,511,485,463,524,529,2894,371,397,349,315,272,273,282,222,207,206,1268,183,196,147,132,121,489,47365,3053,558,658,593,602,642,3312,660,664,614,734,640,4139,721,713,701,679,686,639,2275,646,581,540,508,2735,498,549,570,544,574,5779,487,479,565,538,598,590,619,638,608,657,9036,601,635,604,650,659,610,641,548,568,530,587,554,576,617,656,8857,594,632,614,642,597,631,611,589,647,613,555,529,548,545,510,4847,472,450,526,490,471,448,511,456,540,483,2574,350,361,336,305,247,233,197,190,172,183,758,121,134,107,88,55,253 +"2021","Preston","E07000123",147840,8920,1756,1768,1784,1717,1895,9241,1878,1795,1833,1847,1888,11006,1875,1911,1825,1801,1819,1775,8003,1766,1732,2004,2501,12600,2475,2544,2489,2612,2480,21740,2248,2191,2159,2165,2250,2208,2144,2068,2206,2101,28070,2081,1995,2049,1920,1891,1988,1986,1784,1633,1749,1696,1729,1750,1897,1922,26456,1908,1910,1905,1860,1874,1846,1867,1843,1908,1847,1743,1573,1512,1420,1440,11881,1360,1260,1225,1196,1138,1157,1101,1167,1174,1103,6985,870,838,839,782,674,615,663,629,599,476,2938,493,412,366,302,313,1052,74100,4401,873,849,914,842,923,4574,897,897,913,914,953,5263,888,948,864,840,882,841,3987,809,834,1007,1337,6243,1319,1336,1177,1226,1185,10932,1083,1034,1067,1109,1115,1134,1112,1064,1164,1050,13944,1074,1008,1029,960,952,1001,971,902,779,897,835,861,801,936,938,13095,950,905,1000,936,884,894,888,927,957,912,840,798,736,721,747,6036,689,629,634,592,579,588,557,551,631,586,3784,445,449,457,421,344,341,371,361,327,268,1841,274,232,217,196,205,717,73740,4519,883,919,870,875,972,4667,981,898,920,933,935,5743,987,963,961,961,937,934,4016,957,898,997,1164,6357,1156,1208,1312,1386,1295,10808,1165,1157,1092,1056,1135,1074,1032,1004,1042,1051,14126,1007,987,1020,960,939,987,1015,882,854,852,861,868,949,961,984,13361,958,1005,905,924,990,952,979,916,951,935,903,775,776,699,693,5845,671,631,591,604,559,569,544,616,543,517,3201,425,389,382,361,330,274,292,268,272,208,1097,219,180,149,106,108,335 +"2021","Ribble Valley","E07000124",61550,2635,464,545,502,564,560,3046,562,561,630,637,656,4419,670,734,766,733,770,746,2507,732,743,615,417,2711,475,507,554,581,594,6136,550,583,576,573,609,632,626,677,669,641,10546,623,656,604,693,658,672,698,650,619,692,690,724,800,839,928,14703,969,996,1007,1017,992,984,1094,1046,973,1037,989,905,872,932,890,7805,788,775,758,746,693,719,777,822,869,858,5112,703,707,615,542,465,492,452,403,377,356,1930,308,290,258,228,188,658,31353,1256,218,277,237,257,267,1488,271,269,316,317,315,2179,318,375,347,380,382,377,1187,331,354,306,196,1300,210,250,267,279,294,3116,265,287,282,301,314,310,340,346,343,328,5499,326,308,316,342,365,356,375,333,341,369,364,354,406,444,500,7404,483,532,477,514,516,475,576,565,455,523,482,460,433,472,441,3993,411,404,359,370,354,387,403,420,438,447,2746,345,355,341,278,272,255,259,226,211,204,1185,177,164,135,152,109,448,30197,1379,246,268,265,307,293,1558,291,292,314,320,341,2240,352,359,419,353,388,369,1320,401,389,309,221,1411,265,257,287,302,300,3020,285,296,294,272,295,322,286,331,326,313,5047,297,348,288,351,293,316,323,317,278,323,326,370,394,395,428,7299,486,464,530,503,476,509,518,481,518,514,507,445,439,460,449,3812,377,371,399,376,339,332,374,402,431,411,2366,358,352,274,264,193,237,193,177,166,152,745,131,126,123,76,79,210 +"2021","Rossendale","E07000125",70853,3779,688,698,779,787,827,4355,844,870,848,887,906,5427,908,935,889,910,928,857,2942,856,776,737,573,3247,555,645,669,714,664,8707,732,793,852,843,881,933,916,906,969,882,13466,900,864,864,887,887,917,914,816,849,824,879,914,952,992,1007,15279,1104,1093,1158,1096,1100,1068,1056,1029,1092,1028,944,903,926,844,838,7882,782,786,832,797,694,752,775,782,907,775,4250,573,585,553,496,410,365,367,312,315,274,1519,244,224,193,174,138,546,36099,1806,338,324,361,376,407,2137,425,425,421,422,444,2653,442,460,438,451,443,419,1404,443,371,334,256,1617,261,316,352,364,324,4563,369,371,465,443,486,499,489,468,514,459,7008,472,450,434,472,482,482,475,422,442,440,454,481,476,506,520,7649,568,547,581,543,573,500,539,502,563,500,490,419,478,406,440,4044,380,424,424,417,360,390,393,387,464,405,2257,269,327,304,260,226,187,202,164,167,151,961,142,135,122,104,91,367,34754,1973,350,374,418,411,420,2218,419,445,427,465,462,2774,466,475,451,459,485,438,1538,413,405,403,317,1630,294,329,317,350,340,4144,363,422,387,400,395,434,427,438,455,423,6458,428,414,430,415,405,435,439,394,407,384,425,433,476,486,487,7630,536,546,577,553,527,568,517,527,529,528,454,484,448,438,398,3838,402,362,408,380,334,362,382,395,443,370,1993,304,258,249,236,184,178,165,148,148,123,558,102,89,71,70,47,179 +"2021","South Ribble","E07000126",111047,5501,1025,1042,1089,1142,1203,6349,1249,1256,1229,1337,1278,7688,1281,1312,1335,1312,1227,1221,4461,1308,1179,1073,901,5191,937,942,1021,1171,1120,13231,1147,1114,1261,1311,1326,1436,1391,1374,1481,1390,20702,1340,1359,1374,1353,1264,1383,1403,1297,1215,1316,1327,1429,1461,1476,1705,23887,1655,1570,1718,1688,1684,1704,1761,1708,1712,1587,1525,1456,1393,1387,1339,13058,1311,1234,1295,1223,1255,1249,1286,1307,1448,1450,8075,993,1061,1020,930,758,700,760,689,628,536,2904,485,474,391,285,279,990,56744,2698,486,510,542,570,590,3070,627,586,584,665,608,3745,607,623,649,658,595,613,2194,632,613,501,448,2535,433,467,494,587,554,6814,562,585,647,696,686,722,707,730,761,718,10562,701,706,669,704,669,695,747,645,590,664,705,700,749,764,854,12131,817,798,889,881,849,849,882,868,881,829,752,746,713,710,667,6808,659,650,665,645,642,653,680,692,749,773,4377,518,570,535,495,428,385,418,382,355,291,1810,282,276,244,170,182,656,54303,2803,539,532,547,572,613,3279,622,670,645,672,670,3943,674,689,686,654,632,608,2267,676,566,572,453,2656,504,475,527,584,566,6417,585,529,614,615,640,714,684,644,720,672,10140,639,653,705,649,595,688,656,652,625,652,622,729,712,712,851,11756,838,772,829,807,835,855,879,840,831,758,773,710,680,677,672,6250,652,584,630,578,613,596,606,615,699,677,3698,475,491,485,435,330,315,342,307,273,245,1094,203,198,147,115,97,334 +"2021","West Lancashire","E07000127",117433,5247,930,1039,1065,1110,1103,6021,1143,1138,1177,1304,1259,7830,1277,1287,1322,1360,1293,1291,7606,1289,1316,2092,2909,8102,2266,1884,1409,1314,1229,12372,1139,1143,1185,1200,1216,1386,1233,1261,1304,1305,19469,1259,1287,1268,1264,1192,1248,1304,1184,1201,1203,1210,1287,1407,1534,1621,25063,1731,1683,1682,1670,1721,1848,1851,1791,1762,1679,1607,1522,1543,1533,1440,13706,1390,1287,1404,1264,1311,1313,1374,1375,1512,1476,8931,1110,1143,1082,1023,912,805,737,755,688,676,3086,520,489,386,337,285,1069,61003,2527,457,521,518,530,501,2993,576,553,578,657,629,3760,603,642,622,657,621,615,4328,655,653,1206,1814,4368,1316,1048,748,658,598,6192,584,541,572,607,619,680,616,660,668,645,10104,661,685,685,644,598,647,676,627,621,615,614,656,721,824,830,12778,895,875,876,823,866,932,889,913,906,878,819,770,791,780,765,7167,739,670,729,653,668,674,691,722,816,805,4874,592,604,578,566,517,412,412,435,371,387,1912,292,291,236,205,168,720,56430,2720,473,518,547,580,602,3028,567,585,599,647,630,4070,674,645,700,703,672,676,3278,634,663,886,1095,3734,950,836,661,656,631,6180,555,602,613,593,597,706,617,601,636,660,9365,598,602,583,620,594,601,628,557,580,588,596,631,686,710,791,12285,836,808,806,847,855,916,962,878,856,801,788,752,752,753,675,6539,651,617,675,611,643,639,683,653,696,671,4057,518,539,504,457,395,393,325,320,317,289,1174,228,198,150,132,117,349 +"2021","Wyre","E07000128",111947,4890,932,946,981,1005,1026,5578,1123,1121,1084,1140,1110,7129,1201,1206,1172,1197,1202,1151,4503,1325,1302,988,888,4756,873,892,967,953,1071,11334,1018,1075,1097,1136,1155,1180,1158,1171,1172,1172,17612,1124,1226,1133,1142,1141,1225,1175,1056,1034,1000,1081,1192,1260,1362,1461,25150,1560,1524,1632,1612,1678,1759,1805,1755,1742,1722,1753,1716,1597,1639,1656,15974,1507,1515,1561,1487,1485,1551,1573,1733,1749,1813,10869,1314,1377,1286,1260,1069,965,1052,946,843,757,4152,730,603,502,412,420,1485,57517,2379,451,471,476,479,502,2658,520,516,529,568,525,3496,569,561,587,565,620,594,2069,616,606,432,415,2237,384,433,480,459,481,5855,533,551,568,603,608,602,584,599,619,588,9110,602,639,582,618,551,634,575,552,558,517,559,600,647,717,759,12962,824,789,815,823,880,909,926,881,886,889,925,877,829,862,847,8338,788,751,792,778,782,796,806,939,901,1005,5868,691,693,674,677,591,509,603,521,465,444,2545,415,335,299,223,269,1004,54430,2511,481,475,505,526,524,2920,603,605,555,572,585,3633,632,645,585,632,582,557,2434,709,696,556,473,2519,489,459,487,494,590,5479,485,524,529,533,547,578,574,572,553,584,8502,522,587,551,524,590,591,600,504,476,483,522,592,613,645,702,12188,736,735,817,789,798,850,879,874,856,833,828,839,768,777,809,7636,719,764,769,709,703,755,767,794,848,808,5001,623,684,612,583,478,456,449,425,378,313,1607,315,268,203,189,151,481 +"2021","Bolton","E08000001",295960,18456,3541,3731,3605,3686,3893,20434,3840,4035,4069,4220,4270,24782,4217,4249,4199,4132,4020,3965,14354,3902,3898,3414,3140,16638,3021,3225,3373,3473,3546,37812,3346,3471,3518,3643,3792,4085,3925,4043,4110,3879,57218,4202,4045,3946,3992,3757,3987,3997,3565,3536,3423,3472,3591,3730,3903,4072,55546,4025,4012,4013,4020,4055,4079,3987,3847,3673,3625,3477,3285,3193,3176,3079,28061,2769,2839,2811,2770,2682,2608,2829,2723,3063,2967,16866,2139,2236,2056,1950,1702,1506,1484,1416,1318,1059,5793,965,852,693,661,570,2052,150052,9087,1751,1838,1785,1854,1859,9976,1914,1936,1984,2074,2068,11951,2068,2112,1995,1964,1935,1877,6805,1881,1859,1579,1486,8116,1399,1570,1674,1671,1802,20048,1721,1826,1797,1920,2021,2205,2121,2047,2253,2137,28902,2190,2028,2070,2033,1993,2056,1989,1771,1787,1650,1753,1809,1815,1950,2008,27847,2031,1954,1931,2093,2008,2019,2063,1919,1843,1857,1697,1656,1624,1553,1599,14453,1378,1485,1421,1392,1340,1338,1476,1386,1644,1593,9181,1128,1184,1072,1046,944,834,833,789,725,626,3686,571,521,413,413,370,1398,145908,9369,1790,1893,1820,1832,2034,10458,1926,2099,2085,2146,2202,12831,2149,2137,2204,2168,2085,2088,7549,2021,2039,1835,1654,8522,1622,1655,1699,1802,1744,17764,1625,1645,1721,1723,1771,1880,1804,1996,1857,1742,28316,2012,2017,1876,1959,1764,1931,2008,1794,1749,1773,1719,1782,1915,1953,2064,27699,1994,2058,2082,1927,2047,2060,1924,1928,1830,1768,1780,1629,1569,1623,1480,13608,1391,1354,1390,1378,1342,1270,1353,1337,1419,1374,7685,1011,1052,984,904,758,672,651,627,593,433,2107,394,331,280,248,200,654 +"2021","Bury","E08000002",193855,11157,2123,2180,2334,2201,2319,12491,2447,2426,2437,2588,2593,15327,2637,2560,2616,2576,2460,2478,8754,2510,2391,2099,1754,9549,1648,1776,1984,2031,2110,25011,2062,2179,2283,2479,2531,2681,2653,2681,2722,2740,37923,2697,2683,2634,2596,2749,2568,2517,2492,2237,2263,2302,2483,2389,2648,2665,38191,2660,2633,2699,2678,2774,2731,2786,2732,2671,2540,2429,2401,2231,2175,2051,19401,1898,1834,1970,1914,1812,1821,1887,2012,2146,2107,11825,1506,1612,1512,1280,1101,1063,1099,957,914,781,4226,777,615,544,468,377,1445,98748,5382,1044,973,1129,1101,1135,6055,1179,1151,1195,1257,1273,7438,1314,1265,1239,1252,1228,1140,4154,1180,1145,1006,823,4702,760,865,989,1011,1077,13006,1045,1119,1178,1278,1322,1380,1379,1385,1478,1442,19383,1401,1392,1369,1378,1382,1294,1272,1273,1152,1178,1171,1252,1199,1318,1352,19275,1365,1381,1358,1357,1412,1369,1401,1372,1325,1308,1251,1185,1124,1057,1010,10091,975,945,1027,995,952,909,957,1084,1116,1131,6519,787,878,841,687,615,602,592,539,520,458,2743,474,373,345,297,248,1006,95107,5775,1079,1207,1205,1100,1184,6436,1268,1275,1242,1331,1320,7889,1323,1295,1377,1324,1232,1338,4600,1330,1246,1093,931,4847,888,911,995,1020,1033,12005,1017,1060,1105,1201,1209,1301,1274,1296,1244,1298,18540,1296,1291,1265,1218,1367,1274,1245,1219,1085,1085,1131,1231,1190,1330,1313,18916,1295,1252,1341,1321,1362,1362,1385,1360,1346,1232,1178,1216,1107,1118,1041,9310,923,889,943,919,860,912,930,928,1030,976,5306,719,734,671,593,486,461,507,418,394,323,1483,303,242,199,171,129,439 +"2021","Manchester","E08000003",551944,34378,6581,7057,6819,6782,7139,36562,7133,7241,7311,7405,7472,43039,7429,7358,7269,7260,7027,6696,35722,6645,6328,9288,13461,61893,13838,13053,12143,11565,11294,100582,10737,10673,10587,10358,10228,10278,9810,9493,9539,8879,108892,9014,8707,8187,8209,7932,7950,7653,7137,6635,6402,6385,6282,6175,6088,6136,78703,6206,6075,6243,5887,5959,5690,5712,5232,5188,4871,4681,4565,4161,4190,4043,30300,3651,3507,3164,3187,2974,2982,2773,2724,2768,2570,15896,1983,2064,1876,1663,1622,1563,1395,1325,1278,1127,5977,1018,842,715,676,616,2110,277882,17115,3375,3414,3415,3409,3502,17894,3484,3556,3597,3564,3693,21058,3621,3557,3499,3589,3472,3320,18178,3227,3179,4737,7035,31919,7177,6811,6261,5910,5760,50635,5359,5305,5349,5339,5127,5039,4959,4882,4680,4596,54383,4565,4371,4191,4166,4008,3980,3784,3696,3264,3195,3065,3081,3012,3011,2994,38801,3050,2927,3039,2854,2916,2814,2825,2628,2535,2470,2325,2330,2010,2044,2034,15120,1827,1676,1567,1567,1500,1473,1436,1318,1409,1347,8904,1089,1098,1046,932,876,903,813,742,750,655,3875,627,473,442,432,405,1496,274062,17263,3206,3643,3404,3373,3637,18668,3649,3685,3714,3841,3779,21981,3808,3801,3770,3671,3555,3376,17544,3418,3149,4551,6426,29974,6661,6242,5882,5655,5534,49947,5378,5368,5238,5019,5101,5239,4851,4611,4859,4283,54509,4449,4336,3996,4043,3924,3970,3869,3441,3371,3207,3320,3201,3163,3077,3142,39902,3156,3148,3204,3033,3043,2876,2887,2604,2653,2401,2356,2235,2151,2146,2009,15180,1824,1831,1597,1620,1474,1509,1337,1406,1359,1223,6992,894,966,830,731,746,660,582,583,528,472,2102,391,369,273,244,211,614 +"2021","Oldham","E08000004",242094,16005,2980,3130,3248,3268,3379,17445,3405,3509,3340,3715,3476,21603,3582,3792,3490,3656,3548,3535,12719,3492,3420,2968,2839,14133,2689,2721,2937,2794,2992,31697,2927,2899,3051,3063,3035,3302,3347,3400,3398,3275,46136,3351,3335,3220,3203,3088,3324,3263,2973,2815,2718,2886,2874,2879,3075,3132,43741,3368,3245,3197,3096,3132,3155,3147,2999,2822,2934,2830,2731,2403,2396,2286,21457,2233,2212,2184,2104,2086,1969,2052,2088,2350,2179,12941,1595,1643,1704,1392,1254,1128,1173,1113,1050,889,4217,727,630,583,428,424,1425,123774,7811,1349,1583,1639,1603,1637,8654,1582,1803,1675,1852,1742,10620,1780,1851,1739,1842,1737,1671,6180,1749,1711,1403,1317,7067,1396,1324,1455,1396,1496,16835,1534,1512,1658,1543,1553,1802,1815,1801,1797,1820,23725,1777,1698,1709,1735,1592,1726,1717,1597,1399,1370,1397,1457,1417,1585,1549,21913,1727,1601,1523,1533,1500,1575,1666,1497,1421,1513,1383,1435,1179,1191,1169,11122,1196,1114,1076,1071,1095,999,1090,1077,1257,1147,7140,896,910,892,756,702,627,631,630,574,522,2707,443,374,365,270,279,976,118320,8194,1631,1547,1609,1665,1742,8791,1823,1706,1665,1863,1734,10983,1802,1941,1751,1814,1811,1864,6539,1743,1709,1565,1522,7066,1293,1397,1482,1398,1496,14862,1393,1387,1393,1520,1482,1500,1532,1599,1601,1455,22411,1574,1637,1511,1468,1496,1598,1546,1376,1416,1348,1489,1417,1462,1490,1583,21828,1641,1644,1674,1563,1632,1580,1481,1502,1401,1421,1447,1296,1224,1205,1117,10335,1037,1098,1108,1033,991,970,962,1011,1093,1032,5801,699,733,812,636,552,501,542,483,476,367,1510,284,256,218,158,145,449 +"2021","Rochdale","E08000005",223770,14639,2788,2898,2925,2884,3144,15475,3042,2963,3116,3143,3211,18712,3139,3169,3222,3194,3004,2984,10474,2992,2807,2524,2151,12202,2221,2345,2486,2494,2656,29992,2566,2801,2834,2890,2987,3190,3198,3130,3286,3110,43427,3174,3135,2980,3067,2961,3005,3110,2738,2647,2632,2641,2732,2690,2873,3042,41981,3073,2881,3040,2972,3144,2970,2915,2808,2909,2776,2690,2559,2492,2439,2313,21189,2285,2154,2217,2161,2039,2023,2024,2043,2139,2104,11573,1498,1558,1421,1347,1158,1030,1001,951,828,781,4106,708,599,530,446,377,1446,114053,7071,1381,1432,1419,1382,1457,7515,1503,1434,1521,1507,1550,9056,1508,1547,1587,1530,1432,1452,5006,1427,1375,1202,1002,6141,1019,1141,1269,1325,1387,15794,1330,1439,1462,1518,1579,1718,1709,1630,1745,1664,22425,1695,1623,1577,1658,1542,1611,1644,1388,1357,1349,1345,1366,1332,1404,1534,21158,1547,1430,1517,1482,1565,1507,1438,1396,1436,1421,1380,1300,1278,1268,1193,10855,1169,1108,1080,1076,1013,1047,1068,1082,1117,1095,6352,809,825,757,718,659,600,537,520,474,453,2680,435,382,337,282,243,1001,109717,7568,1407,1466,1506,1502,1687,7960,1539,1529,1595,1636,1661,9656,1631,1622,1635,1664,1572,1532,5468,1565,1432,1322,1149,6061,1202,1204,1217,1169,1269,14198,1236,1362,1372,1372,1408,1472,1489,1500,1541,1446,21002,1479,1512,1403,1409,1419,1394,1466,1350,1290,1283,1296,1366,1358,1469,1508,20823,1526,1451,1523,1490,1579,1463,1477,1412,1473,1355,1310,1259,1214,1171,1120,10334,1116,1046,1137,1085,1026,976,956,961,1022,1009,5221,689,733,664,629,499,430,464,431,354,328,1426,273,217,193,164,134,445 +"2021","Salford","E08000006",269919,17257,3543,3523,3487,3329,3375,16713,3448,3255,3305,3350,3355,19033,3474,3185,3212,3184,3007,2971,12523,2834,2807,3021,3861,22655,4183,4066,4685,4730,4991,50873,5242,5147,5206,5477,5360,5204,5037,5101,4725,4374,51796,4427,4335,4052,4005,3653,3638,3527,3180,2986,3013,3002,2899,2938,2962,3179,43149,3142,2923,3175,3083,3113,3101,2987,3155,3000,2804,2670,2618,2562,2507,2309,19649,2072,1917,2041,1880,1767,1901,1925,1920,2132,2094,11894,1481,1481,1378,1362,1185,1094,1113,1040,915,845,4377,776,667,550,460,422,1502,134386,8308,1686,1716,1695,1668,1543,8186,1729,1637,1594,1630,1596,9278,1704,1507,1572,1535,1450,1510,6176,1371,1332,1465,2008,11543,2053,2053,2392,2453,2592,25178,2694,2607,2664,2704,2614,2566,2450,2431,2336,2112,25228,2083,2101,2016,1850,1794,1842,1725,1569,1494,1363,1446,1392,1507,1515,1531,21256,1563,1480,1553,1539,1566,1499,1440,1574,1405,1377,1286,1298,1274,1246,1156,10017,1012,943,1036,934,937,978,990,996,1141,1050,6472,765,777,738,759,633,642,611,564,497,486,2744,446,387,320,272,270,1049,135533,8949,1857,1807,1792,1661,1832,8527,1719,1618,1711,1720,1759,9755,1770,1678,1640,1649,1557,1461,6347,1463,1475,1556,1853,11112,2130,2013,2293,2277,2399,25695,2548,2540,2542,2773,2746,2638,2587,2670,2389,2262,26568,2344,2234,2036,2155,1859,1796,1802,1611,1492,1650,1556,1507,1431,1447,1648,21893,1579,1443,1622,1544,1547,1602,1547,1581,1595,1427,1384,1320,1288,1261,1153,9632,1060,974,1005,946,830,923,935,924,991,1044,5422,716,704,640,603,552,452,502,476,418,359,1633,330,280,230,188,152,453 +"2021","Stockport","E08000007",294766,16575,3183,3175,3375,3345,3497,18054,3625,3452,3716,3717,3544,21214,3691,3594,3597,3541,3504,3287,11473,3433,3156,2730,2154,13367,2156,2382,2763,2958,3108,37002,3080,3190,3431,3424,3819,3999,3907,3961,4254,3937,59084,4168,4119,4052,4144,3916,4182,4195,3873,3662,3585,3645,3704,3683,3898,4258,58720,4133,3917,4236,4043,4233,4159,4281,4015,4041,3961,3781,3642,3497,3462,3319,30953,3274,3060,3154,2962,2848,2971,2918,3028,3392,3346,20062,2437,2598,2275,2291,1882,1847,1838,1696,1661,1537,8262,1310,1208,1016,942,821,2965,151375,8117,1619,1552,1620,1598,1728,8924,1788,1754,1807,1805,1770,10165,1777,1758,1766,1707,1628,1529,5397,1591,1529,1261,1016,6600,998,1173,1433,1411,1585,19367,1539,1610,1773,1837,2048,2124,2123,2080,2187,2046,30332,2172,2176,2141,2120,2027,2144,2115,1967,1934,1792,1823,1871,1878,1990,2182,29962,2002,1963,2214,2073,2171,2154,2156,2022,2037,2080,1934,1912,1797,1803,1644,16087,1649,1564,1597,1554,1480,1527,1550,1548,1785,1833,11194,1312,1431,1259,1238,1055,1024,1028,987,951,909,5230,754,689,618,575,530,2064,143391,8458,1564,1623,1755,1747,1769,9130,1837,1698,1909,1912,1774,11049,1914,1836,1831,1834,1876,1758,6076,1842,1627,1469,1138,6767,1158,1209,1330,1547,1523,17635,1541,1580,1658,1587,1771,1875,1784,1881,2067,1891,28752,1996,1943,1911,2024,1889,2038,2080,1906,1728,1793,1822,1833,1805,1908,2076,28758,2131,1954,2022,1970,2062,2005,2125,1993,2004,1881,1847,1730,1700,1659,1675,14866,1625,1496,1557,1408,1368,1444,1368,1480,1607,1513,8868,1125,1167,1016,1053,827,823,810,709,710,628,3032,556,519,398,367,291,901 +"2021","Tameside","E08000008",231075,13670,2528,2708,2794,2793,2847,14701,2800,2813,2951,3055,3082,17569,3122,3060,2962,2879,2850,2696,9755,2682,2577,2407,2089,11909,2037,2136,2468,2501,2767,31520,2779,2830,3021,3040,3285,3397,3283,3306,3432,3147,44784,3446,3244,3065,3107,2879,3109,2932,2824,2655,2856,2708,2791,2882,3005,3281,46654,3305,3228,3331,3259,3481,3329,3445,3199,3245,3075,3143,2704,2751,2719,2440,22807,2432,2111,2245,2229,2234,2136,2192,2283,2480,2465,13303,1655,1814,1656,1555,1292,1170,1164,1094,1035,868,4403,815,670,533,498,431,1456,117796,6492,1191,1278,1336,1380,1307,7234,1401,1369,1482,1488,1494,8610,1544,1527,1439,1386,1402,1312,4689,1300,1283,1121,985,6036,1033,1089,1190,1310,1414,16697,1414,1522,1609,1637,1679,1862,1697,1748,1856,1673,22858,1780,1702,1522,1609,1507,1629,1500,1398,1349,1426,1381,1410,1464,1501,1680,23295,1615,1530,1699,1649,1731,1629,1728,1589,1634,1586,1577,1339,1396,1358,1235,11713,1213,1098,1165,1118,1113,1171,1094,1172,1268,1301,7362,884,960,895,823,757,651,639,641,617,495,2810,460,409,351,301,274,1015,113279,7178,1337,1430,1458,1413,1540,7467,1399,1444,1469,1567,1588,8959,1578,1533,1523,1493,1448,1384,5066,1382,1294,1286,1104,5873,1004,1047,1278,1191,1353,14823,1365,1308,1412,1403,1606,1535,1586,1558,1576,1474,21926,1666,1542,1543,1498,1372,1480,1432,1426,1306,1430,1327,1381,1418,1504,1601,23359,1690,1698,1632,1610,1750,1700,1717,1610,1611,1489,1566,1365,1355,1361,1205,11094,1219,1013,1080,1111,1121,965,1098,1111,1212,1164,5941,771,854,761,732,535,519,525,453,418,373,1593,355,261,182,197,157,441 +"2021","Trafford","E08000009",235048,13462,2381,2546,2740,2754,3041,16009,3119,3046,3210,3221,3413,19425,3472,3313,3306,3202,3137,2995,10215,3007,2893,2491,1824,10531,1675,1928,2175,2347,2406,27467,2359,2404,2441,2619,2744,2875,2865,2979,3088,3093,51211,3412,3408,3600,3373,3545,3726,3691,3473,3289,3200,3203,3234,3239,3260,3558,45436,3411,3343,3274,3236,3201,3291,3356,3270,3141,2861,2815,2712,2635,2567,2323,21486,2316,2232,2171,2054,2050,2062,2092,2117,2241,2151,13969,1644,1832,1652,1555,1237,1267,1330,1244,1134,1074,5837,967,865,729,707,529,2040,120644,6674,1145,1267,1364,1343,1555,7711,1502,1470,1546,1565,1628,9478,1736,1574,1627,1577,1529,1435,4971,1485,1403,1214,869,5151,810,944,1035,1170,1192,14257,1206,1168,1220,1314,1376,1548,1521,1605,1630,1669,26567,1795,1779,1910,1747,1898,1944,1888,1868,1691,1679,1634,1629,1650,1660,1795,23073,1753,1720,1639,1654,1621,1691,1700,1657,1588,1463,1446,1365,1325,1301,1150,11188,1157,1146,1100,1077,1059,1074,1124,1122,1148,1181,7906,892,1046,908,871,676,759,777,692,640,645,3668,567,517,436,411,346,1391,114404,6788,1236,1279,1376,1411,1486,8298,1617,1576,1664,1656,1785,9947,1736,1739,1679,1625,1608,1560,5244,1522,1490,1277,955,5380,865,984,1140,1177,1214,13210,1153,1236,1221,1305,1368,1327,1344,1374,1458,1424,24644,1617,1629,1690,1626,1647,1782,1803,1605,1598,1521,1569,1605,1589,1600,1763,22363,1658,1623,1635,1582,1580,1600,1656,1613,1553,1398,1369,1347,1310,1266,1173,10298,1159,1086,1071,977,991,988,968,995,1093,970,6063,752,786,744,684,561,508,553,552,494,429,2169,400,348,293,296,183,649 +"2021","Wigan","E08000010",329321,17782,3356,3431,3442,3784,3769,19246,3759,3731,3896,3793,4067,23607,4050,4047,4023,3911,3755,3821,13624,3837,3652,3294,2841,17057,3021,3243,3425,3510,3858,43690,3809,3953,4185,4387,4501,4625,4565,4605,4557,4503,62754,4350,4467,4398,4179,4280,4270,4112,3916,3650,3697,3766,4070,4098,4484,5017,67964,5037,4907,5042,4964,5032,4792,4903,4619,4505,4429,4314,3940,4045,3786,3649,35247,3429,3385,3505,3312,3276,3369,3530,3576,4044,3821,21940,2917,2970,2707,2671,2217,1931,1905,1716,1531,1375,6410,1152,1048,814,671,659,2066,166328,8654,1640,1682,1665,1863,1804,9368,1782,1777,1936,1854,2019,11373,1943,1895,1992,1844,1838,1861,6525,1876,1751,1543,1355,8378,1367,1551,1720,1747,1993,22471,1970,2056,2150,2298,2357,2334,2315,2378,2306,2307,31484,2223,2239,2241,2080,2157,2180,2045,1987,1869,1833,1890,1983,2059,2274,2424,34067,2539,2493,2544,2474,2450,2391,2380,2314,2277,2199,2140,2036,2037,1901,1892,18226,1716,1745,1809,1737,1665,1714,1832,1855,2126,2027,11700,1500,1577,1419,1419,1152,1015,1022,928,901,767,4082,675,640,503,417,415,1432,162993,9128,1716,1749,1777,1921,1965,9878,1977,1954,1960,1939,2048,12234,2107,2152,2031,2067,1917,1960,7099,1961,1901,1751,1486,8679,1654,1692,1705,1763,1865,21219,1839,1897,2035,2089,2144,2291,2250,2227,2251,2196,31270,2127,2228,2157,2099,2123,2090,2067,1929,1781,1864,1876,2087,2039,2210,2593,33897,2498,2414,2498,2490,2582,2401,2523,2305,2228,2230,2174,1904,2008,1885,1757,17021,1713,1640,1696,1575,1611,1655,1698,1721,1918,1794,10240,1417,1393,1288,1252,1065,916,883,788,630,608,2328,477,408,311,254,244,634 +"2021","Knowsley","E08000011",154517,9738,1793,1950,2017,2007,1971,9489,1916,1858,1851,1941,1923,10996,1848,1859,1813,1837,1805,1834,6557,1852,1661,1636,1408,8581,1500,1568,1683,1784,2046,22307,1923,2093,2110,2130,2363,2374,2415,2252,2323,2324,27641,2180,2158,2104,1950,1926,1816,1896,1727,1566,1531,1588,1681,1743,1802,1973,32975,2136,2047,2164,2115,2265,2262,2455,2368,2332,2322,2264,2162,2003,2112,1968,15112,1788,1719,1635,1644,1427,1439,1405,1360,1353,1342,7917,1018,945,900,787,758,708,773,721,683,624,3204,602,459,439,378,327,999,80666,4769,886,960,966,992,965,4558,900,894,888,956,920,5321,865,905,919,891,848,893,3239,915,820,828,676,4430,713,785,854,941,1137,11982,1004,1116,1119,1141,1281,1294,1261,1208,1277,1281,14605,1187,1101,1081,1044,1028,967,1010,931,835,809,842,880,890,920,1080,17323,1130,1089,1155,1126,1209,1193,1324,1218,1218,1244,1170,1083,1033,1090,1041,7884,912,881,851,857,770,760,732,694,725,702,4503,579,507,493,441,436,388,455,417,402,385,2052,360,297,254,247,211,683,73851,4969,907,990,1051,1015,1006,4931,1016,964,963,985,1003,5675,983,954,894,946,957,941,3318,937,841,808,732,4151,787,783,829,843,909,10325,919,977,991,989,1082,1080,1154,1044,1046,1043,13036,993,1057,1023,906,898,849,886,796,731,722,746,801,853,882,893,15652,1006,958,1009,989,1056,1069,1131,1150,1114,1078,1094,1079,970,1022,927,7228,876,838,784,787,657,679,673,666,628,640,3414,439,438,407,346,322,320,318,304,281,239,1152,242,162,185,131,116,316 +"2021","Liverpool","E08000012",486085,26372,5014,5216,5418,5325,5399,26726,5407,5396,5195,5423,5305,29959,5231,4993,5058,4972,4987,4718,29128,4801,4865,7471,11991,49339,12220,11453,9629,8043,7994,75396,7618,7572,7703,7501,7688,7757,7540,7386,7524,7107,87488,7190,6948,6405,6383,6211,6273,6053,5476,5088,4882,5164,5047,5172,5430,5766,87356,5893,5848,5849,5629,5936,5878,6271,6035,6337,6138,5899,5734,5444,5427,5038,42415,4887,4486,4565,4383,4100,4124,3967,3942,3937,4024,23251,2876,2895,2745,2504,2240,2157,2163,2023,1884,1764,8655,1509,1317,1114,1016,798,2901,249458,12893,2546,2545,2632,2575,2595,13046,2581,2654,2575,2652,2584,14631,2529,2443,2495,2470,2436,2258,15199,2337,2400,3948,6514,25631,6555,5929,4969,4062,4116,38064,3867,3848,3948,3737,3896,3818,3847,3651,3767,3685,44126,3728,3490,3183,3300,3147,3195,2994,2762,2602,2447,2541,2548,2620,2752,2817,45227,3033,3035,2896,2829,3052,3184,3331,3108,3300,3230,3022,2972,2811,2808,2616,22056,2502,2366,2363,2249,2071,2123,2131,2089,2062,2100,12975,1508,1608,1464,1435,1217,1209,1202,1172,1113,1047,5610,924,833,678,600,510,2065,236627,13479,2468,2671,2786,2750,2804,13680,2826,2742,2620,2771,2721,15328,2702,2550,2563,2502,2551,2460,13929,2464,2465,3523,5477,23708,5665,5524,4660,3981,3878,37332,3751,3724,3755,3764,3792,3939,3693,3735,3757,3422,43362,3462,3458,3222,3083,3064,3078,3059,2714,2486,2435,2623,2499,2552,2678,2949,42129,2860,2813,2953,2800,2884,2694,2940,2927,3037,2908,2877,2762,2633,2619,2422,20359,2385,2120,2202,2134,2029,2001,1836,1853,1875,1924,10276,1368,1287,1281,1069,1023,948,961,851,771,717,3045,585,484,436,416,288,836 +"2021","St. Helens","E08000013",183254,9658,1826,1854,1960,1941,2077,10346,2022,2004,2040,2110,2170,12672,2143,2158,2113,2150,2058,2050,7340,2016,2062,1695,1567,9369,1686,1741,1923,1942,2077,23779,2141,2110,2351,2438,2482,2532,2435,2489,2490,2311,34236,2434,2282,2362,2310,2328,2287,2237,2208,1973,1997,2099,2280,2264,2497,2678,38209,2774,2603,2779,2642,2635,2710,2768,2687,2590,2535,2504,2376,2263,2223,2120,20499,2097,1950,2035,1914,1973,2033,1942,2115,2245,2195,12759,1640,1686,1518,1466,1240,1109,1144,1106,994,856,4387,819,674,577,510,423,1384,93338,4690,916,889,931,958,996,5009,970,971,988,1039,1041,6220,1046,1070,1028,1030,1050,996,3574,1001,997,825,751,4635,829,855,948,965,1038,12376,1150,1085,1229,1313,1261,1261,1253,1336,1294,1194,17298,1230,1202,1199,1203,1156,1176,1110,1098,1013,980,1028,1128,1119,1243,1413,19250,1389,1329,1428,1342,1302,1384,1396,1374,1302,1262,1265,1178,1130,1079,1090,10651,1086,1006,1081,950,1026,1044,1014,1104,1167,1173,6930,859,879,811,783,672,621,640,628,558,479,2705,460,386,365,304,255,935,89916,4968,910,965,1029,983,1081,5337,1052,1033,1052,1071,1129,6452,1097,1088,1085,1120,1008,1054,3766,1015,1065,870,816,4734,857,886,975,977,1039,11403,991,1025,1122,1125,1221,1271,1182,1153,1196,1117,16938,1204,1080,1163,1107,1172,1111,1127,1110,960,1017,1071,1152,1145,1254,1265,18959,1385,1274,1351,1300,1333,1326,1372,1313,1288,1273,1239,1198,1133,1144,1030,9848,1011,944,954,964,947,989,928,1011,1078,1022,5829,781,807,707,683,568,488,504,478,436,377,1682,359,288,212,206,168,449 +"2021","Sefton","E08000014",279239,13506,2451,2700,2664,2788,2903,15070,2968,3004,3051,3032,3015,18266,3123,3077,3079,3032,2987,2968,11062,3020,3135,2596,2311,13500,2361,2482,2800,2951,2906,32375,2877,2955,2969,3064,3369,3520,3456,3376,3386,3403,49088,3530,3425,3217,3254,3407,3355,3347,3186,2852,2814,2985,3061,3308,3561,3786,61606,3906,3863,4129,4068,4144,4065,4401,4491,4386,4337,4382,3989,3897,3845,3703,33388,3450,3515,3487,3151,3287,3096,3092,3184,3530,3596,22027,2665,2687,2553,2438,2095,2063,1985,1971,1864,1706,9351,1551,1375,1212,1060,905,3248,143996,6611,1202,1290,1347,1344,1428,7337,1460,1464,1519,1414,1480,8835,1476,1481,1527,1442,1472,1437,5380,1435,1576,1276,1093,6563,1077,1165,1410,1416,1495,16620,1422,1518,1525,1572,1696,1830,1855,1762,1726,1714,25190,1841,1721,1683,1659,1728,1727,1689,1617,1438,1465,1570,1565,1757,1813,1917,31716,1965,1981,2145,2088,2078,2139,2262,2336,2201,2273,2258,2008,2047,2018,1917,17347,1800,1787,1838,1619,1679,1689,1574,1691,1832,1838,12403,1495,1421,1364,1393,1179,1155,1149,1125,1105,1017,5994,903,808,758,661,595,2269,135243,6895,1249,1410,1317,1444,1475,7733,1508,1540,1532,1618,1535,9431,1647,1596,1552,1590,1515,1531,5682,1585,1559,1320,1218,6937,1284,1317,1390,1535,1411,15755,1455,1437,1444,1492,1673,1690,1601,1614,1660,1689,23898,1689,1704,1534,1595,1679,1628,1658,1569,1414,1349,1415,1496,1551,1748,1869,29890,1941,1882,1984,1980,2066,1926,2139,2155,2185,2064,2124,1981,1850,1827,1786,16041,1650,1728,1649,1532,1608,1407,1518,1493,1698,1758,9624,1170,1266,1189,1045,916,908,836,846,759,689,3357,648,567,454,399,310,979 +"2021","Wirral","E08000015",320197,16316,2978,3209,3324,3359,3446,18798,3688,3651,3574,3857,4028,22974,3843,3878,3857,3940,3733,3723,13274,3815,3661,3135,2663,15076,2655,2693,3134,3222,3372,37622,3361,3503,3622,3659,3719,4016,3903,3871,4106,3862,57350,3872,3824,3901,3744,3883,3833,3842,3755,3360,3579,3670,3652,3779,4167,4489,68397,4613,4404,4507,4783,4638,4679,4840,4894,4708,4812,4488,4421,4307,4239,4064,38020,3840,3770,3918,3611,3778,3777,3765,3648,4013,3900,23091,2815,3012,2830,2570,2149,2203,2215,1971,1744,1582,9279,1527,1303,1139,1024,912,3374,165122,7852,1458,1625,1577,1583,1609,9061,1782,1755,1725,1884,1915,11234,1921,1857,1895,1990,1778,1793,6402,1911,1760,1504,1227,7438,1232,1348,1562,1630,1666,19551,1683,1868,1872,1857,1907,2033,2046,2050,2177,2058,29832,2107,2028,2049,1946,1933,1969,1999,1992,1741,1812,1931,1921,1991,2138,2275,35213,2352,2302,2341,2472,2329,2430,2540,2583,2486,2415,2215,2280,2175,2177,2116,19810,2000,1987,1998,1893,1989,1917,1903,1909,2117,2097,12799,1495,1609,1485,1417,1204,1267,1264,1140,994,924,5930,908,787,695,630,582,2328,155075,8464,1520,1584,1747,1776,1837,9737,1906,1896,1849,1973,2113,11740,1922,2021,1962,1950,1955,1930,6872,1904,1901,1631,1436,7638,1423,1345,1572,1592,1706,18071,1678,1635,1750,1802,1812,1983,1857,1821,1929,1804,27518,1765,1796,1852,1798,1950,1864,1843,1763,1619,1767,1739,1731,1788,2029,2214,33184,2261,2102,2166,2311,2309,2249,2300,2311,2222,2397,2273,2141,2132,2062,1948,18210,1840,1783,1920,1718,1789,1860,1862,1739,1896,1803,10292,1320,1403,1345,1153,945,936,951,831,750,658,3349,619,516,444,394,330,1046 +"2021","Kingston upon Hull, City of","E06000010",267020,15954,3088,3207,3143,3191,3325,17345,3393,3299,3392,3697,3564,19840,3471,3329,3345,3360,3231,3104,12383,3084,2944,3024,3331,19425,3794,4032,3727,4024,3848,41038,3817,3980,4034,4183,4206,4351,4133,4140,4133,4061,50812,4055,3836,3736,3456,3623,3384,3349,3125,2917,3027,3116,3189,3217,3353,3429,49398,3481,3345,3519,3442,3466,3444,3534,3482,3315,3442,3215,3008,2994,2900,2811,23602,2548,2429,2513,2443,2287,2184,2226,2167,2409,2396,12330,1572,1566,1347,1490,1122,1100,1134,1088,958,953,4893,813,762,597,575,450,1696,133789,7788,1496,1633,1529,1570,1560,8497,1668,1585,1691,1814,1739,9725,1682,1676,1621,1703,1477,1566,5898,1369,1458,1460,1611,9646,1844,2018,1827,1951,2006,20930,2010,2015,2000,2124,2162,2240,2121,2057,2116,2085,24972,2015,1960,1900,1735,1688,1668,1694,1529,1378,1438,1423,1619,1683,1588,1654,24450,1688,1638,1764,1685,1643,1671,1713,1785,1678,1705,1626,1509,1469,1435,1441,11933,1283,1209,1225,1253,1154,1054,1214,1064,1259,1218,6779,842,796,743,820,613,642,630,571,546,576,3171,477,453,394,376,297,1174,133231,8166,1592,1574,1614,1621,1765,8848,1725,1714,1701,1883,1825,10115,1789,1653,1724,1657,1754,1538,6485,1715,1486,1564,1720,9779,1950,2014,1900,2073,1842,20108,1807,1965,2034,2059,2044,2111,2012,2083,2017,1976,25840,2040,1876,1836,1721,1935,1716,1655,1596,1539,1589,1693,1570,1534,1765,1775,24948,1793,1707,1755,1757,1823,1773,1821,1697,1637,1737,1589,1499,1525,1465,1370,11669,1265,1220,1288,1190,1133,1130,1012,1103,1150,1178,5551,730,770,604,670,509,458,504,517,412,377,1722,336,309,203,199,153,522 +"2021","East Riding of Yorkshire","E06000011",342213,14685,2622,2839,2938,3066,3220,17369,3278,3429,3374,3582,3706,22020,3672,3661,3731,3743,3592,3621,13161,3674,3773,3157,2557,14436,2497,2725,2975,3109,3130,34842,3212,3246,3318,3413,3641,3619,3491,3500,3811,3591,57560,3574,3653,3552,3588,3660,3672,3706,3683,3398,3543,3808,4018,4118,4621,4966,77645,4915,5027,5095,5318,5234,5381,5416,5581,5468,5290,5169,4978,4985,5041,4747,48432,4745,4660,4656,4545,4477,4702,4770,4825,5465,5587,30599,3976,3981,3692,3404,2889,2713,2711,2593,2427,2213,11464,1906,1592,1500,1289,1094,4083,174366,6919,1264,1327,1398,1450,1480,8355,1592,1643,1612,1732,1776,10743,1752,1783,1877,1821,1700,1810,6265,1813,1794,1510,1148,6940,1175,1293,1433,1486,1553,17569,1606,1597,1629,1694,1881,1825,1773,1777,1947,1840,29584,1825,1931,1769,1799,1869,1916,1871,1937,1725,1803,1997,2082,2113,2417,2530,39569,2502,2610,2629,2766,2665,2762,2755,2844,2757,2685,2602,2488,2496,2581,2427,24950,2406,2420,2364,2329,2279,2374,2462,2525,2916,2875,16461,2056,2089,1943,1848,1560,1482,1492,1398,1336,1257,7011,1089,927,860,741,654,2740,167847,7766,1358,1512,1540,1616,1740,9014,1686,1786,1762,1850,1930,11277,1920,1878,1854,1922,1892,1811,6896,1861,1979,1647,1409,7496,1322,1432,1542,1623,1577,17273,1606,1649,1689,1719,1760,1794,1718,1723,1864,1751,27976,1749,1722,1783,1789,1791,1756,1835,1746,1673,1740,1811,1936,2005,2204,2436,38076,2413,2417,2466,2552,2569,2619,2661,2737,2711,2605,2567,2490,2489,2460,2320,23482,2339,2240,2292,2216,2198,2328,2308,2300,2549,2712,14138,1920,1892,1749,1556,1329,1231,1219,1195,1091,956,4453,817,665,640,548,440,1343 +"2021","North East Lincolnshire","E06000012",156972,8455,1534,1666,1709,1729,1817,9518,1828,1914,1856,1937,1983,11473,1975,1982,1907,1862,1846,1901,6503,1835,1758,1550,1360,7968,1398,1503,1610,1696,1761,19726,1717,1819,1845,1958,1977,2082,2077,2104,2113,2034,27390,2024,1921,1828,1841,1902,1836,1773,1618,1605,1584,1681,1756,1854,1877,2290,33101,2116,2175,2239,2269,2281,2328,2358,2354,2406,2357,2210,2105,2035,1997,1871,17605,1856,1763,1744,1696,1690,1680,1675,1692,1835,1974,10882,1364,1401,1263,1174,1020,981,1014,930,884,851,4351,700,697,572,542,383,1457,80156,4144,755,783,877,853,876,4703,909,950,911,980,953,5494,946,984,941,892,840,891,3178,899,884,716,679,3926,676,708,774,865,903,10125,858,937,980,1012,1005,1056,1078,1089,1070,1040,14022,1036,995,985,954,973,969,911,803,826,816,829,877,910,935,1203,16907,1061,1089,1195,1144,1169,1241,1182,1203,1256,1167,1109,1066,1084,1016,925,8991,949,876,860,889,860,848,861,884,952,1012,5998,754,744,691,612,519,550,582,538,500,508,2668,414,390,322,326,236,980,76816,4311,779,883,832,876,941,4815,919,964,945,957,1030,5979,1029,998,966,970,1006,1010,3325,936,874,834,681,4042,722,795,836,831,858,9601,859,882,865,946,972,1026,999,1015,1043,994,13368,988,926,843,887,929,867,862,815,779,768,852,879,944,942,1087,16194,1055,1086,1044,1125,1112,1087,1176,1151,1150,1190,1101,1039,951,981,946,8614,907,887,884,807,830,832,814,808,883,962,4884,610,657,572,562,501,431,432,392,384,343,1683,286,307,250,216,147,477 +"2021","North Lincolnshire","E06000013",169675,8445,1562,1645,1685,1716,1837,9648,1857,1813,1911,2018,2049,12120,2032,2045,2042,2027,1971,2003,6896,1976,1887,1641,1392,8126,1481,1568,1622,1711,1744,20307,1868,1872,1876,2015,2051,2088,2137,2111,2178,2111,29946,2143,2137,2106,1987,1914,2045,1929,1833,1718,1757,1921,1936,2011,2164,2345,36917,2365,2493,2591,2521,2547,2592,2680,2614,2648,2456,2434,2335,2287,2240,2114,20250,2106,2011,2032,1922,1953,1967,2029,1989,2135,2106,12297,1541,1693,1485,1385,1191,1095,1118,1010,927,852,4723,761,760,562,569,452,1619,85970,4212,789,821,864,826,912,4789,927,897,947,1013,1005,5908,1046,967,986,989,949,971,3301,933,950,763,655,3896,681,739,776,807,893,10253,876,957,970,999,1022,1040,1083,1120,1109,1077,15202,1091,1045,1074,1028,956,1051,983,938,869,860,1002,969,1065,1081,1190,18494,1174,1273,1336,1241,1292,1312,1302,1317,1289,1250,1218,1161,1142,1127,1060,10363,1081,1050,1046,987,971,1030,1053,1012,1054,1079,6622,812,909,770,726,645,613,619,554,489,485,2930,425,426,328,354,296,1101,83705,4233,773,824,821,890,925,4859,930,916,964,1005,1044,6212,986,1078,1056,1038,1022,1032,3595,1043,937,878,737,4230,800,829,846,904,851,10054,992,915,906,1016,1029,1048,1054,991,1069,1034,14744,1052,1092,1032,959,958,994,946,895,849,897,919,967,946,1083,1155,18423,1191,1220,1255,1280,1255,1280,1378,1297,1359,1206,1216,1174,1145,1113,1054,9887,1025,961,986,935,982,937,976,977,1081,1027,5675,729,784,715,659,546,482,499,456,438,367,1793,336,334,234,215,156,518 +"2021","York","E06000014",202808,8612,1688,1653,1747,1709,1815,9899,1925,1947,1954,2026,2047,12220,2092,2096,2033,2049,2050,1900,13317,2053,1943,3594,5727,20354,5477,5034,3788,3230,2825,25840,2631,2687,2585,2519,2544,2638,2560,2593,2516,2567,36352,2477,2551,2460,2436,2628,2534,2458,2425,2252,2202,2164,2304,2374,2443,2644,37481,2777,2629,2687,2609,2559,2598,2655,2704,2512,2495,2407,2298,2212,2261,2078,20267,2010,1992,1941,1975,1867,1991,1964,2009,2249,2269,12986,1689,1685,1486,1426,1178,1150,1159,1155,1061,997,5480,902,766,689,567,519,2037,105295,4202,824,810,831,845,892,4824,927,948,953,970,1026,6022,991,1045,966,1014,1025,981,7117,959,941,1983,3234,10912,3111,2718,1962,1691,1430,13230,1347,1368,1305,1274,1343,1338,1286,1349,1279,1341,18461,1282,1294,1240,1231,1320,1325,1259,1223,1125,1106,1127,1180,1196,1232,1321,19135,1443,1359,1368,1350,1283,1309,1354,1390,1264,1274,1237,1217,1101,1122,1064,10685,1032,1058,983,1058,971,1034,1025,1059,1250,1215,7199,894,915,809,801,667,611,663,656,604,579,3508,517,484,426,339,338,1404,97513,4410,864,843,916,864,923,5075,998,999,1001,1056,1021,6198,1101,1051,1067,1035,1025,919,6200,1094,1002,1611,2493,9442,2366,2316,1826,1539,1395,12610,1284,1319,1280,1245,1201,1300,1274,1244,1237,1226,17891,1195,1257,1220,1205,1308,1209,1199,1202,1127,1096,1037,1124,1178,1211,1323,18346,1334,1270,1319,1259,1276,1289,1301,1314,1248,1221,1170,1081,1111,1139,1014,9582,978,934,958,917,896,957,939,950,999,1054,5787,795,770,677,625,511,539,496,499,457,418,1972,385,282,263,228,181,633 +"2021","Craven","E07000163",56922,2347,389,450,499,554,455,2722,522,526,524,561,589,3574,575,608,618,607,575,591,2022,555,543,548,376,2309,381,411,506,519,492,5349,455,515,489,566,536,549,557,604,577,501,9299,557,511,549,573,580,695,634,549,550,575,597,659,674,742,854,13678,852,886,864,941,945,937,979,922,945,944,945,904,861,891,862,8323,816,850,869,831,745,770,844,799,929,870,5207,659,706,656,626,490,445,470,418,382,355,2092,351,304,264,226,212,735,29307,1190,179,235,258,295,223,1345,250,237,268,279,311,1735,285,297,290,288,286,289,917,253,246,245,173,1116,169,202,254,243,248,2698,223,265,250,294,270,262,289,298,305,242,4804,285,265,286,297,316,332,313,287,290,293,287,368,365,368,452,7104,430,484,423,478,501,522,501,463,499,491,483,462,453,451,463,4254,408,433,423,417,384,414,458,403,474,440,2803,368,371,351,304,254,252,271,235,206,191,1341,209,165,172,138,131,526,27615,1157,210,215,241,259,232,1377,272,289,256,282,278,1839,290,311,328,319,289,302,1105,302,297,303,203,1193,212,209,252,276,244,2651,232,250,239,272,266,287,268,306,272,259,4495,272,246,263,276,264,363,321,262,260,282,310,291,309,374,402,6574,422,402,441,463,444,415,478,459,446,453,462,442,408,440,399,4069,408,417,446,414,361,356,386,396,455,430,2404,291,335,305,322,236,193,199,183,176,164,751,142,139,92,88,81,209 +"2021","Hambleton","E07000164",90686,3820,655,725,794,787,859,4428,838,872,834,933,951,5455,893,933,916,922,864,927,3322,956,937,760,669,3900,639,720,756,900,885,9037,869,845,856,939,898,953,948,950,895,884,14297,928,909,811,862,951,976,936,928,852,932,910,958,1020,1110,1214,21696,1259,1338,1432,1449,1451,1571,1624,1567,1509,1510,1550,1420,1417,1335,1264,13028,1280,1234,1299,1250,1228,1283,1267,1346,1421,1420,8453,1025,1183,1047,906,784,702,797,703,711,595,3250,582,489,419,333,315,1112,46447,1846,333,360,370,377,406,2180,420,420,409,442,489,2695,425,435,456,453,463,463,1575,466,461,371,277,1803,283,304,370,440,406,4525,405,418,400,468,440,490,483,500,450,471,7488,483,472,433,456,479,484,480,485,450,494,469,495,535,589,684,11204,640,710,749,755,728,799,871,811,789,801,790,704,729,690,638,6673,675,635,680,622,614,642,651,681,723,750,4495,512,615,512,450,427,416,444,386,380,353,1963,336,290,237,185,194,721,44239,1974,322,365,424,410,453,2248,418,452,425,491,462,2760,468,498,460,469,401,464,1747,490,476,389,392,2097,356,416,386,460,479,4512,464,427,456,471,458,463,465,450,445,413,6809,445,437,378,406,472,492,456,443,402,438,441,463,485,521,530,10492,619,628,683,694,723,772,753,756,720,709,760,716,688,645,626,6355,605,599,619,628,614,641,616,665,698,670,3958,513,568,535,456,357,286,353,317,331,242,1287,246,199,182,148,121,391 +"2021","Harrogate","E07000165",162672,7287,1296,1344,1484,1495,1668,8394,1637,1595,1682,1704,1776,11685,1934,1883,1986,1988,1952,1942,7732,2353,2656,1639,1084,6467,1008,1122,1324,1483,1530,16587,1487,1532,1602,1599,1682,1764,1782,1637,1752,1750,29713,1865,1809,1866,1790,1941,2026,2048,1912,1868,1863,1955,1968,2191,2222,2389,36781,2543,2439,2583,2492,2641,2668,2642,2555,2559,2498,2334,2335,2301,2099,2092,19695,2035,1957,1916,1757,1803,1864,1913,1986,2233,2231,12927,1553,1751,1490,1421,1228,1175,1184,1118,1047,960,5404,842,723,690,610,513,2026,83005,3545,605,662,722,730,826,4149,757,778,888,860,866,5735,897,965,984,976,988,925,3250,1002,1000,774,474,3004,423,514,607,729,731,8315,733,767,765,794,820,906,899,840,899,892,15329,977,901,996,916,958,1051,1065,1008,957,947,1013,1012,1154,1159,1215,18986,1325,1267,1357,1283,1379,1399,1403,1275,1351,1249,1166,1210,1179,1090,1053,10243,1021,990,996,899,983,1040,986,1070,1128,1130,7045,822,934,755,774,693,650,665,601,598,553,3404,473,444,410,368,311,1398,79667,3742,691,682,762,765,842,4245,880,817,794,844,910,5950,1037,918,1002,1012,964,1017,4482,1351,1656,865,610,3463,585,608,717,754,799,8272,754,765,837,805,862,858,883,797,853,858,14384,888,908,870,874,983,975,983,904,911,916,942,956,1037,1063,1174,17795,1218,1172,1226,1209,1262,1269,1239,1280,1208,1249,1168,1125,1122,1009,1039,9452,1014,967,920,858,820,824,927,916,1105,1101,5882,731,817,735,647,535,525,519,517,449,407,2000,369,279,280,242,202,628 +"2021","Richmondshire","E07000166",49770,2323,433,402,516,483,489,2538,480,501,520,510,527,3175,544,563,530,527,514,497,2402,487,506,602,807,2725,621,492,516,529,567,5883,629,621,641,599,614,517,546,603,563,550,8039,553,528,497,607,548,538,512,513,474,452,480,518,595,567,657,11032,698,711,748,754,704,720,757,785,763,755,790,709,730,723,685,6404,650,628,639,606,618,611,602,646,738,666,3896,520,485,492,420,369,355,335,351,282,287,1353,238,207,183,136,117,472,24314,1117,210,213,221,235,238,1201,226,228,228,262,257,1476,245,249,246,260,240,236,870,228,249,246,147,978,161,165,200,216,236,2671,250,248,258,259,258,256,267,315,292,268,4107,267,253,244,315,276,290,247,279,247,239,267,263,321,278,321,5770,364,379,420,394,358,375,399,419,397,392,392,376,399,361,345,3260,317,310,326,296,296,325,320,343,389,338,2033,282,235,254,208,188,180,186,175,169,156,831,139,134,105,76,63,314,25456,1206,223,189,295,248,251,1337,254,273,292,248,270,1699,299,314,284,267,274,261,1532,259,257,356,660,1747,460,327,316,313,331,3212,379,373,383,340,356,261,279,288,271,282,3932,286,275,253,292,272,248,265,234,227,213,213,255,274,289,336,5262,334,332,328,360,346,345,358,366,366,363,398,333,331,362,340,3144,333,318,313,310,322,286,282,303,349,328,1863,238,250,238,212,181,175,149,176,113,131,522,99,73,78,60,54,158 +"2021","Ryedale","E07000167",54717,2296,416,464,466,450,500,2654,530,513,498,525,588,3431,536,600,554,556,578,607,2071,619,577,491,384,2180,336,364,480,499,501,5292,508,501,502,509,514,581,550,535,561,531,8742,571,536,544,530,574,592,574,542,528,490,562,585,657,701,756,12904,813,788,799,832,866,909,905,949,899,942,884,872,791,836,819,8057,863,791,783,750,771,783,824,787,859,846,5107,648,715,628,560,453,437,484,454,387,341,1983,311,287,276,206,200,703,28026,1167,200,251,239,237,240,1267,245,236,237,259,290,1658,249,289,283,253,279,305,1011,318,278,237,178,1061,159,172,218,252,260,2737,244,271,248,266,261,289,297,278,288,295,4495,289,281,297,267,274,323,264,275,271,258,281,289,333,372,421,6634,412,444,432,427,449,471,474,467,457,483,431,440,393,419,435,4095,471,394,401,373,398,370,429,387,437,435,2717,325,376,307,272,239,235,279,268,212,204,1184,162,170,154,117,124,457,26691,1129,216,213,227,213,260,1387,285,277,261,266,298,1773,287,311,271,303,299,302,1060,301,299,254,206,1119,177,192,262,247,241,2555,264,230,254,243,253,292,253,257,273,236,4247,282,255,247,263,300,269,310,267,257,232,281,296,324,329,335,6270,401,344,367,405,417,438,431,482,442,459,453,432,398,417,384,3962,392,397,382,377,373,413,395,400,422,411,2390,323,339,321,288,214,202,205,186,175,137,799,149,117,122,89,76,246 +"2021","Scarborough","E07000168",108731,4715,888,939,910,945,1033,5251,1013,1036,1003,1098,1101,6662,1077,1116,1157,1125,1080,1107,4121,1153,1121,1024,823,4660,849,872,924,1044,971,11519,1055,994,1082,1140,1213,1226,1285,1155,1194,1175,17041,1166,1136,1080,1074,1070,1146,1082,1072,949,988,1067,1202,1236,1296,1477,24893,1448,1461,1529,1626,1638,1693,1760,1776,1772,1737,1759,1748,1716,1629,1601,16110,1538,1586,1581,1537,1572,1549,1596,1582,1785,1784,9957,1305,1364,1249,1091,906,874,855,860,770,683,3802,588,579,478,410,341,1406,55895,2300,424,459,456,462,499,2560,475,492,467,558,568,3269,525,560,558,554,526,546,1964,549,554,495,366,2323,414,425,460,533,491,5831,520,489,528,556,654,618,661,600,647,558,8758,590,592,558,547,552,577,542,551,504,535,542,632,617,653,766,12793,746,739,780,842,821,895,891,908,922,952,872,882,885,812,846,8326,808,808,785,790,835,823,813,844,882,938,5391,678,715,627,578,517,519,435,462,456,404,2380,338,327,291,258,202,964,52836,2415,464,480,454,483,534,2691,538,544,536,540,533,3393,552,556,599,571,554,561,2157,604,567,529,457,2337,435,447,464,511,480,5688,535,505,554,584,559,608,624,555,547,617,8283,576,544,522,527,518,569,540,521,445,453,525,570,619,643,711,12100,702,722,749,784,817,798,869,868,850,785,887,866,831,817,755,7784,730,778,796,747,737,726,783,738,903,846,4566,627,649,622,513,389,355,420,398,314,279,1422,250,252,187,152,139,442 +"2021","Selby","E07000169",91985,4951,943,923,1012,1033,1040,5243,1087,1008,1026,1050,1072,6358,1071,1063,1099,1053,1070,1002,3596,990,1024,870,712,4024,618,732,828,916,930,11398,930,1040,1106,1079,1195,1224,1230,1185,1229,1180,17230,1174,1167,1097,1142,1125,1128,1233,1076,1010,1027,1083,1131,1202,1297,1338,20407,1396,1387,1424,1400,1436,1453,1469,1466,1418,1310,1389,1258,1305,1156,1140,10564,1033,1092,1072,988,994,1062,1016,1058,1144,1105,6077,804,835,752,720,585,502,520,479,444,436,2137,361,322,298,247,216,693,46807,2367,473,436,481,501,476,2538,521,517,473,500,527,3144,513,535,568,525,523,480,1774,518,498,433,325,1992,297,335,408,472,480,5926,463,553,559,587,635,649,626,595,644,615,8816,582,581,537,620,583,591,604,541,520,529,558,577,636,654,703,10339,711,717,719,721,733,718,728,754,745,698,685,636,638,565,571,5381,498,547,556,507,521,552,516,546,589,549,3218,389,442,400,367,306,279,275,280,224,256,1312,208,185,172,148,130,469,45178,2584,470,487,531,532,564,2705,566,491,553,550,545,3214,558,528,531,528,547,522,1822,472,526,437,387,2032,321,397,420,444,450,5472,467,487,547,492,560,575,604,590,585,565,8414,592,586,560,522,542,537,629,535,490,498,525,554,566,643,635,10068,685,670,705,679,703,735,741,712,673,612,704,622,667,591,569,5183,535,545,516,481,473,510,500,512,555,556,2859,415,393,352,353,279,223,245,199,220,180,825,153,137,126,99,86,224 +"2021","Barnsley","E08000016",244567,13463,2511,2718,2638,2756,2840,14366,2783,2789,2756,3030,3008,16955,2945,2870,2859,2857,2821,2603,9653,2694,2590,2280,2089,12448,2039,2201,2538,2778,2892,32945,2971,3058,3194,3351,3555,3546,3352,3261,3394,3263,44854,3174,3242,3171,3062,3037,2987,3044,2761,2517,2514,2712,2870,2962,3259,3542,52287,3807,3531,3812,3818,3752,3647,3725,3578,3590,3422,3237,3151,3142,3082,2993,26461,2813,2609,2853,2568,2555,2521,2546,2566,2757,2673,15763,2091,2287,1949,1721,1492,1449,1323,1222,1209,1020,5372,938,796,744,636,487,1771,124291,6553,1229,1297,1311,1339,1377,7068,1370,1395,1333,1525,1445,8209,1409,1379,1425,1362,1366,1268,4699,1306,1258,1101,1034,6251,979,1125,1266,1431,1450,16899,1587,1551,1693,1676,1772,1826,1727,1630,1760,1677,22707,1597,1676,1631,1496,1483,1503,1548,1447,1286,1274,1375,1437,1493,1658,1803,26434,1962,1802,1862,1867,1911,1858,1873,1846,1835,1693,1635,1591,1562,1583,1554,13481,1417,1325,1468,1269,1315,1264,1279,1338,1392,1414,8553,1100,1231,1014,906,776,802,746,683,688,607,3437,560,458,457,404,324,1234,120276,6910,1282,1421,1327,1417,1463,7298,1413,1394,1423,1505,1563,8746,1536,1491,1434,1495,1455,1335,4954,1388,1332,1179,1055,6197,1060,1076,1272,1347,1442,16046,1384,1507,1501,1675,1783,1720,1625,1631,1634,1586,22147,1577,1566,1540,1566,1554,1484,1496,1314,1231,1240,1337,1433,1469,1601,1739,25853,1845,1729,1950,1951,1841,1789,1852,1732,1755,1729,1602,1560,1580,1499,1439,12980,1396,1284,1385,1299,1240,1257,1267,1228,1365,1259,7210,991,1056,935,815,716,647,577,539,521,413,1935,378,338,287,232,163,537 +"2021","Doncaster","E08000017",308105,16940,3283,3503,3347,3411,3396,18119,3581,3432,3631,3692,3783,22120,3774,3830,3754,3665,3599,3498,12638,3464,3404,3018,2752,16214,2702,2916,3383,3476,3737,42042,3688,3864,4114,4139,4386,4457,4303,4355,4416,4320,56799,4129,4184,3884,3968,3948,3935,3848,3489,3361,3349,3423,3427,3806,3930,4118,63385,4321,4322,4376,4376,4410,4435,4478,4499,4367,4224,4166,4104,3848,3792,3667,32857,3572,3268,3434,3125,3142,3254,3127,3212,3510,3213,19539,2515,2637,2360,2128,1872,1754,1736,1617,1532,1388,7452,1296,1077,964,873,788,2454,155277,8069,1504,1675,1616,1664,1610,8857,1709,1681,1796,1811,1860,10905,1882,1806,1845,1824,1776,1772,6099,1677,1635,1475,1312,7894,1228,1405,1749,1675,1837,21118,1861,2046,2056,2038,2057,2231,2143,2285,2162,2239,28091,2086,2045,1916,1960,1945,1898,1972,1670,1648,1671,1655,1720,1873,1990,2042,32135,2230,2111,2243,2277,2256,2271,2284,2259,2129,2134,2082,2042,1995,1929,1893,16902,1722,1669,1814,1559,1596,1693,1642,1643,1849,1715,10569,1301,1402,1200,1120,999,961,959,927,892,808,4638,765,631,588,527,474,1653,152828,8871,1779,1828,1731,1747,1786,9262,1872,1751,1835,1881,1923,11215,1892,2024,1909,1841,1823,1726,6539,1787,1769,1543,1440,8320,1474,1511,1634,1801,1900,20924,1827,1818,2058,2101,2329,2226,2160,2070,2254,2081,28708,2043,2139,1968,2008,2003,2037,1876,1819,1713,1678,1768,1707,1933,1940,2076,31250,2091,2211,2133,2099,2154,2164,2194,2240,2238,2090,2084,2062,1853,1863,1774,15955,1850,1599,1620,1566,1546,1561,1485,1569,1661,1498,8970,1214,1235,1160,1008,873,793,777,690,640,580,2814,531,446,376,346,314,801 +"2021","Rotherham","E08000018",265811,14645,2756,2822,2922,3005,3140,15981,3132,2971,3227,3281,3370,19608,3354,3307,3355,3346,3177,3069,11402,3134,2999,2867,2402,14099,2454,2683,2855,2967,3140,34432,3009,3130,3296,3408,3562,3719,3616,3579,3580,3533,48938,3430,3491,3398,3310,3370,3406,3257,3033,2780,2803,2944,3116,3262,3571,3767,54477,3927,3832,3892,3892,3923,3800,3803,3738,3667,3595,3577,3280,3195,3304,3052,28242,2866,2868,2847,2839,2611,2734,2769,2779,3021,2908,17862,2323,2658,2043,1916,1686,1545,1655,1485,1367,1184,6125,1093,909,843,694,596,1990,135547,7078,1302,1368,1445,1460,1503,7976,1585,1487,1638,1609,1657,9572,1622,1662,1596,1594,1546,1552,5489,1551,1437,1392,1109,7033,1182,1348,1467,1482,1554,17803,1521,1591,1717,1756,1842,1915,1892,1901,1822,1846,25029,1783,1760,1729,1666,1713,1806,1663,1615,1386,1400,1531,1601,1726,1763,1887,27502,1997,1940,1958,1943,1955,1896,1919,1869,1830,1775,1817,1669,1667,1694,1573,14556,1486,1446,1436,1499,1276,1420,1426,1439,1574,1554,9634,1231,1349,1086,1045,917,836,917,838,768,647,3875,656,533,526,409,392,1359,130264,7567,1454,1454,1477,1545,1637,8005,1547,1484,1589,1672,1713,10036,1732,1645,1759,1752,1631,1517,5913,1583,1562,1475,1293,7066,1272,1335,1388,1485,1586,16629,1488,1539,1579,1652,1720,1804,1724,1678,1758,1687,23909,1647,1731,1669,1644,1657,1600,1594,1418,1394,1403,1413,1515,1536,1808,1880,26975,1930,1892,1934,1949,1968,1904,1884,1869,1837,1820,1760,1611,1528,1610,1479,13686,1380,1422,1411,1340,1335,1314,1343,1340,1447,1354,8228,1092,1309,957,871,769,709,738,647,599,537,2250,437,376,317,285,204,631 +"2021","Sheffield","E08000019",556532,30179,5718,5960,6033,6144,6324,32018,6368,6263,6266,6543,6578,38076,6535,6372,6487,6550,6105,6027,31428,6081,6165,7920,11262,50872,11040,11414,10181,9516,8721,79405,8262,8194,7982,8003,8097,8098,7678,7865,7723,7503,99415,7310,7176,7135,6739,6674,6832,6913,6386,6020,5992,6010,6230,6247,6823,6928,100319,7368,7159,7362,7385,7048,7205,6984,6676,6919,6704,6328,6035,5887,5866,5393,49414,5219,4915,5099,4868,4694,4593,4693,4843,5287,5203,32630,3920,4463,3897,3519,3082,2931,2982,2837,2631,2368,12776,2090,1849,1668,1354,1218,4597,282332,14938,2886,2903,3019,3013,3117,15529,3096,3019,3093,3106,3215,18451,3198,3084,3155,3161,3003,2850,15477,2941,3005,3889,5642,25257,5507,5568,5058,4713,4411,40285,4118,4167,4012,4113,4031,4097,3880,4056,3993,3818,50240,3670,3741,3626,3404,3513,3416,3453,3205,3012,2952,2947,3115,3146,3438,3602,50481,3846,3589,3652,3693,3547,3620,3485,3339,3449,3418,3151,3065,2975,2939,2713,25435,2636,2511,2520,2488,2470,2373,2381,2549,2772,2735,18090,2208,2438,2081,1876,1713,1637,1672,1635,1500,1330,8149,1262,1084,1017,886,783,3117,274200,15241,2832,3057,3014,3131,3207,16489,3272,3244,3173,3437,3363,19625,3337,3288,3332,3389,3102,3177,15951,3140,3160,4031,5620,25615,5533,5846,5123,4803,4310,39120,4144,4027,3970,3890,4066,4001,3798,3809,3730,3685,49175,3640,3435,3509,3335,3161,3416,3460,3181,3008,3040,3063,3115,3101,3385,3326,49838,3522,3570,3710,3692,3501,3585,3499,3337,3470,3286,3177,2970,2912,2927,2680,23979,2583,2404,2579,2380,2224,2220,2312,2294,2515,2468,14540,1712,2025,1816,1643,1369,1294,1310,1202,1131,1038,4627,828,765,651,468,435,1480 +"2021","Bradford","E08000032",546414,36096,6622,7313,7358,7183,7620,39554,7806,7733,7979,7918,8118,49187,8174,8369,8352,8238,8219,7835,29944,8121,7944,7390,6489,33135,6252,6589,6887,6565,6842,72560,6439,6789,6926,7129,7266,7289,7496,7658,7857,7711,107702,7750,7598,7666,7577,7648,7667,7535,7176,6612,6659,6497,6531,6834,6815,7137,95236,7061,6900,6814,6743,6758,6400,6645,6423,6510,6207,6181,5941,5685,5626,5342,46496,5206,4869,4827,4760,4462,4371,4348,4396,4784,4473,25594,3047,3243,2979,2734,2400,2330,2405,2232,2221,2003,10910,1769,1601,1427,1224,1046,3843,278967,17934,3243,3661,3685,3550,3795,19579,3849,3928,3908,3915,3979,24025,3999,3979,4076,3980,4109,3882,14542,3930,3917,3608,3087,16746,3134,3342,3438,3336,3496,37959,3241,3524,3574,3687,3779,3768,3910,4099,4264,4113,55113,4042,3984,4008,3877,4053,3936,3854,3598,3399,3393,3292,3235,3471,3434,3537,48006,3606,3454,3418,3290,3381,3250,3298,3352,3275,3115,3189,2930,2910,2871,2667,23801,2565,2498,2412,2375,2275,2246,2274,2262,2552,2342,14263,1674,1775,1619,1455,1356,1281,1368,1239,1311,1185,6999,1085,960,920,772,642,2620,267447,18162,3379,3652,3673,3633,3825,19975,3957,3805,4071,4003,4139,25162,4175,4390,4276,4258,4110,3953,15402,4191,4027,3782,3402,16389,3118,3247,3449,3229,3346,34601,3198,3265,3352,3442,3487,3521,3586,3559,3593,3598,52589,3708,3614,3658,3700,3595,3731,3681,3578,3213,3266,3205,3296,3363,3381,3600,47230,3455,3446,3396,3453,3377,3150,3347,3071,3235,3092,2992,3011,2775,2755,2675,22695,2641,2371,2415,2385,2187,2125,2074,2134,2232,2131,11331,1373,1468,1360,1279,1044,1049,1037,993,910,818,3911,684,641,507,452,404,1223 +"2021","Calderdale","E08000033",206634,11316,2106,2176,2289,2314,2431,12801,2453,2500,2462,2758,2628,15877,2702,2643,2727,2644,2597,2564,9038,2615,2513,2116,1794,10125,1656,1920,2072,2261,2216,24922,2326,2234,2433,2574,2423,2569,2606,2472,2656,2629,39472,2538,2710,2621,2570,2594,2628,2679,2588,2326,2431,2518,2521,2725,2939,3084,43771,3183,3161,3193,3114,3108,3122,3106,3084,2960,2810,2752,2593,2533,2586,2466,21959,2336,2184,2211,2089,2051,2165,2156,2181,2362,2224,12691,1638,1805,1578,1453,1185,1112,1096,1012,942,870,4662,752,642,605,542,418,1703,105902,5492,995,1037,1122,1142,1196,6230,1177,1211,1170,1370,1302,7832,1304,1294,1361,1304,1291,1278,4310,1251,1204,1008,847,4955,782,912,989,1153,1119,13147,1203,1123,1233,1360,1290,1369,1381,1337,1423,1428,20306,1323,1456,1372,1329,1388,1327,1387,1312,1119,1268,1302,1325,1427,1444,1527,22376,1698,1643,1572,1626,1609,1539,1532,1599,1498,1465,1409,1326,1293,1307,1260,11339,1224,1128,1109,1042,1045,1132,1155,1090,1236,1178,6884,861,954,827,750,668,593,612,600,531,488,3031,457,384,353,358,275,1204,100732,5824,1111,1139,1167,1172,1235,6571,1276,1289,1292,1388,1326,8045,1398,1349,1366,1340,1306,1286,4728,1364,1309,1108,947,5170,874,1008,1083,1108,1097,11775,1123,1111,1200,1214,1133,1200,1225,1135,1233,1201,19166,1215,1254,1249,1241,1206,1301,1292,1276,1207,1163,1216,1196,1298,1495,1557,21395,1485,1518,1621,1488,1499,1583,1574,1485,1462,1345,1343,1267,1240,1279,1206,10620,1112,1056,1102,1047,1006,1033,1001,1091,1126,1046,5807,777,851,751,703,517,519,484,412,411,382,1631,295,258,252,184,143,499 +"2021","Kirklees","E08000034",433220,25147,4759,4905,5057,5085,5341,27644,5309,5393,5466,5657,5819,34153,5785,5820,5755,5663,5591,5539,21328,5572,5513,5232,5011,25844,5103,5045,5305,5148,5243,54872,5296,5011,5227,5379,5532,5724,5498,5666,5816,5723,83409,5784,5621,5601,5559,5592,5808,5723,5592,4988,5084,5164,5322,5546,5779,6246,84011,6300,6158,6298,6181,5923,6019,5890,5672,5613,5429,5125,5010,4933,4848,4612,42460,4356,4173,4231,4108,4164,4094,4097,4230,4547,4460,25146,3236,3396,3042,2762,2421,2169,2179,2184,1988,1769,9206,1512,1354,1170,968,875,3327,220874,12349,2354,2413,2455,2530,2597,13502,2607,2643,2640,2694,2918,16534,2777,2794,2780,2758,2771,2654,10403,2742,2654,2540,2467,12968,2510,2547,2654,2562,2695,28606,2637,2540,2748,2764,2896,3018,2874,3051,3030,3048,42793,2980,2919,2870,2912,2963,3033,2880,2873,2525,2591,2609,2728,2794,2936,3180,42296,3168,3115,3185,3082,2937,2994,2968,2884,2866,2717,2529,2576,2530,2396,2349,21871,2209,2115,2138,2103,2127,2086,2101,2221,2393,2378,13716,1682,1762,1648,1542,1331,1194,1198,1200,1118,1041,5836,830,803,735,580,562,2326,212346,12798,2405,2492,2602,2555,2744,14142,2702,2750,2826,2963,2901,17619,3008,3026,2975,2905,2820,2885,10925,2830,2859,2692,2544,12876,2593,2498,2651,2586,2548,26266,2659,2471,2479,2615,2636,2706,2624,2615,2786,2675,40616,2804,2702,2731,2647,2629,2775,2843,2719,2463,2493,2555,2594,2752,2843,3066,41715,3132,3043,3113,3099,2986,3025,2922,2788,2747,2712,2596,2434,2403,2452,2263,20589,2147,2058,2093,2005,2037,2008,1996,2009,2154,2082,11430,1554,1634,1394,1220,1090,975,981,984,870,728,3370,682,551,435,388,313,1001 +"2021","Leeds","E08000035",811951,46800,8816,9160,9585,9518,9721,49615,10053,9721,9616,10153,10072,57065,10091,9950,9719,9199,9196,8910,42913,8686,8472,10826,14929,70459,15172,15561,14187,13126,12413,121265,12078,12126,12186,12102,12127,12827,11803,11999,11973,12044,157371,11688,11417,11238,11082,11175,11463,10914,10116,9645,9510,9870,9338,9545,10071,10299,139695,10551,10131,10245,9872,10008,9996,10034,9655,9478,9024,8637,8171,8234,8010,7649,67999,6993,6675,6946,6579,6497,6550,6600,6736,7325,7098,41561,5132,5424,4895,4708,3802,3580,3861,3506,3419,3234,17208,2899,2505,2121,1909,1609,6165,415576,22854,4252,4505,4674,4672,4751,24107,4859,4738,4709,4853,4948,27820,4967,4901,4708,4493,4412,4339,21717,4222,4089,5583,7823,36970,8047,8270,7508,6723,6422,62257,6049,6212,6228,6210,6292,6505,6061,6183,6219,6298,79538,5972,5952,5621,5690,5683,5869,5527,5069,4893,4823,4931,4703,4652,4972,5181,70992,5253,5095,5266,5058,5042,4976,5068,4951,4821,4676,4369,4118,4217,4124,3958,35414,3539,3447,3541,3359,3347,3439,3463,3504,3946,3829,22992,2751,2944,2598,2607,2058,2002,2238,1928,1968,1898,10915,1686,1524,1257,1169,1021,4258,396375,23946,4564,4655,4911,4846,4970,25508,5194,4983,4907,5300,5124,29245,5124,5049,5011,4706,4784,4571,21196,4464,4383,5243,7106,33489,7125,7291,6679,6403,5991,59008,6029,5914,5958,5892,5835,6322,5742,5816,5754,5746,77833,5716,5465,5617,5392,5492,5594,5387,5047,4752,4687,4939,4635,4893,5099,5118,68703,5298,5036,4979,4814,4966,5020,4966,4704,4657,4348,4268,4053,4017,3886,3691,32585,3454,3228,3405,3220,3150,3111,3137,3232,3379,3269,18569,2381,2480,2297,2101,1744,1578,1623,1578,1451,1336,6293,1213,981,864,740,588,1907 +"2021","Wakefield","E08000036",353360,20071,3856,3971,4048,3987,4209,20990,4088,4126,4193,4308,4275,24766,4311,4208,4167,4173,3974,3933,13932,3879,3919,3251,2883,18002,2976,3360,3572,3822,4272,48970,4362,4484,4699,4962,5157,5162,5044,4986,5099,5015,67142,4989,4876,4710,4555,4520,4584,4547,4006,3799,3790,4198,4249,4317,4836,5166,72880,5287,5246,5219,5314,5265,5207,5120,4999,4977,4696,4605,4350,4395,4294,3906,36927,3889,3700,3789,3545,3478,3461,3676,3684,3899,3806,22110,2916,3061,2735,2527,2001,1944,1933,1842,1672,1479,7570,1288,1145,1053,889,703,2492,179529,9718,1838,1900,1967,1971,2042,10199,1958,2035,2030,2089,2087,12038,2077,2048,2030,2049,1955,1879,6772,1907,1875,1593,1397,9015,1380,1671,1850,1950,2164,25175,2260,2288,2416,2533,2657,2663,2562,2553,2666,2577,33854,2517,2463,2398,2279,2322,2322,2308,2079,1863,1860,2120,2109,2161,2450,2603,36750,2644,2609,2614,2703,2686,2598,2588,2521,2518,2361,2324,2155,2260,2165,2004,19105,1955,1925,1939,1848,1794,1734,1956,1882,2056,2016,12061,1526,1639,1397,1371,1097,1086,1097,1046,951,851,4842,759,692,659,563,444,1725,173831,10353,2018,2071,2081,2016,2167,10791,2130,2091,2163,2219,2188,12728,2234,2160,2137,2124,2019,2054,7160,1972,2044,1658,1486,8987,1596,1689,1722,1872,2108,23795,2102,2196,2283,2429,2500,2499,2482,2433,2433,2438,33288,2472,2413,2312,2276,2198,2262,2239,1927,1936,1930,2078,2140,2156,2386,2563,36130,2643,2637,2605,2611,2579,2609,2532,2478,2459,2335,2281,2195,2135,2129,1902,17822,1934,1775,1850,1697,1684,1727,1720,1802,1843,1790,10049,1390,1422,1338,1156,904,858,836,796,721,628,2728,529,453,394,326,259,767 +"2021","Derby","E06000015",261368,15223,2931,2926,3222,2972,3172,16898,3204,3387,3346,3409,3552,20057,3381,3516,3327,3548,3206,3079,13274,3301,3156,3182,3635,18528,3604,3976,3741,3660,3547,36737,3712,3645,3661,3627,3785,3933,3732,3569,3625,3448,51144,3700,3693,3564,3722,3553,3759,3345,3178,3062,3152,3050,3235,3306,3289,3536,46727,3554,3385,3524,3481,3296,3298,3380,3258,3177,3037,2896,2818,2660,2576,2387,22435,2357,2204,2384,2197,2171,2133,2167,2123,2430,2269,14258,1701,1927,1663,1490,1342,1279,1362,1262,1196,1036,6087,960,903,784,712,556,2172,131858,7480,1384,1469,1626,1481,1520,8363,1588,1635,1672,1661,1807,9704,1617,1704,1626,1734,1515,1508,6255,1632,1415,1537,1671,9060,1794,1891,1797,1823,1755,18373,1761,1752,1868,1807,1875,2020,1870,1833,1814,1773,25856,1870,1965,1849,1915,1738,1887,1803,1658,1547,1488,1548,1590,1569,1669,1760,23479,1768,1712,1753,1673,1659,1711,1685,1642,1639,1506,1432,1354,1375,1322,1248,11540,1178,1155,1197,1099,1095,1114,1100,1114,1341,1147,7900,878,1034,925,827,714,766,768,714,675,599,3848,582,538,477,423,339,1489,129510,7743,1547,1457,1596,1491,1652,8535,1616,1752,1674,1748,1745,10353,1764,1812,1701,1814,1691,1571,7019,1669,1741,1645,1964,9468,1810,2085,1944,1837,1792,18364,1951,1893,1793,1820,1910,1913,1862,1736,1811,1675,25288,1830,1728,1715,1807,1815,1872,1542,1520,1515,1664,1502,1645,1737,1620,1776,23248,1786,1673,1771,1808,1637,1587,1695,1616,1538,1531,1464,1464,1285,1254,1139,10895,1179,1049,1187,1098,1076,1019,1067,1009,1089,1122,6358,823,893,738,663,628,513,594,548,521,437,2239,378,365,307,289,217,683 +"2021","Leicester","E06000016",368581,22299,4203,4476,4317,4568,4735,24808,4779,4942,4870,5041,5176,30447,5171,5022,5314,5186,4929,4825,23507,5024,4546,6077,7860,36114,8545,8166,7111,6228,6064,54786,5474,5551,5440,5423,5400,5545,5470,5444,5494,5545,74476,5390,5587,5515,5441,5315,5364,5165,4990,4553,4617,4657,4572,4294,4528,4488,58639,4577,4549,4439,4241,4087,3995,3960,3844,3966,3710,3751,3695,3422,3262,3141,25263,2990,2859,2942,2610,2574,2453,2363,2229,2272,1971,12847,1630,1565,1494,1466,1171,1151,1179,1143,1066,982,5395,834,773,654,571,526,2037,186466,10712,1928,2150,2067,2259,2308,12085,2353,2348,2390,2457,2537,14726,2621,2425,2598,2478,2329,2275,12008,2415,2245,3164,4184,18264,4358,4132,3585,3159,3030,28036,2753,2816,2758,2719,2745,2813,2823,2824,2905,2880,37715,2850,2908,2866,2835,2578,2666,2633,2518,2278,2223,2327,2375,2150,2260,2248,29402,2313,2246,2226,2119,2068,1962,1988,1934,2011,1919,1897,1786,1706,1611,1616,12882,1505,1438,1472,1336,1322,1259,1241,1128,1176,1005,7219,873,852,792,802,671,653,675,659,641,601,3417,501,446,419,359,302,1390,182115,11587,2275,2326,2250,2309,2427,12723,2426,2594,2480,2584,2639,15721,2550,2597,2716,2708,2600,2550,11499,2609,2301,2913,3676,17850,4187,4034,3526,3069,3034,26750,2721,2735,2682,2704,2655,2732,2647,2620,2589,2665,36761,2540,2679,2649,2606,2737,2698,2532,2472,2275,2394,2330,2197,2144,2268,2240,29237,2264,2303,2213,2122,2019,2033,1972,1910,1955,1791,1854,1909,1716,1651,1525,12381,1485,1421,1470,1274,1252,1194,1122,1101,1096,966,5628,757,713,702,664,500,498,504,484,425,381,1978,333,327,235,212,224,647 +"2021","Rutland","E06000017",41051,1639,275,296,321,378,369,1972,376,385,411,401,399,3136,410,480,427,570,653,596,2165,649,690,521,305,1852,269,353,415,368,447,4316,407,383,433,471,441,452,408,472,409,440,7011,433,409,424,440,506,481,520,449,456,439,458,447,474,514,561,8570,606,594,565,611,590,598,571,606,578,553,546,562,585,519,486,5334,516,467,512,517,486,533,557,549,588,609,3599,420,516,410,466,317,347,305,304,288,226,1457,245,223,173,150,135,531,19979,820,141,120,176,186,197,910,174,188,188,190,170,1447,193,229,199,256,291,279,957,303,302,220,132,712,102,142,157,151,160,1839,173,153,175,182,175,204,189,187,188,213,3386,200,219,182,212,228,232,243,210,223,204,210,237,249,263,274,4380,298,324,287,335,297,290,309,300,277,292,269,282,312,277,231,2754,277,252,255,257,252,274,289,292,308,298,1916,217,270,221,251,155,192,172,159,154,125,858,136,127,100,78,78,339,21072,819,134,176,145,192,172,1062,202,197,223,211,229,1689,217,251,228,314,362,317,1208,346,388,301,173,1140,167,211,258,217,287,2477,234,230,258,289,266,248,219,285,221,227,3625,233,190,242,228,278,249,277,239,233,235,248,210,225,251,287,4190,308,270,278,276,293,308,262,306,301,261,277,280,273,242,255,2580,239,215,257,260,234,259,268,257,280,311,1683,203,246,189,215,162,155,133,145,134,101,599,109,96,73,72,57,192 +"2021","Nottingham","E06000018",323632,17820,3166,3621,3576,3577,3880,19251,3856,3723,3768,3991,3913,22239,3884,3768,3773,3839,3543,3432,28261,3341,3323,7462,14135,43635,13848,11440,7588,5778,4981,48487,4715,4760,4890,4952,4957,4996,4993,4776,4822,4626,57159,4592,4491,4107,4117,3880,3995,3903,3691,3361,3422,3485,3477,3423,3576,3639,48817,3724,3474,3548,3560,3554,3634,3476,3306,3392,3224,3051,2870,2829,2649,2526,20682,2337,2299,2249,2080,1919,2014,1968,1905,2027,1884,11979,1504,1504,1443,1280,1133,1105,1063,1061,1008,878,5302,828,713,635,583,506,2037,164627,8642,1435,1809,1747,1721,1930,9449,1904,1759,1848,2005,1933,10764,1862,1815,1861,1794,1768,1664,14125,1678,1552,3725,7170,22460,7331,5828,3883,2932,2486,25222,2403,2471,2547,2508,2660,2561,2586,2472,2499,2515,28679,2324,2198,2143,2104,2006,2061,1960,1875,1687,1658,1732,1707,1714,1734,1776,24661,1875,1754,1842,1797,1802,1768,1774,1666,1686,1656,1504,1436,1448,1405,1248,10562,1178,1169,1212,1069,953,990,966,989,1065,971,6658,779,793,803,690,643,625,603,623,572,527,3405,497,419,382,361,326,1420,159005,9178,1731,1812,1829,1856,1950,9802,1952,1964,1920,1986,1980,11475,2022,1953,1912,2045,1775,1768,14136,1663,1771,3737,6965,21175,6517,5612,3705,2846,2495,23265,2312,2289,2343,2444,2297,2435,2407,2304,2323,2111,28480,2268,2293,1964,2013,1874,1934,1943,1816,1674,1764,1753,1770,1709,1842,1863,24156,1849,1720,1706,1763,1752,1866,1702,1640,1706,1568,1547,1434,1381,1244,1278,10120,1159,1130,1037,1011,966,1024,1002,916,962,913,5321,725,711,640,590,490,480,460,438,436,351,1897,331,294,253,222,180,617 +"2021","North Northamptonshire","E06000061",359515,20203,3715,4055,4077,4040,4316,22459,4354,4252,4500,4657,4696,27674,4699,4541,4709,4656,4631,4438,15323,4390,4380,3561,2992,17788,3147,3259,3544,3864,3974,47228,3950,4348,4362,4781,4924,4844,4977,5129,5035,4878,71645,4980,4879,4805,4942,4769,5004,4922,4600,4324,4478,4430,4645,4698,4923,5246,71842,5216,5237,5396,5290,5322,5257,5218,4985,4799,4651,4441,4201,4072,4060,3697,36407,3668,3600,3690,3541,3518,3412,3531,3681,3922,3844,21325,2904,2938,2701,2438,2088,1813,1749,1743,1587,1364,7621,1256,1049,947,834,759,2776,182449,9812,1784,1954,1986,2017,2071,11023,2148,2015,2206,2330,2324,13483,2317,2163,2279,2275,2285,2164,7269,2131,2077,1637,1424,8856,1490,1626,1780,1951,2009,24240,2001,2229,2296,2443,2511,2471,2552,2669,2592,2476,36483,2564,2543,2409,2529,2458,2510,2475,2374,2143,2319,2211,2373,2423,2536,2616,36046,2586,2638,2711,2698,2604,2591,2624,2499,2413,2372,2206,2122,2058,2081,1843,19075,1906,1845,1875,1898,1861,1755,1891,1967,2070,2007,11408,1518,1534,1431,1303,1111,971,955,936,870,779,4754,696,595,575,500,456,1932,177066,10391,1931,2101,2091,2023,2245,11436,2206,2237,2294,2327,2372,14191,2382,2378,2430,2381,2346,2274,8054,2259,2303,1924,1568,8932,1657,1633,1764,1913,1965,22988,1949,2119,2066,2338,2413,2373,2425,2460,2443,2402,35162,2416,2336,2396,2413,2311,2494,2447,2226,2181,2159,2219,2272,2275,2387,2630,35796,2630,2599,2685,2592,2718,2666,2594,2486,2386,2279,2235,2079,2014,1979,1854,17332,1762,1755,1815,1643,1657,1657,1640,1714,1852,1837,9917,1386,1404,1270,1135,977,842,794,807,717,585,2867,560,454,372,334,303,844 +"2021","West Northamptonshire","E06000062",425726,23967,4463,4699,4849,4928,5028,26379,5196,5163,5192,5387,5441,31879,5410,5405,5474,5430,5147,5013,18831,4794,4884,4652,4501,24155,4702,4714,4702,4991,5046,58132,5095,5307,5450,5616,5874,6070,6108,6150,6373,6089,87043,6057,5946,5871,5994,5863,6233,6018,5722,5325,5218,5372,5682,5718,5811,6213,82663,6146,5901,6142,6083,5970,5955,5997,5796,5623,5522,5086,4816,4745,4529,4352,40260,4049,4010,3941,3915,3846,3772,3982,3899,4507,4339,23630,3158,3279,3023,2646,2238,2034,1933,1955,1794,1570,8787,1355,1235,1118,984,868,3227,215059,11791,2175,2343,2388,2424,2461,12942,2595,2563,2559,2618,2607,15650,2622,2608,2716,2631,2533,2540,9352,2309,2421,2353,2269,11795,2353,2276,2256,2441,2469,29297,2543,2607,2775,2800,2885,3043,3111,3204,3152,3177,43767,3028,3042,2993,3029,2992,3123,3030,2846,2646,2551,2735,2830,2814,2916,3192,41600,3119,2868,3086,3050,3052,2922,3027,2879,2866,2774,2631,2426,2426,2287,2187,20891,2069,2062,1992,2059,2035,1971,2063,2053,2324,2263,12560,1613,1733,1600,1382,1129,1071,1071,1082,990,889,5414,767,707,675,569,512,2184,210667,12176,2288,2356,2461,2504,2567,13437,2601,2600,2633,2769,2834,16229,2788,2797,2758,2799,2614,2473,9479,2485,2463,2299,2232,12360,2349,2438,2446,2550,2577,28835,2552,2700,2675,2816,2989,3027,2997,2946,3221,2912,43276,3029,2904,2878,2965,2871,3110,2988,2876,2679,2667,2637,2852,2904,2895,3021,41063,3027,3033,3056,3033,2918,3033,2970,2917,2757,2748,2455,2390,2319,2242,2165,19369,1980,1948,1949,1856,1811,1801,1919,1846,2183,2076,11070,1545,1546,1423,1264,1109,963,862,873,804,681,3373,588,528,443,415,356,1043 +"2021","Amber Valley","E07000032",126214,6073,1098,1177,1210,1225,1363,6711,1296,1273,1341,1398,1403,8359,1468,1435,1383,1381,1375,1317,4728,1291,1241,1182,1014,6049,996,1145,1233,1303,1372,14744,1356,1441,1390,1493,1546,1607,1479,1463,1514,1455,22851,1458,1433,1480,1449,1420,1449,1568,1404,1335,1419,1460,1581,1617,1836,1942,28223,1918,1948,2014,2021,2029,1966,2075,1979,2014,1818,1779,1694,1722,1599,1647,15653,1540,1449,1568,1471,1464,1517,1610,1626,1729,1679,9546,1241,1334,1253,1121,931,792,785,808,672,609,3277,535,457,422,396,308,1159,64239,2963,544,585,602,611,621,3297,626,640,641,693,697,4132,729,707,698,679,696,623,2218,583,607,581,447,3034,460,572,632,667,703,7489,685,734,714,758,788,786,761,746,761,756,11667,743,780,734,740,733,754,809,683,719,723,767,769,812,923,978,14244,941,1007,1040,982,1033,1029,1028,1022,1016,881,911,858,883,798,815,8020,743,748,825,789,701,778,824,836,926,850,5108,635,684,692,565,490,420,436,430,395,361,2067,313,256,283,223,176,816,61975,3110,554,592,608,614,742,3414,670,633,700,705,706,4227,739,728,685,702,679,694,2510,708,634,601,567,3015,536,573,601,636,669,7255,671,707,676,735,758,821,718,717,753,699,11184,715,653,746,709,687,695,759,721,616,696,693,812,805,913,964,13979,977,941,974,1039,996,937,1047,957,998,937,868,836,839,801,832,7633,797,701,743,682,763,739,786,790,803,829,4438,606,650,561,556,441,372,349,378,277,248,1210,222,201,139,173,132,343 +"2021","Bolsover","E07000033",80277,4099,816,802,863,812,806,4492,896,847,890,899,960,5402,908,871,886,935,875,927,2993,825,808,715,645,4176,669,797,841,889,980,10669,968,1082,1039,1076,1134,1135,1092,1074,1034,1035,14511,1059,1017,972,1011,892,903,932,861,775,882,955,924,992,1165,1171,17725,1280,1185,1364,1324,1243,1254,1261,1254,1186,1097,1095,1083,1064,1010,1025,8831,901,899,906,853,828,875,902,848,906,913,5557,767,826,710,650,523,489,402,444,397,349,1822,293,283,247,213,150,636,40693,1951,405,381,416,346,403,2271,447,420,451,462,491,2642,453,415,429,442,416,487,1447,402,392,346,307,2084,309,409,400,466,500,5444,504,576,511,557,560,574,554,548,534,526,7346,538,526,479,482,469,474,455,422,387,450,474,445,545,602,598,8892,644,596,695,639,625,636,632,651,582,559,541,541,513,516,522,4516,447,446,482,443,413,447,449,428,474,487,2931,382,412,388,334,269,265,194,267,215,205,1169,179,171,145,121,99,454,39584,2148,411,421,447,466,403,2221,449,427,439,437,469,2760,455,456,457,493,459,440,1546,423,416,369,338,2092,360,388,441,423,480,5225,464,506,528,519,574,561,538,526,500,509,7165,521,491,493,529,423,429,477,439,388,432,481,479,447,563,573,8833,636,589,669,685,618,618,629,603,604,538,554,542,551,494,503,4315,454,453,424,410,415,428,453,420,432,426,2626,385,414,322,316,254,224,208,177,182,144,653,114,112,102,92,51,182 +"2021","Chesterfield","E07000034",103569,5082,951,967,1051,1033,1080,5608,1034,1053,1152,1158,1211,6876,1213,1111,1205,1180,1092,1075,3843,1037,1065,961,780,5312,840,967,1154,1160,1191,13060,1179,1280,1367,1324,1417,1338,1229,1283,1265,1378,18860,1186,1221,1221,1200,1296,1287,1305,1213,1153,1081,1198,1260,1278,1442,1519,22540,1545,1527,1556,1507,1564,1679,1631,1603,1547,1469,1490,1412,1365,1340,1305,12076,1290,1197,1213,1199,1147,1150,1221,1132,1261,1266,7476,993,1016,912,867,695,665,652,613,574,489,2836,419,436,375,305,272,1029,52682,2539,479,482,511,514,553,2770,500,523,570,570,607,3364,585,540,604,585,552,498,1833,523,507,450,353,2594,445,462,515,582,590,6634,593,648,687,658,715,670,653,671,647,692,9505,624,608,609,596,629,643,630,638,581,540,626,634,647,732,768,11335,789,768,756,767,768,853,841,808,778,718,756,721,677,682,653,6294,652,631,607,603,590,587,661,610,651,702,4024,512,542,477,467,368,328,351,358,328,293,1790,257,249,226,188,164,706,50887,2543,472,485,540,519,527,2838,534,530,582,588,604,3512,628,571,601,595,540,577,2010,514,558,511,427,2718,395,505,639,578,601,6426,586,632,680,666,702,668,576,612,618,686,9355,562,613,612,604,667,644,675,575,572,541,572,626,631,710,751,11205,756,759,800,740,796,826,790,795,769,751,734,691,688,658,652,5782,638,566,606,596,557,563,560,522,610,564,3452,481,474,435,400,327,337,301,255,246,196,1046,162,187,149,117,108,323 +"2021","Derbyshire Dales","E07000035",71552,2637,478,522,512,497,628,3304,617,677,583,648,779,4542,735,723,739,818,763,764,2749,783,785,654,527,2774,438,513,595,622,606,6136,558,559,584,632,642,612,647,633,636,633,11525,629,653,616,635,675,731,749,742,719,730,812,830,886,1040,1078,17865,1119,1096,1207,1198,1263,1290,1322,1255,1277,1194,1229,1134,1129,1097,1055,10640,1051,998,1022,1020,1014,1072,1009,1085,1194,1175,6813,870,923,886,761,665,583,566,572,524,463,2567,410,371,317,271,269,929,36603,1305,236,259,258,236,316,1665,333,312,307,318,395,2255,363,373,363,407,369,380,1302,384,367,312,239,1272,191,232,270,290,289,3034,255,284,299,306,307,301,322,315,306,339,5933,320,328,327,323,350,376,377,407,354,378,401,397,469,559,567,9109,605,568,604,617,656,638,679,649,653,624,602,577,565,548,524,5478,532,536,503,539,508,561,488,578,624,609,3625,445,475,465,393,353,320,307,325,286,256,1625,231,225,195,165,158,651,34949,1332,242,263,254,261,312,1639,284,365,276,330,384,2287,372,350,376,411,394,384,1447,399,418,342,288,1502,247,281,325,332,317,3102,303,275,285,326,335,311,325,318,330,294,5592,309,325,289,312,325,355,372,335,365,352,411,433,417,481,511,8756,514,528,603,581,607,652,643,606,624,570,627,557,564,549,531,5162,519,462,519,481,506,511,521,507,570,566,3188,425,448,421,368,312,263,259,247,238,207,942,179,146,122,106,111,278 +"2021","Erewash","E07000036",112907,5492,983,1073,1105,1160,1171,6375,1229,1251,1268,1327,1300,7511,1317,1282,1268,1285,1162,1197,4493,1260,1199,1054,980,5744,985,1086,1168,1240,1265,14541,1339,1376,1403,1392,1470,1503,1509,1555,1523,1471,20939,1451,1388,1331,1385,1415,1451,1385,1356,1174,1174,1308,1413,1507,1510,1691,24320,1739,1718,1727,1799,1775,1800,1666,1714,1678,1672,1531,1440,1378,1403,1280,12489,1196,1228,1192,1217,1235,1166,1202,1265,1413,1375,8042,1042,1121,1018,882,772,674,717,639,641,536,2961,503,407,392,352,313,994,57462,2706,520,514,558,569,545,3028,583,596,579,628,642,3583,644,600,610,619,537,573,2146,620,556,521,449,2873,492,519,566,647,649,7485,689,726,696,717,746,770,776,835,772,758,10670,764,703,657,715,738,751,682,703,599,592,664,711,757,773,861,12312,894,875,885,916,897,914,858,878,823,843,762,720,695,691,661,6436,607,632,602,640,650,590,601,651,742,721,4398,559,569,561,492,413,365,393,365,373,308,1825,286,237,221,220,198,663,55445,2786,463,559,547,591,626,3347,646,655,689,699,658,3928,673,682,658,666,625,624,2347,640,643,533,531,2871,493,567,602,593,616,7056,650,650,707,675,724,733,733,720,751,713,10269,687,685,674,670,677,700,703,653,575,582,644,702,750,737,830,12008,845,843,842,883,878,886,808,836,855,829,769,720,683,712,619,6053,589,596,590,577,585,576,601,614,671,654,3644,483,552,457,390,359,309,324,274,268,228,1136,217,170,171,132,115,331 +"2021","High Peak","E07000037",90934,4329,783,860,835,915,936,4805,912,942,897,1001,1053,6140,1013,1022,1032,1079,1011,983,3466,1006,983,835,642,4194,681,798,903,919,893,10175,856,944,914,986,1110,1116,1052,1013,1078,1106,16392,1045,1086,1056,1025,1070,1152,1022,1074,985,971,993,1156,1119,1320,1318,21593,1437,1420,1443,1538,1526,1521,1547,1578,1481,1449,1441,1327,1368,1304,1213,11096,1138,1048,1140,1063,1127,1020,1067,1105,1207,1181,6540,903,874,845,722,652,581,557,528,432,446,2204,363,348,274,233,221,765,46253,2152,404,404,412,463,469,2375,459,457,449,479,531,2989,488,501,500,505,511,484,1675,477,474,389,335,2009,317,405,439,421,427,5196,430,478,464,494,591,539,556,536,528,580,8439,535,577,549,525,551,602,537,563,518,479,528,577,575,680,643,10884,723,724,723,767,764,788,803,803,737,689,742,697,682,646,596,5588,555,534,572,518,593,499,523,581,617,596,3544,464,451,455,391,366,328,293,296,239,261,1402,213,212,177,149,128,523,44681,2177,379,456,423,452,467,2430,453,485,448,522,522,3151,525,521,532,574,500,499,1791,529,509,446,307,2185,364,393,464,498,466,4979,426,466,450,492,519,577,496,477,550,526,7953,510,509,507,500,519,550,485,511,467,492,465,579,544,640,675,10709,714,696,720,771,762,733,744,775,744,760,699,630,686,658,617,5508,583,514,568,545,534,521,544,524,590,585,2996,439,423,390,331,286,253,264,232,193,185,802,150,136,97,84,93,242 +"2021","North East Derbyshire","E07000038",102002,4839,910,921,937,978,1093,5383,1034,1039,1058,1082,1170,6508,1101,1155,1070,1091,1063,1028,3799,1040,1013,935,811,4570,770,806,992,964,1038,11335,1065,1158,1100,1153,1152,1163,1094,1116,1181,1153,17539,1097,1133,1138,1139,1081,1207,1263,1003,1078,1051,1164,1192,1191,1370,1432,22697,1507,1505,1503,1524,1701,1598,1593,1554,1597,1482,1439,1474,1423,1440,1357,13319,1283,1356,1363,1191,1245,1262,1339,1399,1432,1449,9024,1196,1268,1171,1032,800,790,757,770,664,576,2989,506,463,374,350,285,1011,52268,2393,456,458,462,489,528,2683,516,536,559,493,579,3213,532,577,508,544,523,529,1851,504,508,423,416,2286,378,389,474,504,541,5786,511,569,569,577,597,617,528,565,641,612,8951,586,592,587,582,533,603,631,524,548,538,584,649,580,681,733,11502,767,786,748,805,847,818,807,812,803,730,691,758,724,720,686,6948,667,715,699,604,669,640,709,758,745,742,4835,651,642,603,557,427,428,419,392,381,335,1820,289,274,206,207,180,664,49734,2446,454,463,475,489,565,2700,518,503,499,589,591,3295,569,578,562,547,540,499,1948,536,505,512,395,2284,392,417,518,460,497,5549,554,589,531,576,555,546,566,551,540,541,8588,511,541,551,557,548,604,632,479,530,513,580,543,611,689,699,11195,740,719,755,719,854,780,786,742,794,752,748,716,699,720,671,6371,616,641,664,587,576,622,630,641,687,707,4189,545,626,568,475,373,362,338,378,283,241,1169,217,189,168,143,105,347 +"2021","South Derbyshire","E07000039",107207,5764,1095,1097,1247,1131,1194,6445,1343,1234,1165,1341,1362,8047,1351,1322,1327,1344,1333,1370,4350,1242,1217,1034,857,5202,834,939,1073,1160,1196,14050,1277,1295,1375,1448,1500,1534,1512,1354,1392,1363,20920,1409,1370,1414,1369,1354,1425,1352,1328,1248,1322,1313,1348,1458,1532,1678,22493,1689,1619,1661,1697,1739,1650,1582,1493,1515,1516,1374,1274,1313,1233,1138,11256,1136,1143,1160,1131,1104,1057,1103,1038,1201,1183,6433,851,961,856,744,581,538,553,536,412,401,2247,387,327,289,245,224,775,54664,2840,539,541,612,539,609,3144,681,596,556,662,649,3908,671,680,626,623,638,670,2074,613,587,486,388,2567,398,455,514,581,619,7300,672,662,715,765,773,813,776,688,714,722,10740,743,747,692,723,671,743,700,712,660,684,658,660,760,751,836,11387,877,844,864,834,822,809,776,768,798,794,687,649,685,605,575,5832,585,613,610,556,567,514,584,547,652,604,3441,455,491,441,363,327,290,308,296,227,243,1431,233,214,178,155,129,522,52543,2924,556,556,635,592,585,3301,662,638,609,679,713,4139,680,642,701,721,695,700,2276,629,630,548,469,2635,436,484,559,579,577,6750,605,633,660,683,727,721,736,666,678,641,10180,666,623,722,646,683,682,652,616,588,638,655,688,698,781,842,11106,812,775,797,863,917,841,806,725,717,722,687,625,628,628,563,5424,551,530,550,575,537,543,519,491,549,579,2992,396,470,415,381,254,248,245,240,185,158,816,154,113,111,90,95,253 +"2021","Blaby","E07000129",102927,5710,1031,1101,1153,1160,1265,6226,1216,1217,1204,1278,1311,7322,1249,1210,1236,1270,1169,1188,4138,1194,1146,970,828,4796,809,872,1028,1030,1057,13020,1131,1179,1199,1274,1324,1342,1362,1374,1503,1332,19805,1374,1381,1410,1323,1342,1404,1320,1233,1220,1183,1239,1318,1255,1438,1365,20840,1495,1392,1489,1488,1495,1392,1499,1441,1386,1424,1394,1311,1266,1213,1155,11148,1076,1050,1108,1096,1048,1027,1147,1141,1260,1195,7213,864,1014,896,805,663,602,639,651,555,524,2709,475,400,386,327,230,891,52481,2758,531,542,547,534,604,2963,590,572,563,607,631,3576,657,605,605,586,566,557,1979,581,557,448,393,2362,384,419,516,502,541,6696,562,608,634,649,663,677,704,721,786,692,10163,720,693,745,666,692,711,660,662,612,603,647,673,647,748,684,10588,731,701,778,761,751,706,774,767,705,718,709,684,627,613,563,5798,545,533,579,570,536,513,615,629,649,629,3933,454,531,477,422,366,336,364,368,329,286,1665,268,242,234,185,134,602,50446,2952,500,559,606,626,661,3263,626,645,641,671,680,3746,592,605,631,684,603,631,2159,613,589,522,435,2434,425,453,512,528,516,6324,569,571,565,625,661,665,658,653,717,640,9642,654,688,665,657,650,693,660,571,608,580,592,645,608,690,681,10252,764,691,711,727,744,686,725,674,681,706,685,627,639,600,592,5350,531,517,529,526,512,514,532,512,611,566,3280,410,483,419,383,297,266,275,283,226,238,1044,207,158,152,142,96,289 +"2021","Charnwood","E07000130",183970,9173,1664,1790,1846,1928,1945,9860,2002,1920,1835,2024,2079,11839,2138,1988,1992,1942,1853,1926,11813,1841,2027,3267,4678,16048,3999,3681,3502,2629,2237,22737,2087,2168,2194,2209,2296,2429,2375,2274,2377,2328,33327,2371,2412,2320,2215,2305,2368,2273,2125,1995,1907,2053,2119,2167,2260,2437,34538,2496,2484,2432,2440,2419,2369,2446,2347,2338,2236,2276,2088,2161,2051,1955,18665,1845,1831,1894,1896,1858,1837,1733,1905,1971,1895,11485,1485,1570,1524,1303,1053,1002,983,923,860,782,4485,727,613,591,507,452,1595,91929,4463,806,927,873,926,931,4784,960,952,872,995,1005,5761,1068,992,1005,920,911,865,5260,875,982,1463,1940,7085,1710,1556,1530,1205,1084,11587,1015,1109,1104,1118,1194,1228,1190,1159,1261,1209,16922,1213,1206,1191,1163,1147,1211,1183,1086,997,917,1060,1043,1110,1160,1235,17481,1273,1246,1218,1278,1217,1180,1230,1180,1211,1150,1117,1089,1107,1075,910,9596,903,939,989,965,988,929,890,986,1042,965,6207,765,875,839,675,550,542,539,506,479,437,2783,404,370,358,306,279,1066,92041,4710,858,863,973,1002,1014,5076,1042,968,963,1029,1074,6078,1070,996,987,1022,942,1061,6553,966,1045,1804,2738,8963,2289,2125,1972,1424,1153,11150,1072,1059,1090,1091,1102,1201,1185,1115,1116,1119,16405,1158,1206,1129,1052,1158,1157,1090,1039,998,990,993,1076,1057,1100,1202,17057,1223,1238,1214,1162,1202,1189,1216,1167,1127,1086,1159,999,1054,976,1045,9069,942,892,905,931,870,908,843,919,929,930,5278,720,695,685,628,503,460,444,417,381,345,1702,323,243,233,201,173,529 +"2021","Harborough","E07000131",97619,4718,871,913,982,964,988,5370,1078,1021,1124,1036,1111,7107,1136,1172,1182,1230,1182,1205,4200,1210,1270,984,736,4343,734,809,842,963,995,10486,971,1045,929,1036,1020,1132,1075,1078,1146,1054,18334,1160,1105,1080,1128,1189,1217,1265,1198,1105,1147,1200,1290,1342,1422,1486,21565,1567,1442,1601,1483,1598,1557,1579,1510,1440,1434,1428,1268,1281,1232,1145,11430,1232,1076,1093,1080,1063,1074,1158,1137,1239,1278,7336,915,1029,940,845,635,604,652,623,539,554,2730,456,397,348,281,280,968,49270,2272,423,431,483,454,481,2616,519,493,541,508,555,3387,550,568,533,583,600,553,1980,547,625,460,348,2063,335,378,409,450,491,5287,480,500,477,531,490,596,541,533,570,569,9381,597,549,573,588,625,574,663,608,565,584,611,666,725,721,732,10887,779,752,828,742,795,813,829,778,731,689,665,636,636,620,594,5870,615,569,561,549,523,546,629,587,635,656,3886,460,547,488,431,316,327,348,340,302,327,1641,262,222,192,158,170,637,48349,2446,448,482,499,510,507,2754,559,528,583,528,556,3720,586,604,649,647,582,652,2220,663,645,524,388,2280,399,431,433,513,504,5199,491,545,452,505,530,536,534,545,576,485,8953,563,556,507,540,564,643,602,590,540,563,589,624,617,701,754,10678,788,690,773,741,803,744,750,732,709,745,763,632,645,612,551,5560,617,507,532,531,540,528,529,550,604,622,3450,455,482,452,414,319,277,304,283,237,227,1089,194,175,156,123,110,331 +"2021","Hinckley and Bosworth","E07000132",113640,5686,1023,1129,1118,1183,1233,6349,1229,1244,1223,1322,1331,7687,1333,1273,1276,1274,1299,1232,4347,1243,1182,1059,863,5037,854,904,1116,1037,1126,13808,1236,1275,1350,1319,1431,1487,1495,1378,1452,1385,21228,1461,1444,1356,1396,1456,1438,1394,1379,1233,1287,1392,1393,1435,1527,1637,24088,1719,1690,1717,1693,1717,1769,1618,1595,1619,1660,1572,1527,1433,1420,1339,13775,1332,1222,1386,1368,1309,1378,1392,1490,1493,1405,8578,1132,1229,1071,973,780,782,706,708,667,530,3057,499,433,366,344,282,1133,57611,2729,513,537,525,566,588,3097,601,629,605,627,635,3721,674,611,593,615,619,609,2092,577,590,510,415,2445,405,431,542,513,554,7057,627,639,680,685,744,760,756,703,740,723,10807,709,747,689,720,741,739,705,730,629,624,703,723,720,801,827,12121,893,858,872,822,825,914,795,765,842,841,773,762,736,751,672,7079,691,593,723,728,666,680,770,756,752,720,4603,587,651,558,519,450,404,368,413,358,295,1860,290,233,213,193,171,760,56029,2957,510,592,593,617,645,3252,628,615,618,695,696,3966,659,662,683,659,680,623,2255,666,592,549,448,2592,449,473,574,524,572,6751,609,636,670,634,687,727,739,675,712,662,10421,752,697,667,676,715,699,689,649,604,663,689,670,715,726,810,11967,826,832,845,871,892,855,823,830,777,819,799,765,697,669,667,6696,641,629,663,640,643,698,622,734,741,685,3975,545,578,513,454,330,378,338,295,309,235,1197,209,200,153,151,111,373 +"2021","Melton","E07000133",51743,2413,435,483,461,512,522,2826,504,564,544,597,617,3561,629,589,599,586,582,576,1975,560,557,486,372,2249,371,398,480,482,518,5503,517,544,498,532,542,576,619,571,594,510,8961,565,527,547,579,571,612,612,570,614,531,548,639,627,690,729,12095,779,801,884,811,889,901,873,877,883,775,786,705,705,722,704,6674,635,652,651,679,635,675,659,673,752,663,3995,531,570,517,476,360,325,370,325,272,249,1491,249,226,178,179,140,519,26498,1169,214,221,232,247,255,1379,244,285,254,298,298,1779,330,296,287,267,295,304,964,269,254,245,196,1113,159,194,241,244,275,2816,236,312,238,287,284,303,319,277,294,266,4676,280,268,292,305,300,315,318,300,330,279,303,335,320,372,359,6184,410,420,441,389,489,474,415,436,448,390,409,359,363,378,363,3379,328,326,326,331,319,366,333,341,387,322,2102,283,287,262,263,198,166,183,171,146,143,937,149,141,101,107,98,341,25245,1244,221,262,229,265,267,1447,260,279,290,299,319,1782,299,293,312,319,287,272,1011,291,303,241,176,1136,212,204,239,238,243,2687,281,232,260,245,258,273,300,294,300,244,4285,285,259,255,274,271,297,294,270,284,252,245,304,307,318,370,5911,369,381,443,422,400,427,458,441,435,385,377,346,342,344,341,3295,307,326,325,348,316,309,326,332,365,341,1893,248,283,255,213,162,159,187,154,126,106,554,100,85,77,72,42,178 +"2021","North West Leicestershire","E07000134",104705,5454,1052,1031,1137,1125,1109,5872,1152,1153,1135,1218,1214,7215,1225,1254,1173,1220,1186,1157,4281,1178,1191,952,960,5788,1006,1135,1246,1208,1193,12986,1140,1166,1284,1291,1372,1435,1322,1346,1331,1299,19969,1254,1314,1299,1325,1307,1369,1303,1218,1160,1239,1247,1312,1441,1522,1659,22139,1645,1564,1589,1631,1642,1560,1558,1557,1460,1491,1395,1303,1313,1238,1193,11713,1122,1101,1162,1111,1148,1140,1184,1167,1260,1318,7011,979,1035,908,796,637,585,616,535,479,441,2277,377,358,282,249,216,795,53069,2620,498,484,556,537,545,2911,563,575,586,600,587,3479,606,606,570,596,559,542,2091,561,594,453,483,3020,544,610,650,621,595,6615,537,599,650,651,699,746,666,687,702,678,10202,646,642,680,712,658,724,651,631,600,614,627,662,734,774,847,11087,847,774,788,797,840,789,766,771,737,756,702,637,647,632,604,5918,550,540,590,571,562,563,626,594,663,659,3689,517,519,480,413,323,308,327,286,252,264,1437,222,210,178,147,131,549,51636,2834,554,547,581,588,564,2961,589,578,549,618,627,3736,619,648,603,624,627,615,2190,617,597,499,477,2768,462,525,596,587,598,6371,603,567,634,640,673,689,656,659,629,621,9767,608,672,619,613,649,645,652,587,560,625,620,650,707,748,812,11052,798,790,801,834,802,771,792,786,723,735,693,666,666,606,589,5795,572,561,572,540,586,577,558,573,597,659,3322,462,516,428,383,314,277,289,249,227,177,840,155,148,104,102,85,246 +"2021","Oadby and Wigston","E07000135",57754,2867,493,535,561,612,666,3507,690,686,676,716,739,4168,700,713,701,704,662,688,3539,692,644,1028,1175,2927,583,510,617,586,631,6653,590,670,623,657,628,680,697,684,709,715,10490,752,732,676,691,694,792,757,670,631,646,680,676,715,684,694,11298,819,712,807,773,750,788,773,797,784,773,757,726,720,706,613,6039,605,593,615,612,563,572,601,639,625,614,4231,475,549,515,451,392,354,379,387,378,351,2035,319,293,265,239,187,732,29762,1365,232,270,260,289,314,1711,356,324,343,349,339,2081,333,370,361,334,337,346,1723,326,308,514,575,1424,274,238,299,295,318,3405,283,316,313,330,307,363,371,361,391,370,5438,370,412,357,356,360,426,385,362,321,332,347,349,369,330,362,5810,402,379,414,397,371,431,402,431,410,404,382,362,378,331,316,3169,295,307,306,318,299,310,317,338,337,342,2352,250,290,295,250,215,188,207,235,225,197,1284,190,180,157,144,119,494,27992,1502,261,265,301,323,352,1796,334,362,333,367,400,2087,367,343,340,370,325,342,1816,366,336,514,600,1503,309,272,318,291,313,3248,307,354,310,327,321,317,326,323,318,345,5052,382,320,319,335,334,366,372,308,310,314,333,327,346,354,332,5488,417,333,393,376,379,357,371,366,374,369,375,364,342,375,297,2870,310,286,309,294,264,262,284,301,288,272,1879,225,259,220,201,177,166,172,152,153,154,751,129,113,108,95,68,238 +"2021","Boston","E07000136",70509,3648,644,743,686,832,743,4162,793,821,819,842,887,5112,845,908,902,860,783,814,2945,832,739,739,635,3614,624,683,770,743,794,9044,793,792,854,888,913,943,922,979,992,968,13495,972,956,949,888,919,879,867,866,826,787,878,865,884,957,1002,14081,963,947,967,980,985,1008,1046,979,929,945,955,846,829,889,813,7637,807,757,771,723,763,733,774,742,764,803,4835,643,647,586,531,469,421,460,427,351,300,1936,325,268,218,220,185,720,35809,1723,294,350,309,404,366,2035,380,398,404,414,439,2520,407,425,457,405,392,434,1413,402,354,342,315,1753,313,320,375,358,387,4580,412,389,419,457,469,478,460,473,529,494,6857,506,483,481,443,442,454,442,436,410,408,480,473,440,465,494,7231,533,503,486,504,515,508,520,496,483,496,482,416,417,461,411,3927,428,374,405,368,382,382,405,376,388,419,2595,329,338,324,278,222,223,274,240,202,165,1175,192,150,131,122,117,463,34700,1925,350,393,377,428,377,2127,413,423,415,428,448,2592,438,483,445,455,391,380,1532,430,385,397,320,1861,311,363,395,385,407,4464,381,403,435,431,444,465,462,506,463,474,6638,466,473,468,445,477,425,425,430,416,379,398,392,444,492,508,6850,430,444,481,476,470,500,526,483,446,449,473,430,412,428,402,3710,379,383,366,355,381,351,369,366,376,384,2240,314,309,262,253,247,198,186,187,149,135,761,133,118,87,98,68,257 +"2021","East Lindsey","E07000137",142301,5637,1047,1092,1123,1195,1180,6528,1259,1252,1291,1325,1401,8715,1473,1500,1428,1482,1388,1444,4922,1341,1388,1211,982,5925,1018,1151,1246,1289,1221,13431,1274,1334,1312,1325,1337,1386,1333,1406,1403,1321,20368,1294,1237,1244,1237,1278,1359,1286,1283,1176,1229,1262,1418,1483,1737,1845,33444,1997,1935,2112,2035,2153,2293,2288,2365,2383,2382,2296,2292,2300,2317,2296,23357,2251,2195,2215,2287,2166,2294,2396,2321,2573,2659,14986,2076,2086,1923,1654,1461,1320,1241,1164,1077,984,4988,833,703,600,576,503,1773,72774,2715,493,509,551,577,585,3206,598,630,618,681,679,4341,729,757,704,705,715,731,2331,674,671,552,434,2835,462,535,624,618,596,6740,611,622,643,665,683,690,688,749,715,674,10671,717,636,652,627,639,716,673,659,636,630,650,740,792,922,982,17328,1042,1003,1128,1041,1135,1198,1184,1220,1236,1235,1183,1152,1210,1169,1192,11994,1214,1104,1129,1153,1114,1149,1285,1223,1288,1335,7716,1016,1064,980,820,760,687,672,643,556,518,2897,432,398,320,337,292,1118,69527,2922,554,583,572,618,595,3322,661,622,673,644,722,4374,744,743,724,777,673,713,2591,667,717,659,548,3090,556,616,622,671,625,6691,663,712,669,660,654,696,645,657,688,647,9697,577,601,592,610,639,643,613,624,540,599,612,678,691,815,863,16116,955,932,984,994,1018,1095,1104,1145,1147,1147,1113,1140,1090,1148,1104,11363,1037,1091,1086,1134,1052,1145,1111,1098,1285,1324,7270,1060,1022,943,834,701,633,569,521,521,466,2091,401,305,280,239,211,655 +"2021","Lincoln","E07000138",103812,5120,1035,969,1046,1026,1044,5391,1138,1045,1036,1124,1048,6233,1053,1093,1136,1002,988,961,7874,972,1022,2062,3818,13598,4283,3582,2313,1792,1628,15606,1567,1665,1631,1557,1523,1562,1545,1532,1575,1449,17973,1409,1366,1298,1254,1203,1293,1261,1188,1079,1010,1070,1092,1083,1158,1209,17006,1205,1140,1215,1214,1192,1223,1173,1166,1281,1176,1157,991,1018,910,945,8123,819,828,832,807,838,770,798,791,819,821,4838,620,638,640,503,408,448,446,386,414,335,2050,353,266,271,207,199,754,52408,2458,509,458,499,513,479,2627,564,511,528,553,471,2951,514,523,516,461,481,456,4231,480,462,1116,2173,7066,2299,1930,1172,896,769,7624,753,815,789,772,756,796,748,703,787,705,8778,663,670,633,601,607,631,655,591,538,487,525,495,533,573,576,8501,588,558,611,607,586,628,586,575,675,597,573,465,532,477,443,4163,423,431,423,409,434,396,415,388,427,417,2686,321,369,342,269,228,230,242,217,272,196,1323,220,159,168,129,121,526,51404,2662,526,511,547,513,565,2764,574,534,508,571,577,3282,539,570,620,541,507,505,3643,492,560,946,1645,6532,1984,1652,1141,896,859,7982,814,850,842,785,767,766,797,829,788,744,9195,746,696,665,653,596,662,606,597,541,523,545,597,550,585,633,8505,617,582,604,607,606,595,587,591,606,579,584,526,486,433,502,3960,396,397,409,398,404,374,383,403,392,404,2152,299,269,298,234,180,218,204,169,142,139,727,133,107,103,78,78,228 +"2021","North Kesteven","E07000139",118067,5530,984,1059,1063,1174,1250,6613,1311,1288,1247,1349,1418,7916,1347,1337,1388,1291,1278,1275,4626,1251,1354,1110,911,5497,941,993,1152,1182,1229,13696,1282,1275,1319,1329,1410,1480,1370,1430,1469,1332,20937,1350,1448,1383,1389,1354,1357,1440,1349,1205,1191,1297,1364,1444,1592,1774,25643,1754,1782,1807,1825,1815,1790,1861,1837,1827,1739,1679,1539,1519,1430,1439,14290,1273,1394,1347,1294,1357,1364,1517,1409,1729,1606,9915,1203,1355,1198,1072,996,916,922,845,758,650,3404,592,499,475,345,326,1167,60220,2700,476,552,525,568,579,3269,648,628,613,709,671,3993,685,662,696,667,650,633,2181,600,664,529,388,2550,435,454,548,547,566,6918,622,587,688,652,725,779,674,744,746,701,10773,717,717,693,715,715,697,706,698,631,630,685,683,759,811,916,13126,936,961,915,938,926,903,967,905,908,872,870,785,778,718,744,7395,629,684,681,694,686,720,809,778,901,813,5268,607,709,645,578,531,489,513,449,375,372,2047,343,262,277,208,189,768,57847,2830,508,507,538,606,671,3344,663,660,634,640,747,3923,662,675,692,624,628,642,2445,651,690,581,523,2947,506,539,604,635,663,6778,660,688,631,677,685,701,696,686,723,631,10164,633,731,690,674,639,660,734,651,574,561,612,681,685,781,858,12517,818,821,892,887,889,887,894,932,919,867,809,754,741,712,695,6895,644,710,666,600,671,644,708,631,828,793,4647,596,646,553,494,465,427,409,396,383,278,1357,249,237,198,137,137,399 +"2021","South Holland","E07000140",95117,4731,897,930,947,976,981,5140,1010,995,1009,1077,1049,6250,1018,1075,1051,1007,1041,1058,3487,918,945,850,774,4547,744,858,951,972,1022,11088,990,1079,1043,1115,1019,1159,1195,1180,1221,1087,16907,1162,1105,1057,1129,1060,1082,1101,1091,988,1076,1089,1162,1200,1267,1338,20270,1405,1343,1385,1357,1442,1460,1482,1432,1418,1369,1323,1200,1233,1210,1211,11844,1109,1134,1136,1096,1140,1122,1160,1238,1365,1344,7779,951,1018,911,904,762,681,719,637,623,573,3074,513,421,367,351,304,1118,48368,2231,407,462,449,456,457,2577,494,510,514,523,536,3005,480,527,494,453,525,526,1698,468,443,391,396,2217,347,413,472,485,500,5571,515,527,530,546,529,589,599,588,623,525,8664,567,560,554,584,536,558,536,555,497,558,581,604,638,636,700,10268,684,690,718,688,730,749,750,735,701,708,665,612,619,598,621,6103,579,565,579,588,602,561,604,637,708,680,4172,497,566,451,476,426,386,375,356,336,303,1862,295,243,201,204,187,732,46749,2500,490,468,498,520,524,2563,516,485,495,554,513,3245,538,548,557,554,516,532,1789,450,502,459,378,2330,397,445,479,487,522,5517,475,552,513,569,490,570,596,592,598,562,8243,595,545,503,545,524,524,565,536,491,518,508,558,562,631,638,10002,721,653,667,669,712,711,732,697,717,661,658,588,614,612,590,5741,530,569,557,508,538,561,556,601,657,664,3607,454,452,460,428,336,295,344,281,287,270,1212,218,178,166,147,117,386 +"2021","South Kesteven","E07000141",143400,6751,1264,1279,1301,1438,1469,8131,1631,1634,1521,1634,1711,10508,1800,1726,1763,1846,1717,1656,5712,1622,1622,1351,1117,6110,983,1109,1295,1340,1383,15571,1476,1449,1544,1506,1541,1576,1612,1639,1618,1610,26103,1600,1590,1624,1660,1673,1871,1768,1643,1584,1579,1705,1764,1840,1997,2205,31392,2189,2242,2167,2117,2140,2213,2309,2200,2133,2045,2122,1922,1958,1877,1758,17698,1679,1742,1722,1717,1729,1690,1722,1751,1985,1961,11258,1524,1494,1418,1268,1150,961,976,897,810,760,4166,702,589,491,432,393,1559,73891,3272,610,626,632,697,707,3958,797,803,706,822,830,5248,908,856,870,918,878,818,2790,790,797,676,527,3023,462,551,650,691,669,8034,751,730,790,762,821,857,858,816,807,842,13673,885,837,869,866,851,999,923,866,822,831,845,939,950,1053,1137,16088,1142,1181,1092,1060,1094,1158,1171,1109,1049,1068,1087,1004,1012,980,881,9251,859,887,921,898,903,877,881,942,1060,1023,5987,766,821,737,655,634,516,504,488,455,411,2567,407,346,290,242,247,1035,69509,3479,654,653,669,741,762,4173,834,831,815,812,881,5260,892,870,893,928,839,838,2922,832,825,675,590,3087,521,558,645,649,714,7537,725,719,754,744,720,719,754,823,811,768,12430,715,753,755,794,822,872,845,777,762,748,860,825,890,944,1068,15304,1047,1061,1075,1057,1046,1055,1138,1091,1084,977,1035,918,946,897,877,8447,820,855,801,819,826,813,841,809,925,938,5271,758,673,681,613,516,445,472,409,355,349,1599,295,243,201,190,146,524 +"2021","West Lindsey","E07000142",95146,4400,780,858,869,964,929,5273,1006,1041,1062,1052,1112,6361,1076,1053,1052,1077,1050,1053,3616,1082,1009,829,696,4089,683,767,813,898,928,9887,944,909,925,1000,1020,1064,1030,998,1012,985,15864,1011,1063,986,1061,1025,1067,1016,1034,936,932,1018,1097,1136,1197,1285,21669,1338,1417,1443,1436,1549,1526,1540,1463,1496,1535,1497,1420,1372,1337,1300,12991,1305,1299,1257,1255,1207,1239,1291,1319,1346,1473,8241,1066,1136,1076,991,780,723,661,647,600,561,2755,513,454,345,289,236,918,48462,2074,336,394,424,461,459,2604,508,509,526,522,539,3079,529,510,484,525,520,511,1676,501,474,397,304,1963,313,363,386,443,458,5118,473,470,456,549,528,521,533,554,532,502,8233,537,541,528,566,533,562,540,528,455,502,520,561,568,639,653,11120,702,726,755,716,784,788,816,750,761,796,723,737,699,706,661,6662,686,675,658,632,602,639,655,675,684,756,4302,560,571,555,513,404,368,353,333,326,319,1631,273,247,194,171,141,605,46684,2326,444,464,445,503,470,2669,498,532,536,530,573,3282,547,543,568,552,530,542,1940,581,535,432,392,2126,370,404,427,455,470,4769,471,439,469,451,492,543,497,444,480,483,7631,474,522,458,495,492,505,476,506,481,430,498,536,568,558,632,10549,636,691,688,720,765,738,724,713,735,739,774,683,673,631,639,6329,619,624,599,623,605,600,636,644,662,717,3939,506,565,521,478,376,355,308,314,274,242,1124,240,207,151,118,95,313 +"2021","Ashfield","E07000170",126311,6780,1240,1353,1303,1441,1443,7703,1489,1462,1555,1589,1608,8974,1617,1509,1533,1446,1459,1410,5137,1407,1337,1268,1125,6451,1131,1180,1322,1340,1478,16482,1455,1473,1599,1624,1701,1713,1794,1736,1765,1622,23511,1718,1597,1557,1557,1550,1638,1573,1442,1437,1387,1448,1417,1625,1684,1881,26382,1920,1855,1942,1896,1855,1893,1948,1810,1886,1712,1664,1721,1480,1399,1401,13320,1355,1292,1318,1325,1327,1288,1329,1354,1369,1363,8727,1089,1172,1105,1074,860,758,796,705,620,548,2844,490,395,380,308,267,1004,64440,3266,612,641,639,669,705,3702,705,728,762,761,746,4409,803,757,771,721,700,657,2513,660,652,624,577,3173,528,570,655,673,747,8681,781,770,875,842,886,903,962,890,896,876,12015,848,841,798,774,797,845,816,733,740,700,721,726,820,853,1003,13265,989,962,987,937,933,946,1000,899,921,848,845,882,736,694,686,6882,707,658,700,685,663,656,681,705,697,730,4760,597,615,581,568,477,412,436,400,349,325,1774,284,223,230,188,170,679,61871,3514,628,712,664,772,738,4001,784,734,793,828,862,4565,814,752,762,725,759,753,2624,747,685,644,548,3278,603,610,667,667,731,7801,674,703,724,782,815,810,832,846,869,746,11496,870,756,759,783,753,793,757,709,697,687,727,691,805,831,878,13117,931,893,955,959,922,947,948,911,965,864,819,839,744,705,715,6438,648,634,618,640,664,632,648,649,672,633,3967,492,557,524,506,383,346,360,305,271,223,1070,206,172,150,120,97,325 +"2021","Bassetlaw","E07000171",117809,5967,1116,1168,1142,1235,1306,6562,1326,1262,1247,1329,1398,7908,1389,1304,1324,1328,1273,1290,4482,1256,1242,1087,897,5730,933,1009,1219,1244,1325,14171,1293,1398,1393,1384,1484,1488,1413,1438,1438,1442,20900,1396,1371,1395,1332,1313,1440,1362,1311,1240,1290,1371,1346,1481,1573,1679,26004,1758,1670,1859,1823,1811,1856,1948,1834,1813,1776,1692,1585,1571,1558,1450,14081,1378,1409,1396,1343,1288,1324,1405,1471,1589,1478,8879,1137,1268,1110,1016,842,790,756,717,651,592,3125,493,481,425,303,308,1115,59396,2952,587,557,578,596,634,3208,612,642,587,642,725,3823,666,653,642,639,625,598,2178,584,613,533,448,2739,418,452,607,613,649,7030,651,673,700,692,750,727,710,700,731,696,10573,674,723,699,657,676,713,673,653,631,663,666,711,752,816,866,13048,879,845,924,920,918,961,958,922,893,882,836,814,812,765,719,7218,701,691,704,696,672,655,767,739,852,741,4737,603,645,573,514,461,423,419,393,368,338,1890,288,266,258,178,174,726,58413,3015,529,611,564,639,672,3354,714,620,660,687,673,4085,723,651,682,689,648,692,2304,672,629,554,449,2991,515,557,612,631,676,7141,642,725,693,692,734,761,703,738,707,746,10327,722,648,696,675,637,727,689,658,609,627,705,635,729,757,813,12956,879,825,935,903,893,895,990,912,920,894,856,771,759,793,731,6863,677,718,692,647,616,669,638,732,737,737,4142,534,623,537,502,381,367,337,324,283,254,1235,205,215,167,125,134,389 +"2021","Broxtowe","E07000172",110938,5292,957,1021,1071,1066,1177,6049,1171,1157,1165,1263,1293,7059,1228,1254,1177,1192,1147,1061,4602,1051,1004,1207,1340,6367,1333,1245,1275,1244,1270,14554,1336,1422,1471,1390,1461,1567,1475,1462,1494,1476,20231,1427,1485,1456,1339,1304,1355,1333,1297,1170,1312,1255,1307,1337,1408,1446,22559,1604,1475,1556,1644,1572,1626,1614,1610,1567,1459,1456,1412,1341,1333,1290,12779,1215,1214,1224,1205,1183,1240,1284,1269,1478,1467,8258,1030,1168,998,922,778,757,725,666,639,575,3188,472,467,410,373,327,1139,56544,2582,487,472,511,519,593,2955,597,541,568,633,616,3391,592,592,588,551,563,505,2342,531,513,629,669,3110,656,595,598,603,658,7365,671,723,747,690,734,795,760,733,789,723,10285,694,773,765,696,642,721,667,654,578,698,628,651,669,715,734,11460,781,737,785,812,759,824,843,821,818,786,728,737,683,691,655,6599,588,625,631,609,615,642,702,639,794,754,4460,557,626,510,474,438,388,419,361,350,337,1995,285,276,232,220,201,781,54394,2710,470,549,560,547,584,3094,574,616,597,630,677,3668,636,662,589,641,584,556,2260,520,491,578,671,3257,677,650,677,641,612,7189,665,699,724,700,727,772,715,729,705,753,9946,733,712,691,643,662,634,666,643,592,614,627,656,668,693,712,11099,823,738,771,832,813,802,771,789,749,673,728,675,658,642,635,6180,627,589,593,596,568,598,582,630,684,713,3798,473,542,488,448,340,369,306,305,289,238,1193,187,191,178,153,126,358 +"2021","Gedling","E07000173",117263,5981,1141,1143,1195,1242,1260,6725,1318,1333,1314,1416,1344,8100,1390,1381,1347,1361,1345,1276,4458,1283,1244,1030,901,5296,832,988,1049,1175,1252,14444,1249,1359,1350,1420,1488,1514,1491,1524,1546,1503,22295,1489,1465,1531,1518,1479,1516,1547,1467,1398,1383,1343,1409,1529,1588,1633,24679,1748,1653,1847,1695,1763,1720,1803,1762,1695,1634,1643,1524,1445,1398,1349,13533,1339,1313,1293,1310,1343,1258,1333,1398,1470,1476,8469,1030,1147,989,961,798,720,747,746,701,630,3283,561,507,439,346,313,1117,60381,2917,590,558,569,578,622,3315,627,675,666,709,638,3874,648,659,648,645,628,646,2116,598,611,473,434,2623,384,481,521,587,650,7632,646,714,659,754,790,826,815,815,800,813,11486,756,801,796,796,766,789,789,741,730,701,671,731,795,804,820,12677,885,868,961,828,927,860,929,930,862,850,822,828,722,723,682,7008,695,694,687,657,692,628,691,728,768,768,4673,542,633,550,523,424,392,437,409,394,369,2060,345,303,254,210,187,761,56882,3064,551,585,626,664,638,3410,691,658,648,707,706,4226,742,722,699,716,717,630,2342,685,633,557,467,2673,448,507,528,588,602,6812,603,645,691,666,698,688,676,709,746,690,10809,733,664,735,722,713,727,758,726,668,682,672,678,734,784,813,12002,863,785,886,867,836,860,874,832,833,784,821,696,723,675,667,6525,644,619,606,653,651,630,642,670,702,708,3796,488,514,439,438,374,328,310,337,307,261,1223,216,204,185,136,126,356 +"2021","Mansfield","E07000174",110484,5959,1103,1170,1200,1216,1270,6589,1257,1266,1342,1334,1390,7765,1402,1252,1388,1308,1212,1203,4149,1187,1110,996,856,5506,915,994,1103,1235,1259,15102,1296,1345,1509,1458,1579,1588,1613,1523,1612,1579,20978,1567,1606,1521,1457,1505,1433,1429,1312,1145,1237,1234,1285,1304,1434,1509,23135,1528,1542,1580,1599,1699,1670,1631,1635,1587,1636,1512,1454,1410,1371,1281,11623,1244,1230,1188,1133,1112,1153,1148,1135,1148,1132,7103,945,1032,883,800,662,603,610,566,548,454,2575,438,392,307,279,245,914,56085,2918,545,548,571,612,642,3227,639,594,638,658,698,3844,757,628,665,595,584,615,1983,573,526,465,419,2766,427,498,560,617,664,7657,643,655,822,703,793,803,796,791,837,814,10483,779,791,739,739,775,728,701,659,562,625,644,673,663,695,710,11730,762,764,810,810,868,828,811,877,798,847,739,769,710,685,652,5930,640,641,589,568,565,563,584,610,572,598,3915,504,557,466,441,352,348,344,338,306,259,1632,250,238,190,175,156,623,54399,3041,558,622,629,604,628,3362,618,672,704,676,692,3921,645,624,723,713,628,588,2166,614,584,531,437,2740,488,496,543,618,595,7445,653,690,687,755,786,785,817,732,775,765,10495,788,815,782,718,730,705,728,653,583,612,590,612,641,739,799,11405,766,778,770,789,831,842,820,758,789,789,773,685,700,686,629,5693,604,589,599,565,547,590,564,525,576,534,3188,441,475,417,359,310,255,266,228,242,195,943,188,154,117,104,89,291 +"2021","Newark and Sherwood","E07000175",122951,6063,1201,1157,1172,1242,1291,6680,1288,1277,1296,1389,1430,8245,1378,1423,1358,1374,1387,1325,4946,1342,1332,1190,1082,6096,1189,1113,1244,1225,1325,14736,1380,1381,1407,1539,1523,1512,1533,1458,1551,1452,21863,1478,1464,1439,1425,1366,1469,1469,1397,1316,1279,1406,1406,1500,1685,1764,26660,1782,1769,1874,1898,1869,1884,1863,1903,1880,1739,1733,1676,1657,1584,1549,14914,1500,1451,1477,1383,1417,1433,1487,1449,1703,1614,9389,1220,1281,1183,1063,906,822,830,784,681,619,3359,540,455,435,383,322,1224,62451,2963,580,578,575,590,640,3301,664,631,661,638,707,4088,688,679,700,681,679,661,2438,675,634,565,564,2980,586,538,595,604,657,7356,663,678,678,781,774,747,793,725,777,740,11012,771,744,720,709,702,718,739,685,672,629,703,704,781,849,886,13526,905,907,915,929,952,961,991,954,920,885,894,852,844,813,804,7660,753,770,724,733,717,718,750,778,902,815,5044,641,687,610,573,490,424,474,446,380,319,2083,316,276,254,223,190,824,60500,3100,621,579,597,652,651,3379,624,646,635,751,723,4157,690,744,658,693,708,664,2508,667,698,625,518,3116,603,575,649,621,668,7380,717,703,729,758,749,765,740,733,774,712,10851,707,720,719,716,664,751,730,712,644,650,703,702,719,836,878,13134,877,862,959,969,917,923,872,949,960,854,839,824,813,771,745,7254,747,681,753,650,700,715,737,671,801,799,4345,579,594,573,490,416,398,356,338,301,300,1276,224,179,181,160,132,400 +"2021","Rushcliffe","E07000176",119074,5848,1040,1165,1157,1258,1228,6862,1345,1300,1396,1381,1440,8640,1464,1475,1469,1480,1434,1318,5076,1381,1308,1229,1158,6309,1329,1273,1221,1258,1228,12912,1243,1181,1198,1217,1284,1363,1267,1317,1426,1416,23124,1449,1436,1478,1477,1524,1627,1530,1569,1498,1544,1444,1594,1596,1632,1726,24563,1722,1713,1805,1710,1735,1762,1773,1773,1633,1644,1604,1493,1484,1436,1276,13318,1306,1264,1279,1290,1311,1272,1343,1313,1468,1472,8691,1135,1195,1088,971,790,760,766,694,664,628,3731,553,516,469,425,353,1415,60736,2830,497,579,558,613,583,3282,662,602,691,657,670,4220,702,714,742,732,725,605,2562,647,639,634,642,3114,671,612,623,617,591,6586,604,628,568,606,654,709,650,688,743,736,11821,740,797,775,754,777,809,807,808,779,796,759,765,813,808,834,12366,865,890,903,868,876,921,899,881,813,829,790,757,726,736,612,6866,689,650,674,678,648,632,687,696,772,740,4728,635,639,574,517,425,409,433,382,382,332,2361,326,306,279,265,188,997,58338,3018,543,586,599,645,645,3580,683,698,705,724,770,4420,762,761,727,748,709,713,2514,734,669,595,516,3195,658,661,598,641,637,6326,639,553,630,611,630,654,617,629,683,680,11303,709,639,703,723,747,818,723,761,719,748,685,829,783,824,892,12197,857,823,902,842,859,841,874,892,820,815,814,736,758,700,664,6452,617,614,605,612,663,640,656,617,696,732,3963,500,556,514,454,365,351,333,312,282,296,1370,227,210,190,160,165,418 +"2021","Herefordshire, County of","E06000019",187025,8428,1516,1653,1701,1760,1798,9508,1802,1793,1909,2020,1984,11964,2120,1993,1994,2016,1968,1873,7190,1998,1946,1776,1470,8174,1403,1544,1652,1833,1742,20186,1836,1884,1866,1966,2100,2118,2104,2143,2188,1981,31281,2104,1976,2068,2006,2097,2138,2070,1880,1858,1858,1959,2188,2187,2292,2600,41824,2577,2629,2753,2796,2866,2997,2890,2885,2871,2937,2821,2724,2655,2785,2638,25493,2573,2485,2554,2483,2385,2434,2551,2582,2736,2710,16431,2079,2213,2065,1786,1592,1470,1434,1385,1222,1185,6546,1022,968,855,693,612,2396,95177,4089,750,786,830,838,885,4515,820,835,912,992,956,5717,1044,959,960,962,932,860,3476,962,959,866,689,3899,652,717,774,924,832,10202,874,930,936,1018,1068,1082,1089,1114,1112,979,15955,1120,977,1060,1023,1038,1092,1081,942,964,918,978,1121,1098,1163,1380,21541,1341,1356,1447,1464,1427,1581,1512,1520,1473,1451,1461,1319,1338,1464,1387,13094,1306,1319,1311,1291,1209,1228,1312,1306,1402,1410,8697,1064,1190,1060,909,839,775,770,767,661,662,3992,573,583,507,398,351,1580,91848,4339,766,867,871,922,913,4993,982,958,997,1028,1028,6247,1076,1034,1034,1054,1036,1013,3714,1036,987,910,781,4275,751,827,878,909,910,9984,962,954,930,948,1032,1036,1015,1029,1076,1002,15326,984,999,1008,983,1059,1046,989,938,894,940,981,1067,1089,1129,1220,20283,1236,1273,1306,1332,1439,1416,1378,1365,1398,1486,1360,1405,1317,1321,1251,12399,1267,1166,1243,1192,1176,1206,1239,1276,1334,1300,7734,1015,1023,1005,877,753,695,664,618,561,523,2554,449,385,348,295,261,816 +"2021","Telford and Wrekin","E06000020",185542,10563,1986,2104,2142,2114,2217,11869,2275,2211,2423,2418,2542,14436,2429,2501,2470,2402,2340,2294,8599,2313,2214,2003,2069,10972,2089,2198,2293,2178,2214,24530,2250,2257,2410,2378,2514,2581,2493,2604,2553,2490,35392,2477,2471,2445,2414,2299,2383,2347,2271,2053,2150,2141,2330,2372,2507,2732,36463,2739,2721,2685,2676,2655,2701,2592,2592,2351,2364,2267,2172,2137,1977,1834,18313,1853,1908,1818,1811,1820,1748,1858,1845,1803,1849,10827,1353,1461,1379,1249,1096,965,944,892,804,684,3578,626,511,496,404,343,1198,94206,5126,950,1005,1059,1028,1084,5770,1091,1098,1172,1161,1248,7031,1208,1235,1168,1163,1142,1115,4240,1149,1061,979,1051,5417,994,1057,1149,1088,1129,12668,1124,1176,1236,1228,1271,1296,1299,1388,1343,1307,17918,1225,1233,1250,1256,1124,1263,1212,1180,1019,1109,1037,1143,1212,1273,1382,18507,1370,1401,1351,1363,1316,1368,1347,1286,1204,1171,1158,1151,1091,994,936,9470,939,988,936,911,911,921,929,972,957,1006,5829,733,747,713,673,589,523,522,513,447,369,2230,381,296,288,255,212,798,91336,5437,1036,1099,1083,1086,1133,6099,1184,1113,1251,1257,1294,7405,1221,1266,1302,1239,1198,1179,4359,1164,1153,1024,1018,5555,1095,1141,1144,1090,1085,11862,1126,1081,1174,1150,1243,1285,1194,1216,1210,1183,17474,1252,1238,1195,1158,1175,1120,1135,1091,1034,1041,1104,1187,1160,1234,1350,17956,1369,1320,1334,1313,1339,1333,1245,1306,1147,1193,1109,1021,1046,983,898,8843,914,920,882,900,909,827,929,873,846,843,4998,620,714,666,576,507,442,422,379,357,315,1348,245,215,208,149,131,400 +"2021","Stoke-on-Trent","E06000021",258363,15625,3036,3157,3186,3045,3201,16987,3273,3316,3435,3461,3502,19857,3487,3360,3376,3479,3131,3024,12092,3161,2855,2915,3161,16946,3315,3476,3358,3395,3402,36218,3179,3356,3426,3549,3633,3848,3829,3917,3788,3693,48703,3673,3570,3512,3465,3396,3480,3233,3209,2789,2760,2895,3019,3046,3261,3395,47673,3483,3416,3450,3309,3278,3411,3360,3152,3186,3232,3086,2870,2903,2727,2810,24255,2591,2568,2502,2373,2298,2205,2333,2416,2525,2444,14677,1823,1953,1709,1807,1383,1322,1269,1213,1114,1084,5330,882,795,681,590,535,1847,129894,7725,1524,1598,1561,1499,1543,8373,1562,1660,1706,1694,1751,9785,1754,1623,1712,1717,1519,1460,5730,1499,1428,1322,1481,8207,1544,1700,1645,1650,1668,18478,1643,1701,1771,1796,1788,2007,1973,1989,1916,1894,24163,1836,1832,1746,1727,1678,1749,1626,1579,1379,1319,1392,1454,1552,1592,1702,23643,1770,1666,1637,1643,1590,1711,1738,1529,1542,1619,1561,1425,1420,1373,1419,12327,1288,1267,1301,1145,1168,1150,1184,1266,1274,1284,8015,914,1048,872,987,735,736,709,689,638,687,3448,520,492,441,369,339,1287,128469,7900,1512,1559,1625,1546,1658,8614,1711,1656,1729,1767,1751,10072,1733,1737,1664,1762,1612,1564,6362,1662,1427,1593,1680,8739,1771,1776,1713,1745,1734,17740,1536,1655,1655,1753,1845,1841,1856,1928,1872,1799,24540,1837,1738,1766,1738,1718,1731,1607,1630,1410,1441,1503,1565,1494,1669,1693,24030,1713,1750,1813,1666,1688,1700,1622,1623,1644,1613,1525,1445,1483,1354,1391,11928,1303,1301,1201,1228,1130,1055,1149,1150,1251,1160,6662,909,905,837,820,648,586,560,524,476,397,1882,362,303,240,221,196,560 +"2021","Shropshire","E06000051",323619,14423,2656,2747,2882,2954,3184,16249,3207,3156,3173,3375,3338,20689,3395,3527,3414,3513,3398,3442,13477,3589,3711,3428,2749,15126,2661,2923,3022,3238,3282,34825,3185,3435,3414,3416,3422,3669,3599,3531,3599,3555,53927,3517,3594,3498,3314,3342,3546,3498,3379,3122,3139,3498,3695,3846,4173,4766,72812,4729,4569,4872,4847,5293,5196,5147,5085,5092,5018,4972,4577,4675,4492,4248,42765,4167,4214,4365,4019,4052,4097,4246,4402,4704,4499,28500,3722,3815,3605,3181,2689,2526,2538,2312,2154,1958,10826,1702,1502,1301,1246,1052,4023,163927,7020,1286,1312,1419,1472,1531,7883,1511,1535,1536,1582,1719,10062,1634,1674,1645,1798,1655,1656,6407,1777,1817,1544,1269,7007,1193,1325,1445,1454,1590,17096,1478,1605,1644,1700,1693,1843,1827,1756,1743,1807,27353,1741,1885,1699,1612,1740,1754,1797,1747,1579,1573,1787,1964,1987,2122,2366,37152,2445,2314,2528,2520,2709,2724,2615,2597,2534,2488,2486,2319,2398,2341,2134,21992,2091,2163,2187,2113,2077,2106,2205,2215,2489,2346,15300,1945,2037,1860,1686,1445,1373,1368,1252,1259,1075,6655,960,826,750,760,621,2738,159692,7403,1370,1435,1463,1482,1653,8366,1696,1621,1637,1793,1619,10627,1761,1853,1769,1715,1743,1786,7070,1812,1894,1884,1480,8119,1468,1598,1577,1784,1692,17729,1707,1830,1770,1716,1729,1826,1772,1775,1856,1748,26574,1776,1709,1799,1702,1602,1792,1701,1632,1543,1566,1711,1731,1859,2051,2400,35660,2284,2255,2344,2327,2584,2472,2532,2488,2558,2530,2486,2258,2277,2151,2114,20773,2076,2051,2178,1906,1975,1991,2041,2187,2215,2153,13200,1777,1778,1745,1495,1244,1153,1170,1060,895,883,4171,742,676,551,486,431,1285 +"2021","Cannock Chase","E07000192",100529,5566,1095,1148,1096,1120,1107,5696,1059,1129,1127,1247,1134,6778,1165,1102,1151,1087,1176,1097,3997,1064,1118,930,885,5245,842,935,1109,1118,1241,13792,1245,1237,1374,1399,1453,1488,1384,1418,1448,1346,18524,1376,1267,1288,1294,1208,1313,1159,1183,951,1040,1091,1201,1249,1415,1489,21373,1483,1609,1609,1534,1558,1547,1526,1523,1477,1411,1297,1193,1302,1160,1144,10667,1094,1105,1116,1005,1002,992,1073,1053,1126,1101,6664,898,873,805,755,662,548,593,546,540,444,2227,370,309,294,235,217,802,51013,2722,563,564,529,535,531,2786,516,540,558,616,556,3372,572,533,564,559,599,545,1858,509,520,429,400,2614,410,452,554,571,627,7032,650,616,709,752,736,726,694,738,736,675,9361,718,607,647,684,608,694,579,575,491,527,535,588,689,688,731,10693,755,807,798,743,764,774,760,749,737,734,650,613,633,591,585,5528,560,551,550,532,545,502,566,531,612,579,3645,454,434,432,416,376,300,335,322,315,261,1402,193,184,178,151,136,560,49516,2844,532,584,567,585,576,2910,543,589,569,631,578,3406,593,569,587,528,577,552,2139,555,598,501,485,2631,432,483,555,547,614,6760,595,621,665,647,717,762,690,680,712,671,9163,658,660,641,610,600,619,580,608,460,513,556,613,560,727,758,10680,728,802,811,791,794,773,766,774,740,677,647,580,669,569,559,5139,534,554,566,473,457,490,507,522,514,522,3019,444,439,373,339,286,248,258,224,225,183,825,177,125,116,84,81,242 +"2021","East Staffordshire","E07000193",124022,6968,1341,1398,1333,1399,1497,7473,1457,1441,1479,1555,1541,9077,1547,1535,1577,1539,1433,1446,5305,1477,1436,1254,1138,6509,1123,1191,1303,1382,1510,16794,1505,1571,1584,1661,1777,1814,1725,1790,1756,1611,23578,1717,1648,1594,1597,1563,1673,1619,1541,1375,1386,1458,1498,1506,1680,1723,25234,1817,1684,1838,1841,1821,1796,1801,1672,1755,1657,1613,1575,1516,1472,1376,12393,1293,1251,1268,1235,1134,1205,1215,1190,1305,1297,7815,978,1029,1035,867,779,673,709,623,568,554,2876,435,439,348,332,293,1029,61987,3328,639,679,629,659,722,3641,681,686,754,744,776,4477,752,730,774,783,751,687,2513,720,669,603,521,3138,536,547,611,674,770,8201,715,768,786,817,853,856,856,891,820,839,11589,834,798,793,787,764,804,780,761,683,686,743,759,737,803,857,12674,897,830,934,926,928,923,905,887,889,804,804,779,775,716,677,6322,614,626,670,621,557,608,624,587,689,726,4271,528,561,506,496,421,369,402,360,305,323,1833,263,248,210,212,198,702,62035,3640,702,719,704,740,775,3832,776,755,725,811,765,4600,795,805,803,756,682,759,2792,757,767,651,617,3371,587,644,692,708,740,8593,790,803,798,844,924,958,869,899,936,772,11989,883,850,801,810,799,869,839,780,692,700,715,739,769,877,866,12560,920,854,904,915,893,873,896,785,866,853,809,796,741,756,699,6071,679,625,598,614,577,597,591,603,616,571,3544,450,468,529,371,358,304,307,263,263,231,1043,172,191,138,120,95,327 +"2021","Lichfield","E07000194",106435,5229,963,1048,987,1127,1104,5652,1103,1073,1099,1179,1198,6959,1180,1138,1182,1140,1158,1161,4211,1150,1157,995,909,5055,853,966,1025,1101,1110,12027,1139,1140,1227,1187,1274,1239,1227,1195,1203,1196,19044,1226,1218,1201,1158,1221,1271,1295,1228,1140,1150,1264,1310,1353,1441,1568,22729,1657,1596,1602,1611,1627,1612,1675,1556,1553,1526,1453,1319,1355,1308,1279,13112,1255,1188,1297,1228,1194,1225,1296,1352,1588,1489,9482,1209,1317,1211,1106,981,875,772,739,682,590,2935,527,410,389,340,262,1007,53995,2633,494,513,508,546,572,2803,544,527,553,584,595,3361,604,540,563,530,570,554,1955,549,559,463,384,2244,354,395,464,517,514,6105,565,577,627,616,648,602,599,622,614,635,9712,606,636,635,613,623,651,653,622,610,577,656,642,700,711,777,11451,822,807,790,822,831,809,853,785,788,750,702,685,720,658,629,6808,662,634,670,617,627,644,644,687,821,802,5122,668,715,626,582,526,480,419,420,355,331,1801,300,245,227,203,157,669,52440,2596,469,535,479,581,532,2849,559,546,546,595,603,3598,576,598,619,610,588,607,2256,601,598,532,525,2811,499,571,561,584,596,5922,574,563,600,571,626,637,628,573,589,561,9332,620,582,566,545,598,620,642,606,530,573,608,668,653,730,791,11278,835,789,812,789,796,803,822,771,765,776,751,634,635,650,650,6304,593,554,627,611,567,581,652,665,767,687,4360,541,602,585,524,455,395,353,319,327,259,1134,227,165,162,137,105,338 +"2021","Newcastle-under-Lyme","E07000195",123303,5795,1116,1128,1126,1186,1239,6509,1235,1296,1304,1288,1386,7814,1272,1255,1381,1314,1287,1305,6340,1404,1311,1518,2107,8578,1979,1947,1713,1505,1434,14417,1292,1350,1358,1384,1476,1501,1520,1517,1485,1534,21596,1499,1472,1374,1436,1396,1448,1463,1305,1350,1320,1366,1442,1479,1527,1719,25515,1768,1780,1780,1692,1827,1765,1754,1750,1731,1755,1723,1583,1570,1557,1480,14120,1385,1389,1422,1334,1311,1392,1371,1472,1568,1476,9096,1115,1247,1118,993,850,834,763,776,701,699,3523,589,527,452,408,362,1185,62843,2832,559,552,557,568,596,3176,610,612,629,653,672,3786,625,553,667,652,655,634,3167,646,614,788,1119,4325,1032,978,857,751,707,7341,646,673,706,708,740,769,812,761,751,775,10965,758,745,685,756,715,737,753,671,673,673,690,728,770,759,852,12873,873,902,908,861,946,897,869,878,900,880,852,818,803,749,737,7260,735,714,700,695,665,734,706,738,836,737,4897,572,659,576,525,457,465,415,432,394,402,2221,341,311,298,242,221,808,60460,2963,557,576,569,618,643,3333,625,684,675,635,714,4028,647,702,714,662,632,671,3173,758,697,730,988,4253,947,969,856,754,727,7076,646,677,652,676,736,732,708,756,734,759,10631,741,727,689,680,681,711,710,634,677,647,676,714,709,768,867,12642,895,878,872,831,881,868,885,872,831,875,871,765,767,808,743,6860,650,675,722,639,646,658,665,734,732,739,4199,543,588,542,468,393,369,348,344,307,297,1302,248,216,154,166,141,377 +"2021","South Staffordshire","E07000196",110476,4923,931,891,1001,1022,1078,5510,1089,1053,1086,1112,1170,6669,1097,1105,1134,1135,1115,1083,4145,1168,1120,953,904,5433,895,1017,1134,1215,1172,12062,1145,1161,1148,1217,1200,1270,1128,1219,1296,1278,18860,1260,1224,1278,1215,1239,1243,1331,1158,1033,1107,1179,1263,1343,1421,1566,25132,1625,1595,1679,1702,1812,1766,1794,1707,1708,1849,1696,1581,1559,1517,1542,14190,1367,1408,1372,1397,1303,1379,1428,1461,1579,1496,10069,1221,1318,1282,1176,985,910,909,836,766,666,3483,658,531,420,393,330,1151,55166,2388,440,432,524,492,500,2754,542,541,540,544,587,3294,539,524,590,546,576,519,1889,542,534,440,373,2399,378,448,512,516,545,5614,490,529,529,571,570,615,524,543,646,597,9258,607,605,601,584,605,619,637,544,513,536,608,634,657,697,811,12701,827,786,843,842,910,908,891,857,895,944,870,758,792,780,798,7298,727,686,707,725,677,693,718,769,829,767,5404,667,735,674,637,503,507,458,448,402,373,2167,375,303,262,238,206,783,55310,2535,491,459,477,530,578,2756,547,512,546,568,583,3375,558,581,544,589,539,564,2256,626,586,513,531,3034,517,569,622,699,627,6448,655,632,619,646,630,655,604,676,650,681,9602,653,619,677,631,634,624,694,614,520,571,571,629,686,724,755,12431,798,809,836,860,902,858,903,850,813,905,826,823,767,737,744,6892,640,722,665,672,626,686,710,692,750,729,4665,554,583,608,539,482,403,451,388,364,293,1316,283,228,158,155,124,368 +"2021","Stafford","E07000197",136862,6718,1225,1373,1373,1308,1439,7407,1448,1422,1448,1573,1516,9126,1520,1491,1582,1598,1476,1459,4972,1407,1391,1179,995,6331,1080,1143,1338,1333,1437,16360,1425,1506,1632,1615,1644,1696,1715,1673,1797,1657,25088,1628,1708,1648,1613,1623,1758,1731,1576,1533,1505,1512,1672,1764,1865,1952,29409,2040,2002,2077,2082,2125,2011,2151,2063,1954,1960,1911,1852,1788,1774,1619,16333,1603,1581,1597,1577,1565,1573,1655,1684,1737,1761,11167,1397,1453,1393,1342,1081,997,941,985,844,734,3951,651,570,490,439,336,1465,69230,3309,601,662,675,677,694,3560,711,693,703,742,711,4524,738,752,805,807,711,711,2433,711,669,546,507,3064,534,571,644,648,667,8303,686,796,804,850,834,854,858,836,910,875,12511,807,826,843,794,805,897,857,805,776,766,778,795,883,906,973,14810,1014,1013,1041,1027,1100,993,1091,1073,993,960,961,947,881,893,823,8337,780,823,805,792,806,785,843,879,910,914,5971,716,788,756,722,570,512,508,536,459,404,2408,370,301,285,259,210,983,67632,3409,624,711,698,631,745,3847,737,729,745,831,805,4602,782,739,777,791,765,748,2539,696,722,633,488,3267,546,572,694,685,770,8057,739,710,828,765,810,842,857,837,887,782,12577,821,882,805,819,818,861,874,771,757,739,734,877,881,959,979,14599,1026,989,1036,1055,1025,1018,1060,990,961,1000,950,905,907,881,796,7996,823,758,792,785,759,788,812,805,827,847,5196,681,665,637,620,511,485,433,449,385,330,1543,281,269,205,180,126,482 +"2021","Staffordshire Moorlands","E07000198",95845,4073,793,779,790,829,882,4791,900,946,923,992,1030,6128,1038,1025,1061,1073,976,955,3793,1086,1014,949,744,4118,698,809,868,869,874,9595,910,920,885,904,983,1008,936,1044,1017,988,15990,1025,992,970,988,1017,1059,962,933,963,989,1002,1169,1183,1327,1411,22239,1525,1552,1556,1580,1578,1486,1601,1566,1495,1461,1445,1360,1381,1373,1280,13333,1260,1236,1294,1278,1263,1222,1417,1362,1554,1447,8753,1121,1176,1090,972,881,774,727,748,655,609,3032,491,495,365,320,297,1064,48571,2025,407,383,399,400,436,2296,440,435,440,490,491,2963,508,491,507,520,478,459,1815,551,491,445,328,1934,325,386,375,405,443,4897,450,480,457,449,514,508,444,538,533,524,8114,519,499,476,516,487,552,514,481,504,512,515,597,582,643,717,11206,779,758,806,787,792,764,858,756,708,759,731,663,673,707,665,6817,648,611,661,636,636,637,745,691,784,768,4635,567,608,565,506,473,416,387,413,367,333,1869,297,267,210,188,180,727,47274,2048,386,396,391,429,446,2495,460,511,483,502,539,3165,530,534,554,553,498,496,1978,535,523,504,416,2184,373,423,493,464,431,4698,460,440,428,455,469,500,492,506,484,464,7876,506,493,494,472,530,507,448,452,459,477,487,572,601,684,694,11033,746,794,750,793,786,722,743,810,787,702,714,697,708,666,615,6516,612,625,633,642,627,585,672,671,770,679,4118,554,568,525,466,408,358,340,335,288,276,1163,194,228,155,132,117,337 +"2021","Tamworth","E07000199",78650,4440,854,870,868,900,948,4666,939,869,912,982,964,5748,983,1010,1023,961,894,877,3359,940,889,789,741,4208,728,786,802,956,936,10731,888,1011,1015,1063,1122,1162,1121,1109,1128,1112,14990,1043,1067,1069,993,978,1070,983,928,868,836,919,946,1022,1089,1179,15593,1223,1157,1203,1090,1114,1139,1051,1017,1010,939,973,987,886,907,897,8570,887,869,915,841,815,751,888,855,871,878,4828,653,667,663,554,453,401,425,379,333,300,1517,278,228,202,170,140,499,39913,2105,390,419,434,413,449,2266,463,449,433,464,457,2773,477,476,500,460,465,395,1612,440,435,388,349,2086,354,372,392,478,490,5445,444,510,521,559,564,586,556,576,561,568,7656,534,560,518,484,505,554,489,461,446,416,476,499,540,581,593,7927,608,588,570,523,548,577,533,532,527,497,498,516,471,483,456,4447,464,450,484,426,429,392,480,418,440,464,2597,352,323,361,312,224,240,230,215,186,154,999,161,145,121,118,102,352,38737,2335,464,451,434,487,499,2400,476,420,479,518,507,2975,506,534,523,501,429,482,1747,500,454,401,392,2122,374,414,410,478,446,5286,444,501,494,504,558,576,565,533,567,544,7334,509,507,551,509,473,516,494,467,422,420,443,447,482,508,586,7666,615,569,633,567,566,562,518,485,483,442,475,471,415,424,441,4123,423,419,431,415,386,359,408,437,431,414,2231,301,344,302,242,229,161,195,164,147,146,518,117,83,81,52,38,147 +"2021","North Warwickshire","E07000218",65028,3203,596,627,644,691,645,3635,711,666,729,779,750,4296,760,725,724,688,735,664,2559,738,655,624,542,3137,532,609,601,663,732,7790,668,729,728,769,831,863,805,806,824,767,11554,821,748,772,755,699,760,731,714,657,692,763,779,824,919,920,14582,981,961,1097,982,1078,1117,1043,962,1007,937,950,909,897,859,802,7698,777,720,782,718,743,759,750,772,862,815,4862,624,668,641,565,450,415,421,377,353,348,1712,292,241,213,200,178,588,33120,1593,309,294,329,354,307,1805,343,335,366,382,379,2164,387,377,355,338,368,339,1192,349,298,301,244,1514,245,286,303,307,373,3955,323,363,374,383,432,435,436,410,405,394,5940,402,367,396,405,371,411,392,356,357,346,399,378,424,487,449,7356,506,469,545,521,550,561,535,493,491,453,508,456,456,422,390,3946,383,374,385,373,384,392,382,406,441,426,2574,326,347,324,296,231,233,225,194,192,206,1081,174,137,120,120,114,416,31908,1610,287,333,315,337,338,1830,368,331,363,397,371,2132,373,348,369,350,367,325,1367,389,357,323,298,1623,287,323,298,356,359,3835,345,366,354,386,399,428,369,396,419,373,5614,419,381,376,350,328,349,339,358,300,346,364,401,400,432,471,7226,475,492,552,461,528,556,508,469,516,484,442,453,441,437,412,3752,394,346,397,345,359,367,368,366,421,389,2288,298,321,317,269,219,182,196,183,161,142,631,118,104,93,80,64,172 +"2021","Nuneaton and Bedworth","E07000219",134189,7752,1474,1515,1608,1573,1582,8165,1620,1597,1610,1656,1682,9692,1715,1610,1648,1614,1587,1518,5419,1503,1472,1246,1198,7071,1171,1304,1458,1533,1605,18454,1658,1649,1759,1793,1877,2056,1954,1926,1927,1855,25384,1811,1838,1767,1730,1708,1822,1713,1641,1462,1471,1585,1601,1634,1764,1837,26659,1825,1912,1965,1930,1922,1993,1970,1780,1708,1759,1685,1595,1561,1519,1535,13832,1412,1380,1396,1324,1356,1331,1489,1297,1412,1435,8786,1133,1251,1094,994,831,769,730,754,632,598,2975,482,433,433,309,308,1010,68278,3761,713,730,797,774,747,3986,757,795,800,799,835,4746,835,764,816,782,802,747,2706,779,728,607,592,3532,567,667,693,772,833,9512,804,850,915,964,955,1052,1038,967,1010,957,12781,911,955,865,873,884,937,867,837,738,756,792,770,816,870,910,13448,899,948,1003,1030,970,1019,981,873,865,887,822,786,800,777,788,7117,715,690,701,650,713,701,754,698,767,728,4797,616,654,581,544,417,447,402,427,358,351,1892,282,271,256,191,199,693,65911,3991,761,785,811,799,835,4179,863,802,810,857,847,4946,880,846,832,832,785,771,2713,724,744,639,606,3539,604,637,765,761,772,8942,854,799,844,829,922,1004,916,959,917,898,12603,900,883,902,857,824,885,846,804,724,715,793,831,818,894,927,13211,926,964,962,900,952,974,989,907,843,872,863,809,761,742,747,6715,697,690,695,674,643,630,735,599,645,707,3989,517,597,513,450,414,322,328,327,274,247,1083,200,162,177,118,109,317 +"2021","Rugby","E07000220",114362,6368,1188,1223,1295,1313,1349,7114,1400,1374,1423,1428,1489,8695,1482,1370,1510,1435,1427,1471,4733,1450,1338,1117,828,5570,910,1036,1077,1248,1299,15593,1352,1388,1406,1511,1585,1633,1671,1702,1687,1658,23519,1639,1679,1590,1647,1646,1602,1648,1516,1449,1437,1488,1467,1459,1588,1664,21968,1636,1685,1608,1559,1582,1558,1571,1583,1511,1459,1393,1309,1159,1218,1137,10533,1050,1033,1047,953,1019,1022,1049,1067,1140,1153,7509,953,1013,980,810,715,698,642,619,565,514,2760,461,388,328,293,252,1038,57406,3108,586,572,622,649,679,3541,705,686,710,685,755,4210,700,675,733,717,707,678,2194,696,616,521,361,2678,407,500,516,609,646,7783,666,695,702,760,768,817,822,852,909,792,11876,848,839,839,869,810,812,831,757,737,716,739,707,745,811,816,10846,806,833,793,782,769,771,790,801,737,698,707,627,540,613,579,5462,526,536,539,487,533,508,576,556,606,595,4032,501,555,539,432,368,333,361,331,314,298,1676,251,224,197,192,146,666,56956,3260,602,651,673,664,670,3573,695,688,713,743,734,4485,782,695,777,718,720,793,2539,754,722,596,467,2892,503,536,561,639,653,7810,686,693,704,751,817,816,849,850,778,866,11643,791,840,751,778,836,790,817,759,712,721,749,760,714,777,848,11122,830,852,815,777,813,787,781,782,774,761,686,682,619,605,558,5071,524,497,508,466,486,514,473,511,534,558,3477,452,458,441,378,347,365,281,288,251,216,1084,210,164,131,101,106,372 +"2021","Stratford-on-Avon","E07000221",134734,6251,1201,1193,1199,1299,1359,6944,1401,1319,1358,1426,1440,8895,1464,1462,1517,1560,1493,1399,4971,1503,1381,1173,914,5404,871,908,1127,1245,1253,14166,1303,1317,1282,1319,1475,1499,1486,1483,1553,1449,23891,1409,1443,1445,1486,1574,1580,1593,1532,1471,1525,1609,1706,1713,1772,2033,30297,2006,2052,2051,2064,2130,2205,2211,2142,2015,2073,2023,1889,1874,1821,1741,17222,1640,1636,1652,1647,1679,1632,1657,1797,1926,1956,12039,1603,1640,1593,1357,1054,991,1034,1015,906,846,4654,766,683,548,515,434,1708,69354,3053,565,609,559,633,687,3435,677,630,700,710,718,4377,711,709,727,770,731,729,2397,746,684,537,430,2566,385,424,525,617,615,7264,707,673,667,669,738,751,751,793,804,711,12413,752,734,742,783,826,811,812,766,751,810,836,917,909,927,1037,15610,1076,1049,1086,1068,1081,1152,1132,1081,1021,1083,1033,918,973,936,921,8896,827,830,837,838,858,852,862,961,992,1039,6444,832,861,857,713,578,532,556,532,516,467,2899,435,402,340,303,279,1140,65380,3198,636,584,640,666,672,3509,724,689,658,716,722,4518,753,753,790,790,762,670,2574,757,697,636,484,2838,486,484,602,628,638,6902,596,644,615,650,737,748,735,690,749,738,11478,657,709,703,703,748,769,781,766,720,715,773,789,804,845,996,14687,930,1003,965,996,1049,1053,1079,1061,994,990,990,971,901,885,820,8326,813,806,815,809,821,780,795,836,934,917,5595,771,779,736,644,476,459,478,483,390,379,1755,331,281,208,212,155,568 +"2021","Warwick","E07000222",148451,7438,1372,1528,1509,1509,1520,8160,1554,1658,1570,1660,1718,9604,1680,1621,1667,1582,1548,1506,7732,1589,1498,1940,2705,10740,2769,2538,1865,1815,1753,20081,1798,1831,1918,1921,2079,2080,2067,2180,2143,2064,28973,2005,2048,1920,1976,1999,1990,1974,1965,1773,1806,1774,1907,1895,1969,1972,27702,1995,1981,2046,2033,1968,1994,1935,1990,1884,1903,1748,1644,1609,1471,1501,14301,1446,1400,1440,1393,1377,1365,1451,1453,1479,1497,9712,1243,1276,1178,1145,895,842,861,835,751,686,4008,682,513,482,416,386,1529,74607,3549,649,721,711,728,740,4011,773,810,783,798,847,4740,849,804,804,766,761,756,3663,703,750,944,1266,5074,1275,1183,890,835,891,9774,798,873,928,910,1039,1051,991,1079,1083,1022,14521,1012,997,1011,1012,969,945,1050,1009,859,913,877,911,961,986,1009,14000,1030,997,982,1026,996,997,980,1008,966,970,926,805,812,735,770,7455,736,705,748,731,771,695,752,764,783,770,5291,656,682,637,614,488,470,483,468,410,383,2529,399,336,275,248,226,1045,73844,3889,723,807,798,781,780,4149,781,848,787,862,871,4864,831,817,863,816,787,750,4069,886,748,996,1439,5666,1494,1355,975,980,862,10307,1000,958,990,1011,1040,1029,1076,1101,1060,1042,14452,993,1051,909,964,1030,1045,924,956,914,893,897,996,934,983,963,13702,965,984,1064,1007,972,997,955,982,918,933,822,839,797,736,731,6846,710,695,692,662,606,670,699,689,696,727,4421,587,594,541,531,407,372,378,367,341,303,1479,283,177,207,168,160,484 +"2021","Bromsgrove","E07000234",99187,5158,888,981,1066,1062,1161,5688,1076,1121,1139,1162,1190,7237,1276,1168,1212,1237,1209,1135,4118,1218,1191,951,758,4290,691,768,928,926,977,10330,962,943,952,975,1018,1097,1040,1103,1102,1138,18433,1192,1169,1133,1161,1192,1307,1257,1191,1076,1172,1220,1244,1306,1430,1383,21186,1433,1433,1526,1578,1545,1590,1511,1462,1407,1403,1342,1271,1280,1253,1152,11490,1121,1176,1220,1114,1087,1071,1163,1159,1196,1183,7880,997,1073,990,859,729,679,689,686,617,561,3377,500,479,426,358,346,1268,50729,2579,445,511,502,519,602,2769,535,553,560,554,567,3433,594,554,586,592,559,548,1969,594,567,452,356,2010,288,361,455,434,472,5179,451,490,468,494,521,575,490,570,564,556,9541,632,590,591,601,611,687,668,633,573,604,594,644,663,732,718,10844,759,739,798,808,769,837,772,736,721,698,692,662,650,624,579,5953,571,633,620,578,533,578,614,578,619,629,4298,526,590,576,456,387,377,361,374,348,303,2154,297,286,263,227,221,860,48458,2579,443,470,564,543,559,2919,541,568,579,608,623,3804,682,614,626,645,650,587,2149,624,624,499,402,2280,403,407,473,492,505,5151,511,453,484,481,497,522,550,533,538,582,8892,560,579,542,560,581,620,589,558,503,568,626,600,643,698,665,10342,674,694,728,770,776,753,739,726,686,705,650,609,630,629,573,5537,550,543,600,536,554,493,549,581,577,554,3582,471,483,414,403,342,302,328,312,269,258,1223,203,193,163,131,125,408 +"2021","Malvern Hills","E07000235",79497,3115,549,578,629,640,719,3946,697,767,807,825,850,5306,848,846,895,840,956,921,3334,972,978,813,571,3289,503,607,682,766,731,7187,701,651,665,690,751,738,777,720,734,760,12579,724,746,778,693,773,806,855,856,777,814,827,910,919,995,1106,18497,1164,1082,1175,1288,1267,1291,1367,1302,1327,1236,1245,1248,1186,1183,1136,11416,1098,1052,1097,1121,1070,1129,1184,1157,1229,1279,7685,924,1036,968,831,743,679,683,656,580,585,3143,473,457,404,374,297,1138,40856,1525,257,271,303,326,368,1949,344,366,404,405,430,2599,415,412,450,401,472,449,1603,463,480,378,282,1546,228,295,316,354,353,3652,357,321,339,341,388,357,416,373,388,372,6568,375,390,422,370,380,396,441,459,404,443,434,485,483,523,563,9461,581,553,614,698,631,677,702,678,666,607,623,627,615,601,588,5891,575,564,547,586,547,595,631,572,636,638,4137,497,543,526,452,384,354,356,354,322,349,1925,250,243,242,234,173,783,38641,1590,292,307,326,314,351,1997,353,401,403,420,420,2707,433,434,445,439,484,472,1731,509,498,435,289,1743,275,312,366,412,378,3535,344,330,326,349,363,381,361,347,346,388,6011,349,356,356,323,393,410,414,397,373,371,393,425,436,472,543,9036,583,529,561,590,636,614,665,624,661,629,622,621,571,582,548,5525,523,488,550,535,523,534,553,585,593,641,3548,427,493,442,379,359,325,327,302,258,236,1218,223,214,162,140,124,355 +"2021","Redditch","E07000236",87032,4992,956,982,986,1004,1064,5401,1046,1085,1015,1133,1122,6391,1117,1037,1026,1092,1101,1018,3606,1075,936,847,748,4487,749,837,863,988,1050,12156,1049,1097,1136,1155,1302,1296,1353,1311,1238,1219,17431,1198,1195,1242,1191,1210,1284,1305,1121,1099,1042,1083,1070,1052,1139,1200,16414,1180,1159,1169,1126,1168,1158,1145,1086,1108,1059,1036,986,970,1046,1018,9487,943,932,1000,959,970,924,952,979,929,899,5051,726,748,669,547,475,419,383,393,329,362,1616,247,212,208,165,159,625,44048,2438,467,481,488,479,523,2607,495,525,482,565,540,3072,547,484,478,509,558,496,1735,525,444,415,351,2275,367,416,432,510,550,6206,516,588,572,586,692,641,694,660,630,627,8769,622,618,625,608,649,658,676,544,521,482,511,513,519,598,625,8338,568,574,589,566,591,576,591,550,554,561,512,511,518,549,528,4915,509,488,543,507,497,477,443,500,477,474,2655,364,390,337,266,250,222,207,223,191,205,1038,155,115,139,102,105,422,42984,2554,489,501,498,525,541,2794,551,560,533,568,582,3319,570,553,548,583,543,522,1871,550,492,432,397,2212,382,421,431,478,500,5950,533,509,564,569,610,655,659,651,608,592,8662,576,577,617,583,561,626,629,577,578,560,572,557,533,541,575,8076,612,585,580,560,577,582,554,536,554,498,524,475,452,497,490,4572,434,444,457,452,473,447,509,479,452,425,2396,362,358,332,281,225,197,176,170,138,157,578,92,97,69,63,54,203 +"2021","Worcester","E07000237",103868,5279,984,1084,1110,1048,1053,5836,1138,1083,1132,1257,1226,7148,1195,1229,1207,1187,1160,1170,5123,1145,1133,1235,1610,7439,1638,1534,1397,1392,1478,14575,1342,1407,1463,1477,1448,1560,1577,1405,1475,1421,20041,1439,1425,1326,1364,1323,1429,1361,1292,1236,1192,1272,1240,1352,1365,1425,20134,1504,1487,1562,1364,1447,1431,1503,1425,1379,1336,1242,1160,1210,1072,1012,9866,1061,966,1033,999,926,947,925,941,1064,1004,6073,765,795,720,675,621,522,547,487,491,450,2354,390,325,309,277,252,801,52996,2614,482,551,562,507,512,2807,545,495,546,638,583,3518,576,616,562,611,578,575,2625,532,534,634,925,3973,914,842,729,711,777,7337,689,723,741,719,717,796,800,702,719,731,10108,749,705,671,681,684,709,687,637,610,617,692,622,702,651,691,10026,744,761,760,682,747,709,743,698,706,650,610,557,594,564,501,5115,544,483,550,522,460,529,475,468,566,518,3374,416,430,391,362,362,283,316,268,286,260,1499,219,184,186,191,164,555,50872,2665,502,533,548,541,541,3029,593,588,586,619,643,3630,619,613,645,576,582,595,2498,613,599,601,685,3466,724,692,668,681,701,7238,653,684,722,758,731,764,777,703,756,690,9933,690,720,655,683,639,720,674,655,626,575,580,618,650,714,734,10108,760,726,802,682,700,722,760,727,673,686,632,603,616,508,511,4751,517,483,483,477,466,418,450,473,498,486,2699,349,365,329,313,259,239,231,219,205,190,855,171,141,123,86,88,246 +"2021","Wychavon","E07000238",132495,6255,1162,1197,1241,1276,1379,6930,1428,1254,1296,1526,1426,8592,1449,1381,1456,1453,1393,1460,5046,1433,1451,1205,957,5727,950,1023,1177,1275,1302,14466,1323,1386,1319,1362,1478,1390,1495,1565,1554,1594,23124,1500,1511,1493,1446,1458,1545,1518,1526,1388,1381,1466,1583,1646,1787,1876,29421,1960,1909,1996,2131,2113,2048,2084,2096,2017,2036,1927,1804,1805,1808,1687,17387,1654,1669,1744,1680,1644,1676,1722,1790,1889,1919,11325,1434,1556,1418,1232,1047,1024,1022,934,868,790,4222,652,577,480,477,435,1601,67501,3030,589,539,614,612,676,3399,704,600,632,734,729,4171,711,697,690,686,662,725,2463,724,708,562,469,2803,453,506,561,633,650,7305,651,679,654,698,740,711,773,816,780,803,11798,745,751,736,718,764,796,780,799,711,712,738,803,853,895,997,15016,1036,972,1039,1093,1049,1040,1076,1015,1050,1024,976,935,908,938,865,8980,845,867,934,855,844,851,883,910,1002,989,5984,750,799,717,648,534,555,580,515,459,427,2552,348,331,255,280,266,1072,64994,3225,573,658,627,664,703,3531,724,654,664,792,697,4421,738,684,766,767,731,735,2583,709,743,643,488,2924,497,517,616,642,652,7161,672,707,665,664,738,679,722,749,774,791,11326,755,760,757,728,694,749,738,727,677,669,728,780,793,892,879,14405,924,937,957,1038,1064,1008,1008,1081,967,1012,951,869,897,870,822,8407,809,802,810,825,800,825,839,880,887,930,5341,684,757,701,584,513,469,442,419,409,363,1670,304,246,225,197,169,529 +"2021","Wyre Forest","E07000239",101601,4806,883,867,995,998,1063,5541,1123,1050,1089,1163,1116,6696,1172,1084,1101,1137,1113,1089,3924,1084,1007,983,850,4668,788,851,989,1023,1017,11311,1042,1040,1030,1103,1216,1191,1175,1194,1177,1143,17397,1154,1120,1113,1096,1081,1160,1142,1059,1041,1057,1133,1244,1284,1355,1358,21599,1481,1540,1504,1549,1614,1549,1594,1518,1488,1387,1349,1286,1233,1332,1175,13495,1231,1209,1316,1261,1272,1303,1389,1451,1595,1468,9120,1219,1271,1217,1054,849,774,754,736,683,563,3044,509,434,435,333,307,1026,51784,2332,425,422,481,486,518,2685,539,515,528,568,535,3178,551,495,517,556,550,509,1851,496,493,442,420,2305,388,396,505,517,499,5891,507,525,527,563,627,628,615,624,654,621,8808,565,571,545,552,544,619,559,536,522,547,581,637,625,698,707,10962,737,789,768,790,810,800,824,768,743,689,692,663,613,672,604,7045,652,656,695,649,674,669,744,739,839,728,4862,630,670,648,555,449,412,410,384,380,324,1865,292,247,260,203,187,676,49817,2474,458,445,514,512,545,2856,584,535,561,595,581,3518,621,589,584,581,563,580,2073,588,514,541,430,2363,400,455,484,506,518,5420,535,515,503,540,589,563,560,570,523,522,8589,589,549,568,544,537,541,583,523,519,510,552,607,659,657,651,10637,744,751,736,759,804,749,770,750,745,698,657,623,620,660,571,6450,579,553,621,612,598,634,645,712,756,740,4258,589,601,569,499,400,362,344,352,303,239,1179,217,187,175,130,120,350 +"2021","Birmingham","E08000025",1144923,75023,14272,14751,14989,15121,15890,81270,15716,16022,16242,16737,16553,99006,16799,16524,16934,16670,16133,15946,70496,15985,16182,17618,20711,93243,20328,19790,18665,17299,17161,167439,16611,16534,16450,16337,16661,17227,16949,16730,17060,16880,222679,16409,16343,16060,16042,15774,15893,15527,14698,13977,13902,13508,13406,13395,13750,13995,185279,14232,14169,14039,13949,13565,13018,12802,12512,12427,11926,11464,10924,10433,10211,9608,79931,8871,8745,8572,8420,7976,7576,7470,7295,7571,7435,49033,5746,6230,5839,5487,4772,4412,4567,4251,3911,3818,21524,3466,3022,2514,2483,2123,7916,584501,37014,7259,7227,7241,7481,7806,39577,7702,7724,8024,8099,8028,48263,8127,8050,8296,8112,7802,7876,35291,7828,7784,8831,10848,47818,10794,9955,9376,8902,8791,86671,8580,8401,8415,8311,8536,8871,8830,8758,9009,8960,114348,8582,8475,8425,8459,8276,8282,8223,7493,7128,7018,6772,6724,6584,6763,7144,93077,7025,7146,6938,6933,6830,6647,6416,6343,6352,6139,5797,5496,5216,4966,4833,41517,4513,4421,4369,4314,4049,3902,3967,3847,4064,4071,27159,3059,3274,3172,3037,2622,2547,2495,2394,2291,2268,13766,2101,1762,1566,1530,1382,5425,560422,38009,7013,7524,7748,7640,8084,41693,8014,8298,8218,8638,8525,50743,8672,8474,8638,8558,8331,8070,35205,8157,8398,8787,9863,45425,9534,9835,9289,8397,8370,80768,8031,8133,8035,8026,8125,8356,8119,7972,8051,7920,108331,7827,7868,7635,7583,7498,7611,7304,7205,6849,6884,6736,6682,6811,6987,6851,92202,7207,7023,7101,7016,6735,6371,6386,6169,6075,5787,5667,5428,5217,5245,4775,38414,4358,4324,4203,4106,3927,3674,3503,3448,3507,3364,21874,2687,2956,2667,2450,2150,1865,2072,1857,1620,1550,7758,1365,1260,948,953,741,2491 +"2021","Coventry","E08000026",345315,20442,3926,3995,4191,4069,4261,21962,4166,4353,4321,4525,4597,26044,4529,4540,4411,4348,4278,3938,21468,4037,4063,5662,7706,31583,7756,6971,6316,5386,5154,50031,5107,4798,4860,4795,4925,4957,5321,4927,5295,5046,66102,5107,4855,4756,4527,4830,4685,4649,4300,4215,3918,4027,3934,3932,4130,4237,57372,4235,4243,4431,4334,4202,4004,3982,3882,3940,3802,3576,3254,3369,3188,2930,26047,2787,2826,2731,2637,2404,2500,2460,2542,2567,2593,17191,2157,2171,2172,1887,1587,1575,1542,1504,1368,1228,7073,1167,969,893,750,651,2643,173133,9967,1920,1931,2060,2044,2012,10691,2041,2170,2094,2205,2181,12597,2173,2217,2150,2137,2062,1858,10573,2010,2002,2769,3792,14918,3566,3201,3024,2622,2505,25426,2509,2392,2421,2426,2523,2536,2718,2532,2783,2586,33215,2617,2409,2480,2337,2312,2412,2342,2195,2028,2034,2032,1960,1942,2029,2086,28327,2066,2067,2160,2164,2130,2022,1901,1961,1902,1884,1782,1547,1623,1635,1483,13445,1406,1414,1406,1312,1261,1280,1269,1332,1386,1379,9469,1096,1187,1173,1066,885,928,848,814,772,700,4505,689,589,568,458,411,1790,172182,10475,2006,2064,2131,2025,2249,11271,2125,2183,2227,2320,2416,13447,2356,2323,2261,2211,2216,2080,10895,2027,2061,2893,3914,16665,4190,3770,3292,2764,2649,24605,2598,2406,2439,2369,2402,2421,2603,2395,2512,2460,32887,2490,2446,2276,2190,2518,2273,2307,2105,2187,1884,1995,1974,1990,2101,2151,29045,2169,2176,2271,2170,2072,1982,2081,1921,2038,1918,1794,1707,1746,1553,1447,12602,1381,1412,1325,1325,1143,1220,1191,1210,1181,1214,7722,1061,984,999,821,702,647,694,690,596,528,2568,478,380,325,292,240,853 +"2021","Dudley","E08000027",323487,18176,3463,3492,3663,3708,3850,19775,3824,3801,3986,4137,4027,23049,4000,3958,3850,3804,3695,3742,14030,3770,3807,3391,3062,17011,3054,3156,3380,3657,3764,41807,3938,3859,4120,4129,4400,4431,4194,4211,4380,4145,59235,4044,4050,4022,4091,4004,4078,3919,3837,3461,3582,3628,3746,3961,4270,4542,64344,4790,4620,4748,4601,4712,4479,4736,4455,4384,4181,3956,3715,3632,3736,3599,33823,3473,3322,3332,3389,3302,3233,3397,3311,3517,3547,23468,2774,3026,2960,2699,2354,2082,2066,2006,1843,1658,8769,1515,1320,1132,1016,845,2941,164474,8803,1674,1737,1758,1786,1848,9690,1894,1857,1999,1978,1962,11217,1961,1892,1850,1893,1807,1814,6776,1855,1851,1651,1419,8500,1424,1539,1741,1851,1945,21423,1968,1964,2088,2196,2243,2230,2187,2141,2265,2141,30163,2093,2147,2043,2106,2040,1986,2068,1950,1751,1880,1764,1888,1960,2137,2350,32183,2445,2261,2291,2286,2378,2190,2496,2219,2194,2060,1958,1892,1843,1822,1848,17402,1815,1630,1717,1714,1688,1697,1786,1732,1838,1785,12780,1456,1583,1648,1431,1296,1138,1123,1115,1035,955,5537,881,807,686,617,530,2016,159013,9373,1789,1755,1905,1922,2002,10085,1930,1944,1987,2159,2065,11832,2039,2066,2000,1911,1888,1928,7254,1915,1956,1740,1643,8511,1630,1617,1639,1806,1819,20384,1970,1895,2032,1933,2157,2201,2007,2070,2115,2004,29072,1951,1903,1979,1985,1964,2092,1851,1887,1710,1702,1864,1858,2001,2133,2192,32161,2345,2359,2457,2315,2334,2289,2240,2236,2190,2121,1998,1823,1789,1914,1751,16421,1658,1692,1615,1675,1614,1536,1611,1579,1679,1762,10688,1318,1443,1312,1268,1058,944,943,891,808,703,3232,634,513,446,399,315,925 +"2021","Sandwell","E08000028",341833,22174,4244,4350,4490,4429,4661,24563,4843,4631,4723,5168,5198,29062,4938,4967,4958,4929,4564,4706,17298,4685,4633,4151,3829,20370,3852,3807,4173,4297,4241,47435,4257,4305,4471,4687,4796,5013,5103,4918,4940,4945,70066,4968,4962,4896,5000,4711,5027,4892,4651,4271,4388,4289,4456,4403,4552,4600,61160,4737,4612,4656,4600,4469,4439,4293,4169,4007,3942,3832,3450,3429,3294,3231,26514,2919,2880,2818,2630,2610,2594,2527,2516,2575,2445,16828,1918,2070,2139,1915,1635,1564,1536,1431,1381,1239,6363,1078,961,799,738,631,2156,173574,10744,2020,2098,2238,2134,2254,11904,2374,2211,2254,2537,2528,14145,2405,2408,2419,2371,2254,2288,8254,2145,2185,2060,1864,9938,1796,1851,2072,2068,2151,24803,2112,2266,2334,2484,2451,2638,2621,2631,2577,2689,35793,2610,2607,2679,2687,2513,2695,2506,2287,2091,2148,2178,2152,2184,2191,2265,30794,2439,2351,2350,2205,2204,2252,2252,2130,2024,2014,1852,1776,1670,1639,1636,13643,1480,1458,1400,1390,1339,1401,1305,1290,1326,1254,9415,1033,1151,1165,1051,922,872,893,815,784,729,4141,640,586,484,477,415,1539,168259,11430,2224,2252,2252,2295,2407,12659,2469,2420,2469,2631,2670,14917,2533,2559,2539,2558,2310,2418,9044,2540,2448,2091,1965,10432,2056,1956,2101,2229,2090,22632,2145,2039,2137,2203,2345,2375,2482,2287,2363,2256,34273,2358,2355,2217,2313,2198,2332,2386,2364,2180,2240,2111,2304,2219,2361,2335,30366,2298,2261,2306,2395,2265,2187,2041,2039,1983,1928,1980,1674,1759,1655,1595,12871,1439,1422,1418,1240,1271,1193,1222,1226,1249,1191,7413,885,919,974,864,713,692,643,616,597,510,2222,438,375,315,261,216,617 +"2021","Solihull","E08000029",216245,11694,2074,2295,2340,2483,2502,13770,2676,2662,2739,2748,2945,16274,2749,2764,2656,2765,2670,2670,9137,2657,2532,2206,1742,10755,1817,1964,2233,2355,2386,25013,2353,2381,2411,2363,2473,2655,2526,2560,2631,2660,39960,2638,2698,2565,2651,2589,2814,2781,2551,2416,2491,2605,2534,2689,2851,3087,44041,3151,3091,3326,3012,3049,3252,3167,2996,3023,2997,2761,2708,2655,2478,2375,23017,2183,2161,2317,2150,2137,2205,2198,2461,2541,2664,15884,1985,2166,1923,1810,1527,1352,1359,1399,1198,1165,6700,1030,951,822,750,658,2489,111279,5704,1037,1119,1137,1184,1227,6671,1334,1298,1283,1299,1457,7786,1311,1372,1279,1294,1275,1255,4295,1283,1200,1019,793,5225,855,930,1092,1139,1209,13121,1230,1199,1224,1205,1310,1418,1366,1315,1397,1457,20877,1397,1410,1348,1437,1365,1459,1430,1339,1243,1304,1370,1348,1359,1475,1593,22505,1591,1582,1689,1554,1595,1617,1583,1538,1595,1563,1418,1440,1326,1237,1177,12090,1077,1119,1238,1142,1144,1110,1210,1311,1330,1409,8778,1061,1159,1059,994,859,731,734,810,681,690,4227,623,563,491,450,428,1672,104966,5990,1037,1176,1203,1299,1275,7099,1342,1364,1456,1449,1488,8488,1438,1392,1377,1471,1395,1415,4842,1374,1332,1187,949,5530,962,1034,1141,1216,1177,11892,1123,1182,1187,1158,1163,1237,1160,1245,1234,1203,19083,1241,1288,1217,1214,1224,1355,1351,1212,1173,1187,1235,1186,1330,1376,1494,21536,1560,1509,1637,1458,1454,1635,1584,1458,1428,1434,1343,1268,1329,1241,1198,10927,1106,1042,1079,1008,993,1095,988,1150,1211,1255,7106,924,1007,864,816,668,621,625,589,517,475,2473,407,388,331,300,230,817 +"2021","Walsall","E08000030",284122,18194,3337,3673,3709,3713,3762,19549,3879,3786,3841,4049,3994,23281,3976,3955,3863,3937,3834,3716,13578,3692,3557,3357,2972,16160,2981,3042,3308,3478,3351,37615,3541,3436,3466,3716,3808,3984,3804,3851,4048,3961,53679,3860,3937,3812,3822,3578,3657,3929,3303,3197,3284,3251,3257,3465,3498,3829,52607,3997,3701,3878,3897,3693,3698,3679,3511,3572,3545,3379,3215,2999,2967,2876,25406,2709,2657,2580,2448,2499,2423,2420,2489,2653,2528,17338,1981,2159,2089,1926,1734,1590,1574,1552,1425,1308,6715,1145,976,885,779,684,2246,145464,9130,1671,1906,1799,1868,1886,9473,1893,1831,1845,1949,1955,11309,1950,1982,1843,1868,1862,1804,6572,1779,1709,1669,1415,8165,1470,1510,1665,1791,1729,19955,1801,1750,1883,2012,2041,2097,2019,2129,2167,2056,27480,2028,2012,2006,2013,1862,1907,1998,1637,1652,1707,1588,1667,1764,1743,1896,26546,1963,1847,2004,1987,1831,1871,1879,1796,1818,1755,1723,1594,1524,1531,1423,13048,1403,1329,1338,1158,1243,1292,1275,1298,1378,1334,9518,1054,1155,1084,1070,956,836,868,896,834,765,4268,694,562,556,500,428,1528,138658,9064,1666,1767,1910,1845,1876,10076,1986,1955,1996,2100,2039,11972,2026,1973,2020,2069,1972,1912,7006,1913,1848,1688,1557,7995,1511,1532,1643,1687,1622,17660,1740,1686,1583,1704,1767,1887,1785,1722,1881,1905,26199,1832,1925,1806,1809,1716,1750,1931,1666,1545,1577,1663,1590,1701,1755,1933,26061,2034,1854,1874,1910,1862,1827,1800,1715,1754,1790,1656,1621,1475,1436,1453,12358,1306,1328,1242,1290,1256,1131,1145,1191,1275,1194,7820,927,1004,1005,856,778,754,706,656,591,543,2447,451,414,329,279,256,718 +"2021","Wolverhampton","E08000031",263725,16324,3090,3220,3244,3382,3388,17728,3523,3407,3585,3552,3661,21233,3752,3604,3525,3653,3463,3236,12119,3346,3187,2847,2739,15790,2775,3031,3330,3221,3433,35957,3131,3214,3653,3523,3561,3834,3827,3644,3737,3833,52703,3684,3767,3684,3699,3520,3813,3607,3466,3241,3256,3165,3277,3397,3465,3662,48590,3790,3578,3548,3608,3588,3458,3326,3204,3292,3155,2994,2825,2714,2850,2660,22607,2390,2445,2428,2281,2301,2278,2133,2103,2251,1997,14394,1661,1682,1781,1639,1371,1340,1361,1278,1149,1132,6280,983,898,786,689,610,2314,134173,7810,1384,1526,1493,1709,1698,8638,1700,1693,1681,1765,1799,10398,1814,1706,1746,1798,1786,1548,5803,1559,1532,1360,1352,7743,1358,1411,1638,1590,1746,18804,1588,1663,1861,1848,1879,1999,1994,1932,1991,2049,26921,1935,2000,1961,1983,1855,1890,1867,1757,1661,1635,1565,1548,1616,1765,1883,24523,1905,1856,1737,1783,1714,1735,1726,1613,1676,1635,1505,1430,1384,1413,1411,11612,1214,1263,1225,1164,1207,1163,1102,1080,1172,1022,7964,852,924,994,902,745,726,770,724,658,669,3957,579,539,486,428,382,1543,129552,8514,1706,1694,1751,1673,1690,9090,1823,1714,1904,1787,1862,10835,1938,1898,1779,1855,1677,1688,6316,1787,1655,1487,1387,8047,1417,1620,1692,1631,1687,17153,1543,1551,1792,1675,1682,1835,1833,1712,1746,1784,25782,1749,1767,1723,1716,1665,1923,1740,1709,1580,1621,1600,1729,1781,1700,1779,24067,1885,1722,1811,1825,1874,1723,1600,1591,1616,1520,1489,1395,1330,1437,1249,10995,1176,1182,1203,1117,1094,1115,1031,1023,1079,975,6430,809,758,787,737,626,614,591,554,491,463,2323,404,359,300,261,228,771 +"2021","Peterborough","E06000031",215669,14163,2700,2764,2796,2934,2969,15730,3113,3052,3116,3254,3195,18208,3218,3164,3154,3075,2892,2705,9835,2773,2709,2317,2036,11678,1979,2117,2450,2454,2678,32623,2848,2881,3051,3195,3350,3437,3425,3464,3521,3451,46391,3614,3494,3401,3438,3302,3382,3213,3021,2850,2826,2756,2738,2720,2803,2833,36453,2743,2744,2770,2760,2683,2593,2556,2488,2400,2314,2283,2108,2097,2041,1873,16741,1816,1729,1791,1634,1655,1590,1588,1621,1587,1730,9792,1294,1241,1152,1067,932,880,924,839,728,735,4055,652,583,474,457,395,1494,109064,6872,1295,1293,1343,1453,1488,7594,1489,1456,1472,1584,1593,8762,1522,1487,1533,1468,1405,1347,4610,1347,1264,1087,912,5745,913,1002,1245,1199,1386,16772,1456,1425,1558,1630,1786,1767,1760,1787,1810,1793,23419,1881,1832,1802,1680,1642,1696,1624,1523,1443,1419,1371,1348,1373,1371,1414,18641,1418,1384,1431,1336,1373,1349,1343,1267,1253,1177,1151,1064,1083,1053,959,8774,922,923,960,878,886,805,799,833,828,940,5377,693,658,596,612,517,474,498,496,406,427,2498,382,330,283,292,233,978,106605,7291,1405,1471,1453,1481,1481,8136,1624,1596,1644,1670,1602,9446,1696,1677,1621,1607,1487,1358,5225,1426,1445,1230,1124,5933,1066,1115,1205,1255,1292,15851,1392,1456,1493,1565,1564,1670,1665,1677,1711,1658,22972,1733,1662,1599,1758,1660,1686,1589,1498,1407,1407,1385,1390,1347,1432,1419,17812,1325,1360,1339,1424,1310,1244,1213,1221,1147,1137,1132,1044,1014,988,914,7967,894,806,831,756,769,785,789,788,759,790,4415,601,583,556,455,415,406,426,343,322,308,1557,270,253,191,165,162,516 +"2021","Luton","E06000032",225255,15957,3133,3190,3186,3135,3313,16731,3365,3301,3336,3371,3358,19875,3358,3346,3393,3379,3270,3129,11943,3237,3148,2881,2677,15582,2769,2923,3061,3354,3475,34369,3308,3280,3248,3359,3318,3456,3504,3627,3656,3613,48265,3548,3566,3539,3597,3415,3647,3562,3310,3015,2975,2880,2827,2780,2805,2799,36171,2814,2832,2796,2793,2594,2565,2581,2502,2455,2278,2169,2166,2052,1777,1797,14157,1818,1553,1436,1561,1405,1307,1281,1281,1259,1256,8604,1037,1076,943,950,761,775,801,757,766,738,3601,619,548,489,385,322,1238,112431,7863,1588,1610,1510,1578,1577,8095,1676,1574,1530,1639,1676,9699,1626,1622,1689,1645,1604,1513,5730,1539,1565,1381,1245,7628,1382,1404,1520,1651,1671,17654,1653,1689,1665,1732,1699,1752,1798,1848,1924,1894,23880,1810,1910,1776,1826,1773,1806,1811,1600,1435,1418,1362,1359,1322,1339,1333,17580,1350,1356,1375,1351,1221,1283,1252,1215,1188,1140,1005,1071,1014,865,894,7258,891,765,755,800,701,690,673,637,669,677,4803,581,590,515,507,444,411,478,436,416,425,2241,379,318,279,243,204,818,112824,8094,1545,1580,1676,1557,1736,8636,1689,1727,1806,1732,1682,10176,1732,1724,1704,1734,1666,1616,6213,1698,1583,1500,1432,7954,1387,1519,1541,1703,1804,16715,1655,1591,1583,1627,1619,1704,1706,1779,1732,1719,24385,1738,1656,1763,1771,1642,1841,1751,1710,1580,1557,1518,1468,1458,1466,1466,18591,1464,1476,1421,1442,1373,1282,1329,1287,1267,1138,1164,1095,1038,912,903,6899,927,788,681,761,704,617,608,644,590,579,3801,456,486,428,443,317,364,323,321,350,313,1360,240,230,210,142,118,420 +"2021","Southend-on-Sea","E06000033",180688,10242,1960,1970,2057,2130,2125,10899,2211,2132,2153,2210,2193,13135,2258,2325,2202,2155,2214,1981,7199,1937,1960,1719,1583,9356,1526,1773,1898,2072,2087,23159,2096,2193,2318,2307,2310,2412,2428,2399,2369,2327,36680,2528,2354,2403,2416,2494,2472,2651,2492,2230,2318,2305,2341,2481,2570,2625,35456,2511,2440,2556,2543,2488,2615,2561,2563,2432,2325,2285,2232,2089,2017,1799,18023,1827,1780,1733,1792,1684,1654,1749,1846,2005,1953,11559,1478,1568,1421,1289,1086,929,1058,1034,895,801,4980,705,686,594,577,499,1919,92777,5097,989,980,1003,1061,1064,5354,1074,1073,1047,1074,1086,6394,1093,1141,1121,998,1079,962,3410,948,889,808,765,4768,780,910,974,1031,1073,11993,1070,1097,1190,1181,1186,1300,1271,1240,1221,1237,18756,1347,1248,1267,1219,1270,1278,1375,1248,1107,1202,1189,1205,1232,1284,1285,17898,1259,1224,1289,1286,1287,1328,1281,1299,1239,1143,1122,1116,1076,1000,949,9466,930,932,927,923,870,906,945,951,1052,1030,6433,802,865,784,725,607,493,599,581,530,447,3208,420,422,338,364,309,1355,87911,5145,971,990,1054,1069,1061,5545,1137,1059,1106,1136,1107,6741,1165,1184,1081,1157,1135,1019,3789,989,1071,911,818,4588,746,863,924,1041,1014,11166,1026,1096,1128,1126,1124,1112,1157,1159,1148,1090,17924,1181,1106,1136,1197,1224,1194,1276,1244,1123,1116,1116,1136,1249,1286,1340,17558,1252,1216,1267,1257,1201,1287,1280,1264,1193,1182,1163,1116,1013,1017,850,8557,897,848,806,869,814,748,804,895,953,923,5126,676,703,637,564,479,436,459,453,365,354,1772,285,264,256,213,190,564 +"2021","Thurrock","E06000034",176009,12261,2287,2442,2452,2526,2554,12667,2660,2471,2469,2526,2541,14712,2592,2363,2535,2582,2329,2311,8147,2291,2234,1907,1715,9528,1682,1747,1976,1968,2155,25901,2152,2199,2424,2482,2541,2716,2792,2862,2883,2850,37973,2848,2932,2723,2618,2728,2620,2644,2511,2309,2391,2294,2348,2321,2325,2361,30963,2388,2297,2466,2300,2381,2323,2231,2191,2021,1993,1861,1723,1686,1543,1559,13535,1412,1359,1381,1325,1236,1322,1286,1301,1460,1453,7486,956,999,898,864,696,684,676,593,554,566,2836,468,394,340,303,281,1050,89792,5979,1075,1191,1189,1265,1259,6165,1282,1214,1237,1225,1207,7161,1245,1175,1231,1268,1128,1114,3940,1115,1080,909,836,4768,826,867,998,977,1100,13703,1104,1179,1297,1298,1374,1451,1476,1498,1536,1490,19562,1497,1557,1419,1305,1442,1396,1368,1290,1171,1223,1160,1232,1175,1123,1204,15457,1189,1105,1256,1143,1192,1133,1141,1104,993,1017,965,844,814,772,789,7033,701,693,706,699,672,677,655,648,779,803,4187,514,525,486,481,401,418,369,337,312,344,1837,290,239,201,201,176,730,86217,6282,1212,1251,1263,1261,1295,6502,1378,1257,1232,1301,1334,7551,1347,1188,1304,1314,1201,1197,4207,1176,1154,998,879,4760,856,880,978,991,1055,12198,1048,1020,1127,1184,1167,1265,1316,1364,1347,1360,18411,1351,1375,1304,1313,1286,1224,1276,1221,1138,1168,1134,1116,1146,1202,1157,15506,1199,1192,1210,1157,1189,1190,1090,1087,1028,976,896,879,872,771,770,6502,711,666,675,626,564,645,631,653,681,650,3299,442,474,412,383,295,266,307,256,242,222,999,178,155,139,102,105,320 +"2021","Bedford","E06000055",185224,11163,2163,2130,2243,2314,2313,11743,2348,2294,2294,2400,2407,14202,2403,2515,2434,2359,2262,2229,8093,2232,2217,1923,1721,9998,1717,1847,1959,2234,2241,25431,2256,2295,2407,2390,2534,2653,2671,2730,2844,2651,38530,2737,2652,2686,2554,2682,2834,2777,2500,2453,2388,2375,2429,2494,2452,2517,35041,2649,2488,2648,2631,2619,2523,2459,2443,2361,2250,2129,2095,2015,1938,1793,16714,1808,1708,1701,1553,1608,1622,1643,1608,1781,1682,10035,1288,1326,1302,1035,916,892,852,858,822,744,4274,645,635,560,449,379,1606,94097,5465,1050,1039,1130,1146,1100,5697,1123,1085,1123,1185,1181,6901,1149,1268,1201,1106,1108,1069,3776,1021,1055,889,811,4980,817,917,1012,1088,1146,13185,1123,1198,1209,1278,1328,1356,1372,1406,1533,1382,19609,1444,1403,1365,1281,1393,1434,1441,1246,1248,1196,1153,1243,1242,1314,1206,17628,1323,1240,1332,1299,1272,1244,1273,1281,1198,1150,1069,1026,1021,1014,886,8713,933,905,891,764,868,844,878,837,918,875,5465,664,728,692,573,484,505,473,453,480,413,2678,388,375,363,273,223,1056,91127,5698,1113,1091,1113,1168,1213,6046,1225,1209,1171,1215,1226,7301,1254,1247,1233,1253,1154,1160,4317,1211,1162,1034,910,5018,900,930,947,1146,1095,12246,1133,1097,1198,1112,1206,1297,1299,1324,1311,1269,18921,1293,1249,1321,1273,1289,1400,1336,1254,1205,1192,1222,1186,1252,1138,1311,17413,1326,1248,1316,1332,1347,1279,1186,1162,1163,1100,1060,1069,994,924,907,8001,875,803,810,789,740,778,765,771,863,807,4570,624,598,610,462,432,387,379,405,342,331,1596,257,260,197,176,156,550 +"2021","Central Bedfordshire","E06000056",294252,17805,3309,3562,3665,3567,3702,18521,3738,3660,3636,3729,3758,21166,3736,3631,3558,3503,3430,3308,11470,3178,3232,2769,2291,13985,2251,2495,2843,3159,3237,39160,3223,3439,3528,3763,4004,4082,4172,4247,4409,4293,59649,4232,4157,4095,4182,4108,4222,4072,3881,3564,3771,3639,3841,3741,3997,4147,59551,4324,4026,4220,4163,4339,4381,4296,4188,4119,3978,3843,3562,3507,3400,3205,29103,2971,3065,2922,2759,2696,2776,2852,2837,3144,3081,17539,2300,2408,2249,2041,1580,1467,1523,1426,1303,1242,6303,1128,945,780,693,597,2160,149120,8630,1591,1696,1761,1715,1867,9021,1792,1792,1779,1841,1817,10367,1851,1801,1721,1705,1686,1603,5460,1578,1546,1289,1047,6683,1026,1180,1428,1510,1539,20128,1646,1747,1771,1976,2024,2113,2167,2218,2239,2227,30476,2172,2125,2134,2118,2157,2141,2064,1985,1828,1898,1832,2015,1872,2063,2072,29964,2178,2047,2150,2093,2186,2230,2134,2108,2049,2054,1906,1818,1787,1654,1570,15171,1538,1571,1546,1427,1429,1436,1500,1488,1651,1585,9386,1200,1278,1184,1095,844,768,860,784,702,671,3834,657,565,442,405,359,1406,145132,9175,1718,1866,1904,1852,1835,9500,1946,1868,1857,1888,1941,10799,1885,1830,1837,1798,1744,1705,6010,1600,1686,1480,1244,7302,1225,1315,1415,1649,1698,19032,1577,1692,1757,1787,1980,1969,2005,2029,2170,2066,29173,2060,2032,1961,2064,1951,2081,2008,1896,1736,1873,1807,1826,1869,1934,2075,29587,2146,1979,2070,2070,2153,2151,2162,2080,2070,1924,1937,1744,1720,1746,1635,13932,1433,1494,1376,1332,1267,1340,1352,1349,1493,1496,8153,1100,1130,1065,946,736,699,663,642,601,571,2469,471,380,338,288,238,754 +"2021","Cambridge","E07000008",145681,6347,1224,1292,1274,1247,1310,6703,1276,1357,1333,1341,1396,7860,1376,1343,1336,1334,1256,1215,10315,1286,1265,2906,4858,20311,4120,4433,4611,3702,3445,29820,3454,3449,3461,3051,2857,3087,2883,2649,2564,2365,27654,2414,2127,1989,1999,1978,2123,1804,1944,1631,1640,1690,1501,1604,1581,1629,20053,1746,1444,1570,1498,1538,1494,1413,1344,1363,1308,1078,1046,1108,1070,1033,8698,977,945,944,839,853,860,800,835,787,858,5491,664,752,589,575,537,528,480,504,453,409,2429,332,337,295,271,210,984,72695,3060,578,612,627,599,644,3234,639,677,607,661,650,3844,679,677,667,616,615,590,5434,690,646,1519,2579,9785,2094,2045,2216,1837,1593,14545,1627,1622,1767,1365,1427,1428,1407,1405,1349,1148,13681,1138,1108,943,999,1007,1054,918,855,803,832,844,720,799,841,820,10050,905,719,752,750,892,763,699,702,643,615,521,542,524,511,512,4553,508,486,481,451,446,457,413,407,423,481,2986,342,400,331,286,293,290,270,267,261,246,1523,193,179,168,174,123,686,72986,3287,646,680,647,648,666,3469,637,680,726,680,746,4016,697,666,669,718,641,625,4881,596,619,1387,2279,10526,2026,2388,2395,1865,1852,15275,1827,1827,1694,1686,1430,1659,1476,1244,1215,1217,13973,1276,1019,1046,1000,971,1069,886,1089,828,808,846,781,805,740,809,10003,841,725,818,748,646,731,714,642,720,693,557,504,584,559,521,4145,469,459,463,388,407,403,387,428,364,377,2505,322,352,258,289,244,238,210,237,192,163,906,139,158,127,97,87,298 +"2021","East Cambridgeshire","E07000009",87769,4520,794,901,896,995,934,5271,1030,990,1010,1136,1105,6542,1186,1107,1119,1074,1039,1017,3430,982,984,832,632,3664,611,640,757,828,828,10170,915,891,985,941,982,1012,1050,1158,1139,1097,17990,1124,1132,1159,1134,1265,1227,1282,1184,1045,1186,1156,1238,1268,1274,1316,17959,1292,1321,1266,1272,1304,1314,1261,1203,1237,1149,1144,1107,1015,1085,989,9696,962,921,953,968,908,903,974,971,1056,1080,6078,766,857,720,656,571,538,567,475,481,447,2449,400,360,301,256,239,893,44712,2257,432,459,425,479,462,2618,488,520,506,562,542,3145,530,559,532,533,491,500,1594,457,470,385,282,1795,316,277,360,409,433,5140,460,444,494,481,500,511,525,594,582,549,9265,581,606,599,611,670,640,673,603,539,594,585,640,611,655,658,9114,666,670,645,660,665,629,648,609,597,595,590,580,510,542,508,5064,487,488,501,518,475,469,489,519,549,569,3230,376,467,387,362,288,274,290,273,269,244,1490,223,195,181,146,137,608,43057,2263,362,442,471,516,472,2653,542,470,504,574,563,3397,656,548,587,541,548,517,1836,525,514,447,350,1869,295,363,397,419,395,5030,455,447,491,460,482,501,525,564,557,548,8725,543,526,560,523,595,587,609,581,506,592,571,598,657,619,658,8845,626,651,621,612,639,685,613,594,640,554,554,527,505,543,481,4632,475,433,452,450,433,434,485,452,507,511,2848,390,390,333,294,283,264,277,202,212,203,959,177,165,120,110,102,285 +"2021","Fenland","E07000010",102465,5170,968,1039,1025,1071,1067,5759,1175,1117,1142,1168,1157,6700,1156,1106,1135,1096,1115,1092,3932,988,1098,997,849,5114,886,918,1086,1130,1094,12704,1147,1163,1249,1253,1354,1356,1286,1306,1296,1294,18126,1329,1229,1250,1176,1200,1239,1147,1166,1098,1069,1138,1187,1229,1281,1388,21554,1455,1472,1435,1502,1558,1483,1557,1507,1556,1422,1462,1316,1253,1296,1280,12480,1231,1217,1297,1204,1217,1163,1219,1257,1374,1301,7896,1058,1063,928,893,779,656,646,673,624,576,3030,457,437,371,338,311,1116,52264,2527,485,511,478,502,551,2780,551,540,566,580,543,3282,599,555,570,523,521,514,1919,483,550,483,403,2495,412,458,540,546,539,6417,567,577,637,636,700,661,673,665,653,648,9219,647,640,628,613,644,605,610,540,562,545,567,597,628,676,717,11038,766,747,726,757,824,742,798,765,795,738,758,670,654,650,648,6483,624,670,654,630,614,605,640,662,710,674,4167,546,528,479,463,401,374,351,384,336,305,1937,273,265,234,201,194,770,50201,2643,483,528,547,569,516,2979,624,577,576,588,614,3418,557,551,565,573,594,578,2013,505,548,514,446,2619,474,460,546,584,555,6287,580,586,612,617,654,695,613,641,643,646,8907,682,589,622,563,556,634,537,626,536,524,571,590,601,605,671,10516,689,725,709,745,734,741,759,742,761,684,704,646,599,646,632,5997,607,547,643,574,603,558,579,595,664,627,3729,512,535,449,430,378,282,295,289,288,271,1093,184,172,137,137,117,346 +"2021","Huntingdonshire","E07000011",180834,9659,1752,1941,1962,1995,2009,10610,2126,2056,2049,2207,2172,12304,2129,2099,2127,2041,1994,1914,6935,1984,1927,1655,1369,8505,1382,1492,1727,1912,1992,22837,1930,2055,2087,2228,2352,2363,2407,2437,2614,2364,35831,2431,2480,2465,2396,2343,2469,2398,2315,2163,2202,2255,2438,2400,2492,2584,37615,2720,2624,2653,2653,2601,2822,2640,2567,2638,2463,2434,2299,2303,2195,2003,19814,1965,2036,1908,1820,1841,1933,1934,2029,2193,2155,12466,1648,1754,1499,1432,1184,1128,1053,1030,930,808,4258,700,595,548,452,413,1550,91150,4708,858,955,938,979,978,5153,1052,1003,981,1081,1036,5944,1015,1003,1081,981,962,902,3296,929,927,791,649,4042,666,705,802,906,963,11548,929,1031,1088,1119,1210,1197,1245,1244,1297,1188,18083,1215,1250,1287,1207,1167,1250,1230,1151,1096,1064,1135,1223,1191,1286,1331,18829,1361,1320,1338,1306,1310,1410,1338,1277,1310,1253,1207,1148,1127,1097,1027,10329,1006,1030,1004,973,984,1019,997,1056,1122,1138,6630,830,898,779,769,627,604,611,572,502,438,2588,380,333,300,279,265,1031,89684,4951,894,986,1024,1016,1031,5457,1074,1053,1068,1126,1136,6360,1114,1096,1046,1060,1032,1012,3639,1055,1000,864,720,4463,716,787,925,1006,1029,11289,1001,1024,999,1109,1142,1166,1162,1193,1317,1176,17748,1216,1230,1178,1189,1176,1219,1168,1164,1067,1138,1120,1215,1209,1206,1253,18786,1359,1304,1315,1347,1291,1412,1302,1290,1328,1210,1227,1151,1176,1098,976,9485,959,1006,904,847,857,914,937,973,1071,1017,5836,818,856,720,663,557,524,442,458,428,370,1670,320,262,248,173,148,519 +"2021","South Cambridgeshire","E07000012",162106,8771,1589,1657,1800,1819,1906,10382,2110,1914,2021,2201,2136,12599,2169,2119,2160,2154,2030,1967,6723,1987,1848,1629,1259,6289,1085,1073,1239,1440,1452,18428,1576,1747,1562,1677,1759,1976,1923,2094,2033,2081,34820,2130,2210,2117,2168,2453,2389,2388,2427,2306,2329,2282,2339,2409,2403,2470,32294,2508,2347,2281,2376,2313,2248,2389,2266,2215,2052,2005,1866,1891,1851,1686,16584,1653,1631,1602,1609,1584,1580,1555,1610,1803,1957,10813,1384,1457,1318,1222,1009,890,985,919,846,783,4403,669,580,520,484,437,1713,82555,4311,814,772,901,875,949,5152,1052,925,1007,1122,1046,6082,1014,1039,1041,1025,986,977,3205,928,903,770,604,3018,507,528,569,702,712,9461,800,852,789,855,965,966,1001,1075,1053,1105,17839,1120,1136,1128,1139,1208,1217,1260,1207,1181,1206,1157,1175,1236,1206,1263,16416,1249,1254,1160,1224,1219,1128,1232,1173,1100,1010,1029,938,938,894,868,8663,850,839,848,842,828,812,785,862,958,1039,5790,734,731,676,664,530,482,574,510,455,434,2618,374,305,294,298,247,1100,79551,4460,775,885,899,944,957,5230,1058,989,1014,1079,1090,6517,1155,1080,1119,1129,1044,990,3518,1059,945,859,655,3271,578,545,670,738,740,8967,776,895,773,822,794,1010,922,1019,980,976,16981,1010,1074,989,1029,1245,1172,1128,1220,1125,1123,1125,1164,1173,1197,1207,15878,1259,1093,1121,1152,1094,1120,1157,1093,1115,1042,976,928,953,957,818,7921,803,792,754,767,756,768,770,748,845,918,5023,650,726,642,558,479,408,411,409,391,349,1785,295,275,226,186,190,613 +"2021","Basildon","E07000066",187581,12196,2250,2449,2537,2462,2498,12482,2510,2426,2490,2592,2464,14234,2469,2443,2371,2390,2354,2207,7987,2181,2185,1939,1682,9640,1606,1800,1953,2106,2175,26255,2237,2359,2494,2582,2592,2734,2750,2874,2871,2762,37107,2775,2706,2590,2556,2519,2575,2567,2370,2212,2333,2279,2358,2340,2448,2479,35780,2689,2487,2621,2650,2587,2535,2474,2522,2402,2357,2319,2122,2139,1989,1887,17150,1725,1760,1638,1610,1632,1552,1694,1689,1880,1970,10502,1409,1371,1201,1193,980,928,923,867,870,760,4248,704,644,553,489,433,1425,96510,5927,1092,1228,1197,1212,1198,6148,1197,1183,1269,1295,1204,6893,1193,1211,1144,1149,1137,1059,3854,1068,1035,924,827,4854,752,848,989,1128,1137,13767,1189,1196,1311,1349,1380,1438,1450,1524,1524,1406,19052,1424,1404,1362,1333,1329,1294,1380,1188,1103,1218,1176,1183,1154,1249,1255,18212,1391,1249,1346,1358,1289,1304,1272,1308,1202,1215,1187,1042,1057,1025,967,9188,882,938,891,877,892,808,884,949,996,1071,5908,743,753,677,662,547,522,535,512,517,440,2707,437,371,342,314,267,976,91071,6269,1158,1221,1340,1250,1300,6334,1313,1243,1221,1297,1260,7341,1276,1232,1227,1241,1217,1148,4133,1113,1150,1015,855,4786,854,952,964,978,1038,12488,1048,1163,1183,1233,1212,1296,1300,1350,1347,1356,18055,1351,1302,1228,1223,1190,1281,1187,1182,1109,1115,1103,1175,1186,1199,1224,17568,1298,1238,1275,1292,1298,1231,1202,1214,1200,1142,1132,1080,1082,964,920,7962,843,822,747,733,740,744,810,740,884,899,4594,666,618,524,531,433,406,388,355,353,320,1541,267,273,211,175,166,449 +"2021","Braintree","E07000067",155273,8453,1445,1666,1741,1802,1799,8981,1788,1736,1720,1845,1892,11265,1891,1980,1823,1890,1794,1887,6294,1741,1779,1480,1294,7536,1315,1339,1545,1611,1726,19096,1737,1727,1823,1911,1963,1950,1995,1992,2034,1964,29613,1987,1913,1971,1832,1948,2042,1919,1861,1842,1789,1887,2093,2098,2203,2228,32283,2348,2319,2337,2375,2481,2301,2284,2189,2215,2084,1980,1852,1850,1896,1772,17402,1686,1742,1727,1647,1583,1627,1656,1759,1952,2023,10498,1354,1463,1328,1254,950,946,886,897,743,677,3852,612,535,446,420,400,1439,79149,4096,712,785,889,868,842,4311,881,817,803,896,914,5515,915,963,875,926,894,942,3038,881,903,676,578,3633,606,626,720,796,885,9802,888,888,939,940,1013,1012,1020,1013,1063,1026,15167,1021,1008,1014,954,975,1064,996,940,950,915,982,1091,1042,1117,1098,16468,1185,1116,1213,1247,1247,1216,1161,1152,1150,1005,991,943,954,983,905,9065,832,909,882,861,814,832,897,900,1035,1103,5583,700,791,686,639,505,492,511,464,428,367,2471,364,308,263,253,261,1022,76124,4357,733,881,852,934,957,4670,907,919,917,949,978,5750,976,1017,948,964,900,945,3256,860,876,804,716,3903,709,713,825,815,841,9294,849,839,884,971,950,938,975,979,971,938,14446,966,905,957,878,973,978,923,921,892,874,905,1002,1056,1086,1130,15815,1163,1203,1124,1128,1234,1085,1123,1037,1065,1079,989,909,896,913,867,8337,854,833,845,786,769,795,759,859,917,920,4915,654,672,642,615,445,454,375,433,315,310,1381,248,227,183,167,139,417 +"2021","Brentwood","E07000068",77052,4280,801,858,879,843,899,4577,903,903,929,931,911,5323,878,863,921,899,900,862,3065,875,925,726,539,3633,559,641,729,825,879,9868,811,899,923,1064,1011,1092,985,1040,1014,1029,15063,1016,1026,989,976,1020,1069,995,975,959,994,938,1066,981,1026,1033,15709,1070,1095,1084,1136,1182,1127,1175,1103,1111,1115,989,909,886,914,813,7763,805,822,750,736,679,719,706,737,904,905,5166,632,731,564,584,419,410,485,470,442,429,2605,402,342,316,259,262,1024,39591,2060,388,422,425,369,456,2168,449,403,454,428,434,2613,419,419,448,436,456,435,1486,423,462,347,254,1818,273,294,374,433,444,4991,411,446,474,511,537,546,492,518,509,547,7826,520,543,526,516,574,546,501,510,476,540,483,508,521,523,539,8041,540,559,535,603,616,580,605,571,585,553,496,448,461,463,426,4024,423,407,378,381,346,374,376,366,480,493,2920,350,404,305,314,234,233,279,285,257,259,1644,233,209,193,161,168,680,37461,2220,413,436,454,474,443,2409,454,500,475,503,477,2710,459,444,473,463,444,427,1579,452,463,379,285,1815,286,347,355,392,435,4877,400,453,449,553,474,546,493,522,505,482,7237,496,483,463,460,446,523,494,465,483,454,455,558,460,503,494,7668,530,536,549,533,566,547,570,532,526,562,493,461,425,451,387,3739,382,415,372,355,333,345,330,371,424,412,2246,282,327,259,270,185,177,206,185,185,170,961,169,133,123,98,94,344 +"2021","Castle Point","E07000069",89580,4315,801,847,855,897,915,4837,961,925,984,998,969,6023,1045,982,1027,1035,971,963,3644,1017,999,884,744,4546,758,849,971,999,969,9822,873,970,989,996,1006,979,1018,1025,979,987,15268,1051,1012,989,926,1029,1051,1025,975,906,933,1003,1066,1043,1107,1152,18528,1223,1255,1310,1323,1323,1352,1296,1290,1272,1202,1210,1122,1119,1100,1131,11694,1008,1047,1090,1031,1082,1087,1182,1250,1451,1466,8065,1032,1098,979,931,790,714,709,626,640,546,2838,508,412,379,319,261,959,46222,2079,400,417,392,435,435,2344,463,443,490,484,464,3003,532,500,535,483,482,471,1760,496,469,438,357,2165,361,395,467,495,447,5008,428,470,507,484,521,525,513,560,476,524,7888,515,527,533,483,533,571,533,489,469,465,537,547,537,577,572,9417,648,658,663,668,641,682,653,678,643,597,591,565,588,568,574,6297,524,565,586,539,597,611,631,676,782,786,4509,562,581,535,482,467,415,396,384,384,303,1752,292,230,227,191,173,639,43358,2236,401,430,463,462,480,2493,498,482,494,514,505,3020,513,482,492,552,489,492,1884,521,530,446,387,2381,397,454,504,504,522,4814,445,500,482,512,485,454,505,465,503,463,7380,536,485,456,443,496,480,492,486,437,468,466,519,506,530,580,9111,575,597,647,655,682,670,643,612,629,605,619,557,531,532,557,5397,484,482,504,492,485,476,551,574,669,680,3556,470,517,444,449,323,299,313,242,256,243,1086,216,182,152,128,88,320 +"2021","Chelmsford","E07000070",181519,9882,1805,1882,1952,2057,2186,10792,2117,2128,2144,2149,2254,13111,2215,2213,2188,2242,2094,2159,7611,2142,2024,1872,1573,9109,1590,1669,1805,1983,2062,23837,2099,2175,2381,2404,2452,2516,2423,2425,2526,2436,36884,2405,2397,2414,2494,2584,2552,2562,2412,2301,2320,2406,2435,2431,2551,2620,35134,2664,2555,2532,2624,2521,2537,2400,2441,2321,2369,2188,2067,2002,1970,1943,18435,1911,1749,1707,1759,1654,1728,1780,1827,2128,2192,11889,1606,1556,1420,1352,1070,1000,1023,994,964,904,4835,779,736,584,510,477,1749,92489,4858,875,878,978,1050,1077,5161,974,1012,1042,1047,1086,6387,1082,1094,1059,1081,1046,1025,3713,1037,984,913,779,4505,775,855,882,980,1013,12326,1077,1118,1190,1251,1245,1309,1272,1272,1343,1249,18757,1267,1246,1222,1251,1342,1308,1322,1246,1166,1188,1187,1202,1230,1315,1265,17740,1336,1293,1252,1389,1255,1303,1183,1217,1181,1200,1133,997,1001,1041,959,9674,978,914,861,889,867,908,949,991,1122,1195,6433,824,821,753,695,611,555,576,563,533,502,2935,462,405,349,295,290,1134,89030,5024,930,1004,974,1007,1109,5631,1143,1116,1102,1102,1168,6724,1133,1119,1129,1161,1048,1134,3898,1105,1040,959,794,4604,815,814,923,1003,1049,11511,1022,1057,1191,1153,1207,1207,1151,1153,1183,1187,18127,1138,1151,1192,1243,1242,1244,1240,1166,1135,1132,1219,1233,1201,1236,1355,17394,1328,1262,1280,1235,1266,1234,1217,1224,1140,1169,1055,1070,1001,929,984,8761,933,835,846,870,787,820,831,836,1006,997,5456,782,735,667,657,459,445,447,431,431,402,1900,317,331,235,215,187,615 +"2021","Colchester","E07000071",192718,10830,2006,2109,2195,2248,2272,11793,2298,2349,2367,2420,2359,13750,2413,2416,2315,2289,2180,2137,9125,2120,2062,2197,2746,13876,3204,3068,2757,2521,2326,26083,2343,2396,2564,2579,2689,2716,2577,2832,2797,2590,37898,2648,2559,2531,2556,2611,2639,2623,2532,2361,2423,2269,2491,2493,2547,2615,35049,2682,2545,2609,2569,2628,2569,2482,2405,2308,2230,2213,2007,2027,1910,1865,18296,1711,1703,1750,1759,1669,1740,1803,1924,2112,2125,11499,1447,1641,1419,1315,1111,958,1031,934,879,764,4519,703,628,575,516,423,1674,98449,5269,986,1017,1072,1082,1112,5774,1124,1145,1158,1171,1176,6709,1139,1180,1138,1102,1113,1037,4535,1016,1016,1110,1393,6804,1598,1457,1361,1273,1115,13411,1179,1218,1328,1304,1372,1393,1338,1501,1445,1333,19321,1399,1323,1287,1349,1353,1355,1361,1296,1216,1190,1191,1211,1247,1286,1257,17899,1359,1265,1388,1275,1344,1332,1281,1265,1194,1053,1114,1035,1040,974,980,9666,883,922,957,915,815,921,1000,1038,1075,1140,6262,745,894,756,716,597,572,574,512,454,442,2799,401,359,325,299,256,1159,94269,5561,1020,1092,1123,1166,1160,6019,1174,1204,1209,1249,1183,7041,1274,1236,1177,1187,1067,1100,4590,1104,1046,1087,1353,7072,1606,1611,1396,1248,1211,12672,1164,1178,1236,1275,1317,1323,1239,1331,1352,1257,18577,1249,1236,1244,1207,1258,1284,1262,1236,1145,1233,1078,1280,1246,1261,1358,17150,1323,1280,1221,1294,1284,1237,1201,1140,1114,1177,1099,972,987,936,885,8630,828,781,793,844,854,819,803,886,1037,985,5237,702,747,663,599,514,386,457,422,425,322,1720,302,269,250,217,167,515 +"2021","Epping Forest","E07000072",134978,7922,1511,1664,1617,1587,1543,7687,1607,1445,1487,1556,1592,9441,1554,1626,1575,1605,1543,1538,5493,1512,1550,1311,1120,6842,1191,1241,1384,1499,1527,16434,1442,1506,1487,1560,1581,1699,1792,1808,1794,1765,26985,1769,1769,1772,1846,1838,1946,1894,1751,1765,1733,1662,1766,1743,1862,1869,27910,2034,1945,2006,1937,2043,2027,2133,1934,1865,1885,1872,1661,1594,1481,1493,13725,1404,1411,1361,1310,1248,1285,1273,1351,1505,1577,8772,1081,1228,1019,1038,803,745,749,772,709,628,3767,576,482,439,395,413,1462,69389,3817,747,776,734,778,782,3827,800,749,742,744,792,4542,751,776,789,746,742,738,2617,725,770,611,511,3284,560,608,654,748,714,8538,700,754,772,818,827,899,954,953,944,917,14006,967,957,916,980,943,998,961,906,912,899,853,915,884,952,963,14403,1062,1020,1056,1023,1047,1063,1132,1003,972,944,953,806,813,752,757,7186,716,717,730,704,677,675,642,711,781,833,4797,586,647,522,573,443,403,421,434,411,357,2372,324,269,278,229,276,996,65589,4105,764,888,883,809,761,3860,807,696,745,812,800,4899,803,850,786,859,801,800,2876,787,780,700,609,3558,631,633,730,751,813,7896,742,752,715,742,754,800,838,855,850,848,12979,802,812,856,866,895,948,933,845,853,834,809,851,859,910,906,13507,972,925,950,914,996,964,1001,931,893,941,919,855,781,729,736,6539,688,694,631,606,571,610,631,640,724,744,3975,495,581,497,465,360,342,328,338,298,271,1395,252,213,161,166,137,466 +"2021","Harlow","E07000073",93323,6251,1190,1223,1249,1269,1320,6564,1269,1326,1323,1323,1323,7410,1296,1331,1255,1315,1140,1073,3987,1106,1052,925,904,4896,831,927,974,1019,1145,14177,1139,1192,1355,1283,1467,1486,1540,1527,1584,1604,19575,1472,1542,1485,1466,1482,1403,1379,1334,1209,1176,1098,1164,1065,1141,1159,16850,1219,1162,1192,1170,1287,1164,1219,1177,1127,1158,1076,1027,980,996,896,7432,906,860,793,773,694,696,634,654,730,692,4238,504,574,486,499,375,378,377,377,348,320,1943,282,278,250,216,204,713,47916,3058,571,617,594,622,654,3192,586,654,672,633,647,3587,640,667,600,632,537,511,1905,527,501,448,429,2416,385,434,485,511,601,7575,592,636,701,671,837,800,845,800,853,840,10016,733,807,790,765,767,702,711,689,611,574,586,594,523,569,595,8556,623,616,620,592,647,572,615,591,554,578,553,522,493,510,470,3875,444,427,426,400,356,381,335,336,410,360,2458,285,326,277,297,209,221,210,238,213,182,1278,186,186,157,134,141,474,45407,3193,619,606,655,647,666,3372,683,672,651,690,676,3823,656,664,655,683,603,562,2082,579,551,477,475,2480,446,493,489,508,544,6602,547,556,654,612,630,686,695,727,731,764,9559,739,735,695,701,715,701,668,645,598,602,512,570,542,572,564,8294,596,546,572,578,640,592,604,586,573,580,523,505,487,486,426,3557,462,433,367,373,338,315,299,318,320,332,1780,219,248,209,202,166,157,167,139,135,138,665,96,92,93,82,63,239 +"2021","Maldon","E07000074",66208,3040,556,574,610,668,632,3418,696,638,682,726,676,4319,730,736,736,698,731,688,2688,750,710,676,552,3128,515,603,681,679,650,6738,698,668,666,670,652,700,672,706,661,645,11005,691,666,674,629,715,731,730,698,621,667,783,814,814,846,926,15316,1001,1011,1055,1093,1135,1129,1091,1020,1010,973,1015,997,934,971,881,8868,884,827,876,770,826,815,902,898,1031,1039,5664,768,834,707,588,523,460,499,473,441,371,2024,362,284,240,228,204,706,33814,1509,279,296,316,320,298,1654,329,305,335,369,316,2086,349,360,376,332,354,315,1284,359,337,342,246,1499,216,287,338,345,313,3457,335,329,320,363,343,366,340,358,360,343,5753,328,343,362,325,370,379,392,382,316,340,400,420,454,453,489,7804,521,532,554,575,591,579,521,515,524,487,490,494,473,505,443,4543,447,421,448,380,419,404,468,468,532,556,2993,392,427,362,319,279,246,269,256,244,199,1232,203,147,136,127,135,484,32394,1531,277,278,294,348,334,1764,367,333,347,357,360,2233,381,376,360,366,377,373,1404,391,373,334,306,1629,299,316,343,334,337,3281,363,339,346,307,309,334,332,348,301,302,5252,363,323,312,304,345,352,338,316,305,327,383,394,360,393,437,7512,480,479,501,518,544,550,570,505,486,486,525,503,461,466,438,4325,437,406,428,390,407,411,434,430,499,483,2671,376,407,345,269,244,214,230,217,197,172,792,159,137,104,101,69,222 +"2021","Rochford","E07000075",85666,4262,793,840,830,894,905,4614,874,892,938,950,960,6078,1033,1042,1028,1000,1039,936,3517,989,991,807,730,4197,710,802,845,962,878,9141,892,867,868,892,954,933,884,919,970,962,15486,978,961,975,1001,969,1059,1014,1031,913,1012,1048,1013,1111,1141,1260,18366,1249,1316,1337,1260,1393,1270,1316,1226,1256,1276,1108,1155,1111,1039,1054,10296,975,930,952,963,930,909,1022,1068,1211,1336,6949,915,913,860,767,656,562,614,587,555,520,2760,449,421,354,325,291,920,44161,2150,421,443,429,420,437,2243,402,480,473,442,446,2940,512,512,490,473,491,462,1695,496,469,384,346,1999,336,403,409,445,406,4713,450,439,430,451,496,479,466,456,515,531,8010,483,495,516,521,497,548,553,532,459,540,542,498,578,611,637,9407,656,671,693,654,728,614,667,629,654,673,574,580,560,519,535,5452,507,494,502,496,490,506,547,566,648,696,3827,509,488,466,427,369,311,337,329,310,281,1725,279,249,194,191,171,641,41505,2112,372,397,401,474,468,2371,472,412,465,508,514,3138,521,530,538,527,548,474,1822,493,522,423,384,2198,374,399,436,517,472,4428,442,428,438,441,458,454,418,463,455,431,7476,495,466,459,480,472,511,461,499,454,472,506,515,533,530,623,8959,593,645,644,606,665,656,649,597,602,603,534,575,551,520,519,4844,468,436,450,467,440,403,475,502,563,640,3122,406,425,394,340,287,251,277,258,245,239,1035,170,172,160,134,120,279 +"2021","Tendring","E07000076",148290,6690,1259,1324,1283,1421,1403,7530,1433,1479,1480,1557,1581,9183,1582,1578,1548,1548,1504,1423,5461,1473,1488,1371,1129,6767,1238,1277,1365,1451,1436,14793,1403,1392,1491,1418,1532,1504,1559,1477,1514,1503,22022,1421,1432,1338,1336,1374,1560,1398,1319,1365,1332,1462,1550,1540,1767,1828,31972,1867,1876,2056,2125,2181,2197,2239,2249,2183,2237,2220,2122,2145,2220,2055,22397,1986,2056,2070,2182,2024,2108,2222,2318,2665,2766,15470,1977,2049,1985,1771,1449,1340,1374,1294,1162,1069,6005,976,880,736,636,559,2218,76816,3258,575,663,643,667,710,3674,723,658,730,794,769,4540,784,727,799,784,749,697,2585,697,708,673,507,3304,585,624,678,736,681,7636,673,701,771,750,842,775,797,764,770,793,11523,740,782,697,666,707,834,727,696,745,680,762,817,833,917,920,16506,960,967,1070,1116,1057,1118,1159,1216,1160,1150,1135,1079,1091,1171,1057,11820,1053,1070,1122,1090,1077,1147,1193,1205,1430,1433,8254,1052,1070,1043,923,805,715,722,704,636,584,3716,538,507,444,388,328,1511,71474,3432,684,661,640,754,693,3856,710,821,750,763,812,4643,798,851,749,764,755,726,2876,776,780,698,622,3463,653,653,687,715,755,7157,730,691,720,668,690,729,762,713,744,710,10499,681,650,641,670,667,726,671,623,620,652,700,733,707,850,908,15466,907,909,986,1009,1124,1079,1080,1033,1023,1087,1085,1043,1054,1049,998,10577,933,986,948,1092,947,961,1029,1113,1235,1333,7216,925,979,942,848,644,625,652,590,526,485,2289,438,373,292,248,231,707 +"2021","Uttlesford","E07000077",91348,5026,833,1009,1034,1014,1136,5718,1142,1151,1086,1181,1158,7079,1276,1166,1105,1158,1209,1165,3835,1111,1154,925,645,3914,649,752,780,910,823,9558,816,849,867,872,994,975,973,1058,1109,1045,18043,1124,1128,1069,1179,1247,1234,1237,1234,1156,1124,1144,1188,1283,1312,1384,19750,1394,1375,1450,1390,1464,1381,1407,1397,1375,1271,1241,1237,1167,1133,1068,9803,1022,934,982,959,924,924,938,1013,1042,1065,6061,813,842,785,648,584,505,574,472,459,379,2561,372,348,318,274,258,991,46696,2422,400,476,484,509,553,2826,562,598,522,586,558,3428,568,610,540,554,584,572,1872,558,584,433,297,1884,300,380,352,453,399,5005,424,390,437,452,521,520,539,563,602,557,9345,602,584,557,607,660,634,631,626,608,576,584,640,657,671,708,10078,718,717,748,681,757,721,728,740,683,649,624,622,568,594,528,5013,512,475,494,480,480,491,464,528,544,545,3200,410,418,410,351,307,280,307,276,233,208,1623,227,200,181,170,157,688,44652,2604,433,533,550,505,583,2892,580,553,564,595,600,3651,708,556,565,604,625,593,1963,553,570,492,348,2030,349,372,428,457,424,4553,392,459,430,420,473,455,434,495,507,488,8698,522,544,512,572,587,600,606,608,548,548,560,548,626,641,676,9672,676,658,702,709,707,660,679,657,692,622,617,615,599,539,540,4790,510,459,488,479,444,433,474,485,498,520,2861,403,424,375,297,277,225,267,196,226,171,938,145,148,137,104,101,303 +"2021","Broxbourne","E07000095",99002,5945,1116,1115,1250,1241,1223,6172,1207,1232,1213,1264,1256,7456,1310,1252,1228,1240,1252,1174,4311,1187,1144,1033,947,5195,895,958,1061,1139,1142,13092,1137,1205,1192,1240,1314,1340,1368,1396,1428,1472,20240,1447,1465,1373,1396,1435,1466,1432,1354,1189,1245,1213,1301,1215,1303,1406,19353,1431,1401,1421,1417,1472,1419,1392,1308,1366,1272,1221,1084,1104,1029,1016,8815,918,847,863,877,807,824,813,854,952,1060,5945,707,787,689,676,538,525,517,569,473,464,2478,409,378,295,269,256,871,51128,2956,569,543,596,621,627,3075,605,616,616,624,614,3627,629,635,580,611,600,572,2000,574,553,475,398,2497,400,445,519,543,590,6807,563,617,632,648,641,735,728,721,727,795,10615,782,789,772,722,740,793,754,663,595,637,650,659,606,684,769,9942,740,701,751,734,769,752,694,666,734,615,627,546,582,531,500,4727,497,436,453,466,443,424,440,457,530,581,3320,375,418,379,377,309,305,329,326,264,238,1562,252,242,171,175,151,571,47874,2989,547,572,654,620,596,3097,602,616,597,640,642,3829,681,617,648,629,652,602,2311,613,591,558,549,2698,495,513,542,596,552,6285,574,588,560,592,673,605,640,675,701,677,9625,665,676,601,674,695,673,678,691,594,608,563,642,609,619,637,9411,691,700,670,683,703,667,698,642,632,657,594,538,522,498,516,4088,421,411,410,411,364,400,373,397,422,479,2625,332,369,310,299,229,220,188,243,209,226,916,157,136,124,94,105,300 +"2021","Dacorum","E07000096",155085,9583,1786,1874,1919,1971,2033,9928,2022,1953,2007,1951,1995,11791,2079,2058,2030,1947,1854,1823,6214,1763,1854,1473,1124,7104,1131,1239,1423,1618,1693,19974,1664,1769,1766,1930,1982,2068,2114,2120,2339,2222,32864,2233,2152,2201,2251,2267,2315,2317,2272,2047,2078,2117,2090,2031,2207,2286,30661,2236,2104,2198,2162,2147,2229,2140,2154,2156,2059,1933,1842,1854,1740,1707,14296,1612,1461,1494,1360,1343,1348,1354,1395,1476,1453,8658,1083,1133,1075,971,761,743,781,774,684,653,4012,579,539,485,450,430,1529,78958,4679,893,930,928,923,1005,4884,987,959,1013,939,986,5725,1001,1001,991,952,891,889,2971,861,895,700,515,3460,534,606,712,792,816,10241,828,872,936,983,1031,1052,1089,1081,1205,1164,16740,1126,1104,1117,1171,1161,1226,1207,1163,1065,1005,1065,1029,1007,1123,1171,15533,1114,1070,1105,1143,1093,1154,1061,1048,1090,1058,983,908,950,894,862,7437,825,725,749,726,651,700,720,761,777,803,4791,579,593,570,518,442,418,444,427,416,384,2497,332,309,304,272,262,1018,76127,4904,893,944,991,1048,1028,5044,1035,994,994,1012,1009,6066,1078,1057,1039,995,963,934,3243,902,959,773,609,3644,597,633,711,826,877,9733,836,897,830,947,951,1016,1025,1039,1134,1058,16124,1107,1048,1084,1080,1106,1089,1110,1109,982,1073,1052,1061,1024,1084,1115,15128,1122,1034,1093,1019,1054,1075,1079,1106,1066,1001,950,934,904,846,845,6859,787,736,745,634,692,648,634,634,699,650,3867,504,540,505,453,319,325,337,347,268,269,1515,247,230,181,178,168,511 +"2021","Hertsmere","E07000098",107825,6296,1192,1292,1242,1300,1270,6850,1415,1308,1387,1334,1406,8489,1410,1447,1427,1448,1365,1392,4716,1407,1392,1113,804,5445,840,951,1137,1281,1236,12914,1249,1286,1200,1210,1214,1337,1309,1327,1395,1387,22961,1487,1535,1498,1560,1564,1649,1617,1583,1501,1463,1506,1476,1527,1469,1526,21020,1532,1457,1538,1558,1478,1585,1575,1482,1439,1381,1349,1250,1232,1090,1074,9839,1039,1036,976,906,912,944,947,984,1016,1079,6328,791,868,744,718,549,518,573,535,568,464,2967,463,409,348,315,292,1140,56031,3075,593,624,610,624,624,3387,707,631,699,649,701,4149,682,720,667,697,688,695,2295,675,692,544,384,2768,390,462,582,681,653,6753,648,659,613,636,630,702,693,691,725,756,12011,768,831,776,822,860,892,870,792,788,740,775,789,772,757,779,10889,801,789,812,817,790,813,836,775,721,701,715,624,626,542,527,5243,554,559,500,446,478,511,526,534,548,587,3569,442,474,399,400,325,301,327,313,331,257,1892,275,239,218,202,185,773,51794,3221,599,668,632,676,646,3463,708,677,688,685,705,4340,728,727,760,751,677,697,2421,732,700,569,420,2677,450,489,555,600,583,6161,601,627,587,574,584,635,616,636,670,631,10950,719,704,722,738,704,757,747,791,713,723,731,687,755,712,747,10131,731,668,726,741,688,772,739,707,718,680,634,626,606,548,547,4596,485,477,476,460,434,433,421,450,468,492,2759,349,394,345,318,224,217,246,222,237,207,1075,188,170,130,113,107,367 +"2021","North Hertfordshire","E07000099",133209,7466,1409,1518,1507,1514,1518,8237,1623,1540,1666,1693,1715,9761,1728,1698,1647,1652,1544,1492,5162,1526,1472,1193,971,5839,902,1001,1171,1347,1418,16309,1410,1443,1483,1630,1665,1688,1706,1710,1795,1779,27945,1777,1728,1863,1756,1889,1984,1997,1868,1812,1739,1762,1939,1903,1892,2036,26656,1887,1832,1948,1875,1925,2078,1916,1884,1820,1729,1686,1607,1600,1446,1423,13292,1376,1340,1296,1298,1234,1288,1323,1291,1435,1411,8676,1004,1152,1025,1007,825,767,725,761,718,692,3866,607,562,487,422,378,1410,68474,3664,697,725,752,773,717,3987,767,747,826,798,849,4796,851,822,811,801,748,763,2506,755,706,595,450,2948,426,516,607,692,707,8381,681,734,746,818,851,873,887,912,927,952,14551,916,899,985,925,967,1082,1038,987,904,915,910,1003,965,961,1094,13480,983,910,994,920,1002,1081,991,944,916,862,834,802,775,717,749,6976,686,703,652,692,649,669,689,710,758,768,4752,523,603,572,506,466,409,430,448,393,402,2433,350,335,293,256,243,956,64735,3802,712,793,755,741,801,4250,856,793,840,895,866,4965,877,876,836,851,796,729,2656,771,766,598,521,2891,476,485,564,655,711,7928,729,709,737,812,814,815,819,798,868,827,13394,861,829,878,831,922,902,959,881,908,824,852,936,938,931,942,13176,904,922,954,955,923,997,925,940,904,867,852,805,825,729,674,6316,690,637,644,606,585,619,634,581,677,643,3924,481,549,453,501,359,358,295,313,325,290,1433,257,227,194,166,135,454 +"2021","Three Rivers","E07000102",93780,5120,977,992,1057,1012,1082,5971,1131,1165,1161,1269,1245,7676,1356,1287,1315,1263,1237,1218,4122,1225,1230,933,734,4416,709,725,946,1024,1012,10289,965,896,950,991,1025,1066,1056,1040,1152,1148,20121,1139,1168,1309,1257,1418,1434,1456,1361,1342,1311,1339,1425,1355,1355,1452,19090,1374,1344,1447,1388,1372,1406,1389,1377,1288,1285,1169,1108,1122,1027,994,8896,956,947,859,837,832,820,856,861,965,963,5554,701,773,662,637,514,468,490,450,434,425,2525,403,353,321,307,255,886,48130,2531,477,494,525,488,547,2927,556,567,547,631,626,3772,681,635,632,607,623,594,2046,626,625,450,345,2058,318,317,461,480,482,5347,457,455,478,532,549,555,547,573,600,601,10495,626,636,726,672,725,778,767,726,679,635,687,727,695,675,741,9715,687,684,737,701,730,697,720,674,660,645,613,553,579,520,515,4641,511,471,445,439,427,425,449,449,519,506,3063,371,408,341,343,281,283,272,262,258,244,1535,225,205,175,193,161,576,45650,2589,500,498,532,524,535,3044,575,598,614,638,619,3904,675,652,683,656,614,624,2076,599,605,483,389,2358,391,408,485,544,530,4942,508,441,472,459,476,511,509,467,552,547,9626,513,532,583,585,693,656,689,635,663,676,652,698,660,680,711,9375,687,660,710,687,642,709,669,703,628,640,556,555,543,507,479,4255,445,476,414,398,405,395,407,412,446,457,2491,330,365,321,294,233,185,218,188,176,181,990,178,148,146,114,94,310 +"2021","Watford","E07000103",102247,6529,1271,1287,1335,1305,1331,6836,1340,1421,1314,1389,1372,7919,1397,1352,1345,1355,1262,1208,4335,1247,1203,1061,824,5332,814,887,1059,1245,1327,16515,1365,1413,1541,1655,1723,1738,1670,1806,1772,1832,24622,1843,1820,1744,1782,1786,1784,1714,1660,1576,1604,1503,1482,1480,1407,1437,17266,1440,1408,1334,1361,1254,1273,1146,1168,1135,1112,1017,995,968,862,793,6892,769,792,724,682,647,671,626,621,705,655,4199,535,530,486,480,401,342,353,397,329,346,1802,263,247,218,206,183,685,51897,3154,633,626,633,614,648,3395,652,714,631,673,725,3856,683,669,683,617,613,591,2028,599,586,470,373,2643,381,397,541,638,686,8614,729,725,804,880,908,909,849,891,973,946,12521,954,943,902,944,897,924,903,848,786,815,734,715,693,719,744,8597,736,687,672,709,615,658,577,556,543,540,511,493,483,424,393,3596,392,419,373,344,328,361,341,329,371,338,2322,273,283,271,268,226,191,199,230,178,203,1171,168,148,127,134,101,493,50350,3375,638,661,702,691,683,3441,688,707,683,716,647,4063,714,683,662,738,649,617,2307,648,617,591,451,2689,433,490,518,607,641,7901,636,688,737,775,815,829,821,915,799,886,12101,889,877,842,838,889,860,811,812,790,789,769,767,787,688,693,8669,704,721,662,652,639,615,569,612,592,572,506,502,485,438,400,3296,377,373,351,338,319,310,285,292,334,317,1877,262,247,215,212,175,151,154,167,151,143,631,95,99,91,72,82,192 +"2021","Breckland","E07000143",141478,6785,1224,1318,1399,1396,1448,7671,1495,1455,1554,1598,1569,9168,1573,1523,1563,1542,1519,1448,5212,1435,1386,1258,1133,6737,1170,1200,1363,1452,1552,16602,1616,1576,1587,1583,1743,1741,1690,1694,1673,1699,24109,1548,1609,1512,1566,1573,1669,1650,1532,1413,1471,1448,1649,1756,1779,1934,29895,1969,1988,2057,1958,2097,2171,2096,2125,2121,2016,1986,1869,1829,1839,1774,18484,1749,1744,1779,1750,1760,1783,1781,1907,2068,2163,12142,1597,1634,1491,1361,1168,1039,1041,978,963,870,4673,771,676,618,469,461,1678,71355,3281,578,661,700,639,703,3734,702,702,754,787,789,4416,764,732,749,738,715,718,2478,676,651,598,553,3175,563,539,656,679,738,8154,785,776,767,732,919,839,807,848,821,860,12162,781,783,760,810,799,803,802,826,693,739,776,799,890,900,1001,15192,983,1017,1025,1018,1055,1115,1051,1078,1080,1021,990,942,912,948,957,9606,898,861,907,927,931,925,932,1023,1069,1133,6304,793,846,741,682,609,550,558,520,517,488,2853,436,374,372,266,273,1132,70123,3504,646,657,699,757,745,3937,793,753,800,811,780,4752,809,791,814,804,804,730,2734,759,735,660,580,3562,607,661,707,773,814,8448,831,800,820,851,824,902,883,846,852,839,11947,767,826,752,756,774,866,848,706,720,732,672,850,866,879,933,14703,986,971,1032,940,1042,1056,1045,1047,1041,995,996,927,917,891,817,8878,851,883,872,823,829,858,849,884,999,1030,5838,804,788,750,679,559,489,483,458,446,382,1820,335,302,246,203,188,546 +"2021","Broadland","E07000144",131713,5934,1015,1112,1254,1242,1311,6837,1351,1282,1320,1454,1430,8441,1454,1417,1443,1422,1422,1283,5041,1391,1387,1236,1027,5533,1013,982,1145,1168,1225,13638,1220,1322,1252,1336,1357,1369,1415,1458,1467,1442,23587,1497,1463,1472,1424,1554,1568,1584,1506,1483,1428,1480,1663,1766,1822,1877,28632,1891,1947,2041,2024,1984,2046,2029,2016,1944,1924,1895,1733,1765,1661,1732,17403,1670,1633,1642,1629,1588,1660,1723,1826,1995,2037,11834,1488,1618,1364,1317,1079,1075,1058,1008,969,858,4833,758,692,591,550,465,1777,67455,2850,470,545,624,576,635,3368,691,621,667,699,690,4058,694,652,710,683,684,635,2448,651,702,577,518,2665,459,462,569,576,599,6956,629,657,665,663,689,692,719,760,743,739,12158,767,736,764,772,814,818,811,818,740,724,767,845,910,917,955,14629,974,989,1050,1012,1002,1061,1050,994,1005,960,967,885,936,851,893,9113,878,856,873,848,835,884,887,939,1040,1073,6261,779,862,710,711,511,586,573,554,506,469,2949,447,401,344,313,285,1159,64258,3084,545,567,630,666,676,3469,660,661,653,755,740,4383,760,765,733,739,738,648,2593,740,685,659,509,2868,554,520,576,592,626,6682,591,665,587,673,668,677,696,698,724,703,11429,730,727,708,652,740,750,773,688,743,704,713,818,856,905,922,14003,917,958,991,1012,982,985,979,1022,939,964,928,848,829,810,839,8290,792,777,769,781,753,776,836,887,955,964,5573,709,756,654,606,568,489,485,454,463,389,1884,311,291,247,237,180,618 +"2021","Great Yarmouth","E07000145",99738,4950,922,951,981,1017,1079,5363,1020,1087,1053,1105,1098,6709,1152,1175,1097,1159,1091,1035,4073,1052,1095,1029,897,5025,856,972,1062,1044,1091,11693,1119,1090,1072,1234,1196,1193,1191,1195,1181,1222,16882,1162,1096,1141,1087,1109,1086,1143,1102,963,1026,1123,1088,1162,1276,1318,21105,1379,1402,1448,1429,1471,1415,1551,1545,1450,1388,1354,1320,1361,1311,1281,12772,1237,1260,1219,1232,1211,1218,1224,1305,1380,1486,8202,1089,1126,1038,949,817,704,664,696,595,524,2964,451,407,366,335,316,1089,50846,2383,449,468,456,482,528,2593,525,525,509,547,487,3274,546,580,551,546,539,512,1974,507,538,493,436,2489,408,468,531,520,562,6001,551,544,564,633,633,630,608,609,618,611,8635,581,567,538,603,582,564,556,526,493,544,564,572,613,660,672,10910,712,706,757,744,760,749,807,824,745,708,689,656,710,661,682,6449,617,612,607,657,581,649,611,657,668,790,4326,569,591,549,493,430,381,335,364,309,305,1812,262,235,216,199,190,710,48892,2567,473,483,525,535,551,2770,495,562,544,558,611,3435,606,595,546,613,552,523,2099,545,557,536,461,2536,448,504,531,524,529,5692,568,546,508,601,563,563,583,586,563,611,8247,581,529,603,484,527,522,587,576,470,482,559,516,549,616,646,10195,667,696,691,685,711,666,744,721,705,680,665,664,651,650,599,6323,620,648,612,575,630,569,613,648,712,696,3876,520,535,489,456,387,323,329,332,286,219,1152,189,172,150,136,126,379 +"2021","King's Lynn and West Norfolk","E07000146",154334,7260,1364,1403,1481,1461,1551,8366,1674,1644,1641,1739,1668,9808,1686,1693,1655,1621,1604,1549,5667,1504,1520,1421,1222,7178,1258,1314,1476,1574,1556,17742,1716,1601,1745,1810,1751,1821,1841,1799,1861,1797,25728,1828,1806,1658,1632,1623,1716,1628,1547,1561,1589,1620,1680,1897,1870,2073,32649,2091,2079,2230,2179,2101,2286,2321,2367,2219,2248,2231,2078,2102,2071,2046,20595,2045,1910,1929,1955,1949,1942,2046,2112,2326,2381,13896,1792,1831,1670,1573,1369,1212,1241,1172,1068,968,5445,899,763,701,621,529,1932,78970,3518,667,718,686,706,741,4085,821,815,808,838,803,4845,867,874,827,792,764,721,2674,657,749,683,585,3461,596,631,713,753,768,9029,839,838,848,848,911,924,980,954,986,901,13183,903,945,850,855,841,885,799,750,812,806,835,860,987,967,1088,16709,1089,1062,1139,1116,1024,1124,1205,1183,1170,1146,1162,1049,1109,1083,1048,10785,1098,999,1007,1040,1008,996,1078,1121,1206,1232,7385,922,936,884,842,734,686,660,628,586,507,3296,528,444,389,340,316,1279,75364,3742,697,685,795,755,810,4281,853,829,833,901,865,4963,819,819,828,829,840,828,2993,847,771,738,637,3717,662,683,763,821,788,8713,877,763,897,962,840,897,861,845,875,896,12545,925,861,808,777,782,831,829,797,749,783,785,820,910,903,985,15940,1002,1017,1091,1063,1077,1162,1116,1184,1049,1102,1069,1029,993,988,998,9810,947,911,922,915,941,946,968,991,1120,1149,6511,870,895,786,731,635,526,581,544,482,461,2149,371,319,312,281,213,653 +"2021","North Norfolk","E07000147",102985,3668,629,695,730,789,825,4425,841,858,875,870,981,5748,977,946,989,957,945,934,3472,983,943,851,695,3883,648,717,765,868,885,8937,817,878,862,862,890,918,927,892,959,932,14608,934,926,916,906,893,949,874,836,862,977,952,983,1065,1187,1348,23744,1341,1375,1375,1428,1548,1544,1610,1700,1591,1676,1719,1674,1764,1745,1654,17793,1630,1653,1663,1687,1710,1701,1819,1807,2007,2116,11782,1547,1549,1478,1338,1107,989,993,947,973,861,4925,802,691,600,567,467,1798,52681,1735,298,295,352,412,378,2122,396,417,426,406,477,2754,487,470,451,452,457,437,1616,449,452,371,344,1867,303,334,381,424,425,4453,421,420,435,434,449,469,437,468,458,462,7493,480,456,487,441,455,472,466,444,438,494,489,493,547,655,676,12342,673,685,693,761,810,801,839,922,841,857,898,907,929,876,850,9171,842,849,890,892,871,852,915,918,1034,1108,6200,823,764,737,703,575,550,539,513,540,456,2928,447,381,314,362,262,1162,50304,1933,331,400,378,377,447,2303,445,441,449,464,504,2994,490,476,538,505,488,497,1856,534,491,480,351,2016,345,383,384,444,460,4484,396,458,427,428,441,449,490,424,501,470,7115,454,470,429,465,438,477,408,392,424,483,463,490,518,532,672,11402,668,690,682,667,738,743,771,778,750,819,821,767,835,869,804,8622,788,804,773,795,839,849,904,889,973,1008,5582,724,785,741,635,532,439,454,434,433,405,1997,355,310,286,205,205,636 +"2021","Norwich","E07000148",143924,6931,1340,1339,1415,1389,1448,7598,1488,1492,1456,1612,1550,8631,1533,1505,1467,1466,1373,1287,8976,1249,1312,2351,4064,16471,4326,3806,3091,2662,2586,23741,2394,2301,2463,2476,2427,2435,2399,2311,2350,2185,27618,2183,2062,2191,1977,2004,1939,1880,1861,1685,1611,1561,1644,1750,1660,1610,22445,1668,1600,1696,1564,1724,1547,1702,1518,1498,1507,1394,1322,1258,1205,1242,11469,1182,1228,1132,1168,1119,1128,1052,1107,1194,1159,6924,898,897,852,782,652,648,615,553,540,487,3120,442,419,387,340,295,1237,72852,3331,639,597,701,673,721,3712,729,728,687,780,788,4268,730,755,722,723,678,660,4555,602,592,1186,2175,8770,2315,2046,1626,1412,1371,11869,1210,1195,1232,1264,1197,1182,1157,1142,1206,1084,13350,1079,992,1109,932,964,937,909,899,798,775,777,810,839,783,747,11136,821,779,833,757,843,755,814,747,729,770,678,662,659,628,661,6027,636,630,577,653,564,576,545,558,650,638,3798,481,492,463,427,339,361,336,322,313,264,2036,267,239,239,221,194,876,71072,3600,701,742,714,716,727,3886,759,764,769,832,762,4363,803,750,745,743,695,627,4421,647,720,1165,1889,7701,2011,1760,1465,1250,1215,11872,1184,1106,1231,1212,1230,1253,1242,1169,1144,1101,14268,1104,1070,1082,1045,1040,1002,971,962,887,836,784,834,911,877,863,11309,847,821,863,807,881,792,888,771,769,737,716,660,599,577,581,5442,546,598,555,515,555,552,507,549,544,521,3126,417,405,389,355,313,287,279,231,227,223,1084,175,180,148,119,101,361 +"2021","South Norfolk","E07000149",141944,6987,1259,1307,1398,1450,1573,8108,1584,1576,1538,1705,1705,9633,1609,1613,1673,1570,1612,1556,5346,1538,1585,1233,990,5975,1007,1097,1235,1273,1363,15471,1383,1437,1497,1466,1519,1585,1603,1654,1658,1669,26055,1769,1648,1696,1629,1743,1797,1716,1645,1584,1581,1703,1713,1851,1863,2117,29857,2025,1957,2027,2076,2027,2166,2172,2082,1996,2075,1943,1899,1807,1856,1749,17885,1712,1715,1687,1722,1607,1646,1744,1828,2068,2156,11923,1498,1656,1485,1376,1111,994,1028,1031,907,837,4704,769,656,573,526,448,1732,72710,3368,618,639,665,696,750,4031,754,779,789,857,852,4658,782,789,803,774,781,729,2560,730,778,583,469,2892,470,509,629,625,659,8115,746,734,777,750,789,847,849,866,830,927,13433,928,827,878,821,918,931,862,837,794,827,868,906,934,978,1124,15299,1020,994,1011,1091,1034,1086,1158,1033,1031,1067,995,988,935,944,912,9265,870,895,840,931,836,835,894,970,1082,1112,6218,759,880,779,681,593,539,515,541,479,452,2871,428,385,333,308,288,1129,69234,3619,641,668,733,754,823,4077,830,797,749,848,853,4975,827,824,870,796,831,827,2786,808,807,650,521,3083,537,588,606,648,704,7356,637,703,720,716,730,738,754,788,828,742,12622,841,821,818,808,825,866,854,808,790,754,835,807,917,885,993,14558,1005,963,1016,985,993,1080,1014,1049,965,1008,948,911,872,912,837,8620,842,820,847,791,771,811,850,858,986,1044,5705,739,776,706,695,518,455,513,490,428,385,1833,341,271,240,218,160,603 +"2021","Babergh","E07000200",92336,3972,713,815,760,870,814,4752,1009,871,904,964,1004,6240,1013,987,1059,1097,1020,1064,3698,1082,1069,861,686,4010,652,749,808,900,901,9068,830,853,885,809,910,973,957,929,983,939,15602,883,926,970,952,956,1088,1044,1023,958,1004,1012,1102,1146,1262,1276,20461,1344,1337,1378,1358,1509,1473,1467,1506,1360,1383,1389,1202,1265,1271,1219,12784,1269,1145,1170,1184,1181,1234,1330,1257,1560,1454,8577,1119,1182,1049,949,843,790,712,710,626,597,3172,493,462,367,339,301,1210,47528,1942,365,401,362,396,418,2353,513,423,469,463,485,3034,490,481,502,538,482,541,1834,538,535,421,340,1935,307,363,394,426,445,4622,422,415,444,423,445,502,496,465,521,489,8066,454,510,503,475,505,550,567,521,500,520,511,548,604,636,662,10553,693,700,735,733,783,760,748,774,677,711,729,605,616,652,637,6715,690,608,590,645,600,628,686,681,815,772,4501,580,597,575,484,459,407,364,370,327,338,1973,280,278,205,198,195,817,44808,2030,348,414,398,474,396,2399,496,448,435,501,519,3206,523,506,557,559,538,523,1864,544,534,440,346,2075,345,386,414,474,456,4446,408,438,441,386,465,471,461,464,462,450,7536,429,416,467,477,451,538,477,502,458,484,501,554,542,626,614,9908,651,637,643,625,726,713,719,732,683,672,660,597,649,619,582,6069,579,537,580,539,581,606,644,576,745,682,4076,539,585,474,465,384,383,348,340,299,259,1199,213,184,162,141,106,393 +"2021","Ipswich","E07000202",139631,8324,1529,1677,1661,1673,1784,9049,1851,1766,1766,1832,1834,10435,1783,1830,1764,1721,1699,1638,6419,1695,1750,1547,1427,7969,1417,1506,1556,1705,1785,20708,1840,1939,1988,1997,2125,2201,2122,2159,2178,2159,28498,2061,2050,2053,1939,2063,2027,2046,1775,1750,1814,1685,1757,1822,1795,1861,25222,1931,1871,1846,1831,1757,1740,1836,1705,1766,1559,1505,1458,1506,1502,1409,12262,1286,1286,1268,1177,1255,1209,1164,1111,1217,1289,7410,952,983,824,790,711,637,650,652,632,579,3335,528,459,409,363,309,1267,70319,4121,761,825,809,837,889,4474,899,870,886,927,892,5065,862,925,846,846,796,790,2975,813,798,696,668,3956,687,734,774,822,939,10705,929,1013,1037,1044,1117,1174,1091,1117,1102,1081,14045,999,1009,1006,961,1029,1035,999,874,846,869,829,868,926,874,921,12592,969,907,897,886,848,873,948,888,862,793,759,750,761,761,690,6299,618,680,655,630,613,650,592,565,607,689,3989,472,505,437,416,374,360,353,386,358,328,2098,303,262,252,220,207,854,69312,4203,768,852,852,836,895,4575,952,896,880,905,942,5370,921,905,918,875,903,848,3444,882,952,851,759,4013,730,772,782,883,846,10003,911,926,951,953,1008,1027,1031,1042,1076,1078,14453,1062,1041,1047,978,1034,992,1047,901,904,945,856,889,896,921,940,12630,962,964,949,945,909,867,888,817,904,766,746,708,745,741,719,5963,668,606,613,547,642,559,572,546,610,600,3421,480,478,387,374,337,277,297,266,274,251,1237,225,197,157,143,102,413 +"2021","Mid Suffolk","E07000203",102690,4498,866,878,888,926,940,5191,964,1018,1041,1057,1111,6701,1114,1087,1144,1150,1092,1114,4112,1149,1133,948,882,4628,767,852,973,1007,1029,11190,1101,1126,1104,1051,1068,1156,1138,1153,1193,1100,17438,1105,1120,1058,1106,1135,1167,1128,1109,1044,1025,1130,1136,1320,1380,1475,22959,1435,1494,1552,1501,1646,1681,1652,1613,1577,1521,1533,1449,1486,1457,1362,14033,1314,1340,1428,1303,1354,1305,1406,1448,1574,1561,8686,1109,1237,1049,969,864,802,771,691,645,549,3254,510,489,411,375,277,1192,52060,2188,420,411,450,443,464,2499,448,485,507,513,546,3280,549,532,555,570,552,522,1923,567,541,447,368,2237,332,410,476,511,508,5590,535,543,523,512,538,608,598,601,588,544,8883,589,548,544,563,551,582,602,553,533,538,555,617,682,697,729,11758,730,752,808,793,853,889,852,860,788,732,770,720,762,749,700,7177,667,700,704,656,718,679,737,735,795,786,4545,585,628,536,489,453,424,396,370,360,304,1980,265,294,238,219,183,781,50630,2310,446,467,438,483,476,2692,516,533,534,544,565,3421,565,555,589,580,540,592,2189,582,592,501,514,2391,435,442,497,496,521,5600,566,583,581,539,530,548,540,552,605,556,8555,516,572,514,543,584,585,526,556,511,487,575,519,638,683,746,11201,705,742,744,708,793,792,800,753,789,789,763,729,724,708,662,6856,647,640,724,647,636,626,669,713,779,775,4141,524,609,513,480,411,378,375,321,285,245,1274,245,195,173,156,94,411 +"2021","St Albans","E07000240",148160,8659,1493,1689,1783,1769,1925,10326,2014,1938,2028,2089,2257,13090,2200,2234,2306,2211,2130,2009,6250,1984,1981,1441,844,5943,832,1019,1232,1423,1437,16099,1433,1507,1461,1472,1558,1619,1680,1738,1806,1825,33142,1826,1873,2007,1977,2141,2248,2375,2352,2286,2291,2409,2317,2342,2380,2318,29160,2362,2247,2181,2238,2219,2196,2085,2012,1887,1797,1807,1609,1546,1507,1467,12993,1396,1262,1326,1270,1181,1264,1305,1201,1344,1444,8537,1103,1083,1020,951,715,721,795,765,680,704,3961,588,532,506,440,400,1495,75865,4202,723,850,841,863,925,5124,1030,943,995,1043,1113,6360,1036,1104,1127,1095,1021,977,2991,929,973,681,408,2918,360,508,622,715,713,8277,689,756,759,760,774,832,867,912,952,976,17316,987,1030,1049,1067,1127,1226,1265,1225,1175,1158,1218,1194,1203,1235,1157,14730,1194,1135,1102,1103,1131,1088,1073,1021,972,930,891,812,788,775,715,6874,712,644,654,649,639,669,707,668,734,798,4657,572,584,539,521,389,416,417,430,390,399,2416,340,302,287,257,218,1012,72295,4457,770,839,942,906,1000,5202,984,995,1033,1046,1144,6730,1164,1130,1179,1116,1109,1032,3259,1055,1008,760,436,3025,472,511,610,708,724,7822,744,751,702,712,784,787,813,826,854,849,15826,839,843,958,910,1014,1022,1110,1127,1111,1133,1191,1123,1139,1145,1161,14430,1168,1112,1079,1135,1088,1108,1012,991,915,867,916,797,758,732,752,6119,684,618,672,621,542,595,598,533,610,646,3880,531,499,481,430,326,305,378,335,290,305,1545,248,230,219,183,182,483 +"2021","Welwyn Hatfield","E07000241",119840,6626,1237,1304,1321,1384,1380,7279,1445,1418,1423,1493,1500,8447,1447,1420,1476,1424,1320,1360,6710,1290,1354,1673,2393,10577,2392,2286,2258,1903,1738,15967,1575,1601,1507,1590,1523,1576,1663,1619,1651,1662,23783,1595,1686,1628,1704,1660,1773,1691,1575,1486,1486,1510,1455,1436,1519,1579,21642,1619,1485,1519,1531,1560,1570,1603,1483,1496,1446,1386,1335,1308,1178,1123,9582,1092,1009,987,881,922,893,875,879,983,1061,6240,716,823,727,671,574,554,587,563,519,506,2987,452,419,369,329,286,1132,60934,3180,574,639,644,665,658,3557,719,685,697,746,710,4176,741,695,743,700,641,656,3425,613,689,855,1268,5137,1218,1125,1090,914,790,8134,772,779,717,807,790,785,873,857,876,878,12188,866,889,857,876,868,920,824,775,751,739,767,738,697,812,809,10834,785,740,724,784,768,833,826,738,775,732,680,672,633,581,563,4945,548,531,494,437,494,449,457,466,506,563,3502,395,437,404,371,330,314,346,314,299,292,1856,266,247,220,191,174,758,58906,3446,663,665,677,719,722,3722,726,733,726,747,790,4271,706,725,733,724,679,704,3285,677,665,818,1125,5440,1174,1161,1168,989,948,7833,803,822,790,783,733,791,790,762,775,784,11595,729,797,771,828,792,853,867,800,735,747,743,717,739,707,770,10808,834,745,795,747,792,737,777,745,721,714,706,663,675,597,560,4637,544,478,493,444,428,444,418,413,477,498,2738,321,386,323,300,244,240,241,249,220,214,1131,186,172,149,138,112,374 +"2021","East Hertfordshire","E07000242",150166,8315,1560,1621,1697,1667,1770,8931,1723,1764,1722,1810,1912,11759,2011,2032,1913,1897,1955,1951,6242,1825,1892,1461,1064,6973,1055,1248,1501,1571,1598,18464,1682,1672,1766,1847,1899,1891,1890,1975,1921,1921,30763,1909,1927,1894,1887,2040,2093,2135,2047,1948,1902,2052,2093,2224,2289,2323,31322,2275,2212,2321,2326,2258,2328,2271,2206,2078,2106,1955,1811,1787,1764,1624,14608,1521,1469,1440,1435,1272,1407,1417,1450,1620,1577,8947,1090,1235,1073,1015,809,768,825,747,740,645,3842,609,542,517,461,378,1335,76666,3982,744,760,813,798,867,4326,837,824,847,863,955,5789,1008,962,918,1001,950,950,3010,909,914,708,479,3427,501,601,751,747,827,9551,854,841,882,979,968,990,993,1016,1015,1013,15877,968,1021,985,994,1081,1089,1092,1055,1002,1013,1066,1087,1064,1199,1161,15844,1174,1145,1203,1187,1158,1161,1151,1090,1065,1086,1007,894,891,852,780,7585,762,729,754,725,656,729,752,769,857,852,4876,586,655,570,550,448,423,449,421,421,353,2399,359,335,300,288,230,887,73500,4333,816,861,884,869,903,4605,886,940,875,947,957,5970,1003,1070,995,896,1005,1001,3232,916,978,753,585,3546,554,647,750,824,771,8913,828,831,884,868,931,901,897,959,906,908,14886,941,906,909,893,959,1004,1043,992,946,889,986,1006,1160,1090,1162,15478,1101,1067,1118,1139,1100,1167,1120,1116,1013,1020,948,917,896,912,844,7023,759,740,686,710,616,678,665,681,763,725,4071,504,580,503,465,361,345,376,326,319,292,1443,250,207,217,173,148,448 +"2021","Stevenage","E07000243",89500,5618,1056,1062,1176,1133,1191,5924,1157,1128,1179,1233,1227,6717,1201,1182,1103,1125,1084,1022,3719,990,1051,910,768,4792,815,866,979,1000,1132,13538,1133,1115,1270,1322,1396,1446,1455,1462,1460,1479,18234,1396,1404,1362,1319,1304,1308,1287,1130,1107,1121,1064,1045,1118,1097,1172,17411,1251,1158,1255,1257,1292,1243,1285,1290,1255,1141,1080,1021,1034,944,905,7213,853,814,718,716,648,619,691,651,774,729,4368,552,522,521,503,401,373,411,355,381,349,1966,314,299,232,213,200,708,45338,2677,527,490,577,518,565,2933,573,564,570,601,625,3197,560,585,538,505,497,512,1703,457,487,409,350,2298,383,395,495,481,544,7026,547,567,625,707,732,787,764,786,735,776,9296,727,718,731,668,656,671,634,589,546,547,558,531,550,561,609,8746,653,597,635,646,625,646,625,637,628,574,543,523,517,444,453,3692,401,408,353,346,343,339,361,333,412,396,2497,309,305,269,272,235,218,232,199,251,207,1273,193,190,141,143,126,480,44162,2941,529,572,599,615,626,2991,584,564,609,632,602,3520,641,597,565,620,587,510,2016,533,564,501,418,2494,432,471,484,519,588,6512,586,548,645,615,664,659,691,676,725,703,8938,669,686,631,651,648,637,653,541,561,574,506,514,568,536,563,8665,598,561,620,611,667,597,660,653,627,567,537,498,517,500,452,3521,452,406,365,370,305,280,330,318,362,333,1871,243,217,252,231,166,155,179,156,130,142,693,121,109,91,70,74,228 +"2021","East Suffolk","E07000244",246064,10632,1872,2038,2150,2277,2295,12504,2382,2466,2375,2595,2686,16201,2690,2700,2746,2722,2700,2643,9616,2630,2679,2400,1907,10717,1855,1994,2195,2375,2298,24519,2351,2379,2374,2436,2409,2416,2483,2586,2608,2477,39607,2431,2464,2386,2427,2556,2650,2670,2523,2421,2367,2577,2728,2959,3169,3279,53958,3402,3408,3549,3604,3682,3809,3820,3761,3662,3618,3666,3528,3514,3565,3370,35254,3300,3195,3412,3305,3369,3339,3484,3629,4111,4110,23328,3143,3087,2817,2660,2276,1934,2029,1912,1829,1641,9728,1483,1319,1189,1056,915,3766,126231,5250,934,1027,1061,1113,1115,6115,1190,1184,1184,1269,1288,7965,1293,1335,1364,1336,1340,1297,4627,1284,1324,1123,896,5170,878,946,1103,1154,1089,12414,1171,1177,1170,1259,1199,1282,1229,1327,1310,1290,20312,1223,1267,1215,1292,1283,1349,1355,1256,1269,1181,1294,1467,1533,1612,1716,27713,1817,1684,1880,1836,1863,1981,1958,1929,1857,1861,1903,1809,1780,1818,1737,18325,1733,1649,1729,1711,1785,1738,1839,1845,2111,2185,12409,1603,1604,1496,1387,1254,1027,1086,1029,983,940,5931,831,741,699,613,572,2475,119833,5382,938,1011,1089,1164,1180,6389,1192,1282,1191,1326,1398,8236,1397,1365,1382,1386,1360,1346,4989,1346,1355,1277,1011,5547,977,1048,1092,1221,1209,12105,1180,1202,1204,1177,1210,1134,1254,1259,1298,1187,19295,1208,1197,1171,1135,1273,1301,1315,1267,1152,1186,1283,1261,1426,1557,1563,26245,1585,1724,1669,1768,1819,1828,1862,1832,1805,1757,1763,1719,1734,1747,1633,16929,1567,1546,1683,1594,1584,1601,1645,1784,2000,1925,10919,1540,1483,1321,1273,1022,907,943,883,846,701,3797,652,578,490,443,343,1291 +"2021","West Suffolk","E07000245",179942,9829,1846,1953,2018,1966,2046,10305,1989,2003,2062,2077,2174,11687,2030,1986,2032,1973,1822,1844,6936,1761,1863,1710,1602,10541,1698,2000,2303,2281,2259,25480,2341,2450,2706,2474,2616,2743,2626,2507,2530,2487,33273,2356,2351,2417,2257,2223,2317,2232,2195,1909,2067,2001,2088,2197,2307,2356,34531,2434,2366,2543,2468,2478,2514,2370,2560,2288,2296,2173,2156,2034,1999,1852,19245,1772,1787,1922,1796,1839,1814,1885,1941,2245,2244,13151,1679,1681,1625,1464,1268,1131,1165,1147,1067,924,4964,845,685,577,541,470,1846,89833,4696,832,879,1030,955,1000,5034,948,994,1031,1006,1055,5679,948,948,1034,964,903,882,3312,880,917,795,720,4624,723,825,1005,1035,1036,12386,1125,1161,1253,1228,1259,1264,1338,1248,1308,1202,16544,1183,1237,1126,1093,1120,1136,1088,1068,990,998,1003,1055,1146,1140,1161,17347,1209,1142,1254,1321,1248,1256,1174,1350,1119,1159,1071,1062,1070,955,957,10115,948,940,998,932,929,913,985,1048,1212,1210,7053,883,897,894,802,683,630,598,596,571,499,3043,494,384,346,309,265,1245,90109,5133,1014,1074,988,1011,1046,5271,1041,1009,1031,1071,1119,6008,1082,1038,998,1009,919,962,3624,881,946,915,882,5917,975,1175,1298,1246,1223,13094,1216,1289,1453,1246,1357,1479,1288,1259,1222,1285,16729,1173,1114,1291,1164,1103,1181,1144,1127,919,1069,998,1033,1051,1167,1195,17184,1225,1224,1289,1147,1230,1258,1196,1210,1169,1137,1102,1094,964,1044,895,9130,824,847,924,864,910,901,900,893,1033,1034,6098,796,784,731,662,585,501,567,551,496,425,1921,351,301,231,232,205,601 +"2021","City of London","E09000001",8584,214,44,57,34,39,40,165,27,28,40,31,39,206,50,42,34,22,26,32,182,35,37,60,50,965,113,131,193,307,221,2217,245,262,240,227,241,243,201,211,188,159,1818,175,152,129,138,134,113,108,103,117,106,108,97,105,100,133,1613,123,137,142,141,96,113,98,111,96,98,102,95,83,101,77,712,89,81,67,75,82,56,64,60,77,61,375,49,53,46,34,28,46,42,28,27,22,117,18,18,13,11,17,40,3862,114,16,30,19,26,23,77,13,16,20,12,16,94,21,23,19,8,12,11,99,20,23,29,27,489,54,68,92,158,117,1025,109,112,122,104,117,105,92,104,86,74,718,73,69,55,58,48,45,47,46,42,40,49,37,32,40,37,640,54,38,52,61,34,49,43,48,41,44,39,33,37,37,30,354,45,45,33,30,38,26,35,32,44,26,185,25,21,23,17,16,27,23,12,12,9,67,12,8,12,5,10,20,4722,100,28,27,15,13,17,88,14,12,20,19,23,112,29,19,15,14,14,21,83,15,14,31,23,476,59,63,101,149,104,1192,136,150,118,123,124,138,109,107,102,85,1100,102,83,74,80,86,68,61,57,75,66,59,60,73,60,96,973,69,99,90,80,62,64,55,63,55,54,63,62,46,64,47,358,44,36,34,45,44,30,29,28,33,35,190,24,32,23,17,12,19,19,16,15,13,50,6,10,1,6,7,20 +"2021","Barking and Dagenham","E09000002",218876,17251,3156,3427,3387,3617,3664,18334,3700,3527,3594,3734,3779,21543,3714,3600,3689,3638,3590,3312,11812,3321,3063,2956,2472,13240,2393,2405,2702,2846,2894,33269,2919,3001,2969,3163,3164,3252,3550,3746,3768,3737,50642,3772,3869,3667,3758,3572,3770,3487,3524,3143,3151,3101,3109,3030,2807,2882,33753,2898,2861,2805,2800,2473,2510,2412,2204,2254,1948,2029,1779,1719,1524,1537,10723,1373,1296,1157,1126,991,977,952,910,995,946,5819,758,668,626,674,510,546,563,528,505,441,2490,399,349,286,272,247,937,112294,8405,1534,1758,1633,1708,1772,8926,1775,1762,1747,1756,1886,10518,1830,1722,1778,1757,1765,1666,5610,1588,1450,1380,1192,6666,1231,1177,1344,1471,1443,17886,1470,1569,1571,1703,1748,1787,1912,2128,2009,1989,26484,2039,2062,1902,2000,1888,1942,1873,1899,1662,1598,1645,1581,1473,1416,1504,17061,1469,1461,1400,1417,1222,1318,1260,1098,1125,993,990,893,884,723,808,5686,715,659,601,600,529,521,514,500,562,485,3448,408,384,362,407,326,313,337,340,301,270,1604,236,206,179,172,156,655,106582,8846,1622,1669,1754,1909,1892,9408,1925,1765,1847,1978,1893,11025,1884,1878,1911,1881,1825,1646,6202,1733,1613,1576,1280,6574,1162,1228,1358,1375,1451,15383,1449,1432,1398,1460,1416,1465,1638,1618,1759,1748,24158,1733,1807,1765,1758,1684,1828,1614,1625,1481,1553,1456,1528,1557,1391,1378,16692,1429,1400,1405,1383,1251,1192,1152,1106,1129,955,1039,886,835,801,729,5037,658,637,556,526,462,456,438,410,433,461,2371,350,284,264,267,184,233,226,188,204,171,886,163,143,107,100,91,282 +"2021","Barnet","E09000003",389352,24106,4611,4813,4818,4911,4953,25252,4925,4957,4959,5242,5169,30633,5262,5178,5199,5222,4947,4825,16638,4897,4503,4007,3231,22398,3296,4086,4577,5102,5337,58219,5493,5500,5526,5609,5916,5952,5904,6148,6116,6055,88346,6135,6220,5935,6223,6276,6343,6097,6149,5917,5582,5463,5499,5578,5488,5441,67659,5296,5318,5193,4933,4905,4805,4741,4773,4297,4258,4140,3852,3882,3812,3454,29808,3383,3185,2976,2978,2925,2877,2930,2894,2810,2850,17802,2403,2301,2239,1900,1618,1533,1592,1579,1332,1305,8491,1267,1149,1004,956,743,3372,200806,11660,2146,2347,2358,2388,2421,12218,2420,2371,2331,2621,2475,14861,2561,2525,2513,2543,2382,2337,8045,2394,2195,1895,1561,11631,1767,2121,2338,2643,2762,30359,2877,2752,2930,3023,3104,3002,3003,3164,3294,3210,45857,3156,3274,3155,3279,3260,3325,3200,3166,3070,2891,2804,2861,2771,2854,2791,35069,2714,2704,2674,2627,2488,2531,2511,2411,2263,2255,2093,2009,2064,1899,1826,15779,1702,1671,1565,1535,1549,1523,1545,1572,1526,1591,9950,1319,1215,1247,1071,927,867,886,911,765,742,5377,716,682,571,596,487,2325,188546,12446,2465,2466,2460,2523,2532,13034,2505,2586,2628,2621,2694,15772,2701,2653,2686,2679,2565,2488,8593,2503,2308,2112,1670,10767,1529,1965,2239,2459,2575,27860,2616,2748,2596,2586,2812,2950,2901,2984,2822,2845,42489,2979,2946,2780,2944,3016,3018,2897,2983,2847,2691,2659,2638,2807,2634,2650,32590,2582,2614,2519,2306,2417,2274,2230,2362,2034,2003,2047,1843,1818,1913,1628,14029,1681,1514,1411,1443,1376,1354,1385,1322,1284,1259,7852,1084,1086,992,829,691,666,706,668,567,563,3114,551,467,433,360,256,1047 +"2021","Bexley","E09000004",246463,15035,2815,2969,3053,3081,3117,16195,3224,3163,3131,3272,3405,19419,3312,3336,3248,3319,3224,2980,11133,3000,3061,2671,2401,13505,2462,2678,2773,2792,2800,31987,2828,2841,2978,3006,3225,3361,3368,3552,3403,3425,50856,3448,3634,3459,3590,3580,3693,3648,3381,3171,3239,3127,3181,3156,3279,3270,47445,3454,3436,3516,3338,3518,3499,3453,3383,3175,3097,3054,2756,2724,2568,2474,21194,2288,2196,2094,2033,2044,2023,2006,2007,2255,2248,13764,1656,1722,1529,1572,1274,1206,1321,1289,1145,1050,5930,951,852,761,677,530,2159,127969,7441,1424,1407,1527,1533,1550,7878,1510,1558,1502,1617,1691,9528,1596,1628,1605,1638,1588,1473,5396,1417,1463,1346,1170,6772,1231,1303,1393,1407,1438,16971,1433,1480,1547,1593,1738,1824,1768,1918,1803,1867,26768,1868,1994,1817,1954,1933,1935,1915,1713,1666,1687,1617,1616,1666,1679,1708,24405,1773,1762,1814,1702,1827,1843,1771,1751,1606,1612,1556,1390,1359,1328,1311,11125,1156,1129,1086,1068,1051,1073,1072,1104,1211,1175,7887,933,965,848,903,739,720,755,748,664,612,3798,563,521,481,403,358,1472,118494,7594,1391,1562,1526,1548,1567,8317,1714,1605,1629,1655,1714,9891,1716,1708,1643,1681,1636,1507,5737,1583,1598,1325,1231,6733,1231,1375,1380,1385,1362,15016,1395,1361,1431,1413,1487,1537,1600,1634,1600,1558,24088,1580,1640,1642,1636,1647,1758,1733,1668,1505,1552,1510,1565,1490,1600,1562,23040,1681,1674,1702,1636,1691,1656,1682,1632,1569,1485,1498,1366,1365,1240,1163,10069,1132,1067,1008,965,993,950,934,903,1044,1073,5877,723,757,681,669,535,486,566,541,481,438,2132,388,331,280,274,172,687 +"2021","Brent","E09000005",339816,19970,3974,4267,3804,4024,3901,19836,4165,3697,3852,4006,4116,24870,4196,4125,4218,4108,4224,3999,16622,4225,4157,4124,4116,24589,4189,4462,4870,5389,5679,59158,5682,5771,6032,5883,5943,5989,6174,5960,5876,5848,76164,5681,5588,5448,5342,5628,5376,5520,4985,4805,4672,4785,4952,4447,4545,4390,59051,4527,4675,4876,4495,4209,4118,4271,3923,3772,3796,3571,3442,3462,3061,2853,21909,2731,2624,2336,2408,2200,2107,2073,1906,1807,1717,12466,1488,1489,1373,1390,1248,1118,1197,1104,1035,1024,5181,854,779,641,574,508,1825,173123,9820,2007,2101,1857,2005,1850,9668,1954,1808,1910,1983,2013,12125,2052,2048,2115,1997,1974,1939,8120,2069,2038,2050,1963,12389,1975,2253,2477,2778,2906,30022,2871,2846,3065,3053,3040,3029,3124,3018,2975,3001,38558,2951,2864,2818,2668,2714,2769,2846,2506,2436,2353,2371,2516,2250,2287,2209,30794,2300,2410,2573,2244,2225,2101,2206,2062,1975,2087,1843,1862,1916,1528,1462,11435,1378,1320,1177,1279,1114,1153,1129,1007,960,918,7026,809,830,725,845,682,621,707,610,597,600,3166,493,450,362,349,291,1221,166693,10150,1967,2166,1947,2019,2051,10168,2211,1889,1942,2023,2103,12745,2144,2077,2103,2111,2250,2060,8502,2156,2119,2074,2153,12200,2214,2209,2393,2611,2773,29136,2811,2925,2967,2830,2903,2960,3050,2942,2901,2847,37606,2730,2724,2630,2674,2914,2607,2674,2479,2369,2319,2414,2436,2197,2258,2181,28257,2227,2265,2303,2251,1984,2017,2065,1861,1797,1709,1728,1580,1546,1533,1391,10474,1353,1304,1159,1129,1086,954,944,899,847,799,5440,679,659,648,545,566,497,490,494,438,424,2015,361,329,279,225,217,604 +"2021","Bromley","E09000006",329987,19491,3657,3835,3891,3997,4111,20628,4114,4057,4023,4181,4253,24786,4423,4295,4119,4042,4046,3861,13354,3941,3794,3230,2389,14676,2281,2575,3046,3284,3490,40747,3366,3425,3739,3827,3964,4049,4456,4478,4798,4645,73532,4812,4785,4991,4973,5229,5125,5136,5257,4838,4685,4621,4831,4696,4760,4793,64532,4846,4635,4814,4767,4866,4716,4589,4732,4229,4081,4188,3805,3548,3438,3278,29851,3108,2929,2823,2821,2802,2867,2855,3025,3280,3341,19371,2453,2515,2219,2166,1879,1645,1759,1686,1595,1454,9019,1338,1215,1090,1063,915,3398,171732,9494,1765,1964,1809,1971,1985,10070,2046,1972,1955,2004,2093,11934,2152,2016,1982,1986,1943,1855,6523,1936,1842,1609,1136,7286,1092,1268,1495,1595,1836,21933,1716,1772,1959,2031,2194,2229,2406,2434,2655,2537,38627,2594,2526,2668,2651,2769,2730,2778,2789,2517,2431,2419,2406,2450,2490,2409,33395,2547,2450,2499,2516,2436,2408,2407,2409,2226,2145,2124,1983,1823,1740,1682,15923,1595,1516,1478,1514,1502,1535,1555,1659,1766,1803,10840,1341,1357,1209,1197,1049,940,996,967,937,847,5707,794,729,665,678,563,2278,158255,9997,1892,1871,2082,2026,2126,10558,2068,2085,2068,2177,2160,12852,2271,2279,2137,2056,2103,2006,6831,2005,1952,1621,1253,7390,1189,1307,1551,1689,1654,18814,1650,1653,1780,1796,1770,1820,2050,2044,2143,2108,34905,2218,2259,2323,2322,2460,2395,2358,2468,2321,2254,2202,2425,2246,2270,2384,31137,2299,2185,2315,2251,2430,2308,2182,2323,2003,1936,2064,1822,1725,1698,1596,13928,1513,1413,1345,1307,1300,1332,1300,1366,1514,1538,8531,1112,1158,1010,969,830,705,763,719,658,607,3312,544,486,425,385,352,1120 +"2021","Camden","E09000007",210131,10032,2036,2026,2040,1966,1964,9872,1987,1878,1947,1997,2063,12320,2072,2112,2139,2021,2044,1932,11808,2195,2086,3228,4299,20165,4175,3890,3801,4108,4191,42543,4301,4482,4508,4366,4345,4263,4396,4230,3896,3756,44410,3538,3482,3274,3136,3118,3066,2988,2989,2733,2726,2695,2806,2648,2587,2624,34156,2765,2631,2690,2568,2615,2623,2416,2341,2211,2155,2036,1904,1812,1757,1632,13665,1555,1451,1391,1426,1299,1325,1307,1299,1301,1311,8097,1126,1076,969,914,744,720,726,684,608,530,3063,482,428,366,320,274,1193,110648,4940,1003,1032,996,965,944,4901,988,899,976,995,1043,6070,1016,1048,1095,993,1000,918,6340,1115,1089,1782,2354,11247,2311,2131,2150,2338,2317,22511,2374,2420,2358,2317,2280,2213,2295,2219,2051,1984,23109,1807,1819,1739,1670,1592,1568,1530,1568,1452,1431,1439,1447,1344,1367,1336,17576,1438,1364,1368,1373,1340,1368,1279,1153,1137,1087,1010,973,927,911,848,7404,791,794,735,790,709,717,733,718,693,724,4621,622,590,525,534,434,417,409,417,365,308,1929,285,257,227,206,160,794,99483,5092,1033,994,1044,1001,1020,4971,999,979,971,1002,1020,6250,1056,1064,1044,1028,1044,1014,5468,1080,997,1446,1945,8918,1864,1759,1651,1770,1874,20032,1927,2062,2150,2049,2065,2050,2101,2011,1845,1772,21301,1731,1663,1535,1466,1526,1498,1458,1421,1281,1295,1256,1359,1304,1220,1288,16580,1327,1267,1322,1195,1275,1255,1137,1188,1074,1068,1026,931,885,846,784,6261,764,657,656,636,590,608,574,581,608,587,3476,504,486,444,380,310,303,317,267,243,222,1134,197,171,139,114,114,399 +"2021","Croydon","E09000008",390727,25171,5085,5055,5007,5010,5014,24995,4973,4956,4908,4958,5200,30158,5082,5166,5029,5210,4939,4732,17614,5009,4913,4109,3583,21620,3425,3923,4405,4785,5082,59141,5168,5285,5486,5585,6006,6291,6194,6457,6323,6346,85735,6412,6086,6263,6153,6239,6136,5969,5761,5325,5430,5431,5361,4836,5090,5243,73219,5381,5271,5433,5466,5562,5396,5304,5344,5055,4674,4555,4261,4072,3817,3628,29017,3327,3216,3076,2822,2811,2769,2688,2631,2868,2809,16947,2187,2129,1984,1888,1553,1529,1534,1471,1401,1271,7110,1165,977,929,769,714,2556,203086,12501,2638,2463,2445,2478,2477,12339,2422,2455,2399,2461,2602,14654,2421,2604,2461,2564,2395,2209,8401,2455,2347,1909,1690,10765,1636,1956,2195,2437,2541,31564,2720,2781,2760,2966,3302,3334,3290,3492,3439,3480,45202,3432,3191,3281,3329,3376,3240,3124,3025,2762,2856,2897,2754,2500,2621,2814,38369,2894,2815,2843,2837,2956,2843,2769,2791,2706,2396,2314,2247,2127,1938,1893,15294,1782,1679,1593,1519,1476,1499,1412,1343,1496,1495,9578,1175,1188,1162,1047,859,871,869,861,827,719,4419,680,561,533,471,435,1739,187641,12670,2447,2592,2562,2532,2537,12656,2551,2501,2509,2497,2598,15504,2661,2562,2568,2646,2544,2523,9213,2554,2566,2200,1893,10855,1789,1967,2210,2348,2541,27577,2448,2504,2726,2619,2704,2957,2904,2965,2884,2866,40533,2980,2895,2982,2824,2863,2896,2845,2736,2563,2574,2534,2607,2336,2469,2429,34850,2487,2456,2590,2629,2606,2553,2535,2553,2349,2278,2241,2014,1945,1879,1735,13723,1545,1537,1483,1303,1335,1270,1276,1288,1372,1314,7369,1012,941,822,841,694,658,665,610,574,552,2691,485,416,396,298,279,817 +"2021","Ealing","E09000009",367119,21517,4147,4380,4235,4353,4402,22246,4220,4338,4392,4590,4706,27984,4696,4778,4752,4797,4625,4336,17463,4462,4249,4509,4243,22627,3792,4056,4607,4967,5205,59672,5407,5679,6084,5861,5868,6072,6169,6113,6395,6024,86815,6298,6195,6169,6067,6041,6471,6212,5863,5456,5661,5547,5435,5240,5203,4957,64325,5100,5179,4930,4984,4552,4754,4615,4244,4245,4075,3821,3724,3583,3301,3218,24982,2960,2889,2685,2541,2511,2312,2326,2331,2245,2182,13967,1692,1757,1581,1523,1416,1316,1302,1225,1137,1018,5521,972,762,706,607,531,1943,186208,10550,2034,2038,2167,2131,2180,10870,2042,2143,2067,2310,2308,13591,2271,2248,2390,2345,2221,2116,8501,2141,2110,2201,2049,11332,1813,1944,2341,2604,2630,30617,2763,2951,3023,3008,3015,3200,3159,3104,3264,3130,44035,3300,3174,3259,3119,3095,3276,3077,3033,2733,2804,2705,2706,2689,2617,2448,32389,2450,2620,2532,2468,2316,2454,2257,2110,2167,2049,1882,1895,1788,1718,1683,13151,1516,1482,1381,1400,1311,1199,1227,1239,1209,1187,7795,918,979,887,842,791,740,734,651,652,601,3377,568,417,412,343,346,1291,180911,10967,2113,2342,2068,2222,2222,11376,2178,2195,2325,2280,2398,14393,2425,2530,2362,2452,2404,2220,8962,2321,2139,2308,2194,11295,1979,2112,2266,2363,2575,29055,2644,2728,3061,2853,2853,2872,3010,3009,3131,2894,42780,2998,3021,2910,2948,2946,3195,3135,2830,2723,2857,2842,2729,2551,2586,2509,31936,2650,2559,2398,2516,2236,2300,2358,2134,2078,2026,1939,1829,1795,1583,1535,11831,1444,1407,1304,1141,1200,1113,1099,1092,1036,995,6172,774,778,694,681,625,576,568,574,485,417,2144,404,345,294,264,185,652 +"2021","Enfield","E09000010",329987,21259,3721,4320,4303,4403,4512,22750,4601,4361,4337,4640,4811,28793,4903,4735,4926,4918,4625,4686,16655,4694,4664,4019,3278,19116,3222,3520,4009,4112,4253,44304,4250,4037,4315,4240,4335,4386,4580,4623,4870,4668,71280,4882,4869,4565,4688,4975,5253,5018,4949,4713,4638,4490,4532,4450,4721,4537,60817,4698,4584,4582,4537,4247,4566,4534,4246,4080,3684,3756,3687,3387,3257,2972,23947,2854,2688,2553,2391,2303,2257,2224,2249,2232,2196,14643,1835,1761,1671,1533,1353,1371,1470,1293,1257,1099,6423,1014,942,818,674,597,2378,172477,10449,1796,2141,2142,2164,2206,11189,2285,2122,2159,2305,2318,14058,2433,2276,2397,2416,2224,2312,8003,2245,2326,1953,1479,9605,1536,1635,2054,2197,2183,23862,2168,2148,2249,2228,2298,2382,2582,2565,2686,2556,38564,2761,2645,2478,2623,2730,2808,2678,2790,2536,2542,2356,2458,2282,2492,2385,31640,2536,2466,2390,2275,2205,2407,2395,2213,2117,1878,2024,1840,1700,1691,1503,12802,1485,1388,1386,1300,1258,1216,1181,1185,1230,1173,8266,1035,945,893,851,797,793,836,745,754,617,4039,587,554,497,408,374,1619,157510,10810,1925,2179,2161,2239,2306,11561,2316,2239,2178,2335,2493,14735,2470,2459,2529,2502,2401,2374,8652,2449,2338,2066,1799,9511,1686,1885,1955,1915,2070,20442,2082,1889,2066,2012,2037,2004,1998,2058,2184,2112,32716,2121,2224,2087,2065,2245,2445,2340,2159,2177,2096,2134,2074,2168,2229,2152,29177,2162,2118,2192,2262,2042,2159,2139,2033,1963,1806,1732,1847,1687,1566,1469,11145,1369,1300,1167,1091,1045,1041,1043,1064,1002,1023,6377,800,816,778,682,556,578,634,548,503,482,2384,427,388,321,266,223,759 +"2021","Greenwich","E09000011",289072,19027,3771,3869,3835,3736,3816,18785,3775,3715,3753,3840,3702,21513,3694,3727,3694,3564,3528,3306,12589,3279,3239,3067,3004,18363,3129,3357,3721,3907,4249,52584,4641,4461,4877,5243,5494,5502,5590,5664,5783,5329,68305,5336,5210,5280,5210,4742,5193,4822,4577,4253,4114,4040,4086,3873,3745,3824,47683,4030,3777,3912,3642,3665,3458,3341,3286,3031,3011,2993,2769,2429,2302,2037,17298,2157,2011,1827,1716,1613,1643,1560,1496,1708,1567,9403,1285,1274,1168,1006,895,832,855,792,694,602,3522,589,518,440,378,333,1264,148572,9479,1903,1879,1939,1862,1896,9202,1873,1762,1878,1882,1807,10528,1837,1857,1770,1693,1724,1647,6208,1612,1611,1460,1525,9379,1603,1628,1880,2039,2229,27561,2386,2327,2516,2771,2829,2899,3001,2986,3048,2798,35386,2816,2595,2768,2664,2544,2741,2527,2313,2178,2115,2079,2081,2075,1911,1979,24089,2065,1941,1960,1784,1823,1672,1760,1731,1476,1518,1482,1418,1238,1180,1041,9129,1093,1051,966,913,879,848,820,791,922,846,5302,719,692,638,557,520,482,491,452,410,341,2309,349,324,277,233,223,903,140500,9548,1868,1990,1896,1874,1920,9583,1902,1953,1875,1958,1895,10985,1857,1870,1924,1871,1804,1659,6381,1667,1628,1607,1479,8984,1526,1729,1841,1868,2020,25023,2255,2134,2361,2472,2665,2603,2589,2678,2735,2531,32919,2520,2615,2512,2546,2198,2452,2295,2264,2075,1999,1961,2005,1798,1834,1845,23594,1965,1836,1952,1858,1842,1786,1581,1555,1555,1493,1511,1351,1191,1122,996,8169,1064,960,861,803,734,795,740,705,786,721,4101,566,582,530,449,375,350,364,340,284,261,1213,240,194,163,145,110,361 +"2021","Hackney","E09000012",259143,16135,3391,3295,3264,3053,3132,15161,3119,3070,2867,3100,3005,18384,3121,3071,3109,3069,3049,2965,11159,3033,2950,2685,2491,18591,2865,2973,3397,4391,4965,63481,5672,6165,6371,6608,6716,6977,6824,6536,6005,5607,57712,5196,4896,4677,4525,4318,4040,3966,3610,3527,3493,3254,3165,3020,3067,2958,38020,2939,2940,2964,2934,2793,2929,2963,2624,2520,2310,2317,2192,1998,1790,1807,12471,1730,1437,1403,1320,1126,1186,1140,1108,1042,979,5801,784,706,680,631,617,507,527,509,417,423,2228,383,371,262,247,180,785,135303,8030,1748,1561,1617,1526,1578,7329,1494,1463,1417,1461,1494,9164,1551,1510,1569,1544,1511,1479,5496,1389,1439,1385,1283,10019,1542,1561,1855,2327,2734,33898,3115,3369,3468,3615,3572,3706,3620,3346,3130,2957,29987,2779,2569,2313,2446,2147,2094,2069,1873,1857,1827,1679,1621,1578,1636,1499,19999,1509,1507,1537,1630,1452,1573,1573,1305,1325,1297,1211,1187,985,927,981,6680,868,795,756,685,574,640,624,605,574,559,3319,442,391,390,370,343,277,298,301,250,257,1382,228,220,140,155,108,531,123840,8105,1643,1734,1647,1527,1554,7832,1625,1607,1450,1639,1511,9220,1570,1561,1540,1525,1538,1486,5663,1644,1511,1300,1208,8572,1323,1412,1542,2064,2231,29583,2557,2796,2903,2993,3144,3271,3204,3190,2875,2650,27725,2417,2327,2364,2079,2171,1946,1897,1737,1670,1666,1575,1544,1442,1431,1459,18021,1430,1433,1427,1304,1341,1356,1390,1319,1195,1013,1106,1005,1013,863,826,5791,862,642,647,635,552,546,516,503,468,420,2482,342,315,290,261,274,230,229,208,167,166,846,155,151,122,92,72,254 +"2021","Hammersmith and Fulham","E09000013",183153,9074,1883,1882,1754,1746,1809,8824,1780,1662,1775,1787,1820,10628,1788,1921,1790,1757,1748,1624,6581,1665,1646,1523,1747,16960,2346,2745,3204,4084,4581,42788,4726,4847,4734,4569,4525,4260,4067,3916,3709,3435,39821,3226,3119,2948,2811,2695,2691,2664,2600,2503,2390,2397,2436,2455,2504,2382,29494,2458,2400,2318,2350,2371,2177,2226,1998,1985,1857,1603,1508,1496,1424,1323,10716,1295,1168,1197,1023,1048,1032,987,983,1024,959,6077,799,751,727,678,581,586,594,527,440,394,2190,364,311,279,255,204,777,97213,4535,951,971,860,865,888,4370,877,824,865,871,933,5288,864,953,913,879,880,799,3399,880,853,797,869,8992,1148,1427,1678,2326,2413,22879,2594,2731,2522,2478,2388,2252,2155,2033,1949,1777,21190,1639,1650,1565,1470,1415,1482,1458,1386,1350,1315,1256,1256,1325,1358,1265,15807,1338,1315,1247,1258,1247,1180,1178,1080,1005,985,873,795,812,777,717,5818,700,650,637,567,566,544,541,528,567,518,3558,457,413,412,411,349,348,351,315,254,248,1377,208,203,163,155,107,541,85940,4539,932,911,894,881,921,4454,903,838,910,916,887,5340,924,968,877,878,868,825,3182,785,793,726,878,7968,1198,1318,1526,1758,2168,19909,2132,2116,2212,2091,2137,2008,1912,1883,1760,1658,18631,1587,1469,1383,1341,1280,1209,1206,1214,1153,1075,1141,1180,1130,1146,1117,13687,1120,1085,1071,1092,1124,997,1048,918,980,872,730,713,684,647,606,4898,595,518,560,456,482,488,446,455,457,441,2519,342,338,315,267,232,238,243,212,186,146,813,156,108,116,100,97,236 +"2021","Haringey","E09000014",264247,14934,3031,3094,2989,2899,2921,14743,3078,2829,2881,2941,3014,18564,3156,3069,3164,3115,3069,2991,11580,3119,3067,2770,2624,16362,2591,2780,3143,3761,4087,49902,4355,4723,4883,5020,5021,5234,5274,5203,5233,4956,63933,4960,4976,4637,4566,4467,4483,4490,4310,4008,3864,3913,4006,3721,3739,3793,46517,4038,3585,3690,3727,3483,3581,3381,3199,3105,2831,2707,2567,2278,2253,2092,15968,2009,1834,1708,1696,1574,1590,1496,1431,1321,1309,8526,1058,1104,1052,855,817,776,773,750,679,662,3218,562,490,419,360,327,1060,136998,7313,1514,1433,1482,1455,1429,7236,1547,1334,1414,1437,1504,9134,1504,1521,1606,1548,1491,1464,5855,1587,1490,1369,1409,8426,1248,1429,1612,2023,2114,26106,2348,2553,2599,2710,2523,2767,2584,2713,2747,2562,32952,2536,2604,2398,2350,2339,2266,2255,2257,2067,2019,2024,2051,1922,1941,1923,24415,2103,1890,1936,1950,1823,1874,1811,1677,1620,1438,1426,1378,1210,1164,1115,8640,1046,963,896,915,873,890,850,788,705,714,4863,610,616,578,490,472,447,444,429,401,376,2058,342,309,242,222,202,741,127249,7621,1517,1661,1507,1444,1492,7507,1531,1495,1467,1504,1510,9430,1652,1548,1558,1567,1578,1527,5725,1532,1577,1401,1215,7936,1343,1351,1531,1738,1973,23796,2007,2170,2284,2310,2498,2467,2690,2490,2486,2394,30981,2424,2372,2239,2216,2128,2217,2235,2053,1941,1845,1889,1955,1799,1798,1870,22102,1935,1695,1754,1777,1660,1707,1570,1522,1485,1393,1281,1189,1068,1089,977,7328,963,871,812,781,701,700,646,643,616,595,3663,448,488,474,365,345,329,329,321,278,286,1160,220,181,177,138,125,319 +"2021","Harrow","E09000015",261200,15702,3035,3183,3142,3199,3143,16130,3164,3244,3171,3314,3237,19750,3364,3209,3281,3233,3394,3269,11771,3392,3390,2776,2213,15135,2327,2537,3136,3533,3602,38922,3648,3663,3642,3743,3771,3872,4084,4166,4238,4095,58065,4338,4237,4172,4108,4278,4208,4026,4088,3882,3723,3525,3566,3349,3236,3329,45547,3252,3391,3393,3171,3137,3159,3085,3099,2999,3011,3059,2803,2802,2563,2623,21408,2497,2519,2252,2176,2071,2032,2045,1914,1978,1924,13091,1629,1635,1532,1390,1175,1189,1260,1191,1089,1001,5679,904,850,721,590,498,2116,132400,7626,1470,1561,1542,1503,1550,8054,1613,1612,1605,1608,1616,9393,1605,1582,1555,1602,1533,1516,5374,1534,1554,1260,1026,7398,1062,1224,1527,1743,1842,19594,1864,1836,1852,1818,1881,1890,2078,2092,2149,2134,29368,2258,2227,2139,2138,2167,2123,2090,2097,1881,1838,1758,1751,1611,1565,1725,23469,1698,1729,1682,1695,1597,1623,1519,1631,1518,1639,1562,1421,1502,1335,1318,11343,1332,1291,1192,1101,1083,1071,1130,1037,1055,1051,7277,880,939,850,739,641,677,702,678,624,547,3504,529,513,426,363,302,1371,128800,8076,1565,1622,1600,1696,1593,8076,1551,1632,1566,1706,1621,10357,1759,1627,1726,1631,1861,1753,6397,1858,1836,1516,1187,7737,1265,1313,1609,1790,1760,19328,1784,1827,1790,1925,1890,1982,2006,2074,2089,1961,28697,2080,2010,2033,1970,2111,2085,1936,1991,2001,1885,1767,1815,1738,1671,1604,22078,1554,1662,1711,1476,1540,1536,1566,1468,1481,1372,1497,1382,1300,1228,1305,10065,1165,1228,1060,1075,988,961,915,877,923,873,5814,749,696,682,651,534,512,558,513,465,454,2175,375,337,295,227,196,745 +"2021","Havering","E09000016",262052,16490,3096,3243,3430,3308,3413,16861,3561,3273,3368,3298,3361,18969,3240,3135,3215,3236,3139,3004,11363,3167,3063,2753,2380,14103,2368,2633,2952,2993,3157,36229,3180,3324,3294,3506,3634,3704,3749,3916,4011,3911,52843,3971,3892,3834,3779,3714,3857,3717,3415,3171,3280,3224,3281,3159,3236,3313,49080,3455,3435,3476,3451,3553,3525,3464,3500,3308,3160,3173,3021,2989,2917,2653,23998,2462,2428,2425,2246,2311,2300,2318,2292,2611,2605,15144,1964,1878,1836,1661,1386,1333,1367,1280,1259,1180,6972,1097,985,825,803,703,2559,135668,7987,1489,1520,1669,1610,1699,8273,1723,1618,1699,1604,1629,9276,1551,1521,1593,1561,1543,1507,5540,1570,1510,1360,1100,7009,1122,1309,1478,1492,1608,19201,1652,1668,1724,1881,1936,1932,2004,2139,2169,2096,27314,2138,2051,2017,1925,1928,2010,1889,1771,1613,1704,1640,1686,1626,1622,1694,25304,1810,1782,1804,1742,1894,1862,1786,1825,1685,1568,1705,1513,1457,1506,1365,12636,1267,1234,1264,1171,1230,1205,1224,1241,1393,1407,8660,1092,1024,1044,956,778,761,826,746,730,703,4468,664,608,524,490,437,1745,126384,8503,1607,1723,1761,1698,1714,8588,1838,1655,1669,1694,1732,9693,1689,1614,1622,1675,1596,1497,5823,1597,1553,1393,1280,7094,1246,1324,1474,1501,1549,17028,1528,1656,1570,1625,1698,1772,1745,1777,1842,1815,25529,1833,1841,1817,1854,1786,1847,1828,1644,1558,1576,1584,1595,1533,1614,1619,23776,1645,1653,1672,1709,1659,1663,1678,1675,1623,1592,1468,1508,1532,1411,1288,11362,1195,1194,1161,1075,1081,1095,1094,1051,1218,1198,6484,872,854,792,705,608,572,541,534,529,477,2504,433,377,301,313,266,814 +"2021","Hillingdon","E09000017",305905,19880,3811,3920,3939,4047,4163,20469,4057,4087,3986,4143,4196,23679,4072,4025,4027,4099,3770,3686,14868,3677,3662,3605,3924,19812,3809,4070,4074,3989,3870,44451,3927,4109,4039,4223,4472,4566,4658,4788,4775,4894,68669,4970,5023,5027,5061,4844,5097,5059,4758,4335,4209,4207,4066,4152,3901,3960,52900,3994,4130,3812,4021,3937,3886,3696,3568,3568,3406,3338,3138,2981,2763,2662,22113,2589,2490,2302,2245,2035,2021,2055,2025,2188,2163,13155,1582,1629,1547,1402,1228,1249,1222,1137,1132,1027,5909,959,838,747,682,562,2121,154862,9739,1921,1955,1910,1947,2006,9912,1978,1976,1943,2001,2014,11634,1998,2030,1976,1998,1884,1748,6898,1798,1759,1615,1726,9391,1649,1897,2000,1906,1939,23163,1981,2110,2022,2142,2383,2402,2420,2497,2588,2618,35004,2604,2643,2672,2579,2499,2576,2637,2402,2253,2071,2098,2060,2005,1944,1961,26532,2014,2087,1908,2110,1894,1912,1871,1796,1821,1729,1623,1510,1539,1400,1318,11436,1315,1260,1172,1100,1059,1023,1059,1098,1175,1175,7392,847,885,836,803,684,724,690,645,664,614,3761,601,530,455,413,350,1412,151043,10141,1890,1965,2029,2100,2157,10557,2079,2111,2043,2142,2182,12045,2074,1995,2051,2101,1886,1938,7970,1879,1903,1990,2198,10421,2160,2173,2074,2083,1931,21288,1946,1999,2017,2081,2089,2164,2238,2291,2187,2276,33665,2366,2380,2355,2482,2345,2521,2422,2356,2082,2138,2109,2006,2147,1957,1999,26368,1980,2043,1904,1911,2043,1974,1825,1772,1747,1677,1715,1628,1442,1363,1344,10677,1274,1230,1130,1145,976,998,996,927,1013,988,5763,735,744,711,599,544,525,532,492,468,413,2148,358,308,292,269,212,709 +"2021","Hounslow","E09000018",288176,18222,3532,3654,3587,3696,3753,19107,3822,3722,3698,3847,4018,22169,3847,3757,3719,3724,3609,3513,12660,3431,3399,3109,2721,16756,2901,2883,3307,3709,3956,45717,4003,3955,4123,4329,4398,4649,4859,5166,5210,5025,70966,5325,5156,5129,5165,5127,5201,5148,4759,4603,4449,4384,4168,4138,4102,4112,48632,4008,3851,3867,3705,3511,3560,3384,3333,3142,2952,2924,2894,2651,2376,2474,19470,2273,2120,2048,2160,1965,1851,1887,1710,1761,1695,10487,1354,1385,1216,1079,1096,961,963,879,812,742,3990,645,587,500,467,417,1374,144974,8823,1661,1815,1713,1788,1846,9363,1860,1827,1785,1908,1983,10682,1848,1784,1863,1730,1727,1730,6012,1668,1668,1446,1230,7991,1332,1357,1519,1835,1948,23739,2082,1976,2119,2199,2322,2399,2548,2724,2799,2571,35533,2687,2706,2611,2720,2590,2673,2587,2314,2359,2088,2080,2110,2064,2030,1914,24345,2115,1878,1914,1836,1712,1739,1680,1646,1596,1497,1396,1495,1392,1229,1220,10222,1165,1119,1070,1123,1002,978,971,902,980,912,5844,738,748,666,592,622,562,518,496,466,436,2420,358,332,274,274,238,944,143202,9399,1871,1839,1874,1908,1907,9744,1962,1895,1913,1939,2035,11487,1999,1973,1856,1994,1882,1783,6648,1763,1731,1663,1491,8765,1569,1526,1788,1874,2008,21978,1921,1979,2004,2130,2076,2250,2311,2442,2411,2454,35433,2638,2450,2518,2445,2537,2528,2561,2445,2244,2361,2304,2058,2074,2072,2198,24287,1893,1973,1953,1869,1799,1821,1704,1687,1546,1455,1528,1399,1259,1147,1254,9248,1108,1001,978,1037,963,873,916,808,781,783,4643,616,637,550,487,474,399,445,383,346,306,1570,287,255,226,193,179,430 +"2021","Islington","E09000019",216582,11210,2456,2272,2222,2124,2136,9975,2020,1923,1953,2045,2034,11778,2027,2074,2005,1945,1907,1820,8815,1758,1808,2409,2840,18474,3046,3276,3524,4076,4552,56062,5218,5577,5844,6076,6034,6067,5932,5362,5063,4889,46413,4455,4121,3790,3480,3159,3335,3256,2864,2653,2694,2583,2590,2470,2526,2437,33540,2672,2648,2488,2537,2552,2648,2423,2308,2321,2128,2021,1942,1781,1582,1489,11825,1447,1331,1271,1210,1173,1054,1073,1112,1127,1027,6144,783,794,747,686,580,577,566,533,458,420,2346,398,360,279,263,222,824,113292,5447,1209,1134,1046,1017,1041,4947,1027,903,1004,1068,945,5828,988,1045,980,947,930,938,4607,843,873,1266,1625,10252,1701,1813,2013,2268,2457,29876,2844,3039,3171,3232,3221,3294,3150,2830,2603,2492,23730,2276,2132,1942,1775,1586,1710,1598,1435,1446,1399,1347,1361,1279,1255,1189,17330,1409,1322,1278,1269,1277,1337,1267,1238,1238,1064,1102,963,954,805,807,6242,762,673,639,652,628,523,590,621,586,568,3528,482,459,409,395,312,320,308,317,278,248,1505,245,224,179,153,144,560,103290,5763,1247,1138,1176,1107,1095,5028,993,1020,949,977,1089,5950,1039,1029,1025,998,977,882,4208,915,935,1143,1215,8222,1345,1463,1511,1808,2095,26186,2374,2538,2673,2844,2813,2773,2782,2532,2460,2397,22683,2179,1989,1848,1705,1573,1625,1658,1429,1207,1295,1236,1229,1191,1271,1248,16210,1263,1326,1210,1268,1275,1311,1156,1070,1083,1064,919,979,827,777,682,5583,685,658,632,558,545,531,483,491,541,459,2616,301,335,338,291,268,257,258,216,180,172,841,153,136,100,110,78,264 +"2021","Kensington and Chelsea","E09000020",143360,6172,1270,1158,1300,1099,1345,6365,1184,1255,1320,1270,1336,7749,1312,1279,1347,1288,1256,1267,5441,1177,1530,1318,1416,12197,2126,1991,2602,2689,2789,25142,2748,2605,2590,2580,2542,2375,2529,2404,2505,2264,30349,2351,2107,2030,2057,2023,2031,2035,1843,1892,1784,2047,1937,2071,2053,2088,29349,2281,2067,2329,2198,2207,2172,2137,2135,2094,1902,1777,1618,1561,1453,1418,11324,1277,1246,1222,1110,999,1147,1044,1146,1083,1050,6813,861,934,789,809,626,657,640,546,495,456,2459,359,338,299,238,232,993,76305,3009,601,551,660,524,673,3109,617,574,643,605,670,3827,629,620,667,625,649,637,2683,631,684,691,677,6347,1045,1107,1284,1427,1484,13676,1478,1421,1426,1385,1391,1318,1335,1346,1337,1239,16316,1210,1179,1123,1137,1125,1042,1065,959,1018,1024,1135,1073,1009,1097,1120,15822,1298,1073,1299,1198,1172,1163,1071,1142,1161,1083,933,821,892,695,821,6192,694,709,678,592,549,609,556,639,598,568,3783,489,547,402,438,346,348,367,326,259,261,1541,204,194,166,129,143,705,67055,3163,669,607,640,575,672,3256,567,681,677,665,666,3922,683,659,680,663,607,630,2758,546,846,627,739,5850,1081,884,1318,1262,1305,11466,1270,1184,1164,1195,1151,1057,1194,1058,1168,1025,14033,1141,928,907,920,898,989,970,884,874,760,912,864,1062,956,968,13527,983,994,1030,1000,1035,1009,1066,993,933,819,844,797,669,758,597,5132,583,537,544,518,450,538,488,507,485,482,3030,372,387,387,371,280,309,273,220,236,195,918,155,144,133,109,89,288 +"2021","Kingston upon Thames","E09000021",168065,9559,1802,1869,1891,2014,1983,10510,2130,2093,1977,2144,2166,12530,2161,2127,2175,2153,1972,1942,7509,1977,1942,1741,1849,11155,2075,2260,2264,2335,2221,23270,2104,2151,2164,2210,2356,2367,2417,2573,2496,2432,39161,2508,2634,2535,2713,2589,2844,2813,2701,2610,2524,2556,2558,2538,2556,2482,30044,2496,2345,2360,2231,2203,2195,2128,2065,1967,1830,1819,1734,1656,1489,1526,13330,1403,1370,1420,1287,1249,1275,1280,1302,1345,1399,7732,1044,978,952,866,711,713,685,658,550,575,3265,458,448,392,320,318,1329,87046,4628,876,885,909,994,964,5210,1040,1006,1005,1028,1131,6273,1040,1051,1120,1079,983,1000,3833,976,958,880,1019,6111,1182,1287,1242,1258,1142,12160,1054,1098,1141,1161,1249,1247,1276,1327,1336,1271,20368,1343,1362,1354,1445,1350,1524,1477,1400,1324,1289,1343,1301,1293,1321,1242,15201,1268,1161,1196,1128,1123,1071,1070,1020,1024,929,952,862,841,745,811,6992,708,747,722,678,621,674,675,712,713,742,4204,555,526,499,445,383,390,379,393,313,321,2066,262,260,233,192,210,909,81019,4931,926,984,982,1020,1019,5300,1090,1087,972,1116,1035,6257,1121,1076,1055,1074,989,942,3676,1001,984,861,830,5044,893,973,1022,1077,1079,11110,1050,1053,1023,1049,1107,1120,1141,1246,1160,1161,18793,1165,1272,1181,1268,1239,1320,1336,1301,1286,1235,1213,1257,1245,1235,1240,14843,1228,1184,1164,1103,1080,1124,1058,1045,943,901,867,872,815,744,715,6338,695,623,698,609,628,601,605,590,632,657,3528,489,452,453,421,328,323,306,265,237,254,1199,196,188,159,128,108,420 +"2021","Lambeth","E09000022",317657,15265,3147,3201,3009,2959,2949,14943,2942,2957,2952,3158,2934,18506,3086,3111,3078,3158,3053,3020,11914,2960,3049,2978,2927,26755,3091,3454,4952,6788,8470,81899,9238,9611,9086,8883,8519,8515,7656,7312,6846,6233,69290,5946,5264,5209,4979,5034,4863,4729,4430,4188,4233,4270,4161,3933,3964,4087,51825,4021,4175,4194,4195,3883,4074,3771,3624,3505,3212,3017,2742,2631,2491,2290,15835,2139,1994,1707,1620,1517,1488,1444,1344,1339,1243,8261,1036,952,942,935,774,820,801,716,656,629,3164,533,414,372,367,313,1165,163719,7488,1514,1549,1440,1478,1507,7324,1388,1436,1425,1615,1460,9034,1577,1559,1465,1520,1425,1488,6052,1485,1565,1502,1500,14515,1628,1841,2623,3738,4685,42537,5043,5211,4717,4652,4350,4332,3926,3682,3469,3155,34935,3046,2620,2628,2444,2510,2420,2427,2303,2135,2136,2132,2146,2006,1950,2032,26702,2038,1997,2162,2164,2020,2106,1919,1835,1873,1728,1592,1422,1420,1262,1164,8360,1182,991,893,874,818,773,754,698,708,669,4731,600,524,549,514,445,468,458,426,394,353,2041,331,261,214,223,195,817,153938,7777,1633,1652,1569,1481,1442,7619,1554,1521,1527,1543,1474,9472,1509,1552,1613,1638,1628,1532,5862,1475,1484,1476,1427,12240,1463,1613,2329,3050,3785,39362,4195,4400,4369,4231,4169,4183,3730,3630,3377,3078,34355,2900,2644,2581,2535,2524,2443,2302,2127,2053,2097,2138,2015,1927,2014,2055,25123,1983,2178,2032,2031,1863,1968,1852,1789,1632,1484,1425,1320,1211,1229,1126,7475,957,1003,814,746,699,715,690,646,631,574,3530,436,428,393,421,329,352,343,290,262,276,1123,202,153,158,144,118,348 +"2021","Lewisham","E09000023",300550,19127,3842,4007,3811,3812,3655,18172,3747,3568,3597,3695,3565,20843,3606,3632,3549,3393,3400,3263,12407,3356,3242,3002,2807,18810,3042,3512,3531,4187,4538,58432,4892,5147,5508,5970,6066,6194,6221,6397,6062,5975,72036,6108,5520,5416,5252,5210,5149,4978,4758,4590,4274,4193,4346,4106,4088,4048,52081,4257,3919,3983,3810,4022,3878,4004,3628,3716,3360,3084,2807,2722,2547,2344,16092,2149,1845,1820,1589,1605,1543,1397,1372,1421,1351,8963,1059,1081,1010,1028,867,820,836,832,777,653,3587,597,535,471,385,328,1271,157818,9404,1874,1995,1871,1893,1771,8829,1727,1813,1756,1836,1697,10404,1719,1781,1858,1687,1724,1635,6185,1560,1628,1509,1488,10033,1536,1897,1898,2281,2421,31585,2668,2827,2977,3270,3216,3299,3391,3383,3247,3307,37797,3287,2967,2850,2753,2679,2786,2647,2477,2439,2195,2201,2230,2166,2107,2013,27501,2326,2041,2054,1972,2055,2076,2156,1993,2020,1769,1679,1483,1373,1308,1196,8570,1086,977,940,849,885,796,736,763,771,767,5197,600,575,583,586,500,473,513,510,457,400,2313,377,336,282,237,199,882,142732,9723,1968,2012,1940,1919,1884,9343,2020,1755,1841,1859,1868,10439,1887,1851,1691,1706,1676,1628,6222,1796,1614,1493,1319,8777,1506,1615,1633,1906,2117,26847,2224,2320,2531,2700,2850,2895,2830,3014,2815,2668,34239,2821,2553,2566,2499,2531,2363,2331,2281,2151,2079,1992,2116,1940,1981,2035,24580,1931,1878,1929,1838,1967,1802,1848,1635,1696,1591,1405,1324,1349,1239,1148,7522,1063,868,880,740,720,747,661,609,650,584,3766,459,506,427,442,367,347,323,322,320,253,1274,220,199,189,148,129,389 +"2021","Merton","E09000024",215180,13532,2740,2738,2742,2667,2645,13301,2800,2577,2574,2664,2686,15582,2685,2689,2611,2675,2508,2414,8264,2430,2302,1953,1579,11167,1639,1862,2287,2560,2819,36353,3114,3385,3282,3724,3706,3735,3906,3746,3880,3875,52593,3814,3779,3784,3735,3839,3854,3747,3648,3398,3472,3139,3197,3019,3167,3001,37318,2918,2920,2910,2924,2808,2777,2546,2540,2444,2279,2282,2151,2010,1887,1922,14983,1735,1633,1581,1500,1430,1496,1407,1409,1443,1349,8500,1082,1066,934,882,795,823,812,761,706,639,3587,534,503,416,426,323,1385,110529,6602,1337,1346,1342,1303,1274,6393,1332,1164,1274,1333,1290,7578,1292,1286,1286,1292,1172,1250,4000,1190,1127,945,738,5761,808,959,1158,1328,1508,18979,1604,1787,1749,1942,1922,1923,2037,1971,2050,1994,26902,1942,1969,1956,1881,2018,1994,1938,1855,1745,1747,1576,1569,1493,1655,1564,19229,1451,1494,1476,1511,1451,1439,1307,1313,1268,1196,1190,1104,1069,964,996,7979,937,875,835,818,745,810,785,738,765,671,4768,617,569,536,459,466,463,461,411,392,394,2338,331,296,253,267,195,996,104651,6930,1403,1392,1400,1364,1371,6908,1468,1413,1300,1331,1396,8004,1393,1403,1325,1383,1336,1164,4264,1240,1175,1008,841,5406,831,903,1129,1232,1311,17374,1510,1598,1533,1782,1784,1812,1869,1775,1830,1881,25691,1872,1810,1828,1854,1821,1860,1809,1793,1653,1725,1563,1628,1526,1512,1437,18089,1467,1426,1434,1413,1357,1338,1239,1227,1176,1083,1092,1047,941,923,926,7004,798,758,746,682,685,686,622,671,678,678,3732,465,497,398,423,329,360,351,350,314,245,1249,203,207,163,159,128,389 +"2021","Newham","E09000025",351029,23854,4790,4882,4765,4802,4615,23326,4702,4519,4696,4687,4722,27681,4586,4885,4562,4736,4524,4388,17766,4546,4325,4504,4391,28285,4559,4882,5719,6380,6745,72733,7121,7143,7161,7457,7150,7475,7449,7267,7427,7083,82692,6954,6854,6514,6196,6011,5975,5925,5573,5011,4912,4933,4771,4596,4251,4216,49529,4459,4484,4064,3868,3585,3560,3323,3384,3137,2897,2947,2710,2514,2349,2248,15396,2109,1926,1710,1791,1567,1404,1291,1239,1229,1130,7183,869,808,799,822,702,731,658,652,587,555,2584,426,400,317,308,235,898,175718,11981,2475,2428,2363,2420,2295,11442,2294,2171,2304,2321,2352,13694,2221,2524,2204,2388,2205,2152,8953,2310,2146,2294,2203,13968,2157,2416,2885,3091,3419,36537,3585,3620,3549,3788,3659,3703,3707,3635,3676,3615,40424,3501,3362,3364,3023,2924,2954,2916,2607,2361,2427,2358,2269,2222,2030,2106,24816,2081,2254,1964,1894,1778,1819,1672,1769,1589,1477,1535,1364,1279,1188,1153,8172,1086,953,850,958,836,697,741,662,732,657,4164,479,456,481,477,429,424,377,369,353,319,1567,251,234,186,180,143,573,175311,11873,2315,2454,2402,2382,2320,11884,2408,2348,2392,2366,2370,13987,2365,2361,2358,2348,2319,2236,8813,2236,2179,2210,2188,14317,2402,2466,2834,3289,3326,36196,3536,3523,3612,3669,3491,3772,3742,3632,3751,3468,42268,3453,3492,3150,3173,3087,3021,3009,2966,2650,2485,2575,2502,2374,2221,2110,24713,2378,2230,2100,1974,1807,1741,1651,1615,1548,1420,1412,1346,1235,1161,1095,7224,1023,973,860,833,731,707,550,577,497,473,3019,390,352,318,345,273,307,281,283,234,236,1017,175,166,131,128,92,325 +"2021","Redbridge","E09000026",310263,21197,4062,4238,4326,4256,4315,21733,4423,4290,4263,4351,4406,25316,4315,4295,4319,4279,4218,3890,15425,4104,4248,3675,3398,18967,3229,3507,3792,4075,4364,46639,4274,4173,4245,4494,4549,4804,4818,5084,5091,5107,72124,5085,5493,5203,5294,5152,5367,5177,4781,4805,4654,4465,4278,4309,4168,3893,50930,4116,3911,3941,3867,3585,3529,3701,3368,3257,3152,3093,3033,2778,2872,2727,20909,2475,2384,2235,2101,2080,1991,1920,1848,1931,1944,11805,1482,1463,1348,1261,1091,1057,1180,1063,979,881,5218,781,736,684,560,514,1943,156931,10392,1947,2130,2082,2122,2111,10648,2189,2131,2063,2083,2182,12354,2118,2113,2233,2027,2012,1851,7303,1967,1990,1733,1613,9393,1498,1714,1928,2071,2182,24012,2203,2134,2250,2244,2392,2434,2557,2617,2562,2619,36458,2713,2784,2711,2688,2624,2753,2674,2412,2289,2355,2282,2052,2106,2025,1990,25642,2112,2027,1949,1871,1831,1773,1955,1718,1590,1560,1565,1482,1398,1414,1397,10959,1226,1232,1160,1127,1081,1055,1020,950,1061,1047,6494,779,816,760,731,597,556,622,571,573,489,3276,450,440,414,357,311,1304,153332,10805,2115,2108,2244,2134,2204,11085,2234,2159,2200,2268,2224,12962,2197,2182,2086,2252,2206,2039,8122,2137,2258,1942,1785,9574,1731,1793,1864,2004,2182,22627,2071,2039,1995,2250,2157,2370,2261,2467,2529,2488,35666,2372,2709,2492,2606,2528,2614,2503,2369,2516,2299,2183,2226,2203,2143,1903,25288,2004,1884,1992,1996,1754,1756,1746,1650,1667,1592,1528,1551,1380,1458,1330,9950,1249,1152,1075,974,999,936,900,898,870,897,5311,703,647,588,530,494,501,558,492,406,392,1942,331,296,270,203,203,639 +"2021","Richmond upon Thames","E09000027",195278,11105,2025,2153,2214,2289,2424,12812,2441,2520,2568,2601,2682,15528,2762,2735,2690,2557,2483,2301,7849,2322,2230,1918,1379,8227,1248,1449,1749,1935,1846,22050,1866,1857,2013,2044,2173,2259,2403,2346,2536,2553,46950,2701,2731,2847,3057,3006,3230,3386,3242,3242,3260,3139,3317,3212,3282,3298,39310,3280,3072,3008,3025,3022,3027,2847,2726,2621,2434,2246,2112,2067,1921,1902,17086,1736,1667,1691,1614,1646,1684,1672,1681,1880,1815,10222,1395,1390,1321,1140,912,900,899,870,777,618,4139,640,523,469,450,379,1678,101316,5400,976,1070,1057,1110,1187,6282,1209,1253,1280,1245,1295,7601,1338,1312,1309,1234,1259,1149,3835,1135,1087,920,693,4163,626,720,897,973,947,11699,989,954,1065,1074,1134,1205,1238,1262,1336,1442,24778,1457,1478,1529,1638,1650,1750,1848,1753,1694,1659,1611,1689,1678,1743,1601,20218,1732,1561,1573,1521,1534,1576,1464,1385,1337,1244,1142,1084,1069,989,1007,9098,898,897,906,851,849,912,877,923,1020,965,5625,757,712,727,651,492,495,537,481,427,346,2617,391,314,258,267,240,1147,93962,5705,1049,1083,1157,1179,1237,6530,1232,1267,1288,1356,1387,7927,1424,1423,1381,1323,1224,1152,4014,1187,1143,998,686,4064,622,729,852,962,899,10351,877,903,948,970,1039,1054,1165,1084,1200,1111,22172,1244,1253,1318,1419,1356,1480,1538,1489,1548,1601,1528,1628,1534,1539,1697,19092,1548,1511,1435,1504,1488,1451,1383,1341,1284,1190,1104,1028,998,932,895,7988,838,770,785,763,797,772,795,758,860,850,4597,638,678,594,489,420,405,362,389,350,272,1522,249,209,211,183,139,531 +"2021","Southwark","E09000028",307643,16362,3230,3403,3276,3178,3275,15893,3234,3146,3169,3195,3149,19247,3371,3196,3288,3163,3206,3023,13178,3118,2949,3333,3778,25478,3770,4636,4936,5768,6368,73226,7197,7349,7897,7940,7884,7592,7642,7382,6531,5812,68308,5919,5456,5302,4964,4895,4674,4578,4350,4062,4190,4184,4041,3879,4061,3753,50273,3980,3945,3930,3787,3916,3686,3686,3560,3482,3154,3112,2833,2576,2378,2248,15069,1988,1796,1744,1522,1349,1348,1394,1286,1294,1348,7621,1030,929,834,800,755,744,724,704,577,524,2988,487,413,359,323,295,1111,158638,7984,1574,1649,1603,1590,1568,7843,1568,1527,1548,1632,1568,9442,1663,1525,1587,1610,1564,1493,6776,1524,1478,1712,2062,13980,2130,2697,2665,3111,3377,37603,3784,3849,4118,4055,4047,3849,3886,3716,3298,3001,35044,2981,2757,2717,2521,2538,2360,2340,2197,2176,2251,2095,2086,1984,2067,1974,25638,2116,1901,2007,1969,1933,1882,1864,1892,1841,1532,1637,1389,1300,1257,1118,7970,1061,907,937,813,700,694,784,705,684,685,4357,596,505,472,438,419,433,428,418,323,325,2001,305,251,238,208,203,796,149005,8378,1656,1754,1673,1588,1707,8050,1666,1619,1621,1563,1581,9805,1708,1671,1701,1553,1642,1530,6402,1594,1471,1621,1716,11498,1640,1939,2271,2657,2991,35623,3413,3500,3779,3885,3837,3743,3756,3666,3233,2811,33264,2938,2699,2585,2443,2357,2314,2238,2153,1886,1939,2089,1955,1895,1994,1779,24635,1864,2044,1923,1818,1983,1804,1822,1668,1641,1622,1475,1444,1276,1121,1130,7099,927,889,807,709,649,654,610,581,610,663,3264,434,424,362,362,336,311,296,286,254,199,987,182,162,121,115,92,315 +"2021","Sutton","E09000029",209641,12796,2303,2515,2567,2572,2839,14250,2771,2821,2809,2853,2996,16936,2966,3005,2889,2822,2687,2567,8774,2569,2506,2133,1566,9943,1602,1818,1977,2281,2265,27201,2297,2426,2517,2545,2689,2822,2851,2951,3039,3064,49038,3175,3230,3209,3511,3524,3556,3637,3490,3258,3185,3033,3170,3012,3013,3035,38964,3031,2898,2908,2906,2975,2911,2941,2720,2610,2415,2376,2241,2128,1987,1917,16969,1927,1770,1753,1641,1522,1574,1552,1601,1712,1917,10205,1264,1370,1192,1142,933,853,960,922,796,773,4565,724,633,556,506,448,1698,108159,6245,1121,1201,1276,1236,1411,6822,1314,1329,1334,1386,1459,8190,1419,1472,1419,1342,1296,1242,4213,1235,1247,1014,717,4978,793,846,983,1167,1189,14487,1176,1260,1311,1317,1404,1556,1548,1589,1651,1675,25462,1696,1776,1762,1904,1863,1876,1866,1830,1640,1593,1489,1599,1521,1521,1526,19983,1565,1475,1493,1512,1512,1524,1521,1411,1309,1248,1230,1158,1049,1000,976,8991,1002,929,899,865,827,842,815,858,913,1041,5831,672,776,652,663,546,484,538,546,492,462,2957,425,395,334,329,295,1179,101482,6551,1182,1314,1291,1336,1428,7428,1457,1492,1475,1467,1537,8746,1547,1533,1470,1480,1391,1325,4561,1334,1259,1119,849,4965,809,972,994,1114,1076,12714,1121,1166,1206,1228,1285,1266,1303,1362,1388,1389,23576,1479,1454,1447,1607,1661,1680,1771,1660,1618,1592,1544,1571,1491,1492,1509,18981,1466,1423,1415,1394,1463,1387,1420,1309,1301,1167,1146,1083,1079,987,941,7978,925,841,854,776,695,732,737,743,799,876,4374,592,594,540,479,387,369,422,376,304,311,1608,299,238,222,177,153,519 +"2021","Tower Hamlets","E09000030",310299,19090,3970,3880,3702,3683,3855,17658,3502,3431,3480,3619,3626,20675,3474,3613,3447,3481,3380,3280,15087,3367,3403,3628,4689,31988,5013,5393,6066,7170,8346,85181,8667,9009,8925,8785,9091,9058,8519,8246,7778,7103,69954,6742,6265,5907,5466,5396,5177,4772,4396,4148,4144,3845,3732,3693,3278,2993,33197,2957,2836,2833,2738,2554,2301,2197,2302,2093,1942,1796,1830,1650,1646,1522,10380,1383,1294,1118,1188,1062,1039,884,852,782,778,5022,649,583,535,545,483,517,490,418,420,382,2067,334,298,260,230,193,752,154433,9301,1920,1951,1678,1831,1921,8624,1614,1740,1734,1810,1726,10204,1698,1750,1733,1698,1699,1626,7669,1714,1669,1855,2431,16856,2644,2815,3232,3834,4331,42879,4479,4464,4437,4597,4647,4443,4251,4159,3890,3512,33812,3407,3152,3007,2740,2678,2578,2310,2065,2056,1902,1730,1713,1656,1453,1365,15338,1308,1250,1297,1208,1174,1096,1008,1080,1017,931,838,874,740,766,751,5569,713,638,621,626,583,589,534,453,425,387,2886,381,324,302,324,266,321,281,253,211,223,1295,218,171,158,142,114,492,155866,9789,2050,1929,2024,1852,1934,9034,1888,1691,1746,1809,1900,10471,1776,1863,1714,1783,1681,1654,7418,1653,1734,1773,2258,15132,2369,2578,2834,3336,4015,42302,4188,4545,4488,4188,4444,4615,4268,4087,3888,3591,36142,3335,3113,2900,2726,2718,2599,2462,2331,2092,2242,2115,2019,2037,1825,1628,17859,1649,1586,1536,1530,1380,1205,1189,1222,1076,1011,958,956,910,880,771,4811,670,656,497,562,479,450,350,399,357,391,2136,268,259,233,221,217,196,209,165,209,159,772,116,127,102,88,79,260 +"2021","Waltham Forest","E09000031",278425,18986,3917,3971,3901,3578,3619,17441,3605,3448,3442,3472,3474,19818,3442,3402,3340,3266,3163,3205,11937,3134,3259,2868,2676,15575,2604,2836,3081,3348,3706,51078,3841,4308,4493,4820,5079,5555,5530,5665,5905,5882,69530,5558,5539,5467,5367,5154,5012,4855,4540,4540,4156,4223,3920,3661,3793,3745,45664,3890,3615,3596,3629,3401,3286,3281,3223,2906,2760,2762,2635,2428,2179,2073,15998,1901,1904,1742,1648,1601,1496,1398,1419,1438,1451,8964,1138,1069,992,1044,846,794,828,803,740,710,3434,559,491,432,385,356,1211,141951,9308,2010,1862,1777,1845,1814,8482,1768,1661,1687,1669,1697,9751,1654,1753,1647,1611,1523,1563,5752,1476,1548,1409,1319,7703,1213,1463,1556,1682,1789,26449,1954,2146,2401,2524,2594,2989,2823,2910,3029,3079,35222,2804,2908,2739,2794,2651,2556,2545,2230,2242,2067,1980,2034,1901,1926,1845,23587,1871,1852,1878,1792,1848,1708,1680,1697,1567,1460,1398,1364,1310,1107,1055,8582,974,1045,916,908,812,826,771,777,758,795,4975,599,586,579,613,458,453,441,455,412,379,2140,326,293,256,238,202,825,136474,9678,1907,2109,2124,1733,1805,8959,1837,1787,1755,1803,1777,10067,1788,1649,1693,1655,1640,1642,6185,1658,1711,1459,1357,7872,1391,1373,1525,1666,1917,24629,1887,2162,2092,2296,2485,2566,2707,2755,2876,2803,34308,2754,2631,2728,2573,2503,2456,2310,2310,2298,2089,2243,1886,1760,1867,1900,22077,2019,1763,1718,1837,1553,1578,1601,1526,1339,1300,1364,1271,1118,1072,1018,7416,927,859,826,740,789,670,627,642,680,656,3989,539,483,413,431,388,341,387,348,328,331,1294,233,198,176,147,154,386 +"2021","Wandsworth","E09000032",327502,18704,4024,3852,3786,3548,3494,16908,3401,3479,3288,3431,3309,18336,3284,3157,3174,3122,2941,2658,10423,2727,2661,2515,2520,23844,2715,3115,4226,5875,7913,86123,9179,9749,9916,9428,9387,9008,7992,7608,7199,6657,74695,6390,6119,5820,5572,5390,5366,5146,4916,4690,4470,4352,4214,4156,4175,3919,47134,3958,3803,3862,3649,3528,3601,3361,3210,3109,2941,2808,2549,2350,2187,2218,17381,1897,1843,1851,1812,1696,1705,1655,1623,1664,1635,9932,1251,1309,1087,1160,917,953,919,861,758,717,4022,662,587,473,421,366,1513,172250,9109,1948,1897,1856,1718,1690,8361,1689,1753,1645,1660,1614,8888,1623,1469,1505,1570,1458,1263,5351,1379,1363,1281,1328,13256,1423,1797,2364,3289,4383,46428,5170,5428,5447,5037,4998,4702,4324,3944,3779,3599,38703,3384,3179,3049,2957,2808,2803,2737,2554,2357,2292,2157,2171,2116,2129,2010,24447,2141,1971,1974,1970,1749,1886,1776,1616,1619,1527,1352,1342,1198,1135,1191,9479,1011,989,1051,976,925,948,890,868,912,909,5630,678,747,604,695,527,512,519,503,429,416,2598,403,367,280,250,255,1043,155252,9595,2076,1955,1930,1830,1804,8547,1712,1726,1643,1771,1695,9448,1661,1688,1669,1552,1483,1395,5072,1348,1298,1234,1192,10588,1292,1318,1862,2586,3530,39695,4009,4321,4469,4391,4389,4306,3668,3664,3420,3058,35992,3006,2940,2771,2615,2582,2563,2409,2362,2333,2178,2195,2043,2040,2046,1909,22687,1817,1832,1888,1679,1779,1715,1585,1594,1490,1414,1456,1207,1152,1052,1027,7902,886,854,800,836,771,757,765,755,752,726,4302,573,562,483,465,390,441,400,358,329,301,1424,259,220,193,171,111,470 +"2021","Westminster","E09000033",204233,8502,1861,1712,1676,1599,1654,7874,1573,1539,1447,1567,1748,10390,1730,1692,1707,1827,1681,1753,8896,1857,1990,2381,2668,19330,3078,3294,3790,4427,4741,44165,4645,4734,4621,4663,4590,4623,4339,4333,3967,3650,43906,3572,3362,3026,3020,3110,2788,3056,2662,2735,2820,2612,2726,2826,2838,2753,36388,2773,2765,2933,3012,2898,2719,2616,2417,2393,2282,2249,1998,1824,1847,1662,13644,1645,1462,1443,1356,1403,1336,1255,1310,1236,1198,8019,1093,1012,928,889,821,682,694,681,637,582,3119,502,432,387,339,288,1171,105327,4167,967,836,779,768,817,3870,783,760,685,783,859,5036,853,829,803,820,874,857,4364,881,985,1206,1292,10340,1690,1712,1953,2414,2571,22845,2409,2445,2465,2377,2350,2342,2237,2270,2069,1881,22448,1827,1704,1583,1506,1567,1418,1467,1357,1371,1505,1434,1406,1442,1421,1440,18671,1346,1421,1601,1664,1476,1379,1311,1190,1241,1109,1212,1019,951,934,817,7170,812,746,751,718,747,731,662,720,632,651,4517,635,512,514,484,459,395,393,389,374,362,1899,315,253,219,201,176,735,98906,4335,894,876,897,831,837,4004,790,779,762,784,889,5354,877,863,904,1007,807,896,4532,976,1005,1175,1376,8990,1388,1582,1837,2013,2170,21320,2236,2289,2156,2286,2240,2281,2102,2063,1898,1769,21458,1745,1658,1443,1514,1543,1370,1589,1305,1364,1315,1178,1320,1384,1417,1313,17717,1427,1344,1332,1348,1422,1340,1305,1227,1152,1173,1037,979,873,913,845,6474,833,716,692,638,656,605,593,590,604,547,3502,458,500,414,405,362,287,301,292,263,220,1220,187,179,168,138,112,436 +"2021","Medway","E06000035",279772,17308,3274,3345,3503,3566,3620,18336,3753,3531,3562,3684,3806,21372,3735,3614,3637,3564,3470,3352,12875,3386,3359,3169,2961,15935,2875,3107,3251,3339,3363,38710,3374,3588,3709,3751,3919,4083,4098,4146,4036,4006,55596,4107,3896,3784,3776,3915,3894,3931,3729,3436,3474,3406,3584,3400,3559,3705,53588,3798,3776,3878,3815,3881,3931,3892,3728,3710,3513,3411,3227,3108,3007,2913,25935,2664,2648,2619,2563,2433,2351,2492,2604,2775,2786,14955,1982,2068,1750,1663,1469,1275,1291,1278,1168,1011,5162,909,747,641,581,508,1776,142647,8456,1594,1639,1723,1690,1810,8968,1870,1732,1704,1819,1843,10478,1854,1756,1761,1746,1699,1662,6267,1665,1635,1547,1420,7785,1339,1491,1567,1693,1695,20252,1712,1890,1884,1999,2050,2201,2144,2193,2092,2087,28391,2072,1984,1967,1973,2012,1955,2053,1906,1794,1789,1735,1805,1737,1737,1872,27042,1894,1899,1924,1939,1927,1946,1971,1898,1880,1812,1709,1688,1585,1493,1477,13468,1376,1344,1338,1278,1280,1263,1271,1379,1466,1473,8187,1047,1114,934,899,803,673,737,726,672,582,3353,553,479,383,360,314,1264,137125,8852,1680,1706,1780,1876,1810,9368,1883,1799,1858,1865,1963,10894,1881,1858,1876,1818,1771,1690,6608,1721,1724,1622,1541,8150,1536,1616,1684,1646,1668,18458,1662,1698,1825,1752,1869,1882,1954,1953,1944,1919,27205,2035,1912,1817,1803,1903,1939,1878,1823,1642,1685,1671,1779,1663,1822,1833,26546,1904,1877,1954,1876,1954,1985,1921,1830,1830,1701,1702,1539,1523,1514,1436,12467,1288,1304,1281,1285,1153,1088,1221,1225,1309,1313,6768,935,954,816,764,666,602,554,552,496,429,1809,356,268,258,221,194,512 +"2021","Bracknell Forest","E06000036",124608,7120,1352,1413,1444,1473,1438,7862,1508,1510,1557,1612,1675,9695,1528,1628,1640,1657,1627,1615,5457,1589,1580,1303,985,6379,949,1138,1324,1423,1545,17514,1619,1545,1697,1595,1744,1747,1856,1957,1838,1916,27356,1885,1828,1894,1899,1894,1998,1958,1841,1717,1641,1683,1702,1837,1763,1816,24354,1896,1757,1793,1754,1849,1718,1723,1720,1618,1581,1566,1441,1413,1307,1218,10552,1220,1150,1072,1072,1010,993,919,982,1095,1039,5945,833,820,710,625,545,471,545,493,485,418,2374,405,342,297,271,216,843,63170,3452,644,712,721,695,680,3786,728,714,736,782,826,4779,740,793,832,831,795,788,2603,786,774,622,421,3049,430,521,623,701,774,8964,775,767,861,828,936,901,972,997,931,996,14010,985,969,961,977,947,1055,1005,963,903,813,860,849,942,883,898,12344,973,881,912,902,928,874,860,862,814,817,764,748,722,676,611,5425,592,611,526,556,502,504,467,536,575,556,3307,485,446,388,347,293,271,291,287,273,226,1451,243,204,162,161,126,555,61438,3668,708,701,723,778,758,4076,780,796,821,830,849,4916,788,835,808,826,832,827,2854,803,806,681,564,3330,519,617,701,722,771,8550,844,778,836,767,808,846,884,960,907,920,13346,900,859,933,922,947,943,953,878,814,828,823,853,895,880,918,12010,923,876,881,852,921,844,863,858,804,764,802,693,691,631,607,5127,628,539,546,516,508,489,452,446,520,483,2638,348,374,322,278,252,200,254,206,212,192,923,162,138,135,110,90,288 +"2021","West Berkshire","E06000037",161449,8310,1509,1599,1653,1720,1829,9697,1800,1885,1905,1982,2125,12701,2094,2076,2135,2200,2139,2057,7084,1930,2136,1805,1213,7353,1186,1381,1493,1574,1719,18319,1655,1757,1631,1774,1870,1863,1891,1943,1941,1994,32156,1976,1991,2093,1945,2066,2148,2109,2104,2062,2113,2194,2188,2320,2364,2483,34316,2593,2443,2566,2495,2499,2396,2386,2396,2329,2243,2106,2020,2052,1961,1831,17056,1789,1687,1656,1693,1647,1674,1575,1653,1849,1833,10483,1425,1428,1320,1175,965,976,873,887,773,661,3974,641,569,475,422,386,1481,81745,4047,719,770,815,859,884,4714,876,961,919,935,1023,6265,1051,985,1025,1092,1133,979,3432,979,1061,841,551,3504,496,669,740,757,842,9303,815,888,851,862,911,929,993,1011,972,1071,16500,972,1047,1090,1013,1071,1088,1073,1051,1051,1099,1092,1156,1187,1220,1290,17134,1287,1191,1289,1225,1269,1196,1218,1185,1164,1125,1048,972,1000,1022,943,8831,920,862,839,853,852,881,840,871,955,958,5579,717,766,686,643,539,518,446,489,417,358,2436,365,329,275,263,239,965,79704,4263,790,829,838,861,945,4983,924,924,986,1047,1102,6436,1043,1091,1110,1108,1006,1078,3652,951,1075,964,662,3849,690,712,753,817,877,9016,840,869,780,912,959,934,898,932,969,923,15656,1004,944,1003,932,995,1060,1036,1053,1011,1014,1102,1032,1133,1144,1193,17182,1306,1252,1277,1270,1230,1200,1168,1211,1165,1118,1058,1048,1052,939,888,8225,869,825,817,840,795,793,735,782,894,875,4904,708,662,634,532,426,458,427,398,356,303,1538,276,240,200,159,147,516 +"2021","Reading","E06000038",174228,10238,1980,2042,2033,2031,2152,10486,2171,2027,2085,2192,2011,12141,2052,2074,2094,2083,1944,1894,9094,1833,1741,2259,3261,14691,3337,3242,2842,2615,2655,30211,2753,2845,2930,2907,3137,3111,3129,3118,3187,3094,38724,3114,2938,2953,2848,2739,2841,2780,2476,2317,2405,2326,2280,2196,2286,2225,27663,2282,2168,2098,2085,2108,2015,1995,1884,1846,1752,1656,1512,1519,1433,1310,11146,1275,1227,1175,1113,1054,987,1031,1030,1176,1078,6937,808,931,887,729,653,630,654,578,560,507,2897,438,421,347,304,298,1089,87385,4991,970,972,976,1016,1057,5103,1053,990,1040,1046,974,5979,1031,999,1009,1043,972,925,4479,863,850,1143,1623,7478,1677,1685,1457,1333,1326,15351,1337,1427,1475,1518,1622,1568,1627,1575,1589,1613,18970,1579,1458,1493,1381,1339,1362,1363,1185,1149,1179,1118,1131,1046,1085,1102,13624,1153,1047,1029,1061,1047,1030,978,931,937,850,772,712,729,698,650,5823,647,639,594,555,544,523,588,561,601,571,3769,428,505,480,372,337,371,341,335,324,276,1818,251,250,215,191,177,734,86843,5247,1010,1070,1057,1015,1095,5383,1118,1037,1045,1146,1037,6162,1021,1075,1085,1040,972,969,4615,970,891,1116,1638,7213,1660,1557,1385,1282,1329,14860,1416,1418,1455,1389,1515,1543,1502,1543,1598,1481,19754,1535,1480,1460,1467,1400,1479,1417,1291,1168,1226,1208,1149,1150,1201,1123,14039,1129,1121,1069,1024,1061,985,1017,953,909,902,884,800,790,735,660,5323,628,588,581,558,510,464,443,469,575,507,3168,380,426,407,357,316,259,313,243,236,231,1079,187,171,132,113,121,355 +"2021","Slough","E06000039",158495,11772,2166,2305,2374,2391,2536,12689,2576,2402,2574,2590,2547,15104,2651,2698,2486,2614,2374,2281,7638,2135,2099,1880,1524,8949,1624,1680,1751,1881,2013,23509,1907,2127,2193,2111,2318,2416,2418,2523,2714,2782,39332,2829,2938,2869,3064,2790,3091,2933,2671,2602,2456,2337,2371,2145,2151,2085,24181,2023,1926,2002,1871,1778,1728,1717,1472,1521,1506,1485,1389,1275,1292,1196,8944,1119,1129,1008,976,886,847,833,743,734,669,4467,525,513,494,531,426,455,476,366,329,352,1910,298,303,258,237,163,651,80004,5857,1091,1114,1166,1188,1298,6152,1221,1137,1231,1287,1276,7461,1274,1370,1258,1273,1159,1127,3667,1026,1004,886,751,4471,775,780,896,976,1044,12436,948,1113,1137,1144,1251,1271,1247,1359,1467,1499,19907,1556,1597,1498,1593,1468,1599,1479,1293,1278,1188,1172,1144,992,993,1057,11923,939,951,958,918,889,826,821,740,765,782,726,694,648,659,607,4474,559,547,488,479,436,397,438,369,403,358,2471,315,265,258,300,231,245,267,201,190,199,1185,176,177,158,131,101,442,78491,5915,1075,1191,1208,1203,1238,6537,1355,1265,1343,1303,1271,7643,1377,1328,1228,1341,1215,1154,3971,1109,1095,994,773,4478,849,900,855,905,969,11073,959,1014,1056,967,1067,1145,1171,1164,1247,1283,19425,1273,1341,1371,1471,1322,1492,1454,1378,1324,1268,1165,1227,1153,1158,1028,12258,1084,975,1044,953,889,902,896,732,756,724,759,695,627,633,589,4470,560,582,520,497,450,450,395,374,331,311,1996,210,248,236,231,195,210,209,165,139,153,725,122,126,100,106,62,209 +"2021","Windsor and Maidenhead","E06000040",153494,8017,1462,1532,1628,1647,1748,9226,1750,1788,1799,1929,1960,12575,2017,2034,2089,2115,2230,2090,6891,2139,2121,1595,1036,6766,994,1174,1362,1617,1619,17291,1586,1579,1583,1602,1634,1830,1802,1878,1895,1902,33076,2013,1974,2080,2190,2133,2357,2319,2243,2131,2180,2223,2327,2260,2324,2322,31332,2424,2317,2359,2285,2323,2271,2212,2114,2167,2032,2003,1831,1766,1641,1587,14515,1469,1494,1447,1373,1416,1371,1357,1437,1599,1552,9573,1167,1257,1210,1033,883,814,888,838,793,690,4232,643,595,512,465,382,1635,78074,3932,740,726,772,833,861,4508,876,883,870,939,940,5893,964,974,1015,1020,997,923,3120,987,953,710,470,3273,461,500,665,836,811,8832,796,802,814,777,812,958,929,937,1035,972,17151,1068,1051,1117,1162,1119,1224,1199,1142,1093,1121,1143,1193,1164,1168,1187,15865,1236,1197,1219,1171,1138,1142,1122,1072,1101,994,1000,963,918,818,774,7621,759,768,777,716,746,703,718,762,849,823,5259,606,673,659,570,498,444,505,457,438,409,2620,355,361,301,286,231,1086,75420,4085,722,806,856,814,887,4718,874,905,929,990,1020,6682,1053,1060,1074,1095,1233,1167,3771,1152,1168,885,566,3493,533,674,697,781,808,8459,790,777,769,825,822,872,873,941,860,930,15925,945,923,963,1028,1014,1133,1120,1101,1038,1059,1080,1134,1096,1156,1135,15467,1188,1120,1140,1114,1185,1129,1090,1042,1066,1038,1003,868,848,823,813,6894,710,726,670,657,670,668,639,675,750,729,4314,561,584,551,463,385,370,383,381,355,281,1612,288,234,211,179,151,549 +"2021","Wokingham","E06000041",177502,9849,1720,1860,1966,2129,2174,12187,2329,2292,2315,2585,2666,14640,2608,2543,2530,2468,2314,2177,7919,2274,2138,1951,1556,8239,1362,1553,1708,1820,1796,20126,1812,1824,1890,1919,2003,1915,2126,2116,2234,2287,39672,2357,2395,2468,2579,2673,2789,2940,2692,2705,2736,2594,2623,2716,2697,2708,34318,2604,2531,2489,2460,2515,2432,2485,2458,2282,2266,2139,1978,1989,1954,1736,15862,1658,1599,1506,1510,1537,1461,1537,1547,1764,1743,10363,1298,1355,1308,1107,1025,902,907,913,798,750,4327,685,610,547,509,438,1538,90281,4720,824,873,936,1013,1074,5959,1134,1112,1148,1253,1312,7064,1261,1184,1215,1172,1171,1061,3911,1125,1002,1000,784,4074,631,775,843,927,898,10461,899,936,947,976,1025,1024,1115,1114,1191,1234,20325,1241,1257,1367,1350,1418,1450,1483,1367,1412,1378,1274,1325,1318,1338,1347,17231,1268,1244,1215,1291,1250,1233,1263,1285,1132,1148,1082,981,1009,946,884,8261,809,814,774,759,818,787,839,809,894,958,5601,716,705,702,616,518,486,498,528,438,394,2674,395,355,340,308,265,1011,87221,5129,896,987,1030,1116,1100,6228,1195,1180,1167,1332,1354,7576,1347,1359,1315,1296,1143,1116,4008,1149,1136,951,772,4165,731,778,865,893,898,9665,913,888,943,943,978,891,1011,1002,1043,1053,19347,1116,1138,1101,1229,1255,1339,1457,1325,1293,1358,1320,1298,1398,1359,1361,17087,1336,1287,1274,1169,1265,1199,1222,1173,1150,1118,1057,997,980,1008,852,7601,849,785,732,751,719,674,698,738,870,785,4762,582,650,606,491,507,416,409,385,360,356,1653,290,255,207,201,173,527 +"2021","Milton Keynes","E06000042",287061,17733,3256,3406,3530,3705,3836,20265,3914,3854,4107,4097,4293,24232,4287,4182,4165,4085,3896,3617,12737,3719,3594,2985,2439,14989,2420,2721,3066,3349,3433,41044,3597,3544,3726,3924,4250,4292,4323,4446,4484,4458,65595,4676,4608,4444,4686,4606,4812,4619,4550,4170,4250,4078,4219,3923,4071,3883,50878,4096,3914,3835,3733,3723,3612,3592,3528,3258,3097,3126,2979,2985,2762,2638,23402,2537,2574,2436,2411,2268,2262,2296,2139,2277,2202,11897,1631,1588,1490,1358,1182,1005,1038,976,841,788,4289,693,584,505,465,390,1652,145488,8701,1566,1679,1733,1821,1902,9883,2002,1821,2017,1985,2058,11668,2024,2012,2038,1984,1896,1714,6044,1776,1745,1414,1109,7243,1122,1252,1526,1643,1700,21055,1747,1747,1914,2034,2228,2216,2237,2325,2306,2301,33435,2448,2413,2301,2382,2374,2471,2382,2244,2126,2143,2035,2150,1950,2069,1947,25840,2071,1970,1952,1828,1955,1811,1802,1802,1673,1615,1604,1483,1513,1415,1346,12329,1331,1332,1305,1240,1201,1181,1238,1124,1179,1198,6479,852,881,752,744,647,544,580,528,482,469,2811,417,351,313,310,247,1173,141573,9032,1690,1727,1797,1884,1934,10382,1912,2033,2090,2112,2235,12564,2263,2170,2127,2101,2000,1903,6693,1943,1849,1571,1330,7746,1298,1469,1540,1706,1733,19989,1850,1797,1812,1890,2022,2076,2086,2121,2178,2157,32160,2228,2195,2143,2304,2232,2341,2237,2306,2044,2107,2043,2069,1973,2002,1936,25038,2025,1944,1883,1905,1768,1801,1790,1726,1585,1482,1522,1496,1472,1347,1292,11073,1206,1242,1131,1171,1067,1081,1058,1015,1098,1004,5418,779,707,738,614,535,461,458,448,359,319,1478,276,233,192,155,143,479 +"2021","Brighton and Hove","E06000043",277111,11751,2199,2323,2390,2403,2436,13051,2515,2622,2486,2691,2737,16934,2765,2959,2747,2939,2769,2755,15008,2726,2913,3777,5592,27924,6545,6373,5682,4863,4461,41470,4247,4121,4105,4199,4288,4335,4109,3961,4040,4065,59088,3843,3902,4011,3779,3918,4028,3930,3833,3659,3807,3735,3688,4247,4229,4479,52908,4205,4093,4404,4082,4107,4088,4007,3647,3429,3215,3050,2921,2718,2555,2387,21184,2346,2278,2190,2008,2092,1994,1928,2115,2163,2070,12246,1579,1645,1437,1323,1133,1108,1149,979,969,924,5547,793,754,683,633,505,2179,141543,5667,1059,1165,1143,1122,1178,6393,1278,1271,1179,1318,1347,8388,1344,1503,1327,1437,1408,1369,7895,1359,1439,1967,3130,15011,3654,3524,2940,2634,2259,20973,2142,2053,2099,2076,2227,2202,2063,2025,2076,2010,29846,1953,2012,1956,1930,1987,2084,2018,1943,1843,1956,1906,1855,2067,2082,2254,26132,2082,2047,2308,1955,2017,2037,1868,1824,1688,1597,1531,1405,1303,1274,1196,10792,1154,1185,1089,1008,1094,1024,1000,1096,1088,1054,6884,852,885,784,769,646,625,622,568,576,557,3562,474,456,417,413,324,1478,135568,6084,1140,1158,1247,1281,1258,6658,1237,1351,1307,1373,1390,8546,1421,1456,1420,1502,1361,1386,7113,1367,1474,1810,2462,12913,2891,2849,2742,2229,2202,20497,2105,2068,2006,2123,2061,2133,2046,1936,1964,2055,29242,1890,1890,2055,1849,1931,1944,1912,1890,1816,1851,1829,1833,2180,2147,2225,26776,2123,2046,2096,2127,2090,2051,2139,1823,1741,1618,1519,1516,1415,1281,1191,10392,1192,1093,1101,1000,998,970,928,1019,1075,1016,5362,727,760,653,554,487,483,527,411,393,367,1985,319,298,266,220,181,701 +"2021","Portsmouth","E06000044",208004,11280,2234,2261,2232,2216,2337,12127,2379,2439,2450,2454,2405,13775,2342,2442,2341,2277,2253,2120,12373,2127,2090,3216,4940,20042,5228,4811,3775,3230,2998,31328,2916,3115,3074,3104,3161,3188,3106,3239,3248,3177,39621,3182,3092,2953,2882,2800,2733,2628,2538,2372,2282,2362,2324,2363,2515,2595,36669,2748,2642,2614,2694,2650,2687,2609,2578,2526,2401,2381,2137,2095,1976,1931,16547,1782,1741,1675,1549,1596,1514,1581,1622,1722,1765,10018,1367,1289,1167,1127,930,849,922,831,836,700,4224,672,615,547,439,410,1541,104841,5573,1081,1106,1148,1083,1155,5962,1167,1206,1157,1208,1224,6658,1130,1180,1115,1111,1079,1043,5917,1060,1038,1504,2315,9549,2464,2293,1785,1542,1465,16132,1454,1544,1590,1584,1647,1633,1610,1733,1683,1654,19751,1626,1561,1484,1466,1392,1377,1284,1274,1192,1123,1168,1146,1178,1225,1255,18352,1388,1308,1293,1383,1326,1412,1318,1259,1265,1166,1203,1051,1027,977,976,8558,915,916,866,799,808,780,815,838,903,918,5629,726,690,617,627,522,497,529,495,513,413,2760,417,369,331,289,265,1089,103163,5707,1153,1155,1084,1133,1182,6165,1212,1233,1293,1246,1181,7117,1212,1262,1226,1166,1174,1077,6456,1067,1052,1712,2625,10493,2764,2518,1990,1688,1533,15196,1462,1571,1484,1520,1514,1555,1496,1506,1565,1523,19870,1556,1531,1469,1416,1408,1356,1344,1264,1180,1159,1194,1178,1185,1290,1340,18317,1360,1334,1321,1311,1324,1275,1291,1319,1261,1235,1178,1086,1068,999,955,7989,867,825,809,750,788,734,766,784,819,847,4389,641,599,550,500,408,352,393,336,323,287,1464,255,246,216,150,145,452 +"2021","Southampton","E06000045",248924,13795,2714,2758,2804,2758,2761,14453,2841,2838,2852,2930,2992,16305,2906,2801,2851,2732,2545,2470,14281,2402,2452,3771,5656,26141,5941,5958,5375,4668,4199,40883,4152,4315,4003,4302,3946,4149,4089,4061,3958,3908,49341,3894,3714,3636,3570,3519,3579,3464,3208,3090,3063,3041,2856,2954,2856,2897,39471,2959,2747,2730,2731,2842,2813,2847,2772,2733,2611,2458,2344,2436,2305,2143,18609,2095,1906,2006,1839,1769,1818,1794,1723,1837,1822,11067,1508,1464,1292,1274,1102,951,981,923,840,732,4578,705,593,512,539,468,1761,123956,6794,1325,1377,1373,1354,1365,6942,1368,1353,1377,1420,1424,7963,1414,1383,1392,1311,1255,1208,6848,1197,1213,1741,2697,12660,2901,2841,2558,2267,2093,20640,2057,2146,1999,2181,1998,2086,2094,2080,2020,1979,24194,1960,1795,1802,1737,1740,1801,1729,1607,1501,1511,1481,1353,1416,1360,1401,19504,1421,1336,1352,1380,1425,1354,1373,1369,1375,1279,1219,1165,1224,1151,1081,9411,952,961,1008,915,892,936,911,884,997,955,6064,775,791,674,727,605,517,526,508,521,420,2936,423,360,301,350,311,1191,124968,7001,1389,1381,1431,1404,1396,7511,1473,1485,1475,1510,1568,8342,1492,1418,1459,1421,1290,1262,7433,1205,1239,2030,2959,13481,3040,3117,2817,2401,2106,20243,2095,2169,2004,2121,1948,2063,1995,1981,1938,1929,25147,1934,1919,1834,1833,1779,1778,1735,1601,1589,1552,1560,1503,1538,1496,1496,19967,1538,1411,1378,1351,1417,1459,1474,1403,1358,1332,1239,1179,1212,1154,1062,9198,1143,945,998,924,877,882,883,839,840,867,5003,733,673,618,547,497,434,455,415,319,312,1642,282,233,211,189,157,570 +"2021","Isle of Wight","E06000046",140459,5552,991,1053,1127,1180,1201,6863,1302,1355,1366,1396,1444,8458,1412,1410,1369,1424,1434,1409,4983,1426,1342,1210,1005,5959,1075,1071,1221,1262,1330,13914,1291,1359,1325,1377,1340,1485,1367,1478,1476,1416,21794,1421,1407,1398,1348,1308,1471,1482,1378,1339,1343,1396,1513,1609,1618,1763,31915,1937,1918,2065,2096,2248,2231,2240,2196,2228,2220,2143,2174,2118,2056,2045,21688,2048,2162,2173,1989,2083,1968,2102,2241,2463,2459,14016,1894,1963,1762,1684,1357,1116,1245,1093,1028,874,5317,835,735,667,569,519,1992,72366,2673,469,518,511,587,588,3335,619,670,653,685,708,4083,682,728,642,661,684,686,2364,705,623,566,470,2831,479,523,624,594,611,7074,643,700,657,684,714,773,711,739,729,724,11260,679,736,701,669,680,759,771,717,675,707,730,768,832,865,971,16685,1025,983,1125,1089,1212,1122,1174,1123,1154,1181,1123,1145,1073,1073,1083,11324,1098,1098,1104,1077,1119,1041,1091,1158,1290,1248,7449,954,1033,928,890,725,581,662,598,562,516,3288,477,427,375,351,320,1338,68093,2879,522,535,616,593,613,3528,683,685,713,711,736,4375,730,682,727,763,750,723,2619,721,719,644,535,3128,596,548,597,668,719,6840,648,659,668,693,626,712,656,739,747,692,10534,742,671,697,679,628,712,711,661,664,636,666,745,777,753,792,15230,912,935,940,1007,1036,1109,1066,1073,1074,1039,1020,1029,1045,983,962,10364,950,1064,1069,912,964,927,1011,1083,1173,1211,6567,940,930,834,794,632,535,583,495,466,358,2029,358,308,292,218,199,654 +"2021","Buckinghamshire","E06000060",553073,30888,5646,5886,6231,6568,6557,35154,6903,6813,6800,7153,7485,43638,7562,7356,7472,7313,7102,6833,23974,7015,6817,5686,4456,25646,4217,4554,5350,5694,5831,64403,5860,5858,6071,6081,6370,6743,6669,6758,7139,6854,113068,7015,7058,7269,7457,7579,7917,7911,7697,7383,7301,7286,7364,7585,8123,8123,112589,8141,7774,8054,8228,8468,8045,8242,8066,7627,7281,7147,6713,6600,6261,5942,53900,5751,5474,5245,5290,5079,5041,5197,5297,5777,5749,35081,4325,4587,4289,3865,3324,3122,3167,3054,2778,2570,14732,2372,2088,1821,1567,1492,5392,282684,14936,2689,2808,3057,3148,3234,17283,3429,3319,3321,3488,3726,21360,3706,3580,3635,3625,3486,3328,11600,3475,3329,2715,2081,12471,1903,2213,2630,2755,2970,33219,2983,2945,3013,3161,3219,3604,3468,3536,3718,3572,58280,3674,3702,3827,3886,3929,4176,3980,3939,3822,3748,3734,3712,3815,4171,4165,57210,4228,3942,4129,4274,4342,3997,4153,4094,3854,3723,3582,3385,3351,3148,3008,28050,2915,2776,2654,2740,2629,2736,2694,2796,3042,3068,19136,2267,2446,2353,2156,1745,1727,1812,1687,1548,1395,9139,1347,1223,1073,913,885,3698,270389,15952,2957,3078,3174,3420,3323,17871,3474,3494,3479,3665,3759,22278,3856,3776,3837,3688,3616,3505,12374,3540,3488,2971,2375,13175,2314,2341,2720,2939,2861,31184,2877,2913,3058,2920,3151,3139,3201,3222,3421,3282,54788,3341,3356,3442,3571,3650,3741,3931,3758,3561,3553,3552,3652,3770,3952,3958,55379,3913,3832,3925,3954,4126,4048,4089,3972,3773,3558,3565,3328,3249,3113,2934,25850,2836,2698,2591,2550,2450,2305,2503,2501,2735,2681,15945,2058,2141,1936,1709,1579,1395,1355,1367,1230,1175,5593,1025,865,748,654,607,1694 +"2021","Eastbourne","E07000061",101681,4716,887,890,960,984,995,5529,1062,1037,1079,1175,1176,6865,1173,1192,1154,1089,1177,1080,4260,1099,1174,1011,976,5225,988,962,1085,1112,1078,11739,1091,1110,1127,1101,1208,1206,1177,1226,1266,1227,18056,1203,1141,1208,1159,1232,1259,1233,1216,1132,1030,1180,1206,1206,1269,1382,20368,1315,1322,1364,1424,1474,1354,1455,1466,1434,1403,1334,1307,1287,1227,1202,12318,1208,1130,1188,1103,1160,1169,1226,1227,1428,1479,8559,1117,1123,940,896,801,771,718,790,715,688,4046,581,514,459,431,410,1651,53153,2299,438,435,455,472,499,2774,554,546,545,567,562,3216,574,572,522,487,524,537,2085,545,595,474,471,2610,489,450,544,573,554,6069,577,559,563,592,642,610,606,597,648,675,9479,667,588,642,623,646,665,644,628,600,548,618,629,614,629,738,10579,674,688,695,733,778,730,773,762,742,736,668,674,653,650,623,6618,653,634,641,596,605,629,654,643,752,811,4786,613,629,507,502,416,428,416,452,416,407,2638,353,323,289,266,250,1157,48528,2417,449,455,505,512,496,2755,508,491,534,608,614,3649,599,620,632,602,653,543,2175,554,579,537,505,2615,499,512,541,539,524,5670,514,551,564,509,566,596,571,629,618,552,8577,536,553,566,536,586,594,589,588,532,482,562,577,592,640,644,9789,641,634,669,691,696,624,682,704,692,667,666,633,634,577,579,5700,555,496,547,507,555,540,572,584,676,668,3773,504,494,433,394,385,343,302,338,299,281,1408,228,191,170,165,160,494 +"2021","Hastings","E07000062",90984,4820,900,989,983,948,1000,5165,1009,1000,1013,1102,1041,6305,1097,1037,1054,1082,1020,1015,3656,1027,947,928,754,4481,792,840,927,957,965,11372,1039,1038,1088,1072,1124,1158,1194,1214,1232,1213,17064,1230,1063,1096,1094,1182,1201,1142,1101,1053,1001,1067,1166,1121,1262,1285,19711,1411,1305,1376,1423,1464,1450,1434,1405,1348,1249,1250,1230,1127,1125,1114,10332,1071,1011,1131,974,1006,993,930,1060,1083,1073,5799,760,859,683,641,545,543,474,469,425,400,2279,360,296,311,236,200,876,46838,2346,443,469,477,465,492,2545,486,491,511,530,527,3020,528,527,518,514,482,451,1733,485,456,433,359,2191,380,400,456,490,465,5996,529,532,578,575,598,598,647,652,645,642,8884,656,554,580,582,645,600,604,572,544,534,524,598,594,638,659,10089,753,672,707,757,763,734,723,709,668,606,634,596,599,582,586,5358,543,527,602,501,528,484,484,551,574,564,3194,430,412,373,362,294,307,270,274,245,227,1482,209,175,188,151,132,627,44146,2474,457,520,506,483,508,2620,523,509,502,572,514,3285,569,510,536,568,538,564,1923,542,491,495,395,2290,412,440,471,467,500,5376,510,506,510,497,526,560,547,562,587,571,8180,574,509,516,512,537,601,538,529,509,467,543,568,527,624,626,9622,658,633,669,666,701,716,711,696,680,643,616,634,528,543,528,4974,528,484,529,473,478,509,446,509,509,509,2605,330,447,310,279,251,236,204,195,180,173,797,151,121,123,85,68,249 +"2021","Lewes","E07000063",99896,4541,798,879,896,967,1001,5312,970,1019,1061,1061,1201,6830,1164,1180,1187,1088,1128,1083,4105,1150,1116,1035,804,4141,756,757,846,908,874,9506,785,806,849,918,916,1034,1033,1036,1068,1061,17360,1028,1046,1065,1137,1126,1175,1149,1125,1020,1143,1149,1180,1185,1353,1479,21645,1404,1482,1441,1535,1548,1460,1605,1471,1476,1474,1429,1356,1384,1311,1269,13387,1280,1290,1203,1327,1293,1270,1323,1343,1496,1562,9013,1153,1133,1157,1015,809,768,853,789,686,650,4056,598,575,480,412,390,1601,51790,2176,367,423,452,467,467,2559,455,521,525,481,577,3270,565,576,570,509,520,530,1936,559,510,516,351,1954,360,335,412,427,420,4992,385,406,445,479,476,569,557,542,550,583,9052,552,536,558,567,592,612,593,591,535,581,620,629,638,686,762,11198,751,791,735,809,781,727,851,762,772,767,712,684,714,666,676,7117,681,697,644,704,676,645,722,700,800,848,4984,646,605,631,543,453,425,454,436,404,387,2552,349,345,279,245,241,1093,48106,2365,431,456,444,500,534,2753,515,498,536,580,624,3560,599,604,617,579,608,553,2169,591,606,519,453,2187,396,422,434,481,454,4514,400,400,404,439,440,465,476,494,518,478,8308,476,510,507,570,534,563,556,534,485,562,529,551,547,667,717,10447,653,691,706,726,767,733,754,709,704,707,717,672,670,645,593,6270,599,593,559,623,617,625,601,643,696,714,4029,507,528,526,472,356,343,399,353,282,263,1504,249,230,201,167,149,508 +"2021","Rother","E07000064",93114,3730,677,742,748,756,807,4228,765,803,830,911,919,5659,969,929,925,971,967,898,3398,969,921,825,683,3753,608,687,771,851,836,8046,793,731,768,778,856,794,853,819,822,832,13231,701,844,826,793,825,860,884,838,771,830,884,872,1047,1093,1163,20872,1234,1247,1288,1300,1447,1437,1481,1519,1464,1447,1396,1389,1430,1368,1425,15188,1379,1387,1381,1388,1331,1450,1571,1536,1823,1942,10506,1306,1397,1353,1186,1006,881,952,882,760,783,4503,658,639,517,496,446,1747,48892,1773,315,373,345,352,388,2010,367,359,396,453,435,2830,472,463,475,490,486,444,1611,455,444,396,316,1836,277,342,376,436,405,4146,378,354,388,390,434,440,465,451,418,428,7055,378,439,422,420,438,452,483,446,420,444,476,459,556,595,627,10966,666,663,671,712,749,773,760,775,771,752,742,688,753,727,764,8085,768,729,712,712,725,788,811,847,971,1022,5735,653,760,699,661,567,488,530,520,412,445,2845,375,379,296,311,290,1194,44222,1957,362,369,403,404,419,2218,398,444,434,458,484,2829,497,466,450,481,481,454,1787,514,477,429,367,1917,331,345,395,415,431,3900,415,377,380,388,422,354,388,368,404,404,6176,323,405,404,373,387,408,401,392,351,386,408,413,491,498,536,9906,568,584,617,588,698,664,721,744,693,695,654,701,677,641,661,7103,611,658,669,676,606,662,760,689,852,920,4771,653,637,654,525,439,393,422,362,348,338,1658,283,260,221,185,156,553 +"2021","Wealden","E07000065",160154,7181,1298,1341,1488,1484,1570,8464,1681,1639,1672,1703,1769,10856,1797,1757,1819,1836,1829,1818,6263,1787,1767,1556,1153,6665,1129,1187,1457,1491,1401,15394,1458,1469,1423,1458,1577,1604,1555,1611,1656,1583,26455,1541,1635,1531,1673,1645,1708,1756,1692,1608,1658,1633,1938,1982,2115,2340,36386,2294,2327,2387,2487,2614,2479,2645,2636,2484,2491,2347,2345,2392,2270,2188,21895,2086,2057,2140,2067,2004,2042,2096,2237,2590,2576,14735,1891,2024,1867,1735,1397,1179,1282,1208,1120,1032,5860,905,809,718,632,581,2215,83014,3508,628,677,711,715,777,4145,823,794,822,837,869,5294,890,849,859,884,880,932,3008,894,858,752,504,3211,526,528,721,737,699,7940,733,760,713,730,812,835,822,849,876,810,13856,826,873,818,860,850,884,885,859,913,896,895,990,1024,1095,1188,18864,1215,1154,1223,1303,1374,1293,1396,1373,1308,1291,1226,1220,1217,1156,1115,11687,1077,1108,1115,1094,1071,1090,1140,1210,1368,1414,7890,998,1056,1014,893,750,624,695,668,623,569,3611,511,469,415,385,349,1482,77140,3673,670,664,777,769,793,4319,858,845,850,866,900,5562,907,908,960,952,949,886,3255,893,909,804,649,3454,603,659,736,754,702,7454,725,709,710,728,765,769,733,762,780,773,12599,715,762,713,813,795,824,871,833,695,762,738,948,958,1020,1152,17522,1079,1173,1164,1184,1240,1186,1249,1263,1176,1200,1121,1125,1175,1114,1073,10208,1009,949,1025,973,933,952,956,1027,1222,1162,6845,893,968,853,842,647,555,587,540,497,463,2249,394,340,303,247,232,733 +"2021","Basingstoke and Deane","E07000084",185150,10554,1989,2059,2119,2080,2307,11547,2243,2208,2236,2434,2426,13242,2385,2309,2170,2248,2112,2018,7071,1993,1959,1688,1431,9231,1401,1711,1959,2041,2119,25648,2268,2367,2395,2407,2490,2630,2768,2794,2846,2683,38812,2731,2564,2613,2670,2623,2642,2651,2550,2395,2437,2473,2602,2504,2654,2703,37032,2771,2687,2773,2746,2720,2650,2679,2668,2517,2444,2275,2146,2065,1983,1908,17458,1709,1713,1741,1709,1647,1626,1740,1734,1931,1908,10694,1440,1420,1321,1228,976,941,952,900,823,693,3861,670,553,433,445,381,1379,93486,5176,985,983,1041,1063,1104,5571,1113,1053,1097,1162,1146,6415,1146,1119,1063,1057,1031,999,3395,961,979,793,662,4549,663,806,920,1054,1106,13126,1105,1176,1248,1242,1320,1345,1419,1397,1478,1396,19584,1416,1268,1323,1380,1323,1333,1354,1291,1177,1216,1255,1295,1248,1354,1351,18450,1375,1287,1367,1380,1295,1329,1353,1360,1260,1213,1117,1090,1069,979,976,9084,837,876,898,906,851,844,884,926,1034,1028,5789,784,749,702,645,547,490,515,516,450,391,2347,380,331,248,248,229,911,91664,5378,1004,1076,1078,1017,1203,5976,1130,1155,1139,1272,1280,6827,1239,1190,1107,1191,1081,1019,3676,1032,980,895,769,4682,738,905,1039,987,1013,12522,1163,1191,1147,1165,1170,1285,1349,1397,1368,1287,19228,1315,1296,1290,1290,1300,1309,1297,1259,1218,1221,1218,1307,1256,1300,1352,18582,1396,1400,1406,1366,1425,1321,1326,1308,1257,1231,1158,1056,996,1004,932,8374,872,837,843,803,796,782,856,808,897,880,4905,656,671,619,583,429,451,437,384,373,302,1514,290,222,185,197,152,468 +"2021","East Hampshire","E07000085",125753,6011,1085,1174,1177,1293,1282,6943,1302,1269,1366,1515,1491,8959,1507,1459,1490,1516,1525,1462,5309,1512,1547,1271,979,5402,841,945,1050,1250,1316,12946,1132,1238,1254,1298,1264,1353,1281,1356,1380,1390,22899,1391,1329,1358,1430,1464,1544,1529,1494,1408,1547,1506,1582,1705,1766,1846,28216,1942,1875,1930,1964,1919,1970,2029,1988,1982,1891,1868,1790,1677,1748,1643,15034,1548,1519,1416,1407,1413,1324,1474,1539,1647,1747,9985,1268,1335,1200,1113,957,863,911,870,755,713,4049,617,588,516,450,408,1470,64748,2934,510,558,586,626,654,3362,647,620,667,723,705,4411,709,727,739,763,759,714,2585,755,753,595,482,2673,374,465,531,634,669,6580,562,630,605,657,682,656,650,719,713,706,11832,726,650,707,714,743,812,812,782,722,826,808,811,924,833,962,14602,1019,940,1042,1056,991,1047,1066,1063,1026,954,952,895,837,897,817,7816,796,791,711,740,693,700,797,801,880,907,5471,681,697,623,585,531,495,533,504,424,398,2482,345,336,300,266,261,974,61005,3077,575,616,591,667,628,3581,655,649,699,792,786,4548,798,732,751,753,766,748,2724,757,794,676,497,2729,467,480,519,616,647,6366,570,608,649,641,582,697,631,637,667,684,11067,665,679,651,716,721,732,717,712,686,721,698,771,781,933,884,13614,923,935,888,908,928,923,963,925,956,937,916,895,840,851,826,7218,752,728,705,667,720,624,677,738,767,840,4514,587,638,577,528,426,368,378,366,331,315,1567,272,252,216,184,147,496 +"2021","Eastleigh","E07000086",136445,7591,1382,1481,1559,1565,1604,8530,1634,1673,1722,1732,1769,9991,1761,1784,1631,1667,1574,1574,5336,1544,1446,1294,1052,6415,1084,1133,1277,1444,1477,17835,1544,1643,1629,1695,1819,1976,1875,1930,1872,1852,27133,1827,1917,1875,1803,1853,1952,1893,1791,1674,1717,1740,1695,1758,1812,1826,26980,1900,1965,1873,1891,1903,1889,1960,1920,1810,1761,1713,1676,1666,1540,1513,14022,1430,1397,1454,1356,1312,1299,1365,1404,1562,1443,8915,1120,1181,1046,962,838,808,820,758,709,673,3697,553,512,460,391,359,1422,69743,3773,693,747,803,746,784,4161,803,832,813,845,868,4861,844,883,792,823,783,736,2486,716,685,593,492,3102,490,563,614,688,747,9324,775,897,839,894,938,1053,955,1003,984,986,13868,916,983,996,922,955,1020,946,922,870,874,890,855,882,914,923,13717,929,998,948,955,961,977,1040,928,945,905,887,837,835,780,792,7346,716,724,766,689,693,710,720,742,840,746,4844,590,619,555,523,466,414,446,435,406,390,2261,312,294,283,228,217,927,66702,3818,689,734,756,819,820,4369,831,841,909,887,901,5130,917,901,839,844,791,838,2850,828,761,701,560,3313,594,570,663,756,730,8511,769,746,790,801,881,923,920,927,888,866,13265,911,934,879,881,898,932,947,869,804,843,850,840,876,898,903,13263,971,967,925,936,942,912,920,992,865,856,826,839,831,760,721,6676,714,673,688,667,619,589,645,662,722,697,4071,530,562,491,439,372,394,374,323,303,283,1436,241,218,177,163,142,495 +"2021","Fareham","E07000087",114516,5158,898,951,1034,1131,1144,6205,1252,1192,1229,1274,1258,7513,1345,1239,1323,1265,1179,1162,4431,1242,1293,1035,861,5245,955,943,1080,1142,1125,12233,1089,1089,1083,1116,1177,1228,1334,1316,1428,1373,20352,1388,1325,1302,1270,1345,1372,1364,1220,1266,1313,1300,1364,1417,1545,1561,25274,1717,1600,1637,1740,1717,1799,1812,1809,1754,1769,1682,1607,1651,1491,1489,14064,1425,1316,1292,1312,1280,1300,1367,1467,1586,1719,9824,1254,1305,1206,1112,894,856,901,832,779,685,4217,688,582,545,485,412,1505,58724,2495,444,467,504,554,526,3084,614,592,600,658,620,3703,668,623,646,634,576,556,2060,613,599,469,379,2353,440,413,502,491,507,6235,528,523,534,584,613,619,659,680,763,732,10498,716,648,637,652,708,711,700,628,660,690,691,731,737,756,833,12905,905,787,837,902,881,964,945,912,881,903,864,826,815,750,733,7346,684,687,691,692,682,696,739,772,815,888,5419,654,713,640,624,505,484,499,491,419,390,2626,398,340,324,295,255,1014,55792,2663,454,484,530,577,618,3121,638,600,629,616,638,3810,677,616,677,631,603,606,2371,629,694,566,482,2892,515,530,578,651,618,5998,561,566,549,532,564,609,675,636,665,641,9854,672,677,665,618,637,661,664,592,606,623,609,633,680,789,728,12369,812,813,800,838,836,835,867,897,873,866,818,781,836,741,756,6718,741,629,601,620,598,604,628,695,771,831,4405,600,592,566,488,389,372,402,341,360,295,1591,290,242,221,190,157,491 +"2021","Gosport","E07000088",81954,4241,823,837,844,850,887,4677,940,879,927,979,952,5821,976,1018,962,999,970,896,3316,902,884,796,734,4250,756,833,900,855,906,10074,948,979,964,1021,976,1030,1066,1052,992,1046,14767,1017,1049,1011,1018,1011,962,1012,937,905,870,855,944,1007,1036,1133,17296,1194,1103,1166,1160,1211,1176,1231,1240,1178,1209,1153,1122,1146,1049,958,9361,935,895,945,838,901,838,925,965,1079,1040,5798,820,813,652,644,526,468,504,481,445,445,2353,364,318,287,294,241,849,41842,2029,405,365,398,404,457,2228,473,412,472,444,427,2771,457,479,462,506,440,427,1584,428,426,378,352,2001,358,393,409,412,429,5154,474,493,486,504,502,542,539,548,487,579,7616,525,541,526,509,531,510,526,484,453,432,442,495,527,550,565,8884,608,601,604,589,625,586,625,640,588,637,569,557,614,533,508,4893,466,464,497,458,482,413,496,519,549,549,3166,415,442,368,357,304,252,266,260,247,255,1516,217,205,185,185,150,574,40112,2212,418,472,446,446,430,2449,467,467,455,535,525,3050,519,539,500,493,530,469,1732,474,458,418,382,2249,398,440,491,443,477,4920,474,486,478,517,474,488,527,504,505,467,7151,492,508,485,509,480,452,486,453,452,438,413,449,480,486,568,8412,586,502,562,571,586,590,606,600,590,572,584,565,532,516,450,4468,469,431,448,380,419,425,429,446,530,491,2632,405,371,284,287,222,216,238,221,198,190,837,147,113,102,109,91,275 +"2021","Hart","E07000089",99406,5160,929,974,1086,1031,1140,6268,1253,1233,1173,1298,1311,7650,1385,1267,1293,1262,1207,1236,4468,1238,1274,1072,884,4420,740,761,914,1028,977,10915,1018,992,976,1077,1074,1164,1107,1136,1199,1172,20506,1228,1212,1249,1298,1335,1384,1384,1337,1334,1293,1398,1423,1479,1565,1587,20446,1594,1352,1461,1532,1513,1463,1552,1474,1428,1305,1274,1187,1164,1124,1023,9907,967,940,966,936,901,916,966,1003,1145,1167,7002,875,933,855,768,683,636,629,580,550,493,2664,434,399,333,290,243,965,50268,2510,453,485,507,535,530,3048,595,577,597,658,621,3761,684,611,637,620,607,602,1928,601,564,438,325,1974,294,307,418,488,467,5489,460,460,470,571,529,589,591,573,637,609,10569,634,660,658,678,714,720,705,683,716,646,717,694,736,792,816,10302,793,678,741,804,750,714,809,774,689,602,631,597,612,600,508,5226,485,490,525,496,480,500,491,538,601,620,3878,483,530,466,436,357,350,351,324,313,268,1583,240,217,190,179,131,626,49138,2650,476,489,579,496,610,3220,658,656,576,640,690,3889,701,656,656,642,600,634,2540,637,710,634,559,2446,446,454,496,540,510,5426,558,532,506,506,545,575,516,563,562,563,9937,594,552,591,620,621,664,679,654,618,647,681,729,743,773,771,10144,801,674,720,728,763,749,743,700,739,703,643,590,552,524,515,4681,482,450,441,440,421,416,475,465,544,547,3124,392,403,389,332,326,286,278,256,237,225,1081,194,182,143,111,112,339 +"2021","Havant","E07000090",124208,6123,1129,1200,1214,1252,1328,6904,1353,1321,1348,1423,1459,8317,1418,1415,1406,1377,1371,1330,4913,1363,1359,1143,1048,5946,1067,1081,1219,1238,1341,14269,1305,1274,1348,1447,1415,1491,1551,1468,1484,1486,20665,1499,1423,1448,1386,1347,1399,1372,1297,1201,1186,1262,1337,1366,1531,1611,26852,1650,1708,1836,1772,1865,1798,1899,1922,1857,1878,1839,1753,1758,1691,1626,15398,1535,1596,1488,1444,1419,1398,1467,1591,1669,1791,10406,1396,1406,1204,1136,927,935,922,914,808,758,4415,658,643,578,513,451,1572,64230,2973,584,565,593,627,604,3371,652,674,637,695,713,4059,676,728,633,709,656,657,2426,667,680,550,529,2977,511,524,608,647,687,7412,674,633,685,742,743,768,798,792,779,798,10697,774,761,712,721,685,738,727,651,630,615,634,722,717,779,831,13845,851,890,935,938,955,920,974,1018,946,968,948,910,906,855,831,7982,777,820,753,726,719,720,809,863,848,947,5801,778,755,641,606,504,530,520,528,482,457,2687,357,381,344,282,267,1056,59978,3150,545,635,621,625,724,3533,701,647,711,728,746,4258,742,687,773,668,715,673,2487,696,679,593,519,2969,556,557,611,591,654,6857,631,641,663,705,672,723,753,676,705,688,9968,725,662,736,665,662,661,645,646,571,571,628,615,649,752,780,13007,799,818,901,834,910,878,925,904,911,910,891,843,852,836,795,7416,758,776,735,718,700,678,658,728,821,844,4605,618,651,563,530,423,405,402,386,326,301,1728,301,262,234,231,184,516 +"2021","New Forest","E07000091",175784,7235,1293,1353,1514,1475,1600,8645,1626,1673,1641,1850,1855,11161,1916,1833,1895,1867,1882,1768,6496,1805,1780,1579,1332,7056,1265,1284,1464,1568,1475,16208,1540,1445,1527,1549,1679,1701,1640,1653,1765,1709,27879,1690,1732,1660,1790,1774,1919,1857,1800,1702,1746,1747,1912,2084,2131,2335,39464,2424,2378,2586,2563,2694,2786,2852,2829,2815,2737,2691,2438,2750,2524,2397,25693,2392,2395,2483,2459,2434,2483,2535,2544,2956,3012,17832,2212,2389,2200,1938,1642,1557,1624,1429,1457,1384,8115,1210,1086,977,881,752,3209,91243,3571,631,671,776,739,754,4186,757,813,827,865,924,5413,931,883,911,914,906,868,3092,882,840,787,583,3340,592,613,663,764,708,8373,754,747,779,827,845,862,851,884,931,893,14646,932,927,856,933,906,985,968,932,871,938,903,1014,1129,1115,1237,20481,1270,1199,1364,1377,1419,1453,1480,1465,1512,1388,1352,1282,1377,1310,1233,13512,1261,1232,1259,1301,1298,1346,1321,1323,1564,1607,9626,1165,1222,1149,1084,867,826,901,787,835,790,5003,690,637,573,505,465,2133,84541,3664,662,682,738,736,846,4459,869,860,814,985,931,5748,985,950,984,953,976,900,3404,923,940,792,749,3716,673,671,801,804,767,7835,786,698,748,722,834,839,789,769,834,816,13233,758,805,804,857,868,934,889,868,831,808,844,898,955,1016,1098,18983,1154,1179,1222,1186,1275,1333,1372,1364,1303,1349,1339,1156,1373,1214,1164,12181,1131,1163,1224,1158,1136,1137,1214,1221,1392,1405,8206,1047,1167,1051,854,775,731,723,642,622,594,3112,520,449,404,376,287,1076 +"2021","Rushmoor","E07000092",99750,6197,1265,1260,1262,1230,1180,6094,1229,1274,1155,1213,1223,6593,1166,1142,1019,1123,1104,1039,4033,1077,1082,944,930,5591,887,1035,1179,1209,1281,16398,1439,1483,1511,1613,1584,1778,1703,1749,1768,1770,21144,1641,1550,1566,1505,1491,1459,1523,1303,1301,1291,1272,1270,1312,1335,1325,18575,1403,1399,1413,1363,1376,1478,1329,1310,1273,1197,1170,1036,963,934,931,8273,831,842,815,775,792,768,758,865,893,934,5112,627,676,673,578,511,486,450,410,374,327,1740,294,255,217,176,164,634,49863,2978,645,570,601,605,557,2917,608,590,555,592,572,3216,574,567,488,530,554,503,1783,517,517,376,373,2673,382,460,593,600,638,8296,708,710,753,848,784,934,873,900,860,926,10517,784,799,790,743,729,700,757,644,656,648,612,647,662,676,670,9297,705,710,759,690,688,738,678,666,635,557,566,523,493,448,441,4429,439,455,441,437,451,432,412,451,446,465,2631,336,331,321,296,275,243,221,220,212,176,1126,176,160,131,113,98,448,49887,3219,620,690,661,625,623,3177,621,684,600,621,651,3377,592,575,531,593,550,536,2250,560,565,568,557,2918,505,575,586,609,643,8102,731,773,758,765,800,844,830,849,908,844,10627,857,751,776,762,762,759,766,659,645,643,660,623,650,659,655,9278,698,689,654,673,688,740,651,644,638,640,604,513,470,486,490,3844,392,387,374,338,341,336,346,414,447,469,2481,291,345,352,282,236,243,229,190,162,151,614,118,95,86,63,66,186 +"2021","Test Valley","E07000093",130482,6940,1217,1400,1375,1413,1535,7801,1561,1493,1527,1635,1585,8998,1600,1476,1617,1559,1352,1394,4957,1412,1376,1172,997,5699,874,1013,1122,1309,1381,15596,1388,1343,1476,1548,1570,1676,1656,1727,1659,1553,25282,1614,1657,1615,1641,1701,1678,1731,1660,1598,1549,1697,1754,1729,1815,1843,27541,1960,1870,1907,1936,2061,1971,2018,1950,1858,1847,1746,1725,1619,1557,1516,14443,1412,1435,1409,1306,1301,1379,1440,1446,1628,1687,9487,1193,1308,1188,1088,911,749,794,790,774,692,3738,608,558,450,420,380,1322,66606,3366,587,709,662,680,728,3846,766,708,754,825,793,4497,813,730,794,767,685,708,2395,663,688,577,467,2757,410,467,577,652,651,7961,700,667,740,829,804,849,873,860,855,784,12870,814,833,869,862,880,847,873,841,835,778,852,859,871,929,927,13969,1031,963,973,959,1054,950,1048,1009,946,915,899,887,827,791,717,7556,712,715,738,700,684,713,777,751,881,885,5092,643,666,642,599,489,407,428,405,440,373,2297,337,291,262,274,240,893,63876,3574,630,691,713,733,807,3955,795,785,773,810,792,4501,787,746,823,792,667,686,2562,749,688,595,530,2942,464,546,545,657,730,7635,688,676,736,719,766,827,783,867,804,769,12412,800,824,746,779,821,831,858,819,763,771,845,895,858,886,916,13572,929,907,934,977,1007,1021,970,941,912,932,847,838,792,766,799,6887,700,720,671,606,617,666,663,695,747,802,4395,550,642,546,489,422,342,366,385,334,319,1441,271,267,188,146,140,429 +"2021","Winchester","E07000094",127450,6043,1085,1161,1187,1229,1381,7331,1370,1395,1505,1460,1601,9319,1507,1543,1514,1572,1606,1577,7637,1574,1652,2012,2399,8167,2150,1822,1490,1442,1263,13158,1287,1271,1324,1159,1284,1358,1289,1341,1415,1430,23595,1492,1407,1452,1478,1463,1567,1598,1559,1591,1577,1579,1617,1660,1727,1828,25619,1819,1720,1757,1804,1893,1815,1866,1808,1770,1697,1643,1526,1480,1575,1446,13410,1309,1265,1291,1276,1337,1344,1287,1335,1449,1517,9136,1199,1215,1104,997,847,805,825,800,714,630,4035,572,541,481,440,386,1615,65382,2930,501,564,596,606,663,3594,691,677,728,715,783,4410,720,764,750,741,709,726,3781,745,735,969,1332,4384,1260,972,816,704,632,6561,595,601,664,565,630,666,657,690,745,748,12171,765,699,763,756,758,808,847,835,838,815,786,833,854,850,964,13111,934,899,906,903,969,939,985,930,914,850,829,771,738,774,770,6970,677,626,644,676,697,725,671,702,780,772,4942,618,634,596,546,453,439,448,452,410,346,2528,325,322,275,291,228,1087,62068,3113,584,597,591,623,718,3737,679,718,777,745,818,4909,787,779,764,831,897,851,3856,829,917,1043,1067,3783,890,850,674,738,631,6597,692,670,660,594,654,692,632,651,670,682,11424,727,708,689,722,705,759,751,724,753,762,793,784,806,877,864,12508,885,821,851,901,924,876,881,878,856,847,814,755,742,801,676,6440,632,639,647,600,640,619,616,633,669,745,4194,581,581,508,451,394,366,377,348,304,284,1507,247,219,206,149,158,528 +"2021","Ashford","E07000105",132752,7608,1408,1464,1501,1654,1581,8314,1629,1639,1597,1744,1705,10054,1683,1774,1726,1685,1691,1495,5811,1589,1675,1414,1133,6471,1031,1170,1347,1432,1491,16809,1443,1606,1584,1646,1678,1758,1771,1769,1805,1749,24994,1724,1668,1692,1663,1593,1651,1618,1655,1591,1652,1574,1696,1655,1713,1849,26695,1931,2037,2016,2034,1937,1921,1952,1860,1801,1757,1660,1534,1461,1432,1362,13892,1400,1375,1291,1286,1302,1274,1370,1423,1572,1599,8906,1175,1255,1117,1010,844,774,787,721,625,598,3198,527,467,379,358,330,1137,68159,3722,681,738,746,784,773,4046,809,808,741,850,838,4965,845,881,855,840,834,710,2786,753,807,687,539,3202,449,582,659,749,763,8786,688,838,856,855,856,924,940,968,942,919,13053,919,885,862,872,859,850,806,887,819,850,806,892,851,889,1006,13548,1002,1046,992,1050,981,975,998,906,949,861,821,752,751,755,709,7307,710,739,682,657,668,690,700,765,840,856,4777,614,661,591,549,458,412,415,402,333,342,1967,291,254,232,220,198,772,64593,3886,727,726,755,870,808,4268,820,831,856,894,867,5089,838,893,871,845,857,785,3025,836,868,727,594,3269,582,588,688,683,728,8023,755,768,728,791,822,834,831,801,863,830,11941,805,783,830,791,734,801,812,768,772,802,768,804,804,824,843,13147,929,991,1024,984,956,946,954,954,852,896,839,782,710,677,653,6585,690,636,609,629,634,584,670,658,732,743,4129,561,594,526,461,386,362,372,319,292,256,1231,236,213,147,138,132,365 +"2021","Canterbury","E07000106",157417,6823,1237,1335,1399,1419,1433,7745,1517,1497,1490,1535,1706,10083,1648,1656,1713,1642,1699,1725,10875,1750,1800,2875,4450,15788,4363,4110,3026,2278,2011,17078,1764,1810,1715,1740,1636,1648,1678,1714,1685,1688,25559,1663,1721,1637,1686,1628,1741,1748,1632,1555,1560,1667,1706,1797,1900,1918,29221,1925,1983,1994,1930,2047,2100,2130,1980,2048,1958,1896,1851,1855,1770,1754,17913,1782,1738,1673,1702,1636,1706,1789,1837,2017,2033,11638,1549,1568,1332,1329,1129,993,1079,966,899,794,4694,720,640,541,495,429,1869,81841,3294,572,666,685,690,681,3738,713,735,706,747,837,4801,797,784,851,813,755,801,5544,852,828,1486,2378,8273,2417,2182,1520,1158,996,8669,880,914,854,880,824,837,843,911,847,879,13393,864,882,879,917,853,872,922,875,804,824,887,862,967,998,987,15200,989,1087,1028,1011,1046,1077,1063,1044,1091,1013,973,989,974,912,903,9470,938,918,894,867,874,899,936,966,1077,1101,6409,843,866,744,701,643,541,575,539,508,449,3050,427,371,338,315,275,1324,75576,3529,665,669,714,729,752,4007,804,762,784,788,869,5282,851,872,862,829,944,924,5331,898,972,1389,2072,7515,1946,1928,1506,1120,1015,8409,884,896,861,860,812,811,835,803,838,809,12166,799,839,758,769,775,869,826,757,751,736,780,844,830,902,931,14021,936,896,966,919,1001,1023,1067,936,957,945,923,862,881,858,851,8443,844,820,779,835,762,807,853,871,940,932,5229,706,702,588,628,486,452,504,427,391,345,1644,293,269,203,180,154,545 +"2021","Dartford","E07000107",116748,8281,1599,1647,1685,1703,1647,8268,1612,1660,1652,1681,1663,9505,1697,1700,1603,1541,1490,1474,4754,1422,1334,1142,856,5630,910,990,1149,1283,1298,17783,1447,1474,1512,1712,1777,1899,1970,2003,1966,2023,26210,2008,1950,1901,1838,1932,1991,1796,1749,1646,1561,1589,1587,1592,1497,1573,20281,1480,1525,1529,1599,1522,1534,1551,1332,1361,1283,1205,1198,1104,1047,1011,8597,915,902,906,808,817,820,787,808,945,889,5225,614,696,614,559,489,487,482,440,444,400,2214,353,300,292,255,227,787,59593,3967,794,789,777,827,780,4060,797,830,836,818,779,4642,838,827,778,742,751,706,2265,675,674,529,387,2849,445,474,575,663,692,9545,794,759,817,918,980,1005,1070,1077,1048,1077,13314,1095,1003,984,980,1031,1034,885,859,824,762,750,790,779,751,787,10171,719,793,777,818,770,739,793,655,657,658,616,582,566,543,485,4489,460,450,456,422,429,408,426,435,508,495,2909,315,383,349,309,253,269,282,266,260,223,1382,207,178,173,161,149,514,57155,4314,805,858,908,876,867,4208,815,830,816,863,884,4863,859,873,825,799,739,768,2489,747,660,613,469,2781,465,516,574,620,606,8238,653,715,695,794,797,894,900,926,918,946,12896,913,947,917,858,901,957,911,890,822,799,839,797,813,746,786,10110,761,732,752,781,752,795,758,677,704,625,589,616,538,504,526,4108,455,452,450,386,388,412,361,373,437,394,2316,299,313,265,250,236,218,200,174,184,177,832,146,122,119,94,78,273 +"2021","Dover","E07000108",116400,5669,1060,1088,1136,1195,1190,6494,1298,1239,1277,1339,1341,8114,1388,1353,1374,1379,1283,1337,4631,1300,1249,1119,963,5409,895,986,1159,1177,1192,13420,1187,1258,1289,1365,1445,1398,1304,1413,1397,1364,19693,1410,1327,1315,1272,1309,1357,1268,1282,1198,1222,1256,1204,1325,1459,1489,25072,1661,1486,1547,1678,1749,1812,1785,1791,1725,1716,1720,1573,1666,1610,1553,15052,1513,1508,1521,1429,1411,1428,1364,1518,1685,1675,9404,1251,1353,1155,989,925,824,825,749,719,614,3442,553,471,432,396,340,1250,59604,2743,505,521,564,571,582,3161,641,605,589,662,664,3953,652,657,651,724,633,636,2205,652,580,539,434,2662,413,469,595,594,591,6927,602,638,680,710,756,762,691,691,720,677,10162,721,680,660,657,695,674,665,660,591,636,653,623,688,769,790,12844,849,747,798,884,885,932,885,927,862,907,901,812,848,824,783,7779,806,764,743,752,727,754,726,773,869,865,5013,634,719,626,512,485,436,449,392,415,345,2155,301,267,282,233,202,870,56796,2926,555,567,572,624,608,3333,657,634,688,677,677,4161,736,696,723,655,650,701,2426,648,669,580,529,2747,482,517,564,583,601,6493,585,620,609,655,689,636,613,722,677,687,9531,689,647,655,615,614,683,603,622,607,586,603,581,637,690,699,12228,812,739,749,794,864,880,900,864,863,809,819,761,818,786,770,7273,707,744,778,677,684,674,638,745,816,810,4391,617,634,529,477,440,388,376,357,304,269,1287,252,204,150,163,138,380 +"2021","Gravesham","E07000109",106905,6600,1269,1347,1246,1365,1373,7157,1423,1408,1460,1411,1455,8590,1441,1504,1368,1461,1366,1450,4698,1282,1316,1119,981,5666,946,1054,1160,1275,1231,14148,1200,1232,1348,1337,1411,1528,1508,1485,1528,1571,21291,1525,1538,1502,1465,1505,1508,1443,1435,1262,1283,1338,1368,1294,1412,1413,20342,1547,1498,1503,1422,1490,1533,1366,1442,1419,1378,1229,1178,1196,1116,1025,9709,1038,1002,970,911,909,905,874,922,1078,1100,6216,766,777,748,688,609,551,585,536,491,465,2488,403,385,339,298,235,828,54676,3233,615,648,601,672,697,3507,697,684,756,687,683,4270,692,751,693,727,686,721,2216,625,611,506,474,2751,429,495,567,645,615,7396,616,647,692,692,736,818,808,780,769,838,10977,797,819,805,780,789,778,748,721,652,636,670,685,660,710,727,10252,789,759,781,713,769,744,683,691,722,721,638,577,593,545,527,5094,508,513,509,485,491,454,453,481,575,625,3442,424,405,385,375,341,308,322,307,294,281,1538,237,225,203,191,131,551,52229,3367,654,699,645,693,676,3650,726,724,704,724,772,4320,749,753,675,734,680,729,2482,657,705,613,507,2915,517,559,593,630,616,6752,584,585,656,645,675,710,700,705,759,733,10314,728,719,697,685,716,730,695,714,610,647,668,683,634,702,686,10090,758,739,722,709,721,789,683,751,697,657,591,601,603,571,498,4615,530,489,461,426,418,451,421,441,503,475,2774,342,372,363,313,268,243,263,229,197,184,950,166,160,136,107,104,277 +"2021","Maidstone","E07000110",175781,10392,1930,1988,2167,2193,2114,10874,2173,2164,2075,2259,2203,12382,2115,2090,2113,2091,1990,1983,6937,1944,1997,1633,1363,8858,1354,1594,1853,2033,2024,23436,2122,2155,2309,2323,2296,2415,2462,2467,2550,2337,35004,2486,2473,2341,2391,2320,2484,2379,2222,2078,2165,2221,2225,2298,2474,2447,34373,2519,2563,2554,2478,2463,2559,2456,2375,2319,2168,2122,2069,2051,1905,1772,17834,1787,1748,1673,1684,1643,1627,1742,1783,2044,2103,11291,1478,1502,1398,1223,1061,983,1026,943,865,812,4400,743,636,554,469,448,1550,88817,5035,920,940,1081,1046,1048,5193,1030,1038,1002,1074,1049,6018,1011,1042,1019,1052,943,951,3319,901,964,803,651,4326,644,738,864,1021,1059,11824,1041,1088,1138,1144,1133,1208,1297,1299,1286,1190,17719,1270,1262,1193,1199,1152,1271,1194,1088,1055,1081,1146,1119,1186,1264,1239,17217,1257,1266,1285,1177,1232,1287,1251,1190,1187,1072,1093,985,1046,976,913,9365,917,937,890,859,874,835,920,978,1044,1111,6071,753,765,740,666,548,554,570,528,485,462,2730,405,363,341,297,266,1058,86964,5357,1010,1048,1086,1147,1066,5681,1143,1126,1073,1185,1154,6364,1104,1048,1094,1039,1047,1032,3618,1043,1033,830,712,4532,710,856,989,1012,965,11612,1081,1067,1171,1179,1163,1207,1165,1168,1264,1147,17285,1216,1211,1148,1192,1168,1213,1185,1134,1023,1084,1075,1106,1112,1210,1208,17156,1262,1297,1269,1301,1231,1272,1205,1185,1132,1096,1029,1084,1005,929,859,8469,870,811,783,825,769,792,822,805,1000,992,5220,725,737,658,557,513,429,456,415,380,350,1670,338,273,213,172,182,492 +"2021","Sevenoaks","E07000111",120519,6725,1243,1246,1370,1377,1489,7587,1475,1504,1429,1556,1623,9604,1640,1662,1536,1604,1618,1544,4995,1526,1476,1168,825,4960,766,939,1045,1118,1092,12376,1086,1078,1167,1158,1217,1243,1264,1341,1419,1403,23384,1361,1494,1393,1536,1551,1544,1693,1554,1518,1513,1540,1635,1669,1663,1720,24959,1741,1751,1713,1794,1847,1904,1786,1735,1702,1627,1604,1491,1482,1438,1344,13342,1285,1275,1315,1277,1258,1256,1304,1330,1498,1544,8760,1180,1169,1050,988,767,779,743,734,682,668,3827,593,495,476,427,375,1461,62307,3267,602,595,663,696,711,3753,767,739,704,754,789,4678,802,800,740,759,800,777,2491,775,739,574,403,2414,347,440,487,581,559,6523,560,537,620,597,668,650,671,718,753,749,12198,723,798,739,823,827,821,916,796,768,798,806,796,896,827,864,12852,914,909,930,945,898,995,926,909,838,781,816,775,777,750,689,6962,651,666,647,655,662,679,718,698,774,812,4778,637,584,570,542,407,429,413,416,385,395,2391,337,283,279,264,223,1005,58212,3458,641,651,707,681,778,3834,708,765,725,802,834,4926,838,862,796,845,818,767,2504,751,737,594,422,2546,419,499,558,537,533,5853,526,541,547,561,549,593,593,623,666,654,11186,638,696,654,713,724,723,777,758,750,715,734,839,773,836,856,12107,827,842,783,849,949,909,860,826,864,846,788,716,705,688,655,6380,634,609,668,622,596,577,586,632,724,732,3982,543,585,480,446,360,350,330,318,297,273,1436,256,212,197,163,152,456 +"2021","Folkestone and Hythe","E07000112",109757,5115,949,1018,1017,1049,1082,5782,1129,1111,1116,1218,1208,7304,1256,1264,1261,1178,1211,1134,4100,1105,1105,1026,864,5252,879,976,1078,1189,1130,12031,1115,1132,1152,1176,1262,1217,1250,1254,1239,1234,18806,1160,1173,1175,1173,1248,1343,1322,1232,1181,1126,1212,1266,1330,1338,1527,23939,1563,1544,1686,1609,1610,1760,1663,1627,1729,1594,1638,1534,1500,1462,1420,14690,1339,1352,1395,1425,1409,1397,1388,1517,1722,1746,9263,1206,1274,1150,1061,872,825,809,757,668,641,3475,524,501,411,394,324,1321,56183,2461,431,510,476,526,518,2832,554,554,568,573,583,3575,618,598,622,575,605,557,1904,522,531,483,368,2461,374,446,522,560,559,6198,540,579,590,603,626,644,673,666,626,651,9798,605,614,591,625,655,711,677,671,585,600,642,644,685,728,765,12158,772,790,858,803,835,877,845,820,859,847,822,759,742,778,751,7629,696,701,763,729,760,704,714,816,851,895,4994,651,639,616,577,485,408,456,430,370,362,2173,291,283,235,246,201,917,53574,2654,518,508,541,523,564,2950,575,557,548,645,625,3729,638,666,639,603,606,577,2196,583,574,543,496,2791,505,530,556,629,571,5833,575,553,562,573,636,573,577,588,613,583,9008,555,559,584,548,593,632,645,561,596,526,570,622,645,610,762,11781,791,754,828,806,775,883,818,807,870,747,816,775,758,684,669,7061,643,651,632,696,649,693,674,701,871,851,4269,555,635,534,484,387,417,353,327,298,279,1302,233,218,176,148,123,404 +"2021","Swale","E07000113",151679,8896,1587,1742,1869,1828,1870,9439,1888,1787,1854,1978,1932,11344,1974,1910,1942,1890,1828,1800,6385,1760,1712,1575,1338,7962,1348,1506,1618,1742,1748,19894,1749,1787,1907,2055,1919,2064,2189,2098,2022,2104,28609,2041,1974,1965,1943,2034,1961,2057,1848,1656,1731,1727,1788,1850,1999,2035,30235,2087,2105,2108,2135,2154,2222,2193,2256,2020,2012,1887,1861,1806,1705,1684,15975,1610,1554,1558,1445,1477,1516,1656,1595,1817,1747,9679,1292,1371,1232,1057,887,890,851,782,710,607,3261,549,479,403,354,319,1157,76368,4398,794,877,907,896,924,4565,913,910,875,933,934,5494,962,967,922,921,869,853,3080,843,827,762,648,3861,653,705,801,843,859,9926,867,875,930,1035,949,1038,1118,1051,1030,1033,14383,1037,982,999,960,1036,1001,1006,913,826,894,865,897,964,1001,1002,15213,1068,1061,1075,1053,1096,1137,1094,1126,1012,1032,936,964,909,819,831,8215,805,776,769,746,775,754,881,829,951,929,5186,690,722,651,555,465,487,440,426,402,348,2047,316,262,244,228,196,801,75311,4498,793,865,962,932,946,4874,975,877,979,1045,998,5850,1012,943,1020,969,959,947,3305,917,885,813,690,4101,695,801,817,899,889,9968,882,912,977,1020,970,1026,1071,1047,992,1071,14226,1004,992,966,983,998,960,1051,935,830,837,862,891,886,998,1033,15022,1019,1044,1033,1082,1058,1085,1099,1130,1008,980,951,897,897,886,853,7760,805,778,789,699,702,762,775,766,866,818,4493,602,649,581,502,422,403,411,356,308,259,1214,233,217,159,126,123,356 +"2021","Thanet","E07000114",140589,7338,1399,1430,1481,1529,1499,7969,1548,1525,1549,1621,1726,9868,1651,1632,1725,1699,1594,1567,5576,1577,1520,1315,1164,6744,1175,1228,1372,1493,1476,16282,1437,1529,1499,1626,1655,1794,1640,1647,1765,1690,24822,1698,1682,1657,1571,1643,1714,1678,1609,1544,1539,1569,1662,1608,1839,1809,28734,1977,1821,1992,1935,2037,1920,2018,2001,2062,1974,1858,1775,1805,1833,1726,17754,1680,1682,1756,1655,1700,1742,1730,1794,2025,1990,11235,1474,1557,1386,1269,1078,982,973,891,850,775,4267,658,585,517,462,409,1636,72932,3481,678,653,713,734,703,3806,736,744,765,761,800,4790,806,796,831,810,784,763,2568,713,685,612,558,3338,553,594,687,749,755,8714,762,805,787,893,869,951,884,877,936,950,12955,872,925,842,836,854,884,862,858,763,799,848,873,829,982,928,14957,1049,980,1065,1041,1060,981,1036,1015,1071,991,976,950,914,921,907,9415,891,889,946,894,900,897,914,941,1067,1076,6168,780,824,737,702,612,510,546,522,484,451,2740,400,344,313,288,263,1132,67657,3857,721,777,768,795,796,4163,812,781,784,860,926,5078,845,836,894,889,810,804,3008,864,835,703,606,3406,622,634,685,744,721,7568,675,724,712,733,786,843,756,770,829,740,11867,826,757,815,735,789,830,816,751,781,740,721,789,779,857,881,13777,928,841,927,894,977,939,982,986,991,983,882,825,891,912,819,8339,789,793,810,761,800,845,816,853,958,914,5067,694,733,649,567,466,472,427,369,366,324,1527,258,241,204,174,146,504 +"2021","Tonbridge and Malling","E07000115",132205,7683,1356,1459,1571,1603,1694,8532,1663,1605,1687,1831,1746,10462,1767,1689,1776,1761,1726,1743,5804,1688,1711,1411,994,5834,951,1092,1235,1296,1260,15191,1307,1382,1410,1489,1539,1578,1581,1688,1633,1584,26451,1599,1665,1701,1649,1694,1834,1795,1689,1716,1664,1739,1857,1860,1957,2032,26937,1982,1921,1954,2011,1989,1969,1935,1898,1825,1780,1658,1580,1527,1485,1423,13172,1288,1319,1241,1274,1224,1176,1304,1283,1538,1525,8778,1035,1163,1111,1025,794,794,758,768,686,644,3361,562,511,438,382,295,1173,67852,3748,699,686,713,808,842,4139,826,777,804,876,856,5033,845,800,881,859,823,825,2718,801,795,650,472,2894,460,555,602,670,607,8064,671,733,745,824,806,846,860,888,838,853,13836,853,906,912,886,872,992,941,876,899,882,896,930,939,1024,1028,13671,1017,924,1012,1011,1037,1039,1000,960,929,895,804,820,748,749,726,6857,676,657,606,655,653,606,685,686,805,828,4834,570,634,607,558,438,444,430,408,399,346,2058,314,292,244,231,181,796,64353,3935,657,773,858,795,852,4393,837,828,883,955,890,5429,922,889,895,902,903,918,3086,887,916,761,522,2940,491,537,633,626,653,7127,636,649,665,665,733,732,721,800,795,731,12615,746,759,789,763,822,842,854,813,817,782,843,927,921,933,1004,13266,965,997,942,1000,952,930,935,938,896,885,854,760,779,736,697,6315,612,662,635,619,571,570,619,597,733,697,3944,465,529,504,467,356,350,328,360,287,298,1303,248,219,194,151,114,377 +"2021","Tunbridge Wells","E07000116",115318,6169,1131,1181,1239,1329,1289,7098,1355,1325,1396,1476,1546,9646,1571,1619,1641,1599,1706,1510,4997,1506,1537,1187,767,4831,721,780,1028,1168,1134,12844,1108,1165,1210,1266,1259,1319,1330,1374,1444,1369,23537,1438,1388,1465,1474,1501,1546,1636,1600,1497,1506,1555,1646,1698,1733,1854,23824,1778,1726,1789,1786,1905,1647,1814,1642,1561,1430,1413,1392,1422,1290,1229,11331,1072,1198,1080,1019,1080,1104,1103,1171,1279,1225,7645,955,1030,939,840,723,708,676,634,621,519,3396,505,458,444,370,325,1294,59369,2998,549,589,592,642,626,3458,643,658,678,723,756,4723,750,802,788,795,826,762,2501,778,776,588,359,2400,351,394,511,586,558,6656,567,574,659,622,663,699,704,706,767,695,12246,720,729,794,792,799,792,845,845,764,779,800,851,867,869,1000,12106,929,863,906,911,959,826,947,813,776,722,705,705,756,657,631,5951,543,622,557,550,587,585,575,610,683,639,4196,485,569,517,449,407,386,383,347,351,302,2134,295,280,269,214,210,866,55949,3171,582,592,647,687,663,3640,712,667,718,753,790,4923,821,817,853,804,880,748,2496,728,761,599,408,2431,370,386,517,582,576,6188,541,591,551,644,596,620,626,668,677,674,11291,718,659,671,682,702,754,791,755,733,727,755,795,831,864,854,11718,849,863,883,875,946,821,867,829,785,708,708,687,666,633,598,5380,529,576,523,469,493,519,528,561,596,586,3449,470,461,422,391,316,322,293,287,270,217,1262,210,178,175,156,115,428 +"2021","Cherwell","E07000177",161024,9355,1775,1888,1863,1907,1922,9418,1897,1872,1817,1878,1954,11657,1988,1984,1932,1947,1938,1868,6449,1844,1794,1572,1239,7917,1254,1440,1616,1739,1868,22915,1944,2050,2158,2254,2274,2398,2381,2450,2504,2502,33484,2426,2475,2358,2404,2240,2369,2303,2178,2064,2011,2032,2085,2105,2249,2185,31794,2196,2277,2315,2342,2375,2386,2300,2239,2204,2066,2006,1903,1737,1713,1735,15084,1592,1506,1501,1421,1512,1409,1513,1517,1571,1542,9196,1100,1225,1135,1049,869,813,810,790,739,666,3755,583,574,453,405,355,1385,81115,4500,839,918,855,945,943,4528,928,888,861,907,944,5694,938,942,954,971,952,937,3134,901,886,760,587,3800,581,664,775,853,927,11455,976,990,1097,1113,1130,1235,1198,1220,1228,1268,16890,1230,1285,1212,1198,1147,1189,1133,1112,1013,1004,1015,1061,1063,1120,1108,15992,1127,1147,1198,1146,1190,1226,1159,1081,1089,1036,993,983,898,851,868,7811,765,765,792,712,800,739,826,795,807,810,4991,561,654,605,577,470,443,436,450,419,376,2320,344,335,243,249,210,939,79909,4855,936,970,1008,962,979,4890,969,984,956,971,1010,5963,1050,1042,978,976,986,931,3315,943,908,812,652,4117,673,776,841,886,941,11460,968,1060,1061,1141,1144,1163,1183,1230,1276,1234,16594,1196,1190,1146,1206,1093,1180,1170,1066,1051,1007,1017,1024,1042,1129,1077,15802,1069,1130,1117,1196,1185,1160,1141,1158,1115,1030,1013,920,839,862,867,7273,827,741,709,709,712,670,687,722,764,732,4205,539,571,530,472,399,370,374,340,320,290,1435,239,239,210,156,145,446 +"2021","Oxford","E07000178",162032,7137,1382,1476,1458,1334,1487,7849,1538,1456,1548,1593,1714,10333,1714,1642,1727,1821,1746,1683,14191,1719,1789,3748,6935,21986,5560,5228,4423,3551,3224,28671,3224,3155,3087,3021,2875,2872,2758,2588,2602,2489,29447,2435,2228,2192,2057,2085,2063,2072,1967,1782,1759,1668,1746,1769,1769,1855,23449,1702,1839,1815,1782,1669,1675,1677,1685,1584,1578,1343,1376,1217,1330,1177,10089,1130,1049,1050,1019,976,994,1004,958,958,951,6111,702,784,723,709,625,524,574,555,483,432,2769,393,368,339,320,280,1069,82413,3441,657,732,752,609,691,3788,727,715,755,770,821,4945,848,793,778,848,885,793,7273,852,842,1913,3666,11184,2990,2676,2167,1726,1625,14385,1682,1529,1555,1536,1402,1427,1380,1250,1354,1270,14878,1208,1139,1113,1003,1079,1019,1024,1029,871,908,829,858,943,888,967,12066,860,912,969,911,846,827,893,897,783,844,741,719,610,670,584,5280,551,531,561,592,502,518,536,504,478,507,3454,378,424,400,404,349,312,342,313,282,250,1719,216,205,206,194,162,736,79619,3696,725,744,706,725,796,4061,811,741,793,823,893,5388,866,849,949,973,861,890,6918,867,947,1835,3269,10802,2570,2552,2256,1825,1599,14286,1542,1626,1532,1485,1473,1445,1378,1338,1248,1219,14569,1227,1089,1079,1054,1006,1044,1048,938,911,851,839,888,826,881,888,11383,842,927,846,871,823,848,784,788,801,734,602,657,607,660,593,4809,579,518,489,427,474,476,468,454,480,444,2657,324,360,323,305,276,212,232,242,201,182,1050,177,163,133,126,118,333 +"2021","South Oxfordshire","E07000179",149092,7982,1478,1506,1631,1671,1696,8789,1750,1708,1737,1792,1802,10825,1877,1839,1742,1858,1778,1731,5908,1716,1733,1406,1053,6453,970,1062,1361,1489,1571,17636,1588,1576,1659,1659,1824,1883,1850,1848,1843,1906,29663,1923,1929,1976,1909,1899,2051,2019,1883,1913,1877,1890,2068,2055,2099,2172,31257,2283,2248,2227,2320,2344,2277,2267,2141,2158,2005,2010,1848,1771,1727,1631,15503,1545,1574,1574,1512,1423,1513,1484,1507,1639,1732,10807,1394,1443,1309,1205,988,980,964,922,857,745,4269,682,646,534,475,397,1535,75528,3849,697,743,776,816,817,4255,827,841,837,876,874,5293,899,889,862,917,895,831,2850,849,848,684,469,2929,415,464,626,671,753,8828,785,793,825,832,919,903,946,910,935,980,15105,999,949,1040,974,995,1049,1017,958,978,933,952,1045,1046,1079,1091,15870,1154,1192,1121,1194,1171,1208,1135,1053,1093,996,1000,921,895,876,861,8054,789,814,804,773,750,791,780,796,861,896,5921,743,769,747,665,544,529,536,496,469,423,2574,399,353,313,267,225,1017,73564,4133,781,763,855,855,879,4534,923,867,900,916,928,5532,978,950,880,941,883,900,3058,867,885,722,584,3524,555,598,735,818,818,8808,803,783,834,827,905,980,904,938,908,926,14558,924,980,936,935,904,1002,1002,925,935,944,938,1023,1009,1020,1081,15387,1129,1056,1106,1126,1173,1069,1132,1088,1065,1009,1010,927,876,851,770,7449,756,760,770,739,673,722,704,711,778,836,4886,651,674,562,540,444,451,428,426,388,322,1695,283,293,221,208,172,518 +"2021","Vale of White Horse","E07000180",138906,7800,1397,1577,1564,1568,1694,8368,1645,1657,1672,1649,1745,10320,1731,1691,1750,1736,1733,1679,5667,1658,1621,1378,1010,6250,969,1071,1290,1452,1468,17885,1591,1582,1653,1762,1801,1861,1844,1929,1950,1912,27745,1912,1888,1934,1910,1832,1917,1930,1772,1750,1744,1759,1807,1839,1885,1866,27409,1854,1906,1976,1952,1912,1980,1987,1906,1938,1772,1772,1642,1722,1621,1469,14229,1465,1393,1427,1332,1347,1379,1370,1467,1542,1507,9310,1144,1300,1119,1010,892,806,861,766,712,700,3923,616,577,475,418,366,1471,69955,3779,673,766,757,745,838,4090,781,849,826,815,819,4809,805,790,861,832,769,752,2595,777,744,613,461,2963,438,502,605,711,707,9045,773,782,814,889,891,974,927,981,1000,1014,14088,974,991,990,941,949,1000,974,888,884,892,855,922,931,949,948,13912,967,969,1006,1001,958,978,973,967,995,872,908,828,933,804,753,7227,736,682,759,667,673,700,691,740,793,786,5033,607,675,622,559,466,446,458,409,400,391,2414,354,329,283,250,241,957,68951,4021,724,811,807,823,856,4278,864,808,846,834,926,5511,926,901,889,904,964,927,3072,881,877,765,549,3287,531,569,685,741,761,8840,818,800,839,873,910,887,917,948,950,898,13657,938,897,944,969,883,917,956,884,866,852,904,885,908,936,918,13497,887,937,970,951,954,1002,1014,939,943,900,864,814,789,817,716,7002,729,711,668,665,674,679,679,727,749,721,4277,537,625,497,451,426,360,403,357,312,309,1509,262,248,192,168,125,514 +"2021","West Oxfordshire","E07000181",114236,5721,1077,1139,1188,1095,1222,6580,1249,1250,1257,1421,1403,8128,1401,1429,1359,1348,1336,1255,4519,1282,1272,1107,858,5321,834,908,1093,1262,1224,13691,1256,1267,1314,1350,1437,1397,1404,1406,1450,1410,21441,1338,1395,1387,1423,1459,1490,1425,1406,1351,1325,1365,1347,1511,1542,1677,24087,1733,1609,1616,1660,1745,1693,1699,1784,1685,1638,1578,1488,1414,1409,1336,12689,1276,1266,1235,1249,1178,1245,1247,1284,1419,1290,8451,1106,1165,1014,979,770,732,776,699,629,581,3608,578,480,448,378,357,1367,58100,2828,512,570,564,552,630,3138,580,625,577,682,674,3984,702,704,679,622,664,613,2128,603,610,512,403,2397,365,361,523,610,538,6798,585,613,651,666,706,716,717,723,703,718,11043,686,720,723,717,711,746,767,716,717,679,699,726,763,790,883,12275,895,809,849,815,931,876,857,931,843,800,808,752,718,719,672,6690,672,639,662,646,630,641,677,680,740,703,4582,583,630,561,509,403,419,428,389,355,305,2237,315,288,269,240,212,913,56136,2893,565,569,624,543,592,3442,669,625,680,739,729,4144,699,725,680,726,672,642,2391,679,662,595,455,2924,469,547,570,652,686,6893,671,654,663,684,731,681,687,683,747,692,10398,652,675,664,706,748,744,658,690,634,646,666,621,748,752,794,11812,838,800,767,845,814,817,842,853,842,838,770,736,696,690,664,5999,604,627,573,603,548,604,570,604,679,587,3869,523,535,453,470,367,313,348,310,274,276,1371,263,192,179,138,145,454 +"2021","Elmbridge","E07000207",138752,8347,1525,1589,1654,1759,1820,9863,1894,1832,1983,2011,2143,11771,2120,2010,1952,1982,1874,1833,5601,1812,1752,1289,748,5133,697,897,1112,1208,1219,13491,1194,1189,1180,1160,1285,1415,1441,1511,1527,1589,31723,1647,1677,1783,2036,2044,2170,2319,2247,2203,2308,2214,2272,2285,2311,2207,28002,2242,2129,2144,2098,1996,2025,2051,1892,1914,1860,1762,1588,1545,1460,1296,12556,1274,1265,1246,1230,1245,1183,1171,1258,1335,1349,8199,1004,1044,992,942,737,725,716,724,671,644,4066,595,538,456,430,409,1638,71737,4015,749,729,817,844,876,4927,962,923,965,1007,1070,5715,1032,978,928,979,907,891,2708,901,864,607,336,2512,315,441,526,623,607,7068,618,607,597,613,658,756,760,810,791,858,16667,891,926,993,1113,1092,1198,1236,1185,1104,1176,1164,1160,1150,1175,1104,14332,1174,1106,1101,1097,1013,1016,1025,994,991,939,902,824,789,722,639,6576,643,645,637,674,653,621,625,669,708,701,4625,528,566,543,508,429,419,412,440,391,389,2592,353,326,276,233,269,1135,67015,4332,776,860,837,915,944,4936,932,909,1018,1004,1073,6056,1088,1032,1024,1003,967,942,2893,911,888,682,412,2621,382,456,586,585,612,6423,576,582,583,547,627,659,681,701,736,731,15056,756,751,790,923,952,972,1083,1062,1099,1132,1050,1112,1135,1136,1103,13670,1068,1023,1043,1001,983,1009,1026,898,923,921,860,764,756,738,657,5980,631,620,609,556,592,562,546,589,627,648,3574,476,478,449,434,308,306,304,284,280,255,1474,242,212,180,197,140,503 +"2021","Epsom and Ewell","E07000208",80921,4627,868,851,899,981,1028,5323,1014,1026,1053,1097,1133,6379,1068,1075,1085,1078,1032,1041,3575,1041,1002,861,671,3965,709,798,835,804,819,8794,782,779,818,811,830,914,961,931,985,983,17935,980,1089,1089,1191,1243,1239,1303,1255,1217,1207,1229,1228,1203,1232,1230,15710,1190,1125,1154,1196,1174,1185,1069,1107,1086,1015,976,912,874,820,827,7550,745,734,689,721,716,712,781,768,827,857,4945,604,655,579,572,487,457,459,404,382,346,2118,333,278,253,242,227,785,41728,2224,412,404,451,468,489,2618,503,501,510,545,559,3068,528,515,547,506,479,493,1783,507,479,433,364,2018,343,419,443,405,408,4626,424,382,454,427,419,496,494,503,525,502,9315,527,593,600,620,658,658,685,680,632,602,591,613,605,660,591,7973,637,553,605,606,594,607,523,528,548,529,502,485,450,393,413,3998,365,409,376,380,385,373,419,410,435,446,2777,311,370,319,323,274,255,270,238,224,193,1328,185,168,153,142,136,544,39193,2403,456,447,448,513,539,2705,511,525,543,552,574,3311,540,560,538,572,553,548,1792,534,523,428,307,1947,366,379,392,399,411,4168,358,397,364,384,411,418,467,428,460,481,8620,453,496,489,571,585,581,618,575,585,605,638,615,598,572,639,7737,553,572,549,590,580,578,546,579,538,486,474,427,424,427,414,3552,380,325,313,341,331,339,362,358,392,411,2168,293,285,260,249,213,202,189,166,158,153,790,148,110,100,100,91,241 +"2021","Guildford","E07000209",143645,6682,1241,1280,1401,1326,1434,7809,1496,1477,1524,1632,1680,9800,1714,1603,1685,1695,1572,1531,9235,1645,1793,2449,3348,13147,3158,2812,3020,2270,1887,17226,1787,1721,1641,1749,1683,1667,1771,1782,1725,1700,27423,1680,1744,1728,1757,1752,1870,1839,1831,1844,1745,1840,1877,1934,2006,1976,27162,1999,1918,1931,1957,1919,2019,2025,1955,1845,1818,1683,1657,1535,1480,1421,13028,1358,1366,1267,1243,1198,1199,1287,1318,1392,1400,8314,1051,1085,1021,899,765,721,777,726,643,626,3819,579,519,445,416,373,1487,72920,3278,627,628,652,633,738,3776,719,716,753,788,800,4804,801,802,802,820,766,813,4454,829,799,1180,1646,6523,1553,1379,1520,1122,949,8580,859,789,816,877,819,858,881,935,881,865,14068,842,897,895,928,919,954,961,945,968,854,953,978,956,1014,1004,13749,1007,978,945,978,953,1058,1027,988,928,920,839,842,816,722,748,6748,697,694,656,622,597,643,678,740,699,722,4587,546,592,544,487,418,393,427,442,375,363,2353,323,300,255,241,235,999,70725,3404,614,652,749,693,696,4033,777,761,771,844,880,4996,913,801,883,875,806,718,4781,816,994,1269,1702,6624,1605,1433,1500,1148,938,8646,928,932,825,872,864,809,890,847,844,835,13355,838,847,833,829,833,916,878,886,876,891,887,899,978,992,972,13413,992,940,986,979,966,961,998,967,917,898,844,815,719,758,673,6280,661,672,611,621,601,556,609,578,693,678,3727,505,493,477,412,347,328,350,284,268,263,1466,256,219,190,175,138,488 +"2021","Mole Valley","E07000210",87388,4008,731,762,826,849,840,4681,884,895,915,944,1043,6363,1089,1024,1077,1092,1040,1041,3626,1070,1116,891,549,3662,521,639,833,847,822,8238,782,869,785,785,809,843,842,845,831,847,16387,918,929,963,954,1018,1069,1086,1072,1102,1129,1157,1191,1184,1237,1378,19666,1381,1257,1335,1392,1473,1461,1406,1415,1329,1294,1266,1245,1195,1127,1090,10332,1085,997,1042,1039,965,895,1049,972,1106,1182,7172,936,926,859,811,627,631,633,619,615,515,3253,476,454,413,382,329,1199,44886,2012,374,379,402,440,417,2301,437,449,454,431,530,3126,498,519,538,527,518,526,1801,515,590,438,258,1715,230,292,406,398,389,4142,350,434,422,386,396,438,429,426,423,438,8518,494,480,490,501,528,513,579,545,604,627,616,609,590,655,687,9964,717,645,680,689,734,743,695,731,711,661,648,634,572,560,544,5356,567,528,525,528,501,447,526,521,614,599,3933,507,479,461,422,363,355,364,354,361,267,2018,256,274,246,244,189,809,42502,1996,357,383,424,409,423,2380,447,446,461,513,513,3237,591,505,539,565,522,515,1825,555,526,453,291,1947,291,347,427,449,433,4096,432,435,363,399,413,405,413,419,408,409,7869,424,449,473,453,490,556,507,527,498,502,541,582,594,582,691,9702,664,612,655,703,739,718,711,684,618,633,618,611,623,567,546,4976,518,469,517,511,464,448,523,451,492,583,3239,429,447,398,389,264,276,269,265,254,248,1235,220,180,167,138,140,390 +"2021","Reigate and Banstead","E07000211",150849,9045,1681,1783,1813,1866,1902,10021,1994,1949,1992,2018,2068,11652,2063,1978,2003,1941,1891,1776,5891,1675,1793,1394,1029,6539,945,1126,1417,1491,1560,18883,1549,1669,1610,1701,1907,1922,2189,2153,2131,2052,32722,2140,2180,2105,2151,2349,2322,2261,2240,2162,2080,2133,2152,2117,2084,2246,29385,2121,2087,2064,2119,2178,2228,2162,2061,2026,1887,1811,1793,1729,1618,1501,13875,1415,1404,1343,1290,1360,1291,1349,1412,1531,1480,8669,1106,1132,1046,979,836,748,759,763,672,628,4167,562,552,488,487,416,1662,77016,4480,815,855,919,911,980,4908,972,962,985,985,1004,5706,1037,963,935,929,957,885,2856,803,877,685,491,3150,417,535,696,728,774,9753,787,811,824,877,1006,996,1155,1128,1083,1086,16660,1121,1140,1078,1087,1233,1206,1127,1154,1082,1080,1078,1055,1039,1043,1137,14888,1069,1065,1053,1093,1100,1120,1118,1052,1036,959,890,872,890,825,746,7164,682,728,678,644,729,674,727,747,792,763,4751,567,604,582,511,464,401,438,430,372,382,2700,332,339,301,319,277,1132,73833,4565,866,928,894,955,922,5113,1022,987,1007,1033,1064,5946,1026,1015,1068,1012,934,891,3035,872,916,709,538,3389,528,591,721,763,786,9130,762,858,786,824,901,926,1034,1025,1048,966,16062,1019,1040,1027,1064,1116,1116,1134,1086,1080,1000,1055,1097,1078,1041,1109,14497,1052,1022,1011,1026,1078,1108,1044,1009,990,928,921,921,839,793,755,6711,733,676,665,646,631,617,622,665,739,717,3918,539,528,464,468,372,347,321,333,300,246,1467,230,213,187,168,139,530 +"2021","Runnymede","E07000212",88085,4780,885,966,991,919,1019,4789,937,1023,942,888,999,5790,966,967,996,995,933,933,5621,904,877,1521,2319,7444,2255,1816,1244,1128,1001,10631,957,953,1003,1060,1029,1098,1066,1090,1166,1209,17376,1122,1182,1065,1157,1148,1172,1229,1073,1126,1124,1168,1180,1185,1228,1217,16487,1134,1205,1206,1209,1195,1178,1212,1212,1180,1037,1060,1003,952,905,799,7586,798,786,771,720,700,687,695,756,793,880,5107,659,659,593,585,481,456,479,429,398,368,2474,387,340,333,262,212,940,45550,2367,440,485,476,467,499,2389,470,504,478,452,485,2829,476,446,491,481,463,472,2911,449,428,781,1253,3987,1302,985,636,569,495,5497,463,494,525,541,533,550,577,567,614,633,8965,600,623,573,563,610,614,600,547,574,588,612,609,631,625,596,8346,576,638,599,617,606,591,609,613,597,526,557,503,481,451,382,3939,397,402,391,381,362,369,374,397,396,470,2791,348,363,284,304,258,260,275,257,229,213,1529,226,205,191,154,119,634,42535,2413,445,481,515,452,520,2400,467,519,464,436,514,2961,490,521,505,514,470,461,2710,455,449,740,1066,3457,953,831,608,559,506,5134,494,459,478,519,496,548,489,523,552,576,8411,522,559,492,594,538,558,629,526,552,536,556,571,554,603,621,8141,558,567,607,592,589,587,603,599,583,511,503,500,471,454,417,3647,401,384,380,339,338,318,321,359,397,410,2316,311,296,309,281,223,196,204,172,169,155,945,161,135,142,108,93,306 +"2021","Spelthorne","E07000213",102959,6010,1143,1245,1198,1163,1261,6374,1295,1254,1237,1304,1284,7208,1267,1194,1190,1204,1232,1121,3993,1139,1136,962,756,4924,812,867,1064,1055,1126,13455,1115,1183,1213,1220,1303,1400,1346,1507,1634,1534,21959,1423,1542,1472,1566,1605,1560,1531,1527,1430,1394,1336,1401,1269,1423,1480,20445,1484,1487,1469,1397,1511,1537,1444,1468,1470,1391,1312,1187,1199,1037,1052,9275,986,943,900,903,873,883,879,917,954,1037,6489,795,789,748,730,590,617,638,506,539,537,2827,451,360,331,349,284,1052,52339,2936,551,616,603,569,597,3132,672,623,598,635,604,3460,600,592,552,577,598,541,1857,530,538,461,328,2444,381,428,575,515,545,6973,563,585,623,621,702,728,678,810,843,820,11178,761,754,762,816,770,812,806,777,709,704,668,718,673,721,727,10202,754,790,711,740,759,744,742,697,748,662,600,582,601,514,558,4814,477,472,482,453,458,452,468,505,505,542,3592,417,437,425,400,338,345,354,280,290,306,1751,257,204,206,220,167,697,50620,3074,592,629,595,594,664,3242,623,631,639,669,680,3748,667,602,638,627,634,580,2136,609,598,501,428,2480,431,439,489,540,581,6482,552,598,590,599,601,672,668,697,791,714,10781,662,788,710,750,835,748,725,750,721,690,668,683,596,702,753,10243,730,697,758,657,752,793,702,771,722,729,712,605,598,523,494,4461,509,471,418,450,415,431,411,412,449,495,2897,378,352,323,330,252,272,284,226,249,231,1076,194,156,125,129,117,355 +"2021","Surrey Heath","E07000214",90450,4481,832,844,902,933,970,5347,1075,1025,1021,1093,1133,6845,1153,1172,1205,1118,1113,1084,3780,1135,1140,888,617,4232,610,704,901,993,1024,10337,949,952,969,985,1037,1069,1112,1070,1148,1046,18459,1046,1117,1156,1152,1292,1245,1281,1212,1132,1213,1269,1344,1284,1343,1373,19158,1495,1355,1372,1374,1437,1395,1358,1337,1328,1276,1198,1090,1081,1081,981,8996,937,887,894,857,853,810,827,887,1030,1014,6084,761,756,778,707,558,534,558,516,451,465,2731,443,379,355,339,269,946,46006,2161,394,438,429,442,458,2572,513,489,469,533,568,3370,572,580,587,555,553,523,1802,521,572,425,284,2057,286,341,445,495,490,5220,479,445,517,482,543,570,538,536,574,536,9462,560,560,602,590,662,654,686,615,539,582,663,688,627,744,690,9642,751,676,700,706,734,714,688,681,620,633,596,577,530,548,488,4694,476,454,461,431,453,434,453,458,534,540,3289,430,407,400,366,293,288,307,285,253,260,1737,270,222,211,219,165,650,44444,2320,438,406,473,491,512,2775,562,536,552,560,565,3475,581,592,618,563,560,561,1978,614,568,463,333,2175,324,363,456,498,534,5117,470,507,452,503,494,499,574,534,574,510,8997,486,557,554,562,630,591,595,597,593,631,606,656,657,599,683,9516,744,679,672,668,703,681,670,656,708,643,602,513,551,533,493,4302,461,433,433,426,400,376,374,429,496,474,2795,331,349,378,341,265,246,251,231,198,205,994,173,157,144,120,104,296 +"2021","Tandridge","E07000215",87872,4975,913,951,1054,1004,1053,5288,1064,984,1021,1137,1082,6786,1074,1108,1110,1191,1201,1102,3743,1168,1083,870,622,3950,626,711,867,841,905,8997,816,829,784,758,892,897,954,1012,1063,992,17198,1073,1124,1166,1085,1136,1179,1200,1103,1120,1053,1086,1215,1136,1256,1266,18603,1302,1232,1289,1383,1394,1306,1300,1370,1241,1284,1224,1114,1088,1064,1012,9365,943,891,959,938,884,845,885,925,1081,1014,6188,806,789,782,693,560,540,563,513,491,451,2779,403,343,364,318,269,1082,45538,2406,445,460,504,480,517,2559,494,487,498,549,531,3501,528,549,546,659,647,572,1838,624,526,404,284,1893,286,326,420,419,442,4722,393,418,403,410,492,453,497,542,578,536,9035,584,600,628,578,582,656,663,559,574,539,577,614,570,657,654,9531,672,608,699,723,753,637,648,711,626,643,593,565,586,529,538,4902,485,466,505,487,464,453,460,480,571,531,3427,427,432,443,372,326,313,325,274,266,249,1724,238,219,230,187,162,688,42334,2569,468,491,550,524,536,2729,570,497,523,588,551,3285,546,559,564,532,554,530,1905,544,557,466,338,2057,340,385,447,422,463,4275,423,411,381,348,400,444,457,470,485,456,8163,489,524,538,507,554,523,537,544,546,514,509,601,566,599,612,9072,630,624,590,660,641,669,652,659,615,641,631,549,502,535,474,4463,458,425,454,451,420,392,425,445,510,483,2761,379,357,339,321,234,227,238,239,225,202,1055,165,124,134,131,107,394 +"2021","Waverley","E07000216",128223,6466,1102,1241,1304,1399,1420,7829,1538,1456,1498,1672,1665,10298,1648,1650,1704,1763,1836,1697,6259,1800,1959,1468,1032,5624,978,1061,1230,1253,1102,11762,1085,1015,1031,1130,1121,1216,1203,1238,1340,1383,25493,1458,1449,1486,1543,1541,1687,1725,1640,1644,1759,1809,1871,1879,1939,2063,26489,2018,1944,1894,1951,1863,1951,1885,1825,1774,1632,1664,1593,1539,1518,1438,13633,1332,1317,1363,1252,1288,1296,1372,1381,1529,1503,9695,1168,1292,1256,1114,871,853,826,817,800,698,4675,700,651,536,507,473,1808,66027,3124,546,614,620,669,675,3826,752,701,736,804,833,4954,817,838,835,828,856,780,3050,909,985,688,468,2784,462,525,608,617,572,6107,540,510,510,573,537,655,645,661,729,747,13259,762,750,790,824,767,901,908,857,854,932,906,954,964,1010,1080,13461,1010,974,956,1002,934,985,975,950,884,831,839,811,773,783,754,7155,684,670,701,629,688,709,714,739,816,805,5329,641,689,659,609,491,475,432,461,458,414,2978,408,389,337,312,294,1238,62196,3342,556,627,684,730,745,4003,786,755,762,868,832,5344,831,812,869,935,980,917,3209,891,974,780,564,2840,516,536,622,636,530,5655,545,505,521,557,584,561,558,577,611,636,12234,696,699,696,719,774,786,817,783,790,827,903,917,915,929,983,13028,1008,970,938,949,929,966,910,875,890,801,825,782,766,735,684,6478,648,647,662,623,600,587,658,642,713,698,4366,527,603,597,505,380,378,394,356,342,284,1697,292,262,199,195,179,570 +"2021","Woking","E07000217",103937,6215,1178,1203,1301,1256,1277,6744,1345,1341,1272,1389,1397,8001,1391,1360,1391,1333,1312,1214,4100,1218,1167,984,731,4892,784,807,1019,1089,1193,13718,1219,1240,1245,1351,1342,1403,1374,1494,1537,1513,23710,1560,1514,1538,1594,1677,1739,1759,1578,1528,1575,1550,1574,1532,1480,1512,19349,1466,1398,1434,1436,1408,1430,1432,1382,1289,1200,1193,1093,1084,1088,1016,8937,931,908,860,927,859,855,907,862,926,902,5588,703,745,645,587,554,483,506,458,467,440,2683,419,324,326,291,283,1040,52305,2988,586,591,610,592,609,3263,669,656,593,696,649,3834,682,674,658,620,645,555,1985,626,571,445,343,2347,341,390,485,538,593,6937,600,603,638,635,707,741,677,740,800,796,11977,806,784,801,843,841,896,892,801,763,769,744,788,771,741,737,9663,723,675,722,696,722,757,730,667,641,603,603,539,528,549,508,4570,472,442,450,468,402,422,491,469,480,474,3082,374,398,343,316,318,268,280,271,275,239,1659,223,191,194,179,178,694,51632,3227,592,612,691,664,668,3481,676,685,679,693,748,4167,709,686,733,713,667,659,2115,592,596,539,388,2545,443,417,534,551,600,6781,619,637,607,716,635,662,697,754,737,717,11733,754,730,737,751,836,843,867,777,765,806,806,786,761,739,775,9686,743,723,712,740,686,673,702,715,648,597,590,554,556,539,508,4367,459,466,410,459,457,433,416,393,446,428,2506,329,347,302,271,236,215,226,187,192,201,1024,196,133,132,112,105,346 +"2021","Adur","E07000223",64536,3193,539,583,698,675,698,3906,765,736,751,842,812,4492,791,792,735,767,727,680,2515,748,667,612,488,2667,448,546,529,554,590,6815,605,623,600,648,675,670,705,724,807,758,12566,796,746,766,788,843,831,850,825,831,796,874,843,828,975,974,13146,945,926,943,910,933,931,965,875,911,845,850,777,748,847,740,7618,714,721,678,768,714,695,756,795,881,896,5414,661,718,623,632,484,481,514,465,433,403,2204,330,331,256,240,213,834,33319,1594,265,302,347,326,354,1870,371,374,341,408,376,2128,382,384,362,346,332,322,1169,367,299,268,235,1246,227,259,231,256,273,3550,299,317,323,327,352,331,374,395,441,391,6516,411,398,405,419,437,443,438,426,443,398,481,427,431,490,469,6695,489,457,470,498,477,447,472,423,460,445,434,402,380,463,378,4155,371,373,360,406,390,397,413,441,486,518,3000,371,379,334,330,267,269,288,281,260,221,1396,185,204,158,146,128,575,31217,1599,274,281,351,349,344,2036,394,362,410,434,436,2364,409,408,373,421,395,358,1346,381,368,344,253,1421,221,287,298,298,317,3265,306,306,277,321,323,339,331,329,366,367,6050,385,348,361,369,406,388,412,399,388,398,393,416,397,485,505,6451,456,469,473,412,456,484,493,452,451,400,416,375,368,384,362,3463,343,348,318,362,324,298,343,354,395,378,2414,290,339,289,302,217,212,226,184,173,182,808,145,127,98,94,85,259 +"2021","Arun","E07000224",164893,7254,1347,1398,1478,1473,1558,8232,1647,1575,1541,1704,1765,9852,1642,1703,1719,1595,1633,1560,6093,1577,1626,1475,1415,7410,1383,1403,1507,1496,1621,17737,1679,1621,1669,1648,1807,1855,1883,1893,1875,1807,27040,1841,1828,1785,1752,1741,1819,1854,1733,1635,1619,1653,1776,1917,1970,2117,34386,2256,2172,2373,2322,2315,2390,2486,2401,2318,2353,2269,2159,2189,2195,2188,23284,2086,2157,2110,2125,2205,2217,2342,2527,2724,2791,16538,2105,2212,2003,1874,1509,1460,1451,1392,1354,1178,7067,1074,962,798,716,715,2802,85429,3574,699,681,737,698,759,4030,820,757,772,821,860,4693,805,803,825,733,798,729,2932,726,765,738,703,3695,686,730,735,735,809,8956,835,802,828,842,905,948,947,993,963,893,13840,922,905,904,856,883,933,975,852,868,815,869,950,1011,994,1103,17860,1173,1076,1213,1208,1141,1272,1254,1218,1219,1245,1216,1116,1179,1174,1156,12418,1102,1161,1092,1149,1174,1176,1247,1337,1447,1533,8989,1160,1145,1076,1006,798,787,837,779,749,652,4442,625,551,457,435,445,1929,79464,3680,648,717,741,775,799,4202,827,818,769,883,905,5159,837,900,894,862,835,831,3161,851,861,737,712,3715,697,673,772,761,812,8781,844,819,841,806,902,907,936,900,912,914,13200,919,923,881,896,858,886,879,881,767,804,784,826,906,976,1014,16526,1083,1096,1160,1114,1174,1118,1232,1183,1099,1108,1053,1043,1010,1021,1032,10866,984,996,1018,976,1031,1041,1095,1190,1277,1258,7549,945,1067,927,868,711,673,614,613,605,526,2625,449,411,341,281,270,873 +"2021","Chichester","E07000225",124073,5309,932,1089,1073,1142,1073,6141,1122,1219,1220,1272,1308,7906,1352,1284,1365,1337,1285,1283,5244,1220,1229,1357,1438,6537,1393,1328,1339,1291,1186,12554,1259,1233,1179,1253,1238,1348,1269,1261,1374,1140,20077,1240,1383,1229,1284,1270,1370,1312,1257,1252,1258,1257,1352,1463,1531,1619,26671,1612,1573,1721,1770,1812,1826,1838,1947,1927,1818,1777,1839,1772,1786,1653,16758,1638,1638,1638,1602,1466,1584,1651,1707,1933,1901,11785,1462,1540,1429,1349,1150,1007,1111,978,917,842,5091,731,741,633,556,487,1943,64559,2627,452,558,524,566,527,2972,547,604,604,586,631,3906,663,641,693,645,626,638,2681,593,568,715,805,3318,748,674,683,640,573,6279,569,595,587,635,616,689,651,646,693,598,10337,573,687,611,641,673,738,694,641,633,675,662,730,786,777,816,14020,873,765,862,968,947,965,963,1017,1003,963,956,969,910,976,883,8860,830,838,834,819,776,863,897,914,1085,1004,6388,761,830,760,718,611,561,623,560,486,478,3171,399,444,359,357,309,1303,59514,2682,480,531,549,576,546,3169,575,615,616,686,677,4000,689,643,672,692,659,645,2563,627,661,642,633,3219,645,654,656,651,613,6275,690,638,592,618,622,659,618,615,681,542,9740,667,696,618,643,597,632,618,616,619,583,595,622,677,754,803,12651,739,808,859,802,865,861,875,930,924,855,821,870,862,810,770,7898,808,800,804,783,690,721,754,793,848,897,5397,701,710,669,631,539,446,488,418,431,364,1920,332,297,274,199,178,640 +"2021","Crawley","E07000226",118491,7639,1500,1538,1542,1522,1537,8076,1634,1596,1643,1571,1632,9208,1691,1620,1540,1512,1466,1379,5121,1444,1404,1187,1086,6556,1128,1237,1266,1414,1511,18614,1518,1638,1750,1792,1920,2019,1954,2038,2025,1960,26595,1960,1940,1988,1898,1995,1952,1920,1814,1669,1617,1556,1596,1529,1589,1572,20927,1623,1565,1522,1525,1494,1475,1481,1489,1359,1336,1297,1258,1271,1191,1041,8843,1072,949,939,858,815,860,787,812,856,895,4583,577,616,544,503,419,429,412,385,366,332,2329,320,291,301,269,202,946,59491,3694,714,739,744,753,744,3837,774,746,771,731,815,4439,794,790,727,746,725,657,2397,700,667,571,459,3241,536,607,633,691,774,9548,768,837,922,904,977,1042,996,1037,1051,1014,13223,982,1014,953,956,1023,982,941,918,825,824,780,752,730,770,773,10403,793,762,758,767,729,725,718,748,670,670,631,628,649,607,548,4662,535,499,488,441,432,446,410,443,463,505,2550,299,333,284,279,222,240,252,223,215,203,1497,186,169,178,176,137,651,59000,3945,786,799,798,769,793,4239,860,850,872,840,817,4769,897,830,813,766,741,722,2724,744,737,616,627,3315,592,630,633,723,737,9066,750,801,828,888,943,977,958,1001,974,946,13372,978,926,1035,942,972,970,979,896,844,793,776,844,799,819,799,10524,830,803,764,758,765,750,763,741,689,666,666,630,622,584,493,4181,537,450,451,417,383,414,377,369,393,390,2033,278,283,260,224,197,189,160,162,151,129,832,134,122,123,93,65,295 +"2021","Horsham","E07000227",146783,7365,1322,1429,1477,1519,1618,8013,1546,1545,1571,1685,1666,10735,1723,1849,1798,1856,1770,1739,5932,1812,1688,1452,980,6185,995,1105,1291,1376,1418,15957,1455,1443,1467,1575,1598,1663,1598,1725,1717,1716,27213,1796,1671,1675,1716,1762,1903,1860,1901,1650,1699,1711,1875,1900,2031,2063,31942,2145,2107,2204,2259,2279,2370,2293,2275,2188,2130,2143,1936,1975,1861,1777,17229,1771,1642,1642,1655,1632,1677,1674,1725,1856,1955,11350,1437,1488,1384,1315,1070,1003,1022,937,915,779,4862,750,655,567,513,479,1898,75144,3574,635,714,722,750,753,3876,716,762,759,798,841,5199,831,882,854,933,852,847,2926,916,847,706,457,2963,441,502,634,685,701,8088,737,720,742,823,798,815,817,903,869,864,14027,951,853,878,877,876,979,960,993,826,888,893,963,976,1037,1077,16270,1104,1103,1123,1149,1168,1208,1178,1180,1097,1076,1063,959,1005,944,913,8973,893,884,826,849,862,894,877,892,996,1000,6197,755,815,765,732,576,515,601,528,482,428,3051,463,374,336,306,294,1278,71639,3791,687,715,755,769,865,4137,830,783,812,887,825,5536,892,967,944,923,918,892,3006,896,841,746,523,3222,554,603,657,691,717,7869,718,723,725,752,800,848,781,822,848,852,13186,845,818,797,839,886,924,900,908,824,811,818,912,924,994,986,15672,1041,1004,1081,1110,1111,1162,1115,1095,1091,1054,1080,977,970,917,864,8256,878,758,816,806,770,783,797,833,860,955,5153,682,673,619,583,494,488,421,409,433,351,1811,287,281,231,207,185,620 +"2021","Mid Sussex","E07000228",152572,8315,1508,1564,1664,1713,1866,9382,1879,1796,1907,1865,1935,11558,2051,1954,1939,1886,1916,1812,6202,1847,1839,1492,1024,6373,1006,1181,1311,1417,1458,16848,1426,1553,1575,1501,1610,1733,1826,1845,1950,1829,31449,1950,1919,1989,2000,2057,2108,2247,2119,2013,2006,2035,2224,2223,2296,2263,30952,2359,2238,2276,2300,2205,2201,2199,2207,2068,2024,1864,1783,1862,1708,1658,16106,1647,1691,1503,1529,1505,1476,1519,1583,1837,1816,10692,1371,1488,1406,1219,935,907,917,886,804,759,4695,725,599,554,508,478,1831,78501,4101,741,802,794,851,913,4576,911,869,918,913,965,5679,1019,951,968,921,943,877,2948,888,891,695,474,3030,460,576,638,656,700,8781,724,803,790,781,844,902,982,995,986,974,16199,1043,996,995,1044,1091,1115,1172,1112,983,1003,1037,1171,1132,1174,1131,15795,1216,1154,1155,1131,1129,1109,1102,1140,1078,1028,955,912,990,879,817,8542,877,836,805,813,807,782,808,870,963,981,5901,743,819,762,634,524,509,534,494,447,435,2949,409,347,338,301,313,1241,74071,4214,767,762,870,862,953,4806,968,927,989,952,970,5879,1032,1003,971,965,973,935,3254,959,948,797,550,3343,546,605,673,761,758,8067,702,750,785,720,766,831,844,850,964,855,15250,907,923,994,956,966,993,1075,1007,1030,1003,998,1053,1091,1122,1132,15157,1143,1084,1121,1169,1076,1092,1097,1067,990,996,909,871,872,829,841,7564,770,855,698,716,698,694,711,713,874,835,4791,628,669,644,585,411,398,383,392,357,324,1746,316,252,216,207,165,590 +"2021","Worthing","E07000229",111338,5447,1025,1067,1113,1119,1123,6115,1184,1190,1212,1232,1297,7421,1290,1296,1256,1230,1225,1124,4314,1196,1196,1028,894,5194,900,945,1064,1134,1151,13354,1163,1211,1246,1313,1303,1444,1393,1400,1495,1386,21742,1375,1450,1353,1435,1407,1514,1458,1387,1408,1365,1402,1391,1549,1593,1655,22801,1607,1524,1680,1646,1694,1607,1692,1634,1533,1454,1442,1406,1387,1249,1246,12473,1167,1206,1185,1127,1161,1174,1204,1309,1447,1493,8481,1088,1087,980,977,719,755,797,689,707,682,3996,540,539,491,382,363,1681,57510,2648,504,519,546,542,537,3008,621,557,598,589,643,3583,620,597,620,610,598,538,2001,565,520,499,417,2598,428,468,530,594,578,6880,603,601,613,668,714,749,704,726,772,730,11151,723,728,697,734,748,767,792,739,707,687,702,688,785,836,818,11626,834,784,871,831,841,830,842,854,793,741,744,694,705,620,642,6646,607,635,609,600,644,627,672,704,752,796,4783,579,600,535,531,420,426,461,392,407,432,2586,322,327,316,230,234,1157,53828,2799,521,548,567,577,586,3107,563,633,614,643,654,3838,670,699,636,620,627,586,2313,631,676,529,477,2596,472,477,534,540,573,6474,560,610,633,645,589,695,689,674,723,656,10591,652,722,656,701,659,747,666,648,701,678,700,703,764,757,837,11175,773,740,809,815,853,777,850,780,740,713,698,712,682,629,604,5827,560,571,576,527,517,547,532,605,695,697,3698,509,487,445,446,299,329,336,297,300,250,1410,218,212,175,152,129,524 +"2021","Bath and North East Somerset","E06000022",193407,9019,1768,1731,1731,1883,1906,10047,1984,1920,1995,2043,2105,12724,2128,2103,2074,2190,2151,2078,12694,1926,2073,3431,5264,18549,4812,4279,3997,2995,2466,23177,2288,2239,2320,2284,2331,2329,2331,2339,2397,2319,33404,2216,2235,2188,2086,2168,2208,2256,2209,2112,1995,2143,2187,2296,2476,2629,36272,2509,2492,2513,2536,2658,2599,2603,2581,2480,2491,2349,2163,2141,2164,1993,19266,1981,1851,1892,1818,1878,1790,1931,1981,2042,2102,12723,1585,1688,1516,1392,1204,1113,1155,1080,1049,941,5532,865,756,621,595,567,2128,99019,4322,842,833,813,868,966,4896,958,967,924,1030,1017,6173,1019,969,1038,1041,1081,1025,6398,936,1010,1713,2739,9210,2436,2186,1936,1449,1203,11919,1155,1119,1168,1195,1201,1200,1240,1178,1228,1235,17036,1086,1142,1125,1084,1090,1125,1156,1107,1082,1027,1102,1148,1135,1240,1387,18562,1298,1271,1282,1343,1353,1335,1317,1325,1253,1268,1222,1108,1057,1105,1025,10074,1037,948,1018,940,998,938,1049,1006,1048,1092,6988,833,893,843,772,634,625,662,602,584,540,3441,505,444,357,352,360,1423,94388,4697,926,898,918,1015,940,5151,1026,953,1071,1013,1088,6551,1109,1134,1036,1149,1070,1053,6296,990,1063,1718,2525,9339,2376,2093,2061,1546,1263,11258,1133,1120,1152,1089,1130,1129,1091,1161,1169,1084,16368,1130,1093,1063,1002,1078,1083,1100,1102,1030,968,1041,1039,1161,1236,1242,17710,1211,1221,1231,1193,1305,1264,1286,1256,1227,1223,1127,1055,1084,1059,968,9192,944,903,874,878,880,852,882,975,994,1010,5735,752,795,673,620,570,488,493,478,465,401,2091,360,312,264,243,207,705 +"2021","Bristol, City of","E06000023",472473,25942,5166,5178,5183,5171,5244,26764,5278,5320,5364,5397,5405,30053,5381,5147,5081,5080,4887,4477,25142,4610,4525,6363,9644,47538,10609,10211,9407,8776,8535,88257,8573,8981,8965,8879,9000,9034,8955,8839,8682,8349,96079,8282,7891,7539,7115,6940,7041,6752,6114,5706,5628,5493,5529,5292,5307,5450,71935,5409,5230,5321,5108,5286,5272,5279,4974,4854,4664,4422,4163,4168,4056,3729,32873,3614,3479,3465,3240,3096,3153,3160,3142,3372,3152,19481,2403,2450,2376,2248,1838,1732,1807,1667,1552,1408,8409,1265,1147,1010,937,857,3193,237948,12557,2547,2566,2462,2497,2485,13162,2620,2604,2646,2650,2642,14834,2623,2492,2483,2509,2459,2268,12602,2220,2198,3232,4952,24071,5461,5146,4714,4523,4227,44285,4234,4580,4505,4396,4466,4542,4513,4466,4362,4221,47715,4106,3923,3770,3480,3448,3495,3433,3023,2795,2752,2770,2758,2662,2603,2697,35877,2639,2632,2636,2447,2605,2682,2553,2531,2465,2321,2233,2108,2077,2123,1825,16820,1821,1751,1777,1695,1549,1591,1616,1623,1774,1623,10658,1226,1312,1283,1231,998,965,993,943,876,831,5367,774,698,606,575,531,2183,234525,13385,2619,2612,2721,2674,2759,13602,2658,2716,2718,2747,2763,15219,2758,2655,2598,2571,2428,2209,12540,2390,2327,3131,4692,23467,5148,5065,4693,4253,4308,43972,4339,4401,4460,4483,4534,4492,4442,4373,4320,4128,48364,4176,3968,3769,3635,3492,3546,3319,3091,2911,2876,2723,2771,2630,2704,2753,36058,2770,2598,2685,2661,2681,2590,2726,2443,2389,2343,2189,2055,2091,1933,1904,16053,1793,1728,1688,1545,1547,1562,1544,1519,1598,1529,8823,1177,1138,1093,1017,840,767,814,724,676,577,3042,491,449,404,362,326,1010 +"2021","North Somerset","E06000024",216735,10661,1942,2067,2202,2157,2293,12250,2369,2392,2307,2566,2616,15251,2648,2648,2552,2547,2432,2424,8410,2367,2317,2050,1676,9784,1690,1830,2055,2076,2133,23125,2046,2092,2157,2181,2319,2438,2337,2506,2615,2434,40613,2589,2494,2597,2672,2725,2837,2734,2698,2530,2608,2569,2775,2824,2883,3078,44765,3124,3082,3059,3159,3066,3373,3169,3145,3079,3008,2802,2738,2793,2680,2488,26477,2534,2452,2539,2515,2488,2530,2605,2795,2963,3056,18041,2329,2554,2157,2024,1688,1607,1621,1460,1353,1248,7358,1093,1082,886,772,768,2757,111429,5215,965,997,1074,1053,1126,5936,1162,1197,1096,1238,1243,7354,1308,1284,1225,1164,1192,1181,4081,1164,1136,981,800,4848,761,905,1068,1028,1086,11944,1032,1120,1064,1118,1193,1281,1226,1297,1351,1262,20878,1353,1294,1365,1381,1383,1442,1462,1417,1311,1339,1318,1425,1386,1442,1560,22846,1614,1536,1505,1615,1606,1693,1616,1567,1528,1536,1445,1456,1458,1410,1261,13892,1320,1249,1336,1336,1323,1304,1364,1500,1563,1597,9806,1283,1347,1151,1082,920,850,896,794,773,710,4629,626,612,532,498,485,1876,105306,5446,977,1070,1128,1104,1167,6314,1207,1195,1211,1328,1373,7897,1340,1364,1327,1383,1240,1243,4329,1203,1181,1069,876,4936,929,925,987,1048,1047,11181,1014,972,1093,1063,1126,1157,1111,1209,1264,1172,19735,1236,1200,1232,1291,1342,1395,1272,1281,1219,1269,1251,1350,1438,1441,1518,21919,1510,1546,1554,1544,1460,1680,1553,1578,1551,1472,1357,1282,1335,1270,1227,12585,1214,1203,1203,1179,1165,1226,1241,1295,1400,1459,8235,1046,1207,1006,942,768,757,725,666,580,538,2729,467,470,354,274,283,881 +"2021","South Gloucestershire","E06000025",290421,16121,3065,3151,3304,3315,3286,17127,3433,3346,3347,3507,3494,19811,3435,3386,3383,3357,3166,3084,13115,3110,3039,3323,3643,18100,3555,3547,3586,3696,3716,39885,3739,3827,3866,3945,4043,4037,4068,4194,4192,3974,55811,4120,3972,3988,3779,3823,3808,3796,3596,3447,3424,3410,3478,3627,3726,3817,56259,4088,3984,4039,4043,4158,4164,4078,4022,3929,3666,3512,3296,3258,3044,2978,27567,2766,2737,2735,2682,2588,2586,2734,2710,3073,2956,19089,2338,2643,2303,2220,1828,1651,1703,1583,1465,1355,7536,1234,1066,957,878,703,2698,146654,7793,1536,1481,1613,1565,1598,8363,1631,1691,1621,1721,1699,9670,1674,1635,1663,1652,1536,1510,6269,1558,1436,1591,1684,8601,1626,1697,1678,1761,1839,20263,1885,1883,1951,1983,2085,2086,2075,2140,2159,2016,28157,2118,2030,2011,1908,1910,1940,1916,1803,1762,1695,1692,1788,1741,1913,1930,28318,2074,2024,2055,2055,2091,2134,2075,2055,1929,1788,1720,1655,1630,1542,1491,14315,1411,1424,1399,1362,1329,1365,1400,1443,1640,1542,10324,1276,1362,1237,1154,995,908,952,878,798,764,4581,721,597,570,525,437,1731,143767,8328,1529,1670,1691,1750,1688,8764,1802,1655,1726,1786,1795,10141,1761,1751,1720,1705,1630,1574,6846,1552,1603,1732,1959,9499,1929,1850,1908,1935,1877,19622,1854,1944,1915,1962,1958,1951,1993,2054,2033,1958,27654,2002,1942,1977,1871,1913,1868,1880,1793,1685,1729,1718,1690,1886,1813,1887,27941,2014,1960,1984,1988,2067,2030,2003,1967,2000,1878,1792,1641,1628,1502,1487,13252,1355,1313,1336,1320,1259,1221,1334,1267,1433,1414,8765,1062,1281,1066,1066,833,743,751,705,667,591,2955,513,469,387,353,266,967 +"2021","Plymouth","E06000026",264691,13205,2450,2587,2724,2713,2731,15125,2945,2914,2916,3230,3120,17741,3092,3070,2953,3020,2900,2706,13212,2822,2745,3282,4363,21173,4516,4686,4455,3860,3656,36333,3607,3614,3574,3487,3656,3734,3756,3671,3645,3589,48720,3532,3447,3546,3370,3474,3432,3266,3186,2870,2823,3026,2934,3157,3274,3383,50216,3461,3464,3483,3512,3698,3502,3616,3451,3432,3313,3303,3069,2981,3018,2913,26059,2658,2590,2636,2510,2497,2486,2469,2568,2844,2801,16423,2214,2218,1923,1901,1475,1403,1453,1459,1211,1166,6484,1042,942,807,720,624,2349,134780,6376,1176,1329,1304,1299,1268,7357,1382,1443,1405,1608,1519,8681,1496,1531,1396,1505,1483,1270,6700,1382,1364,1647,2307,10846,2425,2432,2218,1968,1803,18285,1733,1819,1791,1743,1874,1817,1923,1860,1870,1855,24489,1808,1728,1809,1679,1693,1744,1663,1602,1420,1354,1535,1506,1572,1646,1730,25414,1776,1772,1732,1736,1941,1723,1852,1756,1662,1697,1633,1544,1509,1506,1575,13476,1346,1266,1362,1304,1327,1328,1296,1311,1475,1461,9021,1218,1139,1016,1016,805,780,825,841,681,700,4135,606,576,481,451,397,1624,129911,6829,1274,1258,1420,1414,1463,7768,1563,1471,1511,1622,1601,9060,1596,1539,1557,1515,1417,1436,6512,1440,1381,1635,2056,10327,2091,2254,2237,1892,1853,18048,1874,1795,1783,1744,1782,1917,1833,1811,1775,1734,24231,1724,1719,1737,1691,1781,1688,1603,1584,1450,1469,1491,1428,1585,1628,1653,24802,1685,1692,1751,1776,1757,1779,1764,1695,1770,1616,1670,1525,1472,1512,1338,12583,1312,1324,1274,1206,1170,1158,1173,1257,1369,1340,7402,996,1079,907,885,670,623,628,618,530,466,2349,436,366,326,269,227,725 +"2021","Torbay","E06000027",139322,6059,1083,1160,1263,1284,1269,7312,1382,1411,1494,1495,1530,8921,1486,1533,1500,1500,1482,1420,5305,1516,1447,1307,1035,6214,1024,1133,1320,1384,1353,14737,1312,1351,1437,1496,1533,1577,1486,1524,1527,1494,22742,1483,1453,1465,1439,1478,1518,1512,1429,1312,1449,1469,1565,1663,1730,1777,30848,2005,2019,2047,2090,2111,2155,2199,2154,2178,2018,2082,2012,1933,1976,1869,19222,1872,1772,1936,1852,1769,1802,1874,1972,2098,2275,12687,1583,1710,1624,1421,1216,1061,1129,1038,964,941,5275,818,710,676,557,527,1987,71496,2964,525,525,619,654,641,3582,704,693,729,725,731,4329,741,738,743,711,731,665,2545,751,709,601,484,3039,496,526,659,685,673,7602,667,715,737,758,802,816,801,732,793,781,11702,759,776,735,711,776,785,808,712,725,759,775,809,799,856,917,15697,1019,1013,1062,1042,1053,1121,1144,1088,1126,1002,1043,1031,1016,990,947,9885,960,905,999,958,885,989,949,989,1068,1183,6815,791,881,852,761,672,564,630,588,542,534,3336,471,415,404,320,326,1400,67826,3095,558,635,644,630,628,3730,678,718,765,770,799,4592,745,795,757,789,751,755,2760,765,738,706,551,3175,528,607,661,699,680,7135,645,636,700,738,731,761,685,792,734,713,11040,724,677,730,728,702,733,704,717,587,690,694,756,864,874,860,15151,986,1006,985,1048,1058,1034,1055,1066,1052,1016,1039,981,917,986,922,9337,912,867,937,894,884,813,925,983,1030,1092,5872,792,829,772,660,544,497,499,450,422,407,1939,347,295,272,237,201,587 +"2021","Swindon","E06000030",233408,13624,2504,2664,2710,2844,2902,15156,2899,3047,2921,3162,3127,17478,3131,2983,2923,3008,2720,2713,9570,2604,2606,2301,2059,12028,2035,2161,2449,2667,2716,32637,2834,2970,3030,3124,3328,3393,3414,3441,3495,3608,49952,3428,3520,3485,3472,3414,3549,3360,3226,3090,3050,3034,3214,3298,3397,3415,45895,3425,3324,3265,3326,3442,3248,3279,3237,3218,3027,2916,2692,2678,2500,2318,20396,2207,2185,2231,1990,1946,1905,1914,1890,2111,2017,11857,1518,1588,1406,1319,1150,1029,1081,1020,907,839,4815,753,707,614,529,469,1743,117345,6701,1194,1315,1339,1393,1460,7357,1369,1508,1421,1536,1523,8470,1515,1454,1449,1450,1315,1287,4620,1283,1239,1108,990,5906,939,1052,1204,1321,1390,16810,1434,1515,1644,1614,1678,1715,1731,1788,1824,1867,24954,1749,1859,1753,1782,1707,1796,1603,1617,1521,1555,1491,1534,1635,1682,1670,22583,1710,1605,1639,1684,1692,1606,1596,1568,1588,1423,1430,1323,1303,1263,1153,10558,1119,1124,1167,1043,961,998,989,996,1127,1034,6434,808,854,773,690,609,561,597,574,496,472,2952,420,426,352,300,299,1155,116063,6923,1310,1349,1371,1451,1442,7799,1530,1539,1500,1626,1604,9008,1616,1529,1474,1558,1405,1426,4950,1321,1367,1193,1069,6122,1096,1109,1245,1346,1326,15827,1400,1455,1386,1510,1650,1678,1683,1653,1671,1741,24998,1679,1661,1732,1690,1707,1753,1757,1609,1569,1495,1543,1680,1663,1715,1745,23312,1715,1719,1626,1642,1750,1642,1683,1669,1630,1604,1486,1369,1375,1237,1165,9838,1088,1061,1064,947,985,907,925,894,984,983,5423,710,734,633,629,541,468,484,446,411,367,1863,333,281,262,229,170,588 +"2021","Cornwall","E06000052",570300,25533,4727,4886,5123,5303,5494,30255,5807,5767,5972,6257,6452,37092,6356,6270,6234,6213,6142,5877,23383,5891,6002,5748,5742,28610,5919,5821,5607,5721,5542,59993,5390,5454,5663,5855,6127,6390,6290,6223,6568,6033,96994,6108,6192,6155,6151,6301,6746,6537,6052,5847,6146,6027,6565,6954,7422,7791,124300,7975,7946,8098,8271,8423,8742,8759,8817,8399,8387,8349,8064,8103,8005,7962,77790,7538,7400,7583,7370,7499,7331,7722,7921,8745,8681,48210,6487,6729,6189,5503,4531,4142,4074,3762,3536,3257,18140,2815,2657,2160,2021,1771,6716,293681,12398,2415,2328,2504,2510,2641,14813,2861,2831,2978,3033,3110,18032,3087,3058,2992,3012,2985,2898,11440,2896,2902,2795,2847,14091,2865,2873,2773,2836,2744,30717,2711,2750,2838,3080,3098,3215,3214,3241,3478,3092,50136,3077,3242,3168,3209,3232,3367,3398,3178,2998,3112,3129,3472,3612,3780,4162,64472,4134,4175,4266,4298,4388,4549,4495,4554,4384,4349,4293,4137,4152,4177,4121,40462,3900,3863,3949,3830,3939,3757,4074,4090,4616,4444,25879,3417,3479,3340,2912,2458,2241,2170,2031,1949,1882,11241,1597,1523,1301,1196,1053,4571,276619,13135,2312,2558,2619,2793,2853,15442,2946,2936,2994,3224,3342,19060,3269,3212,3242,3201,3157,2979,11943,2995,3100,2953,2895,14519,3054,2948,2834,2885,2798,29276,2679,2704,2825,2775,3029,3175,3076,2982,3090,2941,46858,3031,2950,2987,2942,3069,3379,3139,2874,2849,3034,2898,3093,3342,3642,3629,59828,3841,3771,3832,3973,4035,4193,4264,4263,4015,4038,4056,3927,3951,3828,3841,37328,3638,3537,3634,3540,3560,3574,3648,3831,4129,4237,22331,3070,3250,2849,2591,2073,1901,1904,1731,1587,1375,6899,1218,1134,859,825,718,2145 +"2021","Isles of Scilly","E06000053",2057,97,18,22,29,11,17,107,20,25,27,18,17,121,13,22,18,28,23,17,29,4,5,8,12,82,18,18,13,7,26,217,18,23,21,20,30,17,18,22,28,20,375,25,26,24,25,32,24,39,23,32,20,26,14,22,21,22,453,37,34,27,36,23,30,39,44,35,22,18,28,25,30,25,277,17,28,25,23,30,31,22,34,30,37,224,29,38,24,20,16,19,33,16,13,16,75,9,13,3,8,6,36,1050,49,7,12,17,5,8,51,12,14,14,4,7,54,7,12,10,13,9,3,13,0,2,4,7,40,9,8,7,2,14,112,10,14,8,11,19,12,8,9,11,10,203,15,15,11,14,18,14,23,9,9,13,13,6,16,14,13,226,21,19,13,22,11,14,21,20,11,15,9,13,12,11,14,145,7,16,9,14,15,17,9,18,17,23,106,10,15,12,10,9,9,15,10,7,9,51,5,9,2,3,4,28,1007,48,11,10,12,6,9,56,8,11,13,14,10,67,6,10,8,15,14,14,16,4,3,4,5,42,9,10,6,5,12,105,8,9,13,9,11,5,10,13,17,10,172,10,11,13,11,14,10,16,14,23,7,13,8,6,7,9,227,16,15,14,14,12,16,18,24,24,7,9,15,13,19,11,132,10,12,16,9,15,14,13,16,13,14,118,19,23,12,10,7,10,18,6,6,7,24,4,4,1,5,2,8 +"2021","Wiltshire","E06000054",510347,25630,4557,5007,5221,5338,5507,29543,5705,5799,5786,5983,6270,36049,6239,6070,6092,5916,5998,5734,21604,5861,6217,5292,4234,24237,4002,4364,5048,5262,5561,59525,5534,5702,5699,5743,5880,6241,6079,6138,6237,6272,93597,6164,6074,6132,6060,6153,6279,6139,5959,5605,5610,5998,6257,6637,7094,7436,108637,7370,7425,7560,7521,7715,7866,7808,7667,7417,7233,7127,6815,6795,6247,6071,58699,5896,5698,5787,5740,5668,5557,5618,5948,6453,6334,37679,4768,5161,4626,4234,3616,3344,3338,3146,2818,2628,15147,2381,2183,1794,1712,1490,5587,258637,12601,2286,2423,2537,2618,2737,14228,2780,2810,2849,2818,2971,17799,3036,2976,2979,2967,3002,2839,9916,2873,2945,2422,1676,11036,1712,1938,2266,2481,2639,29676,2566,2741,2810,2847,2930,3210,3088,3126,3149,3209,47696,3064,3070,3051,3058,3206,3229,3073,2893,2924,2891,3098,3250,3474,3654,3761,55452,3765,3836,3843,3831,3965,4064,3991,3883,3859,3620,3606,3399,3480,3206,3104,30516,3070,2892,2970,3032,2956,2884,2909,3179,3363,3261,20371,2551,2712,2493,2224,1944,1845,1818,1734,1587,1463,9346,1341,1236,1040,1032,897,3800,251710,13029,2271,2584,2684,2720,2770,15315,2925,2989,2937,3165,3299,18250,3203,3094,3113,2949,2996,2895,11688,2988,3272,2870,2558,13201,2290,2426,2782,2781,2922,29849,2968,2961,2889,2896,2950,3031,2991,3012,3088,3063,45901,3100,3004,3081,3002,2947,3050,3066,3066,2681,2719,2900,3007,3163,3440,3675,53185,3605,3589,3717,3690,3750,3802,3817,3784,3558,3613,3521,3416,3315,3041,2967,28183,2826,2806,2817,2708,2712,2673,2709,2769,3090,3073,17308,2217,2449,2133,2010,1672,1499,1520,1412,1231,1165,5801,1040,947,754,680,593,1787 +"2021","Bournemouth, Christchurch and Poole","E06000058",400198,18881,3678,3589,3745,3846,4023,21210,4177,4106,4117,4324,4486,25199,4405,4271,4261,4269,4136,3857,18400,4039,3933,4580,5848,26928,5884,5758,5550,4998,4738,50003,4630,4710,4700,4906,4896,5222,5244,5185,5356,5154,76361,5143,5196,5237,5303,5345,5516,5332,5125,4771,4670,4732,4860,4803,5051,5277,76787,5375,5308,5416,5360,5396,5395,5485,5250,5230,5166,4922,4741,4715,4548,4480,43414,4150,4151,4321,4037,4159,4164,4242,4372,4874,4944,29299,3667,3963,3506,3261,2696,2461,2569,2556,2375,2245,13716,1951,1867,1627,1545,1271,5455,204823,9192,1798,1745,1833,1852,1964,10375,2070,2065,1954,2122,2164,12249,2134,2078,2066,2058,2064,1849,9218,1986,1904,2371,2957,13508,3043,2888,2749,2451,2377,25511,2294,2382,2402,2515,2461,2684,2684,2687,2771,2631,38594,2740,2666,2670,2688,2683,2810,2622,2627,2367,2348,2338,2436,2434,2551,2614,38862,2704,2705,2679,2682,2689,2747,2808,2658,2660,2603,2478,2393,2409,2342,2305,22869,2114,2229,2238,2074,2226,2184,2253,2332,2597,2622,15858,1897,2113,1891,1724,1479,1310,1436,1434,1301,1273,8587,1080,1100,966,966,812,3663,195375,9689,1880,1844,1912,1994,2059,10835,2107,2041,2163,2202,2322,12950,2271,2193,2195,2211,2072,2008,9182,2053,2029,2209,2891,13420,2841,2870,2801,2547,2361,24492,2336,2328,2298,2391,2435,2538,2560,2498,2585,2523,37767,2403,2530,2567,2615,2662,2706,2710,2498,2404,2322,2394,2424,2369,2500,2663,37925,2671,2603,2737,2678,2707,2648,2677,2592,2570,2563,2444,2348,2306,2206,2175,20545,2036,1922,2083,1963,1933,1980,1989,2040,2277,2322,13441,1770,1850,1615,1537,1217,1151,1133,1122,1074,972,5129,871,767,661,579,459,1792 +"2021","Dorset","E06000059",379584,15024,2664,2867,3038,3181,3274,18162,3441,3395,3573,3815,3938,24497,3901,4019,4078,4242,4101,4156,14985,4197,4214,3744,2830,15295,2650,2811,3119,3276,3439,35084,3304,3334,3378,3345,3393,3641,3636,3618,3772,3663,58775,3613,3710,3554,3619,3829,3779,3942,3821,3566,3683,3786,3994,4291,4663,4925,85482,5093,5176,5459,5538,5649,5843,5853,6108,6013,5947,5861,5691,5859,5807,5585,57435,5286,5584,5511,5307,5329,5451,5897,5861,6575,6634,38629,4900,5339,4578,4389,3686,3402,3328,3245,3035,2727,16216,2422,2193,1948,1779,1578,6296,195172,7295,1214,1340,1479,1639,1623,8869,1645,1685,1774,1809,1956,12063,1933,2029,2060,2013,1957,2071,6929,1924,1997,1743,1265,7121,1172,1260,1484,1584,1621,17563,1562,1615,1683,1702,1736,1805,1827,1860,1968,1805,30467,1807,1951,1846,1908,1988,1958,2012,1922,1853,1907,1953,2059,2280,2389,2634,44425,2689,2681,2812,2925,2946,3080,3024,3140,3145,3037,3017,2969,3067,3003,2890,30008,2726,2916,2922,2766,2752,2863,3201,3052,3354,3456,20581,2580,2779,2453,2212,1996,1823,1830,1768,1665,1475,9851,1366,1247,1110,1064,969,4095,184412,7729,1450,1527,1559,1542,1651,9293,1796,1710,1799,2006,1982,12434,1968,1990,2018,2229,2144,2085,8056,2273,2217,2001,1565,8174,1478,1551,1635,1692,1818,17521,1742,1719,1695,1643,1657,1836,1809,1758,1804,1858,28308,1806,1759,1708,1711,1841,1821,1930,1899,1713,1776,1833,1935,2011,2274,2291,41057,2404,2495,2647,2613,2703,2763,2829,2968,2868,2910,2844,2722,2792,2804,2695,27427,2560,2668,2589,2541,2577,2588,2696,2809,3221,3178,18048,2320,2560,2125,2177,1690,1579,1498,1477,1370,1252,6365,1056,946,838,715,609,2201 +"2021","East Devon","E07000040",150825,6491,1192,1249,1315,1332,1403,7709,1512,1465,1492,1583,1657,9240,1578,1574,1525,1561,1504,1498,5592,1535,1553,1393,1111,6193,1121,1105,1272,1349,1346,14316,1308,1313,1363,1438,1470,1449,1521,1468,1527,1459,24027,1551,1502,1468,1509,1550,1621,1600,1556,1409,1494,1556,1638,1693,1892,1988,32036,1966,2053,2123,2160,2211,2161,2262,2206,2159,2152,2079,2134,2128,2116,2126,22247,2055,2011,2117,2094,2066,2128,2281,2317,2533,2645,15928,1999,2158,1889,1849,1467,1441,1376,1307,1247,1195,7046,1073,884,829,759,668,2833,78208,3195,595,606,610,647,737,3713,743,699,744,738,789,4499,751,782,764,763,703,736,2644,716,748,672,508,2819,467,500,572,637,643,7314,638,650,696,713,770,761,777,778,761,770,12415,786,746,765,796,806,872,828,774,687,804,806,836,868,979,1062,16898,1042,1106,1080,1114,1160,1134,1197,1171,1152,1117,1105,1124,1131,1147,1118,11755,1090,1079,1146,1131,1101,1084,1162,1256,1322,1384,8575,1062,1179,977,961,777,814,760,706,690,649,4381,633,521,478,466,397,1886,72617,3296,597,643,705,685,666,3996,769,766,748,845,868,4741,827,792,761,798,801,762,2948,819,805,721,603,3374,654,605,700,712,703,7002,670,663,667,725,700,688,744,690,766,689,11612,765,756,703,713,744,749,772,782,722,690,750,802,825,913,926,15138,924,947,1043,1046,1051,1027,1065,1035,1007,1035,974,1010,997,969,1008,10492,965,932,971,963,965,1044,1119,1061,1211,1261,7353,937,979,912,888,690,627,616,601,557,546,2665,440,363,351,293,271,947 +"2021","Exeter","E07000041",130712,5883,1163,1144,1180,1187,1209,6201,1281,1204,1217,1256,1243,7293,1242,1268,1236,1246,1126,1175,10591,1154,1175,3040,5222,16348,4978,4370,2955,2177,1868,17990,1842,1729,1745,1822,1820,1785,1850,1791,1788,1818,23166,1701,1709,1697,1698,1653,1534,1656,1557,1389,1295,1379,1465,1422,1430,1581,21513,1502,1503,1656,1545,1576,1585,1535,1502,1421,1329,1394,1300,1313,1211,1141,11175,1113,1140,1111,1051,1080,1059,1098,1123,1175,1225,7332,911,935,829,767,756,703,663,639,572,557,3220,481,427,404,346,308,1254,67048,2875,558,560,584,568,605,2990,631,593,558,621,587,3561,581,619,602,633,536,590,5486,572,535,1594,2785,8468,2607,2280,1517,1130,934,8986,925,838,902,899,940,896,939,874,876,897,11605,857,857,851,840,849,735,859,779,689,682,682,702,741,712,770,10926,760,744,821,779,808,820,785,752,732,695,703,682,662,614,569,5931,574,617,603,538,580,547,561,619,643,649,4139,501,521,457,434,431,406,379,352,330,328,2081,287,257,253,225,206,853,63664,3008,605,584,596,619,604,3211,650,611,659,635,656,3732,661,649,634,613,590,585,5105,582,640,1446,2437,7880,2371,2090,1438,1047,934,9004,917,891,843,923,880,889,911,917,912,921,11561,844,852,846,858,804,799,797,778,700,613,697,763,681,718,811,10587,742,759,835,766,768,765,750,750,689,634,691,618,651,597,572,5244,539,523,508,513,500,512,537,504,532,576,3193,410,414,372,333,325,297,284,287,242,229,1139,194,170,151,121,102,401 +"2021","Mid Devon","E07000042",82855,4024,751,784,826,799,864,4585,877,847,912,974,975,6042,997,1005,986,997,1057,1000,3419,941,982,845,651,3596,615,663,753,738,827,8607,819,819,836,819,836,854,950,869,922,883,14493,943,957,993,906,932,974,922,917,872,935,884,993,1010,1130,1125,18202,1260,1233,1245,1230,1221,1223,1349,1304,1282,1201,1176,1126,1171,1134,1047,10598,1057,1038,1039,1035,1013,1018,1069,1035,1127,1167,6664,874,884,823,777,662,598,554,487,523,482,2625,409,350,319,287,272,988,42393,1956,360,387,370,402,437,2198,430,406,437,447,478,2900,485,507,470,470,498,470,1622,446,488,401,287,1765,284,333,388,339,421,4483,403,420,415,445,426,456,492,446,505,475,7519,480,506,526,497,471,494,454,510,477,483,454,494,520,561,592,9380,644,604,662,623,638,622,730,668,674,624,609,578,580,585,539,5448,563,556,525,494,534,531,517,544,594,590,3538,437,455,416,410,329,340,288,287,311,265,1584,210,188,197,166,162,661,40462,2068,391,397,456,397,427,2387,447,441,475,527,497,3142,512,498,516,527,559,530,1797,495,494,444,364,1831,331,330,365,399,406,4124,416,399,421,374,410,398,458,423,417,408,6974,463,451,467,409,461,480,468,407,395,452,430,499,490,569,533,8822,616,629,583,607,583,601,619,636,608,577,567,548,591,549,508,5150,494,482,514,541,479,487,552,491,533,577,3126,437,429,407,367,333,258,266,200,212,217,1041,199,162,122,121,110,327 +"2021","North Devon","E07000043",98618,4513,789,885,877,952,1010,5225,986,971,1021,1130,1117,6680,1150,1181,1082,1115,1094,1058,3929,1089,1049,963,828,4237,726,777,865,934,935,10421,974,1008,1002,1044,1015,1105,1072,1075,1114,1012,16294,1012,1025,987,1014,1052,1148,1117,1076,990,956,1040,1086,1178,1285,1328,21866,1401,1402,1386,1420,1502,1519,1540,1541,1550,1488,1512,1402,1381,1404,1418,13218,1271,1241,1297,1233,1254,1249,1343,1366,1477,1487,8739,1139,1184,1086,1054,834,766,755,679,629,613,3496,566,480,399,379,364,1308,50606,2222,398,423,441,473,487,2547,505,467,486,519,570,3320,548,591,529,562,552,538,1790,510,514,433,333,2034,373,345,417,448,451,5319,488,524,491,540,497,544,570,577,558,530,8445,535,562,508,530,549,586,567,538,490,481,582,550,596,664,707,11282,714,718,698,739,799,796,796,779,814,784,766,712,712,720,735,6803,655,644,676,634,645,649,702,686,775,737,4720,586,635,576,565,447,424,445,367,343,332,2124,307,269,223,236,227,862,48012,2291,391,462,436,479,523,2678,481,504,535,611,547,3360,602,590,553,553,542,520,2139,579,535,530,495,2203,353,432,448,486,484,5102,486,484,511,504,518,561,502,498,556,482,7849,477,463,479,484,503,562,550,538,500,475,458,536,582,621,621,10584,687,684,688,681,703,723,744,762,736,704,746,690,669,684,683,6415,616,597,621,599,609,600,641,680,702,750,4019,553,549,510,489,387,342,310,312,286,281,1372,259,211,176,143,137,446 +"2021","South Hams","E07000044",88629,3527,581,684,711,786,765,4444,848,841,855,918,982,5687,973,922,950,932,981,929,3331,940,919,815,657,3341,584,583,689,771,714,8011,753,672,725,712,852,816,851,879,868,883,14162,863,817,896,872,945,880,947,936,865,909,953,967,1031,1099,1182,21041,1208,1199,1345,1356,1427,1444,1471,1474,1469,1503,1478,1472,1393,1383,1419,13504,1332,1270,1289,1328,1287,1312,1366,1302,1535,1483,8279,1133,1145,1040,932,778,725,684,682,587,573,3302,537,470,405,346,302,1242,45973,1710,272,340,345,374,379,2238,408,434,436,465,495,2783,459,446,463,477,474,464,1587,452,445,383,307,1553,251,274,343,355,330,4101,360,338,369,365,415,425,458,468,443,460,7528,450,459,459,472,490,464,509,521,478,483,500,502,546,575,620,11058,645,638,696,713,765,755,778,761,806,782,770,780,694,727,748,6972,675,667,682,703,658,690,712,638,765,782,4396,609,584,548,485,406,384,394,345,312,329,2047,287,275,238,209,204,834,42656,1817,309,344,366,412,386,2206,440,407,419,453,487,2904,514,476,487,455,507,465,1744,488,474,432,350,1788,333,309,346,416,384,3910,393,334,356,347,437,391,393,411,425,423,6634,413,358,437,400,455,416,438,415,387,426,453,465,485,524,562,9983,563,561,649,643,662,689,693,713,663,721,708,692,699,656,671,6532,657,603,607,625,629,622,654,664,770,701,3883,524,561,492,447,372,341,290,337,275,244,1255,250,195,167,137,98,408 +"2021","Teignbridge","E07000045",134803,5906,1042,1146,1262,1193,1263,6891,1317,1293,1416,1425,1440,8545,1447,1488,1400,1409,1424,1377,4919,1366,1395,1203,955,5590,983,1000,1178,1180,1249,13645,1222,1267,1279,1297,1391,1404,1399,1438,1513,1435,22427,1423,1454,1408,1482,1442,1449,1556,1437,1328,1373,1417,1470,1646,1731,1811,30445,1929,1874,1954,1961,2052,2131,2140,2217,2134,2204,2057,1988,1959,1929,1916,19191,1820,1899,1960,1841,1799,1814,1833,1952,2137,2136,12287,1672,1705,1530,1410,1183,1033,1089,963,876,826,4957,768,658,617,543,480,1891,69469,2857,460,570,638,566,623,3338,638,620,669,719,692,4128,716,693,707,667,681,664,2399,669,689,601,440,2575,436,454,518,575,592,6944,601,637,641,638,744,716,760,743,765,699,11540,725,728,720,788,707,746,781,750,669,745,709,759,835,927,951,15923,982,992,1023,1044,1072,1119,1117,1146,1166,1121,1109,1026,999,998,1009,10047,929,974,1027,994,951,934,966,1047,1098,1127,6602,865,868,816,760,647,551,609,530,498,458,3116,456,380,387,334,278,1281,65334,3049,582,576,624,627,640,3553,679,673,747,706,748,4417,731,795,693,742,743,713,2520,697,706,602,515,3015,547,546,660,605,657,6701,621,630,638,659,647,688,639,695,748,736,10887,698,726,688,694,735,703,775,687,659,628,708,711,811,804,860,14522,947,882,931,917,980,1012,1023,1071,968,1083,948,962,960,931,907,9144,891,925,933,847,848,880,867,905,1039,1009,5685,807,837,714,650,536,482,480,433,378,368,1841,312,278,230,209,202,610 +"2021","Torridge","E07000046",68110,2803,517,545,563,570,608,3493,661,631,751,679,771,4260,742,720,711,685,703,699,2463,671,669,619,504,2780,499,516,541,591,633,6505,637,626,602,618,627,666,717,670,684,658,10458,624,640,626,623,670,682,727,628,613,659,743,714,732,829,948,16028,1008,1014,969,1015,1063,1122,1045,1149,1123,1073,1096,1096,1150,1095,1010,10498,995,1004,1045,1005,1004,1032,1082,1008,1182,1141,6405,836,918,812,714,675,558,540,470,485,397,2417,372,332,327,270,222,894,34766,1361,269,267,272,270,283,1642,304,301,353,303,381,2053,381,344,317,327,344,340,1184,322,314,322,226,1282,225,243,272,249,293,3293,293,318,296,294,315,361,360,347,349,360,5477,305,341,341,298,345,366,400,326,318,345,403,374,375,456,484,8304,537,517,504,517,567,550,504,612,597,547,552,585,603,590,522,5369,500,495,558,497,520,530,575,501,594,599,3340,425,494,416,354,363,282,281,251,254,220,1461,209,201,169,151,135,596,33344,1442,248,278,291,300,325,1851,357,330,398,376,390,2207,361,376,394,358,359,359,1279,349,355,297,278,1498,274,273,269,342,340,3212,344,308,306,324,312,305,357,323,335,298,4981,319,299,285,325,325,316,327,302,295,314,340,340,357,373,464,7724,471,497,465,498,496,572,541,537,526,526,544,511,547,505,488,5129,495,509,487,508,484,502,507,507,588,542,3065,411,424,396,360,312,276,259,219,231,177,956,163,131,158,119,87,298 +"2021","West Devon","E07000047",57099,2196,416,379,422,465,514,2752,532,511,545,582,582,3788,593,608,623,673,651,640,2256,642,657,520,437,2118,344,421,412,485,456,5069,477,456,515,481,494,540,532,549,519,506,9002,538,566,549,545,576,650,609,555,524,499,591,608,653,796,743,13648,776,832,873,887,909,965,1011,997,956,970,968,879,908,851,866,8613,833,840,821,818,836,832,874,835,1008,916,5526,751,787,673,614,517,468,489,426,441,360,2131,316,311,284,250,181,789,29162,1094,201,187,225,229,252,1338,239,269,271,278,281,1904,307,300,327,330,345,295,1060,300,298,238,224,972,150,194,203,207,218,2552,228,257,253,245,245,263,264,272,267,258,4594,252,283,295,255,313,341,293,274,281,273,306,323,314,408,383,7034,391,427,466,467,447,517,525,516,506,500,492,446,473,428,433,4493,445,429,415,402,438,435,464,454,526,485,2861,373,400,328,327,276,233,257,236,248,183,1260,178,173,150,145,113,501,27937,1102,215,192,197,236,262,1414,293,242,274,304,301,1884,286,308,296,343,306,345,1196,342,359,282,213,1146,194,227,209,278,238,2517,249,199,262,236,249,277,268,277,252,248,4408,286,283,254,290,263,309,316,281,243,226,285,285,339,388,360,6614,385,405,407,420,462,448,486,481,450,470,476,433,435,423,433,4120,388,411,406,416,398,397,410,381,482,431,2665,378,387,345,287,241,235,232,190,193,177,871,138,138,134,105,68,288 +"2021","Cheltenham","E07000078",118842,5857,1027,1156,1213,1229,1232,6378,1206,1312,1283,1278,1299,8163,1328,1338,1422,1357,1454,1264,5429,1277,1355,1401,1396,7900,1530,1565,1535,1599,1671,16447,1667,1619,1556,1599,1694,1712,1690,1661,1632,1617,23214,1690,1643,1637,1610,1625,1624,1594,1581,1390,1393,1443,1461,1496,1489,1538,22567,1486,1544,1588,1666,1612,1616,1722,1640,1540,1512,1509,1374,1280,1259,1219,11450,1145,1111,1157,1086,1127,1020,1172,1150,1255,1227,7766,963,988,910,829,737,728,685,697,609,620,3671,565,498,424,412,357,1415,60755,2855,506,621,551,599,578,3115,570,637,626,645,637,4165,664,643,740,726,741,651,2801,677,688,733,703,3958,773,780,789,787,829,8116,794,789,737,790,798,885,826,815,853,829,11737,860,843,838,776,814,806,820,788,691,693,738,764,752,759,795,11305,754,765,795,847,821,796,874,849,774,779,733,674,624,614,606,6018,595,591,630,558,588,523,616,580,691,646,4285,525,515,518,453,427,390,397,390,341,329,2400,328,315,265,268,241,983,58087,3002,521,535,662,630,654,3263,636,675,657,633,662,3998,664,695,682,631,713,613,2628,600,667,668,693,3942,757,785,746,812,842,8331,873,830,819,809,896,827,864,846,779,788,11477,830,800,799,834,811,818,774,793,699,700,705,697,744,730,743,11262,732,779,793,819,791,820,848,791,766,733,776,700,656,645,613,5432,550,520,527,528,539,497,556,570,564,581,3481,438,473,392,376,310,338,288,307,268,291,1271,237,183,159,144,116,432 +"2021","Cotswold","E07000079",90839,4016,744,746,830,837,859,4618,880,870,944,912,1012,5887,1009,1000,984,989,984,921,3462,912,955,865,730,3965,780,765,855,763,802,8577,755,855,776,815,808,870,934,910,901,953,15875,916,984,956,944,1078,984,1108,1031,965,1006,1048,1126,1173,1222,1334,20774,1311,1344,1365,1402,1450,1520,1555,1488,1393,1457,1369,1397,1282,1256,1185,12320,1169,1202,1269,1209,1159,1158,1192,1275,1313,1374,8085,989,1070,1029,951,787,692,723,699,582,563,3260,489,453,439,399,298,1182,47067,1939,342,367,403,400,427,2300,438,420,482,450,510,2936,476,498,492,507,489,474,1733,450,499,412,372,1905,395,337,413,358,402,4441,370,430,404,420,416,448,469,473,494,517,8283,484,524,480,463,575,522,571,540,525,506,553,593,612,639,696,10829,720,712,704,748,738,777,817,776,713,763,708,723,656,652,622,6369,580,634,629,640,615,584,634,644,697,712,4335,541,570,547,473,428,355,411,388,352,270,1997,276,262,272,242,173,772,43772,2077,402,379,427,437,432,2318,442,450,462,462,502,2951,533,502,492,482,495,447,1729,462,456,453,358,2060,385,428,442,405,400,4136,385,425,372,395,392,422,465,437,407,436,7592,432,460,476,481,503,462,537,491,440,500,495,533,561,583,638,9945,591,632,661,654,712,743,738,712,680,694,661,674,626,604,563,5951,589,568,640,569,544,574,558,631,616,662,3750,448,500,482,478,359,337,312,311,230,293,1263,213,191,167,157,125,410 +"2021","Forest of Dean","E07000080",86997,3976,723,784,818,794,857,4452,875,869,860,896,952,5529,976,950,919,937,866,881,4190,1054,1254,1078,804,4020,738,774,807,842,859,9205,887,840,922,881,858,1002,960,920,974,961,14068,913,901,897,913,922,914,905,899,779,836,894,943,1008,1105,1239,19751,1206,1280,1293,1358,1418,1448,1427,1344,1392,1340,1341,1267,1237,1214,1186,11819,1149,1134,1156,1195,1152,1124,1171,1249,1245,1244,7389,917,991,953,864,725,642,681,585,524,507,2598,405,400,320,276,242,955,44438,1923,368,379,382,389,405,2223,445,455,419,429,475,2766,490,483,466,480,419,428,2138,551,657,540,390,1901,340,360,386,386,429,4611,457,398,440,436,455,503,472,479,492,479,7307,487,470,467,474,466,502,466,460,415,417,465,472,518,576,652,10054,624,653,669,711,717,718,735,685,689,673,704,620,627,641,588,6055,596,612,555,617,582,599,593,632,636,633,3822,475,537,487,419,372,338,330,305,281,278,1638,233,236,181,168,149,671,42559,2053,355,405,436,405,452,2229,430,414,441,467,477,2763,486,467,453,457,447,453,2052,503,597,538,414,2119,398,414,421,456,430,4594,430,442,482,445,403,499,488,441,482,482,6761,426,431,430,439,456,412,439,439,364,419,429,471,490,529,587,9697,582,627,624,647,701,730,692,659,703,667,637,647,610,573,598,5764,553,522,601,578,570,525,578,617,609,611,3567,442,454,466,445,353,304,351,280,243,229,960,172,164,139,108,93,284 +"2021","Gloucester","E07000081",132415,7458,1403,1461,1476,1547,1571,8331,1674,1590,1608,1725,1734,9687,1679,1625,1659,1697,1510,1517,6113,1514,1511,1463,1625,8486,1695,1703,1795,1629,1664,18686,1693,1695,1818,1862,1811,1939,1943,2000,2012,1913,25748,1784,1887,1818,1817,1860,1830,1800,1660,1549,1513,1530,1575,1716,1651,1758,25789,1792,1833,1887,1842,1844,1910,1825,1810,1785,1677,1697,1644,1480,1421,1342,11658,1293,1227,1187,1092,1140,1104,1091,1166,1201,1157,7473,944,947,922,898,752,604,700,633,564,509,2986,467,426,350,357,284,1102,66916,3619,695,712,724,763,725,4062,837,768,792,818,847,4716,835,836,826,782,731,706,3048,764,763,720,801,4265,866,806,906,829,858,9486,812,870,922,921,941,1004,963,1034,1023,996,12809,927,932,877,938,911,903,916,827,755,750,731,800,871,819,852,12932,912,946,933,925,952,994,950,883,848,829,814,841,728,708,669,6019,640,616,610,568,611,573,556,610,624,611,4092,531,499,508,487,389,325,402,339,332,280,1868,252,243,225,206,178,764,65499,3839,708,749,752,784,846,4269,837,822,816,907,887,4971,844,789,833,915,779,811,3065,750,748,743,824,4221,829,897,889,800,806,9200,881,825,896,941,870,935,980,966,989,917,12939,857,955,941,879,949,927,884,833,794,763,799,775,845,832,906,12857,880,887,954,917,892,916,875,927,937,848,883,803,752,713,673,5639,653,611,577,524,529,531,535,556,577,546,3381,413,448,414,411,363,279,298,294,232,229,1118,215,183,125,151,106,338 +"2021","Stroud","E07000082",121108,5643,995,1067,1170,1193,1218,6663,1311,1243,1291,1355,1463,8607,1474,1447,1477,1414,1443,1352,4936,1342,1407,1206,981,5013,835,912,1030,1081,1155,12611,1160,1188,1207,1227,1293,1324,1321,1258,1329,1304,22053,1332,1326,1319,1373,1389,1476,1454,1424,1362,1379,1439,1556,1674,1708,1842,27353,1881,1854,1884,1876,1994,1848,1914,1858,1906,1856,1870,1744,1675,1674,1519,15155,1513,1502,1506,1386,1503,1465,1557,1549,1651,1523,9327,1197,1236,1158,1092,878,822,837,766,695,646,3747,571,566,481,406,362,1361,61870,2709,475,485,567,590,592,3257,634,635,654,671,663,4192,716,725,753,665,666,667,2365,675,663,597,430,2417,366,432,488,520,611,6456,562,561,624,639,669,654,665,664,727,691,11369,679,683,668,734,693,752,747,730,721,722,736,801,863,911,929,13984,952,941,962,955,1024,952,969,943,986,967,932,891,854,887,769,7836,746,757,769,725,770,766,827,813,860,803,4966,625,666,600,557,472,429,445,428,386,358,2319,336,338,273,223,238,911,59238,2934,520,582,603,603,626,3406,677,608,637,684,800,4415,758,722,724,749,777,685,2571,667,744,609,551,2596,469,480,542,561,544,6155,598,627,583,588,624,670,656,594,602,613,10684,653,643,651,639,696,724,707,694,641,657,703,755,811,797,913,13369,929,913,922,921,970,896,945,915,920,889,938,853,821,787,750,7319,767,745,737,661,733,699,730,736,791,720,4361,572,570,558,535,406,393,392,338,309,288,1428,235,228,208,183,124,450 +"2021","Tewkesbury","E07000083",94877,5314,971,1007,1118,1110,1108,5756,1193,1131,1148,1180,1104,6463,1124,1117,1112,1070,1083,957,3548,1042,1017,845,644,4106,673,737,834,913,949,11446,992,1035,1037,1099,1089,1251,1243,1254,1245,1201,17620,1143,1199,1234,1186,1204,1290,1218,1133,1091,1050,1117,1068,1219,1166,1302,19514,1261,1233,1341,1390,1452,1423,1425,1392,1338,1337,1220,1233,1199,1169,1101,11014,1093,1048,1056,1116,1076,1015,1091,1053,1203,1263,7352,890,963,921,822,717,667,672,607,599,494,2744,411,403,316,301,272,1041,48792,2557,481,460,529,563,524,2778,571,560,559,556,532,3132,521,571,512,544,531,453,1740,510,517,405,308,2022,313,378,400,466,465,6010,526,541,536,559,561,624,670,676,677,640,9105,605,611,672,605,624,678,593,605,585,536,579,550,628,564,670,10079,673,638,656,715,756,707,742,696,691,684,659,659,626,612,565,5760,537,547,559,602,583,543,572,529,627,661,3912,467,484,507,412,392,375,347,328,321,279,1697,247,223,178,183,180,686,46085,2757,490,547,589,547,584,2978,622,571,589,624,572,3331,603,546,600,526,552,504,1808,532,500,440,336,2084,360,359,434,447,484,5436,466,494,501,540,528,627,573,578,568,561,8515,538,588,562,581,580,612,625,528,506,514,538,518,591,602,632,9435,588,595,685,675,696,716,683,696,647,653,561,574,573,557,536,5254,556,501,497,514,493,472,519,524,576,602,3440,423,479,414,410,325,292,325,279,278,215,1047,164,180,138,118,92,355 +"2021","Mendip","E07000187",116086,5459,993,1079,1118,1108,1161,6168,1273,1169,1174,1296,1256,8411,1358,1394,1357,1432,1465,1405,5247,1504,1572,1335,836,4832,772,913,977,1077,1093,12149,1078,1142,1170,1174,1151,1205,1317,1304,1310,1298,20185,1267,1243,1258,1266,1269,1325,1328,1283,1219,1236,1289,1387,1480,1571,1764,26025,1774,1776,1795,1868,1864,1873,1838,1866,1773,1712,1667,1555,1644,1549,1471,14795,1410,1481,1462,1441,1415,1427,1506,1532,1559,1562,9164,1208,1207,1103,1075,855,848,773,737,725,633,3651,576,509,435,410,325,1396,59700,2702,480,518,585,557,562,3067,645,556,550,675,641,4051,678,658,647,688,694,686,2457,712,741,615,389,2274,366,403,454,508,543,6217,527,575,569,580,592,616,701,713,663,681,10556,652,654,677,632,645,708,700,679,646,648,670,732,739,838,936,13426,896,937,921,964,980,961,966,944,892,877,833,799,895,782,779,7715,714,777,771,760,741,735,787,804,833,793,4959,640,614,595,577,472,467,419,420,378,377,2276,324,299,271,237,206,939,56386,2757,513,561,533,551,599,3101,628,613,624,621,615,4360,680,736,710,744,771,719,2790,792,831,720,447,2558,406,510,523,569,550,5932,551,567,601,594,559,589,616,591,647,617,9629,615,589,581,634,624,617,628,604,573,588,619,655,741,733,828,12599,878,839,874,904,884,912,872,922,881,835,834,756,749,767,692,7080,696,704,691,681,674,692,719,728,726,769,4205,568,593,508,498,383,381,354,317,347,256,1375,252,210,164,173,119,457 +"2021","Sedgemoor","E07000188",125342,6001,1087,1236,1140,1243,1295,6934,1331,1381,1386,1392,1444,8628,1480,1529,1409,1451,1372,1387,5021,1318,1404,1254,1045,6098,1075,1103,1252,1334,1334,14369,1303,1354,1409,1415,1459,1517,1458,1580,1469,1405,21314,1406,1375,1427,1372,1389,1401,1404,1329,1311,1272,1294,1448,1507,1635,1744,27166,1776,1744,1963,1828,1926,1999,1966,1921,1909,1801,1800,1646,1665,1574,1648,15868,1496,1543,1591,1476,1524,1538,1598,1635,1754,1713,10046,1252,1397,1194,1153,996,874,937,825,740,678,3897,570,530,459,452,375,1511,63266,2871,537,573,526,600,635,3383,621,650,688,692,732,4196,723,755,691,688,690,649,2372,648,673,583,468,2993,508,520,639,664,662,7212,628,685,688,721,753,746,756,779,754,702,10657,690,678,704,675,694,712,682,686,680,629,690,736,730,841,830,13637,909,881,992,916,909,1033,967,950,976,910,916,820,832,815,811,8206,748,812,835,781,820,749,833,860,912,856,5322,643,723,645,605,516,464,479,448,433,366,2417,321,294,270,272,235,1025,62076,3130,550,663,614,643,660,3551,710,731,698,700,712,4432,757,774,718,763,682,738,2649,670,731,671,577,3105,567,583,613,670,672,7157,675,669,721,694,706,771,702,801,715,703,10657,716,697,723,697,695,689,722,643,631,643,604,712,777,794,914,13529,867,863,971,912,1017,966,999,971,933,891,884,826,833,759,837,7662,748,731,756,695,704,789,765,775,842,857,4724,609,674,549,548,480,410,458,377,307,312,1480,249,236,189,180,140,486 +"2021","South Somerset","E07000189",172668,8226,1575,1592,1650,1707,1702,9129,1767,1766,1775,1877,1944,11503,1916,1948,1968,1935,1870,1866,6716,1875,1802,1628,1411,8247,1449,1553,1669,1822,1754,19462,1737,1869,1943,1888,1972,1988,2092,2040,1982,1951,28564,1914,1867,1826,1851,1824,1929,1800,1789,1802,1693,1869,1992,2026,2130,2252,36782,2423,2439,2369,2536,2473,2621,2528,2586,2628,2546,2425,2393,2324,2292,2199,23239,2092,2206,2282,2241,2274,2305,2238,2398,2623,2580,14907,1854,2018,1832,1735,1523,1268,1292,1206,1146,1033,5893,912,780,718,588,539,2356,88158,4003,752,751,788,871,841,4485,865,891,883,902,944,5636,924,962,975,922,936,917,3299,965,894,792,648,3880,668,720,806,853,833,9825,824,933,981,951,992,1010,1082,1073,990,989,14553,960,953,917,906,899,1023,894,874,912,900,969,1055,1064,1072,1155,18891,1240,1224,1246,1290,1259,1341,1267,1351,1374,1318,1231,1242,1223,1177,1108,12039,1046,1139,1208,1155,1138,1166,1172,1268,1384,1363,7911,945,1076,952,928,804,671,683,641,638,573,3636,518,444,417,374,314,1569,84510,4223,823,841,862,836,861,4644,902,875,892,975,1000,5867,992,986,993,1013,934,949,3417,910,908,836,763,4367,781,833,863,969,921,9637,913,936,962,937,980,978,1010,967,992,962,14011,954,914,909,945,925,906,906,915,890,793,900,937,962,1058,1097,17891,1183,1215,1123,1246,1214,1280,1261,1235,1254,1228,1194,1151,1101,1115,1091,11200,1046,1067,1074,1086,1136,1139,1066,1130,1239,1217,6996,909,942,880,807,719,597,609,565,508,460,2257,394,336,301,214,225,787 +"2021","Somerset West and Taunton","E07000246",157450,7364,1403,1425,1462,1521,1553,8303,1625,1607,1631,1664,1776,10488,1742,1751,1711,1729,1823,1732,6435,1803,1805,1601,1226,6797,1119,1272,1410,1497,1499,17612,1572,1644,1764,1728,1749,1829,1848,1830,1850,1798,26675,1777,1805,1774,1812,1804,1805,1770,1716,1542,1597,1635,1722,1855,1980,2081,33340,2150,2123,2214,2230,2258,2307,2370,2371,2301,2315,2181,2173,2105,2141,2101,20822,1923,2047,2086,2055,2088,2001,2055,2104,2268,2195,13628,1780,1809,1670,1571,1325,1185,1152,1143,1029,964,5986,871,797,745,599,575,2399,80971,3666,695,703,756,746,766,3986,779,761,784,796,866,5145,868,881,843,832,908,813,3026,893,829,750,554,3332,536,629,667,745,755,9003,760,849,903,868,918,933,954,955,924,939,13764,916,945,886,924,924,962,919,902,778,792,859,913,911,1025,1108,17227,1093,1106,1153,1150,1145,1174,1210,1228,1201,1202,1136,1125,1076,1103,1125,10768,1034,1060,1075,1053,1067,1026,1076,1066,1158,1153,7316,949,969,873,813,710,684,615,616,556,531,3738,488,467,448,338,350,1647,76479,3698,708,722,706,775,787,4317,846,846,847,868,910,5343,874,870,868,897,915,919,3409,910,976,851,672,3465,583,643,743,752,744,8609,812,795,861,860,831,896,894,875,926,859,12911,861,860,888,888,880,843,851,814,764,805,776,809,944,955,973,16113,1057,1017,1061,1080,1113,1133,1160,1143,1100,1113,1045,1048,1029,1038,976,10054,889,987,1011,1002,1021,975,979,1038,1110,1042,6312,831,840,797,758,615,501,537,527,473,433,2248,383,330,297,261,225,752 +"2021","Isle of Anglesey","W06000001",68877,3213,573,575,644,684,737,3858,710,763,731,834,820,4666,826,789,792,820,750,689,2716,737,750,661,568,3054,501,554,644,646,709,7002,642,680,636,645,705,757,715,767,733,722,10959,673,720,699,675,685,707,773,693,645,664,677,706,804,915,923,15200,1000,937,971,996,1044,1031,1049,1069,1061,998,1044,1022,1024,951,1003,9793,933,997,976,913,938,965,993,1003,1077,998,6242,732,886,772,731,599,560,570,492,486,414,2174,354,303,258,225,193,841,35215,1543,270,266,316,341,350,1956,358,381,361,427,429,2224,395,369,367,435,339,319,1310,351,383,302,274,1512,238,263,279,366,366,3550,320,332,294,337,358,388,379,416,364,362,5648,360,381,346,348,354,366,418,354,349,342,331,355,422,452,470,7794,523,509,506,539,525,527,520,565,521,512,526,508,506,488,519,4991,479,511,494,433,479,512,502,502,532,547,3324,414,453,416,386,314,292,300,253,266,230,1363,194,181,162,145,115,566,33662,1670,303,309,328,343,387,1902,352,382,370,407,391,2442,431,420,425,385,411,370,1406,386,367,359,294,1542,263,291,365,280,343,3452,322,348,342,308,347,369,336,351,369,360,5311,313,339,353,327,331,341,355,339,296,322,346,351,382,463,453,7406,477,428,465,457,519,504,529,504,540,486,518,514,518,463,484,4802,454,486,482,480,459,453,491,501,545,451,2918,318,433,356,345,285,268,270,239,220,184,811,160,122,96,80,78,275 +"2021","Gwynedd","W06000002",117393,5348,983,1054,1049,1114,1148,6249,1213,1165,1222,1310,1339,7826,1280,1321,1312,1275,1332,1306,5713,1240,1202,1346,1925,8548,2014,1874,1730,1516,1414,13121,1313,1288,1303,1336,1276,1380,1295,1340,1312,1278,18656,1179,1188,1148,1214,1185,1241,1233,1180,1098,1151,1128,1303,1384,1487,1537,24659,1609,1634,1605,1586,1644,1684,1742,1706,1752,1649,1756,1556,1590,1651,1495,14395,1444,1406,1455,1454,1335,1356,1400,1459,1582,1504,9076,1160,1160,1183,1067,858,769,803,759,673,644,3802,545,542,440,418,368,1489,59872,2603,463,504,526,533,577,3038,573,574,578,636,677,3814,631,598,649,626,668,642,2840,611,576,671,982,4353,1045,953,887,765,703,6595,640,646,667,640,674,720,656,670,643,639,9542,607,602,579,645,586,654,639,608,571,562,579,683,709,755,763,12518,785,888,811,810,843,818,881,862,835,859,896,831,782,808,809,7228,737,684,734,728,712,692,705,699,770,767,4896,587,619,634,571,475,435,408,430,364,373,2445,328,323,267,252,247,1028,57521,2745,520,550,523,581,571,3211,640,591,644,674,662,4012,649,723,663,649,664,664,2873,629,626,675,943,4195,969,921,843,751,711,6526,673,642,636,696,602,660,639,670,669,639,9114,572,586,569,569,599,587,594,572,527,589,549,620,675,732,774,12141,824,746,794,776,801,866,861,844,917,790,860,725,808,843,686,7167,707,722,721,726,623,664,695,760,812,737,4180,573,541,549,496,383,334,395,329,309,271,1357,217,219,173,166,121,461 +"2021","Conwy","W06000003",114741,5030,932,1023,981,1034,1060,5899,1147,1141,1154,1228,1229,7449,1257,1248,1278,1234,1246,1186,4317,1220,1187,1043,867,4996,815,956,1010,1071,1144,11724,998,1134,1086,1134,1213,1271,1204,1278,1207,1199,18179,1118,1176,1168,1161,1244,1222,1184,1111,1063,1105,1106,1214,1268,1449,1590,25779,1657,1553,1672,1617,1745,1777,1822,1857,1812,1747,1782,1754,1682,1711,1591,16368,1522,1542,1701,1557,1553,1572,1622,1682,1827,1790,10509,1349,1383,1174,1238,1060,940,925,865,779,796,4491,689,619,597,493,409,1684,59153,2429,456,485,459,508,521,2873,573,525,577,609,589,3662,597,628,667,617,596,557,2025,556,547,515,407,2397,379,449,491,509,569,6042,514,561,584,569,639,658,616,671,605,625,9383,572,607,611,603,659,630,582,567,579,564,553,644,662,735,815,13410,860,816,872,854,911,902,983,968,944,886,896,891,916,894,817,8492,775,799,895,842,789,823,827,866,951,925,5659,673,727,601,636,599,520,521,484,446,452,2781,392,351,330,296,261,1151,55588,2601,476,538,522,526,539,3026,574,616,577,619,640,3787,660,620,611,617,650,629,2292,664,640,528,460,2599,436,507,519,562,575,5682,484,573,502,565,574,613,588,607,602,574,8796,546,569,557,558,585,592,602,544,484,541,553,570,606,714,775,12369,797,737,800,763,834,875,839,889,868,861,886,863,766,817,774,7876,747,743,806,715,764,749,795,816,876,865,4850,676,656,573,602,461,420,404,381,333,344,1710,297,268,267,197,148,533 +"2021","Denbighshire","W06000004",95814,4768,862,970,923,969,1044,5338,1024,1052,1042,1086,1134,6801,1108,1157,1166,1140,1093,1137,4023,1122,1119,987,795,4498,756,837,933,991,981,10214,1007,958,1058,1050,1016,1037,1036,1006,999,1047,15585,1011,969,956,980,973,998,1057,955,928,1008,1048,1126,1090,1157,1329,20840,1305,1356,1415,1362,1440,1435,1480,1513,1465,1417,1418,1338,1368,1264,1264,12690,1175,1212,1258,1248,1172,1229,1289,1339,1439,1329,8059,971,1067,1031,943,791,752,685,622,632,565,2998,458,458,353,329,290,1110,49203,2264,404,462,435,490,473,2636,505,531,503,526,571,3319,542,564,574,550,539,550,1844,502,519,436,387,2157,334,385,474,470,494,5284,512,489,560,536,510,562,537,520,524,534,8194,523,491,498,540,495,511,581,497,514,517,557,608,548,616,698,10754,647,708,768,693,772,740,730,782,776,727,741,664,709,639,658,6507,584,617,672,646,595,662,636,673,734,688,4358,521,555,576,492,415,399,388,336,355,321,1886,270,265,205,208,179,759,46611,2504,458,508,488,479,571,2702,519,521,539,560,563,3482,566,593,592,590,554,587,2179,620,600,551,408,2341,422,452,459,521,487,4930,495,469,498,514,506,475,499,486,475,513,7391,488,478,458,440,478,487,476,458,414,491,491,518,542,541,631,10086,658,648,647,669,668,695,750,731,689,690,677,674,659,625,606,6183,591,595,586,602,577,567,653,666,705,641,3701,450,512,455,451,376,353,297,286,277,244,1112,188,193,148,121,111,351 +"2021","Flintshire","W06000005",154956,7627,1423,1457,1520,1589,1638,8666,1616,1656,1727,1826,1841,11093,1831,1876,1839,1941,1865,1741,6393,1865,1730,1512,1286,7441,1262,1383,1523,1619,1654,18658,1631,1751,1775,1786,1983,2016,1866,1985,1918,1947,28374,1879,1926,1862,1818,1934,1852,1961,1711,1699,1677,1718,1943,1908,2156,2330,33483,2377,2367,2477,2355,2255,2374,2420,2348,2315,2199,2142,2091,2004,1909,1850,18282,1696,1708,1798,1707,1739,1890,1776,1914,2027,2027,11187,1402,1566,1364,1236,1066,1037,953,952,889,722,3752,604,554,461,417,359,1357,79060,3708,664,721,716,776,831,4183,782,782,834,895,890,5371,875,894,900,925,906,871,3075,894,851,727,603,3576,615,619,735,784,823,9522,843,907,896,920,998,1067,939,991,956,1005,14639,946,1021,976,960,993,947,1031,870,837,882,920,989,968,1144,1155,17035,1231,1242,1222,1183,1165,1217,1267,1190,1187,1084,1083,1048,981,984,951,9528,871,890,952,868,918,980,924,1000,1054,1071,6120,784,842,704,674,577,566,515,542,511,405,2303,350,306,277,256,224,890,75896,3919,759,736,804,813,807,4483,834,874,893,931,951,5722,956,982,939,1016,959,870,3318,971,879,785,683,3865,647,764,788,835,831,9136,788,844,879,866,985,949,927,994,962,942,13735,933,905,886,858,941,905,930,841,862,795,798,954,940,1012,1175,16448,1146,1125,1255,1172,1090,1157,1153,1158,1128,1115,1059,1043,1023,925,899,8754,825,818,846,839,821,910,852,914,973,956,5067,618,724,660,562,489,471,438,410,378,317,1449,254,248,184,161,135,467 +"2021","Wrexham","W06000006",135112,6998,1256,1389,1387,1502,1464,8006,1531,1537,1586,1666,1686,9839,1686,1673,1693,1640,1556,1591,5699,1632,1489,1291,1287,7003,1213,1291,1440,1487,1572,16577,1519,1491,1618,1624,1658,1772,1691,1734,1716,1754,25593,1713,1812,1736,1717,1755,1757,1763,1559,1462,1584,1560,1604,1693,1872,2006,28013,2049,2072,2009,2008,1989,1914,2012,1965,1928,1785,1692,1705,1603,1674,1608,15051,1507,1489,1538,1491,1424,1470,1513,1503,1603,1513,9034,1190,1200,1099,1050,964,851,734,685,644,617,3299,551,461,396,384,333,1174,68239,3402,615,672,661,747,707,3987,747,765,794,818,863,4781,836,783,829,806,761,766,2726,799,705,608,614,3419,599,654,652,758,756,8289,724,699,815,818,862,883,876,858,878,876,12784,865,936,862,889,902,842,868,733,734,798,772,775,874,927,1007,14159,1063,1046,1020,1033,1009,933,986,1011,952,907,813,879,842,862,803,7811,764,794,814,754,748,765,782,779,822,789,4827,626,630,584,514,529,470,392,384,341,357,2054,320,259,242,231,216,786,66873,3596,641,717,726,755,757,4019,784,772,792,848,823,5058,850,890,864,834,795,825,2973,833,784,683,673,3584,614,637,788,729,816,8288,795,792,803,806,796,889,815,876,838,878,12809,848,876,874,828,853,915,895,826,728,786,788,829,819,945,999,13854,986,1026,989,975,980,981,1026,954,976,878,879,826,761,812,805,7240,743,695,724,737,676,705,731,724,781,724,4207,564,570,515,536,435,381,342,301,303,260,1245,231,202,154,153,117,388 +"2021","Ceredigion","W06000008",71481,2711,504,525,535,572,575,3288,675,627,658,695,633,4088,755,706,613,683,668,663,4131,682,677,1132,1640,6366,1627,1577,1301,1011,850,7108,735,773,728,698,718,694,741,677,686,658,10144,620,683,632,667,666,675,611,615,653,616,672,685,703,748,898,15257,914,888,999,940,1012,1016,1103,1104,1100,1041,1112,1014,1015,1014,985,9943,1002,1040,988,952,948,931,1003,997,1079,1003,6097,794,836,787,727,576,563,510,454,452,398,2348,388,354,254,284,199,869,36518,1326,254,258,261,279,274,1653,340,333,325,347,308,2020,366,383,282,352,331,306,2037,327,315,557,838,3105,835,757,617,486,410,3503,343,363,365,360,371,342,371,318,339,331,5232,333,338,311,341,334,332,333,309,356,322,327,352,354,419,471,7906,486,450,513,489,514,529,597,580,562,547,587,520,516,509,507,5036,492,537,509,491,493,484,520,491,515,504,3267,420,447,411,376,296,327,271,242,253,224,1433,229,211,148,160,115,570,34963,1385,250,267,274,293,301,1635,335,294,333,348,325,2068,389,323,331,331,337,357,2094,355,362,575,802,3261,792,820,684,525,440,3605,392,410,363,338,347,352,370,359,347,327,4912,287,345,321,326,332,343,278,306,297,294,345,333,349,329,427,7351,428,438,486,451,498,487,506,524,538,494,525,494,499,505,478,4907,510,503,479,461,455,447,483,506,564,499,2830,374,389,376,351,280,236,239,212,199,174,915,159,143,106,124,84,299 +"2021","Pembrokeshire","W06000009",123354,5582,1001,1059,1091,1176,1255,6731,1289,1336,1291,1365,1450,8494,1456,1430,1383,1426,1443,1356,4889,1371,1347,1134,1037,5621,984,1055,1162,1201,1219,12903,1144,1181,1254,1349,1350,1383,1284,1338,1361,1259,19464,1266,1285,1258,1200,1271,1325,1266,1261,1177,1200,1140,1263,1406,1531,1615,27332,1640,1627,1801,1735,1852,1855,1916,1922,1992,1946,1875,1826,1843,1769,1733,17444,1740,1749,1686,1737,1707,1763,1742,1694,1826,1800,10854,1422,1523,1349,1200,1047,1033,958,822,787,713,4040,681,588,482,512,368,1409,63285,2684,475,515,513,566,615,3328,627,666,602,692,741,4136,716,714,676,690,689,651,2354,658,665,545,486,2593,441,479,560,533,580,6620,569,617,642,679,686,704,693,706,687,637,10175,650,690,661,610,667,703,609,668,619,635,577,656,746,832,852,14167,883,852,959,883,974,948,1006,988,1032,1018,969,957,905,908,885,8874,869,901,803,875,871,912,895,887,908,953,5845,767,802,728,659,553,519,517,434,452,414,2509,372,354,304,302,234,943,60069,2898,526,544,578,610,640,3403,662,670,689,673,709,4358,740,716,707,736,754,705,2535,713,682,589,551,3028,543,576,602,668,639,6283,575,564,612,670,664,679,591,632,674,622,9289,616,595,597,590,604,622,657,593,558,565,563,607,660,699,763,13165,757,775,842,852,878,907,910,934,960,928,906,869,938,861,848,8570,871,848,883,862,836,851,847,807,918,847,5009,655,721,621,541,494,514,441,388,335,299,1531,309,234,178,210,134,466 +"2021","Carmarthenshire","W06000010",187896,9056,1678,1684,1816,1887,1991,10274,2004,1936,1980,2139,2215,13080,2184,2180,2128,2268,2210,2110,7799,2183,2147,1879,1590,8820,1592,1595,1746,1928,1959,20690,2027,1922,1947,1978,2086,2129,2043,2161,2252,2145,31802,2083,2063,2109,2094,2082,2209,2133,1999,1937,1900,2029,2121,2160,2335,2548,40907,2524,2558,2654,2668,2777,2876,2917,2897,2794,2838,2804,2711,2689,2672,2528,24601,2532,2536,2527,2396,2419,2322,2395,2411,2617,2446,15247,2029,1987,1886,1803,1528,1431,1243,1221,1061,1058,5620,900,856,690,628,532,2014,96215,4479,809,876,896,934,964,4975,951,930,976,1043,1075,6343,1061,1073,1004,1166,1053,986,3718,1089,1007,902,720,4258,733,756,873,935,961,10549,1045,978,982,1025,1084,1052,1003,1117,1176,1087,16438,1080,1073,1125,1081,1068,1192,1108,1036,1016,943,1017,1095,1096,1214,1294,21312,1308,1335,1410,1418,1455,1494,1488,1537,1454,1476,1470,1389,1412,1366,1300,12600,1360,1275,1288,1195,1252,1187,1204,1219,1363,1257,8069,1045,1030,995,956,803,749,657,682,559,593,3474,494,482,387,381,338,1392,91681,4577,869,808,920,953,1027,5299,1053,1006,1004,1096,1140,6737,1123,1107,1124,1102,1157,1124,4081,1094,1140,977,870,4562,859,839,873,993,998,10141,982,944,965,953,1002,1077,1040,1044,1076,1058,15364,1003,990,984,1013,1014,1017,1025,963,921,957,1012,1026,1064,1121,1254,19595,1216,1223,1244,1250,1322,1382,1429,1360,1340,1362,1334,1322,1277,1306,1228,12001,1172,1261,1239,1201,1167,1135,1191,1192,1254,1189,7178,984,957,891,847,725,682,586,539,502,465,2146,406,374,303,247,194,622 +"2021","Swansea","W06000011",238489,11427,2011,2235,2355,2401,2425,13016,2582,2562,2429,2666,2777,16191,2694,2797,2803,2800,2592,2505,11947,2595,2603,2797,3952,19157,4357,4534,3932,3291,3043,29305,2933,2721,2791,2844,2943,3149,3025,2893,3034,2972,42369,3105,2933,2748,2974,2751,3055,2980,2735,2540,2527,2665,2721,2763,2851,3021,46201,3078,3155,3301,2990,3138,3220,3394,3255,3055,3071,2964,3000,2849,2834,2897,25844,2561,2579,2622,2499,2444,2402,2579,2514,2892,2752,16412,2026,2152,1886,1899,1596,1522,1444,1397,1303,1187,6620,1073,969,831,764,658,2325,120965,5639,1019,1105,1168,1195,1152,6261,1295,1208,1145,1275,1338,7758,1235,1403,1344,1380,1186,1210,5659,1189,1266,1267,1937,8733,1936,1976,1727,1639,1455,14872,1464,1382,1395,1440,1489,1548,1544,1484,1646,1480,21586,1630,1444,1440,1462,1459,1589,1443,1471,1286,1219,1299,1369,1434,1522,1519,23688,1629,1554,1619,1541,1568,1666,1704,1664,1585,1567,1486,1562,1455,1506,1582,13540,1359,1366,1398,1288,1216,1257,1315,1353,1521,1467,9058,1133,1155,998,1032,845,844,821,807,736,687,4171,633,589,511,473,394,1571,117524,5788,992,1130,1187,1206,1273,6755,1287,1354,1284,1391,1439,8433,1459,1394,1459,1420,1406,1295,6288,1406,1337,1530,2015,10424,2421,2558,2205,1652,1588,14433,1469,1339,1396,1404,1454,1601,1481,1409,1388,1492,20783,1475,1489,1308,1512,1292,1466,1537,1264,1254,1308,1366,1352,1329,1329,1502,22513,1449,1601,1682,1449,1570,1554,1690,1591,1470,1504,1478,1438,1394,1328,1315,12304,1202,1213,1224,1211,1228,1145,1264,1161,1371,1285,7354,893,997,888,867,751,678,623,590,567,500,2449,440,380,320,291,264,754 +"2021","Neath Port Talbot","W06000012",142291,7045,1266,1276,1427,1515,1561,7976,1549,1562,1560,1591,1714,10089,1743,1702,1635,1691,1638,1680,7174,1664,1514,1883,2113,7666,1561,1368,1542,1554,1641,17179,1559,1597,1650,1715,1819,1810,1698,1720,1768,1843,25401,1775,1757,1760,1724,1738,1719,1732,1613,1560,1582,1570,1626,1671,1737,1837,29630,1916,1884,2004,1980,1995,2050,2110,2147,2106,1918,2002,1977,1886,1902,1753,16612,1653,1650,1693,1704,1664,1576,1621,1615,1779,1657,9845,1258,1286,1242,1118,963,919,835,802,745,677,3674,612,539,429,420,351,1323,72412,3476,634,641,685,748,768,3884,765,767,763,779,810,4871,826,832,767,827,797,822,3239,824,756,804,855,3656,656,612,745,817,826,8901,765,803,842,876,953,946,881,906,957,972,12989,919,878,908,885,899,885,905,787,772,810,846,800,867,899,929,15229,958,960,1038,1018,1060,1007,1113,1139,1087,970,1025,1029,976,916,933,8520,838,848,843,847,898,816,832,822,884,892,5310,678,656,657,592,502,501,450,460,422,392,2337,352,317,237,273,229,929,69879,3569,632,635,742,767,793,4092,784,795,797,812,904,5218,917,870,868,864,841,858,3935,840,758,1079,1258,4010,905,756,797,737,815,8278,794,794,808,839,866,864,817,814,811,871,12412,856,879,852,839,839,834,827,826,788,772,724,826,804,838,908,14401,958,924,966,962,935,1043,997,1008,1019,948,977,948,910,986,820,8092,815,802,850,857,766,760,789,793,895,765,4535,580,630,585,526,461,418,385,342,323,285,1337,260,222,192,147,122,394 +"2021","Bridgend","W06000013",145500,7343,1346,1343,1505,1563,1586,8425,1588,1605,1676,1707,1849,10239,1782,1742,1719,1731,1627,1638,5983,1713,1622,1435,1213,7464,1225,1357,1471,1687,1724,18670,1626,1735,1722,1819,1867,1984,1928,2028,1987,1974,26727,1830,1817,1775,1729,1748,1925,1814,1685,1578,1569,1667,1768,1775,1942,2105,30548,2144,2080,2136,2126,2192,2118,2268,2123,2089,2106,1937,1828,1880,1776,1745,16246,1614,1609,1606,1615,1627,1599,1528,1645,1741,1662,10294,1328,1334,1294,1132,996,986,889,838,800,697,3561,590,589,379,442,357,1204,73632,3594,680,640,766,754,754,4130,798,764,810,836,922,4888,842,816,823,829,801,777,2867,842,822,671,532,3496,567,626,689,795,819,9373,758,879,830,920,975,997,969,1049,1035,961,13511,922,919,915,876,858,972,891,819,803,782,859,948,886,984,1077,15548,1063,1079,1098,1060,1113,1088,1150,1074,1085,1067,984,950,949,906,882,8448,803,838,806,873,863,831,765,853,925,891,5591,678,701,675,633,524,537,492,474,455,422,2186,347,337,234,260,228,780,71868,3749,666,703,739,809,832,4295,790,841,866,871,927,5351,940,926,896,902,826,861,3116,871,800,764,681,3968,658,731,782,892,905,9297,868,856,892,899,892,987,959,979,952,1013,13216,908,898,860,853,890,953,923,866,775,787,808,820,889,958,1028,15000,1081,1001,1038,1066,1079,1030,1118,1049,1004,1039,953,878,931,870,863,7798,811,771,800,742,764,768,763,792,816,771,4703,650,633,619,499,472,449,397,364,345,275,1375,243,252,145,182,129,424 +"2021","Vale of Glamorgan","W06000014",131947,6851,1229,1266,1364,1446,1546,7916,1528,1483,1539,1661,1705,9718,1606,1656,1673,1739,1576,1468,5474,1500,1617,1325,1032,6040,1046,1133,1141,1316,1404,15087,1365,1399,1469,1416,1524,1460,1506,1583,1693,1672,24521,1641,1574,1566,1689,1656,1753,1775,1642,1450,1508,1502,1605,1675,1635,1850,27346,1810,1789,1833,1884,1864,1887,1881,1982,1863,1872,1869,1729,1736,1706,1641,15629,1657,1506,1599,1578,1459,1503,1470,1528,1688,1641,9662,1169,1343,1186,1110,933,855,895,818,714,639,3703,578,526,504,395,362,1338,68347,3402,598,632,637,744,791,3897,763,759,743,784,848,4712,792,791,774,877,758,720,2656,770,809,619,458,2941,446,551,544,637,763,7854,703,719,757,725,777,744,811,837,895,886,12785,857,842,806,889,848,898,883,909,756,788,796,799,904,819,991,14261,957,925,943,1012,947,996,983,1064,959,951,939,911,889,928,857,8195,876,773,811,838,758,788,741,808,925,877,5315,626,743,612,624,524,460,493,458,401,374,2329,337,310,296,244,219,923,63600,3449,631,634,727,702,755,4019,765,724,796,877,857,5006,814,865,899,862,818,748,2818,730,808,706,574,3099,600,582,597,679,641,7233,662,680,712,691,747,716,695,746,798,786,11736,784,732,760,800,808,855,892,733,694,720,706,806,771,816,859,13085,853,864,890,872,917,891,898,918,904,921,930,818,847,778,784,7434,781,733,788,740,701,715,729,720,763,764,4347,543,600,574,486,409,395,402,360,313,265,1374,241,216,208,151,143,415 +"2021","Cardiff","W06000015",362312,19069,3551,3699,3818,3916,4085,21504,4254,4199,4179,4420,4452,25422,4498,4320,4295,4328,4068,3913,22520,3967,3859,5843,8851,37887,8791,8315,7390,6830,6561,56304,6166,5947,5787,5723,5675,5594,5442,5278,5290,5402,67410,5105,5091,4955,4986,4776,4834,4658,4391,4076,4303,4047,4016,4071,3993,4108,59697,4310,4301,4056,4174,4220,4134,4239,4176,4045,4011,3728,3786,3565,3564,3388,28874,3109,2988,3106,2844,2760,2849,2851,2729,2823,2815,16507,2063,2233,1912,1819,1563,1516,1444,1399,1331,1227,7118,1104,980,902,749,681,2702,185462,9356,1734,1870,1868,1881,2003,10487,2104,2002,2029,2209,2143,12488,2161,2159,2103,2184,1957,1924,11645,1885,1942,3069,4749,19708,4709,4370,3748,3636,3245,28365,3007,2958,2873,2851,2906,2847,2742,2721,2686,2774,34117,2567,2669,2451,2573,2449,2444,2356,2171,2057,2202,2050,1990,2009,2045,2084,30560,2194,2213,2038,2141,2130,2253,2145,2150,2093,2039,1945,1845,1790,1881,1703,14908,1601,1467,1635,1498,1399,1486,1440,1389,1492,1501,9230,1068,1221,1021,1009,900,884,804,811,793,719,4598,661,594,568,499,432,1844,176850,9713,1817,1829,1950,2035,2082,11017,2150,2197,2150,2211,2309,12934,2337,2161,2192,2144,2111,1989,10875,2082,1917,2774,4102,18179,4082,3945,3642,3194,3316,27939,3159,2989,2914,2872,2769,2747,2700,2557,2604,2628,33293,2538,2422,2504,2413,2327,2390,2302,2220,2019,2101,1997,2026,2062,1948,2024,29137,2116,2088,2018,2033,2090,1881,2094,2026,1952,1972,1783,1941,1775,1683,1685,13966,1508,1521,1471,1346,1361,1363,1411,1340,1331,1314,7277,995,1012,891,810,663,632,640,588,538,508,2520,443,386,334,250,249,858 +"2021","Rhondda Cynon Taff","W06000016",237658,12531,2304,2447,2582,2553,2645,14032,2754,2696,2823,2897,2862,17249,2959,2937,3000,2862,2764,2727,10702,2853,2747,2583,2519,14320,2576,2763,3065,2907,3009,30833,2776,2953,2937,2995,3079,3262,3293,3201,3189,3148,43474,3140,3064,3039,2988,2982,2959,2916,2735,2546,2424,2656,2696,2808,3151,3370,47890,3437,3191,3346,3346,3331,3484,3401,3388,3309,3206,3101,2848,2950,2899,2653,26034,2602,2590,2578,2478,2573,2493,2563,2728,2744,2685,15427,2155,1996,1806,1797,1551,1391,1305,1242,1169,1015,5166,882,775,687,550,476,1796,121323,6047,1081,1232,1216,1216,1302,6963,1414,1254,1420,1467,1408,8456,1465,1515,1406,1428,1305,1337,5214,1420,1354,1236,1204,7036,1186,1405,1475,1461,1509,15867,1387,1452,1527,1517,1615,1719,1674,1626,1716,1634,22360,1614,1606,1542,1532,1584,1574,1455,1371,1269,1238,1364,1414,1472,1610,1715,24326,1767,1612,1686,1688,1709,1766,1656,1750,1691,1626,1623,1490,1455,1510,1297,13436,1341,1353,1326,1327,1274,1304,1234,1426,1470,1381,8341,1031,1037,921,1029,851,760,710,722,676,604,3277,516,455,427,338,300,1241,116335,6484,1223,1215,1366,1337,1343,7069,1340,1442,1403,1430,1454,8793,1494,1422,1594,1434,1459,1390,5488,1433,1393,1347,1315,7284,1390,1358,1590,1446,1500,14966,1389,1501,1410,1478,1464,1543,1619,1575,1473,1514,21114,1526,1458,1497,1456,1398,1385,1461,1364,1277,1186,1292,1282,1336,1541,1655,23564,1670,1579,1660,1658,1622,1718,1745,1638,1618,1580,1478,1358,1495,1389,1356,12598,1261,1237,1252,1151,1299,1189,1329,1302,1274,1304,7086,1124,959,885,768,700,631,595,520,493,411,1889,366,320,260,212,176,555 +"2021","Caerphilly","W06000018",175948,9218,1607,1787,1871,1975,1978,10412,2082,2081,2025,2138,2086,12840,2223,2166,2203,2125,2096,2027,7568,2050,2079,1815,1624,9057,1628,1699,1769,1877,2084,22260,1974,2055,2189,2184,2278,2330,2233,2420,2347,2250,32835,2329,2316,2234,2207,2154,2305,2201,2092,1973,2004,1954,2059,2167,2412,2428,36350,2487,2453,2643,2567,2498,2571,2601,2571,2504,2468,2258,2243,2169,2158,2159,19879,1969,1954,2054,2018,1857,1908,2011,1945,2087,2076,11709,1550,1597,1363,1316,1232,1058,993,977,870,753,3820,655,621,520,451,354,1219,89984,4554,813,882,915,970,974,5132,1027,1033,993,1045,1034,6260,1112,1037,1063,1052,1028,968,3551,976,985,814,776,4379,720,786,902,924,1047,11597,985,1067,1163,1162,1215,1154,1177,1267,1241,1166,17004,1212,1244,1177,1148,1113,1205,1155,1102,1024,986,976,1048,1078,1265,1271,18439,1252,1275,1350,1305,1273,1277,1323,1294,1256,1261,1161,1085,1105,1099,1123,10366,1063,1013,1064,1077,918,975,1055,1040,1073,1088,6278,802,874,719,712,642,572,548,510,481,418,2424,388,373,332,272,237,822,85964,4664,794,905,956,1005,1004,5280,1055,1048,1032,1093,1052,6580,1111,1129,1140,1073,1068,1059,4017,1074,1094,1001,848,4678,908,913,867,953,1037,10663,989,988,1026,1022,1063,1176,1056,1153,1106,1084,15831,1117,1072,1057,1059,1041,1100,1046,990,949,1018,978,1011,1089,1147,1157,17911,1235,1178,1293,1262,1225,1294,1278,1277,1248,1207,1097,1158,1064,1059,1036,9513,906,941,990,941,939,933,956,905,1014,988,5431,748,723,644,604,590,486,445,467,389,335,1396,267,248,188,179,117,397 +"2021","Blaenau Gwent","W06000019",66899,3541,662,752,692,722,713,3733,698,741,756,795,743,4489,773,789,812,712,712,691,2629,692,704,622,611,3528,586,705,727,748,762,9008,772,842,932,904,966,948,905,935,903,901,11849,874,815,787,791,756,839,795,757,642,656,747,743,816,895,936,14605,974,996,1063,996,1047,1086,1052,1051,1018,958,923,873,883,860,825,7521,725,730,766,714,760,727,738,778,779,804,4565,596,597,528,571,477,401,392,389,309,305,1431,270,211,184,156,141,469,34065,1725,312,352,336,363,362,1803,346,346,360,410,341,2240,368,378,396,350,382,366,1263,333,319,311,300,1747,267,328,377,375,400,4719,410,448,483,476,490,504,459,482,492,475,5967,440,368,410,390,409,433,401,405,299,359,380,349,430,427,467,7466,508,502,540,514,570,546,530,520,517,493,495,445,442,446,398,3791,343,363,389,351,386,380,360,403,398,418,2450,296,322,274,310,249,211,222,210,177,179,894,160,114,112,96,85,327,32834,1816,350,400,356,359,351,1930,352,395,396,385,402,2249,405,411,416,362,330,325,1366,359,385,311,311,1781,319,377,350,373,362,4289,362,394,449,428,476,444,446,453,411,426,5882,434,447,377,401,347,406,394,352,343,297,367,394,386,468,469,7139,466,494,523,482,477,540,522,531,501,465,428,428,441,414,427,3730,382,367,377,363,374,347,378,375,381,386,2115,300,275,254,261,228,190,170,179,132,126,537,110,97,72,60,56,142 +"2021","Torfaen","W06000020",92263,5002,915,962,1019,1026,1080,5435,1107,954,1083,1138,1153,6730,1165,1124,1144,1102,1091,1104,3781,1072,997,905,807,4694,731,825,919,1094,1125,12112,1077,1190,1170,1139,1262,1267,1280,1281,1242,1204,16272,1194,1176,1160,1113,1100,1112,1141,995,942,980,932,1022,1063,1157,1185,19087,1285,1272,1300,1249,1269,1388,1404,1314,1349,1355,1284,1164,1195,1204,1055,10449,1025,1023,1107,1060,1015,1066,987,1010,1096,1060,6334,812,869,753,717,656,565,561,500,471,430,2367,399,366,317,257,234,794,47401,2409,440,450,507,488,524,2635,540,471,513,567,544,3277,583,549,533,537,536,539,1812,493,509,434,376,2308,316,394,471,583,544,6380,522,626,621,623,647,670,667,665,694,645,8419,607,614,636,532,550,612,599,520,508,473,497,536,569,567,599,9735,635,662,694,648,661,708,714,668,689,683,655,572,614,606,526,5461,544,539,570,583,535,548,495,542,574,531,3465,430,438,391,395,389,318,296,280,268,260,1500,239,222,181,154,165,539,44862,2593,475,512,512,538,556,2800,567,483,570,571,609,3453,582,575,611,565,555,565,1969,579,488,471,431,2386,415,431,448,511,581,5732,555,564,549,516,615,597,613,616,548,559,7853,587,562,524,581,550,500,542,475,434,507,435,486,494,590,586,9352,650,610,606,601,608,680,690,646,660,672,629,592,581,598,529,4988,481,484,537,477,480,518,492,468,522,529,2869,382,431,362,322,267,247,265,220,203,170,867,160,144,136,103,69,255 +"2021","Monmouthshire","W06000021",92958,3960,734,736,798,828,864,4642,914,877,898,972,981,6116,1020,971,1074,1006,1086,959,3613,1067,1030,844,672,3871,668,681,770,843,909,9230,841,931,895,901,931,974,897,966,889,1005,15746,909,981,985,1002,1024,1022,1053,987,1004,968,1005,1082,1081,1265,1378,21740,1412,1368,1426,1473,1583,1618,1536,1650,1543,1469,1384,1394,1272,1312,1300,12597,1215,1257,1170,1331,1220,1252,1241,1269,1299,1343,8181,1065,1069,984,951,822,766,716,643,588,577,3262,530,450,403,364,298,1217,47415,1897,368,352,397,387,393,2215,429,417,422,468,479,2973,479,504,500,491,539,460,1703,485,488,415,315,1843,311,315,365,406,446,4586,394,455,458,464,439,463,462,470,467,514,8138,486,500,536,519,539,546,532,509,511,482,524,546,549,648,711,11173,744,697,736,771,820,860,776,881,791,747,706,722,619,641,662,6492,629,646,631,666,617,651,640,652,656,704,4388,580,568,482,506,471,409,370,361,327,314,2007,311,255,218,203,173,847,45543,2063,366,384,401,441,471,2427,485,460,476,504,502,3143,541,467,574,515,547,499,1910,582,542,429,357,2028,357,366,405,437,463,4644,447,476,437,437,492,511,435,496,422,491,7608,423,481,449,483,485,476,521,478,493,486,481,536,532,617,667,10567,668,671,690,702,763,758,760,769,752,722,678,672,653,671,638,6105,586,611,539,665,603,601,601,617,643,639,3793,485,501,502,445,351,357,346,282,261,263,1255,219,195,185,161,125,370 +"2021","Newport","W06000022",159587,9733,1839,1908,1968,1995,2023,10337,2158,2121,2021,2014,2023,12100,2111,2138,2101,2078,1787,1885,6788,1928,1835,1673,1352,8737,1445,1617,1819,1878,1978,23603,1955,2114,2178,2439,2376,2576,2424,2506,2546,2489,30807,2325,2370,2208,2109,2135,2174,2086,1985,1869,1833,1863,1869,1878,2045,2058,30424,2158,2089,2151,2196,2182,2186,2230,2164,2114,1978,1980,1833,1906,1686,1571,14528,1426,1485,1528,1509,1326,1371,1422,1420,1499,1542,9104,1102,1244,1051,1052,901,826,814,761,674,679,3426,586,457,437,362,357,1227,81169,4793,890,926,931,1026,1020,4977,980,1063,981,953,1000,5938,1037,1124,971,988,893,925,3277,923,893,782,679,4317,682,778,916,919,1022,12178,989,1135,1131,1205,1268,1386,1222,1242,1338,1262,15570,1209,1173,1151,1069,1121,1113,982,995,926,938,936,875,1001,1022,1059,15445,1057,1020,1075,1195,1136,1103,1145,1098,1083,1025,968,966,932,832,810,7478,726,762,782,749,690,659,774,762,777,797,5045,600,662,556,561,521,481,452,424,383,405,2151,335,268,272,224,229,823,78418,4940,949,982,1037,969,1003,5360,1178,1058,1040,1061,1023,6162,1074,1014,1130,1090,894,960,3511,1005,942,891,673,4420,763,839,903,959,956,11425,966,979,1047,1234,1108,1190,1202,1264,1208,1227,15237,1116,1197,1057,1040,1014,1061,1104,990,943,895,927,994,877,1023,999,14979,1101,1069,1076,1001,1046,1083,1085,1066,1031,953,1012,867,974,854,761,7050,700,723,746,760,636,712,648,658,722,745,4059,502,582,495,491,380,345,362,337,291,274,1275,251,189,165,138,128,404 +"2021","Powys","W06000023",133174,5731,1052,1053,1162,1231,1233,6539,1296,1242,1316,1346,1339,8362,1359,1353,1405,1468,1410,1367,5052,1453,1383,1212,1004,5698,963,1053,1194,1262,1226,13231,1308,1314,1344,1228,1314,1422,1317,1346,1404,1234,20641,1302,1297,1254,1268,1360,1313,1301,1277,1256,1260,1374,1441,1479,1539,1920,30799,1896,1858,1922,1928,2108,2097,2189,2080,2212,2099,2117,2131,2073,2035,2054,19877,1925,1992,2051,1977,1879,1924,1996,1985,2111,2037,12550,1567,1661,1605,1456,1239,1102,1095,1037,908,880,4694,765,658,582,502,443,1744,67471,2775,510,541,537,570,617,3172,636,579,639,643,675,4077,678,665,661,728,675,670,2399,702,683,575,439,2621,427,461,556,599,578,6513,589,684,648,597,633,718,632,680,696,636,10512,642,643,637,679,688,654,647,671,653,631,692,730,782,784,979,15862,1013,970,997,1009,1098,1096,1102,1069,1141,1044,1094,1089,1065,1049,1026,10015,965,1039,1046,995,939,969,1025,972,1049,1016,6616,827,861,807,754,654,601,597,549,488,478,2909,434,349,343,319,278,1186,65703,2956,542,512,625,661,616,3367,660,663,677,703,664,4285,681,688,744,740,735,697,2653,751,700,637,565,3077,536,592,638,663,648,6718,719,630,696,631,681,704,685,666,708,598,10129,660,654,617,589,672,659,654,606,603,629,682,711,697,755,941,14937,883,888,925,919,1010,1001,1087,1011,1071,1055,1023,1042,1008,986,1028,9862,960,953,1005,982,940,955,971,1013,1062,1021,5934,740,800,798,702,585,501,498,488,420,402,1785,331,309,239,183,165,558 +"2021","Merthyr Tydfil","W06000024",58839,3297,607,625,650,709,706,3661,735,748,684,709,785,4203,734,701,719,711,714,624,2496,641,647,663,545,3217,577,626,630,657,727,7843,666,697,771,764,796,816,828,799,861,845,10855,865,841,800,754,764,773,728,636,591,609,654,656,663,723,798,12157,802,826,804,806,884,849,879,879,818,830,837,749,759,782,653,6306,649,634,629,631,606,661,626,641,643,586,3601,449,503,453,417,348,318,312,262,303,236,1203,229,160,158,133,114,409,30083,1591,268,336,331,318,338,1790,346,367,340,348,389,2018,325,363,355,333,336,306,1185,320,325,304,236,1613,293,289,323,334,374,4133,349,368,369,405,440,426,431,435,445,465,5607,463,421,411,407,402,409,357,310,318,294,331,337,352,381,414,6231,416,419,422,414,477,406,482,452,432,430,431,370,357,400,323,3261,346,335,304,312,316,349,319,315,334,331,1886,222,264,225,211,178,177,175,128,176,130,768,130,93,108,81,74,282,28756,1706,339,289,319,391,368,1871,389,381,344,361,396,2185,409,338,364,378,378,318,1311,321,322,359,309,1604,284,337,307,323,353,3710,317,329,402,359,356,390,397,364,416,380,5248,402,420,389,347,362,364,371,326,273,315,323,319,311,342,384,5926,386,407,382,392,407,443,397,427,386,400,406,379,402,382,330,3045,303,299,325,319,290,312,307,326,309,255,1715,227,239,228,206,170,141,137,134,127,106,435,99,67,50,52,40,127 diff --git a/tests/test_uk.py b/tests/test_uk.py index e69de29..aaa7d30 100644 --- a/tests/test_uk.py +++ b/tests/test_uk.py @@ -0,0 +1,78 @@ +from __future__ import annotations + +from pathlib import Path + +import pandas as pd +from dagster import build_asset_context +from icecream import ic + +from popgetter.assets.uk import england_wales_census as ew_census +from popgetter.metadata import MetricMetadata + + +def test_retrieve_table_description(): + example_url = "https://www.nomisweb.co.uk/datasets/c2021ts009" + expected_desction_snipet = "estimates that classify usual residents in England and Wales by sex and single year of age" + actual_description = ew_census._retrieve_table_description(example_url) + + assert ( + expected_desction_snipet in actual_description + ), "The description of the table did not included the expected text" + + +def test_uk__derived_metrics(): + mmd = MetricMetadata( + human_readable_name="test_human_readable_name", + source_download_url="test_source_download_url", + source_archive_file_path="test_source_archive_file_path", + source_documentation_url="test_source_documentation_url", + source_data_release_id="geography code", + # TODO - this is a placeholder + parent_metric_id="unknown_at_this_stage", + potential_denominator_ids=None, + parquet_margin_of_error_file=None, + parquet_margin_of_error_column=None, + parquet_column_name="unknown_parquet_column_name", + # TODO - this is a placeholder + metric_parquet_path="unknown", + hxl_tag="hxl_tag_unknown", + description="description", + source_metric_id="source_table.hxltag", + ) + + # Get a context for testing + context = build_asset_context(partition_key="ltla/TS009") + + # TODO, replace this with a proper fixture + demo_census_source_table_path = ( + Path(__file__).parent / "demo_data" / "gbr_ew_census2021-ts009-ltla.csv" + ) + source_df = pd.read_csv(demo_census_source_table_path) + + # Limit the test data to just Hartlepool and Middlesbrough + # - Two rows in the test data, to distinguish between other cases where derived + # metrics are calculated by pivoting over multiple rows + # - Still dealing with the source table here, so the relevant columns is "geography code" + source_df = source_df[source_df["geography code"].isin(["E06000001", "E06000002"])] + + ewc = ew_census.EnglandAndWales() + actual_derived_metrics = ewc._derived_metrics(context, source_df, mmd) + + # ic(actual_derived_metrics) + ic(actual_derived_metrics.metrics.head(1).T) + + # Test the results on Hartlepool + # - This is the derived metrics, hence the relevant column is "GEO_ID" + hartlepool = actual_derived_metrics.metrics[ + actual_derived_metrics.metrics["GEO_ID"] == "E06000001" + ] + + # Manually calculated expected values + assert hartlepool["children_5_17"].to_numpy()[0] == 14847 + assert hartlepool["infants_0_4"].to_numpy()[0] == 4981 + + assert hartlepool["children_0_17"].to_numpy()[0] == 19828 + assert hartlepool["adults_f"].to_numpy()[0] == 37971 + assert hartlepool["adults_m"].to_numpy()[0] == 34548 + assert hartlepool["adults"].to_numpy()[0] == 72519 + assert hartlepool["individuals"].to_numpy()[0] == 92347