diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 00000000..3797d941 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,8 @@ +[report] +omit = + */site-packages/* + */python?.?/* + ckan/* + ckanext/qa/tests/* +#include = +# ckanext/qa/* diff --git a/.gitignore b/.gitignore index 83ad4ae0..52950fc8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,15 @@ -*.pyc -*.swp +# archiver settings should not be checked in - only its template +ckanext/archiver/settings.py + .DS_Store +# vim +*.sw? +# emacs +*~ + +.ropeproject +node_modules +bower_components # Byte-compiled / optimized / DLL files __pycache__/ @@ -11,17 +20,11 @@ __pycache__/ # Distribution / packaging .Python -/env/ -/build/ -/develop-eggs/ -/dist/ -/downloads/ -/eggs/ -/lib/ -/lib64/ -/parts/ -/sdist/ -/var/ +env/ +build/ +develop-eggs/ +dist/ +sdist/ *.egg-info/ .installed.cfg *.egg @@ -44,20 +47,6 @@ htmlcov/ nosetests.xml coverage.xml -# Translations -*.mo -*.pot - -# Django stuff: -*.log - # Sphinx documentation docs/_build/ -# PyBuilder -target/ - -# IDE -.project -.pydevproject -.idea diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..4f3ed4eb --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: python +python: + - "2.7" +env: PGVERSION=9.1 +install: + - bash bin/travis-build.bash + - pip install coveralls +script: sh bin/travis-run.sh +after_success: + - coveralls diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..e258ae36 --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 Open Knowledge & Crown Copyright + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + diff --git a/MANIFEST.in b/MANIFEST.in index 808bd6a6..8fbcca9b 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,2 @@ recursive-include ckanext/qa/templates * -recursive-include ckanext/qa/public * include setup.py diff --git a/README.rst b/README.rst index 70d05bd5..6b7be6d8 100644 --- a/README.rst +++ b/README.rst @@ -1,16 +1,29 @@ -CKAN Quality Assurance Extension -================================ +.. You should enable this project on travis-ci.org and coveralls.io to make + these badges work. The necessary Travis and Coverage config files have been + generated for you. +.. image:: https://travis-ci.org/ckan/ckanext-qa.svg?branch=master + :target: https://travis-ci.org/ckan/ckanext-qa -The ckanext-qa extension will check each of your package resources and give -these resources an openness score based Tim Berners-Lee's five stars of openness +CKAN QA Extension (Quality Assurance) +===================================== + +The ckanext-qa extension will check each of your dataset resources in CKAN and give +them an 'openness score' based Tim Berners-Lee's five stars of openness (http://lab.linkeddata.deri.ie/2010/star-scheme-by-example) -It also provides a Dashboard that allows you to view broken links and openness scores. +The openness score is displayed as stars on the dataset and resource pages. + +.. image:: qa_dataset.png + :alt: Stars on the dataset + +.. image:: qa_resource.png + :alt: Stars spelled out on the resource + +It also provides a report that allows you to view the openness (stars ratings) across a publisher or across them all: -Once you have run the qa commands (see 'Using The QA Extension' below), -resources and packages will have a set of openness key's stores in their -extra properties. +.. image:: qa_report.png + :alt: Openness report (star ratings) for a publisher Requirements @@ -18,110 +31,146 @@ Requirements Before installing ckanext-qa, make sure that you have installed the following: -* CKAN 1.5.1+ -* ckanext-archiver (http://github.com/okfn/ckanext-archiver) +* CKAN 2.1+ +* ckanext-archiver 2.0+ (https://github.com/ckan/ckanext-archiver) + +Optional: + +* ckanext-report (https://github.com/datagovuk/ckanext-report) for reporting + +Known issues: + +* if the CKAN version is earlier than 2.3 then QA and Archiver information will not display on the resource read page. Installation ------------ -Install the plugin using pip. Download it, then from the ckanext-qa directory, run +To install ckanext-qa, ensure you have previously installed ckanext-archiver (v2.0+) and ckanext-report and then: -:: +1. Activate your CKAN virtual environment, for example:: - $ pip install -e ./ + . /usr/lib/ckan/default/bin/activate -This will register a plugin entry point, so you can now add the following -to the ``[app:main]`` section of your CKAN .ini file: +2. Install the ckanext-qa Python package into your virtual environment:: -:: + pip install -e git+http://github.com/okfn/ckanext-qa.git#egg=ckanext-qa - ckan.plugins = qa +3. Install the qa dependencies:: -After you reload the site, the Quality Assurance plugin -and openness score interface should be available at http://your-ckan-instance/qa + pip install -r ckanext-qa/requirements.txt +4. Now create the database tables:: -Configuration -------------- + paster --plugin=ckanext-qa qa init --config=production.ini + +5. Add ``qa`` to the ``ckan.plugins`` setting BEFORE ``archiver`` in your CKAN + config file (by default the config file is located at + ``/etc/ckan/default/production.ini``). + +6. Restart CKAN. For example if you've deployed CKAN with Apache on Ubuntu:: + + sudo service apache2 reload + + +Upgrade from version 0.1 to 2.x +------------------------------- -The QA extension now depends on the CKAN Archiver extension and CKAN 1.5 (with Celery). +NB You should upgrade ckanext-archiver and ckanext-qa from v0.1 to 2.x in one go. Upgrade ckanext-archiver first and then carry out the following: -You must also make sure that the following is set in your CKAN config: +1. Activate your CKAN virtual environment, for example:: + + . /usr/lib/ckan/default/bin/activate + +2. Upgrade the ckanext-qa Python package:: + + cd ckanext-qa + git pull + python setup.py develop + +3. Create the new database tables:: + + paster --plugin=ckanext-qa qa init --config=production.ini + +4. Install the normal and developer dependencies:: + + pip install -r requirements.txt + pip install -r dev-requirements.txt + +5. Migrate your database to the new QA tables:: + + python ckanext/qa/bin/migrate_task_status.py --write production.ini + +6. (Re)start the `paster celeryd2 run` processes described for ckanext-archiver. + + +Configuration +------------- -:: +You must make sure that the following is set in your CKAN config:: ckan.site_url = +Optionally you can configure a different set of scores to award each resource format:: -**Optional:** + qa.resource_format_openness_scores_json = -By default, the report for organisations will be listed in the QA reports -page (/qa). If you do not want to show this report, you can disable it by -setting the following config option: +The default value is `resource_format_openness_scores.json`) -:: - qa.organisations = false +Running +-------- +First, make sure that Celery is running for the priority and bulk queues. This is explained in the ckanext-archiver README: -Using The QA Extension ----------------------- +[Using Archiver](https://github.com/ckan/ckanext-archiver#using-archiver) -**QA**: analyze the results of the archiving step and calculating resource/package openness ratings. +QA is performed when a dataset/resource is archived, or you can run it manually using a paster command:: -This step can be performed by running the associated ``paster`` command -from the ckanext-qa directory. + paster --plugin=ckanext-qa qa update [dataset] --config=production.ini -:: +Here ``dataset`` is a CKAN dataset name or ID, or you can omit it to do the QA on all datasets. - $ paster qa update|clean [package name/id] --config= - -``update`` or ``clean`` will either update the package resources or remove everything changed by -the QA Extension respectively. +For a full list of manual commands run:: -The command can be run on just a single package by giving the package ``name`` or ``ID`` after the -``update/clean`` subcommand. If no package name is given, the database is scanned -for a list of all packages and the command is run on each one. + paster --plugin=ckanext-qa qa --help -After you run the ``archive`` and ``qa`` commands, the QA results can be viewed -at +Once the QA has run for a dataset, you will see the stars displayed on the dataset's web page, and the detected file format available when you call `package_show` for it, in the `qa` for the dataset and each resource. -:: +You can get an overall picture by generating an Openness report:: - http://your-ckan-instance/qa + paster --plugin=ckanext-report report generate openness --config=production.ini +And view it on your CKAN site at ``/report/openness``. -API Access ----------- -The QA Extension exposes the following API endpoints: +Tests +----- -:: +To run the tests: - http://your-ckan-instance/api/2/util/qa/package_five_stars +1. Activate your CKAN virtual environment, for example:: - http://your-ckan-instance/api/2/util/qa/broken_resource_links_by_package + . /usr/lib/ckan/default/bin/activate - http://your-ckan-instance/api/2/util/qa/organisations_with_broken_resource_links +2. If not done already, install the dev requirements:: - http://your-ckan-instance/api/2/util/qa/broken_resource_links_by_package_for_organisation + (pyenv)~/pyenv/src/ckan$ pip install ../ckanext-qa/dev-requirements.txt +3. From the CKAN root directory (not the extension root) do:: -Developers ----------- + (pyenv)~/pyenv/src/ckan$ nosetests --ckan ../ckanext-qa/tests/ --with-pylons=../ckanext-qa/test-core.ini -You can run the test suite from the ckanext-qa directory. -The tests require nose and mock, so install them first if you have not already -done so: +If you get error "MagicException: None" then it may be due to libmagic needing an update. Try: -:: + sudo apt-get install libmagic1 - $ pip install nose mock -Then, run nosetests from the ckan directory +Questions +--------- -:: +The archiver info shows on the dataset/resource pages but the QA doesn't +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - $ nosetests --ckan /tests +You need to ensure that in your ``ckan.plugins`` you have ``qa`` listed BEFORE ``archiver`` or else the template inheritance doesn't work and this happens. diff --git a/bin/travis-build.bash b/bin/travis-build.bash new file mode 100644 index 00000000..b529045f --- /dev/null +++ b/bin/travis-build.bash @@ -0,0 +1,64 @@ +#!/bin/bash +set -e +set -x # echo on + +echo "This is travis-build.bash..." + +echo "Installing the packages that CKAN requires..." +sudo apt-get update -qq +sudo apt-get install postgresql-$PGVERSION solr-jetty libcommons-fileupload-java:amd64=1.2.2-1 + +echo "Upgrading libmagic for ckanext-qa..." +# appears to upgrade it from 5.09-2 to 5.09-2ubuntu0.6 which seems to help the tests +sudo apt-get install libmagic1 + +echo "Installing CKAN and its Python dependencies..." +git clone https://github.com/ckan/ckan +cd ckan +#export latest_ckan_release_branch=`git branch --all | grep remotes/origin/release-v | sort -r | sed 's/remotes\/origin\///g' | head -n 1` +export ckan_branch=master +echo "CKAN branch: $ckan_branch" +git checkout $ckan_branch +python setup.py develop +pip install -r requirements.txt --allow-all-external +pip install -r dev-requirements.txt --allow-all-external +cd - + +echo "Setting up Solr..." +# solr is multicore for tests on ckan master now, but it's easier to run tests +# on Travis single-core still. +# see https://github.com/ckan/ckan/issues/2972 +sed -i -e 's/solr_url.*/solr_url = http:\/\/127.0.0.1:8983\/solr/' ckan/test-core.ini +printf "NO_START=0\nJETTY_HOST=127.0.0.1\nJETTY_PORT=8983\nJAVA_HOME=$JAVA_HOME" | sudo tee /etc/default/jetty +sudo cp ckan/ckan/config/solr/schema.xml /etc/solr/conf/schema.xml +sudo service jetty restart + +echo "Creating the PostgreSQL user and database..." +sudo -u postgres psql -c "CREATE USER ckan_default WITH PASSWORD 'pass';" +sudo -u postgres psql -c 'CREATE DATABASE ckan_test WITH OWNER ckan_default;' + +echo "Initialising the database..." +cd ckan +paster db init -c test-core.ini +cd - + +echo "Installing dependency ckanext-report and its requirements..." +pip install -e git+https://github.com/datagovuk/ckanext-report.git#egg=ckanext-report + +echo "Installing dependency ckanext-archiver and its requirements..." +git clone https://github.com/ckan/ckanext-archiver.git +cd ckanext-archiver +pip install -e . +pip install -r requirements.txt +cd - + +echo "Installing ckanext-qa and its requirements..." +python setup.py develop +pip install -r requirements.txt +pip install -r dev-requirements.txt + +echo "Moving test-core.ini into a subdir..." +mkdir subdir +mv test-core.ini subdir + +echo "travis-build.bash is done." diff --git a/bin/travis-run.sh b/bin/travis-run.sh new file mode 100644 index 00000000..5c4022b7 --- /dev/null +++ b/bin/travis-run.sh @@ -0,0 +1,6 @@ +#!/bin/sh -e + +echo "NO_START=0\nJETTY_HOST=127.0.0.1\nJETTY_PORT=8983\nJAVA_HOME=$JAVA_HOME" | sudo tee /etc/default/jetty +sudo cp ckan/ckan/config/solr/schema.xml /etc/solr/conf/schema.xml +sudo service jetty restart +nosetests --with-pylons=subdir/test-core.ini --with-coverage --cover-package=ckanext.archiver --cover-inclusive --cover-erase --cover-tests diff --git a/ckanext/qa/__init__.py b/ckanext/qa/__init__.py index 2ddba135..53fd0507 100644 --- a/ckanext/qa/__init__.py +++ b/ckanext/qa/__init__.py @@ -6,4 +6,4 @@ import pkgutil __path__ = pkgutil.extend_path(__path__, __name__) -__version__ = '0.3' +__version__ = '2.0' diff --git a/ckanext/qa/bin/common.py b/ckanext/qa/bin/common.py new file mode 100644 index 00000000..e9f23ee3 --- /dev/null +++ b/ckanext/qa/bin/common.py @@ -0,0 +1,49 @@ +import os + +def load_config(config_filepath): + import paste.deploy + config_abs_path = os.path.abspath(config_filepath) + conf = paste.deploy.appconfig('config:' + config_abs_path) + import ckan + ckan.config.environment.load_environment(conf.global_conf, + conf.local_conf) + +def register_translator(): + # Register a translator in this thread so that + # the _() functions in logic layer can work + from paste.registry import Registry + from pylons import translator + from ckan.lib.cli import MockTranslator + global registry + registry=Registry() + registry.prepare() + global translator_obj + translator_obj=MockTranslator() + registry.register(translator, translator_obj) + +def get_resources(state='active', publisher_ref=None, resource_id=None, dataset_name=None): + ''' Returns all active resources, or filtered by the given criteria. ''' + from ckan import model + resources = model.Session.query(model.Resource) \ + .filter_by(state=state) + if hasattr(model, 'ResourceGroup'): + # earlier CKANs had ResourceGroup + resources = resources.join(model.ResourceGroup) + resources = resources \ + .join(model.Package) \ + .filter_by(state='active') + criteria = [state] + if publisher_ref: + publisher = model.Group.get(publisher_ref) + assert publisher + resources = resources.filter(model.Package.owner_org==publisher.id) + criteria.append('Publisher:%s' % publisher.name) + if dataset_name: + resources = resources.filter(model.Package.name==dataset_name) + criteria.append('Dataset:%s' % dataset_name) + if resource_id: + resources = resources.filter(model.Resource.id==resource_id) + criteria.append('Resource:%s' % resource_id) + resources = resources.all() + print '%i resources (%s)' % (len(resources), ' '.join(criteria)) + return resources diff --git a/ckanext/qa/bin/migrate_task_status.py b/ckanext/qa/bin/migrate_task_status.py new file mode 100644 index 00000000..7f3e116f --- /dev/null +++ b/ckanext/qa/bin/migrate_task_status.py @@ -0,0 +1,168 @@ +''' +Tool to migrate QA data from the TaskStatus table to the QA table. + +You could just rerun the QA to populate the new QA table, but you'd miss key +information - resources that are no longer available but had the format +detected in the past. +''' + +from optparse import OptionParser +import logging +import json +import datetime + +import common +from running_stats import StatsList + +# pip install 'ProgressBar==2.3' +from progressbar import ProgressBar, Percentage, Bar, ETA + +START_OF_TIME = datetime.datetime(1980, 1, 1) +END_OF_TIME = datetime.datetime(9999, 12, 31) +TODAY = datetime.datetime.now() + +# NB put no CKAN imports here, or logging breaks + + +def migrate(options): + from ckan import model + from ckanext.archiver.model import Archival + from ckanext.qa.model import QA + + resources = common.get_resources(state='active', + publisher_ref=options.publisher, + resource_id=options.resource, + dataset_name=options.dataset) + stats = StatsList() + widgets = ['Resources: ', Percentage(), ' ', Bar(), ' ', ETA()] + progress = ProgressBar(widgets=widgets) + for res in progress(resources): + # Gather the details of QA from TaskStatus + # to fill all properties of QA apart from: + # * package_id + # * resource_id + fields = {} + qa_task_status = model.Session.query(model.TaskStatus)\ + .filter_by(entity_id=res.id)\ + .filter_by(task_type='qa')\ + .filter_by(key='status')\ + .first() + if not qa_task_status: + add_stat('No QA data', res, stats) + continue + qa_error = json.loads(qa_task_status.error) + fields['openness_score'] = int(qa_task_status.value) + fields['openness_score_reason'] = qa_error['reason'] + fields['format'] = qa_error['format'] + qa_date = qa_task_status.last_updated + # NB qa_task_status.last_updated appears to be 1hr ahead of the revision + # time, so some timezone nonesense going on. Can't do much. + archival = Archival.get_for_resource(res.id) + if not archival: + print add_stat('QA but no Archival data', res, stats) + continue + archival_date = archival.updated + # the state of the resource was as it was archived on the date of + # the QA update but we only know when the latest archival was. So + # if it was archived before the QA update thenwe know that was the + # archival, otherwise we don't know when the relevant archival was. + if archival_date and qa_date >= archival_date: + fields['archival_timestamp'] = archival_date + fields['updated'] = archival_date + fields['created'] = archival_date + # Assume the resource URL archived was the one when the + # archival was done (it may not be if the URL was queued and + # there was significant delay before it was archived) + get_resource_as_at = archival_date + else: + # This is common for when a resource is created and qa runs just + # before archiver and you get: + # "This file had not been downloaded at the time of scoring it." + # Just put sensible datetimes since we don't really know the exact + # ones + fields['archival_timestamp'] = qa_date + fields['updated'] = qa_date + fields['created'] = qa_date + get_resource_as_at = qa_date + res_rev = model.Session.query(model.ResourceRevision).\ + filter_by(id=res.id).\ + filter(model.ResourceRevision.revision_timestamp < get_resource_as_at).\ + order_by(model.ResourceRevision.revision_timestamp.desc()).\ + first() + fields['resource_timestamp'] = res_rev.revision_timestamp + + # Compare with any existing data in the Archival table + qa = QA.get_for_resource(res.id) + if qa: + changed = None + for field, value in fields.items(): + if getattr(qa, field) != value: + if options.write: + setattr(qa, field, value) + changed = True + if not changed: + add_stat('Already exists correctly in QA table', res, stats) + continue + add_stat('Updated in QA table', res, stats) + else: + qa = QA.create(res.id) + if options.write: + for field, value in fields.items(): + setattr(qa, field, value) + model.Session.add(qa) + add_stat('Added to QA table', res, stats) + + print 'Summary\n', stats.report() + if options.write: + model.repo.commit_and_remove() + print 'Written' + + +def add_stat(outcome, res, stats, extra_info=None): + try: + # pre CKAN 2.3 model + package_name = res.resource_group.package.name + except AttributeError: + # CKAN 2.3+ model + package_name = res.package.name + res_id = '%s %s' % (package_name, res.id[:4]) + if extra_info: + res_id += ' %s' % extra_info + return '\n' + stats.add(outcome, res_id) + + +def date_str_to_datetime_or_none(date_str): + from ckan.lib.helpers import date_str_to_datetime + if date_str: + return date_str_to_datetime(date_str) + return None + +if __name__ == '__main__': + usage = """Tool to migrate QA data from TaskStatus to QA table + + usage: %prog [options] + """ + parser = OptionParser(usage=usage) + parser.add_option("-w", "--write", + action="store_true", dest="write", + help="write the changes") + parser.add_option('-p', '--publisher', dest='publisher') + parser.add_option('-d', '--dataset', dest='dataset') + parser.add_option('-r', '--resource', dest='resource') + (options, args) = parser.parse_args() + if len(args) != 1: + parser.error('Wrong number of arguments (%i)' % len(args)) + config_ini = args[0] + print 'Loading CKAN config...' + common.load_config(config_ini) + common.register_translator() + print 'Done' + # Setup logging to print debug out for local only + rootLogger = logging.getLogger() + rootLogger.setLevel(logging.WARNING) + localLogger = logging.getLogger(__name__) + localLogger.setLevel(logging.DEBUG) + handler = logging.StreamHandler() + handler.setFormatter(logging.Formatter('%(message)s')) + localLogger.addHandler(handler) + migrate(options) diff --git a/ckanext/qa/bin/running_stats.py b/ckanext/qa/bin/running_stats.py new file mode 100644 index 00000000..5445cf35 --- /dev/null +++ b/ckanext/qa/bin/running_stats.py @@ -0,0 +1,112 @@ +'''Tool for a script to keep track changes performed on a large number +of objects. + +StatsCount - when you are counting incidences of a small set of outcomes +StatsList - when you also want to remember an ID associated with each incidence + +Examples: + +from running_stats import StatsCount +package_stats = StatsCount() +for package in packages: + if package.enabled: + package.delete() + package_stats.increment('deleted') + else: + package_stats.increment('not deleted') +print package_stats.report() +> deleted: 30 +> not deleted: 70 + +from running_stats import StatsList +package_stats = StatsList() +for package in packages: + if package.enabled: + package.delete() + package_stats.add('deleted', package.name) + else: + package_stats.add('not deleted' package.name) +print package_stats.report() +> deleted: 30 pollution-uk, flood-regions, river-quality, ... +> not deleted: 70 spending-bristol, ... + +''' + +import copy +import datetime + +class StatsCount(dict): + # {category:count} + _init_value = 0 + report_value_limit = 150 + + def __init__(self, *args, **kwargs): + self._start_time = datetime.datetime.now() + super(StatsCount, self).__init__(*args, **kwargs) + + def _init_category(self, category): + if not self.has_key(category): + self[category] = copy.deepcopy(self._init_value) + + def increment(self, category): + self._init_category(category) + self[category] += 1 + + def report_value(self, category): + '''Returns the value for a category and value to sort categories by.''' + value = repr(self[category]) + if len(value) > self.report_value_limit: + value = value[:self.report_value_limit] + '...' + return (value, self[category]) + + def report(self, indent=1, order_by_title=False, show_time_taken=True): + lines = [] + indent_str = '\t' * indent + report_dict = dict() + for category in self.keys(): + report_dict[category] = self.report_value(category) + + if order_by_title: + items = sorted(report_dict.iteritems()) + else: + items = sorted(report_dict.iteritems(), + key=lambda x: -x[1][1]) + + for category, value_tuple in items: + value = value_tuple[0] + lines.append(indent_str + '%s: %s' % (category, value)) + if not self: + lines = [indent_str + 'None'] + + if show_time_taken: + time_taken = datetime.datetime.now() - self._start_time + lines.append(indent_str + 'Time taken (h:m:s): %s' % time_taken) + return '\n'.join(lines) + +class StatsList(StatsCount): + # {category:[values]} + _init_value = [] + + def add(self, category, value): + self._init_category(category) + self[category].append(value) + return '%s: %s' % (category, value) # so you can log it too + + def report_value(self, category): + value = self[category] + number_of_values = len(value) + value_str = '%i %r' % (number_of_values, value) + if len(value_str) > self.report_value_limit: + value_str = value_str[:self.report_value_limit] + '...' + return (value_str, number_of_values) + +if __name__ == '__main__': + package_stats = StatsList() + package_stats.add('Success', 'good1') + package_stats.add('Success', 'good2') + package_stats.add('Success', 'good3') + package_stats.add('Success', 'good4') + package_stats.add('Failure', 'bad1') + print package_stats.report() + + print StatsList().report() diff --git a/ckanext/qa/commands.py b/ckanext/qa/commands.py index 93d9ca91..992fb0cd 100644 --- a/ckanext/qa/commands.py +++ b/ckanext/qa/commands.py @@ -1,14 +1,13 @@ -import datetime -import json -import requests -import urlparse import logging -from pylons import config +import sys + +from sqlalchemy import or_ import ckan.plugins as p +REQUESTS_HEADER = {'content-type': 'application/json', + 'User-Agent': 'ckanext-qa commands'} -REQUESTS_HEADER = {'content-type': 'application/json'} class CkanApiError(Exception): pass @@ -20,12 +19,28 @@ class QACommand(p.toolkit.CkanCommand): Usage:: - paster qa [options] update [dataset name/id] + paster qa init + - Creates the database tables that QA expects for storing + results + + paster qa [options] update [dataset/group name/id] - QA analysis on all resources in a given dataset, or on all datasets if no dataset given + paster qa sniff {filepath} + - Opens the file and determines its type by the contents + + paster qa view [dataset name/id] + - See package score information + paster qa clean - - Remove all package score information + - Remove all package score information + + paster qa migrate1 + - Migrates the way results are stored in task_status, + with commit 6f63ab9e 20th March 2013 + (from key='openness_score'/'openness_score_failure_count' to + key='status') The commands should be run from the ckanext-qa directory and expect a development.ini file to be present. Most of the time you will @@ -33,11 +48,18 @@ class QACommand(p.toolkit.CkanCommand): paster qa update --config= """ + summary = __doc__.split('\n')[0] usage = __doc__ - max_args = 2 min_args = 0 + def __init__(self, name): + super(QACommand, self).__init__(name) + self.parser.add_option('-q', '--queue', + action='store', + dest='queue', + help='Send to a particular queue') + def command(self): """ Parse command line arguments and call appropriate method. @@ -53,105 +75,205 @@ def command(self): # won't get disabled self.log = logging.getLogger('ckanext.qa') + if cmd == 'update': + self.update() + elif cmd == 'sniff': + self.sniff() + elif cmd == 'view': + if len(self.args) == 2: + self.view(self.args[1]) + else: + self.view() + elif cmd == 'clean': + self.clean() + elif cmd == 'migrate1': + self.migrate1() + elif cmd == 'init': + self.init_db() + else: + self.log.error('Command "%s" not recognized' % (cmd,)) + + def init_db(self): + import ckan.model as model + from ckanext.qa.model import init_tables + init_tables(model.meta.engine) + + def update(self): from ckan import model - from ckan.model.types import make_uuid + from ckanext.qa import lib + packages = [] + resources = [] + if len(self.args) > 1: + for arg in self.args[1:]: + # try arg as a group id/name + group = model.Group.get(arg) + if group and group.is_organization: + # group.packages() is unreliable for an organization - + # member objects are not definitive whereas owner_org, so + # get packages using owner_org + query = model.Session.query(model.Package)\ + .filter( + or_(model.Package.state == 'active', + model.Package.state == 'pending'))\ + .filter_by(owner_org=group.id) + packages.extend(query.all()) + if not self.options.queue: + self.options.queue = 'bulk' + continue + elif group: + packages.extend(group.packages()) + if not self.options.queue: + self.options.queue = 'bulk' + continue + # try arg as a package id/name + pkg = model.Package.get(arg) + if pkg: + packages.append(pkg) + if not self.options.queue: + self.options.queue = 'priority' + continue + # try arg as a resource id + res = model.Resource.get(arg) + if res: + resources.append(res) + if not self.options.queue: + self.options.queue = 'priority' + continue + else: + self.log.error('Could not recognize as a group, package ' + 'or resource: %r', arg) + sys.exit(1) + else: + # all packages + pkgs = model.Session.query(model.Package)\ + .filter_by(state='active')\ + .order_by('name').all() + packages.extend(pkgs) + if not self.options.queue: + self.options.queue = 'bulk' - # import tasks after load config so CKAN_CONFIG evironment variable - # can be set - import tasks + if packages: + self.log.info('Datasets to QA: %d', len(packages)) + if resources: + self.log.info('Resources to QA: %d', len(resources)) + if not (packages or resources): + self.log.error('No datasets or resources to process') + sys.exit(1) - user = p.toolkit.get_action('get_site_user')( - {'model': model, 'ignore_auth': True}, {} - ) - context = json.dumps({ - 'site_url': config['ckan.site_url'], - 'apikey': user.get('apikey'), - 'username': user.get('name'), - }) + self.log.info('Queue: %s', self.options.queue) + for package in packages: + lib.create_qa_update_package_task(package, self.options.queue) + self.log.info('Queuing dataset %s (%s resources)', + package.name, len(package.resources)) - if cmd == 'update': - for package in self._package_list(): - self.log.info("QA on dataset being added to Celery queue: %s (%d resources)" % - (package.get('name'), len(package.get('resources', [])))) - - for resource in package.get('resources', []): - resource['package'] = package['name'] - pkg = model.Package.get(package['id']) - resource['is_open'] = pkg.isopen() - data = json.dumps(resource) - task_id = make_uuid() - task_status = { - 'entity_id': resource['id'], - 'entity_type': u'resource', - 'task_type': u'qa', - 'key': u'celery_task_id', - 'value': task_id, - 'error': u'', - 'last_updated': datetime.datetime.now().isoformat() - } - task_context = { - 'model': model, - 'user': user.get('name') - } - - p.toolkit.get_action('task_status_update')(task_context, task_status) - tasks.update.apply_async(args=[context, data], task_id=task_id) + for resource in resources: + package = resource.resource_group.package + self.log.info('Queuing resource %s/%s', package.name, resource.id) + lib.create_qa_update_task(resource, self.options.queue) - elif cmd == 'clean': - self.log.error('Command "%s" not implemented' % (cmd,)) + self.log.info('Completed queueing') - else: - self.log.error('Command "%s" not recognized' % (cmd,)) + def sniff(self): + from ckanext.qa.sniff_format import sniff_file_format - def make_post(self, url, data): - headers = {'Content-type': 'application/json', - 'Accept': 'text/plain'} - return requests.post(url, data=json.dumps(data), headers=headers) + if len(self.args) < 2: + print 'Not enough arguments', self.args + sys.exit(1) + for filepath in self.args[1:]: + format_ = sniff_file_format( + filepath, logging.getLogger('ckanext.qa.sniffer')) + if format_: + print 'Detected as: %s - %s' % (format_['display_name'], + filepath) + else: + print 'ERROR: Could not recognise format of: %s' % filepath - def _package_list(self): - """ - Generate the package dicts as declared in self.args. + def view(self, package_ref=None): + from ckan import model - Make API calls for the packages declared in self.args, and generate - the package dicts. + q = model.Session.query(model.TaskStatus).filter_by(task_type='qa') + print 'QA records - %i TaskStatus rows' % q.count() + print ' across %i Resources' % q.distinct('entity_id').count() - If no packages are declared in self.args, then retrieve all the - packages from the catalogue. - """ - api_url = urlparse.urljoin(config['ckan.site_url'], 'api/action') - if len(self.args) > 1: - for id in self.args[1:]: - data = {'id': unicode(id)} - url = api_url + '/package_show' - response = self.make_post(url, data) - if not response.ok: - err = ('Failed to get package %s from url %r: %s' % - (id, url, response.reason)) - self.log.error(err) - raise CkanApiError(err) - yield json.loads(response.content).get('result') - else: - page, limit = 1, 100 - url = api_url + '/current_package_list_with_resources' - response = self.make_post(url, {'page': page, 'limit': limit}) - if not response.ok: - err = ('Failed to get package list with resources from url %r: %s' % - (url, response.reason)) - self.log.error(err) - raise CkanApiError(err) - chunk = json.loads(response.content).get('result') - while(chunk): - page += 1 - for p in chunk: - yield p - url = api_url + '/current_package_list_with_resources' - response = self.make_post(url, {'page': page, 'limit': limit}) - - try: - response.raise_for_status() - except requests.exceptions.RequestException, e: - err = ('Failed to get package list with resources from url %r: %s' % - (url, str(e))) - self.log.error(err) - raise CkanApiError(err) - chunk = json.loads(response.content).get('result') + if package_ref: + pkg = model.Package.get(package_ref) + print 'Package %s %s' % (pkg.name, pkg.id) + for res in pkg.resources: + print 'Resource %s' % res.id + for row in q.filter_by(entity_id=res.id): + print '* %s = %r error=%r' % (row.key, row.value, + row.error) + + def clean(self): + from ckan import model + + print 'Before:' + self.view() + + q = model.Session.query(model.TaskStatus).filter_by(task_type='qa') + q.delete() + model.Session.commit() + + print 'After:' + self.view() + + def migrate1(self): + from ckan import model + from ckan.lib.helpers import json + q_status = model.Session.query(model.TaskStatus) \ + .filter_by(task_type='qa') \ + .filter_by(key='status') + print '* %s with "status" will be deleted e.g. %s' % (q_status.count(), + q_status.first()) + q_failures = model.Session.query(model.TaskStatus) \ + .filter_by(task_type='qa') \ + .filter_by(key='openness_score_failure_count') + print '* %s with openness_score_failure_count to be deleted e.g.\n%s'\ + % (q_failures.count(), q_failures.first()) + q_score = model.Session.query(model.TaskStatus) \ + .filter_by(task_type='qa') \ + .filter_by(key='openness_score') + print '* %s with openness_score to migrate e.g.\n%s' % \ + (q_score.count(), q_score.first()) + q_reason = model.Session.query(model.TaskStatus) \ + .filter_by(task_type='qa') \ + .filter_by(key='openness_score_reason') + print '* %s with openness_score_reason to migrate e.g.\n%s' % \ + (q_reason.count(), q_reason.first()) + raw_input('Press Enter to continue') + + q_status.delete() + model.Session.commit() + print '..."status" deleted' + + q_failures.delete() + model.Session.commit() + print '..."openness_score_failure_count" deleted' + + for task_status in q_score: + reason_task_status = q_reason \ + .filter_by(entity_id=task_status.entity_id) \ + .first() + if reason_task_status: + reason = reason_task_status.value + reason_task_status.delete() + else: + reason = None + + task_status.key = 'status' + task_status.error = json.dumps({ + 'reason': reason, + 'format': None, + 'is_broken': None, + }) + model.Session.commit() + print '..."openness_score" and "openness_score_reason" migrated' + + count = q_reason.count() + q_reason.delete() + model.Session.commit() + print '... %i remaining "openness_score_reason" deleted' % count + + model.Session.flush() + model.Session.remove() + print 'Migration succeeded' diff --git a/ckanext/qa/controller.py b/ckanext/qa/controller.py deleted file mode 100644 index 21525498..00000000 --- a/ckanext/qa/controller.py +++ /dev/null @@ -1,156 +0,0 @@ -try: - import cStringIO as StringIO -except ImportError: - import StringIO - -import json -import csv -from ckanext.qa.reports import ( - five_stars, - resource_five_stars, - broken_resource_links_by_dataset, - broken_resource_links_by_dataset_for_organisation, - organisations_with_broken_resource_links, - organisations_with_broken_resource_links_by_name, -) -from pylons import config - -import ckan.plugins as p -from ckan.lib.base import BaseController, response - - -c = p.toolkit.c -render = p.toolkit.render - -class QAController(BaseController): - - def index(self): - c.organisations = p.toolkit.asbool(config.get('qa.organisations', True)) - return render('qa/index.html') - - def package_index(self): - return render('qa/datasets.html') - - def five_stars(self): - c.packages = five_stars() - return p.toolkit.render('qa/five_stars.html') - - def dataset_broken_resource_links(self): - c.packages = broken_resource_links_by_dataset() - return render('qa/dataset_broken_resource_links.html') - - def organisation_index(self): - return render('qa/organisations.html') - - def broken_resource_links(self, id=None): - if id is None: - c.organisations = organisations_with_broken_resource_links_by_name() - return render('qa/organisation_broken_resource_links.html') - else: - c.id = id - c.organisation = broken_resource_links_by_dataset_for_organisation(organisation_id=id) - return render('qa/broken_resource_links_for_organisation.html') - - headers = [ - 'Organisation Name', - 'Organisation ID', - 'Dataset Name', - 'Dataset ID', - 'Resource URL', - 'Resource Score', - 'Resource Score Reason', - ] - - def resource_five_stars(self, id): - result = resource_five_stars(id) - return self._output_json(result) - - def dataset_five_stars(self, id=None): - result = five_stars(id) - return self._output_json(result) - - def broken_resource_links_by_dataset(self, format='json'): - result = broken_resource_links_by_dataset() - if format == 'csv': - rows = [] - for dataset in result: - for resource in dataset.resources: - row = [ - dataset.name, - dataset.title, - resource.get('url', ''), - unicode(resource.get('openness_score', '')), - resource.get('openness_score_reason', ''), - ] - rows.append(row) - filename = 'broken_links_by_dataset' - return self._output_csv_file(self.headers[2:], rows, filename) - else: - return self._output_json(result) - - def organisations_with_broken_resource_links(self, id, format='json'): - result = organisations_with_broken_resource_links() - if format == 'csv': - rows = [] - for organisation, datasets in result.items(): - for dataset, resources in datasets.items(): - for resource in resources: - row = [ - organisation[0], - unicode(organisation[1]), - dataset[0], - dataset[1], - resource.get('url'), - unicode(resource.get('openness_score')), - resource.get('openness_score_reason'), - ] - rows.append(row) - return self._output_csv_file(self.headers, rows, id) - else: - return self._output_json(result) - - def broken_resource_links_by_dataset_for_organisation(self, id, format='json'): - result = broken_resource_links_by_dataset_for_organisation(id) - if format == 'csv': - rows = [] - for dataset, resources in result['packages'].items(): - for resource in resources: - row = [ - result['title'], - unicode(result['id']), - dataset[0], - dataset[1], - resource.get('url'), - unicode(resource.get('openness_score')), - resource.get('openness_score_reason'), - ] - rows.append(row) - return self._output_csv_file(self.headers, rows, id) - else: - return self._output_json(result) - - def _output_json(self, data): - response.headers['Content-Type'] = 'application/json' - return json.dumps(data) - - def _output_csv_file(self, headers, rows, filename): - filename = '%s.csv' % filename - response.headers['Content-Type'] = 'application/csv' - response.headers['Content-Disposition'] = str('attachment; filename=%s' % (filename)) - csvout = StringIO.StringIO() - csvwriter = csv.writer( - csvout, - dialect='excel', - quoting=csv.QUOTE_NONNUMERIC - ) - csvwriter.writerow(headers) - for row in rows: - items = [] - for item in row: - items.append(item.encode('utf8')) - try: - csvwriter.writerow(items) - except Exception, e: - raise Exception("%s: %s, %s"%(e, row, items)) - csvout.seek(0) - return csvout.read() diff --git a/ckanext/qa/controllers/qa_resource.py b/ckanext/qa/controllers.py similarity index 85% rename from ckanext/qa/controllers/qa_resource.py rename to ckanext/qa/controllers.py index 689b41df..a5c9f07f 100644 --- a/ckanext/qa/controllers/qa_resource.py +++ b/ckanext/qa/controllers.py @@ -1,5 +1,5 @@ """ -The QA Resource Controller +Link Checker Controller - DEPRECATED This controller exposes only one action: check_link """ @@ -9,14 +9,14 @@ import urllib import urlparse -from ckan.lib.base import request +from ckan.lib.base import request, BaseController from ckan.lib.helpers import parse_rfc_2822_date +from ckan.lib import helpers as ckan_helpers from ckanext.archiver.tasks import link_checker, LinkCheckerError -from ckan.lib.base import BaseController -class QAResourceController(BaseController): +class LinkCheckerController(BaseController): def check_link(self): """ @@ -43,7 +43,7 @@ def check_link(self): * Invalid URL (if the string doesn't seem to be a valid URL) * HTTP Error * Timeout - + format/inner_format: A best guess at the format of the file * a_file.csv has format "csv" and inner-format "csv" * a_file.csv.gz.torrent has inner-format "csv" and format "torrent:gz:csv" @@ -74,6 +74,7 @@ def check_link(self): def _check_link(self, url): """ Synchronously check the given link, and return dict representing results. + Does not handle 30x redirects. """ # If a user enters "www.example.com" then we assume they meant "http://www.example.com" @@ -89,7 +90,6 @@ def _check_link(self, url): result = { 'errors': [], 'url_errors': [], - 'inner_format': '', 'format': '', 'mimetype': '', 'size': '', @@ -98,8 +98,7 @@ def _check_link(self, url): try: headers = json.loads(link_checker(json.dumps(context), json.dumps(data))) - result['format'] = ':'.join(self._extract_file_format(url, headers)) - result['inner_format'] = result['format'].split(':')[-1] + result['format'] = self._extract_file_format(url, headers) result['mimetype'] = self._extract_mimetype(headers) result['size'] = headers.get('content-length', '') result['last_modified'] = self._parse_and_format_date(headers.get('last-modified', '')) @@ -111,31 +110,36 @@ def _extract_file_format(self, url, headers): """ Makes a best guess at the file format. - Returns a list of strings, with formats[0] being the outermost format. - If no format can be found, then returns an empty list. - - /path/to/a_file.csv has format "csv" - /path/to/a_file.csv.gz.torrent has format "torrent:gz:csv" (and inner-form "csv") + /path/to/a_file.csv has format "CSV" + /path/to/a_file.csv.zip has format "CSV / Zip" First this function tries to extract the file-extensions from the url, and deduce the format from there. If no file-extension is found, then the mimetype from the headers is passed to `mimetypes.guess_extension()`. """ - # Try to extract format from the file extension(s) formats = [] parsed_url = urlparse.urlparse(url) path = parsed_url.path base, extension = posixpath.splitext(path) while extension: - formats.append(extension[1:]) # strip leading '.' from extension + formats.append(extension[1:].upper()) # strip leading '.' from extension base, extension = posixpath.splitext(base) if formats: - return formats + extension = '.'.join(formats[::-1]).lower() + format_tuple = ckan_helpers.resource_formats().get(extension) + if format_tuple: + return format_tuple[1] + return ' / '.join(formats[::-1]) # No file extension found, attempt to extract format using the mimetype stripped_mimetype = self._extract_mimetype(headers) # stripped of charset + format_tuple = ckan_helpers.resource_formats().get(stripped_mimetype) + if format_tuple: + return format_tuple[1] + extension = mimetypes.guess_extension(stripped_mimetype) - return [extension[1:]] if extension else [] + if extension: + return extension[1:].upper() def _extract_mimetype(self, headers): """ @@ -155,4 +159,3 @@ def _parse_and_format_date(self, date_string): if dt and dt.tzinfo: dt = (dt - dt.utcoffset()).replace(tzinfo=None) return dt.isoformat() if dt else '' - diff --git a/ckanext/qa/controllers/__init__.py b/ckanext/qa/controllers/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/ckanext/qa/fanstatic_library/qa.css b/ckanext/qa/fanstatic_library/qa.css deleted file mode 120000 index 6c248b2f..00000000 --- a/ckanext/qa/fanstatic_library/qa.css +++ /dev/null @@ -1 +0,0 @@ -../public/css/ckanext-qa.css \ No newline at end of file diff --git a/ckanext/qa/fanstatic_library/qa.js b/ckanext/qa/fanstatic_library/qa.js deleted file mode 120000 index 389faa02..00000000 --- a/ckanext/qa/fanstatic_library/qa.js +++ /dev/null @@ -1 +0,0 @@ -../public/scripts/qa.js \ No newline at end of file diff --git a/ckanext/qa/helpers.py b/ckanext/qa/helpers.py new file mode 100644 index 00000000..7d87b0df --- /dev/null +++ b/ckanext/qa/helpers.py @@ -0,0 +1,31 @@ +import copy +from ckan.plugins import toolkit as tk + + +def qa_openness_stars_resource_html(resource): + qa = resource.get('qa') + if not qa: + return tk.literal('') + if not isinstance(qa, dict): + return tk.literal('') + + # Take a copy of the qa dict, because weirdly the renderer appears to add + # keys to it like _ and app_globals. This is bad because when it comes to + # render the debug in the footer those extra keys take about 30s to render, + # for some reason. + extra_vars = copy.deepcopy(qa) + return tk.literal( + tk.render('qa/openness_stars.html', + extra_vars=extra_vars)) + + +def qa_openness_stars_dataset_html(dataset): + qa = dataset.get('qa') + if not qa: + return tk.literal('') + if not isinstance(qa, dict): + return tk.literal('') + extra_vars = copy.deepcopy(qa) + return tk.literal( + tk.render('qa/openness_stars_brief.html', + extra_vars=extra_vars)) diff --git a/ckanext/qa/html.py b/ckanext/qa/html.py deleted file mode 100644 index 3fcdab57..00000000 --- a/ckanext/qa/html.py +++ /dev/null @@ -1,41 +0,0 @@ -from webhelpers.html import literal -from ckan.lib.helpers import icon - - -HEAD_CODE = ''' - -''' - -DL_HTML = ''' -
Quality
-
%s
-''' - - -def _(x): - # TODO Need to link this to i18n._ but I can't seem to import it? - return x - - -def get_star_html(stars, reason): - if stars == 0: - return literal('[%s]' % reason) - - captions = [ - _('Available under an open license.'), - _('Available as structured data (eg. Excel instead of a scanned table).'), - _('Uses non-proprietary formats (e.g., CSV instead of Excel).'), - _('Uses URIs to identify things, so that people can link to it.'), - _('Linked to other data to provide context.') - ] - - caption = "" - for i in range(5, 0, -1): - fail = 'fail' if (i > stars) else '' - text_stars = i * '★' - caption += literal('%s  "%s"' % (fail, text_stars, captions[i-1])) - - star_icons = stars * icon('star') - return literal('%s
[%s] %s
' % (star_icons, reason, caption)) - return literal('[%s] %s%s' % (reason, caption, star_icons)) diff --git a/ckanext/qa/lib.py b/ckanext/qa/lib.py new file mode 100644 index 00000000..bad52e39 --- /dev/null +++ b/ckanext/qa/lib.py @@ -0,0 +1,96 @@ +import os +import json +import re +import logging + +from pylons import config + +from ckan import plugins as p +from ckan.lib.celery_app import celery +from ckan.model.types import make_uuid + + +log = logging.getLogger(__name__) + +_RESOURCE_FORMAT_SCORES = None + + +def resource_format_scores(): + ''' Returns the resource formats scores as a dict keyed by format shortname + (usually extension) + + :param key: format shortname (usually extension) as defined in ckan's + resource_format.json + :param value: string + :returns: openness score (int) - assuming it is accessible and has an open + licence + + Fuller description of the fields are described in + `ckan/config/resource_formats.json`. + ''' + global _RESOURCE_FORMAT_SCORES + if not _RESOURCE_FORMAT_SCORES: + _RESOURCE_FORMAT_SCORES = {} + json_filepath = config.get('qa.resource_format_openness_scores_json') + import ckanext.qa.plugin + if not json_filepath: + json_filepath = os.path.join( + os.path.dirname(os.path.realpath(ckanext.qa.plugin.__file__)), + 'resource_format_openness_scores.json' + ) + with open(json_filepath) as format_file: + try: + file_resource_formats = json.loads(format_file.read()) + except ValueError, e: + # includes simplejson.decoder.JSONDecodeError + raise ValueError('Invalid JSON syntax in %s: %s' % + (json_filepath, e)) + + for format_line in file_resource_formats: + if format_line[0] == '_comment': + continue + format_, score = format_line + if not isinstance(score, int): + raise ValueError('Score must be integer in %s: %s: %r' + % json_filepath, format_, score) + if format_ in _RESOURCE_FORMAT_SCORES: + raise ValueError('Duplicate resource format ' + 'identifier in %s: %s' % + (json_filepath, format_)) + _RESOURCE_FORMAT_SCORES[format_] = score + + return _RESOURCE_FORMAT_SCORES + + +def munge_format_to_be_canonical(format_name): + '''Tries some things to help try and get a resource format to match one of + the canonical ones + ''' + format_name = format_name.strip().lower() + if format_name.startswith('.'): + format_name = format_name[1:] + return re.sub('[^a-z/+]', '', format_name) + + +def create_qa_update_package_task(package, queue): + from pylons import config + task_id = '%s-%s' % (package.name, make_uuid()[:4]) + ckan_ini_filepath = os.path.abspath(config.__file__) + celery.send_task('qa.update_package', args=[ckan_ini_filepath, package.id], + task_id=task_id, queue=queue) + log.debug('QA of package put into celery queue %s: %s', + queue, package.name) + + +def create_qa_update_task(resource, queue): + from pylons import config + if p.toolkit.check_ckan_version(max_version='2.2.99'): + package = resource.resource_group.package + else: + package = resource.package + task_id = '%s/%s/%s' % (package.name, resource.id[:4], make_uuid()[:4]) + ckan_ini_filepath = os.path.abspath(config.__file__) + celery.send_task('qa.update', args=[ckan_ini_filepath, resource.id], + task_id=task_id, queue=queue) + log.debug('QA of resource put into celery queue %s: %s/%s url=%r', + queue, package.name, resource.id, resource.url) diff --git a/ckanext/qa/logic/__init__.py b/ckanext/qa/logic/__init__.py new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/ckanext/qa/logic/__init__.py @@ -0,0 +1 @@ + diff --git a/ckanext/qa/logic/action.py b/ckanext/qa/logic/action.py new file mode 100644 index 00000000..2e9b090e --- /dev/null +++ b/ckanext/qa/logic/action.py @@ -0,0 +1,56 @@ +import logging + +import ckan.plugins as p +from ckanext.archiver.model import Archival +from ckanext.qa.model import QA, aggregate_qa_for_a_dataset + +log = logging.getLogger(__name__) +_ = p.toolkit._ + + +@p.toolkit.side_effect_free +def qa_resource_show(context, data_dict): + ''' + Returns the QA and Archival information for a package or resource. + ''' + model = context['model'] + session = context['session'] + #user = context.get('user') + #p.toolkit.check_access('qa_resource_show', context, data_dict) + + res_id = p.toolkit.get_or_bust(data_dict, 'id') + res = session.query(model.Resource).get(res_id) + if not res: + raise p.toolkit.ObjectNotFound + + archival = Archival.get_for_resource(res_id) + qa = QA.get_for_resource(res_id) + pkg = res.resource_group.package + return_dict = { + 'name': pkg.name, + 'title': pkg.title, + 'id': res.id + } + return_dict['archival'] = archival.as_dict() + return_dict.update(qa.as_dict()) + return return_dict + + +@p.toolkit.side_effect_free +def qa_package_openness_show(context, data_dict): + ''' + Returns the QA score for a package, aggregating the + scores of its resources. + ''' + model = context['model'] + session = context['session'] + p.toolkit.check_access('qa_package_openness_show', context, data_dict) + + dataset_id = p.toolkit.get_or_bust(data_dict, 'id') + dataset = session.query(model.Package).get(dataset_id) + if not dataset: + raise p.toolkit.ObjectNotFound + + qa_objs = QA.get_for_package(dataset.id) + qa_dict = aggregate_qa_for_a_dataset(qa_objs) + return qa_dict diff --git a/ckanext/qa/logic/auth.py b/ckanext/qa/logic/auth.py new file mode 100644 index 00000000..345915da --- /dev/null +++ b/ckanext/qa/logic/auth.py @@ -0,0 +1,6 @@ +def qa_resource_show(context, data_dict): + return {'success': True} + + +def qa_package_openness_show(context, data_dict): + return {'success': True} diff --git a/ckanext/qa/model.py b/ckanext/qa/model.py new file mode 100644 index 00000000..b9ecc213 --- /dev/null +++ b/ckanext/qa/model.py @@ -0,0 +1,120 @@ +import uuid +import datetime + +from sqlalchemy import Column +from sqlalchemy import types +from sqlalchemy.ext.declarative import declarative_base + +import ckan.model as model +from ckan.lib import dictization +from ckan.plugins import toolkit + +log = __import__('logging').getLogger(__name__) + +Base = declarative_base() + + +def make_uuid(): + return unicode(uuid.uuid4()) + + +class QA(Base): + """ + Contains the latest results per dataset/resource for QA tasks + run against them. + """ + __tablename__ = 'qa' + + id = Column(types.UnicodeText, primary_key=True, default=make_uuid) + package_id = Column(types.UnicodeText, nullable=False, index=True) + resource_id = Column(types.UnicodeText, nullable=False, index=True) + resource_timestamp = Column(types.DateTime) # key to resource_revision + archival_timestamp = Column(types.DateTime) + + openness_score = Column(types.Integer) + openness_score_reason = Column(types.UnicodeText) + format = Column(types.UnicodeText) + + created = Column(types.DateTime, default=datetime.datetime.now) + updated = Column(types.DateTime, default=datetime.datetime.now) + + def __repr__(self): + summary = 'score=%s format=%s' % (self.openness_score, self.format) + details = self.openness_score_reason + package = model.Package.get(self.package_id) + package_name = package.name if package else '?%s?' % self.package_id + return '' % \ + (summary, package_name, self.resource_id, details) + + def as_dict(self): + context = {'model': model} + qa_dict = dictization.table_dictize(self, context) + return qa_dict + + @classmethod + def get_for_resource(cls, resource_id): + return model.Session.query(cls) \ + .filter(cls.resource_id == resource_id) \ + .first() + + @classmethod + def get_for_package(cls, package_id): + '''Returns the QA for the given package. May not be any if the package + has no resources or has not been archived. It checks the resources are + not deleted.''' + return model.Session.query(cls) \ + .filter(cls.package_id == package_id) \ + .join(model.Resource, cls.resource_id == model.Resource.id) \ + .filter(model.Resource.state == 'active') \ + .all() + + @classmethod + def create(cls, resource_id): + c = cls() + c.resource_id = resource_id + + # Find the package_id for the resource. + q = model.Session.query(model.Package.id) + if toolkit.check_ckan_version(max_version='2.2.99'): + q = q.join(model.ResourceGroup) + q = q.join(model.Resource) \ + .filter_by(id=c.resource_id) + result = q.first() + if not result or not result[0]: + raise Exception("Missing dataset") + c.package_id = result[0] + return c + + +def aggregate_qa_for_a_dataset(qa_objs): + '''Returns aggregated archival info for a dataset, given the archivals for + its resources (returned by get_for_package). + + :param qa_objs: A list of the QA objects for a dataset's resources + :type qa_objs: A list of QA objects + :returns: QA dict about the dataset, with keys: + openness_score + openness_score_reason + updated + ''' + qa_dict = {'openness_score': None, 'openness_score_reason': None, + 'updated': None} + for qa in qa_objs: + # openness_score takes the highest i.e. optimistic + # openness_score_reason matches the status_id + if qa_dict['openness_score'] is None or \ + qa.openness_score > qa_dict['openness_score']: + qa_dict['openness_score'] = qa.openness_score + qa_dict['openness_score_reason'] = qa.openness_score_reason + # updated is the newest of all the resources + if qa_dict['updated'] is None or \ + qa.updated > qa_dict['updated']: + qa_dict['updated'] = qa.updated + if qa_dict['updated']: + qa_dict['updated'] = qa_dict['updated'].isoformat() + return qa_dict + + +def init_tables(engine): + Base.metadata.create_all(engine) + log.info('QA database tables are set-up') diff --git a/ckanext/qa/plugin.py b/ckanext/qa/plugin.py index 6e65cffc..7f74a98c 100644 --- a/ckanext/qa/plugin.py +++ b/ckanext/qa/plugin.py @@ -1,193 +1,115 @@ -import json -import datetime -import html -import reports +import logging +import types -import ckan.lib.dictization.model_dictize as model_dictize import ckan.model as model import ckan.plugins as p -import ckan.lib.celery_app as celery_app -from ckan.common import _ -resource_dictize = model_dictize.resource_dictize -send_task = celery_app.celery.send_task +from ckanext.archiver.interfaces import IPipe +from ckanext.qa.logic import action, auth +from ckanext.qa.model import QA, aggregate_qa_for_a_dataset +from ckanext.qa import helpers +from ckanext.qa import lib +from ckanext.report.interfaces import IReport -class QAPlugin(p.SingletonPlugin): +log = logging.getLogger(__name__) + +class QAPlugin(p.SingletonPlugin, p.toolkit.DefaultDatasetForm): p.implements(p.IConfigurer, inherit=True) - p.implements(p.IConfigurable) p.implements(p.IRoutes, inherit=True) - p.implements(p.IDomainObjectModification, inherit=True) - p.implements(p.IResourceUrlChange) + p.implements(IPipe, inherit=True) + p.implements(IReport) + p.implements(p.IActions) + p.implements(p.IAuthFunctions) p.implements(p.ITemplateHelpers) + p.implements(p.IPackageController, inherit=True) - def configure(self, config): - self.site_url = config.get('ckan.site_url') + # IConfigurer def update_config(self, config): - # check if new templates - if p.toolkit.check_ckan_version(min_version='2.0'): - if not p.toolkit.asbool(config.get('ckan.legacy_templates', False)): - # add the extend templates - p.toolkit.add_template_directory(config, 'templates_extend') - else: - # legacy templates - p.toolkit.add_template_directory(config, 'templates') - # templates for helper functions - p.toolkit.add_template_directory(config, 'templates_new') - p.toolkit.add_resource('fanstatic_library', 'ckanext-qa') - else: - # FIXME we don't support ckan < 2.0 - p.toolkit.add_template_directory(config, 'templates') - p.toolkit.add_public_directory(config, 'public') + p.toolkit.add_template_directory(config, 'templates') + + # IRoutes def before_map(self, map): - qa_controller = 'ckanext.qa.controller:QAController' - res = 'ckanext.qa.controllers.qa_resource:QAResourceController' + # Link checker - deprecated + res = 'ckanext.qa.controllers:LinkCheckerController' + map.connect('qa_resource_checklink', '/qa/link_checker', + conditions=dict(method=['GET']), + controller=res, + action='check_link') + return map - map.connect('/qa', controller=qa_controller, action='index') + # IPipe - map.connect('/qa/dataset', - controller=qa_controller, action='package_index') - map.connect('/qa/dataset/five_stars', - action='five_stars', - controller=qa_controller) + def receive_data(self, operation, queue, **params): + '''Receive notification from ckan-archiver that a dataset has been + archived.''' + if not operation == 'package-archived': + return + dataset_id = params['package_id'] - map.connect('/qa/dataset/broken_resource_links', - action='dataset_broken_resource_links', - controller=qa_controller) + dataset = model.Package.get(dataset_id) + assert dataset - map.connect('/qa/organisation/', - controller=qa_controller, action='organisation_index') + lib.create_qa_update_package_task(dataset, queue=queue) - map.connect('/qa/organisation/broken_resource_links', - action='broken_resource_links', - controller=qa_controller) + # IReport - map.connect('/qa/organisation/broken_resource_links/:id', - action='broken_resource_links', - controller=qa_controller) + def register_reports(self): + """Register details of an extension's reports""" + from ckanext.qa import reports + return [reports.openness_report_info] - map.connect('qa_resource_checklink', '/qa/link_checker', - conditions=dict(method=['GET']), - controller=res, - action='check_link') + # IActions - map.connect('qa_api', '/api/2/util/qa/{action}', - conditions=dict(method=['GET']), - requirements=dict(action='|'.join([ - 'dataset_five_stars', - 'broken_resource_links_by_dataset', - ])), - controller=qa_controller) - map.connect('/api/2/util/qa/{action}.:(format)', - conditions=dict(method=['GET']), - requirements=dict(action='|'.join([ - 'broken_resource_links_by_dataset', - ])), - controller=qa_controller) - map.connect('/api/2/util/qa/{action}/:(id).:(format)', - conditions=dict(method=['GET']), - requirements=dict(action='|'.join([ - 'organisations_with_broken_resource_links', - 'broken_resource_links_by_dataset_for_organisation', - ])), - controller=qa_controller) + def get_actions(self): + return { + 'qa_resource_show': action.qa_resource_show, + 'qa_package_openness_show': action.qa_package_openness_show, + } - return map + # IAuthFunctions - def notify(self, entity, operation=None): - if not isinstance(entity, model.Resource): - return + def get_auth_functions(self): + return { + 'qa_resource_show': auth.qa_resource_show, + 'qa_package_openness_show': auth.qa_package_openness_show, + } - if operation: - if operation == model.DomainObjectOperation.new: - self._create_task(entity) - else: - # if operation is None, resource URL has been changed, as the - # notify function in IResourceUrlChange only takes 1 parameter - self._create_task(entity) - - def _create_task(self, resource): - user = p.toolkit.get_action('get_site_user')( - {'model': model, 'ignore_auth': True, 'defer_commit': True}, {} - ) - context = json.dumps({ - 'site_url': self.site_url, - 'apikey': user.get('apikey') - }) - - resource_dict = resource_dictize(resource, {'model': model}) - - related_packages = resource.related_packages() - if related_packages: - resource_dict['is_open'] = related_packages[0].isopen() - - data = json.dumps(resource_dict) - - task_id = model.types.make_uuid() - task_status = { - 'entity_id': resource.id, - 'entity_type': u'resource', - 'task_type': u'qa', - 'key': u'celery_task_id', - 'value': task_id, - 'error': u'', - 'last_updated': datetime.datetime.now().isoformat() - } - task_context = { - 'model': model, - 'user': user.get('name'), - } - - p.toolkit.get_action('task_status_update')(task_context, task_status) - send_task('qa.update', args=[context, data], task_id=task_id) - - @classmethod - def get_star_html(cls, resource_id): - report = reports.resource_five_stars(resource_id) - stars = report.get('openness_score', -1) - if stars >= 0: - reason = report.get('openness_score_reason') - return html.get_star_html(stars, reason) - return None - - @classmethod - def new_get_star_html(cls, resource_id): - report = reports.resource_five_stars(resource_id) - stars = report.get('openness_score', -1) - reason = p.toolkit._('Not Rated') - if stars >= 0: - reason = report.get('openness_score_reason') - extra_vars = {'stars': stars, 'reason': reason} - return p.toolkit.literal(p.toolkit.render('qa/snippets/stars_module.html', - extra_vars=extra_vars)) - - @classmethod - def get_star_info_html(cls, stars): - extra_vars = {'stars': stars} - return p.toolkit.literal(p.toolkit.render('qa/snippets/stars_info.html', - extra_vars=extra_vars)) - - @classmethod - def get_star_rating_html(cls, stars, reason): - extra_vars = {'stars': stars, 'reason': reason} - return p.toolkit.literal(p.toolkit.render('qa/snippets/stars.html', - extra_vars=extra_vars)) - - @classmethod - def get_qa_captions(cls): - return [ - _('Available under an open license.'), - _('Available as structured data (eg. Excel instead of a scanned table).'), - _('Uses non-proprietary formats (e.g., XLSX instead of XLS, or even better CSV).'), - _('Provides schema and uses URIs to identify things.'), - _('Linked to other data to provide context.') - ] + # ITemplateHelpers def get_helpers(self): - return {'qa_stars': self.new_get_star_html, - 'qa_stars_rating': self.get_star_rating_html, - 'qa_stars_info': self.get_star_info_html, - 'qa_captions': self.get_qa_captions} + return { + 'qa_openness_stars_resource_html': + helpers.qa_openness_stars_resource_html, + 'qa_openness_stars_dataset_html': + helpers.qa_openness_stars_dataset_html, + } + + # IPackageController + + def after_show(self, context, pkg_dict): + # Insert the qa info into the package_dict so that it is + # available on the API. + # When you edit the dataset, these values will not show in the form, + # it they will be saved in the resources (not the dataset). I can't see + # and easy way to stop this, but I think it is harmless. It will get + # overwritten here when output again. + qa_objs = QA.get_for_package(pkg_dict['id']) + if not qa_objs: + return + # dataset + dataset_qa = aggregate_qa_for_a_dataset(qa_objs) + pkg_dict['qa'] = dataset_qa + # resources + qa_by_res_id = dict((a.resource_id, a) for a in qa_objs) + for res in pkg_dict['resources']: + qa = qa_by_res_id.get(res['id']) + if qa: + qa_dict = qa.as_dict() + del qa_dict['id'] + del qa_dict['package_id'] + del qa_dict['resource_id'] + res['qa'] = qa_dict diff --git a/ckanext/qa/public/css/ckanext-qa.css b/ckanext/qa/public/css/ckanext-qa.css deleted file mode 100644 index 6a7c04f6..00000000 --- a/ckanext/qa/public/css/ckanext-qa.css +++ /dev/null @@ -1,52 +0,0 @@ -.qa-table tr.bad_link td { - background-color: pink; -} - -.qa-table tr.good_link td { - background-color: lightgreen; -} - -#content td.cached-resource { - padding-bottom: 2em; -} - -.bad_link td:first-child { - max-width: 600px; - width: 600px; - word-wrap: break-word; -} - -.qa-table-resources { - width: 200px; - max-width: 200px; -} - -.search-result .star-rating { - display: block; - padding-top: 5px; - text-align: right; -} -.search-result .no-stars { - color: #aaa; - font-size: 11px; -} - -// New styles for QA - -.module-ratings .rating-info li { - line-height: 18px; -} - -.module-ratings .rating-info li span { - font-size: 12px; - margin-right: 2px; -} - -.module-ratings .rating-info .fail { - color: #afafaf; -} - -.module-ratings .rating-info-toggle { - padding-top: 6px; - padding-bottom: 6px; -} diff --git a/ckanext/qa/public/images/star.png b/ckanext/qa/public/images/star.png deleted file mode 100755 index 3cdee9b4..00000000 Binary files a/ckanext/qa/public/images/star.png and /dev/null differ diff --git a/ckanext/qa/public/scripts/qa.js b/ckanext/qa/public/scripts/qa.js deleted file mode 100644 index 07f580b9..00000000 --- a/ckanext/qa/public/scripts/qa.js +++ /dev/null @@ -1,26 +0,0 @@ -this.jQuery(function (jQuery) { - jQuery('[data-toggle="ratings"]').on({ - click: function (event) { - event.preventDefault(); - var toggle = jQuery(event.target); - var target = jQuery(toggle.data('target')); - - if (target.is(':visible')) { - target.hide(); - toggle.trigger('hidden'); - } else { - target.show(); - toggle.trigger('shown'); - } - }, - shown: function (event) { - var link = jQuery(event.target); - link.data('showText', link.text()); - link.text(link.data('hideText')); - }, - hidden: function (event) { - var link = jQuery(event.target); - link.text(link.data('showText')); - } - }); -}); diff --git a/ckanext/qa/reports.py b/ckanext/qa/reports.py index 8ac19c11..040d0859 100644 --- a/ckanext/qa/reports.py +++ b/ckanext/qa/reports.py @@ -1,239 +1,191 @@ -from collections import namedtuple -from sqlalchemy import or_, and_ +from collections import Counter +import copy +try: + from collections import OrderedDict # from python 2.7 +except ImportError: + from sqlalchemy.util import OrderedDict + import ckan.model as model import ckan.plugins as p -import ckan.lib.dictization.model_dictize as model_dictize - -resource_dictize = model_dictize.resource_dictize - - -def five_stars(id=None): - """ - Return a list of dicts: 1 for each dataset that has an openness score. - - Each dict is of the form: - {'name': , 'title': , 'openness_score': } - """ - if id: - pkg = model.Package.get(id) - if not pkg: - return "Not found" - - # take the maximum openness score among dataset resources to be the - # overall dataset openness core - query = model.Session.query(model.Package.name, model.Package.title, - model.Resource.id, - model.TaskStatus.value.label('value')) - query = _join_package_to_resource_group_if_it_exists(query) - query = query \ - .join(model.Resource)\ - .join(model.TaskStatus, model.TaskStatus.entity_id == model.Resource.id)\ - .filter(model.TaskStatus.key==u'openness_score')\ - .group_by(model.Package.name, model.Package.title, model.Resource.id, model.TaskStatus.value)\ - .distinct() - - if id: - query = query.filter(model.Package.id == pkg.id) - - results = [] - for row in query: - results.append({ - 'name': row.name, - 'title': row.title + u' ' + row.id, - 'openness_score': row.value - }) - - return results - - -def resource_five_stars(id): - """ - Return a dict containing the QA results for a given resource - - Each dict is of the form: - {'openness_score': , 'openness_score_reason': , 'failure_count': } - """ - if id: - r = model.Resource.get(id) - if not r: - return {} # Not found - - context = {'model': model, 'session': model.Session} - data = {'entity_id': r.id, 'task_type': 'qa'} - - try: - data['key'] = 'openness_score' - status = p.toolkit.get_action('task_status_show')(context, data) - openness_score = int(status.get('value')) - openness_score_updated = status.get('last_updated') - - data['key'] = 'openness_score_reason' - status = p.toolkit.get_action('task_status_show')(context, data) - openness_score_reason = status.get('value') - openness_score_reason_updated = status.get('last_updated') - - data['key'] = 'openness_score_failure_count' - status = p.toolkit.get_action('task_status_show')(context, data) - openness_score_failure_count = int(status.get('value')) - openness_score_failure_count_updated = status.get('last_updated') - - last_updated = max( - openness_score_updated, - openness_score_reason_updated, - openness_score_failure_count_updated ) - - result = { - 'openness_score': openness_score, - 'openness_score_reason': openness_score_reason, - 'openness_score_failure_count': openness_score_failure_count, - 'openness_score_updated': openness_score_updated, - 'openness_score_reason_updated': openness_score_reason_updated, - 'openness_score_failure_count_updated': openness_score_failure_count_updated, - 'openness_updated': last_updated - } - except p.toolkit.ObjectNotFound: - result = {} - - return result - - -def broken_resource_links_by_dataset(): - """ - Return a list of named tuples, one for each dataset that contains - broken resource links (defined as resources with an openness score of 0). - - The named tuple is of the form: - (name (str), title (str), resources (list of dicts)) - """ - query = model.Session.query(model.Package.name, model.Package.title, model.Resource) - query = _join_package_to_resource_group_if_it_exists(query) - query = query \ - .join(model.Resource)\ - .join(model.TaskStatus, model.TaskStatus.entity_id == model.Resource.id)\ - .filter(model.TaskStatus.key == u'openness_score')\ - .filter(model.TaskStatus.value == u'0')\ - .distinct() - - context = {'model': model, 'session': model.Session} - results = {} - for name, title, resource in query: - resource = resource_dictize(resource, context) - - data = {'entity_id': resource['id'], 'task_type': 'qa', 'key': 'openness_score_reason'} - status = p.toolkit.get_action('task_status_show')(context, data) - resource['openness_score_reason'] = status.get('value') - - if name in results: - results[name].resources.append(resource) - else: - DatasetTuple = namedtuple('DatasetTuple', ['name', 'title', 'resources']) - results[name] = DatasetTuple(name, title or name, [resource]) - - return results.values() - - -def broken_resource_links_by_dataset_for_organisation(organisation_id): - result = _get_broken_resource_links(organisation_id) - if result: - return { - 'id': result.keys()[0][1], - 'title': result.keys()[0][0], - 'packages': result.values()[0] - } - else: - return { - 'id': None, - 'title': None, - 'packages': [] - } - - -def organisations_with_broken_resource_links_by_name(): - result = _get_broken_resource_links().keys() - result.sort() - return result - - -def organisations_with_broken_resource_links(): - return _get_broken_resource_links() - - -def _get_broken_resource_links(organisation_id=None): - query = model.Session.query(model.Package.name, model.Package.title, model.Package.owner_org, model.Group.title.label('org_title'), model.Resource)\ - .join(model.Group, model.Package.owner_org == model.Group.id) - - query = query \ - .join(model.Resource)\ - .join(model.TaskStatus, model.TaskStatus.entity_id == model.Resource.id)\ - .filter(model.Group.type == u'organization')\ - .filter(model.TaskStatus.key == u'openness_score')\ - .filter(model.TaskStatus.value == u'0')\ - .distinct() - - if organisation_id: - query = query.filter(model.Package.owner_org == organisation_id) +from ckanext.report import lib - context = {'model': model, 'session': model.Session} - data = [] - for row in query: - resource = resource_dictize(row.Resource, context) - task_data = {'entity_id': resource['id'], 'task_type': 'qa', 'key': 'openness_score_reason'} - status = p.toolkit.get_action('task_status_show')(context, task_data) - resource['openness_score'] = u'0' - resource['openness_score_reason'] = status.get('value') +import logging - data.append([row.name, row.title, row.owner_org, row.org_title, resource]) +log = logging.getLogger(__name__) - return _collapse(data, [_extract_publisher, _extract_dataset]) - - -def _collapser(data, key_func=None): - result = {} - for row in data: - if key_func: - row = key_func(row) - key = row[0] - if len(row) == 2: - row = row[1] - else: - row = row[1:] - if key in result: - result[key].append(row) - else: - result[key] = [row] - return result - - -def _collapse(data, fn): - first = _collapser(data, fn[0]) - result = {} - for k, v in first.items(): - result[k] = _collapser(v, fn[1]) - return result - - -def _extract_publisher(row): - return [(row[3], row[2])] + [row[0], row[1], row[4]] - - -def _extract_dataset(row): - """ - Extract dataset info form a query result row. - Each row should be a list of the form [name, title, Resource] - - Returns a list of the form: - - [(name, title), Resource] - """ - return [(row[0], row[1]), row[2]] +def openness_report(organization, include_sub_organizations=False): + if organization is None: + return openness_index(include_sub_organizations=include_sub_organizations) + else: + return openness_for_organization(organization=organization, include_sub_organizations=include_sub_organizations) + + +def openness_index(include_sub_organizations=False): + '''Returns the counts of 5 stars of openness for all organizations.''' + + context = {'model': model, 'session': model.Session, 'ignore_auth': True} + total_score_counts = Counter() + counts = {} + # Get all the scores and build up the results by org + for org in add_progress_bar(model.Session.query(model.Group) + .filter(model.Group.type == 'organization') + .filter(model.Group.state == 'active').all()): + scores = [] + # NB org.packages() misses out many - see: + # http://redmine.dguteam.org.uk/issues/1844 + pkgs = model.Session.query(model.Package) \ + .filter_by(owner_org=org.id) \ + .filter_by(state='active') \ + .all() + for pkg in pkgs: + try: + qa = p.toolkit.get_action('qa_package_openness_show')(context, {'id': pkg.id}) + except p.toolkit.ObjectNotFound: + log.warning('No QA info for package %s', pkg.name) + return + scores.append(qa['openness_score']) + score_counts = Counter(scores) + total_score_counts += score_counts + counts[org.name] = { + 'organization_title': org.title, + 'score_counts': score_counts, + } -def _join_package_to_resource_group_if_it_exists(query): - '''Newer versions of CKAN (from 2.3) have dropped ResourceGroup, but we - will do the join to it for older CKAN versions, to maintain compatibility. - ''' - resource_group_exists = 'ResourceGroup' in dir(model) - if resource_group_exists: - query = query.join(model.ResourceGroup, - model.Package.id == model.ResourceGroup.package_id) - return query + counts_with_sub_orgs = copy.deepcopy(counts) # new dict + if include_sub_organizations: + for org_name in counts_with_sub_orgs: + org = model.Group.by_name(org_name) + + for sub_org_id, sub_org_name, sub_org_title, sub_org_parent_id \ + in org.get_children_group_hierarchy(type='organization'): + if sub_org_name not in counts: + # occurs only if there is an organization created since the last loop? + continue + counts_with_sub_orgs[org_name]['score_counts'] += \ + counts[sub_org_name]['score_counts'] + results = counts_with_sub_orgs + else: + results = counts + + table = [] + for org_name, org_counts in results.iteritems(): + total_stars = sum([k*v for k, v in org_counts['score_counts'].items() if k]) + num_pkgs_scored = sum([v for k, v in org_counts['score_counts'].items() + if k is not None]) + average_stars = round(float(total_stars) / num_pkgs_scored, 1) \ + if num_pkgs_scored else 0.0 + row = OrderedDict(( + ('organization_title', results[org_name]['organization_title']), + ('organization_name', org_name), + ('total_stars', total_stars), + ('average_stars', average_stars), + )) + row.update(jsonify_counter(org_counts['score_counts'])) + table.append(row) + + table.sort(key=lambda x: (-x['total_stars'], + -x['average_stars'])) + + # Get total number of packages & resources + num_packages = model.Session.query(model.Package)\ + .filter_by(state='active')\ + .count() + return {'table': table, + 'total_score_counts': jsonify_counter(total_score_counts), + 'num_packages_scored': sum(total_score_counts.values()), + 'num_packages': num_packages, + } + +def openness_for_organization(organization=None, include_sub_organizations=False): + org = model.Group.get(organization) + if not org: + raise p.toolkit.ObjectNotFound + + if not include_sub_organizations: + orgs = [org] + else: + orgs = lib.go_down_tree(org) + + context = {'model': model, 'session': model.Session, 'ignore_auth': True} + score_counts = Counter() + rows = [] + num_packages = 0 + for org in orgs: + # NB org.packages() misses out many - see: + # http://redmine.dguteam.org.uk/issues/1844 + pkgs = model.Session.query(model.Package) \ + .filter_by(owner_org=org.id) \ + .filter_by(state='active') \ + .all() + num_packages += len(pkgs) + for pkg in pkgs: + try: + qa = p.toolkit.get_action('qa_package_openness_show')(context, {'id': pkg.id}) + except p.toolkit.ObjectNotFound: + log.warning('No QA info for package %s', pkg.name) + return + rows.append(OrderedDict(( + ('dataset_name', pkg.name), + ('dataset_title', pkg.title), + ('dataset_notes', lib.dataset_notes(pkg)), + ('organization_name', org.name), + ('organization_title', org.title), + ('openness_score', qa['openness_score']), + ('openness_score_reason', qa['openness_score_reason']), + ))) + score_counts[qa['openness_score']] += 1 + + total_stars = sum([k*v for k, v in score_counts.items() if k]) + num_pkgs_with_stars = sum([v for k, v in score_counts.items() + if k is not None]) + average_stars = round(float(total_stars) / num_pkgs_with_stars, 1) \ + if num_pkgs_with_stars else 0.0 + + return {'table': rows, + 'score_counts': jsonify_counter(score_counts), + 'total_stars': total_stars, + 'average_stars': average_stars, + 'num_packages_scored': len(rows), + 'num_packages': num_packages, + } + + +def openness_report_combinations(): + for organization in lib.all_organizations(include_none=True): + for include_sub_organizations in (False, True): + yield {'organization': organization, + 'include_sub_organizations': include_sub_organizations} + + +openness_report_info = { + 'name': 'openness', + 'title': 'Openness (Five Stars)', + 'description': 'Datasets graded on Tim Berners Lees\' Five Stars of Openness - openly licensed, openly accessible, structured, open format, URIs for entities, linked.', + 'option_defaults': OrderedDict((('organization', None), + ('include_sub_organizations', False), + )), + 'option_combinations': openness_report_combinations, + 'generate': openness_report, + 'template': 'report/openness.html', + } + + +def jsonify_counter(counter): + # When counters are stored as JSON, integers become strings. Do the conversion + # here to ensure that when you run the report the first time, you get the same + # response as subsequent times that go through the cache/JSON. + return dict((str(k) if k is not None else k, v) for k, v in counter.items()) + + +def add_progress_bar(iterable, caption=None): + try: + # Add a progress bar, if it is installed + import progressbar + bar = progressbar.ProgressBar(widgets=[ + (caption + ' ') if caption else '', + progressbar.Percentage(), ' ', + progressbar.Bar(), ' ', progressbar.ETA()]) + return bar(iterable) + except ImportError: + return iterable diff --git a/ckanext/qa/resource_format_openness_scores.json b/ckanext/qa/resource_format_openness_scores.json new file mode 100644 index 00000000..864e7504 --- /dev/null +++ b/ckanext/qa/resource_format_openness_scores.json @@ -0,0 +1,76 @@ +[ + ["_comment", + "JSON field order as follows:", + ["Format", "Score"], + "where:", + " * Format - the short name for it, corresponding to the name in ckan's resource_formats.json.", + " * Score - openness score to award it. Integer from 0 to 5. 0 means it is likely not data e.g. a web page is probably just a link to the data, an OWL file is an ontology rather than data, an EXE is probably not data, ZIP will be looked inside but we can't be sure its data so gets 1, images may be satellite weather images so give benefit of doubt. RDFa is likely basic document info for a web page added automatically by a CMS, not real data." + ], + ["N3", 5], + ["SPARQL", 5], + ["RDF", 5], + ["TTL", 5], + ["KML", 3], + ["WCS", 3], + ["NetCDF", 3], + ["TSV", 3], + ["WFS", 3], + ["KMZ", 3], + ["QGIS", 3], + ["ODS", 3], + ["JSON", 3], + ["ODB", 3], + ["ODF", 3], + ["ODG", 3], + ["XML", 3], + ["WMS", 3], + ["WMTS", 3], + ["SVG", 3], + ["JPEG", 3], + ["CSV", 3], + ["Atom Feed", 3], + ["XYZ", 3], + ["PNG", 3], + ["RSS", 3], + ["GeoJSON", 3], + ["IATI", 3], + ["ICS", 3], + ["XLS", 2], + ["MDB", 2], + ["ArcGIS Map Service", 2], + ["BMP", 2], + ["TIFF", 2], + ["XLSX", 2], + ["GIF", 2], + ["E00", 2], + ["MrSID", 2], + ["ArcGIS Map Preview", 2], + ["MOP", 2], + ["Esri REST", 2], + ["dBase", 2], + ["SHP", 2], + ["PPTX", 1], + ["DOC", 1], + ["ArcGIS Online Map", 1], + ["ZIP", 1], + ["GZ", 1], + ["ODT", 1], + ["RAR", 1], + ["TXT", 1], + ["DCR", 1], + ["DOCX", 1], + ["BIN", 1], + ["PPT", 1], + ["ODP", 1], + ["PDF", 1], + ["ODC", 1], + ["MXD", 1], + ["TAR", 1], + ["EXE", 0], + ["JS", 0], + ["Perl", 0], + ["OWL", 0], + ["HTML", 0], + ["XSLT", 0], + ["RDFa", 0] +] diff --git a/ckanext/qa/sniff_format.py b/ckanext/qa/sniff_format.py new file mode 100644 index 00000000..8b7ca66d --- /dev/null +++ b/ckanext/qa/sniff_format.py @@ -0,0 +1,525 @@ +import re +import zipfile +import os +from collections import defaultdict +import subprocess +import StringIO + +import xlrd +import magic +import messytables + +from ckanext.qa import lib +from ckan.lib import helpers as ckan_helpers + + +def sniff_file_format(filepath, log): + '''For a given filepath, work out what file format it is. + + Returns a dict with format as a string, which is the format's canonical + shortname (as defined by ckan's resource_formats.json) and a key that says + if it is contained in a zip or something. + + e.g. {'format': 'CSV', + 'container': 'zip', + } + or None if it can\'t tell what it is. + + Note, log is a logger, either a Celery one or a standard Python logging + one. + ''' + format_ = None + log.info('Sniffing file format of: %s', filepath) + filepath_utf8 = filepath.encode('utf8') if isinstance(filepath, unicode) \ + else filepath + mime_type = magic.from_file(filepath_utf8, mime=True) + log.info('Magic detects file as: %s', mime_type) + if mime_type: + if mime_type == 'application/xml': + with open(filepath) as f: + buf = f.read(5000) + format_ = get_xml_variant_including_xml_declaration(buf, log) + elif mime_type == 'application/zip': + format_ = get_zipped_format(filepath, log) + elif mime_type in ('application/msword', 'application/vnd.ms-office'): + # In the past Magic gives the msword mime-type for Word and other + # MS Office files too, so use BSD File to be sure which it is. + format_ = run_bsd_file(filepath, log) + if not format_ and is_excel(filepath, log): + format_ = {'format': 'XLS'} + elif mime_type == 'application/octet-stream': + # Excel files sometimes come up as this + if is_excel(filepath, log): + format_ = {'format': 'XLS'} + else: + # e.g. Shapefile + format_ = run_bsd_file(filepath, log) + if not format_: + with open(filepath) as f: + buf = f.read(500) + format_ = is_html(buf, log) + elif mime_type == 'text/html': + # Magic can mistake IATI for HTML + with open(filepath) as f: + buf = f.read(100) + if is_iati(buf, log): + format_ = {'format': 'IATI'} + + if format_: + return format_ + + format_tuple = ckan_helpers.resource_formats().get(mime_type) + if format_tuple: + format_ = {'format': format_tuple[1]} + + if not format_: + if mime_type.startswith('text/'): + # is it JSON? + with open(filepath, 'rU') as f: + buf = f.read(10000) + if is_json(buf, log): + format_ = {'format': 'JSON'} + # is it CSV? + elif is_csv(buf, log): + format_ = {'format': 'CSV'} + elif is_psv(buf, log): + format_ = {'format': 'PSV'} + + if not format_: + log.warning('Mimetype not recognised by CKAN as a data format: %s', + mime_type) + + if format_: + log.info('Mimetype translates to filetype: %s', + format_['format']) + + if format_['format'] == 'TXT': + # is it JSON? + with open(filepath, 'rU') as f: + buf = f.read(10000) + if is_json(buf, log): + format_ = {'format': 'JSON'} + # is it CSV? + elif is_csv(buf, log): + format_ = {'format': 'CSV'} + elif is_psv(buf, log): + format_ = {'format': 'PSV'} + # XML files without the "" tag end up here + elif is_xml_but_without_declaration(buf, log): + format_ = get_xml_variant_without_xml_declaration(buf, log) + elif is_ttl(buf, log): + format_ = {'format': 'TTL'} + + elif format_['format'] == 'HTML': + # maybe it has RDFa in it + with open(filepath) as f: + buf = f.read(100000) + if has_rdfa(buf, log): + format_ = {'format': 'RDFa'} + + else: + # Excel files sometimes not picked up by magic, so try alternative + if is_excel(filepath, log): + format_ = {'format': 'XLS'} + # BSD file picks up some files that Magic misses + # e.g. some MS Word files + if not format_: + format_ = run_bsd_file(filepath, log) + + if not format_: + log.warning('Could not detect format of file: %s', filepath) + return format_ + +def is_json(buf, log): + '''Returns whether this text buffer (potentially truncated) is in + JSON format.''' + string = '"[^"]*"' + string_re = re.compile(string) + number_re = re.compile('-?\d+(\.\d+)?([eE][+-]?\d+)?') + extra_values_re = re.compile('true|false|null') + object_start_re = re.compile('{%s:\s?' % string) + object_middle_re = re.compile('%s:\s?' % string) + object_end_re = re.compile('}') + comma_re = re.compile(',\s?') + array_start_re = re.compile('\[') + array_end_re = re.compile('\]') + any_value_regexs = [string_re, number_re, object_start_re, array_start_re, extra_values_re] + + # simplified state machine - just looks at stack of object/array and + # ignores contents of them, beyond just being simple JSON bits + pos = 0 + state_stack = [] # stack of 'object', 'array' + number_of_matches = 0 + while pos < len(buf): + part_of_buf = buf[pos:] + if pos == 0: + potential_matches = (object_start_re, array_start_re, string_re, number_re, extra_values_re) + elif not state_stack: + # cannot have content beyond the first byte that is not nested + return False + elif state_stack[-1] == 'object': + # any value + potential_matches = [comma_re, object_middle_re, object_end_re] + any_value_regexs + elif state_stack[-1] == 'array': + # any value or end it + potential_matches = any_value_regexs + [comma_re, array_end_re] + for matcher in potential_matches: + if matcher.match(part_of_buf): + if matcher in any_value_regexs and state_stack and state_stack[-1] == 'comma': + state_stack.pop() + if matcher == object_start_re: + state_stack.append('object') + elif matcher == array_start_re: + state_stack.append('array') + elif matcher in (object_end_re, array_end_re): + try: + state = state_stack.pop() + except IndexError: + # nothing to pop + log.info('Not JSON - %i matches', number_of_matches) + return False + break + else: + # no match + log.info('Not JSON - %i matches', number_of_matches) + return False + match_length = matcher.match(part_of_buf).end() + #print "MATCHED %r %r %s" % (matcher.match(part_of_buf).string[:match_length], matcher.pattern, state_stack) + pos += match_length + number_of_matches += 1 + if number_of_matches > 5: + log.info('JSON detected: %i matches', number_of_matches) + return True + + log.info('JSON detected: %i matches', number_of_matches) + return True + +def is_csv(buf, log): + '''If the buffer is a CSV file then return True.''' + buf_rows = StringIO.StringIO(buf) + table_set = messytables.CSVTableSet(buf_rows) + return _is_spreadsheet(table_set, 'CSV', log) + +def is_psv(buf, log): + '''If the buffer is a PSV file then return True.''' + buf_rows = StringIO.StringIO(buf) + table_set = messytables.CSVTableSet(buf_rows, delimiter='|') + return _is_spreadsheet(table_set, 'PSV', log) + +def _is_spreadsheet(table_set, format, log): + def get_cells_per_row(num_cells, num_rows): + if not num_rows: + return 0 + return float(num_cells) / float(num_rows) + num_cells = num_rows = 0 + try: + table = table_set.tables[0] + # Iterate through the table.sample (sample because otherwise + # it will barf if there is an unclosed string at the end) + for row in table.sample: + if row: + # Must have enough cells + num_cells += len(row) + num_rows += 1 + if num_cells > 20 or num_rows > 10: + cells_per_row = get_cells_per_row(num_cells, num_rows) + # over the long term, 2 columns is the minimum + if cells_per_row > 1.9: + log.info('Is %s because %.1f cells per row (%i cells, %i rows)', \ + format, + get_cells_per_row(num_cells, num_rows), + num_cells, num_rows) + return True + finally: + pass + # if file is short then be more lenient + if num_cells > 3 or num_rows > 1: + cells_per_row = get_cells_per_row(num_cells, num_rows) + if cells_per_row > 1.5: + log.info('Is %s because %.1f cells per row (%i cells, %i rows)', \ + format, + get_cells_per_row(num_cells, num_rows), + num_cells, num_rows) + return True + log.info('Not %s - not enough valid cells per row ' + '(%i cells, %i rows, %.1f cells per row)', \ + format, num_cells, num_rows, get_cells_per_row(num_cells, num_rows)) + return False + +def is_html(buf, log): + '''If this buffer is HTML, return that format type, else None.''' + xml_re = '.{0,3}\s*(<\?xml[^>]*>\s*)?(]*>\s*)?]*>' + match = re.match(xml_re, buf, re.IGNORECASE) + if match: + log.info('HTML tag detected') + return {'format': 'HTML'} + log.debug('Not HTML') + +def is_iati(buf, log): + '''If this buffer is IATI format, return that format type, else None.''' + xml_re = '.{0,3}\s*(<\?xml[^>]*>\s*)?(]*>\s*)?]*>' + match = re.match(xml_re, buf, re.IGNORECASE) + if match: + log.info('IATI tag detected') + return {'format': 'IATI'} + log.debug('Not IATI') + +def is_xml_but_without_declaration(buf, log): + '''Decides if this is a buffer of XML, but missing the usual + tag.''' + xml_re = '.{0,3}\s*(<\?xml[^>]*>\s*)?(]*>\s*)?<([^>\s]*)([^>]*)>' + match = re.match(xml_re, buf, re.IGNORECASE) + if match: + top_level_tag_name, top_level_tag_attributes = match.groups()[-2:] + if 'xmlns:' not in top_level_tag_attributes and \ + (len(top_level_tag_name) > 20 or + len(top_level_tag_attributes) > 200): + log.debug('Not XML (without declaration) - unlikely length first tag: <%s %s>', + top_level_tag_name, top_level_tag_attributes) + return False + log.info('XML detected - first tag name: <%s>', top_level_tag_name) + return True + log.debug('Not XML (without declaration) - tag not detected') + return False + +def get_xml_variant_including_xml_declaration(buf, log): + '''If this buffer is in a format based on XML and has the + declaration, return the format type.''' + return get_xml_variant_without_xml_declaration(buf, log) + log.debug('XML declaration not found: %s', buf) + +def get_xml_variant_without_xml_declaration(buf, log): + '''If this buffer is in a format based on XML, without any XML declaration + or other boilerplate, return the format type.''' + # Parse the XML to find the first tag name. + # Using expat directly, rather than go through xml.sax, since using I + # couldn't see how to give it a string, so used StringIO which failed + # for some files curiously. + import xml.parsers.expat + class GotFirstTag(Exception): + pass + def start_element(name, attrs): + raise GotFirstTag(name) + p = xml.parsers.expat.ParserCreate() + p.StartElementHandler = start_element + try: + p.Parse(buf) + except GotFirstTag, e: + top_level_tag_name = str(e).lower() + except xml.sax.SAXException, e: + log.info('Sax parse error: %s %s', e, buf) + return {'format': 'XML'} + + log.info('Top level tag detected as: %s', top_level_tag_name) + top_level_tag_name = top_level_tag_name.replace('rdf:rdf', 'rdf') + top_level_tag_name = top_level_tag_name.replace('wms_capabilities', 'wms') # WMS 1.3 + top_level_tag_name = top_level_tag_name.replace('wmt_ms_capabilities', 'wms') # WMS 1.1.1 + top_level_tag_name = re.sub('wfs:.*', 'wfs', top_level_tag_name) # WFS 2.0 + top_level_tag_name = top_level_tag_name.replace('wfs_capabilities', 'wfs') # WFS 1.0/1.1 + top_level_tag_name = top_level_tag_name.replace('feed', 'atom feed') + if top_level_tag_name.lower() == 'capabilities' and \ + 'xmlns="http://www.opengis.net/wmts/' in buf: + top_level_tag_name = 'wmts' + if top_level_tag_name.lower() in ('coveragedescriptions', 'capabilities') and \ + 'xmlns="http://www.opengis.net/wcs/' in buf: + top_level_tag_name = 'wcs' + format_tuple = ckan_helpers.resource_formats().get(top_level_tag_name) + if format_tuple: + format_ = {'format': format_tuple[1]} + log.info('XML variant detected: %s', format_tuple[2]) + return format_ + log.warning('Did not recognise XML format: %s', top_level_tag_name) + return {'format': 'XML'} + +def has_rdfa(buf, log): + '''If the buffer HTML contains RDFa then this returns True''' + # quick check for the key words + if 'about=' not in buf or 'property=' not in buf: + log.debug('Not RDFA') + return False + + # more rigorous check for them as tag attributes + about_re = '<[^>]+\sabout="[^"]+"[^>]*>' + property_re = '<[^>]+\sproperty="[^"]+"[^>]*>' + # remove CR to catch tags spanning more than one line + #buf = re.sub('\r\n', ' ', buf) + if not re.search(about_re, buf): + log.debug('Not RDFA') + return False + if not re.search(property_re, buf): + log.debug('Not RDFA') + return False + log.info('RDFA tags found in HTML') + return True + + +def get_zipped_format(filepath, log): + '''For a given zip file, return the format of file inside. + For multiple files, choose by the most open, and then by the most + popular extension.''' + # just check filename extension of each file inside + try: + # note: Cannot use "with" with a zipfile before python 2.7 + # so we have to close it manually. + zip = zipfile.ZipFile(filepath, 'r') + try: + filepaths = zip.namelist() + finally: + zip.close() + except zipfile.BadZipfile, e: + log.info('Zip file open raised error %s: %s', + e, e.args) + return + except Exception, e: + log.warning('Zip file open raised exception %s: %s', + e, e.args) + return + + # Shapefile check - a Shapefile is a zip containing specific files: + # .shp, .dbf and .shx amongst others + extensions = set([f.split('.')[-1].lower() for f in filepaths]) + if len(extensions & set(('shp', 'dbf', 'shx'))) == 3: + log.info('Shapefile detected') + return {'format': 'SHP'} + + # GTFS check - a GTFS is a zip which containing specific filenames + filenames = set((os.path.basename(f) for f in filepaths)) + if not (set(('agency.txt', 'stops.txt', 'routes.txt', 'trips.txt', + 'stop_times.txt', 'calendar.txt')) - set(filenames)): + log.info('GTFS detected') + return {'format': 'GTFS'} + + top_score = 0 + top_scoring_extension_counts = defaultdict(int) # extension: number_of_files + for filepath in filepaths: + extension = os.path.splitext(filepath)[-1][1:].lower() + format_tuple = ckan_helpers.resource_formats().get(extension) + if format_tuple: + score = lib.resource_format_scores().get(format_tuple[1]) + if score is not None and score > top_score: + top_score = score + top_scoring_extension_counts = defaultdict(int) + if score == top_score: + top_scoring_extension_counts[extension] += 1 + else: + log.info('Zipped file of unknown extension: "%s" (%s)', + extension, filepath) + if not top_scoring_extension_counts: + log.info('Zip has no known extensions: %s', filepath) + return {'format': 'ZIP'} + + top_scoring_extension_counts = sorted(top_scoring_extension_counts.items(), + key=lambda x: x[1]) + top_extension = top_scoring_extension_counts[-1][0] + log.info('Zip file\'s most popular extension is "%s" (All extensions: %r)', + top_extension, top_scoring_extension_counts) + format_tuple = ckan_helpers.resource_formats()[top_extension] + format_ = {'format': format_tuple[1], + 'container': 'ZIP'} + log.info('Zipped file format detected: %s', format_tuple[2]) + return format_ + + +def is_excel(filepath, log): + try: + xlrd.open_workbook(filepath) + except Exception, e: + log.info('Not Excel - failed to load: %s %s', e, e.args) + return False + else: + log.info('Excel file opened successfully') + return True + + +# same as the python 2.7 subprocess.check_output +def check_output(*popenargs, **kwargs): + if 'stdout' in kwargs: + raise ValueError('stdout argument not allowed, it will be overridden.') + process = subprocess.Popen(stdout=subprocess.PIPE, *popenargs, **kwargs) + output, unused_err = process.communicate() + retcode = process.poll() + if retcode: + cmd = kwargs.get("args") + if cmd is None: + cmd = popenargs[0] + raise Exception('Non-zero exit status %s: %s' % (retcode, output)) + return output + +def run_bsd_file(filepath, log): + '''Run the BSD command-line tool "file" to determine file type. Returns + a format dict or None if it fails.''' + result = check_output(['file', filepath]) + match = re.search('Name of Creating Application: ([^,]*),', result) + if match: + app_name = match.groups()[0] + format_map = {'Microsoft Office PowerPoint': 'ppt', + 'Microsoft PowerPoint': 'ppt', + 'Microsoft Excel': 'xls', + 'Microsoft Office Word': 'doc', + 'Microsoft Word 10.0': 'doc', + 'Microsoft Macintosh Word': 'doc', + } + if app_name in format_map: + extension = format_map[app_name] + format_tuple = ckan_helpers.resource_formats()[extension] + log.info('"file" detected file format: %s', + format_tuple[2]) + return {'format': format_tuple[1]} + match = re.search(': ESRI Shapefile', result) + if match: + format_ = {'format': 'SHP'} + log.info('"file" detected file format: %s', + format_['format']) + return format_ + log.info('"file" could not determine file format of "%s": %s', + filepath, result) + + +def is_ttl(buf, log): + '''If the buffer is a Turtle RDF file then return True.''' + # Turtle spec: "Turtle documents may have the strings '@prefix' or '@base' (case dependent) near the beginning of the document." + at_re = '^@(prefix|base) ' + match = re.search(at_re, buf, re.MULTILINE) + if match: + log.info('Turtle RDF detected - @prefix or @base') + return True + + # Alternatively look for several triples + num_required_triples = 5 + ignore, num_replacements = turtle_regex().subn('', buf, num_required_triples) + if num_replacements >= num_required_triples: + log.info('Turtle RDF detected - %s triples' % num_replacements) + return True + + log.debug('Not Turtle RDF - triples not detected (%i)' % num_replacements) + +turtle_regex_ = None +def turtle_regex(): + '''Return a compiled regex that matches a turtle triple. + + Each RDF term may be in these forms: + + "a literal" + "translation"@ru + "literal typed"^^ + "literal typed with prefix"^^xsd:string + 'single quotes' + """triple \n quotes""" + -4.2E-9 + false + _:blank_node + No need to worry about prefixed terms, since there would have been a + @prefix already detected for them to be used. + prefix:term :blank_prefix + does not support nested blank nodes, collection, sameas ('a' token) + ''' + global turtle_regex_ + if not turtle_regex_: + rdf_term = '(<[^ >]+>|_:\S+|".+?"(@\w+)?(\^\^\S+)?|\'.+?\'(@\w+)?(\^\^\S+)?|""".+?"""(@\w+)?(\^\^\S+)?|\'\'\'.+?\'\'\'(@\w+)?(\^\^\S+)?|[+-]?([0-9]+|[0-9]*\.[0-9]+)(E[+-]?[0-9]+)?|false|true)' + + # simple case is: triple_re = '^T T T \.$'.replace('T', rdf_term) + # but extend to deal with multiple predicate-objects: + #triple = '^T T T\s*(;\s*T T\s*)*\.\s*$'.replace('T', rdf_term).replace(' ', '\s+') + triple = '(^T|;)\s*T T\s*(;|\.\s*$)'.replace('T', rdf_term).replace(' ', '\s+') + turtle_regex_ = re.compile(triple, re.MULTILINE) + return turtle_regex_ diff --git a/ckanext/qa/tasks.py b/ckanext/qa/tasks.py index 070eb927..0a185c72 100644 --- a/ckanext/qa/tasks.py +++ b/ckanext/qa/tasks.py @@ -1,283 +1,448 @@ ''' -Score datasets on Sir Tim Berners-Lee\'s five stars of openness -based on mime-type. +Provide some Quality Assurance by scoring datasets against Sir Tim +Berners-Lee\'s five stars of openness ''' import datetime -import mimetypes import json -import requests -import urlparse +import os +import traceback + import ckan.lib.celery_app as celery_app -from ckanext.archiver.tasks import link_checker, LinkCheckerError +from ckan.plugins import toolkit +import ckan.lib.helpers as ckan_helpers +from ckanext.qa.sniff_format import sniff_file_format +from ckanext.qa import lib +from ckanext.archiver.model import Archival, Status class QAError(Exception): pass +# Description of each score, used elsewhere +OPENNESS_SCORE_DESCRIPTION = { + 0: 'Not obtainable or license is not open', + 1: 'Obtainable and open license', + 2: 'Machine readable format', + 3: 'Open and standardized format', + 4: 'Ontologically represented', + 5: 'Fully Linked Open Data as appropriate', +} -class CkanError(Exception): - pass +def load_config(ckan_ini_filepath): + import paste.deploy + config_abs_path = os.path.abspath(ckan_ini_filepath) + conf = paste.deploy.appconfig('config:' + config_abs_path) + import ckan + ckan.config.environment.load_environment(conf.global_conf, + conf.local_conf) -OPENNESS_SCORE_REASON = { - -1: 'unrecognised content type', - 0: 'not obtainable', - 1: 'obtainable via web page', - 2: 'machine readable format', - 3: 'open and standardized format', - 4: 'ontologically represented', - 5: 'fully Linked Open Data as appropriate', -} -MIME_TYPE_SCORE = { - 'text/plain': 1, - 'text': 1, - 'txt': 1, - 'application/vnd.ms-excel': 2, - 'application/msword': 1, - 'application/vnd.ms-excel.sheet.binary.macroenabled.12': 2, - 'application/vnd.ms-excel.sheet.macroenabled.12': 2, - 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet': 2, - 'xls': 2, - 'text/csv': 3, - 'application/json': 3, - 'application/xml': 3, - 'text/xml': 3, - 'csv': 3, - 'xml': 3, - 'json': 3, - 'application/rdf+xml': 4, - 'rdf': 4, - 'application/pdf': 1, # PDF is not really structured :) - 'application/rtf': 1, - 'application/zip': 1, # no idea what's inside - 'application/x-7z-compressed': 1, - 'text/html': 1, # like all other presentation formats - 'html': 1, -} +def register_translator(): + # Register a translator in this thread so that + # the _() functions in logic layer can work + from paste.registry import Registry + from pylons import translator + from ckan.lib.cli import MockTranslator + global registry + registry = Registry() + registry.prepare() + global translator_obj + translator_obj = MockTranslator() + registry.register(translator, translator_obj) -def _update_task_status(context, data): +@celery_app.celery.task(name="qa.update_package") +def update_package(ckan_ini_filepath, package_id): """ - Use CKAN API to update the task status. The data parameter - should be a dict representing one row in the task_status table. + Given a package, calculates an openness score for each of its resources. + It is more efficient to call this than 'update' for each resource. - Returns the content of the response. + Returns None """ - api_url = urlparse.urljoin(context['site_url'], 'api/action') - res = requests.post( - api_url + '/task_status_update', json.dumps(data), - headers={'Authorization': context['apikey'], - 'Content-Type': 'application/json'} - ) - if res.status_code == 200: - return res.content - else: - raise CkanError('ckan failed to update task_status, status_code (%s), error %s' - % (res.status_code, res.content)) + log = update_package.get_logger() + load_config(ckan_ini_filepath) + register_translator() -def _update_resource(context, resource, log): - """ - Use CKAN API to update the given resource. - If cannot update, records this fact in the task_status table. - Returns the content of the response. + try: + update_package_(package_id, log) + except Exception, e: + log.error('Exception occurred during QA update_package: %s: %s', + e.__class__.__name__, unicode(e)) + raise - """ - api_url = urlparse.urljoin(context['site_url'], 'api/3/action') + '/resource_update' - resource['last_modified'] = datetime.datetime.now().isoformat() - post_data = json.dumps(resource) - res = requests.post( - api_url, post_data, - headers = {'Authorization': context['apikey'], - 'Content-Type': 'application/json'} - ) - - if res.status_code == 200: - log.info('Resource updated OK: %s', resource['id']) - return res.content - else: - try: - content = res.content - except: - content = '' - log.error('ckan failed to update resource, status_code (%s), error %s. Maybe the API key or site URL are wrong?.\ncontext: %r\nresource: %r\nres: %r\nres.error: %r\npost_data: %r\napi_url: %r' - % (res.status_code, content, context, resource, res, res.reason, post_data, api_url)) - raise CkanError('ckan failed to update resource, status_code (%s), error %s' % (res.status_code, content)) - -def _task_status_data(id, result): - return [ - { - 'entity_id': id, - 'entity_type': u'resource', - 'task_type': 'qa', - 'key': u'openness_score', - 'value': result['openness_score'], - 'last_updated': datetime.datetime.now().isoformat() - }, - { - 'entity_id': id, - 'entity_type': u'resource', - 'task_type': 'qa', - 'key': u'openness_score_reason', - 'value': result['openness_score_reason'], - 'last_updated': datetime.datetime.now().isoformat() - }, - { - 'entity_id': id, - 'entity_type': u'resource', - 'task_type': 'qa', - 'key': u'openness_score_failure_count', - 'value': result['openness_score_failure_count'], - 'last_updated': datetime.datetime.now().isoformat() - }, - ] + +def update_package_(package_id, log): + from ckan import model + package = model.Package.get(package_id) + if not package: + raise QAError('Package ID not found: %s' % package_id) + + log.info('Openness scoring package %s (%i resources)', package.name, + len(package.resources)) + + for resource in package.resources: + qa_result = resource_score(resource, log) + log.info('Openness scoring: \n%r\n%r\n%r\n\n', qa_result, resource, + resource.url) + save_qa_result(resource, qa_result, log) + log.info('CKAN updated with openness score') + + # Refresh the index for this dataset, so that it contains the latest + # qa info + _update_search_index(package.id, log) @celery_app.celery.task(name="qa.update") -def update(context, data): +def update(ckan_ini_filepath, resource_id): """ - Score resources on Sir Tim Berners-Lee\'s five stars of openness - based on mime-type. - + Given a resource, calculates an openness score. + Returns a JSON dict with keys: 'openness_score': score (int) 'openness_score_reason': the reason for the score (string) - 'openness_score_failure_count': the number of consecutive times that - this resource has returned a score of 0 """ log = update.get_logger() + load_config(ckan_ini_filepath) + register_translator() try: - data = json.loads(data) - context = json.loads(context) - - result = resource_score(context, data) - log.info('Openness score for dataset %s (res#%s): %r (%s)', - data['package_id'], data['position'], - result['openness_score'], result['openness_score_reason']) - - task_status_data = _task_status_data(data['id'], result) - - data['openness_score'] = result['openness_score'] - _update_resource(context, data, log) - - api_url = urlparse.urljoin(context['site_url'], 'api/action') - response = requests.post( - api_url + '/task_status_update_many', - json.dumps({'data': task_status_data}), - headers={'Authorization': context['apikey'], - 'Content-Type': 'application/json'} - ) - - if not response.ok: - err = 'ckan failed to update task_status, error %s' \ - % response.reason - log.error(err) - raise CkanError(err) - elif response.status_code != 200: - err = 'ckan failed to update task_status, status_code (%s), error %s' \ - % (response.status_code, response.content) - log.error(err) - raise CkanError(err) - - return json.dumps(result) + update_resource_(resource_id, log) except Exception, e: - log.error('Exception occurred during QA update: %s: %s', e.__class__.__name__, unicode(e)) - _update_task_status(context, { - 'entity_id': data['id'], - 'entity_type': u'resource', - 'task_type': 'qa', - 'key': u'celery_task_id', - 'value': unicode(update.request.id), - 'error': '%s: %s' % (e.__class__.__name__, unicode(e)), - 'last_updated': datetime.datetime.now().isoformat() - }) + log.error('Exception occurred during QA update_resource: %s: %s', + e.__class__.__name__, unicode(e)) raise -def resource_score(context, data): +def update_resource_(resource_id, log): + from ckan import model + resource = model.Resource.get(resource_id) + if not resource: + raise QAError('Resource ID not found: %s' % resource_id) + qa_result = resource_score(resource, log) + log.info('Openness scoring: \n%r\n%r\n%r\n\n', qa_result, resource, + resource.url) + save_qa_result(resource, qa_result, log) + log.info('CKAN updated with openness score') + + if toolkit.check_ckan_version(max_version='2.2.99'): + package = resource.resource_group.package + else: + package = resource.package + if package: + # Refresh the index for this dataset, so that it contains the latest + # qa info + _update_search_index(package.id, log) + else: + log.warning('Resource not connected to a package. Res: %r', resource) + return json.dumps(qa_result) + + +def get_qa_format(resource_id): + '''Returns the format of the resource, as recorded in the QA table.''' + from ckanext.qa.model import QA + q = QA.get_for_resource(resource_id) + if not q: + return '' + return q.format + + +def format_get(key): + '''Returns a resource format, as defined in ckan. + + :param key: format extension / mimetype / title e.g. 'CSV', + 'application/msword', 'Word document' + :param key: string + :returns: format string + ''' + format_tuple = ckan_helpers.resource_formats().get(key.lower()) + if not format_tuple: + return + return format_tuple[1] # short name + + +def resource_score(resource, log): """ - Score resources on Sir Tim Berners-Lee\'s five stars of openness - based on mime-type. + Score resource on Sir Tim Berners-Lee\'s five stars of openness. - returns a dict with keys: + Returns a dict with keys: 'openness_score': score (int) 'openness_score_reason': the reason for the score (string) - 'openness_score_failure_count': the number of consecutive times that - this resource has returned a score of 0 - """ - log = update.get_logger() + 'format': format of the data (string) + 'archival_timestamp': time of the archival that this result is based on (iso string) + Raises QAError for reasonable errors + """ score = 0 score_reason = '' - score_failure_count = 0 - - # get openness score failure count for task status table if exists - api_url = urlparse.urljoin(context['site_url'], 'api/action') - response = requests.post( - api_url + '/task_status_show', - json.dumps({'entity_id': data['id'], 'task_type': 'qa', - 'key': 'openness_score_failure_count'}), - headers={'Authorization': context['apikey'], - 'Content-Type': 'application/json'} - ) - if json.loads(response.content)['success']: - score_failure_count = int(json.loads(response.content)['result'].get('value', '0')) - - # no score for resources that don't have an open license - if not data.get('is_open'): - score_reason = 'License not open' - else: - try: - headers = json.loads(link_checker("{}", json.dumps(data))) - ct = headers.get('content-type') - - # ignore charset if exists (just take everything before the ';') - if ct and ';' in ct: - ct = ct.split(';')[0] - - # also get format from resource and by guessing from file extension - format = data.get('format', '').lower() - file_type = mimetypes.guess_type(data['url'])[0] - - # file type takes priority for scoring - if file_type: - score = MIME_TYPE_SCORE.get(file_type, -1) - elif ct: - score = MIME_TYPE_SCORE.get(ct, -1) - elif format: - score = MIME_TYPE_SCORE.get(format, -1) - - score_reason = OPENNESS_SCORE_REASON[score] - if score < 0: - score_reason = score_reason + " [%s, %s, %s]" % (file_type, ct, format) - log.warning(score_reason) - - # negative scores are only useful for getting the reason message, - # set it back to 0 if it's still <0 at this point - if score < 0: - score = 0 - - # check for mismatches between content-type, file_type and format - # ideally they should all agree - if not ct: - # TODO: use the todo extension to flag this issue - pass - - except LinkCheckerError, e: - score_reason = str(e) - except Exception, e: - log.error('Unexpected error while calculating openness score %s: %s', e.__class__.__name__, unicode(e)) - score_reason = "Unknown error: %s" % str(e) - - if score == 0: - score_failure_count += 1 + format_ = None + + try: + score_reasons = [] # a list of strings detailing how we scored it + archival = Archival.get_for_resource(resource_id=resource.id) + if not resource: + raise QAError('Could not find resource "%s"' % resource.id) + + score, format_ = score_if_link_broken(archival, resource, score_reasons, log) + if score == None: + # we don't want to take the publisher's word for it, in case the link + # is only to a landing page, so highest priority is the sniffed type + score, format_ = score_by_sniffing_data(archival, resource, + score_reasons, log) + if score == None: + # Fall-backs are user-given data + score, format_ = score_by_url_extension(resource, score_reasons, log) + if score == None: + score, format_ = score_by_format_field(resource, score_reasons, log) + if score == None: + log.warning('Could not score resource: "%s" with url: "%s"', + resource.id, resource.url) + score_reasons.append('Could not understand the file format, therefore score is 1.') + score = 1 + if format_ == None: + # use any previously stored format value for this resource + format_ = get_qa_format(resource.id) + score_reason = ' '.join(score_reasons) + format_ = format_ or None + except Exception, e: + log.error('Unexpected error while calculating openness score %s: %s\nException: %s', e.__class__.__name__, unicode(e), traceback.format_exc()) + score_reason = "Unknown error: %s" % str(e) + raise + + # Even if we can get the link, we should still treat the resource + # as having a score of 0 if the license isn't open. + # + # It is important we do this check after the link check, otherwise + # the link checker won't get the chance to see if the resource + # is broken. + if toolkit.check_ckan_version(max_version='2.2.99'): + package = resource.resource_group.package else: - score_failure_count = 0 + package = resource.package + if score > 0 and not package.isopen(): + score_reason = 'License not open' + score = 0 - return { + log.info('Score: %s Reason: %s', score, score_reason) + + archival_updated = archival.updated.isoformat() \ + if archival and archival.updated else None + result = { 'openness_score': score, 'openness_score_reason': score_reason, - 'openness_score_failure_count': score_failure_count, + 'format': format_, + 'archival_timestamp': archival_updated } + + return result + + +def broken_link_error_message(archival): + '''Given an archival for a broken link, it returns a helpful + error message (string) describing the attempts.''' + def format_date(date): + if date: + return date.strftime('%d/%m/%Y') + else: + return '' + messages = ['File could not be downloaded.', + 'Reason: %s.' % archival.status, + 'Error details: %s.' % archival.reason, + 'Attempted on %s.' % format_date(archival.updated)] + last_success = format_date(archival.last_success) + if archival.failure_count == 1: + if last_success: + messages.append('This URL worked the previous time: %s.' % last_success) + else: + messages.append('This was the first attempt.') + else: + messages.append('Tried %s times since %s.' % \ + (archival.failure_count, + format_date(archival.first_failure))) + if last_success: + messages.append('This URL last worked on: %s.' % last_success) + else: + messages.append('This URL has not worked in the history of this tool.') + return ' '.join(messages) + + +def score_if_link_broken(archival, resource, score_reasons, log): + ''' + Looks to see if the archiver said it was broken, and if so, writes to + the score_reasons and returns a score. + + Return values: + * Returns a tuple: (score, format_) + * score is an integer or None if it cannot be determined + * format_ is a string or None + * is_broken is a boolean + ''' + if archival and archival.is_broken: + # Score 0 since we are sure the link is currently broken + score_reasons.append(broken_link_error_message(archival)) + format_ = get_qa_format(resource.id) + log.info('Archiver says link is broken. Previous format: %r' % format_) + return (0, format_) + return (None, None) + +def score_by_sniffing_data(archival, resource, score_reasons, log): + ''' + Looks inside a data file\'s contents to determine its format and score. + + It adds strings to score_reasons list about how it came to the conclusion. + + Return values: + * It returns a tuple: (score, format_string) + * If it cannot work out the format then format_string is None + * If it cannot score it, then score is None + ''' + if not archival or not archival.cache_filepath: + score_reasons.append('This file had not been downloaded at the time of scoring it.') + return (None, None) + # Analyse the cached file + filepath = archival.cache_filepath + if not os.path.exists(filepath): + score_reasons.append('Cache filepath does not exist: "%s".' % filepath) + return (None, None) + else: + if filepath: + sniffed_format = sniff_file_format(filepath, log) + score = lib.resource_format_scores().get(sniffed_format['format']) \ + if sniffed_format else None + if sniffed_format: + score_reasons.append('Content of file appeared to be format "%s" which receives openness score: %s.' % (sniffed_format['format'], score)) + return score, sniffed_format['format'] + else: + score_reasons.append('The format of the file was not recognized from its contents.') + return (None, None) + else: + # No cache_url + if archival.status_id == Status.by_text('Chose not to download'): + score_reasons.append('File was not downloaded deliberately. Reason: %s. Using other methods to determine file openness.' % \ + archival.reason) + return (None, None) + elif archival.is_broken is None and archival.status_id: + # i.e. 'Download failure' or 'System error during archival' + score_reasons.append('A system error occurred during downloading this file. Reason: %s. Using other methods to determine file openness.' % \ + archival.reason) + return (None, None) + else: + score_reasons.append('This file had not been downloaded at the time of scoring it.') + return (None, None) + + +def score_by_url_extension(resource, score_reasons, log): + ''' + Looks at the URL for a resource to determine its format and score. + + It adds strings to score_reasons list about how it came to the conclusion. + + Return values: + * It returns a tuple: (score, format_string) + * If it cannot work out the format then format is None + * If it cannot score it, then score is None + ''' + extension_variants_ = extension_variants(resource.url.strip()) + if not extension_variants_: + score_reasons.append('Could not determine a file extension in the URL.') + return (None, None) + for extension in extension_variants_: + format_ = format_get(extension) + if format_: + score = lib.resource_format_scores().get(format_) + if score: + score_reasons.append('URL extension "%s" relates to format "%s" and receives score: %s.' % (extension, format_, score)) + return score, format_ + else: + score = 1 + score_reasons.append('URL extension "%s" relates to format "%s" but a score for that format is not configured, so giving it default score %s.' % (extension, format_, score)) + return score, format_ + score_reasons.append('URL extension "%s" is an unknown format.' % extension) + return (None, None) + +def extension_variants(url): + ''' + Returns a list of extensions, in order of which would more + significant. + + >>> extension_variants('http://dept.gov.uk/coins.data.1996.csv.zip') + ['csv.zip', 'zip'] + >>> extension_variants('http://dept.gov.uk/data.csv?callback=1') + ['csv'] + ''' + url = url.split('?')[0] # get rid of params + url = url.split('/')[-1] # get rid of path - leaves filename + split_url = url.split('.') + results = [] + for number_of_sections in [2, 1]: + if len(split_url) > number_of_sections: + results.append('.'.join(split_url[-number_of_sections:])) + return results + + +def score_by_format_field(resource, score_reasons, log): + ''' + Looks at the format field of a resource to determine its format and score. + + It adds strings to score_reasons list about how it came to the conclusion. + + Return values: + * It returns a tuple: (score, format_string) + * If it cannot work out the format then format_string is None + * If it cannot score it, then score is None + ''' + format_field = resource.format or '' + if not format_field: + score_reasons.append('Format field is blank.') + return (None, None) + format_tuple = ckan_helpers.resource_formats().get(format_field.lower()) or \ + ckan_helpers.resource_formats().get(lib.munge_format_to_be_canonical(format_field)) + if not format_tuple: + score_reasons.append('Format field "%s" does not correspond to a known format.' % format_field) + return (None, None) + score = lib.resource_format_scores().get(format_tuple[1]) + score_reasons.append('Format field "%s" receives score: %s.' % + (format_field, score)) + return (score, format_tuple[1]) + + +def _update_search_index(package_id, log): + ''' + Tells CKAN to update its search index for a given package. + ''' + from ckan import model + from ckan.lib.search.index import PackageSearchIndex + package_index = PackageSearchIndex() + context_ = {'model': model, 'ignore_auth': True, 'session': model.Session, + 'use_cache': False, 'validate': False} + package = toolkit.get_action('package_show')(context_, {'id': package_id}) + package_index.index_package(package, defer_commit=False) + log.info('Search indexed %s', package['name']) + + +def save_qa_result(resource, qa_result, log): + """ + Saves the results of the QA check to the qa table. + """ + import ckan.model as model + from ckanext.qa.model import QA + + now = datetime.datetime.now() + + qa = QA.get_for_resource(resource.id) + if not qa: + qa = QA.create(resource.id) + model.Session.add(qa) + else: + log.info('QA from before: %r', qa) + + for key in ('openness_score', 'openness_score_reason', 'format'): + setattr(qa, key, qa_result[key]) + qa.archival_timestamp = qa_result['archival_timestamp'] + qa.updated = now + + model.Session.commit() + + log.info('QA results updated ok') + return qa # for tests diff --git a/ckanext/qa/templates/package/resource_read.html b/ckanext/qa/templates/package/resource_read.html new file mode 100644 index 00000000..0d831d12 --- /dev/null +++ b/ckanext/qa/templates/package/resource_read.html @@ -0,0 +1,9 @@ +{% ckan_extends %} + +{% block resource_additional_information_inner %} + {# Try and inherit from archiver's resource_read #} + {{ super() }} +
+ {{ h.qa_openness_stars_resource_html(c.resource) }} + +{% endblock %} diff --git a/ckanext/qa/templates/qa/broken_resource_links_for_organisation.html b/ckanext/qa/templates/qa/broken_resource_links_for_organisation.html deleted file mode 100644 index 02ba0b8d..00000000 --- a/ckanext/qa/templates/qa/broken_resource_links_for_organisation.html +++ /dev/null @@ -1,54 +0,0 @@ - - - Quality Assurance - - hide-sidebar - - - - - - -
-
- -

${c.organisation.title}

-

Download this report.

-
    -
  • ${h.link_to('Report in CSV format', h.url_for(controller='ckanext.qa.controller:QAController', action='broken_resource_links_by_dataset_for_organisation', id=c.id, format='csv'))}
  • -
- - - - - - - - - -
DatasetResources
${h.link_to(package[0], h.url_for(controller='package', action='read', id=package[0]))} - - - - - - - - - -
URLReason
-
- -
- -

No results found for this organization.

-
- -
-
- - - diff --git a/ckanext/qa/templates/qa/dataset_broken_resource_links.html b/ckanext/qa/templates/qa/dataset_broken_resource_links.html deleted file mode 100644 index f1d9176e..00000000 --- a/ckanext/qa/templates/qa/dataset_broken_resource_links.html +++ /dev/null @@ -1,44 +0,0 @@ - - - Quality Assurance - no-sidebar - - - - - -
-
-

Quality Assurance

- -

Datasets with at least one broken resource.

-

${h.link_to('Report of all broken links by dataset in CSV format', h.url_for(controller='ckanext.qa.controller:QAController', action='broken_resource_links_by_dataset', format='csv'))}

- - - - - - - - - - - - - - - - -
DatasetResource URLReason
${h.link_to(package.title, h.url_for(controller='package', action='read', id=package.name))}${resource.get('url', '')}${resource.get('openness_score_reason', '')}
- - -

No datasets with at least one broken resource found.

-
-
-
- - - diff --git a/ckanext/qa/templates/qa/datasets.html b/ckanext/qa/templates/qa/datasets.html deleted file mode 100644 index c93c4d3d..00000000 --- a/ckanext/qa/templates/qa/datasets.html +++ /dev/null @@ -1,28 +0,0 @@ - - - Quality Assurance - - - - - -
-
-

Package Quality Assurance

-
    -
  • ${h.link_to("5 stars of openness scores", - h.url_for(controller='ckanext.qa.controller:QAController', - action='five_stars'))} -
  • -
  • ${h.link_to("Broken resource links", - h.url_for(controller='ckanext.qa.controller:QAController', - action='dataset_broken_resource_links'))} -
  • -
-
-
- - diff --git a/ckanext/qa/templates/qa/five_stars.html b/ckanext/qa/templates/qa/five_stars.html deleted file mode 100644 index 05386d9b..00000000 --- a/ckanext/qa/templates/qa/five_stars.html +++ /dev/null @@ -1,43 +0,0 @@ - - - Quality Assurance - no-sidebar - - - - - -
-
-

Quality Assurance

-

Dataset openness scores

- -

A list of all datasets in CKAN, together with their - 5 stars of openness rating.

-

The rating is calculated by looking at the reported mime-type of - each of the datasets resources and calculating the 5 stars of openness score - for each. The overall dataset score is taken to be the highest score of any of - the resources.

- - - - - - - - - - -
Dataset name5 Stars of Openness
${h.link_to(package.get('title') or package.get('name'), h.url_for(controller='package', action='read', id=package.get('name')))}${package.get('openness_score')}
- - -

No QA results found.

-
-
-
- - - diff --git a/ckanext/qa/templates/qa/index.html b/ckanext/qa/templates/qa/index.html deleted file mode 100644 index 3aba05bf..00000000 --- a/ckanext/qa/templates/qa/index.html +++ /dev/null @@ -1,27 +0,0 @@ - - - Quality Assurance - no-sidebar - - - - - -
-
-

Quality Assurance

-
    -
  • ${h.link_to("Dataset openness scores", h.url_for('qa_dataset_action', action='five_stars'))}
  • -
  • ${h.link_to("Datasets with broken resource links", h.url_for('qa_dataset_action', action='broken_resource_links'))}
  • -
  • - ${h.link_to("Organisations whose datasets contain broken resource links", h.url_for('qa_organisation_action', action='broken_resource_links'))} -
  • -
-
-
- - - diff --git a/ckanext/qa/templates/qa/openness_stars.html b/ckanext/qa/templates/qa/openness_stars.html new file mode 100644 index 00000000..33dbd879 --- /dev/null +++ b/ckanext/qa/templates/qa/openness_stars.html @@ -0,0 +1,30 @@ +{# +Displays 5 starts of openness for a resource or dataset with explanation + +Variable passed-in include all the QA.as_dict() info from the package_show's resource['qa'] e.g. + +"format": "CSV", +"openness_score": 3, +"openness_score_reason": "Content of file appeared to be format \"CSV\" which receives openness score: 3." +"archival_timestamp": null, +"resource_timestamp": null, +"created": "2015-11-19T11:01:48.112153", +"updated": "2015-11-19T16:54:49.436434", + +OR the package_show's package['qa'] e.g. + +"openness_score": 3 +"openness_score_reason": "Content of file appeared to be format \"CSV\" which receives openness score: 3.", +"updated": "2015-11-19T16:54:49.480393", + +#} +
+ {% if openness_score != None %} + Openness: {% snippet "qa/stars.html", stars=openness_score %}
+ Reason: {{ openness_score_reason }}
+ Checked: {{ h.render_datetime(updated) }}
+ {% else %} + No openness information yet. Update expected soon. + {% endif %} +
+ diff --git a/ckanext/qa/templates/qa/openness_stars_brief.html b/ckanext/qa/templates/qa/openness_stars_brief.html new file mode 100644 index 00000000..47c59b01 --- /dev/null +++ b/ckanext/qa/templates/qa/openness_stars_brief.html @@ -0,0 +1,29 @@ +{# +Displays 5 starts of openness for a resource or dataset + +Variable passed-in include all the QA.as_dict() info from the package_show's resource['qa'] e.g. + +"format": "CSV", +"openness_score": 3, +"openness_score_reason": "Content of file appeared to be format \"CSV\" which receives openness score: 3." +"archival_timestamp": null, +"resource_timestamp": null, +"created": "2015-11-19T11:01:48.112153", +"updated": "2015-11-19T16:54:49.436434", + +OR the package_show's package['qa'] e.g. + +"openness_score": 3 +"openness_score_reason": "Content of file appeared to be format \"CSV\" which receives openness score: 3.", +"updated": "2015-11-19T16:54:49.480393", + +#} +
+ {% if openness_score != None %} + + {% snippet "qa/stars.html", stars=openness_score %}
+ {% else %} + No openness information yet + {% endif %} +
+ diff --git a/ckanext/qa/templates/qa/organisation_broken_resource_links.html b/ckanext/qa/templates/qa/organisation_broken_resource_links.html deleted file mode 100644 index c125965e..00000000 --- a/ckanext/qa/templates/qa/organisation_broken_resource_links.html +++ /dev/null @@ -1,40 +0,0 @@ - - - Quality Assurance - - hide-sidebar - - - - - - -
-
-

Quality Assurance

- -

Organizations who have published datasets with broken resource links.

-
    -
  • ${h.link_to('Report of all broken links by organisation in CSV format', h.url_for(controller='ckanext.qa.controller:QAController', action='organisations_with_broken_resource_links', format='csv', id='all'))}
  • -
- - - - - - - -
Organization name
${h.link_to(organisation_title, h.url_for(controller='ckanext.qa.controller:QAController', action='broken_resource_links', id=organisation_id))}
- - -

No organizations that have published datasets with broken resource links found.

-
- -
-
- - diff --git a/ckanext/qa/templates/qa/organisations.html b/ckanext/qa/templates/qa/organisations.html deleted file mode 100644 index 0fc9581f..00000000 --- a/ckanext/qa/templates/qa/organisations.html +++ /dev/null @@ -1,21 +0,0 @@ - - - Quality Assurance - - - - - -
-
-

Organisation Quality Assurance

-
    -
  • ${h.link_to("Broken resource links", h.url_for(controller='ckanext.qa.controller:QAController', action='broken_resource_links'))}
  • -
-
-
- - diff --git a/ckanext/qa/templates_new/qa/snippets/stars.html b/ckanext/qa/templates/qa/stars.html similarity index 55% rename from ckanext/qa/templates_new/qa/snippets/stars.html rename to ckanext/qa/templates/qa/stars.html index 97270d09..88dda232 100644 --- a/ckanext/qa/templates_new/qa/snippets/stars.html +++ b/ckanext/qa/templates/qa/stars.html @@ -5,17 +5,25 @@ stars - The number of stars assigned to the dataset. reason - A reason why the dataset doesn't have a rating. - {% snippet "qa/snippets/stars.html", stars=4 %} + {% snippet "qa/stars.html", stars=4 %} #} - {%- if stars == 0 -%} + {%- if stars == None -%} {{ reason }} {%- else -%} {%- for index in range(stars) -%} - + {%- endfor -%} + {%- for index in range(5-stars) -%} + + {%- endfor -%} + {%- if stars == 0 -%} + {# 0 stars looks awfully like 5 stars, so be explicit #} + (0 out of 5) + {%- endif -%} {%- endif -%} + diff --git a/ckanext/qa/templates/qa/stars_explained.html b/ckanext/qa/templates/qa/stars_explained.html new file mode 100644 index 00000000..e6c1cb85 --- /dev/null +++ b/ckanext/qa/templates/qa/stars_explained.html @@ -0,0 +1,16 @@ +{# Shows the five star openness_score meanings, optionally with a certain openness_score highlighted + +Pass in: + openness_score - number of stars (or None if you don't want to highlight a particular one) +#} + +
★★★★★  Linked data - data URIs and linked to other data (e.g. RDF)
+ +
★★★★☆  Linkable data - served at URIs (e.g. RDF)
+ +
★★★☆☆  Structured data in open format (e.g. CSV)
+ +
★★☆☆☆  Structured data but proprietry format (e.g. Excel)
+ +
★☆☆☆☆  Unstructured data (e.g. PDF)
+ diff --git a/ckanext/qa/templates/report/openness.html b/ckanext/qa/templates/report/openness.html new file mode 100644 index 00000000..3f4559d5 --- /dev/null +++ b/ckanext/qa/templates/report/openness.html @@ -0,0 +1,105 @@ +{% if c.options['organization'] == None %} +
    +
  • Datasets given a score: {{ c.data['num_packages_scored'] }} / {{ c.data['num_packages'] }}
  • +
  • Totals + + + + + {% for n in range(6) %} + + {% endfor %} + + + + + + {% for n in range(6) %} + + {% endfor %} + + +
    Score TBCScore {{n}}
    {{ c.data['total_score_counts'].get('null', 0) }}{{ c.data['total_score_counts'].get(n|string, 0) }}
    +
  • +
+ + + + + + {% for n in range(6) %} + + {% endfor %} + + + + + + {% for row in c.data['table'] %} + + + + {% for n in range(6) %} + + {% endfor %} + + + + {% endfor %} + +
PublisherScore TBCScore {{n}}Total starsAverage stars
{{ h.link_to(row['organization_title'], h.report__relative_url_for(organization=row['organization_name'])) }}{{ row.get('null', 0) }}{{ row.get(n|string, 0) }}{{ row['total_stars'] }}{{ row['average_stars'] }}
+ +{% else %} + +
    +
  • Average score: {{ c.data['average_stars'] }}
  • +
  • Total stars: {{ c.data['total_stars'] }}
  • +
  • Datasets given a score: {{ c.data['num_packages_scored'] }} / {{ c.data['num_packages'] }}
  • +
  • Score frequencies: + + + + + {% for n in range(6) %} + + {% endfor %} + + + + + + {% for n in range(6) %} + + {% endfor %} + + +
    Score TBCScore {{n}}
    {{ c.data['score_counts'].get('null', 0) }}{{ c.data['score_counts'].get(n|string, 0) }}
    +
  • +
+ + + + + + {% if c.options['include_sub_organizations'] %} + + {% endif %} + + + + + + {% for row in c.data['table'] %} + + + + {% if c.options['include_sub_organizations'] %} + + {% endif %} + + + + {% endfor %} + +
DatasetNotesPublisherScoreScore reason
{{h.link_to(row['dataset_title'], '/dataset/%s' % row['dataset_name']) }}{{row['dataset_notes'] }}{{ h.link_to(row['organization_title'], h.report__relative_url_for(organization=row['organization_name'])) }}{{ row['openness_score'] }}{{ h.truncate(row['openness_score_reason'], 150) }}
+{% endif %} diff --git a/ckanext/qa/templates/snippets/organization.html b/ckanext/qa/templates/snippets/organization.html new file mode 100644 index 00000000..a981b7e4 --- /dev/null +++ b/ckanext/qa/templates/snippets/organization.html @@ -0,0 +1,18 @@ +{% ckan_extends %} + +{% block info %} + {{ super() }} + + {% block package_openness %} + {% if c.pkg_dict %} +
+

{{ _('Openness') }}

+
+ {{ h.qa_openness_stars_dataset_html(c.pkg_dict) }}
+
+
+ {% endif %} + {% endblock %} + +{% endblock %} + diff --git a/ckanext/qa/templates_extend/package/resource_read.html b/ckanext/qa/templates_extend/package/resource_read.html deleted file mode 100644 index 61ecfa56..00000000 --- a/ckanext/qa/templates_extend/package/resource_read.html +++ /dev/null @@ -1,16 +0,0 @@ -{% ckan_extends %} - -{% block resource_additional_information %} - {{ super() }} - {{ h.qa_stars(c.resource.id) }} -{% endblock %} - -{% block styles %} - {{ super() }} - {% resource 'ckanext-qa/qa.css' %} -{% endblock %} - -{% block scripts %} - {{ super() }} - {% resource 'ckanext-qa/qa.js' %} -{% endblock %} diff --git a/ckanext/qa/templates_new/qa/base.html b/ckanext/qa/templates_new/qa/base.html deleted file mode 100644 index 81b523b3..00000000 --- a/ckanext/qa/templates_new/qa/base.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "page.html" %} - -{% block subtitle %}{{ _('Quality Assurance') }}{% endblock %} - -{% block primary %} -
-
-
- {% block primary_content %} - {% endblock %} -
-
-
-{% endblock %} - -{% block secondary %}{% endblock %} diff --git a/ckanext/qa/templates_new/qa/broken_resource_links_for_organisation.html b/ckanext/qa/templates_new/qa/broken_resource_links_for_organisation.html deleted file mode 100644 index 1571562a..00000000 --- a/ckanext/qa/templates_new/qa/broken_resource_links_for_organisation.html +++ /dev/null @@ -1,38 +0,0 @@ -{% extends "qa/base.html" %} - -{% block primary_content %} - {% if c.organisation.packages and c.organisation.packages.items() %} -

{{ c.organisation.title }}

-

Download this report.

-
    -
  • {{ h.link_to(_('Report in CSV format'), h.url_for(controller='ckanext.qa.controller:QAController', action='broken_resource_links_by_dataset_for_organisation', id=c.id, format='csv')) }}
  • -
- - - - - - {% for package, resources in c.organisation.packages.items() %} - - - - - {% endfor %} -
{{ _('Dataset') }}{{ _('Resources') }}
{{ h.link_to(package[1], h.url_for(controller='package', action='read', id=package[0])) }} - - - - - - {% for resource in resources %} - - - - - {% endfor %} -
URLReason
-
- {% else %} -

{{ _('No results found for this organization') }}.

- {% endif %} -{% endblock %} diff --git a/ckanext/qa/templates_new/qa/dataset_broken_resource_links.html b/ckanext/qa/templates_new/qa/dataset_broken_resource_links.html deleted file mode 100644 index cb29568f..00000000 --- a/ckanext/qa/templates_new/qa/dataset_broken_resource_links.html +++ /dev/null @@ -1,29 +0,0 @@ -{% extends "qa/base.html" %} - -{% block primary_content %} -

{{ _('Quality Assurance') }}

- -

{{ _('Datasets with at least one broken resource') }}.

-

{{ h.link_to(_('Report of all broken links by dataset in CSV format'), h.url_for(controller='ckanext.qa.controller:QAController', action='broken_resource_links_by_dataset', format='csv')) }}

- - - - - - - - {% for package in c.packages %} - {% for resource in package.resources %} - - - - - - {% endfor %} - {% endfor %} -
{{ _('Dataset') }}{{ _('Resource URL') }}{{ _('Reason') }}
{{ h.link_to(package.title, h.url_for(controller='package', action='read', id=package.name)) }}{{ resource.get('url', '') }}{{ resource.get('openness_score_reason', '') }}
- - {% if not c.packages %} -

{{ _('No datasets with at least one broken resource found') }}.

- {% endif %} -{% endblock %} diff --git a/ckanext/qa/templates_new/qa/datasets.html b/ckanext/qa/templates_new/qa/datasets.html deleted file mode 100644 index 989ad769..00000000 --- a/ckanext/qa/templates_new/qa/datasets.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "qa/base.html" %} - -{% block primary_content %} -

{{ _('Package Quality Assurance') }}

-
    -
  • {{ h.link_to(_("5 stars of openness scores"), - h.url_for(controller='ckanext.qa.controller:QAController', - action='five_stars')) }} -
  • -
  • {{ h.link_to(_("Broken resource links"), - h.url_for(controller='ckanext.qa.controller:QAController', - action='dataset_broken_resource_links')) }} -
  • -
-{% endblock %} diff --git a/ckanext/qa/templates_new/qa/five_stars.html b/ckanext/qa/templates_new/qa/five_stars.html deleted file mode 100644 index b5c88601..00000000 --- a/ckanext/qa/templates_new/qa/five_stars.html +++ /dev/null @@ -1,30 +0,0 @@ -{% extends "qa/base.html" %} - -{% block primary_content %} -

{% trans %}Quality Assurance{% endtrans %}

-

{% trans %}Dataset openness scores{% endtrans %}

- -

{% trans %}A list of all datasets in CKAN, together with their - 5 stars of openness rating.{% endtrans %}

-

{% trans %}The rating is calculated by looking at the reported mime-type of - each of the datasets resources and calculating the 5 stars of openness score - for each. The overall dataset score is taken to be the highest score of any of - the resources.{% endtrans %}

- - - - - - - {% for package in c.packages %} - - - - - {% endfor %} -
{% trans %}Dataset name{% endtrans %}{% trans %}5 Stars of Openness{% endtrans %}
{{ h.link_to(package.get('title') or package.get('name'), h.url_for(controller='package', action='read', id=package.get('name'))) }}{{ package.get('openness_score') }}
- - {% if not c.packages %} -

{% trans %}No QA results found{% endtrans %}.

- {% endif %} -{% endblock %} diff --git a/ckanext/qa/templates_new/qa/index.html b/ckanext/qa/templates_new/qa/index.html deleted file mode 100644 index b63b0102..00000000 --- a/ckanext/qa/templates_new/qa/index.html +++ /dev/null @@ -1,12 +0,0 @@ -{% extends "qa/base.html" %} - -{% block primary_content %} -

{% trans %}Quality Assurance{% endtrans %}

-
    -
  • {{h.link_to(_("Dataset openness scores"), h.url_for(controller='ckanext.qa.controller:QAController', action='five_stars'))}}
  • -
  • {{h.link_to(_("Datasets with broken resource links"), h.url_for(controller='ckanext.qa.controller:QAController', action='dataset_broken_resource_links'))}}
  • - {% if c.organisations %} -
  • {{h.link_to(_("Organisations whose datasets contain broken resource links"), h.url_for(controller='ckanext.qa.controller:QAController', action='broken_resource_links'))}}
  • - {% endif %} -
-{% endblock %} diff --git a/ckanext/qa/templates_new/qa/organisation_broken_resource_links.html b/ckanext/qa/templates_new/qa/organisation_broken_resource_links.html deleted file mode 100644 index db806e38..00000000 --- a/ckanext/qa/templates_new/qa/organisation_broken_resource_links.html +++ /dev/null @@ -1,24 +0,0 @@ -{% extends "qa/base.html" %} - -{% block primary_content %} -

{% trans %}Quality Assurance{% endtrans %}

- -

{% trans %}Organizations who have published datasets with broken resource links{% endtrans %}.

-
    -
  • {{ h.link_to(_('Report of all broken links by organisation in CSV format'), h.url_for(controller='ckanext.qa.controller:QAController', action='organisations_with_broken_resource_links', format='csv', id='all')) }}
  • -
- - - - - {% for organisation_title, organisation_id in c.organisations %} - - - - {% endfor %} -
{% trans %}Organization name{% endtrans %}
{{ h.link_to(organisation_title, h.url_for(controller='ckanext.qa.controller:QAController', action='broken_resource_links', id=organisation_id)) }}
- - {% if not c.organisations %} -

{% trans %}No organizations that have published datasets with broken resource links found{% endtrans %}.

- {% endif %} -{% endblock %} diff --git a/ckanext/qa/templates_new/qa/organisations.html b/ckanext/qa/templates_new/qa/organisations.html deleted file mode 100644 index d37dd9d5..00000000 --- a/ckanext/qa/templates_new/qa/organisations.html +++ /dev/null @@ -1,8 +0,0 @@ -{% extends "qa/base.html" %} - -{% block primary_content %} -

{% trans %}Organisation Quality Assurance{% endtrans %}

-
    -
  • {{ h.link_to(_("Broken resource links"), h.url_for(controller='ckanext.qa.controller:QAController', action='broken_resource_links')) }}
  • -
-{% endblock %} diff --git a/ckanext/qa/templates_new/qa/snippets/stars_info.html b/ckanext/qa/templates_new/qa/snippets/stars_info.html deleted file mode 100644 index 95b79e45..00000000 --- a/ckanext/qa/templates_new/qa/snippets/stars_info.html +++ /dev/null @@ -1,18 +0,0 @@ -{# -Renders a list explaining each level of the rating system. Applies a class to -all items that the current dataset does not meet so they can be styled -accordingly. - -stars - The number of stars assigned to the current dataset. - -Example: - - {% snippet "qa/snippets/stars_info.html", stars=3 %} - -#} - -
    - {% for caption in h.qa_captions() %} - {{ ('★' * loop.index) | safe }} {{ caption }} - {% endfor %} -
diff --git a/ckanext/qa/templates_new/qa/snippets/stars_module.html b/ckanext/qa/templates_new/qa/snippets/stars_module.html deleted file mode 100644 index e91e855b..00000000 --- a/ckanext/qa/templates_new/qa/snippets/stars_module.html +++ /dev/null @@ -1,22 +0,0 @@ -{# -Renders a module for display in the site sidebar containing the rating for the -provided dataset and some info about how the stars work. - -stars - The number of stars assigned to the current dataset. -reason - A reason, if any, why the dataset has no rating. - -Example: - - {% snippet "qa/snippets/stars_module.html", stars=3 %} - -#} -
-

{{ _('Resource Quality') }}

-

- {{ _('Rating') }}: {{ h.qa_stars_rating(stars, reason) }} -

-

{{ _('About these ratings') }}…

-
- {{ h.qa_stars_info(stars) }} -
-
diff --git a/ckanext/qa/tests/data/082010CreditorInvoicesover500.xml b/ckanext/qa/tests/data/082010CreditorInvoicesover500.xml new file mode 100644 index 00000000..66d29868 --- /dev/null +++ b/ckanext/qa/tests/data/082010CreditorInvoicesover500.xml @@ -0,0 +1,14549 @@ + + + East Lindsey District Council + 01/08/2010 + CIFS008858 + 406303.11 + STAGECOACH EAST MIDLANDS + 500966 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 03/08/2010 + CIFS008951 + 5240.57 + DEREK BLOCK ARTISTES AGENCY LTD + 383730 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 03/08/2010 + CIFS008951 + 281.65 + DEREK BLOCK ARTISTES AGENCY LTD + 383730 + Theatre Manager + Postage + 40401 + Theatres/Public Entertainment + + + + East Lindsey District Council + 04/08/2010 + CICP019056 + 600 + NORTHCLIFFE MEDIA LIMITED + 498324 + Cultural & Related Services + General Advertising/Marketing + 40649 + Arts Development & Support + + + + East Lindsey District Council + 04/08/2010 + CICP019059 + 900 + S K LANGLEY + 505084 + Council Tax TL + Agency Costs + 11020 + Finance + + + + East Lindsey District Council + 04/08/2010 + CICP019062 + 569.35 + CARLTON CLEANING UK LTD + 464390 + Policy & Project Manager + Internal Cleaning Materials + 40701 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 04/08/2010 + CICP019063 + 3375 + OTTO (UK) LTD + 435620 + Waste Services Manager + Equipment Purchase + 40003 + Household Waste-Collection + + + + East Lindsey District Council + 04/08/2010 + CICP019067 + 1907.2 + LINCOLNSHIRE COUNTY COUNCIL + 288042 + Customer Services Manager + Maintenance Agreements + 40008 + Visitor Centres + + + + East Lindsey District Council + 04/08/2010 + CICP019071 + 450 + NORTHCLIFFE MEDIA LIMITED + 498324 + Cultural & Related Services + General Advertising/Marketing + 40649 + Arts Development & Support + + + + East Lindsey District Council + 04/08/2010 + CICP019074 + 62.24 + SRS LEISURE + 498706 + Horncastle Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CICP019074 + 56.66 + SRS LEISURE + 498706 + Horncastle Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CICP019074 + 56.53 + SRS LEISURE + 498706 + Horncastle Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CICP019074 + 80.86 + SRS LEISURE + 498706 + Horncastle Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CICP019074 + 56.66 + SRS LEISURE + 498706 + Horncastle Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CICP019074 + 56.66 + SRS LEISURE + 498706 + Horncastle Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CICP019074 + 22.33 + SRS LEISURE + 498706 + Horncastle Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CICP019074 + 23.09 + SRS LEISURE + 498706 + Horncastle Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CICP019074 + 6.65 + SRS LEISURE + 498706 + Horncastle Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CICP019074 + 5.04 + SRS LEISURE + 498706 + Horncastle Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CICP019074 + 2.52 + SRS LEISURE + 498706 + Horncastle Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CICP019074 + 2.52 + SRS LEISURE + 498706 + Horncastle Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CICP019074 + 80.86 + SRS LEISURE + 498706 + Horncastle Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CICP019074 + 4.7 + SRS LEISURE + 498706 + Horncastle Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CICP019075 + 530 + DJM WHOLESALE PROMOTIONS + 314217 + Customer Services Manager + Goods For Resale + 40014 + Visitor Centres + + + + East Lindsey District Council + 04/08/2010 + CICP019076 + 511 + GARDNER PLANT + 373245 + Service Development Manager + Small Plant & Tools + 40040 + OC Other Cleaning + + + + East Lindsey District Council + 04/08/2010 + CICP019080 + 1307.5 + PHS WASTEMANAGEMENT + 534136 + TL Property + Waste Disposal Charges + 40327 + Depots + + + + East Lindsey District Council + 04/08/2010 + CICP019081 + 448.29 + STAFFORCE RECRUITMENT + 462062 + Waste Services Manager + Agency Costs + 11020 + Household Waste-Collection + + + + East Lindsey District Council + 04/08/2010 + CICP019082 + 4024.8 + APR AGENCY + 485939 + Waste Services Manager + Agency Costs + 11020 + Household Waste-Collection + + + + East Lindsey District Council + 04/08/2010 + CIDS011291 + 715 + SAFE AND SOUND SECURITY SYSTEMS LINKS LT + 532015 + Waste Services Manager + Small Plant & Tools + 40040 + Household Waste-Collection + + + + East Lindsey District Council + 04/08/2010 + CIDS011294 + 490 + ROSEDALE LIGHTING LTD + 276863 + Technical Services Team Leader + Responsive Maintenance + 20101 + Illuminations + + + + East Lindsey District Council + 04/08/2010 + CIDS011295 + 810.21 + ASHLEY BLINDS LTD + 129046 + Meridian Facility Manager + Equipment Purchase + 40003 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CIDS011299 + 1055 + J MELTON LTD + 12111 + Service Development Manager + Programmed Maintenance + 20102 + Community Parks & Open Spaces + + + + East Lindsey District Council + 04/08/2010 + CIDS011310 + 940 + RENTOKIL SPECIALIST HYGIENE + 536477 + Meridian Facility Manager + Responsive Maintenance + 20101 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 138.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + Theatre Manager + Programmed Maintenance + 20102 + Community Centres + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 179.55 + RENTOKIL SPECIALIST HYGIENE + 536477 + TL Property + Programmed Maintenance + 20102 + Public Buildings + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 179.55 + RENTOKIL SPECIALIST HYGIENE + 536477 + Theatre Manager + Programmed Maintenance + 20102 + Theatres/Public Entertainment + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 327.75 + RENTOKIL SPECIALIST HYGIENE + 536477 + Horncastle Pool Manager + Programmed Maintenance + 20102 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 96.9 + RENTOKIL SPECIALIST HYGIENE + 536477 + TL Property + Programmed Maintenance + 20102 + Public Buildings + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 96.9 + RENTOKIL SPECIALIST HYGIENE + 536477 + TL Property + Programmed Maintenance + 20102 + Public Buildings + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 96.9 + RENTOKIL SPECIALIST HYGIENE + 536477 + TL Property + Programmed Maintenance + 20102 + Public Buildings + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 327.75 + RENTOKIL SPECIALIST HYGIENE + 536477 + Embassy Pool Manager + Programmed Maintenance + 20102 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 96.9 + RENTOKIL SPECIALIST HYGIENE + 536477 + Horncastle Pool Manager + Programmed Maintenance + 20102 + Community Parks & Open Spaces + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 117.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + Service Development Manager + Programmed Maintenance + 20102 + Public Conveniences + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 121.6 + RENTOKIL SPECIALIST HYGIENE + 536477 + TL Property + Programmed Maintenance + 20102 + Markets + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 121.6 + RENTOKIL SPECIALIST HYGIENE + 536477 + Theatre Manager + Programmed Maintenance + 20102 + Community Parks & Open Spaces + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 121.6 + RENTOKIL SPECIALIST HYGIENE + 536477 + TL Property + Programmed Maintenance + 20102 + Community Parks & Open Spaces + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 121.6 + RENTOKIL SPECIALIST HYGIENE + 536477 + Embassy Pool Manager + Programmed Maintenance + 20102 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 121.6 + RENTOKIL SPECIALIST HYGIENE + 536477 + Embassy Pool Manager + Programmed Maintenance + 20102 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 96.9 + RENTOKIL SPECIALIST HYGIENE + 536477 + Meridian Facility Manager + Programmed Maintenance + 20102 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 138.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + Meridian Facility Manager + Programmed Maintenance + 20102 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 179.55 + RENTOKIL SPECIALIST HYGIENE + 536477 + Meridian Facility Manager + Programmed Maintenance + 20102 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 138.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + Sports Centre Manager + Programmed Maintenance + 20102 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 179.55 + RENTOKIL SPECIALIST HYGIENE + 536477 + Policy & Project Manager + Programmed Maintenance + 20102 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 121.6 + RENTOKIL SPECIALIST HYGIENE + 536477 + TL Property + Programmed Maintenance + 20102 + Investment Income Properties + + + + East Lindsey District Council + 04/08/2010 + CIDS011311 + 117.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + Service Development Manager + Programmed Maintenance + 20102 + Public Conveniences + + + + East Lindsey District Council + 04/08/2010 + CIFS008864 + 780 + GSS PROFESSIONAL SERVICES LTD + 536480 + Meridian Facility Manager + Computer Purchase (not capitalised) + 40413 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CIFS008865 + 2211.3 + CIVICA LTD + 451882 + TL IT - System Support + Software Support + 40422 + Information Technology + + + + East Lindsey District Council + 04/08/2010 + CIFS008866 + 1734 + SENITOR ASSOCIATES LIMITED + 527509 + IT Manager + Agency Costs + 11020 + Finance + + + + East Lindsey District Council + 04/08/2010 + CIFS008867 + 1092 + SENITOR ASSOCIATES LIMITED + 527509 + IT Manager + Agency Costs + 11020 + Finance + + + + East Lindsey District Council + 04/08/2010 + CIFS008868 + 532 + SENITOR ASSOCIATES LIMITED + 527509 + IT Manager + Agency Costs + 11020 + Finance + + + + East Lindsey District Council + 04/08/2010 + CIFS008869 + 710 + SENITOR ASSOCIATES LIMITED + 527509 + Assistant Chief Executive + Computer Purchase (not capitalised) + 40413 + Corporate Resources + + + + East Lindsey District Council + 04/08/2010 + CIFS008870 + 1068 + SENITOR ASSOCIATES LIMITED + 527509 + IT Manager + Agency Costs + 11020 + Finance + + + + East Lindsey District Council + 04/08/2010 + CIFS008871 + 2650 + GLOBAL SECURE SYSTEMS + 447634 + Meridian Facility Manager + Computer Purchase (not capitalised) + 40413 + Indoor Sports & Recreation + + + + East Lindsey District Council + 04/08/2010 + CIFS008872 + 6457.05 + TRUSTMARQUE SOLUTIONS LTD + 452182 + Assistant Chief Executive + Computer Purchase (not capitalised) + 40413 + Corporate Resources + + + + East Lindsey District Council + 04/08/2010 + CIFS008875 + 291.06 + SUPPLIES TEAM + 534039 + TL IT - Infrastructure + Consumables + 40420 + Information Technology + + + + East Lindsey District Council + 04/08/2010 + CIFS008875 + 216.42 + SUPPLIES TEAM + 534039 + TL IT - Infrastructure + Consumables + 40420 + Information Technology + + + + East Lindsey District Council + 04/08/2010 + CIFS008875 + 154.62 + SUPPLIES TEAM + 534039 + TL IT - Infrastructure + Consumables + 40420 + Information Technology + + + + East Lindsey District Council + 04/08/2010 + CIFS008875 + 77.31 + SUPPLIES TEAM + 534039 + TL IT - Infrastructure + Consumables + 40420 + Information Technology + + + + East Lindsey District Council + 04/08/2010 + CIFS008875 + 231.93 + SUPPLIES TEAM + 534039 + TL IT - Infrastructure + Consumables + 40420 + Information Technology + + + + East Lindsey District Council + 04/08/2010 + CIFS008875 + 44.45 + SUPPLIES TEAM + 534039 + TL IT - Infrastructure + Consumables + 40420 + Information Technology + + + + East Lindsey District Council + 04/08/2010 + CIFS008875 + 123.34 + SUPPLIES TEAM + 534039 + TL IT - Infrastructure + Consumables + 40420 + Information Technology + + + + East Lindsey District Council + 04/08/2010 + CIHE000840 + 1456.34 + P BALDWIN + 420570 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 04/08/2010 + CIHE000840 + -246.75 + P BALDWIN + 420570 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 04/08/2010 + CIHE000841 + 6199.47 + ALAN FIELD ASSOCIATES LIMITED + 51062 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 04/08/2010 + CIHE000841 + -59.22 + ALAN FIELD ASSOCIATES LIMITED + 51062 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 04/08/2010 + CIHE000843 + 2017.87 + PREMIER STAGE PRODUCTIONS LTD + 514619 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 04/08/2010 + CIHE000844 + 9000 + CHAMBERS MANAGEMENT + 536406 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 04/08/2010 + CIHE000846 + 1900 + MIDLAND SOUND & LIGHTING LTD + 536419 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 04/08/2010 + CIHE000848 + 2837.14 + MAD ABOUT PRODUCTIONS LTD + 421896 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 04/08/2010 + CIHO005851 + 7330.99 + COTTS BUILDERS AND CONTRACTORS + 52142 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 04/08/2010 + CIHO005851 + -656.02 + COTTS BUILDERS AND CONTRACTORS + 52142 + Hsg Private Sector TL + Improvement Grant Agency + 1101 + Admin of Renovation/DF Grants + + + + East Lindsey District Council + 04/08/2010 + CIHO005852 + 1950 + GARRY SMITH + 493426 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 04/08/2010 + CIHO005853 + 4730.71 + KES BUILDING MAINTENANCE LTD + 390134 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 04/08/2010 + CIHO005853 + -423.33 + KES BUILDING MAINTENANCE LTD + 390134 + Hsg Private Sector TL + Improvement Grant Agency + 1101 + Admin of Renovation/DF Grants + + + + East Lindsey District Council + 04/08/2010 + CIHO005854 + 2923.42 + HALLGATE LINCS ELECTRICAL + 499682 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 04/08/2010 + CIHO005855 + 4740.76 + THATS HANDY MAINTENANCE CONSTRUCTION + 437819 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 04/08/2010 + CIHO005856 + 934 + STARGLAZE HOME IMPROVEMENTS + 536370 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 04/08/2010 + CIHO005864 + 2144.37 + ALLEN LOWES LTD + 536383 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 04/08/2010 + CIHO005865 + 13900 + EAST LINDSEY CITIZENS ADVICE BUREAU + 528524 + TL Partnerships & Grants + Grants General + 60201 + General Grants + + + + East Lindsey District Council + 04/08/2010 + CIHO005867 + 3500 + M & M GRANTHAM + 112448 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 04/08/2010 + CIHO005868 + 959.76 + EAGA PLC + 536493 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 06/08/2010 + CICP019087 + 1036 + MORGAN HUNT PUBLIC SECTOR LTD + 532604 + Chief Executive + Agency Costs + 11020 + Finance + + + + East Lindsey District Council + 06/08/2010 + CICP019089 + 1229.88 + BADENOCH & CLARK + 421029 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 06/08/2010 + CICP019090 + 1229.88 + BADENOCH & CLARK + 421029 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 06/08/2010 + CICP019091 + 1036 + BADENOCH & CLARK + 421029 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 06/08/2010 + CICP019092 + 17.17 + SRS LEISURE + 498706 + Meridian Facility Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019092 + 17.17 + SRS LEISURE + 498706 + Meridian Facility Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019092 + 17.17 + SRS LEISURE + 498706 + Meridian Facility Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019092 + 65.66 + SRS LEISURE + 498706 + Meridian Facility Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019092 + 65.66 + SRS LEISURE + 498706 + Meridian Facility Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019092 + 65.66 + SRS LEISURE + 498706 + Meridian Facility Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019092 + 104.98 + SRS LEISURE + 498706 + Meridian Facility Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019092 + 113.4 + SRS LEISURE + 498706 + Meridian Facility Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019092 + 62.1 + SRS LEISURE + 498706 + Meridian Facility Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019092 + 65.7 + SRS LEISURE + 498706 + Meridian Facility Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019092 + 65.7 + SRS LEISURE + 498706 + Meridian Facility Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019092 + 41.85 + SRS LEISURE + 498706 + Meridian Facility Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019092 + 46.01 + SRS LEISURE + 498706 + Meridian Facility Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019092 + 46.01 + SRS LEISURE + 498706 + Meridian Facility Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019092 + 4.46 + SRS LEISURE + 498706 + Meridian Facility Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019093 + 704 + CONTINENTAL SPORTS LTD + 45900 + BM Sports Facilities + Equipment Purchase + 40003 + Capital Expenditure + + + + East Lindsey District Council + 06/08/2010 + CICP019094 + 1550 + EKM LTD + 408738 + Service Development Manager + Other Outside Contractors + 20159 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CICP019094 + 890 + EKM LTD + 408738 + Service Development Manager + Other Outside Contractors + 20159 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CICP019094 + 190 + EKM LTD + 408738 + Service Development Manager + Other Outside Contractors + 20159 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CICP019094 + 534.86 + EKM LTD + 408738 + Service Development Manager + Other Outside Contractors + 20159 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CICP019094 + 542.18 + EKM LTD + 408738 + Sports Centre Manager + Other Outside Contractors + 20159 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019094 + 726.2 + EKM LTD + 408738 + Service Development Manager + Other Outside Contractors + 20159 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CICP019095 + 5209.85 + THE WORKSHOP (WISBECH) LIMITED + 530392 + Service Development Manager + Agency Costs + 11020 + OC Other Cleaning + + + + East Lindsey District Council + 06/08/2010 + CICP019114 + 505.42 + STAFFORCE RECRUITMENT + 462062 + Waste Services Manager + Agency Costs + 11020 + Household Waste-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019120 + 5145 + LINCOLNSHIRE TOURISM + 374639 + Business Development Manager + General Advertising + 40604 + Visitor Information + + + + East Lindsey District Council + 06/08/2010 + CICP019120 + 29855 + LINCOLNSHIRE TOURISM + 374639 + Business Development Manager + Marketing Communications + 40646 + Visitor Information + + + + East Lindsey District Council + 06/08/2010 + CICP019121 + 2210 + YELL LIMITED + 317942 + Customer Services Manager + General Advertising + 40604 + Visitor Centres + + + + East Lindsey District Council + 06/08/2010 + CICP019128 + 1111.5 + BADENOCH & CLARK + 421029 + Assistant Chief Executive + Agency Costs + 11020 + Corporate Resources + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 177.45 + THE ARCO GROUP + 1753 + Cultural & Related Services + Project Costs + 40375 + Arts Development & Support + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 19.99 + THE ARCO GROUP + 1753 + Enforcement Team Leader + Protective Clothing + 40101 + Off-street Parking + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 30 + THE ARCO GROUP + 1753 + Enforcement Team Leader + Protective Clothing + 40101 + Off-street Parking + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 15 + THE ARCO GROUP + 1753 + Enforcement Team Leader + Protective Clothing + 40101 + Off-street Parking + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 19.08 + THE ARCO GROUP + 1753 + Waste Services Manager + Small Plant & Tools + 40040 + Household Waste-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 49.48 + THE ARCO GROUP + 1753 + Waste Services Manager + Small Plant & Tools + 40040 + Household Waste-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 35.99 + THE ARCO GROUP + 1753 + Hsg Private Sector TL + Protective Clothing + 40101 + Housing Standards + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 153.7 + THE ARCO GROUP + 1753 + Building Control + Protective Clothing + 40101 + Building Control + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 43.19 + THE ARCO GROUP + 1753 + Building Control + Protective Clothing + 40101 + Building Control + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 43.49 + THE ARCO GROUP + 1753 + Business Development Manager + Protective Clothing + 40101 + Countryside Management & Rec. + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 22.64 + THE ARCO GROUP + 1753 + Business Development Officer + Protective Clothing + 40101 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 37.49 + THE ARCO GROUP + 1753 + Business Development Officer + Protective Clothing + 40101 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 84 + THE ARCO GROUP + 1753 + Service Development Manager + Protective Clothing + 40101 + Recycling-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 178.22 + THE ARCO GROUP + 1753 + Service Development Manager + Protective Clothing + 40101 + Recycling-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 506.87 + THE ARCO GROUP + 1753 + Service Development Manager + Protective Clothing + 40101 + Recycling-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 148.95 + THE ARCO GROUP + 1753 + Service Development Manager + Protective Clothing + 40101 + Recycling-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 36 + THE ARCO GROUP + 1753 + Service Development Manager + Protective Clothing + 40101 + Recycling-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 120.75 + THE ARCO GROUP + 1753 + Service Development Manager + Protective Clothing + 40101 + Recycling-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 76.23 + THE ARCO GROUP + 1753 + Service Development Manager + Protective Clothing + 40101 + Recycling-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 47.32 + THE ARCO GROUP + 1753 + Service Development Manager + Protective Clothing + 40101 + Recycling-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 165.6 + THE ARCO GROUP + 1753 + Service Development Manager + Protective Clothing + 40101 + Recycling-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 428.89 + THE ARCO GROUP + 1753 + Service Development Manager + Protective Clothing + 40101 + Recycling-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 50.92 + THE ARCO GROUP + 1753 + Service Development Manager + Protective Clothing + 40101 + Recycling-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 30.74 + THE ARCO GROUP + 1753 + Building Control + Protective Clothing + 40101 + Building Control + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 19.99 + THE ARCO GROUP + 1753 + Enforcement Team Leader + Protective Clothing + 40101 + Off-street Parking + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 30 + THE ARCO GROUP + 1753 + Enforcement Team Leader + Protective Clothing + 40101 + Off-street Parking + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 51.84 + THE ARCO GROUP + 1753 + Hsg Private Sector TL + Protective Clothing + 40101 + Holding Accounts + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 57.13 + THE ARCO GROUP + 1753 + Hsg Private Sector TL + Protective Clothing + 40101 + Holding Accounts + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 30 + THE ARCO GROUP + 1753 + Enforcement Team Leader + Protective Clothing + 40101 + Off-street Parking + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 15.48 + THE ARCO GROUP + 1753 + Waste Services Manager + Small Plant & Tools + 40040 + Household Waste-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 11.1 + THE ARCO GROUP + 1753 + Service Development Manager + Protective Clothing + 40101 + Markets + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 42 + THE ARCO GROUP + 1753 + Building Control + Protective Clothing + 40101 + Building Control + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 64.4 + THE ARCO GROUP + 1753 + Service Development Manager + Protective Clothing + 40101 + Recycling-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 13.8 + THE ARCO GROUP + 1753 + Hsg Private Sector TL + Protective Clothing + 40101 + Holding Accounts + + + + East Lindsey District Council + 06/08/2010 + CICP019132 + 4.95 + THE ARCO GROUP + 1753 + Enforcement Team Leader + Protective Clothing + 40101 + Off-street Parking + + + + East Lindsey District Council + 06/08/2010 + CICP019135 + 8931.06 + STEVEN PASK LIMITED + 80279 + Sports Centre Manager + Skegness Sports Association Payment + 50831 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 1.4 + ESPO + 437615 + Housing Support TL + Office Stationery + 40204 + Housing Support + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 89.7 + ESPO + 437615 + Horncastle Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 113.7 + ESPO + 437615 + Horncastle Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 19.02 + ESPO + 437615 + Horncastle Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 27.32 + ESPO + 437615 + Horncastle Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 38.52 + ESPO + 437615 + Horncastle Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 4.35 + ESPO + 437615 + Horncastle Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 4.35 + ESPO + 437615 + Horncastle Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 4.35 + ESPO + 437615 + Horncastle Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 4.35 + ESPO + 437615 + Horncastle Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 2.84 + ESPO + 437615 + Horncastle Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 4.74 + ESPO + 437615 + Horncastle Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 4.3 + ESPO + 437615 + Horncastle Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 2.22 + ESPO + 437615 + Development Control + Office Stationery + 40204 + Development Control + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 2.22 + ESPO + 437615 + Development Control + Office Stationery + 40204 + Development Control + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 3.3 + ESPO + 437615 + Development Control + Office Stationery + 40204 + Development Control + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 62.88 + ESPO + 437615 + TL Property + Internal Cleaning Materials + 40701 + Public Buildings + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 13.69 + ESPO + 437615 + TL Property + Internal Cleaning Materials + 40701 + Public Buildings + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 67.4 + ESPO + 437615 + TL Property + Internal Cleaning Materials + 40701 + Public Buildings + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 29.8 + ESPO + 437615 + TL Property + Internal Cleaning Materials + 40701 + Public Buildings + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 19.4 + ESPO + 437615 + TL Property + Internal Cleaning Materials + 40701 + Public Buildings + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 147.56 + ESPO + 437615 + TL Property + Internal Cleaning Materials + 40701 + Public Buildings + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 149.5 + ESPO + 437615 + TL Property + Internal Cleaning Materials + 40701 + Public Buildings + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 74 + ESPO + 437615 + TL Property + Internal Cleaning Materials + 40701 + Public Buildings + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 870 + ESPO + 437615 + TL Property + Internal Cleaning Materials + 40701 + Public Buildings + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 56.22 + ESPO + 437615 + Democracy Manager + Office Stationery + 40204 + Chief Executive's + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 5.1 + ESPO + 437615 + Enforcement Team Leader + Office Stationery + 40204 + Off-street Parking + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 1480 + ESPO + 437615 + Service Development Manager + Cleaning Materials + 20701 + OC Other Cleaning + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 14.8 + ESPO + 437615 + Business Development Manager + Cleaning Materials + 20701 + Countryside Management & Rec. + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 14.4 + ESPO + 437615 + Business Development Manager + Cleaning Materials + 20701 + Countryside Management & Rec. + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 2.43 + ESPO + 437615 + Business Development Manager + Cleaning Materials + 20701 + Countryside Management & Rec. + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 2.1 + ESPO + 437615 + Business Development Manager + Cleaning Materials + 20701 + Countryside Management & Rec. + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 11.74 + ESPO + 437615 + Business Development Manager + Cleaning Materials + 20701 + Countryside Management & Rec. + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 4.35 + ESPO + 437615 + Business Development Manager + Cleaning Materials + 20701 + Countryside Management & Rec. + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 4.47 + ESPO + 437615 + Business Development Manager + Cleaning Materials + 20701 + Countryside Management & Rec. + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 10.81 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 2.12 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 21.64 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 49.8 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 4.35 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 7.4 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 10.34 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 48.5 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 3.72 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 6.85 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 3.62 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 8.7 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 16.38 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 1.8 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 6.9 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 6.85 + ESPO + 437615 + Sports Centre Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 28.18 + ESPO + 437615 + Embassy Pool Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 3.38 + ESPO + 437615 + Embassy Pool Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 3.52 + ESPO + 437615 + Embassy Pool Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 3.52 + ESPO + 437615 + Embassy Pool Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 37.9 + ESPO + 437615 + Embassy Pool Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 5 + ESPO + 437615 + Embassy Pool Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 5 + ESPO + 437615 + Embassy Pool Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 17 + ESPO + 437615 + Horncastle Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 4.88 + ESPO + 437615 + Horncastle Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019140 + 63.8 + ESPO + 437615 + Embassy Pool Manager + Cleaning Materials + 20701 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICP019141 + 678.49 + THE ARCO GROUP + 1753 + Service Development Manager + Protective Clothing + 40101 + Recycling-Collection + + + + East Lindsey District Council + 06/08/2010 + CICP019144 + 937.5 + TOTEMIC LTD + 536435 + Housing Support TL + Office Rent + 20309 + Housing Support + + + + East Lindsey District Council + 06/08/2010 + CICP019146 + 101183 + MAGNETIC EVENTS LTD + 531980 + Cultural & Related Services + Equipment Purchase + 40003 + Arts Development & Support + This payment to Magnetic Events was for the SO Festival 2010 at Skegness. This payment covered fees and various performers' costs and was financed not by ELDC but by the contribution made by the Arts Council to the SO Festival. + + + East Lindsey District Council + 06/08/2010 + CICP019148 + 5400 + INSTITUTE OF SWIMMING + 536600 + Business Development Officer + Course Fees Training Expenses + 11013 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CICU000484 + 648.8 + WOODHALL SPA COTTAGE MUSEUM + 536684 + Customer Services Manager + Share Of Museum Fees + 60316 + Visitor Centres + + + + East Lindsey District Council + 06/08/2010 + CICU000485 + 612.2 + GRAYSCROFT BUS SERVICES LTD + 8109 + Customer Services Manager + Grayscroft Travel + 60306 + Visitor Centres + + + + East Lindsey District Council + 06/08/2010 + CICU000488 + 954 + CHAMBER PHILHARMONIA COLOGNE + 536668 + Customer Services Manager + General Agencies + 60314 + Visitor Centres + + + + East Lindsey District Council + 06/08/2010 + CICU000490 + 2698.22 + NATIONAL EXPRESS CREDIT CONTROL DEPT + 533030 + Customer Services Manager + National Express Travel + 60308 + Visitor Centres + + + + East Lindsey District Council + 06/08/2010 + CICU000490 + 96.69 + NATIONAL EXPRESS CREDIT CONTROL DEPT + 533030 + TL Property + National Express Travel + 60308 + Visitor Centres + + + + East Lindsey District Council + 06/08/2010 + CICU000490 + 863.05 + NATIONAL EXPRESS CREDIT CONTROL DEPT + 533030 + Customer Services Manager + National Express Travel + 60308 + Visitor Centres + + + + East Lindsey District Council + 06/08/2010 + CICU000490 + 1432.85 + NATIONAL EXPRESS CREDIT CONTROL DEPT + 533030 + Customer Services Manager + National Express Travel + 60308 + Visitor Centres + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Meridian Facility Manager + Equipment Repair + 40004 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 113.65 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Policy & Project Manager + Equipment Purchase + 40003 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 115.52 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Business Development Manager + Responsive Maintenance + 20101 + Countryside Management & Rec. + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 83.53 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Public Buildings + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 69.04 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Policy & Project Manager + Responsive Maintenance + 20101 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 153.52 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Policy & Project Manager + Responsive Maintenance + 20101 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 86.33 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Horncastle Pool Manager + Responsive Maintenance + 20101 + Countryside Management & Rec. + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 137 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 62.21 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 103.65 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 107.85 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 98.52 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 47 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 20.73 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Policy & Project Manager + Responsive Maintenance + 20101 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 162.23 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 76.59 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 281.11 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 30.19 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Enforcement Team Leader + Responsive Maintenance + 20101 + Off-street Parking + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 20.73 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 161.3 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Programmed Maintenance + 20102 + Foreshore + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 48.66 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 72.06 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 138.8 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Enforcement Team Leader + Responsive Maintenance + 20101 + Off-street Parking + + + + East Lindsey District Council + 06/08/2010 + CIDS011314 + 82.92 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Public Buildings + + + + East Lindsey District Council + 06/08/2010 + CIDS011315 + 4220.25 + D & D ENGINEERING (LINCS) LTD + 436234 + Technical Services Team Leader + Responsive Maintenance + 20101 + Illuminations + + + + East Lindsey District Council + 06/08/2010 + CIDS011317 + 1150 + FIREWORKS INTERNATIONAL LTD + 536503 + Technical Services Team Leader + Programmed Maintenance + 20102 + Illuminations + + + + East Lindsey District Council + 06/08/2010 + CIDS011318 + 3110.38 + NIFTYLIFT LTD + 502304 + Technical Services Team Leader + Responsive Maintenance + 20101 + Illuminations + + + + East Lindsey District Council + 06/08/2010 + CIDS011322 + 1151.79 + AVERY WEIGH TRONIX + 397386 + TL Property + Programmed Maintenance + 20102 + Markets + + + + East Lindsey District Council + 06/08/2010 + CIDS011327 + 560 + AIRCO INSTALLATIONS LTD + 533056 + Policy & Project Manager + Air Conditioning Maintenance + 20606 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 06/08/2010 + CIDS011331 + 2200 + D & D ENGINEERING (LINCS) LTD + 436234 + Service Development Manager + Programmed Maintenance + 20102 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011332 + 1071.83 + THYSSENKRUPP ELEVATOR UK LTD + 488910 + Sports Centre Manager + Responsive Maintenance + 20101 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CIDS011333 + 117.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + Service Development Manager + Programmed Maintenance + 20102 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011333 + 117.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + Service Development Manager + Programmed Maintenance + 20102 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011333 + 117.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + Service Development Manager + Programmed Maintenance + 20102 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011333 + 117.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + Service Development Manager + Programmed Maintenance + 20102 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011333 + 117.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + TL Property + Programmed Maintenance + 20102 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011333 + 117.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + Service Development Manager + Programmed Maintenance + 20102 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011333 + 117.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + Service Development Manager + Programmed Maintenance + 20102 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011333 + 117.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + Service Development Manager + Programmed Maintenance + 20102 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011333 + 117.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + Service Development Manager + Programmed Maintenance + 20102 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011333 + 117.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + Service Development Manager + Programmed Maintenance + 20102 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 88.17 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Policy & Project Manager + Responsive Maintenance + 20101 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 69.95 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Business Development Manager + Responsive Maintenance + 20101 + Countryside Management & Rec. + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 155.27 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 72.94 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Building Control + Responsive Maintenance + 20101 + Street Naming + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 24.93 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 143.76 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 113.08 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Building Control + Responsive Maintenance + 20101 + Street Naming + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 129 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 551.3 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Vandal Damage + 20125 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 120.15 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 304.94 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Policy & Project Manager + Responsive Maintenance + 20101 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 157.48 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Horncastle Pool Manager + Responsive Maintenance + 20101 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 792.6 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Building Control + Responsive Maintenance + 20101 + Street Naming + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 84.4 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 47.76 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Building Control + Responsive Maintenance + 20101 + Street Naming + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 182.35 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 2368.33 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Embassy Pool Manager + Responsive Maintenance + 20101 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 70.66 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 124.06 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Vandal Damage + 20125 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Embassy Pool Manager + Vandal Damage + 20125 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 99.35 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 87.36 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 215.25 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Enforcement Team Leader + Responsive Maintenance + 20101 + Off-street Parking + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 284.71 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Enforcement Team Leader + Responsive Maintenance + 20101 + Off-street Parking + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 1424.58 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 93.31 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Business Development Manager + Responsive Maintenance + 20101 + Countryside Management & Rec. + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 120.72 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Programmed Maintenance + 20102 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIDS011334 + 363.84 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIFS008882 + 5723.33 + MCL TRANSPORT CONSULTANTS LTD + 431462 + BM Financial & ICT Services + Agency Costs + 11020 + Non Service Issues + + + + East Lindsey District Council + 06/08/2010 + CIFS008883 + 1620.75 + ROYAL MAIL + 171612 + Hsg Benefits Assessments TL + Postage + 40401 + Finance + + + + East Lindsey District Council + 06/08/2010 + CIFS008883 + 1661.34 + ROYAL MAIL + 171612 + Council Tax TL + Postage + 40401 + Local Taxation + + + + East Lindsey District Council + 06/08/2010 + CIFS008883 + 199.85 + ROYAL MAIL + 171612 + Debt Recovery TL + Postage + 40401 + Local Taxation + + + + East Lindsey District Council + 06/08/2010 + CIFS008883 + 49.58 + ROYAL MAIL + 171612 + Debt Recovery TL + Postage + 40401 + Other Rechargeable Overheads + + + + East Lindsey District Council + 06/08/2010 + CIFS008883 + 325.7 + ROYAL MAIL + 171612 + BM Financial & ICT Services + Postage + 40401 + Finance + + + + East Lindsey District Council + 06/08/2010 + CIFS008883 + 2 + ROYAL MAIL + 171612 + Business Development Officer + Postage + 40401 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CIFS008884 + 5339.3 + TESCOS STORES LTD + 386287 + Enforcement Team Leader + Share Of Car Park Income + 60305 + Off-street Parking + + + + East Lindsey District Council + 06/08/2010 + CIFS008885 + 9566.92 + INNES ENGLAND COMMERCIAL PROPERTY + 514431 + Enforcement Team Leader + Share Of Car Park Income + 60305 + Off-street Parking + + + + East Lindsey District Council + 06/08/2010 + CIFS008890 + 145 + ZURICH MUNICIPAL INSURANCE CO (CASHIERS) + 18995 + Corporate Accounting + Insurances - Excess + 99902 + Non Service Issues + + + + East Lindsey District Council + 06/08/2010 + CIFS008890 + -145 + ZURICH MUNICIPAL INSURANCE CO (CASHIERS) + 18995 + Corporate Accounting + Insurance - Recharge of Excess + 4171 + Non Service Issues + + + + East Lindsey District Council + 06/08/2010 + CIFS008890 + 145 + ZURICH MUNICIPAL INSURANCE CO (CASHIERS) + 18995 + Waste Services Manager + Insurance Expenditure + 40923 + Household Waste-Collection + + + + East Lindsey District Council + 06/08/2010 + CIFS008890 + 3170 + ZURICH MUNICIPAL INSURANCE CO (CASHIERS) + 18995 + Corporate Accounting + Insurances - Excess + 99902 + Non Service Issues + + + + East Lindsey District Council + 06/08/2010 + CIFS008890 + -3170 + ZURICH MUNICIPAL INSURANCE CO (CASHIERS) + 18995 + Corporate Accounting + Insurance - Recharge of Excess + 4171 + Non Service Issues + + + + East Lindsey District Council + 06/08/2010 + CIFS008890 + 3170 + ZURICH MUNICIPAL INSURANCE CO (CASHIERS) + 18995 + Waste Services Manager + Insurance Expenditure + 40923 + Household Waste-Collection + + + + East Lindsey District Council + 06/08/2010 + CIFS008891 + -188.65 + ZURICH MUNICIPAL INSURANCE CO (CASHIERS) + 18995 + Corporate Accounting + Insurances - Excess + 99902 + Non Service Issues + + + + East Lindsey District Council + 06/08/2010 + CIFS008891 + 188.65 + ZURICH MUNICIPAL INSURANCE CO (CASHIERS) + 18995 + Corporate Accounting + Insurance - Recharge of Excess + 4171 + Non Service Issues + + + + East Lindsey District Council + 06/08/2010 + CIFS008891 + -188.65 + ZURICH MUNICIPAL INSURANCE CO (CASHIERS) + 18995 + Service Development Manager + Insurance Expenditure + 40923 + Community Parks & Open Spaces + + + + East Lindsey District Council + 06/08/2010 + CIFS008891 + 4664 + ZURICH MUNICIPAL INSURANCE CO (CASHIERS) + 18995 + Corporate Accounting + Insurances - Excess + 99902 + Non Service Issues + + + + East Lindsey District Council + 06/08/2010 + CIFS008891 + -4664 + ZURICH MUNICIPAL INSURANCE CO (CASHIERS) + 18995 + Corporate Accounting + Insurance - Recharge of Excess + 4171 + Non Service Issues + + + + East Lindsey District Council + 06/08/2010 + CIFS008891 + 4664 + ZURICH MUNICIPAL INSURANCE CO (CASHIERS) + 18995 + Business Development Manager + Insurance Expenditure + 40923 + Countryside Management & Rec. + + + + East Lindsey District Council + 06/08/2010 + CIFS008892 + 3065 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurances - Excess + 99902 + Non Service Issues + + + + East Lindsey District Council + 06/08/2010 + CIFS008892 + -3065 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurance - Recharge of Excess + 4171 + Non Service Issues + + + + East Lindsey District Council + 06/08/2010 + CIFS008892 + 3065 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Service Development Manager + Insurance Expenditure + 40923 + OC Other Cleaning + + + + East Lindsey District Council + 06/08/2010 + CIFS008892 + 880.78 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurances - Excess + 99902 + Non Service Issues + + + + East Lindsey District Council + 06/08/2010 + CIFS008892 + -880.78 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurance - Recharge of Excess + 4171 + Non Service Issues + + + + East Lindsey District Council + 06/08/2010 + CIFS008892 + 880.78 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Waste Services Manager + Insurance Expenditure + 40923 + Household Waste-Collection + + + + East Lindsey District Council + 06/08/2010 + CIFS008892 + 100 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurances - Excess + 99902 + Non Service Issues + + + + East Lindsey District Council + 06/08/2010 + CIFS008892 + -100 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurance - Recharge of Excess + 4171 + Non Service Issues + + + + East Lindsey District Council + 06/08/2010 + CIFS008892 + 100 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Horncastle Pool Manager + Insurance Expenditure + 40923 + Indoor Sports & Recreation + + + + East Lindsey District Council + 06/08/2010 + CIFS008895 + 5028575 + LINCOLNSHIRE COUNTY COUNCIL + 288042 + Corporate Accounting + Precept Expenditure + 60501 + Lincs County Council Precept + + + + East Lindsey District Council + 06/08/2010 + CIFS008896 + 845949.3 + LOCAL POLICE AUTHORITY FUND ACCOUNT + 29476 + Corporate Accounting + Precept Expenditure + 60501 + Police Authority Precept + + + + East Lindsey District Council + 06/08/2010 + CIHO005869 + 3857.39 + RODDEN & COOPER + 518974 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 06/08/2010 + CIHO005869 + -345.18 + RODDEN & COOPER + 518974 + Hsg Private Sector TL + Improvement Grant Agency + 1101 + Admin of Renovation/DF Grants + + + + East Lindsey District Council + 06/08/2010 + CIRS000247 + 4600 + FIRTH CONSULTANTS LTD + 512035 + Environment Team Leader + Main Contractor + 98001 + Capital Expenditure + + + + East Lindsey District Council + 11/08/2010 + CIAU001082 + 1000 + STICKFORD COMMUNITY CENTRE + 410661 + Democracy Manager + Grants General + 60201 + Members Allowances & Expenses + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 86.94 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 68.45 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 35.96 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 44.95 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 62.95 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 82.14 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 20.38 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 86.94 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 7.09 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 88.14 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 35.96 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 36.57 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 62.95 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 37.77 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 24.18 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 24.18 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 24.18 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 24.18 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 24.18 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 24.18 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 24.18 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 24.18 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 24.18 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 39.27 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 20.97 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 39.27 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 22.47 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 25.47 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 45.27 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 17.97 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 35.97 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019156 + 45.27 + DEE BEE + 450634 + Meridian Facility Manager + Cold Vending Machine Supplies + 40504 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019168 + 5919.68 + LGS LIMITED + 525718 + Development Control + Agency Costs + 11020 + Planning & Regeneration + + + + East Lindsey District Council + 11/08/2010 + CICP019172 + 1079 + BADENOCH & CLARK + 421029 + Chief Executive + Agency Costs + 11020 + Finance + + + + East Lindsey District Council + 11/08/2010 + CICP019173 + 903.5 + BADENOCH & CLARK + 421029 + Chief Executive + Agency Costs + 11020 + Finance + + + + East Lindsey District Council + 11/08/2010 + CICP019174 + 949 + BADENOCH & CLARK + 421029 + Assistant Chief Executive + Agency Costs + 11020 + Corporate Resources + + + + East Lindsey District Council + 11/08/2010 + CICP019175 + 910 + BADENOCH & CLARK + 421029 + Chief Executive + Agency Costs + 11020 + Finance + + + + East Lindsey District Council + 11/08/2010 + CICP019188 + 576 + SPIRE CLEANING SERVICES + 531074 + Policy & Project Manager + Internal Cleaning Materials + 40701 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 11/08/2010 + CICP019190 + 661.94 + VENDING ENTERPRISES + 241500 + Horncastle Pool Manager + Cold Vending Machine Rental + 40503 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CICP019205 + 1095.86 + PHS GROUP PLC + 206383 + Business Development Manager + Laundry + 40103 + Countryside Management & Rec. + + + + East Lindsey District Council + 11/08/2010 + CIDS011342 + 1170 + NORTH LINCS ENGINEERING LTD + 13071 + Waste Services Manager + Small Plant & Tools + 40040 + Household Waste-Collection + + + + East Lindsey District Council + 11/08/2010 + CIDS011346 + 570.29 + AEGIS SERVICE & AFTERCARE LTD + 521770 + Policy & Project Manager + Maintenance of Intruder Alarm System + 20610 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 11/08/2010 + CIDS011350 + 692 + D & D ENGINEERING (LINCS) LTD + 436234 + Enforcement Team Leader + Equipment Purchase + 40003 + Off-street Parking + + + + East Lindsey District Council + 11/08/2010 + CIDS011355 + 2832.96 + SOUTHERN ELECTRIC PLC + 354691 + Embassy Pool Manager + Electricity + 20201 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIDS011357 + 6181.98 + SOUTHERN ELECTRIC PLC + 354691 + Meridian Facility Manager + Gas + 20202 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + -1559.08 + ESPO + 437615 + SM Economic Regen & Property + Gas + 20202 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + -625.55 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + -471.58 + ESPO + 437615 + Policy & Project Manager + Gas + 20202 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + -203.63 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + -350.69 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + -742.76 + ESPO + 437615 + Policy & Project Manager + Gas + 20202 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + -509.58 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 2625.81 + ESPO + 437615 + Embassy Pool Manager + Gas + 20202 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 501.98 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 534.79 + ESPO + 437615 + Theatre Manager + Gas + 20202 + Theatres/Public Entertainment + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 1278.83 + ESPO + 437615 + Horncastle Pool Manager + Gas + 20202 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 565.14 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 473.5 + ESPO + 437615 + Policy & Project Manager + Gas + 20202 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 221.75 + ESPO + 437615 + Policy & Project Manager + Gas + 20202 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 121.93 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 497.3 + ESPO + 437615 + Meridian Facility Manager + Gas + 20202 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + -57.78 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + -160.47 + ESPO + 437615 + Meridian Facility Manager + Gas + 20202 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 9.28 + ESPO + 437615 + Meridian Facility Manager + Gas + 20202 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 69.55 + ESPO + 437615 + Sports Centre Manager + Gas + 20202 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 60.07 + ESPO + 437615 + Theatre Manager + Gas + 20202 + Community Centres + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 23.05 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 83.07 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 366.51 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 53.67 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 29.4 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 42.57 + ESPO + 437615 + TL Property + Gas + 20202 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 31.38 + ESPO + 437615 + Business Development Manager + Gas + 20202 + Countryside Management & Rec. + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 26.48 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 7.77 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 3.03 + ESPO + 437615 + Service Development Manager + Gas + 20202 + Public Conveniences + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 35.78 + ESPO + 437615 + Policy & Project Manager + Gas + 20202 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 133.52 + ESPO + 437615 + Meridian Facility Manager + Gas + 20202 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIDS011363 + 31.06 + ESPO + 437615 + TL Property + Gas + 20202 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIFS008899 + 330.01 + ROYAL MAIL + 171612 + Hsg Benefits Assessments TL + Postage + 40401 + Finance + + + + East Lindsey District Council + 11/08/2010 + CIFS008899 + 354.62 + ROYAL MAIL + 171612 + Council Tax TL + Postage + 40401 + Local Taxation + + + + East Lindsey District Council + 11/08/2010 + CIFS008899 + 19.84 + ROYAL MAIL + 171612 + Debt Recovery TL + Postage + 40401 + Local Taxation + + + + East Lindsey District Council + 11/08/2010 + CIFS008899 + 20.1 + ROYAL MAIL + 171612 + Debt Recovery TL + Postage + 40401 + Other Rechargeable Overheads + + + + East Lindsey District Council + 11/08/2010 + CIFS008899 + 29.5 + ROYAL MAIL + 171612 + BM Financial & ICT Services + Postage + 40401 + Finance + + + + East Lindsey District Council + 11/08/2010 + CIFS008899 + 91.6 + ROYAL MAIL + 171612 + Development Control + Postage + 40401 + Development Control + + + + East Lindsey District Council + 11/08/2010 + CIFS008899 + 25 + ROYAL MAIL + 171612 + Commercial Team Leader + Postage + 40401 + Environmental Services + + + + East Lindsey District Council + 11/08/2010 + CIFS008899 + 284.42 + ROYAL MAIL + 171612 + Cultural & Related Services + Postage + 40401 + Arts Development & Support + + + + East Lindsey District Council + 11/08/2010 + CIFS008905 + 715 + CISILION LTD + 491486 + TL IT - Network & Comms + Computer Purchase (not capitalised) + 40413 + Information Technology + + + + East Lindsey District Council + 11/08/2010 + CIFS008905 + 2896 + CISILION LTD + 491486 + TL IT - Network & Comms + Computer Purchase (not capitalised) + 40413 + Information Technology + + + + East Lindsey District Council + 11/08/2010 + CIFS008905 + 454 + CISILION LTD + 491486 + TL IT - Network & Comms + Computer Purchase (not capitalised) + 40413 + Information Technology + + + + East Lindsey District Council + 11/08/2010 + CIFS008905 + 10 + CISILION LTD + 491486 + TL IT - Network & Comms + Computer Purchase (not capitalised) + 40413 + Information Technology + + + + East Lindsey District Council + 11/08/2010 + CIFS008906 + 121.25 + COVERGOLD LIMITED + 359531 + Building Control + Computer Purchase (not capitalised) + 40413 + Building Control + + + + East Lindsey District Council + 11/08/2010 + CIFS008906 + 363.75 + COVERGOLD LIMITED + 359531 + Development Control + Computer Purchase (not capitalised) + 40413 + Development Control + + + + East Lindsey District Council + 11/08/2010 + CIFS008911 + 226.21 + ROTHERA & BRERETON + 441122 + IT Manager + Print Unit Supplies + 40203 + Environmental Services + + + + East Lindsey District Council + 11/08/2010 + CIFS008911 + 340.27 + ROTHERA & BRERETON + 441122 + IT Manager + Print Unit Supplies + 40203 + Environmental Services + + + + East Lindsey District Council + 11/08/2010 + CIFS008915 + 1094.25 + MULTIDATA (EUROPE) + 512886 + IT Fund + Computer Purchase (not capitalised) + 40413 + Information Technology + + + + East Lindsey District Council + 11/08/2010 + CIFS008916 + 6813 + ALFORD & DISTRICT CIVIC TRUST LTD + 70658 + Cultural & Related Services + Expenditure + 99990 + Non Service Issues + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + 4200 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurances - Excess + 99902 + Non Service Issues + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + -4200 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurance - Recharge of Excess + 4171 + Non Service Issues + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + 4200 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Enforcement Team Leader + Insurance Expenditure + 40923 + Off-street Parking + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + 146.88 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurances - Excess + 99902 + Non Service Issues + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + -146.88 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurance - Recharge of Excess + 4171 + Non Service Issues + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + 146.88 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Waste Services Manager + Insurance Expenditure + 40923 + Household Waste-Collection + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + 5100 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurances - Excess + 99902 + Non Service Issues + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + -5100 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurance - Recharge of Excess + 4171 + Non Service Issues + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + 5100 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Waste Services Manager + Insurance Expenditure + 40923 + Household Waste-Collection + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + 70.5 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurances - Excess + 99902 + Non Service Issues + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + -70.5 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurance - Recharge of Excess + 4171 + Non Service Issues + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + 70.5 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Waste Services Manager + Insurance Expenditure + 40923 + Household Waste-Collection + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + 2000 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurances - Excess + 99902 + Non Service Issues + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + -2000 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurance - Recharge of Excess + 4171 + Non Service Issues + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + 2000 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Waste Services Manager + Insurance Expenditure + 40923 + Household Waste-Collection + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + 1000.8 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurances - Excess + 99902 + Non Service Issues + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + -1000.8 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Corporate Accounting + Insurance - Recharge of Excess + 4171 + Non Service Issues + + + + East Lindsey District Council + 11/08/2010 + CIFS008917 + 1000.8 + TRAVELERS INSURANCE COMPANY LIMITED + 499954 + Horncastle Pool Manager + Insurance Expenditure + 40923 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Democracy Manager + Mobile Phones + 40405 + Elections & Reg of Electors + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 45.51 + VODAFONE CORPORATE LIMITED + 57273 + Democracy Manager + Mobile Phones + 40405 + Members Allowances & Expenses + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 38.56 + VODAFONE CORPORATE LIMITED + 57273 + Communications Manager + Mobile Phones + 40405 + "Trsm Policy + Marketing & Devt" + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 25.11 + VODAFONE CORPORATE LIMITED + 57273 + Hsg Private Sector TL + Mobile Phones + 40405 + Community Safety/CCTV + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 28.97 + VODAFONE CORPORATE LIMITED + 57273 + TL Partnerships & Grants + Mobile Phones + 40405 + Community Safety/CCTV + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 7.07 + VODAFONE CORPORATE LIMITED + 57273 + TL Property + Mobile Phones + 40405 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2.78 + VODAFONE CORPORATE LIMITED + 57273 + TL Property + Mobile Phones + 40405 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2.03 + VODAFONE CORPORATE LIMITED + 57273 + TL Property + Mobile Phones + 40405 + Public Buildings + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Policy & Project Manager + Mobile Phones + 40405 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Policy & Project Manager + Mobile Phones + 40405 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Policy & Project Manager + Mobile Phones + 40405 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 53.1 + VODAFONE CORPORATE LIMITED + 57273 + Development Control + Mobile Phones + 40405 + Development Control + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 43.64 + VODAFONE CORPORATE LIMITED + 57273 + Enforcement Team Leader + Mobile Phones + 40405 + DC Enforcement + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 207.33 + VODAFONE CORPORATE LIMITED + 57273 + Waste Services Manager + Mobile Phones + 40405 + Household Waste-Collection + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 13.48 + VODAFONE CORPORATE LIMITED + 57273 + Improvement & Development Mngr + Mobile Phones + 40405 + Recycling-Collection + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 20.56 + VODAFONE CORPORATE LIMITED + 57273 + Service Development Manager + Mobile Phones + 40405 + Recycling-Collection + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Environment Team Leader + Mobile Phones + 40405 + Pest Control + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 67.37 + VODAFONE CORPORATE LIMITED + 57273 + Environment Team Leader + Mobile Phones + 40405 + Dog Control + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 92.3 + VODAFONE CORPORATE LIMITED + 57273 + Enforcement Team Leader + Mobile Phones + 40405 + Street Cleansing + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 17.97 + VODAFONE CORPORATE LIMITED + 57273 + Service Development Manager + Mobile Phones + 40405 + Markets + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 4 + VODAFONE CORPORATE LIMITED + 57273 + Building Control + Mobile Phones + 40405 + Dangerous Buildings + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2.17 + VODAFONE CORPORATE LIMITED + 57273 + Building Control + Mobile Phones + 40405 + Dangerous Buildings + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 8.47 + VODAFONE CORPORATE LIMITED + 57273 + Hsg Private Sector TL + Mobile Phones + 40405 + Housing Standards + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 22.46 + VODAFONE CORPORATE LIMITED + 57273 + Hsg Private Sector TL + Mobile Phones + 40405 + Housing Standards + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Business Development Manager + Mobile Phones + 40405 + Visitor Information + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Customer Services Manager + Mobile Phones + 40405 + Visitor Centres + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2.03 + VODAFONE CORPORATE LIMITED + 57273 + Customer Services Manager + Mobile Phones + 40405 + Visitor Centres + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 11.51 + VODAFONE CORPORATE LIMITED + 57273 + Horncastle Pool Manager + Mobile Phones + 40405 + Countryside Management & Rec. + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 4.09 + VODAFONE CORPORATE LIMITED + 57273 + Theatre Manager + Mobile Phones + 40405 + Community Parks & Open Spaces + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Health Team Leader + Mobile Phones + 40405 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + SM Economic Regen & Property + Mobile Phones + 40405 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Meridian Facility Manager + Mobile Phones + 40405 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 13.86 + VODAFONE CORPORATE LIMITED + 57273 + Meridian Facility Manager + Mobile Phones + 40405 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 16.97 + VODAFONE CORPORATE LIMITED + 57273 + Theatre Manager + Mobile Phones + 40405 + Theatres/Public Entertainment + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 12.29 + VODAFONE CORPORATE LIMITED + 57273 + Sports Centre Manager + Mobile Phones + 40405 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Sports Centre Manager + Mobile Phones + 40405 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 4.52 + VODAFONE CORPORATE LIMITED + 57273 + Meridian Facility Manager + Mobile Phones + 40405 + Indoor Sports & Recreation + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 56.58 + VODAFONE CORPORATE LIMITED + 57273 + Enforcement Team Leader + Mobile Phones + 40405 + Off-street Parking + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Business Development Manager + Mobile Phones + 40405 + Countryside Management & Rec. + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Cultural & Related Services + Mobile Phones + 40405 + Sports Development + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 55.59 + VODAFONE CORPORATE LIMITED + 57273 + Cultural & Related Services + Mobile Phones + 40405 + Sports Development + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 11.77 + VODAFONE CORPORATE LIMITED + 57273 + Cultural & Related Services + Mobile Phones + 40405 + Sports Development + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 23.24 + VODAFONE CORPORATE LIMITED + 57273 + Cultural & Related Services + Mobile Phones + 40405 + Sports Development + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 46.76 + VODAFONE CORPORATE LIMITED + 57273 + Cultural & Related Services + Mobile Phones + 40405 + Sports Development + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 56 + VODAFONE CORPORATE LIMITED + 57273 + Health Team Leader + Mobile Phones + 40405 + Sports Development + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 5.62 + VODAFONE CORPORATE LIMITED + 57273 + Health Team Leader + Mobile Phones + 40405 + Sports Development + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Health Team Leader + Mobile Phones + 40405 + Sports Development + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 29.61 + VODAFONE CORPORATE LIMITED + 57273 + Health Team Leader + Mobile Phones + 40405 + Sports Development + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 15.63 + VODAFONE CORPORATE LIMITED + 57273 + Cultural & Related Services + Mobile Phones + 40405 + Arts Development & Support + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 32 + VODAFONE CORPORATE LIMITED + 57273 + Cultural & Related Services + Mobile Phones + 40405 + Arts Development & Support + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2.43 + VODAFONE CORPORATE LIMITED + 57273 + Hsg Advice & Homelessness TL + Mobile Phones + 40405 + Housing Advice + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2.82 + VODAFONE CORPORATE LIMITED + 57273 + Hsg Advice & Homelessness TL + Mobile Phones + 40405 + Housing Advice + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 355.95 + VODAFONE CORPORATE LIMITED + 57273 + Housing Support TL + Mobile Phones + 40405 + Housing Support + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 179.31 + VODAFONE CORPORATE LIMITED + 57273 + Housing Support TL + Mobile Phones + 40405 + Housing Support + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 50.62 + VODAFONE CORPORATE LIMITED + 57273 + Hsg Private Sector TL + Mobile Phones + 40405 + Admin of Renovation/DF Grants + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 25.65 + VODAFONE CORPORATE LIMITED + 57273 + Hsg Private Sector TL + Mobile Phones + 40405 + Energy Management + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2.01 + VODAFONE CORPORATE LIMITED + 57273 + Hsg Private Sector TL + Mobile Phones + 40405 + Energy Management + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 106.51 + VODAFONE CORPORATE LIMITED + 57273 + Hsg Advice & Homelessness TL + Mobile Phones + 40405 + Bed/Breakfast Accommodation + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 152.05 + VODAFONE CORPORATE LIMITED + 57273 + Assistant Chief Executive + Mobile Phones + 40405 + Corporate Resources + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 13.69 + VODAFONE CORPORATE LIMITED + 57273 + TL Partnerships & Grants + Mobile Phones + 40405 + "Statement of Accts + BVPP etc" + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 29.29 + VODAFONE CORPORATE LIMITED + 57273 + Environment Team Leader + Mobile Phones + 40405 + Emergency Planning + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 18 + VODAFONE CORPORATE LIMITED + 57273 + Policy & Project Manager + Mobile Phones + 40405 + Supp. to Business & Enterprise + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 19.03 + VODAFONE CORPORATE LIMITED + 57273 + Policy & Project Manager + Mobile Phones + 40405 + Government/European Initiative + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Democracy Manager + Mobile Phones + 40405 + Chief Executive's + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 18 + VODAFONE CORPORATE LIMITED + 57273 + Assistant Chief Executive + Mobile Phones + 40405 + Chief Executive's + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 19 + VODAFONE CORPORATE LIMITED + 57273 + Assistant Chief Executive + Mobile Phones + 40405 + Chief Executive's + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 50.09 + VODAFONE CORPORATE LIMITED + 57273 + BM Workforce & Organ Develop + Mobile Phones + 40405 + Chief Executive's + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 4.12 + VODAFONE CORPORATE LIMITED + 57273 + Performance Monitoring Manager + Mobile Phones + 40405 + Chief Executive's + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 18 + VODAFONE CORPORATE LIMITED + 57273 + Chief Executive + Mobile Phones + 40405 + Chief Executive's + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 177.82 + VODAFONE CORPORATE LIMITED + 57273 + Chief Executive + Mobile Phones + 40405 + Chief Executive's + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 10.27 + VODAFONE CORPORATE LIMITED + 57273 + HR Manager + Mobile Phones + 40405 + Chief Executive's + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 16.27 + VODAFONE CORPORATE LIMITED + 57273 + Technical Services Team Leader + Mobile Phones + 40405 + Chief Executive's + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 8.23 + VODAFONE CORPORATE LIMITED + 57273 + Technical Services Team Leader + Mobile Phones + 40405 + Chief Executive's + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 12.04 + VODAFONE CORPORATE LIMITED + 57273 + TL Property + Mobile Phones + 40405 + Chief Executive's + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 95.87 + VODAFONE CORPORATE LIMITED + 57273 + Technical Services Team Leader + Mobile Phones + 40405 + Chief Executive's + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 19.58 + VODAFONE CORPORATE LIMITED + 57273 + Strategic Director (SD) + Mobile Phones + 40405 + Planning & Regeneration + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 14.91 + VODAFONE CORPORATE LIMITED + 57273 + Planning & Housing Policy Man + Mobile Phones + 40405 + Planning & Regeneration + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 9.5 + VODAFONE CORPORATE LIMITED + 57273 + BM Property & Technical + Mobile Phones + 40405 + Planning & Regeneration + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 22.53 + VODAFONE CORPORATE LIMITED + 57273 + Policy & Project Manager + Mobile Phones + 40405 + Planning & Regeneration + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 124.94 + VODAFONE CORPORATE LIMITED + 57273 + Policy & Project Manager + Mobile Phones + 40405 + Planning & Regeneration + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 41.31 + VODAFONE CORPORATE LIMITED + 57273 + Business Development Manager + Mobile Phones + 40405 + Planning & Regeneration + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 16.51 + VODAFONE CORPORATE LIMITED + 57273 + Communities TL + Mobile Phones + 40405 + Environmental Services + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 23.16 + VODAFONE CORPORATE LIMITED + 57273 + BM Sports Facilities + Mobile Phones + 40405 + Environmental Services + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 11.5 + VODAFONE CORPORATE LIMITED + 57273 + BM Street Scene + Mobile Phones + 40405 + Environmental Services + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 33.09 + VODAFONE CORPORATE LIMITED + 57273 + Service Development Manager + Mobile Phones + 40405 + Environmental Services + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 85.05 + VODAFONE CORPORATE LIMITED + 57273 + Commercial Team Leader + Mobile Phones + 40405 + Environmental Services + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 13.01 + VODAFONE CORPORATE LIMITED + 57273 + Hsg Private Sector TL + Mobile Phones + 40405 + Environmental Services + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Commercial Team Leader + Mobile Phones + 40405 + Environmental Services + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 221.23 + VODAFONE CORPORATE LIMITED + 57273 + Environment Team Leader + Mobile Phones + 40405 + Environmental Services + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 23.94 + VODAFONE CORPORATE LIMITED + 57273 + BM Regulatory Services + Mobile Phones + 40405 + Environmental Services + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 12.55 + VODAFONE CORPORATE LIMITED + 57273 + "BM Health + Arts and Events" + Mobile Phones + 40405 + Environmental Services + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 12.55 + VODAFONE CORPORATE LIMITED + 57273 + Service Development Manager + Mobile Phones + 40405 + Environmental Services + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 18 + VODAFONE CORPORATE LIMITED + 57273 + TL Partnerships & Grants + Mobile Phones + 40405 + Environmental Services + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 40.27 + VODAFONE CORPORATE LIMITED + 57273 + "BM Health + Arts and Events" + Mobile Phones + 40405 + Environmental Services + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 26.02 + VODAFONE CORPORATE LIMITED + 57273 + BM Sports Facilities + Mobile Phones + 40405 + Environmental Services + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2.04 + VODAFONE CORPORATE LIMITED + 57273 + Audit Manager + Mobile Phones + 40405 + Finance + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 9.73 + VODAFONE CORPORATE LIMITED + 57273 + BM Economic Development + Mobile Phones + 40405 + Chief Executive's + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 22.79 + VODAFONE CORPORATE LIMITED + 57273 + BM Financial & ICT Services + Mobile Phones + 40405 + Finance + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 20.98 + VODAFONE CORPORATE LIMITED + 57273 + Strategic Director (JF) + Mobile Phones + 40405 + Finance + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 12.04 + VODAFONE CORPORATE LIMITED + 57273 + Customer Services Manager + Mobile Phones + 40405 + Finance + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Finance Manager 2 + Mobile Phones + 40405 + Finance + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 54.58 + VODAFONE CORPORATE LIMITED + 57273 + Hsg Benefits Assessments TL + Mobile Phones + 40405 + Finance + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 58.48 + VODAFONE CORPORATE LIMITED + 57273 + Customer Services Manager + Mobile Phones + 40405 + Finance + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Business Innovation Manager + Mobile Phones + 40405 + Finance + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 60.12 + VODAFONE CORPORATE LIMITED + 57273 + IT Manager + Mobile Phones + 40405 + Finance + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 15.85 + VODAFONE CORPORATE LIMITED + 57273 + Council Tax TL + Mobile Phones + 40405 + Finance + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 2 + VODAFONE CORPORATE LIMITED + 57273 + Corporate Accounting + Mobile Phones + 40405 + Sure Start Holding Accounts + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 52.1 + VODAFONE CORPORATE LIMITED + 57273 + Corporate Accounting + Mobile Phones + 40405 + Non Service Issues + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 302.75 + VODAFONE CORPORATE LIMITED + 57273 + Building Control + Mobile Phones + 40405 + Building Control + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 54.51 + VODAFONE CORPORATE LIMITED + 57273 + Service Development Manager + Mobile Phones + 40405 + GM Contract No.2 + + + + East Lindsey District Council + 11/08/2010 + CIFS008919 + 179.12 + VODAFONE CORPORATE LIMITED + 57273 + Service Development Manager + Mobile Phones + 40405 + OC Other Cleaning + + + + East Lindsey District Council + 11/08/2010 + CIFS008946 + 231772 + COMPASS POINT BUSINESS SERVICES + 536914 + Corporate Accounting + Expenditure + 99990 + Holding Accounts + + + + East Lindsey District Council + 11/08/2010 + CIFS008947 + 1144498 + COMPASS POINT BUSINESS SERVICES + 536914 + Corporate Accounting + Expenditure + 99990 + Holding Accounts + + + + East Lindsey District Council + 11/08/2010 + CIHO005873 + 8407.79 + COTTS BUILDERS AND CONTRACTORS + 52142 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 11/08/2010 + CIHO005873 + 3701.66 + COTTS BUILDERS AND CONTRACTORS + 52142 + Hsg Private Sector TL + Expenditure + 99990 + Non Service Issues + + + + East Lindsey District Council + 11/08/2010 + CIHO005873 + -1083.62 + COTTS BUILDERS AND CONTRACTORS + 52142 + Hsg Private Sector TL + Improvement Grant Agency + 1101 + Admin of Renovation/DF Grants + + + + East Lindsey District Council + 11/08/2010 + CIHO005874 + 2773 + ANDREW BLADES BUILDING SERVICES LTD + 501282 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 11/08/2010 + CIHO005875 + 4306.58 + A & B BUILDERS + 397140 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 11/08/2010 + CIHO005875 + -385.38 + A & B BUILDERS + 397140 + Hsg Private Sector TL + Improvement Grant Agency + 1101 + Admin of Renovation/DF Grants + + + + East Lindsey District Council + 11/08/2010 + CIHO005877 + 620 + SKEGNESS SEA SCOUTS + 521615 + TL Partnerships & Grants + Grant Paid From Community Initiative Fun + 60279 + General Grants + + + + East Lindsey District Council + 11/08/2010 + CIHO005879 + 1743.7 + STICKNEY COMMUNITY COMMITTEE + 536794 + TL Partnerships & Grants + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 11/08/2010 + CIHO005880 + 1365.49 + HOUSEFULL PRODUCTIONS LTD + 419125 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 11/08/2010 + CIHO005880 + -185.25 + HOUSEFULL PRODUCTIONS LTD + 419125 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 11/08/2010 + CIHO005881 + 500 + BRIAN SHAW + 281515 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 11/08/2010 + CIHO005882 + 4059.1 + JULIE STEVENS SCHOOL OF DANCE + 313069 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 11/08/2010 + CIHO005882 + -713.82 + JULIE STEVENS SCHOOL OF DANCE + 313069 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 11/08/2010 + CIHO005883 + 3306.64 + MAD ABOUT PRODUCTIONS LTD + 421896 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 13/08/2010 + CICP019216 + 642 + AUDIT COMMISSION + 1973 + Building Control + Professional Fees + 40305 + Building Control + + + + East Lindsey District Council + 13/08/2010 + CICP019219 + 570 + SID DENNIS & SONS LTD + 5720 + Service Development Manager + Skip Hire + 40314 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019221 + 1055.31 + GLASS RECYCLING (UK) LTD + 254429 + Service Development Manager + Glass Recycling Costs + 50818 + Recycling-Collection + + + + East Lindsey District Council + 13/08/2010 + CICP019223 + 1996 + LINCS MOTORHOMES LTD + 522834 + Service Development Manager + Agency Costs + 11020 + Markets + + + + East Lindsey District Council + 13/08/2010 + CICP019227 + 1370 + EAST LINDSEY ARTS FORUM + 491732 + Cultural & Related Services + Expenditure + 99990 + Non Service Issues + + + + East Lindsey District Council + 13/08/2010 + CICP019228 + 937.5 + TOTEMIC LTD + 536435 + Housing Support TL + Office Rent + 20309 + Housing Support + + + + East Lindsey District Council + 13/08/2010 + CICP019235 + 2716.9 + NOTTINGHAMSHIRE ENTERPRISES T/A THE NE G + 531812 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 13/08/2010 + CICP019236 + 693.79 + LINCS FM PLC + 49113 + Policy & Project Manager + Publicity & Promotions + 40608 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 13/08/2010 + CICP019238 + 3500 + BADENOCH & CLARK + 421029 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 13/08/2010 + CICP019239 + 1600 + BADENOCH & CLARK + 421029 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 13/08/2010 + CICP019240 + 4000 + BADENOCH & CLARK + 421029 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 13/08/2010 + CICP019241 + 9342.4 + CAPITA BUSINESS SERVICES LTD + 388939 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 13/08/2010 + CICP019242 + 9036.5 + CAPITA BUSINESS SERVICES LTD + 388939 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 13/08/2010 + CICP019243 + 5607.36 + LAVA + 522520 + Cultural & Related Services + General Advertising/Marketing + 40649 + Arts Development & Support + + + + East Lindsey District Council + 13/08/2010 + CICP019244 + 2101.25 + DIRECT TEXTILE DESIGNS LIMITED + 535407 + Cultural & Related Services + General Advertising/Marketing + 40649 + Arts Development & Support + + + + East Lindsey District Council + 13/08/2010 + CICP019245 + 1057 + WATSON PETROLEUM LTD + 306283 + Service Development Manager + Fuel & Oil - Miscellaneous Equipment + 32998 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019246 + 4209.67 + APR AGENCY + 485939 + Waste Services Manager + Agency Costs + 11020 + Household Waste-Collection + + + + East Lindsey District Council + 13/08/2010 + CICP019249 + 643.41 + PHONOGRAPHIC PERFORMANCE LTD + 26592 + Meridian Facility Manager + Other Licences + 40630 + Indoor Sports & Recreation + + + + East Lindsey District Council + 13/08/2010 + CICP019252 + 2152 + SOLACE ENTERPRISES LTD + 397810 + Chief Executive + Professional Fees + 40305 + Chief Executive's + + + + East Lindsey District Council + 13/08/2010 + CICP019253 + 1455 + PCF + 456463 + Theatre Manager + Provision of Tickets General + 40207 + Theatres/Public Entertainment + + + + East Lindsey District Council + 13/08/2010 + CICP019258 + 240 + SEDEK LIMITED + 535740 + Enforcement Team Leader + Equipment Repair + 40004 + Off-street Parking + + + + East Lindsey District Council + 13/08/2010 + CICP019258 + 245 + SEDEK LIMITED + 535740 + Enforcement Team Leader + Equipment Repair + 40004 + Off-street Parking + + + + East Lindsey District Council + 13/08/2010 + CICP019258 + 1264 + SEDEK LIMITED + 535740 + Enforcement Team Leader + Equipment Repair + 40004 + Off-street Parking + + + + East Lindsey District Council + 13/08/2010 + CICP019258 + 15 + SEDEK LIMITED + 535740 + Enforcement Team Leader + Equipment Repair + 40004 + Off-street Parking + + + + East Lindsey District Council + 13/08/2010 + CICP019259 + 614.4 + JACKSON BUILDING CENTRES LTD + 9881 + Business Development Manager + Concrete Slabs + 40020 + Countryside Management & Rec. + + + + East Lindsey District Council + 13/08/2010 + CICP019260 + 1455.63 + TRANSLINC LTD + 17491 + Service Development Manager + Contract Hire - FX04 CVY 1T11 + 38308 + Markets + + + + East Lindsey District Council + 13/08/2010 + CICP019260 + 308.65 + TRANSLINC LTD + 17491 + Technical Services Team Leader + Contract Hire- YY52 RWW + 38287 + Chief Executive's + + + + East Lindsey District Council + 13/08/2010 + CICP019260 + 392.48 + TRANSLINC LTD + 17491 + Environment Team Leader + Contract Hire - FP54 CNX + 38316 + Dog Control + + + + East Lindsey District Council + 13/08/2010 + CICP019260 + 346.81 + TRANSLINC LTD + 17491 + Environment Team Leader + Contract Hire - FG05 KVC + 38319 + Dog Control + + + + East Lindsey District Council + 13/08/2010 + CICP019260 + 236.28 + TRANSLINC LTD + 17491 + Waste Services Manager + Contract Hire - AK03 KJA + 38291 + Household Waste-Collection + + + + East Lindsey District Council + 13/08/2010 + CICP019260 + 236.28 + TRANSLINC LTD + 17491 + Service Development Manager + Contract Hire - AK03 KHZ + 38290 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019260 + 236.28 + TRANSLINC LTD + 17491 + Service Development Manager + Contract Hire-Citreon Berling Van 4T84 + 38321 + Markets + + + + East Lindsey District Council + 13/08/2010 + CICP019260 + 233.28 + TRANSLINC LTD + 17491 + Service Development Manager + Contract Hire-Citreon Berling Van 4T86 + 38323 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019260 + 233.28 + TRANSLINC LTD + 17491 + Service Development Manager + Contract Hire-Citreon Berling Van 4T87 + 38324 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019260 + 233.28 + TRANSLINC LTD + 17491 + Service Development Manager + Contract Hire-Citreon Berling Van 4T88 + 38325 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019260 + 407.87 + TRANSLINC LTD + 17491 + Service Development Manager + Contract Hire - YY54 UBX + 38315 + GM Contract No.2 + + + + East Lindsey District Council + 13/08/2010 + CICP019260 + 2097.07 + TRANSLINC LTD + 17491 + Service Development Manager + Contract Hire - 6S15 - GN05 ORG + 38320 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019260 + 2860.4 + TRANSLINC LTD + 17491 + Waste Services Manager + Contract Hire - FX03 DZP + 38292 + Household Waste-Collection + + + + East Lindsey District Council + 13/08/2010 + CICP019260 + 2358.9 + TRANSLINC LTD + 17491 + Service Development Manager + Contract Hire - 4T118 + 38413 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019262 + 500 + LOCAL GOVERNEMENT IMPROVEMENT & DEVELOP + 536778 + Democracy Manager + Miscellaneous Training + 40935 + Members Allowances & Expenses + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 26.2 + BIFFA WASTE SERVICES LTD + 2613 + Theatre Manager + Skip Hire + 40314 + Community Centres + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 38.16 + BIFFA WASTE SERVICES LTD + 2613 + TL Property + Skip Hire + 40314 + Public Buildings + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 76.32 + BIFFA WASTE SERVICES LTD + 2613 + Theatre Manager + Skip Hire + 40314 + Theatres/Public Entertainment + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 38.16 + BIFFA WASTE SERVICES LTD + 2613 + Sports Centre Manager + Skip Hire + 40314 + Indoor Sports & Recreation + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 228.96 + BIFFA WASTE SERVICES LTD + 2613 + Embassy Pool Manager + Skip Hire + 40314 + Indoor Sports & Recreation + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 76.32 + BIFFA WASTE SERVICES LTD + 2613 + Horncastle Pool Manager + Skip Hire + 40314 + Indoor Sports & Recreation + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 76.32 + BIFFA WASTE SERVICES LTD + 2613 + Policy & Project Manager + Skip Hire + 40314 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 26.2 + BIFFA WASTE SERVICES LTD + 2613 + Meridian Facility Manager + Skip Hire + 40314 + Indoor Sports & Recreation + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 15.6 + BIFFA WASTE SERVICES LTD + 2613 + Meridian Facility Manager + Skip Hire + 40314 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 38.16 + BIFFA WASTE SERVICES LTD + 2613 + TL Property + Skip Hire + 40314 + Public Buildings + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 38.16 + BIFFA WASTE SERVICES LTD + 2613 + Policy & Project Manager + Skip Hire + 40314 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 76.32 + BIFFA WASTE SERVICES LTD + 2613 + TL Property + Skip Hire + 40314 + Public Buildings + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 38.16 + BIFFA WASTE SERVICES LTD + 2613 + Policy & Project Manager + Skip Hire + 40314 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 178.12 + BIFFA WASTE SERVICES LTD + 2613 + TL Property + Skip Hire + 40314 + Public Buildings + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 178.12 + BIFFA WASTE SERVICES LTD + 2613 + Horncastle Pool Manager + Skip Hire + 40314 + Countryside Management & Rec. + + + + East Lindsey District Council + 13/08/2010 + CICP019263 + 178.12 + BIFFA WASTE SERVICES LTD + 2613 + Embassy Pool Manager + Skip Hire + 40314 + Indoor Sports & Recreation + + + + East Lindsey District Council + 13/08/2010 + CICP019264 + 915.2 + CAPITAL BANK PLC + 87832 + IT Manager + Equipment Lease Payment + 40006 + Environmental Services + + + + East Lindsey District Council + 13/08/2010 + CICP019264 + 160.16 + CAPITAL BANK PLC + 87832 + 0 + Current Assets Govt. Debtors + 99516 + Balance Sheet + + + + East Lindsey District Council + 13/08/2010 + CICP019286 + 9.69 + JACOBS + 413215 + Commercial Team Leader + Licences General Fees & Charges + 4101 + Licensing + + + + East Lindsey District Council + 13/08/2010 + CICP019286 + 1.05 + JACOBS + 413215 + Hsg Advice & Homelessness TL + Rent Assist Scheme + 2470 + Housing Advice + + + + East Lindsey District Council + 13/08/2010 + CICP019286 + 3 + JACOBS + 413215 + Hsg Advice & Homelessness TL + Homeless Person Crisis Payment Recovered + 2480 + Housing Advice + + + + East Lindsey District Council + 13/08/2010 + CICP019286 + 4.5 + JACOBS + 413215 + Hsg Advice & Homelessness TL + Recoverable Charges Bonds + 4547 + Housing Advice + + + + East Lindsey District Council + 13/08/2010 + CICP019286 + 115.75 + JACOBS + 413215 + Hsg Advice & Homelessness TL + Rent Assist Scheme + 2470 + Housing Advice + + + + East Lindsey District Council + 13/08/2010 + CICP019286 + 37.94 + JACOBS + 413215 + Hsg Advice & Homelessness TL + Recoverable Charges Bonds + 4547 + Housing Advice + + + + East Lindsey District Council + 13/08/2010 + CICP019286 + 24.15 + JACOBS + 413215 + Hsg Advice & Homelessness TL + Leased Units - Rech. of Rent + 5117 + Bed/Breakfast Accommodation + + + + East Lindsey District Council + 13/08/2010 + CICP019286 + -1.5 + JACOBS + 413215 + Hsg Advice & Homelessness TL + Bed & Breakfast Accommodation - Rent + 2414 + Bed/Breakfast Accommodation + + + + East Lindsey District Council + 13/08/2010 + CICP019286 + 31.25 + JACOBS + 413215 + Hsg Private Sector TL + HMO Housing Notices + 4162 + Housing Standards + + + + East Lindsey District Council + 13/08/2010 + CICP019286 + 18.74 + JACOBS + 413215 + Policy & Project Manager + Rental Income + 2231 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 13/08/2010 + CICP019286 + 15.75 + JACOBS + 413215 + Policy & Project Manager + Rental Income + 2231 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 13/08/2010 + CICP019286 + 3 + JACOBS + 413215 + Service Development Manager + Electricity + 20201 + Community Parks & Open Spaces + + + + East Lindsey District Council + 13/08/2010 + CICP019286 + 225 + JACOBS + 413215 + Business Development Manager + Contributions towards Projects + 2459 + Visitor Information + + + + East Lindsey District Council + 13/08/2010 + CICP019286 + 34.13 + JACOBS + 413215 + Theatre Manager + Hire of Room-Accommodation Charges + 4203 + Community Centres + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 111.77 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel and Oil - 22T34 + 32369 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 957.86 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - 2T22 + 32358 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 527.34 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - YY04 WPA + 32314 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 525.18 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - YY04 WOV + 32312 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 74.14 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - YY54 UBX + 32315 + GM Contract No.2 + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 218.95 + TOTAL UK LTD + 389404 + Environment Team Leader + Fuel & Oil - FP54 CNX + 32316 + Dog Control + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 190.05 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - MX05 LMM + 32318 + Vans + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 292.15 + TOTAL UK LTD + 389404 + Environment Team Leader + Fuel & Oil - FG05 KVC + 32319 + Dog Control + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 162.03 + TOTAL UK LTD + 389404 + Waste Services Manager + Fuel & Oil - 4T78 + 32291 + Household Waste-Collection + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 150.66 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - FG05 KVF + 32321 + Markets + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 279.2 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - 4T86 + 32323 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 6.03 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - 4T87 + 32324 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 92.24 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - 4T88 + 32325 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 142.94 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - 4T93 + 32356 + Environmental Services + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 296.8 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - 4T94 + 32357 + Environmental Services + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 298.44 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - YS56 MFP - 4T96 + 32276 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 759.51 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - YS56 LPA - 4T95 + 32277 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 249.97 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel and Oil - 4T97 + 32361 + GM Contract No.2 + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 117.33 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel and Oil - 4T98 + 32362 + GM Contract No.2 + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 544.37 + TOTAL UK LTD + 389404 + Service Development Manager + Petrol & Oil - 6S15 - GN05 ORG + 32320 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 489.31 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel and Oil - 6S16 + 32364 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 352.55 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - FX07 AZC + 32373 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 32.98 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - V625 DPW + 32254 + GM Contract No.2 + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 173.35 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel and Oil - 22T35 + 32370 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 134.96 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - 4T118 + 32413 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 112.41 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel and Oil - 22T31 + 32366 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 19.72 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel and Oil - 22T37 Kawasaki 610 + 32385 + GM Contract No.2 + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 532.21 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel and Oil - 4T103 + 32382 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 112.25 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel and Oil - 4T105 + 32384 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 20.24 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel and Oil - 4T 114 + 32402 + Environmental Services + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 77.11 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel and Oil - 22T33 + 32368 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 137.2 + TOTAL UK LTD + 389404 + Hsg Advice & Homelessness TL + Fuel and Oil - 4T 112 + 32400 + Bed/Breakfast Accommodation + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 586.7 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel and Oil - 6S18 JOHNSTON VT650 11-04 + 32396 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 171.74 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel and Oil - 4T100 + 32379 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 305.49 + TOTAL UK LTD + 389404 + Enforcement Team Leader + Fuel and Oil - 4T 111 + 32399 + Off-street Parking + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 174.01 + TOTAL UK LTD + 389404 + Enforcement Team Leader + Fuel and Oil - 4T 110 + 32398 + Off-street Parking + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 136.43 + TOTAL UK LTD + 389404 + Enforcement Team Leader + Fuel and Oil - 4T 109 + 32397 + Off-street Parking + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 85.59 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel and Oil - 4T101 + 32380 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 392.27 + TOTAL UK LTD + 389404 + Cultural & Related Services + Fuel and Oil - 4T102 + 32381 + Sports Development + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 31.11 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - Miscellaneous Equipment + 32998 + GM Contract No.2 + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 58.89 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - Miscellaneous Equipment + 32998 + GM Contract No.2 + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 39.4 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - Miscellaneous Equipment + 32998 + GM Contract No.2 + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 55.67 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel & Oil - Miscellaneous Equipment + 32998 + GM Contract No.2 + + + + East Lindsey District Council + 13/08/2010 + CICP019287 + 619.38 + TOTAL UK LTD + 389404 + Service Development Manager + Fuel and Oil - 2T23 + 32363 + OC Other Cleaning + + + + East Lindsey District Council + 13/08/2010 + CIHE000851 + 4721.42 + QDOS ENTERTAINMENT (PRODUCTIONS) LTD + 536998 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 13/08/2010 + CIHE000852 + 1500 + JAMIE MARCUS PRODUCTIONS LTD + 537007 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 13/08/2010 + CIHE000853 + 1000 + JAMIE MARCUS PRODUCTIONS LTD + 537007 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 13/08/2010 + CIHE000854 + 2638.65 + MAD ABOUT PRODUCTIONS LTD + 421896 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 13/08/2010 + CIHO005891 + 8000 + ANDREW BLADES BUILDING SERVICES LTD + 501282 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 13/08/2010 + CIHO005892 + 5715.6 + SIBJON BUILDERS + 15930 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 13/08/2010 + CIHO005892 + -511.46 + SIBJON BUILDERS + 15930 + Hsg Private Sector TL + Improvement Grant Agency + 1101 + Admin of Renovation/DF Grants + + + + East Lindsey District Council + 13/08/2010 + CIHO005893 + 3000 + HARRIS BUILDING & DESIGN SERVICESXXXXXXX + 369657 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 13/08/2010 + CIHO005894 + 6000.48 + COTTS BUILDERS AND CONTRACTORS + 52142 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 13/08/2010 + CIHO005894 + -536.96 + COTTS BUILDERS AND CONTRACTORS + 52142 + Hsg Private Sector TL + Improvement Grant Agency + 1101 + Admin of Renovation/DF Grants + + + + East Lindsey District Council + 13/08/2010 + CIRV004082 + 123 + CENTRAL FINANCE UNIT + 535193 + Debt Recovery TL + Summons Issue Fee + 40332 + Local Taxation + + + + East Lindsey District Council + 13/08/2010 + CIRV004082 + 1368 + CENTRAL FINANCE UNIT + 535193 + Council Tax TL + Summons Issue Fee + 40332 + Local Taxation + + + + East Lindsey District Council + 13/08/2010 + CNCP000402 + -512 + JACKSON BUILDING CENTRES LTD + 9881 + Business Development Manager + Concrete Slabs + 40020 + Countryside Management & Rec. + + + + East Lindsey District Council + 18/08/2010 + CICP019295 + 516.41 + STAFFORCE RECRUITMENT + 462062 + Waste Services Manager + Agency Costs + 11020 + Household Waste-Collection + + + + East Lindsey District Council + 18/08/2010 + CICP019299 + 1036 + BADENOCH & CLARK + 421029 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 18/08/2010 + CICP019300 + 1180.02 + BADENOCH & CLARK + 421029 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 18/08/2010 + CICP019303 + 1036 + MORGAN HUNT PUBLIC SECTOR LTD + 532604 + Hsg Benefits Assessments TL + Agency Costs + 11020 + Finance + + + + East Lindsey District Council + 18/08/2010 + CICP019309 + 5004.43 + THE WORKSHOP (WISBECH) LIMITED + 530392 + Service Development Manager + Agency Costs + 11020 + OC Other Cleaning + + + + East Lindsey District Council + 18/08/2010 + CICP019310 + 669.4 + SID DENNIS & SONS LTD + 5720 + Service Development Manager + Sub Contractors + 40330 + GM Contract No.2 + + + + East Lindsey District Council + 18/08/2010 + CICP019313 + 1021.28 + LOUTH INTERSKILL LTD + 537104 + Service Development Manager + Equipment Repair + 40004 + Markets + + + + East Lindsey District Council + 18/08/2010 + CICP019314 + 697.66 + NORTH STAFFS IRRIGATION LTD + 367196 + Service Development Manager + Responsive Maintenance + 20101 + GM Contract No.2 + + + + East Lindsey District Council + 18/08/2010 + CICP019321 + 1272.32 + TSS EVENTS + 507163 + Technical Services Team Leader + Security + 40303 + Illuminations + + + + East Lindsey District Council + 18/08/2010 + CICP019322 + 427.68 + EVENT-SAFE (MIDLANDS)LTD + 506245 + Technical Services Team Leader + Security + 40303 + Illuminations + + + + East Lindsey District Council + 18/08/2010 + CICP019325 + 36.25 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019325 + 36.25 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019325 + 346.56 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019325 + 346.56 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019325 + 118.75 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019325 + 118.75 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019325 + 14.25 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019325 + 44.65 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019325 + 13.06 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019325 + 19 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019325 + 38 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019325 + 4.7 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019328 + 168.92 + NORTHERN MUNICIPAL SPARES LTD + 523587 + Service Development Manager + Maintenance 22T30 + 37364 + OC Other Cleaning + + + + East Lindsey District Council + 18/08/2010 + CICP019328 + 168.92 + NORTHERN MUNICIPAL SPARES LTD + 523587 + Service Development Manager + Maintenance - FX07 AZC + 37373 + OC Other Cleaning + + + + East Lindsey District Council + 18/08/2010 + CICP019328 + 168.91 + NORTHERN MUNICIPAL SPARES LTD + 523587 + Service Development Manager + Maintenance 6S18 JOHNSTON VT650 11-04 + 37396 + OC Other Cleaning + + + + East Lindsey District Council + 18/08/2010 + CICP019329 + 1060 + WATSON PETROLEUM LTD + 306283 + Service Development Manager + Fuel & Oil - Miscellaneous Equipment + 32998 + OC Other Cleaning + + + + East Lindsey District Council + 18/08/2010 + CICP019334 + 7128 + OTTO (UK) LTD + 435620 + Waste Services Manager + Equipment Purchase + 40003 + Household Waste-Collection + + + + East Lindsey District Council + 18/08/2010 + CICP019335 + 36.25 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019335 + 36.25 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019335 + 1.9 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019335 + 121.3 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019335 + 323.46 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019335 + 47.5 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019335 + 85.5 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019335 + 7.13 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019335 + 14.25 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019335 + 4.47 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019335 + 4.7 + SRS LEISURE + 498706 + Embassy Pool Manager + Goods For Resale + 40014 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019340 + 758.33 + TURNER EVANS STEVENS + 17640 + Hsg Advice & Homelessness TL + Lease of Accommodation + 20308 + Bed/Breakfast Accommodation + + + + East Lindsey District Council + 18/08/2010 + CICP019346 + 925 + SELLICK PARTNERSHIP GROUP LTD + 530389 + BM Financial & ICT Services + Agency Costs + 11020 + Finance + + + + East Lindsey District Council + 18/08/2010 + CICP019347 + 522.02 + BADENOCH & CLARK + 421029 + Assistant Chief Executive + Agency Costs + 11020 + Corporate Resources + + + + East Lindsey District Council + 18/08/2010 + CICP019349 + 29342.93 + CHANDLERS OIL & GAS + 520739 + Waste Services Manager + Bulk Fuel & Oil Purchase + 32991 + Household Waste-Collection + + + + East Lindsey District Council + 18/08/2010 + CICP019353 + 774.6 + LINCOLNSHIRE GASES LTD + 27025 + Business Development Manager + Calor Gas + 20203 + Countryside Management & Rec. + + + + East Lindsey District Council + 18/08/2010 + CICP019353 + 361.48 + LINCOLNSHIRE GASES LTD + 27025 + Business Development Manager + Calor Gas + 20203 + Countryside Management & Rec. + + + + East Lindsey District Council + 18/08/2010 + CICP019353 + 1084.44 + LINCOLNSHIRE GASES LTD + 27025 + Business Development Manager + Calor Gas + 20203 + Countryside Management & Rec. + + + + East Lindsey District Council + 18/08/2010 + CICP019354 + 1084.44 + LINCOLNSHIRE GASES LTD + 27025 + Business Development Manager + Calor Gas + 20203 + Countryside Management & Rec. + + + + East Lindsey District Council + 18/08/2010 + CICP019354 + 929.52 + LINCOLNSHIRE GASES LTD + 27025 + Business Development Manager + Calor Gas + 20203 + Countryside Management & Rec. + + + + East Lindsey District Council + 18/08/2010 + CICP019359 + 2800 + BADENOCH & CLARK + 421029 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 18/08/2010 + CICP019360 + 1600 + BADENOCH & CLARK + 421029 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 18/08/2010 + CICP019361 + 9000 + AUDIT COMMISSION + 1973 + Corporate Accounting + District Audit Fees + 40301 + Statutory External Audit + + + + East Lindsey District Council + 18/08/2010 + CICP019362 + 16150 + DAVID LYNN ASSOCIATES LIMITED + 518903 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 18/08/2010 + CICP019363 + 650 + F HUNT COACH HIRE LTD + 272430 + Cultural & Related Services + Equipment Purchase + 40003 + Arts Development & Support + + + + East Lindsey District Council + 18/08/2010 + CICP019366 + 19160 + MABANAFT LIMITED + 533496 + Waste Services Manager + Bulk Fuel & Oil Purchase + 32991 + Household Waste-Collection + + + + East Lindsey District Council + 18/08/2010 + CICP019375 + 605.38 + AST CONNECTIONS LTD + 537159 + Environment Team Leader + Subscriptions + 40801 + Emergency Planning + + + + East Lindsey District Council + 18/08/2010 + CICP019378 + 640 + LINCOLNSHIRE RURAL HOUSING ASSOCIATION + 141820 + Hsg Advice & Homelessness TL + Lease of Accommodation + 20308 + Bed/Breakfast Accommodation + + + + East Lindsey District Council + 18/08/2010 + CICP019381 + 460 + SID DENNIS & SONS LTD + 5720 + Service Development Manager + Skip Hire + 40314 + OC Other Cleaning + + + + East Lindsey District Council + 18/08/2010 + CICP019382 + 2191.19 + STEPHEN MITCHELL + 458717 + Hsg Advice & Homelessness TL + Other Outside Contractors + 20159 + Bed/Breakfast Accommodation + + + + East Lindsey District Council + 18/08/2010 + CICP019384 + 184 + OTTO WASTE SOLUTIONS LIMITED + 537146 + Waste Services Manager + Equipment Purchase + 40003 + Household Waste-Collection + + + + East Lindsey District Council + 18/08/2010 + CICP019384 + 1169.8 + OTTO WASTE SOLUTIONS LIMITED + 537146 + Waste Services Manager + Equipment Purchase + 40003 + Household Waste-Collection + + + + East Lindsey District Council + 18/08/2010 + CICP019387 + 1114 + FOCUS SIGNS (LINCOLNSHIRE) LTD + 370303 + Cultural & Related Services + Project Costs + 40375 + Arts Development & Support + + + + East Lindsey District Council + 18/08/2010 + CICP019389 + 27.54 + STOWLIN LTD + 16845 + Embassy Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019389 + 8.8 + STOWLIN LTD + 16845 + Embassy Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019389 + 34 + STOWLIN LTD + 16845 + Embassy Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019389 + 40.28 + STOWLIN LTD + 16845 + Embassy Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019389 + 226 + STOWLIN LTD + 16845 + Embassy Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019389 + 8.8 + STOWLIN LTD + 16845 + Embassy Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019389 + 8.8 + STOWLIN LTD + 16845 + Embassy Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019389 + -30 + STOWLIN LTD + 16845 + Embassy Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019389 + 42.5 + STOWLIN LTD + 16845 + Embassy Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019389 + 10 + STOWLIN LTD + 16845 + Embassy Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019389 + 25 + STOWLIN LTD + 16845 + Embassy Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019389 + 52.5 + STOWLIN LTD + 16845 + Embassy Pool Manager + Chemicals + 40031 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019394 + 1120 + BEESTON LODGE HOTEL + 486284 + Hsg Advice & Homelessness TL + Bed & Breakfast Fees + 40325 + Bed/Breakfast Accommodation + + + + East Lindsey District Council + 18/08/2010 + CICP019396 + 22.27 + FIRSTASSIST SERVICES LTD + 480358 + Embassy Pool Manager + Medical Expenses + 11006 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019396 + 22.26 + FIRSTASSIST SERVICES LTD + 480358 + Democracy Manager + Medical Expenses + 11006 + Chief Executive's + + + + East Lindsey District Council + 18/08/2010 + CICP019396 + 22.26 + FIRSTASSIST SERVICES LTD + 480358 + Building Control + Medical Expenses + 11006 + Building Control + + + + East Lindsey District Council + 18/08/2010 + CICP019396 + 43.88 + FIRSTASSIST SERVICES LTD + 480358 + Horncastle Pool Manager + Medical Expenses + 11006 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019396 + 43.88 + FIRSTASSIST SERVICES LTD + 480358 + Meridian Facility Manager + Medical Expenses + 11006 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019396 + 239.77 + FIRSTASSIST SERVICES LTD + 480358 + Waste Services Manager + Medical Expenses + 11006 + Household Waste-Collection + + + + East Lindsey District Council + 18/08/2010 + CICP019396 + 241.68 + FIRSTASSIST SERVICES LTD + 480358 + Cultural & Related Services + Medical Expenses + 11006 + Sports Development + + + + East Lindsey District Council + 18/08/2010 + CICP019397 + 6.8 + PARISPINK LTD + 517797 + Assistant Chief Executive + Mileage Allowances + 30502 + Corporate Resources + Cover for maternity/vacant posts in Human Resources + + + East Lindsey District Council + 18/08/2010 + CICP019397 + 47.63 + PARISPINK LTD + 517797 + HR Manager + Mileage Allowances + 30502 + Chief Executive's + Cover for maternity/vacant posts in Human Resources + + + East Lindsey District Council + 18/08/2010 + CICP019397 + 2000.49 + PARISPINK LTD + 517797 + Assistant Chief Executive + Locum costs + 11032 + Corporate Resources + Cover for maternity/vacant posts in Human Resources + + + East Lindsey District Council + 18/08/2010 + CICP019397 + 4749.48 + PARISPINK LTD + 517797 + HR Manager + Locum costs + 11032 + Chief Executive's + Cover for maternity/vacant posts in Human Resources + + + East Lindsey District Council + 18/08/2010 + CICP019402 + 732.55 + FOUNDATIONS & BUILDINGS LTD + 506041 + Building Control + Notices + 20156 + Dangerous Buildings + + + + East Lindsey District Council + 18/08/2010 + CICP019404 + 555 + LEILA NETTLE + 531016 + Meridian Facility Manager + Professional Fees + 40305 + Indoor Sports & Recreation + + + + East Lindsey District Council + 18/08/2010 + CICP019410 + 5266 + TRANSLINC LTD + 17491 + Waste Services Manager + Contract Hire - FX06 CVR + 38348 + Household Waste-Collection + + + + East Lindsey District Council + 18/08/2010 + CICP019411 + 5266 + TRANSLINC LTD + 17491 + Waste Services Manager + Contract Hire - FX06 CVY + 38343 + Household Waste-Collection + + + + East Lindsey District Council + 18/08/2010 + CICP019424 + 2068.65 + TRANSLINC LTD + 17491 + Service Development Manager + Maintenance - W478 VFP - 1T10 + 37262 + Markets + + + + East Lindsey District Council + 18/08/2010 + CIDS011367 + 11339.54 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Technical Services Team Leader + Programmed Maintenance + 20102 + Illuminations + + + + East Lindsey District Council + 18/08/2010 + CIDS011369 + 1095 + SIDDLE GRIMLEY HAGE LIMITED + 437563 + Service Development Manager + Programmed Maintenance + 20102 + Community Parks & Open Spaces + + + + East Lindsey District Council + 18/08/2010 + CIDS011370 + 1590.9 + AIRCO INSTALLATIONS LTD + 533056 + Policy & Project Manager + Air Conditioning Maintenance + 20606 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 18/08/2010 + CIDS011371 + 5853 + CEILINGS PARTITIONS SOUTH HUMBERSIDE + 486598 + Policy & Project Manager + Equipment Purchase + 40003 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 18/08/2010 + CIDS011372 + 437.58 + H A T LIMITED + 532442 + Service Development Manager + Vandal Damage + 20125 + Community Parks & Open Spaces + + + + East Lindsey District Council + 18/08/2010 + CIDS011373 + 649.82 + SEYMOUR & CASTLE LTD + 304366 + HR Manager + Office Equipment & Furniture + 40001 + Chief Executive's + + + + East Lindsey District Council + 18/08/2010 + CIDS011374 + 597.37 + ANGLIAN WATER + AW001 + Service Development Manager + Water Charges + 20501 + Public Conveniences + + + + East Lindsey District Council + 18/08/2010 + CIDS011374 + 695.58 + ANGLIAN WATER + AW001 + Service Development Manager + Sewerage Charges + 20502 + Public Conveniences + + + + East Lindsey District Council + 18/08/2010 + CIDS011389 + 460 + LINCS PUMPS & PIPELINES LTD + 11031 + Business Development Manager + Responsive Maintenance + 20101 + Countryside Management & Rec. + + + + East Lindsey District Council + 18/08/2010 + CIFS008928 + 4035.3 + DELL COMPUTER CORPORATION LTD + 267063 + IT Fund + Computer Purchase (not capitalised) + 40413 + Information Technology + + + + East Lindsey District Council + 18/08/2010 + CIFS008929 + 1099 + CISILION LTD + 491486 + TL IT - Network & Comms + Computer Purchase (not capitalised) + 40413 + Information Technology + + + + East Lindsey District Council + 18/08/2010 + CIFS008929 + 5492 + CISILION LTD + 491486 + TL IT - Network & Comms + Computer Purchase (not capitalised) + 40413 + Information Technology + + + + East Lindsey District Council + 18/08/2010 + CIFS008929 + 278 + CISILION LTD + 491486 + TL IT - Network & Comms + Computer Purchase (not capitalised) + 40413 + Information Technology + + + + East Lindsey District Council + 18/08/2010 + CIFS008932 + 783.45 + EXCELL BUSINESS SYSTEMS LTD + 451329 + Theatre Manager + Telephone Charges + 40402 + Theatres/Public Entertainment + + + + East Lindsey District Council + 18/08/2010 + CIFS008933 + 599.45 + KRCS GROUP PLC + 447016 + IT Manager + Computer Purchase (not capitalised) + 40413 + Environmental Services + + + + East Lindsey District Council + 18/08/2010 + CIFS008934 + 475 + STONE PRINTERS LTD + 16816 + IT Manager + Sub Contractors + 40330 + Environmental Services + + + + East Lindsey District Council + 18/08/2010 + CIFS008936 + 750 + SENITOR ASSOCIATES LIMITED + 527509 + Assistant Chief Executive + Computer Purchase (not capitalised) + 40413 + Corporate Resources + + + + East Lindsey District Council + 18/08/2010 + CIFS008939 + 732.34 + SUPPLIES TEAM + 516769 + TL IT - Infrastructure + Consumables + 40420 + Information Technology + + + + East Lindsey District Council + 18/08/2010 + CIFS008944 + 525 + SENITOR ASSOCIATES LIMITED + 527509 + IT Manager + Agency Costs + 11020 + Finance + + + + East Lindsey District Council + 18/08/2010 + CIHE000862 + 1429.27 + JANICE SUTTON + 16997 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 18/08/2010 + CIHE000862 + -316.08 + JANICE SUTTON + 16997 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 18/08/2010 + CIHE000863 + 5914.23 + QDOS ENTERTAINMENT (PRODUCTIONS) LTD + 536998 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 18/08/2010 + CIHE000865 + 5433.09 + QDOS ENTERTAINMENT (PRODUCTIONS) LTD + 536998 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 18/08/2010 + CIHE000866 + 3099.18 + MAD ABOUT PRODUCTIONS LTD + 421896 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 18/08/2010 + CIHE000867 + 631.05 + NORWELL LAPLEY PRODUCTIONS LTD + 537175 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 18/08/2010 + CIHE000869 + 2509.86 + MAD ABOUT PRODUCTIONS LTD + 421896 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 18/08/2010 + CIHE000871 + 677.02 + SKEGNESS STADIUM + 379948 + Theatre Manager + General Agencies + 60314 + Theatres/Public Entertainment + + + + East Lindsey District Council + 18/08/2010 + CIHE000872 + 900.63 + F HUNT (COACH HIRE) LTD + 9441 + Theatre Manager + Hunts Bus Agency + 60301 + Theatres/Public Entertainment + + + + East Lindsey District Council + 18/08/2010 + CIHO005899 + 2500 + EAST LINDSEY CITIZENS ADVICE BUREAU + 528524 + Hsg Advice & Homelessness TL + Contribution from ODPM/DCLG/CLG + 2324 + Housing Advice + + + + East Lindsey District Council + 18/08/2010 + CIHO005900 + 2500 + EAST LINDSEY CITIZENS ADVICE BUREAU + 528524 + Hsg Advice & Homelessness TL + Grants General + 60201 + Housing Advice + + + + East Lindsey District Council + 18/08/2010 + CIHO005901 + 4200 + KEITH HILL + 537191 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 18/08/2010 + CIHO005904 + 5120.54 + J SIVILL LTD + 435963 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 18/08/2010 + CIHO005904 + -458.21 + J SIVILL LTD + 435963 + Hsg Private Sector TL + Improvement Grant Agency + 1101 + Admin of Renovation/DF Grants + + + + East Lindsey District Council + 18/08/2010 + CIHO005905 + 3190.12 + ANDREW BLADES BUILDING SERVICES LTD + 501282 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 18/08/2010 + CIHO005906 + 1504 + TD ROOFING LTD + 501279 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 19/08/2010 + CIFS008961 + -3267.01 + ESPO + 437615 + SM Economic Regen & Property + Gas + 20202 + Indoor Sports & Recreation + + + + East Lindsey District Council + 19/08/2010 + CIFS008961 + 2609.22 + ESPO + 437615 + SM Economic Regen & Property + Gas + 20202 + Indoor Sports & Recreation + + + + East Lindsey District Council + 19/08/2010 + CIFS008961 + 983.28 + ESPO + 437615 + Horncastle Pool Manager + Gas + 20202 + Countryside Management & Rec. + + + + East Lindsey District Council + 19/08/2010 + CIFS008961 + 5571.89 + ESPO + 437615 + Horncastle Pool Manager + Gas + 20202 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 20/08/2010 + CICP019429 + 162.4 + RICOH UK LTD + 500393 + IT Manager + Equipment Lease Payment + 40006 + Environmental Services + + + + East Lindsey District Council + 20/08/2010 + CICP019429 + 551.86 + RICOH UK LTD + 500393 + IT Manager + Maintenance Agreements + 40008 + Environmental Services + + + + East Lindsey District Council + 20/08/2010 + CICP019431 + 1165.06 + RICOH UK LTD + 500393 + IT Manager + Maintenance Agreements + 40008 + Environmental Services + + + + East Lindsey District Council + 20/08/2010 + CICP019431 + 975.2 + RICOH UK LTD + 500393 + IT Manager + Equipment Lease Payment + 40006 + Environmental Services + + + + East Lindsey District Council + 20/08/2010 + CICP019438 + 4764.78 + COASTFIELDS + 419028 + Business Development Manager + Security + 40303 + Countryside Management & Rec. + + + + East Lindsey District Council + 20/08/2010 + CICP019447 + 573.2 + MAINSERVE GCM + 519355 + Sports Centre Manager + Special Events + 40641 + Indoor Sports & Recreation + + + + East Lindsey District Council + 20/08/2010 + CICP019452 + 650.56 + B A BUSH & SON LIMITED + 3586 + Waste Services Manager + Maintenance FX03 DZP (5T03) + 37292 + Household Waste-Collection + + + + East Lindsey District Council + 20/08/2010 + CICP019457 + 496.64 + STAFFORCE RECRUITMENT + 462062 + Waste Services Manager + Agency Costs + 11020 + Household Waste-Collection + + + + East Lindsey District Council + 20/08/2010 + CICP019458 + 3173.7 + APR AGENCY + 485939 + Waste Services Manager + Agency Costs + 11020 + Household Waste-Collection + + + + East Lindsey District Council + 20/08/2010 + CICP019472 + 1950 + THORNTON - FIRKIN + 130187 + BM Sports Facilities + Other Contractors - Addit Works + 20190 + Capital Expenditure + + + + East Lindsey District Council + 20/08/2010 + CICP019473 + 24.48 + FIRST COLLEGE + 277901 + Development Control + Mileage Allowances + 30502 + Development Control + + + + East Lindsey District Council + 20/08/2010 + CICP019473 + 45.55 + FIRST COLLEGE + 277901 + Audit Manager + Mileage Allowances + 30502 + Finance + + + + East Lindsey District Council + 20/08/2010 + CICP019473 + 48.96 + FIRST COLLEGE + 277901 + BM Financial & ICT Services + Mileage Allowances + 30502 + Finance + + + + East Lindsey District Council + 20/08/2010 + CICP019473 + 54 + FIRST COLLEGE + 277901 + Cultural & Related Services + Mileage Allowances + 30502 + Sports Development + + + + East Lindsey District Council + 20/08/2010 + CICP019473 + 418 + FIRST COLLEGE + 277901 + BM Financial & ICT Services + Fast Forward Costs + 11027 + Finance + + + + East Lindsey District Council + 20/08/2010 + CICP019473 + 418 + FIRST COLLEGE + 277901 + TL Partnerships & Grants + Fast Forward Costs + 11027 + Community Safety/CCTV + + + + East Lindsey District Council + 20/08/2010 + CICP019473 + 418 + FIRST COLLEGE + 277901 + Development Control + Fast Forward Costs + 11027 + Development Control + + + + East Lindsey District Council + 20/08/2010 + CICP019473 + 418 + FIRST COLLEGE + 277901 + Cultural & Related Services + Fast Forward Costs + 11027 + Sports Development + + + + East Lindsey District Council + 20/08/2010 + CICP019473 + 418 + FIRST COLLEGE + 277901 + IT Manager + Fast Forward Costs + 11027 + Environmental Services + + + + East Lindsey District Council + 20/08/2010 + CICP019473 + 418 + FIRST COLLEGE + 277901 + Audit Manager + Fast Forward Costs + 11027 + Finance + + + + East Lindsey District Council + 20/08/2010 + CICP019473 + 418 + FIRST COLLEGE + 277901 + Hsg Benefits Assessments TL + Fast Forward Costs + 11027 + Finance + + + + East Lindsey District Council + 20/08/2010 + CICP019474 + 54.18 + FIRST COLLEGE + 277901 + Development Control + Mileage Allowances + 30502 + Development Control + + + + East Lindsey District Council + 20/08/2010 + CICP019474 + 53.57 + FIRST COLLEGE + 277901 + Audit Manager + Mileage Allowances + 30502 + Finance + + + + East Lindsey District Council + 20/08/2010 + CICP019474 + 60.48 + FIRST COLLEGE + 277901 + BM Financial & ICT Services + Mileage Allowances + 30502 + Finance + + + + East Lindsey District Council + 20/08/2010 + CICP019474 + 66 + FIRST COLLEGE + 277901 + Cultural & Related Services + Mileage Allowances + 30502 + Sports Development + + + + East Lindsey District Council + 20/08/2010 + CICP019474 + 418 + FIRST COLLEGE + 277901 + Cultural & Related Services + Fast Forward Costs + 11027 + Sports Development + + + + East Lindsey District Council + 20/08/2010 + CICP019474 + 418 + FIRST COLLEGE + 277901 + IT Manager + Fast Forward Costs + 11027 + Environmental Services + + + + East Lindsey District Council + 20/08/2010 + CICP019474 + 418 + FIRST COLLEGE + 277901 + Audit Manager + Fast Forward Costs + 11027 + Finance + + + + East Lindsey District Council + 20/08/2010 + CICP019474 + 418 + FIRST COLLEGE + 277901 + BM Financial & ICT Services + Fast Forward Costs + 11027 + Finance + + + + East Lindsey District Council + 20/08/2010 + CICP019474 + 418 + FIRST COLLEGE + 277901 + Hsg Benefits Assessments TL + Fast Forward Costs + 11027 + Finance + + + + East Lindsey District Council + 20/08/2010 + CICP019474 + 608 + FIRST COLLEGE + 277901 + Development Control + Fast Forward Costs + 11027 + Development Control + + + + East Lindsey District Council + 20/08/2010 + CICP019475 + 967 + SKEGNESS & DISTRICT FUNERAL SERVICES + 493578 + Commercial Team Leader + Burial Fees + 40322 + Public Health + + + + East Lindsey District Council + 20/08/2010 + CICP019479 + 4.72 + MIDLAND SOFTWARE LIMITED + 12234 + HR Manager + Subsistence + 40901 + Chief Executive's + + + + East Lindsey District Council + 20/08/2010 + CICP019479 + 145.52 + MIDLAND SOFTWARE LIMITED + 12234 + HR Manager + Mileage Allowances + 30502 + Chief Executive's + + + + East Lindsey District Council + 20/08/2010 + CICP019479 + 1500 + MIDLAND SOFTWARE LIMITED + 12234 + HR Manager + Consultants Fees + 40304 + Chief Executive's + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 82.92 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Embassy Pool Manager + Equipment Purchase + 40003 + Indoor Sports & Recreation + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 20.73 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Horncastle Pool Manager + Equipment Purchase + 40003 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 20.73 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Public Buildings + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 81.25 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 87.32 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 76.58 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Theatre Manager + Responsive Maintenance + 20101 + Foreshore + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 244.47 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Policy & Project Manager + Responsive Maintenance + 20101 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 179.97 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Meridian Facility Manager + Responsive Maintenance + 20101 + Indoor Sports & Recreation + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 268.19 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 62.19 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Policy & Project Manager + Responsive Maintenance + 20101 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 194.44 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 62.2 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 186.25 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Enforcement Team Leader + Responsive Maintenance + 20101 + Off-street Parking + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 20.73 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Foreshore + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 62.19 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 60.52 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 62.19 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 47.64 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Theatre Manager + Vandal Damage + 20125 + Foreshore + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 60.49 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Vandal Damage + 20125 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 367.87 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Business Development Manager + Responsive Maintenance + 20101 + Countryside Management & Rec. + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 111.86 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Vandal Damage + 20125 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Vandal Damage + 20125 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 77.75 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 124.41 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Horncastle Pool Manager + Responsive Maintenance + 20101 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 42.18 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 106.6 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 131.85 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Foreshore + + + + East Lindsey District Council + 20/08/2010 + CIDS011403 + 20.73 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Foreshore + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 253.61 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Meridian Facility Manager + Equipment Purchase + 40003 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + SM Economic Regen & Property + Decommissioning Works + 20181 + Indoor Sports & Recreation + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Public Buildings + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 71.72 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Technical Services Team Leader + Responsive Maintenance + 20101 + Heritage + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 79.84 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Horncastle Pool Manager + Responsive Maintenance + 20101 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Vandal Damage + 20125 + Community Parks & Open Spaces + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Public Buildings + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Policy & Project Manager + Responsive Maintenance + 20101 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 83.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Sports Centre Manager + Vandal Damage + 20125 + Community Parks & Open Spaces + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 190.35 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Public Buildings + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 62.19 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 62.79 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 97.12 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Vandal Damage + 20125 + Community Parks & Open Spaces + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 68.49 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Vandal Damage + 20125 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Vandal Damage + 20125 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 62.19 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 62.19 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Technical Services Team Leader + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 82.92 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Enforcement Team Leader + Maintenance of Car Park Machines + 40009 + Off-street Parking + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 82.92 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Enforcement Team Leader + Maintenance of Car Park Machines + 40009 + Off-street Parking + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 62.19 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 103.65 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 155.89 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Embassy Pool Manager + Responsive Maintenance + 20101 + Indoor Sports & Recreation + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 82.92 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Public Buildings + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 123.45 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 82.92 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 71.12 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 58.26 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Meridian Facility Manager + Responsive Maintenance + 20101 + Indoor Sports & Recreation + + + + East Lindsey District Council + 20/08/2010 + CIDS011404 + 114.27 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Meridian Facility Manager + Vandal Damage + 20125 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 20/08/2010 + CIDS011405 + 1154.74 + ANGLIAN WATER + AW001 + Service Development Manager + Water Charges + 20501 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011405 + 1322.58 + ANGLIAN WATER + AW001 + Service Development Manager + Sewerage Charges + 20502 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011408 + 349.51 + ANGLIAN WATER + AW001 + Policy & Project Manager + Water Charges + 20501 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 20/08/2010 + CIDS011408 + 422.54 + ANGLIAN WATER + AW001 + Policy & Project Manager + Sewerage Charges + 20502 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 20/08/2010 + CIDS011411 + 254.58 + ANGLIAN WATER + AW001 + Service Development Manager + Water Charges + 20501 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011411 + 319.71 + ANGLIAN WATER + AW001 + Service Development Manager + Sewerage Charges + 20502 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011412 + 239.63 + ANGLIAN WATER + AW001 + TL Property + Water Charges + 20501 + Public Buildings + + + + East Lindsey District Council + 20/08/2010 + CIDS011412 + 284.2 + ANGLIAN WATER + AW001 + TL Property + Sewerage Charges + 20502 + Public Buildings + + + + East Lindsey District Council + 20/08/2010 + CIDS011414 + 1294.33 + ANGLIAN WATER + AW001 + Service Development Manager + Water Charges + 20501 + Community Parks & Open Spaces + + + + East Lindsey District Council + 20/08/2010 + CIDS011415 + 3637.63 + ANGLIAN WATER + AW001 + Business Development Manager + Water Charges + 20501 + Countryside Management & Rec. + + + + East Lindsey District Council + 20/08/2010 + CIDS011415 + 4232.29 + ANGLIAN WATER + AW001 + Business Development Manager + Sewerage Charges + 20502 + Countryside Management & Rec. + + + + East Lindsey District Council + 20/08/2010 + CIDS011416 + 554.47 + ANGLIAN WATER + AW001 + Theatre Manager + Water Charges + 20501 + Theatres/Public Entertainment + + + + East Lindsey District Council + 20/08/2010 + CIDS011416 + 634.31 + ANGLIAN WATER + AW001 + Theatre Manager + Sewerage Charges + 20502 + Theatres/Public Entertainment + + + + East Lindsey District Council + 20/08/2010 + CIDS011421 + 810.2 + ANGLIAN WATER + AW001 + Service Development Manager + Water Charges + 20501 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIDS011421 + 935.01 + ANGLIAN WATER + AW001 + Service Development Manager + Sewerage Charges + 20502 + Public Conveniences + + + + East Lindsey District Council + 20/08/2010 + CIFS008958 + 9000 + NEOPOST LTD + 413118 + Corporate Accounting + Postage + 40401 + Non Service Issues + + + + East Lindsey District Council + 20/08/2010 + CIFS008966 + 10.4 + H M REVENUES AND CUSTOMS + 522999 + Corporate Accounting + Tax Deducted + 9604 + Non Service Issues + + + + East Lindsey District Council + 20/08/2010 + CIHE000873 + 5485.68 + HANDSHAKE LTD + 418919 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 20/08/2010 + CIHE000873 + -58.75 + HANDSHAKE LTD + 418919 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 20/08/2010 + CIHE000875 + 1685.5 + JANICE SUTTON + 16997 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 20/08/2010 + CIHE000875 + -64.63 + JANICE SUTTON + 16997 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 20/08/2010 + CIHO005907 + 5980.74 + HARRIS BUILDING & DESIGN SERVICESXXXXXXX + 369657 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 20/08/2010 + CIHO005907 + -535.19 + HARRIS BUILDING & DESIGN SERVICESXXXXXXX + 369657 + Hsg Private Sector TL + Improvement Grant Agency + 1101 + Admin of Renovation/DF Grants + + + + East Lindsey District Council + 20/08/2010 + CIHO005908 + 10265.36 + KES BUILDING MAINTENANCE LTD + 390134 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 20/08/2010 + CIHO005908 + -918.6 + KES BUILDING MAINTENANCE LTD + 390134 + Hsg Private Sector TL + Improvement Grant Agency + 1101 + Admin of Renovation/DF Grants + + + + East Lindsey District Council + 20/08/2010 + CIHO005910 + 4816.67 + R TOYNTON PLUMBING & HEATING LTD + 537230 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 20/08/2010 + CIHO005911 + 5000 + STEVE ANDREW BUILDING CONTRACTORS + 537243 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 20/08/2010 + CIHO005912 + 560 + BELCHFORD TABLE TENNIS CLUB + 537308 + TL Partnerships & Grants + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 20/08/2010 + CIHO005918 + 5000 + LOUTH NATURALISTS ANTIQUARIAN & + 119713 + TL Partnerships & Grants + Grant Paid From Community Initiative Fun + 60279 + General Grants + + + + East Lindsey District Council + 20/08/2010 + CIRV004084 + 480 + CENTRAL FINANCE UNIT + 535193 + Debt Recovery TL + Summons Issue Fee + 40332 + Local Taxation + + + + East Lindsey District Council + 20/08/2010 + CIRV004084 + 960 + CENTRAL FINANCE UNIT + 535193 + Council Tax TL + Summons Issue Fee + 40332 + Local Taxation + + + + East Lindsey District Council + 25/08/2010 + CIAU001088 + 960 + BLUE SKY SWIMMING + 537395 + Democracy Manager + Grants General + 60201 + Members Allowances & Expenses + + + + East Lindsey District Council + 25/08/2010 + CICP019480 + 4242.88 + CHANDLERS (FARM EQUIPMENT) LTD + 4080 + Service Development Manager + Maintenance 22T35 + 37370 + OC Other Cleaning + + + + East Lindsey District Council + 25/08/2010 + CICP019484 + 439.29 + CHANDLERS (FARM EQUIPMENT) LTD + 4080 + Service Development Manager + Maintenance 22T34 + 37369 + OC Other Cleaning + + + + East Lindsey District Council + 25/08/2010 + CICP019487 + 475 + DBF CROSSWINDS LTD + 530172 + Democracy Manager + General Printing + 40202 + Elections & Reg of Electors + + + + East Lindsey District Council + 25/08/2010 + CICP019488 + 482 + DBF CROSSWINDS LTD + 530172 + Democracy Manager + General Printing + 40202 + Elections & Reg of Electors + + + + East Lindsey District Council + 25/08/2010 + CICP019490 + 660.95 + DBF CROSSWINDS LTD + 530172 + Democracy Manager + General Printing + 40202 + Elections & Reg of Electors + + + + East Lindsey District Council + 25/08/2010 + CICP019491 + 595.95 + DBF CROSSWINDS LTD + 530172 + Democracy Manager + General Printing + 40202 + Elections & Reg of Electors + + + + East Lindsey District Council + 25/08/2010 + CICP019496 + 13680 + CAPITA BUSINESS SERVICES LTD + 388939 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 25/08/2010 + CICP019497 + 13200 + CAPITA BUSINESS SERVICES LTD + 388939 + Assistant Chief Executive + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 25/08/2010 + CICP019500 + 671.49 + EXPOLINK EUROPE LIMITED + 392912 + Audit Manager + Consultants Fees + 40304 + Corporate Resources + + + + East Lindsey District Council + 25/08/2010 + CICP019512 + 1668.48 + FUJITSU + 491994 + BM Financial & ICT Services + East Lindsey Conversion Costs + 40069 + Concessionary Fares + + + + East Lindsey District Council + 25/08/2010 + CICP019512 + 1007.25 + FUJITSU + 491994 + BM Financial & ICT Services + Expenditure + 99990 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CICP019512 + 1157.76 + FUJITSU + 491994 + BM Financial & ICT Services + Expenditure + 99990 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CICP019512 + 603.2 + FUJITSU + 491994 + BM Financial & ICT Services + Expenditure + 99990 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CICP019512 + 626.6 + FUJITSU + 491994 + BM Financial & ICT Services + Expenditure + 99990 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CICP019512 + 850.2 + FUJITSU + 491994 + BM Financial & ICT Services + Expenditure + 99990 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CICP019512 + 1150.89 + FUJITSU + 491994 + BM Financial & ICT Services + Expenditure + 99990 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CICP019516 + 2500 + LINCOLNSHIRE COUNTY COUNCIL + 288042 + Performance Monitoring Manager + Software Licences + 40419 + Chief Executive's + + + + East Lindsey District Council + 25/08/2010 + CICP019518 + 4898 + HASKONING UK LTD + 500034 + Planning & Housing Policy Man + Appropriate Assessment + 40113 + Planning Projects & Implementn + + + + East Lindsey District Council + 25/08/2010 + CICP019528 + 2718 + LINCOLNSHIRE COUNTY COUNCIL + 288042 + Enforcement Team Leader + LCC Land Search Charges + 50203 + Local Land Charges + + + + East Lindsey District Council + 25/08/2010 + CICP019530 + 728.84 + NORTHCLIFFE MEDIA LIMITED + 498324 + Democracy Manager + General Advertising + 40604 + Members Allowances & Expenses + + + + East Lindsey District Council + 25/08/2010 + CICP019531 + 30013.5 + UNIVERSITY OF WARWICK + 438960 + Policy & Project Manager + ED:Research and Policy + 60605 + Economic Research + + + + East Lindsey District Council + 25/08/2010 + CICP019534 + 1195 + CIPFA BUSINESS LIMITED + 445063 + TL Property + Subscriptions + 40801 + Chief Executive's + + + + East Lindsey District Council + 25/08/2010 + CICP019535 + 950 + FIESTA ENTERTAINMENTS + 518592 + Cultural & Related Services + Equipment Purchase + 40003 + Sports Development + + + + East Lindsey District Council + 25/08/2010 + CIDS011422 + 1407 + AEGIS SECURITY SOLUTIONS & TECHNOLOGIES + 460695 + Meridian Facility Manager + Equipment Purchase + 40003 + Indoor Sports & Recreation + + + + East Lindsey District Council + 25/08/2010 + CIDS011425 + 11.55 + AIRCO INSTALLATIONS LTD + 533056 + TL Property + Programmed Maintenance + 20102 + Public Buildings + + + + East Lindsey District Council + 25/08/2010 + CIDS011425 + 11.55 + AIRCO INSTALLATIONS LTD + 533056 + TL Property + Programmed Maintenance + 20102 + Public Buildings + + + + East Lindsey District Council + 25/08/2010 + CIDS011425 + 15.4 + AIRCO INSTALLATIONS LTD + 533056 + TL Property + Programmed Maintenance + 20102 + Public Buildings + + + + East Lindsey District Council + 25/08/2010 + CIDS011425 + 23.1 + AIRCO INSTALLATIONS LTD + 533056 + TL Property + Programmed Maintenance + 20102 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 25/08/2010 + CIDS011425 + 30.8 + AIRCO INSTALLATIONS LTD + 533056 + Policy & Project Manager + Air Conditioning Maintenance + 20606 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 25/08/2010 + CIDS011425 + 34.65 + AIRCO INSTALLATIONS LTD + 533056 + Embassy Pool Manager + Programmed Maintenance + 20102 + Indoor Sports & Recreation + + + + East Lindsey District Council + 25/08/2010 + CIDS011425 + 38.5 + AIRCO INSTALLATIONS LTD + 533056 + Theatre Manager + Programmed Maintenance + 20102 + Theatres/Public Entertainment + + + + East Lindsey District Council + 25/08/2010 + CIDS011425 + 73.15 + AIRCO INSTALLATIONS LTD + 533056 + Sports Centre Manager + Programmed Maintenance + 20102 + Indoor Sports & Recreation + + + + East Lindsey District Council + 25/08/2010 + CIDS011425 + 130.9 + AIRCO INSTALLATIONS LTD + 533056 + Policy & Project Manager + Air Conditioning Maintenance + 20606 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 25/08/2010 + CIDS011425 + 200.2 + AIRCO INSTALLATIONS LTD + 533056 + Policy & Project Manager + Air Conditioning Maintenance + 20606 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 25/08/2010 + CIDS011425 + 370.2 + AIRCO INSTALLATIONS LTD + 533056 + TL Property + Programmed Maintenance + 20102 + Public Buildings + + + + East Lindsey District Council + 25/08/2010 + CIDS011425 + 22.6 + AIRCO INSTALLATIONS LTD + 533056 + TL Property + Programmed Maintenance + 20102 + Public Buildings + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 139.73 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Litter/Dustbins + 40016 + Street Cleansing + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 2916.1 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Technical Services Team Leader + Programmed Maintenance + 20102 + Illuminations + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 82.92 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Litter/Dustbins + 40016 + Street Cleansing + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 103.65 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Enforcement Team Leader + Signs + 40628 + Off-street Parking + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 83.7 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Horncastle Pool Manager + Responsive Maintenance + 20101 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 75.92 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Theatre Manager + Responsive Maintenance + 20101 + Foreshore + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Meridian Facility Manager + Responsive Maintenance + 20101 + Indoor Sports & Recreation + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 62.19 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Meridian Facility Manager + Responsive Maintenance + 20101 + Indoor Sports & Recreation + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 94.93 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 62.19 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 142.05 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Theatre Manager + Responsive Maintenance + 20101 + Foreshore + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 64.43 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Building Control + Responsive Maintenance + 20101 + Street Naming + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 124.55 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Investment Income Properties + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 74.32 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 110.24 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Enforcement Team Leader + Vandal Damage + 20125 + Off-street Parking + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 84.6 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Enforcement Team Leader + Responsive Maintenance + 20101 + Off-street Parking + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 149.69 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Vandal Damage + 20125 + Public Conveniences + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 124.06 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Vandal Damage + 20125 + Public Conveniences + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 62.19 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 78.62 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Vandal Damage + 20125 + Public Conveniences + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 41.46 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 106.44 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + TL Property + Responsive Maintenance + 20101 + Public Buildings + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 20.73 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Meridian Facility Manager + Responsive Maintenance + 20101 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 62.19 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Business Development Officer + General Advertising + 40604 + Indoor Sports & Recreation + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 60.82 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Public Conveniences + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 69.39 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Sports Centre Manager + Responsive Maintenance + 20101 + Indoor Sports & Recreation + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 222.87 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 62.19 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Policy & Project Manager + Responsive Maintenance + 20101 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 25/08/2010 + CIDS011427 + 116.59 + KENMOR BUILDING & CONSTRUCTION SERVICES + 110184 + Horncastle Pool Manager + Responsive Maintenance + 20101 + Countryside Management & Rec. + + + + East Lindsey District Council + 25/08/2010 + CIDS011428 + 2034 + E.ON ENERGY + 501509 + Technical Services Team Leader + Electricity + 20201 + Lighting + + + + East Lindsey District Council + 25/08/2010 + CIDS011431 + 4533.37 + ANGLIAN WATER + AW001 + Horncastle Pool Manager + Water Charges + 20501 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 25/08/2010 + CIDS011431 + 1133.34 + ANGLIAN WATER + AW001 + Horncastle Pool Manager + Water Charges + 20501 + Countryside Management & Rec. + + + + East Lindsey District Council + 25/08/2010 + CIDS011431 + 1569.45 + ANGLIAN WATER + AW001 + Horncastle Pool Manager + Sewerage Charges + 20502 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 25/08/2010 + CIDS011431 + 1284.1 + ANGLIAN WATER + AW001 + Horncastle Pool Manager + Sewerage Charges + 20502 + Countryside Management & Rec. + + + + East Lindsey District Council + 25/08/2010 + CIDS011434 + 450 + BATES ENVIRONMENTAL LTD + 536752 + Horncastle Pool Manager + Responsive Maintenance + 20101 + Countryside Management & Rec. + + + + East Lindsey District Council + 25/08/2010 + CIDS011438 + 179.55 + RENTOKIL SPECIALIST HYGIENE + 536477 + TL Property + Programmed Maintenance + 20102 + Public Buildings + + + + East Lindsey District Council + 25/08/2010 + CIDS011438 + 138.7 + RENTOKIL SPECIALIST HYGIENE + 536477 + TL Property + Programmed Maintenance + 20102 + Depots + + + + East Lindsey District Council + 25/08/2010 + CIDS011438 + 179.55 + RENTOKIL SPECIALIST HYGIENE + 536477 + Policy & Project Manager + Programmed Maintenance + 20102 + Premises Devt incl Ind. Units + + + + East Lindsey District Council + 25/08/2010 + CIDS011439 + 305 + RENTOKIL SPECIALIST HYGIENE + 536477 + TL Property + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 25/08/2010 + CIDS011439 + 305 + RENTOKIL SPECIALIST HYGIENE + 536477 + Embassy Pool Manager + Responsive Maintenance + 20101 + Outdoor Sports & Recreation + + + + East Lindsey District Council + 25/08/2010 + CIDS011439 + 305 + RENTOKIL SPECIALIST HYGIENE + 536477 + Horncastle Pool Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 25/08/2010 + CIDS011442 + 428.92 + SEYMOUR & CASTLE LTD + 304366 + Embassy Pool Manager + Responsive Maintenance + 20101 + Indoor Sports & Recreation + + + + East Lindsey District Council + 25/08/2010 + CIDS011443 + 2719.42 + HARLITE INSTALLATIONS LTD + 8581 + Technical Services Team Leader + Responsive Maintenance + 20101 + Lighting + + + + East Lindsey District Council + 25/08/2010 + CIDS011443 + 275.02 + HARLITE INSTALLATIONS LTD + 8581 + Business Development Manager + Responsive Maintenance + 20101 + Countryside Management & Rec. + + + + East Lindsey District Council + 25/08/2010 + CIDS011443 + 30.42 + HARLITE INSTALLATIONS LTD + 8581 + Enforcement Team Leader + Responsive Maintenance + 20101 + Off-street Parking + + + + East Lindsey District Council + 25/08/2010 + CIDS011443 + 30.42 + HARLITE INSTALLATIONS LTD + 8581 + Enforcement Team Leader + Responsive Maintenance + 20101 + Off-street Parking + + + + East Lindsey District Council + 25/08/2010 + CIDS011443 + 146.83 + HARLITE INSTALLATIONS LTD + 8581 + Service Development Manager + Responsive Maintenance + 20101 + Community Parks & Open Spaces + + + + East Lindsey District Council + 25/08/2010 + CIDS011443 + 35.79 + HARLITE INSTALLATIONS LTD + 8581 + TL Property + Responsive Maintenance + 20101 + Public Buildings + + + + East Lindsey District Council + 25/08/2010 + CIDS011443 + 42.52 + HARLITE INSTALLATIONS LTD + 8581 + Enforcement Team Leader + Responsive Maintenance + 20101 + Off-street Parking + + + + East Lindsey District Council + 25/08/2010 + CIDS011443 + 44.7 + HARLITE INSTALLATIONS LTD + 8581 + Meridian Facility Manager + Responsive Maintenance + 20101 + Indoor Sports & Recreation + + + + East Lindsey District Council + 25/08/2010 + CIDS011445 + 591 + AEGIS SERVICE & AFTERCARE LTD + 521770 + Meridian Facility Manager + Responsive Maintenance + 20101 + Indoor Sports & Recreation + + + + East Lindsey District Council + 25/08/2010 + CIFS008967 + 16779.58 + P C COACHES + 161237 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008970 + 3348.43 + RED BUS + 534000 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008971 + 512.6 + SHAW COACHES + 305064 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008972 + 5102.91 + SLEAFORDIAN COACHES + 415226 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008973 + 7022.36 + STAGECOACH SERVICE LTD + 424107 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008974 + 1415.36 + TC MINI COACHES & PRIVATE HIRE + 172967 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008975 + 12222.12 + TRANSLINC LTD + 17491 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008977 + 788.83 + AMVALE LTD + 344371 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008979 + 4888.35 + BELLAMY HOLIDAYS LTD + 527732 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008980 + 1352.93 + J W CARNELL LTD (CARNELL COACHES) + 305080 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008981 + 21360.18 + CENTREBUS LTD + 447948 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008982 + 13054.64 + DELAINE BUSES + 310907 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008984 + 1681.17 + FOWLERS TRAVEL + 305048 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008985 + 3601.9 + GRAYSCROFT BUS SERVICES LTD + 8109 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008987 + 12692.65 + F HUNT (COACH HIRE) LTD + 9441 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008988 + 919.51 + KETTLEWELL COACHES + 508829 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008989 + 17500.14 + KIMES COACHES + 305035 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008990 + 1660.43 + KJB NOTTINGHAM LTD + 490458 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008991 + 1515.92 + MARK BLAND TRAVEL LTD + 499420 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIFS008993 + 16182.49 + NORFOLK GREEN + 305103 + BM Financial & ICT Services + Concess.Travel - Bus Passes + 30706 + Non Service Issues + + + + East Lindsey District Council + 25/08/2010 + CIHE000879 + 3991.34 + MAD ABOUT PRODUCTIONS LTD + 421896 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 25/08/2010 + CIHE000880 + 5750.93 + QDOS ENTERTAINMENT (PRODUCTIONS) LTD + 536998 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 25/08/2010 + CIHE000881 + 2095.37 + JANICE SUTTON + 16997 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 25/08/2010 + CIHE000881 + -64.63 + JANICE SUTTON + 16997 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 25/08/2010 + CIHE000882 + 7542.3 + CHAMBERS MANAGEMENT + 536406 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 25/08/2010 + CIHE000882 + 940 + CHAMBERS MANAGEMENT + 536406 + Theatre Manager + Souvenirs Sales + 3318 + Theatres/Public Entertainment + + + + East Lindsey District Council + 25/08/2010 + CIHE000882 + -160 + CHAMBERS MANAGEMENT + 536406 + Theatre Manager + Souvenirs Sales + 3318 + Theatres/Public Entertainment + + + + East Lindsey District Council + 25/08/2010 + CIHE000882 + -10.8 + CHAMBERS MANAGEMENT + 536406 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 25/08/2010 + CIHE000883 + 4977.32 + BRIAN SHAW + 281515 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 25/08/2010 + CIHO005919 + 2106.49 + DOLPHIN MOBILITY EAST MIDLANDS + 517506 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 25/08/2010 + CIHO005919 + -188.5 + DOLPHIN MOBILITY EAST MIDLANDS + 517506 + Hsg Private Sector TL + Improvement Grant Agency + 1101 + Admin of Renovation/DF Grants + + + + East Lindsey District Council + 25/08/2010 + CIHO005920 + 3625.38 + HUMBERSTONE BUILDING MAINTENANCE + 496847 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 27/08/2010 + CIDS011449 + 631.95 + MIDLANDS SIGNS (LEICESTER) LTD + 12247 + Building Control + Responsive Maintenance + 20101 + Street Naming + + + + East Lindsey District Council + 27/08/2010 + CIDS011451 + 1500 + LOUTH TOWN PARTNERSHIP + 537654 + Policy & Project Manager + ED:Research and Policy + 60605 + Economic Research + + + + East Lindsey District Council + 27/08/2010 + CIDS011452 + 528.2 + MARK ELDIN JOINERY + 363750 + Hsg Advice & Homelessness TL + Safe at Home Grants + 60280 + Housing Advice + + + + East Lindsey District Council + 27/08/2010 + CIDS011452 + 163.7 + MARK ELDIN JOINERY + 363750 + Hsg Advice & Homelessness TL + Safe at Home Grants + 60280 + Housing Advice + + + + East Lindsey District Council + 27/08/2010 + CIFS008999 + 30000 + PHOENIX SOFTWARE LIMITED + 431899 + Assistant Chief Executive + Computer Purchase (not capitalised) + 40413 + Corporate Resources + + + + East Lindsey District Council + 27/08/2010 + CIFS009000 + 1990 + CAPITA BUSINESS SERVICES LTD + 517454 + IT Fund + Computer Purchase (not capitalised) + 40413 + Information Technology + + + + East Lindsey District Council + 27/08/2010 + CIFS009002 + 850 + PHOENIX SOFTWARE LIMITED + 431899 + Assistant Chief Executive + Computer Purchase (not capitalised) + 40413 + Corporate Resources + + + + East Lindsey District Council + 27/08/2010 + CIFS009011 + 1950.32 + PHOENIX SOFTWARE LIMITED + 431899 + Assistant Chief Executive + Computer Purchase (not capitalised) + 40413 + Corporate Resources + + + + East Lindsey District Council + 27/08/2010 + CIFS009015 + 525 + SENITOR ASSOCIATES LIMITED + 527509 + IT Manager + Agency Costs + 11020 + Finance + + + + East Lindsey District Council + 27/08/2010 + CIFS009016 + 750 + SENITOR ASSOCIATES LIMITED + 527509 + Assistant Chief Executive + Computer Purchase (not capitalised) + 40413 + Corporate Resources + + + + East Lindsey District Council + 27/08/2010 + CIFS009019 + 4000 + LINCOLNSHIRE COUNTY COUNCIL + 288042 + Corporate Accounting + Subscriptions + 40801 + Head of Paid Service + + + + East Lindsey District Council + 27/08/2010 + CIFS009022 + 750 + SENITOR ASSOCIATES LIMITED + 527509 + Assistant Chief Executive + Computer Purchase (not capitalised) + 40413 + Corporate Resources + + + + East Lindsey District Council + 27/08/2010 + CIHE000891 + 5991.89 + PERFORMING RIGHT SOCIETY LTD + 426778 + Theatre Manager + Performing Rights licence + 40619 + Theatres/Public Entertainment + + + + East Lindsey District Council + 27/08/2010 + CIHE000891 + 302.94 + PERFORMING RIGHT SOCIETY LTD + 426778 + Cultural & Related Services + Performing Rights licence + 40619 + Arts Development & Support + + + + East Lindsey District Council + 27/08/2010 + CIHE000892 + 3535.86 + DEMAC PROMOTIONS LTD + 537531 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 27/08/2010 + CIHE000892 + -176.25 + DEMAC PROMOTIONS LTD + 537531 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 27/08/2010 + CIHE000894 + 4581.73 + INTERNATIONAL ARTISTES LTD + 385411 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 27/08/2010 + CIHE000895 + 4818.37 + INTERNATIONAL ARTISTES LTD + 385411 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 27/08/2010 + CIHE000896 + 10081.05 + DEREK BLOCK ARTISTES AGENCY LTD + 383730 + Theatre Manager + Performers Fees + 40613 + Theatres/Public Entertainment + + + + East Lindsey District Council + 27/08/2010 + CIHO005923 + 2482.66 + EASTERN GAS SERVICES + 533739 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 27/08/2010 + CIHO005924 + 4814.98 + COTTS BUILDERS AND CONTRACTORS + 52142 + Hsg Private Sector TL + Grants + 98003 + Capital Expenditure + + + + East Lindsey District Council + 27/08/2010 + CIHO005928 + 600 + TURNER EVANS STEVENS + 537599 + Hsg Advice & Homelessness TL + General Repairs - Bond + 20175 + Housing Advice + + + + East Lindsey District Council + 31/08/2010 + CIFS009255 + 36 + CRIMINAL RECORDS BUREAU + 404062 + Health Team Leader + Criminal Records Check + 11028 + Sports Development + + + + East Lindsey District Council + 31/08/2010 + CIFS009255 + 26 + CRIMINAL RECORDS BUREAU + 404062 + Hsg Private Sector TL + Criminal Records Check + 11028 + Community Safety/CCTV + + + + East Lindsey District Council + 31/08/2010 + CIFS009255 + 36 + CRIMINAL RECORDS BUREAU + 404062 + Meridian Facility Manager + Criminal Records Check + 11028 + Indoor Sports & Recreation + + + + East Lindsey District Council + 31/08/2010 + CIFS009255 + 36 + CRIMINAL RECORDS BUREAU + 404062 + Meridian Facility Manager + Criminal Records Check + 11028 + Indoor Sports & Recreation + + + + East Lindsey District Council + 31/08/2010 + CIFS009255 + 756 + CRIMINAL RECORDS BUREAU + 404062 + Enforcement Team Leader + Criminal Records Check + 11028 + Licensing + + + + East Lindsey District Council + 31/08/2010 + CIFS009255 + -52 + CRIMINAL RECORDS BUREAU + 404062 + Theatre Manager + Criminal Records Check + 11028 + Theatres/Public Entertainment + + + + East Lindsey District Council + 31/08/2010 + CIFS009255 + 108 + CRIMINAL RECORDS BUREAU + 404062 + HR Manager + Criminal Records Check + 11028 + Chief Executive's + + + \ No newline at end of file diff --git a/ckanext/qa/tests/data/10-p108-data-results-2010-finance-survey-mid-cap-businesses.xls b/ckanext/qa/tests/data/10-p108-data-results-2010-finance-survey-mid-cap-businesses.xls new file mode 100644 index 00000000..096bb803 Binary files /dev/null and b/ckanext/qa/tests/data/10-p108-data-results-2010-finance-survey-mid-cap-businesses.xls differ diff --git a/ckanext/qa/tests/data/189.iati b/ckanext/qa/tests/data/189.iati new file mode 100644 index 00000000..26767515 --- /dev/null +++ b/ckanext/qa/tests/data/189.iati @@ -0,0 +1,2 @@ +Department for International DevelopmentUNITED KINGDOMDepartment for International DevelopmentGB-1-102580Nile Basin InitiativeIncreased regional cooperation in the management of the Nile waters to deliver sustainable development2013-06-302013-06-302004-03-292003-11-01ImplementationDepartment for International Development+44 (0) 1355 84 3132enquiry@dfid.gov.ukPublic Enquiry Point, Abercrombie House, Eaglesham Road, East Kilbride, Glasgow G75 8EAUntiedPROCOFSERVICES and P0007 for Nile Basin InitiativeMULTILATORGANISATION and P0007 for Nile Basin InitiativeNOTFORPROFITORG and P0007 for Nile Basin InitiativeNile Basin Strategic FundWRM Adviser Secondment to WB Nairobi costsDepartment for International DevelopmentUNITED KINGDOMDepartment for International DevelopmentUniversity, college or other teaching institution, research institute or think-tankNorth of Sahara, regionalBilateralODAProject-type interventionsAid grant excluding debt reorganisationGB-1-102580-101PROCOFSERVICES and P0007 for Nile Basin InitiativeWater sector policy and administrative management2013-06-012013-06-012003-11-012003-11-01ImplementationDepartment for International Development+44 (0) 1355 84 3132enquiry@dfid.gov.ukPublic Enquiry Point, Abercrombie House, Eaglesham Road, East Kilbride, Glasgow G75 8EAUntiedGender EqualityAid to EnvironmentParticipatory Development/Good GovernanceTrade DevelopmentAid Targeting the Objectives of the Convention on Biological DiversityAid Targeting the Objectives of the Framework Convention on Climate Change - MitigationAid Targeting the Objectives of the Framework Convention on Climate Change - AdaptationAid Targeting the Objectives of the Convention to Combat Desertification287329CommitmentTotal Commitment to 01 Jun 201356212DisbursementDepartment for International DevelopmentAggregated spend data from 01/04/2004 to 31/03/200543241DisbursementDepartment for International DevelopmentAggregated spend data from 01/04/2005 to 31/03/20066969DisbursementDepartment for International DevelopmentAggregated spend data from 01/04/2006 to 31/03/200719134DisbursementDepartment for International DevelopmentAggregated spend data from 01/04/2007 to 31/03/2008108406DisbursementDepartment for International DevelopmentAggregated spend data from 01/04/2008 to 31/03/20092000010957623241696919134108406Nile Basin InitiativeMULTILATORGANISATION and P0007 for Nile Basin InitiativeNOTFORPROFITORG and P0007 for Nile Basin InitiativeNile Basin Strategic FundWRM Adviser Secondment to WB Nairobi costsDepartment for International DevelopmentUNITED KINGDOMDepartment for International DevelopmentGB-1-102581Nile Basin Discourse (NBD)To promote and add value to Nile cooperation and development processes2010-03-312010-03-312005-11-012005-11-01Post-completionDepartment for International Development+44 (0) 1355 84 3132enquiry@dfid.gov.ukPublic Enquiry Point, Abercrombie House, Eaglesham Road, East Kilbride, Glasgow G75 8EAUntiedNOTFORPROFITORG and P0007 for Nile Basin Discourse (NBD)Consultancy for Nile Basin Discourse (NBD)Nile Basin Discourse (NBD)Department for International DevelopmentUNITED KINGDOMDepartment for International DevelopmentDonor country-based NGONorth of Sahara, regionalAid through NGOsODAProject-type interventionsAid grant excluding debt reorganisationGB-1-102581-102Consultancy for Nile Basin Discourse (NBD)Democratic participation and civil society2010-03-312010-03-312005-11-012005-11-01Post-completionDepartment for International Development+44 (0) 1355 84 3132enquiry@dfid.gov.ukPublic Enquiry Point, Abercrombie House, Eaglesham Road, East Kilbride, Glasgow G75 8EAUntiedGender EqualityAid to EnvironmentParticipatory Development/Good GovernanceTrade DevelopmentAid Targeting the Objectives of the Convention on Biological DiversityAid Targeting the Objectives of the Framework Convention on Climate Change - MitigationAid Targeting the Objectives of the Framework Convention on Climate Change - AdaptationAid Targeting the Objectives of the Convention to Combat Desertification72646CommitmentTotal Commitment to 31 Mar 201028330DisbursementDepartment for International DevelopmentAggregated spend data from 01/04/2007 to 31/03/200815509DisbursementDepartment for International DevelopmentAggregated spend data from 01/04/2008 to 31/03/200928805DisbursementDepartment for International DevelopmentAggregated spend data from 01/04/2009 to 31/03/2010283301550928805Nile Basin Discourse (NBD)NOTFORPROFITORG and P0007 for Nile Basin Discourse (NBD)Nile Basin Discourse (NBD)Department for International DevelopmentUNITED KINGDOMDepartment for International DevelopmentInternational Union for the Conservation of NatureNorth of Sahara, regionalODACore support to NGOs, other private bodies, PPPs and research institutesAid grant excluding debt reorganisationGB-1-102581-103Nile Basin Discourse (NBD)Democratic participation and civil society2010-03-312010-03-312005-11-012005-11-01Post-completionDepartment for International Development+44 (0) 1355 84 3132enquiry@dfid.gov.ukPublic Enquiry Point, Abercrombie House, Eaglesham Road, East Kilbride, Glasgow G75 8EAUntiedGender EqualityAid to EnvironmentParticipatory Development/Good GovernanceTrade DevelopmentAid Targeting the Objectives of the Convention on Biological DiversityAid Targeting the Objectives of the Framework Convention on Climate Change - MitigationAid Targeting the Objectives of the Framework Convention on Climate Change - AdaptationAid Targeting the Objectives of the Convention to Combat Desertification1763703CommitmentTotal Commitment to 31 Mar 2010856561DisbursementDepartment for International DevelopmentAggregated spend data from 01/04/2007 to 31/03/2008510000DisbursementDepartment for International DevelopmentAggregated spend data from 01/04/2008 to 31/03/2009397142DisbursementDepartment for International DevelopmentAggregated spend data from 01/04/2009 to 31/03/2010856561510000397142Nile Basin Discourse (NBD)NOTFORPROFITORG and P0007 for Nile Basin Discourse (NBD)Consultancy for Nile Basin Discourse (NBD)Department for International DevelopmentUNITED KINGDOMDepartment for International DevelopmentGB-1-202339Libya Humanitarian SituationTo provide assistance for humanitarian needs arising from civil unrest in Libya.2012-12-312012-12-312011-03-082011-03-01ImplementationDepartment for International Development+44 (0) 1355 84 3132enquiry@dfid.gov.ukPublic Enquiry Point, Abercrombie House, Eaglesham Road, East Kilbride, Glasgow G75 8EAUntiedWHO Medical SuppliesDeployment of Humanitarian TeamsProvision of shelter through UNHCR & Libyan Red Crescent on Tunisian border and Ajdabya respectively.ICRC Emergency AppealUNICEF: Misrata Provision of Hygeine Kits, Midwifery kits and Early Childhood Development kitsSecondments to UNHCR Air OperationsInternational Organisation for Migration Repatriation FlightsInternational Medical Corps ( UK) - assistance to Northern LibyaSupport to Mines Advisory GroupDeployment of Humanitarian TeamsICRC Appeal: Second Budget Extension for Libya CrisisUNMAS: Mines Clearance and Risk AwarenessBusiness Case and Summary 202339.docxBudgetConditionsIntended ultimate beneficiariesObjectives / Purpose of activityPre- and post-project impact appraisalLogical framework 202339.xlsResults, outcomes and outputsDepartment for International DevelopmentUNITED KINGDOMDepartment for International DevelopmentWorld Health Organisation - core voluntary contributions accountNorth of Sahara, regionalBilateralODAProject-type interventionsAid grant excluding debt reorganisationGB-1-202339-101WHO Medical SuppliesRelief co-ordination; protection and support services2012-02-292012-02-292011-03-012011-03-01ImplementationDepartment for International Development+44 (0) 1355 84 3132enquiry@dfid.gov.ukPublic Enquiry Point, Abercrombie House, Eaglesham Road, East Kilbride, Glasgow G75 8EAUntiedGender EqualityAid to EnvironmentParticipatory Development/Good GovernanceTrade DevelopmentAid Targeting the Objectives of the Convention on Biological DiversityAid Targeting the Objectives of the Framework Convention on Climate Change - MitigationAid Targeting the Objectives of the Framework Convention on Climate Change - AdaptationAid Targeting the Objectives of the Convention to Combat Desertification400000CommitmentTotal Commitment to 29 Feb 20121439DisbursementDepartment for International DevelopmentCorporate Travel ProviderEmergency / Humanitarian Assistance-1459DisbursementDepartment for International DevelopmentJournal TransactionEmergency / Humanitarian Assistance400000DisbursementDepartment for International DevelopmentWorld Health Organisation - core voluntary contributions accountEmergency / Humanitarian Assistance0400000Libya Humanitarian SituationDeployment of Humanitarian TeamsProvision of shelter through UNHCR & Libyan Red Crescent on Tunisian border and Ajdabya respectively.ICRC Emergency AppealUNICEF: Misrata Provision of Hygeine Kits, Midwifery kits and Early Childhood Development kitsSecondments to UNHCR Air OperationsInternational Organisation for Migration Repatriation FlightsInternational Medical Corps ( UK) - assistance to Northern LibyaSupport to Mines Advisory GroupDeployment of Humanitarian TeamsICRC Appeal: Second Budget Extension for Libya CrisisUNMAS: Mines Clearance and Risk AwarenessDepartment for International DevelopmentUNITED KINGDOMDepartment for International DevelopmentOther.North of Sahara, regionalBilateralODAProject-type interventionsAid grant excluding debt reorganisationGB-1-202339-102Deployment of Humanitarian TeamsMaterial relief assistance and services2012-02-292012-02-292011-03-012011-03-01ImplementationDepartment for International Development+44 (0) 1355 84 3132enquiry@dfid.gov.ukPublic Enquiry Point, Abercrombie House, Eaglesham Road, East Kilbride, Glasgow G75 8EAUntiedGender EqualityAid to EnvironmentParticipatory Development/Good GovernanceTrade DevelopmentAid Targeting the Objectives of the Convention on Biological DiversityAid Targeting the Objectives of the Framework Convention on Climate Change - MitigationAid Targeting the Objectives of the Framework Convention on Climate Change - AdaptationAid Targeting the Objectives of the Convention to Combat Desertification706998CommitmentTotal Commitment to 29 Feb 201270517DisbursementDepartment for International DevelopmentOther.Technical & Advisory services200000DisbursementDepartment for International DevelopmentJournal TransactionEmergency / Humanitarian Assistance-200000DisbursementDepartment for International DevelopmentJournal TransactionEmergency / Humanitarian Assistance58905DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance44601DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance28090DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance137884DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance93188DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance2953DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance35643DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance20697DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance200000DisbursementDepartment for International DevelopmentJournal TransactionEmergency / Humanitarian Assistance-200000DisbursementDepartment for International DevelopmentJournal TransactionEmergency / Humanitarian Assistance8224DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance89301DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance11506DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance39324DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance27746DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance37956DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-37956DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services11099DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance26457DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-26457DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services16911DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance9544DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-9544DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-70517DisbursementDepartment for International DevelopmentStaff MemberEmergency / Humanitarian Assistance9544DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-9544DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services9422DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance13771DisbursementDepartment for International DevelopmentDonor GovernmentTechnical & Advisory services27051736584170639Libya Humanitarian SituationWHO Medical SuppliesProvision of shelter through UNHCR & Libyan Red Crescent on Tunisian border and Ajdabya respectively.ICRC Emergency AppealUNICEF: Misrata Provision of Hygeine Kits, Midwifery kits and Early Childhood Development kitsSecondments to UNHCR Air OperationsInternational Organisation for Migration Repatriation FlightsInternational Medical Corps ( UK) - assistance to Northern LibyaSupport to Mines Advisory GroupDeployment of Humanitarian TeamsICRC Appeal: Second Budget Extension for Libya CrisisUNMAS: Mines Clearance and Risk AwarenessDepartment for International DevelopmentUNITED KINGDOMDepartment for International DevelopmentOther.North of Sahara, regionalBilateralODAProject-type interventionsAid grant excluding debt reorganisationGB-1-202339-103Provision of shelter through UNHCR & Libyan Red Crescent on Tunisian border and Ajdabya respectively.Material relief assistance and services2012-02-292012-02-292011-03-012011-03-01ImplementationDepartment for International Development+44 (0) 1355 84 3132enquiry@dfid.gov.ukPublic Enquiry Point, Abercrombie House, Eaglesham Road, East Kilbride, Glasgow G75 8EAUntiedGender EqualityAid to EnvironmentParticipatory Development/Good GovernanceTrade DevelopmentAid Targeting the Objectives of the Convention on Biological DiversityAid Targeting the Objectives of the Framework Convention on Climate Change - MitigationAid Targeting the Objectives of the Framework Convention on Climate Change - AdaptationAid Targeting the Objectives of the Convention to Combat Desertification1605000CommitmentTotal Commitment to 29 Feb 2012210454DisbursementDepartment for International DevelopmentOther.Technical & Advisory services210270DisbursementDepartment for International DevelopmentOther.Technical & Advisory services420000DisbursementDepartment for International DevelopmentJournal TransactionEmergency / Humanitarian Assistance-420000DisbursementDepartment for International DevelopmentJournal TransactionEmergency / Humanitarian Assistance119050DisbursementDepartment for International DevelopmentOther.Technical & Advisory services119050DisbursementDepartment for International DevelopmentOther.Technical & Advisory services28642DisbursementDepartment for International DevelopmentOther.Technical & Advisory services30992DisbursementDepartment for International DevelopmentOther.Technical & Advisory services119268DisbursementDepartment for International DevelopmentOther.Technical & Advisory services119000DisbursementDepartment for International DevelopmentJournal TransactionEmergency / Humanitarian Assistance-119000DisbursementDepartment for International DevelopmentJournal TransactionEmergency / Humanitarian Assistance460916DisbursementDepartment for International DevelopmentOther.Technical & Advisory services165989DisbursementDepartment for International DevelopmentOther.Technical & Advisory services33591DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-33591DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services16193DisbursementDepartment for International DevelopmentOther.Technical & Advisory services33591DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-33591DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services17397DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-17397DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services40678DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-40678DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services16193DisbursementDepartment for International DevelopmentJournal TransactionAid to international organisations-16193DisbursementDepartment for International DevelopmentJournal TransactionAid to international organisations-27664DisbursementDepartment for International DevelopmentOther.Technical & Advisory services1200DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services16193DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-16193DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-1200DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services16193DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services1200DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-1200DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-16193DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services16193DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-16193DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services1082DisbursementDepartment for International DevelopmentOther.Technical & Advisory services15111DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-15111DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services15111DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-15111DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services15111DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-15111DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services15111DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-15111DisbursementDepartment for International DevelopmentJournal TransactionTechnical & Advisory services840000615000150000Libya Humanitarian SituationWHO Medical SuppliesDeployment of Humanitarian TeamsICRC Emergency AppealUNICEF: Misrata Provision of Hygeine Kits, Midwifery kits and Early Childhood Development kitsSecondments to UNHCR Air OperationsInternational Organisation for Migration Repatriation FlightsInternational Medical Corps ( UK) - assistance to Northern LibyaSupport to Mines Advisory GroupDeployment of Humanitarian TeamsICRC Appeal: Second Budget Extension for Libya CrisisUNMAS: Mines Clearance and Risk AwarenessDepartment for International DevelopmentUNITED KINGDOMDepartment for International DevelopmentInternational Committee of the Red CrossNorth of Sahara, regionalAid through NGOsODAProject-type interventionsAid grant excluding debt reorganisationGB-1-202339-104ICRC Emergency AppealMaterial relief assistance and services2011-09-042011-09-042011-03-042011-03-04ImplementationDepartment for International Development+44 (0) 1355 84 3132enquiry@dfid.gov.ukPublic Enquiry Point, Abercrombie House, Eaglesham Road, East Kilbride, Glasgow G75 8EAUntiedGender EqualityAid to EnvironmentParticipatory Development/Good GovernanceTrade DevelopmentAid Targeting the Objectives of the Convention on Biological DiversityAid Targeting the Objectives of the Framework Convention on Climate Change - MitigationAid Targeting the Objectives of the Framework Convention on Climate Change - AdaptationAid Targeting the Objectives of the Convention to Combat Desertification2000000CommitmentTotal Commitment to 04 Sep 20112000000DisbursementDepartment for International DevelopmentInternational Committee of the Red CrossEmergency / Humanitarian Assistance2000000Libya Humanitarian SituationWHO Medical SuppliesDeployment of Humanitarian TeamsProvision of shelter through UNHCR & Libyan Red Crescent on Tunisian border and Ajdabya respectively.UNICEF: Misrata Provision of Hygeine Kits, Midwifery kits and Early Childhood Development kitsSecondments to UNHCR Air OperationsInternational Organisation for Migration Repatriation FlightsInternational Medical Corps ( UK) - assistance to Northern LibyaSupport to Mines Advisory GroupDeployment of Humanitarian TeamsICRC Appeal: Second Budget Extension for Libya CrisisUNMAS: Mines Clearance and Risk AwarenessDepartment for International DevelopmentUNITED KINGDOMDepartment for International DevelopmentOther.North of Sahara, regionalBilateralODAProject-type interventionsAid grant excluding debt reorganisationGB-1-202339-106Secondments to UNHCR Air OperationsRelief co-ordination; protection and support services2012-09-302012-09-302011-03-042011-03-04ImplementationDepartment for International Development+44 (0) 1355 84 3132enquiry@dfid.gov.ukPublic Enquiry Point, Abercrombie House, Eaglesham Road, East Kilbride, Glasgow G75 8EAUntiedGender EqualityAid to EnvironmentParticipatory Development/Good GovernanceTrade DevelopmentAid Targeting the Objectives of the Convention on Biological DiversityAid Targeting the Objectives of the Framework Convention on Climate Change - MitigationAid Targeting the Objectives of the Framework Convention on Climate Change - AdaptationAid Targeting the Objectives of the Convention to Combat Desertification244950CommitmentTotal Commitment to 30 Sep 201250000DisbursementDepartment for International DevelopmentJournal TransactionEmergency / Humanitarian Assistance-50000DisbursementDepartment for International DevelopmentJournal TransactionEmergency / Humanitarian Assistance17621DisbursementDepartment for International DevelopmentOther.Technical & Advisory services32359DisbursementDepartment for International DevelopmentJournal TransactionEmergency / Humanitarian Assistance-32359DisbursementDepartment for International DevelopmentJournal TransactionEmergency / Humanitarian Assistance16128DisbursementDepartment for International DevelopmentOther.Technical & Advisory services29952DisbursementDepartment for International DevelopmentOther.Technical & Advisory services7364DisbursementDepartment for International DevelopmentOther.Technical & Advisory services33984DisbursementDepartment for International DevelopmentOther.Technical & Advisory services4341DisbursementDepartment for International DevelopmentOther.Technical & Advisory services5000012500069950Libya Humanitarian SituationWHO Medical SuppliesDeployment of Humanitarian TeamsProvision of shelter through UNHCR & Libyan Red Crescent on Tunisian border and Ajdabya respectively.ICRC Emergency AppealUNICEF: Misrata Provision of Hygeine Kits, Midwifery kits and Early Childhood Development kitsInternational Organisation for Migration Repatriation FlightsInternational Medical Corps ( UK) - assistance to Northern LibyaSupport to Mines Advisory GroupDeployment of Humanitarian TeamsICRC Appeal: Second Budget Extension for Libya CrisisUNMAS: Mines Clearance and Risk AwarenessDepartment for International DevelopmentUNITED KINGDOMDepartment for International DevelopmentInternational Organisation for MigrationNorth of Sahara, regionalBilateralODAProject-type interventionsAid grant excluding debt reorganisationGB-1-202339-107International Organisation for Migration Repatriation FlightsMaterial relief assistance and services2011-09-042011-09-042011-03-042011-03-04ImplementationDepartment for International Development+44 (0) 1355 84 3132enquiry@dfid.gov.ukPublic Enquiry Point, Abercrombie House, Eaglesham Road, East Kilbride, Glasgow G75 8EAUntiedGender EqualityAid to EnvironmentParticipatory Development/Good GovernanceTrade DevelopmentAid Targeting the Objectives of the Convention on Biological DiversityAid Targeting the Objectives of the Framework Convention on Climate Change - MitigationAid Targeting the Objectives of the Framework Convention on Climate Change - AdaptationAid Targeting the Objectives of the Convention to Combat Desertification8623654CommitmentTotal Commitment to 04 Sep 201169950DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance75245DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance331850DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance75245DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance136015DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance367347DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance280625DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance50340DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance500000DisbursementDepartment for International DevelopmentInternational Organisation for MigrationEmergency / Humanitarian Assistance167800DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance167800DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance167800DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance48980DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance50340DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance50340DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance50340DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance48980DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance48980DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance50340DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance50340DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance50340DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance48980DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance50340DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance48980DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance48980DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance50340DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance4000000DisbursementDepartment for International DevelopmentInternational Organisation for MigrationEmergency / Humanitarian Assistance10100DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance11935DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance1500000DisbursementDepartment for International DevelopmentInternational Organisation for MigrationEmergency / Humanitarian Assistance15000DisbursementDepartment for International DevelopmentOther.Emergency / Humanitarian Assistance70866171537037Libya Humanitarian SituationWHO Medical SuppliesDeployment of Humanitarian TeamsProvision of shelter through UNHCR & Libyan Red Crescent on Tunisian border and Ajdabya respectively.ICRC Emergency AppealUNICEF: Misrata Provision of Hygeine Kits, Midwifery kits and Early Childhood Development kitsSecondments to UNHCR Air OperationsInternational Medical Corps ( UK) - assistance to Northern LibyaSupport to Mines Advisory GroupDeployment of Humanitarian TeamsICRC Appeal: Second Budget Extension for Libya CrisisUNMAS: Mines Clearance and Risk AwarenessDepartment for International DevelopmentUNITED KINGDOMDepartment for International DevelopmentGB-1-203336Planning and Countries TeamCo-ordinate and oversee the delivery of HMG stabilisation activity in priority countries. +Provide expertise on stabilisation and conflict, sharing lessons to inform HMG policy and practice2012-04-122012-04-03ImplementationDepartment for International Development+44 (0) 1355 84 3132enquiry@dfid.gov.ukPublic Enquiry Point, Abercrombie House, Eaglesham Road, East Kilbride, Glasgow G75 8EAUntiedSub Saharan AfricaAfghanistanMENAPakistanExercisesBusiness Case and Summary 203336.docxBudgetConditionsIntended ultimate beneficiariesObjectives / Purpose of activityPre- and post-project impact appraisalDepartment for International DevelopmentUNITED KINGDOMDepartment for International DevelopmentOther.North of Sahara, regionalBilateralODAProject-type interventionsAid grant excluding debt reorganisationGB-1-203336-103MENACivilian peace-building, conflict prevention and resolution2012-04-032012-04-03ImplementationDepartment for International Development+44 (0) 1355 84 3132enquiry@dfid.gov.ukPublic Enquiry Point, Abercrombie House, Eaglesham Road, East Kilbride, Glasgow G75 8EAUntiedGender EqualityAid to EnvironmentParticipatory Development/Good GovernanceTrade DevelopmentAid Targeting the Objectives of the Convention on Biological DiversityAid Targeting the Objectives of the Framework Convention on Climate Change - MitigationAid Targeting the Objectives of the Framework Convention on Climate Change - AdaptationAid Targeting the Objectives of the Convention to Combat Desertification277355Commitment3334ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services2159ExpenditureDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-2159ExpenditureDepartment for International DevelopmentJournal TransactionTechnical & Advisory services3366ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services516ExpenditureDepartment for International DevelopmentTechnical & Advisory services500ExpenditureDepartment for International DevelopmentTechnical & Advisory services9024ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services2020ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services9024ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services4514ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services2159ExpenditureDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-2159ExpenditureDepartment for International DevelopmentJournal TransactionTechnical & Advisory services666ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services2795ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services577ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services862ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services11562ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services10152ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services2159ExpenditureDepartment for International DevelopmentJournal TransactionTechnical & Advisory services11739ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services-2159ExpenditureDepartment for International DevelopmentJournal TransactionTechnical & Advisory services715ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services2233ExpenditureDepartment for International DevelopmentStaff Business Travel and Subsistence3484ExpenditureDepartment for International DevelopmentJournal TransactionStaff Business Travel and Subsistence2889ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services619ExpenditureDepartment for International DevelopmentStaff Business Travel and Subsistence2889ExpenditureDepartment for International DevelopmentJournal TransactionTechnical & Advisory services2159ExpenditureDepartment for International DevelopmentJournal TransactionTechnical & Advisory services9165ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services-2159ExpenditureDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-2889ExpenditureDepartment for International DevelopmentJournal TransactionTechnical & Advisory services9024ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services7314ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services788ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services7332ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services509ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services3398ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services9024ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services3052ExpenditureDepartment for International DevelopmentOther.Technical & Advisory services2159ExpenditureDepartment for International DevelopmentJournal TransactionTechnical & Advisory services-2159ExpenditureDepartment for International DevelopmentJournal TransactionTechnical & Advisory services277355Planning and Countries TeamSub Saharan AfricaAfghanistanPakistanExercises \ No newline at end of file diff --git a/ckanext/qa/tests/data/1995-HFEA-AR-V1-0.psv b/ckanext/qa/tests/data/1995-HFEA-AR-V1-0.psv new file mode 100644 index 00000000..55d81c1c Binary files /dev/null and b/ckanext/qa/tests/data/1995-HFEA-AR-V1-0.psv differ diff --git a/ckanext/qa/tests/data/20101104_defence_estates.odp b/ckanext/qa/tests/data/20101104_defence_estates.odp new file mode 100644 index 00000000..85de63dc Binary files /dev/null and b/ckanext/qa/tests/data/20101104_defence_estates.odp differ diff --git a/ckanext/qa/tests/data/20101130_narrative_and_payscales.odt b/ckanext/qa/tests/data/20101130_narrative_and_payscales.odt new file mode 100644 index 00000000..74804ae4 Binary files /dev/null and b/ckanext/qa/tests/data/20101130_narrative_and_payscales.odt differ diff --git a/ckanext/qa/tests/data/300911---EH---organogram---ver1.rdf b/ckanext/qa/tests/data/300911---EH---organogram---ver1.rdf new file mode 100644 index 00000000..53ac43c9 --- /dev/null +++ b/ckanext/qa/tests/data/300911---EH---organogram---ver1.rdf @@ -0,0 +1,11835 @@ + + + + helen.french@english-heritage.org.uk + + + + + + + + + + + + + + + + + + + + + + + + English Heritage Organogram at 30/09/2011 Dataset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + English Heritage Junior Post FTEs at 30/09/2011 Dataset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + English Heritage Salary Cost of Reports on 30/09/2011 Dataset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ministry of Justice Total Pay on 30/09/2011 Dataset + + + + + + + + + + + + + + + + + + + + + + + + Government Departments + + + Public Body + + + 2011-09-30 + + + + + + + + + + + + English Heritage + + + + + + + + + + + + English Heritage Junior Civil Service Grades + + + + + + + + + + + + English Heritage Junior Civil Service Grades + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + A Non generic roles (less than 3 in post) () in CHIEF EXECUTIVE'S OFFICE reporting to post 1 FTE at 30/09/2011 + + + + + + Chief Executive's Office + + + + + + + + + Non generic roles (less than 3 in post) + + + + + + + + + A + + + + + + + + + + + + + + + A Payband + + + + + + 38933 + + + 73366 + + + + + + + + + £38933 - £73366 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + B Non generic roles (less than 3 in post) () in CHIEF EXECUTIVE'S OFFICE reporting to post 1 FTE at 30/09/2011 + + + + + + + + + B + + + + + + + + + + + + + + + B Payband + + + + + + 29023 + + + 53872 + + + + + + + + + £29023 - £53872 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in CHIEF EXECUTIVE'S OFFICE reporting to post 1 FTE at 30/09/2011 + + + + + + + + + C + + + + + + + + + + + + + + + C Payband + + + + + + 24764 + + + 44500 + + + + + + + + + £24764 - £44500 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in CHIEF EXECUTIVE'S OFFICE reporting to post 1 FTE at 30/09/2011 + + + Senior Administrative/Clerical + + + + + + + + + D + + + + + + + + + + + + + + + D Payband + + + + + + 17506 + + + 34333 + + + + + + + + + £17506 - £34333 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + A Non generic roles (less than 3 in post) () in HERITAGE PROTECTION AND PLANNING reporting to post 2 FTE at 30/09/2011 + + + + + + Heritage Protection and Planning + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.90 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in HERITAGE PROTECTION AND PLANNING reporting to post 2 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in HERITAGE PROTECTION AND PLANNING reporting to post 2 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in NATIONAL ADVICE AND INFORMATION reporting to post 3 FTE at 30/09/2011 + + + + + + National Advice and Information + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + Band 3 Historic Properties Director () in NATIONAL COLLECTIONS reporting to post 4 FTE at 30/09/2011 + + + + + + National Collections + + + + + + + + + Historic Properties Director + + + + + + + + + Band 3 + + + + + + + + + + + + + + + Band 3 Payband + + + + + + 42200 + + + 75900 + + + + + + + + + £42200 - £75900 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + A Non generic roles (less than 3 in post) () in NATIONAL COLLECTIONS reporting to post 4 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 4.70 + + + + + + + + + + + + + + + + + + B Finance Manager () in NATIONAL COLLECTIONS reporting to post 4 FTE at 30/09/2011 + + + Finance Manager + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in NATIONAL COLLECTIONS reporting to post 4 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in NATIONAL COLLECTIONS reporting to post 4 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + Band 3 Non generic roles (less than 3 in post) () in RESOURCES reporting to post 5 FTE at 30/09/2011 + + + + + + Resources + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + B Non generic roles (less than 3 in post) () in RESOURCES reporting to post 5 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in RESOURCES reporting to post 5 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in RESOURCES reporting to post 5 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 4.10 + + + + + + + + + + + + + + + + + + A Senior Manager - Designation () in HERITAGE PROTECTION AND PLANNING reporting to post 6 FTE at 30/09/2011 + + + Senior Manager - Designation + + + + + + + + + + + + + + + + + + + + + 28.80 + + + + + + + + + + + + + + + + + + B Heritage Technical Expert () in HERITAGE PROTECTION AND PLANNING reporting to post 6 FTE at 30/09/2011 + + + Heritage Technical Expert + + + + + + + + + + + + + + + + + + + + + 4.00 + + + + + + + + + + + + + + + + + + B Non generic roles (less than 3 in post) () in HERITAGE PROTECTION AND PLANNING reporting to post 6 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 4.00 + + + + + + + + + + + + + + + + + + B Project Manager () in HERITAGE PROTECTION AND PLANNING reporting to post 6 FTE at 30/09/2011 + + + Project Manager + + + + + + + + + + + + + + + + + + + + + 4.60 + + + + + + + + + + + + + + + + + + C Data Coordinator () in HERITAGE PROTECTION AND PLANNING reporting to post 6 FTE at 30/09/2011 + + + Data Coordinator + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + C Data Standards Supervisor () in HERITAGE PROTECTION AND PLANNING reporting to post 6 FTE at 30/09/2011 + + + Data Standards Supervisor + + + + + + + + + + + + + + + + + + + + + 12.90 + + + + + + + + + + + + + + + + + + C Heritage Technical Expert () in HERITAGE PROTECTION AND PLANNING reporting to post 6 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in HERITAGE PROTECTION AND PLANNING reporting to post 6 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + C Project Manager () in HERITAGE PROTECTION AND PLANNING reporting to post 6 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + C Senior Administrative/Clerical () in HERITAGE PROTECTION AND PLANNING reporting to post 6 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 0.80 + + + + + + + + + + + + + + + + + + D Administrative/Clerical () in HERITAGE PROTECTION AND PLANNING reporting to post 6 FTE at 30/09/2011 + + + Administrative/Clerical + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + D Heritage Technical Expert () in HERITAGE PROTECTION AND PLANNING reporting to post 6 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + D Non generic roles (less than 3 in post) () in HERITAGE PROTECTION AND PLANNING reporting to post 6 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 23.90 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in HERITAGE PROTECTION AND PLANNING reporting to post 6 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 18.00 + + + + + + + + + + + + + + + + + + A Senior Manager/Specialist - Heritage Protection () in HERITAGE PROTECTION AND PLANNING reporting to post 7 FTE at 30/09/2011 + + + Senior Manager/Specialist - Heritage Protection + + + + + + + + + + + + + + + + + + + + + 57.70 + + + + + + + + + + + + + + + + + + B Heritage Technical Expert () in HERITAGE PROTECTION AND PLANNING reporting to post 7 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + B Non generic roles (less than 3 in post) () in HERITAGE PROTECTION AND PLANNING reporting to post 7 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 19.40 + + + + + + + + + + + + + + + + + + C Heritage Investigator () in HERITAGE PROTECTION AND PLANNING reporting to post 7 FTE at 30/09/2011 + + + Heritage Investigator + + + + + + + + + + + + + + + + + + + + + 43.20 + + + + + + + + + + + + + + + + + + C Heritage Technical Expert () in HERITAGE PROTECTION AND PLANNING reporting to post 7 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 4.60 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in HERITAGE PROTECTION AND PLANNING reporting to post 7 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 4.10 + + + + + + + + + + + + + + + + + + C Project Manager () in HERITAGE PROTECTION AND PLANNING reporting to post 7 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 4.80 + + + + + + + + + + + + + + + + + + D Research Officer () in HERITAGE PROTECTION AND PLANNING reporting to post 7 FTE at 30/09/2011 + + + Research Officer + + + + + + + + + + + + + + + + + + + + + 7.00 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in HERITAGE PROTECTION AND PLANNING reporting to post 7 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 6.80 + + + + + + + + + + + + + + + + + + E Administrative/Clerical () in HERITAGE PROTECTION AND PLANNING reporting to post 7 FTE at 30/09/2011 + + + + + + + + + E + + + + + + + + + + + + + + + E Payband + + + + + + 15567 + + + 21848 + + + + + + + + + £15567 - £21848 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + F General Office Support () in HERITAGE PROTECTION AND PLANNING reporting to post 7 FTE at 30/09/2011 + + + General Office Support + + + + + + + + + F + + + + + + + + + + + + + + + F Payband + + + + + + 12454 + + + 18207 + + + + + + + + + £12454 - £18207 + + + + + + + + + + + + + + + + + + + + + 9.00 + + + + + + + + + + + + + + + + + + Band 3 Planning Director () in HERITAGE PROTECTION AND PLANNING reporting to post 8 FTE at 30/09/2011 + + + Planning Director + + + + + + + + + + + + + + + + + + + + + 3.80 + + + + + + + + + + + + + + + + + + A Senior Manager/Specialist - National Planning () in HERITAGE PROTECTION AND PLANNING reporting to post 8 FTE at 30/09/2011 + + + Senior Manager/Specialist - National Planning + + + + + + + + + + + + + + + + + + + + + 7.00 + + + + + + + + + + + + + + + + + + B Casework Team Leader () in HERITAGE PROTECTION AND PLANNING reporting to post 8 FTE at 30/09/2011 + + + Casework Team Leader + + + + + + + + + + + + + + + + + + + + + 135.70 + + + + + + + + + + + + + + + + + + B Heritage Technical Expert () in HERITAGE PROTECTION AND PLANNING reporting to post 8 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + B Non generic roles (less than 3 in post) () in HERITAGE PROTECTION AND PLANNING reporting to post 8 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 7.40 + + + + + + + + + + + + + + + + + + B Project Manager () in HERITAGE PROTECTION AND PLANNING reporting to post 8 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 11.60 + + + + + + + + + + + + + + + + + + C Business Manager () in HERITAGE PROTECTION AND PLANNING reporting to post 8 FTE at 30/09/2011 + + + Business Manager + + + + + + + + + + + + + + + + + + + + + 14.50 + + + + + + + + + + + + + + + + + + C Heritage Technical Expert () in HERITAGE PROTECTION AND PLANNING reporting to post 8 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 7.60 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in HERITAGE PROTECTION AND PLANNING reporting to post 8 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 24.30 + + + + + + + + + + + + + + + + + + D Casework Officer () in HERITAGE PROTECTION AND PLANNING reporting to post 8 FTE at 30/09/2011 + + + Casework Officer + + + + + + + + + + + + + + + + + + + + + 12.70 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in HERITAGE PROTECTION AND PLANNING reporting to post 8 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + D Trainee Heritage Advisor () in HERITAGE PROTECTION AND PLANNING reporting to post 8 FTE at 30/09/2011 + + + Trainee Heritage Advisor + + + + + + + + + + + + + + + + + + + + + 13.90 + + + + + + + + + + + + + + + + + + E Administrative/Clerical () in HERITAGE PROTECTION AND PLANNING reporting to post 8 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 12.50 + + + + + + + + + + + + + + + + + + E Casework Assistant () in HERITAGE PROTECTION AND PLANNING reporting to post 8 FTE at 30/09/2011 + + + Casework Assistant + + + + + + + + + + + + + + + + + + + + + 14.00 + + + + + + + + + + + + + + + + + + F General Office Support () in HERITAGE PROTECTION AND PLANNING reporting to post 8 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + A Senior Manager - Communications () in NATIONAL ADVICE AND INFORMATION reporting to post 9 FTE at 30/09/2011 + + + Senior Manager - Communications + + + + + + + + + + + + + + + + + + + + + 1.60 + + + + + + + + + + + + + + + + + + B Non generic roles (less than 3 in post) () in NATIONAL ADVICE AND INFORMATION reporting to post 9 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.60 + + + + + + + + + + + + + + + + + + B Senior Communications Manager () in NATIONAL ADVICE AND INFORMATION reporting to post 9 FTE at 30/09/2011 + + + Senior Communications Manager + + + + + + + + + + + + + + + + + + + + + 2.20 + + + + + + + + + + + + + + + + + + B Web Manager () in NATIONAL ADVICE AND INFORMATION reporting to post 9 FTE at 30/09/2011 + + + Web Manager + + + + + + + + + + + + + + + + + + + + + 2.90 + + + + + + + + + + + + + + + + + + C Communications Manager () in NATIONAL ADVICE AND INFORMATION reporting to post 9 FTE at 30/09/2011 + + + Communications Manager + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + C Web Designer/Developer () in NATIONAL ADVICE AND INFORMATION reporting to post 9 FTE at 30/09/2011 + + + Web Designer/Developer + + + + + + + + + + + + + + + + + + + + + 4.00 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in NATIONAL ADVICE AND INFORMATION reporting to post 9 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + D Web Design Assistant/Editor () in NATIONAL ADVICE AND INFORMATION reporting to post 9 FTE at 30/09/2011 + + + Web Design Assistant/Editor + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + E Administrative/Clerical () in NATIONAL ADVICE AND INFORMATION reporting to post 9 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + E Administrative/Clerical () in NATIONAL ADVICE AND INFORMATION reporting to post 10 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 4.30 + + + + + + + + + + + + + + + + + + A Legal Advisor () in NATIONAL ADVICE AND INFORMATION reporting to post 11 FTE at 30/09/2011 + + + Legal Advisor + + + + + + + + + + + + + + + + + + + + + 0.60 + + + + + + + + + + + + + + + + + + A Non generic roles (less than 3 in post) () in NATIONAL ADVICE AND INFORMATION reporting to post 11 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.60 + + + + + + + + + + + + + + + + + + B Non generic roles (less than 3 in post) () in NATIONAL ADVICE AND INFORMATION reporting to post 11 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in NATIONAL ADVICE AND INFORMATION reporting to post 11 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 4.00 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in NATIONAL ADVICE AND INFORMATION reporting to post 11 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 5.40 + + + + + + + + + + + + + + + + + + A Senior Manager - Government Advice () in NATIONAL ADVICE AND INFORMATION reporting to post 12 FTE at 30/09/2011 + + + Senior Manager - Government Advice + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + B Non generic roles (less than 3 in post) () in NATIONAL ADVICE AND INFORMATION reporting to post 12 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 5.40 + + + + + + + + + + + + + + + + + + B Senior Policy Officer () in NATIONAL ADVICE AND INFORMATION reporting to post 12 FTE at 30/09/2011 + + + Senior Policy Officer + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + C Policy Officer () in NATIONAL ADVICE AND INFORMATION reporting to post 12 FTE at 30/09/2011 + + + Policy Officer + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in NATIONAL ADVICE AND INFORMATION reporting to post 12 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + E Administrative/Clerical () in NATIONAL ADVICE AND INFORMATION reporting to post 12 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 12.00 + + + + + + + + + + + + + + + + + + A Senior Manager - Conservation () in NATIONAL COLLECTIONS reporting to post 13 FTE at 30/09/2011 + + + Senior Manager - Conservation + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + B Health & Safety Advisor () in NATIONAL COLLECTIONS reporting to post 13 FTE at 30/09/2011 + + + Health & Safety Advisor + + + + + + + + + + + + + + + + + + + + + 11.00 + + + + + + + + + + + + + + + + + + B Heritage Technical Expert () in NATIONAL COLLECTIONS reporting to post 13 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + B Non generic roles (less than 3 in post) () in NATIONAL COLLECTIONS reporting to post 13 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 10.00 + + + + + + + + + + + + + + + + + + B Project Manager () in NATIONAL COLLECTIONS reporting to post 13 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + B Property Maintenance Manager () in NATIONAL COLLECTIONS reporting to post 13 FTE at 30/09/2011 + + + Property Maintenance Manager + + + + + + + + + + + + + + + + + + + + + 5.55 + + + + + + + + + + + + + + + + + + B Senior Conservator () in NATIONAL COLLECTIONS reporting to post 13 FTE at 30/09/2011 + + + Senior Conservator + + + + + + + + + + + + + + + + + + + + + 6.00 + + + + + + + + + + + + + + + + + + B Surveyer () in NATIONAL COLLECTIONS reporting to post 13 FTE at 30/09/2011 + + + Surveyer + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + C Health & Safety Coordinator () in NATIONAL COLLECTIONS reporting to post 13 FTE at 30/09/2011 + + + Health & Safety Coordinator + + + + + + + + + + + + + + + + + + + + + 27.00 + + + + + + + + + + + + + + + + + + C Heritage Technical Expert () in NATIONAL COLLECTIONS reporting to post 13 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 7.00 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in NATIONAL COLLECTIONS reporting to post 13 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + D Non generic roles (less than 3 in post) () in NATIONAL COLLECTIONS reporting to post 13 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 6.80 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in NATIONAL COLLECTIONS reporting to post 13 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 9.60 + + + + + + + + + + + + + + + + + + E Administrative/Clerical () in NATIONAL COLLECTIONS reporting to post 13 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 7.90 + + + + + + + + + + + + + + + + + + A Senior Manager - Curatorial () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Senior Manager - Curatorial + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + B Curatorial Manager () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Curatorial Manager + + + + + + + + + + + + + + + + + + + + + 9.60 + + + + + + + + + + + + + + + + + + B Education Manager () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Education Manager + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + B Heritage Technical Expert () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 7.00 + + + + + + + + + + + + + + + + + + B Non generic roles (less than 3 in post) () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + B Senior Conservator () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 15.20 + + + + + + + + + + + + + + + + + + B Senior Curator () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Senior Curator + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + C Archive Officer () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Archive Officer + + + + + + + + + + + + + + + + + + + + + 11.60 + + + + + + + + + + + + + + + + + + C Conservator () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Conservator + + + + + + + + + + + + + + + + + + + + + 14.00 + + + + + + + + + + + + + + + + + + C Curator () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Curator + + + + + + + + + + + + + + + + + + + + + 4.80 + + + + + + + + + + + + + + + + + + C Curatorial Team Leader () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Curatorial Team Leader + + + + + + + + + + + + + + + + + + + + + 2.40 + + + + + + + + + + + + + + + + + + C Guidebook Editor () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Guidebook Editor + + + + + + + + + + + + + + + + + + + + + 4.00 + + + + + + + + + + + + + + + + + + C Heritage Technical Expert () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 8.40 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 10.40 + + + + + + + + + + + + + + + + + + D Cataloguer () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Cataloguer + + + + + + + + + + + + + + + + + + + + + 21.00 + + + + + + + + + + + + + + + + + + D Curatorial Officer () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Curatorial Officer + + + + + + + + + + + + + + + + + + + + + 8.20 + + + + + + + + + + + + + + + + + + D Education Liaison Officer () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Education Liaison Officer + + + + + + + + + + + + + + + + + + + + + 1.30 + + + + + + + + + + + + + + + + + + D Non generic roles (less than 3 in post) () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 5.00 + + + + + + + + + + + + + + + + + + D Photographer () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Photographer + + + + + + + + + + + + + + + + + + + + + 4.60 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + E Administrative/Clerical () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 8.00 + + + + + + + + + + + + + + + + + + E Archive Support Officer () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Archive Support Officer + + + + + + + + + + + + + + + + + + + + + 6.90 + + + + + + + + + + + + + + + + + + E Collections Assistant () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Collections Assistant + + + + + + + + + + + + + + + + + + + + + 4.00 + + + + + + + + + + + + + + + + + + E Conservation Assistant () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Conservation Assistant + + + + + + + + + + + + + + + + + + + + + 8.00 + + + + + + + + + + + + + + + + + + E Image and Data Capture Assistant () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + Image and Data Capture Assistant + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + F General Office Support () in NATIONAL COLLECTIONS reporting to post 14 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + A Senior Manager - Development () in NATIONAL COLLECTIONS reporting to post 15 FTE at 30/09/2011 + + + Senior Manager - Development + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + B Development Manager () in NATIONAL COLLECTIONS reporting to post 15 FTE at 30/09/2011 + + + Development Manager + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in NATIONAL COLLECTIONS reporting to post 15 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 4.00 + + + + + + + + + + + + + + + + + + E Administrative/Clerical () in NATIONAL COLLECTIONS reporting to post 15 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + B Non generic roles (less than 3 in post) () in NATIONAL COLLECTIONS reporting to post 16 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 9.10 + + + + + + + + + + + + + + + + + + B Sales & Marketing Manager () in NATIONAL COLLECTIONS reporting to post 16 FTE at 30/09/2011 + + + Sales & Marketing Manager + + + + + + + + + + + + + + + + + + + + + 5.25 + + + + + + + + + + + + + + + + + + C Marketing Executive () in NATIONAL COLLECTIONS reporting to post 16 FTE at 30/09/2011 + + + Marketing Executive + + + + + + + + + + + + + + + + + + + + + 2.60 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in NATIONAL COLLECTIONS reporting to post 16 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 4.00 + + + + + + + + + + + + + + + + + + C Sales Executive () in NATIONAL COLLECTIONS reporting to post 16 FTE at 30/09/2011 + + + Sales Executive + + + + + + + + + + + + + + + + + + + + + 6.00 + + + + + + + + + + + + + + + + + + D Marketing Assistant () in NATIONAL COLLECTIONS reporting to post 16 FTE at 30/09/2011 + + + Marketing Assistant + + + + + + + + + + + + + + + + + + + + + 4.00 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in NATIONAL COLLECTIONS reporting to post 16 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 15.85 + + + + + + + + + + + + + + + + + + E Administrative/Clerical () in NATIONAL COLLECTIONS reporting to post 16 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 6.10 + + + + + + + + + + + + + + + + + + E Marketing Assistant () in NATIONAL COLLECTIONS reporting to post 16 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 23.40 + + + + + + + + + + + + + + + + + + F Sales Team Member () in NATIONAL COLLECTIONS reporting to post 16 FTE at 30/09/2011 + + + Sales Team Member + + + + + + + + + + + + + + + + + + + + + 4.00 + + + + + + + + + + + + + + + + + + Band 3 Historic Properties Director () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + A Senior Manager - Properties () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + Senior Manager - Properties + + + + + + + + + + + + + + + + + + + + + 5.30 + + + + + + + + + + + + + + + + + + B Surveyer () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + C Events Manager () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + Events Manager + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 9.00 + + + + + + + + + + + + + + + + + + D Estates Office Manager () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + Estates Office Manager + + + + + + + + + + + + + + + + + + + + + 10.00 + + + + + + + + + + + + + + + + + + D Head Gardener () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + Head Gardener + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 13.00 + + + + + + + + + + + + + + + + + + E Administrative/Clerical () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 14.50 + + + + + + + + + + + + + + + + + + E Senior Gardener () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + Senior Gardener + + + + + + + + + + + + + + + + + + + + + 18.60 + + + + + + + + + + + + + + + + + + F Gardener () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + Gardener + + + + + + + + + + + + + + + + + + + + + 8.60 + + + + + + + + + + + + + + + + + + F General Office Support () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + F Sales Team Member () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 17.00 + + + + + + + + + + + + + + + + + + HVO Historic Properties Head () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + Historic Properties Head + + + + + + + + + HVO + + + + + + + + + + + + + + + HVO Payband + + + + + + 27675 + + + 40420 + + + + + + + + + £27675 - £40420 + + + + + + + + + + + + + + + + + + + + + 30.40 + + + + + + + + + + + + + + + + + + VOM Historic Properties Manager () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + Historic Properties Manager + + + + + + + + + VOM + + + + + + + + + + + + + + + VOM Payband + + + + + + 18041 + + + 29755 + + + + + + + + + £18041 - £29755 + + + + + + + + + + + + + + + + + + + + + 9.30 + + + + + + + + + + + + + + + + + + VOS Catering Supervisor () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + Catering Supervisor + + + + + + + + + VOS + + + + + + + + + + + + + + + VOS Payband + + + + + + 14087 + + + 22722 + + + + + + + + + £14087 - £22722 + + + + + + + + + + + + + + + + + + + + + 143.10 + + + + + + + + + + + + + + + + + + VOS Historic Properties Site Supervisor () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + Historic Properties Site Supervisor + + + + + + + + + + + + + + + + + + + + + 450.10 + + + + + + + + + + + + + + + + + + VOTM Historic Properties Steward () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + Historic Properties Steward + + + + + + + + + VOTM + + + + + + + + + + + + + + + VOTM Payband + + + + + + 12802 + + + 17637 + + + + + + + + + £12802 - £17637 + + + + + + + + + + + + + + + + + + + + + 11.40 + + + + + + + + + + + + + + + + + + AUX Gardener () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + + + + + + + AUX + + + + + + + + + + + + + + + AUX Payband + + + + + + 11381 + + + 11381 + + + + + + + + + £11381 - £11381 + + + + + + + + + + + + + + + + + + + + + 53.00 + + + + + + + + + + + + + + + + + + CTV Catering Assistant () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + Catering Assistant + + + + + + + + + CTV + + + + + + + + + + + + + + + CTV Payband + + + + + + 11382 + + + 14895 + + + + + + + + + £11382 - £14895 + + + + + + + + + + + + + + + + + + + + + 7.21 + + + + + + + + + + + + + + + + + + HKV Housekeeper () in NATIONAL COLLECTIONS reporting to post 17 FTE at 30/09/2011 + + + Housekeeper + + + + + + + + + HKV + + + + + + + + + + + + + + + HKV Payband + + + + + + 11700 + + + 15315 + + + + + + + + + £11700 - £15315 + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + A Senior Manager - Finance () in RESOURCES reporting to post 19 FTE at 30/09/2011 + + + Senior Manager - Finance + + + + + + + + + + + + + + + + + + + + + 3.60 + + + + + + + + + + + + + + + + + + B Accountant () in RESOURCES reporting to post 19 FTE at 30/09/2011 + + + Accountant + + + + + + + + + + + + + + + + + + + + + 3.80 + + + + + + + + + + + + + + + + + + B Finance Manager () in RESOURCES reporting to post 19 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + B Non generic roles (less than 3 in post) () in RESOURCES reporting to post 19 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.60 + + + + + + + + + + + + + + + + + + C Assistant Accountant () in RESOURCES reporting to post 19 FTE at 30/09/2011 + + + Assistant Accountant + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + C Finance Manager () in RESOURCES reporting to post 19 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in RESOURCES reporting to post 19 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 5.00 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in RESOURCES reporting to post 19 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 17.10 + + + + + + + + + + + + + + + + + + E Administrative/Clerical () in RESOURCES reporting to post 19 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.60 + + + + + + + + + + + + + + + + + + A Senior Manager - HR () in RESOURCES reporting to post 20 FTE at 30/09/2011 + + + Senior Manager - HR + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + B Facilities and Office Services Manager () in RESOURCES reporting to post 20 FTE at 30/09/2011 + + + Facilities and Office Services Manager + + + + + + + + + + + + + + + + + + + + + 10.10 + + + + + + + + + + + + + + + + + + B HR Manager () in RESOURCES reporting to post 20 FTE at 30/09/2011 + + + HR Manager + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + B Non generic roles (less than 3 in post) () in RESOURCES reporting to post 20 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.90 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in RESOURCES reporting to post 20 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + C Office Services Manager () in RESOURCES reporting to post 20 FTE at 30/09/2011 + + + Office Services Manager + + + + + + + + + + + + + + + + + + + + + 8.70 + + + + + + + + + + + + + + + + + + D HR Advisor () in RESOURCES reporting to post 20 FTE at 30/09/2011 + + + HR Advisor + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + D Non generic roles (less than 3 in post) () in RESOURCES reporting to post 20 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 5.00 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in RESOURCES reporting to post 20 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 7.00 + + + + + + + + + + + + + + + + + + E Administrative/Clerical () in RESOURCES reporting to post 20 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + F General Office Support () in RESOURCES reporting to post 20 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 5.00 + + + + + + + + + + + + + + + + + + A Senior Manager - Information Management/Technology () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + Senior Manager - Information Management/Technology + + + + + + + + + + + + + + + + + + + + + 7.60 + + + + + + + + + + + + + + + + + + B Information Management/Technology Manager () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + Information Management/Technology Manager + + + + + + + + + + + + + + + + + + + + + 6.00 + + + + + + + + + + + + + + + + + + B IT Project Manager () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + IT Project Manager + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + B Non generic roles (less than 3 in post) () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.80 + + + + + + + + + + + + + + + + + + B Systems Developer Team Leader () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + Systems Developer Team Leader + + + + + + + + + + + + + + + + + + + + + 5.00 + + + + + + + + + + + + + + + + + + C IT Service Manager () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + IT Service Manager + + + + + + + + + + + + + + + + + + + + + 7.00 + + + + + + + + + + + + + + + + + + C Non generic roles (less than 3 in post) () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 18.00 + + + + + + + + + + + + + + + + + + C Software Developer () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + Software Developer + + + + + + + + + + + + + + + + + + + + + 4.00 + + + + + + + + + + + + + + + + + + C Systems Support () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + Systems Support + + + + + + + + + + + + + + + + + + + + + 7.30 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 4.50 + + + + + + + + + + + + + + + + + + E Administrative/Clerical () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + A Senior Manager - Properties () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 1.00 + + + + + + + + + + + + + + + + + + B Non generic roles (less than 3 in post) () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 3.00 + + + + + + + + + + + + + + + + + + B Retail Manager () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + Retail Manager + + + + + + + + + + + + + + + + + + + + + 6.00 + + + + + + + + + + + + + + + + + + C Buyer () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + Buyer + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + C Catering Manager () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + Catering Manager + + + + + + + + + + + + + + + + + + + + + 2.80 + + + + + + + + + + + + + + + + + + C Events Manager () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 2.00 + + + + + + + + + + + + + + + + + + D Assistant Retail Manager () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + Assistant Retail Manager + + + + + + + + + + + + + + + + + + + + + 4.00 + + + + + + + + + + + + + + + + + + D Senior Administrative/Clerical () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + + + + + + + + + + + + + + + + + + + 3.30 + + + + + + + + + + + + + + + + + + E Administrative/Clerical () in RESOURCES reporting to post 21 FTE at 30/09/2011 + + + + + + + + + helen.french@english-heritage.org.uk + + + + + + + + + + + + + + + + + + + + + + + + English Heritage Organogram at 30/09/2011 Dataset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + helen.french@english-heritage.org.uk + + + + + + + + + + + + English Heritage Junior Post FTEs at 30/09/2011 Dataset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + English Heritage Salary Cost of Reports on 30/09/2011 Dataset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ministry of Justice Total Pay on 30/09/2011 Dataset + + + + + + + + + + + + + + + + + + + + + + + + Government Departments + + + Public Body + + + + + + + + + + + + English Heritage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band CE equates approximately to SCS3 + + + Chief Executive with overall responsibility for running English Heritage on a day to day basis in conjunction with the other members of the Executive Board. + + + Chief Executive + + + 1 + + + + + + + + + + + + + + + + + + Dr Simon Thurley + + + + + + + + + + + + + + + chief.executive@english-heritage.org.uk + + + SCS3 + + + + + + 0207 973 3334 + + + + + + + + + + + + Chief Executive's Office + + + + + + + + + + + + + + + + + + 228553 + + + Chief Executive Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + Dr Simon Thurley as Chief Executive + + + + + + 135000 + + + 139999 + + + + + + + + + £135000 - £139999 + + + + + + + + + + + + + + + Dr Simon Thurley as Chief Executive Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 1 equates approximately to SCS2 + + + The head of Heritage Protection and Planning, reporting to the Chief Executive. Responsible for heritage protection, advising on making and managing changes to historic properties and publishing the annual Properties st Risk Register. + + + Director of Heritage Protection and Planning + + + 2 + + + + + + + + + + + + + + + + + + + + + Dr Edward Impey + + + + + + + + + + + + + + + Edward.Impey@english-heritage.org.uk + + + SCS2 + + + + + + 01793 414952 + + + + + + + + + + + + Heritage Protection and Planning + + + + + + + + + + + + + + + + + + 349615 + + + Director of Heritage Protection and Planning Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + Dr Edward Impey as Director of Heritage Protection and Planning + + + + + + 110000 + + + 114999 + + + + + + + + + £110000 - £114999 + + + + + + + + + + + + + + + Dr Edward Impey as Director of Heritage Protection and Planning Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 1 equates approximately to SCS2 + + + The head of The National Advice and Information Group reporting to the Chief Executive. Responsible for advising government and other bodies of the value of our historic environment. Includes national advice, communications, legal services and corpororate governance. + + + Director of National Advice and Information + + + 3 + + + + + + + + + + + + + + + + + + + + + Deborah Lamb + + + + + + + + + + + + + + + Deborah.Lamb@english-heritage.org.uk + + + + + + 0207 973 3852 + + + + + + + + + + + + National Advice and Information + + + + + + + + + + + + + + + + + + 327088 + + + Director of National Advice and Information Salary Cost of Reports on 30/09/2011 + + + + + + 0.95 + + + + + + + + + + + + + + + Deborah Lamb as Director of National Advice and Information + + + + + + 105000 + + + 109999 + + + + + + + + + £105000 - £109999 + + + + + + + + + + + + + + + Deborah Lamb as Director of National Advice and Information Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 1 equates approximately to SCS2 + + + The head of the National Collections Group, reporting to the Chief Executive. Responsible for all the national heritage collections which are looked after by English Heritage, including over 400 historic properties and monuments and the National Monuments Record. + + + Director of National Collections + + + 4 + + + + + + + + + + + + + + + + + + + + + Mark Pemberton + + + + + + + + + + + + + + + Mark.Pemberton@english-heritage.org.uk + + + + + + 0207 973 3468 + + + + + + + + + + + + National Collections + + + + + + + + + + + + + + + + + + 853180 + + + Director of National Collections Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + Mark Pemberton as Director of National Collections + + + + + + 120000 + + + 124999 + + + + + + + + + £120000 - £124999 + + + + + + + + + + + + + + + Mark Pemberton as Director of National Collections Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 1 equates approximately to SCS2 + + + The head of The Resources Group, reporting to the Chief Executive. Responsible for providing a range of services to the organisation including finance and procurement, human resources and information management and technology. + + + Director of Resources + + + 5 + + + + + + + + + + + + + + + + + + + + + Keith Harrison + + + + + + + + + + + + + + + Keith.Harrison@english-heritage.org.uk + + + + + + 01793 414028 + + + + + + + + + + + + Resources + + + + + + + + + + + + + + + + + + 394316 + + + Director of Resources Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + Keith Harrison as Director of Resources + + + + + + + + + + + + + + + Keith Harrison as Director of Resources Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + The head of the Designation Department responsible for deploying designation as a means of protection on accordance with the National Heritage Protection Plan, ensuring EH's statutory role is fulfilled and to maintain the national historic environment datasets. + + + Designation Director + + + 6 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + + + + N/D + + + + + + 01793 414700 + + + + + + + + + + + + + + + + + + 3049518 + + + Designation Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as Designation Director + + + + + + + + + + + + + + + N/D as Designation Director Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + Head of the Heritage Protection Department, responsible for managing the development, central co-ordination of and reporting on the National Heritage Protection Plan on behalf of EH and the sector and developing sector-wide participation in its implementation. + + + Heritage Protection Director + + + 7 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + 020 7973 3000 + + + + + + + + + + + + + + + + + + 5916577 + + + Heritage Protection Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as Heritage Protection Director + + + + + + + + + + + + + + + N/D as Heritage Protection Director Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + The head of the National Planning Department, responsible for providing expert input and advice in support of the National Heritage Protection Plan, to manage the EH Grant Programme and to build and maintain links with Local Authorities and other key stakeholders and organisations. + + + National Planning Director + + + 8 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + + + + + + + + + + 9503221 + + + National Planning Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as National Planning Director + + + + + + + + + + + + + + + N/D as National Planning Director Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + The head of Communications responsible for ensuring that the sector, public and professional audiences are able to benefit directly from EH knowledge and expertise + + + Communications Director + + + 9 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + + + + + + + + + + 699207 + + + Communications Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as Communications Director + + + + + + + + + + + + + + + N/D as Communications Director Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + Responsible for providing professional advice on property development, investment and valuations and for interfacing with the wider property industry to promote a greater understanding of how to manage change within the historic environment. + + + Development Economics Director + + + 10 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + + + + + + + + + + Development Economics Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as Development Economics Director + + + + + + + + + + + + + + + N/D as Development Economics Director Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + The head of the Governance and Legal Department, responsible for EH's corporate governance and leading the provision of a range of qualified legal advice to EH. + + + Governance and Legal Director + + + 11 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + + + + + + + + + + 465367 + + + Governance and Legal Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as Governance and Legal Director + + + + + + + + + + + + + + + N/D as Governance and Legal Director Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + the head of the Government Advice Team responsible for providing advice to the government on historic environment policy matters in support of the government's heritage agenda. + + + Government Advice Director + + + 12 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + + + + + + + + + + 673422 + + + Government Advice Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as Government Advice Director + + + + + + + + + + + + + + + N/D as Government Advice Director Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + The head of the Conservation Department responsible to the provision of a range of specialist expert conservation advice and guidance both for the heritage sector and in respect of the care and conservation of EH's 400 properties and sites. + + + Conservation Director + + + 13 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + + + + + + + + + + 3729494 + + + Conservation Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as Conservation Director + + + + + + + + + + + + + + + N/D as Conservation Director Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + The head of the Curatorial Department, responsible for the stewardship and presentation of EH's properties and collections, for the National Monuments Record and education strategy. + + + Curatorial Director + + + 14 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + + + + + + + + + + 4924581 + + + Curatorial Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as Curatorial Director + + + + + + + + + + + + + + + N/D as Curatorial Director Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + The head of the Development Department responsible for all fund raising strategies and activities in support of the properties and sites in EH's care. + + + Development Director + + + 15 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + + + + + + + + + + 298417 + + + Development Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as Development Director + + + + + + + + + + + + + + + N/D as Development Director Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + Head of the Marketing Department responsible for sales and marketing activities across English Heritage. + + + Marketing Director + + + 16 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + + + + + + + + + + 1655827 + + + Marketing Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as Marketing Director + + + + + + + + + + + + + + + N/D as Marketing Director Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + The head of Historical Properties, responsible for the 400 plus properties in EH's care + + + Historic Properties Director + + + 17 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + + + + + + + + + + 13560545 + + + Historic Properties Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as Historic Properties Director + + + + + + + + + + + + + + + N/D as Historic Properties Director Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Eliminated + + + Eliminated + + + Eliminated + + + 18 + + + + + + + + + + + + + + + + + + + + + Eliminated + + + + + + + + + + + + N/A + + + + + + + + + + + + + + + + + + Eliminated Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + Eliminated as Eliminated + + + + + + + + + + + + + + + Eliminated as Eliminated Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + Responsible for Finance and Procurement functions. + + + Finance & Procurement Director + + + 19 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + + + + + + + + + + 1149068 + + + Finance & Procurement Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as Finance & Procurement Director + + + + + + + + + + + + + + + N/D as Finance & Procurement Director Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + Responsible for Human Resources, Internal Communications and Facilities functions. + + + Human Resources Director + + + 20 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + + + + + + + + + + 1449153 + + + Human Resources Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as Human Resources Director + + + + + + + + + + + + + + + N/D as Human Resources Director Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + Responsible for Information Management and Technology functions + + + IMT Director + + + 21 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + + + + + + + + + + 2326007 + + + IMT Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as IMT Director + + + + + + + + + + + + + + + N/D as IMT Director Total Pay on 30/09/2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Not a Civil Servant. English Heritage Band 2 equates approximately to SCS1 + + + Responsible for the commercial functions at property sites including hospitality, Catering, Retail and Events + + + Commercial Director + + + 22 + + + + + + + + + + + + + + + + + + + + + N/D + + + + + + + + + + + + + + + + + + + + + 728769 + + + Commercial Director Salary Cost of Reports on 30/09/2011 + + + + + + 1 + + + + + + + + + + + + + + + N/D as Commercial Director + + + + + + + + + + + + + + + N/D as Commercial Director Total Pay on 30/09/2011 + + + + + diff --git a/ckanext/qa/tests/data/311011.csv b/ckanext/qa/tests/data/311011.csv new file mode 100644 index 00000000..553a4536 --- /dev/null +++ b/ckanext/qa/tests/data/311011.csv @@ -0,0 +1 @@ +#,Referrer,Referrals 1,http://www.google.co.uk,"9,508,234" 2,[NO REFERRER INFORMATION],"3,563,419" 3,http://www.google.com,"585,447" 4,http://www.bing.com,"508,809" 5,http://www.dft.gov.uk,"268,219" 6,http://uk.search.yahoo.com,"256,889" 7,http://uk.ask.com,"151,718" 8,http://www.dwp.gov.uk,"145,601" 9,http://www.direct.gov.uk/en/index.htm,"133,653" 10,http://www.homeoffice.gov.uk,"121,871" 11,http://search.bt.com,"69,283" 12,http://www.hmcourts-service.gov.uk,"57,188" 13,http://search.conduit.com,"56,666" 14,http://search.avg.com,"56,329" 15,http://jobseekers.direct.gov.uk/homepage.aspx,"55,271" 16,http://uk.search-results.com,"51,401" 17,http://jobseekers.direct.gov.uk/listjob.aspx,"46,561" 18,http://search.virginmedia.com,"44,396" 19,http://www.hmrc.gov.uk,"40,125" 20,http://search.sky.com,"37,359" 21,http://webarchive.nationalarchives.gov.uk,"36,420" 22,http://www.google.co.in,"34,965" 23,http://www.google.com.au,"33,338" 24,http://aolsearch.aol.co.uk,"32,216" 25,http://www.slc.co.uk,"31,123" 26,http://m.direct.gov.uk/syndicationController,"30,127" 27,http://www.gro.gov.uk,"29,690" 28,http://www.talktalk.co.uk,"29,272" 29,http://search.aol.co.uk,"29,267" 30,http://www.google.ca,"29,239" 31,http://www.taxdisc.direct.gov.uk/EvlPortalApp/application,"27,457" 32,http://search.mywebsearch.com,"26,582" 33,http://www.justice.gov.uk,"26,411" 34,http://search.yahoo.com,"25,585" 35,http://www.google.ie,"25,532" 36,http://www.nationalarchives.gov.uk,"25,166" 37,http://www.directgov.co.uk,"25,142" 38,http://www.jobcentreplus.gov.uk,"24,562" 39,http://www.connexions-direct.com,"22,955" 40,http://www.google.pl,"21,246" 41,http://jobseekers.direct.gov.uk/detailjob.aspx,"20,099" 42,http://www.publicguardian.gov.uk,"19,455" 43,http://www.adviceguide.org.uk,"18,589" 44,http://uk.answers.yahoo.com,"18,246" 45,http://www.facebook.com,"18,208" 46,http://search.babylon.com,"17,954" 47,http://intralink,"16,514" 48,http://search.orange.co.uk,"15,482" 49,http://www.nhs.uk,"14,720" 50,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MotoringContacts/DG_10012974,"14,702" 51,http://www.google.fr,"13,984" 52,http://jobseekers.direct.gov.uk/HomePage.aspx,"13,703" 53,http://www.studentfinance.direct.gov.uk/goodbye.html,"13,648" 54,http://www.google.es,"12,449" 55,http://www.thepensionservice.gov.uk,"12,322" 56,http://isearch.avg.com,"12,250" 57,http://mybroadband.three.co.uk,"12,122" 58,http://www.moneysavingexpert.com,"11,949" 59,http://36ohk6dgmcd1n.c.yom.mail.yahoo.net,"11,889" 60,http://www.google.co.za,"11,683" 61,http://pensions-service.direct.gov.uk/en/state-pension-age-calculator/home.asp,"11,363" 62,http://www.direct.gov.uk/en/Employment/Employees/Timeoffandholidays/index.htm,"11,190" 63,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/index.htm,"11,078" 64,http://www.google.de,"10,990" 65,http://search2.openobjects.com,"10,819" 66,http://advancedsearch.virginmedia.com,"10,505" 67,http://jobseekers.direct.gov.uk/detailhds.aspx,"10,073" 68,http://directgov.co.uk,"9,692" 69,http://www.google.com.ph,"9,228" 70,http://www.google.com.my,"8,955" 71,http://search.alot.com,"8,733" 72,http://www.vosa.gov.uk,"8,705" 73,http://www.direct.gov.uk/en/AdvancedSearch/Searchresults/index.htm,"8,447" 74,http://www.google.com.pk,"8,409" 75,http://toolbar.inbox.com,"8,397" 76,http://www.tradingstandards.gov.uk,"8,263" 77,http://www.google.co.nz,"8,187" 78,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_4022088,"7,868" 79,http://searcht.aol.co.uk,"7,761" 80,http://www.direct.gov.uk/dscript,"7,662" 81,http://www.direct.gov.uk/en/TravelAndTransport/Passports/index.htm,"7,660" 82,http://searcht2.aol.co.uk,"7,587" 83,http://www.ucas.com,"7,548" 84,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/index.htm,"7,524" 85,http://search.incredimail.com,"7,507" 86,http://www.findmypast.co.uk,"7,374" 87,http://www.google.com.hk,"7,354" 88,http://www.google.it,"7,284" 89,http://www.bbc.co.uk,"7,268" 90,http://m.direct.gov.uk/homePageController,"7,134" 91,http://www.voa.gov.uk,"7,104" 92,http://search.hmrc.gov.uk,"7,035" 93,http://www.ucas.ac.uk,"7,022" 94,http://en.wikipedia.org,"7,020" 95,http://search.hp.my.aol.co.uk,"6,995" 96,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/index.htm,"6,658" 97,http://www.csa.gov.uk,"6,527" 98,http://www.nidirect.gov.uk,"6,321" 99,http://forums.moneysavingexpert.com,"5,987" 100,http://www.direct.gov.uk/en/Motoring/index.htm,"5,764" 101,http://www.google.lt,"5,684" 102,http://www.defra.gov.uk,"5,612" 103,http://www2.postoffice.co.uk,"5,560" 104,http://www.google.nl,"5,530" 105,http://www.oft.gov.uk,"5,493" 106,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017669,"5,325" 107,http://legaladviserfinder.justice.gov.uk,"5,323" 108,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/index.htm,"5,133" 109,http://www.traffordcentre.co.uk,"5,123" 110,http://www.google.com.sg,"5,108" 111,http://www.direct.gov.uk/en/Employment/Jobseekers/index.htm,"5,079" 112,http://www.fco.gov.uk,"4,985" 113,http://www.google.ae,"4,882" 114,http://search.sweetim.com,"4,785" 115,http://uk.zapmeta.com,"4,668" 116,http://www.google.ro,"4,441" 117,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Employedorlookingforwork/DG_10018757,"4,421" 118,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/DG_10030134,"4,406" 119,http://www.ask.com,"4,334" 120,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/TheoryTest/index.htm,"4,298" 121,http://ownvehicle.askmid.com,"4,209" 122,http://aolbroadband.search.aol.co.uk,"4,143" 123,http://www.bis.gov.uk,"4,077" 124,http://search.aol.com,"4,019" 125,http://dftsearch.dft.gov.uk,"4,011" 126,http://ukinusa.fco.gov.uk,"3,972" 127,http://www.thisismoney.co.uk,"3,950" 128,http://www.cmoptions.org,"3,884" 129,http://yourmoney.moneyadviceservice.org.uk,"3,864" 130,http://culture.gov.uk,"3,825" 131,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/PracticalTest/index.htm,"3,824" 132,http://www.google.ru,"3,797" 133,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/DG_10032681,"3,771" 134,http://www.education.gov.uk,"3,771" 135,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_4022085,"3,758" 136,http://www.energysavingtrust.org.uk,"3,747" 137,http://www.guardian.co.uk,"3,722" 138,http://benefits-adviser.direct.gov.uk/index.html,"3,695" 139,http://www.google.gr,"3,656" 140,http://local.direct.gov.uk/LDGRedirect/index.jsp,"3,627" 141,http://www.debtadvicefoundation.org,"3,537" 142,http://start.facemoods.com,"3,488" 143,http://www.businesslink.gov.uk,"3,450" 144,http://onlinewizards.nationalarchives.gov.uk,"3,447" 145,http://www.google.pt,"3,435" 146,http://www.acas.org.uk,"3,405" 147,http://dvlaregistrations.direct.gov.uk/help/questions-after-a-purchase.html,"3,402" 148,http://www.google.hu,"3,396" 149,http://www.legalservices.gov.uk,"3,353" 150,http://www.thesite.org,"3,319" 151,http://smokecontrol.defra.gov.uk,"3,297" 152,http://jobseekers.direct.gov.uk/searchoptionjob.aspx,"3,293" 153,http://36ohk6dgmcd1n.yom.mail.yahoo.net,"3,276" 154,http://www.google.be,"3,267" 155,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/index.htm,"3,226" 156,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinemotoring/DG_197299,"3,186" 157,http://www.protocol.slc.co.uk,"3,123" 158,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_10012514,"3,084" 159,http://jobseekers.direct.gov.uk/currentsearch.aspx,"3,073" 160,http://www.police.uk,"3,033" 161,http://www.tda.gov.uk,"3,003" 162,http://www.google.ch,"3,002" 163,http://studentfinance-yourfuture.direct.gov.uk/repay,"2,953" 164,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_078070,"2,944" 165,http://www.anywhere.me,"2,935" 166,http://www.taxdisc.direct.gov.uk/EvlPortalApp/,"2,929" 167,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyA/DG_10032690,"2,919" 168,http://search.searchcompletion.com,"2,904" 169,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyC/DG_066944,"2,893" 170,http://www.motabilitycarscheme.co.uk,"2,868" 171,http://www.pensionsadvisoryservice.org.uk,"2,847" 172,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/index.htm,"2,843" 173,http://www.google.com.tr,"2,842" 174,http://www.benefity.org.uk,"2,841" 175,http://t.co,"2,785" 176,http://ukinnewzealand.fco.gov.uk,"2,760" 177,http://www.ageuk.org.uk,"2,733" 178,http://intralink.link2.gpn.gov.uk,"2,686" 179,http://www.google.se,"2,685" 180,http://studentfinance-yourfuture.direct.gov.uk/costs,"2,671" 181,http://www.google.co.th,"2,649" 182,http://england.shelter.org.uk,"2,631" 183,http://www.google.bg,"2,624" 184,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_4022117,"2,623" 185,http://www.gttr.ac.uk,"2,594" 186,http://www.culture.gov.uk,"2,585" 187,http://www.google.com.ng,"2,547" 188,http://search1.sky.com,"2,545" 189,http://www.jobcentreplus.co.uk,"2,514" 190,http://epc.direct.gov.uk/index.html,"2,487" 191,http://www.google.com.br,"2,482" 192,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/StatePensionforecast/DG_10014008,"2,430" 193,http://studentfinance-yourfuture.direct.gov.uk/other-support,"2,427" 194,http://ec.europa.eu,"2,358" 195,http://www.webaddresshelp.bt.com,"2,349" 196,http://www.direct.gov.uk/redundancy.dsb,"2,341" 197,http://backtowork.direct.gov.uk/index.html,"2,322" 198,http://www.cabadvisernet.org.uk,"2,282" 199,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/index.htm,"2,274" 200,http://www.google.com.vn,"2,251" 201,http://www.hse.gov.uk,"2,251" 202,https://www.taxdisc.direct.gov.uk/EvlPortalApp/app/exit/thankyou,"2,250" 203,http://www.direct.gov.uk/en/motoring/DG_174859,"2,230" 204,http://news.bbc.co.uk,"2,201" 205,http://www.google.lv,"2,193" 206,http://www.google.co.ke,"2,172" 207,http://dwp.gov.uk,"2,153" 208,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_193800,"2,145" 209,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/index.htm,"2,141" 210,http://www.google.sk,"2,101" 211,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/index.htm,"2,048" 212,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EducationAndLearningContacts/DG_172310,"2,045" 213,http://www.wordex.uk.com,"2,040" 214,http://ukinhongkong.fco.gov.uk,"2,014" 215,http://ukingermany.fco.gov.uk,"2,013" 216,http://www.braehead.co.uk,"2,006" 217,http://search.comcast.net,"1,991" 218,http://jobseekers.direct.gov.uk/subjectmenu.aspx,"1,987" 219,http://www.thestudentroom.co.uk,"1,984" 220,http://www.hl.co.uk,"1,959" 221,http://www.google.com.eg,"1,954" 222,http://www.netmums.com,"1,932" 223,http://www.direct.gov.uk/en/Employment/index.htm,"1,899" 224,http://intranet,"1,893" 225,http://www.pistonheads.com,"1,892" 226,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_10034732,"1,892" 227,http://www.direct.gov.uk/en/HomeAndCommunity/YourlocalcouncilandCouncilTax/CouncilTax/index.htm,"1,884" 228,http://www.google.lk,"1,879" 229,http://www.primarysite-kidszone.co.uk,"1,874" 230,http://www.google.co.id,"1,849" 231,http://www.google.co.jp,"1,798" 232,http://www.studentfinance.direct.gov.uk/portal/page,"1,786" 233,http://www.direct.gov.uk/en/Employment/Jobseekers/ContactJobcentrePlus/DG_186347,"1,779" 234,http://www.google.com.jm,"1,775" 235,http://studentfinance-yourfuture.direct.gov.uk/,"1,772" 236,http://studenttaxadvice.direct.gov.uk/index.html,"1,754" 237,http://www.tesco.net,"1,754" 238,http://www.lovemoney.com,"1,753" 239,http://www.decc.gov.uk,"1,749" 240,http://www.consumeractiongroup.co.uk,"1,686" 241,http://www.fastbrowsersearch.com,"1,683" 242,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Renewingorextendingyourpassport/index.htm,"1,667" 243,http://int.ask.com,"1,660" 244,http://www.google.com.sa,"1,658" 245,http://www.cam.ac.uk,"1,653" 246,http://www.direct.gov.uk/en/Pensionsandretirementplanning/index.htm,"1,632" 247,http://uk.mg40.mail.yahoo.com,"1,631" 248,http://www.energychoices.co.uk,"1,622" 249,http://think.direct.gov.uk/,"1,616" 250,http://www.google.com.mx,"1,606" 251,http://forums.digitalspy.co.uk,"1,603" 252,http://m.direct.gov.uk/jobController,"1,598" 253,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyC/DG_067507,"1,553" 254,http://www.theanswerbank.co.uk,"1,537" 255,http://www.google.no,"1,536" 256,http://www.google.cz,"1,519" 257,http://answers.yahoo.com,"1,508" 258,http://www.google.dk,"1,505" 259,http://www.direct.gov.uk/en/YoungPeople/index.htm,"1,497" 260,http://www.patient.co.uk,"1,496" 261,http://www.turn2us.org.uk,"1,492" 262,http://www.myukinfo.com,"1,481" 263,http://admin.webuyanycar.com,"1,459" 264,http://www.carillionenergy.com,"1,446" 265,http://www.brent.gov.uk,"1,445" 266,http://www2.dft.gov.uk,"1,444" 267,http://search2.hmrc.gov.uk,"1,437" 268,http://www.google.com.mt,"1,435" 269,http://ukinfrance.fco.gov.uk,"1,430" 270,http://www.theaa.com,"1,424" 271,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011018,"1,422" 272,http://www.ofgem.gov.uk,"1,418" 273,http://www.abahe.co.uk,"1,404" 274,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/IntroductiontoNationalInsurance/DG_190048,"1,400" 275,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/index.htm,"1,399" 276,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018926,"1,393" 277,http://www.plusnetwork.com,"1,384" 278,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_4022118,"1,384" 279,http://uk.mg.bt.mail.yahoo.com,"1,372" 280,http://www.everyclick.com,"1,371" 281,http://www.google.tt,"1,364" 282,http://www.surreycc.gov.uk,"1,364" 283,http://www.moneymagpie.com,"1,364" 284,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/index.htm,"1,363" 285,http://www.google.com.ua,"1,356" 286,http://jobseekers.direct.gov.uk/loginregister.aspx,"1,343" 287,http://www.yell.com,"1,343" 288,http://www.ukba.homeoffice.gov.uk,"1,334" 289,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyB/DG_066956,"1,333" 290,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/index.htm,"1,330" 291,http://jobcentreplus.jobhits.co.uk,"1,330" 292,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_4017919,"1,329" 293,http://www.direct.gov.uk/en/Dl1/Directories/Localcouncils/index.htm,"1,323" 294,http://www.google.com.gh,"1,316" 295,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018708,"1,303" 296,http://www.birmingham.gov.uk,"1,300" 297,http://www.direct.gov.uk/en/employment/jobseekers/index.htm,"1,292" 298,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinemotoring/DG_197297,"1,283" 299,http://online.businesslink.gov.uk,"1,272" 300,http://dashboard,"1,266" 301,http://publicappointments.cabinetoffice.gov.uk,"1,258" 302,http://www.direct.gov.uk/error/404.html,"1,240" 303,http://www.edfenergy.com,"1,226" 304,http://www.direct.gov.uk/en/Employment/Employees/TheNationalMinimumWage/index.htm,"1,222" 305,http://www.direct.gov.uk/en/Employment/Employees/TheNationalMinimumWage/DG_10027201,"1,213" 306,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Gettingadivorce/index.htm,"1,209" 307,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/PracticalTest/DG_186585,"1,207" 308,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_069680,"1,196" 309,http://studentfinance-yourfuture.direct.gov.uk/part-time-students,"1,183" 310,http://www.communities.gov.uk,"1,182" 311,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_178228,"1,181" 312,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyC/DG_193809,"1,180" 313,http://www.which.co.uk,"1,178" 314,http://mail.aol.com,"1,170" 315,http://www.direct.gov.uk/en/Diol1/DoItOnline/index.htm,"1,158" 316,http://du110w.dub110.mail.live.com,"1,156" 317,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyD/DG_10034732,"1,156" 318,http://www.royal.gov.uk,"1,154" 319,http://www.emito.net,"1,152" 320,http://guide.opendns.com,"1,151" 321,http://www.google.co.il,"1,143" 322,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017252,"1,142" 323,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/DG_10010529,"1,134" 324,http://www.google.fi,"1,134" 325,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/index.htm,"1,118" 326,http://www.bounty.com,"1,113" 327,http://www.direct.gov.uk/en/Employment/StartingANewJob/index.htm,"1,113" 328,http://www3.hants.gov.uk,"1,113" 329,http://jobseekers.direct.gov.uk/mysearcheshomepage.aspx,"1,109" 330,http://ukinspain.fco.gov.uk,"1,109" 331,http://www.2pass.co.uk,"1,108" 332,http://www.google.at,"1,096" 333,http://int.search-results.com,"1,085" 334,http://webcache.googleusercontent.com,"1,080" 335,http://www.direct.gov.uk/en/CaringForSomeone/MoneyMatters/CarersAllowance/index.htm,"1,077" 336,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Benefits/BenefitsInRetirement/DG_10018657,"1,064" 337,http://www.youtube.com,"1,057" 338,http://dvlaguide.co.uk,"1,056" 339,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Typesoffinance/index.htm,"1,051" 340,http://learn.go-on.co.uk,"1,051" 341,http://www.baidu.com,"1,048" 342,http://www.google.co.uk.,"1,043" 343,http://www.direct.gov.uk/en/Motoring/DriverLicensing/index.htm,"1,038" 344,http://jobseekers.direct.gov.uk/confirmsubject.aspx,"1,038" 345,http://www.direct.gov.uk/en/Employment/Employees/index.htm,"1,032" 346,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/Mot/index.htm,"1,021" 347,http://www.greenwich.gov.uk,"1,012" 348,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_10018786,"1,010" 349,http://www.info.co.uk,"1,007" 350,http://du109w.dub109.mail.live.com,995 351,http://m.direct.gov.uk/searchController,989 352,http://www.google.com.qa,985 353,http://du113w.dub113.mail.live.com,984 354,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10018702,981 355,http://jobseekers.direct.gov.uk/listvoluntary.aspx,978 356,http://www.eastsussex.gov.uk,971 357,http://www.mojawyspa.co.uk,971 358,http://notify.bluecoat.com,970 359,http://www.leicester.gov.uk,970 360,http://www.bromley.gov.uk,965 361,http://du111w.dub111.mail.live.com,958 362,http://pensions-service.direct.gov.uk/en/pension-credit-calculator/calculate.asp,957 363,http://dvlaregistrations.direct.gov.uk/help/search.html,938 364,http://du112w.dub112.mail.live.com,936 365,http://ukinsouthafrica.fco.gov.uk,936 366,http://www.google.mu,924 367,http://theorytestpro.co.uk,920 368,http://search.iminent.com,914 369,http://jobseekers.direct.gov.uk/locationmenu.aspx,912 370,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PensionCredit/index.htm,898 371,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_171894,893 372,http://www.dh.gov.uk,889 373,http://www.google.com.ar,888 374,http://www.direct.gov.uk/en/Employment/Employees/Timeoffandholidays/DG_10029788,887 375,http://www.mumsnet.com,886 376,http://www.directgov.org,881 377,http://firekills.direct.gov.uk/index.html,859 378,http://www.photobox.co.uk,857 379,http://du102w.dub102.mail.live.com,855 380,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/LearningToDriveOrRide/DG_4022530,853 381,http://www.metoffice.gov.uk,851 382,http://directgov.org,851 383,http://www.asda.jobs,847 384,http://buspasscentre.co.uk,845 385,http://www.brighton-hove.gov.uk,839 386,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_10012524,837 387,http://uk.yhs4.search.yahoo.com,830 388,http://search.ucas.com,823 389,http://www.google.co.ug,821 390,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Energyperformancecertificates/index.htm,817 391,http://m.direct.gov.uk/,815 392,http://du103w.dub103.mail.live.com,813 393,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en/results,806 394,http://du107w.dub107.mail.live.com,806 395,http://du101w.dub101.mail.live.com,799 396,http://uk.yhs.search.yahoo.com,799 397,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/Mot/DG_10020539,790 398,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_172666,788 399,http://local.direct.gov.uk/LDGRedirect/LocationSearch.do,785 400,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/TheoryTest/DG_196007,780 401,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/UntaxedVehicle/DG_4022058,779 402,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Expectingorbringingupchildren/DG_10018741,774 403,http://www.google.co.ma,767 404,http://stayinsured.askmid.com,767 405,http://www.reading-college.ac.uk,765 406,http://www.highways.gov.uk,762 407,http://jobcentreplus.gov.uk,758 408,http://betterfuture.direct.gov.uk/when-can-i-retire.html,753 409,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Redundancy/DG_10029836,751 410,http://www.rightmove.co.uk,751 411,http://www.jobcentreplus.com,751 412,http://www.gloucestershire.gov.uk,729 413,http://www.flintshire.gov.uk,720 414,http://www.essex.gov.uk,720 415,http://www.moneyadviceservice.org.uk,719 416,http://www.laterlife.com,716 417,http://www.wiltshire.gov.uk,714 418,http://www.google.com.tw,712 419,http://uk.finance.yahoo.com,711 420,http://jobseekers.direct.gov.uk/CurrentSearch.aspx,711 421,http://du104w.dub104.mail.live.com,709 422,http://www.silverhairs.co.uk,708 423,http://www.billplant.co.uk,706 424,http://jobseekers.direct.gov.uk/relatedsearch.aspx,704 425,http://www.ucl.ac.uk,701 426,http://www.direct.gov.uk/en/Employment/Startinganewjob/index.htm,699 427,http://www.google.co.kr,697 428,http://www.aberystwyth.org.uk,694 429,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/index.htm,692 430,http://londynek.net,691 431,http://www.google.com.om,686 432,http://pages.ebay.co.uk,684 433,http://www.ukmot.com,683 434,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Tenancies/index.htm,682 435,http://www.taxdisc.direct.gov.uk/EvlPortalApp/portlets/commonquestions/en_Help.jsp,682 436,http://du106w.dub106.mail.live.com,681 437,http://du105w.dub105.mail.live.com,681 438,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Renewingorextendingyourpassport/DG_174097,680 439,http://www.britishcouncil.org,680 440,http://www.lbbd.gov.uk,679 441,http://www.uclan.ac.uk,676 442,http://www.sunderland.gov.uk,671 443,http://www.dailymail.co.uk,670 444,http://www.google.com.bh,669 445,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017614,668 446,http://www.babycentre.co.uk,667 447,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/index.htm,663 448,http://inboxtoolbar.com,662 449,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_194466,658 450,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018928,656 451,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10011925,656 452,http://exchange,655 453,http://jobseekers.direct.gov.uk/homepagevw.aspx,650 454,http://www.warwickshire.gov.uk,648 455,http://du114w.dub114.mail.live.com,647 456,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/ChangesToYourRegistrationCertificate/index.htm,642 457,http://www.scroogle.org,637 458,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/FinancialHelpForAdultLearners/CareerDevelopmentLoans/index.htm,634 459,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Inretirement/DG_10018657,633 460,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/Basicstatepension/DG_10014671,630 461,http://www.crawler.com,629 462,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/ChildTrustFund/index.htm,629 463,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018268,628 464,http://csa.gov.uk,626 465,http://www.google.jo,623 466,http://www.theplatemarket.com,620 467,http://www.ofsted.gov.uk,620 468,http://www.direct.gov.uk/en/Dl1/Directories/index.htm,618 469,http://search.softonic.com,616 470,http://www.amazon.co.uk,615 471,http://es.wikipedia.org,614 472,http://www.direct.gov.uk/en/EducationAndLearning/index.htm,613 473,http://www.directgov.org.uk,613 474,http://www.direct.gov.uk/en/Motoring/DriverLicensing/WhatCanYouDriveAndYourObligations/index.htm,611 475,http://www.direct.gov.uk./en/index.htm,610 476,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10015994,603 477,http://www.driving-test-success.com,600 478,http://www2.le.ac.uk,599 479,http://www.trinitywalk.com,596 480,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10018710,595 481,http://www.haringey.gov.uk,595 482,http://start.iplay.com,595 483,http://survey.euro.confirmit.com,593 484,http://www.direct.gov.uk/en/motoring/DriverLicensing/NeedANewOrUpdatedLicence/index.htm,589 485,http://los.direct.gov.uk/default.aspx,589 486,http://www.direct.gov.uk/en/TravelAndTransport/Passports/howlongittakesandurgentappplications/index.htm,587 487,http://www.google.hr,586 488,http://easytide.ukho.gov.uk,581 489,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EducationAndLearningContacts/DG_171787,581 490,http://www.liv.ac.uk,581 491,http://www.google.ee,568 492,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_4022086,568 493,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyD/DG_066944,566 494,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinemotoring/DG_197300,562 495,http://www.disabilityalliance.org,556 496,http://www.seniorsdiscounts.co.uk,555 497,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_182601,555 498,http://www2.hull.ac.uk,554 499,http://britishexpats.com,552 500,http://www.google.com.kw,552 501,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/index.htm,550 502,http://www.google.com.co,550 503,http://www.bath.ac.uk,548 504,http://faststream.civilservice.gov.uk,547 505,http://www.southampton.gov.uk,546 506,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/16to19bursary/index.htm,545 507,http://zalacznik.wp.pl,544 508,http://aolbroadband.searcht2.aol.co.uk,541 509,http://www.natwest.com,541 510,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MotoringContacts/DG_178028,538 511,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Employedorlookingforwork/DG_10014402,538 512,http://www.ukcisa.org.uk,537 513,http://local.direct.gov.uk/LDGRedirect/Start.do,537 514,http://www.consumerfocus.org.uk,531 515,http://www.direct.gov.uk/en/DisabledPeople/index.htm,530 516,http://www.wlv.ac.uk,526 517,http://search.bearshare.com,524 518,http://www.mssociety.org.uk,521 519,http://www.benefitsnow.co.uk,520 520,http://www.direct.gov.uk/en/Parents/Preschooldevelopmentandlearning/NurseriesPlaygroupsReceptionClasses/DG_173054,520 521,http://www.google.co.zw,518 522,http://www.hertsdirect.org,517 523,http://www.milton-keynes.gov.uk,516 524,http://www.dogpile.com,516 525,http://www.freelanceadvisor.co.uk,515 526,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Typesoffinance/DG_171557,510 527,http://www.mottest.net,508 528,http://www.newhamworkplace.co.uk,506 529,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Juryservice/index.htm,505 530,http://www.saynoto0870.com,504 531,http://m.facebook.com,504 532,http://www.google.si,501 533,http://www.google.co.tz,501 534,http://www.uk-energy-saving.com,501 535,http://nuhnet,500 536,http://www.oxford.gov.uk,499 537,http://www.ukbirth-adoptionregister.com,498 538,http://by151w.bay151.mail.live.com,497 539,http://www.rdi.co.uk,497 540,http://www.google.cm,496 541,http://www.manchester.gov.uk,495 542,http://www.pensioncredit.org.uk,495 543,http://aolbroadband.searcht.aol.co.uk,494 544,http://www.ealing.gov.uk,491 545,http://by153w.bay153.mail.live.com,490 546,http://www.ox.ac.uk,487 547,http://www.therecruitgroup.com,486 548,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/index.htm,486 549,http://www.mdx.ac.uk,484 550,http://www.buzzdock.com,484 551,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Typesoffinance/DG_171539,483 552,http://www.dotcomol.com,483 553,http://www.kent.gov.uk,479 554,http://by157w.bay157.mail.live.com,478 555,http://oft.gov.uk,476 556,http://jobseekers.direct.gov.uk/SubjectMenu.aspx,475 557,http://www.cafe.co.uk,474 558,http://whatconsumer.co.uk,473 559,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/index.htm,471 560,http://www.electoralcommission.org.uk,470 561,http://www.advicenow.org.uk,469 562,http://homecatalogbiz.com,469 563,http://www.environment-agency.gov.uk,468 564,http://ucas.com,467 565,http://www.sutton.gov.uk,467 566,http://www.merton.gov.uk,467 567,http://main.cao.latestinfo.co.uk,464 568,http://www2.gre.ac.uk,461 569,http://www.roehampton.ac.uk,460 570,http://www.westminster.ac.uk,459 571,http://www.direct.gov.uk/en/TravelAndTransport/Passports/howlongittakesandurgentappplications/DG_174109,459 572,http://hk.search.yahoo.com,457 573,http://www.lsbu.ac.uk,457 574,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PensionCredit/DG_10018692,455 575,http://www.google.tn,455 576,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinemotoring/DG_10031645,452 577,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Redundancy/DG_174330,452 578,http://www.google.com.lb,446 579,http://us.yhs.search.yahoo.com,445 580,http://www.eonenergy.com,445 581,http://www.lifelonglearning.co.uk,445 582,http://www.google.rs,443 583,http://www.draugiem.lv,441 584,http://search.myway.com,440 585,http://www.leics.gov.uk,440 586,http://forums.overclockers.co.uk,439 587,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_10018913,438 588,http://www.northamptonshire.gov.uk,438 589,http://www.direct.gov.uk/en/Employment/Employees/WorkingHoursAndTimeOff/index.htm,437 590,http://www.mmu.ac.uk,436 591,http://www.lambeth.gov.uk,436 592,http://by150w.bay150.mail.live.com,435 593,http://dvlaregistrations.direct.gov.uk/directgovout/,435 594,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/index.htm,435 595,http://www.gateway.gov.uk,434 596,http://www.southwark.gov.uk,432 597,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/index.htm,432 598,http://www.direct.gov.uk/en/Parents/ChildMaintenance/IfyourealreadyusingtheChildSupportAgency/DG_199070,431 599,http://www.dogpile.co.uk,431 600,http://www.direct.gov.uk/en/Dl1/Directories/Localcouncils/AToZOfLocalCouncils/DG_A-Z_LG,431 601,http://eonlinecatalog.net,429 602,http://www.mib.org.uk,428 603,http://www.cabinetoffice.gov.uk,428 604,http://www.barrowbc.gov.uk,422 605,http://www.direct.gov.uk/en/Motoring/DriverLicensing/EndorsementsAndDisqualifications/DG_4022550,421 606,http://eonlinecatalog.com,421 607,http://www.derbyshire.gov.uk,420 608,http://dontbringmeback.direct.gov.uk/index.html,420 609,http://www.confused.com,419 610,http://mycatalogshop.com,419 611,http://innovate-apps.direct.gov.uk/widgets/uni/assets/index.html,418 612,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinemotoring/DG_4017669,418 613,http://www.devon.gov.uk,418 614,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Makingacourtclaimformoney/DG_195118,416 615,http://au.search.yahoo.com,416 616,http://www.oldham.gov.uk,416 617,http://www3.imperial.ac.uk,415 618,http://liverpool.gov.uk,413 619,http://yandex.ru,413 620,http://www.kent.ac.uk,411 621,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070202,409 622,http://polemi.co.uk,409 623,http://www.richmond.gov.uk,407 624,http://www.transportdirect.info,407 625,http://homecatalogbiz.net,405 626,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/RidingMotorcyclesAndMopeds/DG_4022430,403 627,http://www.boilerchoices.co.uk,403 628,http://bl162w.blu162.mail.live.com,403 629,http://search.yahoo.co.jp,402 630,http://www.sheffield.ac.uk,402 631,http://by156w.bay156.mail.live.com,401 632,http://www.google.cl,401 633,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingarrangementsincaseyoulosementalcapacity/DG_185921,400 634,http://by148w.bay148.mail.live.com,399 635,http://by146w.bay146.mail.live.com,399 636,http://directgov.org.uk,399 637,http://results.ispconnect.co.uk,398 638,http://www.benefitsandwork.co.uk,398 639,http://www.diabetes.co.uk,398 640,http://www.ncl.ac.uk,398 641,http://www.cheshirewestandchester.gov.uk,397 642,http://www.armchairadvice.co.uk,397 643,http://www.leedsmet.ac.uk,396 644,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/index.htm,396 645,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/Mot/DG_4022108,395 646,http://www.google.com.pe,393 647,http://www.ukbusinessforums.co.uk,392 648,http://www.plymouth.ac.uk,391 649,http://www.port.ac.uk,391 650,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/RegisteringAVehicle/index.htm,391 651,http://www.leeds.gov.uk,390 652,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MotoringContacts/DG_178033,390 653,http://search27.info.co.uk,390 654,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Gettingstarted/DG_171572,389 655,http://www.best-motorcycle-information.com,388 656,http://www.direct.gov.uk/en/Dl1/Directories/Localcouncils/AToZOfLocalCouncils/index.htm,388 657,http://www.wigan.gov.uk,387 658,http://www.reddrivingschool.com,385 659,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/ChangesToYourRegistrationCertificate/DG_4022055,385 660,http://www.inghilterra.cc,385 661,http://mws.ask.com,385 662,http://www.cartaxprices.co.uk,384 663,http://ca.search.yahoo.com,383 664,http://www.redbridge.gov.uk,383 665,http://www.cardiff.gov.uk,383 666,http://www.bsm.co.uk,383 667,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyD/DG_066956,382 668,http://maps.google.co.uk,382 669,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/index.htm,381 670,http://www.telegraph.co.uk,380 671,http://practitioners.studentfinanceengland.co.uk,379 672,http://by154w.bay154.mail.live.com,378 673,http://think.direct.gov.uk/drink-driving.html,378 674,http://www.homesandcommunities.co.uk,378 675,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/index.htm,377 676,http://www.diabetes.org.uk,377 677,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/DG_4001061,376 678,http://bl156w.blu156.mail.live.com,376 679,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/TheoryTest/DG_4022536,376 680,http://www.direct.gov.uk/en/Employment/Employees/WorkingHoursAndTimeOff/DG_10029426,376 681,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applyingforaneworrenewedchildpassport/index.htm,376 682,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/Governmentcitizensandrightscontacts/DG_195948,376 683,http://www.johnlewis.com,374 684,http://www.russellgroup.ac.uk,373 685,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Pregnancyandmaternityrights/index.htm,372 686,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/RentingOutYourProperty/index.htm,371 687,http://by158w.bay158.mail.live.com,371 688,http://www.aqa.org.uk,371 689,http://www.babyandbump.com,370 690,http://sn144w.snt144.mail.live.com,369 691,http://sn128w.snt128.mail.live.com,368 692,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_185398,368 693,http://sn131w.snt131.mail.live.com,367 694,http://www.arbetsformedlingen.se,366 695,http://bl159w.blu159.mail.live.com,366 696,http://sn142w.snt142.mail.live.com,365 697,http://www.uea.ac.uk,365 698,http://www.lewisham.gov.uk,364 699,http://www.ajsmotorcycles.co.uk,364 700,http://mybroadbandhomepage.o2.co.uk,363 701,http://by149w.bay149.mail.live.com,362 702,http://intranet.slc.co.uk,362 703,http://www.google.com.na,361 704,http://www.herts.ac.uk,361 705,http://www.google.com.gi,361 706,http://www.dur.ac.uk,361 707,http://bl157w.blu157.mail.live.com,361 708,http://www.google.co.bw,360 709,http://by147w.bay147.mail.live.com,360 710,http://www.mod.uk,360 711,http://kids.direct.gov.uk/main.aspx,359 712,http://www.plymouth.gov.uk,358 713,http://www.google.com.np,357 714,http://www.jobcentre.gov.uk,357 715,http://google.btopenworld.com,356 716,http://uk.mc870.mail.yahoo.com,355 717,http://wwwm.coventry.ac.uk,354 718,http://sn129w.snt129.mail.live.com,354 719,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/index.htm,354 720,http://bl151w.blu151.mail.live.com,353 721,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Loststolenordamagedpassports/DG_174163,353 722,http://blog.moneysavingexpert.com,352 723,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/StudentsFromOtherEUCountries/index.htm,351 724,http://www.podatek.org.uk,351 725,http://sn135w.snt135.mail.live.com,351 726,http://www.pensionservice.gov.uk,350 727,http://buyerbeware.direct.gov.uk/v5c/index.html,350 728,http://search.surfcanyon.com,350 729,http://www.canterbury.gov.uk,350 730,http://www.childmaintenance.org,350 731,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/RidingMotorcyclesAndMopeds/index.htm,350 732,http://www.honestjohn.co.uk,349 733,http://www.google.com.pr,349 734,http://www.elephantkiosks.com,349 735,http://sn126w.snt126.mail.live.com,348 736,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Redundancy/DG_10026616,346 737,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_185670,345 738,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/index.htm,345 739,http://www.prospects.ac.uk,343 740,http://co124w.col124.mail.live.com,343 741,http://www.thomsonlocal.com,343 742,http://sn136w.snt136.mail.live.com,343 743,http://bestsearchgroup.com,342 744,http://www.adoption.org.uk,341 745,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/PracticalTest/DG_4022540,340 746,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018923,340 747,http://www.direct.gov.uk/en/Nl1/Newsroom/SpendingReview/DG_192159,339 748,http://www.ucas.co.uk,339 749,http://www.cheshireeast.gov.uk,339 750,http://discoverany.com,339 751,http://sn137w.snt137.mail.live.com,339 752,http://www.bluebirdcare.co.uk,339 753,http://www.westminster.gov.uk,338 754,http://www2.lse.ac.uk,338 755,http://www.oxfordshire.gov.uk,336 756,http://www.forolondres.com,336 757,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Mentalcapacityandplanningahead/DG_186373,336 758,http://www.barnet.gov.uk,335 759,http://www.number10.gov.uk,335 760,http://allcanfind.com,335 761,http://sn134w.snt134.mail.live.com,335 762,http://www.xmarks.com,334 763,http://www.nsandi.com,334 764,http://www.shropshire.gov.uk,333 765,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BeginnersGuideToBenefits/index.htm,333 766,http://legalaidcalculator.justice.gov.uk,333 767,http://www.artsjobs.org.uk,332 768,http://www.direct.gov.uk/en/Parents/index.htm,332 769,http://www.google.co.zm,331 770,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Redundancy/index.htm,331 771,http://search.imesh.com,331 772,https://www.taxdisc.direct.gov.uk/EvlPortalApp/app/survey,331 773,http://campaigns.dwp.gov.uk,330 774,http://sn133w.snt133.mail.live.com,330 775,http://www.advice.salford.ac.uk,330 776,http://www.onespace.org.uk,330 777,http://isearch.babylon.com,329 778,http://www.direct.gov.uk/en/TravelAndTransport/index.htm,329 779,http://www.direct.gov.uk/en/Employment/Jobseekers/Helpapplyingforajob/index.htm,329 780,http://jobseekers.direct.gov.uk/mysavedsearches.aspx,329 781,http://www.norfolk.gov.uk,328 782,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/TheoryTest/DG_4022534,328 783,http://www.direct.gov.uk/en/Motoring/DriverLicensing/WhatCanYouDriveAndYourObligations/DG_4022547,328 784,http://www.salford.gov.uk,328 785,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_194804,327 786,http://us.yhs4.search.yahoo.com,327 787,http://sn124w.snt124.mail.live.com,327 788,http://www.leeds.ac.uk,327 789,http://by155w.bay155.mail.live.com,327 790,http://www.reddit.com,326 791,http://sn139w.snt139.mail.live.com,325 792,http://unihub.mdx.ac.uk,325 793,http://news,324 794,http://www.therenewableenergycentre.co.uk,322 795,http://www.direct.gov.uk/en/Dl1/Directories/A-ZOfCentralGovernment/index.htm,322 796,http://www.solihull.gov.uk,322 797,http://www.suffolk.gov.uk,322 798,http://co122w.col122.mail.live.com,322 799,http://www.direct.gov.uk/en/TravelAndTransport/Passports/howlongittakesandurgentappplications/DG_174149,321 800,http://co104w.col104.mail.live.com,321 801,http://du108w.dub108.mail.live.com,321 802,http://www.spaniards.es,320 803,http://www.northyorks.gov.uk,320 804,http://yourlistall.com,320 805,http://jobseekers.direct.gov.uk/LoginRegister.aspx,320 806,http://www.uknetguide.co.uk,320 807,http://www.direct.gov.uk/en/DisabledPeople/EducationAndTraining/HigherEducation/DG_10034898,320 808,http://www.ourproperty.co.uk,318 809,http://www.learning2drive.co.uk,318 810,http://yourfindany.com,317 811,http://co117w.col117.mail.live.com,317 812,http://www.dorsetforyou.com,316 813,http://sn121w.snt121.mail.live.com,316 814,http://www.swedenabroad.com,316 815,http://www.swindon.gov.uk,315 816,http://www.direct.gov.uk/en/Governmentcitizensandrights/index.htm,315 817,http://www.shu.ac.uk,315 818,http://www.direct.gov.uk/en/Dl1/Directories/DevolvedAdministrations/DG_4003604,315 819,http://sn125w.snt125.mail.live.com,315 820,http://www.ehow.com,314 821,http://www.hounslow.gov.uk,314 822,http://www.google.mv,314 823,http://community.babycentre.co.uk,314 824,http://home.speedbit.com,313 825,http://www.driving-schools-directory.co.uk,313 826,http://sheltercontent.org.uk,312 827,http://bl155w.blu155.mail.live.com,311 828,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Renewingorextendingyourpassport/DG_174096,311 829,http://sn140w.snt140.mail.live.com,311 830,http://www.direct.gov.uk/en/Employment/HealthAndSafetyAtWork/index.htm,310 831,http://www.derby.ac.uk,310 832,http://www.direct.gov.uk/en/Employment/Employees/EmploymentContractsAndConditions/DG_10027905,310 833,http://jobseekers.direct.gov.uk/detailvoluntary.aspx,310 834,http://skillsfundingagency.bis.gov.uk,310 835,http://www1.landregistry.gov.uk,309 836,http://www.smallbusiness.co.uk,309 837,http://web.aqa.org.uk,308 838,http://www.canterbury.ac.uk,307 839,http://sg.search.yahoo.com,307 840,http://www.romani-online.co.uk,307 841,http://cpw.mail.aol.com,307 842,http://www.direct.gov.uk/en/CaringForSomeone/index.htm,306 843,http://www.apetito.co.uk,305 844,http://sn127w.snt127.mail.live.com,305 845,http://www.direct.gov.uk/en/Motoring/DriverLicensing/DrivingInGbOnAForeignLicence/DG_4022562,305 846,http://home.bt.yahoo.com,304 847,http://www.drivingtheory4all.co.uk,302 848,http://anywhere.me,301 849,http://www.flybe.com,301 850,http://www.environmentlaw.org.uk,301 851,http://payandworkrightscampaign.direct.gov.uk/index.html,300 852,http://www.google.bs,299 853,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/Basicstatepension/DG_180132,299 854,http://www.manchester.ac.uk,298 855,http://jobseekers.direct.gov.uk/subjectmenulevel2.aspx,298 856,http://www.migweb.co.uk,298 857,http://www.staffs.ac.uk,297 858,http://greatlistonline.com,297 859,http://www.hotukdeals.com,297 860,http://bl152w.blu152.mail.live.com,297 861,http://greatsearchonline.com,296 862,http://stoploansharks.direct.gov.uk/index.html,295 863,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_184319,294 864,http://www.wirral.gov.uk,294 865,http://www.direct.gov.uk/en/Employment/Startinganewjob/DG_195809,294 866,http://uk.m.yahoo.com,293 867,http://thelistrated.com,293 868,http://sn141w.snt141.mail.live.com,292 869,http://www.direct.gov.uk/en/DisabledPeople/RightsAndObligations/DisabilityRights/DG_4001068,292 870,http://www.ntu.ac.uk,292 871,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/DisabilityLivingAllowance/index.htm,292 872,http://scotland.shelter.org.uk,292 873,http://bl150w.blu150.mail.live.com,291 874,http://bl153w.blu153.mail.live.com,291 875,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/Passplusdrivingcoursefornewdrivers/index.htm,291 876,http://bl154w.blu154.mail.live.com,291 877,http://www.londonmet.ac.uk,290 878,http://allsafelist.com,289 879,http://by152w.bay152.mail.live.com,289 880,http://www.geopace.com,289 881,http://www.google.iq,288 882,http://www.anglia.ac.uk,287 883,http://homeoffice.gov.uk,286 884,http://co111w.col111.mail.live.com,285 885,http://co103w.col103.mail.live.com,285 886,http://co116w.col116.mail.live.com,284 887,http://translate.googleusercontent.com,284 888,http://www.direct.gov.uk/en/Parents/Childcare/index.htm,284 889,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/Preparation/DG_10029799,283 890,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Caringforsomeone/DG_10018705,283 891,http://www.itv.com,283 892,http://europa.eu,283 893,http://www.macmillan.org.uk,283 894,http://au.ask.com,282 895,http://www.sheffield.gov.uk,282 896,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnPropertyAndRentalIncome/index.htm,282 897,http://freehomefind.com,282 898,http://www.wolverhampton.gov.uk,282 899,http://co102w.col102.mail.live.com,282 900,http://sn110w.snt110.mail.live.com,282 901,http://bl158w.blu158.mail.live.com,282 902,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/AdviceOnBuyingAndSellingAVehicle/DG_4022107,281 903,http://www.google.com.et,281 904,http://www.consumerfraudreporting.org,281 905,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applyingforaneworrenewedchildpassport/DG_174107,280 906,http://search.foxtab.com,279 907,http://www.stoke.gov.uk,279 908,http://thepensionservice.gov.uk,278 909,http://www.reading.gov.uk,278 910,http://www2.warwick.ac.uk,277 911,http://www.rbwm.gov.uk,277 912,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyD/DG_067507,275 913,http://www.google.com.bn,275 914,http://uk.mg41.mail.yahoo.com,275 915,http://sn116w.snt116.mail.live.com,275 916,http://sn120w.snt120.mail.live.com,274 917,http://sn123w.snt123.mail.live.com,273 918,http://www.anglija.lt,273 919,http://www.portsmouth.gov.uk,273 920,http://www.winchester.ac.uk,273 921,http://www.luton.gov.uk,273 922,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/index.htm,272 923,http://www.towerhamlets.gov.uk,272 924,http://sn143w.snt143.mail.live.com,271 925,http://sn132w.snt132.mail.live.com,271 926,http://www.reading.ac.uk,271 927,http://sn138w.snt138.mail.live.com,270 928,http://www.izito.co.uk,270 929,http://www3.nottinghamshire.gov.uk,270 930,http://www.ons.gov.uk,270 931,http://ema.direct.gov.uk/index.html,269 932,http://ukhighwaycode.com,269 933,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BeginnersGuideToBenefits/DG_4016805,269 934,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/index.htm,268 935,http://studentfinance-yourfuture.direct.gov.uk/grants,267 936,http://www.barking-dagenham.gov.uk,267 937,http://faq.bloglines.com,267 938,http://search.icq.com,266 939,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/WorkingAndPayingTax/DG_10016783,266 940,http://www.newham.gov.uk,266 941,http://www.derby.gov.uk,266 942,http://www.staffordshire.gov.uk,266 943,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Typesoffinance/DG_171571,265 944,http://www.islington.gov.uk,265 945,http://by161w.bay161.mail.live.com,265 946,http://www.direct.gov.uk/en/HomeAndCommunity/YourlocalcouncilandCouncilTax/CouncilTax/DG_10037383,264 947,http://www.nationalnumbers.co.uk,264 948,http://sn117w.snt117.mail.live.com,264 949,http://m.yahoo.com,264 950,http://www.bing.com:80,263 951,http://www.google.dm,262 952,http://co121w.col121.mail.live.com,262 953,http://www.direct.gov.uk/maternity.dsb,262 954,http://www.passngo.net,261 955,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Yourrightsandresponsibilitiesatwork/DG_066272,261 956,http://www.pensions.gov.uk,261 957,http://www.drivelpg.co.uk,260 958,http://www.worldsnooker.com,260 959,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/AirTravel/index.htm,259 960,http://www.google.kz,259 961,http://britishembassyinireland.fco.gov.uk,258 962,http://www.blackburn.gov.uk,257 963,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyA/DG_066954,257 964,http://www.wandsworth.gov.uk,257 965,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Loststolenordamagedpassports/DG_174162,256 966,http://www.emmasdiary.co.uk,256 967,http://i-seek-for.com,256 968,http://think.direct.gov.uk/roadsafety.html,255 969,http://www.brighton.ac.uk,255 970,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ExamsTestsAndTheCurriculum/DG_4016665,255 971,http://jobseekers.direct.gov.uk/ConfirmSubject.aspx,255 972,http://www.thepensionsregulator.gov.uk,255 973,http://www.lewes.gov.uk,255 974,http://www.walthamforest.gov.uk,255 975,http://search.insiteapp.com,255 976,http://www.dudley.gov.uk,255 977,http://www.wakefield.gov.uk,255 978,http://www.nottingham.ac.uk,254 979,http://www.uel.ac.uk,254 980,http://www.sognandolondra.com,254 981,http://www.direct.gov.uk/en/Employment/Employees/WorkingHoursAndTimeOff/DG_10029451,253 982,http://www.cornwall.gov.uk,253 983,http://www.officialsolicitor.gov.uk,253 984,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Typesoffinance/DG_194804,253 985,http://uk.mc297.mail.yahoo.com,252 986,http://www.jet2.com,251 987,http://co119w.col119.mail.live.com,251 988,http://co110w.col110.mail.live.com,250 989,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_4001347,250 990,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Gettingstarted/index.htm,250 991,http://www2.ealing.gov.uk,250 992,http://www.direct.gov.uk/en/Motoring/DriverLicensing/DrivingInGbOnAForeignLicence/index.htm,249 993,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10011816,249 994,http://los.direct.gov.uk/results.aspx,249 995,http://www.scotss.org.uk,249 996,http://mortgagehelp.direct.gov.uk/what-are-my-options.aspx,248 997,http://sn130w.snt130.mail.live.com,248 998,http://www.claims.co.uk,248 999,http://www.tiger.gov.uk,248 1000,http://links.govdelivery.com,248 1001,http://intranet.active.hmrci,248 1002,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Expectingorbringingupchildren/DG_10018869,248 1003,http://forums.rlfans.com,247 1004,http://clickcleverclicksafe.direct.gov.uk/index.html,247 1005,http://co109w.col109.mail.live.com,247 1006,http://www.edinburgh.gov.uk,247 1007,http://www.nottinghamshire.gov.uk,246 1008,http://www.epilepsy.org.uk,246 1009,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_188551,246 1010,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/AirtravelintheUK/DG_078179,246 1011,http://www.autotrader.co.uk,245 1012,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applicationinformation/DG_174152,244 1013,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017972,244 1014,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Employedorlookingforwork/index.htm,243 1015,http://jobseekers.direct.gov.uk/MySearchesHomepage.aspx,243 1016,http://co114w.col114.mail.live.com,243 1017,http://www.goeastend.co.uk,243 1018,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/index.htm,243 1019,http://www.direct.gov.uk/en/Motoring/PersonalisedRegAndNumberPlates/index.htm,242 1020,http://www.magistrates-association.org.uk,242 1021,http://www.kwik-fit.com,242 1022,http://www.somoto.com,242 1023,http://dvlaregistrations.direct.gov.uk/contactus/,242 1024,http://www.durham.gov.uk,241 1025,http://www.warrington.gov.uk,240 1026,http://www.bristol.gov.uk,240 1027,http://www.drivingcourses.co.uk,240 1028,http://www.carers.org,239 1029,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Bankruptcy/DG_187323,239 1030,http://by162w.bay162.mail.live.com,239 1031,http://www.google.is,239 1032,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/TheUKHonourssystem/index.htm,239 1033,http://www.google.com.ec,239 1034,http://www.calderdale.gov.uk,239 1035,http://ukinitaly.fco.gov.uk,238 1036,http://www.askmid.com,238 1037,http://www.arts.ac.uk,237 1038,http://www.beds.ac.uk,237 1039,http://www.warwickdc.gov.uk,236 1040,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Gettingstarted/DG_189518,236 1041,http://co123w.col123.mail.live.com,236 1042,http://beta.poczta.onet.pl,235 1043,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Pregnancyandmaternityrights/DG_10039631,235 1044,http://www.ripofftipoff.net,235 1045,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_10021514,234 1046,http://www.direct.gov.uk/en/Employment/Employees/Sicknessabsence/DG_10027238,234 1047,http://www.scotland.gov.uk,234 1048,http://www.the-instructor.com,234 1049,http://sn114w.snt114.mail.live.com,234 1050,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/DG_10011925,234 1051,http://www.google.com.kh,234 1052,http://fronter.com,233 1053,http://www.timeout.com,233 1054,http://www.paroleboard.gov.uk,233 1055,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/UntaxedVehicle/index.htm,232 1056,http://word-view.officeapps.live.com,232 1057,http://www.rec.uk.com,232 1058,http://www.enic-naric.net,231 1059,http://poczta.interia.pl,231 1060,http://www.stockton.gov.uk,231 1061,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Researchingfamilyhistory/index.htm,231 1062,http://nz.bing.com,230 1063,http://search.clinck.in,230 1064,http://ukinaustralia.fco.gov.uk,229 1065,http://go.mail.ru,229 1066,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinemotoring/DG_10031642,229 1067,http://www.connexions-cw.co.uk,229 1068,http://www.drivingban.co.uk,228 1069,http://www.croydon.gov.uk,228 1070,http://www.torbay.gov.uk,228 1071,http://email10.orange.co.uk,227 1072,http://www.arthritiscare.org.uk,227 1073,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuyingYourHome/DG_4018090,227 1074,http://think.direct.gov.uk/speed.html,226 1075,http://www.motorcyclenews.com,226 1076,http://electrical.theiet.org,225 1077,http://community.tes.co.uk,225 1078,http://www.brookes.ac.uk,225 1079,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Benefits/BenefitsInRetirement/DG_185940,225 1080,http://www.lawpack.co.uk,224 1081,http://www.direct.gov.uk/en/EducationAndLearning/14To19/Years10And11/DG_10013569,224 1082,http://retrorides.proboards.com,224 1083,http://www.direct.gov.uk/en/Motoring/DriverLicensing/EndorsementsAndDisqualifications/index.htm,224 1084,http://www.doubleglazingsecrets.com,224 1085,http://www.tameside.gov.uk,224 1086,http://m.bing.com:80,223 1087,http://www.legal-advice-centre.co.uk,223 1088,http://sn105w.snt105.mail.live.com,223 1089,http://in.search.yahoo.com,222 1090,http://www.lmu.ac.uk,222 1091,http://www.vwt4forum.co.uk,222 1092,http://www.google.lu,221 1093,http://www.lboro.ac.uk,221 1094,http://www.seatwave.com,220 1095,http://www.cityoflondon.gov.uk,220 1096,http://www.drivingtesttips.biz,220 1097,http://www.ukpass.ac.uk,220 1098,http://co113w.col113.mail.live.com,219 1099,http://www.toyota.co.uk,218 1100,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_4022084,217 1101,http://pubads.g.doubleclick.net,217 1102,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_4001398,217 1103,http://www.rac.co.uk,216 1104,http://ecosia.org,216 1105,http://www.info.com,216 1106,http://www.newcastle.gov.uk,215 1107,http://www.telford.gov.uk,215 1108,http://prism.talis.com,215 1109,http://www.supermama.lt,215 1110,http://www.google.ba,215 1111,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/FinancialHelpForAdultLearners/DG_068343,214 1112,http://www.hillingdon.gov.uk,214 1113,http://www.roadtransport.com,214 1114,http://it.wikipedia.org,213 1115,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_183111,213 1116,http://co106w.col106.mail.live.com,213 1117,http://www.qmul.ac.uk,212 1118,http://www.comparenumberplates.co.uk,212 1119,http://www.edgehill.ac.uk,212 1120,http://www.dad.info,210 1121,http://sn118w.snt118.mail.live.com,210 1122,http://www.conslondra.esteri.it,210 1123,http://courses.leedsmet.ac.uk,210 1124,http://www.basildon.gov.uk,210 1125,http://listtofind.com,210 1126,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012572,209 1127,http://www.digbritain.co.uk,209 1128,http://www.ukbmd.org.uk,209 1129,http://co112w.col112.mail.live.com,208 1130,http://www.slovenskecentrum.sk,208 1131,http://www.officialroyalwedding2011.org,208 1132,http://www.southlanarkshire.gov.uk,207 1133,http://www.surreyheath.gov.uk,207 1134,http://www.ypla.gov.uk,206 1135,http://fridgedisposal.co.uk,206 1136,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_4022091,206 1137,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/PlanningPermission/index.htm,206 1138,http://www.bradford.gov.uk,206 1139,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Expectingorbringingupchildren/index.htm,206 1140,http://swpapp-intra1,205 1141,http://www.google.co.cr,204 1142,http://www.google.ge,204 1143,http://www.lbhf.gov.uk,204 1144,http://www.bournemouth.gov.uk,204 1145,http://www.cambridgeshire.gov.uk,204 1146,http://www.escis.org.uk,203 1147,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018905,203 1148,http://www.direct.gov.uk/en/TravelAndTransport/Passports/howlongittakesandurgentappplications/DG_174148,203 1149,http://sn115w.snt115.mail.live.com,202 1150,http://www.epilepsysociety.org.uk,201 1151,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Expectingorbringingupchildren/DG_10018854,201 1152,http://uk.yahoo.com,201 1153,http://www.revolutiondrivingtuition.co.uk,201 1154,http://www.chelmsford.gov.uk,201 1155,http://co120w.col120.mail.live.com,201 1156,http://www.westlothian.gov.uk,201 1157,http://www.direct.gov.uk/en/HomeAndCommunity/YourlocalcouncilandCouncilTax/CouncilTax/DG_10037422,200 1158,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/index.htm,200 1159,http://www.enfield.gov.uk,200 1160,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ChoosingASchool/DG_4016369,199 1161,http://www.direct.gov.uk/en/HomeAndCommunity/index.htm,199 1162,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/WhatToDoAfterADeath/DG_10029808,198 1163,http://www.thokalath.com,198 1164,http://www.met.police.uk,198 1165,http://www.direct.gov.uk/en/Parents/ChildMaintenance/index.htm,198 1166,http://us.mg4.mail.yahoo.com,198 1167,http://www.sevenoaks.gov.uk,198 1168,http://www.energywatch.org.uk,197 1169,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Benefits/BenefitsInRetirement/DG_179916,197 1170,http://www.exeter.ac.uk,197 1171,http://www.google.co.ve,196 1172,http://employment.practicallaw.com,196 1173,http://www.victimsupport.org,196 1174,http://jobseekers.direct.gov.uk/confirmlocation.aspx,195 1175,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Energygrants/DG_10018661,195 1176,http://www.insolvencydirect.bis.gov.uk,195 1177,http://by159w.bay159.mail.live.com,195 1178,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Housingassociationhomes/index.htm,195 1179,http://www.begin-motorcycling.co.uk,195 1180,http://bham.pl,195 1181,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Howtochangethenameonyourpassport/index.htm,194 1182,http://www.drinkaware.co.uk,194 1183,http://intranet.ea.gov,194 1184,http://www.kcl.ac.uk,194 1185,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/index.htm,193 1186,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/DG_96,193 1187,http://www.bris.ac.uk,192 1188,http://www.avforums.com,192 1189,http://fastbrowsersearch.com,192 1190,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018856,192 1191,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_4022089,191 1192,http://www.savvywoman.co.uk,191 1193,http://www.northampton.gov.uk,191 1194,http://co107w.col107.mail.live.com,191 1195,http://www.knowsley.gov.uk,191 1196,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Employedorlookingforwork/DG_10013908,191 1197,http://www.sussex.ac.uk,191 1198,http://bertha.knowsley.gov.uk,190 1199,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ChoicesAfterYouGraduate/DG_10012463,190 1200,http://www.geo.ed.ac.uk,189 1201,http://www.cps.gov.uk,189 1202,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Councilhousing/DG_188701,189 1203,http://www.aimhigher.ac.uk,188 1204,http://buyerbeware.direct.gov.uk/index.html,188 1205,http://sn112w.snt112.mail.live.com,188 1206,http://sn109w.snt109.mail.live.com,188 1207,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/RegisteringAVehicle/DG_4022311,187 1208,http://www.southend.gov.uk,187 1209,http://yoursearchingdesk.org,187 1210,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_10012526,187 1211,http://think.direct.gov.uk/motorcycles.html,187 1212,http://www.oxfordowl.co.uk,187 1213,http://bl160w.blu160.mail.live.com,187 1214,http://forum.gazeta.pl,187 1215,http://www.direct.gov.uk/en/BritonsLivingAbroad/index.htm,187 1216,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017683,187 1217,http://uk.foxstart.com,186 1218,http://bl164w.blu164.mail.live.com,186 1219,http://www.freebustravel.co.uk,186 1220,http://results.whitebox.org.uk,186 1221,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/DiscriminationAtWork/index.htm,186 1222,http://search.smilebox.com,186 1223,http://www.drinkdriving.org,186 1224,http://sn104w.snt104.mail.live.com,186 1225,http://www.cumbria.gov.uk,186 1226,http://www.westsussex.gov.uk,185 1227,http://www.stannahstairlifts.co.uk,185 1228,http://www.essexconnexions.co.uk,185 1229,http://www.ubtsupport.com,185 1230,http://www.direct.gov.uk/en/Employment/Jobseekers/ProgrammesandServices/index.htm,185 1231,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/AdviceOnBuyingAndSellingAVehicle/DG_4022404,184 1232,http://yoursearchingdesk.com,184 1233,http://www.bracknell-forest.gov.uk,184 1234,http://www.bathspa.ac.uk,184 1235,http://searchindexonline.com,184 1236,http://sn108w.snt108.mail.live.com,183 1237,http://www.google.by,183 1238,http://www.get-uk-jobs.com,183 1239,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PensionCredit/DG_180167,182 1240,http://www.northampton.ac.uk,182 1241,http://www.worcestershire.gov.uk,182 1242,http://www.direct.gov.uk/en/Employment/Employees/TheNationalMinimumWage/DG_10037277,182 1243,http://www.dysoninsulations.co.uk,182 1244,http://www.direct.gov.uk/en/Employment/Employees/Timeoffandholidays/DG_10034642,182 1245,http://www.employmentservice.gov.uk,181 1246,http://www.york.gov.uk,181 1247,http://www.direct.gov.uk/en/Dl1/Directories/DG_10016534,181 1248,http://www.studentfinance.direct.gov.uk/calculator/studentfinancecalculator/1112/summary.xhtml,181 1249,http://www.sheffieldforum.co.uk,179 1250,http://www.northumberland.gov.uk,179 1251,http://www.direct.gov.uk/en/Governmentcitizensandrights/GettingLegalAdvice/DG_195314,179 1252,http://www.go-on.co.uk,179 1253,http://co115w.col115.mail.live.com,179 1254,http://uk.mc873.mail.yahoo.com,178 1255,http://woofi.info,178 1256,http://coolchaser.infospace.com,177 1257,http://www.tmgcrb.co.uk,176 1258,http://sn119w.snt119.mail.live.com,176 1259,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Marriagesandcivilpartnerships/DG_175715,176 1260,http://www.bghelp.co.uk,176 1261,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/index.htm,175 1262,http://www.hope.ac.uk,175 1263,http://www.shef.ac.uk,175 1264,http://www.northumbria.ac.uk,174 1265,http://www.woking.gov.uk,174 1266,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BeginnersGuideToBenefits/DG_4016266,174 1267,http://www.connexionssurrey.co.uk,174 1268,http://cars.uk.msn.com,174 1269,http://www.direct.gov.uk/en/motoring/owningavehicle/mot/DG_10020539,174 1270,http://prawojazdywuk.com,173 1271,http://www.bbk.ac.uk,173 1272,http://www.reliancenetconnect.co.in,173 1273,http://m.direct.gov.uk/staticContentController,173 1274,http://www.rochdale.gov.uk,172 1275,http://www.justsussex.co.uk,172 1276,http://learn.open.ac.uk,172 1277,http://www.crimestoppers-uk.org,172 1278,http://www.city.ac.uk,172 1279,http://publicappointmentscommissioner.independent.gov.uk,172 1280,http://www.kingston.ac.uk,172 1281,http://www.direct.gov.uk/en/Employment/Jobseekers/Helpapplyingforajob/DG_173655,172 1282,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/StudentsFromOtherEUCountries/DG_10035218,172 1283,http://localhost,172 1284,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Howtochangethenameonyourpassport/DG_174165,171 1285,http://www.mbclub.co.uk,171 1286,http://search.naver.com,171 1287,http://www.lawworks.org.uk,171 1288,http://www.moneysupermarket.com,171 1289,http://www.blackpool.gov.uk,171 1290,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018692,171 1291,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Volunteering/DG_195453,170 1292,http://www.school-portal.co.uk,170 1293,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/index.htm,170 1294,http://www.2345.com,170 1295,http://link.orangeworld.co.uk,170 1296,http://sn106w.snt106.mail.live.com,170 1297,http://www.google.az,169 1298,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/DG_10039029,169 1299,http://www.harrow.gov.uk,169 1300,http://alzheimers.org.uk,169 1301,http://www.channel4.com,169 1302,http://compass.hertscc.gov.uk,168 1303,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Gettingstarted/DG_171577,168 1304,http://www.jobland.pl,168 1305,http://twitter.com,168 1306,http://www.polnews.co.uk,168 1307,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/DG_173812,167 1308,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Paternityrightsintheworkplace/DG_10029398,167 1309,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applyingforaneworrenewedchildpassport/DG_174105,167 1310,http://think.direct.gov.uk/mobile-phones.html,167 1311,http://www.houseweb.co.uk,166 1312,http://www.northtyneside.gov.uk,166 1313,http://www.google.md,166 1314,http://www.glasgow.gov.uk,165 1315,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applicationinformation/DG_174157,165 1316,http://by160w.bay160.mail.live.com,165 1317,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_189931,165 1318,http://www.soton.ac.uk,164 1319,http://www.ephotozine.com,164 1320,http://www.google.ps,164 1321,http://www.swale.gov.uk,164 1322,http://sn111w.snt111.mail.live.com,164 1323,http://www.hfea.gov.uk,164 1324,http://www.southtyneside.info,164 1325,http://think.direct.gov.uk/index.html,163 1326,http://www.publicnet.co.uk,163 1327,http://sn113w.snt113.mail.live.com,163 1328,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/workandfamilies/index.htm,163 1329,http://www.camden.gov.uk,163 1330,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnPropertyAndRentalIncome/DG_4017814,163 1331,http://www.crusebereavementcare.org.uk,162 1332,http://www.trafford.gov.uk,162 1333,http://mycouncil.direct.gov.uk/index.html,162 1334,http://www.worksmart.org.uk,162 1335,http://www.visitlondon.com,161 1336,http://www.bristol.ac.uk,161 1337,http://www.dual-drive.co.uk,161 1338,http://www.direct.gov.uk/en/Motoring/PersonalisedRegAndNumberPlates/DG_4022576,161 1339,http://www.educationuk.org,161 1340,http://www.caa.co.uk,161 1341,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_183806,161 1342,http://boston,161 1343,http://www.londoncouncils.gov.uk,160 1344,http://horizon.gws.gsi.gov.uk,160 1345,http://www.norcap.org.uk,160 1346,http://sn102w.snt102.mail.live.com,160 1347,http://boards.fool.co.uk,160 1348,http://www.forestry.gov.uk,160 1349,http://singletrackworld.com,160 1350,http://sitesearch.justice.gov.uk.openobjects.com,159 1351,http://www.connexions-bs.co.uk,159 1352,http://www.ljmu.ac.uk,159 1353,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/PracticalTest/DG_178328,159 1354,http://search28.info.co.uk,159 1355,http://www.bootsphoto.com,158 1356,http://bl165w.blu165.mail.live.com,158 1357,https://www.google.com,158 1358,http://findiana.com,158 1359,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applyingforyourfirstadultpassport/index.htm,157 1360,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Caringforsomeone/DG_10018921,157 1361,http://www.direct.gov.uk/en/Parents/Preschooldevelopmentandlearning/NurseriesPlaygroupsReceptionClasses/DG_10016103,157 1362,http://co105w.col105.mail.live.com,157 1363,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SpecialEducationalNeeds/index.htm,156 1364,http://www.admin.cam.ac.uk,156 1365,http://www.cipd.co.uk,156 1366,http://www.direct.gov.uk/en/Employment/Employees/Timeoffandholidays/DG_184563,156 1367,http://www.feiertagskalender.ch,155 1368,http://www.shopthecentre.co.uk,155 1369,http://think.direct.gov.uk/seat-belts.html,155 1370,http://www.google.rw,155 1371,http://www.direct.gov.uk/en/Dl1/Directories/Localcouncils/DG_065241,155 1372,http://www.lincolnshire.gov.uk,154 1373,http://by165w.bay165.mail.live.com,154 1374,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/Motorinsurance/DG_186696,154 1375,http://www.birmingham.ac.uk,154 1376,http://www.testvalley.gov.uk,154 1377,http://www.redcar-cleveland.gov.uk,154 1378,http://www.adoptionsearchreunion.org.uk,154 1379,http://www.tattoodle.com,153 1380,http://www.google.com.vc,153 1381,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Caringforsomeone/DG_10012525,153 1382,http://www.hpa.org.uk,153 1383,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_171896,153 1384,http://www.learnerdriving.com,152 1385,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/index.htm,152 1386,http://www.motorcycle.co.uk,152 1387,http://www.stumbleupon.com,152 1388,http://www.direct.gov.uk/en/Employment/Employees/BusinessTransfersandtakeovers/index.htm,152 1389,http://www.google.gy,152 1390,http://www.bangor.ac.uk,152 1391,http://www.direct.gov.uk/en/Dl1/Directories/Localcouncils/DG_4003596,152 1392,http://www.santander.co.uk,152 1393,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/Driversandriders/index.htm,151 1394,http://www.pug306.net,151 1395,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/WorkSchemesAndProgrammes/DG_4000347,151 1396,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/DG_10039024,151 1397,http://www.learnerstuff.co.uk,151 1398,http://www.direct.gov.uk/,150 1399,http://www.money.co.uk,150 1400,http://foodimports.direct.gov.uk/index.html,150 1401,http://sn107w.snt107.mail.live.com,150 1402,http://nz.search.yahoo.com,150 1403,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_180132,150 1404,http://passionford.com,149 1405,http://www.hullcc.gov.uk,149 1406,http://www.leics.police.uk,149 1407,http://career-advice.monster.co.uk,149 1408,http://www.doncaster.gov.uk,149 1409,http://bluebadgemap.direct.gov.uk/index.html,149 1410,http://www.hintsandthings.com,148 1411,http://www.motinfo.gov.uk,148 1412,http://www.caterer.com,148 1413,http://www.hm-treasury.gov.uk,148 1414,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Familyhistoryandresearch/DG_175464,148 1415,http://graduatetalentpool.direct.gov.uk/cms/ShowPage/Home_page/How_to_apply/p!ekppiFa,147 1416,http://it.answers.yahoo.com,147 1417,http://www.cowandgate.co.uk,147 1418,http://www.york.ac.uk,146 1419,http://www.courtfunds.gov.uk,146 1420,http://uk.mc296.mail.yahoo.com,146 1421,http://www.google.com.do,146 1422,http://benefity.info,146 1423,http://www.swagbucks.com,146 1424,http://www.unionstogether.org.uk,146 1425,http://www.cardiff.ac.uk,145 1426,http://www.awardsintelligence.co.uk,145 1427,http://www.internationalstaff.ac.uk,145 1428,http://www.burnley.gov.uk,145 1429,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ChoosingASchool/index.htm,144 1430,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/AdoptionAndFostering/index.htm,143 1431,http://www.direct.gov.uk/en/Parents/ChildMaintenance/Arrangingchildmaintenance/DG_199213,143 1432,http://uk.mc871.mail.yahoo.com,143 1433,http://www1.uwe.ac.uk,142 1434,http://los.direct.gov.uk/Default.aspx,142 1435,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthmarriageanddeathcertificates/DG_175628,142 1436,http://www.immigrationboards.com,142 1437,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Makingacourtclaimformoney/DG_195688,142 1438,http://moneytolearn.direct.gov.uk/,142 1439,http://www.deutsche-in-london.net,142 1440,https://www.taxdisc.direct.gov.uk/EvlPortalApp/application,142 1441,http://www.bolton.gov.uk,142 1442,http://www.ts.wyjs.org.uk,142 1443,http://www.nottinghamcity.gov.uk,142 1444,http://ask.reference.com,142 1445,http://www.northwarks.gov.uk,142 1446,http://bl161w.blu161.mail.live.com,142 1447,http://polkadot.pl,141 1448,http://www.helpiammoving.com,141 1449,http://www.direct.gov.uk/en/Employment/Employees/EmploymentContractsAndConditions/DG_10028079,141 1450,http://sn103w.snt103.mail.live.com,141 1451,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ExamsTestsAndTheCurriculum/DG_10013041,141 1452,http://www.pkc.gov.uk,141 1453,http://www.mildenhall.af.mil,141 1454,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/WorkingAndPayingTax/DG_10013512,141 1455,http://www.bikersoracle.com,140 1456,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Dismissal/DG_10026696,140 1457,http://www.freeinsulation.co.uk,140 1458,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Yourconsumerrightswhenbuyinggoodsandservices/DG_182935,140 1459,http://nationalarchives.gov.uk,140 1460,http://www.chester.ac.uk,140 1461,http://search.highways.gov.uk,140 1462,http://www.direct.gov.uk/en/Employment/Jobseekers/programmesandservices/index.htm,140 1463,http://studentmoney.glam.ac.uk,140 1464,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnPropertyAndRentalIncome/DG_10013435,140 1465,http://www.abta.com,139 1466,http://legalservices.gov.uk,139 1467,http://www.landreg.gov.uk,139 1468,http://www.move-on.org.uk,139 1469,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10034876,139 1470,http://www.keele.ac.uk,139 1471,http://www.kingston.gov.uk,139 1472,http://pensions-service.direct.gov.uk/,138 1473,http://www.mind.org.uk,138 1474,http://www.linkfonet.co.uk,138 1475,http://www.soas.ac.uk,138 1476,http://www.direct.gov.uk/en/Employment/Jobseekers/ContactJobcentrePlus/index.htm,138 1477,http://betterfuture.direct.gov.uk/index.html,138 1478,http://www.google.com.bz,138 1479,http://student.kingston.ac.uk,137 1480,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/RepayingStudentLoansCoursesStartingFrom1998/DG_10034866,137 1481,http://en.luna.tv,137 1482,http://www.direct.gov.uk/en/Employment/Employees/Flexibleworking/DG_10029491,137 1483,http://www.direct.gov.uk/en/Parents/childmaintenance/IfyourealreadyusingtheChildSupportAgency/index.htm,137 1484,http://www.direct.gov.uk/en/Employment/Startinganewjob/DG_195811,137 1485,http://www.cass.city.ac.uk,136 1486,http://www.bournemouth.ac.uk,136 1487,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/StudentfinanceA-Z/index.htm,136 1488,http://studentfinanceloangrantcalculator.direct.gov.uk/,136 1489,http://poczta.o2.pl,136 1490,http://www.google.interia.pl,136 1491,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/FinancialHelpForAdultLearners/CareerDevelopmentLoans/DG_10033237,136 1492,http://www.suffolkjobsdirect.org,136 1493,http://www.studylondon.ac.uk,136 1494,http://www.southglos.gov.uk,135 1495,http://www.direct.gov.uk/en/Dl1/Directories/DevolvedAdministrations/DG_4003601,135 1496,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Councilhousing/index.htm,135 1497,http://www.thurrock.gov.uk,135 1498,http://www.hackney.gov.uk,135 1499,http://www.netdoctor.co.uk,135 1500,http://www.switchhelp.co.uk,134 1501,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ExamsTestsAndTheCurriculum/DG_4015959,134 1502,http://www.rental-deposits.com,134 1503,http://www.carersuk.org,134 1504,http://www.salford.ac.uk,134 1505,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Workersemployeesandselfemployment/DG_10027916,134 1506,http://by164w.bay164.mail.live.com,133 1507,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/DG_10026692,133 1508,http://vi.ebaydesc.co.uk,133 1509,http://www.landlordzone.co.uk,133 1510,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxallowancesandreliefs/DG_078378,133 1511,http://www.ed.ac.uk,133 1512,http://ph.search.yahoo.com,133 1513,http://www.northlincs.gov.uk,133 1514,http://www.rnib.org.uk,133 1515,http://www.google.mw,133 1516,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/index.htm,133 1517,http://www.direct.gov.uk/en/diol1/doitonline/dg_10015994,132 1518,http://www.legislation.gov.uk,132 1519,http://www.manchesterairport.co.uk,132 1520,http://www.bikechatforums.com,132 1521,http://www.dacorum.gov.uk,132 1522,http://www.direct.gov.uk/en/Parents/Preschooldevelopmentandlearning/NurseriesPlaygroupsReceptionClasses/DG_171007,132 1523,http://www.rotherham.gov.uk,132 1524,http://www.marjon.ac.uk,132 1525,http://e.mail.ru,131 1526,http://www.swansea.gov.uk,131 1527,http://news.sky.com,131 1528,http://www.1stdrive.com,131 1529,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Howtochangethenameonyourpassport/DG_174166,131 1530,http://www.day-tripper.net,131 1531,http://www.themanchestercollege.ac.uk,131 1532,http://search29.info.co.uk,130 1533,http://sn101w.snt101.mail.live.com,130 1534,http://de.wikipedia.org,130 1535,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/LearningToDriveOrRide/DG_4022661,130 1536,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/ImportingAndExportingAVehicle/index.htm,130 1537,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_069671,130 1538,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Goingtoprison/index.htm,130 1539,http://www.home.co.uk,130 1540,http://www.direct.gov.uk/en/Parents/Childcare/DG_4016029,130 1541,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Marriagesandcivilpartnerships/index.htm,130 1542,http://websearch.about.com,130 1543,http://www.hsamuel.co.uk,129 1544,http://boingboing.net,129 1545,http://campaigns2.direct.gov.uk/money4mum2be/index.html,129 1546,http://www.digital-era.org,129 1547,http://www.gateshead.gov.uk,129 1548,http://www.google.mn,128 1549,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Familyandfriendsofprisoners/index.htm,128 1550,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/AdviceOnBuyingAndSellingAVehicle/DG_10014436,128 1551,http://www.kentcht.nhs.uk,128 1552,http://www.open.ac.uk,127 1553,http://www.dementiaweb.org.uk,127 1554,http://www.learningpool.com,127 1555,http://www.direct.gov.uk/en/HealthAndWellBeing/index.htm,127 1556,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/index.htm,127 1557,http://www.norwich.gov.uk,127 1558,http://www.locata.org.uk,127 1559,http://www.mycollectors.co.uk,127 1560,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Bereaved/index.htm,127 1561,http://www.tees.ac.uk,127 1562,http://ru.wikipedia.org,127 1563,http://www.identitytheft.org.uk,127 1564,http://startpage.dft.gsi.gov.uk,127 1565,http://www.westlancs.gov.uk,127 1566,http://asda.jobs,126 1567,http://www.wikivorce.com,126 1568,http://www.wrexham.gov.uk,126 1569,http://www.whatdigitalcamera.com,126 1570,http://www.clicknow.org.uk,126 1571,http://www.kentchoices4u.com,126 1572,http://www.ipcc.gov.uk,126 1573,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018866,126 1574,http://www.3broadband.ie,126 1575,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/FinancialHelpForAdultLearners/index.htm,126 1576,http://www.dzieciak.co.uk,125 1577,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/DG_10026688,125 1578,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/DiscriminationAtWork/DG_10026670,125 1579,http://pt.wikipedia.org,124 1580,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/index.htm,124 1581,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/ContactOrDealWithHMRC/DG_10014875,124 1582,http://moneyfacts.co.uk,124 1583,http://www.bonavacantia.gov.uk,124 1584,http://www.google.com.ag,123 1585,http://www.nda.ac.uk,123 1586,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Gettingadivorce/DG_193728,123 1587,http://www.personneltoday.com,123 1588,http://www.rbs.co.uk,123 1589,http://www.hellouk.org,123 1590,http://www.uggaustralia.com,123 1591,http://www.usethekey.org.uk,123 1592,http://by163w.bay163.mail.live.com,123 1593,http://www.britishcouncil.de,122 1594,http://www.geton.co.uk,122 1595,http://www.polkadot.pl,122 1596,http://www.coventry.gov.uk,122 1597,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_179679,122 1598,http://www.eastbourne.gov.uk,122 1599,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/Mot/DG_4022109,122 1600,http://www.firstrungnow.com,122 1601,http://www.chichester.gov.uk,122 1602,http://ww1.newham.gov.uk,122 1603,http://search.daum.net,122 1604,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012311,122 1605,http://www.drivershortage.co.uk,122 1606,http://www.smashingmagazine.com,122 1607,http://www.iwight.com,122 1608,http://forum.londynek.net,121 1609,http://companyweb,121 1610,http://wales.gov.uk,121 1611,http://www.communitycare.co.uk,121 1612,http://lscintranet.legalservices.gov.uk,121 1613,http://www.cambridgeshire.net,120 1614,http://www.accesstowork.co.uk,120 1615,http://myworldofwork.skillsdevelopmentscotland.co.uk,120 1616,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_10014671,120 1617,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/index.htm,120 1618,http://www.skillsforcare.org.uk,120 1619,http://www.google.am,120 1620,http://us.mg5.mail.yahoo.com,120 1621,http://www.timesonline.co.uk,120 1622,http://www.bupa.co.uk,119 1623,http://firekills.direct.gov.uk/video.html,119 1624,http://dft.gov.uk,119 1625,http://www.direct.gov.uk/en/Motoring/DriverLicensing/CaravansTrailersCommercialVehicles/DG_4022564,119 1626,http://www.dartford.gov.uk,119 1627,http://www.lifetracks.com,119 1628,http://www.nofreetime.com,119 1629,http://duckduckgo.com,119 1630,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthandadoptionrecords/index.htm,118 1631,http://www.takelegaladvice.com,118 1632,http://www.muscletalk.co.uk,118 1633,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_199725,118 1634,http://www.gold.ac.uk,118 1635,http://www.findadrivingschool.com,118 1636,http://www2.royalmail.com,118 1637,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/Introductiontofinancialsupport/DG_065148,118 1638,http://www.rethink.org,117 1639,http://bbs.powerapple.com,117 1640,http://mail.inbox.lv,117 1641,http://www.pistonheads.co.uk,117 1642,http://search.rr.com,117 1643,http://jobseekers.direct.gov.uk/aboutmysearches.aspx,117 1644,http://www.britanie.co.uk,117 1645,http://www.google.com.bd,117 1646,http://www.direct.gov.uk/en/Motoring/DriverLicensing/EndorsementsAndDisqualifications/DG_10022425,117 1647,http://www.logspan.com,116 1648,http://www.firstchoice.co.uk,116 1649,http://delphi.dh.gov.uk,116 1650,http://www.sabteahval.ir,116 1651,http://www.motester.co.uk,115 1652,http://www.4loot.com,115 1653,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Agencyworkersandemploymentagencies/DG_173252,115 1654,http://www.direct.gov.uk/robots.txt,115 1655,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10012442,115 1656,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/DG_10039017,115 1657,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/IntroductiontoNationalInsurance/DG_190057,115 1658,http://www.sunderland.ac.uk,115 1659,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/Childrenandtaxcredits/DG_073803,115 1660,http://lottery.merseyworld.com,115 1661,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxrefundsreclaimingtax/DG_078358,114 1662,http://www.euvonal.hu,114 1663,http://www.solent.ac.uk,114 1664,http://www.kettering.gov.uk,114 1665,http://www.bradfordcollege.ac.uk,114 1666,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/DG_10026937,114 1667,http://www.eastriding.gov.uk,114 1668,http://www.yourcounciljobs.co.uk,114 1669,http://www.gamblingcommission.gov.uk,114 1670,http://webmail.tiscali.co.uk,114 1671,http://www.direct.gov.uk/en/Parents/ParentsRights/DG_4002945,114 1672,http://www.nottinghillhousing.org.uk,114 1673,http://juniorlawyers.lawsociety.org.uk,114 1674,http://www.wokingham.gov.uk,113 1675,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018844,113 1676,http://www.direct.gov.uk/en/Motoring/FindYourNearest/DG_132,113 1677,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthmarriageanddeathcertificates/index.htm,113 1678,http://www.victimsupport.org.uk,113 1679,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/index.htm,113 1680,http://www.ioe.ac.uk,113 1681,http://www.viridianhousing.org.uk,113 1682,http://www.direct.gov.uk/en/Employment/Jobseekers/JobsAndCareers/index.htm,113 1683,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Grievanceprocedures/index.htm,113 1684,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_171539,113 1685,http://www.london.gov.uk,113 1686,http://www.medway.gov.uk,113 1687,http://www.truckschool.co.uk,113 1688,http://schoolsfinder.direct.gov.uk/school-type-explanation/,113 1689,http://research.dwp.gov.uk,113 1690,http://www.espaibarcanova.cat,113 1691,http://www.direct.gov.uk/en/TravelAndTransport/PublicTransport/BusAndCoachTravel/DG_10036264,113 1692,http://www.unemployedtraining.co.uk,113 1693,http://moodle.notredamecoll.ac.uk,113 1694,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Agencyworkersandemploymentagencies/DG_198913,112 1695,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/DG_10039018,112 1696,http://by166w.bay166.mail.live.com,112 1697,http://jobseekers.direct.gov.uk/searchoptionvoluntary.aspx,112 1698,http://www.careerswales.com,112 1699,http://bl163w.blu163.mail.live.com,112 1700,http://forum.football365.com,112 1701,http://www2.kirklees.gov.uk,112 1702,http://www.bdadyslexia.org.uk,111 1703,http://www.scottishpower.co.uk,111 1704,http://m.bing.com,111 1705,http://uk.mc866.mail.yahoo.com,111 1706,http://searchlistonline.com,110 1707,http://www.college-of-law.co.uk,110 1708,http://www.ingeus.co.uk,110 1709,http://dbs02app,110 1710,http://www1.aston.ac.uk,110 1711,http://uk.mc290.mail.yahoo.com,110 1712,http://www.phmotorcycles.co.uk,110 1713,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Makingacourtclaimformoney/index.htm,110 1714,http://dealbd.mystart.com,110 1715,http://www.google.com.ly,110 1716,http://www.ukfibromyalgia.com,110 1717,http://studentfinance-yourfuture.direct.gov.uk/calculate,109 1718,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/start/DG_073804,109 1719,http://www.train4publishing.co.uk,109 1720,http://onlinewizards.nationalarchives.gov.uk:80,109 1721,http://www.studentupdate.manchester.ac.uk,109 1722,http://www.squidoo.com,109 1723,http://www.bcu.ac.uk,109 1724,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/UntaxedVehicle/DG_069727,109 1725,http://www.lancaster.gov.uk,109 1726,http://moodle.godalming.ac.uk,109 1727,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MotoringContacts/DG_192551,109 1728,http://www.tuc.org.uk,108 1729,http://www.aronline.co.uk,108 1730,http://www.nzpost.co.nz,108 1731,http://mail.tools.sky.com,108 1732,http://www.tendringdc.gov.uk,108 1733,http://angliki.info,108 1734,http://www.pipexuk.com,108 1735,http://www.mcr19jw.webspace.virginmedia.com,108 1736,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PlanningForRetirement/DG_10026793,108 1737,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/index.htm,107 1738,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/FinancialHelpForAdultLearners/DG_10033130,107 1739,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/YourMoney/DG_4003043,107 1740,http://87.248.112.8,107 1741,http://yandex.ua,107 1742,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/Preparation/index.htm,107 1743,http://www.westberks.gov.uk,107 1744,http://jobseekers.direct.gov.uk/mybookmarks.aspx,107 1745,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10012438,107 1746,http://www.buckingham.ac.uk,107 1747,http://www.scream.co.uk,107 1748,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/AirTravel/DG_176922,107 1749,http://www.direct.gov.uk/en/TravelAndTransport/Passports/WhoiseligibleforaBritishpassport/index.htm,107 1750,http://uk.mc295.mail.yahoo.com,107 1751,http://www.britishgas.co.uk,107 1752,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/SellingYourHome/DG_10018035,107 1753,http://www.n-somerset.gov.uk,106 1754,http://www.direct.gov.uk/en/Employment/Jobseekers/Helpapplyingforajob/DG_173685,106 1755,http://www.bridgend.gov.uk,106 1756,http://www.rbkc.gov.uk,106 1757,http://www.mabels.org.uk,106 1758,http://www.fool.co.uk,106 1759,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/index.htm,106 1760,http://motinfo.direct.gov.uk/internet/jsp/ECSID-Internet-Status-Request.jsp,106 1761,http://www.nus.org.uk,106 1762,http://www.centrestart.co.uk,106 1763,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinemotoring/DG_197298,106 1764,http://www.theorydrivingtest.co.uk,106 1765,http://ja.wikipedia.org,106 1766,http://www.apprenticeships.org.uk,106 1767,http://www.saas.gov.uk,106 1768,http://www.fifedirect.org.uk,106 1769,http://www.direct.gov.uk/en/Employment/Employees/EmploymentContractsAndConditions/index.htm,106 1770,http://www.teignbridge.gov.uk,105 1771,http://www.westyorksfire.gov.uk,105 1772,http://www.fiatforum.com,105 1773,http://www.fivenights.com,105 1774,http://www.daad.de,105 1775,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applyingforyourfirstadultpassport/DG_174100,105 1776,http://www.techmusicschool.co.uk,105 1777,http://pistonheads.com,105 1778,http://vueemea.pearson.com,105 1779,http://www.bps.org.uk,105 1780,http://travel.state.gov,105 1781,http://www.cccs.co.uk,105 1782,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/WorkingAndPayingTax/index.htm,105 1783,http://www.oca-uk.com,105 1784,http://www.thebiglunch.com,105 1785,http://jobseeker.direct.gov.uk./homepage.aspx,105 1786,http://www.berr.gov.uk,105 1787,http://www.direct.gov.uk/en/Diol1/MotoringDecisionTrees/HowToImportorExportaVehicle/exchange_driving_licence.dsb,105 1788,http://www.elitemotorcycletraining.com,104 1789,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/TrainingAndWorkplaceLearning/index.htm,104 1790,http://www.workingfamilies.org.uk,104 1791,http://divorce.moneyadviceservice.org.uk,104 1792,http://forum.apps.hmrci,104 1793,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/Preparation/DG_10029716,104 1794,http://www.barnsley.gov.uk,104 1795,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/index.htm,104 1796,http://kids.direct.gov.uk/resource_areas/html/MainHomePage.aspx,104 1797,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Bereaved/DG_10018660,104 1798,http://lkcn.net,104 1799,http://www.sgul.ac.uk,104 1800,http://tiger.direct.gov.uk/cgi-bin/maternity.cgi,103 1801,http://www.superquote.com,103 1802,http://www.tameside.ac.uk,103 1803,http://jobseekers.direct.gov.uk/locationmenulevel2.aspx,103 1804,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/LearningToDriveOrRide/index.htm,103 1805,http://www.sagazone.co.uk,103 1806,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Expectingorbringingupchildren/DG_175917,103 1807,http://www.4wheelz.co.uk,103 1808,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/DG_10027189,103 1809,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/RegisteringAVehicle/DG_4022310,103 1810,http://www.direct.gov.uk/en/CaringForSomeone/CareHomes/index.htm,102 1811,http://www.lawsociety.org.uk,102 1812,http://www.centralbedfordshire.gov.uk,102 1813,http://www.sandwell.gov.uk,102 1814,http://www.london.nhs.uk,102 1815,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/StatePensiondeferral/DG_10027570,102 1816,http://www.southampton.ac.uk,102 1817,http://firekills.direct.gov.uk/materials.html,102 1818,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BenefitFraud/index.htm,102 1819,http://fr.search.yahoo.com,102 1820,http://www.rugby.gov.uk,102 1821,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/Parentalleaveandpay/DG_10029398,102 1822,http://portal.iefp.pt,102 1823,http://www.direct.gov.uk/en/Motoring/PersonalisedRegAndNumberPlates/DG_4022575,102 1824,http://whyletdrinkdecide.direct.gov.uk/index.html,102 1825,http://talktalk.search.aol.co.uk,102 1826,http://www.buckscc.gov.uk,101 1827,http://be.bing.com,101 1828,http://www.bexley.gov.uk,101 1829,http://undergraduate.bpp.com,101 1830,http://www.bikesafe.co.uk,101 1831,http://www.midsussex.gov.uk,101 1832,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011368,101 1833,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/TheoryTest/DG_4022531,101 1834,http://smallsteps4life.direct.gov.uk/en/index.aspx,101 1835,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Disciplinaryprocedures/index.htm,101 1836,http://www.findlaw.co.uk,101 1837,http://archive.defra.gov.uk,101 1838,http://www.reigate-banstead.gov.uk,101 1839,http://www.rospa.com,101 1840,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Redundancy/DG_10029835,100 1841,http://www.arrse.co.uk,100 1842,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Volunteering/index.htm,100 1843,http://www.mortgages.co.uk,100 1844,http://shine,100 1845,http://www.emigravimas.lt,100 1846,http://cms.walsall.gov.uk,100 1847,http://www.cambridgedrivingschool.net,100 1848,http://www.aberdeencity.gov.uk,100 1849,http://www.direct.gov.uk/en/Motoring/DriverLicensing/WhatCanYouDriveAndYourObligations/DG_4022498,100 1850,http://www.doubleglazinggrants.co.uk,100 1851,http://www.immi.gov.au,99 1852,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_197517,99 1853,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/ArrangingHealthAndSocialCare/DG_4000436,99 1854,http://mail.tlen.pl,99 1855,http://startpage.com,99 1856,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Workexperienceandvolunteering/DG_066207,99 1857,http://www.direct.gov.uk/en/CaringForSomeone/MoneyMatters/index.htm,99 1858,http://www.direct.gov.uk/en/YoungPeople/Money/FinancialHelpForYoungPeople/DG_10027506,99 1859,http://www.camrider.com,99 1860,http://www.ukperformingarts.co.uk,99 1861,http://www.employmenttribunals.gov.uk,99 1862,http://www.moneywise.co.uk,99 1863,http://www.autism.org.uk,98 1864,http://us.search.yahoo.com,98 1865,http://www.rslcontent.co.uk,98 1866,http://www.direct.gov.uk/en/Parents/ChildMaintenance/Arrangingchildmaintenance/DG_199174,98 1867,http://www.direct.gov.uk/en/Motoring/DriverLicensing/WhatCanYouDriveAndYourObligations/DG_10022623,98 1868,http://www.direct.gov.uk/en/Employment/Employees/Flexibleworking/DG_10027738,98 1869,http://www.caerphilly.gov.uk,98 1870,http://www.anglesey.gov.uk,98 1871,http://forums.pepipoo.com,97 1872,http://www.peoplemanagement.co.uk,97 1873,http://www.herefordshire.gov.uk,97 1874,http://www.renfrewshire.gov.uk,97 1875,http://www.praca.org.uk,97 1876,http://www.bvsf.org.uk,97 1877,http://www.eppingforestdc.gov.uk,97 1878,http://campaigns.direct.gov.uk/fireworkssafety/index.html,97 1879,http://www.jobcentreplus.org,97 1880,http://es.search.yahoo.com,96 1881,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_069498,96 1882,http://www.goodtoknow.co.uk,96 1883,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/WhyGoToUniversityOrCollege/DG_4017026,96 1884,http://www.wymetro.com,96 1885,http://www.carlisle.gov.uk,96 1886,http://www.southern-electric.co.uk,96 1887,http://www.aceridertraining.co.uk,96 1888,http://www.preston.gov.uk,96 1889,http://www.legalbeagles.info,96 1890,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/DG_173931,96 1891,http://russellgroup.ac.uk,96 1892,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_171309,96 1893,http://bristol24.pl,96 1894,http://www.direct.gov.uk/en/Employment/HealthAndSafetyAtWork/DG_4016686,96 1895,http://www.mountview.org.uk,96 1896,http://www.norwich.pl,96 1897,http://portal,95 1898,http://www.ceredigion.gov.uk,95 1899,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnPropertyAndRentalIncome/DG_4017804,95 1900,http://www.jobcentreplus.org.uk,95 1901,http://172.16.0.52,95 1902,http://www.chroniclelive.co.uk,95 1903,http://www.downs-syndrome.org.uk,95 1904,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017560,95 1905,http://www.royalcaribbean.co.uk,95 1906,http://customs.hmrc.gov.uk,95 1907,http://ixquick.com,95 1908,http://www.blurtit.com,95 1909,http://abta.com,95 1910,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/CourtClaimsAndBankruptcy/DG_10023133,95 1911,http://www.motorhomefacts.com,94 1912,http://www.uggaustralia.co.uk,94 1913,http://www.ucs.ac.uk,94 1914,http://www.uwl.ac.uk,94 1915,http://search.hiyo.com,94 1916,http://www.direct.gov.uk/en/Employment/Employees/Timeoffandholidays/DG_073741,94 1917,http://www.dda-compliant.com,94 1918,http://www.webcrawler.com,94 1919,http://www.fife.gov.uk,94 1920,http://www.direct.gov.uk/en/Governmentcitizensandrights/GettingLegalAdvice/Gettinglegaladviceandlegalaid/index.htm,94 1921,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/PlanningPermission/DG_4018203,94 1922,http://us.mg1.mail.yahoo.com,94 1923,http://www.nhsemployers.org,94 1924,http://www.expat-blog.com,94 1925,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Makingacourtclaimformoney/DG_195639,94 1926,http://www.falkirk.gov.uk,94 1927,http://insidelbr,93 1928,http://www.standardlife.co.uk,93 1929,http://www.linkedin.com,93 1930,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applicationinformation/DG_174154,93 1931,http://search.speedbit.com,93 1932,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_183754,93 1933,http://www.sefton.gov.uk,93 1934,http://motinfo.direct.gov.uk/internet/jsp/ECHID-Internet-History-Request.jsp,93 1935,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingdecisionsforsomeoneelse/DG_176210,93 1936,http://www.bolton.ac.uk,93 1937,http://www.deedpoll.org.uk,93 1938,http://www.direct.gov.uk/en/Motoring/PersonalisedRegAndNumberPlates/DG_4022573,93 1939,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/Preparation/DG_10029802,93 1940,http://www.helpingldrivers.com,93 1941,http://libra.lcd.gsi.gov.uk,93 1942,http://www.google.gm,93 1943,http://www.webuyanycar.com,93 1944,http://www.direct.gov.uk/en/Nl1/Newsroom/Features/DG_WP199639,93 1945,http://www.wykop.pl,92 1946,http://www.singhor.com,92 1947,http://in.mg50.mail.yahoo.com,92 1948,http://jobseeker.direct.gov.uk./listjob.aspx,92 1949,http://www.london2012.com,92 1950,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/AdviceOnBuyingAndSellingAVehicle/DG_4022402,92 1951,http://www.nato.int,92 1952,http://www.nhsggc.org.uk,92 1953,http://www.aber.ac.uk,92 1954,http://jobseekers.direct.gov.uk/registrationupdate.aspx,92 1955,http://www2.essex.ac.uk,92 1956,http://www.alzheimers.org.uk,92 1957,http://consumers.ofcom.org.uk,92 1958,http://www.surrey.police.uk,91 1959,http://search.toolbars.alexa.com,91 1960,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuyingYourHome/index.htm,91 1961,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_196239,91 1962,http://www.essex.ac.uk,91 1963,http://chslive,91 1964,http://moneyadviceservice.org.uk,91 1965,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_10021376,91 1966,http://forum.caithness.org,91 1967,http://jobseekers.direct.gov.uk/UnexpectedError.aspx,90 1968,http://www.kirklees.gov.uk,90 1969,http://humanresources.intra.bt.com,90 1970,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MoneyTaxAndBenefitsContacts/DG_10026920,90 1971,http://answers.fancyacar.co.uk,90 1972,http://www.malaysia-today.net,90 1973,http://www.hants.gov.uk,90 1974,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Tenancies/DG_189120,90 1975,http://www.xperthr.co.uk,90 1976,http://forum.moneysavingexpert.com,90 1977,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Inretirement/DG_10018668,90 1978,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/LifeAtUniversityOrCollege/DG_071488,90 1979,http://www.impactdrivingschool.co.uk,90 1980,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/DG_181268,89 1981,http://dptac.independent.gov.uk,89 1982,http://careers.glam.ac.uk,89 1983,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/index.htm,89 1984,http://www.huntersnet.co.uk,89 1985,http://www.stockport.gov.uk,89 1986,http://www.zasilkianglia.com,89 1987,http://london.sae.edu,89 1988,http://www.barnardos.org.uk,89 1989,http://www.middlesbrough.gov.uk,89 1990,http://intranet.aware.mps,89 1991,http://www.reachoutuk.org,89 1992,http://fsmail01.orange.co.uk,89 1993,http://infozone,89 1994,http://www.starnow.co.uk,89 1995,http://www.cannockchasedc.gov.uk,88 1996,http://www.eastrenfrewshire.gov.uk,88 1997,http://www.myannuityplan.co.uk,88 1998,http://www.gedling.gov.uk,88 1999,http://www.propertyinvestmentproject.co.uk,88 2000,http://www.getsafeonline.org,88 2001,http://www.widowspension.org.uk,88 2002,http://schoolsfinder.direct.gov.uk/search-results/,88 2003,http://www.thompsons.law.co.uk,88 2004,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MotoringContacts/DG_192550,88 2005,http://www.yourmortgage.co.uk,88 2006,http://www.ukhca.co.uk,88 2007,http://searchlistsite.com,88 2008,http://ppcworldwide5.com,88 2009,http://www.fitlads.net,88 2010,http://internacional.universia.net,87 2011,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/index.htm,87 2012,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_199272,87 2013,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/StudentsFromOtherEUCountries/DG_065322,87 2014,http://www.harvesthousing.org.uk,87 2015,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/index.htm,87 2016,http://london.angloinfo.com,87 2017,http://www.direct.gov.uk/en/EducationAndLearning/14To19/OptionsAt16/DG_4001327,87 2018,http://www.realassurance.org.uk,87 2019,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/RegisteringAVehicle/DG_4022316,87 2020,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_066514,87 2021,http://w3.yorksj.ac.uk,87 2022,http://www.tandridge.gov.uk,87 2023,http://www.disabilityuk.com,87 2024,http://www.litrg.org.uk,87 2025,http://www.speed-trap.co.uk,87 2026,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Caringforsomeone/DG_10012547,86 2027,http://www.firebrandtraining.co.uk,86 2028,http://forum.alzheimers.org.uk,86 2029,http://www3.lancashire.gov.uk,86 2030,http://betterfuture.direct.gov.uk/near-retirement.html,86 2031,http://search.freeze.com,86 2032,http://www.ladyinter.com,86 2033,http://www.thanet.gov.uk,86 2034,http://www.northdevon.gov.uk,86 2035,http://www.rgu.ac.uk,86 2036,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/Preparation/DG_10029468,86 2037,http://www.ipswich.gov.uk,86 2038,http://kb.infoservers.co.uk,86 2039,http://www.sogou.com,86 2040,http://www.thinkinsulation.co.uk,86 2041,http://thesearchingstar.org,85 2042,http://www.dundee.ac.uk,85 2043,http://co118w.col118.mail.live.com,85 2044,http://www.ilex.org.uk,85 2045,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/Passplusdrivingcoursefornewdrivers/DG_4022426,85 2046,http://www.universal.edu.gr,85 2047,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018661,85 2048,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MoneyTaxAndBenefitsContacts/index.htm,85 2049,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_4022040,85 2050,http://www.ipo.gov.uk,85 2051,http://www.moneymatterstome.co.uk,85 2052,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Redundancy/DG_10029832,85 2053,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/Yourvehicleandlicence/DG_10028003,84 2054,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Disciplinaryprocedures/DG_10028111,84 2055,http://www.dyslexic.com,84 2056,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_175843,84 2057,http://www.jobsite.co.uk,84 2058,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@employ/documents/digitalasset/dg_177260.pdf,84 2059,http://www.dundeecity.gov.uk,84 2060,http://srve.red24.info,84 2061,http://www.parliament.uk,84 2062,http://www.fasttrack2pass.co.uk,84 2063,http://fr.wikipedia.org,84 2064,http://www.charity-commission.gov.uk,84 2065,http://csc.do-it-online.org.uk,83 2066,http://www.ccmb.co.uk,83 2067,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/index.htm,83 2068,http://www.chrysaliscourses.co.uk,83 2069,http://www.baesystemspensions.com,83 2070,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/DG_176235,83 2071,http://alpha.gov.uk,83 2072,http://www.healthystart.nhs.uk,83 2073,http://vbulletin.thesite.org,83 2074,http://bl149w.blu149.mail.live.com,83 2075,http://www.bedford.gov.uk,83 2076,http://maps.direct.gov.uk/LDGRedirect/MapAction.do,83 2077,http://www.drivercpc.org,83 2078,http://www.preloved.co.uk,83 2079,http://www.direct.gov.uk/en/Employment/Employees/Flexibleworking/index.htm,83 2080,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/FireSafety/index.htm,82 2081,http://intralink-staging.link2.gpn.gov.uk,82 2082,http://www.mkweb.co.uk,82 2083,http://jobseekers.direct.gov.uk/MySavedSearches.aspx,82 2084,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/FireSafety/DG_064665,82 2085,http://parents.vodafone.com,82 2086,http://helpforum.sky.com,82 2087,http://www.workonlineathome.co.uk,82 2088,http://fsmail03.orange.co.uk,82 2089,http://start.toshiba.com,82 2090,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Energyperformancecertificates/DG_177026,82 2091,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_172014,82 2092,http://www.saga.co.uk,82 2093,http://www.google.com.uy,81 2094,http://fsmail02.orange.co.uk,81 2095,http://pensions-service.direct.gov.uk/en/cold-weather-payment/home.asp,81 2096,http://malaysia-today.net,81 2097,http://www.klc.co.uk,81 2098,http://www.fconet.fco.gov.uk,81 2099,http://search.pimpmyhomepage.com,81 2100,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017811,81 2101,http://www.barclays.co.uk,81 2102,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Gettingadivorce/DG_193735,81 2103,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/Preparation/DG_10029800,81 2104,http://www.google.com.ai,81 2105,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Employmenttribunals/DG_10028122,81 2106,http://www.metacrawler.com,81 2107,http://co108w.col108.mail.live.com,80 2108,http://www.bizplenty.com,80 2109,http://lccintranet2,80 2110,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_4018844,80 2111,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/DG_073802,80 2112,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ChoosingASchool/DG_10038421,80 2113,http://www.direct.gov.uk/en/Employment/Employees/EmploymentContractsAndConditions/DG_10027521,80 2114,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/PersonalPensions/index.htm,80 2115,http://www.bradford.ac.uk,80 2116,http://moneytothemasses.com,80 2117,http://hootsuite.com,80 2118,http://liveandworkin.eu,80 2119,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/BringinggoodsorcashintotheUK/index.htm,80 2120,http://www.johnexley.co.uk,80 2121,http://www.livingmadeeasy.org.uk,80 2122,http://www.smuc.ac.uk,80 2123,http://cancerhelp.cancerresearchuk.org,80 2124,http://www.poloniusz.pl,80 2125,http://campaigns2.direct.gov.uk/money4mum2be/en//index.html,80 2126,http://epetitions.direct.gov.uk/,80 2127,http://dsaintranet,80 2128,http://www.robinsandday.co.uk,80 2129,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/FinancialHelpForAdultLearners/DG_10033133,79 2130,http://www3.open.ac.uk,79 2131,http://www.kevtownsendschoolofmotoring.co.uk,79 2132,http://www.thamesvalley.police.uk,79 2133,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ChoosingASchool/DG_10038420,79 2134,http://ukincanada.fco.gov.uk,79 2135,http://www.direct.gov.uk/en/Employment/Employees/Timeoffandholidays/DG_10037655,79 2136,http://www.teacherspensions.co.uk,79 2137,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/ImportingAndExportingAVehicle/DG_4022583,79 2138,http://www.statutorymaternitypay.com,79 2139,http://community.ebay.co.uk,79 2140,http://local.direct.gov.uk/LDGRedirect/MapLocationSearch.do,79 2141,http://f.kafeteria.pl,79 2142,http://www.watford.gov.uk,79 2143,http://www.maec.es,79 2144,http://www.uk.emb-japan.go.jp,79 2145,http://www.foundationyears.org.uk,79 2146,http://www.protectedsearch.com,79 2147,http://www.somerset.gov.uk,79 2148,http://www.bikeriteuk.com,79 2149,http://www.spelthorne.gov.uk,79 2150,http://intralink-staging,79 2151,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/16to19bursary/DG_066955,79 2152,http://moneysense.natwest.com,79 2153,http://www.gosport.gov.uk,79 2154,http://www.wealden.gov.uk,78 2155,http://forum.wordreference.com,78 2156,http://www.directgov.net,78 2157,http://money.glam.ac.uk,78 2158,http://www.offeroasis.co.uk,78 2159,http://www.google.com.,78 2160,http://www.direct.gov.uk/en/Parents/ParentsRights/DG_4002954,78 2161,http://uk.mc867.mail.yahoo.com,78 2162,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/IntroductiontoNationalInsurance/index.htm,78 2163,http://www.totalfrance.com,78 2164,http://www.consumerdirect.gov.uk,78 2165,http://www.nursefindersuk.com,78 2166,http://www.youreable.com,78 2167,http://www.epsom-ewell.gov.uk,78 2168,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Loststolenordamagedpassports/index.htm,78 2169,http://www.direct.gov.uk/en/Motoring/Driverlicensing/DrivingInGbOnAForeignLicence/index.htm,78 2170,http://www.connexions-hw.org.uk,78 2171,http://www.chichester.ac.uk,78 2172,http://www.galaxy.bedfordshire.gov.uk,78 2173,http://matyasesmelinda.hu,78 2174,http://webmail.barton.ac.uk,78 2175,http://www.studential.com,78 2176,http://www.direct.gov.uk/en/Motoring/DriverLicensing/EndorsementsAndDisqualifications/DG_4022490,77 2177,http://www.direct.gov.uk/en/Environmentandgreenerliving/index.htm,77 2178,http://www.fatherhoodinstitute.org,77 2179,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyD/DG_172559,77 2180,http://www.carmarthenshire.gov.uk,77 2181,http://www.passyourtheory.org.uk,77 2182,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applyingforyourfirstadultpassport/DG_174098,77 2183,http://money.aol.co.uk,77 2184,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/AdditionalStatePension/DG_4017827,77 2185,http://hk.bing.com,77 2186,http://search.hp.my.aol.com,77 2187,http://www.newman.ac.uk,77 2188,http://www.cml.org.uk,77 2189,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Pregnancyandmaternityrights/DG_175088,77 2190,http://www.google.com.gt,76 2191,http://www.royalmail.com,76 2192,http://www.rutalk.co.uk,76 2193,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Mentalcapacityandplanningahead/DG_185921,76 2194,http://www.cukas.ac.uk,76 2195,http://www.google.com.bo,75 2196,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_186249,75 2197,http://www.google.je,75 2198,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnSavingsAndInvestments/index.htm,75 2199,http://www.direct.gov.uk/en/EducationAndLearning/14To19/OptionsAt16/index.htm,75 2200,http://www.ucreative.ac.uk,75 2201,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/YourHome/DG_4000642,75 2202,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Beingstoppedorarrestedbythepolice/index.htm,75 2203,http://www.justanswer.com,75 2204,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_170934,75 2205,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_171504,75 2206,http://www.northlanarkshire.gov.uk,75 2207,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10017715,75 2208,http://www.southernrailway.com,75 2209,http://www.housepricecrash.co.uk,74 2210,http://www.protocol-education.com,74 2211,http://www.sxoc.com,74 2212,http://forum.landrovernet.com,74 2213,http://runpeu01,74 2214,http://www.nelincs.gov.uk,74 2215,http://www.direct.gov.uk/en/Dl1/Directories/Localcouncils/DG_4003647,74 2216,http://www.fsa.gov.uk,74 2217,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxcodes/index.htm,74 2218,http://forum.chemodan.ua,74 2219,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/DG_10033053,74 2220,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/AdviceOnBuyingAndSellingAVehicle/DG_4022403,74 2221,http://www.familyfund.org.uk,74 2222,http://www.ernestjones.co.uk,74 2223,http://www.highpeak.gov.uk,74 2224,http://www.rootschat.com,74 2225,http://www.direct.gov.uk/cy/CrimeJusticeAndTheLaw/index.htm,74 2226,http://www.studiazagranica.pl,74 2227,http://www.moray.gov.uk,73 2228,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Yourconsumerrightswhenbuyinggoodsandservices/index.htm,73 2229,http://www.bikeradar.com,73 2230,http://forum.magicmaman.com,73 2231,http://search.mail.com,73 2232,http://motinfo.direct.gov.uk/internet/servlet/ECHIDDispatcher,73 2233,http://www.hefce.ac.uk,73 2234,http://www.misterwhat.co.uk,73 2235,http://uk.mc863.mail.yahoo.com,73 2236,http://uk.mc864.mail.yahoo.com,73 2237,http://www.nyfa.edu,73 2238,http://www.direct.gov.uk/en/Motoring/DriverLicensing/DrivingInGbOnAForeignLicence/DG_4022556,73 2239,http://www.ashford.gov.uk,73 2240,http://www.visitengland.com,73 2241,http://www.as.bham.ac.uk,73 2242,http://www.cumbria.ac.uk,73 2243,http://www.highland.gov.uk,73 2244,http://www.workways.org.uk,73 2245,http://www.eastsiderider.co.uk,73 2246,http://www.lloydstsb.com,73 2247,http://www.huggiesclub.co.uk,73 2248,http://www.welcometoherefordshire.com,73 2249,http://www.dyslexiaaction.org.uk,73 2250,http://www.home-link.org.uk,73 2251,http://www.payplan.com,73 2252,http://bl166w.blu166.mail.live.com,72 2253,http://search.pch.com,72 2254,http://www.kings.cam.ac.uk,72 2255,http://insite.netr.kent.police.uk,72 2256,http://directgov.net,72 2257,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applicationinformation/DG_174359,72 2258,http://www.lse.co.uk,72 2259,http://www.aylesburyvaledc.gov.uk,72 2260,http://whatever,72 2261,http://www.google.im,72 2262,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Gettingstarted/DG_171574,72 2263,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Dismissal/DG_10026619,72 2264,http://www.cqc.org.uk,72 2265,http://www.direct.gov.uk/en/Employment/Employees/Timeoffandholidays/DG_10034711,72 2266,http://www.direct.gov.uk/en/CaringForSomeone/CaringForADisabledChild/index.htm,72 2267,http://buyerbeware.direct.gov.uk/car/index.html,72 2268,http://www.surepassdrivingschool.com,72 2269,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/DG_10039026,72 2270,http://www.direct.gov.uk/en/Employment/Employees/WorkingHoursAndTimeOff/DG_10028439,72 2271,http://bl143w.blu143.mail.live.com,72 2272,http://www.lincoln.ac.uk,72 2273,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Howtocomplainaboutgoodsandservices/DG_196096,72 2274,http://www.zipcar.com,72 2275,http://alpacorn.forestry.gov.uk:7777,71 2276,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnSavingsAndInvestments/DG_4016453,71 2277,http://www.connexions-leics.org,71 2278,http://insight.eastriding.gov.uk,71 2279,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/NoiseNuisanceAndLitter/DG_10029682,71 2280,http://www.parkinsons.org.uk,71 2281,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/StudentsFromOtherEUCountries/DG_10035219,71 2282,http://www.lawontheweb.co.uk,71 2283,http://www.bathnes.gov.uk,71 2284,http://www.tescobank.com,71 2285,http://www.lsmdriving.net,71 2286,https://encrypted.google.com,71 2287,http://www.churchsafe.org.uk,71 2288,http://www.emano.co.uk,71 2289,http://www.scarborough.gov.uk,71 2290,http://www.genuki.org.uk,71 2291,http://info,71 2292,http://www.thestage.co.uk,71 2293,http://www.st-andrews.ac.uk,71 2294,http://www.driveractive.com,70 2295,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/RidingMotorcyclesAndMopeds/DG_4022568,70 2296,http://www.ticketsoup.com,70 2297,http://think.direct.gov.uk/fatigue.html,70 2298,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/index.htm,70 2299,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuyingYourHome/DG_10026643,70 2300,http://www.northnorfolk.org,70 2301,http://es.ask.com,70 2302,http://www.edrivingsolutions.com,70 2303,http://www.fulbright.co.uk,70 2304,http://www.levenvalleydrivingschool.co.uk,70 2305,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017717,70 2306,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/Governmentcitizensandrightscontacts/DG_195356,70 2307,http://www.peterborough.gov.uk,70 2308,http://www.visordown.com,70 2309,http://www.daventrydc.gov.uk,70 2310,http://ronsrants.wordpress.com,70 2311,http://www.dfid.gov.uk,70 2312,http://www.lancs.ac.uk,69 2313,http://www.mfa.gov.hu,69 2314,http://www.theory-test.co.uk,69 2315,http://www.homeconnections.org.uk,69 2316,http://www.citizensadvice.org.uk,69 2317,http://www.google.com.sv,69 2318,http://www.guildforddrivinglessons.co.uk,69 2319,http://firekills.direct.gov.uk/leaflets.html,69 2320,http://www.focusondisability.org.uk,69 2321,http://www.civvystreet.org,69 2322,http://conversation.which.co.uk,69 2323,http://www.magyaroklondonban.com,69 2324,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10012424,69 2325,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010857,69 2326,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/PlanningYourPersonalFinances/DG_10013916,69 2327,http://www.vision2learn.com,69 2328,http://bl139w.blu139.mail.live.com,69 2329,http://uk.mc285.mail.yahoo.com,69 2330,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Buyingacar-yourconsumerrights/DG_183047,69 2331,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/DG_181951,68 2332,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/esa/index.htm,68 2333,http://www.tribunals.gov.uk,68 2334,http://www.wpm-training.co.uk,68 2335,http://www.rhul.ac.uk,68 2336,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017782,68 2337,http://www.harrogate.gov.uk,68 2338,http://www.ba-auslandsvermittlung.de,68 2339,http://www.fas.org,68 2340,http://www.castingcallpro.com,68 2341,http://www.eastdunbarton.gov.uk,68 2342,http://www.pensionsorter.co.uk,68 2343,http://co101w.col101.mail.live.com,68 2344,http://www.raf.mod.uk,68 2345,http://www.ppltraining.co.uk,68 2346,http://apps.southend.gov.uk,68 2347,http://www.maidstone.gov.uk,68 2348,http://bl120w.blu120.mail.live.com,68 2349,http://www.aat.org.uk,67 2350,http://www.mail.o2.co.uk,67 2351,http://unistats.direct.gov.uk/searchResults.do,67 2352,http://de.flybe.com,67 2353,http://www.emplaw.co.uk,67 2354,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_192415,67 2355,http://www.freegive.co.uk,67 2356,http://studentzone.roehampton.ac.uk,67 2357,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MotoringContacts/DG_069953,67 2358,http://www.study-media.com,67 2359,http://intranet.liv-stu.co.uk,67 2360,http://www.gbritain.net,67 2361,http://www.home-options.org,67 2362,http://www.winchester.gov.uk,67 2363,http://www.covcollege.ac.uk,67 2364,http://by167w.bay167.mail.live.com,67 2365,http://lbg.intranet.group,66 2366,http://www.phoenixtrainingonline.co.uk,66 2367,http://www.trooping-the-colour.co.uk,66 2368,http://www.findaproperty.com,66 2369,http://search.hmprisonservice.gov.uk,66 2370,http://www.direct.gov.uk/en/TravelAndTransport/Knowyourtrafficsigns/index.htm,66 2371,http://www.essexstudent.com,66 2372,http://schoolsfinder.direct.gov.uk/,66 2373,http://startgoogle.startpagina.nl,66 2374,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/WorkingAndPayingTax/DG_10010537,66 2375,http://thebrighterenergydebate.npower.com,66 2376,http://www.hampshire.police.uk,66 2377,http://portal.mpsv.cz,66 2378,http://www.internal.wrexham.gov.uk,66 2379,http://www.royalnavy.mod.uk,66 2380,http://www.cpfc.org,66 2381,http://www.fireservice.co.uk,66 2382,http://www.strath.ac.uk,65 2383,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_171891,65 2384,http://www.hud.ac.uk,65 2385,http://www.pointblanklondon.com,65 2386,http://www.direct.gov.uk/en/Motoring/DriverLicensing/CaravansTrailersCommercialVehicles/index.htm,65 2387,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Paternityrightsintheworkplace/index.htm,65 2388,http://www.rother.gov.uk,65 2389,http://www.ponaehalitut.co.uk,65 2390,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Agencyworkersandemploymentagencies/DG_10027514,65 2391,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/VAT/DG_190918,65 2392,http://www.dti.gov.uk,65 2393,http://www.ableskills.co.uk,65 2394,http://www.totaljobs.com,65 2395,http://www.chesterfield.gov.uk,65 2396,http://www.devonhomechoice.com,65 2397,http://oneswindon,65 2398,http://forum.autonews.ru,65 2399,http://www.rcn.org.uk,65 2400,http://pcdl.ypla.gov.uk,65 2401,http://www.smu.ac.uk,65 2402,http://www.direct.gov.uk/en/Employment/Employees/Pay/DG_10027228,65 2403,http://search.lycos.co.uk,65 2404,http://www.tomorrowsengineers.org.uk,64 2405,http://www.connexionskentandmedway.co.uk,64 2406,http://www.lgo.org.uk,64 2407,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/DebtsAndArrears/DG_10013093,64 2408,http://bucks.ac.uk,64 2409,http://www.aepmotorcycletraining.com,64 2410,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/DG_4002951,64 2411,http://www.direct.gov.uk/en/Employment/Employees/EmploymentContractsAndConditions/DG_10037109,64 2412,http://uk.mc861.mail.yahoo.com,64 2413,http://www.e-careers.com,64 2414,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/Childrenandtaxcredits/DG_172851,64 2415,http://www.rhondda-cynon-taf.gov.uk,64 2416,http://finduc.com,64 2417,http://www.wycombe.gov.uk,64 2418,http://www.tfl.gov.uk,64 2419,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/DiscriminationAtWork/DG_10026557,64 2420,http://www.wandptraining.co.uk,64 2421,http://www.fassit.co.uk,64 2422,http://cornwall.childrensservicedirectory.org.uk,64 2423,http://defenceintranet.diiweb.r.mil.uk,64 2424,http://www.worthing.gov.uk,64 2425,http://www.lamda.org.uk,64 2426,http://www.charter.net,64 2427,http://www.suffolkcoastal.gov.uk,63 2428,http://www.staffordbc.gov.uk,63 2429,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/Signsandmarkings/index.htm,63 2430,http://www.clubpolo.co.uk,63 2431,http://geton.direct.gov.uk/what-to-do-next.html,63 2432,http://www.keepbritaintidy.org,63 2433,http://www.easyexpat.com,63 2434,http://fr.flybe.com,63 2435,http://intraweb,63 2436,http://www.nhsbsa.nhs.uk,63 2437,http://www.direct.gov.uk/en/Employment/HealthAndSafetyAtWork/DG_4016683,63 2438,http://uk.mc249.mail.yahoo.com,63 2439,http://www.direct-gov.co.uk,63 2440,http://www.cardiffhousing.co.uk,63 2441,http://www.ehow.co.uk,63 2442,http://www.napier.ac.uk,63 2443,http://fordtransit.org,63 2444,http://www.startlap.hu,63 2445,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/entitlement/DG_073939,63 2446,http://www.enjoyengland.com,63 2447,http://search.kiwee.com,63 2448,http://www.direct.gov.uk/en/Hl1/Help/DG_170904,63 2449,http://www.staffsmoorlands.gov.uk,63 2450,http://website,63 2451,http://www.judiciary.gov.uk,63 2452,http://www.1stopinstruction.com,63 2453,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/WhatToDoAfterADeath/DG_10029642,63 2454,http://blogs.independent.co.uk,63 2455,http://www.lincoln.gov.uk,63 2456,http://intranet.uk.liberata.net,63 2457,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyD/DG_174546,63 2458,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyD/DG_174531,62 2459,http://vshare.toolbarhome.com,62 2460,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BeginnersGuideToBenefits/DG_10021388,62 2461,http://www.direct.gov.uk/en/Hl1/Help/index.htm,62 2462,http://www.direct.gov.uk/en/Employment/Jobseekers/Helpapplyingforajob/DG_173634,62 2463,http://www.disability-grants.org,62 2464,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Parentalleaveandflexibleworking/index.htm,62 2465,http://www.brightoncentre.co.uk,62 2466,http://www.speedingfinesuk.co.uk,62 2467,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011328,62 2468,http://forumprawne.org,62 2469,http://www.brad.ac.uk,62 2470,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/DG_10011816,62 2471,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/Voluntarycontributionsandtoppingup/DG_190077,62 2472,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Migrantworkers/DG_10026524,62 2473,http://isearch.whitesmoke.com,62 2474,http://www.thecompanywarehouse.co.uk,62 2475,http://hataratkelo.postr.hu,62 2476,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_180321,62 2477,http://www.ftejerez.com,62 2478,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Working/WorkingToSuitYou/DG_184309,62 2479,http://www.sbs.ox.ac.uk,61 2480,http://thehub.cardiff.gov.uk,61 2481,http://www.direct.gov.uk/en/Parents/childmaintenance/Arrangingchildmaintenance/index.htm,61 2482,http://www.driveneale.co.uk,61 2483,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/IntroductiontoIncomeTax/DG_078825,61 2484,http://www.yourworkhealth.com,61 2485,http://www.passfast.com,61 2486,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/index.htm,61 2487,http://www.visitscotland.com,61 2488,http://www.direct.gov.uk/en/Motoring/DriverLicensing/WhatCanYouDriveAndYourObligations/DG_4022548,61 2489,http://www.scope.org.uk,61 2490,http://www.poole.gov.uk,61 2491,http://noiromani.co.uk,61 2492,http://www.google.co.ls,61 2493,http://www.direct.gov.uk/en/Employment/Jobseekers/JobsAndCareers/DG_073364,61 2494,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BenefitFraud/DG_10014876,61 2495,http://www.thecentralcolleges.co.uk,61 2496,http://www.skill.org.uk,61 2497,http://www.direct.gov.uk/cy/Diol1/DoItOnline/Statepension/DG_189286CY,61 2498,http://www.britishservices.co.uk,61 2499,http://www.midsuffolk.gov.uk,61 2500,http://www.connexions-berkshire.org.uk,61 2501,http://cn.bing.com,61 2502,http://www.pohyby.co.uk,61 2503,http://images.google.com,61 2504,http://bbs.scoobynet.com,61 2505,http://london.londinium.com,61 2506,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_10018978,61 2507,http://www.mtin.es,61 2508,http://thesearchingstar.com,61 2509,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/PersonalPensions/DG_4017726,61 2510,http://forums.contractoruk.com,60 2511,http://portal.sheffield-school.com,60 2512,http://www.boards.ie,60 2513,http://www.viessmann.co.uk,60 2514,http://faccreg.thefa.com,60 2515,http://www.pomsinoz.com,60 2516,http://www.lonelyplanet.com,60 2517,http://www.canuckabroad.com,60 2518,http://bigentertainmentfinder.com,60 2519,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/FireSafety/DG_071751,60 2520,http://www.direct.gov.uk/en/Employment/HealthAndSafetyAtWork/DG_10026579,60 2521,http://www.direct.gov.uk/en/Employment/Employees/Timeoffandholidays/DG_10026555,60 2522,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SchoolLife/index.htm,60 2523,http://benefity.org.uk,60 2524,http://londyn.gazeta.pl,60 2525,http://www.worcester.gov.uk,60 2526,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_10034866,60 2527,http://www.enbschool.org.uk,60 2528,http://www.getconnectedsheffield.com,60 2529,http://www.gsi.gov.uk,60 2530,http://www.north-herts.gov.uk,60 2531,http://www.youthspace.haringey.gov.uk,60 2532,http://www.mstrust.org.uk,60 2533,http://bl135w.blu135.mail.live.com,60 2534,http://diffstrokes.webfactional.com,59 2535,http://www.inbox.com,59 2536,http://www.fressingfieldmedicalcentre.co.uk,59 2537,http://www.thamesdiamondjubileepageant.org,59 2538,http://www.dart-tag.co.uk,59 2539,http://www.mansionstudent.co.uk,59 2540,http://www.artsed.co.uk,59 2541,http://www.quoterack.co.uk,59 2542,http://www.licencecheck.co.uk,59 2543,http://autopedia.com,59 2544,http://www.britishexpatsdirectory.com,59 2545,http://www.anqdevelopment1-linux.co.uk,59 2546,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/DG_10039028,59 2547,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/DG_10039031,59 2548,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017800,59 2549,http://malaysia.search.yahoo.com,59 2550,http://clc2.uniservity.com,59 2551,http://www.tripadvisor.co.uk,59 2552,http://www.thefa.com,59 2553,http://www.northumberland.ac.uk,59 2554,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Mortgagesandrepossessions/index.htm,59 2555,http://www.rootsireland.ie,59 2556,http://www.rba.co.uk,59 2557,http://www.campervanlife.com,59 2558,http://www.southribble.gov.uk,59 2559,http://www.drivercpc-periodictraining.org,59 2560,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ChoosingASchool/DG_10023401,59 2561,http://sentencingcouncil.judiciary.gov.uk,59 2562,http://www.direct.gov.uk/en/TravelAndTransport/Passports/WhoiseligibleforaBritishpassport/DG_174145,59 2563,http://www.ukdps.co.uk,58 2564,http://www.direct.gov.uk/en/Hl1/Help/DG_178621,58 2565,http://www.sortitonline.com,58 2566,http://www.caravantalk.co.uk,58 2567,http://hotsearch.aol.co.uk,58 2568,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/LearningToDriveOrRide/DG_4022528,58 2569,http://80.168.49.251,58 2570,http://www.narpo.org,58 2571,http://mail.google.com,58 2572,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Paternityrightsintheworkplace/DG_190788,58 2573,http://www.performerscollege.co.uk,58 2574,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/DG_10033052,58 2575,http://www88.friendsprovident.com,58 2576,http://www.leedscitycollege.ac.uk,58 2577,http://www.cafcass.gov.uk,58 2578,http://www.ubezpieczenie-samochodu-w-anglii.co.uk,58 2579,http://www.routard.com,58 2580,http://uk.mc248.mail.yahoo.com,58 2581,http://us.mg6.mail.yahoo.com,58 2582,http://search3.openobjects.com,58 2583,http://www.education.leeds.ac.uk,58 2584,http://www.direct.gov.uk/cy/Parents/index.htm,58 2585,http://www.lookupuk.com,58 2586,http://www.searchalot.com,58 2587,http://openreach.informe.intra.bt.com,58 2588,http://www.havant.gov.uk,58 2589,http://www.iow.gov.uk,58 2590,http://www.fashionretailacademy.ac.uk,58 2591,http://www.cyclechat.net,58 2592,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/Bluebadgescheme/index.htm,58 2593,http://eyediologyopticians.co.uk,57 2594,http://ukinjapan.fco.gov.uk,57 2595,http://oftnet,57 2596,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BeginnersGuideToBenefits/DG_4016267,57 2597,http://www.sensis.com.au,57 2598,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10018710CY,57 2599,http://zhidao.baidu.com,57 2600,http://www.expatforum.com,57 2601,http://www.bfgnet.de,57 2602,http://www.direct.gov.uk/en/Pensionsandretirementplanning/TaxandNationalInsuranceinretirement/index.htm,57 2603,http://www.conwy.gov.uk,57 2604,http://www.nea.org.uk,57 2605,http://www.rsnonline.org.uk,57 2606,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/index.htm,57 2607,http://www.lgps.org.uk,57 2608,http://www.payroll-help.com,57 2609,http://www.victimsupport.com,57 2610,http://www.direct.gov.uk/en/Motoring/DriverLicensing/DrivingInGbOnAForeignLicence/DG_4022561,57 2611,http://www.braintree.gov.uk,57 2612,http://www.avis.co.uk,57 2613,http://login.keycom.co.uk:8080,57 2614,http://nds.coi.gov.uk,57 2615,http://www.hmcourts-service.gov.uk.,57 2616,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/WorkingAndPayingTax/DG_10010555,57 2617,http://www.cambridgecab.org.uk,57 2618,http://www.hart.gov.uk,56 2619,http://www.vwclub.bg,56 2620,http://searchassist.babylon.com,56 2621,http://www.nottinghamhomelink.org.uk,56 2622,http://pbmagforum.co.uk,56 2623,http://forums.seloc.org,56 2624,http://www.centurylink.net,56 2625,http://www.direct.gov.uk/en/employment/healthandsafetyatwork/index.htm,56 2626,http://www.direct.gov.uk/jobsearch,56 2627,http://www.google.sn,56 2628,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Situationsthatcanchangeyourconsumerrights/DG_183048,56 2629,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Climatechange/index.htm,56 2630,http://www.silversurfers.net,56 2631,http://www.direct.gov.uk/en/Diol1/DoItOnline/WP/DG_WP193625,56 2632,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_073269,56 2633,http://nottingham.blox.pl,56 2634,http://www.craigsplates.com,56 2635,http://www.direct.gov.uk/en/Employment/Employees/Pay/DG_10026695,56 2636,http://bl142w.blu142.mail.live.com,56 2637,http://pensions-service.direct.gov.uk/en/state-pension-age-calculator/,56 2638,http://www.lqgroup.org.uk,56 2639,http://www.colchester.ac.uk,56 2640,http://www.careersa-z.co.uk,56 2641,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/ChangesToYourRegistrationCertificate/DG_4022057,56 2642,http://wordex.uk.com,56 2643,http://bl129w.blu129.mail.live.com,56 2644,http://www.gla.ac.uk,56 2645,http://www.theiet.org,56 2646,http://www.cheltenham.gov.uk,56 2647,http://maps.google.com,56 2648,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/Motorinsurance/index.htm,56 2649,http://www.ram.ac.uk,56 2650,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ChildBenefitandwhoqualifies/DG_073770,55 2651,http://betterfuture.direct.gov.uk/what-state-pension.html,55 2652,http://www.ixquick.com,55 2653,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Bereaved/DG_10018684,55 2654,http://bl127w.blu127.mail.live.com,55 2655,http://www.basingstoke.gov.uk,55 2656,http://www.chorley.gov.uk,55 2657,http://listers.co.uk,55 2658,http://poitoucharentes.angloinfo.com,55 2659,http://www.colchester.gov.uk,55 2660,http://bl146w.blu146.mail.live.com,55 2661,http://www.contracteye.co.uk,55 2662,http://www.search.yahoo.com,55 2663,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_186107,55 2664,http://www.divorce-online.co.uk,55 2665,http://www.firsttimeinprison.co.uk,55 2666,http://bl119w.blu119.mail.live.com,55 2667,http://www.direct.gov.uk/en/Parents/Childcare/DG_181206,55 2668,http://bl167w.blu167.mail.live.com,55 2669,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Whistleblowingintheworkplace/index.htm,55 2670,http://www.waccoe.com,55 2671,http://www.ecosia.org,55 2672,http://www.uswitch.com,55 2673,http://www.lawcentres.org.uk,55 2674,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Bankruptcy/DG_187338,55 2675,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_191344,55 2676,http://www.google.hn,55 2677,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069856,55 2678,http://www.fuk.co.uk,55 2679,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingarrangementsincaseyoulosementalcapacity/DG_186373,55 2680,http://moss.uk.tescobank.org,55 2681,http://www.humberside.police.uk,54 2682,http://los.direct.gov.uk/,54 2683,http://intranet.erc.insider,54 2684,http://www.adur.gov.uk,54 2685,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Expectingorbringingupchildren/DG_10018750,54 2686,http://www.volunteering.org.uk,54 2687,http://www.kgbanswers.co.uk,54 2688,http://www.direct.gov.uk/en/COTAResultPage/index.htm,54 2689,http://www.fenland.gov.uk,54 2690,http://uk.mc860.mail.yahoo.com,54 2691,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingdecisionsforsomeoneelse/DG_195265,54 2692,http://www.babergh.gov.uk,54 2693,http://www.primelocation.com,54 2694,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyD/DG_172840,54 2695,http://www.hambleton.gov.uk,54 2696,http://www.nsandi-perspectives.com,54 2697,http://www.yourcounty.co.uk,54 2698,http://www.diamondjubileebeacons.co.uk,54 2699,http://www.fairinvestment.co.uk,54 2700,http://www.leedscab.org.uk,54 2701,http://www.trucknetuk.com,54 2702,http://www.startsiden.no,54 2703,http://www.adecco.co.uk,54 2704,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/index.htm,54 2705,http://www.homebuy.co.uk,54 2706,http://www.the-ace.org.uk,54 2707,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnPropertyAndRentalIncome/DG_4016337,54 2708,http://www.lunguk.org,54 2709,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_4022121,54 2710,http://gttr.faq-help.com,54 2711,http://www.studentfinanceni.co.uk,54 2712,http://suche.t-online.de,54 2713,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Expectingorbringingupchildren/DG_175884,54 2714,http://www.verylittlehelps.com,54 2715,http://motinfo.direct.gov.uk/internet/servlet/ECSIDDispatcher,54 2716,http://www.pcadvisor.co.uk,54 2717,http://intranet.mcc.local,54 2718,http://www.sthelens.gov.uk,54 2719,http://www.cityofbristol.ac.uk,54 2720,http://www.kiosk-cambridge.advicehub.org,54 2721,http://www.salongeek.com,54 2722,http://www.3cmt.com,54 2723,http://www.thehammondschool.co.uk,53 2724,http://www.sgn.co.uk,53 2725,http://www.horseandhound.co.uk,53 2726,http://www.nebosh.org.uk,53 2727,http://63.209.69.107,53 2728,http://www.adrivetuition.co.uk,53 2729,http://www.50plusworks.com,53 2730,http://www.direct.gov.uk/en/CaringForSomeone/MoneyMatters/DG_10037637,53 2731,http://www.darlington.gov.uk,53 2732,http://www.educ.cam.ac.uk,53 2733,http://www.google.so,53 2734,http://www.is4profit.com,53 2735,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnPropertyAndRentalIncome/DG_4017930,53 2736,http://www.tes.co.uk,53 2737,http://www.accountingweb.co.uk,53 2738,http://www.silkysteps.com,53 2739,http://www.brightknowledge.org,53 2740,http://mail.ntlworld.com,53 2741,http://data.gov.uk,53 2742,http://www.rightsnet.org.uk,53 2743,http://www.corby.gov.uk,53 2744,http://ukinthailand.fco.gov.uk,53 2745,http://www.charitycommission.gov.uk,53 2746,http://www.slough.gov.uk,53 2747,http://nk.pl,53 2748,http://www.ukcampsite.co.uk,53 2749,http://moodle.marjon.ac.uk,53 2750,http://birmingham.gov.uk,53 2751,http://www.cqf.com,53 2752,http://www.directline.com,53 2753,http://www.therevcounter.com,53 2754,http://www.wilplantraining.co.uk,53 2755,http://ukinrussia.fco.gov.uk,53 2756,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/LeavingOrComingIntoTheUK/index.htm,53 2757,http://www.lancashire.gov.uk,53 2758,http://www.nya.org.uk,53 2759,http://www.direct.gov.uk/en/Motoring/FindYourNearest/index.htm,53 2760,http://www.politifeist.com,52 2761,http://www.west-midlands.police.uk,52 2762,http://www.direct.gov.uk/en/Employment/Employees/Flexibleworking/DG_10027910,52 2763,http://www.lga.gov.uk,52 2764,http://firekills.direct.gov.uk/teachers-and-school-staff.html,52 2765,http://uk.mc865.mail.yahoo.com,52 2766,http://www.yourcircle.org.uk,52 2767,http://www.stroke.org.uk,52 2768,http://www.vision2learnforschools.com,52 2769,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Parentalleaveandflexibleworking/DG_10029416,52 2770,http://www.connexions-derbyshire.org,52 2771,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10012521,52 2772,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/FinancialHelpForAdultLearners/CareerDevelopmentLoans/DG_10033242,52 2773,http://www.ashfield-dc.gov.uk,52 2774,http://www.studentparents.org,52 2775,http://moodle,52 2776,http://www.direct.gov.uk/en/Diol1/MotoringDecisionTrees/DuplicateLicences/replacement_driving_licence.dsb,52 2777,http://www.elliottsschoolofmotoring.com,52 2778,http://www.penwithha.org.uk,52 2779,http://www.tamworth.gov.uk,52 2780,http://www.direct.gov.uk/en/HomeAndCommunity/YourlocalcouncilandCouncilTax/CouncilTax/DG_10037424,52 2781,http://www.workabout.org.uk,52 2782,http://bl121w.blu121.mail.live.com,52 2783,http://www.food.gov.uk,52 2784,http://www.ncvo-vol.org.uk,52 2785,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/WhatToDoAfterADeath/index.htm,52 2786,http://www.excellencegateway.org.uk,52 2787,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthandadoptionrecords/Adoptionrecords/index.htm,52 2788,http://www.dexteritytraining.co.uk,52 2789,http://www.t-mobile-favourites.co.uk,52 2790,http://www.pmi-learning.org.uk,52 2791,http://assist.kingstoncommunications.com,52 2792,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017545,52 2793,http://www.learningtrust.co.uk,52 2794,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_10028503,52 2795,http://weblogin1.webroot.com,52 2796,http://www.birminghamairport.co.uk,52 2797,http://iisfhq2k,52 2798,http://bl115w.blu115.mail.live.com,52 2799,http://www.alra.co.uk,52 2800,http://www.direct.gov.uk/en/Dl1/Directories/A-ZOfCentralGovernment/DG_A-Z_CG,52 2801,http://www.naturalengland.org.uk,52 2802,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinemotoring/DG_10035603,52 2803,http://firsttimedriver.info,51 2804,http://www.asthma.org.uk,51 2805,http://childrenscentresfinder.direct.gov.uk/about-childrens-centres/,51 2806,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017534,51 2807,http://redditch.whub.org.uk,51 2808,http://www.ukdrivers.com,51 2809,http://www.volkszone.com,51 2810,http://www.direct.gov.uk/en/Employment/TradeUnions/index.htm,51 2811,http://centrecharlespeguy.wordpress.com,51 2812,http://www.brunel.ac.uk,51 2813,http://www.direct.gov.uk/cy/CaringForSomeone/index.htm,51 2814,http://www.richmond.ac.uk,51 2815,http://www.newport.gov.uk,51 2816,http://www.direct.gov.uk/en/TravelAndTransport/Passports/WhoiseligibleforaBritishpassport/DG_174146,51 2817,http://www.nepalbritain.com,51 2818,http://yp.direct.gov.uk/14-19prospectus/,51 2819,http://www.google.sc,51 2820,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/SellingYourHome/index.htm,51 2821,http://search.seznam.cz,51 2822,http://www.tixdaq.com,51 2823,http://it.bing.com,51 2824,http://pensions-service.direct.gov.uk/en/find-pension-centre/home.asp,51 2825,http://www.recruitment.firstpersonnel.net,51 2826,http://searchresults.verizon.com,51 2827,http://www.vocalist.org.uk,51 2828,http://www.theorytestservice.co.uk,51 2829,http://www.dmu.ac.uk,51 2830,http://beta-prospectus.i-essex.co.uk,51 2831,http://www.clydebankdriving.co.uk,51 2832,http://www.ned-cab.org.uk,51 2833,http://www.direct.gov.uk/en/Employment/HealthAndSafetyAtWork/DG_10026668,51 2834,http://www.guildford.gov.uk,51 2835,http://camden.gov.uk,51 2836,http://search.freecause.com,51 2837,http://www.pendle.gov.uk,51 2838,http://www.actonenergy.org.uk,51 2839,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Pregnancyandmaternityrights/DG_065153,51 2840,http://uk.mc291.mail.yahoo.com,51 2841,http://au.answers.yahoo.com,50 2842,http://www.mirror.co.uk,50 2843,http://www.bristolstreet.co.uk,50 2844,http://bl130w.blu130.mail.live.com,50 2845,http://www.google.vg,50 2846,http://www.thecollege.co.uk,50 2847,http://postdesk.com,50 2848,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BeginnersGuideToBenefits/DG_10021385,50 2849,http://127.0.0.1:4664,50 2850,http://moodle.rutc.ac.uk,50 2851,http://www.shortnoticetests.com,50 2852,http://www.direct.gov.uk/en/Employment/Jobseekers/JobsAndCareers/DG_4003112,50 2853,http://www.lincolnmotorhomehire.co.uk,50 2854,http://sharp.direct.gov.uk/testhelmetlist,50 2855,http://www.dragondriver.com,50 2856,http://www.broxbourne.gov.uk,50 2857,http://www.scvo.org.uk,50 2858,http://www.boroughofpoole.com,50 2859,http://www.youngdriverscheme.org.uk,50 2860,http://jobseekers.direct.gov.uk/ConfirmLocation.aspx,50 2861,http://www.eaststaffsbc.gov.uk,50 2862,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/DebtsAndArrears/DG_10013261,50 2863,http://travelsecure.infrastructure.gov.au,50 2864,http://riviera.angloinfo.com,50 2865,http://www.cabweb.gsi.gov.uk,50 2866,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/TheQueensAwardforVoluntaryService/index.htm,50 2867,http://www.idesigni.co.uk,50 2868,http://www.gamefaqs.com,49 2869,http://childcarefinder.direct.gov.uk/childcare-search-results/,49 2870,http://jobseekers.direct.gov.uk/mybookmarkslogin.aspx,49 2871,http://www.hlp.entitledto.co.uk,49 2872,http://www.oxforddrama.ac.uk,49 2873,http://www.dover.gov.uk,49 2874,http://tab.search.sweetim.com,49 2875,http://www.don.ac.uk,49 2876,http://bl126w.blu126.mail.live.com,49 2877,http://www.continence-foundation.org.uk,49 2878,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Expectingorbringingupchildren/HealthinPregnancyGrant/index.htm,49 2879,http://pl.wikipedia.org,49 2880,http://www3.northampton.ac.uk,49 2881,http://www.pensioncheck.co.uk,49 2882,http://students.wlc.ac.uk,49 2883,http://www.tescocars.com,49 2884,http://www.direct.gov.uk/en/HomeAndCommunity/YourlocalcouncilandCouncilTax/index.htm,49 2885,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018668,49 2886,http://greenwich.gov.uk,49 2887,http://clicks.uknetguide.co.uk,49 2888,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/Mot/DG_4022514,49 2889,http://housing-services.newham.gov.uk,49 2890,http://www.daemon-search.com,49 2891,http://www.google.la,49 2892,http://www.myadvicegateway.org,49 2893,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnPropertyAndRentalIncome/DG_10014027,49 2894,http://www.legalandgeneral.com,49 2895,http://www.pregnancyforum.co.uk,49 2896,http://www.pregnancyforum.org.uk,49 2897,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Workexperienceandvolunteering/DG_066181,49 2898,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/entitlement/DG_181270,49 2899,http://www.direct.gov.uk/en/Motoring/DriverLicensing/WhatCanYouDriveAndYourObligations/DG_4022499,49 2900,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Typesoffinance/DG_171615,49 2901,http://www.talentscotland.com,49 2902,http://jobs.dorsetforyou.com,48 2903,http://www.motor-trade-insider.com,48 2904,http://graduatetalentpoolsearch.direct.gov.uk/casa/servlet/casa.jobseeker.JSVacServlet,48 2905,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_193032,48 2906,http://www.direct.gov.uk/en/Nl1/Newsroom/index.htm,48 2907,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BeginnersGuideToBenefits/DG_10035686,48 2908,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_183780,48 2909,http://uk.mc246.mail.yahoo.com,48 2910,http://fern.filton.ac.uk,48 2911,http://www.eastcambs.gov.uk,48 2912,http://www.surrey.gov.uk,48 2913,http://www.redundancyhelp.co.uk,48 2914,http://intranet.oxfordshire.gov.uk,48 2915,http://www.bookmydrivinglessons.co.uk,48 2916,http://connect,48 2917,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Changesthataffectyourtaxcredits/index.htm,48 2918,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Workexperienceandvolunteering/index.htm,48 2919,http://search27.info.com,48 2920,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/WorkingTaxCreditthebasics/DG_172728,48 2921,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/PlanningYourPersonalFinances/DG_10013610,48 2922,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BenefitFraud/DG_10035820,48 2923,http://community.ucreative.ac.uk,48 2924,http://www.direct.gov.uk/en/Parents/Preschooldevelopmentandlearning/NurseriesPlaygroupsReceptionClasses/index.htm,48 2925,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012314,48 2926,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/YourMoney/DG_4003046,48 2927,http://www.optuszoo.com.au,48 2928,http://niagara.cioc.ca,48 2929,http://www.cilt.org.uk,48 2930,http://intranet.students.chesterfield.ac.uk,48 2931,http://www.advocacyresource.org.uk,48 2932,http://search.earthlink.net,48 2933,http://www.swan.ac.uk,47 2934,http://www.gwynedd.gov.uk,47 2935,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070340,47 2936,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/DG_10013700,47 2937,http://aolsearcht11.search.aol.com,47 2938,http://www.0-19insalford.info,47 2939,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Gettingyourfirstjob/DG_066151,47 2940,http://lms.kingston.ac.uk,47 2941,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/DG_073823,47 2942,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Gettingstarted/DG_171586,47 2943,http://www.ncn.ac.uk,47 2944,http://courses.uwe.ac.uk,47 2945,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Gettingadivorce/DG_193734,47 2946,http://www.mothercarebabyandmeclub.com,47 2947,http://findlikeme.biz,47 2948,http://www.direct.gov.uk/en/DisabledPeople/EducationAndTraining/HigherEducation/DG_10034900,47 2949,http://bl136w.blu136.mail.live.com,47 2950,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Yourconsumerrightswhenbuyinggoodsandservices/DG_194653,47 2951,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/KeepingyourChildBenefituptodate/ChildBenefitafter16/DG_073812,47 2952,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/ImprovingYourSkills/DG_10037499,47 2953,http://recalledproducts.org,47 2954,http://www.saxperience.com,47 2955,http://www.direct.gov.uk/en/Employment/Employees/Sicknessabsence/DG_187161,47 2956,http://www.the75andztclub.co.uk,47 2957,http://www.lloydsbankinggrouppensions.com,47 2958,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/AdviceOnBuyingAndSellingAVehicle/index.htm,47 2959,http://bl117w.blu117.mail.live.com,47 2960,http://www.southsomerset.gov.uk,47 2961,http://www.startpage.com,47 2962,http://www.gov.im,47 2963,http://www.bhf.org.uk,47 2964,http://www.leeds-manchester.pl,47 2965,http://www.direct.gov.uk/en/TravelAndTransport/Cycling/DG_10026401,47 2966,http://www.ancestor-search.info,46 2967,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017686,46 2968,http://www.tswarrington.co.uk,46 2969,http://www.croydononline.org,46 2970,http://www.quilondra.com,46 2971,http://training.nicurriculum.org.uk,46 2972,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/DG_073816,46 2973,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/DG_4003239,46 2974,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/Fostering/index.htm,46 2975,http://www.google.co.mz,46 2976,http://weblearn.londonmet.ac.uk,46 2977,http://www.stereoboard.com,46 2978,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_192028,46 2979,http://www.argos.co.uk,46 2980,http://www.umsu.manchester.ac.uk,46 2981,http://www.bimmerforums.co.uk,46 2982,http://www.astraownersnetwork.co.uk,46 2983,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Resigningorretiring/DG_175837,46 2984,http://www.direct.gov.uk/en/EducationAndLearning/14To19/index.htm,46 2985,http://uk.mc240.mail.yahoo.com,46 2986,http://www.iegallery.com,46 2987,http://intranet.salford.gov.uk,46 2988,http://www.google.me,46 2989,http://www.rochford.gov.uk,46 2990,http://www.direct.gov.uk/en/Dl1/Directories/Localcouncils/DG_4003645,46 2991,http://www.carship.co.uk,46 2992,http://zipcar.co.uk,46 2993,http://www.postwatch.co.uk,46 2994,http://yandex.by,46 2995,http://www.asd-forum.org.uk,46 2996,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/DG_065153,46 2997,http://www.rvc.ac.uk,46 2998,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Benefits/ConcessionsAndOtherHelp/DG_10018668,46 2999,http://www.websiteoftheyear.co.uk,46 3000,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ChoosingASchool/DG_4016364,46 3001,http://www.mrlexy.co.uk,46 3002,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MotoringContacts/DG_10012449,46 3003,http://www.driver-improvement.co.uk,46 3004,http://wck2.companieshouse.gov.uk,46 3005,http://glosweb,46 3006,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/PleasureCraft/DG_180594,46 3007,http://www.fatallyflawed.org.uk,46 3008,http://www.newlifenetwork.co.uk,46 3009,http://a-london.com,45 3010,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/RegisteringAVehicle/DG_189329,45 3011,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_10027570,45 3012,http://www.direct.gov.uk/en/Diol1/MotoringDecisionTrees/ExchangeaTestPassorForeignLicence/can_you_drive_in_gb.dsb,45 3013,http://intranet.admiralgroup.lan,45 3014,http://ww2.prospects.ac.uk,45 3015,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/TaxationClasses/DG_4022042,45 3016,http://www.direct.gov.uk/en/Governmentcitizensandrights/GettingLegalAdvice/Gettinglegaladviceandlegalaid/DG_195416,45 3017,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070306,45 3018,http://www.bconstructive.co.uk,45 3019,http://www.destinationthere.com,45 3020,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/Motorcyclists/index.htm,45 3021,http://www.wix.com,45 3022,http://bl145w.blu145.mail.live.com,45 3023,http://www.google.com.fj,45 3024,http://www.social-fund.co.uk,45 3025,http://www.romani.co.uk,45 3026,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/DG_186330,45 3027,http://uk.similarsites.com,45 3028,http://childmaintenance.org,45 3029,http://www.cwdcouncil.org.uk,45 3030,http://www.justmots.eu,45 3031,http://www.direct.gov.uk/en/Video/index.htm,45 3032,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/DG_070676,45 3033,http://www.ukrecordscenter.com,45 3034,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2011/DG_WP195609,45 3035,http://www.direct.gov.uk/en/DisabledPeople/RightsAndObligations/DisabilityRights/index.htm,45 3036,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnPropertyAndRentalIncome/DG_10013376,45 3037,http://www.cornwall.ac.uk,45 3038,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxcodes/DG_078568,45 3039,http://www.volvoforums.org.uk,45 3040,http://webferret.search.com,45 3041,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/Yourvehicleandlicence/DG_10028000,45 3042,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Researchingfamilyhistory/DG_175451,45 3043,http://it.ask.com,45 3044,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Centralgovernmentandthemonarchy/DG_073444,45 3045,http://www.direct.gov.uk/en/BritonsLivingAbroad/Moneyabroad/DG_4000102,45 3046,http://www.spc.ac.uk,45 3047,http://campaigns2.direct.gov.uk/index.html,45 3048,http://www.erewash.gov.uk,45 3049,http://forum.softpedia.com,45 3050,http://services.newport.gov.uk,44 3051,http://www.cieh.org,44 3052,http://www.thomascook.com,44 3053,http://lawworks.org.uk,44 3054,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Bereaved/DG_10018703,44 3055,http://www.cityoflondon.police.uk,44 3056,http://www.italiansoflondon.com,44 3057,http://direct-gov.co.uk,44 3058,http://www.accident-claim-expert.co.uk,44 3059,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10022605,44 3060,http://camweb,44 3061,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Findingsomewhere/DG_188604,44 3062,http://www.yourlegalrights.co.uk,44 3063,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/Parentalleaveandpay/DG_10039631,44 3064,http://www.traineesolicitor.co.uk,44 3065,http://inside.walsall.gov.uk,44 3066,http://www.eastleigh.gov.uk,44 3067,http://www.dom-uk.org,44 3068,http://www.heathrow-airport-guide.co.uk,44 3069,http://www.nibusinessinfo.co.uk,44 3070,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_195161,44 3071,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/WorkingTaxCreditthebasics/index.htm,44 3072,http://www.selby.gov.uk,44 3073,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ChoicesAfterYouGraduate/index.htm,44 3074,http://zielonalinia.gov.pl,44 3075,http://www.cycle-n-sleep.co.uk,44 3076,http://www.google.co.vi,44 3077,http://www.google.com.ni,44 3078,http://www.retirementlinks.co.uk,44 3079,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/Cyclists/index.htm,44 3080,http://www.ofwat.gov.uk,44 3081,http://www.arun.gov.uk,44 3082,http://uk.mc247.mail.yahoo.com,44 3083,http://apype.com,44 3084,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Gettingyourfirstjob/DG_066164,44 3085,http://www.siryfflint.gov.uk,44 3086,http://turn2us.custhelp.com,44 3087,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/DebtsAndArrears/DG_10034289,44 3088,http://www.justlearning.co.uk,44 3089,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10034063,44 3090,http://www.direct.gov.uk/cy/Environmentandgreenerliving/index.htm,44 3091,http://forums.mg-rover.org,44 3092,http://www.norland.co.uk,44 3093,http://bl134w.blu134.mail.live.com,44 3094,http://www.bayviewkentallen.co.uk,44 3095,http://www.patrickgordon.co.uk,44 3096,http://www.thelegalline.co.uk,43 3097,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011690,43 3098,http://moodle.coventry.ac.uk,43 3099,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Temporarylayoff/DG_10026693,43 3100,http://m.guardian.co.uk,43 3101,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxallowancesandreliefs/DG_078312,43 3102,http://www.direct.gov.uk/en/CaringForSomeone/CaringForADisabledChild/DG_10027594,43 3103,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_172012,43 3104,http://archives.cheshire.gov.uk,43 3105,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/DG_10012442,43 3106,http://www.thedibb.co.uk,43 3107,http://www.waitrose.com,43 3108,http://aolsearcht9.search.aol.com,43 3109,http://moodle.mmu.ac.uk,43 3110,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ExamsTestsAndTheCurriculum/DG_10013877,43 3111,http://www.stepintothenhs.nhs.uk,43 3112,http://www.southoxon.gov.uk,43 3113,http://www.boileradvice.com,43 3114,http://www.nacc.org.uk,43 3115,http://find.eu.b00kmarks.com,43 3116,http://www.immigrationmatters.co.uk,43 3117,http://www.rushmoor.gov.uk,43 3118,http://garage.a2om.com,43 3119,http://pensions-service.direct.gov.uk/en/state-pension-age-calculator/pensions-reform.asp,43 3120,http://www.morethanmobility.com,43 3121,http://www.bma.org.uk,43 3122,http://www.direct.gov.uk/en/Employment/Employees/WorkingHoursAndTimeOff/DG_10028519,43 3123,http://www.direct.gov.uk/en/Parents/Preschooldevelopmentandlearning/NurseriesPlaygroupsReceptionClasses/DG_4002825,43 3124,http://www.government-boiler-scrappage-scheme.co.uk,43 3125,http://www.delamaracademy.co.uk,43 3126,http://www.kidstart.co.uk,43 3127,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069860,43 3128,http://www.acas.co.uk,43 3129,http://www.blog.freebustravel.co.uk,43 3130,http://www.direct.gov.uk/en/EducationAndLearning/14To19/OptionsAt16/DG_4016843,43 3131,http://www.asos.com,43 3132,http://www.holidayletmortgages.co.uk,43 3133,http://www.direct.gov.uk/en/TravelAndTransport/roadsafetyadvice/DG_4022064,43 3134,http://www.tourist-information-uk.com,43 3135,http://www.kingstonmaternity.org.uk,43 3136,http://www.direct.gov.uk/cy/index.htm,43 3137,http://dogpile.co.uk,43 3138,http://www.passmedicine.com,43 3139,http://www.whatdotheyknow.com,43 3140,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Dismissal/DG_175834,43 3141,http://www.princes-trust.org.uk,42 3142,http://www.uk-property-business-plan.co.uk,42 3143,http://www.thaivisa.com,42 3144,http://www.motorcycletrainingwales.co.uk,42 3145,http://www.proactivetechnicaltraining.co.uk,42 3146,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/index.htm,42 3147,http://www.centrallondonconnexions.org.uk,42 3148,http://www.valeofglamorgan.gov.uk,42 3149,http://eyfs.info,42 3150,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applicationinformation/DG_181663,42 3151,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/DG_10039022,42 3152,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017825,42 3153,http://www.cssd.ac.uk,42 3154,http://www.bized.co.uk,42 3155,http://www.gloucester.gov.uk,42 3156,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuyingYourHome/DG_4001326,42 3157,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017581,42 3158,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_171571,42 3159,http://www.ncma.org.uk,42 3160,http://www.mountbatten.org,42 3161,http://www.cherwell.gov.uk,42 3162,http://mylearning.learndirect.co.uk,42 3163,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/Bullying/DG_070501,42 3164,http://www.direct.gov.uk/en/Motoring/DriverLicensing/CaravansTrailersCommercialVehicles/DG_171186,42 3165,http://think.direct.gov.uk/work.html,42 3166,http://bl148w.blu148.mail.live.com,42 3167,http://bl132w.blu132.mail.live.com,42 3168,http://www.thequadcentre.com,42 3169,http://www.harborough.gov.uk,42 3170,http://www.careers.dept.shef.ac.uk,42 3171,http://www.thespeciallife.com,42 3172,http://www.stalbans.gov.uk,42 3173,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/KeepingSafeAtHome/DG_10027755,42 3174,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/StatePension/DG_10014671CY,42 3175,http://www.bemyparent.org.uk,42 3176,http://www.newcastle-staffs.gov.uk,42 3177,http://www.homesforharingey.org,42 3178,http://dafc.info,42 3179,http://studentnet.wsc.ac.uk,42 3180,http://www.westsomersetonline.gov.uk,42 3181,http://bl123w.blu123.mail.live.com,42 3182,http://www.kent.police.uk,42 3183,http://bl116w.blu116.mail.live.com,42 3184,http://www.direct.gov.uk/en/DisabledPeople/EducationAndTraining/DG_4001076,42 3185,http://uk.mc283.mail.yahoo.com,42 3186,http://www.holidaylettings.co.uk,41 3187,http://www.closeprotectionworld.com,41 3188,http://www.qmu.ac.uk,41 3189,http://uk.virginmoney.com,41 3190,http://glamlife.glam.ac.uk,41 3191,http://www.lfgss.com,41 3192,http://intranet.st.net,41 3193,http://dict.leo.org,41 3194,http://www.residential-intensive-driving-courses.co.uk,41 3195,http://www.theunderwatercentre.co.uk,41 3196,http://www.ocr.org.uk,41 3197,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Familyandfriendsofprisoners/DG_4002984,41 3198,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011169,41 3199,http://www.strode-college.ac.uk,41 3200,http://www.surrey.ac.uk,41 3201,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthandadoptionrecords/Registeringorchangingabirthrecord/DG_175608,41 3202,http://moodle.roehampton.ac.uk,41 3203,http://www.testbooking-service.co.uk,41 3204,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/index.htm,41 3205,http://webfronter.com,41 3206,http://www.castlepoint.gov.uk,41 3207,http://cumbria.gov.uk,41 3208,http://es.search-results.com,41 3209,http://www.landyzone.co.uk,41 3210,http://mallsecrets.co.uk,41 3211,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ChoicesAfterYouGraduate/DG_10012475,41 3212,http://www.mkmt.co.uk,41 3213,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/index.htm,41 3214,http://www.trin.cam.ac.uk,41 3215,http://www.direct.gov.uk/en/BritonsLivingAbroad/Moneyabroad/DG_4000013,41 3216,http://www.supersavvyme.co.uk,41 3217,http://www.babyexpert.com,41 3218,http://www.direct.gov.uk/en/Motoring/DriverLicensing/DG_10023103,41 3219,http://www.bacp.co.uk,41 3220,http://boodle.bcot.ac.uk,41 3221,http://www.pocketparent.co.uk,41 3222,http://www.ncha.co.uk,41 3223,http://wghintra01,41 3224,http://www.havering.gov.uk,41 3225,http://www.attrakt.com,41 3226,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/DiscriminationAtWork/DG_10026429,41 3227,http://www.cem.ac.uk,41 3228,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/NewlyQualifiedDrivers/DG_4022566,41 3229,http://bl147w.blu147.mail.live.com,41 3230,http://www.worldskillslondon2011.com,41 3231,http://bl122w.blu122.mail.live.com,41 3232,http://www.espo.org,41 3233,http://m.direct.gov.uk/articlesController,41 3234,http://gossweb.nottinghamcity.gov.uk,41 3235,http://jobseeker.direct.gov.uk./detailjob.aspx,41 3236,http://www.lums.lancs.ac.uk,41 3237,http://ys.mirostart.com,41 3238,http://www.bikerforum.co.uk,41 3239,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SpecialEducationalNeeds/DG_4000870,41 3240,http://www.connexionsdudley.org,41 3241,http://source,41 3242,http://forums.lr4x4.com,41 3243,http://www.direct.gov.uk/en/Employment/Employees/Flexibleworking/DG_184569,41 3244,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Migrantworkers/index.htm,41 3245,http://www.ilpa.org.uk,41 3246,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Findingsomewhere/index.htm,41 3247,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SchoolLife/DG_10038366,41 3248,http://cardinet.ceredigion.gov.uk,41 3249,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Accidentandinjurydisputes/index.htm,41 3250,http://www.sfr.fr,41 3251,http://intranet.npower.com,41 3252,http://www.arnoldclark.com,41 3253,http://www.1st-learntodrive.co.uk,41 3254,http://www.aupair-world.net,41 3255,http://www.pearsonvue.com,41 3256,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/AdviceOnKeepingYourVehicle/index.htm,40 3257,http://www.coursework.info,40 3258,http://ilsapps,40 3259,http://assist.babylon.com,40 3260,http://mypastest.pastest.co.uk,40 3261,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnSavingsAndInvestments/DG_4015739,40 3262,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Resigningorretiring/DG_175835,40 3263,http://vle.cant-col.ac.uk,40 3264,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/index.htm,40 3265,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Typesoffinance/DG_171537,40 3266,http://source.tfl,40 3267,http://www.independent.co.uk,40 3268,http://www.bizhelp24.com,40 3269,http://lutonlibraries.theorytestpro.co.uk,40 3270,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_183883,40 3271,http://www2.tunbridgewells.gov.uk,40 3272,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017846,40 3273,http://www.direct.gov.uk/en/Dl1/Directories/DG_6000071,40 3274,http://www.askwiltshire.org,40 3275,http://ww2.cox.com,40 3276,http://motability.creativevirtual.com,40 3277,http://www.direct.gov.uk/en/Parents/Preschooldevelopmentandlearning/index.htm,40 3278,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_180156,40 3279,http://www.motability.co.uk,40 3280,http://www.cambridge.gov.uk,40 3281,http://bbvista.leedsmet.ac.uk,40 3282,http://www.eden.gov.uk,40 3283,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnPropertyAndRentalIncome/DG_4015918,40 3284,http://www.wiganworld.co.uk,40 3285,http://ekhrp.org,40 3286,http://www.ibrowserotherham.org.uk,40 3287,http://www.sense.org.uk,40 3288,http://viewpoint.qmc.ac.uk,40 3289,http://www.maldon.gov.uk,40 3290,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Volunteering/DG_10029484,40 3291,http://www.candi.ac.uk,40 3292,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EmploymentContacts/DG_172111,40 3293,http://www.direct.gov.uk/en/Motoring/DriverLicensing/WhatCanYouDriveAndYourObligations/DG_4022619,40 3294,http://www.arcs.qmul.ac.uk,40 3295,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10018839,40 3296,http://studenttaxadvice.direct.gov.uk/faqs.html,40 3297,http://wfkit,40 3298,http://mortgagehelp.direct.gov.uk/i-am-struggling-to-pay-my-mortgage.aspx,40 3299,http://stonebridge.laserlearning.org,40 3300,http://search.k-c.co.uk,39 3301,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/Fileyourtaxreturnonline/DG_4016319,39 3302,http://www.newdriverschools.co.uk,39 3303,http://www.north-ayrshire.gov.uk,39 3304,http://www.moneyformums.co.uk,39 3305,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EmploymentContacts/index.htm,39 3306,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/Bluebadgescheme/DG_4001061,39 3307,http://www.enabledpeople.co.uk,39 3308,http://www.myfuturewise.org.uk,39 3309,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/ImprovingYourSkills/index.htm,39 3310,http://www.eastlondoncollege.com,39 3311,http://www.e-theorytest.co.uk,39 3312,http://www.direct.gov.uk/en/Employment/Employees/EmploymentContractsAndConditions/DG_10028541,39 3313,http://www.drivingtrainingcentre.co.uk,39 3314,http://www.hoohoohoo.com,39 3315,http://www.driving-lessons-southampton.co.uk,39 3316,http://www.pembrokeshire.gov.uk,39 3317,http://crmtools,39 3318,http://blenheim,39 3319,http://www.huntingdonshire.gov.uk,39 3320,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Resigningorretiring/DG_10026689,39 3321,http://www.plus.net,39 3322,http://www.vvoc.com,39 3323,http://eu.ask.com,39 3324,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_186303.html,39 3325,http://www.brick-yard.co.uk,39 3326,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Gettingyourfirstjob/index.htm,39 3327,http://www.direct.gov.uk/en/Environmentandgreenerliving/Smallholders/index.htm,39 3328,http://www2.erewash.gov.uk,39 3329,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Yourconsumerrightswhenbuyinggoodsandservices/DG_194650,39 3330,http://www.rediffmail.com,39 3331,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070190,39 3332,http://www.rentfromtheowner.co.uk,39 3333,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/UKpublicappointments/DG_067071,39 3334,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/BeforeYouTravel/index.htm,39 3335,http://infonet.flintshire.gov.uk,39 3336,http://about-uk-work.blog.hu,39 3337,http://www.local.direct.gov.uk/LDGRedirect/Start.do,39 3338,http://www.adrnow.org.uk,39 3339,http://yourcounciljobs.co.uk,39 3340,http://www.direct.gov.uk/en/Pensionsandretirementplanning/HomeAndCommunity/StayingInYourHome/DG_10026850,39 3341,http://www.aberdeenshire.gov.uk,39 3342,http://aolsearcht5.search.aol.com,39 3343,http://www.findleys.co.uk,39 3344,http://www.saferfireworks.com,39 3345,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SpecialEducationalNeeds/DG_4000690,39 3346,http://aolsearcht3.search.aol.com,39 3347,http://www.scambs.gov.uk,39 3348,http://learner.franklin.ac.uk,39 3349,http://lis,39 3350,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/YourMoney/DG_10038590,39 3351,http://www.scottishlaw.org.uk,39 3352,http://aolsearcht1.search.aol.com,39 3353,http://www.sepe.es,39 3354,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/UntaxedVehicle/DG_4022073,39 3355,http://thisisabuse.direct.gov.uk/,39 3356,http://students.shu.ac.uk,39 3357,http://startingpage.com,39 3358,http://bl131w.blu131.mail.live.com,39 3359,http://powered.jobsgopublic.com,39 3360,http://www.kiosk.deciphersoftware.com,39 3361,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxcodes/DG_078397,39 3362,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxrefundsreclaimingtax/index.htm,39 3363,http://reviews.in.gr,39 3364,http://www.google.co.uz,38 3365,http://www.expatfocus.com,38 3366,http://www.team-numpty.pwp.blueyonder.co.uk,38 3367,http://www.mortgageadvicebureau.com,38 3368,http://www.paranormal-marketing.com,38 3369,http://moodle.southdevon.ac.uk,38 3370,http://www.citroenretailgroup.co.uk,38 3371,http://cms.great-yarmouth.gov.uk,38 3372,http://uk.mc292.mail.yahoo.com,38 3373,http://www.mendip.gov.uk,38 3374,http://www.direct.gov.uk/en/Employment/Employees/TheNationalMinimumWage/DG_175105,38 3375,http://www.lancashireinteractive.co.uk,38 3376,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018946,38 3377,http://www.drivertrainingtoday.co.uk,38 3378,http://www.cashquestions.com,38 3379,http://www.careersetc.co.uk,38 3380,http://www.leicestercollege.ac.uk,38 3381,http://www.bury.gov.uk,38 3382,http://education.exeter.ac.uk,38 3383,http://www.stratford.gov.uk,38 3384,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/DiscriminationAtWork/DG_10026665,38 3385,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@over50/,38 3386,http://www.ico.gov.uk,38 3387,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Fixedtermworkers/DG_10027735,38 3388,http://us.mg3.mail.yahoo.com,38 3389,http://www.premier-rider-training.co.uk,38 3390,http://b4tea.com,38 3391,http://www.englishforum.ch,38 3392,http://forum.londyn.sk,38 3393,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/PlanYourWayOutOfDebt/DG_10013291,38 3394,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Goingtocourt/DG_196034,38 3395,http://frogserver,38 3396,http://www.ukpassportofficeinformation.co.uk,38 3397,http://lifeintheuk.net,38 3398,http://www.govdirect.org.uk,38 3399,http://bl144w.blu144.mail.live.com,38 3400,http://www.monmouthshire.gov.uk,38 3401,http://www.gcu.ac.uk,38 3402,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/index.htm,38 3403,http://www.anderbydrivingcentre.co.uk,38 3404,http://www.andalucia.com,38 3405,http://www.lichfielddc.gov.uk,38 3406,http://www.amblondon.um.dk,38 3407,http://info.co.uk,38 3408,http://www.direct.gov.uk/en/HomeAndCommunity/YourlocalcouncilandCouncilTax/CouncilTax/DG_10037280,38 3409,http://www.adrianflux.co.uk,38 3410,http://www.entitlementcard.org.uk,38 3411,http://www.royalmailchat.co.uk,38 3412,http://www.itsanhonour.gov.au,38 3413,http://acmail02s.syp.southyorks.police.uk,38 3414,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Benefits/BenefitsInRetirement/DG_198331,38 3415,http://aid.redbridge.gov.uk,38 3416,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/MentalHealth/DG_10023351,38 3417,http://www.delicious.com,38 3418,http://www.google.com.sl,38 3419,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/Mortgages/index.htm,38 3420,http://www.aff.org.uk,37 3421,http://www.ccn.ac.uk,37 3422,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/Yourvehicleandlicence/DG_10028001,37 3423,http://www.ukpoliceonline.co.uk,37 3424,http://www.lgfl.net,37 3425,http://www.boots.jobs,37 3426,http://www.scattering-ashes.co.uk,37 3427,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/SupportAtHome/DG_4000682,37 3428,http://www.a-surepass.co.uk,37 3429,http://readingroom.lsc.gov.uk,37 3430,http://bl138w.blu138.mail.live.com,37 3431,http://www.nationwide.co.uk,37 3432,http://www.askfinancially.com,37 3433,http://www.scottishwidows.co.uk,37 3434,http://www.netvibes.com,37 3435,http://www.minibus-insurance.co.uk,37 3436,http://www.resourcecompanion.co.uk,37 3437,http://www.strathclyde.police.uk,37 3438,http://www.taxcc.org,37 3439,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/DG_4022417,37 3440,http://www.gmb.org.uk,37 3441,http://zh.wikipedia.org,37 3442,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/Voluntarycontributionsandtoppingup/index.htm,37 3443,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Gettingstarted/DG_171579,37 3444,http://www.direct.gov.uk/en/Dl1/Directories/DG_068034,37 3445,http://www.icaew.com,37 3446,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/BenefitsAndMoney/DG_10029657,37 3447,http://www.sanctuary-group.co.uk,37 3448,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/Motorinsurance/DG_067631,37 3449,http://www.sonandolondres.com,37 3450,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/Motorinsurance/DG_071948,37 3451,http://start.speedbit.com,37 3452,http://mail.blueyonder.co.uk,37 3453,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/AdviceOnBuyingAndSellingAVehicle/DG_4022406,37 3454,http://us.mc1133.mail.yahoo.com,37 3455,http://www.homesforislington.org.uk,37 3456,http://www.iddt.org,37 3457,http://www.halifax.co.uk,37 3458,http://www.stc.ac.uk,37 3459,http://www.hotscams.com,37 3460,http://sharepoint,37 3461,http://www.direct.gov.uk/prod_consum_dg/DGFragmentsCode/ProphetInsert.js,37 3462,http://search.nate.com,37 3463,http://www.cdd.ac.uk,37 3464,http://vhousenet.ventura-uk.com,37 3465,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/RidingMotorcyclesAndMopeds/DG_10016249,36 3466,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/ChangesToYourRegistrationCertificate/DG_4022054,36 3467,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/Childrenandtaxcredits/index.htm,36 3468,http://bl140w.blu140.mail.live.com,36 3469,http://www.thecompleteuniversityguide.co.uk,36 3470,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_188859,36 3471,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/DG_10026556,36 3472,http://www.thesun.co.uk,36 3473,http://learning.gms.bucks.sch.uk,36 3474,http://web35net,36 3475,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/YourChildsWelfareAtSchool/DG_066966,36 3476,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Yourchildssafetyinthehome/index.htm,36 3477,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Benefits/BenefitsInRetirement/DG_179768,36 3478,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/GrantsFundsAndStandards/DG_10027032,36 3479,http://www.torridge.gov.uk,36 3480,http://pensions.gov.uk,36 3481,http://www.rootsweb.ancestry.com,36 3482,http://www.trafford.ac.uk,36 3483,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Working/LookingForWork/DG_10026789,36 3484,http://www.lotsanew.co.uk,36 3485,http://www.insurance-young-drivers.com,36 3486,http://www.uk.embassy.gov.au,36 3487,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applicationinformation/DG_174151,36 3488,http://www.ukclimbing.com,36 3489,http://www.rctcbc.gov.uk,36 3490,http://www.ludlowthompson.com,36 3491,http://gov.org,36 3492,http://www.ukresident.com,36 3493,http://www.greatdriver.co.uk,36 3494,http://polonianottingham.com,36 3495,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/Preparation/DG_10029429,36 3496,http://forums.mercedesclub.org.uk,36 3497,http://www.breckland.gov.uk,36 3498,http://www.iasupport.org,36 3499,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Grievanceprocedures/DG_10027992,36 3500,http://www.iamwired.net,36 3501,http://www.walktoschool.org.uk,36 3502,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxallowancesandreliefs/DG_078571,36 3503,http://www.businesslink.org,36 3504,http://www.direct.gov.uk/en/Employment/Jobseekers/programmesandservices/DG_198864,36 3505,http://www.dragon-guide.net,36 3506,http://www.websitewiki.info,36 3507,http://www.wedding-service.co.uk,36 3508,http://www.careers.manchester.ac.uk,36 3509,http://www.westlancsdc.gov.uk,36 3510,http://www.startups.co.uk,36 3511,http://www.direct.gov.uk/en/Employment/Employees/BusinessTransfersandtakeovers/DG_10026691,36 3512,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_195157,36 3513,http://www.hinckley-bosworth.gov.uk,36 3514,http://scholarships.leeds.ac.uk,36 3515,http://www.stewart-nash.co.uk,36 3516,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/DG_10039021,36 3517,http://www.exeter-airport.co.uk,36 3518,http://schoolsfinder.direct.gov.uk/la/Southwark/,36 3519,http://www.stachoo.pl,36 3520,http://www.google.gg,36 3521,http://www.google.to,36 3522,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/FinancialHelpForAdultLearners/DG_10033132,36 3523,http://www.genesreunited.co.uk,36 3524,http://www.extrarooms.co.uk,36 3525,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/index.htm,36 3526,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinestudentfinance/DG_10035566,36 3527,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017542,36 3528,http://www.direct.gov.uk/cy/HomeAndCommunity/Planning/index.htm,36 3529,http://www.stag.org.uk,36 3530,http://www.yoursigns.com,36 3531,http://www.futureworks.co.uk,35 3532,http://csc.hertscc.gov.uk,35 3533,http://www.nases.org.uk,35 3534,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/Bluebadgescheme/DG_181208,35 3535,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_4022052,35 3536,http://www.mhlw.go.jp,35 3537,http://www.ableize.com,35 3538,http://www.fwi.co.uk,35 3539,http://www.e4s.co.uk,35 3540,http://www.communities.idea.gov.uk,35 3541,http://ricerca.virgilio.it,35 3542,http://www.horsham.gov.uk,35 3543,http://www.your-online-driving-school.co.uk,35 3544,http://www.co-operative.coop,35 3545,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/YoureoutsideoftheUK/DG_172733,35 3546,http://www.homesun.com,35 3547,http://www.abcofesa.co.uk,35 3548,http://www.dunbarmotoring.co.uk,35 3549,http://bluebadge.direct.gov.uk/index.php,35 3550,http://www.civilservice.gov.uk,35 3551,http://www.merthyr.gov.uk,35 3552,http://www.news-digest.co.uk,35 3553,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuildingYourOwnHome/index.htm,35 3554,http://www.southamptoncbt.co.uk,35 3555,http://www.blog.thelawwizard.com,35 3556,http://www.vanrental.co.uk,35 3557,http://www.localhousingallowance.net,35 3558,http://www.verkehrsportal.de,35 3559,http://ictatshr.wordpress.com,35 3560,http://barry.ens.htk.co.uk,35 3561,http://firekills.direct.gov.uk/partners.html,35 3562,http://www.lso.ac.uk,35 3563,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Fixedtermworkers/DG_175138,35 3564,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/DG_10027916,35 3565,http://pdtrust.org,35 3566,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/CrimePrevention/DG_4001652,35 3567,http://essglaintra:6640,35 3568,http://www.britishgas-savings.co.uk,35 3569,http://aemigrar.com,35 3570,http://www.advmotott.co.uk,35 3571,http://poczta10.o2.pl,35 3572,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Benefits/BenefitsInRetirement/DG_198330,35 3573,http://talk.uk-yankee.com,35 3574,http://www.policespecials.com,35 3575,http://www.direct.gov.uk/en/DisabledPeople/RightsAndObligations/DG_4019061,35 3576,http://www.direct.gov.uk/en/Motoring/DriverLicensing/CaravansTrailersCommercialVehicles/DG_4022521,35 3577,http://www.nras.org.uk,35 3578,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/TrainingAndWorkplaceLearning/DG_4001327,35 3579,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/DG_073802,35 3580,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SchoolLife/DG_4016103,35 3581,http://bl141w.blu141.mail.live.com,35 3582,http://www.jobshop.stir.ac.uk,35 3583,http://www.diynot.com,35 3584,http://www.londonnet.co.uk,35 3585,http://ukinportugal.fco.gov.uk,35 3586,http://www.business.brookes.ac.uk,35 3587,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/WorkSchemesAndProgrammes/DG_173083,35 3588,http://www.heartrhythmcharity.org.uk,35 3589,http://wyp-intranet,35 3590,http://jobseekers.direct.gov.uk/MyBookmarks.aspx,35 3591,http://www.toytowngermany.com,35 3592,http://mastersweeps.co.uk,35 3593,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010998,35 3594,http://www.askkids.com,35 3595,http://www.cambridge.org,35 3596,http://suffolkinfolink.suffolkcc.gov.uk,35 3597,http://motorbility.com,35 3598,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/PlanningYourPersonalFinances/DG_10014128,35 3599,http://www.direct.gov.uk/en/Employment/Jobseekers/Helpapplyingforajob/DG_173605,35 3600,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/TheoryTest/DG_4022482,35 3601,http://www.soso.com,35 3602,http://www.west-norfolk.gov.uk,35 3603,http://www.consumerdeals.co.uk,35 3604,http://resources.glos.ac.uk,35 3605,http://microsites.essexcc.gov.uk,35 3606,http://microsites.lincolnshire.gov.uk,35 3607,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070304,35 3608,http://briskoda.net,34 3609,http://www.vetnurse.co.uk,34 3610,http://www.elitehomecarebristol.co.uk,34 3611,http://www.driversgb.com,34 3612,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Yourrightsandresponsibilitiesatwork/DG_174530,34 3613,http://www.idf50.co.uk,34 3614,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Respondingtoacourtclaimformoney/index.htm,34 3615,http://bis.gov.uk,34 3616,http://www.eastleigh.ac.uk,34 3617,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxrefundsreclaimingtax/DG_078486,34 3618,http://www.direct.gov.uk/en/Parents/ChildMaintenance/IfyourealreadyusingtheChildSupportAgency/index.htm,34 3619,http://www.westlondonletstart.com,34 3620,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/LearningToDriveOrRide/DG_4022529,34 3621,http://www.forums.redissue.co.uk,34 3622,http://www.direct.gov.uk/en/Parents/ChildMaintenance/IfyourealreadyusingtheChildSupportAgency/DG_198928,34 3623,http://www2.rgu.ac.uk,34 3624,http://www.rushcliffe.gov.uk,34 3625,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Problemsanddisputes/index.htm,34 3626,http://www.peep.org.uk,34 3627,http://www.trinitycollege.co.uk,34 3628,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Dealingwithemergencies/index.htm,34 3629,http://disclosure.capitarvs.co.uk,34 3630,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/CompanyPensions/DG_10026701,34 3631,http://searchdirectnow.com,34 3632,http://preview.eastriding.gov.uk,34 3633,http://www.hw.ac.uk,34 3634,http://cornwall-council.custhelp.com,34 3635,http://www.thefutureyou.org.uk,34 3636,http://www.90-one.com,34 3637,http://www.know-insurance.co.uk,34 3638,http://www.south-derbys.gov.uk,34 3639,http://www.direct.gov.uk/en/Dl1/Directories/DG_6000022,34 3640,http://arianna.libero.it,34 3641,http://www.totalprofessions.com,34 3642,http://www.sholland.gov.uk,34 3643,http://www.ebslondon.ac.uk,34 3644,http://www.google.com.af,34 3645,http://it.search-results.com,34 3646,http://www.ho.nfumutual.co.uk,34 3647,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/KeepingSafe/DG_10027670,34 3648,http://bl118w.blu118.mail.live.com,34 3649,http://www.direct.gov.uk/spptv3_en.dsb,34 3650,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/WorkingAndPayingTax/DG_4015975,34 3651,http://www.mentalhealthforum.net,34 3652,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/WhatToDoAfterADeath/DG_10029667,34 3653,http://www.citizensinformation.ie,34 3654,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ChildBenefitandwhoqualifies/index.htm,34 3655,http://romani.co.uk,34 3656,http://www.sainsburysbank.co.uk,34 3657,http://portal.bolton.gov.uk,34 3658,http://forums.motester.co.uk,34 3659,http://www.directgov.coionline.tv,34 3660,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/DanceandDrama/DG_066990,34 3661,http://www.psni.police.uk,34 3662,http://forum.scigacz.pl,34 3663,http://mail.yandex.ru,34 3664,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Internetsafety/index.htm,34 3665,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Employedorlookingforwork/DG_10018789,34 3666,http://www3.uwic.ac.uk,34 3667,http://thesource,34 3668,http://www.blacktieguide.com,34 3669,http://portal.surrey.ac.uk,34 3670,http://www.direct.gov.uk/en/YoungPeople/Money/index.htm,34 3671,http://mysutton.mobi,34 3672,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_073696,34 3673,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/index.htm,34 3674,http://www.direct.gov.uk/en/CaringForSomeone/CareHomes/DG_10031523,34 3675,http://spintranet,34 3676,http://www.broadland.gov.uk,34 3677,http://webmail1.mail.aol.com,33 3678,http://www.asdafinance.com,33 3679,http://www.studentjobswatford.moonfruit.com,33 3680,http://www.bama.co.uk,33 3681,http://www.rbksru.org.uk,33 3682,http://lite.indicator.co.uk,33 3683,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/YourHome/index.htm,33 3684,http://www.bassetlaw.gov.uk,33 3685,http://www.evaair.com,33 3686,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Ifthingsgowrong/Overpayments/DG_073813,33 3687,http://www.ffhs.org.uk,33 3688,http://www.beingdyslexic.co.uk,33 3689,http://www.urban75.net,33 3690,http://www.pru.co.uk,33 3691,http://www.blackboard.uhi.ac.uk,33 3692,http://forum.ctc.org.uk,33 3693,http://forum.chronicfatiguesyndrome.me.uk,33 3694,http://ar.wikipedia.org,33 3695,http://uxcolmoodle.uxbridge.ac.uk,33 3696,http://www.premierbathrooms.co.uk,33 3697,http://blackboard.mdh.se,33 3698,http://ncdt.co.uk,33 3699,http://www.polorama.com,33 3700,http://www.streetlife.com,33 3701,http://suffolk.olminfoserve.co.uk,33 3702,http://www.pocuk.com,33 3703,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017514,33 3704,http://www.stammeringlaw.org.uk,33 3705,http://el.wikipedia.org,33 3706,http://www.healthtalkonline.org,33 3707,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/DG_10027991,33 3708,http://www.dlauk.net,33 3709,http://www.direct.gov.uk/cy/Diol1/DoItOnline/Statepension/DG_189286cy,33 3710,http://www.nct.org.uk,33 3711,http://www.doble.co.uk,33 3712,http://www.help4teens.co.uk,33 3713,http://www.dontriskit.info,33 3714,http://www.pgce.soton.ac.uk,33 3715,http://www.direct.gov.uk/en/Dl1/Directories/Localcouncils/DG_4003649,33 3716,http://advice.caravanselecta.co.uk,33 3717,http://ukinaustria.fco.gov.uk,33 3718,http://results.myway.com,33 3719,http://sharp.direct.gov.uk/,33 3720,http://www.the11pluswebsite.co.uk,33 3721,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_175842,33 3722,http://www.leekhigh.staffs.sch.uk,33 3723,http://community.plus.net,33 3724,http://www.leedsuniversityunion.org.uk,33 3725,http://bl133w.blu133.mail.live.com,33 3726,http://www.windstream.net,33 3727,http://uk.mc241.mail.yahoo.com,33 3728,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Typesoffinance/DG_171503,33 3729,http://www.stir.ac.uk,33 3730,http://www.communityrepaint.org.uk,33 3731,http://www.harlow.gov.uk,33 3732,http://by145w.bay145.mail.live.com,33 3733,http://brittany.angloinfo.com,33 3734,http://ted.europa.eu,33 3735,http://sccchna1.surreycc.gov.uk,33 3736,http://www.optimum.net,33 3737,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/ThePolice/DG_181769,33 3738,http://www.cskills.org,33 3739,http://www.ombudsman.org.uk,33 3740,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/DebtsAndArrears/DG_10025592,33 3741,http://www.networkrail.co.uk,33 3742,http://www.elitelessons.co.uk,33 3743,http://www.ellcchoicehomes.org.uk,33 3744,http://www.gchq.gov.uk,33 3745,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/FinancialHelpForAdultLearners/DG_10033131,33 3746,http://thewire.wiltshire.council,33 3747,http://www.roombuddies.com,33 3748,http://www.ads-training.co.uk,33 3749,http://kent.gov.uk,33 3750,http://aolsearcht7.search.aol.com,33 3751,http://www.ambervalley.gov.uk,33 3752,http://www.latviesiem.co.uk,33 3753,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/ImportingAndExportingAVehicle/DG_4022582,32 3754,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069837,32 3755,http://www.ex-vecs.com,32 3756,http://www.direct.gov.uk/en/Dl1/Directories/Localcouncils/DG_4003592,32 3757,http://thepulse,32 3758,http://uk.bookmarks.yahoo.com,32 3759,http://recession.onespace.org.uk,32 3760,http://www.archive.official-documents.co.uk,32 3761,http://www.agius.com,32 3762,http://www.aizbraukt.lv,32 3763,http://www.gmpf.org.uk,32 3764,http://www.trentbarton.co.uk,32 3765,http://www.slmvauxhall.co.uk,32 3766,http://www.firststepslondon.org,32 3767,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applicationinformation/DG_174153,32 3768,http://shortnoticetests.com,32 3769,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/IntroductiontoIncomeTax/index.htm,32 3770,http://www.bunac.org,32 3771,http://www.discoversouthampton.co.uk,32 3772,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/DiscriminationAtWork/DG_10026574,32 3773,http://www.disclose.tv,32 3774,http://www.google.com.py,32 3775,http://www.direct.gov.uk/en/Dl1/Directories/DG_177940,32 3776,http://tda.gov.uk,32 3777,http://www.allerdale.gov.uk,32 3778,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/DanceandDrama/DG_066558,32 3779,http://www.wakefieldworks.com,32 3780,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/DanceandDrama/index.htm,32 3781,http://51.1.9.250,32 3782,http://www.trinitylaban.ac.uk,32 3783,http://hmrc.gov.uk,32 3784,http://www.direct.gov.uk/en/Employment/StartingANewJob/DG_10026518,32 3785,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Reportingcrimeandantisocialbehaviour/DG_185338,32 3786,http://www.direct.gov.uk/en/Motoring/DriverLicensing/DG_068315,32 3787,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Yourchildssafetyinthehome/DG_070594,32 3788,http://www.headway.org.uk,32 3789,http://www2.cnwl.ac.uk,32 3790,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_175850,32 3791,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Agencyworkersandemploymentagencies/index.htm,32 3792,http://www.londonproriders.com,32 3793,http://strivefs,32 3794,http://blogs.mirror.co.uk,32 3795,http://us.mc307.mail.yahoo.com,32 3796,http://www.theminiforum.co.uk,32 3797,http://ailamaria.skolbloggen.se,32 3798,http://www.proz.com,32 3799,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/PersonalPensions/DG_10014842,32 3800,http://www.bg-mamma.com,32 3801,http://investments.hsbc.co.uk,32 3802,http://jobseekers.direct.gov.uk/confirmlogout.aspx,32 3803,http://www.nationaldebtline.co.uk,32 3804,http://fr.ask.com,32 3805,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PensionCredit/DG_180168,32 3806,http://fr.search-results.com,32 3807,http://www.southlakeland.gov.uk,32 3808,http://www.thepoles.eu,32 3809,http://www.independentliving.co.uk,32 3810,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/YourMoney/index.htm,32 3811,http://www.tt-forum.co.uk,32 3812,http://www.cityandguilds.com,32 3813,http://online.dudley.gov.uk,32 3814,http://www.dsadrivingschool.co.uk,32 3815,http://www.chiltern.gov.uk,32 3816,http://www.clac.leicester.gov.uk,32 3817,http://www.direct.gov.uk/en/Dl1/Directories/Localcouncils/DG_4003594,32 3818,http://www.direct.gov.uk/en/Employment/Employees/Pay/index.htm,32 3819,http://www.direct.gov.uk/en/Governmentcitizensandrights/GettingLegalAdvice/Gettinglegaladviceandlegalaid/DG_195314,32 3820,http://cbcstlstaga,32 3821,http://rlbvs08,32 3822,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069867,32 3823,http://www.pcmd.ac.uk,32 3824,http://content.yudu.com,32 3825,http://www.environmental-protection.org.uk,32 3826,http://www.babyworld.co.uk,32 3827,http://www.cestria.org,32 3828,http://www.aegon.co.uk,32 3829,http://www.e-lindsey.gov.uk,32 3830,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/DG_073771,32 3831,http://moodle.bcu.ac.uk,32 3832,http://cr4.globalspec.com,32 3833,http://by170w.bay170.mail.live.com,32 3834,http://gttr.ac.uk,32 3835,http://www.connexions360.org.uk,32 3836,http://www.az.government.bg,32 3837,http://www.surfcanyon.com,32 3838,http://ask.metafilter.com,32 3839,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Typesofcrime/index.htm,31 3840,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017480,31 3841,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017977,31 3842,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/YourEmploymentRights/DG_4001071,31 3843,http://www.mynottingham.gov.uk,31 3844,http://www.hhbta.com,31 3845,http://www.google.ci,31 3846,http://www.dyingmatters.org,31 3847,http://classes.myplace.strath.ac.uk,31 3848,http://completeenergy.co.uk,31 3849,http://de.search.yahoo.com,31 3850,http://www.webdesigndev.com,31 3851,http://easylondon.blogspot.com,31 3852,http://www.vstag.co.uk,31 3853,http://www.faultymobilephones.co.uk,31 3854,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@over50/documents/digitalasset/dg_180219.pdf,31 3855,http://www.virginmedia.com,31 3856,http://www.vairavimoteorija.co.uk,31 3857,http://www.uws.ac.uk,31 3858,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/Bullying/DG_184893,31 3859,http://forums.rabbitrehome.org.uk,31 3860,http://www.ukmotorists.com,31 3861,http://id.wikipedia.org,31 3862,http://idsmart.direct.gov.uk/index.html,31 3863,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/StatePensionforecast/DG_194915,31 3864,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/CompanyPensions/index.htm,31 3865,http://moodle.stcharles.ac.uk,31 3866,http://www.teachers-uk.co.uk,31 3867,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyB/DG_10033635,31 3868,http://www.direct.gov.uk/en/Motoring/DriverLicensing/DG_4022493,31 3869,http://safe.met.police.uk,31 3870,http://schoolsfinder.direct.gov.uk/la/Cheshire-West-and-Chester/,31 3871,http://www.sra.org.uk,31 3872,http://www.lancsngfl.ac.uk,31 3873,http://www.spitfireonline.co.uk,31 3874,http://www.southnorthants.gov.uk,31 3875,http://www.lawyerlocator.co.uk,31 3876,http://translate.google.com,31 3877,http://uk.mc267.mail.yahoo.com,31 3878,http://www.sfo.gov.uk,31 3879,http://unistats.direct.gov.uk/,31 3880,http://www.searchcanvas.com,31 3881,http://us.mc1620.mail.yahoo.com,31 3882,http://bikewize.co.uk,31 3883,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/Streetcleaninglitterandillegaldumping/DG_10026161,31 3884,http://www.a2oc.net,31 3885,http://www.liv-coll.ac.uk,31 3886,http://www.ace-ed.org.uk,31 3887,http://www.actionforme.org.uk,31 3888,http://www.actionfraud.org.uk,31 3889,http://www.airgunbbs.com,31 3890,http://aolsearcht8.search.aol.com,31 3891,http://www.london-luton.co.uk,31 3892,http://www.apprentice-forward.org.uk,31 3893,http://www.artridertraining.co.uk,31 3894,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Mentalcapacityandplanningahead/DG_194971,31 3895,http://www.audi-sport.net,31 3896,http://www.quotelinedirect.co.uk,31 3897,http://www.bnma.org,31 3898,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Renewableandlowcarbonenergy/index.htm,31 3899,http://www.bpfagreements.org.uk,31 3900,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/index.htm,31 3901,http://www.planningportal.gov.uk,31 3902,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/DG_10026689,31 3903,http://www.bytestart.co.uk,31 3904,http://www.careers-in-sport.co.uk,31 3905,http://www.careers.cam.ac.uk,31 3906,http://www.pearsonhotlinks.co.uk,31 3907,http://www.payingforchildcare.org.uk,31 3908,http://www.passportservices.co.uk,31 3909,http://www.codforum.org.uk,31 3910,http://www.connexions-humber.co.uk,31 3911,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/DecidingWhereToStudy/DG_4017740,31 3912,http://www.ctcwings.com,31 3913,http://www.nhsdirect.wales.nhs.uk,31 3914,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017819,30 3915,http://ahmetkahya.blogspot.com,30 3916,http://www.investments.co.uk,30 3917,http://poczta.wp.pl,30 3918,http://www.miller-pattison.co.uk,30 3919,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_195776,30 3920,http://www.drivingjobs.co.uk,30 3921,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Pregnancyandmaternityrights/DG_10026556,30 3922,http://www.wrx.zen.co.uk,30 3923,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/Taxreturndeadlinescheckspenaltiesandappeals/DG_10014904,30 3924,http://www.lost-in-france.com,30 3925,http://faststream.hmg.gov.uk,30 3926,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_179755,30 3927,http://www.taylorsdriving.co.uk,30 3928,http://www.resolution.org.uk,30 3929,http://unistats.direct.gov.uk/retrieveColleges_en.do,30 3930,http://www.hitched.co.uk,30 3931,http://www.studentcashpoint.co.uk,30 3932,http://www.kidsunlimited.co.uk,30 3933,http://www.heatandplumb.com,30 3934,http://www.idealheating.com,30 3935,http://www.tmbc.gov.uk,30 3936,http://www.schooljotter.com,30 3937,http://normandy.angloinfo.com,30 3938,http://www.aminsulations.co.uk,30 3939,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/YourChildsWelfareAtSchool/index.htm,30 3940,http://www.minibusdrivertraining.com,30 3941,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/Hospitals/DG_4000474,30 3942,http://www.theukrc.org,30 3943,http://www.denbighshire.gov.uk,30 3944,http://safesearch.uk.ask.com,30 3945,http://www.act.org.uk,30 3946,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuyingYourHome/DG_4018088,30 3947,http://www.whywaitforever.com,30 3948,http://ameyworld.ameygroup.int,30 3949,http://lucasearch.biz,30 3950,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017602,30 3951,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ClaimingChildBenefit/DG_073779,30 3952,http://ukinindia.fco.gov.uk,30 3953,http://www.direct.gov.uk/en/DisabledPeople/EducationAndTraining/HigherEducation/DG_10035904,30 3954,http://uk.mc284.mail.yahoo.com,30 3955,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/LifeAtUniversityOrCollege/DG_10035694,30 3956,http://aolsearcht12.search.aol.com,30 3957,http://uk.practicallaw.com,30 3958,http://www.actiononhearingloss.org.uk,30 3959,http://one.skanska,30 3960,http://www.monarch.co.uk,30 3961,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011165,30 3962,http://www.detailingworld.co.uk,30 3963,http://www.csm.uk.com,30 3964,http://corizon.contactcentre.slc.co.uk:2000,30 3965,http://static.wix.com,30 3966,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MotoringContacts/DG_189692,30 3967,http://www.cjballtraining.com,30 3968,http://www.npt.gov.uk,30 3969,http://intranet03,30 3970,http://divorce.moneymadeclear.org.uk,30 3971,http://search.incredigames.com,30 3972,http://www.nelsonslaw.co.uk,30 3973,http://ca.answers.yahoo.com,30 3974,http://www.fireworks.co.uk,30 3975,http://www.mums-to-be.co.uk,30 3976,http://www.red-driving.co.uk,30 3977,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Marriagesandcivilpartnerships/DG_175717,30 3978,http://pathfinder.lifeskillslive.com,30 3979,http://www.sportmotor.hu,30 3980,http://sites.google.com,29 3981,http://www.dialdoncaster.co.uk,29 3982,http://www.nasuwt.org.uk,29 3983,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnPropertyAndRentalIncome/DG_4020890,29 3984,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Typesoffinance/DG_171531,29 3985,http://www.suht.nhs.uk,29 3986,http://www.bigwheelerssouthwales.co.uk,29 3987,http://www.revenuebenefits.org.uk,29 3988,http://www.hackney.ac.uk,29 3989,http://www.meadowbank-som.co.uk,29 3990,http://search.dnsadvantage.com,29 3991,http://delicious.com,29 3992,http://www.internetworldstats.com,29 3993,http://www.direct.gov.uk/en/Employment/Employees/TheNationalMinimumWage/DG_175113,29 3994,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/Mot/DG_192284,29 3995,http://moon.croydon.ac.uk,29 3996,http://www.techniquetraining.co.uk,29 3997,http://www.connexions-tw.co.uk,29 3998,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/DG_10026555,29 3999,http://www.simplythebestdrivingschool.co.uk,29 4000,http://www.scottishfriendly.co.uk,29 4001,http://msxml.excite.com,29 4002,http://vkontakte.ru,29 4003,http://1stclassmotorcycletraining.org.uk,29 4004,http://liberalconspiracy.org,29 4005,http://www.doctors.net.uk,29 4006,http://www.direct.gov.uk/en/CaringForSomeone/CareHomes/DG_10031525,29 4007,http://boards.footymad.net,29 4008,http://www.pass-slm.co.uk,29 4009,http://www.warmzones.co.uk,29 4010,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ExamsTestsAndTheCurriculum/index.htm,29 4011,http://www.the-bac.org,29 4012,http://www.glos.ac.uk,29 4013,http://www.broxtowe.gov.uk,29 4014,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BeginnersGuideToBenefits/DG_10013949,29 4015,http://ie.surfcanyon.com,29 4016,http://www.lorrydrivertraining.co.uk,29 4017,http://www.shirlaws.com,29 4018,http://h21intranet,29 4019,http://www.askmehelpdesk.com,29 4020,http://bl137w.blu137.mail.live.com,29 4021,http://thebigtreeplant.direct.gov.uk/planttree.html,29 4022,http://www.one2onedrivingschool.com,29 4023,http://www.curtisschoolofmotoring.co.uk,29 4024,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SpecialEducationalNeeds/DG_4008600,29 4025,http://jobseekers.direct.gov.uk/savesearchlogin.aspx,29 4026,http://www.google.dj,29 4027,http://www.ukonlinecentres.com,29 4028,http://www.hayling.co.uk,29 4029,http://www.google.kg,29 4030,http://www.rhondda-cynon-taff.gov.uk,29 4031,http://jerseydrivingschool.co.uk,29 4032,http://cs.wikipedia.org,29 4033,http://www.rwcmd.ac.uk,29 4034,http://www.nva.gov.lv,29 4035,http://www.alfaowner.com,29 4036,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnSavingsAndInvestments/DG_10013733,29 4037,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/Caretolearn/index.htm,29 4038,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Devolvedgovernment/DG_073306,29 4039,http://it.search.yahoo.com,29 4040,http://www.rambertschool.org.uk,29 4041,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/Over50sContacts/DG_178684,29 4042,http://www.halton.gov.uk,29 4043,http://bl125w.blu125.mail.live.com,29 4044,http://shropshire.gov.uk,29 4045,http://www.yeovil.ac.uk,29 4046,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/SupportAtHome/DG_10026850,29 4047,http://www.runnymede.gov.uk,29 4048,http://www.flexdrivingschool.co.uk,29 4049,http://www.cityofderryairport.com,29 4050,http://www.digitalworldz.co.uk,29 4051,http://ask.unum.co.uk,28 4052,http://www.firstassistonline.com,28 4053,http://childrenscentresfinder.direct.gov.uk/childrenscentresfinder/,28 4054,http://www.sheffcol.ac.uk,28 4055,http://www.greatwar.co.uk,28 4056,http://www.drivingschoolsregister.com,28 4057,http://ukinbulgaria.fco.gov.uk,28 4058,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_188740,28 4059,http://www.johncordell.co.uk,28 4060,http://www.direct.gov.uk/en/Hl1/Help/SiteMap/index.htm,28 4061,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069857,28 4062,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Centralgovernmentandthemonarchy/DG_073438,28 4063,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Centralgovernmentandthemonarchy/DG_073446,28 4064,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Gettingadivorce/DG_193732,28 4065,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/ContactOrDealWithHMRC/index.htm,28 4066,http://r.searchoodle.com,28 4067,http://www.direct.gov.uk/en/Pensionsandretirementplanning/TaxandNationalInsuranceinretirement/GettingyourtaxandNationalInsuranceright/DG_10014855,28 4068,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/IntroductiontoSelfAssessment/DG_4017116,28 4069,http://free-theory-test.addbucket.com,28 4070,http://www.richmondshire.gov.uk,28 4071,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/OrganisationsAndCharities/DG_10014890,28 4072,http://www.spectator.co.uk,28 4073,http://www.studento.com,28 4074,http://www.actionforchildren.org.uk,28 4075,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_4022087,28 4076,http://www.great-yarmouth.gov.uk,28 4077,http://space.edmundo.ro,28 4078,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/Basicstatepension/DG_10026707,28 4079,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/ContactOrDealWithHMRC/DG_10010579,28 4080,http://www.financial-elearning.co.uk,28 4081,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017959,28 4082,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Escapingandrecoveringfromafire/DG_180786,28 4083,http://oxford.sae.edu,28 4084,http://www.kevinbreen.co.uk,28 4085,http://origin.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/PracticalTest/DG_186585,28 4086,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/PersonalPensions/DG_10027141,28 4087,http://steppingup.rochdale.local,28 4088,http://www.direct.gov.uk/en/Diol1/MotoringDecisionTrees/DG_10034670,28 4089,http://www.nagcbritain.org.uk,28 4090,http://www.sussexcoast.ac.uk,28 4091,http://www.ruskin.ac.uk,28 4092,http://www.venables.co.uk,28 4093,http://www.topmarks.co.uk,28 4094,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/index.htm,28 4095,http://nww.northants.nhs.uk,28 4096,http://www.gro-scotland.gov.uk,28 4097,http://www.ryedale.gov.uk,28 4098,http://www.direct.gov.uk/en/EducationAndLearning/14To19/Years10And11/DG_10013568,28 4099,http://www.george.jobs,28 4100,http://www.google.mk,28 4101,http://www.121ds.co.uk,28 4102,http://www.brentwood.gov.uk,28 4103,http://www.smartdriving.co.uk,28 4104,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/UKpublicappointments/index.htm,28 4105,http://familylives.org.uk,28 4106,http://fairfield123.tripod.com,28 4107,http://www.britishmedalforum.com,28 4108,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/DG_10039030,28 4109,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Whistleblowingintheworkplace/DG_10026552,28 4110,http://www.findmyschool.co.uk,28 4111,http://www.foxtons.co.uk,28 4112,http://www.hcr.co.uk,28 4113,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ChoicesAfterYouGraduate/DG_10012482,28 4114,http://eilp.abingdon-witney.ac.uk,28 4115,http://www.thinkypedia.com,28 4116,http://routes.open.ac.uk,28 4117,http://www.plebble.com,28 4118,http://www.godalming.ac.uk,28 4119,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVU1zmzAQ*TW!ZMaMPiLARwi2m0uaCe1ZowqNo4mNXEmO!*OjD2yG1O5gn5pJLpJ239MubxcWo7Sd4GqCUmNZOGLgjN*uwJkW2kxQybVopHXeVguzW1vjQOhZxl2mzHDRNrJdOW!4mvxSyljRfJPWJN!fQnSCchdIs*1Or52FC!9Cz9Zu*aGzCVp0236*TxqpBbfJSr0mu5fOv9WqoVy1ZrehzapzyoZv19HAi*uG10K*Si6io6prupz*oI*Fch75qTGV4g9sc2BUSwoBwDmEsGPc17SuH392ePAit2Tlxj975bUQdGeCATzgFJbeN*vS*6X*k!tfszAKRBtnipWcata!uAFBxZ!tmyBGqrYvymDZMOOlktJHclUJG6luUBecoLKn5JGSB8o7LItYdgpLI5aewkjEyCnsNmK3BwzH5fhsOHQvN1xpMe2P*rToBQTmHej50yMraj57FRegL8O5wuEQuQjbByvcWUkwSoKXSJqdzAOO317eVzlExPNh2SP*YOKC4DTPwAyksV1TOGjoBf25Rsz*0Z93JbhI9lBTL*vfqSC8JtWgRKNTgWtSDSo!NhWYXZNq0MDRqf6aLmNSDd6H0amy86nCb0GtJHdj3wim!TMV7RtlSppX/results,28 4120,http://www.crawley.gov.uk,28 4121,http://www3.halton.gov.uk,28 4122,http://www.cableforum.co.uk,28 4123,http://www.world68.com,28 4124,http://www.gwent.police.uk,28 4125,http://rsmdrivertraining.com,28 4126,http://38degrees.org.uk,28 4127,http://businesslink.gov.uk,28 4128,http://www.connexions-manchester.com,28 4129,http://www.fancyacar.co.uk,28 4130,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ClaimingChildBenefit/index.htm,28 4131,http://www.wired-gov.net,28 4132,http://www.anactor.net,28 4133,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/TaxandNationalInsuranceinretirement/GettingyourtaxandNationalInsuranceright/DG_10014855CY,28 4134,http://www.centralsussex.ac.uk,28 4135,http://www.civinfo.com,28 4136,http://graduatetalentpool.direct.gov.uk/cms/ShowPage/Home_page/How_to_apply/CVs__covering_letters_and_applications/p!ebXXLkL,27 4137,http://www.direct.gov.uk/en/Employment/Jobseekers/Helpapplyingforajob/DG_174460,27 4138,http://www.a2dominion.co.uk,27 4139,http://www.lodgerlandlord.co.uk,27 4140,http://www.lodgers.com,27 4141,http://forum.sprawnymarketing.pl,27 4142,http://strongbodys.net,27 4143,http://xrtwo.speedcentral.co.uk,27 4144,http://www.parentsprotect.co.uk,27 4145,http://www.sherwoodsom.co.uk,27 4146,http://www.wvam.org.uk,27 4147,http://www.v10.pl,27 4148,http://www2.mystart.com,27 4149,http://www.qub.ac.uk,27 4150,http://www.naturopathy-uk.com,27 4151,http://www.ydscourse.com,27 4152,http://www.stroud.gov.uk,27 4153,http://images.google.co.uk,27 4154,http://www.the-challenge.org,27 4155,http://blackboard.ljmu.ac.uk,27 4156,http://insight.glos.ac.uk,27 4157,http://de.ask.com,27 4158,http://www.clubopel.com,27 4159,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/index.htm,27 4160,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/HelpingYourChildToLearn/index.htm,27 4161,http://www.vetmedsplus.co.uk,27 4162,http://www.phorcast.org.uk,27 4163,http://www.photobox.ie,27 4164,http://inside.reading.gov.uk,27 4165,http://chapmans.theorytestpro.co.uk,27 4166,http://pensionservice.gov.uk,27 4167,http://www.equalityhumanrights.com,27 4168,http://www.webfetch.com,27 4169,http://blackboard.staffs.ac.uk,27 4170,http://www.musthaveguides.co.uk,27 4171,http://www.google.as,27 4172,http://drugdrive.direct.gov.uk/legaldrugs.shtml,27 4173,http://centralen.csn.se,27 4174,http://bl128w.blu128.mail.live.com,27 4175,http://www.northyorksfire.gov.uk,27 4176,http://www.northwooduk.com,27 4177,http://directgov.transportdirect.info,27 4178,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/PleasureCraft/index.htm,27 4179,http://www.pensionforecast.org.uk,27 4180,http://www.cyq.org.uk,27 4181,http://www.myleaseplan.co.uk,27 4182,http://www.careers.lon.ac.uk,27 4183,http://www.worldticketshop.com,27 4184,http://courses.bournemouth.ac.uk,27 4185,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Aboutcollectivegrouppassports/DG_174122,27 4186,http://www.drivingtips.co.uk,27 4187,http://www.angus.gov.uk,27 4188,http://www.fiat.co.uk,27 4189,http://www.gooofullsearch.com,27 4190,http://vo.inrev.gov.uk,27 4191,http://www.filton.ac.uk,27 4192,http://www.jcu.edu.au,27 4193,http://www.searchqu.com,27 4194,http://www.pensionsservice.gov.uk,27 4195,http://moodle.wkc.ac.uk,27 4196,http://ls,27 4197,http://www.choiceandmedication.org,27 4198,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/RentingOutYourProperty/DG_189124,27 4199,http://www.greasepaint.co.uk,27 4200,http://www.business.scotland.gov.uk,27 4201,http://compliance.policyexample.bluecoat.com,27 4202,http://www.readyforten.com,27 4203,http://www.elmbridge.gov.uk,27 4204,http://www.sstaffs.gov.uk,27 4205,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/index.htm,27 4206,http://www.channel4embarrassingillnesses.com,27 4207,http://web2,27 4208,http://www.rcmf.co.uk,27 4209,http://www.driversmedicals.com,27 4210,http://www.dutchembassyuk.org,27 4211,http://londonsvenskar.com,27 4212,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_183759,27 4213,http://personal-finance.ukresident.com,27 4214,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/YourChildsWelfareAtSchool/DG_4016117,27 4215,http://www.direct.gov.uk/en/Employment/Employees/WorkingHoursAndTimeOff/DG_10029788,27 4216,http://www.group.rbsgrp.net,27 4217,http://www.direct.gov.uk/en/BritonsLivingAbroad/EducationAndJobs/DG_071571,27 4218,http://education.gov.uk,27 4219,http://sector1.net,27 4220,http://www.channelmogo.org,27 4221,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyD/DG_193810,27 4222,http://www.miata.net,27 4223,http://elibrary.westsussex.gov.uk,27 4224,http://www.dialuk.info,27 4225,http://googleads.g.doubleclick.net,27 4226,http://moodle.midkent.ac.uk,27 4227,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/TheQueensAwardforVoluntaryService/DG_180942,27 4228,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Disciplinaryprocedures/DG_10028115,26 4229,http://www.direct.gov.uk/en//Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_4022117,26 4230,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/index.htm,26 4231,http://aolsearcht10.search.aol.com,26 4232,http://www.racc.ac.uk,26 4233,http://www.newcarnet.co.uk,26 4234,http://www.alltheinternet.com,26 4235,http://www.direct.gov.uk/en/Nl1/Newsroom/Broadcasts/index.htm,26 4236,http://www.getinlane.com,26 4237,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Mentalcapacityandplanningahead/DG_185924,26 4238,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKSiPtl1*wxBLOtMOO7HJ9ve7cNMSnC7o0*YCF86R4znXoO36YcMOm1x8wHTSt*vwBQvTa3u*Dhb2KIG1BVqtbKPNqTVn2HWbV!VLbRxhUEPb1L0yFyDU!vMGJ9i2M*5wnpej4V3ZCxR8l0uYWOUnfnjJHerqfBcoJVJKTxlhBWLFFCYQE1MYR4xPYVvEtg!M4fB8N3b0HmzT9ToLpauOwYBn7kngZ08Wep59lFUkxDAXHPMnV376Z8HNWqJoiS6xJCd1MJyg4VP2J7LXOHbkP5as4kyUBZFEYLsyGjV0QX*WmPkb*RlFsMh27CnY*l2K0jVSUUTJUmSNVJR4qhSRa6SiBiZL*bhdUqSi7yFZqpiXku630J3bBq59q1XfvNXafAP!Lnt9/results,26 4239,http://www.learners-guide.co.uk,26 4240,http://rental-deposits.com,26 4241,http://www.clevelandfire.gov.uk,26 4242,http://www.studentnet.manchester.ac.uk,26 4243,http://www.trainbreaks.com,26 4244,http://www.hial.co.uk,26 4245,http://www.mx5nutz.com,26 4246,http://taxaid.org.uk,26 4247,http://www.studentmidwife.net,26 4248,http://www.gyanpedia.in,26 4249,http://www.recyclenow.com,26 4250,http://www.cwjobs.co.uk,26 4251,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Respondingtoacourtclaimformoney/DG_195919,26 4252,http://epetitions.direct.gov.uk/petitions/885,26 4253,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SpecialEducationalNeeds/DG_4000835,26 4254,http://www.learnenglish.de,26 4255,http://www.arrowselfdrive.com,26 4256,http://www.absolutelyaltinkum.co.uk,26 4257,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/TheoryTest/DG_4022538,26 4258,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EducationAndLearningContacts/DG_171789,26 4259,http://www.portsmouthcbt.co.uk,26 4260,http://www.learndriving.net,26 4261,http://seniortravel.about.com,26 4262,http://testvalleyintranet,26 4263,http://www.britishlaw.org.uk,26 4264,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SchoolLife/DG_4016089,26 4265,http://www.mya4e.com,26 4266,http://www.mfe.org,26 4267,http://ingiltere.forumingiltere.com,26 4268,http://innovate-apps.direct.gov.uk/bereavement/0-0-0.html,26 4269,http://www.nebosvod.co.uk,26 4270,http://www.northerntrailertraining.com,26 4271,http://asso.intersejours.free.fr,26 4272,http://www.radian.co.uk,26 4273,http://pgstudy.nottingham.ac.uk,26 4274,http://caretolearn.ypla.gov.uk,26 4275,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applicationinformation/DG_183772,26 4276,http://www.westcountry-rider-training.co.uk,26 4277,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Planningyourfuture/DG_066169,26 4278,http://www.whatcar.com,26 4279,http://www.sicklecellsociety.org,26 4280,http://publicappts.defra.gov.uk,26 4281,http://www.jhptraining.com,26 4282,http://www.energyefficiencynews.com,26 4283,http://www.animationmentor.com,26 4284,http://www.direct-gov.com,26 4285,http://benefits.tcell.org.uk,26 4286,http://www.ssmtraining.co.uk,26 4287,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Renewableandlowcarbonenergy/DG_072593,26 4288,http://www.direct.gov.uk/en/Parents/CrimeAndYoungOffenders/DG_4003033,26 4289,http://www.bolsover.gov.uk,26 4290,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018704,26 4291,http://www.inverclyde.gov.uk,26 4292,http://assets.dft.gov.uk,26 4293,http://www.rcs.ac.uk,26 4294,http://www.worcester.ac.uk,26 4295,http://www.connexionswolverhampton.co.uk,26 4296,http://www.workingfamilieseverywhere.com,26 4297,http://www.scottishdrivingschool.com,26 4298,http://www.lst.ac.uk,26 4299,http://docs.google.com,26 4300,http://www.londoniete.lt,26 4301,http://www.txdrivertraining.com,26 4302,http://www.readmedicine.com,26 4303,http://www.thechaosengine.com,26 4304,http://aannette,26 4305,http://dordogne.angloinfo.com,26 4306,http://www.rave.ac.uk,26 4307,http://www.homeserve.com,26 4308,http://ntu.ac.uk,26 4309,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/DG_190077CY,26 4310,http://www.dei.edu.gr,26 4311,http://www.angliarevenues.gov.uk,26 4312,http://www.ravelry.com,26 4313,http://plane-truth.com,26 4314,http://www.leedstrinity.ac.uk,26 4315,http://www.direct.gov.uk/en/Parents/ParentsRights/DG_4003313,26 4316,http://www.dorset.police.uk,26 4317,http://www.fdean.gov.uk,26 4318,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017929,26 4319,http://www.cpmjobs.co.uk,26 4320,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/Pedestrians/index.htm,26 4321,http://forums.m3cutters.co.uk,26 4322,http://costablanca.angloinfo.com,26 4323,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/Completingtaxreturnsandkeepingrecords/index.htm,26 4324,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Working/OpportunitiesInRetirement/DG_10014663,26 4325,http://www.huwdavies.ltd.uk,26 4326,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/index.htm,26 4327,http://chat.allotment.org.uk,26 4328,http://blaenau-gwent.3dmarcomms.com,26 4329,http://www.askamum.co.uk,26 4330,http://www.molevalley.gov.uk,25 4331,http://www.passfaster.org,25 4332,http://www.cne-siar.gov.uk,25 4333,http://www.direct.gov.uk/en/YoungPeople/Housing/index.htm,25 4334,http://www.acclaimdriving.com,25 4335,http://blackboard.arts.ac.uk,25 4336,http://www.direct.gov.uk/en/Environmentandgreenerliving/Wasteandrecycling/index.htm,25 4337,http://forum.hawaaworld.com,25 4338,http://staffnet.gloscc.gov.uk,25 4339,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018839,25 4340,http://www.direct.gov.uk/en/YoungPeople/Money/FinancialHelpforYoungpeople/DG_10027506,25 4341,http://www.supportline.org.uk,25 4342,http://www.bdia.co.uk,25 4343,http://www.blaenau-gwent.gov.uk,25 4344,http://www.civilvenuesuk.com,25 4345,http://www.direct.gov.uk/en/Diol1/EmploymentInteractiveTools/DG_065384,25 4346,http://www.vauxhallownersnetwork.co.uk,25 4347,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/index.htm,25 4348,http://www.direct.gov.uk/en/DisabledPeople/TravelHolidaysAndBreaks/TravelAndHolidaysInTheUk/DG_4015876,25 4349,http://www.direct.gov.uk/en/DisabledPeople/DG_071048,25 4350,http://www.4exmilitary.com,25 4351,http://www.anglie.cz,25 4352,http://www.yorkcollege.ac.uk,25 4353,http://www.vfs.com,25 4354,http://www.swift-owners-club.com,25 4355,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Youngpeopleandalcohol/index.htm,25 4356,http://www.henley.reading.ac.uk,25 4357,http://www.minibustrainingandsafety.co.uk,25 4358,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Tenancies/DG_189101,25 4359,http://finddrivinginstructor.direct.gov.uk/DSAFindNearestWebApp/findNearest.form,25 4360,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/GetLearning/index.htm,25 4361,http://nl.wikipedia.org,25 4362,http://fhqwcm001,25 4363,http://search.ke.voila.fr,25 4364,http://www.cycle-route.com,25 4365,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/agriculturalworkers/DG_179612,25 4366,http://www.artmotorcycletraining.co.uk,25 4367,http://farmingforum.co.uk,25 4368,http://www.efva.co.uk,25 4369,http://ka.wikipedia.org,25 4370,http://www.charnwood.gov.uk,25 4371,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentHousing/DG_064417,25 4372,http://www.eesweb.co.uk,25 4373,http://whocallsme.com,25 4374,http://www.familymediationcouncil.org.uk,25 4375,http://www.rbsinsurance.rbsgrp.net,25 4376,http://km.corp.northamptonshire.gov.local,25 4377,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Makingacourtclaimformoney/DG_195981,25 4378,http://www.b-d-a.co.uk,25 4379,http://www.polishbikers.com,25 4380,http://epetitions.direct.gov.uk/search,25 4381,http://cms.nottinghamshire.gov.uk,25 4382,http://idudley,25 4383,http://www.hartnellchanot.co.uk,25 4384,http://www.slmdirect.co.uk,25 4385,http://www.babyabroad.co.uk,25 4386,http://ukinegypt.fco.gov.uk,25 4387,http://webapp.doctors.org.uk,25 4388,http://www.wuz.it,25 4389,http://www.thebigproject.co.uk,25 4390,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ChoosingASchool/DG_4016312,25 4391,http://schools-online.org,25 4392,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Dismissal/index.htm,25 4393,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Dismissal/DG_10026692,25 4394,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/PleasureCraft/DG_180557,25 4395,http://www.atlasdrive.co.uk,25 4396,http://www.home-education.org.uk,25 4397,http://climatechangeeducation.org,25 4398,http://www.doublefinish.com,25 4399,http://vle.barkingcollege.ac.uk,25 4400,http://www.londonkalauz.hu,25 4401,http://www.whiterosebeautycolleges.co.uk,25 4402,http://www.jumpsavings.com,25 4403,http://www.direct.gov.uk/en/Employment/Jobseekers/JobsAndCareers/DG_10033053,25 4404,http://www.maypole.org.uk,25 4405,http://www.drivingtestnow.co.uk,25 4406,http://www.st-patricks.ac.uk,25 4407,http://mp3tubetoolbar.com,25 4408,http://www.eures.ee,25 4409,http://business.wales.gov.uk,25 4410,http://www.greenwich-college.ac.uk,25 4411,http://by168w.bay168.mail.live.com,25 4412,http://community.findlaw.co.uk,25 4413,http://ca.yhs4.search.yahoo.com,25 4414,http://www.falmouth.ac.uk,25 4415,http://www.thelupussite.com,25 4416,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/PlanningForRetirement/index.htm,25 4417,http://www.the-sra.org.uk,25 4418,http://www.careinfoscotland.co.uk,25 4419,http://www.leiths.com,25 4420,http://www.direct.gov.uk/en/Motoring/DriverLicensing/DrivingInGbOnAForeignLicence/DG_4022559,25 4421,http://www.baaso.org.uk,25 4422,http://fr.mg40.mail.yahoo.com,25 4423,http://www.studentbeans.com,25 4424,http://www.bestflashanimationsite.com,25 4425,http://forums.preloved.co.uk,25 4426,http://www.appointed-for-scotland.org,25 4427,http://www.travel.state.gov,25 4428,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/DG_4022414,25 4429,http://www.ncl-coll.ac.uk,25 4430,http://www.knittingforums.org.uk,25 4431,http://www.bigpondsitehelp.com,25 4432,http://www.mondaytofriday.com,25 4433,http://www.belfastforum.co.uk,25 4434,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/ContactOrDealWithHMRC/DG_10013358,25 4435,http://www.belfastcity.gov.uk,25 4436,http://www.flysfc.com,25 4437,http://brussels.angloinfo.com,24 4438,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PensionCredit/DG_180159,24 4439,http://rbsmoneysense.co.uk,24 4440,http://www.surreydrivingforce.co.uk,24 4441,http://www.direct.gov.uk/en/Dl1/Directories/Localcouncils/DG_4003650,24 4442,http://www.hertsmere.gov.uk,24 4443,http://www.streetwisedrivingschool.net,24 4444,http://www.ncc.org.uk,24 4445,http://www.registeringadeath.co.uk,24 4446,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Redundancy/DG_10029844,24 4447,http://www.rafbf.org,24 4448,http://www.taxfix.co.uk,24 4449,http://www.thamesreach.org.uk,24 4450,http://www.myeggnest.com,24 4451,http://www.gocompare.com,24 4452,http://www.direct.gov.uk/en/EducationAndLearning/14To19/OptionsAt16/DG_10013574,24 4453,http://www.cartridgegenie.co.uk,24 4454,http://www.thecommonwealth.org,24 4455,http://www.direct.gov.uk/en/disabledpeople/homeandhousingoptions/yourhome/dg_4000642,24 4456,http://www.nepalisamajuk.com,24 4457,http://www.fstar.co.uk,24 4458,http://www.suprememotoring.co.uk,24 4459,http://www.studentfinancewales.co.uk,24 4460,http://prospectus.lmu.ac.uk,24 4461,http://forum.gwladrugby.com,24 4462,http://www.aviva.co.uk,24 4463,http://www.south-thames.ac.uk,24 4464,http://gotouni.direct.gov.uk/index.htm,24 4465,http://www.informationnow.org.uk,24 4466,http://www.ateammotorcycletraining.co.uk,24 4467,http://business.leeds.ac.uk,24 4468,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Gettingadivorce/DG_192085,24 4469,http://forum.7ya.lv,24 4470,http://newscollector.org,24 4471,http://www.salfordvanhire.com,24 4472,http://ro.wikipedia.org,24 4473,http://www.direct.gov.uk/en/Employment/Employees/TheNationalMinimumWage/DG_175114,24 4474,http://www.lesfairfield.org,24 4475,http://samfind.com,24 4476,http://www.direct.gov.uk/en/BritonsLivingAbroad/BeforeYouGo/DG_4000018,24 4477,http://jobseeker.direct.gov.uk./detailhds.aspx,24 4478,http://www.ypte.org.uk,24 4479,http://www.r3w.co.uk,24 4480,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Makingacourtclaimformoney/DG_195762,24 4481,http://intranet.leeds.gov.uk,24 4482,http://www.diamonddrivertraining.co.uk,24 4483,http://www.capt.org.uk,24 4484,http://www.venturelearningltd.co.uk,24 4485,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Paymentsandentitlements/ChildBenefitpayment/DG_073828,24 4486,http://www.tommys.org,24 4487,http://teams.plus.qinetiq.com,24 4488,http://yougo.co.uk,24 4489,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/DG_173874,24 4490,http://google.com,24 4491,http://www.nuca.ac.uk,24 4492,http://www.stockporthgv.co.uk,24 4493,http://www.timesofmalta.com,24 4494,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/StatePension/DG_10018948CY,24 4495,http://ask.derby.ac.uk,24 4496,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Repairsandstandards/DG_189201,24 4497,http://www.locostbuilders.co.uk,24 4498,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Repairsandstandards/DG_189200,24 4499,http://www.cbt2das.co.uk,24 4500,http://www.recoveryegroup.com,24 4501,http://www.sussex.police.uk,24 4502,http://bl124w.blu124.mail.live.com,24 4503,http://www.raglan.org,24 4504,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthandadoptionrecords/Registeringorchangingabirthrecord/index.htm,24 4505,http://www.gsmd.ac.uk,24 4506,http://www.passdirectdrivingschool.co.uk,24 4507,http://www.london-fire.gov.uk,24 4508,http://los.direct.gov.uk/http://los.direct.gov.uk/,24 4509,http://www.asta-uk.org,24 4510,http://www.mentalhealthcare.org.uk,24 4511,http://www.2passforum.co.uk,24 4512,http://www.wcva-cru.org.uk,24 4513,http://www.oultwood.com,24 4514,http://vle.halesowen.ac.uk,24 4515,http://birmingham.theorytestpro.co.uk,24 4516,http://cyps.northyorks.gov.uk,24 4517,http://homepage.ntlworld.com,24 4518,http://www.uhl-tr.nhs.uk,24 4519,http://www.sssc.uk.com,24 4520,http://www.exeter.gov.uk,24 4521,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/index.htm,24 4522,http://www.lissongrove.co.uk,24 4523,http://www.wychavon.gov.uk,24 4524,http://www.cityplym.ac.uk,23 4525,http://www.educationcity.com,23 4526,http://www.baaf.org.uk,23 4527,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyB/DG_067508,23 4528,http://ndht.ndevon.swest.nhs.uk,23 4529,http://www.brittonkill.k12.ny.us,23 4530,http://www.travailler-en-angleterre.com,23 4531,http://www.rodsnsods.co.uk,23 4532,http://www.rcm.ac.uk,23 4533,http://www.mansfield.gov.uk,23 4534,http://naturalmamas.co.uk,23 4535,http://www.thomson.co.uk,23 4536,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/PreparingFortheFirstDayAtSchool/DG_10013541,23 4537,http://moodle.hope.ac.uk,23 4538,http://en.m.wikipedia.org,23 4539,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011323,23 4540,http://www.brendonhill.com,23 4541,http://www.passwithcbs.co.uk,23 4542,http://www.ekhuft.nhs.uk,23 4543,http://www.google.dz,23 4544,http://courseresources.derby.ac.uk,23 4545,http://blog.naver.com,23 4546,http://www.idealdriverandridertraining.co.uk,23 4547,http://www.grimsby.ac.uk,23 4548,http://cms.intra.blackburn.gov.uk,23 4549,http://www.skyscanner.net,23 4550,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Bereaved/DG_10018848,23 4551,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ExamsTestsAndTheCurriculum/DG_10037625,23 4552,http://moodle.gateshead.ac.uk,23 4553,http://www.pprune.org,23 4554,http://goldstartickets.co.uk,23 4555,http://www.remploy.co.uk,23 4556,http://www.qtac.co.uk,23 4557,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/DebtsAndArrears/DG_10019426,23 4558,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Redundancy/DG_182503,23 4559,http://findlaw.co.uk,23 4560,http://www.acemoto.com,23 4561,http://www.acm.ac.uk,23 4562,http://www.warwickshire.ac.uk,23 4563,http://heartbeat.group.net,23 4564,http://www.studentfinance.direct.gov.uk/calculator/studentfinancecalculator/1112/ineligible.xhtml,23 4565,http://www.businesstraveller.com,23 4566,http://www.insolvency.gov.uk,23 4567,http://www.farn-ct.ac.uk,23 4568,http://www.rondeakinsadi.co.uk,23 4569,http://www.studentfinance.ie,23 4570,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Trafficinformationandjourneyplanning/DG_184637,23 4571,http://83.244.183.180,23 4572,http://www.google.ws,23 4573,http://norwich.pl,23 4574,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/WhatToDoAfterADeath/DG_066713,23 4575,http://www.hipp.co.uk,23 4576,http://firekills.direct.gov.uk/firefighters.html,23 4577,http://www.worldsnooker.premiumtv.co.uk,23 4578,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/Taxreliefandreductions/DG_10026451,23 4579,http://www.deac.co.uk,23 4580,http://www.worldseafishing.com,23 4581,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Aboutcollectivegrouppassports/DG_174123,23 4582,http://www.webmd.boots.com,23 4583,http://www.swansea.ac.uk,23 4584,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/AdaptingAVehicle/DG_10028000,23 4585,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_180583,23 4586,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069870,23 4587,http://as.exeter.ac.uk,23 4588,http://www.4ni.co.uk,23 4589,http://tw.search.yahoo.com,23 4590,http://www.londoninternational.ac.uk,23 4591,http://www.fititis.gr,23 4592,http://www.thehideout.org.uk,23 4593,http://www.euroguidance-france.org,23 4594,http://www.menopausematters.co.uk,23 4595,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Workexperienceandvolunteering/DG_066213,23 4596,http://www.direct.gov.uk/cy/DisabledPeople/FinancialSupport/Introductiontofinancialsupport/DG_073387CY,23 4597,http://www.acaciadrivingtuition.co.uk,23 4598,http://www.wehct.nhs.uk,23 4599,http://bt-itool.custhelp.com,23 4600,http://www.digitaltachograph.gov.uk,23 4601,http://www.direct.gov.uk/en/DisabledPeople/EducationAndTraining/HigherEducation/index.htm,23 4602,http://srvfhqaspire3,23 4603,http://moj.coionline.tv,23 4604,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Reportingcrimeandantisocialbehaviour/DG_181857,23 4605,http://ukinsweden.fco.gov.uk,23 4606,http://www.actionforblindpeople.org.uk,23 4607,http://olive.westnotts.ac.uk,23 4608,http://philcharnockdrivinginstruction.co.uk,23 4609,http://ushare.student.westherts.ac.uk,23 4610,http://uk.mfa.lt,23 4611,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/StatePensionforecast/DG_180327,23 4612,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_4022092,23 4613,http://www.northernballetschool.co.uk,23 4614,http://simmscapital.smuc.ac.uk,23 4615,http://www.accommodation.cam.ac.uk,23 4616,http://harinet.haringey.gov.uk,23 4617,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/Horseridersandanimals/index.htm,23 4618,http://www.men-arena.com,23 4619,http://www.thehighstreetfund.co.uk,23 4620,http://www.screw-paypal.com,23 4621,http://www.confetti.uk.com,23 4622,http://www.bodywork-dance.co.uk,23 4623,http://www.pubwork-uk.com,23 4624,http://www.citroendirectleasing.com,23 4625,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Buyingacar-yourconsumerrights/index.htm,23 4626,http://unistats.direct.gov.uk/englishIndex.do,23 4627,http://blog.atoshealthcare.com,23 4628,http://www.comparechildtrustfunds.co.uk,23 4629,http://www.associationfornutrition.org,23 4630,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenerhomeandgarden/Greenershopping/DG_064434,23 4631,http://beneficentlaw.co.uk,23 4632,http://search.aol.ca,23 4633,http://www.uncol.com,23 4634,http://www.combiboiler.net,23 4635,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenertravel/Greenercarsanddriving/DG_064428,23 4636,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Howtocomplainaboutgoodsandservices/index.htm,23 4637,http://www.extracrew.com,23 4638,http://infonet,23 4639,http://www.direct.gov.uk/en/Motoring/DriverLicensing/EndorsementsAndDisqualifications/DG_069887,23 4640,http://www.girlguiding.org.uk,23 4641,http://www.noodletools.com,23 4642,http://i.maxthon.com,22 4643,http://www.ukbmd.org,22 4644,http://www.any-care.co.uk,22 4645,http://www.avonandsomerset.police.uk,22 4646,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Aboutcollectivegrouppassports/index.htm,22 4647,http://www.eusa.ed.ac.uk,22 4648,http://www.turkishliving.com,22 4649,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/index.htm,22 4650,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070289,22 4651,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069852,22 4652,http://www.asa.org.uk,22 4653,http://home.live.com,22 4654,http://www.writeawill.org.uk,22 4655,http://www.direct.gov.uk/en/Motoring/DriverLicensing/CaravansTrailersCommercialVehicles/DG_185057,22 4656,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10017690,22 4657,http://www.kingswoodpartnership.org.uk,22 4658,http://www.ne-derbyshire.gov.uk,22 4659,http://www.stevedavisadi.co.uk,22 4660,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Ifthingsgowrong/Wheretostart/DG_174189,22 4661,http://www.nationalgrid.com,22 4662,http://www.ground-control.co.uk,22 4663,http://www.southampton-city.ac.uk,22 4664,http://nz.answers.yahoo.com,22 4665,http://www.nwleics.gov.uk,22 4666,http://www.mypensioninfo.com,22 4667,http://students.keele.ac.uk,22 4668,http://npsintranet,22 4669,http://www.societyofgenealogists.com,22 4670,http://suche.web.de,22 4671,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/PracticalTest/DG_4022483,22 4672,http://www.google.mg,22 4673,http://www.google.com.sb,22 4674,http://targetjobs.co.uk,22 4675,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/PlanYourWayOutOfDebt/DG_10023185,22 4676,http://new.npep.org.uk,22 4677,http://www.sleeping.org.uk,22 4678,http://www.gassafetycertificate.info,22 4679,http://www.glyndwr.ac.uk,22 4680,http://www.justlanded.com,22 4681,http://www.learningtodrive.co.uk,22 4682,http://www.tax-news.com,22 4683,http://www.stage-uk.com,22 4684,http://www.taxrebateservices.co.uk,22 4685,http://britishexpat.com,22 4686,http://mpfmembers.org.uk,22 4687,http://uk.bing.com,22 4688,http://www.eastdevon.gov.uk,22 4689,http://caisterhigh.org.uk,22 4690,http://www.excelmotorcycletraining.co.uk,22 4691,http://www.computeractive.co.uk,22 4692,http://www.foggyfriends.org,22 4693,http://www.wlc.ac.uk,22 4694,http://moodle.malmesbury.wilts.sch.uk,22 4695,http://uk.mc286.mail.yahoo.com,22 4696,http://www.metfilmschool.co.uk,22 4697,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/DG_073775,22 4698,http://uk.mg1.mail.yahoo.com,22 4699,http://moneytolearn.direct.gov.uk/residentialbursary/,22 4700,http://www.passinkent.com,22 4701,http://www.passmasters.co.uk,22 4702,http://uk.wrs.yahoo.com,22 4703,http://www.newsreader.ws,22 4704,http://www.thebikeschool.com,22 4705,http://ukinfinland.fco.gov.uk,22 4706,http://www.johnfieldsom.co.uk,22 4707,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_197706,22 4708,http://www.chi.ac.uk,22 4709,http://www.theclaimsconnection.co.uk,22 4710,http://www.direct.gov.uk/en/Employment/Employees/Sicknessabsence/DG_185054,22 4711,http://www.jobs.nhs.uk,22 4712,http://www.wewant2work.co.uk,22 4713,http://www.drivesafedriving.co.uk,22 4714,http://curriculum.ttsonline.net,22 4715,http://us.mc1613.mail.yahoo.com,22 4716,http://www.lets-ride.co.uk,22 4717,http://www.letsgogardening.co.uk,22 4718,http://www.wellingborough.gov.uk,22 4719,http://www.jgdrivingtuition.co.uk,22 4720,http://www.cardatachecks.co.uk,22 4721,http://verden.abcsok.no,22 4722,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10018752,22 4723,http://vle.chesterfield.ac.uk,22 4724,http://dsdintranet.intranet.nigov.net,22 4725,http://www.direct.gov.uk/en/CaringForSomeone/CareHomes/DG_10031519,22 4726,http://vle.heatonmanor.newcastle.sch.uk,22 4727,http://www.washijb.jobcentreplus.gov.uk,22 4728,http://www.dmcts.co.uk,22 4729,http://elearning.bolton.ac.uk,22 4730,http://element.searchpw.com,22 4731,http://www.brunelcare.org.uk,22 4732,http://kwwcomputers.co.uk,22 4733,http://www.direct.gov.uk/en/Employment/Startinganewjob/DG_10026518,22 4734,http://www.direct.gov.uk/en/Employment/Startinganewjob/DG_10026703,22 4735,http://www.direct.gov.uk/en/Employment/StartingANewJob/DG_10026703,22 4736,http://wiki.club8090.co.uk,22 4737,http://kids.direct.gov.uk/,22 4738,http://www.direct.gov.uk/cy/Parents/Moneyandworkentitlements/WorkAndFamilies/index.htm,22 4739,http://www.titanteachertraining.co.uk,22 4740,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Tenancies/DG_189123,22 4741,http://www.idrive-northampton.co.uk,22 4742,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Energyandwaterefficiencyinyourhome/DG_064374,22 4743,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/GrantsFundsAndStandards/DG_4001408,22 4744,http://www.a1motorcycletraining.co.uk,22 4745,http://iris,22 4746,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/index.htm,22 4747,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenertravel/DG_064428,22 4748,http://www.abi.org.uk,22 4749,http://www.direct.gov.uk/en/YoungPeople/Money/FinancialHelpForYoungPeople/DG_4020069,22 4750,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Dealingwithemergencies/Preparingforemergencies/index.htm,22 4751,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Volunteering/DG_195523,22 4752,http://forums.gumtree.com,22 4753,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/TypesOfCrime/DG_172800,22 4754,http://www.tradeconservatories2u.co.uk,22 4755,http://intra.group.contour.scapesoft.co.uk,22 4756,http://www.lloydstsb-offshore.com,22 4757,http://www.imattertraining.co.uk,22 4758,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Councilhousing/Applying/DG_188701,22 4759,http://www.advantagewimbledon.co.uk,22 4760,http://www.fronterra.co.uk,22 4761,http://www.advicespecialists.co.uk,22 4762,http://in.yhs.search.yahoo.com,22 4763,http://www.maatieto.net,22 4764,http://www.m8szkola.co.uk,22 4765,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_066460,22 4766,http://geneva.angloinfo.com,22 4767,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Energyperformancecertificates/DG_177137,22 4768,http://www.ffoc.co.uk,22 4769,http://www.direct.gov.uk/en/Governmentcitizensandrights/GettingLegalAdvice/index.htm,22 4770,http://www.direct.gov.uk/en/Governmentcitizensandrights/Identitycards/index.htm,22 4771,http://gregwtravels.travellerspoint.com,22 4772,http://www.dfdsseaways.nl,21 4773,http://www.direct.gov.uk/en/Motoring/DriverLicensing/CaravansTrailersCommercialVehicles/DG_10013073,21 4774,http://www.consumerline.org,21 4775,http://www.filmstudies.cz,21 4776,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/Optionsafterschool/DG_067577,21 4777,http://us.mc1205.mail.yahoo.com,21 4778,http://internal.sage.local,21 4779,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/AirTravel/DG_176737,21 4780,http://type-r-owners.co.uk,21 4781,http://www.financingyourcar.org.uk,21 4782,http://search.yippy.com,21 4783,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Energyandwaterefficiencyinyourhome/index.htm,21 4784,http://blog.renren.com,21 4785,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Youngpeopleandalcohol/DG_10026211,21 4786,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2011/DG_WP195610,21 4787,http://www.4you2.org.uk,21 4788,http://www.gsmwoking.co.uk,21 4789,http://www.search.com,21 4790,http://driver-training-advice.blogspot.com,21 4791,http://www.cosmiq.de,21 4792,http://www.familjeliv.se,21 4793,http://www.motorcodes.co.uk,21 4794,http://www.motoguzziclub.co.uk,21 4795,http://www.sja.org.uk,21 4796,http://www.injectia.ro,21 4797,http://travel.maktoob.com,21 4798,http://lb-pn-as:8080,21 4799,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Protectyourselffromscams/index.htm,21 4800,http://www.insurancechoice.co.uk,21 4801,http://www.web-directories.ws,21 4802,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Inretirement/DG_10018952CY,21 4803,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_194621,21 4804,http://192.168.42.202:8080,21 4805,http://www.google.com.cu,21 4806,http://childrenscentresfinder.direct.gov.uk/childrens-centres-search-results/,21 4807,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/BenefitsAndMoney/DG_10029744,21 4808,http://cumbria.cumpol.net,21 4809,http://lbbd,21 4810,http://www.trueparenting.co.uk,21 4811,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Caringforsomeone/DG_10012529,21 4812,http://www.sky.com,21 4813,http://www.gmp.police.uk,21 4814,http://www.plumpton.ac.uk,21 4815,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Thewiderenvironment/DG_070060CY,21 4816,http://www.direct.gov.uk/en/YoungPeople/Youthfunds/index.htm,21 4817,http://www.colc.co.uk,21 4818,http://www.happy-hour-driving.com,21 4819,http://yoursquaremile.co.uk,21 4820,http://www.hyndburnbc.gov.uk,21 4821,http://www.z4-forum.com,21 4822,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/Completingtaxreturnsandkeepingrecords/DG_10013600,21 4823,http://www.crashcoursesdrivingschool.co.uk,21 4824,http://www.housing-rights.info,21 4825,http://www.mymoneydiva.com,21 4826,http://uk.new.m.yahoo.com,21 4827,http://intranet2,21 4828,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069862,21 4829,http://uktv.co.uk,21 4830,http://uk.mc260.mail.yahoo.com,21 4831,http://www.waveney.gov.uk,21 4832,http://graduatetalentpool.direct.gov.uk/cms/ShowPage/Home_page/p!ecaaefg,21 4833,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/DebtsAndArrears/DG_10013198,21 4834,http://uk.mc282.mail.yahoo.com,21 4835,http://www.skillsacademyforhealth.org.uk,21 4836,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/PublicConsultations/index.htm,21 4837,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Typesofcrime/DG_182053,21 4838,http://glasgowschoolblogs.org.uk,21 4839,http://jobseekers.direct.gov.uk/RegistrationUpdate.aspx,21 4840,http://www.carbonfootprint.com,21 4841,http://www.londonimagyarok.hu,21 4842,http://www.east-northamptonshire.gov.uk,21 4843,http://www.som.soton.ac.uk,21 4844,http://clifftons.com,21 4845,http://www.brighousemtc.co.uk,21 4846,http://www.grand-arcade.co.uk,21 4847,http://www.belldrivingschool.co.uk,21 4848,http://groups.yahoo.com,21 4849,http://search.netzero.net,21 4850,http://teachertrainingcymru.org,21 4851,http://motoring.direct.gov.uk/service/PDF,21 4852,http://www.mot-reminder.com,21 4853,http://www.abovetopsecret.com,21 4854,http://staffnet,21 4855,http://www.gin.sme.ne.jp,21 4856,http://www.juka.org.uk,21 4857,http://www.1sttimesom.co.uk,21 4858,http://www.uws.prospects.ac.uk,21 4859,http://www.bristolimagyarok.co.uk,21 4860,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/PlanYourWayOutOfDebt/DG_187500,21 4861,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/DG_10016128,21 4862,http://www.ombudsman-services.org,21 4863,http://www.minibusclub.co.uk,21 4864,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/AdviceOnBuyingAndSellingAVehicle/CalculatethefuelconsumptionCO2andtaxcosts/DG_195357,21 4865,http://www.sheltercontent.org.uk,21 4866,http://falcon.zodiac.herts.police.cjx.gov.uk,21 4867,http://intranet.nt.avs,21 4868,http://www.direct.gov.uk/cy/Employment/Jobseekers/LookingForWork/DG_10030134CY,21 4869,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_183784,21 4870,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Energygrants/index.htm,21 4871,http://www.mcleodschoolofmotoring.co.uk,21 4872,http://forum.minicooper.org,21 4873,http://www.local.direct.gov.uk/LDGRedirect/LocationSearch.do,21 4874,http://h-hertsnet.zodiac.herts.police.cjx.gov.uk,21 4875,http://newsassociates.co.uk,21 4876,http://espaibarcanova.cat,21 4877,http://sendspace.start.iplay.com,21 4878,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/Drivinglorriesbusesandcoaches/DG_182834,21 4879,http://www.bimm.co.uk,21 4880,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/PlanYourWayOutOfDebt/DG_10013266,21 4881,http://www.vwcamperguide.com,21 4882,http://www.uk-preppers.co.uk,21 4883,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/GetLearning/DG_4016408,21 4884,http://www.jsgedge.co.uk,21 4885,http://www.google.cat,21 4886,http://intranet.hants.gov.uk,21 4887,http://www.passwithpaulinverness.co.uk,21 4888,http://www.notestdrivinglicence.com,21 4889,http://www.direct.gov.uk/en/Video/DG_WP193994,21 4890,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Makingacourtclaimformoney/DG_195812,21 4891,http://www.glamro.gov.uk,21 4892,http://aolsearcht2.search.aol.com,21 4893,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010859,21 4894,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/WhatToDoAfterADeath/DG_066724,21 4895,http://smallsteps4life.direct.gov.uk/en/secondary/index.aspx,21 4896,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BeginnersGuideToBenefits/DG_10035707,21 4897,http://uk-mkivs.net,21 4898,http://www.ourladysbishopeton.com,21 4899,http://www.yor-ok.org.uk,21 4900,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Situationsthatcanchangeyourconsumerrights/index.htm,21 4901,http://www.google.ht,21 4902,http://www.direct.gov.uk/en/EducationAndLearning/14To19/OptionsAt16/DG_066261,20 4903,http://nvqweb.com,20 4904,http://www.wiltshire.ac.uk,20 4905,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017263,20 4906,http://www.nva.lv,20 4907,http://www.evabookkeeping.co.uk,20 4908,http://www.trafficengland.com,20 4909,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017510,20 4910,http://www.ybw.com,20 4911,http://www.mmo-champion.com,20 4912,http://www.som.cranfield.ac.uk,20 4913,http://www.a1amber.com,20 4914,http://www.oxonchildrenscentres.org.uk,20 4915,http://betterfuture.direct.gov.uk/have-pension.html,20 4916,http://www.kenthomechoice.org.uk,20 4917,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/DG_182835,20 4918,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/DG_182834,20 4919,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Goingtoprison/DG_196200,20 4920,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MotoringContacts/DG_192548,20 4921,http://www.total-moto.com,20 4922,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011173,20 4923,http://www.essentialsforhealth.co.uk,20 4924,http://us.nc.yhs.search.yahoo.com,20 4925,http://www.mobility-centres.org.uk,20 4926,http://www.publictenders.net,20 4927,http://www.harleysridertraining.com,20 4928,http://www.direct.gov.uk/cy/TravelAndTransport/Foreigntravel/BeforeYouTravel/DG_4016874CY,20 4929,http://overseas.yoshimura-sr.com,20 4930,http://intranet.bcc.lan,20 4931,http://barchester,20 4932,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017574,20 4933,http://londonbikers.com,20 4934,http://www.nottinghamdrivingschool.biz,20 4935,http://www.digitaltelevision.gov.uk,20 4936,http://www.direct.gov.uk/en/Dl1/Directories/DG_10016531,20 4937,http://www.bikewize.co.uk,20 4938,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Gettingstarted/DG_171578,20 4939,http://www.hefthr.co.uk,20 4940,http://djsdrivingschool.com,20 4941,http://pastas.one.lt,20 4942,http://lochneska.cz,20 4943,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_171909,20 4944,http://www.weightlossresources.co.uk,20 4945,http://www.ceredigionjobs.info,20 4946,http://www.easton-college.ac.uk,20 4947,http://www.helpforenglish.cz,20 4948,http://midipyreneessouth.angloinfo.com,20 4949,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_186108,20 4950,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/ChildTrustFund/SettingupaChildTrustFundaccount/DG_193682,20 4951,http://vizedhtmlcontent.next.ecollege.com,20 4952,http://childmindinghelp.co.uk,20 4953,http://uk.mg2.mail.yahoo.com,20 4954,http://www.wikihow.com,20 4955,http://www.direct.gov.uk/cy/TravelAndTransport/Foreigntravel/AirTravel/index.htm,20 4956,http://mibnet,20 4957,http://www.direct.gov.uk/en/Employment/Employees/Flexibleworking/DG_173304,20 4958,http://www.caw.ac.uk,20 4959,http://www.passwithaces.com,20 4960,http://search1.mytelus.com,20 4961,http://home.allgameshome.com,20 4962,http://home.cnxnotts.co.uk,20 4963,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuyingYourHome/DG_184264,20 4964,http://www.driverwaywithlinda.co.uk,20 4965,http://golondon.about.com,20 4966,http://www.thefamilyhubleeds.org,20 4967,http://www.reseauetudiant.com,20 4968,http://www.skillsactive.com,20 4969,http://www.recycleforgloucestershire.com,20 4970,http://wapsbt.momac.net,20 4971,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_10018959,20 4972,http://www.lgjobs.com,20 4973,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/PensionCredit/DG_10018692CY,20 4974,http://www.centsa.org.uk,20 4975,http://www.direct.gov.uk/en/Hl1/Help/SiteMap/DG_A-Z_SM,20 4976,http://www.fashion.arts.ac.uk,20 4977,http://www.dsg.mod.uk,20 4978,http://www.firststopcareadvice.org.uk,20 4979,http://www.alexa.com,20 4980,http://www.coleridgemedicalcentre.co.uk,20 4981,http://moodle.cityplym.ac.uk,20 4982,http://www.economicshelp.org,20 4983,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/DiscriminationAtWork/DG_10026667,20 4984,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ChoicesAfterYouGraduate/DG_183343,20 4985,http://www.targetcourses.co.uk,20 4986,http://de.answers.yahoo.com,20 4987,http://www.homegroup.org.uk,20 4988,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_066327,20 4989,http://www.wales.nhs.uk,20 4990,http://www.talkeasy.co.uk,20 4991,http://qrobe.it,20 4992,http://www.bruford.ac.uk,20 4993,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/WhatToDoAfterADeath/DG_066810,20 4994,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/CaringForSomeoneContacts/DG_10013089,20 4995,http://www.qword.com,20 4996,http://www.shtc.org.uk,20 4997,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011010,20 4998,http://www.girlings.co.uk,20 4999,http://www.directdebtadvice.co.uk,20 5000,http://zh-yue.wikipedia.org,20 5001,http://essexlibrariesmenus,20 5002,http://www.britishcompanies.co.uk,20 5003,http://www.mapdrivingschool.co.uk,20 5004,http://www.google.cd,20 5005,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/GovernmentContacts/DG_10014918,20 5006,http://www.sia.homeoffice.gov.uk,20 5007,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_067819.pdf,20 5008,http://www.bellsdriving.co.uk,20 5009,http://www.lifeintheuk.org,20 5010,http://www.wlt-group.com,20 5011,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_065264.pdf,20 5012,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/Motorinsurance/DG_067630,20 5013,http://www.centralscotland.police.uk,20 5014,http://www.safetyscene.co.uk,20 5015,http://www.bridgwater.ac.uk,20 5016,http://prava-uk.blogspot.com,20 5017,http://www.rightsatwork.co.uk,20 5018,http://www.powys.gov.uk,20 5019,http://www.carkb.com,20 5020,http://grono.net,20 5021,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/%40dg/%40en/documents/digitalasset/dg_186303.html,20 5022,http://sd.defra.gov.uk,20 5023,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Tenancies/DG_189119,20 5024,http://www.dairyco.net,20 5025,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/SavingsAndInvestments/DG_10013986,20 5026,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_4017827,20 5027,http://www.advanced-driving.co.uk,20 5028,http://support.rightcorecare.co.uk,20 5029,http://www.knowhownonprofit.org,20 5030,http://moodle.bmgs.bolton.sch.uk,20 5031,http://aolsearcht4.search.aol.com,20 5032,http://www.bgateway.com,20 5033,http://www.hotviews.co.uk,20 5034,http://www.viralweb.co.uk,20 5035,http://www.jobs.ac.uk,20 5036,http://www.googlesyndicatedsearch.com,20 5037,http://www.london.polemb.net,20 5038,http://www.magicfreebiesuk.co.uk,20 5039,http://www.davidhurst.co.uk,20 5040,http://www.direct.gov.uk/cy/DisabledPeople/HealthAndSupport/index.htm,20 5041,http://219.219.191.244:1980,20 5042,http://www.cardriving-lessons.co.uk,20 5043,http://www.sociology.uk.net,20 5044,http://www.direct.gov.uk/en/Parents/Childcare/DG_180946,19 5045,http://www.eurolines.co.uk,19 5046,http://as.starware.com,19 5047,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/Equipment/DG_4000495,19 5048,http://www.1stclassmotorcycletraining.co.uk,19 5049,http://www.vintage-radio.net,19 5050,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZSujVrsQU26ef3ANklWG3Up*YFDszAOHOMmlHbjB4zUnzC9CyVfO1tRlrBrwO3owZAaWmugzWAYwRrA0c6boRUL706w67bHLgvpXIEy20vOs3VBQid*PqAG0w*Ki*ESDUZ3rm5QMFaUsNEGz!x4wNxqKtJGylVoFSeMsHKgJVzWBGwYg5jAWNz2CFghxtGw3B*NnryHowYtcxj6apTNOCZjyjy8zsreF48ShsUY1gKjvqbGz*9s!AWLeFgCW!xVM*qhHCihk*Z30if0tgD*7akDaNFVaIaFaFdOU4auqE*e8z8jf5MIthkO*UUbf8uhfEeqSSi1VJoj1SS!FopVO!RShq4WurH12WNVPI!rJYql6Vq91sYz72Az76RXIu3Tqpv!yl*sw__/results,19 5051,http://board.freeones.com,19 5052,http://www.jobboard.ie,19 5053,http://www.epm.co.uk,19 5054,http://www.aclass-motorcycle-training.co.uk,19 5055,http://www.patsmotoring.co.uk,19 5056,http://www.bipolar4all.co.uk,19 5057,http://www.careerssw.org,19 5058,http://www.safe4lifedrivertraining.co.uk,19 5059,http://www.ukcreditrepair.co.uk,19 5060,http://www.theinvestingsite.com,19 5061,http://www.griggsys.co.uk,19 5062,http://www.naukajazdywuk.com,19 5063,http://blog_it.blogs.sapo.pt,19 5064,http://www.direct.gov.uk/cy/Motoring/LearnerAndNewDrivers/LearningToDriveOrRide/DG_4022530CY,19 5065,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/DoingWorkYourself/DG_10022562,19 5066,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Tenancies/DG_189110,19 5067,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PlanningForRetirement/DG_183723,19 5068,http://ukhumanrightsblog.com,19 5069,http://childcarefinder.direct.gov.uk/,19 5070,http://www.readytogo.net,19 5071,http://www.passmoresacademy.com,19 5072,http://ukinmexico.fco.gov.uk,19 5073,http://www.direct.gov.uk/en/DisabledPeople/RightsAndObligations/Police/DG_4018603,19 5074,http://forum.motocyklistow.pl,19 5075,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_194354.pdf,19 5076,http://moodle.ucl.ac.uk,19 5077,http://blogs.findlaw.co.uk,19 5078,http://www.petforums.co.uk,19 5079,http://wizaz.pl,19 5080,http://southwark.talis.com,19 5081,http://www.cas.org.uk,19 5082,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Problemsanddisputes/DG_189241,19 5083,http://uzdarbis.lt,19 5084,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10015783,19 5085,http://aa.mc1602.mail.yahoo.com,19 5086,http://www.uwe.ac.uk,19 5087,http://www.blaby.gov.uk,19 5088,http://staff.devon.gov.uk,19 5089,http://www.smartdriving.org,19 5090,http://pistonheads.co.uk,19 5091,http://www.heinfo.slc.co.uk,19 5092,http://www.vitalise.org.uk,19 5093,http://search.swagbucks.com,19 5094,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/BankAccountsAndBankingProducts/DG_10035164,19 5095,http://judicialcomplaints.judiciary.gov.uk,19 5096,http://www.google.co.ck,19 5097,http://www.direct.gov.uk/en/Employment/Employees/Pay/DG_178525,19 5098,http://www.northeast.nhs.uk,19 5099,http://revsandbens.centralsussex.gov.uk,19 5100,http://www.time-to-change.org.uk,19 5101,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Migrantworkers/DG_10027923,19 5102,http://www.bike-addict.co.uk,19 5103,http://www.darlington.ac.uk,19 5104,http://money.uk.msn.com,19 5105,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/PlanningPermission/DG_4018105,19 5106,http://www.simplemotoring.co.uk,19 5107,http://www.brainandspine.org.uk,19 5108,http://www.cidbt.org.uk,19 5109,http://www.army.mod.uk,19 5110,http://www.admin.ox.ac.uk,19 5111,http://forum.followfollow.com,19 5112,http://monevator.com,19 5113,http://ww2.rushmoor.gov.uk,19 5114,http://www.bridgendhousing.co.uk,19 5115,http://www2.hud.ac.uk,19 5116,http://bl114w.blu114.mail.live.com,19 5117,http://www.leeds-art.ac.uk,19 5118,http://www.lifesen.com,19 5119,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_10035904,19 5120,http://www.helplinedirectory.com,19 5121,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxallowancesandreliefs/DG_078316,19 5122,http://www.the-retirement-site.co.uk,19 5123,http://www.surpassdriving.com,19 5124,http://www.ls-uk.info,19 5125,http://learn.hace.org.uk,19 5126,http://www.tevu-darzelis.lt,19 5127,http://yandex.kz,19 5128,http://www.dmoz.org,19 5129,http://boards.4chan.org,19 5130,http://us.mc1614.mail.yahoo.com,19 5131,http://boards.thisismoney.co.uk,19 5132,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_175854,19 5133,http://www.ukpower.co.uk,19 5134,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxallowancesandreliefs/DG_078323,19 5135,http://www.borntodriveschool.com,19 5136,http://www.twojaeuropa.pl,19 5137,http://www.vawk.org.uk,19 5138,http://us.mc1606.mail.yahoo.com,19 5139,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Goingtocourt/DG_072707,19 5140,http://www.meanwoodgrouppractice.co.uk,19 5141,http://www.ukmotorhomes.net,19 5142,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuildingYourOwnHome/DG_10016241,19 5143,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/SupportWhileInWork/DG_4000382,19 5144,http://www.unicominsurance.com,19 5145,http://barnet.theorytestpro.co.uk,19 5146,http://www.go2uk.org,19 5147,http://www.croner-i.croner.co.uk,19 5148,http://uk.mc293.mail.yahoo.com,19 5149,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/PracticalTest/DG_4022541,19 5150,http://www.chas.gov.uk,19 5151,http://www.lgyhredeployment.co.uk,19 5152,http://www.easytide.com,19 5153,http://www.relaunchyourcareer.co.uk,19 5154,http://www.north-norfolk.gov.uk,19 5155,http://www.direct.gov.uk/en/TravelAndTransport/Passports/DG_177732,19 5156,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/SupportedHousingSchemes/index.htm,19 5157,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070236,19 5158,http://svbweb,19 5159,http://www.fertilityfriends.co.uk,19 5160,http://www.thisislincolnshire.co.uk,19 5161,http://www.alanwestondriving.co.uk,19 5162,http://www.gallowsbrackets.com,19 5163,http://www.btinternet.com,19 5164,http://www.direct.gov.uk/en/Governmentcitizensandrights/LivingintheUK/index.htm,19 5165,http://cn.mg20.mail.yahoo.com,19 5166,http://www.havering-college.ac.uk,19 5167,http://www.cotswold.gov.uk,19 5168,http://www.direct.gov.uk/paternity.dsb,19 5169,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Typesofcrime/DG_181626,19 5170,http://www.yours.co.uk,19 5171,http://www.landlords.org.uk,19 5172,http://dppi,19 5173,http://www.euromost.info,19 5174,http://think.direct.gov.uk/horses.html,19 5175,http://www.unison.org.uk,19 5176,http://www.phoenixdriving.org,19 5177,http://www.freestuffjunction.co.uk,19 5178,http://www.walbottlecampus.newcastle.sch.uk,19 5179,http://www.weddingideaschat.com,19 5180,http://www.cilip.org.uk,19 5181,http://www.direct.gov.uk/en/TravelAndTransport/roadsafetyadvice/DG_188761,19 5182,http://www.roadsafetyweek.org.uk,19 5183,http://www.trustmark.org.uk,19 5184,http://www.torfaen.gov.uk,19 5185,http://www.inghilterra.com,19 5186,http://askmid.com,19 5187,http://www.fareham.gov.uk,19 5188,http://schoolsfinder.direct.gov.uk/contact-us/,19 5189,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/Trusts/index.htm,19 5190,http://uk.angloinfo.com,19 5191,http://chieelliott.wordpress.com,18 5192,http://www.direct.gov.uk/en/CaringForSomeone/MoneyMatters/DG_10018517,18 5193,http://moodle.burycollege.ac.uk,18 5194,http://www.shires-motorcycle-training.co.uk,18 5195,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentHousing/DG_064419,18 5196,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/UntaxedVehicle/DG_4022059,18 5197,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011698,18 5198,http://www.thegreenparent.co.uk,18 5199,http://moodle.leggott.ac.uk,18 5200,http://www.direct.gov.uk/en/Employment/Employees/WorkingHoursAndTimeOff/DG_174586,18 5201,http://www.teslamotors.com,18 5202,http://www.tesco.com,18 5203,http://www.dyslexia-help.org,18 5204,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/Motorinsurance/DG_067639,18 5205,http://s0.2mdn.net,18 5206,http://us.mc1618.mail.yahoo.com,18 5207,http://www.mdf.org.uk,18 5208,http://www.triumphtorque.com,18 5209,http://moodle.rotherham.ac.uk,18 5210,http://moodle.rsg.org.uk:8080,18 5211,http://www.carehomes.net,18 5212,http://www.hbupdate.com,18 5213,http://graduatetalentpool.direct.gov.uk/cms/ShowPage/Home_page/How_it_works/More_about_Graduate_Talent_Pool/p!efeealL,18 5214,http://www.arena-lettings.co.uk,18 5215,http://discussionforums,18 5216,http://www.simplygo.com,18 5217,http://www.pharmacyregulation.org,18 5218,http://www.theplace.org.uk,18 5219,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Paymentsandentitlements/ChildBenefitpayment/index.htm,18 5220,http://ucreative.ac.uk,18 5221,http://www.middevon.gov.uk,18 5222,http://www.corsasport.co.uk,18 5223,http://my.brock.ac.uk,18 5224,http://graduatetalentpool.direct.gov.uk/cms/ShowPage/Home_page/How_to_apply/Interviews_and_assessment_days/p!eeffcmL,18 5225,http://www2.prestontoday.net,18 5226,http://www.taxdisc.direct.gov.uk/EvlPortalApp/index.jsp,18 5227,http://www.direct.gov.uk/en/Parents/ParentsRights/index.htm,18 5228,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/CourtClaimsAndBankruptcy/index.htm,18 5229,http://vle.peterborough.ac.uk,18 5230,http://vle.queenelizabeth.cumbria.sch.uk,18 5231,http://www.wcresidents.co.uk,18 5232,http://trabajo.practicopedia.com,18 5233,http://volunteering.direct.gov.uk/index.php,18 5234,http://www.buxtoncollege.ac.uk,18 5235,http://www.jcollinsmedals.co.uk,18 5236,http://www.skillsdevelopmentscotland.co.uk,18 5237,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ChoosingASchool/DG_4016124,18 5238,http://www.huradoanglie.cz,18 5239,http://www.credit-card-comparison-online.co.uk,18 5240,http://www.scambusters-uk.org,18 5241,http://www.crescentbakerysurgery.nhs.uk,18 5242,http://www.eclips-online.co.uk,18 5243,http://mycenturylink.com,18 5244,http://www.moto-technique.co.uk,18 5245,http://www.plshop.co.uk,18 5246,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Goingtocourt/DG_196045,18 5247,http://www.operator-safety-training.co.uk,18 5248,http://www.openroadmotoring.co.uk,18 5249,http://www.thinkbanking.co.uk,18 5250,http://www.skysports.com,18 5251,http://www.edisposals.com,18 5252,http://www.youthoria.org,18 5253,http://www.only2clicks.com,18 5254,http://www.talkaboutautism.org.uk,18 5255,http://www.csbf.org.uk,18 5256,http://www.gixerjunkies.com,18 5257,http://www.fastpassdrivinglessonsglasgow.co.uk,18 5258,http://eu.startpage.com,18 5259,http://www.licg.nl,18 5260,http://justmots-px.rtrk.co.uk,18 5261,http://www.ehcas.org.uk,18 5262,http://www.smartridertraining.co.uk,18 5263,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/YourChildsWelfareAtSchool/DG_4016097,18 5264,http://www.cyprusdriving.net,18 5265,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/Mortgages/DG_10013667,18 5266,http://www.1st-call.co.uk,18 5267,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/YourChildsWelfareAtSchool/DG_4016112,18 5268,http://www.braintumouruk.org.uk,18 5269,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/SavingsAndInvestments/DG_4016062,18 5270,http://findgala.com,18 5271,http://www.ocvc.ac.uk,18 5272,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/SavingsAndInvestments/index.htm,18 5273,http://www.geoffgreener.co.uk,18 5274,http://www.zdajzmarcinem.0fees.net,18 5275,http://www.england-seiten.de,18 5276,http://www.andrewsdrivingschool.net,18 5277,http://www.direct.gov.uk/jsaq.dsb,18 5278,http://www.prepa-hec.org,18 5279,http://firstlandlord.com,18 5280,http://www.emma.cam.ac.uk,18 5281,http://www.swalec.co.uk,18 5282,http://www.botesdalehealthcentre.nhs.uk,18 5283,http://www.boston.ac.uk,18 5284,http://odi.dwp.gov.uk,18 5285,http://ric,18 5286,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MotoringContacts/index.htm,18 5287,http://strefa.polacy.co.uk,18 5288,http://www.sussexdowns.ac.uk,18 5289,http://www.direct.gov.uk/en/Diol1/EmploymentDecisionTrees/CaseForFlexibleWorking/case_for_flexible_working.dsb,18 5290,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/PersonalPensions/DG_4017567,18 5291,http://www.direct.gov.uk/en/Hl1/Help/Accessibility/index.htm,18 5292,http://www.mobiles.co.uk,18 5293,http://www.direct.gov.uk/en/YoungPeople/Money/TaxesAndYou/DG_10027647,18 5294,http://www.sourcedirectory.org.uk,18 5295,http://www.south-ayrshire.gov.uk,18 5296,http://www.redl.co.uk,18 5297,http://www.england.pl,18 5298,http://www.rspca.org.uk,18 5299,http://www.nowletsgetstarted.co.uk,18 5300,http://www.superbyke.co.uk,18 5301,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Changesthataffectyourtaxcredits/DG_073824,18 5302,http://www.uttlesford.gov.uk,18 5303,http://www.accesstomusic.co.uk,18 5304,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Changesthataffectyourtaxcredits/Familychanges/DG_172968,18 5305,http://www.fmb.org.uk,18 5306,http://www.freeindex.co.uk,18 5307,http://www.liverpool.gov.uk,18 5308,http://intranet.leics.gov.uk,18 5309,http://paymentsforparents.direct.gov.uk/index.html,18 5310,http://www.diigo.com,18 5311,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PlanningForRetirement/index.htm,18 5312,http://www.towinghorsetrailers.co.uk,18 5313,http://pensions-service.direct.gov.uk/en/information-points/home.asp,18 5314,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Energy-yourconsumerrights/index.htm,18 5315,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/Yourvehicleandlicence/DG_10029770,18 5316,http://www.isisbeautyacademy.co.uk,18 5317,http://forums.cpap.co.uk,18 5318,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Charities/index.htm,18 5319,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EmploymentContacts/DG_172106,18 5320,http://www.southwarkhomesearch.org.uk,18 5321,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Findingsomewhere/DG_4001401,18 5322,http://www.rhyldrivertraining.co.uk,18 5323,http://playbox.toolbarhome.com,18 5324,http://interactiondesignleedsmet.files.wordpress.com,18 5325,http://plus.indicator.co.uk,18 5326,http://www.imd.communities.gov.uk,18 5327,http://search.netjungle.com,18 5328,http://www.avantfind.com,18 5329,http://forums.thedigitalfix.co.uk,18 5330,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Mortgagesandrepossessions/DG_174005,18 5331,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Greenertravel/Airtravelandgreenerholidays/DG_064429CY,18 5332,http://smartdriving.org,18 5333,http://www.ipadforums.net,18 5334,http://www.nestpensions.org.uk,18 5335,http://www.londynek.net,18 5336,http://sls.sunderland.ac.uk,18 5337,http://iacinvestigations.co.uk,18 5338,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_186973,18 5339,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/IntroductiontoSelfAssessment/index.htm,18 5340,http://www.direct.gov.uk/en/Pensionsandretirementplanning/TaxandNationalInsuranceinretirement/GettingyourtaxandNationalInsuranceright/index.htm,18 5341,http://rebeldoggmct.com,18 5342,http://shmail01s.syp.southyorks.police.uk,18 5343,http://www.ukwelcomes.businesslink.gov.uk,18 5344,http://www.anglotopia.net,18 5345,http://www.twowheelsnuneatonmotorcycletraining.co.uk,18 5346,http://www.appeals-service.gov.uk,18 5347,http://ghrom.com,18 5348,http://www.uksa.org,18 5349,http://www.barnwelldrivingschool.co.uk,18 5350,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuyingYourHome/DG_4001323,18 5351,http://www.twas.org.uk,18 5352,http://iis.intranet.diageo,18 5353,http://www.richardharper.net,18 5354,http://hmvf.co.uk,18 5355,http://www.turpinmiller.co.uk,18 5356,http://www.christieseducation.com,18 5357,http://www.leicestershire-fire.gov.uk,18 5358,http://coi.gov.uk,18 5359,http://colin.suffolkcc.gov.uk,18 5360,http://www.passyourtestonline.co.uk,18 5361,http://www.tripadvisor.com,18 5362,http://ukintaiwan.fco.gov.uk,18 5363,http://www.meningiomauk.org,18 5364,http://www.chesterzoo.org,18 5365,http://www.thedeadwood.co.uk,18 5366,http://www.cheshirefire.gov.uk,18 5367,http://uk.mg5.mail.yahoo.com,18 5368,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_192415,18 5369,http://www.studentiromaniuk.co.uk,17 5370,http://www.manorhousecentre.org.uk,17 5371,http://icm.sunderland.gov.uk,17 5372,http://www.2wheelskool.co.uk,17 5373,http://www.idebate.org,17 5374,http://www.uk-yankee.com,17 5375,http://suffolkjobsdirect.org,17 5376,http://sn122w.snt122.mail.live.com,17 5377,http://www.maggotdrowning.com,17 5378,http://www.informedconsent.co.uk,17 5379,http://innovate-apps.direct.gov.uk/widgets/redundancy/assets/index.html,17 5380,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070302,17 5381,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/DG_10010523,17 5382,http://jobseekers.direct.gov.uk/AboutMySearches.aspx,17 5383,http://www.lincolncollege.ac.uk,17 5384,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012178,17 5385,http://www.car4play.com,17 5386,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/SavingsAndInvestments/DG_10013665,17 5387,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011681,17 5388,http://www.practicenursing.co.uk,17 5389,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/ImportingAndExportingAVehicle/DG_10014623,17 5390,http://www.pension100.co.uk,17 5391,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/GetLearning/DG_173611,17 5392,http://www.safedrivedrivingschool.co.uk,17 5393,http://www.google.ki,17 5394,http://www.1st-castle.co.uk,17 5395,http://www.driveladybird.co.uk,17 5396,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/Streetcleaninglitterandillegaldumping/DG_10026174,17 5397,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/LearningOutsideTheClassroom/index.htm,17 5398,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/RidingMotorcyclesAndMopeds/DG_193803,17 5399,http://www.google.com.cy,17 5400,http://fbhvc.co.uk,17 5401,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10015998,17 5402,http://www.bridgemary.hants.sch.uk,17 5403,http://www.miltonkeynes.gov.uk,17 5404,http://prospectus.ulster.ac.uk,17 5405,http://work-experience.org,17 5406,http://www.smartpensionsuk.co.uk,17 5407,http://www.knowledge.hsbc.co.uk,17 5408,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/LeavingOrComingIntoTheUK/DG_10027480,17 5409,http://kfrsportal,17 5410,http://yacf.co.uk,17 5411,http://www.fresh-weather.com,17 5412,http://www.grantnet.com,17 5413,http://www.direct.gov.uk/cy/HomeAndCommunity/InYourHome/SupportAtHome/DG_4000682CY,17 5414,http://www.netbuddy.org.uk,17 5415,http://nd.durham.gov.uk,17 5416,http://www.directguv.co.uk,17 5417,http://knowzone,17 5418,http://mortgagehelp.direct.gov.uk/,17 5419,http://www.wyre.gov.uk,17 5420,http://www.r3dtapeonline.com,17 5421,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Leaseholdproperties/DG_191691,17 5422,http://www.sandwellhomes.org.uk,17 5423,http://www.animal-job.co.uk,17 5424,http://www.esfrs.org,17 5425,http://www.teespen.org.uk,17 5426,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxallowancesandreliefs/DG_078381,17 5427,http://www.computersandintegration.org.uk,17 5428,http://www.pokerstarscaribbeanadventure.com,17 5429,http://www.talkaudio.co.uk,17 5430,http://enfieldlibraries.theorytestpro.co.uk,17 5431,http://www.slhdmoneywise.co.uk,17 5432,http://www.glasgowprestwick.com,17 5433,http://www.msagb.com,17 5434,http://lairdofculter.co.uk,17 5435,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Localgovernment/index.htm,17 5436,http://www.medals.org.uk,17 5437,http://www.drivewithbill.co.uk,17 5438,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Employmenttribunals/index.htm,17 5439,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Working/WorkingToSuitYou/DG_10027003,17 5440,http://myweb.tiscali.co.uk,17 5441,http://www.bcagent.info,17 5442,http://www.onspeedsearch.com,17 5443,http://www.clearanswers.co.uk,17 5444,http://www.asm-autos.co.uk,17 5445,http://www.onthegosoft.com,17 5446,http://recherche.aol.fr,17 5447,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Gettingadivorce/DG_191978,17 5448,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ChoicesAfterYouGraduate/DG_4017755,17 5449,http://uk.mc257.mail.yahoo.com,17 5450,http://www.e-victims.org,17 5451,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018668CY,17 5452,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069869,17 5453,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/CrimePrevention/index.htm,17 5454,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/DebtsAndArrears/DG_10035958,17 5455,http://www.zenos.com,17 5456,http://gbnxs2010.dwpdev.dwp.cust,17 5457,http://www.washerhelp.co.uk,17 5458,http://www.drivinglicence.pl,17 5459,http://www.alicence2drive.co.uk,17 5460,http://www.jobpaw.com,17 5461,http://www.avonconnects.co.uk,17 5462,http://www.homeless.org.uk,17 5463,http://www.peoplenet.infocentre.rolls-royce.com,17 5464,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Typesofcrime/DG_4001652,17 5465,http://www.lothiandrivingforce.co.uk,17 5466,http://www.ukgser.com,17 5467,http://www.businessstudiesonline.co.uk,17 5468,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070108,17 5469,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/DG_067917,17 5470,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Caringforsomeone/DG_10012859,17 5471,http://www.artspsychotherapy.org,17 5472,http://www.wlga.gov.uk,17 5473,http://www.maths.qmul.ac.uk,17 5474,http://www.infocow.org.uk,17 5475,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Dismissal/DG_175828,17 5476,http://www.hemihelp.org.uk,17 5477,http://books.hse.gov.uk,17 5478,http://www.schoolofmakeup.co.uk,17 5479,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069859,17 5480,http://213.249.208.14,17 5481,http://www.filmcrewpro.com,17 5482,http://train.inrev.gov.uk,17 5483,http://www.doncaster4u.pl,17 5484,http://3daysinlondon.info,17 5485,http://www.direct.gov.uk/en/Parents/Preschooldevelopmentandlearning/NurseriesPlaygroupsReceptionClasses/DG_10013534,17 5486,http://www.home-learn.co.uk,17 5487,http://www.wealthatwork.co.uk,17 5488,http://www.relateinstitute.ac.uk,17 5489,http://1stcastle.co.uk,17 5490,http://www.astraownersclub.com,17 5491,http://www.search.pro,17 5492,http://www.cnxnotts.co.uk,17 5493,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Caringforsomeone/index.htm,17 5494,http://www.orkney.gov.uk,17 5495,http://uk.mc280.mail.yahoo.com,17 5496,http://www.zurich.co.uk,17 5497,http://www.direct.gov.uk/en/Employment/Jobseekers/programmesandservices/DG_197781,17 5498,http://www.council-tax-rebate.co.uk,17 5499,http://www.seymourhouse.co.uk,17 5500,http://www.thestartingpoint.org,17 5501,http://www.funeralsearch.co.uk,17 5502,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/index.htm,17 5503,http://www.biomassenergycentre.org.uk,17 5504,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017688,17 5505,http://www.femaledrivinginstructors.co.uk,17 5506,http://www.scotborders.gov.uk,17 5507,http://forums.bit-tech.net,17 5508,http://dooki.info,17 5509,http://sr.wikipedia.org,17 5510,http://www.bishopg.ac.uk,17 5511,http://forum.lunguk.org,17 5512,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PlanningForRetirement/DG_10014848,17 5513,http://www.campionssolicitors.co.uk,17 5514,http://www.scottishchildcare.gov.uk,17 5515,http://us.mc1610.mail.yahoo.com,17 5516,http://www.bismoscow.com,17 5517,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/index.htm,17 5518,http://www.finance.mmu.ac.uk,17 5519,http://www.staging.nhs.uk,17 5520,http://www.johnlewis-insurance.com,17 5521,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/DG_4016313,17 5522,http://www.southdevon.ac.uk,17 5523,http://staffsrider.com,17 5524,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/IntroductiontoIncomeTax/DG_078305,17 5525,http://www.aboutloftconversions.co.uk,17 5526,http://www.upsu.com,17 5527,http://www.angliaimunkakezdes.hu,17 5528,http://forums.hexus.net,17 5529,http://aolsearcht6.search.aol.com,17 5530,http://pkfhome.uk.pkf.com,17 5531,http://www.ridinginaction.co.uk,17 5532,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenertravel/Enjoyingthecountryside/index.htm,17 5533,http://www.workhouses.org.uk,17 5534,http://www.insight2drive.co.uk,17 5535,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Planningyourfuture/index.htm,17 5536,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017558,17 5537,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/FireSafety/DG_10030963,17 5538,http://www.purepotential.org,17 5539,http://www.yesdriving.co.uk,17 5540,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/YourHome/DG_10028038,17 5541,http://www.direct.gov.uk/en/Employment/Employees/Pay/DG_175997,17 5542,http://ipsintranet,17 5543,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/CompanyPensions/DG_10028150,17 5544,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_078281,17 5545,http://vauxhallbuyersguide.co.uk,17 5546,http://www.derbyshiredales.gov.uk,17 5547,http://sharepoint1:50000,17 5548,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/LookingForWork/DG_4000324,17 5549,http://www.pgltraining.com,17 5550,http://www.veterans-uk.info,17 5551,http://iso.ardentdevelopment.net,17 5552,http://www.vetlife.org.uk,17 5553,http://buyinganmg.com,17 5554,http://www.sustainweb.org,17 5555,http://www.topgearmotorbikes.co.uk,17 5556,http://www.via.gov.uk,17 5557,http://www.s-cheshire.ac.uk,17 5558,http://www.stephensdrivingschool.co.uk,16 5559,http://www.stevenmearsgroup.co.uk,16 5560,http://www.ktmforum.co.uk,16 5561,http://search1.speedbit.com,16 5562,http://safe4life.theorytestpro.co.uk,16 5563,http://sharp.direct.gov.uk/home,16 5564,http://rehabjobfit.com,16 5565,http://www.klbschool.org.uk,16 5566,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxallowancesandreliefs/DG_078386,16 5567,http://www.motorhomechooser.co.uk,16 5568,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxallowancesandreliefs/DG_078375,16 5569,http://www.studentcashpoint.com,16 5570,http://porsche924.co.uk,16 5571,http://polwebmail.broadbandscope.com,16 5572,http://www.studybritish.com,16 5573,http://phl1,16 5574,http://www.southkesteven.gov.uk,16 5575,http://spen-web,16 5576,http://www.laticsdrivertraining.com,16 5577,http://www.southernairheating.co.uk,16 5578,http://www.sotland.pl,16 5579,http://www.somerset.ac.uk,16 5580,http://northeast.fish4jobs.co.uk,16 5581,http://sun-server-323:7777,16 5582,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/PracticalTest/DG_4022543,16 5583,http://anglia.bovebben.hu,16 5584,http://www.learndirect.co.uk,16 5585,http://www.tailormaidhomecare.co.uk,16 5586,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Makingacourtclaimformoney/DG_195749,16 5587,http://www.talkaboutdebt.co.uk,16 5588,http://www.talkphotography.co.uk,16 5589,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyD/DG_174545,16 5590,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/AdviceOnKeepingYourVehicle/DG_4022067,16 5591,http://train2drive.co.uk,16 5592,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/DG_10034732,16 5593,http://uk-alfabetic.blogspot.com,16 5594,http://mp3rocketsearch.com,16 5595,http://moodle.eschool.be,16 5596,http://moodle.cavc.ac.uk,16 5597,http://www.direct.gov.uk/en/Motoring/PersonalisedRegAndNumberPlates/DG_181503,16 5598,http://www.shepway.gov.uk,16 5599,http://uk.mg3.mail.yahoo.com,16 5600,http://moodle.blackburn.ac.uk,16 5601,http://www.theasm.co.uk,16 5602,http://ukinbrazil.fco.gov.uk,16 5603,http://ukiniran.fco.gov.uk,16 5604,http://www.first-utility.com,16 5605,http://mcabserver1,16 5606,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Inretirement/index.htm,16 5607,http://www.thefword.org.uk,16 5608,http://ur.wikipedia.org,16 5609,http://www.sedgemoor.gov.uk,16 5610,http://www.jimgreencomputing.co.uk,16 5611,http://www.direct.gov.uk/en/Parents/ChildMaintenance/Arrangingchildmaintenance/index.htm,16 5612,http://www.jigrah.co.uk,16 5613,http://www.thelocal.se,16 5614,http://londonspecialista.hu,16 5615,http://www.theorytestsonline.org,16 5616,http://www.thesource.me.uk,16 5617,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ChoosingASchool/DG_4016309,16 5618,http://www.fowlers.co.uk,16 5619,http://web02:3269,16 5620,http://www.jazdapolska.co.uk,16 5621,http://www.lgvtrainingservicesgloucestershire.com,16 5622,http://www.thinkmoney.com,16 5623,http://lannuaire.service-public.fr,16 5624,http://webmail.names.co.uk,16 5625,http://whs.lawpack.co.uk,16 5626,http://www.expertcardirectory.co.uk,16 5627,http://keyletting.com,16 5628,http://www.salfordcab.org.uk,16 5629,http://kafejka-emigracyjna.co.uk,16 5630,http://journey.cch-online.org.uk,16 5631,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/YourChildsWelfareAtSchool/DG_4016106,16 5632,http://www.125ccsportsbikes.com,16 5633,http://www.tnt.com,16 5634,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Roadandtravelsafety/DG_10037077,16 5635,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Repairsandstandards/DG_189195,16 5636,http://www.jackneillschoolofmotoring.co.uk,16 5637,http://jobcentreplus.jobsandskills.gov.uk,16 5638,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/GrantsFundsAndStandards/index.htm,16 5639,http://www.eures.sk,16 5640,http://www.little-lever.bolton.sch.uk,16 5641,http://www.abdn.ac.uk,16 5642,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PensionCredit/DG_184357,16 5643,http://intranet.norfolk.gov.uk,16 5644,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Volunteering/DG_195543,16 5645,http://intranet.escc.gov.uk,16 5646,http://www.roundthebend.co,16 5647,http://www.direct.gov.uk/en/CaringForSomeone/CaringForADisabledChild/DG_10027150,16 5648,http://intranet.britnet.thebritgroup.co.uk,16 5649,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_180010,16 5650,http://www.adndrivertraining.co.uk,16 5651,http://www.traffic-answers.co.uk,16 5652,http://www.local-driving-lessons.me.uk,16 5653,http://www.aerbt.co.uk,16 5654,http://info.com,16 5655,http://www.travelodge.co.uk,16 5656,http://www.ahuja.co.uk,16 5657,http://in.answers.yahoo.com,16 5658,http://www.londonancestor.com,16 5659,http://www.londondeanery.ac.uk,16 5660,http://www.angleseymotorcycletraining.co.uk,16 5661,http://www.freewebs.com,16 5662,http://www.revl.co.uk,16 5663,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Localgovernment/DG_073310,16 5664,http://www.direct.gov.uk/en/BritonsLivingAbroad/EducationAndJobs/DG_10020027,16 5665,http://www.repossessions-uk.com,16 5666,http://home.ssbennettswood.catholic.edu.au,16 5667,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Centralgovernmentandthemonarchy/index.htm,16 5668,http://home.hmps.noms.root,16 5669,http://www.fieldhealth.com,16 5670,http://www.ausa.org.uk,16 5671,http://www.lro.com,16 5672,http://www.ukgermanconnection.org,16 5673,http://www.ukokey.com,16 5674,http://gloucestershiredriving.co.uk,16 5675,http://gb.mofcom.gov.cn,16 5676,http://www.bcusu.com,16 5677,http://www.direct.gov.uk/en/Video/DG_WP194889,16 5678,http://france.angloinfo.com,16 5679,http://www.universities4you.com,16 5680,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Yourconsumerrightswhenbuyinggoodsandservices/DG_194549,16 5681,http://www.upad.co.uk,16 5682,http://74.6.147.41,16 5683,http://www.yougen.co.uk,16 5684,http://forum.iosh.co.uk,16 5685,http://www.blackpool.ac.uk,16 5686,http://www.ft.com,16 5687,http://www.vle.warrington.ac.uk,16 5688,http://www.britain4russians.net,16 5689,http://www.polishforums.com,16 5690,http://envirowise.wrap.org.uk,16 5691,http://www.broughtonprimaryschool.co.uk,16 5692,http://www.podium.ac.uk,16 5693,http://en.allexperts.com,16 5694,http://www.bufdg.ac.uk,16 5695,http://www.fashionporch.com,16 5696,http://www.planetauto.co.uk,16 5697,http://www.pituitary.org.uk,16 5698,http://www.pighealth.com,16 5699,http://www.dpscitt.ac.uk,16 5700,http://www.welfarerights.net,16 5701,http://www.caravanwise.co.uk,16 5702,http://www.fancyamortgage.co.uk,16 5703,http://www.peterborough.net,16 5704,http://www.carersinformation.org.uk,16 5705,http://www.carinsurancequotes.net,16 5706,http://www.drivers.com,16 5707,http://www.peoplefirsthousing.co.uk,16 5708,http://www.cashflow.uk.net,16 5709,http://dbsmusic.co.uk,16 5710,http://www.how2fundraise.org,16 5711,http://www.drivethrul.co.uk,16 5712,http://www.pem.cam.ac.uk,16 5713,http://www.housing-help.co.uk,16 5714,http://www.cdrex.com,16 5715,http://courses.glam.ac.uk,16 5716,http://www.pcs.org.uk,16 5717,http://www.wigan-leigh.ac.uk,16 5718,http://www.direct.gov.uk/en/Employment/Employees/Pay/DG_10027201,16 5719,http://www.direct.gov.uk/en/Employment/Employees/Flexibleworking/DG_10037051,16 5720,http://www.cirencester.ac.uk,16 5721,http://www.citigroup.net,16 5722,http://chionline.chichester.ac.uk,16 5723,http://www.direct.gov.uk/en/Employment/Employeeinformationandconsultation/DG_10028095,16 5724,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Typesoffinance/DG_171617,16 5725,http://www.clutchless.co.uk,16 5726,http://www.holidaytruths.co.uk,16 5727,http://cc.bingj.com,16 5728,http://www.cnelm.co.uk,16 5729,http://www.collegefhp.com,16 5730,http://www.connexionfrance.com,16 5731,http://calculator.bioregional.com,16 5732,http://by169w.bay169.mail.live.com,16 5733,http://www.over50sforum.com,16 5734,http://bthr-ahrs.custhelp.com,16 5735,http://www.ourwatch.org.uk,16 5736,http://www.worlddutyfree.com,16 5737,http://www.corporateeventtickets.co.uk,16 5738,http://www.easytide.co.uk,16 5739,http://www.midlothian.gov.uk,16 5740,http://www.harper-adams.ac.uk,16 5741,http://www.cranfield.ac.uk,16 5742,http://www.cravendc.gov.uk,16 5743,http://www.cripplegate.org,16 5744,http://www.cruse.org.uk,16 5745,http://www.edmodo.com,16 5746,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/DG_10039027,16 5747,http://www.getconnectednow.co.uk,16 5748,http://www.google.sh,16 5749,http://www.ellowes.dudley.sch.uk,16 5750,http://www.odnoklassniki.ru,16 5751,http://www.elmhurstdance.co.uk,16 5752,http://www.oadby-wigston.gov.uk,16 5753,http://www.myerscough.ac.uk,16 5754,http://www.mkcollege.ac.uk,16 5755,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/MentalHealth/index.htm,16 5756,http://www.nurseaid.org.uk,16 5757,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MotoringContacts/DG_192554,16 5758,http://www.direct.gov.uk/en/Diol1/DoItOnline/StatePension/DG_189286,16 5759,http://www.diabetessupport.co.uk,16 5760,http://www.mobility.co.uk,16 5761,http://www.diaryofanadi.co.uk,16 5762,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018163,16 5763,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017934,16 5764,http://www.dignityfunerals.co.uk,16 5765,http://www.mojecoventry.pl,16 5766,http://www.moneysavingstudent.com,16 5767,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10015770,16 5768,http://www.neilreesdrivingschool.co.uk,16 5769,http://www.direct.gov.uk/en/Dl1/Directories/DG_1000006561,16 5770,http://www.direct.gov.uk/cy/Motoring/LearnerAndNewDrivers/PracticalTest/DG_186585CY,16 5771,http://www.ww2awards.com,16 5772,http://www.motocykl.org,16 5773,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011388,16 5774,http://www.youthconnexions-hertfordshire.org,16 5775,http://www.gov.je,16 5776,http://search.newtabking.com,16 5777,http://search.esnips.com,16 5778,http://search.egreetings.com,16 5779,http://www.stdunstanstepney.org,16 5780,http://www.stagejobspro.com,16 5781,http://www.eon-uk.com,15 5782,http://www.direct.gov.uk/en/Motoring/PersonalisedRegAndNumberPlates/DG_172125,15 5783,http://www.caravanguard.co.uk,15 5784,http://www.sheltercymru.org.uk,15 5785,http://searchalot.com,15 5786,http://uk.mg4.mail.yahoo.com,15 5787,http://www.direct.gov.uk/en/Motoring/VehicleCrime/DG_10020050,15 5788,http://www.direct.gov.uk/en/Motoring/VehicleCrime/index.htm,15 5789,http://uk.my.yahoo.com,15 5790,http://www.drivingtheory.net,15 5791,http://directionlessgov.com,15 5792,http://us.mg2.mail.yahoo.com,15 5793,http://www.direct.gov.uk/en/Dl1/Directories/DG_067632,15 5794,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Expectingorbringingupchildren/DG_175881,15 5795,http://ukinazerbaijan.fco.gov.uk,15 5796,http://ukinczechrepublic.fco.gov.uk,15 5797,http://www.chrislambertdrivingschool.co.uk,15 5798,http://www.west-lindsey.gov.uk,15 5799,http://www.thelbb.co.uk,15 5800,http://www.carmel.ac.uk,15 5801,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/BeforeYouTravel/DG_4016874,15 5802,http://www.airmiles.co.uk,15 5803,http://www.childrenslegalcentre.com,15 5804,http://www.direct.gov.uk/en/Dl1/Directories/Localcouncils/DG_4003598,15 5805,http://www.leics-scitt.co.uk,15 5806,http://us.mc1616.mail.yahoo.com,15 5807,http://manchester.theorytestpro.co.uk,15 5808,http://www.direct.gov.uk/en/Nl1/Newsroom/PreBudgetReport2009/DG_183037,15 5809,http://www.mencap.org.uk,15 5810,http://www.secondhand-trailers.co.uk,15 5811,http://mail.virginmedia.com,15 5812,http://www1.dlinksearch.com,15 5813,http://www.direct.gov.uk/en/Dl1/Directories/Localcouncils/DG_4003653,15 5814,http://www.pbo.co.uk,15 5815,http://www.age-net.co.uk,15 5816,http://www.ks-training.co.uk,15 5817,http://www.medicines.org.uk,15 5818,http://www.driving.org,15 5819,http://www.streetbike.co.uk,15 5820,http://www.ukbankholidays2012.co.uk,15 5821,http://yourself,15 5822,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/OrganisationsAndCharities/DG_10014866,15 5823,http://www.transportsfriend.org,15 5824,http://www.lsrs.ro,15 5825,http://portal.solent.ac.uk,15 5826,http://www.direct.gov.uk/en/Motoring/DriverLicensing/EndorsementsAndDisqualifications/DG_4022491,15 5827,http://www.direct.gov.uk/cy/Employment/Employees/index.htm,15 5828,http://forums.somethingawful.com,15 5829,http://www.ndna.org.uk,15 5830,http://help.com,15 5831,http://aa.mc1610.mail.yahoo.com,15 5832,http://www.londonfilmacademy.com,15 5833,http://forums.pigeonwatch.co.uk,15 5834,http://apps1.buckscc.gov.uk,15 5835,http://inside,15 5836,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017501,15 5837,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/peoplewhohelpothers/Entitlementtablesfortaxcredits/Youworkandalsohavechildren/DG_174789,15 5838,http://services.salford.gov.uk,15 5839,http://www.northyorkshiremagistrates.co.uk,15 5840,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/entitlement/index.htm,15 5841,http://pedestrianliberation.org,15 5842,http://www.kiddicaru.com,15 5843,http://www.southgate.ac.uk,15 5844,http://afraser.com,15 5845,http://www.direct.gov.uk/en/SiteInformation/DG_4004497,15 5846,http://search.etoolkit.com,15 5847,http://www.tumblr.com,15 5848,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Mentalcapacityandplanningahead/index.htm,15 5849,http://www.direct.gov.uk/en/Governmentcitizensandrights/LivingintheUK/DG_4000140,15 5850,http://overfiftiesfriends.co.uk,15 5851,http://www.sotonnewcom.org.uk,15 5852,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthandadoptionrecords/Adoptionrecords/DG_175603,15 5853,http://intranet.salfordcc.ac.uk,15 5854,http://www.abrsm.org,15 5855,http://www.kenttrustweb.org.uk,15 5856,http://oms.mcga.gov.uk,15 5857,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/FireSafety/DG_071712,15 5858,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/WhosWhoInHealthServices/DG_4003761,15 5859,http://www.direct.gov.uk/en/Governmentcitizensandrights/LivingintheUK/DG_10015894,15 5860,http://www.interpensions.co.uk,15 5861,http://haringey.theorytestpro.co.uk,15 5862,http://www.anthony-roper.kent.sch.uk,15 5863,http://www.bmwland.co.uk,15 5864,http://www.triskelion-motorcycle.com,15 5865,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/index.htm,15 5866,http://inwestowanieuk.blogspot.com,15 5867,http://www.mamma.com,15 5868,http://www.debtwatchdog.com,15 5869,http://hjdepotlink,15 5870,http://forum.carersuk.org,15 5871,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/OtherBenefitsAndSupport/DG_068683,15 5872,http://www.minimumincome.org.uk,15 5873,http://www.argyll-bute.gov.uk,15 5874,http://www.rutland.gov.uk,15 5875,http://www.genderedviolence.com,15 5876,http://www.iea.org,15 5877,http://foodimports.direct.gov.uk/china-hong-kong.html,15 5878,http://www.prime50plus.co.uk,15 5879,http://www.911uk.com,15 5880,http://www.fht.org.uk,15 5881,http://www.rya.org.uk,15 5882,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Energyandwaterefficiencyinyourhome/DG_179919,15 5883,http://www.lbuster.co.uk,15 5884,http://www.bournemouth2026.org.uk,15 5885,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070308,15 5886,http://www.startingpage.com,15 5887,http://www.mini2.com,15 5888,http://www.idrivecymru.co.uk,15 5889,http://www.villatalk.com,15 5890,http://www.regents.ac.uk,15 5891,http://szukaj.onet.pl,15 5892,http://www.lightwater.surrey.sch.uk,15 5893,http://www.cyprusliving.org,15 5894,http://www.efairplace.com,15 5895,http://www.cwa.ac.uk,15 5896,http://www.direct.gov.uk/en/EducationAndLearning/QualificationsExplained/DG_10039023,15 5897,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/StreetsParkingCleaningAndLighting/DG_10024872,15 5898,http://www.cuh.org.uk,15 5899,http://www.visitwales.co.uk,15 5900,http://www.milkround.com,15 5901,http://www.google.ac,15 5902,http://www.potsuk.org,15 5903,http://www.kaplanopenlearning.org.uk,15 5904,http://www.postgraduatestudentships.co.uk,15 5905,http://www.post76.com,15 5906,http://www.bristol24.pl,15 5907,http://www.londyn.org.uk,15 5908,http://hounslow.theorytestpro.co.uk,15 5909,http://www.portal.clicknow.org.uk,15 5910,http://angliai-magyarok.co.uk,15 5911,http://www.endometriosis-uk.org,15 5912,http://thisisabuse.direct.gov.uk/need-help,15 5913,http://www.mariecurie.org.uk,15 5914,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069855,15 5915,http://www.direct.gov.uk/en/employment/tradeunions/index.htm,15 5916,http://thrusocial.com,15 5917,http://www.fcho.co.uk,15 5918,http://www.fccuk.org,15 5919,http://essglaapp01,15 5920,http://www.results-page.net,15 5921,http://www.vtstutorials.co.uk,15 5922,http://www.creditchoices.co.uk,15 5923,http://www.healthyworkinguk.co.uk,15 5924,http://kjtdrivertraining.co.uk,15 5925,http://weibo.com,15 5926,http://www.info4local.gov.uk,15 5927,http://www.ladybirddaynurseries.co.uk,15 5928,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/Refundscomplaintsandreportingchanges/DG_190117,15 5929,http://www.orbitz.com,15 5930,http://www.freeparkingspace.co.uk,15 5931,http://www.jargonfreepensions.co.uk,15 5932,http://www.gardenlaw.co.uk,15 5933,http://www.marshallsyard.co.uk,15 5934,http://baike.baidu.com,15 5935,http://brec-app01:92,15 5936,http://www.coombegirlsschool.org,15 5937,http://www.microlinkpc.com,15 5938,http://bromley.mylifeportal.co.uk,15 5939,http://www.conted.ox.ac.uk,15 5940,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069868,15 5941,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/ChildTrustFund/AnintroductiontotheChildTrustFund/DG_193690,15 5942,http://www.workingforessex.com,15 5943,http://education.staffordshire.gov.uk,15 5944,http://www.gardendesignschool.co.uk,15 5945,http://www.budget.co.uk,15 5946,http://business.forthvalley.ac.uk,15 5947,http://www.saylethru.im,15 5948,http://www.redandwhitekop.com,15 5949,http://www.energy-retail.org.uk,15 5950,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Legalseparation/DG_193750,15 5951,http://www.woodlandwideweb.ik.org,15 5952,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/KeepingyourChildBenefituptodate/ChildBenefitafter16/DG_173715,15 5953,http://learning.harper-adams.ac.uk,15 5954,http://www.oxfordhomeschooling.co.uk,15 5955,http://cabsrv%5ccaeinfo:not4you0956@www.cabadvisernet.org.uk,15 5956,http://www.waverley.gov.uk,15 5957,http://www.stirling.gov.uk,15 5958,http://www.mht.co.uk,15 5959,http://vle.sheffcol.ac.uk,15 5960,http://www.buzz50.com,15 5961,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012621,15 5962,http://www.yourlifechoices.com.au,15 5963,http://dt4amanage.cognitionict.com,15 5964,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnBenefitsPensionsAndMaintenance/DG_10027059,15 5965,http://www.cabbagepatch.biz,15 5966,http://www.mgdriving.co.uk,15 5967,http://carfueldata.direct.gov.uk/search-new-or-used-cars.aspx,15 5968,http://adobe.com,15 5969,http://drivercpc.direct.gov.uk/index.html,15 5970,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/WorkingAndPayingTax/index.htm,15 5971,http://ha2.boroughofpoole.com,15 5972,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10018894,15 5973,http://www.firstgroup.com,15 5974,http://www.webwell.org.uk,15 5975,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/WorkingTaxCreditthebasics/DG_172852CY,15 5976,http://lm_prospective.faq-help.com,15 5977,http://www.campingandcaravanningclub.co.uk,15 5978,http://dobiisapp.link2.gpn.gov.uk,15 5979,http://lms.e2train.com,15 5980,http://www.camrevle.com,15 5981,http://www.theregister.co.uk,15 5982,http://www.mtsdrivertrainingservices.co.uk,15 5983,http://vca-intranet,15 5984,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentHousing/index.htm,15 5985,http://www.wilsonllp.co.uk,15 5986,http://dmbctridionpres.doncaster.gov.uk:8082,15 5987,http://www.dsmmotorcycletraining.com,15 5988,http://gti,15 5989,http://www.roadrider.co.uk,15 5990,http://intranet.jrf.org.uk,14 5991,http://lifetracks.com,14 5992,http://www.ken-neal.co.uk,14 5993,http://www.tapuz.co.il,14 5994,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PlanningForRetirement/DG_183705,14 5995,http://playboost.metacrawler.com,14 5996,http://sfs.scnu.edu.cn,14 5997,http://www.debtcreditloans.net,14 5998,http://www.ashburtonchefsacademy.co.uk,14 5999,http://otvet.mail.ru,14 6000,http://www.balticcouncil.org,14 6001,http://www.mwdriving.co.uk,14 6002,http://www.drive-riteschoolofmotoring.co.uk,14 6003,http://np-ptpcam-prd-http.link2.gpn.gov.uk,14 6004,http://www.acpo.police.uk,14 6005,http://www.guinnesspartnership.com,14 6006,http://www.newcollege.ac.uk,14 6007,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Buyingacar-yourconsumerrights/DG_183043,14 6008,http://www.direct.gov.uk/en/CaringForSomeone/CarersAndEmployment/DG_4000206,14 6009,http://dziveanglija.eu,14 6010,http://www.community.ucreative.ac.uk,14 6011,http://www.princesrisborough.com,14 6012,http://ettyhillesumlyceum.teletopvo.nl,14 6013,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/DG_174180,14 6014,http://www.polskibelfast.pl,14 6015,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/CompanyPensions/DG_10026617,14 6016,http://www.tauntondeane.gov.uk,14 6017,http://www.adoptionuk.org,14 6018,http://www.direct.gov.uk/taxdisc,14 6019,http://www.harley-davidson-hangout.com,14 6020,http://www.greenpassdrivingschool.co.uk,14 6021,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Holidaysandtravel-yourconsumerrights/DG_182859,14 6022,http://mycare.rochdale.gov.uk,14 6023,http://avcis.police.uk,14 6024,http://www.shropshireyouth.com,14 6025,http://www.direct.gov.uk/en/Employment/Startinganewjob/DG_195813,14 6026,http://www.money4medstudents.org,14 6027,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnSavingsAndInvestments/DG_10013299,14 6028,http://www.touchlocal.com,14 6029,http://www.dawlish.devon.sch.uk,14 6030,http://www.kentunion.co.uk,14 6031,http://www.theorytest.info,14 6032,http://www.direct.gov.uk/en/parents/schoolslearninganddevelopment/schoollife/dg_4016103,14 6033,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_181053,14 6034,http://www.webfetch.co.uk,14 6035,http://www.ur1stcar.co.uk,14 6036,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Dealingwithemergencies/Supportafteramajorincident/DG_078068,14 6037,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/ArrangingHealthAndSocialCare/DG_10034395,14 6038,http://www.polishforum.eu,14 6039,http://www.iwanttobealandscapearchitect.com,14 6040,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Typesoffinance/DG_171530,14 6041,http://boilerscrappage.org.uk,14 6042,http://www.crash2000.net,14 6043,http://www.maidenheadcab.org.uk,14 6044,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SchoolLife/DG_10013990,14 6045,http://www.co-operativebank.co.uk,14 6046,http://www.caledonianldt.com,14 6047,http://www.hindleyhs.wigan.sch.uk,14 6048,http://uk.fujitsu.com,14 6049,http://www.thinkdrivingschool.co.uk,14 6050,http://www.direct.gov.uk/en/Employment/Employees/BusinessTransfersandtakeovers/DG_176391,14 6051,http://www.sherlockian.net,14 6052,http://www.minidrive.co.uk,14 6053,http://homesintranet.net,14 6054,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_171503,14 6055,http://www.mbt3th.us,14 6056,http://www.my-lhd.co.uk,14 6057,http://www.welhat.gov.uk,14 6058,http://intranet.scottishwater.co.uk,14 6059,http://www.lge.gov.uk,14 6060,http://www.helpdirect.org.uk,14 6061,http://www.lakenheath.af.mil,14 6062,http://schoolcommunicationarts.com,14 6063,http://www.connexionslive.com,14 6064,http://chriskellydrivingschoolnw.co.uk,14 6065,http://www.citybathcoll.ac.uk,14 6066,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Volunteering/DG_064299,14 6067,http://www.desktoplawyer.co.uk,14 6068,http://www.direct.gov.uk/cy/CaringForSomeone/CarersAndEmployment/DG_4000036CY,14 6069,http://www.direct.gov.uk/en/TravelAndTransport/Roadsafetyadvice/DG_178867,14 6070,http://ig24.i-grasp.com,14 6071,http://asksmart.fenc.org.uk,14 6072,http://www.direct.gov.uk/en/Employment/Employees/EmploymentContractsAndConditions/DG_10037116,14 6073,http://clairesdrivingschool.net,14 6074,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/DG_064371,14 6075,http://interdean.boomeranginternet.co.uk,14 6076,http://www.hbnotes.co.uk,14 6077,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/SavingsAndInvestments/DG_10014062,14 6078,http://baggageallowanceuk.co.uk,14 6079,http://www.coxysdrivingschool.co.uk,14 6080,http://www.petercairnsmotorcycletraining.co.uk,14 6081,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/TaxandNationalInsuranceinretirement/GettingyourtaxandNationalInsuranceright/DG_10024687CY,14 6082,http://oldmail.tesco.net,14 6083,http://www.orientexpat.com,14 6084,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Temporarylayoff/DG_177591,14 6085,http://www.offa.org.uk,14 6086,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Problemsanddisputes/DG_189243,14 6087,http://www.fosmotorhomehire.co.uk,14 6088,http://bentley2.bentley.emea.vwg:8080,14 6089,http://www.hantsfire.gov.uk,14 6090,http://www.lcsassent.co.uk,14 6091,http://www.evacuation-chair.co.uk,14 6092,http://inquestrepresentation.co.uk,14 6093,http://www.nhsinform.co.uk,14 6094,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/PlanningYourPersonalFinances/index.htm,14 6095,http://www.careguides.co.uk,14 6096,http://www.gravesham.gov.uk,14 6097,http://www.xldrivingtuition.com,14 6098,http://www.howtogobankrupt.net,14 6099,http://www.johnlowedriving.com,14 6100,http://ukinargentina.fco.gov.uk,14 6101,http://leonormleal.blogs.sapo.pt,14 6102,http://www.direct.gov.uk/en/Dl1/Directories/DG_064888,14 6103,http://www.2wt.co.uk,14 6104,http://www.hastings.gov.uk,14 6105,http://search.lycos.com,14 6106,http://www.wakefieldhousingoptions.co.uk,14 6107,http://www.careuk.com,14 6108,http://www.kevinmccanndrivingschool.co.uk,14 6109,http://www.spurgeons.org,14 6110,http://members.ozemail.com.au,14 6111,http://svowebmaster.free.fr,14 6112,http://www.sandyschool.co.uk,14 6113,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnPropertyAndRentalIncome/DG_10013347,14 6114,http://webmail.supanet.com,14 6115,http://us.mc462.mail.yahoo.com,14 6116,http://bb.mycricket.com,14 6117,http://www2.surrey.ac.uk,14 6118,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuildingYourOwnHome/DG_10016240,14 6119,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Disciplinaryprocedures/DG_10028114,14 6120,http://ildrivingcouk.ipage.com,14 6121,http://www.direct.gov.uk/en/Employment/Employees/Pay/DG_175878,14 6122,http://de.search-results.com,14 6123,http://www.swtourismalliance.org.uk,14 6124,http://forum.docpoland.com,14 6125,http://www.infopoint.devonpct.nhs.uk,14 6126,http://www.mobilityaidsguide.com,14 6127,http://www.oicb.co.uk,14 6128,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018901,14 6129,http://www.sarahlegge.co.uk,14 6130,http://www.stayathomedads.co.uk,14 6131,http://www.woodside-vle.co.uk,14 6132,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/index.htm,14 6133,http://hpbcnet,14 6134,http://findavet.rcvs.org.uk,14 6135,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Keepingtrafficmoving/DG_185003,14 6136,http://www.jobvacancies.org,14 6137,http://www.safe4life.co.uk,14 6138,http://ukinthephilippines.fco.gov.uk,14 6139,http://www.lewisham.ac.uk,14 6140,http://forum.davidicke.com,14 6141,http://www.statisticsauthority.gov.uk,14 6142,http://www.jaz-europe.com,14 6143,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/GivingMoneyToCharity/DG_10015097,14 6144,http://www.warseer.com,14 6145,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingdecisionsforsomeoneelse/DG_176235,14 6146,http://www.mysurgerywebsite.co.uk,14 6147,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/AdoptionAndFostering/DG_10021340,14 6148,http://www.becomeataxidriver.org.uk,14 6149,http://www.gov.org,14 6150,http://www.lovefoodhatewaste.com,14 6151,http://tenancyagreement.org,14 6152,http://www.adhdandyou.co.uk,14 6153,http://www.buywithconfidence.gov.uk,14 6154,http://th.wikipedia.org,14 6155,http://www.bacoll.ac.uk,14 6156,http://www.melton.gov.uk,14 6157,http://www.pensions.co.uk,14 6158,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011667,14 6159,http://www.drivesafe.org.uk,14 6160,http://www.denofangels.com,14 6161,http://www.curiosando.com.br,14 6162,http://m.hotukdeals.com,14 6163,http://127.0.0.1,14 6164,http://www.lifo.gr,14 6165,http://www.drivinglessonsgloucester.net,14 6166,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Politicalpartiesandelections/DG_073239,14 6167,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Employmenttribunals/DG_186467,14 6168,http://www.cbmacademy.com,14 6169,http://www.direct.gov.uk/en/Rss/Rss,14 6170,http://www.rangecookers.co.uk,14 6171,http://www.allyoucansearch.net,14 6172,http://www.payingforcare.co.uk,14 6173,http://questgarden.com,14 6174,http://www.westmercia.police.uk,14 6175,http://blog.britishcouncil.or.kr,14 6176,http://us.mc1200.mail.yahoo.com,14 6177,http://rhymney.cabsrv.org.uk,14 6178,http://www.newforest.gov.uk,14 6179,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_067168,14 6180,http://www.see.leeds.ac.uk,14 6181,http://www.ccwater.org.uk,14 6182,http://www.capitarvs.co.uk,14 6183,http://www.learndrivingskills.co.uk,14 6184,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/StreetsParkingCleaningAndLighting/DG_10026223,14 6185,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Employmenttribunals/DG_176137,14 6186,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011378,14 6187,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/DG_194914,14 6188,http://www.motor2000uk.com,14 6189,http://www.westoxon.gov.uk,14 6190,http://www.drivewise.info,14 6191,http://uk.mc1321.mail.yahoo.com,14 6192,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Trafficinformationandjourneyplanning/index.htm,14 6193,http://studentportal.bournemouth.ac.uk,14 6194,http://www.ukwebstart.com,14 6195,http://www.easyclear.co.uk,14 6196,http://www.motorbility.com,14 6197,http://www.peasepottage.info,14 6198,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Makingacourtclaimformoney/DG_195828,14 6199,http://www.nomad-housing.co.uk,14 6200,http://www.direct.gov.uk/en/Employment/Employees/Timeoffandholidays/DG_171945,14 6201,http://www.emphysema-copd.co.uk,14 6202,http://nearlylegal.co.uk,14 6203,http://www.cslregister.com,14 6204,http://centranet.ourcheshire.cccusers.com,14 6205,http://uol.ohecampus.com,14 6206,http://www.direct.gov.uk/en/Employment/Jobseekers/JobsAndCareers/DG_073361,14 6207,http://universitaininghilterra.blogspot.com,14 6208,http://www.clond.mrecic.gov.ar,14 6209,http://intranet.easton-college.ac.uk,14 6210,http://www.fylde.gov.uk,14 6211,http://www.expotel.com,14 6212,http://www.woodredonec.co.uk,14 6213,http://www.affinitysutton.com,14 6214,http://www.southport-college.ac.uk,14 6215,http://blog.reddrivingschool.com,14 6216,http://www.strathycruise.com,14 6217,http://www.direct.gov.uk/en/Video/DG_WP194244,14 6218,http://www.thisispenhill.co.uk,14 6219,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/index.htm,14 6220,http://10.187.16.15,14 6221,http://housing.london.ac.uk,14 6222,http://www.direct.gov.uk/cy/Governmentcitizensandrights/UKgovernment/index.htm,14 6223,http://search.peoplepc.com,14 6224,http://www.talkford.com,14 6225,http://www.direct.gov.uk/cy/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/index.htm,14 6226,http://freenet,14 6227,http://www.leek.ac.uk,14 6228,http://property.timesonline.co.uk,14 6229,http://www.aucb.ac.uk,14 6230,http://www.writtle.ac.uk,14 6231,http://library.ulster.ac.uk,14 6232,http://www.trasportiambiente.it,14 6233,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ChildBenefitandwhoqualifies/DG_073771,14 6234,http://www.rhp.org.uk,14 6235,http://www.stuartprudence.co.uk,14 6236,http://www.swanseamotorbikes.co.uk,14 6237,http://www.theportlandhospital.com,14 6238,http://www.free-for-kids.com,14 6239,http://www.newark-sherwooddc.gov.uk,14 6240,http://www.privilege.com,14 6241,http://portal.proridice.eu,14 6242,http://www.stevenage.gov.uk,14 6243,http://www.universitiesuk.ac.uk,14 6244,http://answers.google.com,14 6245,http://www.sallys.biz,14 6246,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/WorkingTaxCreditthebasics/DG_172730,14 6247,http://www.barkingdagenhamcollege.ac.uk,14 6248,http://www.specialfamilies.org,14 6249,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011680,14 6250,http://www.onlinetheorytests.co.uk,14 6251,http://www.lsesu.com,14 6252,http://www.northlindsey.ac.uk,14 6253,http://wiki.lsrs.ro,14 6254,http://www.bettergeneration.com,14 6255,http://www.thegoodcaregroup.com,13 6256,http://www.driving-instructor-wolverhampton.co.uk,13 6257,http://mail.tiscali.it,13 6258,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/ChildrenInCare/DG_10027535,13 6259,http://www.ttsonline.net,13 6260,http://www.medschoolsonline.co.uk,13 6261,http://www.thmotors.co.uk,13 6262,http://sma.mnpa.co.uk,13 6263,http://www.staffordshirefire.gov.uk,13 6264,http://sfe.slc-apps.co.uk,13 6265,http://www.saudistudents.org,13 6266,http://www.direct.gov.uk/cy/Parents/Schoolslearninganddevelopment/SpecialEducationalNeeds/DG_4000870CY,13 6267,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/MobileHousing/DG_10029631,13 6268,http://www.spilsbyschoolofmotoring.co.uk,13 6269,http://www.cms-highland.co.uk,13 6270,http://portal.winchester.ac.uk,13 6271,http://www.babergh-south-suffolk.gov.uk,13 6272,http://www.longmoor-security.com,13 6273,http://www.eastsurreyfhs.org.uk,13 6274,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_172024,13 6275,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Greenerlifestyles/DG_064407CY,13 6276,http://www.lqqk.co.uk,13 6277,http://www.londonita.com,13 6278,http://www.eastsidevw.co.uk,13 6279,http://innovate.direct.gov.uk/2009/03/10/pedalling-some-raw-data/,13 6280,http://www.approved-driving-instructor-training.co.uk,13 6281,http://www.qlocal.co.uk,13 6282,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/CrimeAndTheLaw/DG_10027708,13 6283,http://www.transedtraining.co.uk,13 6284,http://www.direct.gov.uk/en/Dl1/Directories/DG_10026922,13 6285,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/Keepingsafeatthecoast/index.htm,13 6286,http://www.canterbury.ac.nz,13 6287,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Gettingadivorce/DG_193242,13 6288,http://ideastore.theorytestpro.co.uk,13 6289,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_195913,13 6290,http://pnld.westyorkshire.pnn.police.uk,13 6291,http://www.laine-theatre-arts.co.uk,13 6292,http://reviews.cnet.co.uk,13 6293,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applicationinformation/DG_174159,13 6294,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_195923,13 6295,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_183774,13 6296,http://74.6.239.84,13 6297,http://pnintranet,13 6298,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Situationsthatcanchangeyourconsumerrights/DG_195361,13 6299,http://www.bighospitality.co.uk,13 6300,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/TypesOfCrime/DG_10027693,13 6301,http://plus.google.com,13 6302,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Juryservice/DG_196118,13 6303,http://playsushi.infospace.com,13 6304,http://apps.waveney.gov.uk,13 6305,http://x2t.com,13 6306,http://solnet,13 6307,http://www.las-vegas-weddings.co.uk,13 6308,http://www.ashbycastlenursery.co.uk,13 6309,http://www.momentumdrivingschool.com,13 6310,http://www.netregs.gov.uk,13 6311,http://www.rotherham-jobsonline.co.uk,13 6312,http://pensions-service.direct.gov.uk/en/pension-credit-calculator/weeklycalculator.asp,13 6313,http://www.bullerswood.bromley.sch.uk,13 6314,http://www.wanttobeadoctor.co.uk,13 6315,http://www.naturalmamas.co.uk,13 6316,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Howtocomplainaboutgoodsandservices/DG_195155,13 6317,http://www.digischool.nl,13 6318,http://livebinders.com,13 6319,http://paper.li,13 6320,http://rpa.defra.gov.uk,13 6321,http://search.abv.bg,13 6322,http://www.diddyvans.co.uk,13 6323,http://www.hydro.co.uk,13 6324,http://www.gwydir.demon.co.uk,13 6325,http://www.conservatoryquoteonline.com,13 6326,http://search.feedandme.com,13 6327,http://www.hwfire.org.uk,13 6328,http://www.birchwoodonline.co.uk,13 6329,http://www.iknow-canaryislands.co.uk,13 6330,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/DG_171186,13 6331,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/KeepingHealthy/DG_10030623,13 6332,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Buyingacar-yourconsumerrights/DG_195693,13 6333,http://www.accidentalsmallholder.net,13 6334,http://www.keswick.cumbria.sch.uk,13 6335,http://www.mycarcheck.com,13 6336,http://10.66.2.142,13 6337,http://www.direct.gov.uk/en/SiteInformation/DG_10015420,13 6338,http://www8.open.ac.uk,13 6339,http://www.bitterwallet.com,13 6340,http://www.acas.gov.uk,13 6341,http://www.ignitiondrivertraining.com,13 6342,http://www.academysafebiketraining.com,13 6343,http://www.parentsofdisabledchildren.co.uk,13 6344,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/TheUKandtheworld/DG_073417,13 6345,http://www.blackhistorymonthuk.co.uk,13 6346,http://stis-001,13 6347,http://www.winstanley.ac.uk,13 6348,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Over50HealthAndWellBeing/SupportAndYourEverydayHealth/DG_10030615,13 6349,http://www.mmoc.org.uk,13 6350,http://www.dmfed.org.uk,13 6351,http://www.direct.gov.uk/en/DisabledPeople/EducationAndTraining/HigherEducation/DG_4000917,13 6352,http://www.totalstudents.co.uk,13 6353,http://www.bahshe.co.uk,13 6354,http://www.everythingregulation.org.uk,13 6355,http://www.projectpuma.com,13 6356,http://blog.sina.com.cn,13 6357,http://www.aragon-housing.co.uk,13 6358,http://nww.sheffield.nhs.uk,13 6359,http://www.thewholesaleforums.co.uk,13 6360,http://www.its.leeds.ac.uk,13 6361,http://students,13 6362,http://wbcnet.admin.ad.wirral.gov.uk,13 6363,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/DG_10020535,13 6364,http://bmbc-online,13 6365,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenerhomeandgarden/Greenergarden/DG_064407,13 6366,http://hi.edgehill.ac.uk,13 6367,http://www.connexions-tameside.com,13 6368,http://www.debtrecoveryplus.co.uk,13 6369,http://www.prisonreform.org,13 6370,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/NewlyQualifiedDrivers/DG_4022426,13 6371,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/index.htm,13 6372,http://www.topzone.lt,13 6373,http://www.businesscarmanager.co.uk,13 6374,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Energygrants/DG_185377,13 6375,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070338,13 6376,http://www.mylgv.co.uk,13 6377,http://www.maternityaction.org.uk,13 6378,http://www.9percent.co.uk,13 6379,http://www.tdlschoolofmotoring.co.uk,13 6380,http://learnerdriver.biz,13 6381,http://nova.rambler.ru,13 6382,http://www.direct.gov.uk/en/CaringForSomeone/CarersAndEmployment/DG_10027542,13 6383,http://www.england.org.za,13 6384,http://moss2,13 6385,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Yourrightsandresponsibilitiesatwork/index.htm,13 6386,http://www.tresham.ac.uk,13 6387,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/NewlyQualifiedDrivers/DG_4022659,13 6388,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applicationinformation/DG_174237,13 6389,http://www.oxfordlawgroup.co.uk,13 6390,http://studiawanglii.pl,13 6391,http://www.bapaa.org.uk,13 6392,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/DG_073804,13 6393,http://notification.corp,13 6394,http://www.lcm.ac.uk,13 6395,http://geton.direct.gov.uk/faq.html,13 6396,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Workersemployeesandselfemployment/DG_175988,13 6397,http://www.snitt.co.uk,13 6398,http://apps.hackney.gov.uk,13 6399,http://www.s-s-r.com,13 6400,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/WhyGoToUniversityOrCollege/DG_4016998,13 6401,http://www.ethicalconsumer.org,13 6402,http://www.s2ki.com,13 6403,http://nl.ask.com,13 6404,http://www.direct.gov.uk/cy/Motoring/index.htm,13 6405,http://www.virginholidays.co.uk,13 6406,http://www.tomcc.org,13 6407,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Migrantworkers/DG_181870,13 6408,http://ilearn.bishopburton.ac.uk,13 6409,http://gcint-share-001.gcint.gc.gov.uk,13 6410,http://www.wolverhamptonhomes.org.uk,13 6411,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/GivingMoneyToCharity/index.htm,13 6412,http://www.gettingoutofhere.co.uk,13 6413,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/GivingMoneyToCharity/DG_078488,13 6414,http://www.1st-gear.co.uk,13 6415,http://www.camre.ac.uk,13 6416,http://thebigtreeplant.direct.gov.uk/funding.html,13 6417,http://www.04uk.com,13 6418,http://www.highamspark.waltham.sch.uk,13 6419,http://jobseekers.direct.gov.uk/PageNotFound.aspx,13 6420,http://www.bba.bristol.sch.uk,13 6421,http://mortgagehelp.direct.gov.uk/real-life-stories/leicestershire-familys-home-saved-by-mortgage-rescue.aspx,13 6422,http://www.cssashef.org.uk,13 6423,http://www.gyc.ac.uk,13 6424,http://www.bwhct.nhs.uk,13 6425,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/StreetsParkingCleaningAndLighting/DG_10028508,13 6426,http://www.csd.stoke.gov.uk,13 6427,http://www.cs.york.ac.uk,13 6428,http://narposwansea.co.uk,13 6429,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Agencyworkersandemploymentagencies/DG_198915,13 6430,http://www.exe-coll.ac.uk,13 6431,http://vle.dearne-coll.ac.uk,13 6432,http://www.allpassdriving.co.uk,13 6433,http://www.cruizindrivingschool.co.uk,13 6434,http://www.hmforces.co.uk,13 6435,http://www.allmyfaves.co.uk,13 6436,http://camnet.cambs.police.uk,13 6437,http://www.computersharingcentre.com,13 6438,http://www.completefrance.com,13 6439,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/AirtravelintheUK/DG_078169,13 6440,http://mymnpa,13 6441,http://uk.mc258.mail.yahoo.com,13 6442,http://www.british-assessment.co.uk,13 6443,http://www.gmc-uk.org,13 6444,http://bennetts.theorytestpro.co.uk,13 6445,http://expatsinitaly.com,13 6446,http://www.wmin.ac.uk,13 6447,http://www.scitt.co.uk,13 6448,http://europeanunion-wbms.wikispaces.com,13 6449,http://www.critical-skills.co.uk,13 6450,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/DG_10032915,13 6451,http://www.candidmoney.com,13 6452,http://www.gyakorikerdesek.hu,13 6453,http://www.askbaby.com,13 6454,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/AdviceOnKeepingYourVehicle/DG_4022066,13 6455,http://www.skillsforjustice.com,13 6456,http://topicstock.pantip.com,13 6457,http://www.fastrackpass.co.uk,13 6458,http://www.reallymeansounds.com,13 6459,http://kiosk.brunel.ac.uk,13 6460,http://epetitions.direct.gov.uk/terms-and-conditions,13 6461,http://www.pandadomainadvisor.com,13 6462,http://www.marketingmagazine.co.uk,13 6463,http://schoolsfinder.direct.gov.uk/la/SOUTHWARK/,13 6464,http://www.threerivers.gov.uk,13 6465,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/WorkingAndPayingTax/DG_10021716,13 6466,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011645,13 6467,http://knowledgebank.spectrum.local,13 6468,http://results.freeze.com,13 6469,http://www.direct.gov.uk/en/TravelAndTransport/PublicTransport/RailTravel/DG_10036290,13 6470,http://search.juno.com,13 6471,http://www.learnmoney.co.uk,13 6472,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Endingacivilpartnership/index.htm,13 6473,http://moodle.bishopvaughan.swansea.sch.uk,13 6474,http://www.direct.gov.uk/en/Parents/Lookingafterchildrenifyoudivorceorseparate/Childrendivorceseparationandcourts/DG_192819,13 6475,http://www.cpni.gov.uk,13 6476,http://www.trident-ha.org.uk,13 6477,http://www.lancerregister.com,13 6478,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingDebt/DebtsAndArrears/DG_10013226CY,13 6479,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingMoney/index.htm,13 6480,http://i.dmtrk.net,13 6481,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2010/DG_188501,13 6482,http://123.sogou.com,13 6483,http://www.direct.gov.uk/en/Employment/Jobseekers/ContactJobcentrePlus/DG_186391,13 6484,http://www.johnrandelldrivingschool.co.uk,13 6485,http://1stclassmotorcycletraining.co.uk,13 6486,http://directguv.co.uk,13 6487,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2011/DG_WP195617,13 6488,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Working/OpportunitiesInRetirement/DG_10014663CY,13 6489,http://www.roadsafeforparents.com,13 6490,http://ko.wikipedia.org,13 6491,http://www.jhpemployability.com,13 6492,http://ukfrenchmuslimat.forumactif.com,13 6493,http://digital.cabinetoffice.gov.uk,13 6494,http://www.wyreforestdc.gov.uk,13 6495,http://us.mc659.mail.yahoo.com,13 6496,http://www.drivingsteps.co.uk,13 6497,http://www.dyslexia.uk.net,13 6498,http://ukincolombia.fco.gov.uk,13 6499,http://www.hartlepool.gov.uk,13 6500,http://www.thelegaldeedpollservice.org.uk,13 6501,http://transedtraining-px.rtrk.co.uk,13 6502,http://www.walcotfoundation.org.uk,13 6503,http://www.direct.gov.uk/en/Employment/Employees/Pay/DG_10027238,13 6504,http://webmail.optuszoo.com.au,13 6505,http://www.chiuni.ac.uk,13 6506,http://www.hartlepoolnow.co.uk,13 6507,http://ukinmalta.fco.gov.uk,13 6508,http://www.helpmefindwork.co.uk,13 6509,http://br.mc1613.mail.yahoo.com,13 6510,http://www.thelawportal.co.uk,13 6511,http://us.mc393.mail.yahoo.com,13 6512,http://www.motofrakcija.lt,13 6513,http://www.cascaid.co.uk,13 6514,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/WhatToDoAfterADeath/DG_10029817,13 6515,http://relationshipsupport.direct.gov.uk/index.html,13 6516,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Keepingtrafficmoving/index.htm,13 6517,http://www.direct.gov.uk/en/Dl1/Directories/DevolvedAdministrations/DG_065241,13 6518,http://anl-iconnect.anl.dmgt.net,13 6519,http://www.country-cousins.co.uk,13 6520,http://daniel.theorytestpro.co.uk,13 6521,http://www.norfolkprepared.gov.uk,13 6522,http://daleelmanchester.blogspot.com,13 6523,http://www.taxi-register.com,13 6524,http://www.londonprepared.gov.uk,13 6525,http://www.jimmairdrivertraining.com,13 6526,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018928CY,13 6527,http://compass.internal.anchor.org.uk,13 6528,http://www.whichwill.co.uk,13 6529,http://mail40.abv.bg,13 6530,http://www.whichpaydaylender.co.uk,13 6531,http://www.pngclub.com,13 6532,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/VictimsOfCrime/index.htm,13 6533,http://www.bectu.org.uk,13 6534,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Inretirement/DG_10018936,13 6535,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_10020667,13 6536,http://ask.ofcom.org.uk,13 6537,http://www.gaapweb.com,13 6538,http://www.housingcare.org,13 6539,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1T6jAU*TVsnKGTD*rBsrWAbHyOfW!dqUkGq5BgEuT9fPNR6FTBKax0k!Tec5qTc2*aaqnMCJcjlLzZ6UU!absUiuvd2mibgcDG2pJIrSkXrBErm3XJt!hJSm04u2uMjv48!l1ilI1Qoer9Tq1thHOXQs*GbN2ijWM0b6f9fh!xRnFqopV8j3avbX6rJCNUCr3bELZqkw2j23UI8HzJaMXVe0N5SJRVRRazv!QhX8wCP9G6lPS!3hwY5YJAADCAeNIylhWpqod*LQ79We2QFht39tJ5idGt9gFwgHVYuNzUztZxCH6OYyEZX7KDHQAH2kx*s00E0UCbyTc2k3XtLzYX7rqb2jSUqFq82utO!P!tfR90I0V3xXvDptbOX1y4nWwp*BSXN6jdPEZFR8kCJfOUT1gasPQUlgQsOYXFAYtPYZOATQ4YDsPxbNi3LNNUKj7ulm417wx45i3o!OMjK3g!!yjOQVeGc4XDfufcT7!scGctwWAJXmJpelIHHF!4rKuy3xHP!mUP*EOI8xgnWQqmIAntGsNeQy*ozzVmfkZ*PpXgItt9T53t76UgvEaqV6LBUuAaqV7Fh0qB6TVSvQYOlvrydRki1bsPg6XS81L!tyBXDbWffc1rRZ8JFx!mvDv0/results,13 6540,http://www.wheelersschoolofmotoring.co.uk,13 6541,http://www.direct.gov.uk/cy/TravelAndTransport/Highwaycode/DG_069863CY,13 6542,http://www.direct.gov.uk/en/Employment/Employees/WorkingHoursAndTimeOff/DG_10028516,13 6543,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Leaseholdproperties/DG_193044,13 6544,http://www.newport.ac.uk,13 6545,http://www.charcol.co.uk,13 6546,http://www.luv2pass.co.uk,13 6547,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Findoutaboutyourrights/index.htm,12 6548,http://bfime.custhelp.com,12 6549,http://www.b48s.org.uk,12 6550,http://www.ba-dia.co.uk,12 6551,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applyingforaneworrenewedchildpassport/DG_174106,12 6552,http://growingambitions.tes.co.uk,12 6553,http://www.anchormotorcycles.co.uk,12 6554,http://www.trueknowledge.com,12 6555,http://www.rd4u.org.uk,12 6556,http://www.rcpsych.ac.uk,12 6557,http://www.friends-drivingschool.co.uk,12 6558,http://www.direct.gov.uk/en/Hl1/Help/YourQuestions/DG_069492,12 6559,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011651,12 6560,http://www.barnfield.ac.uk,12 6561,http://www.rivieratravel.co.uk,12 6562,http://www.allcorsa.co.uk,12 6563,http://www.barnstable.k12.ma.us,12 6564,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011657,12 6565,http://www.rnlipensions.org.uk,12 6566,http://imai2-uk.diif.r.mil.uk,12 6567,http://www.direct.gov.uk/en/TravelAndTransport/PublicTransport/index.htm,12 6568,http://www.iod.com,12 6569,http://www.ait.gov.uk,12 6570,http://www.becomeajournalist.com,12 6571,http://abahe.co.uk,12 6572,http://www.import-car.info,12 6573,http://www.imperial.ac.uk,12 6574,http://www.travelblog.org,12 6575,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Juryservice/DG_072707,12 6576,http://www.advicekit.info,12 6577,http://fr.mc296.mail.yahoo.com,12 6578,http://foundationyears.org.uk,12 6579,http://www.transporterhire.co.uk,12 6580,http://www.direct.gov.uk/en/Video/Parenting/index.htm,12 6581,http://www.unitetheunion.org,12 6582,http://www.universalcredit.co.uk,12 6583,http://www.bevstevens.co.uk,12 6584,http://www.qdrivedrivingschool.co.uk,12 6585,http://forums.redissue.co.uk,12 6586,http://www2.unpan.org,12 6587,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Goingtocourt/DG_196036,12 6588,http://www.tradingstandardswales.org.uk,12 6589,http://www.magnamct.com,12 6590,http://www.employeebenefits.coop,12 6591,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/TypesOfCrime/index.htm,12 6592,http://www.publicrecordschecks.com,12 6593,http://www.acorndomains.co.uk,12 6594,http://www.acisgroup.co.uk,12 6595,http://www.usdaw.org.uk,12 6596,http://www.yorkshire-divers.com,12 6597,http://www.birminghamhomechoice.org.uk,12 6598,http://www.uts.edu.au,12 6599,http://www.bitingpoint.co.uk,12 6600,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Protectingwildlife/DG_181768,12 6601,http://www.abilitynet.org.uk,12 6602,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/FireSafety/DG_071794,12 6603,http://www.ifishoulddie.co.uk,12 6604,http://www.xaverian.ac.uk,12 6605,http://www.aberdeenshirecommunitysafety.org.uk,12 6606,http://www.productionbase.co.uk,12 6607,http://www.bmetc.ac.uk,12 6608,http://www.aberdeencoastguardcrt.co.uk,12 6609,http://www.bmwownersclub.com,12 6610,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/SupportAtHome/DG_179004,12 6611,http://www.lipa.ac.uk,12 6612,http://www.boilersinstallationlondon.co.uk,12 6613,http://irscot.inrev.gov.uk,12 6614,http://www.bonusprint.co.uk,12 6615,http://www.5ive-o.org,12 6616,http://www.4plates.co.uk,12 6617,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Energyandwaterefficiencyinyourhome/DG_064371,12 6618,http://www.406oc.co.uk,12 6619,http://www.rykneldhomes.org.uk,12 6620,http://www.preludesom.com,12 6621,http://www.saabscene.com,12 6622,http://jobs.thisisnottingham.co.uk,12 6623,http://www.bradleycvs.co.uk,12 6624,http://www.206info.co.uk,12 6625,http://www.limbless-association.org,12 6626,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/SaferStreets/DG_10034524,12 6627,http://www.motorjunction.com,12 6628,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_4020730.pdf,12 6629,http://www.icg-uk.org,12 6630,http://wired.wla.int,12 6631,http://fa.wikipedia.org,12 6632,http://www.direct.gov.uk/en/Employment/TradeUnions/Tradeunionsintheworkplace/DG_179246,12 6633,http://www.britannia.co.uk,12 6634,http://www.britchopper.co.uk,12 6635,http://www.greenhead.ac.uk,12 6636,http://www.britishgasboilers.co.uk,12 6637,http://www.w4mpjobs.org,12 6638,http://westcoastbiketraining.co.uk,12 6639,http://betterfuture.direct.gov.uk/already-retired.html,12 6640,http://addon.100searchengines.com,12 6641,http://www.marks-driving-school.com,12 6642,http://kr.search.yahoo.com,12 6643,http://england.pl,12 6644,http://webmail.123-reg.co.uk,12 6645,http://www.pmaltd.biz,12 6646,http://www.i-m-a.org.uk,12 6647,http://rsglinapp2,12 6648,http://www.think.norfolk.gov.uk,12 6649,http://web.search.naver.com,12 6650,http://www.dlbs.co.uk,12 6651,http://ldlintranet,12 6652,http://www.busabout.com,12 6653,http://web-001,12 6654,http://www.huntsmotorcycles.co.uk,12 6655,http://www.haynes-car-care.co.uk,12 6656,http://www.hull.pl,12 6657,http://www.lfe-drivingschool.co.uk,12 6658,http://www.matthew-arnold.oxon.sch.uk,12 6659,http://vle.salford.ac.uk,12 6660,http://vle.ocvc.ac.uk,12 6661,http://www.huffingtonpost.co.uk,12 6662,http://3cp9lcoq32dpn.yom.mail.yahoo.com,12 6663,http://www.cambiolavoro.com,12 6664,http://www.jedsdrivingschool.co.uk,12 6665,http://www.dpchallenge.com,12 6666,http://www.dpm.cabinetoffice.gov.uk,12 6667,http://vista.napier.ac.uk,12 6668,http://www.sthelens.ac.uk,12 6669,http://www.forum.drinkdriving.org,12 6670,http://www.weddingchaos.co.uk,12 6671,http://vibe,12 6672,http://www.driftworks.com,12 6673,http://www.canadainternational.gc.ca,12 6674,http://vi.wikipedia.org,12 6675,http://localcrime.direct.gov.uk/helper/nuisance-neighbours/index.html,12 6676,http://3cp9lcoq32dpn.c.yom.mail.yahoo.com,12 6677,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Adoptionrightsintheworkplace/DG_10029406,12 6678,http://londonist.com,12 6679,http://www.grandparents-association.org.uk,12 6680,http://www.drive4it.co.uk,12 6681,http://www.drivecheltenham.com,12 6682,http://www.direct.gov.uk/en/Employment/Jobseekers/Helpapplyingforajob/DG_173648,12 6683,http://www.petrolprices.com,12 6684,http://www.letsinstruct.co.uk,12 6685,http://disabilityalliance.org,12 6686,http://www.jhpapprenticeships.com,12 6687,http://www.careercompanion.co.uk,12 6688,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Expectingorbringingupchildren/DG_175869,12 6689,http://www.careershifters.org,12 6690,http://search48.info.com,12 6691,http://www.west-cheshire.ac.uk,12 6692,http://www.mctimoney-college.ac.uk,12 6693,http://www.direct.gov.uk/en/Employment/HealthAndSafetyAtWork/DG_10026604,12 6694,http://www.westcoastfireworks.co.uk,12 6695,http://www.eures.ch,12 6696,http://www.nfh.org.uk,12 6697,http://www.direct.gov.uk/cy/TravelAndTransport/Boatingandtravellingbywater/Usingpleasurecraftsafely/DG_185474CY,12 6698,http://www.kredytstudencki.fora.pl,12 6699,http://www1.plymouth.ac.uk,12 6700,http://www.searchcompletion.com,12 6701,http://m.direct.gov.uk/journeyPlannerController,12 6702,http://www.familytreeforum.com,12 6703,http://www.seatcupra.net,12 6704,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Beingstoppedorarrestedbythepolice/DG_196450,12 6705,http://www.caths.cam.ac.uk,12 6706,http://cts-driving-school.co.uk,12 6707,http://www.sed.manchester.ac.uk,12 6708,http://www.drivewales.co.uk,12 6709,http://www.celticminded.com,12 6710,http://www.westsiderider.co.uk,12 6711,http://www.seevic-college.ac.uk,12 6712,http://www.direct.gov.uk/en/Employment/Employees/Timeoffandholidays/DG_183635,12 6713,http://mail.bucksgfl.org.uk,12 6714,http://mail.rambler.ru,12 6715,http://www.drivingforcelearners.co.uk,12 6716,http://www.chalcheck.co.uk,12 6717,http://www.drivinginstructorswiltshire.co.uk,12 6718,http://connectus.intranet.baesystems.com,12 6719,http://www.medwayyouthtrust.org,12 6720,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/AdoptionAndFostering/DG_4019657,12 6721,http://www.direct.gov.uk/en/Employment/Employees/TheNationalMinimumWage/DG_191033,12 6722,http://www.charnwoodtraining.com,12 6723,http://www.whichlegalservice.co.uk,12 6724,http://www.cherylsschoolofmotoring.co.uk,12 6725,http://www.whitegates.co.uk,12 6726,http://maltbydrivingschool.co.uk,12 6727,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_199838,12 6728,http://maps.google.pl,12 6729,http://www.thechildrensmutual.co.uk,12 6730,http://www.series2club.info,12 6731,http://collaboration.lbcamden.net,12 6732,http://212.137.36.113,12 6733,http://ukinnl.fco.gov.uk,12 6734,http://www.thecaretakers.net,12 6735,http://www.direct.gov.uk/en/Employment/Employees/Pay/DG_175994,12 6736,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_196719,12 6737,http://ukinisrael.fco.gov.uk,12 6738,http://www.wyjs.org.uk,12 6739,http://beplantwise.direct.gov.uk/index.html,12 6740,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011682,12 6741,http://www.shaw-trust.org.uk,12 6742,http://www.the-smart-way.co.uk,12 6743,http://www.merseyfire.gov.uk,12 6744,http://www.homeapproved.co.uk,12 6745,http://childcarefinder.direct.gov.uk/childcarefinder/,12 6746,http://www.citywire.co.uk,12 6747,http://www.youngsouthampton.org,12 6748,http://www.civilmediation.justice.gov.uk,12 6749,http://moodle.bl.rdi.co.uk,12 6750,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/DG_073770,12 6751,http://www.classicroverforum.com,12 6752,http://moodle.city.ac.uk,12 6753,http://uk.mc298.mail.yahoo.com,12 6754,http://centralcontent.fco.gov.uk,12 6755,http://moodle.lambeth.ac.uk,12 6756,http://www.tesol-direct.com,12 6757,http://ccpolicy.westsussex.gov.uk,12 6758,http://www.cmla.uk.com,12 6759,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/TaxationClasses/index.htm,12 6760,http://www.ganfyd.org,12 6761,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ClaimingChildBenefit/DG_073775,12 6762,http://www.mountfitchet.essex.sch.uk,12 6763,http://career.duth.gr,12 6764,http://moodle.riversidecollege.ac.uk,12 6765,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/StudentsFromOtherEUCountries/DG_194440,12 6766,http://www.heanorgate.org.uk,12 6767,http://www.mglewisandson.co.uk,12 6768,http://uk.mc254.mail.yahoo.com,12 6769,http://www.wokingham-cab.org.uk,12 6770,http://mooki.info,12 6771,http://www.exteriorinsulation.co.uk,12 6772,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Gettingstarted/DG_171588,12 6773,http://www.direct.gov.uk/en/CaringForSomeone/CarersRights/DG_4001078,12 6774,http://www.juliesdrivertraining.co.uk,12 6775,http://uk.cibt.com,12 6776,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_10036328,12 6777,http://mp3rocket.toolbaroptions.com,12 6778,http://uelplus.uel.ac.uk,12 6779,http://www.oup.com,12 6780,http://www.corsa-c.co.uk,12 6781,http://my.bounty.com,12 6782,http://my.daemon-search.com,12 6783,http://www.starnow.com,12 6784,http://my.pursglove.ac.uk,12 6785,http://www.skills4schools.org.uk,12 6786,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/DebtsAndArrears/DG_10013226,12 6787,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/DebtsAndArrears/DG_10023269,12 6788,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/DebtsAndArrears/index.htm,12 6789,http://www.focaldrivingschool.co.uk,12 6790,http://www.goldiesmotorcycletraining.co.uk,12 6791,http://www.justretirement.com,12 6792,http://www.stadiumridertraining.co.uk,12 6793,http://www.guildford.ac.uk,12 6794,http://www.csahell.com,12 6795,http://www.karensschoolofmotoring.co.uk,12 6796,http://www.edugeek.net,12 6797,http://search.homeoffice.gov.uk,12 6798,http://www.systemdrive.co.uk,12 6799,http://audisrs.com,12 6800,http://www.google.co.uk..,12 6801,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/index.htm,12 6802,http://www.sylviamilne.co.uk,12 6803,http://www.le.ac.uk,12 6804,http://talis:8001,12 6805,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/ImprovingYourSkills/DG_10037437,12 6806,http://www.smsstudent.co.uk,12 6807,http://www.swindon-college.ac.uk,12 6808,http://www.lcbt.co.uk,12 6809,http://scs-online.co.uk,12 6810,http://www.obv.org.uk,12 6811,http://basschat.co.uk,12 6812,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/FinancialHelpForAdultLearners/CareerDevelopmentLoans/DG_10033240,12 6813,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/Equipment/DG_10038381,12 6814,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/Introductiontofinancialsupport/DG_10020535,12 6815,http://studenttaxadvice.direct.gov.uk/tax-forms.html,12 6816,http://www.stationcars.org.uk,12 6817,http://nrwas.org,12 6818,http://students.camre.ac.uk,12 6819,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/DG_10012424,12 6820,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/LearningToDriveOrRide/DG_4022483,12 6821,http://www.guidedogs.org.uk,12 6822,http://www.denzil69.com,12 6823,http://www.solihullcommunityhousing.org.uk,12 6824,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/LookingForWork/DG_4000314,12 6825,http://www.standardmotorclub.org.uk,12 6826,http://www.n-ram.co.uk,12 6827,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/SupportedHousingSchemes/DG_4000295,12 6828,http://www.destinationlondres.com,12 6829,http://www.detinternational.nsw.edu.au,12 6830,http://www.nspcc.org.uk,12 6831,http://stevehull.theorytestpro.co.uk,12 6832,http://statistics.dwp.gov.uk,12 6833,http://www.l2p-drivingschool.co.uk,12 6834,http://www.supermarket.co.uk,12 6835,http://start.allgameshome.com,12 6836,http://www.diamonddriveintensive.co.uk,12 6837,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4019457,12 6838,http://www.southbucks.gov.uk,12 6839,http://www.nottinghamcityhomes.org.uk,12 6840,http://www.direct.gov.uk/en/Motoring/DriverLicensing/WhatCanYouDriveAndYourObligations/DG_180318,12 6841,http://www.modrykonik.sk,12 6842,http://spelnet.spelthorne.gov.uk,12 6843,http://10.4.146.210,12 6844,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/peoplewhohelpothers/Entitlementtablesfortaxcredits/DG_175707,12 6845,http://10.192.1.28:7778,12 6846,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EducationAndLearningContacts/DG_173410,12 6847,http://www.neighbourhood.statistics.gov.uk,12 6848,http://www.neilmacdrivingschool.co.uk,12 6849,http://www.ladies1stdrivingschool.co.uk,12 6850,http://www.direct.gov.uk/en/DisabledPeople/TravelHolidaysAndBreaks/PlanningATrip/index.htm,12 6851,http://www.kitcarstobuild.com,12 6852,http://www.flagship-housing.co.uk,12 6853,http://bbs.rallyesportescorts.co.uk,12 6854,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Sentencingandcriminalrecords/index.htm,12 6855,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingMoney/SavingsAndInvestments/index.htm,12 6856,http://www.ssc.rcuk.ac.uk,12 6857,http://www.direct.gov.uk/en/Dl1/Directories/DG_175867,12 6858,http://www.direct.gov.uk/en/Dl1/Directories/DG_10015187,12 6859,http://www.direct.gov.uk/cy/Motoring/BuyingAndSellingAVehicle/AdviceOnBuyingAndSellingAVehicle/index.htm,12 6860,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012612,12 6861,http://aadduk.org,12 6862,http://www.eurotemps.co.uk,12 6863,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Juryservice/DG_197055,12 6864,http://home.clara.net,12 6865,http://www.arthritisresearchuk.org,12 6866,http://hmtcollab,12 6867,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070314,12 6868,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/IfThingsGoWrong/index.htm,12 6869,http://www.turn2ushelp.entitledto.co.uk,12 6870,http://www.ucpmarjon.ac.uk,12 6871,http://www.refrigeration-engineer.com,12 6872,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/BringinggoodsorcashintotheUK/DG_064942,12 6873,http://helpyouchoose.org,12 6874,http://hub.westmidlandsiep.gov.uk,12 6875,http://help23.creativevirtual.com,12 6876,http://www.intouch.ccc,12 6877,http://i-net.essexcc.gov.uk,12 6878,http://www.green-arrow.com,12 6879,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingarrangementsincaseyoulosementalcapacity/DG_185924,12 6880,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/Introductiontofinancialsupport/DG_10016128,11 6881,http://www.debretts.com,11 6882,http://www.directhit.com,11 6883,http://www.polfed.org,11 6884,http://www.nzembassy.com,11 6885,http://aspire-core,11 6886,http://3ridings.com,11 6887,http://www.debtfreeme.co.uk,11 6888,http://www.bromleycma.org.uk,11 6889,http://www.police999.com,11 6890,http://graduatetalentpool.bis.gov.uk,11 6891,http://moodle.hillcrest.dudley.sch.uk,11 6892,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011598,11 6893,http://www.calid.info,11 6894,http://leicester.theorytestpro.co.uk,11 6895,http://www.reallymoving.com,11 6896,http://drivinglessonswithcarlos.co.uk,11 6897,http://www.defender2.net,11 6898,http://www.uktutors.com,11 6899,http://amusementgamereal.com,11 6900,http://www.mygoldmusic.co.uk,11 6901,http://www.direct.gov.uk/en/Parents/ParentsRights/DG_4002948,11 6902,http://www.mysearch.com,11 6903,http://www.wrekinhousingtrust.org.uk,11 6904,http://www.pgprotects.co.uk,11 6905,http://motforum.proboards.com,11 6906,http://www.crazymoto.net,11 6907,http://www.malvernhills.gov.uk,11 6908,http://wainfleetdrivingschool.co.uk,11 6909,http://www.mysignpost.org,11 6910,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/MentalHealth/DG_10023332,11 6911,http://www.kt5drivingschool.co.uk,11 6912,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/ExtraHelp/index.htm,11 6913,http://www.denbighhigh.luton.sch.uk,11 6914,http://www.justlanded.de,11 6915,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/WorkSchemesAndProgrammes/DG_171745,11 6916,http://www.mystudentinfo.salford.ac.uk,11 6917,http://www.scottiesdrivingschool.co.uk,11 6918,http://intranet2.wmpad.local,11 6919,http://tools.moneymadeclear.org.uk,11 6920,http://www.vwaudiforum.co.uk,11 6921,http://www.reedinpartnership.co.uk,11 6922,http://wandsworth.childrensservicedirectory.org.uk,11 6923,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/LookingForWork/index.htm,11 6924,http://uk.local.yahoo.com,11 6925,http://www.warwicksu.com,11 6926,http://www.reaseheath.ac.uk,11 6927,http://www.ttt-services.co.uk,11 6928,http://www.statistics.gov.uk,11 6929,http://odin.demandstudios.com,11 6930,http://www.blueskydevelopment.co.uk,11 6931,http://www.poloniauk.co.uk,11 6932,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/PlanningForRetirement/DG_10026793CY,11 6933,http://www.derbyhomes.org,11 6934,http://www.planning-applications.co.uk,11 6935,http://www.pharmacy.ac.uk,11 6936,http://www.governmentfunding.org.uk,11 6937,http://forum.fordsierraclub.co.uk,11 6938,http://www.nhas.org.uk,11 6939,http://www.mydeposits.co.uk,11 6940,http://oldham.theorytestpro.co.uk,11 6941,http://www.shropshire.nhs.uk,11 6942,http://www.xlr8.name,11 6943,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/SupportedHousingSchemes/DG_10020606,11 6944,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/start/index.htm,11 6945,http://www.explainthatstuff.com,11 6946,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ClaimingChildBenefit/DG_173610,11 6947,http://www.designcouncil.org.uk,11 6948,http://www.startek-uk.com,11 6949,http://mylifemychoices.wigan.gov.uk,11 6950,http://www.pomsinadelaide.com,11 6951,http://www.l-team-driving.co.uk,11 6952,http://www.business-school.ed.ac.uk,11 6953,http://www.aboutmyarea.co.uk,11 6954,http://www.mycenturylink.com,11 6955,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Gettingstarted/DG_189556,11 6956,http://www.tuclearning.net,11 6957,http://www.direct.gov.uk/en/SiteInformation/DG_020460,11 6958,http://www.nilgosc.org.uk,11 6959,http://blekko.com,11 6960,http://kin.naver.com,11 6961,http://www.nailtherogues.org.uk,11 6962,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/Drivinglorriesbusesandcoaches/DG_171186,11 6963,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/YourHome/DG_10028026,11 6964,http://www.civictype-r.co.uk,11 6965,http://onlineregistry.uwl.ac.uk,11 6966,http://www.simonsschoolofmotoring.com,11 6967,http://www.ice.cam.ac.uk,11 6968,http://www.sor.org,11 6969,http://www.britannia.com,11 6970,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/DG_182833,11 6971,http://www.direct.gov.uk/en/Dl1/Directories/DG_10016449,11 6972,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Benefits/BenefitsInRetirement/DG_10018657CY,11 6973,http://uk.mc272.mail.yahoo.com,11 6974,http://www.coleurope.eu,11 6975,http://www.pflush.com,11 6976,http://www.porscheclubgbforum.com,11 6977,http://www.standardlifepensions.com,11 6978,http://intranet.nottscc.gov.uk,11 6979,http://www.liveitwell.org.uk,11 6980,http://www.usgovernmentbenefits.org,11 6981,http://www.usembassy.org.uk,11 6982,http://www.mybapension.com,11 6983,http://www.suprafootwear.com,11 6984,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Volunteering/DG_10038499,11 6985,http://halnet,11 6986,http://www.direct.gov.uk/en/CaringForSomeone/CaringForADisabledChild/DG_10027203,11 6987,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@over50/documents/digitalasset/dg_180226.pdf,11 6988,http://web.me.com,11 6989,http://www.simplifydiy.com,11 6990,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011498,11 6991,http://www.psc.gov.uk,11 6992,http://www.report-it.org.uk,11 6993,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/DG_067909,11 6994,http://saferstreets.direct.gov.uk/,11 6995,http://f1drivingschool.theorytestpro.co.uk,11 6996,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011255,11 6997,http://www.jazzyschoolofmotoring.co.uk,11 6998,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/Basicstatepension/DG_10026714,11 6999,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/TaxOnPropertyAndRentalIncome/index.htm,11 7000,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MoneyTaxAndBenefitsContacts/DG_10026991,11 7001,http://www.sunshine.co.uk,11 7002,http://greaterlondonlieutenancy.org.uk,11 7003,http://forum4.aimoo.com,11 7004,http://www.outlet4property.com,11 7005,http://www.conservatoire.org,11 7006,http://www.my-ctf.co.uk,11 7007,http://www.acoustics.salford.ac.uk,11 7008,http://www.reigate.ac.uk,11 7009,http://web.plantbrk.bham.sch.uk,11 7010,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017954,11 7011,http://www.pfeg.org,11 7012,http://lincoln.ac.uk,11 7013,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/index.htm,11 7014,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_070991.pdf,11 7015,http://www.tvedwards.com,11 7016,http://www.reading-travelinfo.co.uk,11 7017,http://www.direct.gov.uk/en/Hl1/Help/DG_10014666,11 7018,http://www.ukparentslounge.com,11 7019,http://www.stedmundsbury.gov.uk,11 7020,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyC/DG_066954,11 7021,http://www.bikesafe-london.co.uk,11 7022,http://forums.ebid.net,11 7023,http://www.khake.com,11 7024,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_069390.pdf,11 7025,http://www.stmichaelandstmartin.co.uk,11 7026,http://www.nosweatjt.co.uk,11 7027,http://www.geared-up-school-of-motoring.co.uk,11 7028,http://www.southhams.gov.uk,11 7029,http://business.uea.ac.uk,11 7030,http://www.sainsburys.co.uk,11 7031,http://www.postoffice.co.uk,11 7032,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfZreLDHhR1Au7bq!hiGOdKYdduCSPn6BLy3B6YJebTfwwTlyPOczaAcz7uhhR*iXm0yJXKWNst!X0boN7NfWcVppO6Xfe31yu37zIkOptCeMcuy71kh9doRW3a7uBNsPOpzMSD0ZPqU9u4LtiXATbcLEDi*Eo74m!0ipgVIHygSrAKvmMA4Yn8MYYGwOKwErHxiF4flu9Bg82G4wqoilr47RQGC!osgvnizwvPgobVCMYSk4Gk5uwvTPglu0hMESXmNJzOpAOFEjpBxOpG9p7MB*LGnDKK8rJBCHdhU4aeiK*mwx8zf6M4lgle3UU7T9uxTGW6SSiLKl0BapJPFcKSS2SCUNzJb6cbvkSCXfQ7ZUtSwl*G9hOPWdu*atkqb7aJW!A78Zebg_/results,11 7033,http://www.thinkbaby.co.uk,11 7034,http://www.postpals.co.uk,11 7035,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnBenefitsPensionsAndMaintenance/DG_172136,11 7036,http://forums.flyer.co.uk,11 7037,http://www.auswandererforum.de,11 7038,http://www.rotherham.ac.uk,11 7039,http://www.eastlothian.gov.uk,11 7040,http://www.tr-register.co.uk,11 7041,http://www.direct.gov.uk/en/YoungPeople/DG_10016099,11 7042,http://www.rothamsted.bbsrc.ac.uk,11 7043,http://goniec.com,11 7044,http://getsatisfaction.com,11 7045,http://www.rhino-trikes.co.uk,11 7046,http://write.demandstudios.com,11 7047,http://www.direct.gov.uk/cy/CaringForSomeone/CaringForADisabledChild/DG_10027150CY,11 7048,http://www.timeformoney.co.uk,11 7049,http://www.rossconsular.com,11 7050,http://www.stwater.co.uk,11 7051,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_283,11 7052,http://www.bikehub.co.uk,11 7053,http://avdc-rblive:7777,11 7054,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/BeforeYouTravel/DG_4000019,11 7055,http://www.trackdayriders.co.uk,11 7056,http://www.bike2bike.net,11 7057,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/StreetsParkingCleaningAndLighting/DG_10025971,11 7058,http://www.magistrateswestyorks.org.uk,11 7059,http://www.nhsdirect.nhs.uk,11 7060,http://www.rooftopgroup.org,11 7061,http://www.autismeducationtrust.org.uk,11 7062,http://www.northstandchat.com,11 7063,http://www.spanish-living.com,11 7064,http://www.direct.gov.uk/cy/DisabledPeople/FinancialSupport/esa/index.htm,11 7065,http://www.knowledge-net.info,11 7066,http://www.studentloans.gov.uk,11 7067,http://www.bgchildsavings.com,11 7068,http://www.visitthecity.co.uk,11 7069,http://www.fansonline.net,11 7070,http://www.sparsholt.ac.uk,11 7071,http://77iiaann.wordpress.com,11 7072,http://www.willowplace.co.uk,11 7073,http://www.comcar.co.uk,11 7074,http://www.yjils.org.uk,11 7075,http://www.muncainstrainatate.anofm.ro,11 7076,http://www.moneydoctors.info,11 7077,http://www.discoverengineering.co.uk,11 7078,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/SpecificNeedsContacts/DG_10014895,11 7079,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_065263.pdf,11 7080,http://www.on-holiday-claims.co.uk,11 7081,http://www.direct.gov.uk/cy/Employment/RedundancyAndLeavingYourJob/index.htm,11 7082,http://innovate-apps.direct.gov.uk/bereavement/0-0-1.html,11 7083,http://www.the-big-pitch-guide.com,11 7084,http://www.neathporttalbothousing.co.uk,11 7085,http://www.saferiders.co.uk,11 7086,http://www.iprow.co.uk,11 7087,http://dpsc.a4e.co.uk,11 7088,http://mphengineering.wordpress.com,11 7089,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/index.htm,11 7090,http://www.northernrock.co.uk,11 7091,http://www.ictservices.org.uk,11 7092,http://informatico-migratore.blogspot.com,11 7093,http://www2.travelodge.co.uk,11 7094,http://www.safenetwork.org.uk,11 7095,http://www.cablink.org.uk,11 7096,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/PlanYourWayOutOfDebt/DG_10023176,11 7097,http://www.direct.gov.uk/cy/Governmentcitizensandrights/Death/Preparation/DG_10029800CY,11 7098,http://www.advrider.com,11 7099,http://fi.wikipedia.org,11 7100,http://www.spiritsolar.co.uk,11 7101,http://www.direct.gov.uk/cy/Governmentcitizensandrights/index.htm,11 7102,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*Jp9aWLCZfHy6Ha7v2EIJVuzFq3YpJ*fAye7BKsN!tS!wIEZGWeOQduP04GfDyz*gEkOg5YdLMyo7Wc3WdijBNYWaI20SpvX1lxh12120pfaOMIkp1Y1ozQ3IDT6a4ATbNsbf7hg5Wx4l*YGhTixCiZe!0mcn5hDXc1OgVIipfSUGVYgVixhOWL5EiYQE0vYEbHjHeM4PN6NX7wHq*pRZ6F01SUY8MxnEvjZg4WeVx*lNQkxrAXH*cm1n*5ZcKuWKFqiWyxVizoYTtDwKfsT!UscO*LvS14LnpcFqUiO7cpo1NAN*dlj5m*0ZxbBJtuxp2D7dylK90hFESVLkT1SUeKpUqTaIxU1MFnqx!2SIhV9D8lSxbpU5X4L*bVVcO1bLUf11mjzDQFwe1U_/results,11 7103,http://www.wamster.org.uk,11 7104,http://www.continyou.org.uk,11 7105,http://www.hct.ac.uk,11 7106,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/BankAccountsAndBankingProducts/index.htm,11 7107,http://www.avcmotors.co.uk,11 7108,http://hyperion,11 7109,http://www.plymouthart.ac.uk,11 7110,http://www.macs.hw.ac.uk,11 7111,http://www.autobike.co.uk,11 7112,http://www.travellife.org,11 7113,http://www.neilsdrivingschool.com,11 7114,http://www.fifthgeardriver.co.uk,11 7115,http://www.enterpriseuk.org,11 7116,http://www.kissdrivingschool.com,11 7117,http://www.baptist.org.uk,11 7118,http://10.255.110.141:9093,11 7119,http://www.walton-on-thames.org,11 7120,http://www.cycleshrewsbury.co.uk,11 7121,http://www.bedford.ac.uk,11 7122,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxallowancesandreliefs/index.htm,11 7123,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/StudentsFromOtherEUCountries/DG_10035221,11 7124,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_4019444CY,11 7125,http://www.cantaffordalawyer.com,11 7126,http://www.energy-uk.org.uk,11 7127,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Localgovernment/DG_073312,11 7128,http://www.nelsonthornes.com,11 7129,http://www.iowmc.co.uk,11 7130,http://www.mumandcareer.co.uk,11 7131,http://rehabjobfit.auburnclient.co.uk,11 7132,http://www.direct.gov.uk/en/Pensionsandretirementplanning/TaxandNationalInsuranceinretirement/GettingyourtaxandNationalInsuranceright/DG_10023447,11 7133,http://www.yourworkprogramme.com,11 7134,http://www.zroadster.net,11 7135,http://www.lendingstandardsboard.org.uk,11 7136,http://webct.nottingham.ac.uk,11 7137,http://find.redbridge.gov.uk,11 7138,http://www.drivingambitionuk.co.uk,11 7139,http://www.whatscooter.com,11 7140,http://www.cfa.uk.com,11 7141,http://www.direct.gov.uk/en/Employment/Employees/Timeoffandholidays/DG_10028529,11 7142,http://www.cerebra.org.uk,11 7143,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/Fostering/DG_10027534,11 7144,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/VictimsOfCrime/DG_177421,11 7145,http://www.b-f-a.org,11 7146,http://www.drivinginstructorinshrewsbury.com,11 7147,http://my,11 7148,http://www.locateuk.co.uk,11 7149,http://consult.eduzones.com,11 7150,http://www.apprenticeships-in-sussex.com,11 7151,http://www.drivingintensivecourses.co.uk,11 7152,http://www.direct.gov.uk/en/CaringForSomeone/CaringAndSupportServices/DG_10016779,11 7153,http://www.selhurstconsulting.co.uk,11 7154,http://www.aspirel.co.uk,11 7155,http://www.direct.gov.uk/en/Parents/Childcare/DG_180969,11 7156,http://talesoftheroad.direct.gov.uk/videoembed/videoembedbright.swf,11 7157,http://www.taxpayersalliance.com,11 7158,http://nimri.nimr.mrc.ac.uk,11 7159,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ClaimingChildBenefit/DG_073775CY,11 7160,http://us.mc1124.mail.yahoo.com,11 7161,http://www.google.com:80,11 7162,http://www.thegreenhomecompany.com,11 7163,http://www.direct.gov.uk/en/Parents/ChildMaintenance/Arrangingchildmaintenance/DG_199135,11 7164,http://magic.defra.gov.uk,11 7165,http://www.hearingaid.co.uk,11 7166,http://www.companieshouse.gov.uk,11 7167,http://www.drivinglessonsdarlington.co.uk,11 7168,http://www.apollo-driving-school-hull.co.uk,11 7169,http://www.hbadvice.co.uk,11 7170,http://www.sectortest.co.uk,11 7171,http://www.hmo.org.uk,11 7172,http://www.pensionannuityuk.co.uk,11 7173,http://un.yhs.search.yahoo.com,11 7174,http://www.elderabuse.org.uk,11 7175,http://www.elearnco.co.uk,11 7176,http://www.drivinglessonsincarlisle.com,11 7177,http://www.fromspaintouk.com,11 7178,http://www.familyrelatives.com,11 7179,http://www.paulmurphydriving.co.uk,11 7180,http://www.driverz.co.uk,11 7181,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011446,11 7182,http://www.vipex.co.uk,11 7183,http://you,11 7184,http://askbg.co.uk,11 7185,http://sydney.edu.au,11 7186,http://www.chequersmotoringschool.co.uk,11 7187,http://www.informationtribunal.gov.uk,11 7188,http://www.direct.gov.uk/en/Pensionsandretirementplanning/TaxandNationalInsuranceinretirement/GettingyourtaxandNationalInsuranceright/DG_171912,11 7189,http://www.menai.ac.uk,11 7190,http://www.drivinglessonsincoventry.co.uk,11 7191,http://ukldnvc,11 7192,http://www.hearingdogs.org.uk,11 7193,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/RentingOutYourProperty/DG_189125,11 7194,http://nmintranet,11 7195,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/ImportingAndExportingAVehicle/DG_4022105,11 7196,http://www.azcareers-sw.co.uk,11 7197,http://campaigns.direct.gov.uk/actonco2/,11 7198,http://www.haslemeremotorcycles.co.uk,11 7199,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Gettingadivorce/DG_193736,11 7200,http://rewire,11 7201,http://us.mc1617.mail.yahoo.com,11 7202,http://www.switalskis.com,11 7203,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/RailTravel/DG_10036290,11 7204,http://www.letlink.co.uk,11 7205,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/ImportingAndExportingAVehicle/DG_177879,11 7206,http://links.govdelivery.com:80,11 7207,http://www.c4yp.co.uk,11 7208,http://www.confessionsofasinglemum.co.uk,11 7209,http://www.damsels.org,11 7210,http://www.trikedoctor.co.uk,11 7211,http://www.homesinhants.co.uk,11 7212,http://www.bppstudents.com,11 7213,http://adamdrivingschool.co.uk,11 7214,http://www.sto.co.uk,11 7215,http://www.clickstart.org.uk,11 7216,http://firstjob.direct.gov.uk/index.html,11 7217,http://www.bournemouthmontessori.co.uk,11 7218,http://emigravau.com,11 7219,http://www.hartismere.com,11 7220,http://www.flickr.com,11 7221,http://www.mtp.wyjs.org.uk,11 7222,http://www.chinese-medicine.co.uk,11 7223,http://www.lady-drivers.co.uk,11 7224,http://www.thecampingforum.co.uk,11 7225,http://www.tuenti.com,11 7226,http://northallertonsc.easysearch.org.uk,11 7227,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/PracticalTest/DG_189979,11 7228,http://mediserv_fs_3,11 7229,http://www.mpct.co.uk,11 7230,http://www.learnwithbill.com,11 7231,http://www.grantmcarthur.co.uk,11 7232,http://www.west-thames.ac.uk,11 7233,http://www.rmweb.co.uk,11 7234,http://search.sheffield.gov.uk,11 7235,http://ukinhungary.fco.gov.uk,11 7236,http://ganymede.chester.ac.uk,11 7237,http://www.davecollinsonadi.co.uk,11 7238,http://www.sfbn-equality-diversity.org.uk,11 7239,http://www.midischool.com,11 7240,http://www.orkut.com,11 7241,http://www.mandysdriving.co.uk,11 7242,http://langprac.wetpaint.com,11 7243,http://www.zess.uni-goettingen.de,11 7244,http://www.futurestrategies.co.uk,11 7245,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011683,11 7246,http://www.foropolicia.es,11 7247,http://www.motorhomefun.co.uk,11 7248,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/LeavingOrComingIntoTheUK/DG_078445,11 7249,http://www.wes.org,11 7250,http://webmail03.lancs.ac.uk,11 7251,http://uk.mc239.mail.yahoo.com,11 7252,http://www.direct.gov.uk/en/Parents/preschooldevelopmentandlearning/index.htm,11 7253,http://uk.mc1614.mail.yahoo.com,11 7254,http://ukinalgeria.fco.gov.uk,11 7255,http://us.mc655.mail.yahoo.com,11 7256,http://dipfa.ifslearning.ac.uk,11 7257,http://direct.gov.uk,11 7258,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Benefits/BenefitsInRetirement/index.htm,11 7259,http://mobile.pistonheads.com,11 7260,http://www.peterboroughpl.com,11 7261,http://foodimports.direct.gov.uk/india.html,11 7262,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011634,11 7263,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/Taxreliefandreductions/index.htm,11 7264,http://www.road-sense.co.uk,11 7265,http://www.coxdrivingschool.co.uk,11 7266,http://yesministerltd.wordpress.com,11 7267,http://www.scs.co.uk,11 7268,http://www.oaklands.ac.uk,11 7269,http://www.passmaster.co.uk,11 7270,http://www.bonfireci.com,11 7271,http://www.dbgreen-warmair.co.uk,11 7272,http://disability-dyslexia.brookes.ac.uk,11 7273,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2010/DG_186647,11 7274,http://ie.search.yahoo.com,11 7275,http://www.alcoholconcern.org.uk,11 7276,http://www.freedomlearners.com,11 7277,http://www.youandyourwedding.co.uk,11 7278,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/PlanningForRetirement/DG_10014582CY,11 7279,http://www.homebuilding.co.uk,11 7280,http://www.yourmoney.co.uk,11 7281,http://www.cityandguildsartschool.ac.uk,11 7282,http://www.intra.mdx.ac.uk,11 7283,http://www.doncastercareers1419.org.uk,11 7284,http://www.wortech.ac.uk,11 7285,http://www.direct.gov.uk/en/Parents/CrimeAndYoungOffenders/index.htm,11 7286,http://www.stardoll.com,11 7287,http://www.dsa-qag.org.uk,11 7288,http://webserver1:1776,11 7289,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011659,11 7290,http://www.the-eu-and-me.org.uk,11 7291,http://www.home-swap.org.uk,11 7292,http://search.zoomtown.com,11 7293,http://www.passability.com,11 7294,http://www.thenewstoday.net,11 7295,http://scheme.capitalcyclesafe.co.uk,10 7296,http://www.leggott.ac.uk,10 7297,http://www.cardiffgate.com,10 7298,http://www.drmdrivertraining.co.uk,10 7299,http://www.direct.gov.uk/en/Employment/Jobseekers/DG_101,10 7300,http://disabilityuk.com,10 7301,http://www.nogsport.co.uk,10 7302,http://www.scrapcarprices.co.uk,10 7303,http://www.carbuyerscotland.com,10 7304,http://www.sheffieldhelpyourself.org.uk,10 7305,http://www.sheffieldmegroup.co.uk,10 7306,http://sefton.learnaboutwork.net,10 7307,http://share.breastcancercare.org.uk,10 7308,http://www4.rgu.ac.uk,10 7309,http://www.direct.gov.uk/en/Motoring/PersonalisedRegAndNumberPlates/DG_172180,10 7310,http://www.dsdni.gov.uk,10 7311,http://www.yakujien.com,10 7312,http://www.willsandprobateservice.co.uk,10 7313,http://www.direct.gov.uk/en/Motoring/PersonalisedRegAndNumberPlates/DG_10014577,10 7314,http://usseek.com,10 7315,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/index.htm,10 7316,http://www.finn-guild.org,10 7317,http://www.dstl.gov.uk,10 7318,http://dmbctridionpres:8082,10 7319,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/DG_073779,10 7320,http://aditraining.proboards.com,10 7321,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/UntaxedVehicle/DG_4022072,10 7322,http://www.family-lawfirm.co.uk,10 7323,http://www.wycombedrivingschool.co.uk,10 7324,http://moodle.guildford.ac.uk,10 7325,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/DG_073828,10 7326,http://www.st-peters-sittingbourne.co.uk,10 7327,http://www.wegcode.be,10 7328,http://www.dreamdrivinglessons.co.uk,10 7329,http://www.dwakrany.co.uk,10 7330,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Working/DG_184309,10 7331,http://www.cambsmagistrates.org.uk,10 7332,http://192.168.1.242:15871,10 7333,http://www.autoszkola.co.uk,10 7334,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/YourMoney/DG_10039513,10 7335,http://visacentral.co.uk,10 7336,http://cel.uek.krakow.pl,10 7337,http://cebusecond,10 7338,http://drinkdriving.org,10 7339,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012624,10 7340,http://www.envirosolar.co.uk,10 7341,http://moodle.ne-worcs.ac.uk,10 7342,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnBenefitsPensionsAndMaintenance/DG_172143,10 7343,http://www.hanover.org.uk,10 7344,http://carkey-online.co.uk,10 7345,http://www.tsoshop.co.uk,10 7346,http://www.coi.gov.uk,10 7347,http://www.colargol.co.uk,10 7348,http://www.tenerifeforum.org,10 7349,http://sg.answers.yahoo.com,10 7350,http://uk.mc274.mail.yahoo.com,10 7351,http://www.coleurop.be,10 7352,http://www.physics.org,10 7353,http://canadianrockiesacademy.com,10 7354,http://droopsnootgroup.yuku.com,10 7355,http://drownedinsound.com,10 7356,http://ilsapps.southend.ac.uk,10 7357,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Ifyoureendingamarriageorcivilpartnership/DG_192080,10 7358,http://www.harrow4u.co.uk,10 7359,http://www.wlonline.org,10 7360,http://172.16.185.82:15871,10 7361,http://www.huddersfield.su,10 7362,http://www.alivenetwork.com,10 7363,http://172.16.0.30,10 7364,http://uk.mc266.mail.yahoo.com,10 7365,http://uk.mc262.mail.yahoo.com,10 7366,http://dsclick.infospace.com,10 7367,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012560,10 7368,http://moodle.ystrad-mynach.ac.uk,10 7369,http://www.newcollegedurham.ac.uk,10 7370,http://home.myhughesnet.com,10 7371,http://www.direct.gov.uk/en/Employment/Jobseekers/ProgrammesandServices/DG_173631,10 7372,http://www.lexusownersclub.co.uk,10 7373,http://www.silvesterdrivingschool.co.uk,10 7374,http://www.fodors.com,10 7375,http://www.thetimes.co.uk,10 7376,http://cabpeterborough.easysearch.org.uk,10 7377,http://wa-cbtsvr1:8080,10 7378,http://learning.themanchestercollege.ac.uk,10 7379,http://www.buspassheaven.co.uk,10 7380,http://blogs.telegraph.co.uk,10 7381,http://learning.careshield.co.uk,10 7382,http://learn.lboro.ac.uk,10 7383,http://www.woodpeckers-nursery.co.uk,10 7384,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/KeepingyourChildBenefituptodate/ChildBenefitafter16/index.htm,10 7385,http://www.direct.gov.uk/en/CaringForSomeone/CaringAndSupportServices/DG_10035718,10 7386,http://www.asccarmarthenshire.co.uk,10 7387,http://athomewithmoney.staffordlong.com,10 7388,http://www.worc.ac.uk,10 7389,http://www.huxters.co.uk,10 7390,http://ldcradyr.com,10 7391,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Gettingstarted/DG_171580,10 7392,http://www.conservativewomen.org.uk,10 7393,http://www.eastherts.gov.uk,10 7394,http://www.renault.co.uk,10 7395,http://www.tribal-living.co.uk,10 7396,http://www.dish.org.uk,10 7397,http://i4site.co.uk,10 7398,http://edu.tuk-tam.bg,10 7399,http://answers.ask.com,10 7400,http://www.twistytails.co.uk,10 7401,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Paymentsandentitlements/ChildBenefitpayment/DG_173683,10 7402,http://www.plutos.org.uk,10 7403,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/ChildTrustFund/AnintroductiontotheChildTrustFund/DG_194454,10 7404,http://www.thirdyearabroad.com,10 7405,http://ucas.faq-help.com,10 7406,http://www.discoveranthropology.org.uk,10 7407,http://www.cookdandbombd.co.uk,10 7408,http://uat.starnow.com:8083,10 7409,http://bristoldrivinglessons.com,10 7410,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/ExamsTestsAndTheCurriculum/DG_10013915,10 7411,http://brandthunder.surfcanyon.com,10 7412,http://www.cornelsen.de,10 7413,http://tui-retail-live,10 7414,http://www.cornishgems.com,10 7415,http://braehead.co.uk,10 7416,http://www.nhsconfed.org,10 7417,http://www.discountletting.co.uk,10 7418,http://www.askaboutmoney.com,10 7419,https://www.directbooking.org.uk,10 7420,http://www.b3ta.com,10 7421,http://email.seznam.cz,10 7422,http://www.bsaownersclub.co.uk,10 7423,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/CourtClaimsAndBankruptcy/DG_187711,10 7424,http://www.easysearch.org.uk,10 7425,http://www.wakefielddistrictcab.co.uk,10 7426,http://www.orientalmed.ac.uk,10 7427,http://www.stmarysblackburn.ac.uk,10 7428,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Debtrepaymentoptions/DG_10023185,10 7429,http://my.oracle.com,10 7430,http://www.wagaciezka.com,10 7431,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Debtrepaymentoptions/DG_183575,10 7432,http://epetitions.direct.gov.uk/petitions,10 7433,http://bolton.portal.s-cool.co.uk,10 7434,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SchoolLife/DG_179508,10 7435,http://home.btconnect.com,10 7436,http://www.threecomplaints.com,10 7437,http://www.thrifty.co.uk,10 7438,http://my.starware.com,10 7439,http://hondantv.pl,10 7440,http://www.politicsresources.net,10 7441,http://kinnear.wigan.gov.uk,10 7442,http://www.thwhiteenergy.co.uk,10 7443,http://whatyoushouldknow.depression-alliance.co.uk,10 7444,http://www.miemigracion.com,10 7445,http://www.eurotunnel.com,10 7446,http://www.vra-uk.org,10 7447,http://www.learning.luton.gov.uk,10 7448,http://kingfriday.co.uk,10 7449,http://tiger.direct.gov.uk/cgi-bin/paternity.cgi,10 7450,http://www.ecodrivendrivingschool.co.uk,10 7451,http://go.microsoft.com,10 7452,http://europaexplorer.pixnet.net,10 7453,http://www.barnet.ac.uk,10 7454,http://wiki.ask.com,10 7455,http://www.eddiesdrivingschool.co.uk,10 7456,http://www.croydoncarers.org.uk,10 7457,http://thisisabuse.direct.gov.uk/poll,10 7458,http://www.direct.gov.uk/en/Employment/TradeUnions/Industrialaction/DG_10031235,10 7459,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ChoicesAfterYouGraduate/DG_178904,10 7460,http://www.ice.org.uk,10 7461,http://www.arrowridertraining.co.uk,10 7462,http://www.tantoschool.org,10 7463,http://www.justmots-telford.co.uk,10 7464,http://www.retirement-lounge.com,10 7465,http://www.hcsprovek.co.uk,10 7466,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SpecialEducationalNeeds/DG_10016184,10 7467,http://wmc.ac.uk,10 7468,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Companyandpersonalpensions/index.htm,10 7469,http://familytimeline.webs.com,10 7470,http://fansonline.net,10 7471,http://www.globalgateway.eu,10 7472,http://www.edubase.gov.uk,10 7473,http://www.life-pilot.co.uk,10 7474,http://www.onestopadvice.org.uk,10 7475,http://needotron.alpha.gov.uk,10 7476,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_067673.pdf,10 7477,http://www.saha.org.uk,10 7478,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011632,10 7479,http://www.essexschoolsjobs.co.uk,10 7480,http://newmail.rambler.ru,10 7481,http://www.almaxxmotorcycles.co.uk,10 7482,http://www.google.bf,10 7483,http://www.harpoon.co.uk,10 7484,http://thebigtreeplant.direct.gov.uk/index.html,10 7485,http://www.17plusdrivingschool.toucansurf.com,10 7486,http://www.breastfeedingnetwork.org.uk,10 7487,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/PlanYourWayOutOfDebt/DG_10023163,10 7488,http://teamsites.bolton.gov.uk,10 7489,http://find-girlfriend.net,10 7490,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Localgovernment/DG_073311,10 7491,http://www.manovolvoklubas.lt,10 7492,http://nhsbtweb,10 7493,http://www.gght.org.uk,10 7494,http://www.praceanglie.cz,10 7495,http://www.tks.ru,10 7496,http://www.healthyambitionssuffolk.nhs.uk,10 7497,http://www.direct.gov.uk/en/BritonsLivingAbroad/Moneyabroad/index.htm,10 7498,http://www.okehamptoncollege.devon.sch.uk,10 7499,http://www.riverside.org.uk,10 7500,http://www.prawojazdyuk.com,10 7501,http://talesoftheroad.direct.gov.uk/grownups.php,10 7502,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Repairsandstandards/DG_189194,10 7503,http://t-service.co.uk,10 7504,http://www.272heroes.com,10 7505,http://www.dadkhahi.net,10 7506,http://www.oficinadetreball.cat,10 7507,http://www.premiercare.info,10 7508,http://jobs.kingston.gov.uk,10 7509,http://www.swlstg-tr.nhs.uk,10 7510,http://suzannehartleysdrivingschool.co.uk,10 7511,http://jobs.havering.gov.uk,10 7512,http://www.google.ms,10 7513,http://www.ldcdover.co.uk,10 7514,http://bbs.22b.com,10 7515,http://www.hertschildrenscentres.org.uk,10 7516,http://www.4dyslexics.com,10 7517,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Parliament/DG_073604,10 7518,http://www.keepshropshirewarm.org,10 7519,http://www.davebailey-som.co.uk,10 7520,http://www.ribblevalley.gov.uk,10 7521,http://www.vfestival.com,10 7522,http://www.keithgreen.co.uk,10 7523,http://www.ritchiestraining.co.uk,10 7524,http://www.revolutiondrivingschool.com,10 7525,http://jargonfreepensions.co.uk,10 7526,http://www.4networking.biz,10 7527,http://jamesdriving.co.uk,10 7528,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Energygrants/DG_072660,10 7529,http://www.oasisacademyhadley.org,10 7530,http://www.boots.com,10 7531,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Workexperienceandvolunteering/NationalCitizenService/index.htm,10 7532,http://highways.gov.uk,10 7533,http://www.londranews.com,10 7534,http://studenttaxadvice.direct.gov.uk/working-with-students.html,10 7535,http://www.lowcostliving.co.uk,10 7536,http://hicudzsi.freeblog.hu,10 7537,http://forum.bodybuilding.com,10 7538,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/Equipment/DG_4000484,10 7539,http://bluebellrailway.easysearch.org.uk,10 7540,http://www.euro-punkt.pl,10 7541,http://www.direct.gov.uk/en/EducationAndLearning/14To19/Years10And11/DG_10013567,10 7542,http://www.vectra-c.com,10 7543,http://forum.club4x4.ro,10 7544,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/Hospitals/DG_4000456,10 7545,http://www.itslearning.com,10 7546,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011517,10 7547,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/DG_10012438,10 7548,http://idrivecymru.co.uk,10 7549,http://www.rugbyrider.co.uk,10 7550,http://www.delni.gov.uk,10 7551,http://www.aberdeenbikeschool.com,10 7552,http://www.fta.co.uk,10 7553,http://www.delsoluk.com,10 7554,http://www.bmf.co.uk,10 7555,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/MentalHealth/DG_10023434,10 7556,http://studentintranet.mkcollege.net,10 7557,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/PublicConsultations/DG_170463,10 7558,http://www.fiesta-mk1.co.uk,10 7559,http://www.ifalife.com,10 7560,http://www.professionaldivingacademy.com,10 7561,http://oasisplus.mdx.ac.uk,10 7562,http://graduatetalentpool.direct.gov.uk/cms/ShowPage/Home_page/How_it_works/p!edLLXbg,10 7563,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011732,10 7564,http://www.ifslearning.ac.uk,10 7565,http://www.ukankan.co.uk,10 7566,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/DG_127,10 7567,http://www.vaccinedamage.org.uk,10 7568,http://intranet.warwickshire.gov.uk,10 7569,http://intranet.shepway.gov.uk,10 7570,http://strive2drive.co.uk,10 7571,http://www.amersham.ac.uk,10 7572,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/Drivinglorriesbusesandcoaches/index.htm,10 7573,http://www.baggageallowance.org,10 7574,http://www.staffordcoll.ac.uk,10 7575,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Pollution/index.htm,10 7576,http://www.direct.gov.uk/en/Hl1/Help/DG_173539,10 7577,http://www.devilfinder.com,10 7578,http://www.mndassociation.org,10 7579,http://www.direct.gov.uk/en/BritonsLivingAbroad/EducationAndJobs/DG_4014676,10 7580,http://www.londoncolleges.com,10 7581,http://www.direct.gov.uk/en/Diol1/EmploymentInteractiveTools/DG_10028030,10 7582,http://www.accassociation.org,10 7583,http://www.surestartcountydurham.org,10 7584,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/YourHome/DG_4000634,10 7585,http://aclasslearners.com,10 7586,http://www.direct.gov.uk/en/Diol1/DoItOnline/Statepension/DG_190049,10 7587,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/Becomingadrivertrainer/index.htm,10 7588,http://www.south-norfolk.gov.uk,10 7589,http://graduatetalentpoolsearch.direct.gov.uk/casa/servlet/casa.jobseeker.JSServlet,10 7590,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoitonlineA-Z/index.htm,10 7591,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Mentalcapacityandplanningahead/DG_194861,10 7592,http://staging,10 7593,http://www.biogas-info.co.uk,10 7594,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Mentalcapacityandplanningahead/DG_194840,10 7595,http://paag.org.uk,10 7596,http://www.url.org,10 7597,http://www.acmeautosalvage.co.uk,10 7598,http://www.urban-kneads.com,10 7599,http://parents.info,10 7600,http://parkriteschoolofmotoring.co.uk,10 7601,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Changesthataffectyourtaxcredits/DG_172734,10 7602,http://search.assist.shaw.ca,10 7603,http://www.essentialtremorinfo.com,10 7604,http://www.modrykonik.cz,10 7605,http://www.southessex.ac.uk,10 7606,http://id.search.yahoo.com,10 7607,http://www.mwc.co.uk,10 7608,http://www.direct.gov.uk/en/YoungPeople/DG_10016186,10 7609,http://www.direct.gov.uk/en/Motoring/DriverLicensing/WhatCanYouDriveAndYourObligations/DG_10037875,10 7610,http://www.publicjobsdirect.com,10 7611,http://www.nauka-jazdy.co.uk,10 7612,http://bbc.transportdirect.info,10 7613,http://www.tph.org.uk,10 7614,http://www.tpuc.org,10 7615,http://www.traceymillerfamilylaw.co.uk,10 7616,http://www.nbp16c.org.uk,10 7617,http://www.eurodesk.pl,10 7618,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017611,10 7619,http://www.magnacartacollege.org,10 7620,http://www.bicton.ac.uk,10 7621,http://www.bgfl.org,10 7622,http://www.beva.org.uk,10 7623,http://albadrivingschool.co.uk,10 7624,http://www.direct.gov.uk/cy/DisabledPeople/TravelHolidaysAndBreaks/GettingThere/index.htm,10 7625,http://polishbanditcrew.pl,10 7626,http://www.univ.ox.ac.uk,10 7627,http://www.transportcafe.co.uk,10 7628,http://www.adultedbexley.co.uk,10 7629,http://www.unite-students.com,10 7630,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Mortgagesandrepossessions/DG_180044,10 7631,http://innovate-apps.direct.gov.uk/bereavement/,10 7632,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Greenershopping/DG_064874CY,10 7633,http://www.fjg.co.uk,10 7634,http://www.benefity.info,10 7635,http://fr41sytfju.pgon.co.uk,10 7636,http://www.kiosk-fenland.advicehub.org,10 7637,http://www.direct.gov.uk/en/Video/DG_WP195674,10 7638,http://www.kippabidltd.co.uk,10 7639,http://freepages.genealogy.rootsweb.ancestry.com,10 7640,http://alert.scansafe.net,10 7641,http://freesearch.co.uk,10 7642,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10015771,10 7643,http://iconfactory.com,10 7644,http://www.ydsa.co.uk,10 7645,http://www.yourpropertyresource.co.uk,10 7646,http://infolinia.org,10 7647,http://www.bedfordshire.police.uk,10 7648,http://www.macklinmotors.co.uk,10 7649,http://inet6.surreycc.gov.uk,10 7650,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Caringforsomeone/DG_10012859CY,10 7651,http://www.anglija.com,10 7652,http://rbkc.gov.uk,10 7653,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxcodes/DG_078414,10 7654,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxcodes/DG_078492,10 7655,http://www.redditch.com.pl,10 7656,http://www.familylearning.org.uk,10 7657,http://www.ummah.com,10 7658,http://www.whatgas.com,10 7659,http://mail.hillingdongrid.org,10 7660,http://www.harden.dsl.pipex.com,10 7661,http://www.seftonatwork.net,10 7662,http://connexions-berkshire.org.uk,10 7663,http://us.mc1117.mail.yahoo.com,10 7664,http://ask.sage.co.uk,10 7665,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/index.htm,10 7666,http://www.iom-airport.com,10 7667,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/WhatToDoAfterADeath/DG_10036396,10 7668,http://www.ind.homeoffice.gov.uk,10 7669,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/AdoptionAndFostering/DG_4018296,10 7670,http://www.thedrivingtests.co.uk,10 7671,http://www.direct.gov.uk/en/Employment/Employees/Sicknessabsence/index.htm,10 7672,http://www.cheltenham-driving-instructor.co.uk,10 7673,http://www.direct.gov.uk/en/Parents/ChildMaintenance/Arrangingchildmaintenance/DG_199194,10 7674,http://www.castledrivingschool.com,10 7675,http://www.castleassociates.org.uk,10 7676,http://www.searcho.com,10 7677,http://sas.ram.ac.uk,10 7678,http://www.honda-scooter.co.uk,10 7679,http://www.bda.uk.com,10 7680,http://www.whitehorsedc.gov.uk,10 7681,http://www.motoringtuition.co.uk,10 7682,http://www.friendslife.co.uk,10 7683,http://www.drivings-cool.com,10 7684,http://www.bca.ac.uk,10 7685,http://www.jid-drivingschool.co.uk,10 7686,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/index.htm,10 7687,http://www.thechildcarecompany.com,10 7688,http://www.joeant.com,10 7689,http://www.ladydrive.co.uk,10 7690,http://www.carsdirect.com,10 7691,http://www.direct.gov.uk/en/Employment/HealthAndSafetyAtWork/DG_10026585,10 7692,http://www.childrenssociety.org.uk,10 7693,http://hbcintranet,10 7694,http://www.lets-learn.eu,10 7695,http://www.leicestershireconnect.org.uk,10 7696,http://www.grampian.police.uk,10 7697,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010838,10 7698,http://www.drivercpctrainingyorkshire.co.uk,10 7699,http://www.drivingschoolsinbanbury.co.uk,10 7700,http://www.carmel.org.uk,10 7701,http://www.direct.gov.uk/en/employment/healthandsafetyatwork/DG_4016683,10 7702,http://www.wiganplans.co.uk,10 7703,http://www.sfd.pl,10 7704,http://www.motor-talk.de,10 7705,http://ukingreece.fco.gov.uk,10 7706,http://www.youth.luton.gov.uk,10 7707,http://dep.staff.kingston.ac.uk,10 7708,http://ukinbelgium.fco.gov.uk,10 7709,http://www.drivingsolution.co.uk,10 7710,http://detail.chiebukuro.yahoo.co.jp,10 7711,http://www.passportsservice.com,10 7712,http://devongtrf.activeboard.com,10 7713,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingdecisionsforsomeoneelse/DG_186479,10 7714,http://www.careers.ox.ac.uk,10 7715,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011628,10 7716,http://www.drivelearnachieve.com,10 7717,http://www.johnsdriving.co.uk,10 7718,http://us.mg201.mail.yahoo.com,10 7719,http://www.circle.org.uk,10 7720,http://gathering.tweakers.net,10 7721,http://images.search.yahoo.com,10 7722,http://www.sheilaswheels.com,10 7723,http://www.willow-park.co.uk,10 7724,http://www.londonnet.com,10 7725,http://www.lrsoc.com,10 7726,http://www.finemb.org.uk,9 7727,http://www.gutefrage.net,9 7728,http://www.gtsalvage.com,9 7729,http://www.fleetnews.co.uk,9 7730,http://www.flyertalk.com,9 7731,http://www.flyingfishonline.com,9 7732,http://www.fmisltd.co.uk,9 7733,http://www.fmotl.com,9 7734,http://www.fnf.org.uk,9 7735,http://www.forum.hull.pl,9 7736,http://www.forumkierowcow.pl,9 7737,http://www.fraudwatchers.org,9 7738,http://www.greenchoices.org,9 7739,http://www.fungals.co.uk,9 7740,http://www.ga.newcastle.sch.uk,9 7741,http://www.gr8training.co.uk,9 7742,http://www.goskyride.com,9 7743,http://www.genealogistsforum.co.uk,9 7744,http://www.geocities.jp,9 7745,http://www.google.co.ao,9 7746,http://www.google.bj,9 7747,http://boardroom.wscc.co.uk,9 7748,http://www.golfgtiforum.co.uk,9 7749,http://www.goldenline.pl,9 7750,http://www.wphomes.org.uk,9 7751,http://www.workingwithdyslexia.com,9 7752,http://btgroupcf.intra.bt.com,9 7753,http://04uk.com,9 7754,http://c4owners.org,9 7755,http://www.woltsmotorcycletraining.co.uk,9 7756,http://www.wolfson.cam.ac.uk,9 7757,http://www.wolfreton.co.uk,9 7758,http://camweb.ccc.cambridgeshire.gov.uk,9 7759,http://www.wincred.org,9 7760,http://www.wimbledoncollege.org.uk,9 7761,http://cheshirewestandchester.gov.uk,9 7762,http://www.whtimes.co.uk,9 7763,http://210277.homepagemodules.de,9 7764,http://community.eu.playstation.com,9 7765,http://consumer.bbg.co.uk,9 7766,http://contentcache,9 7767,http://www.wfcforums.com,9 7768,http://www.weston.ac.uk,9 7769,http://www.westkentwatch.com,9 7770,http://www.westhertsmagistrates.org.uk,9 7771,http://cyclinginfo.co.uk,9 7772,http://cyprus.angloinfo.com,9 7773,http://de.mg40.mail.yahoo.com,9 7774,http://derbynet,9 7775,http://dir.yahoo.com,9 7776,http://directguv.com,9 7777,http://www.welcometowestmidlands.org.uk,9 7778,http://www.weightlosstips.co.uk,9 7779,http://www.weeklygripe.co.uk,9 7780,http://www.webuyanyvan.com,9 7781,http://drivinglessonsnottinghamelevate.com,9 7782,http://dvlatheorytest.weebly.com,9 7783,http://www.water.org.uk,9 7784,http://echo-lve-case,9 7785,http://econsultancy.com,9 7786,http://email07.europe.secureserver.net,9 7787,http://46.137.43.125,9 7788,http://www.wakefield.ac.uk,9 7789,http://51.71.34.238,9 7790,http://eportfolio.wlv.ac.uk,9 7791,http://errorpage.comcast.net,9 7792,http://www.vxronline.co.uk,9 7793,http://www.vrdriving-school.co.uk,9 7794,http://www.voyagecare.com,9 7795,http://www.vote-2007.co.uk,9 7796,http://eumunka.lap.hu,9 7797,http://www.volunteercentrenewcastle.org.uk,9 7798,http://www.volresource.org.uk,9 7799,http://external,9 7800,http://63.223.106.16,9 7801,http://www.viajesescocia.es,9 7802,http://forum.bcttt.com,9 7803,http://www.valleybikeschool.co.uk,9 7804,http://forum.ee,9 7805,http://forum.expatclic.com,9 7806,http://forum.shoppingtelly.com,9 7807,http://forum.vw-passat.pl,9 7808,http://forums.bluemoon-mcfc.co.uk,9 7809,http://74.6.238.254,9 7810,http://www.unsustainablefuture.com,9 7811,http://forumslv.ucoz.lv,9 7812,http://82.219.211.200,9 7813,http://fundraisingskills.co.uk,9 7814,http://www.ulster.ac.uk,9 7815,http://glasgow.sae.edu,9 7816,http://www.uklgig.org.uk,9 7817,http://www.ukhairdressers.com,9 7818,http://www.ukadi.co.uk,9 7819,http://hayesbrookschool.easysearch.org.uk,9 7820,http://heatingcentral.com,9 7821,http://help.virginmedia.com,9 7822,http://aa.mc1620.mail.yahoo.com,9 7823,http://hestiasrv5,9 7824,http://www.ucfb.com,9 7825,http://www.ucea.ac.uk,9 7826,http://aa.mg6.mail.yahoo.com,9 7827,http://home.arcor.de,9 7828,http://10.113.3.104,9 7829,http://www.twgsb.org.uk,9 7830,http://hrweb.apple.com,9 7831,http://ht.ly,9 7832,http://ib-intranet,9 7833,http://ilearn.sussexdowns.ac.uk,9 7834,http://in.mc947.mail.yahoo.com,9 7835,http://www.traveldoctor.co.uk,9 7836,http://yourhmoexpert.com,9 7837,http://www.trackcompare.co.uk,9 7838,http://intranet-lo,9 7839,http://intranet.brunel.ac.uk,9 7840,http://achavering.easysearch.org.uk,9 7841,http://irc.lv,9 7842,http://islsx3db01:7777,9 7843,http://www.topicbox.net,9 7844,http://jac.judiciary.gov.uk,9 7845,http://jobcentreplusadvisor.co.uk,9 7846,http://active.keyroutes.org.uk,9 7847,http://jobs.gbguide.com,9 7848,http://young.hillingdon.gov.uk,9 7849,http://joomla.sbc.ac.uk,9 7850,http://www.tigertours.co.uk,9 7851,http://kingofpowerflushing.com,9 7852,http://knol.google.com,9 7853,http://kubotantraining.co.uk,9 7854,http://lancashire.theorytestpro.co.uk,9 7855,http://lbbd.theorytestpro.co.uk,9 7856,http://www.thhs.org.uk,9 7857,http://www.thetravelmagazine.net,9 7858,http://adf.creativemessage.com,9 7859,http://www.thepensionservice.gov.uk.,9 7860,http://www.thepass.org,9 7861,http://london.mae.ro,9 7862,http://londra.mae.ro,9 7863,http://www.theiop.org,9 7864,http://www.thedx.co.uk,9 7865,http://www.thecrownsite.com,9 7866,http://www.thecalmzone.net,9 7867,http://www.theboltonnews.co.uk,9 7868,http://moodle.bath.ac.uk,9 7869,http://moodle.citylit.ac.uk,9 7870,http://www.tewkesbury.gov.uk,9 7871,http://moodle.kingston-college.ac.uk,9 7872,http://www.tescomagazine.com,9 7873,http://moodle.student.cnwl.ac.uk,9 7874,http://moodle2.newman.ac.uk,9 7875,http://mortgagehelp.direct.gov.uk/i-have-missed-mortgage-payments.aspx,9 7876,http://www.tazdrivingschool.co.uk,9 7877,http://www.tayyareci.com,9 7878,http://www.tauntonnailtraining.co.uk,9 7879,http://www.task-int.com,9 7880,http://mymamy.co.uk,9 7881,http://www.tandemfinance.org.uk,9 7882,http://myway.trafford.gov.uk,9 7883,http://najmama.aktuality.sk,9 7884,http://nationalarchives.web.local,9 7885,http://www.talentrecruit.co.uk,9 7886,http://newcastle.theorytestpro.co.uk,9 7887,http://www.syob.co.uk,9 7888,http://nww.nhs.uk,9 7889,http://nww.suffolkch.nhs.uk,9 7890,http://one.akzonobel.intra,9 7891,http://openweb.or.kr,9 7892,http://oplanetaagradece.blogs.sapo.pt,9 7893,http://parking.kirklees.gov.uk,9 7894,http://passmedicine.com,9 7895,http://passwithval.com,9 7896,http://paulgillyoninstructoranddrivertraining.co.uk,9 7897,http://pharmacy-resources.net,9 7898,http://www.studyabroad.bg,9 7899,http://www.studera.nu,9 7900,http://polpred.com,9 7901,http://portal.u-dom1.u-ssi.net,9 7902,http://proof.ems-internet.co.uk,9 7903,http://propertytribes.ning.com,9 7904,http://www.stonewall.org.uk,9 7905,http://www.stockporthomes.org,9 7906,http://richardselavs.theorytestpro.co.uk,9 7907,http://richmond.gov.uk,9 7908,http://ru-london.livejournal.com,9 7909,http://ru.ask.com,9 7910,http://www.stephensoncoll.ac.uk,9 7911,http://allenhoole.co.uk,9 7912,http://search.gmx.com,9 7913,http://search.goo.ne.jp,9 7914,http://search.gskins.org,9 7915,http://www.startupbritain.org,9 7916,http://www.stampdutyrates.co.uk,9 7917,http://search.walla.co.il,9 7918,http://search16.info.co.uk,9 7919,http://www.st-marys.richmond.sch.uk,9 7920,http://www.sstp.org.uk,9 7921,http://www.sprawdzhistorie.pl,9 7922,http://slough.theorytestpro.co.uk,9 7923,http://www.spongate.coventry.sch.uk,9 7924,http://sockbook.referata.com,9 7925,http://spain.angloinfo.com,9 7926,http://srv-intranet,9 7927,http://ss.sgcyp.org.uk,9 7928,http://staff.sussexhis.nhs.uk,9 7929,http://www.southbrum.com,9 7930,http://www.solipass.com,9 7931,http://students.open.ac.uk,9 7932,http://suche.gmx.net,9 7933,http://svc.sandwell.ac.uk,9 7934,http://talkgadget.google.com,9 7935,http://www.smallheathalliance.com,9 7936,http://thesite.org,9 7937,http://www.slainsschoolofmotoring.co.uk,9 7938,http://thinkdrivingschool-px.rtrk.co.uk,9 7939,http://thomasclarkson.cambs.sch.uk,9 7940,http://tieba.baidu.com,9 7941,http://tosl-s05,9 7942,http://tracieadi.theorytestpro.co.uk,9 7943,http://www.sips-pensions.co.uk,9 7944,http://uk.mc1138.mail.yahoo.com,9 7945,http://uk.mc255.mail.yahoo.com,9 7946,http://uk.mc256.mail.yahoo.com,9 7947,http://uk.mc269.mail.yahoo.com,9 7948,http://uk.mc273.mail.yahoo.com,9 7949,http://aolbroadband.welcomescreen.aol.co.uk,9 7950,http://ukdata.com,9 7951,http://unistats.direct.gov.uk/topJobs.do,9 7952,http://us.mc1603.mail.yahoo.com,9 7953,http://us.mc1605.mail.yahoo.com,9 7954,http://us.mc1607.mail.yahoo.com,9 7955,http://us.mc1612.mail.yahoo.com,9 7956,http://us.mc394.mail.yahoo.com,9 7957,http://us.mc653.mail.yahoo.com,9 7958,http://usgovernmentbenefits.org,9 7959,http://vintranet,9 7960,http://vision2learnforschools.com,9 7961,http://vk.nlambassade.org,9 7962,http://www.sclerodermasociety.co.uk,9 7963,http://vle.redbridge-college.ac.uk,9 7964,http://warwickshire.theorytestpro.co.uk,9 7965,http://web,9 7966,http://web.anglia.ac.uk,9 7967,http://web.mirror.co.uk,9 7968,http://www.sbcs.edu.tt,9 7969,http://webmail02.lancs.ac.uk,9 7970,http://websearch.rakuten.co.jp,9 7971,http://westminster.ac.uk,9 7972,http://wiadomosci.onet.pl,9 7973,http://wiki.answers.com,9 7974,http://wokingham.gov.uk,9 7975,http://www.1st-car.co.uk,9 7976,http://www.1waydrivingschool.co.uk,9 7977,http://www.s-oman.net,9 7978,http://www.russianwomanjournal.com,9 7979,http://www.abacuscare.com,9 7980,http://www.ablemotorcompany.com,9 7981,http://www.access-your-future.com,9 7982,http://www.accommodation.salford.ac.uk,9 7983,http://www.rossendale.gov.uk,9 7984,http://www2.walsall.gov.uk,9 7985,http://www.adjudicatorsoffice.gov.uk,9 7986,http://www.advantageschoolofmotoring.com,9 7987,http://www.advoco.es,9 7988,http://www.allanstevenson.com,9 7989,http://www.riverdeepmountainhigh.co.uk,9 7990,http://www.anglickysen.cz,9 7991,http://www.ridertraining.biz,9 7992,http://www.anglobalticnews.co.uk,9 7993,http://www.answerbag.com,9 7994,http://www.ribblevalleyhgv.com,9 7995,http://www.arboleas.co.uk,9 7996,http://www.arcalarms.co.uk,9 7997,http://www.ardentdrivingschool.com,9 7998,http://www.renaultforums.co.uk,9 7999,http://www.associatedcontent.com,9 8000,http://www.reference.com,9 8001,http://www.redundancyforum.co.uk,9 8002,http://www.bailii.org,9 8003,http://www.bda.org,9 8004,http://www.radeducation.org.uk,9 8005,http://www.behindthegray.net,9 8006,http://www.quailsdrive.com,9 8007,http://www.qe2fields.com,9 8008,http://www.bikesense.co.uk,9 8009,http://www.bild.org.uk,9 8010,http://www.prudentminds.com,9 8011,http://www.bl.uk,9 8012,http://www.propertysurveying.co.uk,9 8013,http://www.blackpooldrivingcourses.co.uk,9 8014,http://www.promotion-driving.co.uk,9 8015,http://www.blueskymotoramc.com,9 8016,http://www.bmis.org.uk,9 8017,http://www.bordersdrivingschool.co.uk,9 8018,http://www.bournemouthandpoole.nhs.uk,9 8019,http://www.bracknellcab.org.uk,9 8020,http://www.bradbysdrivingschool.co.uk,9 8021,http://www.brainhe.com,9 8022,http://www.bravofly.co.uk,9 8023,http://www.breakthrough-uk.co.uk,9 8024,http://www.brheating.com,9 8025,http://archiver.rootsweb.ancestry.com,9 8026,http://www.britsdrivingschool.co.uk,9 8027,http://www.bsabantamclub.com,9 8028,http://www.burbuja.info,9 8029,http://www.businessandpatents.org,9 8030,http://10.245.193.5:15871,9 8031,http://www.cab.org.je,9 8032,http://arturass.co.uk.yolasite.com,9 8033,http://www.callpreventionregistry.co.uk,9 8034,http://www.phones4u.co.uk,9 8035,http://www.candoo.com,9 8036,http://www.car-emissions.com,9 8037,http://www.carbonrationing.org.uk,9 8038,http://www.careandrepairscotland.co.uk,9 8039,http://www.careertool.co.uk,9 8040,http://www.caretobedifferent.co.uk,9 8041,http://www.pernicious-anaemia-society.org,9 8042,http://www.carrefoursicilia.it,9 8043,http://www.ccc.cambridgeshire.gov.uk,9 8044,http://www.pennine-gp-training.co.uk,9 8045,http://www.centralbeds.ac.uk,9 8046,http://www.ceptraining.co.uk,9 8047,http://www.cftrust.org.uk,9 8048,http://www.paydayloans.org.uk,9 8049,http://www.childline.org.uk,9 8050,http://www.passyourbiketest.co.uk,9 8051,http://www.passwiththedale.co.uk,9 8052,http://www.christs.cam.ac.uk,9 8053,http://www.ciat.org.uk,9 8054,http://www.pass-driving-school.co.uk,9 8055,http://www.clickdriving.net,9 8056,http://www.cmft.nhs.uk,9 8057,http://www.parentchannel.tv,9 8058,http://www.owletthall.com,9 8059,http://www.connexionssandwell.co.uk,9 8060,http://www.outandaboutlive.co.uk,9 8061,http://www.costaschoolfordriving.co.uk,9 8062,http://www.options4me.co.uk,9 8063,http://www.cruise.co.uk,9 8064,http://www.online-consumer-information-services.co.uk,9 8065,http://www.onewaydrivingschoolltd.co.uk,9 8066,http://www.ocdaction.org.uk,9 8067,http://www.dennismac.co.uk,9 8068,http://www.nuneatonandbedworth.gov.uk,9 8069,http://www.didu.co.uk,9 8070,http://www.nottsdrivingschool.com,9 8071,http://www.diplomainfo.org.uk,9 8072,http://www.direct.gov.uk/cy/CaringForSomeone/CaringForADisabledChild/DG_10027494CY,9 8073,http://www.direct.gov.uk/cy/HomeAndCommunity/Planning/PlanningPermission/index.htm,9 8074,http://www.northants4x4forum.com,9 8075,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingMoney/FinancialProblemsAndComplaints/DG_10035505CY,9 8076,http://www.nomorepanic.co.uk,9 8077,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/workoutincomeandworkinghours/DG_172658CY,9 8078,http://www.nipperssom.com,9 8079,http://www.direct.gov.uk/en/CaringForSomeone/MoneyMatters/DG_10012547,9 8080,http://www.newforestnpa.gov.uk,9 8081,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/CrimePrevention/DG_181656,9 8082,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Goingtocourt/DG_070444,9 8083,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Appealingagainstasentenceorconviction/index.htm,9 8084,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Typesofcrime/DG_181578,9 8085,http://www.needlicence.com,9 8086,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017826,9 8087,http://www.natives.co.uk,9 8088,http://10.8.140.33,9 8089,http://www.nasma.org.uk,9 8090,http://www.mywelshpool.co.uk,9 8091,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/LookingForWork/DG_4000224,9 8092,http://www.myspace.com,9 8093,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/YourEmploymentRights/DG_4001073,9 8094,http://www.myjobsearch.com,9 8095,http://www.myfamily.com,9 8096,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/YourHome/DG_10039672,9 8097,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/PublicAndCommunityTransport/index.htm,9 8098,http://www.direct.gov.uk/en/DisabledPeople/RightsAndObligations/DisabilityRights/DG_10023457,9 8099,http://www.direct.gov.uk/en/DisabledPeople/TravelHolidaysAndBreaks/index.htm,9 8100,http://www.direct.gov.uk/en/DisabledPeople/TravelHolidaysAndBreaks/PlanningATrip/DG_4017244,9 8101,http://www.direct.gov.uk/en/Dl1/Directories/DG_078628,9 8102,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011240,9 8103,http://www.moveme.com,9 8104,http://www.mouseability.co.uk,9 8105,http://www.motorhomeparking.co.uk,9 8106,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011679,9 8107,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011696,9 8108,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011700,9 8109,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011712,9 8110,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011713,9 8111,http://www.moraydrivingschool.co.uk,9 8112,http://www.montessori.org.uk,9 8113,http://www.moneyweek.com,9 8114,http://www.moneybasics.co.uk,9 8115,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EducationAndLearningContacts/DG_10013674,9 8116,http://www.mohaonline.hu,9 8117,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/Governmentcitizensandrightscontacts/index.htm,9 8118,http://www.modellingagencies.net,9 8119,http://www.mobileread.com,9 8120,http://www.direct.gov.uk/en/EducationAndLearning/14To19/OptionsAt16/DG_066260,9 8121,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/FinancialHelpForAdultLearners/DG_172018,9 8122,http://www.mindfulmum.co.uk,9 8123,http://www.millfielddrivingschool.co.uk,9 8124,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ApplyingForAHigherEducationCourse/DG_10013213,9 8125,http://www.midwiferyonline.co.uk,9 8126,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/WhyGoToUniversityOrCollege/index.htm,9 8127,http://www.direct.gov.uk/en/Employment/Employees/Pay/DG_10037277,9 8128,http://www.medsci.ox.ac.uk,9 8129,http://www.medipathways.com,9 8130,http://www.medicalcareers.nhs.uk,9 8131,http://www.mediacomtoday.com,9 8132,http://www.mcs-www.co.uk,9 8133,http://www.mcnics.co.uk,9 8134,http://www.mbmotorcycletraining.co.uk,9 8135,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/DG_10026691,9 8136,http://www.mathscareers.org.uk,9 8137,http://www.martinsom.co.uk,9 8138,http://www.martins-driving-academy.com,9 8139,http://www.direct.gov.uk/en/Employment/TradeUnions/DG_10027544,9 8140,http://www.direct.gov.uk/en/Employment/TradeUnions/Tradeunionmembership/DG_10027544,9 8141,http://www.manicstudio.com,9 8142,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Workersemployeesandselfemployment/DG_183998,9 8143,http://betterfuture.direct.gov.uk/have-not-started.html,9 8144,http://www.direct.gov.uk/en/Environmentandgreenerliving/Smallholders/DG_189309,9 8145,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Climatechange/DG_072929,9 8146,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Energy-yourconsumerrights/DG_196251,9 8147,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Energy-yourconsumerrights/DG_196256,9 8148,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/BenefitsAndMoney/DG_10029815,9 8149,http://betterfuture.direct.gov.uk/starting-out.html,9 8150,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Workingoutmoneyandpropertythroughancillaryrelief/DG_193768,9 8151,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Workingoutmoneyandpropertythroughancillaryrelief/index.htm,9 8152,http://www.ltop.co.uk,9 8153,http://www.lsmt.co.uk,9 8154,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthandadoptionrecords/Adoptionrecords/DG_175567,9 8155,http://www.lowcostholidays.com,9 8156,http://www.lowbridgedrivingschool.co.uk,9 8157,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Devolvedgovernment/index.htm,9 8158,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Politicalpartiesandelections/DG_073243,9 8159,http://www.lonoco.ac.uk,9 8160,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_186983,9 8161,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Leaseholdproperties/DG_193049,9 8162,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Leaseholdproperties/DG_193057,9 8163,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Councilhousing/DG_188570,9 8164,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Housingassociationhomes/DG_188392,9 8165,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/AnimalsAndPets/Dogs/DG_175858,9 8166,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/AnimalsAndPets/Dogs/DG_180098,9 8167,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Escapingandrecoveringfromafire/index.htm,9 8168,http://www.linkmotorcycletraining.com,9 8169,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/Streetcleaninglitterandillegaldumping/index.htm,9 8170,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BenefitFraud/DG_10035827,9 8171,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Caringforsomeone/DG_10018691,9 8172,http://bisintranet,9 8173,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10018902,9 8174,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10023092,9 8175,http://www.letchworthschoolofmotoring.co.uk,9 8176,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_172032,9 8177,http://www.leicestershospitals.nhs.uk,9 8178,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018935,9 8179,http://www.legalplates.eu,9 8180,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ChildBenefitandwhoqualifies/DG_173523,9 8181,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/ChildTrustFund/SettingupaChildTrustFundaccount/DG_194923,9 8182,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Bankruptcy/DG_187527,9 8183,http://www.learningandteaching.info,9 8184,http://www.learner-rider.co.uk,9 8185,http://www.learn-esm.co.uk,9 8186,http://www.lbc.co.uk,9 8187,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/InheritanceTaxwhenpassingonmoneyorproperty/DG_179336,9 8188,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnBenefitsPensionsAndMaintenance/DG_172127,9 8189,http://www.kvasir.no,9 8190,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnSavingsAndInvestments/DG_10026699,9 8191,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/WorkingAndPayingTax/DG_10026509,9 8192,http://www.knowyourcandidate.co.uk,9 8193,http://www.kingdomsecurity.co.uk,9 8194,http://www.direct.gov.uk/en/Motoring/DriverLicensing/WhatCanYouDriveAndYourObligations/DG_10013072,9 8195,http://www.direct.gov.uk/en/Motoring/DriverLicensing/WhatCanYouDriveAndYourObligations/DG_4022708,9 8196,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/DG_186133,9 8197,http://www.keiths.co.uk,9 8198,http://www.keighleyschoolofmotoring.co.uk,9 8199,http://www.kastu.lt,9 8200,http://114search.114so.cn,9 8201,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyC/DG_10035602,9 8202,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_069677,9 8203,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/Motorinsurance/DG_067624,9 8204,http://www.yas.nhs.uk,9 8205,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/TaxationClasses/DG_10014695,9 8206,http://www.journallive.co.uk,9 8207,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_191868,9 8208,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_199636,9 8209,http://www.direct.gov.uk/en/Parents/Childcare/DG_181084,9 8210,http://www.jesus.cam.ac.uk,9 8211,http://www.jeepclub.co.uk,9 8212,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/HelpingYourChildToLearn/DG_4016596,9 8213,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SpecialEducationalNeeds/DG_4000872,9 8214,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Benefits/BenefitsInRetirement/DG_10027105,9 8215,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Benefits/index.htm,9 8216,http://www.its4students.co.uk,9 8217,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PlanningForRetirement/DG_10027104,9 8218,http://www.ironmill.co.uk,9 8219,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/StatePensionforecast/DG_194913,9 8220,http://www.inworksupport.org.uk,9 8221,http://www.direct.gov.uk/en/Pensionsandretirementplanning/TravelAndLeisure/TravellingAtHomeAndAbroad/DG_10026844,9 8222,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Working/index.htm,9 8223,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/BeforeYouTravel/DG_4019496,9 8224,http://www.interski.co.uk,9 8225,http://www.internationaleducationmedia.com,9 8226,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069854,9 8227,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070332,9 8228,http://www.xlr8-drivingschool.co.uk,9 8229,http://www.infolinia.org,9 8230,http://www.infed.org,9 8231,http://www.direct.gov.uk/en/TravelAndTransport/PublicTransport/BusAndCoachTravel/index.htm,9 8232,http://www.indiamike.com,9 8233,http://www.direct.gov.uk/en/TravelAndTransport/roadsafetyadvice/DG_178867,9 8234,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Keepingtrafficmoving/DG_184978,9 8235,http://www.in2gear.co.uk,9 8236,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/Healthcare/DG_10031481,9 8237,http://www.iihsupport.org,9 8238,http://www.idhgroup.co.uk,9 8239,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_198632.pdf,9 8240,http://www.direct.gov.uk/prod_consum_dg/groups/ta/@dg/documents/digitalasset/dg_179448.js,9 8241,http://blackboard.ncl-coll.ac.uk,9 8242,http://www.directguv.com,9 8243,http://www.disabilitynottinghamshire.org.uk,9 8244,http://www.discoverireland.com,9 8245,http://www.hymer-hire.co.uk,9 8246,http://www.diy.com,9 8247,http://www.dorsetfire.co.uk,9 8248,http://www.drive-l.co.uk,9 8249,http://www.hpicheck.com,9 8250,http://www.driveiq.co.uk,9 8251,http://www.howarthsfunerals.co.uk,9 8252,http://www.drivewell.info,9 8253,http://www.driving-school-beckenham.co.uk,9 8254,http://www.horizonone.co.uk,9 8255,http://www.hometutorsdirectory.co.uk,9 8256,http://blog.eduzones.com,9 8257,http://www.homeheatingguide.co.uk,9 8258,http://www.dsfire.gov.uk,9 8259,http://www.wyedrive.co.uk,9 8260,http://www.dvh.nhs.uk,9 8261,http://www.dysc.co.uk,9 8262,http://www.hmcourts-service.info,9 8263,http://www.eastridingcollege.ac.uk,9 8264,http://www.historic-scotland.gov.uk,9 8265,http://www.ecc7days.co.uk,9 8266,http://www.ecdrivingschool.co.uk,9 8267,http://www.echo-news.co.uk,9 8268,http://www.hgvlgvtraining.co.uk,9 8269,http://www.electriciansforums.co.uk,9 8270,http://www.hero.ac.uk,9 8271,http://blog.yahoo.com,9 8272,http://www.employability.uea.ac.uk,9 8273,http://www.wshgroup.co.uk,9 8274,http://www.hda.org.uk,9 8275,http://www.hazelvine.com,9 8276,http://www.etudionsaletranger.fr,9 8277,http://www.exceldrivertraining.net,9 8278,http://adult.cardiomyopathy.org,8 8279,http://elearn.uclan.ac.uk,8 8280,http://www.diamond-jubilee-pageant.com,8 8281,http://www.cl.cam.ac.uk,8 8282,http://www.manodrabuziai.lt,8 8283,http://elearning.citizensadvice.org.uk,8 8284,http://www.wallaceschool.co.uk,8 8285,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/Introductiontofinancialsupport/DG_174941,8 8286,http://www.disabilityinformationsupport.co.uk,8 8287,http://www.preston.ac.uk,8 8288,http://www.su.rhul.ac.uk,8 8289,http://www.dialbasildon.co.uk,8 8290,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011672,8 8291,http://www.worldlii.org,8 8292,http://www.su.nottingham.ac.uk,8 8293,http://ems.essexcc.gov.uk,8 8294,http://www.direct.gov.uk/en/Parents/Lookingafterchildrenifyoudivorceorseparate/Childrendivorceseparationandcourts/index.htm,8 8295,http://www.connexions-bolton.com,8 8296,http://www.prideofthefleet.org.uk,8 8297,http://www.freewaydriving.co.uk,8 8298,http://uk.mc1323.mail.yahoo.com,8 8299,http://www.primebusinessclub.com,8 8300,http://bsguk.org,8 8301,http://www.staffsunion.com,8 8302,http://www.studynet1.herts.ac.uk,8 8303,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_198615,8 8304,http://www.newboiler.co.uk,8 8305,http://www.thecareerbreaksite.com,8 8306,http://www.esf-online.org,8 8307,http://www.wrap.org.uk,8 8308,http://search.kol.com,8 8309,http://cfe.custhelp.com,8 8310,http://medipathways.com,8 8311,http://62.254.5.83,8 8312,http://www.bobasy.co.uk,8 8313,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017963,8 8314,http://www.studenthousing.lon.ac.uk,8 8315,http://talkaboutknives.direct.gov.uk/index.html,8 8316,http://ukinlatvia.fco.gov.uk,8 8317,http://www.direct.gov.uk/ukgwacnf.html,8 8318,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018040,8 8319,http://www.stcatz.ox.ac.uk,8 8320,http://bpp.blackboard.com,8 8321,http://exchangegroup.wordpress.com,8 8322,http://www.dfpni.gov.uk,8 8323,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MotoringContacts/DG_190748,8 8324,http://ltodrive.com,8 8325,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@over50/documents/digitalasset/dg_180224.pdf,8 8326,http://www.kingston-college.ac.uk,8 8327,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/OtherBenefitsAndSupport/DG_4019444,8 8328,http://www.healthandsafetytips.co.uk,8 8329,http://faqs.ne-derbyshire.gov.uk,8 8330,http://search.autocompletepro.com,8 8331,http://www.wmvle.wmids.nhs.uk,8 8332,http://www.henleycol.ac.uk,8 8333,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnBenefitsPensionsAndMaintenance/index.htm,8 8334,http://www.icmacentre.ac.uk,8 8335,http://www.viviredimburgo.com,8 8336,http://www.direct.gov.uk/en/Environmentandgreenerliving/Wasteandrecycling/DG_064365,8 8337,http://talismacustomer,8 8338,http://www.direct.gov.uk/en/Environmentandgreenerliving/Wasteandrecycling/DG_10014614,8 8339,http://www.direct.gov.uk/en/Motoring/DriverLicensing/EndorsementsAndDisqualifications/DG_4022520,8 8340,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/ChangesToYourRegistrationCertificate/DG_4022056,8 8341,http://search.aol.ie,8 8342,http://ymlp.com,8 8343,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/PlanningYourPersonalFinances/DG_10013642,8 8344,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@caring/documents/digitalasset/dg_176209.pdf,8 8345,http://74.125.127.100,8 8346,http://www.government-online.net,8 8347,http://www.virgin.com,8 8348,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_194922,8 8349,http://www.bioa.org.uk,8 8350,http://www.direct.gov.uk/notify-SplashPageUK,8 8351,http://www.fmauk.org,8 8352,http://portal.leeds-art.ac.uk,8 8353,http://suzukivanvan.forumandco.com,8 8354,http://messageboard.nannyjob.co.uk,8 8355,http://campaigns2.direct.gov.uk/money4mum2be/en/index.html,8 8356,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/Fostering/DG_10027537,8 8357,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011398,8 8358,http://www.publications.parliament.uk,8 8359,http://www.snc.ac.uk,8 8360,http://www.devonshire-inf.ik.org,8 8361,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Howtocomplainaboutgoodsandservices/DG_196229,8 8362,http://www.publictechnology.net,8 8363,http://www.gbbikers.co.uk,8 8364,http://mh-sp2,8 8365,http://www.deswatts.co.uk,8 8366,http://www.deskdemon.com,8 8367,http://forum.4tuning.ro,8 8368,http://www.venturenavigator.co.uk,8 8369,http://www.passmastermal.com,8 8370,http://schoolsfinder.direct.gov.uk/about-school-profile/,8 8371,http://www.bigambition.co.uk,8 8372,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/Over50sContacts/DG_10019272,8 8373,http://www.bhs.org.uk,8 8374,http://www.bhnursery.co.uk,8 8375,http://www.magistrates-association-temp.org.uk,8 8376,http://www.q4apartments.co.uk,8 8377,http://www.vanguardsw.com,8 8378,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011122,8 8379,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/Fostering/DG_10027536,8 8380,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/Yourvehicleandlicence/DG_4016279,8 8381,http://praca.gazetaprawna.pl,8 8382,http://www.qpcs.brent.sch.uk,8 8383,http://www.betterathome.co.uk,8 8384,http://146.185.250.135,8 8385,http://www.freelanceteam.co.uk,8 8386,http://forum.difflock.com,8 8387,http://www.bertok.com,8 8388,http://www.bernadotteskolen.dk,8 8389,http://www.nulc.ac.uk,8 8390,http://my.yahoo.com,8 8391,http://www.seagulls.co.uk,8 8392,http://www.streetdrive.co.uk,8 8393,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Gettingyourfirstjob/DG_066152,8 8394,http://public.merlin.swgfl.org.uk,8 8395,http://mycourses.mycandi.ac.uk,8 8396,http://www.freelanceschoolofmotoring.co.uk,8 8397,http://www.communitylawservice.org.uk,8 8398,http://myhackney.hackney.gov.uk,8 8399,http://www.stgilesschool.net,8 8400,http://www.learnwithlee.co.uk,8 8401,http://www2.i-grasp.com,8 8402,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/WhatToDoAfterADeath/DG_10029476,8 8403,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/DG_073803,8 8404,http://suche.aol.de,8 8405,http://mywwesearch.swagbucks.com,8 8406,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/Over50sContacts/index.htm,8 8407,http://mintameside.org.uk,8 8408,http://www.uxbridge.ac.uk,8 8409,http://www.direct.gov.uk/cy/Parents/CrimeAndYoungOffenders/DG_4003033CY,8 8410,http://forum.index.hu,8 8411,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Annullingamarriage/DG_193751,8 8412,http://forum.o2.co.uk,8 8413,http://194.80.87.130:8080,8 8414,http://www.raf-ff.org.uk,8 8415,http://www.bayerdiabetes.co.uk,8 8416,http://www.hadleigh-jun.essex.sch.uk,8 8417,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/WorkingAndPayingTax/DG_10027015,8 8418,http://www.bawnmoreinfantschool.co.uk,8 8419,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/KeepingHealthy/index.htm,8 8420,http://www.users.globalnet.co.uk,8 8421,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/WorkingAndPayingTax/DG_185198,8 8422,http://www.upyourskills.com,8 8423,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011677,8 8424,http://z7.invisionfree.com,8 8425,http://rabotatam.ru,8 8426,http://www.rampantscotland.com,8 8427,http://forums.macrumors.com,8 8428,http://www.wiltshire.police.uk,8 8429,http://www.motorhomeplanet.co.uk,8 8430,http://www.jimcolvindrivingtuition.co.uk,8 8431,http://rollestonpreschool.easysearch.org.uk,8 8432,http://studia-pr-londyn.blogspot.com,8 8433,http://www.barrybennett.co.uk,8 8434,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Ifyoureendingamarriageorcivilpartnership/DG_193754,8 8435,http://www.barnsleylinks.co.uk,8 8436,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/RegisteringAVehicle/DG_4022312,8 8437,http://www.heritage-motor-centre.co.uk,8 8438,http://www.socrates.cz,8 8439,http://forums.mxtrax.co.uk,8 8440,http://www.stourbridge.ac.uk,8 8441,http://www.lehrmittelverlag-zuerich.ch,8 8442,http://www.environment.leeds.ac.uk,8 8443,http://www.stm.banford.eu,8 8444,http://www.direct.gov.uk/en/CaringForSomeone/MoneyMatters/DG_10012529,8 8445,http://raoc.websitetoolbox.com,8 8446,http://www.direct.gov.uk/en/diol1/doitonline/dg_4017686,8 8447,http://richards.theorytestpro.co.uk,8 8448,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011666,8 8449,http://www.barbicanmums.com,8 8450,http://www.mgdc.de,8 8451,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/ChildTrustFund/SettingupaChildTrustFundaccount/index.htm,8 8452,http://www.direct.gov.uk/en/Governmentcitizensandrights/GettingLegalAdvice/Legalaidincriminalcases/index.htm,8 8453,http://www.banditforum.co.uk,8 8454,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Goingtoprison/DG_196222,8 8455,http://www.direct.gov.uk/en/Video/Employmentandbenefits/index.htm,8 8456,http://tugaemlondres.blogs.sapo.pt,8 8457,http://www.direct.gov.uk/en/Governmentcitizensandrights/LivingintheUK/DG_10012517,8 8458,http://cheney6thform.blogspot.com,8 8459,http://146.185.250.144,8 8460,http://www.direct.gov.uk/en/Governmentcitizensandrights/LivingintheUK/DG_183843,8 8461,http://www.unionlearn.org.uk,8 8462,http://www.unileverpensions.co.uk,8 8463,http://trip.ee,8 8464,http://www.badmintonengland.co.uk,8 8465,http://www.direct.gov.uk/en/Video/DG_WP194510,8 8466,http://www.backoncourse.ac.uk,8 8467,http://www.williamsclio.co.uk,8 8468,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/HowtheCourtFundsOfficemanagesyourmoney/index.htm,8 8469,http://www.theatreroyalnorwich.co.uk,8 8470,http://www.improvementservice.org.uk,8 8471,http://www.readysteadybaby.org.uk,8 8472,http://studentadvice2.drupalgardens.com,8 8473,http://www.uncommon-knowledge.co.uk,8 8474,http://fsd.merton.gov.uk,8 8475,http://www.yourbiketest.com,8 8476,http://www.chorleystmarys.lancs.sch.uk,8 8477,http://fullfact.org,8 8478,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011554,8 8479,http://www.recoveryourlife.com,8 8480,http://us.mc1619.mail.yahoo.com,8 8481,http://www.ourlounge.co.uk,8 8482,http://www.epupz.co.uk,8 8483,http://mle.gateway.ac.uk,8 8484,http://yamahaxjrclub.myfreeforum.org,8 8485,http://www.passwithperrys.co.uk,8 8486,http://adultsocialcare.newham.gov.uk,8 8487,http://www.homeinsurance.co.uk,8 8488,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/Caretolearn/DG_066556,8 8489,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/PublicAndCommunityTransport/DG_4002764,8 8490,http://www.ulip.lon.ac.uk,8 8491,http://www.wildingmotors.com,8 8492,http://www.yorksurvivalguide.co.uk,8 8493,http://canterbury.gov.uk,8 8494,http://www.google.tk,8 8495,http://mobile.twitter.com,8 8496,http://www.micksdrivertraining.co.uk,8 8497,http://cloud.aylesbury.ac.uk,8 8498,http://www.direct.gov.uk/en/EducationAndLearning/14to19/MoneyToLearn/Caretolearn/index.htm,8 8499,http://www.eastdorsetcab.org.uk,8 8500,http://www.infectology.ru,8 8501,http://www.homelet.co.uk,8 8502,http://www.selectschoolofmotoring.co.uk,8 8503,http://www.cheshirelieutenancy.org.uk,8 8504,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Goingtoprison/DG_196234,8 8505,http://www.cheshirebikertraining.co.uk,8 8506,http://www.homeopathycollege.org,8 8507,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Goingtoprison/DG_196235,8 8508,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/Bluebadgescheme/DG_171251,8 8509,http://moneyaande.co.uk,8 8510,http://stats.bis.gov.uk,8 8511,http://www.learnrightschoolofmotoring.co.uk,8 8512,http://googletesting.co.uk,8 8513,http://www.atbtraining.co.uk,8 8514,http://gosearchpro.com,8 8515,http://neurological.nottsinfoscript.co.uk,8 8516,http://10.4.246.192,8 8517,http://www.lowcarbon.co.uk,8 8518,http://www.forum.gs500.pl,8 8519,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018271,8 8520,http://www.astroburn-search.com,8 8521,http://www.ukimports.org,8 8522,http://www.direct.gov.uk/en/Employment/Employees/TheNationalMinimumWage/DG_175108,8 8523,http://www.asmlearners.com,8 8524,http://www.direct.gov.uk/en/Employment/Employees/TheNationalMinimumWage/DG_175112,8 8525,http://www.nlpconnections.com,8 8526,http://www.szkola-jazdy.co.uk,8 8527,http://www.kathbrown.info,8 8528,http://newsreport.truelife.com,8 8529,http://www.uki.net,8 8530,http://www.ukhi.co.uk,8 8531,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/WorkingTaxCreditthebasics/DG_172852,8 8532,http://www.ashleysschoolofmotoring.co.uk,8 8533,http://www.lawcol.com,8 8534,http://trafford.childrensservicedirectory.org.uk,8 8535,http://www.ashfordmotcentre.com,8 8536,http://www.energyhealing.co.uk,8 8537,http://www.paypacket.org.uk,8 8538,http://www.drivingschoolshastings.com,8 8539,http://www.loucoll.ac.uk,8 8540,http://www.ukcitymedia.co.uk,8 8541,http://94.63.240.70,8 8542,http://www.hewitsonwalker.com,8 8543,http://gstounenglish.wordpress.com,8 8544,http://www.enwl.co.uk,8 8545,http://www.homeselect.org.uk,8 8546,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Sentencingandcriminalrecords/DG_187037,8 8547,http://www.south-wales.police.uk,8 8548,http://cashalerts.co.uk,8 8549,http://www.nmc-uk.org,8 8550,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_10035314,8 8551,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Over50HealthAndWellBeing/index.htm,8 8552,http://www.narposwansea.co.uk,8 8553,http://www.aroundthecorner.org.uk,8 8554,http://stackoverflow.com,8 8555,http://www.lordwilliams.oxon.sch.uk,8 8556,http://moneyaware.co.uk,8 8557,http://www.direct.gov.uk/en/Diol1/EmploymentDecisionTrees/WorkingPatterns/right_to_flexible_working.dsb,8 8558,http://www.ukbirthadoptionregister.com,8 8559,http://www.certforums.co.uk,8 8560,http://www.homestagingconsultants.co.uk,8 8561,http://www.direct.gov.uk/en/Dl1/Directories/DG_6000143,8 8562,http://www.mybulgaria.info,8 8563,http://www.centralheating.co.uk,8 8564,http://www.architecture.com,8 8565,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011389,8 8566,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2010/DG_186500,8 8567,http://www.nwl.co.uk,8 8568,http://www.eojd.eu,8 8569,http://community.giffgaff.com,8 8570,http://www.forum-auto.com,8 8571,http://www.helensangels.co.uk,8 8572,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/DebtsAndArrears/DG_10013148,8 8573,http://www.deeside.ac.uk,8 8574,http://banburynetwork.co.uk,8 8575,http://www.apsley-mots.co.uk,8 8576,http://www.drivinglessonsiw.co.uk,8 8577,http://www.southernwater.co.uk,8 8578,http://www.rhpress.org.uk,8 8579,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/DG_10013518,8 8580,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/DG_10014458,8 8581,http://www.insidetime.org,8 8582,http://www.fsoc.co.uk,8 8583,http://avow.easysearch.org.uk,8 8584,http://haycurro.com,8 8585,http://www.cdet.org.uk,8 8586,http://www.lenderscompared.org.uk,8 8587,http://www.ccua.org.uk,8 8588,http://unistats.direct.gov.uk/uniDetailsStats.do,8 8589,http://mail20.abv.bg,8 8590,http://hbcweb.halton-borough.gov.uk,8 8591,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Discrimination-yourrights/index.htm,8 8592,http://www.uk-passport-service.co.uk,8 8593,http://www.direct.gov.uk/en/Diol1/EmploymentInteractiveTools/DG_10028440,8 8594,http://www.swindonweb.com,8 8595,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Sentencingandcriminalrecords/DG_187041,8 8596,http://bham.blackboard.com,8 8597,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/AdoptionAndFostering/DG_170308,8 8598,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/CrimeStatistics/index.htm,8 8599,http://northumberland.gov.uk,8 8600,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/SpecificNeedsContacts/DG_10014898,8 8601,http://www.yourcareerguide.co.uk,8 8602,http://notify.barclays.com,8 8603,http://connexions360.org.uk,8 8604,http://www.garage111.com,8 8605,http://hfd-cab-fs01,8 8606,http://www.getconnexed.com,8 8607,http://wwwoc,8 8608,http://www.thedrivingschoolsw.co.uk,8 8609,http://www.heythrop.ac.uk,8 8610,http://www.swiftcover.com,8 8611,http://content.govdelivery.com,8 8612,http://www.direct.gov.uk/dr_consum_dg/groups/dg_general/@dg/documents/digitalasset/dg_065306.jpg,8 8613,http://www.carrsdrivingschool.co.uk,8 8614,http://www.drivinggroup.com,8 8615,http://hmrcinternet.wip.apps.inrev.gov.uk,8 8616,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011664,8 8617,http://www.anchor.org.uk,8 8618,http://www.whatnowglos.co.uk,8 8619,http://www.carolenash.com,8 8620,http://tlc.howstuffworks.com,8 8621,http://www.amtcmotorcycletraining.com,8 8622,http://www.carlisle.ac.uk,8 8623,http://www.drivewithglenn.co.uk,8 8624,http://www.nonsuch.co.uk,8 8625,http://moodle.blackpool.ac.uk,8 8626,http://nras.org.uk,8 8627,http://www.personalindependencepayment.co.uk,8 8628,http://www.joker.si,8 8629,http://www.cliosport.net,8 8630,http://craven.storm50.com,8 8631,http://www.riversidecollege.ac.uk,8 8632,http://home.uk.hsbc,8 8633,http://www.alpha-som.co.uk,8 8634,http://homepage,8 8635,http://crestschoolofmotoring.co.uk,8 8636,http://www.northloop.co.uk,8 8637,http://www.twfire.org,8 8638,http://www.drivewise-som.co.uk,8 8639,http://www.dbtc.co.uk,8 8640,http://www.equality.leeds.ac.uk,8 8641,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069858,8 8642,http://www.direct.gov.uk/en/DisabledPeople/EducationAndTraining/HigherEducation/DG_070188,8 8643,http://www.allaboutyou.com,8 8644,http://www.daynurseriessurrey.co.uk,8 8645,http://www.careercy.com,8 8646,http://www.allaboutlaw.co.uk,8 8647,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069853,8 8648,http://www.tvha.co.uk,8 8649,http://www.alfredledger.co.uk,8 8650,http://www.rncm.ac.uk,8 8651,http://moodle.bradfordcollege.ac.uk,8 8652,http://howmuchdoesitcostto.com,8 8653,http://www.alchemea.com,8 8654,http://www.alansschoolofmotoring.net,8 8655,http://hq-intranet,8 8656,http://hq95t029,8 8657,http://hww-kingsweb,8 8658,http://www.hazelsmotorschool.co.uk,8 8659,http://www.dayinthelife.org.uk,8 8660,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/peoplewhohelpothers/Getauthoritytoactforsomeoneelse/index.htm,8 8661,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011615,8 8662,http://www.thailand-uk.com,8 8663,http://www.lochneska.cz,8 8664,http://nsdc-v-cmsapp,8 8665,http://www.aircooledrdclub.org.uk,8 8666,http://www.aircooledrdclub.co.uk,8 8667,http://www.roadwise.co.uk,8 8668,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EducationAndLearningContacts/DG_10013675,8 8669,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/BeforeYouTravel/DG_175232,8 8670,http://www.direct.gov.uk/cy/DisabledPeople/HomeAndHousingOptions/index.htm,8 8671,http://us.mc1615.mail.yahoo.com,8 8672,http://www.fmforums.co.uk,8 8673,http://www.mbro.ac.uk,8 8674,http://www.direct.gov.uk/cy/DisabledPeople/HealthAndSupport/ArrangingHealthAndSocialCare/DG_4000436CY,8 8675,http://www.engtest.net,8 8676,http://www.google.com.pa,8 8677,http://www.direct.gov.uk/dr_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_4009242.jpg,8 8678,http://www.trustonline.org.uk,8 8679,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Leaseholdproperties/index.htm,8 8680,http://www.thenationalcareline.org,8 8681,http://amexcited.com.au,8 8682,http://www.rockpapershotgun.com,8 8683,http://nww.bscnw.wales.nhs.uk,8 8684,http://dcc-apps1,8 8685,http://www.mountstreet.org,8 8686,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011685,8 8687,http://www.cant-col.ac.uk,8 8688,http://www.spanglefish.com,8 8689,http://www.trurocollege.ac.uk,8 8690,http://www.westart.or.kr,8 8691,http://www.canalworld.net,8 8692,http://www.lmlocgb.co.uk,8 8693,http://www.das.co.uk,8 8694,http://www.direct.gov.uk/cy/Parents/Yourchildshealthandsafety/Yourchildssafetyinthehome/index.htm,8 8695,http://www.campus.virtual.unal.edu.co,8 8696,http://identityalarm.co.uk,8 8697,http://www.google.co.uk:80,8 8698,http://www.campus-uk.com,8 8699,http://www.investdrinks.org,8 8700,http://demo.alphagov.co.uk,8 8701,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/VictimsOfCrime/DG_4003136,8 8702,http://thisisabuse.direct.gov.uk/spot-the-signs,8 8703,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/MentalHealth/DG_10023435,8 8704,http://idsmart.direct.gov.uk/about-the-card.html,8 8705,http://nww.intranet.clch.nhs.uk,8 8706,http://www.calis.lv,8 8707,http://www.adamsandduncan.co.uk,8 8708,http://www.parkersproperties.co.uk,8 8709,http://www.middlesexstudentpad.co.uk,8 8710,http://www.trevdrive.co.uk,8 8711,http://www.egaschool.co.uk,8 8712,http://www.cabot.ac.uk,8 8713,http://www.tremoughservices.com,8 8714,http://www.monarch.es,8 8715,http://moodle.grimsby.ac.uk,8 8716,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011643,8 8717,http://www.learners.co.uk,8 8718,http://www.learners-uk.co.uk,8 8719,http://in.mc954.mail.yahoo.com,8 8720,http://www.direct.gov.uk/en/Employment/Jobseekers/programmesandservices/DG_198795,8 8721,http://moodle.llandrillo.ac.uk,8 8722,http://thesource.onesuffolk.net,8 8723,http://adi162813.theorytestpro.co.uk,8 8724,http://www.travelsecure.infrastructure.gov.au,8 8725,http://www.pingle.derbyshire.sch.uk,8 8726,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Volunteering/DG_10038388,8 8727,http://www.bwdd.co.uk,8 8728,http://www.royal-needlework.org.uk,8 8729,http://directgov.magus.co.uk,8 8730,http://www.royalmailpensionplan.co.uk,8 8731,http://oldham.laserlearning.org,8 8732,http://www.wellaware.org.uk,8 8733,http://www.royalsurrey.nhs.uk,8 8734,http://www.accountantforums.com,8 8735,http://www.crhtraining.co.uk,8 8736,http://www.transportscotland.gov.uk,8 8737,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/AnimalsAndPets/DG_10025980,8 8738,http://www.welhat-cht.org.uk,8 8739,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/AnimalsAndPets/DG_178412,8 8740,http://www.landregistry.co.uk,8 8741,http://www.sussexlearningnetwork.org.uk,8 8742,http://www.direct.gov.uk/cy/CaringForSomeone/CaringAndSupportServices/DG_10026286CY,8 8743,http://www.ipswichcab.org.uk,8 8744,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011215,8 8745,http://diversionclub.proboards.com,8 8746,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/ImprovingYourSkills/DG_10037436,8 8747,http://int.seae.r.mil.uk,8 8748,http://www.tradebikes.net,8 8749,http://www.connexionswalsall.co.uk,8 8750,http://www.direct.gov.uk/cy/AdvancedSearch/Searchresults/,8 8751,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_10026707,8 8752,http://www.fressingfield-medical-practice.co.uk,8 8753,http://www.connexionsbucks.org.uk,8 8754,http://siteman,8 8755,http://intranet.defra.gsi.gov.uk,8 8756,http://www.scottishsleepapnoea.co.uk,8 8757,http://www.mothercare.com,8 8758,http://intranet.demeter.zeus.gsi.gov.uk,8 8759,http://www.mindfulemployer.net,8 8760,http://ukpublicrecords.co.uk,8 8761,http://us.mc1258.mail.yahoo.com,8 8762,http://www.planitplus.net,8 8763,http://dl.dropbox.com,8 8764,http://www.abc-durham.co.uk,8 8765,http://www.fie.org.uk,8 8766,http://www.thed2boysclub.co.uk,8 8767,http://www.governmentinitiativesiq.com,8 8768,http://www.plasmawr.cardiff.sch.uk,8 8769,http://intranet.leedstrinity.ac.uk,8 8770,http://dns3.paran.com,8 8771,http://www.rupertsnursery.co.uk,8 8772,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Redundancy/DG_177362,8 8773,http://www.ruralfuel.co.uk,8 8774,http://www.burnside.n-tyneside.sch.uk,8 8775,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/SupportAtHome/index.htm,8 8776,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/TaxationClasses/DG_069649,8 8777,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PlanningForRetirement/DG_10014634,8 8778,http://www.da-vienna.ac.at,8 8779,http://www.burialrecords.manchester.gov.uk,8 8780,http://www.a2zridertraining.com,8 8781,http://www.a-class.co.uk,8 8782,http://www.burdens.co.uk,8 8783,http://www.pldrivingschool.co.uk,8 8784,http://www.shop-focus.com,8 8785,http://www.direct.gov.uk/en/CaringForSomeone/CarersAndEmployment/index.htm,8 8786,http://www.landcruiserclub.net,8 8787,http://www.5-stardriving.com,8 8788,http://www.seniorsworkforce.co.uk,8 8789,http://www.goldwingforum.nl,8 8790,http://www.direct.gov.uk/en/Motoring/DriverSafety/index.htm,8 8791,http://www.gloucestershire.police.uk,8 8792,http://shed.chelseafc.com,8 8793,http://www.cyndislist.com,8 8794,http://www.3g.me.uk,8 8795,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011172,8 8796,http://www.3countiesdrivingschool.net,8 8797,http://www.direct.gov.uk/cy/Parents/Moneyandworkentitlements/YourMoney/index.htm,8 8798,http://www.eng.cam.ac.uk,8 8799,http://www.builtincookers.co.uk,8 8800,http://www.direct.gov.uk/en/CaringForSomeone/CaringAndSupportServices/index.htm,8 8801,http://isisaccreditation.imrg.org,8 8802,http://www.topmarksdriving.com,8 8803,http://oxfordexclusif.co.uk,8 8804,http://www.2112biketraining.co.uk,8 8805,http://www.ops.warwickshire.sch.uk,8 8806,http://www.hsl.gov.uk,8 8807,http://www.goldenleaves.co.uk,8 8808,http://www.1ststopdriving.co.uk,8 8809,http://www.pluss.org.uk.cosmic2.webhoster.co.uk,8 8810,http://www.leidenuniv.nl,8 8811,http://www.martinhopkinsdrivertraining.co.uk,8 8812,http://www.norwich.anglican.org,8 8813,http://drivewithlisa.co.uk,8 8814,http://www.bubbletowing.co.uk,8 8815,http://www.topgearsofm.co.uk,8 8816,http://www.like2drive.co.uk,8 8817,http://www.btplc.com,8 8818,http://www.webbikeworld.com,8 8819,http://www.dorsetroughriders.co.uk,8 8820,http://www.keycaresolutions.co.uk,8 8821,http://www.cleanitup.co.uk,8 8822,http://pages.glam.ac.uk,8 8823,http://www.direct.gov.uk/en/BritonsLivingAbroad/EducationAndJobs/DG_071578,8 8824,http://www.classroomupdate.com,8 8825,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Makingacourtclaimformoney/DG_195936,8 8826,http://www.shrewsbury.ac.uk,8 8827,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011646,8 8828,http://thecartech.com,8 8829,http://www.118student.co.uk,8 8830,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/Streetcleaninglitterandillegaldumping/DG_4001703,8 8831,http://www.wearejames.com,8 8832,http://www.smallbusinesspro.co.uk,8 8833,http://www.safespeed.org.uk,8 8834,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011663,8 8835,http://www.brooksdrivingschool.co.uk,8 8836,http://www.safestartbikes.co.uk,8 8837,http://jobseekers.direct.gov.uk/SaveSearchLogin.aspx,8 8838,http://4149web01,8 8839,http://www.jaguarexcellence.com,8 8840,http://www.lifeintheukcitizenshiptest.co.uk,8 8841,http://www.ctc.org.uk,8 8842,http://br.bing.com,8 8843,http://www.bromsgrove.gov.uk,8 8844,http://wolverhampton.theorytestpro.co.uk,8 8845,http://www.gmfa.org.uk,8 8846,http://kingfisher.theorytestpro.co.uk,8 8847,http://www.lietuvauzsienyje.com,8 8848,http://www.thegrid.org.uk,8 8849,http://www.guildford-driving-instructor.co.uk,8 8850,http://www.doicamera.com,8 8851,http://dwi.defra.gov.uk,8 8852,http://moodle.th79.de,8 8853,http://www.wateraid.org,8 8854,http://www.sundaysun.co.uk,8 8855,http://wightnet2000.iow.gov.uk,8 8856,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Reportingcrimeandantisocialbehaviour/DG_181715,8 8857,http://ukinrok.fco.gov.uk,8 8858,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/UnderstandingInheritanceTax/DG_179347,8 8859,http://lamarina.aspanishlife.com,8 8860,http://www.sandhillview.com,8 8861,http://www.gobiketraining.com,8 8862,http://www.televisionlicence.info,8 8863,http://www.ecodiy.org,8 8864,http://dziecko.onet.pl,8 8865,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011427,8 8866,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/WorkSchemesAndProgrammes/index.htm,8 8867,http://server004:8080,8 8868,http://www.sandy-a.co.uk,8 8869,http://serpspension.com,8 8870,http://uk.mc265.mail.yahoo.com,8 8871,http://www.khace.com,8 8872,http://webmail.mail.163.com,8 8873,http://www.liberator31.co.uk,8 8874,http://www.eco-fusion.co.uk,8 8875,http://arcdisclosure.org.uk,8 8876,http://webmail.laposte.net,8 8877,http://www.do-it.org.uk,8 8878,http://www.porada.sk,8 8879,http://www.dvlni.gov.uk,8 8880,http://www.lib.strath.ac.uk,8 8881,http://www.eco-drive-school.co.uk,8 8882,http://blogs.elpais.com,8 8883,http://leighcottagechildcare.com,8 8884,http://lezwells.theorytestpro.co.uk,8 8885,http://www.leedscitizensinfo.org,8 8886,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Bereaved/DG_575,8 8887,http://www.direct.gov.uk/en/CaringForSomeone/MoneyMatters/DG_10038111,8 8888,http://uk.mc263.mail.yahoo.com,8 8889,http://www.lhdspecialist.com,8 8890,http://adragonsbestfriend.wordpress.com,8 8891,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/PayingreducedrateNationalInsurance/DG_190115,8 8892,http://www.mesotheliomamatters.com,8 8893,http://easytide.com,8 8894,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017475,8 8895,http://www.portsmouthcab.org.uk,8 8896,http://ecotownsyoursay.direct.gov.uk/index.html,8 8897,http://www.thestoveyard.com,8 8898,http://www.fifedriverlearningcentre.co.uk,8 8899,http://ecouncil,8 8900,http://mopeddealer.co.uk,8 8901,http://linx,8 8902,http://vrzb.web-help-service.net,8 8903,http://www.mynewtown.co.uk,8 8904,http://www.postgraduateforum.com,8 8905,http://search51.info.com,8 8906,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Respondingtoacourtclaimformoney/DG_195867,8 8907,http://www.therowan.org,8 8908,http://liverpool.sae.edu,8 8909,http://lmgtfy.com,8 8910,http://vle.glyndwr.ac.uk,8 8911,http://www.scie.org.uk,8 8912,http://www.lexisnexis.com,8 8913,http://pesquisa.clix.pt,8 8914,http://www.ebuyersucks.org,8 8915,http://www.mikethedrivinginstructor.co.uk,8 8916,http://magpieschoolofmotoring.co.uk,8 8917,http://www.breastcancercare.org.uk,8 8918,http://localhost:4444,8 8919,http://www.disqworld.net,8 8920,http://vle.bromley.ac.uk,8 8921,https://intranet.cranfield.ac.uk,8 8922,http://www.lewiscollege.co.uk,8 8923,http://www.bramhallhigh.stockport.sch.uk,8 8924,http://vlc.homelearningcollege.com,8 8925,http://vk.com,8 8926,http://www.smartlearners.co.uk,8 8927,http://edition.cnn.com,8 8928,http://education.moodle.gla.ac.uk,8 8929,http://www.essexdrive.co.uk,8 8930,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/index.htm,8 8931,http://www.open4learning.info,8 8932,http://www.formaciontrafico.es,7 8933,http://www.roundhaypark.org.uk,7 8934,http://www.eezydrive.co.uk,7 8935,http://yourmoneymatters.cch-online.org.uk,7 8936,http://www.roundthebend.info,7 8937,http://inboxtoolbars.com,7 8938,http://www.aclassinfo.co.uk,7 8939,http://www.travelsouthyorkshire.com,7 8940,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/StatePensionforecast/DG_180322,7 8941,http://info.majesticare.co.uk,7 8942,http://www.dailyinfo.co.uk,7 8943,http://www.ace-drivers.co.uk,7 8944,http://www.google.bi,7 8945,http://info.uwe.ac.uk,7 8946,http://www.travcour.com,7 8947,http://10.217.8.37,7 8948,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/AnimalsAndPets/DG_180098,7 8949,http://www.ips.gov.uk,7 8950,http://innovate-apps.direct.gov.uk/widgets/ewl/assets/index.html,7 8951,http://www.google.ad,7 8952,http://www.xmms.org,7 8953,http://www.glencor.net,7 8954,http://www.globalmediation.co.uk,7 8955,http://intranet.britishcouncil.org,7 8956,http://www.highlandsdrive.co.uk,7 8957,http://intranet.croydon.net,7 8958,http://www.gloscityhomes.co.uk,7 8959,http://www.abertay.ac.uk,7 8960,http://intranet.farleys.com,7 8961,http://www.abdt.co.uk,7 8962,http://www.nelsonslettings.com,7 8963,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011765,7 8964,http://www.motcity.co.uk,7 8965,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10015764,7 8966,http://www.literacytrust.org.uk,7 8967,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/PestAndWeedControl/DG_10026663,7 8968,http://www.abbeydaledrivingschool.co.uk,7 8969,http://www.abacuscare-norfolk-suffolk.co.uk,7 8970,http://www.aandmschoolofmotoring.com,7 8971,http://intranet.opusenergy.com,7 8972,http://intranet.slam.nhs.uk,7 8973,http://www.enduser.co.uk,7 8974,http://www.direct.gov.uk/en/Pensionsandretirementplanning/DG_183783,7 8975,http://intranetapps.telent.local,7 8976,http://www.torrevieja.co.uk,7 8977,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/TrainingAndWorkplaceLearning/DG_10033137,7 8978,http://www.ryderight.com,7 8979,http://www.400ccm.ru,7 8980,http://ircc.inrev.gov.uk,7 8981,http://www.edentraining.co.uk,7 8982,http://www.2cvbristol.co.uk,7 8983,http://www.cxstaffs.co.uk,7 8984,http://www.edenred.co.uk,7 8985,http://www.cwc.ac.uk,7 8986,http://www.sadigroup.org.uk,7 8987,http://www.direct.gov.uk/en/BritonsLivingAbroad/EducationAndJobs/DG_4014679,7 8988,http://www.1stlondondrivingacademy.com,7 8989,http://www.1stlearn.co.uk,7 8990,http://www.safe-as.co.uk,7 8991,http://www.safe.met.police.uk,7 8992,http://www.1stchoicedriving.co.uk,7 8993,http://www.topgear-drivingschool.co.uk,7 8994,http://www.omegavehiclesolutions.co.uk,7 8995,http://www.gardens-of-peace.org.uk,7 8996,http://www.1stability.co.uk,7 8997,http://www.iwilldrive-som.co.uk,7 8998,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Benefits/BenefitsBeforeRetirement/index.htm,7 8999,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/SaferStreets/index.htm,7 9000,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/WorriedAbout/DG_10015927,7 9001,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/WorriedAbout/DG_10015786,7 9002,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/WorriedAbout/DG_10015785,7 9003,http://www.tombraiderforums.com,7 9004,http://adci,7 9005,http://www.goldenlaneestate.org,7 9006,http://wranafygw.blogspot.com,7 9007,http://www.tietacs.org.uk,7 9008,http://keskustelu.suomi24.fi,7 9009,http://www.liensutiles.org,7 9010,http://wolsey.ucs.ac.uk,7 9011,http://wlv.ac.uk,7 9012,http://wlhdg.easysearch.org.uk,7 9013,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SchoolLife/DG_4016078,7 9014,http://kmbcregebooking,7 9015,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/PreparingFortheFirstDayAtSchool/index.htm,7 9016,http://l2drive.theorytestpro.co.uk,7 9017,http://www.nec.ac.uk,7 9018,http://www.go2eu.com,7 9019,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/HelpingYourChildToLearn/DG_4016579,7 9020,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011904,7 9021,http://www.thisisnottingham.co.uk,7 9022,http://lbhf.gov.uk,7 9023,http://www.hillspet.co.uk,7 9024,http://lccintranet,7 9025,http://webmail01.lancs.ac.uk,7 9026,http://www.crystaldrivingschool.co.uk,7 9027,http://ldmanwb001,7 9028,http://www.healthyworkinglives.com,7 9029,http://webmail.eastriding.gov.uk,7 9030,http://learning.digitalunite.com,7 9031,http://www.cruisewestcumbria.co.uk,7 9032,http://www.lhm.org.uk,7 9033,http://www.cruisedrivertraining.co.uk,7 9034,http://library-links.camden.gov.uk,7 9035,http://webccs002.newcastle.gov.uk,7 9036,http://webber,7 9037,http://www.saveoursavers.co.uk,7 9038,http://www.falcon-bikes.co.uk,7 9039,http://bod.inrev.gov.uk,7 9040,http://www.hinckleyrts.co.uk,7 9041,http://wandserver1,7 9042,http://waccoe.com,7 9043,http://www.schofieldandsims.co.uk,7 9044,http://live.tcc-training.com,7 9045,http://volunteering.direct.gov.uk/,7 9046,http://www.schoolhistory.co.uk,7 9047,http://livelink.barnardos.org.uk,7 9048,http://www.thepoorschool.com,7 9049,http://vle.cla.thomas-s.co.uk,7 9050,http://www.jennifersdriving.co.uk,7 9051,http://www.direct.gov.uk/cy/Parents/Lookingafterchildrenifyoudivorceorseparate/Childrendivorceseparationandcourts/index.htm,7 9052,http://www.scooter.co.uk,7 9053,http://localhost:56615,7 9054,http://www.greys.beds.sch.uk,7 9055,http://localhost:8080,7 9056,http://virtual.cornwall.ac.uk,7 9057,http://localhost:8888,7 9058,http://logic.sbdesign2.co.uk,7 9059,http://www.theory-tests.co.uk,7 9060,http://www.theo2.co.uk,7 9061,http://www.direct.gov.uk/en/Parents/Lookingafterchildrenifyoudivorceorseparate/index.htm,7 9062,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Employedorlookingforwork/DG_10018742,7 9063,http://bolton.theorytestpro.co.uk,7 9064,http://uws.prospects.ac.uk,7 9065,http://www.hintsandthings.co.uk,7 9066,http://www.themobilitymarket.co.uk,7 9067,http://botw.org.uk,7 9068,http://www.scscitt.co.uk,7 9069,http://www.ebikeinsurance.co.uk,7 9070,http://lpgforum.co.uk,7 9071,http://www.direct.gov.uk/en/Parents/ChildMaintenance/IfyourealreadyusingtheChildSupportAgency/DG_199163,7 9072,http://lt.wikipedia.org,7 9073,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/DecidingWhereToStudy/index.htm,7 9074,http://www.nla.gov.au,7 9075,http://www.mortgagesolutions.co.uk,7 9076,http://www.section44.co.uk,7 9077,http://lvds.theorytestpro.co.uk,7 9078,http://www.securitywashbag.com,7 9079,http://m.direct.gov.uk/backlinkController,7 9080,http://us.mc1102.mail.yahoo.com,7 9081,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/LifeAtUniversityOrCollege/index.htm,7 9082,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_172030,7 9083,http://adi233600.theorytestpro.co.uk,7 9084,http://british.e-consulate.org,7 9085,http://adi404308.theorytestpro.co.uk,7 9086,http://www.mig-welding.co.uk,7 9087,http://bromsgrove-admin.newsonline.tc.nca.bbc.co.uk,7 9088,http://unimoney.direct.gov.uk/,7 9089,http://www.sels.co.uk,7 9090,http://ummoodle.umac.mo,7 9091,http://adi66250.theorytestpro.co.uk,7 9092,http://ukinyemen.fco.gov.uk,7 9093,http://www.workinglinks.co.uk,7 9094,http://www.creative-choices.co.uk,7 9095,http://www.servat.unibe.ch,7 9096,http://www.thegreencarwebsite.co.uk,7 9097,http://ukinnorway.fco.gov.uk,7 9098,http://ukinkuwait.fco.gov.uk,7 9099,http://ukinjamaica.fco.gov.uk,7 9100,http://www.thefurnitureombudsman.org,7 9101,http://www.flytippingactionwales.org,7 9102,http://mail.rbksch.org,7 9103,http://www.direct.gov.uk/en/DisabledPeople/RightsAndObligations/GoingToCourt/DG_4018635,7 9104,http://uk.qbyrd.com,7 9105,http://mail.virgin.net,7 9106,http://www.direct.gov.uk/en/CaringForSomeone/CarersRights/index.htm,7 9107,http://uk.mg6.mail.yahoo.com,7 9108,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011399,7 9109,http://www.shell.co.uk,7 9110,http://adi87141.theorytestpro.co.uk,7 9111,http://maktoob.search.yahoo.com,7 9112,http://www.shetlink.com,7 9113,http://www.orkut.com.br,7 9114,http://www.shiredrive.co.uk,7 9115,http://www.cotswold.gloucs.sch.uk,7 9116,http://www.cosinejobs.co.uk,7 9117,http://www.osv.ltd.uk,7 9118,http://www.shoosmiths.co.uk,7 9119,http://uk.mc281.mail.yahoo.com,7 9120,http://maps.google.es,7 9121,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ChildBenefitandwhoqualifies/DG_173463,7 9122,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_199862,7 9123,http://maps.google.fr,7 9124,http://uk.mc276.mail.yahoo.com,7 9125,http://www.jobsfor13yearolds.co.uk,7 9126,http://btpensions.net,7 9127,http://www.mid-walesha.co.uk,7 9128,http://uk.mc259.mail.yahoo.com,7 9129,http://mariusparaschiv.ro,7 9130,http://mark.theorytestpro.co.uk,7 9131,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/KeepingyourChildBenefituptodate/Changesyouneedtoreport/index.htm,7 9132,http://www.simonbellmini.co.uk,7 9133,http://www.easthants.gov.uk,7 9134,http://www.nnac.org,7 9135,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/KeepingyourChildBenefituptodate/index.htm,7 9136,http://mercedes-190.co.uk,7 9137,http://www.expats.cz,7 9138,http://www.johngrundy.co.uk,7 9139,http://mib-prod-ctap01:5555,7 9140,http://www.ncvys.org.uk,7 9141,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/ChildTrustFund/SettingupaChildTrustFundaccount/DG_193686,7 9142,http://www.theautismdirectory.com,7 9143,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/WorkingAndPayingTax/DG_10026509CY,7 9144,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2011/index.htm,7 9145,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/CourtClaimsAndBankruptcy/DG_194984,7 9146,http://www.the1stgear.co.uk,7 9147,http://www.no-excuses.org.uk,7 9148,http://www.skills-solutions.org.uk,7 9149,http://www.direct.gov.uk/en/Motoring/VehicleCrime/DG_4022920,7 9150,http://moodle.barrow6fc.ac.uk,7 9151,http://toolbar.easyfundraising.org.uk,7 9152,http://moodle.barton.ac.uk,7 9153,http://toddlersdayout.co.uk,7 9154,http://tlrdriving.theorytestpro.co.uk,7 9155,http://www.jonwells-som.co.uk,7 9156,http://www.constructiveteachingcentre.com,7 9157,http://www.womenswisdom.co.uk,7 9158,http://tickets.stereoboard.com,7 9159,http://thisisabuse.direct.gov.uk/faq,7 9160,http://www.ovacome.org.uk,7 9161,http://moodle.moulton.ac.uk,7 9162,http://thepiratebay.org,7 9163,http://www.learnerdriver.biz,7 9164,http://athena,7 9165,http://www.essexboilers.com,7 9166,http://www.slowtrav.com,7 9167,http://theintranet,7 9168,http://moodle.preston.ac.uk,7 9169,http://cambridgeutdgirls.easysearch.org.uk,7 9170,http://moodle.priory.e-sussex.sch.uk,7 9171,http://adoption.org.uk,7 9172,http://www.essex.police.uk,7 9173,http://thealpinaregister.com,7 9174,http://www.mibschoolofmotoring.co.uk,7 9175,http://www.learn2drivewell.co.uk,7 9176,http://www.wolstonvillage.co.uk,7 9177,http://techzone.adviserzone.com,7 9178,http://moodle.uc.ac.je,7 9179,http://www.teenwirral.com,7 9180,http://www.teamgreenbritain.org,7 9181,http://mortgagehelp.direct.gov.uk/my-lender-is-telling-im-going-to-be-repossessed.aspx,7 9182,http://campaign.r20.constantcontact.com,7 9183,http://mottester.wordpress.com,7 9184,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017577,7 9185,http://www.leannebarker.co.uk,7 9186,http://mrdoob.com,7 9187,http://www.just-nice-things.co.uk,7 9188,http://www.nbfa.org.uk,7 9189,http://mutat.net,7 9190,http://www.taxpol.ltd.uk,7 9191,http://www.justdriving.net,7 9192,http://talk.nhs.uk,7 9193,http://www.leaderdriving.co.uk,7 9194,http://www.connectright.org.uk,7 9195,http://sww.shell.com,7 9196,http://sv.wikipedia.org,7 9197,http://www.taxationweb.co.uk,7 9198,http://my.shaw.ca,7 9199,http://10.98.1.12,7 9200,http://www.e-capy.com,7 9201,http://suggest02.yp.com.hk,7 9202,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxrefundsreclaimingtax/DG_078771CY,7 9203,http://www.tampapassports.com,7 9204,http://nases.org.uk,7 9205,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017619,7 9206,http://www.musicleader.net,7 9207,http://www.talkmorgan.com,7 9208,http://www.mgcdrivinginstructor.co.uk,7 9209,http://www.moraychildcarepartnership.co.uk,7 9210,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017785,7 9211,http://www.collegecarsales.co.uk,7 9212,http://www.solihull.ac.uk,7 9213,http://student.trafford.ac.uk,7 9214,http://www.k4b-uk.co.uk,7 9215,http://wwwnorthwards,7 9216,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingMoney/SavingsAndInvestments/DG_10034496CY,7 9217,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/workoutincomeandworkinghours/DG_174173,7 9218,http://stockportces.moodle.overnetdata.com,7 9219,http://www.takethetunnel.com,7 9220,http://www.taisha.org,7 9221,http://stevejaggs.co.uk,7 9222,http://adur-worthing.westsussexwellbeing.org.uk,7 9223,http://www.dyslexiarooms.co.uk,7 9224,http://news.google.co.uk,7 9225,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/RidingMotorcyclesAndMopeds/DG_4022666,7 9226,http://staffintranet,7 9227,http://staff,7 9228,http://cbc-stag,7 9229,http://no.ask.com,7 9230,http://cbfmnet.fm.rbsgrp.net,7 9231,http://www.clubebmwportugal.com,7 9232,http://www.kedst.ac.uk,7 9233,http://www.swissemigration.ch,7 9234,http://northbrook.blackboard.com,7 9235,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/PracticalTest/DG_178483,7 9236,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011387,7 9237,http://www.larr.co.uk,7 9238,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/payments/DG_174201,7 9239,http://www.gtr.co.uk,7 9240,http://www.kelvinwhitedrivingschool.co.uk,7 9241,http://www.swanvalley.kent.sch.uk,7 9242,http://southamptondrivingschool.co.uk,7 9243,http://www.southwarkadvice.org.uk,7 9244,http://nww.5boroughspartnership.nhs.uk,7 9245,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/GettingyourIncomeTaxright/index.htm,7 9246,http://www.lansad.univ-savoie.fr,7 9247,http://nww.glospct.nhs.uk,7 9248,http://www.spanuk.org.uk,7 9249,http://www.parkfieldnewschool.org.uk,7 9250,http://www.climbmts.co.uk,7 9251,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingDebt/Makingacourtclaimformoney/DG_195812CY,7 9252,http://ambercareanddevelopment.com,7 9253,http://www.nationalschool.gov.uk,7 9254,http://ocdtodayuk.org,7 9255,http://www.dyfedpensionfund.org.uk,7 9256,http://olimpiajob2012.com,7 9257,http://oneplace.audit-commission.gov.uk,7 9258,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/Drivinglorriesbusesandcoaches/DG_4022548,7 9259,http://oneweek.theorytestpro.co.uk,7 9260,http://www.cleveryou.org,7 9261,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/DG_182841,7 9262,http://site6.adifreewebsite.com,7 9263,http://cconline.cirencester.ac.uk,7 9264,http://simple.wikipedia.org,7 9265,http://www.surreyinformationpoint.org.uk,7 9266,http://www.kevinjamesdrivingschool.co.uk,7 9267,http://pages.ebay.ie,7 9268,http://sharp.direct.gov.uk/faqs,7 9269,http://www.fkipensions.co.uk,7 9270,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/Afteradeathmanaginganestate/DG_179372,7 9271,http://cds.easysearch.org.uk,7 9272,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/FormsforprobateandInheritanceTax/DG_179288,7 9273,http://paris.angloinfo.com,7 9274,http://passlane.co.uk,7 9275,http://www.direct.gov.uk/en/Motoring/DriverLicensing/WhatCanYouDriveAndYourObligations/DG_180694,7 9276,http://www.ssmdrivingschool.co.uk,7 9277,http://sexperienceuk.channel4.com,7 9278,http://patrickgordon.co.uk,7 9279,http://www.sssi.naturalengland.org.uk,7 9280,http://sentencing.justice.gov.uk,7 9281,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/IntroductiontoNationalInsurance/DG_190052,7 9282,http://searchtronic.net,7 9283,http://www.holmesschoolofmotoring.co.uk,7 9284,http://perf.go-on.co.uk,7 9285,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/Voluntarycontributionsandtoppingup/DG_190066,7 9286,http://www.gstatic.com,7 9287,http://centrestart.co.uk,7 9288,http://www.durham-johnston.durham.sch.uk,7 9289,http://pestcontrol-supermarket.rlogical.com,7 9290,http://search.ucas.co.uk,7 9291,http://www.clacksweb.org.uk,7 9292,http://peterblight.com,7 9293,http://www.staffordshirecares.info,7 9294,http://www.lac.ox.ac.uk,7 9295,http://cep.lse.ac.uk,7 9296,http://www.direct.gov.uk/en/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_195689,7 9297,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/LeavingOrComingIntoTheUK/DG_10026136,7 9298,http://www.labc.uk.com,7 9299,http://search.monstercrawler.com,7 9300,http://planning.wellingborough.gov.uk,7 9301,http://www.studentloan.co.uk,7 9302,http://www.pass2drive.co.uk,7 9303,http://www.studenthelp.ex.ac.uk,7 9304,http://pohwer.easysearch.org.uk,7 9305,http://search.centrum.cz,7 9306,http://www.holycross.ac.uk,7 9307,http://www.kwikguides.com,7 9308,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Beingstoppedorarrestedbythepolice/DG_196019,7 9309,http://search.aol.com.au,7 9310,http://www.studentfinance.direct.gov.uk/calculator/studentfinancecalculator/1011/eligibility.xhtml,7 9311,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_188859CY,7 9312,http://portal.cheshire.nw-police.uk,7 9313,http://portal.tds.net,7 9314,http://www.zsoc.com,7 9315,http://www.student-support.co.uk,7 9316,http://portal.wowway.net,7 9317,http://cgi.search.biglobe.ne.jp,7 9318,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10018752CY,7 9319,http://powerpoint.officeapps.live.com,7 9320,http://www.strouddriving.com,7 9321,http://powerservice.clearandcreative.info,7 9322,http://promo.classicfm.co.uk,7 9323,http://www.streetkat.com,7 9324,http://www.kirkleesclik.org.uk,7 9325,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Beingstoppedorarrestedbythepolice/DG_196030,7 9326,http://www.direct.gov.uk/en/Employment/Employees/EmploymentContractsAndConditions/DG_175704,7 9327,http://www.northants.police.uk,7 9328,http://www.stratford.ac.uk,7 9329,http://qdeye,7 9330,http://www.winchestercbt.co.uk,7 9331,http://ru-uk.livejournal.com,7 9332,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/RegisteringAVehicle/DG_4022317,7 9333,http://www.furness.ac.uk,7 9334,http://www.kjsschoolofmotoring.co.uk,7 9335,http://www.knowthenet.org.uk,7 9336,http://rac.ac.uk,7 9337,http://roadcraftmidlands.com,7 9338,http://resultbse.theorytestpro.co.uk,7 9339,http://www.stmarysfarnhamroyal.ik.org,7 9340,http://richardsacblog.wordpress.com,7 9341,http://chbsql,7 9342,http://www.christtheking-school.com,7 9343,http://www.williamsdriving.com,7 9344,http://www.direct.gov.uk/cy/HomeAndCommunity/LeisureandRecreation/index.htm,7 9345,http://www.northdevonhealth.nhs.uk,7 9346,http://chriseddydrivertuition.yolasite.com,7 9347,http://195.194.49.52,7 9348,http://chronicallyme.wordpress.com,7 9349,http://www.youngscot.org,7 9350,http://chstraining,7 9351,http://www.drivingtheorytestquestions.co.uk,7 9352,http://www.drivingtheorytest.org.uk,7 9353,http://www.evolvedrivingschool.co.uk,7 9354,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018159,7 9355,http://www.chg.org.uk,7 9356,http://www.newdrugapprovals.com,7 9357,http://www.menieres.org.uk,7 9358,http://www.chessingtoncommunitycollege.co.uk,7 9359,http://cms.durham.gov.uk,7 9360,http://www.direct.gov.uk/en/disabledpeople/motoringandtransport/adaptingavehicle/dg_10028000,7 9361,http://www.drivingschoolswatford.com,7 9362,http://www.cheapflights.co.uk,7 9363,http://www.energymadeclear.co.uk,7 9364,http://www.mel-reid-driving-instruction.co.uk,7 9365,http://www.drivingschoolsplymouth.co.uk,7 9366,http://www.zzr-international.co.uk,7 9367,http://www.drivingschoolsmerseyside.com,7 9368,http://cn.mc922.mail.yahoo.com,7 9369,http://207.46.192.232,7 9370,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018862,7 9371,http://www.championdrivingschool.co.uk,7 9372,http://cogt.web-help-service.net,7 9373,http://www.homeshub.co.uk,7 9374,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011322,7 9375,http://www.pcspecialist.co.uk,7 9376,http://www.cftc.org.uk,7 9377,http://www.pdo.co.om,7 9378,http://www.drivingschoolbirmingham.co.uk,7 9379,http://www.homeworking4me.co.uk,7 9380,http://www.naldic.org.uk,7 9381,http://www.celsianeducation.co.uk,7 9382,http://www.mrqueen.es,7 9383,http://www.ccfund.org.uk,7 9384,http://www.pennasunrise.com,7 9385,http://www.nairaland.com,7 9386,http://connect.arqiva.local,7 9387,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011227,7 9388,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011224,7 9389,http://connect2,7 9390,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nUSlFSO2VJlc!P7VVimUIFnNqLvfYMHmYWYTD9kPB9wrIvO8HFXEElrP7uQNo93Su4ngewECV2DZbdSGiVfu*00e66zbP0pdKOMMiha5te6pMlNOp2sSdAZ7TXEKwYDZ8STrYQNSvtxCs*if0Lc6irWR0oBVIKTxlhOWL5FJYhlk1hAjExhe0Q2z0wjsPz3fjBe4DW9CoNpasOwYBnvpLAT58s9Dz7KK9IiGEuOO5Prvz0z4KbtUTREl1jqZzUwXCChk*Zn8jf4tiR*1jySvCsyElJMmxXSqOGrujPFjN*oz!jCFbZjj0F279LUbpFKoposRTZIhUlvlSKlFukogYulvrxd1kiFX0Pi6XyeanSXQvm2LXuTlGybz8ape*Oq33N/results,7 9391,http://www.everwelloh.co.uk,7 9392,http://www.carsandgarages.co.uk,7 9393,http://www.carolinesdrivingschool.com,7 9394,http://www.whatisequityrelease.com,7 9395,http://www.direct.gov.uk/en/DisabledPeople/DG_10023362,7 9396,http://cps.gov.uk,7 9397,http://www.direct.gov.uk/en/DisabledPeople/EducationAndTraining/HigherEducation/,7 9398,http://www.direct.gov.uk/dr_consum_dg/groups/dg_digitalassets/@dg/documents/digitalasset/dg_077306.jpg,7 9399,http://10.1.0.4,7 9400,http://www.petercannell.com,7 9401,http://ctjt.biz,7 9402,http://www.wyrebc.gov.uk,7 9403,http://curve.coventry.ac.uk,7 9404,http://www.westgatetravel.co.uk,7 9405,http://www.direct.gov.uk/cy/DisabledPeople/HealthAndSupport/Equipment/DG_4000484CY,7 9406,http://www.car-from-uk.ru,7 9407,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011221,7 9408,http://www.capitalcarandvanrental.com,7 9409,http://www.driversscotland.co.uk,7 9410,http://www.westcroft.devon.sch.uk,7 9411,http://declondon.com,7 9412,http://www.wer-weiss-was.de,7 9413,http://www.cambridge-online-learning.co.uk,7 9414,http://dfe.gov.uk,7 9415,http://www.phr.nihr.ac.uk,7 9416,http://www.pilkingtonsom.co.uk,7 9417,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/LookingForWork/DG_4000219,7 9418,http://www.pilotheat.co.uk,7 9419,http://www.bwea.com,7 9420,http://www.maturetimes.co.uk,7 9421,http://www.direct.gov.uk/en/Employment/Jobseekers/programmesandservices/DG_198877,7 9422,http://dirre1.org,7 9423,http://www.fshc.careshield.co.uk,7 9424,http://www.buyshedsdirect.co.uk,7 9425,http://www.welfare.qmul.ac.uk,7 9426,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Dismissal/DG_173213,7 9427,http://www.drive2000.com,7 9428,http://www.direct.gov.uk/dr_consum_dg/groups/dg_digitalassets/@dg/@cy/documents/digitalasset/dg_198611.pdf,7 9429,http://www.motorcycle-training-yorkshire.co.uk,7 9430,http://www.placesforpeople.co.uk,7 9431,http://blog.annualleave.com,7 9432,http://www.busbys-drivingschool.co.uk,7 9433,http://www.burnham-on-sea.com,7 9434,http://www.mary-uk.com,7 9435,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Resigningorretiring/index.htm,7 9436,http://www.bumpsdrivin.com,7 9437,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/DG_10028138,7 9438,http://www.bumble-bee-som.com,7 9439,http://www.martocksurgery.co.uk,7 9440,http://www.freshwebsite.co.uk,7 9441,http://www.yournewhomepluscustomerclub.com,7 9442,http://dps.plants.ox.ac.uk,7 9443,http://www.bucksinfo.net,7 9444,http://dsldevice.lan,7 9445,http://dtlls.co.uk,7 9446,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Employmenttribunals/DG_173242,7 9447,http://www.pnarchive.org,7 9448,http://www.norwichdrivinglessons.co.uk,7 9449,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/MentalHealth/DG_10023433,7 9450,http://www.brynley.co.uk,7 9451,http://www.way2pass.com,7 9452,http://www.funeralguide.info,7 9453,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/MentalHealth/DG_10023345,7 9454,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/HomeAndCommunityContacts/index.htm,7 9455,http://www.bromley.ac.uk,7 9456,http://www.politicalresources.net,7 9457,http://www.britishpassportuk.co.uk,7 9458,http://www.britishgasenergytrust.org.uk,7 9459,http://www.doctordrive.net,7 9460,http://dyslexia-assessments.com,7 9461,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011688,7 9462,http://www.direct.gov.uk/en/DisabledPeople/Everydaylifeandaccess/Everydayaccess/DG_4018357,7 9463,http://www.notts-fire.gov.uk,7 9464,http://www.poolescitt.co.uk,7 9465,http://www.mypropertyguide.co.uk,7 9466,http://www.direct.gov.uk/en/Employment/TradeUnions/Tradeunionmembership/index.htm,7 9467,http://e.gov.kz,7 9468,http://www.warriorforum.com,7 9469,http://www.direct.gov.uk/cy/TravelAndTransport/Passports/index.htm,7 9470,http://www.huxtersdrivingschool.co.uk,7 9471,http://www.porthosp.nhs.uk,7 9472,http://www.hwr-berlin.de,7 9473,http://www.youngcarers.net,7 9474,http://www.diana-mcglone.com,7 9475,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/Equipment/index.htm,7 9476,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MotoringContacts/DG_069952,7 9477,http://edinburgh.theorytestpro.co.uk,7 9478,http://www.brandrepublic.com,7 9479,http://www.brake.org.uk,7 9480,http://www.prawo-jazdy-anglia-dokumenty.co.uk,7 9481,http://www.npcl.org.uk,7 9482,http://www.yourlifeyourchoice.org.uk,7 9483,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Temporarylayoff/index.htm,7 9484,http://eme.lewisham.ac.uk,7 9485,http://www.diabetes-support.org.uk,7 9486,http://emilybanthamjones.easysearch.org.uk,7 9487,http://www.bothal.northumberland.sch.uk,7 9488,http://www.newparkinglaws.co.uk,7 9489,http://www.manchesterfire.gov.uk,7 9490,http://www.directionlessgov.com,7 9491,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Energygrants/DG_072668,7 9492,http://www.book-keepers.net,7 9493,http://www.bond.edu.au,7 9494,http://www.directheatinginstallations.co.uk,7 9495,http://www.ianallantravel.com,7 9496,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/OtherBenefitsAndSupport/DG_171827,7 9497,http://www.youreap.co.uk,7 9498,http://www.ianhellyer.co.uk,7 9499,http://www.europcar.co.uk,7 9500,http://www.bobdrivesafe.co.uk,7 9501,http://www.newrider.com,7 9502,http://es.flybe.com,7 9503,http://www.dgndriving.co.uk,7 9504,http://www.bmibaby.com,7 9505,http://www.vrelegume.rs,7 9506,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenertravel/Greenercarsanddriving/index.htm,7 9507,http://eu.ixquick.com,7 9508,http://www.bluebell-railway.co.uk,7 9509,http://family-tree.co.uk,7 9510,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Climatechange/DG_072885,7 9511,http://www.green-tourism.co.uk,7 9512,http://www.property-mastermind.com,7 9513,http://www.propertyhawk.co.uk,7 9514,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_179001.pdf,7 9515,http://www.direct.gov.uk/en/Environmentandgreenerliving/Wasteandrecycling/DG_180525,7 9516,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_067666.pdf,7 9517,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@educ/documents/digitalasset/dg_184664.pdf,7 9518,http://fhqweb001,7 9519,http://www.biteplius.lt,7 9520,http://www.psc.ac.uk,7 9521,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Energy-yourconsumerrights/DG_196253,7 9522,http://www.hadlow.ac.uk,7 9523,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/ks3/t3_contents.htm,7 9524,http://fivestar.theorytestpro.co.uk,7 9525,http://www.billsom.co.uk,7 9526,http://www.maidavalemums.com,7 9527,http://www.direct.gov.uk/cy/TravelAndTransport/Foreigntravel/index.htm,7 9528,http://foodimports.direct.gov.uk/other-destinations.html,7 9529,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Personalfinance-yourconsumerrights/index.htm,7 9530,http://forum.club8090.co.uk,7 9531,http://www.gbschoolofmotoring.co.uk,7 9532,http://blackboard.lincoln.ac.uk,7 9533,http://www.betterlifehealthcare.com,7 9534,http://www.network54.com,7 9535,http://www.dereklawton.co.uk,7 9536,http://www.bereavementadvice.org,7 9537,http://www.bellnor.ee,7 9538,http://www.belleville-school.org.uk,7 9539,http://www.beenthere-donethat.org.uk,7 9540,http://www.expatsinspain.co.uk,7 9541,http://forum.donanimhaber.com,7 9542,http://www.vaccinationcouncil.org,7 9543,http://www.bedfordpl.com,7 9544,http://www.bedfordcharity.org.uk,7 9545,http://www.igmd.org,7 9546,http://www.becomeajournalist.co.uk,7 9547,http://www.racv.com.au,7 9548,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011469,7 9549,http://www.gemselectricblankettesting.co.uk,7 9550,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Annullingamarriage/DG_193752,7 9551,http://www.mlas-online.co.uk,7 9552,http://www.hackforums.net,7 9553,http://www.uptownoil.co.uk,7 9554,http://www.uplandsschoolofmotoring.co.uk,7 9555,http://www.direct.gov.uk/en/EducationAndLearning/14To19/Courseworkandexams/DG_066316,7 9556,http://www.numberplates.com,7 9557,http://www.upacker.co.uk,7 9558,http://www.goroadwise.co.uk,7 9559,http://www.barrytheinstructor.co.uk,7 9560,http://www.lutonsfc.ac.uk,7 9561,http://www.mkpowerflushing.co.uk,7 9562,http://www.barnsley.ac.uk,7 9563,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Goingtoprison/DG_196209,7 9564,http://www.emmanewell.co.uk,7 9565,http://www.genesis-dse.co.uk,7 9566,http://www.msmoray.net,7 9567,http://www.heron.nhs.uk,7 9568,http://www.barclayswealth.com,7 9569,http://www.rbslondon.ac.uk,7 9570,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/16to19bursary/DG_067575,7 9571,http://www.nursingtimes.net,7 9572,http://www.direct.gov.uk/en/Video/Drivingandmotoring/index.htm,7 9573,http://www.luckydrivingschool.co.uk,7 9574,http://www.imperial.nhs.uk,7 9575,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/HowtheCourtFundsOfficemanagesyourmoney/DG_195052,7 9576,http://frog.judd.kent.sch.uk,7 9577,http://www.xeroxpensions.co.uk,7 9578,http://www.eurodesk.cz,7 9579,http://www.awesomlearners.co.uk,7 9580,http://www.ultimatehandyman.co.uk,7 9581,http://fulloflife.direct.gov.uk/events.html,7 9582,http://fulloflife.direct.gov.uk/index.html,7 9583,http://www.ultimatedriving.net,7 9584,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/TaxisAndPrivateHireVehicles/DG_10036287,7 9585,http://www.availability.pl,7 9586,http://www.autotecgarage.com,7 9587,http://www.autoshite.com,7 9588,http://www.google.tl,7 9589,http://gallions.easysearch.org.uk,7 9590,http://www.financialfraudaction.org.uk,7 9591,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/PlanningForRetirement/DG_10014848CY,7 9592,http://gateway,7 9593,http://gblhor41.uk.rsa-ins.com,7 9594,http://www.mjwmotorcycletraining.com,7 9595,http://genuki.cs.ncl.ac.uk,7 9596,http://www.lpgforum.co.uk,7 9597,http://911uk.com,7 9598,http://www.lpdlabservices.co.uk,7 9599,http://www.frankpittschoolofmotoring.co.uk,7 9600,http://www.finishlinedriving.co.uk,7 9601,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/DanceandDrama/DG_10023485,7 9602,http://www.mixitonline.co.uk,7 9603,http://www.infolinks.com,7 9604,http://www.ukmalayalamnews.com,7 9605,http://www.nvqweb.com,7 9606,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/ExtraHelp/DG_066984,7 9607,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Familyhistoryandresearch/Birthmarriageanddeathcertificates/DG_175628,7 9608,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Sentencingandcriminalrecords/DG_181681,7 9609,http://www.georgehardwickfoundation.org,7 9610,http://www.elite-driving-school.co.uk,7 9611,http://www.google.li,7 9612,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Marriagesandcivilpartnerships/DG_175718,7 9613,http://www.releaseyourpension.co.uk,7 9614,http://www.ukecc.net,7 9615,http://www.dementiawebkentandmedway.org.uk,7 9616,http://ys.dul.startnow.com,7 9617,http://www.ukcosa.org.uk,7 9618,http://www.asdfriendly.org,7 9619,http://www.repubblica.it,7 9620,http://a-ghaffar.suite101.com,7 9621,http://www.lostmotcertificate.com,7 9622,http://yps.lancashire.gov.uk,7 9623,http://gtukintranet.gtukint.com,7 9624,http://www.arrowdrivingacademy.co.uk,7 9625,http://www2.ncn.ac.uk,7 9626,http://gu-facebook.appspot.com,7 9627,http://www.armstrongmywire.com,7 9628,http://gxc.google.co.uk,7 9629,http://h2g2.com,7 9630,http://www.argentine-embassy-uk.org,7 9631,http://www.uk250.co.uk,7 9632,http://www.argentina.gov.ar,7 9633,http://www.archhistory.co.uk,7 9634,http://hallamunion.org,7 9635,http://www.mirrorsds.co.uk,7 9636,http://www.deko.co.uk,7 9637,http://www.arch.cam.ac.uk,7 9638,http://www.debtwizard.com,7 9639,http://www.nyx.cz,7 9640,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/DG_10031451,7 9641,http://www.rib.net,7 9642,http://www.appg-mentalhealth.org.uk,7 9643,http://www.ricability.org.uk,7 9644,http://www.apollo-solar-panels.com,7 9645,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Aboutcollectivegrouppassports/DG_174361,7 9646,http://www.uk-rezydent.com,7 9647,http://healthguides.mapofmedicine.com,7 9648,http://www.ansdellselfdrive.co.uk,7 9649,http://www.fireservicecollege.ac.uk,7 9650,http://www.debdale-som.co.uk,7 9651,http://www.londonozinios.com,7 9652,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/Poweredwheelchairsandmobilityscooters/index.htm,7 9653,http://www.xlr8wales.com,7 9654,http://www.faircityschoolofmotoring.co.uk,7 9655,http://aa.mc382.mail.yahoo.com,7 9656,http://www.londonlawcentre.org.uk,7 9657,http://www.dds.qmul.ac.uk,7 9658,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011733,7 9659,http://www.right2buymycouncilhouse.co.uk,7 9660,http://www.ucb.ac.uk,7 9661,http://hmctsformfinder.justice.gov.uk,7 9662,http://hmgcc-homepage.int.hmgcc.gov.uk,7 9663,http://www.anddutch.co.uk,7 9664,http://www.rihannatickets.org.uk,7 9665,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070204,7 9666,http://www.direct.gov.uk/en/Hl1/Help/DG_176652,7 9667,http://www.ampetronic.com,7 9668,http://home.knology.net,7 9669,http://home.plus.qinetiq.com,7 9670,http://www.amblesideprimaryschool.co.uk,7 9671,http://www.ambitiousaboutautism.org.uk,7 9672,http://www.hfrs.net,7 9673,http://www.amazebrighton.org.uk,7 9674,http://www.elderlycaretips.info,7 9675,http://www.alternativefamilylaw.co.uk,7 9676,http://www.riversidestudios.co.uk,7 9677,http://www.almostfamily.co.uk,7 9678,http://www.interactiveclassroom.net,7 9679,http://www.allianz.co.uk,7 9680,http://www.alldrivedt.com,7 9681,http://www.haywardschoolofmotoring.co.uk,7 9682,http://www.tusovka.lt,7 9683,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/BeforeYouTravel/DG_4016880,7 9684,http://www.google.fm,7 9685,http://i.cxgmail.net,7 9686,http://www.davidnaylor.co.uk,7 9687,http://i.maxthon.cn,7 9688,http://yoursigns.com,7 9689,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Leaseholdproperties/DG_193039,7 9690,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/Usingpleasurecraftsafely/DG_185461,7 9691,http://www.heart-england.co.uk,7 9692,http://www.getin2gear.co.uk,7 9693,http://icould.com,7 9694,http://www.aecc.ac.uk,7 9695,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/MobileHousing/DG_191097,7 9696,http://www.advfn.com,7 9697,http://www.local.direct.gov.uk/LDGRedirect/index.jsp,7 9698,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/PleasureCraft/DG_180524,7 9699,http://www.adventurebikerider.com,7 9700,http://www.rodzinko.pl,7 9701,http://www.daverobson.com,7 9702,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Owningproperty/DG_196288,7 9703,http://www.adultcareinbrum.org.uk,7 9704,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/SellingYourHome/DG_4001329,7 9705,http://idrivebournemouth.co.uk,7 9706,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Typesofcrime/DG_181675,7 9707,http://www.adhd-yorkshire.com,7 9708,http://www.greenvalehomes.co.uk,7 9709,http://www.trialscentral.com,7 9710,http://www.offendersfamilieshelpline.org,7 9711,http://www.direct.gov.uk/en/Pensionsandretirementplanning/TravelAndLeisure/TravellingAtHomeAndAbroad/DG_10026847,7 9712,http://www.llc.leeds.ac.uk,7 9713,http://www.theovalprimary.co.uk,7 9714,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10023183,7 9715,http://www.direct.gov.uk/en/CaringForSomeone/CareHomes/DG_10031411,6 9716,http://www.direct.gov.uk/en/BritonsLivingAbroad/Moneyabroad/DG_4000108,6 9717,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011644,6 9718,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011655,6 9719,http://www.next-step.org.uk,6 9720,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011668,6 9721,http://www.gain4u.org.uk,6 9722,http://www.direct.gov.uk/cy/TravelAndTransport/Highwaycode/Poweredwheelchairsandmobilityscooters/index.htm,6 9723,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011691,6 9724,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011693,6 9725,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011697,6 9726,http://www.motomot.com,6 9727,http://www.moto-tech.org.uk,6 9728,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Benefits/index.htm,6 9729,http://www.direct.gov.uk/cy/Parents/Yourchildshealthandsafety/Internetsafety/index.htm,6 9730,http://www.mot-test.net,6 9731,http://www.direct.gov.uk/cy/Parents/Moneyandworkentitlements/WorkAndFamilies/Paternityrightsintheworkplace/DG_10029398CY,6 9732,http://www.moss-coleman.com,6 9733,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011800,6 9734,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012040,6 9735,http://www.direct.gov.uk/cy/Parents/Childcare/DG_181206CY,6 9736,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012620,6 9737,http://www.nmm.ac.uk,6 9738,http://www.direct.gov.uk/cy/Motoring/DriverLicensing/CaravansTrailersCommercialVehicles/DG_4022521CY,6 9739,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/DG_190117CY,6 9740,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/index.htm,6 9741,http://www.furniturereports.co.uk,6 9742,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingMoney/PlanningYourPersonalFinances/DG_10013582CY,6 9743,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingMoney/Insurance/DG_10034569CY,6 9744,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/index.htm,6 9745,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/KeepingyourChildBenefituptodate/ChildBenefitafter16/DG_073812CY,6 9746,http://avserv.owbc.net,6 9747,http://www.nortcoll.ac.uk,6 9748,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BeginnersGuideToBenefits/DG_10018558CY,6 9749,http://www.direct.gov.uk/cy/HomeAndCommunity/Planning/PlanningPermission/DG_4018105CY,6 9750,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/,6 9751,http://www.direct.gov.uk/cy/HomeAndCommunity/InYourHome/FireSafety/index.htm,6 9752,http://www.monk1.com,6 9753,http://www.direct.gov.uk/cy/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/DG_067917CY,6 9754,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Wasteandrecycling/DG_069060CY,6 9755,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/OrganisationsAndCharities/DG_10014892,6 9756,http://www.moneyhighstreet.com,6 9757,http://www.direct.gov.uk/cy/Employment/Employees/EmploymentContractsAndConditions/DG_10027905CY,6 9758,http://www.direct.gov.uk/cy/EducationAndLearning/14To19/index.htm,6 9759,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/SpecificNeedsContacts/DG_10014901,6 9760,http://www.northlincolnshire.nhs.uk,6 9761,http://www.moneyaande.co.uk,6 9762,http://www.direct.gov.uk/cy/DisabledPeople/FinancialSupport/DG_10020535CY,6 9763,http://www.direct.gov.uk/cy/DisabledPeople/Everydaylifeandaccess/Everydayaccess/DG_10037996CY,6 9764,http://www.northumbria-probation.co.uk,6 9765,http://www.northyorkshire.police.uk,6 9766,http://www.nortonmotorcycletraining.co.uk,6 9767,http://bbs.taisha.org,6 9768,http://www.norwayinlondon.com,6 9769,http://www.dignityindying.org.uk,6 9770,http://www.digital-forums.com,6 9771,http://www.nottspeed.com,6 9772,http://www.npenn.org,6 9773,http://www.diabetes-fife.org.uk,6 9774,http://www.energyzone.net,6 9775,http://www.mobbsworld.com,6 9776,http://www.mnmdrivingschool.co.uk,6 9777,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/Over50sContacts/DG_10029767,6 9778,http://www.nuigalway.ie,6 9779,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/ParentsContacts/index.htm,6 9780,http://www.derbyshire.police.uk,6 9781,http://www.derbymotorhomes.co.uk,6 9782,http://www.mkivsupra.net,6 9783,http://www.nurserve.co.uk,6 9784,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/Caretolearn/DG_066973,6 9785,http://www.depressionforums.org,6 9786,http://www.nvidiadefect.com,6 9787,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/ExtraHelp/DG_066986,6 9788,http://www.dementiawebbath.org.uk,6 9789,http://www.dementiauk.org,6 9790,http://10.34.0.99,6 9791,http://www.nyenrode.nl,6 9792,http://www.mintameside.org.uk,6 9793,http://www.deafstudiescentral.org,6 9794,http://www.minisculeofmotoring.co.uk,6 9795,http://www.daycaretrust.org.uk,6 9796,http://www.graphicdesignforums.co.uk,6 9797,http://www.danson.bexley.sch.uk,6 9798,http://www.danhiretrailers.co.uk,6 9799,http://www.dakar.co.uk,6 9800,http://www.enfieldcab.org.uk,6 9801,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/LearningOutsideTheClassroom/DG_10033341,6 9802,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/LearningOutsideTheClassroom/DG_4016530,6 9803,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/LearningOutsideTheClassroom/DG_4016860,6 9804,http://www.daautosgroup.com,6 9805,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/TrainingAndWorkplaceLearning/DG_070911,6 9806,http://www.cylex-uk.co.uk,6 9807,http://www.oliviercadic.com,6 9808,http://www.cusu.cam.ac.uk,6 9809,http://www.one.lv,6 9810,http://www.one2onedrivertraining.com,6 9811,http://www.enfieldgrammar.com,6 9812,http://www.ctauk.org,6 9813,http://www.onewayschoolofmotoring.net,6 9814,http://www.csa.gov.uk.,6 9815,http://www.croydonschoolofmotoring.co.uk,6 9816,http://becasleonardo.fuem.es,6 9817,http://www.crisis.org.uk,6 9818,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/LifeAtUniversityOrCollege/DG_065788,6 9819,http://www.criminallaw.co.uk,6 9820,http://www.orchardproperty.co.uk,6 9821,http://www.cpag.org.uk,6 9822,http://www.cowboystoppers.co.uk,6 9823,http://www.midlandbullets.co.uk,6 9824,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_174617,6 9825,http://www.copythornenews.co.uk,6 9826,http://www.microsoft.com,6 9827,http://atschool.eduweb.co.uk,6 9828,http://www.contactlaw.co.uk,6 9829,http://www.consultations.dh.gov.uk,6 9830,http://www.consulados.com.br,6 9831,http://www.oxforddrivingschool.net,6 9832,http://www.oxfordshire.pl,6 9833,http://www.mhra.gov.uk,6 9834,http://www.conel.ac.uk,6 9835,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/StudentsFromOtherEUCountries/DG_070143,6 9836,http://www.paddyhinton.co.uk,6 9837,http://www.compactlaw.co.uk,6 9838,http://www.communityjustice.gov.uk,6 9839,http://www.mgfregister.org,6 9840,http://www.communitygateway.co.uk,6 9841,http://www.comedrivewithme.com,6 9842,http://www.pals.nhs.uk,6 9843,http://www.paltalk.com,6 9844,http://www.collegecars.co.uk,6 9845,http://www.colin-driving.co.uk,6 9846,http://www.cmeducation.co.uk,6 9847,http://www.clubpcx.com,6 9848,http://www.clover-som.co.uk,6 9849,http://www.parkers.co.uk,6 9850,http://www.clifftons.com,6 9851,http://www.clickromania.co.uk,6 9852,http://www.clearway-driver-training.com,6 9853,http://www.engagecredit.com,6 9854,http://www.cjhole.co.uk,6 9855,http://www.direct.gov.uk/en/Employment/Employees/EmploymentContractsAndConditions/DG_10027738,6 9856,http://www.passat17.co.uk,6 9857,http://askville.amazon.com,6 9858,http://www.passcourses.co.uk,6 9859,http://www.passing.biz,6 9860,http://www.passpdt.co.uk,6 9861,http://www.direct.gov.uk/en/Employment/Employees/EmploymentContractsAndConditions/DG_198913,6 9862,http://www.passports.uk.com,6 9863,http://www.passrightmotoringschool.co.uk,6 9864,http://www.passtodrive.com,6 9865,http://www.passwithdave.com,6 9866,http://www.chrissharpdt.com,6 9867,http://www.direct.gov.uk/en/Employment/Employees/Pay/DG_10027253,6 9868,http://www.childmindingnorthants.org.uk,6 9869,http://www.cheviotsom.co.uk,6 9870,http://www.memorialwoodlands.com,6 9871,http://www.chelmsfordcab.org,6 9872,http://www.chauffeurcenter.me.uk,6 9873,http://www.direct.gov.uk/en/Employment/Employees/TheNationalMinimumWage/DG_175097,6 9874,http://www.paulsdrivingschoolcornwall.co.uk,6 9875,http://www.meebo.com,6 9876,http://www.chadlane.co.uk,6 9877,http://www.ftejerez.es,6 9878,http://www.cf.ac.uk,6 9879,http://www.pearl.co.uk,6 9880,http://berlinks.pbworks.com,6 9881,http://www.celica-club.co.uk,6 9882,http://www.ccwl.co.uk,6 9883,http://www.direct.gov.uk/en/Employment/Employees/WorkingHoursAndTimeOff/DG_10029491,6 9884,http://www.cbrd.co.uk,6 9885,http://www.direct.gov.uk/en/Employment/Employees/WorkingHoursAndTimeOff/DG_174557,6 9886,http://www.pensionschemes.co.uk,6 9887,http://www.casterbridgecae.com,6 9888,http://www.pentaxuser.co.uk,6 9889,http://www.cartersdrivingschool.co.uk,6 9890,http://www.direct.gov.uk/en/Employment/HealthAndSafetyAtWork/DG_10026594,6 9891,http://www.carleyconsult.com,6 9892,http://www.gre.ac.uk,6 9893,http://www.carersnet.org.uk,6 9894,http://www.younglivin.org.uk,6 9895,http://www.careers.brad.ac.uk,6 9896,http://www.carbon-label.com,6 9897,http://www1.serbiancafe.com,6 9898,http://www.car-insurance-for-learner-driver.com,6 9899,http://www.direct.gov.uk/en/Employment/Jobseekers/Helpapplyingforajob/DG_173686,6 9900,http://www.direct.gov.uk/en/Employment/Jobseekers/Helpapplyingforajob/DG_173721,6 9901,http://www.pglel.co.uk,6 9902,http://www.mazdaspeed.pl,6 9903,http://www.cambs.police.uk,6 9904,http://www.bywelldrive.co.uk,6 9905,http://www.direct.gov.uk/en/Employment/Jobseekers/programmesandservices/DG_173631,6 9906,http://www.pitstartgarage.com,6 9907,http://www.buyassociation.co.uk,6 9908,http://www.busybees-nurseryschool.co.uk,6 9909,http://artlibrary.vassar.edu,6 9910,http://www.businesspundit.com,6 9911,http://www.burtonhospitals.nhs.uk,6 9912,http://www.bulgarianembassy-london.org,6 9913,http://www.buckstest.co.uk,6 9914,http://www.bucks.ac.uk,6 9915,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Employmenttribunals/DG_180552,6 9916,http://www.bscteach.co.uk,6 9917,http://www.bruceashleydrivingschool.co.uk,6 9918,http://beta.westminster.ac.uk,6 9919,http://www.police.uk.,6 9920,http://www.britishhongkong.com,6 9921,http://www.polskiinstruktor.co.uk,6 9922,http://www.freshstartforhens.co.uk,6 9923,http://www.direct.gov.uk/en/Employment/TradeUnions/DG_10027549,6 9924,http://www.british-genealogy.com,6 9925,http://www.direct.gov.uk/en/Employment/TradeUnions/Industrialaction/index.htm,6 9926,http://www.porsche924.co.uk,6 9927,http://www.brightydrivingtuition.co.uk,6 9928,http://www.brighton-driving-school.co.uk,6 9929,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/agriculturalworkers/index.htm,6 9930,http://www.brigadekids.com,6 9931,http://www.bptp.bham.org.uk,6 9932,http://www.premierpolytunnels.co.uk,6 9933,http://www.bpas.org,6 9934,http://www.eniro.se,6 9935,http://www.prestondrivingschool.com,6 9936,http://www.botleyroadmotors.co.uk,6 9937,http://www.manchesterhealthacademy.org.uk,6 9938,http://www.boltoncollege.ac.uk,6 9939,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Homeinsulation/index.htm,6 9940,http://www.boilerservicenorthampton.co.uk,6 9941,http://www2.edisposals.com,6 9942,http://www.probonouk.net,6 9943,http://www.progressgroup.org.uk,6 9944,http://betterfuture.direct.gov.uk/how-to-fund-retirement.html,6 9945,http://www.blazie.co.uk,6 9946,http://www.makindixon.co.uk,6 9947,http://www.protopage.com,6 9948,http://www.bilborough.ac.uk,6 9949,http://www.publicservice.co.uk,6 9950,http://apps502,6 9951,http://www.magnumdrivingschooledinburgh.co.uk,6 9952,http://www.bikemaverick.co.uk,6 9953,http://www.biggie.co.nz,6 9954,http://www.biffierthanthou.com,6 9955,http://www.qeliz.ac.uk,6 9956,http://www.betterbybike.info,6 9957,http://www.bestpass.me.uk,6 9958,http://www.berkshiremoodle.org.uk,6 9959,http://www.bedsscitt.org.uk,6 9960,http://www.rad.org.uk,6 9961,http://www.radar.org.uk,6 9962,http://www.beatbullying.org,6 9963,http://www.m-dmotorcycle-training.co.uk,6 9964,http://www.bathstudent.com,6 9965,http://www.basingstokedrivingschool.co.uk,6 9966,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Planningadivorce/DG_194401,6 9967,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Ifyoureendingamarriageorcivilpartnership/index.htm,6 9968,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Ifyourenotmarriedorinacivilpartnership/DG_192044,6 9969,http://www.greenfieldsch.org.uk,6 9970,http://www.barnnursery.co.uk,6 9971,http://www.direct.gov.uk/en/Governmentcitizensandrights/GettingLegalAdvice/Gettinglegaladviceandlegalaid/DG_195311,6 9972,http://www.rayneropticians.co.uk,6 9973,http://www.direct.gov.uk/en/Governmentcitizensandrights/GettingLegalAdvice/Gettinglegaladviceandlegalaid/DG_195390,6 9974,http://www.razem-mozemy-wiecej.com.pl,6 9975,http://www.bankchargeshell.co.uk,6 9976,http://www.ballymena.gov.uk,6 9977,http://www.lucysschoolofdriving.co.uk,6 9978,http://www.lrsa.org.uk,6 9979,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingdecisionsforsomeoneelse/DG_176267,6 9980,http://www.autocycle.freeserve.co.uk,6 9981,http://www.auto-evasion.com,6 9982,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Mentalcapacityandplanningahead/DG_186369,6 9983,http://www.aupair-world.at,6 9984,http://www.reducedmobility.eu,6 9985,http://www.redundancyservices.co.uk,6 9986,http://www.atlanticbb.net,6 9987,http://www.atlantic.co.uk,6 9988,http://www.forumosa.com,6 9989,http://www.asylumaid.org.uk,6 9990,http://www.astounding.org.uk,6 9991,http://www.asli.org.uk,6 9992,http://www.asksara.org.uk,6 9993,http://www.askmid.co.uk,6 9994,http://www.ashleyneal.com,6 9995,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Centralgovernmentandthemonarchy/DG_073447,6 9996,http://www.yorkshirewater.com,6 9997,http://www.asbos.co.uk,6 9998,http://www.artquest.org.uk,6 9999,http://www.look2drive.co.uk,6 10000,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Politicalpartiesandelections/index.htm,6 10001,http://www.longwoodholidays.co.uk,6 10002,http://www.rfownersclub.co.uk,6 10003,http://www.aptamil.co.uk,6 10004,http://www.rhmpensions.co.uk,6 10005,http://www.rhonddacynontafhousing.co.uk,6 10006,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Makingcomplaints-yourrights/index.htm,6 10007,http://www.anglijosmamos.co.uk,6 10008,http://www.ride2success.co.uk,6 10009,http://www.angellsolicitors.co.uk,6 10010,http://www.andymacsom.com,6 10011,http://www.andymackinder-drivertraining.co.uk,6 10012,http://www.andyhouston.info,6 10013,http://www.andrewsdrivingtuition.co.uk,6 10014,http://www.amazon.com,6 10015,http://www.alvinhall.com,6 10016,http://www.allinex.org,6 10017,http://www.logicor.co.uk,6 10018,http://www.alanjbarker.co.uk,6 10019,http://www.roadsafe.com,6 10020,http://www.yorkshirecoastcollege.ac.uk,6 10021,http://www.aimhigherwm.ac.uk,6 10022,http://www.forms.portsmouth.gov.uk,6 10023,http://www.locally.co.uk,6 10024,http://www.adveb.co.uk,6 10025,http://www.adt.co.uk,6 10026,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/SellingYourHome/DG_4001328,6 10027,http://www.rondomotoring.co.uk,6 10028,http://www.adoptiontrace.co.uk,6 10029,http://www.lloydsdrivingschool.co.uk,6 10030,http://www.adbok.com,6 10031,http://www.activities-unlimited.co.uk,6 10032,http://www.acryan.com,6 10033,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Rentarrearsandeviction/DG_188690,6 10034,http://www.liverpoolmediaacademy.com,6 10035,http://www.royalmarsden.nhs.uk,6 10036,http://www.accesslaw.co.uk,6 10037,http://www.access2.com,6 10038,http://www2.westsussex.gov.uk,6 10039,http://www.rsc.org,6 10040,http://www.eparenting.co.uk,6 10041,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/FireSafety/DG_071645,6 10042,http://www.ablc.org.uk,6 10043,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/FireSafety/DG_071763,6 10044,http://www.abclarkdt.com,6 10045,http://www.abbeyschool-of-motoring.co.uk,6 10046,http://www.abbeyridertraining.co.uk,6 10047,http://bike-moore.co.uk,6 10048,http://www.a5oc.com,6 10049,http://www.9991.com,6 10050,http://www.greenwood.ealing.sch.uk,6 10051,http://www.5-4-u.net,6 10052,http://www.ryecollege.co.uk,6 10053,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Problemsanddisputes/DG_180113,6 10054,http://www.s-w-s.co.uk,6 10055,http://www.2day.ws,6 10056,http://www.247spares.co.uk,6 10057,http://www.sacred-heart-primary.torbay.sch.uk,6 10058,http://www.1to1schoolofmotoring.co.uk,6 10059,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Repairsandstandards/index.htm,6 10060,http://www.1to1motorcycletraining.co.uk,6 10061,http://www.saedin.com,6 10062,http://www.safedrivelearners.co.uk,6 10063,http://www.1stchoice-driving-school.co.uk,6 10064,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/NoiseNuisanceAndLitter/DG_4001703,6 10065,http://www.liftshare.com,6 10066,http://www-origin.powys.gov.uk,6 10067,http://workshops.triplealearning.com,6 10068,http://www.life123.com,6 10069,http://www.direct.gov.uk/en/HomeAndCommunity/YourlocalcouncilandCouncilTax/YourCommunity/DG_4001648,6 10070,http://www.direct.gov.uk/en/HomeAndCommunity/YourlocalcouncilandCouncilTax/YourCommunity/index.htm,6 10071,http://weelzdrivingschool.com,6 10072,http://webwest1.app.westlothian.gov.uk,6 10073,http://www.sandwell.ac.uk,6 10074,http://webuyanybike.com,6 10075,http://www.library.manchester.ac.uk,6 10076,http://webmail.leggott.ac.uk,6 10077,http://www.libdemvoice.org,6 10078,http://webmail.cantab.net,6 10079,http://www.saudiclub-le.net,6 10080,http://webcurso.uc.cl,6 10081,http://webalta.ru,6 10082,http://www.saxonweald.com,6 10083,http://wcc-apps1,6 10084,http://www.healthypages.co.uk,6 10085,http://vle.dorcan.swindon.sch.uk,6 10086,http://vle.bruford.ac.uk,6 10087,http://www.scotmidfunerals.co.uk,6 10088,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_186001,6 10089,http://www.letspassdrivingschool.com,6 10090,http://www.screwfix.com,6 10091,http://us.mg204.mail.yahoo.com,6 10092,http://us.mc782.mail.yahoo.com,6 10093,http://us.mc595.mail.yahoo.com,6 10094,http://us.mc460.mail.yahoo.com,6 10095,http://www.lets-learnsom.co.uk,6 10096,http://us.mc1622.mail.yahoo.com,6 10097,http://www.searchproject.co.uk,6 10098,http://us.mc1608.mail.yahoo.com,6 10099,http://us.mc1206.mail.yahoo.com,6 10100,http://us.mc1147.mail.yahoo.com,6 10101,http://us.m2.yahoo.com,6 10102,http://universitainuk.livejournal.com,6 10103,http://unityins.co.uk,6 10104,http://unistats.direct.gov.uk/subjectBrowse.do,6 10105,http://www.selfbuildselfhelp.com,6 10106,http://unistats.direct.gov.uk/englishKeywordSearch.do,6 10107,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_070816,6 10108,http://www.leighcottagechildcare.com,6 10109,http://aolsearch.aol.ca,6 10110,http://www.leicscareonline.org.uk,6 10111,http://ukintunisia.fco.gov.uk,6 10112,http://ukinpakistan.fco.gov.uk,6 10113,http://www.sharedparenting.org.uk,6 10114,http://www.sharnbrook.beds.sch.uk,6 10115,http://www.legaltraining.co.uk,6 10116,http://www.shawpass.me.uk,6 10117,http://uk.msn.com,6 10118,http://www.growfruitandveg.co.uk,6 10119,http://www.shieldsdrivertraining.com,6 10120,http://www4.wetterspiegel.de,6 10121,http://www.shireoakschoolofmotoring.co.uk,6 10122,http://www.shiresmt.com,6 10123,http://uk.mc299.mail.yahoo.com,6 10124,http://uk.mc279.mail.yahoo.com,6 10125,http://uk.mc271.mail.yahoo.com,6 10126,http://www.leedsbuildingsociety.co.uk,6 10127,http://uk.linkedin.com,6 10128,http://www.simonrichardsadi.com,6 10129,http://www.singlewithkids.co.uk,6 10130,http://tuning.bg,6 10131,http://trustnet,6 10132,http://trasferirsiinscozia.blogspot.com,6 10133,http://www.learntodrivemiddlesbrough.co.uk,6 10134,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/CourtClaimsAndBankruptcy/DG_187370,6 10135,http://transportlegal.co.uk,6 10136,http://www.skiboundholidays.co.uk,6 10137,http://www.skillspace.com,6 10138,http://timebank.org.uk,6 10139,http://tiger.direct.gov.uk/cgi-bin/adoptionmaternity.cgi,6 10140,http://www.slingshot.uk.com,6 10141,http://www.slkdrivingschool.co.uk,6 10142,http://www.ymcatraining.org.uk,6 10143,http://www.fluther.com,6 10144,http://thefa.com,6 10145,http://th.search.yahoo.com,6 10146,http://test.oxfordowl.co.uk,6 10147,http://teamspace.intranet.group,6 10148,http://teachme.theorytestpro.co.uk,6 10149,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/BankAccountsAndBankingProducts/DG_10035252,6 10150,http://www.leapfrogdrivertraining.co.uk,6 10151,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/CreditAndStoreCardsCreditAndLoans/DG_10035364,6 10152,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/GivingMoneyToCharity/DG_078490,6 10153,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/Mortgages/DG_10015011,6 10154,http://and-me.org.uk,6 10155,http://www.snapdragonsnursery.com,6 10156,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/SavingsAndInvestments/DG_10013701,6 10157,http://surefiredriving.co.uk,6 10158,http://supportcentral.inbcu.com,6 10159,http://support.capitaes.co.uk,6 10160,http://www.sobe.salford.ac.uk,6 10161,http://www.lcds.ac.uk,6 10162,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/DG_073813,6 10163,http://studysmart.studygroup.com,6 10164,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/DG_073944,6 10165,http://studenttravel.about.com,6 10166,http://www.solarcrest.co.uk,6 10167,http://www.solaressence.co.uk,6 10168,http://www.healthcare.ac.uk,6 10169,http://studentfinance-yourfuture.direct.gov.uk/resources,6 10170,http://amp.uk.net,6 10171,http://www.som-malgosia.co.uk,6 10172,http://stores.ebay.co.uk,6 10173,http://www.somerschoolofmotoring.co.uk,6 10174,http://statcounter.com,6 10175,http://www.southamptonhealth.nhs.uk,6 10176,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Changesthataffectyourtaxcredits/Changesatwork/DG_173003,6 10177,http://sscintranet,6 10178,http://ssac.independent.gov.uk,6 10179,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Changesthataffectyourtaxcredits/Familychanges/index.htm,6 10180,http://www.latifs.co.uk,6 10181,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/index.htm,6 10182,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/payments/index.htm,6 10183,http://southend.theorytestpro.co.uk,6 10184,http://www.spd.dcu.ie,6 10185,http://amberleyplaygroup.co.uk,6 10186,http://www.spfo.org.uk,6 10187,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxallowancesandreliefs/DG_078326,6 10188,http://www.landroverexcellence.com,6 10189,http://www.landregistryonline.gov.uk,6 10190,http://siteexplorer.search.yahoo.com,6 10191,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxcodes/DG_078412,6 10192,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxcodes/DG_078421,6 10193,http://sharp.direct.gov.uk/content/helmet-care,6 10194,http://sharing.govdelivery.com,6 10195,http://shareworkzintranet,6 10196,http://seek.ind.in,6 10197,http://seax.essexcc.gov.uk,6 10198,http://searcht.netscape.com,6 10199,http://www.st-hildas.ox.ac.uk,6 10200,http://www.ladybirdsschoolofmotoring.co.uk,6 10201,http://search28.info.com,6 10202,http://search.tuxendo.com,6 10203,http://search.tiscali.it,6 10204,http://search.surreycc.gov.uk:8080,6 10205,http://www.staffsoc3.org.uk,6 10206,http://www.stars.org.uk,6 10207,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/IntroductiontoSelfAssessment/DG_10010523,6 10208,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/IntroductiontoSelfAssessment/DG_193185,6 10209,http://search.eclickz.com,6 10210,http://search.articleswave.co.uk,6 10211,http://search.aol.in,6 10212,http://www.steppingstonesnurseryschool.co.uk,6 10213,http://sdcweblive,6 10214,http://www.kulturizmas.net,6 10215,http://schoolswire.org,6 10216,http://schoolsfinder.direct.gov.uk/la/Cheshire-West-and-Chester,6 10217,http://www.stgeorgeflighttraining.co.uk,6 10218,http://sam-radford.me.uk,6 10219,http://www.kpnvandaag.nl,6 10220,http://s.ytimg.com,6 10221,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/WorkingAndPayingTax/DG_10022224,6 10222,http://www.escociao.com,6 10223,http://royal.gov.uk,6 10224,http://rother.searchimprove.com,6 10225,http://www.esec.org.uk,6 10226,http://www.knh.org.uk,6 10227,http://redirect.camfrog.com,6 10228,http://alfrasha.maktoob.com,6 10229,http://rcuksscltd,6 10230,http://www.kkm.lv,6 10231,http://pyeinthesky.suddenlaunch3.com,6 10232,http://prschool.wordpress.com,6 10233,http://privateclient.practicallaw.com,6 10234,http://post.sme.sk,6 10235,http://portsmouthcarers.org,6 10236,http://portal.mxlogic.com,6 10237,http://polskiinstruktor.co.uk,6 10238,http://plymouth.ac.uk,6 10239,http://ajsmotorcycles.co.uk,6 10240,http://www.studis-online.de,6 10241,http://philstanleysom.co.uk,6 10242,http://peterborough.cabadvice.pageperfection.co.uk,6 10243,http://pccintranet,6 10244,http://aggregain.wrap.org.uk,6 10245,http://pass2drive.co.uk,6 10246,http://pas.theorytestpro.co.uk,6 10247,http://www.direct.gov.uk/en/Motoring/DriverSafety/DG_195006,6 10248,http://oxcentric.oxme.info,6 10249,http://ourworld.slimmingworld.com,6 10250,http://aflbusiness.co.uk,6 10251,http://openwork.aegon.co.uk,6 10252,http://onlineservices.bournemouth.ac.uk,6 10253,http://online.uwl.ac.uk,6 10254,http://www.surreymotorcycleschool.co.uk,6 10255,http://onebromley,6 10256,http://one2onedrivingschool.theorytestpro.co.uk,6 10257,http://www.kensdrivingschool.com,6 10258,http://nww.cwp.nhs.uk,6 10259,http://nww.cht.nhs.uk,6 10260,http://np-intralink-staging,6 10261,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/Passplusdrivingcoursefornewdrivers/DG_182846,6 10262,http://www.keithsdrivingsch.com,6 10263,http://www.fivestardrivertraining.co.uk,6 10264,http://notesi01.durham.gov.uk,6 10265,http://nldomsvr01.northlincs.gov.uk:81,6 10266,http://nhsuk.epticahosting.com,6 10267,http://nhslocal.nhs.uk,6 10268,http://www.kathlinnesom.co.uk,6 10269,http://new.wales.gov.uk,6 10270,http://www.five-star-driving-school-brighton.co.uk,6 10271,http://new.careerswales.com,6 10272,http://nepalbritain.com,6 10273,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyB/DG_178258,6 10274,http://www.talent.ac.uk,6 10275,http://navclient.gmodules.com,6 10276,http://naukajazdywuk.com,6 10277,http://www.k64.org,6 10278,http://natowarriors.co.uk,6 10279,http://adultsocialcare.lbbd.gov.uk,6 10280,http://naei.defra.gov.uk,6 10281,http://myrockport.com,6 10282,http://www.justmotoring.com,6 10283,http://www.tauntonschoolofmotorcycling.com,6 10284,http://my4walls.co.uk,6 10285,http://my.onexamination.com,6 10286,http://my.huntingdonshire.gov.uk,6 10287,http://www.justice-for-all.org.uk,6 10288,http://www.taximeters.org.uk,6 10289,http://www.fitz.cam.ac.uk,6 10290,http://musiclink.easysearch.org.uk,6 10291,http://www.jura.uni-duesseldorf.de,6 10292,http://moving-on.making-money-easier.info,6 10293,http://mortgagehelp.direct.gov.uk/real-life-stories/familys-home-saved-from-repossession-in-wolverhampton.aspx,6 10294,http://mortgagehelp.direct.gov.uk/i-have-received-papers-telling-i-need-to-go-to-court.aspx,6 10295,http://moodle4.cih.co.uk,6 10296,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/Mot/DG_4022113,6 10297,http://www.teli.asso.fr,6 10298,http://www.jsinsurance.co.uk,6 10299,http://moodle.morgannwg.ac.uk,6 10300,http://www.fittleworthplaygroup.co.uk,6 10301,http://www.journalistworks.co.uk,6 10302,http://ydscourse.com,6 10303,http://moodle.gre.ac.uk,6 10304,http://moodle.carshalton.ac.uk,6 10305,http://www.direct.gov.uk/en/Motoring/PersonalisedRegAndNumberPlates/DG_172118,6 10306,http://www.thamesvalleyprobation.gov.uk,6 10307,http://moodle.burnley.ac.uk,6 10308,http://www.jon44w.co.uk,6 10309,http://www.johnsdrivingschool.net,6 10310,http://minet,6 10311,http://mimi,6 10312,http://mg-freedom.proboards.com,6 10313,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_194160,6 10314,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_199210,6 10315,http://mario:7777,6 10316,http://adiandy.co.uk,6 10317,http://maps.direct.gov.uk/LDGRedirect/MapDetailAction.do,6 10318,http://adi9175.theorytestpro.co.uk,6 10319,http://www.direct.gov.uk/en/Nl1/Newsroom/Pre-BudgetReport2008/DG_172915,6 10320,http://mailgate,6 10321,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/AdoptionAndFostering/DG_10021345,6 10322,http://mail30.abv.bg,6 10323,http://www.thedugout.tv,6 10324,http://mail.naver.com,6 10325,http://mail.medway.org.uk,6 10326,http://www.thefoxwebsite.org,6 10327,http://www.thefraudadvisor.co.uk,6 10328,http://www.thegardensquad.com,6 10329,http://www.thegrangedrivingschool.com,6 10330,http://m.studentmidwife.net,6 10331,http://adi246961.theorytestpro.co.uk,6 10332,http://www.thehollins.com,6 10333,http://www.theidm.com,6 10334,http://www.thelawwizard.com,6 10335,http://lung-breathing-difficulties.nottsinfoscript.co.uk,6 10336,http://www.jhp-group.com,6 10337,http://lsmdriving.net,6 10338,http://www.direct.gov.uk/en/Parents/Lookingafterchildrenifyoudivorceorseparate/Lookingafterchildrenifyourrelationshipends/index.htm,6 10339,http://www.jerseydrivingschool.co.uk,6 10340,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Adoptionrightsintheworkplace/index.htm,6 10341,http://www.jepsonandco.com,6 10342,http://local.which.co.uk,6 10343,http://livesimple-laughoften.blogspot.com,6 10344,http://www.thesmartdrivingschool.co.uk,6 10345,http://www.jddrivingschool.com,6 10346,http://libraries.hillingdongrid.org,6 10347,http://libplugins.sheffield.gov.uk,6 10348,http://leedscyclists.org.uk,6 10349,http://learn.hackney.ac.uk,6 10350,http://ademdjemil.co.uk,6 10351,http://lccintranet.liverpool.local,6 10352,http://www.thisisbristol.co.uk,6 10353,http://www.jasso.go.jp,6 10354,http://landoffreebies.co.uk,6 10355,http://addons.searchalot.com,6 10356,http://www.japancar.fr,6 10357,http://ladycity.lv,6 10358,http://kirbzz.co.uk,6 10359,http://www.yahoo.com,6 10360,http://js.geoads.com,6 10361,http://www.fishforums.net,6 10362,http://www.jaguarmk2.info,6 10363,http://www.jagdrivingtuition.co.uk,6 10364,http://www.timwade.co.uk,6 10365,http://jobseekers.direct.gov.uk./homepage.aspx,6 10366,http://jobseeker.direct.gov.uk./subjectmenu.aspx,6 10367,http://jgdrivingtuition.co.uk,6 10368,http://jeames.stagesite.co.uk,6 10369,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Benefits/BenefitsInRetirement/DG_10026814,6 10370,http://www.firstpracticemanagement.co.uk,6 10371,http://ixquick.co.uk,6 10372,http://iwiw.hu,6 10373,http://iwanttobealandscapearchitect.com,6 10374,http://www.ivillage.co.uk,6 10375,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Benefits/ConcessionsAndOtherHelp/index.htm,6 10376,http://www.hcch.net,6 10377,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/CompanyPensions/DG_10026629,6 10378,http://www.topnotchdriver.co.uk,6 10379,http://iscamp.co.uk,6 10380,http://www.totalconcepttraining.co.uk,6 10381,http://www.estonia.gov.uk,6 10382,http://www.xrv.org.uk,6 10383,http://intranet.vodafone.com,6 10384,http://www.italiansunited.co.uk,6 10385,http://intranet.tynemet.ac.uk,6 10386,http://intranet.oxfam.org.uk,6 10387,http://www.issr-cambodia.com,6 10388,http://www.touchplymouth.com,6 10389,http://www.tourismbusinesstoolkit.co.uk,6 10390,http://intranet.home.ltd.uk,6 10391,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PlanningForRetirement/DG_184445,6 10392,http://intranet.centralbedfordshire.gov.uk,6 10393,http://www.isguvenligi.net,6 10394,http://acemoto.com,6 10395,http://www.tradecycle.co.uk,6 10396,http://intolondon.blogspot.com,6 10397,http://www.estonianguild.co.uk,6 10398,http://internationalstudenttoolkit.com,6 10399,http://www.trailertowingtrainingcentre.co.uk,6 10400,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_183802,6 10401,http://innovate-apps.direct.gov.uk/bereavement/1-0-0.html,6 10402,http://ingiltereforumlari.com,6 10403,http://www.ipl.org,6 10404,http://www.ipbh.org.uk,6 10405,http://www.travelzoo.com,6 10406,http://www.iomfire.com,6 10407,http://in.mc598.mail.yahoo.com,6 10408,http://www.hbinfo.org,6 10409,http://ilsshared2,6 10410,http://ilearn.totton.ac.uk,6 10411,http://www.triochildcare.co.uk,6 10412,http://ie.mg40.mail.yahoo.com,6 10413,http://www.direct.gov.uk/en/prod_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_186307.html,6 10414,http://www.trotonline.co.uk,6 10415,http://www.ts-rc.co.uk,6 10416,http://www.direct.gov.uk/en/TravelAndTransport/Cycling/DG_190101,6 10417,http://iamnewtolondon.com,6 10418,http://www.exmouth.gov.uk,6 10419,http://www.turkishconsulate.org.uk,6 10420,http://www.turkstudent.net,6 10421,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069863,6 10422,http://www.intensivecourses.co.uk,6 10423,http://home.suddenlink.net,6 10424,http://home.inrev.gov.uk,6 10425,http://home-ed.info,6 10426,http://home,6 10427,http://hocan.inrev.gov.uk,6 10428,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070309,6 10429,http://hmctscourtfinder.direct.gov.uk/HMCTS/Search.do,6 10430,http://hk.mg25.mail.yahoo.com,6 10431,http://www.instructordoctors.co.uk,6 10432,http://www.ueastudent.com,6 10433,http://www.uel.ac.uk:80,6 10434,http://www.instapaper.com,6 10435,http://www.uggaustralia.ca,6 10436,http://heddowen.info,6 10437,http://health.groups.yahoo.com,6 10438,http://he.bishopburton.ac.uk,6 10439,http://harleytalking.com,6 10440,http://www.ukbiblecolleges.com,6 10441,http://www.ukbikeforum.com,6 10442,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applicationinformation/index.htm,6 10443,http://www.ukcorsa-d.com,6 10444,http://www.ukdrive.net,6 10445,http://www.ukexpert.co.uk,6 10446,http://greaterlondonfosteri-px.rtrk.co.uk,6 10447,http://ys.dul.startya.com,6 10448,http://gr.search.yahoo.com,6 10449,http://go2pass.theorytestpro.co.uk,6 10450,http://go.guildford.ac.uk,6 10451,http://www.uksaabs.co.uk,6 10452,http://www.finishingtouchesgroup.com,6 10453,http://gillinghamjc.webs.com,6 10454,http://gfy.com,6 10455,http://getbike.co.uk,6 10456,http://game-real-time.com,6 10457,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/RailTravel/DG_10036295,6 10458,http://www.direct.gov.uk/en/TravelAndTransport/PublicTransport/RailTravel/DG_10036295,6 10459,http://fshc.careshield.co.uk,6 10460,http://fsahome,6 10461,http://www.xiaoyingwu.com,6 10462,http://www.eurodesk.org.uk,6 10463,http://www.umss.co.uk,6 10464,http://frog.ilsley.bham.sch.uk,6 10465,http://freespace.virgin.net,6 10466,http://83.170.105.116,6 10467,http://freemail.hu,6 10468,http://forums.thinkbroadband.com,6 10469,http://www.direct.gov.uk/en/Video/StudentFinance/index.htm,6 10470,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/TypesOfCrime/DG_10027666,6 10471,http://www.ilrg.com,6 10472,http://forums.kashflow.com,6 10473,http://forums.ivillage.co.uk,6 10474,http://forum.studenti.it,6 10475,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/Bullying/index.htm,6 10476,http://forum.rangersmedia.co.uk,6 10477,http://www.iinet.net.au,6 10478,http://www.direct.gov.uk/en/YoungPeople/Housing/DG_181382,6 10479,http://www.uss.co.uk,6 10480,http://forum.mndassociation.org,6 10481,http://forum.isory.org,6 10482,http://forum.gs500.pl,6 10483,http://www.ifms.net,6 10484,http://www.ifl.ac.uk,6 10485,http://forum.disabledbiker.co.uk,6 10486,http://www.valuevisas.com,6 10487,http://forum.desprecopii.com,6 10488,http://www.varndean.ac.uk,6 10489,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Planningyourfuture/DG_181771,6 10490,http://www.verisona.com,6 10491,http://flvtubesearch.co,6 10492,http://www.direct.gov.uk/en/YoungPeople/Youngdisabledpeople/DG_10039695,6 10493,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/foundation/index_tf.htm,6 10494,http://www.videace.com,6 10495,http://74.125.39.99,6 10496,http://www.virginatlantictravelplus.com,6 10497,http://www.ideastore.co.uk,6 10498,http://find-allyouneed.com,6 10499,http://fi.flybe.com,6 10500,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@crime/documents/digitalasset/dg_071396.pdf,6 10501,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@disabled/documents/digitalasset/dg_177366.pdf,6 10502,http://www.visionapprentices.co.uk,6 10503,http://www.visitbritain.com,6 10504,http://fazer.motocykl.org,6 10505,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_199220.pdf,6 10506,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_4015378.pdf,6 10507,http://www.ichypnosis.com,6 10508,http://www.voa.co.uk,6 10509,http://www.volkszone.co.uk,6 10510,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@over50/documents/digitalasset/dg_180391.pdf,6 10511,http://www.ibpacademy.com,6 10512,http://www.direct.gov.uk/prod_consum_dg/groups/dg_general/@dg/documents/digitalasset/dg_065306.jpg,6 10513,http://essexlibraries.theorytestpro.co.uk,6 10514,http://www.vwcaddy.com,6 10515,http://epetitions.direct.gov.uk/petitions/14395,6 10516,http://email.nottscc.gov.uk,6 10517,http://www.i-scoot.co.uk,6 10518,http://www.hythecare.com,6 10519,http://www.dius.gov.uk,6 10520,http://ecodrivendrivingschool.co.uk,6 10521,http://ec2-46-137-41-128.eu-west-1.compute.amazonaws.com,6 10522,http://www.dlf.org.uk,6 10523,http://www.warringtondrivingschool.co.uk,6 10524,http://easyinternet.weebly.com,6 10525,http://www.warwickshire.police.uk,6 10526,http://www.wasteawarenesswales.org.uk,6 10527,http://www.doggybog.com,6 10528,http://www.dolceta.eu,6 10529,http://www.waterplc.com,6 10530,http://dundee.theorytestpro.co.uk,6 10531,http://www.wea.org.uk,6 10532,http://www.wearethistle.co.uk,6 10533,http://www.huddleboard.net,6 10534,http://www.dosh.gov.my,6 10535,http://drivingmanagementsolutions.co.uk,6 10536,http://drivingcourses.co.uk,6 10537,http://www.hub.slb.com,6 10538,http://www.webmentorlibrary.com,6 10539,http://www.dpasom.com,6 10540,http://www.dpsonline.org.uk,6 10541,http://www.hsg.haringey.sch.uk,6 10542,http://www.hsbc.co.uk,6 10543,http://dmserver2,6 10544,http://www.drive-academy.co.uk,6 10545,http://www.drive-eco.com,6 10546,http://www.drive-lessons.co.uk,6 10547,http://www.drive-with.me.uk,6 10548,http://www.drive.ru,6 10549,http://www.weltondrivertraining.co.uk,6 10550,http://diecastrestorations.myfreeforum.org,6 10551,http://de.mc1374.mail.yahoo.com,6 10552,http://www.drivershandbook.com,6 10553,http://www.fergusonsolicitors.co.uk,6 10554,http://www.driveshetland.com,6 10555,http://www.westnet.com.au,6 10556,http://www.housing21.co.uk,6 10557,http://www.femaledrivinginstructorsswindon.co.uk,6 10558,http://crimestoppers-uk.org,6 10559,http://www.westonturville.bucks.sch.uk,6 10560,http://blog.cpap.co.uk,6 10561,http://www.drivewithanne.co.uk,6 10562,http://cptt.ac.uk,6 10563,http://course.bihe-new2.org,6 10564,http://council-tax:8888,6 10565,http://www.driving-lessons-glasgow.com,6 10566,http://www.wfh.naturalengland.org.uk,6 10567,http://copern.infospace.com,6 10568,http://www.whathifi.com,6 10569,http://www.drivingcornwall.co.uk,6 10570,http://www.whatprice.co.uk,6 10571,http://www.whatsmycarworth.co.uk,6 10572,http://www.drivinginstructor.me,6 10573,http://consumerfocusapps.vph.co.uk,6 10574,http://www.drivinginstructorinworkington.co.uk,6 10575,http://consulmex.sre.gob.mx,6 10576,http://www.drivinginstructorsstoke.co.uk,6 10577,http://www.wheelchair-ramps.co.uk,6 10578,http://www.drivinglessons-cardiff.co.uk,6 10579,http://www.drivinglessonsfife.com,6 10580,http://comsearchname.ipage.com,6 10581,http://217.64.230.201,6 10582,http://community.virginmedia.com,6 10583,http://www.white-rose.co.uk,6 10584,http://www.drivinglessonsinfife.co.uk,6 10585,http://blog.daum.net,6 10586,http://www.drivinglessonskt3.co.uk,6 10587,http://www.halowproject.org.uk,6 10588,http://www.feelfreedriving.com,6 10589,http://colin.york.gov.uk,6 10590,http://www.drivingschoolgrimsby.co.uk,6 10591,http://www.whub.org.uk,6 10592,http://www.drivingschoolsingosport.co.uk,6 10593,http://www.drivingschoolwembley.com,6 10594,http://cm2.iow.gov.uk,6 10595,http://www.wikiwirral.co.uk,6 10596,http://cleveryou.org,6 10597,http://citywire.co.uk,6 10598,http://cityweb,6 10599,http://cityquads.co.uk,6 10600,http://www.drpl.co.uk,6 10601,http://christchurchgarage.com,6 10602,http://www.dsa.gov.uk,6 10603,http://www.williams-som.co.uk,6 10604,http://www.dsabooks.co.uk,6 10605,http://www.willowfieldfuneralservices.com,6 10606,http://cheaptalk.org,6 10607,http://certificatedbailiffs.justice.gov.uk,6 10608,http://www.holmesdale.net,6 10609,http://www.windsorhillps.co.uk,6 10610,http://celticdrivingsolutions.com,6 10611,http://cbtcheshire.com,6 10612,http://cbse-sample-papers.blogspot.com,6 10613,http://www.holborndrivingschool.co.uk,6 10614,http://www.dyslexiaa2z.com,6 10615,http://www.dyspraxicadults.org.uk,6 10616,http://www.dystonia.org.uk,6 10617,http://www.wlmht.nhs.uk,6 10618,http://www.wmpfonline.com,6 10619,http://www.wnc.ac.uk,6 10620,http://campaigns.direct.gov.uk/actonco2/home/in-the-home/save-energy.html,6 10621,http://cafe.naver.com,6 10622,http://cafcassintranet,6 10623,http://ca.yhs.search.yahoo.com,6 10624,http://www.wonderlandnursery.co.uk,6 10625,http://www.wordmagazine.co.uk,6 10626,http://business.timesonline.co.uk,6 10627,http://www.hkfschoolofmotoring.co.uk,6 10628,http://www.workingmums.co.uk,6 10629,http://www.exmoorschoolofmotoring.co.uk,6 10630,http://www.hither-green.co.uk,6 10631,http://bromley.olminfoserve.co.uk,6 10632,http://bristol.ac.uk,6 10633,http://bradbys.theorytestpro.co.uk,6 10634,http://br.search.yahoo.com,6 10635,http://br.ask.com,6 10636,http://www.familyresourcecentreuk.com,6 10637,http://bookmarks.yahoo.com,6 10638,http://www.harley-davidson.com,6 10639,http://www.echomagazin.com,6 10640,http://www.godiamond.co.uk,6 10641,http://www.hillsofplumpton.co.uk,6 10642,http://www.ecoheatukltd.co.uk,6 10643,http://www.go2pass.co.uk,6 10644,http://www.edexcel.com,6 10645,http://www.edition38.com,6 10646,http://www.glasgowlife.org.uk,6 10647,http://www.gigglesoflythamnursery.co.uk,6 10648,http://www.ghnet.co.uk,6 10649,http://www.egra.co.uk,6 10650,http://www.google.co.za.,6 10651,http://www.google.com.au.,6 10652,http://www.elbrusoid.org,6 10653,http://www.eldercare-solutions.co.uk,6 10654,http://www.hgs-online.org.uk,6 10655,http://www.wrexhamhousing.co.uk,6 10656,http://www.electoral-roll-search.co.uk,6 10657,http://www.ellisandco.co.uk,6 10658,http://www.herts.police.uk,6 10659,http://www.google.tm,6 10660,http://www.geoffmsmith.co.uk,6 10661,http://www.gordonfrankstraining.co.uk,6 10662,http://www.f1autocentres.co.uk,6 10663,http://www.goseethem.com,6 10664,http://www.ezeframe.co.uk,6 10665,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/DG_10022605,6 10666,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/YourEmploymentRights/index.htm,6 10667,http://www.n-kesteven.gov.uk,6 10668,http://www.nacasadvice.org.uk,6 10669,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/SupportedHousingSchemes/DG_4000297,6 10670,http://www.mycommunitystuff.com,6 10671,http://www.nagykaland.com,6 10672,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/YourHome/DG_10018283,6 10673,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/YourHome/DG_10029422,6 10674,http://www.namechangeco.com,6 10675,http://www.mybusiness.co.uk,6 10676,http://www.mybuilder.com,6 10677,http://www.gateshead.ac.uk,6 10678,http://www.narpo-merseyside.org.uk,6 10679,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018302,6 10680,http://www.national-lottery.co.uk,6 10681,http://www.my-plumber.co.uk,6 10682,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017923,6 10683,http://www.gasta.com,6 10684,http://www.nayt.org.uk,6 10685,http://www.nazkusenou.cz,6 10686,http://www.garrysdrivingschool.org.uk,6 10687,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_182375,6 10688,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/VictimsOfCrime/DG_070444,6 10689,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Typesofcrime/DG_182047,6 10690,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/ThePolice/DG_181733,6 10691,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010938,6 10692,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Familyandfriendsofprisoners/DG_196213,6 10693,http://www.msm-driving-school.org,6 10694,http://www.newcastle-drivingschool.co.uk,6 10695,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011230,6 10696,http://www.newcastle-online.org,6 10697,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011238,6 10698,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011245,6 10699,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/CrimePrevention/DG_181558,6 10700,http://www.mpw.co.uk,6 10701,http://www.newportcityhomes.com,6 10702,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011568,6 10703,http://www.gamedals.co.uk,6 10704,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10023093,5 10705,http://www.grimeforum.com,5 10706,http://www.levertons.co.uk,5 10707,http://vision2learn.com,5 10708,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_073190,5 10709,http://vle.bexley.ac.uk,5 10710,http://www.sclero.org,5 10711,http://www.thepensionservices.gov.uk,5 10712,http://localhost:3444,5 10713,http://www.sciencetechnician.com,5 10714,http://vle.furness.ac.uk,5 10715,http://www.thepremierschoolofmotoring.co.uk,5 10716,http://www.theptbusinesscoach.com,5 10717,http://www.pacts.org.uk,5 10718,http://vle.havering-college.ac.uk,5 10719,http://www.p1driveschool.co.uk,5 10720,http://vle.newbury-college.ac.uk,5 10721,http://vle.saint-michaels.lancs.sch.uk,5 10722,http://vle.tameside.ac.uk,5 10723,http://yorksyanks.co.uk,5 10724,http://www.jeffcummings.f2s.com,5 10725,http://www.fmprc.gov.cn,5 10726,http://www.scholarshipportal.eu,5 10727,http://www.fitariffs.co.uk,5 10728,http://www.nippyhire.com,5 10729,http://www.thesmartpeople.co.uk,5 10730,http://link.nsafs.co.uk,5 10731,http://library.open.ac.uk,5 10732,http://watchinga4e.blogspot.com,5 10733,http://webcmstest,5 10734,http://www.direct.gov.uk/en/Parents/Preschooldevelopmentandlearning/HelpingYourChildToLearn/index.htm,5 10735,http://www.oxoncarers.org.uk,5 10736,http://www.nelsonsonline.co.uk,5 10737,http://campaigns.direct.gov.uk/actonco2/home/on-the-move/new-car-co2-emissions-model-search.html,5 10738,http://lfportal.landforces.r.mil.uk,5 10739,http://webgate2,5 10740,http://letskeepcrimedown.direct.gov.uk/index.html,5 10741,http://webhelper.centurylink.com,5 10742,http://leicester.gov.uk,5 10743,http://www.theukhighstreet.com,5 10744,http://www.yoursigns.co.uk,5 10745,http://www.thevillage.org.uk,5 10746,http://learning.royallatin.bucks.sch.uk,5 10747,http://learning.johncolet.bucks.sch.uk,5 10748,http://www.thevwaudispecialists.co.uk,5 10749,http://webl.cbc.int,5 10750,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Gettingstarted/DG_199403,5 10751,http://www.thewhocarestrust.org.uk,5 10752,http://learn.guidedelearning.com,5 10753,http://leakbusters5-px.rtrk.co.uk,5 10754,http://webmail.emailsrvr.com,5 10755,http://www.oxfordradcliffe.nhs.uk,5 10756,http://cameracraniums.com,5 10757,http://webmarshal.home,5 10758,http://lbss.moodle.gla.ac.uk,5 10759,http://adelaidedriving.com,5 10760,http://lbo.inrev.gov.uk,5 10761,http://www.jaydax.co.uk,5 10762,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BeginnersGuideToBenefits/DG_171076,5 10763,http://www.hantsnwa.org.uk,5 10764,http://www.jawagroup.co.uk,5 10765,http://webserver1,5 10766,http://www.oxbridge.sk,5 10767,http://www.owlsmoorprimary.com,5 10768,http://www.jasonroberts-som.co.uk,5 10769,http://lancs.pl,5 10770,http://www.sandjselfdrive.co.uk,5 10771,http://www.motherwell.ac.uk,5 10772,http://www.fit4funding.org.uk,5 10773,http://lambeth.coop,5 10774,http://www.motuk.co.uk,5 10775,http://westley.theorytestpro.co.uk,5 10776,http://www.nepho.org.uk,5 10777,http://www27.yoog.com,5 10778,http://wiki.inmarsat.com,5 10779,http://knowledgecentre,5 10780,http://www.thorpe-careers.org.uk,5 10781,http://kn.psn-ni.gov.uk,5 10782,http://www.sallys-driving-school.co.uk,5 10783,http://www.salixhomes.org,5 10784,http://kirbzz.theorytestpro.co.uk,5 10785,http://by171w.bay171.mail.live.com,5 10786,http://www.outwardfacingschools.org.uk,5 10787,http://www.jamiemoffat-drivingschool.co.uk,5 10788,http://wolseyweb.ucs.ac.uk,5 10789,http://wolvesnet,5 10790,http://kentchoices4u.com,5 10791,http://kent.theorytestpro.co.uk,5 10792,http://10.2.1.15,5 10793,http://keepbritaintidy.org,5 10794,http://www.yourspacewestsussex.co.uk,5 10795,http://www.mickrowe.co.uk,5 10796,http://jookz.toolbaroptions.com,5 10797,http://jonquicksilver.theorytestpro.co.uk,5 10798,http://www.time2drive.co.uk,5 10799,http://www.time2ride.co.uk,5 10800,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/YourChildsWelfareAtSchool/DG_10037983,5 10801,http://www.oup.co.uk,5 10802,http://www.jaguarforum.co.uk,5 10803,http://www.lifeintheunitedkingdomtest.co.uk,5 10804,http://ww2.reading.gov.uk,5 10805,http://www.cookstownmagherafeltvc.org,5 10806,http://www.timetopassdrivingschool.co.uk,5 10807,http://www.eastendgp.co.uk,5 10808,http://www-ubs.fconet.fco.gov.uk,5 10809,http://jobseekers.direct.gov.uk/ConfirmLogout.aspx,5 10810,http://www.tntpost.co.uk,5 10811,http://www.copeland.gov.uk,5 10812,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011463,5 10813,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Internetsafety/DG_071138,5 10814,http://jobseeker.direct.gov.uk./loginregister.aspx,5 10815,http://www.060.es,5 10816,http://jobseeker.direct.gov.uk./currentsearch.aspx,5 10817,http://www.focus-info.org,5 10818,http://www.17to40.co.uk,5 10819,http://www.1licence.net,5 10820,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/WorriedAbout/DG_10037079,5 10821,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/WorriedAbout/DG_171325,5 10822,http://jobs.thetimes.co.uk,5 10823,http://jobs.newcastle.gov.uk,5 10824,http://www.tonybingham.co.uk,5 10825,http://www.tonybudd.co.uk,5 10826,http://joannetest.toolkit.sitekit.net,5 10827,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011763,5 10828,http://127.0.0.1:2372,5 10829,http://10.13.0.60,5 10830,http://www.1st-time-driving-school.co.uk,5 10831,http://jancett.co.uk,5 10832,http://buckscc.theorytestpro.co.uk,5 10833,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/NoiseNuisanceAndLitter/DG_10029999,5 10834,http://www.topcatdrivingschool.co.uk,5 10835,http://www.xtec.cat,5 10836,http://www.copeohs.com,5 10837,http://www.topdog-drivingschool.co.uk,5 10838,http://www.direct.gov.uk/en/Dl1/Directories/DG_067880,5 10839,http://www.1stchoiceaupairs.co.uk,5 10840,http://www.cpt-uk.org,5 10841,http://www.creditlaw.co.uk,5 10842,http://italiansinfuga.ning.com,5 10843,http://www.1stdrive-drivingschool.co.uk,5 10844,http://issubjectwiki.staffs.ac.uk,5 10845,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/ThePolice/index.htm,5 10846,http://www.topmarkdrivingschool.co.uk,5 10847,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011639,5 10848,http://bscf.easysearch.org.uk,5 10849,http://www.247recruitmentkent.co.uk,5 10850,http://www.mienterprise.org.uk,5 10851,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Companyandpersonalpensions/CompanyPensions/index.htm,5 10852,http://islingtondrivingschool.learning2drive.net,5 10853,http://bikesafe-sheffield.co.uk,5 10854,http://bar2.co.uk,5 10855,http://iris.wbc.local,5 10856,http://www.lindseyglover.co.uk,5 10857,http://www.rwheelerdrivinginstructor.co.uk,5 10858,http://iplatform.intranet.point,5 10859,http://yourarchives.nationalarchives.gov.uk,5 10860,http://www.opinionpanel.co.uk,5 10861,http://www.totaldriving.net,5 10862,http://www.totalgp.com,5 10863,http://www.energylink.org.uk,5 10864,http://www.linkshelf.com,5 10865,http://www.its-ltd.net,5 10866,http://intranet2.salford.coopbank,5 10867,http://www.501csw.usafe.af.mil,5 10868,http://www.totalmini.com,5 10869,http://intranet.xaverian.ac.uk,5 10870,http://www.moto-vation.net,5 10871,http://www.crimetalk.org.uk,5 10872,http://www.itcstudentarea.co.uk,5 10873,http://intranet.uk.capgemini.com,5 10874,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010835,5 10875,http://www.easypassdrivingschool.com,5 10876,http://www.a-class-driving.com,5 10877,http://intranet.sandlnk.net,5 10878,http://www.opensiteexplorer.org,5 10879,http://intranet.ordsvy.gov.uk,5 10880,http://www.istructe.org,5 10881,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/GrantsFundsAndStandards/DG_10020842,5 10882,http://intranet.oldham.gov.uk,5 10883,http://www.nigelsecostore.com,5 10884,http://www.lionsmd105.org,5 10885,http://bedsintranet.sharedservices.police.cjx.gov.uk,5 10886,http://intranet.northamptonshire.gov.uk,5 10887,http://www.gunnproperty.co.uk,5 10888,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Probation/index.htm,5 10889,http://www.islinguists.com,5 10890,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/KeepingSafeAtHome/index.htm,5 10891,http://www.ebi.ac.uk,5 10892,http://www.mikegubbdriving.co.uk,5 10893,http://intranet.fsg.lan,5 10894,http://www.aber.ovh.org,5 10895,http://www.abingdon-witney.ac.uk,5 10896,http://www.islandpulse.co.uk,5 10897,http://www.abldriving.co.uk,5 10898,http://www.rsmotoring.com,5 10899,http://www.mikeharrisondrivinginstructor.co.uk,5 10900,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Probation/DG_181731,5 10901,http://www.toyotagtturbo.com,5 10902,http://www.rsmayr.co.uk,5 10903,http://www.tpos.co.uk,5 10904,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Dealingwithemergencies/Supportafteramajorincident/DG_078069,5 10905,http://www.cropkent.org.uk,5 10906,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Dealingwithemergencies/Preparingforemergencies/DG_177092,5 10907,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/DecidingWhereToStudy/DG_10031740,5 10908,http://www.trademymotor.co.uk,5 10909,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/DecidingWhereToStudy/DG_065789,5 10910,http://internsanonymous.co.uk,5 10911,http://www.oople.com,5 10912,http://www.iro.hr,5 10913,http://bear,5 10914,http://internal.csduk.com,5 10915,http://www.access-1st.co.uk,5 10916,http://int-staging,5 10917,http://www.familyhealthcare.org.uk,5 10918,http://www.trainhols.com,5 10919,http://www.croydonyps.org.uk,5 10920,http://www.iq-portal.co.uk,5 10921,http://insite.coventry.gov.uk,5 10922,http://www.ipswichridertraining.co.uk,5 10923,http://bigbrief2.0.sj.dev.edgehill.ac.uk,5 10924,http://insite,5 10925,http://www.epa.gov.tw,5 10926,http://www.foodforemergency.com,5 10927,http://www.motoden.com,5 10928,http://www.ecgd.gov.uk,5 10929,http://www.liveandworkin.eu,5 10930,http://www.livepages.co.uk,5 10931,http://www.roycastle.org,5 10932,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ChoicesAfterYouGraduate/DG_174816,5 10933,http://infozone.dwrcymru.com,5 10934,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Volunteering/DG_195552,5 10935,http://www.aceridertrainingdevon.co.uk,5 10936,http://b3ta.com,5 10937,http://www.acheilondres.com,5 10938,http://www.living-england.com,5 10939,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Volunteering/DG_070089,5 10940,http://inet,5 10941,http://www.firstgear-school.co.uk,5 10942,http://indiansinuk.info,5 10943,http://indabayoga.com,5 10944,http://www.aclasslearners.com,5 10945,http://www.direct.gov.uk/en/Pensionsandretirementplanning/TaxandNationalInsuranceinretirement/GettingyourtaxandNationalInsuranceright/DG_10014681,5 10946,http://www.iop.kcl.ac.uk,5 10947,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011485,5 10948,http://inblighty.com,5 10949,http://www.onlydads.org,5 10950,http://www.route65som.co.uk,5 10951,http://www.eco-drivers.co.uk,5 10952,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Repairsandstandards/DG_188673,5 10953,http://www.activebirth-oxford.co.uk,5 10954,http://www.direct.gov.uk/en/Pensionsandretirementplanning/TaxandNationalInsuranceinretirement/GettingyourtaxandNationalInsuranceright/DG_171913,5 10955,http://immigrationboards.com,5 10956,http://www.firstclasslearning.co.uk,5 10957,http://www.acupuncturecollege.org.uk,5 10958,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ApplyingForAHigherEducationCourse/DG_10013250,5 10959,http://bicycles.stackexchange.com,5 10960,http://www.ademario-lobrano.it,5 10961,http://www.guysandstthomas.nhs.uk,5 10962,http://www.enfields.co.uk,5 10963,http://www.netscape.co.uk,5 10964,http://www.csaconsumers-uk.com,5 10965,http://www.cswp.org.uk,5 10966,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Councilhousing/DG_188698,5 10967,http://www.hills-driving.co.uk,5 10968,http://www.triumph-tiger-90.com,5 10969,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011701,5 10970,http://www.roninconcepts.co.uk,5 10971,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Councilhousing/DG_188541,5 10972,http://idesigni.co.uk,5 10973,http://www.ads2pass.co.uk,5 10974,http://www.rogerdarlington.co.uk,5 10975,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/MobileHousing/DG_191102,5 10976,http://www.afrigeneas.com,5 10977,http://www.locallife.co.uk,5 10978,http://www.futureshg.co.uk,5 10979,http://www.ageconcerndarentvalley.org.uk,5 10980,http://icam,5 10981,http://www.cswpnextstep.org.uk,5 10982,http://www.direct.gov.uk/en/TravelAndTransport/Cycling/index.htm,5 10983,http://www.ageconcerntorfaen.org,5 10984,http://ian.exe.nhs.uk,5 10985,http://www.go-escape.com,5 10986,http://www.agriaffaires.co.uk,5 10987,http://www.roadworks-driving.co.uk,5 10988,http://www.forocoches.com,5 10989,http://www.ttmotorcycleschool.co.uk,5 10990,http://i-site.nulc.ac.uk,5 10991,http://www.tulipdrivingschool.co.uk,5 10992,http://www.aker-advantage.com,5 10993,http://www.goingtravel.co.uk,5 10994,http://www.intersolicitors.co.uk,5 10995,http://www.roadmasterdrivingacademy.com,5 10996,http://www.alanpither.com,5 10997,http://hud.ac.uk,5 10998,http://hrbird.org.uk,5 10999,http://www.onehousinggroup.co.uk,5 11000,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/BringinggoodsorcashintotheUK/DG_181092,5 11001,http://www.edagroup.co.uk,5 11002,http://www.alanricedrivingschool.co.uk,5 11003,http://www.locumvoice.com,5 11004,http://www.alcohollearningcentre.org.uk,5 11005,http://www.wsfhs.org,5 11006,http://www.alcohollicence.org,5 11007,http://www.tuviajealondres.com,5 11008,http://hotwire,5 11009,http://www.alices.org.uk,5 11010,http://www.allaboutdrivinguk.com,5 11011,http://www.logicdrivingschool.co.uk,5 11012,http://horsegossip.proboards.com,5 11013,http://www.tvmt.net,5 11014,http://www.tvwbl.net,5 11015,http://www.allenhoole.co.uk,5 11016,http://www.riverviewrt.com,5 11017,http://www.twfire.gov.uk,5 11018,http://www.allriders.co.uk,5 11019,http://www.alohalearners.co.uk,5 11020,http://www.ctem.uk.com,5 11021,http://homebuy.co.uk,5 11022,http://home.zois.co.uk,5 11023,http://www.omegafmradio.com,5 11024,http://www.direct.gov.uk/en/Hl1/Help/YourQuestions/YourQuestionsSix/DG_068281,5 11025,http://www.cwh.org.uk,5 11026,http://www.rip-off.co.uk,5 11027,http://www.londonbikeandscooter.co.uk,5 11028,http://www.cyclegm.org,5 11029,http://www.tzero.org.uk,5 11030,http://www.highwycombeschoolofmotoring.co.uk,5 11031,http://www.u3a.org.uk,5 11032,http://www.anbaldryschoolofmotoring.co.uk,5 11033,http://www.gloucesterworks.co.uk,5 11034,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/StatePension/DG_183754CY,5 11035,http://aa.mg2.mail.yahoo.com,5 11036,http://www.andreaholland.co.uk,5 11037,http://www.andreainwonderland.blogspot.com,5 11038,http://www.andrewknightdriving.org.uk,5 11039,http://www.cyprusexpat.co.uk,5 11040,http://hmctscourtfinder.justice.gov.uk,5 11041,http://www.euractiv.sk,5 11042,http://www.glosfamiliesdirectory.org.uk,5 11043,http://www.ok.hu,5 11044,http://www.rightsforinterns.org.uk,5 11045,http://hinet,5 11046,http://www.direct.gov.uk/en/Hl1/Help/DG_064158,5 11047,http://apcomparativegov.com,5 11048,http://www.yorkshirehousing.co.uk,5 11049,http://www.udrivemsm.co.uk,5 11050,http://www.gloscol.ac.uk,5 11051,http://www.golearners.co.uk,5 11052,http://hertscc.theorytestpro.co.uk,5 11053,http://www.dabs.com,5 11054,http://www.futurestrategiestraining.co.uk,5 11055,http://applications.huntsdc.gov.uk,5 11056,http://www.daciaclub.ro,5 11057,http://www.uhi.ac.uk,5 11058,http://www.edlounge.co.uk,5 11059,http://www.rickstringer.co.uk,5 11060,http://www.uk-click.co.uk,5 11061,http://www.anthonypym.co.uk,5 11062,http://www.dadrive.co.uk,5 11063,http://www.good-migration.co.uk,5 11064,http://www.apad.org.uk,5 11065,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Discrimination-yourrights/DG_195201,5 11066,http://www.londralondra.com,5 11067,http://www.richardcorbett.org.uk,5 11068,http://www.ribaappointments.com,5 11069,http://www.dadrl.org.uk,5 11070,http://www2.newcastle.gov.uk,5 11071,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Politicalpartiesandelections/DG_073240,5 11072,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Parliament/DG_073479,5 11073,http://www.loot.com,5 11074,http://www.arkive.org,5 11075,http://gwiz.myfastforum.org,5 11076,http://www.goodday.org.uk,5 11077,http://www.highfieldchildrenscentre.co.uk,5 11078,http://www.retrorides.proboards.com,5 11079,http://www.lordgrey.org.uk,5 11080,http://www.resource1.soton.ac.uk,5 11081,http://www.residentiallandlord.co.uk,5 11082,http://apps.mhf.dod.mil,5 11083,http://www.glassrecycle.co.uk,5 11084,http://bez-wypadkowe.net,5 11085,http://www.rentmyhouseback.com,5 11086,http://groupspaces.intranet.barclays.co.uk,5 11087,http://www.rentaltrader.co.uk,5 11088,http://www.direct.gov.uk/en/CaringForSomeone/CaringForADisabledChild/DG_180187,5 11089,http://www.ashdenepreschool.org.uk,5 11090,http://green.search.goo.ne.jp,5 11091,http://www.ukdic.co.uk,5 11092,http://www.educacion.gob.es,5 11093,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applyingforyourfirstadultpassport/DG_174104,5 11094,http://www.renaultsport.co.uk,5 11095,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Researchingfamilyhistory/DG_176073,5 11096,http://www.glan-hafren.ac.uk,5 11097,http://www.gkdrivers.com,5 11098,http://www.rememberthemilk.com,5 11099,http://www.askjeeves.com.,5 11100,http://www.giveacar.co.uk,5 11101,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Familyhistoryandresearch/index.htm,5 11102,http://www.giuseppeimprota.com,5 11103,http://www.uklearnenglish.com,5 11104,http://www.at-work-from-home.co.uk,5 11105,http://www.atceries.lv,5 11106,http://www.atcu.org.uk,5 11107,http://google.dodo.com.au,5 11108,http://google.co.uk,5 11109,http://www.infolinx.org,5 11110,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthandadoptionrecords/Registeringorchangingabirthrecord/DG_175698,5 11111,http://www.atm-online.co.uk,5 11112,http://www.atomdriving.co.uk,5 11113,http://www.dadtalk.co.uk,5 11114,http://www.ukpassats.co.uk,5 11115,http://www.offroad-bulgaria.com,5 11116,http://gloucestershire.gov.uk,5 11117,http://global.uggaustralia.com,5 11118,http://www.gingerbread.org.uk,5 11119,http://www.damisela.com,5 11120,http://www.aukweb.net,5 11121,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Working/WorkingToSuitYou/DG_184309CY,5 11122,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Loststolenordamagedpassports/DG_174164,5 11123,http://www.gicms.co.uk,5 11124,http://www.uksponsorship.com,5 11125,http://geton.direct.gov.uk/,5 11126,http://www.yourhorizons.com,5 11127,http://george,5 11128,http://www.redlessons.co.uk,5 11129,http://genforum.genealogy.com,5 11130,http://gemseducation.com,5 11131,http://www.redl1.com,5 11132,http://www.autismuk.com,5 11133,http://garrysdrivingschool.theorytestpro.co.uk,5 11134,http://www.findmeagarage.co.uk,5 11135,http://www.automatic-driving-instructor.co.uk,5 11136,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/GetLearning/DG_10033340,5 11137,http://www.redcross.org.uk,5 11138,http://www.automatics4u.co.uk,5 11139,http://galaxy.theorytestpro.co.uk,5 11140,http://g-lite.co.uk,5 11141,http://www.direct.gov.uk/cy/TravelAndTransport/PublicTransport/BusAndCoachTravel/DG_10036264CY,5 11142,http://funding.creative-choices.co.uk,5 11143,http://www.dartforddrivertraining.co.uk,5 11144,http://www.recycling-guide.org.uk,5 11145,http://www.avenuedesecoles.com,5 11146,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingarrangementsincaseyoulosementalcapacity/DG_186369,5 11147,http://www.financial-ombudsman.org.uk,5 11148,http://www.recycleforgreatermanchester.com,5 11149,http://www.avivastaffpension.co.uk,5 11150,http://www2.mssociety.org.uk,5 11151,http://www.ayrschoolofmotoring.co.uk,5 11152,http://www.direct.gov.uk/dr_consum_dg/groups/cta/documents/webasset/buttons.css,5 11153,http://www.lshtm.ac.uk,5 11154,http://www.direct.gov.uk/en/CaringForSomeone/CareHomes/DG_10031520,5 11155,http://www.getintotheatre.org,5 11156,http://www.davesdrivingtuition.com,5 11157,http://www.graduatedrivertraining.co.uk,5 11158,http://www.un.org,5 11159,http://www.rearparty.co.uk,5 11160,http://www.imrg.org,5 11161,http://www.fraudadvisorypanel.org,5 11162,http://www.readingglassesshopper.com,5 11163,http://www.babyblog.ru,5 11164,http://www.exchangeandmart.co.uk,5 11165,http://www.ltmuseum.co.uk,5 11166,http://www.freebird-driving.co.uk,5 11167,http://frenchalps.angloinfo.com,5 11168,http://www.davidlerry.co.uk,5 11169,http://www.davidporterdrivingtuition.co.uk,5 11170,http://www.direct.gov.uk/en/Video/DG_WP195669,5 11171,http://www.hgsm.co.uk,5 11172,http://www.direct.gov.uk/en/Video/DG_WP197374,5 11173,http://www.ltscotland.org.uk,5 11174,http://www.badmothersclub.co.uk,5 11175,http://www.unipol.leeds.ac.uk,5 11176,http://z10.invisionfree.com,5 11177,http://www.rcseng.ac.uk,5 11178,http://www.bainsdrivingschool.co.uk,5 11179,http://www.motorcycleinfo.co.uk,5 11180,http://forums.sv650.org,5 11181,http://www.direct.gov.uk/dr_consum_dg/groups/dg_digitalassets/@dg/@en/@over50/documents/digitalasset/dg_180220.pdf,5 11182,http://www.unitedutilities.com,5 11183,http://78.136.18.65:16290,5 11184,http://forums.paisleydailyexpress.co.uk,5 11185,http://www.unlock.org.uk,5 11186,http://www.ravenht.org.uk,5 11187,http://www.dda-ramps.co.uk,5 11188,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/TypesOfCrime/DG_10027680,5 11189,http://www.rapidcarscrap.co.uk,5 11190,http://www.getdrivinguk.com,5 11191,http://www.lymmdrivingschool.co.uk,5 11192,http://www.ddfra.co.uk,5 11193,http://www.fward.co.uk,5 11194,https://www.booktheorytests.co.uk,5 11195,http://www.you-drive-like-an-arsehole.co.uk,5 11196,http://www.direct.gov.uk/en/YoungPeople/DG_10034785,5 11197,http://www.direct.gov.uk/en/YoungPeople/DG_10035224,5 11198,http://www.lynhurst-som.co.uk,5 11199,http://www.ramh.org,5 11200,http://forum.styl.fm,5 11201,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/Bullying/DG_10031370,5 11202,http://www.elec.york.ac.uk,5 11203,http://www.nhgs.co.uk,5 11204,http://www.ramblers.org.uk,5 11205,http://forum.redcountyrp.com,5 11206,http://aulavirtual.educa.jccm.es,5 11207,http://www.battlefront.co.uk,5 11208,http://www.raindance.co.uk,5 11209,http://www.usewho.com,5 11210,http://www.direct.gov.uk/en/EducationAndLearning/14To19/Years10And11/index.htm,5 11211,http://www.direct.gov.uk/en/YoungPeople/Housing/DG_181371,5 11212,http://www.bawp.org,5 11213,http://www.deap.co.uk,5 11214,http://www.beaconschoolofmotoring.co.uk,5 11215,http://www.elephant.co.uk,5 11216,http://www.direct.gov.uk/en/YoungPeople/Money/DebtAndYou/index.htm,5 11217,http://www.ftooc.org,5 11218,http://www.democracyforum.co.uk,5 11219,http://www.beaconsfieldtowncouncil.org.uk,5 11220,http://www.beaumarisactiongroup.co.uk,5 11221,http://www.mitchelldrivingschool.co.uk,5 11222,http://blackboard.lcb.ac.uk,5 11223,http://www.racfoundation.org,5 11224,http://www.bedfordshire-news.co.uk,5 11225,http://www.bedminsterfamilypractice.co.uk,5 11226,http://www.ig.gmodules.com,5 11227,http://www.valley.outwood.com,5 11228,http://www.belfastmet.ac.uk,5 11229,http://www.valuationtribunal.gov.uk,5 11230,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Gettingyourfirstjob/DG_066157,5 11231,http://www.google.ml,5 11232,http://bchaccountingllp.co.uk,5 11233,http://www.google.nr,5 11234,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/BenefitsAndMoney/DG_10030994,5 11235,http://www.wwfp.net,5 11236,http://www.bettertransport.org.uk,5 11237,http://www.elka-ds.co.uk,5 11238,http://www.bhcpschool.ik.org,5 11239,http://board.hondacrx.co.uk,5 11240,http://74.6.117.48,5 11241,http://www.geography.org.uk,5 11242,http://www.bigseekpro.com,5 11243,http://forum.bmw5.co.uk,5 11244,http://www.push.co.uk,5 11245,http://www.purplefrogproperty.com,5 11246,http://www.geography-site.co.uk,5 11247,http://formin.finland.fi,5 11248,http://forcesgutersloh.2day.ws,5 11249,http://foodimports.direct.gov.uk/turkey.html,5 11250,http://www.bikerssnug.co.uk,5 11251,http://foodimports.direct.gov.uk/bangladesh.html,5 11252,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011521,5 11253,http://www.google.tg,5 11254,http://flint,5 11255,http://www.bimmerboard.be,5 11256,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/ks4/index_t_ks4.htm,5 11257,http://www.psnc.org.uk,5 11258,http://zapytaj.onet.pl,5 11259,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/foundation/tf_content.htm,5 11260,http://www.derby-college.ac.uk,5 11261,http://www.heathrowairport.com,5 11262,http://www.freesolarpanelsuk.co.uk,5 11263,http://aupair-world.net,5 11264,http://www.direct.gov.uk/en/CaringForSomeone/CareHomes/dg_10031525,5 11265,http://www.mail2web.com,5 11266,http://www.virginatlantic.co.jp,5 11267,http://www.direct.gov.uk/en/CaringForSomeone/CaringAndSupportServices/DG_10026286,5 11268,http://www.hertreg.ac.uk,5 11269,http://www.bishopaucklandcollege.ac.uk,5 11270,http://72.14.203.105,5 11271,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@cy/documents/digitalasset/dg_178205.pdf,5 11272,http://www.gracepersonnel.com,5 11273,http://www.bishopsford.org,5 11274,http://www.gopuffin.co.uk,5 11275,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011584,5 11276,http://www.bitingpoint.biz,5 11277,http://www.mkforum.org.uk,5 11278,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@disabled/documents/digitalasset/dg_191499.pdf,5 11279,http://bbs.wenxuecity.com,5 11280,http://www.maitlandrachel.co.uk,5 11281,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011247,5 11282,http://www.ictcool.com,5 11283,http://feiertagskalender.ch,5 11284,http://feed.surfing-waves.com,5 11285,http://www.icslearn.co.uk,5 11286,http://www.gordonramsay.com,5 11287,http://www.proridermobility.com,5 11288,http://fasanouk.blogspot.com,5 11289,http://www.vital.ac.uk,5 11290,http://www.vivacity-peterborough.com,5 11291,http://www.vivalanails.co.uk,5 11292,http://www.direct.gov.uk/en/Environmentandgreenerliving/Wasteandrecycling/DG_069060,5 11293,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_191928.pdf,5 11294,http://www.blackcircles.com,5 11295,http://www.propertyscam.org.uk,5 11296,http://www.generation-nt.com,5 11297,http://www.derbys-fire.gov.uk,5 11298,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Climatechange/DG_072920,5 11299,http://www.vivrelondres.com,5 11300,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@over50/documents/digitalasset/dg_180189.pdf,5 11301,http://www.mkspanish.com,5 11302,http://www.enjoythepass.com,5 11303,http://www.direct.gov.uk/en/EducationAndLearning/14To19/Courseworkandexams/DG_10034950,5 11304,http://www.bliss-properties.com,5 11305,http://ezinearticles.com,5 11306,http://www.gosafe.org,5 11307,http://www.voltadriving.co.uk,5 11308,http://www.motorcyclingmatters.org,5 11309,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@travel/documents/digitalasset/dg_177158.pdf,5 11310,http://expatsportugal.com,5 11311,http://www.icanhire.com,5 11312,http://www.volunteer.co.uk,5 11313,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_196789.gif,5 11314,http://www.bluebubble-lettings.co.uk,5 11315,http://everybreath.vforums.co.uk,5 11316,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/YoungPeopleContacts/index.htm,5 11317,http://www.fighttheairmileschange.co.uk,5 11318,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011258,5 11319,http://www.direct.gov.uk/prod_consum_dg/groups/ta/@dg/@en/documents/webasset/rss_style.xsl,5 11320,http://www.hawkingevehicles.co.uk,5 11321,http://www.malehealth.co.uk,5 11322,http://www.blwdriving4life.co.uk,5 11323,http://www.gemoney.co.uk,5 11324,http://espanol.search.yahoo.com,5 11325,http://eserve3,5 11326,http://esbc3037,5 11327,http://www.productionguild.com,5 11328,http://autismwm.autismwm.easysearch.org.uk,5 11329,http://es.mg40.mail.yahoo.com,5 11330,http://www.mamansalondres.com,5 11331,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenerhomeandgarden/Greenerlabelsandclaims/DG_064874,5 11332,http://www.privacy.it,5 11333,http://www.w202.pl,5 11334,http://www.boilerguide.co.uk,5 11335,http://www.waddia.org,5 11336,http://www.derwentliving.com,5 11337,http://www.priory.bromley.sch.uk,5 11338,http://www.europubhealth.org,5 11339,http://www.directguv.net,5 11340,http://www.princesstreetsurgery.com,5 11341,http://epetitions.direct.gov.uk/how-it-works,5 11342,http://encyclopediadramatica.ch,5 11343,http://www.primary-diagnostic.co.uk,5 11344,http://www.pricerunner.co.uk,5 11345,http://employeeplatform.sefton.gov.uk,5 11346,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Energyandwaterefficiencyinyourhome/DG_172540,5 11347,http://www.prestonczyk.co.uk,5 11348,http://www.greekanimalrescue.com,5 11349,http://www.eurotck.net,5 11350,http://www.bournville.ac.uk,5 11351,http://www.iahpld.org.uk,5 11352,http://www.wallerandfarnworth.co.uk,5 11353,http://www.disabledinfo.co.uk,5 11354,http://www.gbpassport.com,5 11355,http://www.bp.com,5 11356,http://www.devonlandlords.co.uk,5 11357,http://www.bpplawschool.com,5 11358,http://www.wanderersways.com,5 11359,http://www.discoverdriving.co.uk,5 11360,http://edyourself.org,5 11361,http://www.fifedrivinglessons.co.uk,5 11362,http://www.discoveropportunities.org.uk,5 11363,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Migrantworkers/DG_173236,5 11364,http://boaherba.com,5 11365,http://www.brainboxx.co.uk,5 11366,http://www.brasileirosemlondres.co.uk,5 11367,http://www.nscfc.com,5 11368,http://www.powerflushsouthwest.co.uk,5 11369,http://www.hypermobility.org,5 11370,http://www.bristolairport.co.uk,5 11371,http://www.divorce.co.uk,5 11372,http://www.portsmouthcc.gov.uk,5 11373,http://www.fife.police.uk,5 11374,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Agencyworkersandemploymentagencies/DG_173258,5 11375,http://economictimes.indiatimes.com,5 11376,http://www.dl-driving.co.uk,5 11377,http://www.mnt.ee,5 11378,http://www.bristolschoolofholistictherapies.co.uk,5 11379,http://ec2-79-125-37-157.eu-west-1.compute.amazonaws.com,5 11380,http://www.dfg.cn,5 11381,http://www.dhlguide.co.uk,5 11382,http://zimbra.free.fr,5 11383,http://www.britannia-driving-school.co.uk,5 11384,http://www.direct.gov.uk/en/Employment/TradeUnions/Tradeunionsintheworkplace/DG_179204,5 11385,http://10.35.2.29:8890,5 11386,http://www.direct.gov.uk/en/Employment/TradeUnions/Tradeunionsintheworkplace/DG_179203,5 11387,http://www.warsashdrivingschool.co.uk,5 11388,http://www.mymarstons.co.uk,5 11389,http://easterncyprus.com,5 11390,http://www.direct.gov.uk/en/Employment/TradeUnions/Tradeunionsintheworkplace/DG_10027556,5 11391,http://www.myhiv.org.uk,5 11392,http://www.mariasdrivingschool.co.uk,5 11393,http://www.polonianottingham.com,5 11394,http://www.poloniagloucester.co.uk,5 11395,http://www.myherefordshire.com,5 11396,http://www.dobramama.pl,5 11397,http://www.polmil.sp.gov.br,5 11398,http://www.wastewatch.org.uk,5 11399,http://www.doeni.gov.uk,5 11400,http://bbs.fobshanghai.com,5 11401,http://www.britishside-edu.com,5 11402,http://dwpexaminations.blacktrianglecampaign.org,5 11403,http://1010motoringacademy.co.uk,5 11404,http://www.britishwaterski.org.uk,5 11405,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MotoringContacts/DG_069669,5 11406,http://www.waterloohomes.org.uk,5 11407,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/DG_10020667,5 11408,http://www.brook.org.uk,5 11409,http://durham.gov.uk,5 11410,http://www.mocgb.net,5 11411,http://www.pokerstars.com,5 11412,http://www.notts50plus.co.uk,5 11413,http://www.pointblankonline.net,5 11414,http://www.hughes.cam.ac.uk,5 11415,http://www.bsminstructoracademy.co.uk,5 11416,http://www.fuckedgaijin.com,5 11417,http://www.bso.ac.uk,5 11418,http://www.fieldtofarm.com,5 11419,http://www.myfylde.co.uk,5 11420,http://drumbeat.2day.ws,5 11421,http://www.bst-secure.com,5 11422,http://www.nhfa.co.uk,5 11423,http://www.btpensions.net,5 11424,http://drivingtheorytest.org.uk,5 11425,http://www.digitaluk.co.uk,5 11426,http://www.fundraisingskills.co.uk,5 11427,http://drivewithpt.theorytestpro.co.uk,5 11428,http://www.mystart.com,5 11429,http://beta.careerswales.com,5 11430,http://driverwaywithlinda.theorytestpro.co.uk,5 11431,http://www.notgoingtouni.co.uk,5 11432,http://www.mojbristol.fora.pl,5 11433,http://driven-mad-training.com,5 11434,http://www.webprosecure.co.uk,5 11435,http://www.enham.org.uk,5 11436,http://drafts.drivinginstructorsites.co.uk,5 11437,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/WorkSchemesAndProgrammes/DG_187696,5 11438,http://www.direct.gov.uk/changepracticaltest,5 11439,http://www2.basildon.gov.uk,5 11440,http://doverdc,5 11441,http://doorway.easysearch.org.uk,5 11442,http://doitwithdave.net,5 11443,http://www.direct.gov.uk/cy/CrimeJusticeAndTheLaw/VictimsOfCrime/DG_070444CY,5 11444,http://www.weddinggalleria.co.uk,5 11445,http://www.weddingquest.co.uk,5 11446,http://www.weebly.com,5 11447,http://dnssearch.ono.es,5 11448,http://www.plasmenai.co.uk,5 11449,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EducationAndLearningContacts/index.htm,5 11450,http://dlstage01,5 11451,http://www.drive-ability.co.uk,5 11452,http://www.direct.gov.uk/en/DisabledPeople/EducationAndTraining/index.htm,5 11453,http://www.drive-busters.co.uk,5 11454,http://www.myworksearch.co.uk,5 11455,http://www.business-lawyers.org,5 11456,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/WhosWhoInHealthServices/DG_4003759,5 11457,http://artatm.com,5 11458,http://www.direct.gov.uk/en/DisabledPeople/EducationAndTraining/HigherEducation/DG_4000896,5 11459,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/WhosWhoInHealthServices/DG_4003768,5 11460,http://www.hps.scot.nhs.uk,5 11461,http://www.drive2.co.uk,5 11462,http://www.businessinfo.cz,5 11463,http://www.bususers.org,5 11464,http://www.busyvagyok.co.uk,5 11465,http://www.halesowen.ac.uk,5 11466,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/DG_10037790,5 11467,http://www.pitbikeclub.co.uk,5 11468,http://www.halifaxlegalexpress.co.uk,5 11469,http://www.matthewellis.cc,5 11470,http://www.pinkladiesdriving.co.uk,5 11471,http://www.pinkfishmedia.net,5 11472,http://www.mrmaxdrivertraining.com,5 11473,http://www.funeralmap.co.uk,5 11474,http://www.maxi-muppets.co.uk,5 11475,http://www.campaign-for-learning.org.uk,5 11476,http://www.driveondrivingschool.net,5 11477,http://devilfinder.com,5 11478,http://deside2drive.co.uk,5 11479,http://www.campion.edu.gr,5 11480,http://www.direct.gov.uk/en/Employment/Jobseekers/JobsAndCareers/DG_073363,5 11481,http://www.canolfanbydgwaith.gov.uk,5 11482,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Crimestatistics/index.htm,5 11483,http://asdajobs2011.workactive.com,5 11484,http://www.northlondon-mct.co.uk,5 11485,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011585,5 11486,http://dcdrive.theorytestpro.co.uk,5 11487,http://www.pharma-eu.com,5 11488,http://www.capel.ac.uk,5 11489,http://cypdirectory.southwark.gov.uk,5 11490,http://www.carbondetectiveseurope.org,5 11491,http://cww.css.scottishpower.plc.uk,5 11492,http://cw.routledge.com,5 11493,http://www.petit-enfant.co.uk,5 11494,http://www.carcaptain.com,5 11495,http://www.carcheckonline.co.uk,5 11496,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZYYs2u2Iqm*fweONklWG3Up*YFDszIOHMMmn4YI36OWPIBU9fqqZu6iJWfslGwqQdlpttoAKME1gbolTS10q!tbmDXbt6kK5W2hFGObV0NUl!BUKmvdzjBtL12IoJls6GT5gqFKFkOEy*cJM5PzKK2ZqWnZEjJHGWGpYilS1iCWLKECcTEEnZC7HTHOA6Pd!MX58HU*aBiX9rq4g045jPx*PjBQs!rj*KC!BjWguPu5MJN*yy4VUsULdE9lvJFHQzHa7iU3Yn8JYwd!fclLwRPspTkJMF2xTRo6I7!HDHzN*ozi2CX7dCTt*27FKVHpIKINkuRI1JB4lulSH5EKmjgZqkft8sWqeB72CyVrkvl9rfQN20N175RcqjfKqW*ARBvfic_/results,5 11497,http://www.drivesmartsurrey.org.uk,5 11498,http://csl-complaints.co.uk,5 11499,http://csa,5 11500,http://cryptome.info,5 11501,http://www.funnellandperring.co.uk,5 11502,http://criticalmass.hu,5 11503,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011676,5 11504,http://www.housing.org.uk,5 11505,http://crisis-loans.loanpages.com,5 11506,http://www.moneymadeclear.fsa.gov.uk,5 11507,http://www.drivewell.uk.com,5 11508,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011674,5 11509,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Greenerlifestyles/index.htm,5 11510,http://www.mccran.co.uk,5 11511,http://www.peta.co.uk,5 11512,http://www.caremotoring.com,5 11513,http://www.moneymatterstome.com,5 11514,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011379,5 11515,http://www.carersbucks.org,5 11516,http://www.drivewithdon.co.uk,5 11517,http://www.hounslow.info,5 11518,http://www.westsussex.nhs.uk,5 11519,http://bb-app1,5 11520,http://www.personal.barclays.co.uk,5 11521,http://www.youth-rights-uk.org,5 11522,http://www.direct.gov.uk/en/Employment/HealthAndSafetyAtWork/DG_10026677,5 11523,http://www.moneymattersworks.com,5 11524,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1vozAQ*TW5VAoydjBwhJJkc!lWy!7ZYm0rRSU4tZ1kf*76gwTRkork1F5sZt7LPL8ZQ5SQeoaKGcRvZtPHGcybmvKWcpNqJVeHRiuDhMDEypBJpQzM6nZrsjb5FvwVQmnOftRaBT9*uWoRTEwlWZ0OsjERymwKvmi9tw9dHMFVt51Op4DVklMdbMUxOLx2!b0UjFDRqsOOsG2XrBndNz5Aqw2jJZfH2p7XJoqyJOvlb*KcrZeej5UqBH2qdmdGsSYhAAjiJOwYm5KU5fOfDndZaJY439mzF9ZLBB!VC4AFjMPc5lKzG8c!!DqOW8H4hnUwTNBEm*E3szky2AWAECTpRMP4E8O4qdwV5629!LrSNSWyal*NxSf83968GaoWbX*ZB8uuUtZplNtKpilui4oH2BWPYN5TEk9JHOUdFnssHsOwx*AYFnksGsMWHlucMeSXy9mQG16iqJB83j*ap1VvwDEfQc!fX1je89Wfogz0bbjWOOQqZ277Zo27ain0lsJbLKWjOuDy6iV9l11FtBy23fPPIcoihJMYpAD7cc3DwUBvmM89Zr7GfN614CbbQ0!97c!lwvAeqUGLJkuBe6QGHZ8qBdJ7pAYDnCz14esyRWpwHyZLxdel3N!C2NbUfPYVryR9Ibz9D0JHQZg_/results,5 11525,http://corporateeventtickets.co.uk,5 11526,http://www.halodriving.co.uk,5 11527,http://www.driving-school-west-london.com,5 11528,http://cornerstonecf.easysearch.org.uk,5 11529,http://www.direct.gov.uk/en/CaringForSomeone/MoneyMatters/DG_10026440,5 11530,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Greenertravel/Greenercarsanddriving/DG_064428CY,5 11531,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinemotoring/DG_197324,5 11532,http://www.fsmdrivingschool.co.uk,5 11533,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1z2jAQ*TVcOoNHH*iDox0D5dJm6vasMZKGuDEWkUzoz!9KMnicQMZwSi5a7b71Pr9dyTZKtxOaT0j0AmZT6gnJ*qqNAVM1sNSqEQo2UaOlOdStgSyMwDfwICsNl42omi1EbfAl2ChlWim!V60Jfv5ylUOSQCFdHg!6Bo!mNkSe2nZvN50fkmVnjsdjICoteRts1WtweO7ie60E46oxhx0T2y5YCb6vvUOXa8ELqV8rLn0gLwq2Wvxmj!lq4fMjY3LFf5S7U0a!YhghijCddRnrghXF458Ox!5dYYmznX333GoJyYNxDrIAKMxsbA4WFHvn8yhulJBrcZKD8EiZ8VeWSTAZKTP6QGZUl!5gS3v8TVu2FWe6bJ7huDP5bw*3wVRwNc5HfLDsSmP1hZmtBK1wJsy*ka54SLI!JfEpiUt5g8Ueiy9hkceiS1josfASNvPY7IRRv5zfjbqRJYYrLaf91u6WvQCX!YD6*Ok5y2u!!ihNUd!Ga42jrnLqzBdr3FVJ2EvCt0iaX!RB5wuX9F12Feli2Haff3JpGtIoidEcRX5cUzwY6A3zuUfM55jPmxbcJHuoqZf9MRXG91ANWjSaCt1DNej4WCo0v4dqMMDRVO!!LmOoBudhNFV8ncr9FtS24vDZN7LU*InJ5j9*jkJV/results,5 11534,http://www.md-drivingschool.co.uk,5 11535,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/YourHome/DG_4019444,5 11536,http://www.drivingforbetterbusiness.com,5 11537,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Greenerworkschoolandcommunity/Beinggreeninthecommunityandatwork/DG_069477CY,5 11538,http://www.direct.gov.uk/en/employment/healthandsafetyatwork/DG_10026604,5 11539,http://www.perfectdrivingschool.co.uk,5 11540,http://www.drivinghelp.com,5 11541,http://www.drivinginstruction.biz,5 11542,http://www.mybabyandme.co.uk,5 11543,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinemotoring/DG_196427,5 11544,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_067656,5 11545,http://www.direct.gov.uk/cy/Governmentcitizensandrights/GettingLegalAdvice/Gettinglegaladviceandlegalaid/DG_195416CY,5 11546,http://bbs.cninuk.org,5 11547,http://www.mdocuk.co.uk,5 11548,http://www.horgis.co.uk,5 11549,http://ashpayr:11631,5 11550,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWICUvx4tO36NwxhpCN12IFL9vOH964lOF3Qp!0FrpwDx3OuQdfbYcdOu7xwg4CS!Prdzzcr5GC1FJ1fMFa5j25wfp2OBOe3tcJJZV60uXzv6gSUyuBpg5atFebqCa36vPkTnO4NiPG8mgxvwl19wQ957SfWwMRPT*mIjnV!CJQKKRVQJliJWDmHFYgVcxhHjM9he8T2d4zh8Hg3dgYPTvZWZaEcq3MwAMwjCfzswULPi1tZQ0IMS8ExOLmB6Z8Ft2iJoiW6xlI9q4PhBA1IGU5kz3HsyL8*soazoipJTQpsV0ajhq7ozxYzf6M*kwhW2Y49Bdu*S1G6RSqKKFmKbJGKEk!VIvUWqaiByVI*bpcUqeh7SJYql6Xq8bfQX7T0175TwsrXVpkviXyAjg__/results,5 11551,http://www.pentvalley.com,5 11552,http://connect.glasgow.gov.uk,5 11553,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/OrganisationsAndCharities/DG_10014860,5 11554,http://www.pensioncalculator.org,5 11555,http://www.direct.gov.uk/cy/Hl1/Help/ContactUs/ContactUsForm/index.htm,5 11556,http://www.my-som.net,5 11557,http://www.wheredrivingbegins.co.uk,5 11558,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011407,5 11559,http://www.mongolinternet.com,5 11560,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018266,5 11561,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/index.htm,5 11562,http://www.direct.gov.uk/en/Employment/Employees/Timeoffandholidays/DG_185054,5 11563,http://rio,5 11564,http://richard-driving.co.uk,5 11565,http://revista.enredo.org,5 11566,http://alicemail.rossoalice.alice.it,5 11567,http://www.stockbrokers.barclays.co.uk,5 11568,http://www.stockport.ac.uk,5 11569,http://www.knifecrimes.org,5 11570,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ChildBenefitandwhoqualifies/DG_073771CY,5 11571,http://www.kn.att.com,5 11572,http://rmstyle.eu,5 11573,http://residentiallandlord.ipbhost.com,5 11574,http://www.norfolkchildcarejobs.com,5 11575,http://www.kmc.ac.uk,5 11576,http://www.stonystratford.gov.uk,5 11577,http://redbridge.olminfoserve.co.uk,5 11578,http://community.lincolnshire.gov.uk,5 11579,http://www.cemap123.co.uk,5 11580,http://rncdrivingtuitioncom.fatcow.com,5 11581,http://roadkraft.theorytestpro.co.uk,5 11582,http://rockyemon.cocolog-nifty.com,5 11583,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/AdviceOnBuyingAndSellingAVehicle/DG_10022252,5 11584,http://www.honda-hornet.pl,5 11585,http://ron.proz.com,5 11586,http://www.kokusen.go.jp,5 11587,http://www.stjohnplessington.com,5 11588,http://queenscross.theorytestpro.co.uk,5 11589,http://alfaparcel.ru,5 11590,http://wythenshawe-wheelers.org,5 11591,http://qahmrcstgweb,5 11592,http://saferroadshumber.eastriding.gov.uk,5 11593,http://community.bt.com,5 11594,http://publicportal.intra.preston.local,5 11595,http://sammisdrivingacademy.com,5 11596,http://sandysdriving.co.uk,5 11597,http://www.flamegas.co.uk,5 11598,http://saudistudents.org,5 11599,http://www.direct.gov.uk/en/Motoring/DriverLicensing/CaravansTrailersCommercialVehicles/DG_4022526,5 11600,http://www.streetsaheadaberdeen.co.uk,5 11601,http://www.cemexangling.co.uk,5 11602,http://proxyint.orellana.aeat.es,5 11603,http://proxy-login.blackspider.com,5 11604,http://sbdcnet,5 11605,http://alejazda.co.uk,5 11606,http://project-vanilla.com,5 11607,http://www.homewellpractice.co.uk,5 11608,http://priorycourtcc.org.uk,5 11609,http://sccplugins.sheffield.gov.uk,5 11610,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnSavingsAndInvestments/DG_10013514,5 11611,http://schoolsfinder.direct.gov.uk/3205401/overview/,5 11612,http://schoolsfinder.direct.gov.uk/schoolsfinder/,5 11613,http://powerlife.seesaa.net,5 11614,http://www.kingswooddaynursery.co.uk,5 11615,http://com.opus.co.nz,5 11616,http://www.norcom.com.pl,5 11617,http://scotland.gov.uk,5 11618,http://scottishpower.metafaq.com,5 11619,http://search-uk.kol.com,5 11620,http://www.nationalstrategiescpd.org.uk,5 11621,http://www.steps-charity.org.uk,5 11622,http://www.flatshareblog.co.uk,5 11623,http://search.aol.co.nz,5 11624,http://search.aol.ru,5 11625,http://www.steergreendrivingschool.co.uk,5 11626,http://pond.morningstar.com,5 11627,http://www.mx5france.com,5 11628,http://polishplanet.com,5 11629,http://pol-drive.com,5 11630,https://www.dwpe-services.direct.gov.uk/portal/page/portal/ba/lp,5 11631,http://search.derbyshire.gov.uk,5 11632,http://www.stbedesscunthorpe.org.uk,5 11633,http://search.findeer.com,5 11634,http://www.stationary-engine.net,5 11635,http://www.kingsdivinity.org,5 11636,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185427,5 11637,http://alanwardintranet,5 11638,http://www.centralemployment.biz,5 11639,http://www.gravestonephotos.com,5 11640,http://www.stantonbury.org.uk,5 11641,http://www.nationsonline.org,5 11642,http://planning.easington.gov.uk,5 11643,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/Completingtaxreturnsandkeepingrecords/DG_10014923,5 11644,http://search.shareazaweb.com,5 11645,http://search.sify.com,5 11646,http://www.kindernurseries.co.uk,5 11647,http://pl.gjdriving.co.uk,5 11648,http://pit.easysearch.org.uk,5 11649,http://www.stwatereducation.co.uk,5 11650,http://www.stylecoaching.co.uk,5 11651,http://www.whitestick.co.uk,5 11652,http://www.staffordshireprepared.gov.uk,5 11653,http://www.staffordarea.saveyourenergy.org.uk,5 11654,http://aircadets.easysearch.org.uk,5 11655,http://peterburrowssolicitors.co.uk,5 11656,http://www.pcdsupport.org.uk,5 11657,http://www.staffnet.manchester.ac.uk,5 11658,http://search.wrexham.gov.uk,5 11659,http://search29.info.com,5 11660,http://www.kids.org.uk,5 11661,http://www.kidneypatientguide.org.uk,5 11662,http://search42.info.com,5 11663,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/Refundscomplaintsandreportingchanges/DG_190124,5 11664,http://www.medway.nhs.uk,5 11665,http://pbsom.theorytestpro.co.uk,5 11666,http://www.khalsaaid.org,5 11667,http://www.summercroft.herts.sch.uk,5 11668,http://www.lambbrooks.com,5 11669,http://www.floridavisa.com,5 11670,http://agorasunland.novaschool.es,5 11671,http://services.sunderland.ac.uk,5 11672,http://www.keytotheroad.co.uk,5 11673,http://www.sse.co.uk,5 11674,http://www.who.int,5 11675,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/Howtovaluetheestateofsomeonewhohasdied/index.htm,5 11676,http://www.direct.gov.uk/en/CaringForSomeone/CaringForADisabledChild/DG_10026501,5 11677,http://www.pbdrivingschool.com,5 11678,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/Howtovaluetheestateofsomeonewhohasdied/DG_179343,5 11679,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/Afteradeathmanaginganestate/DG_179353,5 11680,http://panet.org.uk,5 11681,http://sharp.direct.gov.uk/content/animation,5 11682,http://sharp.direct.gov.uk/content/helmet-safety-scheme,5 11683,http://sharp.direct.gov.uk/news,5 11684,http://www.superlamb.co.uk,5 11685,http://www.direct.gov.uk/en/Employment/Employees/TheNationalMinimumWage/DG_198089,5 11686,http://www.spyrosvougias.gr,5 11687,http://sharp.direct.gov.uk/news/launch-28-new-helmet-ratings,5 11688,http://oxford.gov.uk,5 11689,http://shireoakmotorcycles.co.uk,5 11690,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/Becomingadrivertrainer/DG_182833,5 11691,http://www.meetup.com,5 11692,http://202.78.239.204,5 11693,http://www.naturaldeath.org.uk,5 11694,http://www.charityshops.org.uk,5 11695,http://onspreview-oat,5 11696,http://www.pavel.lt,5 11697,http://www.megavaux.co.uk,5 11698,http://shuspace.shu.ac.uk,5 11699,http://sitebuilder.yola.com,5 11700,http://www.fk-oc.com,5 11701,http://www.keratoconus-group.org.uk,5 11702,http://www.wightchyps.org.uk,5 11703,http://online-startup.com,5 11704,http://www.landlordlet.com,5 11705,http://www.surrogacy.org.uk,5 11706,http://sites-ztm.prdw.tld,5 11707,http://www.surrogacyuk.org,5 11708,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/Drivingtestsforlorriesbusesandcoaches/DG_182841,5 11709,http://sitewizard.streamline.net,5 11710,http://oneintranet.qbe.eo,5 11711,http://www.chelmsfordbc.gov.uk,5 11712,http://www.wigtonmoor.leeds.sch.uk,5 11713,http://www.sussexemergency.info,5 11714,http://slo-tech.com,5 11715,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxallowancesandreliefs/DG_078383,5 11716,http://smallsteps4life.direct.gov.uk/en/primary/index.aspx,5 11717,http://oftsearch,5 11718,http://smallsteps4life.direct.gov.uk/en/secondary/3-ways/getting-active.aspx,5 11719,http://oc.course.com,5 11720,http://afairercsaforall.myfanforum.org,5 11721,http://americas.sas.ac.uk,5 11722,http://www.southwestwater.co.uk,5 11723,http://www.paulloader.co.uk,5 11724,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017797,5 11725,http://www.chessbrook.herts.sch.uk,5 11726,http://www.langtoftdrivingschool.co.uk,5 11727,http://www.southwesthomes.org.uk,5 11728,http://www.swanscombeandgreenhithetc.kentparishes.gov.uk,5 11729,http://socopa.org.uk,5 11730,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/peoplewhohelpothers/Entitlementtablesfortaxcredits/index.htm,5 11731,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/peoplewhohelpothers/Entitlementtablesfortaxcredits/DG_174877,5 11732,http://www.swarb.co.uk,5 11733,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/peoplewhohelpothers/Entitlementtablesfortaxcredits/DG_174821,5 11734,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingMoney/SavingsAndInvestments/DG_10013701CY,5 11735,http://www.swift-drivertraining.co.uk,5 11736,http://www.mendipcommunitytransport.co.uk,5 11737,http://advicenow.org.uk,5 11738,http://www.chetwyndroad.co.uk,5 11739,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/peoplewhohelpothers/DG_175675,5 11740,http://advicehub.org,5 11741,http://southholland.angloinfo.com,5 11742,http://southwark.theorytestpro.co.uk,5 11743,http://www.mps-pension.org.uk,5 11744,http://sparthcommunitycentre.easysearch.org.uk,5 11745,http://www.childmindinghelp.co.uk,5 11746,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Renewingtaxcreditsclaim/index.htm,5 11747,http://www.southliverpooldriving.com,5 11748,http://speedwaymotorcycles.co.uk,5 11749,http://northallertoniam.easysearch.org.uk,5 11750,http://no.wikipedia.org,5 11751,http://www.lathgroup.org.uk,5 11752,http://www.southfieldsdrivertraining.co.uk,5 11753,http://www.southernhealth.nhs.uk,5 11754,http://click2.copernic.com,5 11755,http://www.kcollege.ac.uk,5 11756,http://nigelslater.biz,5 11757,http://nicosiaproperty.com,5 11758,http://www.syfire.gov.uk,5 11759,http://www.kcabs.org.uk,5 11760,http://www.sykesschoolofmotoring.com,5 11761,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Ifthingsgowrong/Wheretostart/DG_073823CY,5 11762,http://www.direct.gov.uk/en/Dl1/Directories/DG_180024,5 11763,http://www.synergynetworksystems.co.uk,5 11764,http://www.sourceuk.net,5 11765,http://www.passwithremy.co.uk,5 11766,http://www.lawdonut.co.uk,5 11767,http://www.sotw.nhs.uk,5 11768,http://newsgroups.derkeiler.com,5 11769,http://www.headlineauto.co.uk,5 11770,http://news.ycombinator.com,5 11771,http://www.lawmentor.co.uk,5 11772,http://www.sothebysinstitute.com,5 11773,http://www.chilterncollege.com,5 11774,http://www.next-gen.biz,5 11775,http://10.255.110.142:9093,5 11776,http://new-to-genealogy.ourwardfamily.com,5 11777,http://startskins.com,5 11778,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011428,5 11779,http://neilwhitcombeschoolofmotoring.co.uk,5 11780,http://neilreesdrivingschool.co.uk,5 11781,http://www.songofthepaddle.co.uk,5 11782,http://steverobertsdrivingschool.co.uk,5 11783,http://www.taj.leics.sch.uk,5 11784,http://www.take2theweb.com,5 11785,http://www.chippendale.co.uk,5 11786,http://stickydust.co.uk,5 11787,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/workoutincomeandworkinghours/index.htm,5 11788,http://citybit.southampton-city.ac.uk,5 11789,http://www.zuula.com,5 11790,http://www.fitzgeraldmotoring.co.uk,5 11791,http://www.lawstuff.org.uk,5 11792,http://www.homecaresolutions.org.uk,5 11793,http://www.k9driving.co.uk,5 11794,http://www.drivingursuccess.co.uk,5 11795,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/start/DG_172658,5 11796,http://www.engineeremploymentnow.com,5 11797,http://www.k2drivingschool-slu.com,5 11798,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/DG_073939,5 11799,http://www.talkswindon.org,5 11800,http://10.2.0.101,5 11801,http://www.drominteeps.com,5 11802,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Changesthataffectyourtaxcredits/Changesatwork/DG_173003CY,5 11803,http://studyspace.student.stanmore.ac.uk,5 11804,http://www.lcddrivingacademy.com,5 11805,http://mytsg,5 11806,http://yandex.com,5 11807,http://www.tamworthlearnercare.co.uk,5 11808,http://christsadmissions.blogspot.com,5 11809,http://www.direct.gov.uk/en/Dl1/Directories/DG_175894,5 11810,http://www.tapcentre.com,5 11811,http://www.target-driving-school.co.uk,5 11812,http://www.lcdisability.org,5 11813,http://suche.aolsvc.de,5 11814,http://www.mercedes-benz.motortrak.com,5 11815,http://mybnkwiki.pbworks.com,5 11816,http://www.chris-som.co.uk,5 11817,http://www.lclub.co.uk,5 11818,http://www.ldc4training.co.uk,5 11819,http://surpassdriving.com,5 11820,http://www.direct.gov.uk/en/Dl1/Directories/DG_175890,5 11821,http://www.direct.gov.uk/en/Dl1/Directories/DG_175864,5 11822,http://andrewsl2d.com,5 11823,http://www.passwithedt.com,5 11824,http://my.firewall,5 11825,http://www.smartscreen.co.uk,5 11826,http://www.direct.gov.uk/en/Dl1/Directories/DG_10026997,5 11827,http://my.barcapint.com,5 11828,http://talkhighlands.proboards.com,5 11829,http://tameside.gov.uk,5 11830,http://www.christies.edu,5 11831,http://tanners.theorytestpro.co.uk,5 11832,http://www.direct.gov.uk/en/DisabledPeople/RightsAndObligations/DisabilityRights/DG_10021425,5 11833,http://chichester.intra,5 11834,http://musicbusinessschool.co.uk,5 11835,http://www.juniorlawyers.lawsociety.org.uk,5 11836,http://msmnw.net,5 11837,http://msm-drivingtuition.co.uk,5 11838,http://ms-people.com,5 11839,http://www.leahschoolofmotoring.co.uk,5 11840,http://cheshampark.easysearch.org.uk,5 11841,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/CreditAndStoreCardsCreditAndLoans/DG_10035249,5 11842,http://taxcreditsvideos.direct.gov.uk/index.html,5 11843,http://www.teachingenglish.org.uk,5 11844,http://mossintranet,5 11845,http://www.direct.gov.uk/en/Employment/Employees/Flexibleworking/DG_184872,5 11846,http://www.erepublic.org,5 11847,http://www.teachu2drive.co.uk,5 11848,http://www.evvo.co.uk,5 11849,http://teamdavina.com,5 11850,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/PlanYourWayOutOfDebt/index.htm,5 11851,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/PlanYourWayOutOfDebt/DG_183575,5 11852,http://www.learn2drive.biz,5 11853,http://www.direct.gov.uk/en/campaigns/index.htm,5 11854,http://www.learn2drive.net,5 11855,http://terryhopps.auto.officelive.com,5 11856,http://test.rsfinder.info,5 11857,http://www.christysldc.webs.com,5 11858,http://www.jspensions.com,5 11859,http://chat.recoveryourlife.com:8080,5 11860,http://moodle.runshaw.ac.uk,5 11861,http://www.learn2passuk.com,5 11862,http://www.hatchetsandhammers.net,5 11863,http://moodle.rsc-eastern.ac.uk,5 11864,http://www.learnanddrive.co.uk,5 11865,http://moodle.reigate.ac.uk,5 11866,http://www.essexbikers.co.uk,5 11867,http://moodle.reidkerr.ac.uk,5 11868,http://thedeedpoll.co.uk,5 11869,http://thehive.lendlease.com,5 11870,http://www.teoc.ws,5 11871,http://theintranet.lbhf.gov.uk,5 11872,http://theory-online.co.uk,5 11873,http://www.slipstreampass.com,5 11874,http://www.jpleefe.co.uk,5 11875,http://chat.oasiz.net,5 11876,http://moodle.midchesh.ac.uk,5 11877,http://www.chsg.org.uk,5 11878,http://charter.net,5 11879,http://thexpress.co.uk,5 11880,http://www.chssixthform.org.uk,5 11881,http://www.testimonyproject.org,5 11882,http://www.skyscrapercity.com,5 11883,http://www.chtrainingsolutions.co.uk,5 11884,http://moodle.evesham.ac.uk,5 11885,http://moodle.coleggwent.ac.uk,5 11886,http://tinsleyhouseclinic.co.uk,5 11887,http://tinychat.com,5 11888,http://www.cityofglasgowcollege.ac.uk,5 11889,http://www.merseysidewda.gov.uk,5 11890,http://www.pass-with-mike.co.uk,5 11891,http://awaredrivingacademy.com,5 11892,http://www.pass-drive.co.uk,5 11893,http://tinyurl.com,5 11894,http://www.thctalk.com,5 11895,http://tiposdes.cold10.com,5 11896,http://www.ymtb.org,5 11897,http://www.the-gower.com,5 11898,http://www.learninglive.co.uk,5 11899,http://www.skillsforhealth.org.uk,5 11900,http://total.theorytestpro.co.uk,5 11901,http://montada.echoroukonline.com,5 11902,http://www.the-power-service.co.uk,5 11903,http://touchstoneblog.org.uk,5 11904,http://www.direct.gov.uk/en/Employment/Employeeinformationandconsultation/index.htm,5 11905,http://touzelnt2,5 11906,http://www.skelmersdale.ac.uk,5 11907,http://www.skelbiu.lt,5 11908,http://www.johnredwoodsdiary.com,5 11909,http://www.sjfcc.net,5 11910,http://mn.wikipedia.org,5 11911,http://www.learntodriveinaweek.co.uk,5 11912,http://www.johnparsonsadi.co.uk,5 11913,http://mixtape.bournemouth.ac.uk,5 11914,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Bankruptcy/DG_187343,5 11915,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget2009/DG_172915,5 11916,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_179190,5 11917,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_180304,5 11918,http://travelpuppy.com,5 11919,http://www.epsrc.ac.uk,5 11920,http://www.siteimprove.com,5 11921,http://www.claim.co.uk,5 11922,http://minerscompensation.org.uk,5 11923,http://www.clarendonprimaryschool.co.uk,5 11924,http://www.sirgaerfyrddin.gov.uk,5 11925,http://ucs.ac.uk,5 11926,http://mhshqint05,5 11927,http://udrive-rick.theorytestpro.co.uk,5 11928,http://azby.search.nifty.com,5 11929,http://metlink.co.uk,5 11930,http://uel.ac.uk,5 11931,http://metacrawler.com,5 11932,http://messaging.bigpond.com,5 11933,http://www.sinaldetransito.com.br,5 11934,http://uk.images.search.yahoo.com,5 11935,http://www.thebridge-ttc.org,5 11936,http://www.direct.gov.uk/cy/Motoring/VehicleCrime/DG_4022920CY,5 11937,http://melbourngarage.services.officelive.com,5 11938,http://www.learnwithsuccess.co.uk,5 11939,http://www.leckieandleckie.co.uk,5 11940,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_196736,5 11941,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/KeepingyourChildBenefituptodate/Changesyouneedtoreport/DG_173684,5 11942,http://martincohen.homestead.com,5 11943,http://www.thecheshire.co.uk,5 11944,http://uk.mc1102.mail.yahoo.com,5 11945,http://www.hastingsbury.beds.sch.uk,5 11946,http://marklancasteradi.theorytestpro.co.uk,5 11947,http://uk.mc1322.mail.yahoo.com,5 11948,http://www.signvideo.co.uk,5 11949,http://www.classic-mustang.co.uk,5 11950,http://www.sightandsound.co.uk,5 11951,http://uk.mc275.mail.yahoo.com,5 11952,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_199683,5 11953,http://marco-polo-som.com,5 11954,http://uk.mc278.mail.yahoo.com,5 11955,http://www.flylite.uk.com,5 11956,http://www.yourpropertynetwork.co.uk,5 11957,http://www.shpsdc.org.uk,5 11958,http://www.winterhill.org.uk,5 11959,http://anzilcockapoo.com,5 11960,http://www.theday.co.uk,5 11961,http://manchester.portal.s-cool.co.uk,5 11962,http://www.holidayonwheels.co.uk,5 11963,http://www.classicsmonthly.com,5 11964,http://www.shetland.gov.uk,5 11965,http://www.metanoia.ac.uk,5 11966,http://mail80.abv.bg,5 11967,http://192.168.1.11,5 11968,http://uk.mg.mail.yahoo.com,5 11969,http://www.shepherdneame.co.uk,5 11970,http://www.sheffieldvolunteercentre.org.uk,5 11971,http://www.jobcentreplus.gov.uk.,5 11972,http://www.clickdrive.co.uk,5 11973,http://mail2web.com,5 11974,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011455,5 11975,http://www.legalplate.co.uk,5 11976,http://adi825193.theorytestpro.co.uk,5 11977,http://www.shavington.cheshire.sch.uk,5 11978,http://www.theenergyrecruiter.com,5 11979,http://ukbmd.org.uk,5 11980,http://www.holdendrivinglessonsportsmouth.co.uk,5 11981,http://www.hansalink.info,5 11982,http://www.joanpattersonassociates.com,5 11983,http://ukindenmark.fco.gov.uk,5 11984,http://www.sfhs.org.uk,5 11985,http://mail.martenscroft.manchester.sch.uk,5 11986,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011803,5 11987,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011795,5 11988,http://www.sevencar.co.uk,5 11989,http://www.direct.gov.uk/en/Parents/Childcare/DG_172212,5 11990,http://www.holborncollege.ac.uk,5 11991,http://www.clubgti.com,5 11992,http://www.exeterstudentpad.co.uk,5 11993,http://www.leicesterfit4work.org.uk,5 11994,http://blogs.pravda.com.ua,5 11995,http://www.jksmt.co.uk,5 11996,http://ukinqatar.fco.gov.uk,5 11997,http://ukinukraine.fco.gov.uk,5 11998,http://maca,5 11999,http://www.hof.org.uk,5 12000,http://www.sendit.com,5 12001,http://m.google.com,5 12002,http://www.selections.com,5 12003,http://www.parenting.co.uk,5 12004,http://www.selectdrivertraining.co.uk,5 12005,http://b-net,5 12006,http://us.bookmarks.yahoo.com,5 12007,http://www.direct.gov.uk/en/Parents/ChildMaintenance/IfyourealreadyusingtheChildSupportAgency/DG_198907,5 12008,http://www.cntraveller.com,5 12009,http://www.direct.gov.uk/en/Parents/ChildMaintenance/IfyourealreadyusingtheChildSupportAgency/DG_199039,5 12010,http://www.direct.gov.uk/en/Parents/ChildMaintenance/IfyourealreadyusingtheChildSupportAgency/DG_199049,5 12011,http://us.mc1118.mail.yahoo.com,5 12012,http://us.mc1301.mail.yahoo.com,5 12013,http://www.direct.gov.uk/en/Parents/ChildMaintenance/IfyourealreadyusingtheChildSupportAgency/DG_199058,5 12014,http://carycooperblog.com,5 12015,http://www.paramastudentams.lt,5 12016,http://us.mc453.mail.yahoo.com,5 12017,http://www.dyslexiasolutionsltd.co.uk,5 12018,http://us.mc599.mail.yahoo.com,5 12019,http://careerpathways.skillsforcare.org.uk,5 12020,http://www.direct.gov.uk/en/Parents/ChildMaintenance/IfyourealreadyusingtheChildSupportAgency/DG_199073,5 12021,http://us.mc658.mail.yahoo.com,5 12022,http://www.letsgo-drivingschool.co.uk,5 12023,http://long-term.nottsinfoscript.co.uk,5 12024,http://us.mg205.mail.yahoo.com,5 12025,http://www.themoneystop.co.uk,5 12026,http://us.mg40.mail.yahoo.com,5 12027,http://londyn.org.uk,5 12028,http://user37103.vs.easily.co.uk,5 12029,http://vacheque.blogspot.com,5 12030,http://vbx.my-web-search.com,5 12031,http://www.pantip.com,5 12032,http://londonproriders.com,5 12033,http://adi116199.theorytestpro.co.uk,5 12034,http://adi103752.theorytestpro.co.uk,5 12035,http://vdc.intra.bt.com,5 12036,http://www.scottish.parliament.uk,5 12037,http://london.usembassy.gov,5 12038,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_4019444,5 12039,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011789,5 12040,http://batsgirl.blogspot.com,5 12041,https://www.gro.gov.uk,4 12042,https://portal.ioe.ac.uk,4 12043,https://motoring.direct.gov.uk/service/DvoConsumer.portal,4 12044,https://mail.google.com,4 12045,http://zx6r.com,4 12046,http://zepii.com,4 12047,http://yoursite,4 12048,http://youpass.theorytestpro.co.uk,4 12049,http://youngdriverscheme.org.uk,4 12050,http://yorkieforum.freeforums.org,4 12051,http://yamahaxjrclub.pl,4 12052,http://x2drive.co.uk,4 12053,http://x-stream.leedsmet.ac.uk,4 12054,http://wwwi,4 12055,http://www9.yoog.com,4 12056,http://www26.yoog.com,4 12057,http://www2.west-lindsey.gov.uk,4 12058,http://www2.imperial.ac.uk,4 12059,http://www2.anzen.mofa.go.jp,4 12060,http://www15.yoog.com,4 12061,http://www.zxclub.net,4 12062,http://www.zawaj.com,4 12063,http://www.z2k.org,4 12064,http://www.z1ownersclub.co.uk,4 12065,http://www.youthbox.info,4 12066,http://www.yourworldmedical.com,4 12067,http://www.yourroadrisk.co.uk,4 12068,http://www.yourpropertybuyer.net,4 12069,http://www.yourholidaymarket.co.uk,4 12070,http://www.youngdriversscheme.org.uk,4 12071,http://www.yateshoppingcentre.co.uk,4 12072,http://www.yarevalleycab.org.uk,4 12073,http://www.yama-hj1.org,4 12074,http://www.wtecoach.co.uk,4 12075,http://www.work-experience.org,4 12076,http://www.woodsmotorcycles.co.uk,4 12077,http://www.woodlarks.org.uk,4 12078,http://www.woodlands.southampton.sch.uk,4 12079,http://www.woodfield.n-yorks.sch.uk,4 12080,http://www.wokingchildrenscentre.org.uk,4 12081,http://www.wmsafetycameras.co.uk,4 12082,http://www.wmciu.org.uk,4 12083,http://www.wlrfm.com,4 12084,http://www.wirral.nhs.uk,4 12085,http://www.winstanley.leics.sch.uk,4 12086,http://www.windmilldrivertraining.co.uk,4 12087,http://www.wimbledonguild.co.uk,4 12088,http://www.willwalkerdriving.co.uk,4 12089,http://www.williamgeorgeifa.co.uk,4 12090,http://www.wilkinssolicitors.co.uk,4 12091,http://www.wildcamping.co.uk,4 12092,http://www.wikiradiography.com,4 12093,http://www.widowedbysuicide.org.uk,4 12094,http://www.wickersleyvle.net,4 12095,http://www.whsquires.co.uk,4 12096,http://www.whooga-boots.co.uk,4 12097,http://www.whiteensign.co.uk,4 12098,http://www.whichfranchise.com,4 12099,http://www.wheelchairmanagers.nhs.uk,4 12100,http://www.weststreetgarage.com,4 12101,http://www.westparkcommunity.co.uk,4 12102,http://www.westcheshirehealthandcare.nhs.uk,4 12103,http://www.welcometotelford.org.uk,4 12104,http://www.welcare.org,4 12105,http://www.web-emprego.com,4 12106,http://www.wcsc.org.uk,4 12107,http://www.wayne-harris.co.uk,4 12108,http://www.wayahead-cheshireeast.co.uk,4 12109,http://www.waterplc.org.uk,4 12110,http://www.warrington.pl,4 12111,http://www.wakefielddriving.co.uk,4 12112,http://www.wadham.ox.ac.uk,4 12113,http://www.wac.co.uk,4 12114,http://www.w4mp.org,4 12115,http://www.w3lrn.com,4 12116,http://www.w2wsolutions.co.uk,4 12117,http://www.w-fh.co.uk,4 12118,http://www.vue.com,4 12119,http://www.vrt.ie,4 12120,http://www.voyageoptions.com,4 12121,http://www.voicetheunion.org.uk,4 12122,http://www.visabureau.com,4 12123,http://www.visa.co.uk,4 12124,http://www.vincestringer-drivingtuition.co.uk,4 12125,http://www.victoriaparkbridgwater.co.uk,4 12126,http://www.varotherham.org.uk,4 12127,http://www.vanhireexpert.co.uk,4 12128,http://www.urbandrive-school.co.uk,4 12129,http://www.upsu.net,4 12130,http://www.uol.ohecampus.com,4 12131,http://www.unumlifeworks.co.uk,4 12132,http://www.universalaupairs.com,4 12133,http://www.universal-lighting.co.uk,4 12134,http://www.unisondc.co.uk,4 12135,http://www.uniassignment.com,4 12136,http://www.unesco.org,4 12137,http://www.uned.es,4 12138,http://www.ultimateridertraining.com,4 12139,http://www.ukwebdir.com,4 12140,http://www.ukorbit.com,4 12141,http://www.ukmalayalee.com,4 12142,http://www.ukimmigrationadvisory.com,4 12143,http://www.ukecc-services.net,4 12144,http://www.ukcarscrappagescheme.co.uk,4 12145,http://www.ukbusinesslabs.co.uk,4 12146,http://www.ukbudget.com,4 12147,http://www.uk-muscle.co.uk,4 12148,http://www.uk-care.com,4 12149,http://www.ujnews.com,4 12150,http://www.uhb.nhs.uk,4 12151,http://www.uggaustralia.jp,4 12152,http://www.ucy.ac.uk,4 12153,http://www.ubezpieczenia-w-uk.co.uk,4 12154,http://www.u2drive.co.uk,4 12155,http://www.tz-uk.com,4 12156,http://www.txt-drive.co.uk,4 12157,http://www.twittergadget.com,4 12158,http://www.tsimpountiii.gr,4 12159,http://www.tsft.nhs.uk,4 12160,http://www.trustnet.com,4 12161,http://www.trinityhigh.com,4 12162,http://www.triciamoir.co.uk,4 12163,http://www.tremor.org.uk,4 12164,http://www.tredzblog.co.uk,4 12165,http://www.travelinenortheast.info,4 12166,http://www.travelbagshop.co.uk,4 12167,http://www.travel-advice.net,4 12168,http://www.training.asp.nhs.uk,4 12169,http://www.traffordmagistrates.co.uk,4 12170,http://www.tractiontalkforum.com,4 12171,http://www.tpu.ro,4 12172,http://www.tpcomputing.co.uk,4 12173,http://www.toveybros.co.uk,4 12174,http://www.touchsolar.co.uk,4 12175,http://www.total.co.uk,4 12176,http://www.torridonroadsurgery.co.uk,4 12177,http://www.top5websites.co.uk,4 12178,http://www.tonyfelinmedicalcentre.com,4 12179,http://www.tonycunningham.org.uk,4 12180,http://www.titos-driving-school.co.uk,4 12181,http://www.tipsandbits.com,4 12182,http://www.tintcentres.com,4 12183,http://www.thorpehallprimary.com,4 12184,http://www.thornhilllower.ik.org,4 12185,http://www.thomasaveling.co.uk,4 12186,http://www.thirdsector.co.uk,4 12187,http://www.theyworkforyou.com,4 12188,http://www.thestennacksurgery.co.uk,4 12189,http://www.thesafezone.co.uk,4 12190,http://www.thersa.org,4 12191,http://www.thepsu.org,4 12192,http://www.thenurturegroup.co.uk,4 12193,http://www.thenorthernlondoners.com,4 12194,http://www.themotorbikeforum.co.uk,4 12195,http://www.thehut.com,4 12196,http://www.thehighstreetweb.com,4 12197,http://www.theheirhunters.co.uk,4 12198,http://www.theheadinjurysite.com,4 12199,http://www.thegreenblue.org.uk,4 12200,http://www.theedinburghdrivingschool.co.uk,4 12201,http://www.thedrivingschoolofmotoring.co.uk,4 12202,http://www.thedjschool.org,4 12203,http://www.thecrashcoursecompany.co.uk,4 12204,http://www.the-t-bar.org,4 12205,http://www.tevershammotors.co.uk,4 12206,http://www.test87.totalcreation.co.uk,4 12207,http://www.terapia.co.uk,4 12208,http://www.tennantsuk.com,4 12209,http://www.tenancy-agreements.net,4 12210,http://www.ted.europa.eu,4 12211,http://www.teachclimatechange.org,4 12212,http://www.tayside.police.uk,4 12213,http://www.taxassist.co.uk,4 12214,http://www.tavistockandportman.nhs.uk,4 12215,http://www.tamworthdrivingschool.co.uk,4 12216,http://www.tamesideschoolofmotoring.co.uk,4 12217,http://www.tameside-crashcourses.co.uk,4 12218,http://www.talkbansko.info,4 12219,http://www.talk.electricianforum.co.uk,4 12220,http://www.talbotoc.com,4 12221,http://www.taipeieuropeanschool.com,4 12222,http://www.t-mobile.co.uk,4 12223,http://www.t-m-b.co.uk,4 12224,http://www.symtc.co.uk,4 12225,http://www.sylvestermackett.co.uk,4 12226,http://www.swift.edu.pl,4 12227,http://www.swift-talk.co.uk,4 12228,http://www.swft.nhs.uk,4 12229,http://www.suttoncabx.org.uk,4 12230,http://www.suredrive.me,4 12231,http://www.sunderlandsu.co.uk,4 12232,http://www.sunderland-learnersfirst.org.uk,4 12233,http://www.sun-air.co.uk,4 12234,http://www.suffolktap.co.uk,4 12235,http://www.suffolk.police.uk,4 12236,http://www.successschoolofmotoring.co.uk,4 12237,http://www.suarts.org,4 12238,http://www.studynet2.herts.ac.uk,4 12239,http://www.studio-8.co.uk,4 12240,http://www.studfall-jun.com,4 12241,http://www.studentloaninfo.org,4 12242,http://www.studentfinancedoctor.com,4 12243,http://www.studentfinance2012.com,4 12244,http://www.strettonheating.co.uk,4 12245,http://www.streetsahead-drivingschool.co.uk,4 12246,http://www.stpeterseastgrinstead.co.uk,4 12247,http://www.stoptheguns.org,4 12248,http://www.stmichaelspreschool.co.uk,4 12249,http://www.sthk.nhs.uk,4 12250,http://www.steamingcustard.co.uk,4 12251,http://www.stch.org.uk,4 12252,http://www.startupdonut.co.uk,4 12253,http://www.startskins.com,4 12254,http://www.stangroundcollege.co.uk,4 12255,http://www.sr-drive.co.uk,4 12256,http://www.spstrainingservices.com,4 12257,http://www.spitfireart.com,4 12258,http://www.speyside-driving-instructor.co.uk,4 12259,http://www.sparkenergy.co.uk,4 12260,http://www.southwestlondon.nhs.uk,4 12261,http://www.southwarkpct.nhs.uk,4 12262,http://www.southstaffs.ac.uk,4 12263,http://www.solonswha.co.uk,4 12264,http://www.solihullforsuccess.com,4 12265,http://www.solarsun4lifeuk.co.uk,4 12266,http://www.solar-trade.org.uk,4 12267,http://www.socialenterpriselive.com,4 12268,http://www.smithservicing.co.uk,4 12269,http://www.smhproducts.com,4 12270,http://www.smarta.com,4 12271,http://www.skylineowners.com,4 12272,http://www.skillset.org,4 12273,http://www.skeef.freeserve.co.uk,4 12274,http://www.sitepro7.co.uk,4 12275,http://www.simpsonmillar.co.uk,4 12276,http://www.simpson-house.org,4 12277,http://www.simplydrivinglessons.co.uk,4 12278,http://www.similarsitesearch.com,4 12279,http://www.shortnotice4drivingtests.co.uk,4 12280,http://www.shortbreakmarket.co.uk,4 12281,http://www.shop.bt.com,4 12282,http://www.shootforum.com,4 12283,http://www.shireoakdrivingschool.com,4 12284,http://www.shieldsdrivingschool.co.uk,4 12285,http://www.sherburnhigh.co.uk,4 12286,http://www.sheltonschoolofdriving.com,4 12287,http://www.shelteroffshore.com,4 12288,http://www.shell-livewire.org,4 12289,http://www.sergey.co.uk,4 12290,http://www.seowebdirectory.co.uk,4 12291,http://www.sensite.co.uk,4 12292,http://www.sendist.gov.uk,4 12293,http://www.sellars-learn2drive.co.uk,4 12294,http://www.selfemployedtax.biz,4 12295,http://www.sectorsupport.co.uk,4 12296,http://www.secamb.nhs.uk,4 12297,http://www.seansschoolofmotoring.com,4 12298,http://www.scouts.org.uk,4 12299,http://www.schoolbeat.org,4 12300,http://www.savethestudent.org,4 12301,http://www.saveandgenerate.com,4 12302,http://www.sassh.co.uk,4 12303,http://www.sandhurstautoprint.co.uk,4 12304,http://www.sammymiller.co.uk,4 12305,http://www.samh.org.uk,4 12306,http://www.saintsweb.co.uk,4 12307,http://www.sabre-roads.org.uk,4 12308,http://www.rusu.co.uk,4 12309,http://www.rspb.org.uk,4 12310,http://www.rsamd.ac.uk,4 12311,http://www.rp.pl,4 12312,http://www.royalenfield.org.uk,4 12313,http://www.rospersonal.ru,4 12314,http://www.rongilling.co.uk,4 12315,http://www.rochesterdickensfestival.org.uk,4 12316,http://www.rochdalesfc.ac.uk,4 12317,http://www.robbiegibson.co.uk,4 12318,http://www.rmtgb.org,4 12319,http://www.rmets.org,4 12320,http://www.riversidetv.co.uk,4 12321,http://www.riskmaster.co.uk,4 12322,http://www.riseway.co.uk,4 12323,http://www.rikfit.com,4 12324,http://www.rightrider.org,4 12325,http://www.riderighttraining.co.uk,4 12326,http://www.ride2freedom.com,4 12327,http://www.rias.co.uk,4 12328,http://www.rhs.org.uk,4 12329,http://www.retirementis.co.uk,4 12330,http://www.residences.qmul.ac.uk,4 12331,http://www.reedsom.co.uk,4 12332,http://www.redruth.cornwall.sch.uk,4 12333,http://www.recolight.co.uk,4 12334,http://www.rebeccacheetham.newham.sch.uk,4 12335,http://www.realhelpnortheast.co.uk,4 12336,http://www.readingcab.org.uk,4 12337,http://www.rayleighschoolofmotoring.co.uk,4 12338,http://www.ramki.co.uk,4 12339,http://www.r3ok.com,4 12340,http://www.questionpoint.org,4 12341,http://www.queens.cam.ac.uk,4 12342,http://www.qatarembassy.info,4 12343,http://www.qaa.ac.uk,4 12344,http://www.publictrustee.gov.uk,4 12345,http://www.psychologicalscience.com,4 12346,http://www.psmdrivingschoolbrighouse.co.uk,4 12347,http://www.prodrivedrivingschool.co.uk,4 12348,http://www.pro-scot.com,4 12349,http://www.prnewswire.co.uk,4 12350,http://www.primespaces.co.uk,4 12351,http://www.portswood.info,4 12352,http://www.portsmouthlessons.co.uk,4 12353,http://www.popularschoolofmotoring.co.uk,4 12354,http://www.pontypridd-driving-school.co.uk,4 12355,http://www.polskachata.co.uk,4 12356,http://www.polska-anglia.co.uk,4 12357,http://www.pluss.org.uk,4 12358,http://www.planninghelp.org.uk,4 12359,http://www.plannerlive.com,4 12360,http://www.pjtdriving.com,4 12361,http://www.pjrdriving.co.uk,4 12362,http://www.pickupaproperty.com,4 12363,http://www.photoanswers.co.uk,4 12364,http://www.phorum.gr,4 12365,http://www.phenoptix.com,4 12366,http://www.phenixyoga.com,4 12367,http://www.phdriving.co.uk,4 12368,http://www.pharmacy-forum.co.uk,4 12369,http://www.peugeotforums.com,4 12370,http://www.people4people.org.uk,4 12371,http://www.pentlandsmc.co.uk,4 12372,http://www.pensionselfservice.co.uk,4 12373,http://www.pensionsandannuities.co.uk,4 12374,http://www.pensions-ombudsman.org.uk,4 12375,http://www.penrynsurgery.co.uk,4 12376,http://www.pelvicpartnership.org.uk,4 12377,http://www.pdwdriving.co.uk,4 12378,http://www.pcsolutions-hq.co.uk,4 12379,http://www.payrolloptions.com,4 12380,http://www.paydayin1hour.co.uk,4 12381,http://www.paulsharpdriving.co.uk,4 12382,http://www.pauljwatson.com,4 12383,http://www.passwithpdavies.co.uk,4 12384,http://www.passwithpanther.com,4 12385,http://www.passwithkind.co.uk,4 12386,http://www.passwithcathy.co.uk,4 12387,http://www.passlee.com,4 12388,http://www.passdrive.co.uk,4 12389,http://www.passcodedrivingschool.co.uk,4 12390,http://www.pas.gov.uk,4 12391,http://www.parv.co.uk,4 12392,http://www.parentsintouch.co.uk,4 12393,http://www.parents.org.uk,4 12394,http://www.parentdish.co.uk,4 12395,http://www.panpeninsula.net,4 12396,http://www.owens-school-of-motoring.co.uk,4 12397,http://www.ovh.org.uk,4 12398,http://www.ousu.org,4 12399,http://www.oundledriving.com,4 12400,http://www.oriondrivingschool.co.uk,4 12401,http://www.orange.co.uk,4 12402,http://www.operatortraining.co.uk,4 12403,http://www.opendemocracy.net,4 12404,http://www.open4community.info,4 12405,http://www.olimpiajob2012.com,4 12406,http://www.object.org.uk,4 12407,http://www.oakconservatories.co.uk,4 12408,http://www.nwhc.ac.uk,4 12409,http://www.nursingtimesjobs.com,4 12410,http://www.nursinginuk.net,4 12411,http://www.numberplateclassifieds.co.uk,4 12412,http://www.nsun.org.uk,4 12413,http://www.nsafs-link.co.uk,4 12414,http://www.nrac.org.uk,4 12415,http://www.npl.co.uk,4 12416,http://www.nortonradstockchildrenscentres.org.uk,4 12417,http://www.northumbrialcjb.org.uk,4 12418,http://www.northgate.norfolk.sch.uk,4 12419,http://www.northfield.stockton.sch.uk,4 12420,http://www.northcountyhgvdrivingschool.co.uk,4 12421,http://www.norfolkfireservice.gov.uk,4 12422,http://www.norfolk-industries.co.uk,4 12423,http://www.nonepilepticattacks.info,4 12424,http://www.noctondrivingschool.co.uk,4 12425,http://www.nnc.ac.uk,4 12426,http://www.nithcreetraining.co.uk,4 12427,http://www.nissan-navara.net,4 12428,http://www.nigelkford.co.uk,4 12429,http://www.nickrobinsons.co.uk,4 12430,http://www.nickhargreavesdrivingschool.co.uk,4 12431,http://www.nhsgg.org.uk,4 12432,http://www.nhsdg.scot.nhs.uk,4 12433,http://www.nhc.ac.uk,4 12434,http://www.nfuonline.com,4 12435,http://www.nfm.org.uk,4 12436,http://www.nexuslatvia.lv,4 12437,http://www.newmediamedicine.com,4 12438,http://www.newmarket.gov.uk,4 12439,http://www.newkings.lbhf.sch.uk,4 12440,http://www.newi.ac.uk,4 12441,http://www.netflights.com,4 12442,http://www.nescot.ac.uk,4 12443,http://www.nepalifirstmedia.com,4 12444,http://www.neogaf.com,4 12445,http://www.nelsonslegal.co.uk,4 12446,http://www.neilcodd.co.uk,4 12447,http://www.neighbourhoodinvestor.com,4 12448,http://www.ndcs.org.uk,4 12449,http://www.natcorp.ox.ac.uk,4 12450,http://www.nass.co.uk,4 12451,http://www.nakedtenant.co.uk,4 12452,http://www.mymcpl.org,4 12453,http://www.myhouseadvert.co.uk,4 12454,http://www.myfavouritecampsite.com,4 12455,http://www.mumsandms.org.uk,4 12456,http://www.msofm.co.uk,4 12457,http://www.msmdrivingschool.biz,4 12458,http://www.mrbartonmaths.com,4 12459,http://www.mranchovy.com,4 12460,http://www.mowaka.co.uk,4 12461,http://www.mount-charles.cornwall.sch.uk,4 12462,http://www.moulton.ac.uk,4 12463,http://www.motservices.co.uk,4 12464,http://www.motoxp-mct.co.uk,4 12465,http://www.motormannen.se,4 12466,http://www.motorhome365.com,4 12467,http://www.motor.org.uk,4 12468,http://www.motiv8motorcycles.com,4 12469,http://www.morganharrisgroup.com,4 12470,http://www.moodjuice.scot.nhs.uk,4 12471,http://www.montessoricentre.com,4 12472,http://www.mole-valley.gov.uk,4 12473,http://www.mobile01.com,4 12474,http://www.mmleisure.co.uk,4 12475,http://www.mklcmoodle.co.uk,4 12476,http://www.mk5golfgti.co.uk,4 12477,http://www.mitchldrivingschool.co.uk,4 12478,http://www.mirekmotoring.co.uk,4 12479,http://www.minsthorpe.wakefield.sch.uk,4 12480,http://www.minischoolwarrington.com,4 12481,http://www.mini2drive.com,4 12482,http://www.mikewayne.co.uk,4 12483,http://www.mikedrive.co.uk,4 12484,http://www.mikebishopdrivingtuition.com,4 12485,http://www.mighty-focus.co.uk,4 12486,http://www.midlandssocialcare.co.uk,4 12487,http://www.mgm-schoolofmotoring.co.uk,4 12488,http://www.mgfforum.com,4 12489,http://www.mgb-stuff.org.uk,4 12490,http://www.mfip.co.uk,4 12491,http://www.meyseyhamptonprimaryschool.co.uk,4 12492,http://www.metpolicecareers.co.uk,4 12493,http://www.mesothelioma-advice.co.uk,4 12494,http://www.mertoncab.org.uk,4 12495,http://www.merristwood.ac.uk,4 12496,http://www.merleyfirstschool.com,4 12497,http://www.mentalhealthlaw.co.uk,4 12498,http://www.medicalauthors.co.uk,4 12499,http://www.mearsashby.northants.sch.uk,4 12500,http://www.mcdrivingschool.co.uk,4 12501,http://www.mbs.ac.uk,4 12502,http://www.matalan.co.uk,4 12503,http://www.martindrivertraining.co.uk,4 12504,http://www.martin8180.karoo.net,4 12505,http://www.markosweb.com,4 12506,http://www.markmembrydrivertraining.co.uk,4 12507,http://www.markjharris.co.uk,4 12508,http://www.marchdrive.co.uk,4 12509,http://www.manufacturingdiploma.co.uk,4 12510,http://www.manchesterdrivertraining.co.uk,4 12511,http://www.mancam.org.uk,4 12512,http://www.malcolmslgvdrivertraining.co.uk,4 12513,http://www.malcolmcoles.co.uk,4 12514,http://www.mailonsunday.co.uk,4 12515,http://www.mail.ee,4 12516,http://www.mactesting.co.uk,4 12517,http://www.m-omani.com,4 12518,http://www.lyngsat.com,4 12519,http://www.lrn2drv-withclive.co.uk,4 12520,http://www.lowestoft.ac.uk,4 12521,http://www.love-cambridge.co.uk,4 12522,http://www.lothianautistic.org,4 12523,http://www.lothian.fire-uk.org,4 12524,http://www.londonschools.org,4 12525,http://www.londonrelocationservices.com,4 12526,http://www.londonnights.com,4 12527,http://www.locksmithtrainingcourse.co.uk,4 12528,http://www.lockeschoolofmotoring.co.uk,4 12529,http://www.llci.org,4 12530,http://www.livilions.co.uk,4 12531,http://www.liv.ac.uk.ezproxy.liv.ac.uk,4 12532,http://www.littlepeople.co.uk,4 12533,http://www.lithuanianembassy.co.uk,4 12534,http://www.linkdex.com,4 12535,http://www.lincsrc.co.uk,4 12536,http://www.lifeschoolofmotoring.co.uk,4 12537,http://www.lidnet.org,4 12538,http://www.librasunderland.co.uk,4 12539,http://www.library.wmuh.nhs.uk,4 12540,http://www.library.mmu.ac.uk,4 12541,http://www.lht.co.uk,4 12542,http://www.lgfl.info,4 12543,http://www.lexautolease.co.uk,4 12544,http://www.leisurestudies.co.uk,4 12545,http://www.leics-als.ac.uk,4 12546,http://www.leeds-pl.com,4 12547,http://www.learnwithrashid.co.uk,4 12548,http://www.learnwithlegg.co.uk,4 12549,http://www.learningdisability.co.uk,4 12550,http://www.learningdisabilities.org.uk,4 12551,http://www.learninamini.co.uk,4 12552,http://www.learnerdrivers.org.uk,4 12553,http://www.learndirectscotland.com,4 12554,http://www.learn2ridemotorcycle.com,4 12555,http://www.leadsheet.co.uk,4 12556,http://www.lcb.ac.uk,4 12557,http://www.lbbd.co.uk,4 12558,http://www.lawnswoodnursery.co.uk,4 12559,http://www.lampdirect.org.uk,4 12560,http://www.lambertsofhook.co.uk,4 12561,http://www.ladybikermagazine.com,4 12562,http://www.l2laberdeen.co.uk,4 12563,http://www.kulugyminiszterium.hu,4 12564,http://www.ksastudents.com,4 12565,http://www.knightroots.co.uk,4 12566,http://www.kirkleescollege.ac.uk,4 12567,http://www.kingsnorton.org.uk,4 12568,http://www.kfuk.co.uk,4 12569,http://www.keydrive.co.uk,4 12570,http://www.keycompetences.eu,4 12571,http://www.kershawcontracting.co.uk,4 12572,http://www.kentfamilysolicitor.com,4 12573,http://www.kenrixschoolofmotoring.co.uk,4 12574,http://www.kennyshand.co.uk,4 12575,http://www.keepandshare.com,4 12576,http://www.karolis.eu,4 12577,http://www.karieri.bg,4 12578,http://www.kaldata.com,4 12579,http://www.js-law.co.uk,4 12580,http://www.jostrust.org.uk,4 12581,http://www.joscott.mediahosting4u.com,4 12582,http://www.jonhillschoolofmotoring.co.uk,4 12583,http://www.jobs.salford.ac.uk,4 12584,http://www.jmpage.co.uk,4 12585,http://www.jmmac.co.uk,4 12586,http://www.jisclegal.ac.uk,4 12587,http://www.jetdrivingschoolni.co.uk,4 12588,http://www.jcomjeune.com,4 12589,http://www.janforster-estates.co.uk,4 12590,http://www.jamierobertsondrivinginstructor.co.uk,4 12591,http://www.jamesoglethorpe.havering.sch.uk,4 12592,http://www.jamesdrivingschool.org.uk,4 12593,http://www.jadu.net,4 12594,http://www.jacksdalemedicalcentre.co.uk,4 12595,http://www.ixquick.co.uk,4 12596,http://www.iwt.co.uk,4 12597,http://www.iwf.org.uk,4 12598,http://www.ivorchapman.co.uk,4 12599,http://www.itesm.mx,4 12600,http://www.italiansinfuga.com,4 12601,http://www.irrationalsigns.com,4 12602,http://www.ipswichhospital.nhs.uk,4 12603,http://www.intranet.eversheds,4 12604,http://www.intensivedriving.co.uk,4 12605,http://www.intensivecoursescroydon.co.uk,4 12606,http://www.intelligentdatasystems.co.uk,4 12607,http://www.instructorsteve.co.uk,4 12608,http://www.instructables.com,4 12609,http://www.instantimpactinterns.com,4 12610,http://www.inspiresme.co.uk,4 12611,http://www.inspiredrivertraining.net,4 12612,http://www.insolvency-service.co.uk,4 12613,http://www.inq.org.uk,4 12614,http://www.innsbruck-airport.com,4 12615,http://www.infolaw.co.uk,4 12616,http://www.infoaxe.com,4 12617,http://www.inductionloop.org,4 12618,http://www.incommunities.co.uk,4 12619,http://www.in2gearstoke.co.uk,4 12620,http://www.imps4ever.info,4 12621,http://www.immigration.govt.nz,4 12622,http://www.ilfattoquotidiano.it,4 12623,http://www.iinternationalstudent.co.uk,4 12624,http://www.ignitiondrivingschool.co.uk,4 12625,http://www.ignitedriving.co.uk,4 12626,http://www.ifaw.org,4 12627,http://www.ifaltd.com,4 12628,http://www.ictblog.it,4 12629,http://www.iauto.lv,4 12630,http://www.iankingdon.co.uk,4 12631,http://www.iammoving.com,4 12632,http://www.iadah.com,4 12633,http://www.hronline.jlrint.com,4 12634,http://www.hreoc.gov.au,4 12635,http://www.hpoc.co.uk,4 12636,http://www.howtowriteawill.org,4 12637,http://www.howtocomplain.com,4 12638,http://www.hovedrivingschool.co.uk,4 12639,http://www.housingmoves.org,4 12640,http://www.housingguideonline.co.uk,4 12641,http://www.houseladder.co.uk,4 12642,http://www.horizonsunlimited.com,4 12643,http://www.honda50.net,4 12644,http://www.honda-varadero-uk.org,4 12645,http://www.homeswapper.co.uk,4 12646,http://www.homes-bought-fast.com,4 12647,http://www.homeopathyschool.com,4 12648,http://www.homb.org,4 12649,http://www.holytrinity.leeds.sch.uk,4 12650,http://www.hoet.co.uk,4 12651,http://www.hillingdonconnected.org.uk,4 12652,http://www.highwaydriving.co.uk,4 12653,http://www.highcrossleicester.com,4 12654,http://www.hgvcourses.co.uk,4 12655,http://www.hertsonsight.co.uk,4 12656,http://www.heraldica.org,4 12657,http://www.hep.uiuc.edu,4 12658,http://www.henrylawson.co.uk,4 12659,http://www.henleylearners.com,4 12660,http://www.helptrainingcourses.com,4 12661,http://www.help-my-mobility.co.uk,4 12662,http://www.heeleyfarm.org.uk,4 12663,http://www.heatonhousenursery.co.uk,4 12664,http://www.heatingcornwall.co.uk,4 12665,http://www.heathrowmotorcycletraining.co.uk,4 12666,http://www.heart.co.uk,4 12667,http://www.healthtransition-walsall.nhs.uk,4 12668,http://www.hddrivingschool.co.uk,4 12669,http://www.hartlepoolfe.ac.uk,4 12670,http://www.harlow-college.ac.uk,4 12671,http://www.hardwareanalysis.com,4 12672,http://www.gumrukmuhafazahaber.com,4 12673,http://www.grupa-poludnie.info,4 12674,http://www.greendeal.co.uk,4 12675,http://www.greenbadgewebsites.co.uk,4 12676,http://www.grantfinder.co.uk,4 12677,http://www.governet.co.uk,4 12678,http://www.govdirect.org,4 12679,http://www.gotravelinsurance.co.uk,4 12680,http://www.google.pl.,4 12681,http://www.google.gp,4 12682,http://www.google.ga,4 12683,http://www.goodschoolsguide.co.uk,4 12684,http://www.godbolts.co.uk,4 12685,http://www.gobumpers.co.uk,4 12686,http://www.go-driveschool.co.uk,4 12687,http://www.gml-group.co.uk,4 12688,http://www.globalsecurity.org,4 12689,http://www.globalfootprints.org,4 12690,http://www.gleneaglesconversions.co.uk,4 12691,http://www.glaucoma-association.com,4 12692,http://www.glasgowdrivinginstructor.co.uk,4 12693,http://www.gjlaw.co.uk,4 12694,http://www.getready.salford.ac.uk,4 12695,http://www.georgedrivertraining.co.uk,4 12696,http://www.geolinks.nl,4 12697,http://www.gemedicine.swan.ac.uk,4 12698,http://www.gem-a.com,4 12699,http://www.garage-services.co.uk,4 12700,http://www.gap-year.com,4 12701,http://www.gambia.co.uk,4 12702,http://www.fundraising.co.uk,4 12703,http://www.fueldrivingschool.co.uk,4 12704,http://www.french-property.com,4 12705,http://www.freedomdrivingcentre.com,4 12706,http://www.freak-search.com,4 12707,http://www.fosteringoutcomes.org,4 12708,http://www.forparentsbyparents.com,4 12709,http://www.forestresearch.gov.uk,4 12710,http://www.foodinfoquest.com,4 12711,http://www.flixtongirls.com,4 12712,http://www.fleetps.co.uk,4 12713,http://www.flashpark.co.uk,4 12714,http://www.fksschools.co.uk,4 12715,http://www.fishingthefly.co.uk,4 12716,http://www.firstgeardrivingschool.co.uk,4 12717,http://www.firstcallbirmingham.org.uk,4 12718,http://www.firstaidcafe.co.uk,4 12719,http://www.financeandtaxtribunals.gov.uk,4 12720,http://www.filipinouk.co.uk,4 12721,http://www.fieldheadcarr.leeds.sch.uk,4 12722,http://www.fibrosupport-norfolk.co.uk,4 12723,http://www.fibromyalgia-associationuk.org,4 12724,http://www.ffops.org.uk,4 12725,http://www.fetcheveryone.com,4 12726,http://www.fernwood-inf.nottingham.sch.uk,4 12727,http://www.fatf-gafi.org,4 12728,http://www.fastlinksolutions.co.uk,4 12729,http://www.farnworthsom.co.uk,4 12730,http://www.fancyratsforum.co.uk,4 12731,http://www.familiesinfoservice.com,4 12732,http://www.fairplayforchildren.net,4 12733,http://www.facepunch.com,4 12734,http://www.f1-driving-school.co.uk,4 12735,http://www.ez2driveschoolofmotoring.co.uk,4 12736,http://www.eyeonspain.com,4 12737,http://www.expatmoneychannel.com,4 12738,http://www.expatinfodesk.com,4 12739,http://www.expatica.co.uk,4 12740,http://www.evropskaunie123.cz,4 12741,http://www.everestsecurity.co.uk,4 12742,http://www.everest.co.uk,4 12743,http://www.evawilden.de,4 12744,http://www.euractiv.com,4 12745,http://www.estima-motoring.co.uk,4 12746,http://www.essentialtravel.co.uk,4 12747,http://www.englisch-hilfen.de,4 12748,http://www.england.4fan.cz,4 12749,http://www.engagemutual.com,4 12750,http://www.eng.kuniv.edu,4 12751,http://www.empp.co.uk,4 12752,http://www.employmentappeals.gov.uk,4 12753,http://www.emotivelondon.co.uk,4 12754,http://www.emily.docutoaster.com,4 12755,http://www.emigratingto-australia.org.uk,4 12756,http://www.emergencysupportservices.co.uk,4 12757,http://www.embrace-learning.co.uk,4 12758,http://www.elliesschoolofmotoring.co.uk,4 12759,http://www.elitehairandbeautytraining.co.uk,4 12760,http://www.elitedriving.co.uk,4 12761,http://www.elcastellano.org,4 12762,http://www.eecera2010.org,4 12763,http://www.education.gg,4 12764,http://www.edrivinglessons.co.uk,4 12765,http://www.edinburghtrams.com,4 12766,http://www.edfenergytrust.org.uk,4 12767,http://www.ecmerrett.com,4 12768,http://www.easystepsdrivingschool.co.uk,4 12769,http://www.easyldriver.com,4 12770,http://www.easydrivertraining.co.uk,4 12771,http://www.eastwaydriving.com,4 12772,http://www.eastangliandriveability.co.uk,4 12773,http://www.east-ayrshire.gov.uk,4 12774,http://www.eagle-school-of-motoring.co.uk,4 12775,http://www.e-learningstudios.com,4 12776,http://www.dyslexiastaffs.org,4 12777,http://www.dvaschoolofmotoring.co.uk,4 12778,http://www.dsaapprovedinstructor.co.uk,4 12779,http://www.drpriceandpartners.co.uk,4 12780,http://www.dropthel.com,4 12781,http://www.drivingwithhooters.com,4 12782,http://www.drivingtuitionblackpool.co.uk,4 12783,http://www.drivingschoolscarlisle.co.uk,4 12784,http://www.drivingschools-uk.com,4 12785,http://www.drivingschoolcrawley.com,4 12786,http://www.drivinglessonswinchester.com,4 12787,http://www.drivinglessonsswlondon.co.uk,4 12788,http://www.drivinglessonsinwhitby.co.uk,4 12789,http://www.drivinglessonsgb.co.uk,4 12790,http://www.drivinglessons-cumbernauld.com,4 12791,http://www.drivinglesson.com,4 12792,http://www.drivinginstructorinstockport.co.uk,4 12793,http://www.drivingcourses4u.co.uk,4 12794,http://www.drivingbusinesssafely.org,4 12795,http://www.drivingbrighton.co.uk,4 12796,http://www.driving-schoolsleeds.co.uk,4 12797,http://www.driving-school-telford.co.uk,4 12798,http://www.drivewithlucy.co.uk,4 12799,http://www.drivetimesw.co.uk,4 12800,http://www.drivertrainingsolutions.co.uk,4 12801,http://www.drivertraining.co.uk,4 12802,http://www.drivecoach-driving-school.co.uk,4 12803,http://www.driveall.co.uk,4 12804,http://www.driveabc.co.uk,4 12805,http://www.drive-dynamics.co.uk,4 12806,http://www.drive-atlas.co.uk,4 12807,http://www.dressa.org.uk,4 12808,http://www.dramastudiolondon.co.uk,4 12809,http://www.dow.cam.ac.uk,4 12810,http://www.dorsetroadsafe.org.uk,4 12811,http://www.dongillies-drivertraining.co.uk,4 12812,http://www.donaldssom.com,4 12813,http://www.dmo.gov.uk,4 12814,http://www.divorceadvice.co.uk,4 12815,http://www.discoverbattle.co.uk,4 12816,http://www.disabledpersons-railcard.co.uk,4 12817,http://www.disabled-world.com,4 12818,http://www.disabilitycambridgeshire.org.uk,4 12819,http://www.dirjournal.com,4 12820,http://www.directline-holidays.co.uk,4 12821,http://www.directholidays.co.uk,4 12822,http://www.direct.gov.uk/studentfinance,4 12823,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/documents/digitalasset/dg_177437.png,4 12824,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_194535.pdf,4 12825,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_186584.pdf,4 12826,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@over50/documents/digitalasset/dg_180422.pdf,4 12827,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@over50/documents/digitalasset/dg_180220.pdf,4 12828,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_191927.pdf,4 12829,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_183952.pdf,4 12830,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_067671.pdf,4 12831,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_065248.pdf,4 12832,http://www.direct.gov.uk/prod_consum_dg/groups/dg_codeassets/@dg/@en/documents/codeasset/dg_192254.css,4 12833,http://www.direct.gov.uk/prod_consum_dg/groups/cta/documents/webasset/buttons.css,4 12834,http://www.direct.gov.uk/getreadyforwinter,4 12835,http://www.direct.gov.uk/en/YoungPeople/Money/ManagingYourMoney/DG_10027626,4 12836,http://www.direct.gov.uk/en/YoungPeople/Money/FinancialHelpForYoungPeople/index.htm,4 12837,http://www.direct.gov.uk/en/YoungPeople/Money/DebtAndYou/DG_10027629,4 12838,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/FamilyAndRelationships/DG_10032435,4 12839,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/ConcernedAbout/DG_10030639,4 12840,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/Bullying/DG_182398,4 12841,http://www.direct.gov.uk/en/YoungPeople/DG_91,4 12842,http://www.direct.gov.uk/en/YoungPeople/DG_10016203,4 12843,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/TypesOfCrime/DG_10027721,4 12844,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/KeepingSafe/index.htm,4 12845,http://www.direct.gov.uk/en/Video/DG_WP195670,4 12846,http://www.direct.gov.uk/en/TravelAndTransport/Roadsafetyadvice/index.htm,4 12847,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/BusAndCoachTravel/index.htm,4 12848,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069871,4 12849,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069866,4 12850,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/BringinggoodsorcashintotheUK/DG_173289,4 12851,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/Usingpleasurecraftsafely/DG_185474,4 12852,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Working/WorkingToSuitYou/index.htm,4 12853,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_183760,4 12854,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_10018948,4 12855,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PlanningForRetirement/DG_190961,4 12856,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PlanningForRetirement/DG_10014579,4 12857,http://www.direct.gov.uk/en/Pensionsandretirementplanning/HomeAndCommunity/StayingInYourHome/index.htm,4 12858,http://www.direct.gov.uk/en/Pensionsandretirementplanning/HomeAndCommunity/StayingInYourHome/DG_10027990,4 12859,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/CompanyPensions/DG_10026910,4 12860,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Benefits/ConcessionsAndOtherHelp/DG_10018651,4 12861,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/YourChildsWelfareAtSchool/DG_4016091,4 12862,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/Optionsafterschool/DG_071144,4 12863,http://www.direct.gov.uk/en/Parents/Preschooldevelopmentandlearning/HelpingYourChildToLearn/DG_10017051,4 12864,http://www.direct.gov.uk/en/parents/crimeandyoungoffenders/index.htm,4 12865,http://www.direct.gov.uk/en/Parents/CrimeAndYoungOffenders/DG_071214,4 12866,http://www.direct.gov.uk/en/Parents/Childcare/DG_071218,4 12867,http://www.direct.gov.uk/en/Parents/Childcare/DG_066832,4 12868,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_199532,4 12869,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_198040,4 12870,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_197938,4 12871,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_196740,4 12872,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_193322,4 12873,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_190457,4 12874,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_181992,4 12875,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_175719,4 12876,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2011/DG_WP195472,4 12877,http://www.direct.gov.uk/en/Motoring/VehicleCrime/DG_183525,4 12878,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_069673,4 12879,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyA/DG_068016,4 12880,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/RidingMotorcyclesAndMopeds/DG_4022434,4 12881,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/PracticalTest/DG_197905,4 12882,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/Passplusdrivingcoursefornewdrivers/DG_182845,4 12883,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/NewlyQualifiedDrivers/index.htm,4 12884,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/Drivinglorriesbusesandcoaches/DG_186131,4 12885,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/DG_182843,4 12886,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/DG_182839,4 12887,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/ImportingAndExportingAVehicle/DG_10028413,4 12888,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/ImportingAndExportingAVehicle/DG_10014606,4 12889,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/AdviceOnBuyingAndSellingAVehicle/CalculatethefuelconsumptionCO2andtaxcosts/index.htm,4 12890,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/Understandingyourtaxbillandhowtopay/DG_10010473,4 12891,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/Fileyourtaxreturnonline/index.htm,4 12892,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/VAT/index.htm,4 12893,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxrefundsreclaimingtax/DG_078335,4 12894,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxallowancesandreliefs/DG_078389,4 12895,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/IntroductiontoIncomeTax/DG_078308,4 12896,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCreditsandChildBenefit/TaxCredits/Gettingstarted/Claimingtaxcredits/workoutincomeandworkinghours/DG_174178,4 12897,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/peoplewhohelpothers/Entitlementtablesfortaxcredits/Youworkandalsohavechildren/DG_174787,4 12898,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Changesthataffectyourtaxcredits/Familychanges/DG_185454,4 12899,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Ifthingsgowrong/Wheretostart/index.htm,4 12900,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Ifthingsgowrong/index.htm,4 12901,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/childrenandchildcare/DG_172898,4 12902,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/SavingsAndInvestments/DG_10013712,4 12903,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/Mortgages/DG_10014973,4 12904,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/Insurance/index.htm,4 12905,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/Bonavacantia/DG_171016,4 12906,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Respondingtoacourtclaimformoney/DG_195957,4 12907,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Respondingtoacourtclaimformoney/DG_195937,4 12908,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Debtrepaymentoptions/DG_187444,4 12909,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Bankruptcy/index.htm,4 12910,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Bankruptcy/DG_187411,4 12911,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/ChildTrustFund/AnintroductiontotheChildTrustFund/index.htm,4 12912,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/ChildTrustFund/AnintroductiontotheChildTrustFund/DG_193634,4 12913,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Paymentsandentitlements/ChildBenefitpayment/,4 12914,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ChildBenefitandwhoqualifies/DG_173532,4 12915,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Inretirement/,4 12916,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Expectingorbringingupchildren/DG_10018736,4 12917,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Employedorlookingforwork/DG_10013843,4 12918,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10018721,4 12919,http://www.direct.gov.uk/en/HomeAndCommunity/YourlocalcouncilandCouncilTax/YourCommunity/DG_4018920,4 12920,http://www.direct.gov.uk/en/HomeAndCommunity/YourlocalcouncilandCouncilTax/YourCommunity/DG_4018786,4 12921,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/StreetsParkingCleaningAndLighting/index.htm,4 12922,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/StreetsParkingCleaningAndLighting/DG_10028438,4 12923,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/RoadsAndStreets/DG_10026193,4 12924,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/index.htm,4 12925,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/FloodingInYourArea/index.htm,4 12926,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/Derelictbuildingsandsquatters/DG_10022452,4 12927,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/RentingOutYourProperty/DG_189240,4 12928,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/SupportAtHome/DG_10026190,4 12929,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/KeepingSafeAtHome/DG_10027531,4 12930,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Dealingwithemergencies/Supportafteramajorincident/DG_076342,4 12931,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Dealingwithemergencies/preparingforemergencies/index.htm,4 12932,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/AnimalsAndPets/DG_181824,4 12933,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Volunteering/,4 12934,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Charities/Startingacharity/index.htm,4 12935,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Councilhousing/DG_188544,4 12936,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/MobileHousing/dg_10029631,4 12937,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_186948,4 12938,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_066479,4 12939,http://www.direct.gov.uk/en/Hl1/Help/DG_10016071,4 12940,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Findoutaboutyourrights/DG_4002951,4 12941,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/UKpublicappointments/DG_067109,4 12942,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Politicalpartiesandelections/DG_073242,4 12943,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Politicalpartiesandelections/DG_073226,4 12944,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Marriagesandcivilpartnerships/DG_175716,4 12945,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Marriagesandcivilpartnerships/DG_10026937,4 12946,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Familyhistoryandresearch/Birthmarriageanddeathcertificates/index.htm,4 12947,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthandadoptionrecords/Registeringorchangingabirthrecord/DG_175620,4 12948,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthandadoptionrecords/Registeringorchangingabirthrecord/DG_175618,4 12949,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingdecisionsforsomeoneelse/DG_195206,4 12950,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/DG_176385,4 12951,http://www.direct.gov.uk/en/Governmentcitizensandrights/GettingLegalAdvice/Legalaidincriminalcases/DG_196362,4 12952,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Workingoutmoneyandpropertythroughancillaryrelief/DG_193772,4 12953,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Protectyourselffromscams/DG_195967,4 12954,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/PostalServices-yourconsumerrights/DG_196257,4 12955,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Howtocomplainaboutgoodsandservices/DG_183163,4 12956,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Energy-yourconsumerrights/DG_196255,4 12957,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Pollution/DG_189706,4 12958,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Climatechange/DG_072901,4 12959,http://www.direct.gov.uk/en/Environmentandgreenerliving/Smallholders/DG_189284,4 12960,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenerhomeandgarden/Greenerlabelsandclaims/DG_064816,4 12961,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenerhomeandgarden/Greenergarden/index.htm,4 12962,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Renewableandlowcarbonenergy/DG_064372,4 12963,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Workersemployeesandselfemployment/DG_183496,4 12964,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Fixedtermworkers/index.htm,4 12965,http://www.direct.gov.uk/en/Employment/TradeUnions/Tradeunionsintheworkplace/index.htm,4 12966,http://www.direct.gov.uk/en/Employment/TradeUnions/Tradeunionmembership/DG_10027560,4 12967,http://www.direct.gov.uk/en/Employment/TradeUnions/Industrialaction/DG_179256,4 12968,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Mediationconciliationandarbitration/index.htm,4 12969,http://www.direct.gov.uk/en/Employment/Jobseekers/programmesandservices/DG_198850,4 12970,http://www.direct.gov.uk/en/Employment/Jobseekers/ProgrammesandServices/DG_173561,4 12971,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/DG_187060,4 12972,http://www.direct.gov.uk/en/Employment/Jobseekers/Helpapplyingforajob/DG_173785,4 12973,http://www.direct.gov.uk/en/Employment/Employees/Timeoffandholidays/DG_184199,4 12974,http://www.direct.gov.uk/en/Employment/Employees/Flexibleworking/DG_171775,4 12975,http://www.direct.gov.uk/en/Employment/Employees/BusinessTransfersandtakeovers/DG_176404,4 12976,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/WhyGoToUniversityOrCollege/DG_4017034,4 12977,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentHousing/DG_064413,4 12978,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ChoicesAfterYouGraduate/DG_10012441,4 12979,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/FinancialHelpForAdultLearners/DG_172003,4 12980,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/DanceandDrama/DG_066987,4 12981,http://www.direct.gov.uk/en/EducationAndLearning/14To19/%20OptionsAt16/index.htm,4 12982,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/TravelAndTransportContacts/DG_186112,4 12983,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/ParentsContacts/DG_172841,4 12984,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EmploymentContacts/DG_172141,4 12985,http://www.direct.gov.uk/en/Dl1/Directories/DG_6000095,4 12986,http://www.direct.gov.uk/en/Dl1/Directories/DG_189718,4 12987,http://www.direct.gov.uk/en/Dl1/Directories/DG_175889,4 12988,http://www.direct.gov.uk/en/Dl1/Directories/DG_174453,4 12989,http://www.direct.gov.uk/en/Dl1/Directories/DG_10016420,4 12990,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012781,4 12991,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012632,4 12992,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012615,4 12993,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012310,4 12994,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011973,4 12995,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011801,4 12996,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011770,4 12997,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011760,4 12998,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011747,4 12999,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011746,4 13000,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011695,4 13001,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011686,4 13002,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011658,4 13003,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011654,4 13004,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011649,4 13005,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011648,4 13006,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011617,4 13007,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011573,4 13008,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011550,4 13009,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011516,4 13010,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011500,4 13011,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011496,4 13012,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011486,4 13013,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011391,4 13014,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011337,4 13015,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011251,4 13016,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011249,4 13017,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011248,4 13018,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011235,4 13019,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011234,4 13020,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011232,4 13021,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010941,4 13022,http://www.direct.gov.uk/en/Dl1/Directories/DG_069029,4 13023,http://www.direct.gov.uk/en/DisabledPeople/TravelHolidaysAndBreaks/TravelAndHolidaysInTheUk/DG_4016120,4 13024,http://www.direct.gov.uk/en/DisabledPeople/RightsAndObligations/index.htm,4 13025,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/Yourvehicleandlicence/index.htm,4 13026,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/DG_10038295,4 13027,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/WhosWhoInHealthServices/DG_4003764,4 13028,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/MentalHealth/DG_10023343,4 13029,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/Equipment/DG_4000577,4 13030,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/Equipment/DG_179937,4 13031,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/OtherBenefitsAndSupport/index.htm,4 13032,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/Introductiontofinancialsupport/DG_073387,4 13033,http://www.direct.gov.uk/en/DisabledPeople/Everydaylifeandaccess/Everydayaccess/DG_10037996,4 13034,http://www.direct.gov.uk/en/DisabledPeople/EducationAndTraining/Schools/index.htm,4 13035,http://www.direct.gov.uk/en/Diol1/DoItOnline/WP/DG_WP198641,4 13036,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinemotoring/DG_197325,4 13037,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_069239,4 13038,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_067269,4 13039,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018851,4 13040,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017822,4 13041,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017802,4 13042,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017625,4 13043,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10016794,4 13044,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/VictimsOfCrime/DG_181641,4 13045,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Goingtocourt/index.htm,4 13046,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Beingstoppedorarrestedbythepolice/DG_181769,4 13047,http://www.direct.gov.uk/en/CaringForSomeone/CarersRights/DG_4018108,4 13048,http://www.direct.gov.uk/en/campaigns/Vetting/DG_183218,4 13049,http://www.direct.gov.uk/en/BritonsLivingAbroad/EducationAndJobs/index.htm,4 13050,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVUtugzAUPA2bSkj!xHyWQJoD9ALIct0UJTHUplKP32dbiWUKFbBqN*iZGd4w85AxvR4TekxI9gFL81I3Can5MFw7wceuV7B76*UNcKWl!byOBmgYwd7Aky03QqrXTp3hrr155a6UyhJG6CBazdUFCK38GqCDsT2tHiPF5HLj5gIFq0kJC63cwo5PxKK2JnWgFJ5SOMoEyz2Wz2GZx7I5jHmMzWEHjx3uGPWXx7vRk*NgRK9lGkpbnYIBx2xQ4KcPlve8!CitUIhhKTjqOldu!WfBLVrC3hLeYqmc1fHhBA2XsutIn!PYPf!!pRWjWZGjEmV!XCmOBrphPnvM*I35TCLYZDv2FGz*LoXxHqkootVSaI9UlPhaKVTukYoGuFrqx!myRir6HlZL5ctSpf0t9OdOwLFvJNfivZXqG2AogXY_/results,4 13051,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4yAQ*TW5rBQLm!CPo10naS671Xr3jFyMUqsxpGA3!*N3ACeW06RycmovwMw8z!PNANZStTOcz4LwDSZRtrUU5W4WZLXQnSoF47AWXfPMFWCE4rrbtRqgPgJbw9e01IyLqhZb8Brnm*cspW559Vi32vv126YnQQyJVHnoFGQnODWu4KVt92bR2yRY9dPhcPCqWnHWelv57nWvvX!vZEWZhL01tNr2zrpi!50z8GpTsYKr99ps3DjyoqDr5R*6lK6XDh8KWfFN1YcDkvTuTUGL4ulv7*ftBmGIsmZmgbHxPGhrIBMAWZnxQYIMZDrji8r08QJP1Bl9M51a55L9LJsjIl9TP0FoEU*UG36iN9yV9lxzYU57C9eDUbgVr3DaKf!3h!ug4cIMJ3w0NKU2QklmMkFN7ETyH0GfnATZAIkdJLaQs1jkYtGlWOhi4aUYcTFyKbZwscUxht1w2hu2vYs1k4rPh6VZrQYBFvmABvz8hHKar36KUzSU4VrhsM2c2umbFe6qJN9J8m!RlFzkQaebFw9Vthnxclx2hz!aOCU4jCOUoNC1a!6PGnpDf!4R8zX6c1aCm2SPNQ2yP6fy*XuoRiWaTIXuoRpVfCoVSu6hGjVwMtWH12UK1eg8TKaKrlPZ34Lc1gyefc1LxV4oF*8B2*hFDQ__/results,4 13052,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hiEu2ZLd4hZo088vcLJLsNqoT!0LHJiRceYYNKO2Ge0yUry76aTlp1TnjLRWGOs2lRbm42qNwzBya!PoPTeDUCfPo53fvPJQCuUJlls59JqriyP04uvmTjByVEGEkWoyvHFzcQVrSe0m2oSJdU*Eo74mbaRUQKkCZYKVgJVzWAFYMYcxwNgcdgDscMcoDI93o8fgwQyjFnksfXWMBgLzGUV!*mCB58VHaYNiDEvB0XByE6Z*FtyiJQyW8BZL9awOhBM1QsrhRPqSxg78!5I2jBZViWpUQLtynDR0Q3*2mPkb*ZlEsMl26ina*l0K4z1SSUSrpdAeqSTxtVKo3iOVNHC11I*bZY1U8j2sliqXpWr*WxjPcnDXvhFcD6!9UN879X4u/results,4 13053,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKSqPdl1*wxBGOtMOO2DJPn8XblqC00V92l7gwjlyPOcadIP1O3bcldUHTNJ7bV6lURo2jNXu8!od7FMCawfUTjoFjN6cYTdsXmUstQkEL32vOivNBQid*rrBCa4fTBTgZTMa3qW7QMEPpYCJtXHix6cyoKEuD4nSIKWJlBFWI1ZPYRVi1RTGEeNT2B6x*R1jODzejZ2iB6cGq4tUhuqUDETmM0n84sFCz7OPspakGOaCY*HkNk7*LLhZSxQt0TWWxKQOhpM0YsrxRPaSx478!5K1nFVNTQSpsF0FzRq6oj9bzPyN*owiWGU795Rs*y5F6RapLKLFUmSLVJb4UikitkhlDVws9eN2WSKVfQ!Lpep5KRF!C8O5V3DtOy2teuu0!QZ7cXz5/results,4 13054,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctygjAU*Ro3nZEJRB4uwVddtVPadYYmGWXUhCZB279vHiiD1Q66ahckN*dc7uGciyi5UAM4HQSRVIUNgY4*9K443wyCrNCXWlMuvkxApdIwE1TWWyV1lW*KpW6CCokpIyVbHXt475xLRcljqaT39GJZwiDRbURxqMVWn2BqUsFaqcoEzTkM5s12OBw8UgqKlbfie6*eNPlKcIIwZ7LeIbJqkiXB1dYd4HxJcE7FvsTUJaZ5jhazV*ScLmauPmKc0CVp4CAZN!lljvL8!a3J!*YB9RJnu4ErNJmJtAdgAC0rMzndINoWVj9lzlBVYiQKttGuIPpZadtkyVnrRGfZFdLoCzPTSVtht3D6EDTNwyBrSxJXktiSMyx2WHwJixwWXcJCh4WXsJHDRkcMuuX0bNCOLJGYCzpsQxPNWwG2cgLa!uGpymm!eitMQWvDNeOg7Zza7Z8Zd1WS7yT5t0gaX!QBpx9c0rpsO8JZ13ZXfzzCNIRREoMxiNy4hn5noDfM5x4xf2M!ZxbcJLurqZX9O5Xv30PVsag3FbiHquN4XyowvoeqM8DeVD!!Ln2oOu9Db6r4OpX9W!CrEuvPvqSFwGtE2TetZ8ez/results,4 13055,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1mulaJQ02IS9fO79iqxTKECTu3FXnsGDzOLjO2HMeHHhGWfMI23hNVda5U2SsOeGbS9dqMFiBJYW2A30sGvrTnDrtvspC!1cYRRjq1qBmkuQGj01wecYNveeA3BisnwLu0FClGzEiZe!Ukcn5hDXc3qQCmQUnjKBMsRy!ewDLFsDhOIiTnsgNjhjnEcHu*GT96DVf2g01C66hQMeOYzCfz0wULPi4*yioQYloLj*uTKT*8suEVLFC3RLZbKWR0MJ2j4lP2J*CWOHfn3Ja8Ez4qclCTDdqU0auiG*uwx8zf6M4lgk!3YU7D9uxSle6SiiFZLkT1SUeJrpUi5Rypq4GqpH7fLGqnoe1gtlS9Lle630J9bBde!1XJQb4023*S6fas_/results,4 13056,http://www.direct.gov.uk/Dl1/Directories/DevolvedAdministrations/fs/en,4 13057,http://www.direct.gov.uk/cy/TravelAndTransport/CyclingAndWalking/index.htm,4 13058,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Working/LookingForWork/DG_10026789CY,4 13059,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/TaxandNationalInsuranceinretirement/GettingyourtaxandNationalInsuranceright/DG_171913CY,4 13060,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/StatePension/DG_183802CY,4 13061,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/StatePension/Basicstatepension/,4 13062,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Benefits/BenefitsBeforeRetirement/index.htm,4 13063,http://www.direct.gov.uk/cy/Parents/ParentsRights/DG_4003313CY,4 13064,http://www.direct.gov.uk/cy/Parents/Moneyandworkentitlements/YourMoney/DG_10035906CY,4 13065,http://www.direct.gov.uk/cy/Motoring/PersonalisedRegAndNumberPlates/DG_4022576CY,4 13066,http://www.direct.gov.uk/cy/Motoring/OwningAVehicle/UntaxedVehicle/DG_4022058CY,4 13067,http://www.direct.gov.uk/cy/Motoring/OwningAVehicle/HowToTaxYourVehicle/index.htm,4 13068,http://www.direct.gov.uk/cy/Motoring/DriverSafety/index.htm,4 13069,http://www.direct.gov.uk/cy/Motoring/DriverLicensing/WhatCanYouDriveAndYourObligations/index.htm,4 13070,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/Taxreturndeadlinescheckspenaltiesandappeals/DG_10014904CY,4 13071,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxcodes/index.htm,4 13072,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/entitlement/DG_073939CY,4 13073,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingDebt/CourtClaimsAndBankruptcy/DG_10013083CY,4 13074,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/index.htm,4 13075,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_10018978CY,4 13076,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/index.htm,4 13077,http://www.direct.gov.uk/cy/HomeAndCommunity/WhereYouLive/Streetcleaninglitterandillegaldumping/DG_10026161CY,4 13078,http://www.direct.gov.uk/cy/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Resolvingproblemswithyourrelationship/,4 13079,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Thewiderenvironment/DG_072885CY,4 13080,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Energyandwatersaving/Energygrants/index.htm,4 13081,http://www.direct.gov.uk/cy/Employment/Jobseekers/LookingForWork/DG_10033052CY,4 13082,http://www.direct.gov.uk/cy/Employment/Jobseekers/index.htm,4 13083,http://www.direct.gov.uk/cy/Employment/Employees/TheNationalMinimumWage/DG_10027201CY,4 13084,http://www.direct.gov.uk/cy/EducationAndLearning/14To19/MoneyToLearn/EMA/index.htm,4 13085,http://www.direct.gov.uk/cy/DisabledPeople/MotoringAndTransport/Yourvehicleandlicence/DG_10028000CY,4 13086,http://www.direct.gov.uk/cy/CrimeJusticeAndTheLaw/Typesofcrime/index.htm,4 13087,http://www.direct.gov.uk/cy/AdvancedSearch/Searchresults/index.htm,4 13088,http://www.direct.gov.uk/adoptionpaternity.dsb,4 13089,http://www.direct-gov.org,4 13090,http://www.devondriverinstructor.co.uk,4 13091,http://www.deviantart.com,4 13092,http://www.design360create.com,4 13093,http://www.derbylawcentre.org,4 13094,http://www.dennisdrivinginstruction.co.uk,4 13095,http://www.deepdaleoffroad.co.uk,4 13096,http://www.debatewise.com,4 13097,http://www.deafworks.co.uk,4 13098,http://www.dccacademy.org.uk,4 13099,http://www.dcbikers.co.uk,4 13100,http://www.davidconvery.co.uk,4 13101,http://www.david-webb-adi.com,4 13102,http://www.davegoslin.co.uk,4 13103,http://www.dagworthys.co.uk,4 13104,http://www.d-s-i.co.uk,4 13105,http://www.cyswlltdefnyddwyr.gov.uk,4 13106,http://www.cyprus44.com,4 13107,http://www.cygnetheating.co.uk,4 13108,http://www.cyclesolutions.co.uk,4 13109,http://www.cvsce.org.uk,4 13110,http://www.cusu.org,4 13111,http://www.cursiter.com,4 13112,http://www.cuckmerebus.freeuk.com,4 13113,http://www.csmmotorcycletraining.co.uk,4 13114,http://www.csm.gb.com,4 13115,http://www.croydebaycampers.co.uk,4 13116,http://www.crohnsandcolitis.org.uk,4 13117,http://www.crin.org,4 13118,http://www.crimecheck.co.uk,4 13119,http://www.crewforum.co.uk,4 13120,http://www.creamsupplies.co.uk,4 13121,http://www.crashcoursedriving.co.uk,4 13122,http://www.craftsforum.co.uk,4 13123,http://www.courtsni.gov.uk,4 13124,http://www.countryproperties.org.uk,4 13125,http://www.countryloveceramics.com,4 13126,http://www.counsellingpsychotherapyplymouth.com,4 13127,http://www.coryton-areaguide.com,4 13128,http://www.corpus.cam.ac.uk,4 13129,http://www.cornwallscitt.org,4 13130,http://www.coombeboysschool.org,4 13131,http://www.contractorcalculator.co.uk,4 13132,http://www.constructiilondra.co.uk,4 13133,http://www.consbraslondres.com,4 13134,http://www.conocophillips.co.uk,4 13135,http://www.connexionswest.org.uk,4 13136,http://www.connexions-salford.com,4 13137,http://www.connexions-bdp.co.uk,4 13138,http://www.connectingforhealth.nhs.uk,4 13139,http://www.communitylegaladvice.org.uk,4 13140,http://www.colfes.com,4 13141,http://www.coldsidemedicalpractice.co.uk,4 13142,http://www.coadysdrivingschool.co.uk,4 13143,http://www.co-opxest.com,4 13144,http://www.clubscuderia.co.uk,4 13145,http://www.clothnappytree.com,4 13146,http://www.clio197.net,4 13147,http://www.clinpsy.org.uk,4 13148,http://www.cliftonpracticehypnotherapytraining.co.uk,4 13149,http://www.client25.phdwebsite.co.uk,4 13150,http://www.classiccarlist.co.uk,4 13151,http://www.clarityefbp.org,4 13152,http://www.citysouthmanchester.co.uk,4 13153,http://www.citycol.com,4 13154,http://www.citizensadvice.co.uk,4 13155,http://www.circles-uk.org.uk,4 13156,http://www.circlechristianclasses.org,4 13157,http://www.cifas.org.uk,4 13158,http://www.churchill.com,4 13159,http://www.christopherwhitehead.worcs.sch.uk,4 13160,http://www.christchurchprimary.co.uk,4 13161,http://www.chrisrichardsadi.co.uk,4 13162,http://www.chris-1stclassdriving.co.uk,4 13163,http://www.chooseandmove.co.uk,4 13164,http://www.chilternvoice.co.uk,4 13165,http://www.chetwyn.com,4 13166,http://www.chessmoving.com.au,4 13167,http://www.chesham.gov.uk,4 13168,http://www.chelseadrivingschool.co.uk,4 13169,http://www.cheapcarinsurance.co.uk,4 13170,http://www.che-consult.de,4 13171,http://www.chauffeurcenter.net,4 13172,http://www.chasecarcarecentres.com,4 13173,http://www.charnwoodbusiness.com,4 13174,http://www.champdogsforum.co.uk,4 13175,http://www.challenger-eu.org,4 13176,http://www.challengedrivingschool.com,4 13177,http://www.chaletsdirect.com,4 13178,http://www.chaldon-drive.co.uk,4 13179,http://www.cfbt.com,4 13180,http://www.cddft.nhs.uk,4 13181,http://www.ccjf.org,4 13182,http://www.cbtcourselondon.co.uk,4 13183,http://www.cbelearning.com,4 13184,http://www.cattongrovefiddlewoodandmilecross.surestart.org,4 13185,http://www.carshaltonboys.org,4 13186,http://www.carlosdrivingschool.co.uk,4 13187,http://www.carefulhands.net,4 13188,http://www.careers4adults.org,4 13189,http://www.cardiffcu.com,4 13190,http://www.capripower.co.uk,4 13191,http://www.candamotorcycletraining.co.uk,4 13192,http://www.camdencarers.org.uk,4 13193,http://www.cambridgedrivingcentre.co.uk,4 13194,http://www.cafe-it.org.uk,4 13195,http://www.cafamily.org.uk,4 13196,http://www.c-t-r.com,4 13197,http://www.byerswritings.co.uk,4 13198,http://www.bwcharity.org.uk,4 13199,http://www.buzzrecruit.com,4 13200,http://www.buysellcortina.co.uk,4 13201,http://www.burbage-village.co.uk,4 13202,http://www.bunneysom.co.uk,4 13203,http://www.bucksfamilyinfo.org,4 13204,http://www.bucklup.co.uk,4 13205,http://www.buckdenparishcouncil.org.uk,4 13206,http://www.btoffice.com,4 13207,http://www.bsms.ac.uk,4 13208,http://www.bsbnet.brookstreet.co.uk,4 13209,http://www.bsa.org.uk,4 13210,http://www.broughtonproperty.co.uk,4 13211,http://www.brookstreet.co.uk,4 13212,http://www.bromleyhealthcare.org.uk,4 13213,http://www.broadbentco.co.uk,4 13214,http://www.broadacres.org.uk,4 13215,http://www.britmodeller.com,4 13216,http://www.britishrowing.org,4 13217,http://www.britishlegion.org.uk,4 13218,http://www.bridgedrivingagency.co.uk,4 13219,http://www.brettsschoolofmotoring.co.uk,4 13220,http://www.brake-thru.co.uk,4 13221,http://www.bradfordhospitals.nhs.uk,4 13222,http://www.bowmandale.n-lincs.sch.uk,4 13223,http://www.bourne2drive.co.uk,4 13224,http://www.boston.gov.uk,4 13225,http://www.bossdriving.com,4 13226,http://www.borisbikes.co.uk,4 13227,http://www.bmwsections.com,4 13228,http://www.bmhdrivingschool.co.uk,4 13229,http://www.bluecoat.gloucs.sch.uk,4 13230,http://www.bloggang.com,4 13231,http://www.bllrf.org.uk,4 13232,http://www.blacksluiceidb.guv.co.uk,4 13233,http://www.blackpooldrivingschool.co.uk,4 13234,http://www.blackberry-driving.co.uk,4 13235,http://www.birmingham.childrencentres.org,4 13236,http://www.billhancock.co.uk,4 13237,http://www.bi-aura.com,4 13238,http://www.bhfederation.org.uk,4 13239,http://www.bexleyheathacademy.org,4 13240,http://www.bernicia.com,4 13241,http://www.berlingoforum.co.uk,4 13242,http://www.berkshire-driving-school.co.uk,4 13243,http://www.bensongarage.co.uk,4 13244,http://www.benhoarebell.com,4 13245,http://www.belt-updrivertraining.com,4 13246,http://www.begin-driving-lessons.co.uk,4 13247,http://www.beestonprimary.co.uk,4 13248,http://www.beehappypassing.com,4 13249,http://www.becket.notts.sch.uk,4 13250,http://www.beacontutors.co.uk,4 13251,http://www.bcpc.org.uk,4 13252,http://www.bcomm-wales.gov.uk,4 13253,http://www.baysom.co.uk,4 13254,http://www.baylisdrivingschool.co.uk,4 13255,http://www.barrheadsom.co.uk,4 13256,http://www.barrells.co.uk,4 13257,http://www.barnethomes.org,4 13258,http://www.barchester.com,4 13259,http://www.barberysautocentre.co.uk,4 13260,http://www.baesystemseducationprogramme.com,4 13261,http://www.backlinkwatch.com,4 13262,http://www.bachcentre.com,4 13263,http://www.babyfreestuff.co.uk,4 13264,http://www.babcockwf.co.uk,4 13265,http://www.ayudas-edimburgo.es.tl,4 13266,http://www.awesomeschoolofmotoring.co.uk,4 13267,http://www.awardsdrivingschool.co.uk,4 13268,http://www.avonpensionfund.org.uk,4 13269,http://www.availablecar.com,4 13270,http://www.autopedia.com,4 13271,http://www.australianbusiness.co.uk,4 13272,http://www.austensschoolofmotoring.co.uk,4 13273,http://www.aupair-world.it,4 13274,http://www.audifans.net,4 13275,http://www.atestdrive.co.uk,4 13276,http://www.astrodraft.com,4 13277,http://www.assistancedogseurope.org,4 13278,http://www.aspirepsychologists.co.uk,4 13279,http://www.aspire-to-drive.co.uk,4 13280,http://www.aspiescentral.com,4 13281,http://www.asmtauntondrivinglessons.co.uk,4 13282,http://www.asm.me.uk,4 13283,http://www.askthurrock.org.uk,4 13284,http://www.ask.mmu.ac.uk,4 13285,http://www.ashfordstpeters.nhs.uk,4 13286,http://www.ashadegreener.co.uk,4 13287,http://www.aronasarwar.com,4 13288,http://www.are-you-ok.org.uk,4 13289,http://www.archboldaccountancy.co.uk,4 13290,http://www.apfs.co.uk,4 13291,http://www.aoc.co.uk,4 13292,http://www.answers.com,4 13293,http://www.answered-questions.com,4 13294,http://www.anngregorydrivingschool.co.uk,4 13295,http://www.angloargentine.com,4 13296,http://www.anglictina-on-line.cz,4 13297,http://www.andrews-driving-school.com,4 13298,http://www.andersonsdrivingschool.co.uk,4 13299,http://www.amstarpayroll.co.uk,4 13300,http://www.ambafrance-uk.org,4 13301,http://www.allseascargo.com.my,4 13302,http://www.allnations.ac.uk,4 13303,http://www.allmumstogether.proboards.com,4 13304,http://www.allertongrange.org,4 13305,http://www.alldoubleglazing.co.uk,4 13306,http://www.all-motoring.co.uk,4 13307,http://www.alexpoole.name,4 13308,http://www.alexandertechnique.org.uk,4 13309,http://www.aldwyn.tameside.sch.uk,4 13310,http://www.alanpowelldrivertraining.com,4 13311,http://www.alancollict.co.uk,4 13312,http://www.airliners.net,4 13313,http://www.aimhighernorthamptonshire.ac.uk,4 13314,http://www.agradedrivertraining.co.uk,4 13315,http://www.agentura.ru,4 13316,http://www.ageconcern-durham.org.uk,4 13317,http://www.adriansdrivingschool.co.uk,4 13318,http://www.adh-geneva.ch,4 13319,http://www.addup.co.uk,4 13320,http://www.adamsdrivertraining.co.uk,4 13321,http://www.adairs.co.uk,4 13322,http://www.activateyourheart.org.uk,4 13323,http://www.actionforall.org.uk,4 13324,http://www.acotcarers.btck.co.uk,4 13325,http://www.aceofheartsdriving.co.uk,4 13326,http://www.accommodation.manchester.ac.uk,4 13327,http://www.acclaimmotorschool.co.uk,4 13328,http://www.accesstolaw.com,4 13329,http://www.accessifyforum.com,4 13330,http://www.access-southwest.co.uk,4 13331,http://www.academyinsurance.co.uk,4 13332,http://www.academydrivingschoolhull.co.uk,4 13333,http://www.absoluteperfection.co.uk,4 13334,http://www.aboutbraininjury.org.uk,4 13335,http://www.abels-solicitors.co.uk,4 13336,http://www.abcdrivertraining.co.uk,4 13337,http://www.abarthforum.co.uk,4 13338,http://www.a2bdrivingschool.co.uk,4 13339,http://www.3egp.com,4 13340,http://www.3cmt.co.uk,4 13341,http://www.247moneybox.com,4 13342,http://www.1sttopgear.co.uk,4 13343,http://www.192.com,4 13344,http://www.16vminiclub.com,4 13345,http://www.123thietkeweb.net,4 13346,http://www.106owners.co.uk,4 13347,http://wpm-training.co.uk,4 13348,http://workingformentalhealth.dh.gov.uk,4 13349,http://wm58.inbox.com,4 13350,http://wlwa.easysearch.org.uk,4 13351,http://wlvt.org.uk,4 13352,http://willsandprobateservice.co.uk,4 13353,http://wikis.in.nokia.com,4 13354,http://wiki.seloc.org,4 13355,http://wiki,4 13356,http://whitecollarunemployed.co.uk,4 13357,http://wewant2work.co.uk,4 13358,http://westminster.zipcar.co.uk,4 13359,http://wessex4x4ra.easysearch.org.uk,4 13360,http://wenwen.soso.com,4 13361,http://webmail1f.orange.fr,4 13362,http://webmail.myway.com,4 13363,http://webl,4 13364,http://webcontent,4 13365,http://web.bobbasement.com,4 13366,http://wbcnet,4 13367,http://wayahead-cheshireeast.co.uk,4 13368,http://vsapp71,4 13369,http://vs234,4 13370,http://volkszone.com,4 13371,http://vlpdriving.co.uk,4 13372,http://vle.uplandscc.e-sussex.sch.uk,4 13373,http://vle.ratton.e-sussex.sch.uk,4 13374,http://vle.laneend.stockport.sch.uk,4 13375,http://vle.cove.hants.sch.uk,4 13376,http://vle.brighouse.calderdale.sch.uk,4 13377,http://visionschoolofdriving.com,4 13378,http://visionhousing.org.uk,4 13379,http://veecentre.com,4 13380,http://v6clio.net,4 13381,http://usdawstokek183.org.uk,4 13382,http://us.mg60.mail.yahoo.com,4 13383,http://us.mc594.mail.yahoo.com,4 13384,http://us.mc459.mail.yahoo.com,4 13385,http://us.mc447.mail.yahoo.com,4 13386,http://us.mc1257.mail.yahoo.com,4 13387,http://us.mc1256.mail.yahoo.com,4 13388,http://us.mc1145.mail.yahoo.com,4 13389,http://us.mc1144.mail.yahoo.com,4 13390,http://us.mc1141.mail.yahoo.com,4 13391,http://us.mc1134.mail.yahoo.com,4 13392,http://us.mc1119.mail.yahoo.com,4 13393,http://us.mc1116.mail.yahoo.com,4 13394,http://us.mc1111.mail.yahoo.com,4 13395,http://us.mc1108.mail.yahoo.com,4 13396,http://urlwww--ads-training--co--uk.rtrk.co.uk,4 13397,http://urlspy.co.uk,4 13398,http://universities4you.com,4 13399,http://unistats.direct.gov.uk/uniSearchResults.do,4 13400,http://unistats.direct.gov.uk/uniSearchPage.do,4 13401,http://unistats.direct.gov.uk/studentAchievement.do,4 13402,http://unistats.direct.gov.uk/glossary.do,4 13403,http://underthetrees.forumotion.co.uk,4 13404,http://umbraco.vctsathsmweb01.rlg.test,4 13405,http://ukinvietnam.fco.gov.uk,4 13406,http://ukinturkey.fco.gov.uk,4 13407,http://ukintt.fco.gov.uk,4 13408,http://ukinnigeria.fco.gov.uk,4 13409,http://ukinindonesia.fco.gov.uk,4 13410,http://ukincyprus.fco.gov.uk,4 13411,http://ukdivorcerecords.co.uk,4 13412,http://uk.wikipedia.org,4 13413,http://uk.mc294.mail.yahoo.com,4 13414,http://uk.mc277.mail.yahoo.com,4 13415,http://uk.mc1610.mail.yahoo.com,4 13416,http://uk.mc1325.mail.yahoo.com,4 13417,http://uk.cars.yahoo.com,4 13418,http://twipple.jp,4 13419,http://tweetlist.com,4 13420,http://tw.mg30.mail.yahoo.com,4 13421,http://tw.dictionary.yahoo.com,4 13422,http://tsn.custhelp.com,4 13423,http://truck-driving-jobs.armellini.com,4 13424,http://travel.stackexchange.com,4 13425,http://transnet.dft.gsi.gov.uk,4 13426,http://trailerandcartraining.co.uk,4 13427,http://trabajoinglaterra.com,4 13428,http://touch.facebook.com,4 13429,http://threadcontent.next.ecollege.com,4 13430,http://thisisabuse.direct.gov.uk/faq/view/1/general-information,4 13431,http://thesource.wateraid.org,4 13432,http://theorysmart.theorytestpro.co.uk,4 13433,http://thehub,4 13434,http://thechaosengine.com,4 13435,http://the-complete-university-guide.shapado.com,4 13436,http://tdsdrivertraining.co.uk,4 13437,http://tcd.easysearch.org.uk,4 13438,http://tattoodle.com,4 13439,http://tash.group.shef.ac.uk,4 13440,http://tameside.theorytestpro.co.uk,4 13441,http://talkingballs.co.uk,4 13442,http://tachosys.com,4 13443,http://swansealibrary.theorytestpro.co.uk,4 13444,http://svr-foapp02,4 13445,http://surreycc.gov.uk,4 13446,http://studyabroad.leeds.ac.uk,4 13447,http://studiawanglii.info,4 13448,http://studentjobswatford.moonfruit.com,4 13449,http://streetwisedrivingschool.net,4 13450,http://streetlanepractice.com,4 13451,http://stokeinside,4 13452,http://stockportlibraries.theorytestpro.co.uk,4 13453,http://stevieward.theorytestpro.co.uk,4 13454,http://steveatabacus.theorytestpro.co.uk,4 13455,http://steppingstonespreschoolstaustell.easysearch.org.uk,4 13456,http://stdpta.easysearch.org.uk,4 13457,http://statichtmlapp.heroku.com,4 13458,http://static.issuu.com,4 13459,http://starcare.co,4 13460,http://standard.cotweet.com,4 13461,http://srvinternet01,4 13462,http://spsportal,4 13463,http://southampton.theorytestpro.co.uk,4 13464,http://southamnews.org,4 13465,http://solent,4 13466,http://sociology.uk.net,4 13467,http://snipsly.com,4 13468,http://smartlearners.myy2y.co.uk,4 13469,http://smallsteps4life.direct.gov.uk/en/secondary/your-health-challenge/index.aspx,4 13470,http://smallsteps4life.direct.gov.uk/en/secondary/3-ways/feeling-good-inside.aspx,4 13471,http://site.westminster.ac.uk,4 13472,http://signpost.easysearch.org.uk,4 13473,http://showroomtavern.myfastforum.org,4 13474,http://shorttermloans.org.uk,4 13475,http://shmail02s.syp.southyorks.police.uk,4 13476,http://sharp.direct.gov.uk/newsletter/subscriptions/,4 13477,http://sharp.direct.gov.uk/content/how-fit-your-helmet,4 13478,http://shareprices.com,4 13479,http://sfaa.easysearch.org.uk,4 13480,http://services,4 13481,http://sefton.gov.uk,4 13482,http://searchwithrobthomas.swagbucks.com,4 13483,http://search41.info.com,4 13484,http://search.viewpoint.com,4 13485,http://search.ukr.net,4 13486,http://search.livetool.ru,4 13487,http://search.live.com,4 13488,http://search.kikin.com,4 13489,http://search.justice.gov.uk,4 13490,http://search.icafemanager.com,4 13491,http://search.hounslow.gov.uk,4 13492,http://search.flickgle.com,4 13493,http://search.excite.co.uk,4 13494,http://search.dartford.gov.uk,4 13495,http://search.broadland.gov.uk,4 13496,http://search.aol.sg,4 13497,http://schoolsfinder.direct.gov.uk/8854002/overview,4 13498,http://schoolsfinder.direct.gov.uk/8254500/overview/,4 13499,http://schoolhousenursery-lewes.com,4 13500,http://scc.newsweaver.co.uk,4 13501,http://sbc.ac.uk,4 13502,http://sale-fs11:13429,4 13503,http://sag03.hbbc.loc:8080,4 13504,http://rspcachesterfieldandnorthderbyshirebranch.easysearch.org.uk,4 13505,http://rpm-malvern.co.uk,4 13506,http://rokkant.lap.hu,4 13507,http://robeandhitchens.co.uk,4 13508,http://ride.searchpw.com,4 13509,http://rescueaidforanimals.easysearch.org.uk,4 13510,http://report-it.org.uk,4 13511,http://rds.theorytestpro.co.uk,4 13512,http://quick2pass.theorytestpro.co.uk,4 13513,http://pwd.theorytestpro.co.uk,4 13514,http://pulse,4 13515,http://psychcentral.com,4 13516,http://provence.angloinfo.com,4 13517,http://prospectus.leedsmet.ac.uk,4 13518,http://prospects.ac.uk,4 13519,http://programmers.stackexchange.com,4 13520,http://procedures.uk.hsbc,4 13521,http://primecitizenshiptest.co.uk,4 13522,http://poster.4teachers.org,4 13523,http://portalserver,4 13524,http://portal2.nbria.police.cjx.gov.uk,4 13525,http://planning.bournemouth.gov.uk,4 13526,http://pht,4 13527,http://ph.answers.yahoo.com,4 13528,http://pgblog.careers.salford.ac.uk,4 13529,http://peyups.com,4 13530,http://pesquisa.sapo.pt,4 13531,http://paygepal.gss,4 13532,http://passwithclass.theorytestpro.co.uk,4 13533,http://passday.theorytestpro.co.uk,4 13534,http://ourspace,4 13535,http://online.wnsc.ac.uk,4 13536,http://online.southeast.mrooms3.net,4 13537,http://offers.fulfood.com,4 13538,http://ocnet.midlands.coop,4 13539,http://oclive.orpington.ac.uk,4 13540,http://nww.suffolk.nhs.uk,4 13541,http://nww.berkshirewest-pct.nhs.uk,4 13542,http://nus.org.uk,4 13543,http://northumberlandcollege.blackboard.com,4 13544,http://north-gla.blackboard.com,4 13545,http://nl.search.yahoo.com,4 13546,http://nic-red-driving.theorytestpro.co.uk,4 13547,http://newmail.walla.co.il,4 13548,http://new-learning.newham.ac.uk,4 13549,http://neighbourhood.statistics.gov.uk,4 13550,http://neighbourhood.southyorks.police.uk,4 13551,http://ndl.custhelp.com,4 13552,http://n400,4 13553,http://mysites,4 13554,http://myq.quantum.com,4 13555,http://myplymouth.eu,4 13556,http://mynationwideintranet,4 13557,http://my-student-loan.co.uk,4 13558,http://mx.search.yahoo.com,4 13559,http://mx.answers.yahoo.com,4 13560,http://muslimmarriagecontract.org,4 13561,http://mumbojumbo.start.iplay.com,4 13562,http://msnconsumerchampion.wordpress.com,4 13563,http://mpukintranet.manpower.com,4 13564,http://mp3tubetoolbarsearch.com,4 13565,http://mp3scooterclub.co.uk,4 13566,http://motoringmatters.theorytestpro.co.uk,4 13567,http://motoring.direct.gov.uk/service/pdf,4 13568,http://motoring.direct.gov.uk/service/DvoConsumer.portal,4 13569,http://moscowlondon.livejournal.com,4 13570,http://mortgagehelp.direct.gov.uk/real-life-stories/rochdale-mrs.aspx,4 13571,http://moreinfo.steps4me.co.uk,4 13572,http://moodle.yeovil.ac.uk,4 13573,http://moodle.stockport.ac.uk,4 13574,http://moodle.sparsholt.ac.uk,4 13575,http://moodle.southdowns.ac.uk,4 13576,http://moodle.reading-college.ac.uk,4 13577,http://moodle.oucpld.com,4 13578,http://moodle.nwhc.ac.uk,4 13579,http://moodle.leedscitycollege.ac.uk,4 13580,http://moodle.cwc.ac.uk,4 13581,http://moodle.collyers.ac.uk,4 13582,http://moodle.cardinalnewman.ac.uk,4 13583,http://moodle.bhasvic.ac.uk,4 13584,http://moodle.aquinas.ac.uk,4 13585,http://modernvespa.com,4 13586,http://mlkandy.theorytestpro.co.uk,4 13587,http://mini-drivers.theorytestpro.co.uk,4 13588,http://mikethedrivinginstructor.co.uk,4 13589,http://mickgarton.theorytestpro.co.uk,4 13590,http://messiniaandthemani-greece.blogspot.com,4 13591,http://members.societe-jersiaise.org,4 13592,http://md-fs1,4 13593,http://mc2.mweb.co.za,4 13594,http://mavis,4 13595,http://martynloveridge.com,4 13596,http://markbray.theorytestpro.co.uk,4 13597,http://maps.google.lt,4 13598,http://maps.google.it,4 13599,http://maps.google.hu,4 13600,http://mama.btv.bg,4 13601,http://mail2.daum.net,4 13602,http://mail.sapo.pt,4 13603,http://mail.inbox.lt,4 13604,http://mail.easy.com,4 13605,http://mail.bg,4 13606,http://m.mail.ru,4 13607,http://m.direct.gov.uk/transportDirectController,4 13608,http://m.direct.gov.uk/servlet/homePageController,4 13609,http://m.direct.gov.uk/nhsController,4 13610,http://lucy-ds.co.uk,4 13611,http://lsha.org.uk,4 13612,http://lplates.theorytestpro.co.uk,4 13613,http://lovecamden.org,4 13614,http://londonrecovers.org.uk,4 13615,http://londonimagyarok.hu,4 13616,http://localhost:4664,4 13617,http://livingsocial.com,4 13618,http://live.suffolkcc.gov.uk,4 13619,http://live.mssociety.org.uk,4 13620,http://lindsays.theorytestpro.co.uk,4 13621,http://libguides.lmunet.edu,4 13622,http://lfb.hoip-telecom.com,4 13623,http://leedsmet.ac.uk,4 13624,http://leeds.theorytestpro.co.uk,4 13625,http://leeds.searchimprove.com,4 13626,http://learnwithmike.theorytestpro.co.uk,4 13627,http://learn2drive.theorytestpro.co.uk,4 13628,http://landregistryservice.co.uk,4 13629,http://kingston.eteach.com,4 13630,http://kernius.net,4 13631,http://karlmccracken.sweat365.com,4 13632,http://karensdrivertraining.co.uk,4 13633,http://johnfalconer.theorytestpro.co.uk,4 13634,http://jobseekers.direct.gov.uk/savesearch.aspx,4 13635,http://jira.2ndbyte.com,4 13636,http://jigsawdrivingschool.co.uk,4 13637,http://jddriving.theorytestpro.co.uk,4 13638,http://itcintranet,4 13639,http://islington.camb-ed.com,4 13640,http://irni.cc.inrev.gov.uk,4 13641,http://iris.turning-point.co.uk,4 13642,http://ipayroadtax.com,4 13643,http://intrawes.zrh.swissre.com,4 13644,http://intranetsp,4 13645,http://intranet.redcross.org.uk,4 13646,http://intranet.rave.ac.uk,4 13647,http://intranet.powys.gov.uk,4 13648,http://intranet.moray.gov.uk,4 13649,http://intranet.bury.gov.uk,4 13650,http://intranet.ad.joltd.co.uk,4 13651,http://intranet-new,4 13652,http://internal.t2000k.local,4 13653,http://interim.cabinetoffice.gov.uk,4 13654,http://insurance-news.tiger.co.uk,4 13655,http://inquest.gn.apc.org,4 13656,http://inmotiondrivingschool.co.uk,4 13657,http://infonet.cps.gov.uk,4 13658,http://indusdelta.co.uk,4 13659,http://in-tuition.theorytestpro.co.uk,4 13660,http://imo.baidu.com,4 13661,http://illegaltobacco.direct.gov.uk/Default.aspx,4 13662,http://ianrossdriving.co.uk,4 13663,http://hww.xplainit.hx-online.hxgroup.com,4 13664,http://hq-cms-staging,4 13665,http://howtogobankrupt.net,4 13666,http://homesun-solar-px.rtrk.co.uk,4 13667,http://hmctsformfinder.direct.gov.uk/HMCTS/GetForm.do,4 13668,http://hltastaffroom.blogspot.com,4 13669,http://hk.mc192.mail.yahoo.com,4 13670,http://hk.knowledge.yahoo.com,4 13671,http://highgate.digitalbrain.com,4 13672,http://highadventureoec.co.uk,4 13673,http://help.uk.msn.com,4 13674,http://help.leeds.ac.uk,4 13675,http://heartmail.mail.everyone.net,4 13676,http://healthmanagement.org.uk,4 13677,http://hbs000017,4 13678,http://haofeng.pixnet.net,4 13679,http://hansalink.info,4 13680,http://gp.dh.gov.uk,4 13681,http://goodapple.aberdeencity.gov.uk,4 13682,http://gm.portal.s-cool.co.uk,4 13683,http://globalgateway.eu,4 13684,http://glbx.web-help-service.net,4 13685,http://geobgeo.jimdo.com,4 13686,http://gearup.theorytestpro.co.uk,4 13687,http://gateway.ehrc.local,4 13688,http://garibaldi.wajoomla.com,4 13689,http://galtryiis,4 13690,http://gad-mail,4 13691,http://fulloflife.direct.gov.uk/older-peoples-day.html,4 13692,http://fullofgraceseasonedwithsalt.blogspot.com,4 13693,http://ftmuk.freeforums.org,4 13694,http://ftalphaville.ft.com,4 13695,http://fss.live.com,4 13696,http://fs.searchcompletion.com,4 13697,http://frugaller.com,4 13698,http://fr.geneawiki.com,4 13699,http://foy.clients.homemadedigital.com,4 13700,http://forums.thedigitalfix.com,4 13701,http://forums.teneric.co.uk,4 13702,http://forums.prosperotechnologies.com,4 13703,http://forums.astra-sri.co.uk,4 13704,http://forums.all-about-debt.co.uk,4 13705,http://forum.worldstart.com,4 13706,http://forum.theimpclub.co.uk,4 13707,http://forum.rblr.co.uk,4 13708,http://forum.naszmanchester.org,4 13709,http://forum.maculardisease.org,4 13710,http://forum.hardware.fr,4 13711,http://forum.fourwheeldriveclub.com,4 13712,http://foodimports.direct.gov.uk/pakistan.html,4 13713,http://foodimports.direct.gov.uk/africa.html,4 13714,http://focusondriving.org,4 13715,http://focuson.theorytestpro.co.uk,4 13716,http://fmhvibe.co.uk,4 13717,http://flexwebgl,4 13718,http://fkipensions.co.uk,4 13719,http://fivewaysdrivingschool.com,4 13720,http://fireworkssafety.direct.gov.uk/index.html,4 13721,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/foundation/tf_hotcold_lesson.htm,4 13722,http://finance.groups.yahoo.com,4 13723,http://fcal.ch,4 13724,http://explore.gateway.bbc.co.uk,4 13725,http://excel-motoring.co.uk,4 13726,http://essexdancetheatre.co.uk,4 13727,http://es.mg41.mail.yahoo.com,4 13728,http://epupz.co.uk,4 13729,http://epetitions.direct.gov.uk/petitions/885/signature/signed,4 13730,http://epetitions.direct.gov.uk/petitions/1535,4 13731,http://epetitions.direct.gov.uk/petitions/15083,4 13732,http://epetitions.direct.gov.uk/petitions/13222,4 13733,http://eng.mapofmedicine.com,4 13734,http://emmanuelmsverwood.easysearch.org.uk,4 13735,http://elopenewyork.com,4 13736,http://ellis.theorytestpro.co.uk,4 13737,http://elite.lawcol.com,4 13738,http://elgoog.rb-hosting.de,4 13739,http://edu4u.gr,4 13740,http://ecodrivinglesson.co.uk,4 13741,http://ebusiness.axa-uk.intraxa,4 13742,http://eatseasonably.co.uk,4 13743,http://easytide.co.uk,4 13744,http://eastlink.infospace.com,4 13745,http://dynamic.theorytestpro.co.uk,4 13746,http://dwdschool.theorytestpro.co.uk,4 13747,http://dvlaregistrations.direct.gov.uk/home/en/FAQ/,4 13748,http://drivingsouthport.co.uk,4 13749,http://drivinglessonssouthport.com,4 13750,http://drivinginstructortunbridge-wells.co.uk,4 13751,http://driving-lessons-bridgwater.co.uk,4 13752,http://driver.moonfruit.com,4 13753,http://drdlportal,4 13754,http://doranschoolofmotoring.wordpress.com,4 13755,http://domcms2,4 13756,http://dnausers.d-n-a.net,4 13757,http://dk.search.yahoo.com,4 13758,http://disabledpeople.org,4 13759,http://direct-gov.com,4 13760,http://dianasom.co.uk,4 13761,http://diabetescare.jnj.com,4 13762,http://derbydriving.co.uk,4 13763,http://dementia-support.org,4 13764,http://debatewise.org,4 13765,http://debates.motos.coches.net,4 13766,http://deaves47.users.btopenworld.com,4 13767,http://davidtaylordrivingschool.co.uk,4 13768,http://daves500club.theorytestpro.co.uk,4 13769,http://daves-driving-school.theorytestpro.co.uk,4 13770,http://davepenman-schoolofmotoring.co.uk,4 13771,http://data1:82,4 13772,http://cs,4 13773,http://cryptome.quintessenz.at,4 13774,http://crosbyriding.easysearch.org.uk,4 13775,http://crop.easysearch.org.uk,4 13776,http://criminalrecordssearch.co.uk,4 13777,http://creditxtra.loanfinder.co.uk,4 13778,http://createfunnylogo.com,4 13779,http://courses.thesaslawschool.org.uk,4 13780,http://corpal.easysearch.org.uk,4 13781,http://cornerstoneschool.no-ip.org,4 13782,http://corecare2010.rightstaging.com,4 13783,http://content.durham.gov.uk,4 13784,http://communities,4 13785,http://coastlinedrivingschool.co.uk,4 13786,http://cmsprod:9992,4 13787,http://clubaristo.net,4 13788,http://classic.emplaw.co.uk,4 13789,http://claims,4 13790,http://cl.thapar.edu,4 13791,http://civilrightsnow.ca,4 13792,http://civictype-r.co.uk,4 13793,http://cisyp.ceredigion.gov.uk,4 13794,http://chrisparker.co.uk,4 13795,http://children.nottsinfoscript.co.uk,4 13796,http://charlesroyle.theorytestpro.co.uk,4 13797,http://charities.everyclick.com,4 13798,http://chameleonsearch.com,4 13799,http://centurylink.net,4 13800,http://cc-web-int-01,4 13801,http://catalogue.brad.ac.uk,4 13802,http://cas.hants.gov.uk,4 13803,http://carolfinch.suite101.com,4 13804,http://carfueldata.direct.gov.uk/new-vehicle-tax.aspx,4 13805,http://carfueldata.direct.gov.uk/,4 13806,http://carersproject.easysearch.org.uk,4 13807,http://carelincs.easysearch.org.uk,4 13808,http://careers.beds.ac.uk,4 13809,http://cardiff.gov.uk,4 13810,http://capnet,4 13811,http://canteen-online.tk,4 13812,http://canguru.info,4 13813,http://campaigns.direct.gov.uk/actonco2/home/in-the-home.html,4 13814,http://campaigns.direct.gov.uk/actonco2/home.html,4 13815,http://cache.baidu.com,4 13816,http://c99.e2bn.net,4 13817,http://bvinews.com,4 13818,http://buytaert.net,4 13819,http://business2businessmarketing.blogspot.com,4 13820,http://bubl.ac.uk,4 13821,http://bsearch.searchcompletion.com,4 13822,http://broadleysschoolofmotoring.co.uk,4 13823,http://brec-app01,4 13824,http://br.answers.yahoo.com,4 13825,http://boards.bootsnall.com,4 13826,http://blog.meteorit.co.uk,4 13827,http://blog.crashpadder.com,4 13828,http://blog.comparenumberplates.co.uk,4 13829,http://blog.certificatetranslator.co.uk,4 13830,http://blakehallcollege.co.uk,4 13831,http://blackboard.ccad.ac.uk,4 13832,http://blackboard.brad.ac.uk,4 13833,http://blackboard.abcol.ac.uk,4 13834,http://bipolar-bisexual.blogspot.com,4 13835,http://bing.search.daum.net,4 13836,http://biketraining.net,4 13837,http://bigred,4 13838,http://bigdrivingschool.com,4 13839,http://beta.findmyschool.co.uk,4 13840,http://bbs.dunnese.org,4 13841,http://barrymanilowhomepage.swagbucks.com,4 13842,http://barcelona.angloinfo.com,4 13843,http://bancadati.informagiovanipiemonte.it,4 13844,http://axanet.axa-uk.intraxa,4 13845,http://axanet,4 13846,http://awardsdrivingschool.co.uk,4 13847,http://autotraveler.ru,4 13848,http://aula.cesga.es,4 13849,http://aucklandsom.theorytestpro.co.uk,4 13850,http://au.m2.yahoo.com,4 13851,http://assetharbour.com,4 13852,http://arts.leeds.ac.uk,4 13853,http://april.theorytestpro.co.uk,4 13854,http://appsinnet,4 13855,http://apassngo.co.uk,4 13856,http://andy.theorytestpro.co.uk,4 13857,http://alba.theorytestpro.co.uk,4 13858,http://alauddinahmed.wordpress.com,4 13859,http://afa.surfcanyon.com,4 13860,http://adi97334.theorytestpro.co.uk,4 13861,http://adi92774.theorytestpro.co.uk,4 13862,http://adi80332.theorytestpro.co.uk,4 13863,http://adi67119.theorytestpro.co.uk,4 13864,http://adi56788.theorytestpro.co.uk,4 13865,http://adi53484.theorytestpro.co.uk,4 13866,http://adi448321.theorytestpro.co.uk,4 13867,http://adi298987.theorytestpro.co.uk,4 13868,http://adi242374.theorytestpro.co.uk,4 13869,http://adi192692.theorytestpro.co.uk,4 13870,http://adi189758.theorytestpro.co.uk,4 13871,http://adi103132.theorytestpro.co.uk,4 13872,http://acp.surfcanyon.com,4 13873,http://achieve.theorytestpro.co.uk,4 13874,http://accross.itslearning.com,4 13875,http://aberdeencity.theorytestpro.co.uk,4 13876,http://aa.mg3.mail.yahoo.com,4 13877,http://aa.mc1618.mail.yahoo.com,4 13878,http://a00-cms2,4 13879,http://87.248.115.134,4 13880,http://83.100.146.131,4 13881,http://79.125.12.236,4 13882,http://74.125.230.148,4 13883,http://62.254.234.174,4 13884,http://5t04english.wikispaces.com,4 13885,http://51.65.230.222,4 13886,http://4wheels.theorytestpro.co.uk,4 13887,http://40tygodni.pl,4 13888,http://212.85.23.227,4 13889,http://1csrvapp27:7777,4 13890,http://193.61.193.5,4 13891,http://193.129.121.134,4 13892,http://192.168.4.32:15871,4 13893,http://192.168.1.7:15871,4 13894,http://192.168.1.141:8080,4 13895,http://172.28.100.15:9093,4 13896,http://146.87.255.116,4 13897,http://100hot.com,4 13898,http://10.35.2.26:8880,4 13899,http://aplusdriving.theorytestpro.co.uk,3 13900,http://www.philcharnockdrivinginstruction.co.uk,3 13901,http://146.185.250.154,3 13902,http://www.scbvehicledismantlers.co.uk,3 13903,http://www.ideanote.co.kr,3 13904,http://yourdrivingacademy.theorytestpro.co.uk,3 13905,http://www.driving-fun.com,3 13906,http://192.168.203.2:15871,3 13907,http://moodle.salford-col.ac.uk,3 13908,http://www.chilterntraininggroup.org,3 13909,http://www.motorlinkmalvern.co.uk,3 13910,http://www.direct.gov.uk/en/Parents/Preschooldevelopmentandlearning/SpecialEducationalNeeds/index.htm,3 13911,http://www.leighlife.com,3 13912,http://scrif.igeo.pt,3 13913,http://nelincs.theorytestpro.co.uk,3 13914,http://glosnetcc.storm50.com,3 13915,http://jobs.historic-scotland.gov.uk,3 13916,http://www.bilboroughmedicalcentre.co.uk,3 13917,http://willpass.theorytestpro.co.uk,3 13918,http://scottishvanners.50.forumer.com,3 13919,http://www.chilternhousemedicalcentre.co.uk,3 13920,http://www.bikingandbeyond.co.uk,3 13921,http://www.direct.gov.uk/en/Parents/Preschooldevelopmentandlearning/SpecialEducationalNeeds/DG_4000699,3 13922,http://mcbr-intranet.mc.cbi.net,3 13923,http://davebentley.theorytestpro.co.uk,3 13924,http://scottdixon.theorytestpro.co.uk,3 13925,http://dave.theorytestpro.co.uk,3 13926,http://www.biketrainwales.co.uk,3 13927,http://mcaweb.unipv.it:8080,3 13928,http://www.westernsussexhospitals.nhs.uk,3 13929,http://ukskinheads.co.uk,3 13930,http://scotland-intranet.scotland.gsi.gov.uk,3 13931,http://www.bikesmartmotorcycletraining.com,3 13932,http://jobs.calderdale.gov.uk,3 13933,http://www.bikeskool.co.uk,3 13934,http://www.papool.co.uk,3 13935,http://jobpaw.com,3 13936,http://tesco.net,3 13937,http://uksimple.info,3 13938,http://www.chilterncab.org.uk,3 13939,http://www.tonykelsey.co.uk,3 13940,http://scimorph.greatfridays.com,3 13941,http://sciencecareers.sciencemag.org,3 13942,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2010/DG_188503,3 13943,http://www.publicguardian-scotland.gov.uk,3 13944,http://schotland.startpagina.nl,3 13945,http://www.johns-hobbies.co.uk,3 13946,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/DG_175627,3 13947,http://schoolsportal,3 13948,http://www.thecarersnetwork.org.uk,3 13949,http://www.toobigtouse.com,3 13950,http://www.hiwaydrivingschool.co.uk,3 13951,http://schoolsmrt.webs.com,3 13952,http://www.mail.derwentside.net,3 13953,http://www.osscsc.gov.uk,3 13954,http://www.cancerlinks.org.uk,3 13955,http://jobboard.ie,3 13956,http://www.itn.org.uk,3 13957,http://www.westfieldacademy.co.uk,3 13958,http://www.toodledo.com,3 13959,http://daemon-search.com,3 13960,http://www.publicrecordsearch.co.uk,3 13961,http://gixerjunkies.com,3 13962,http://www.leightonbuzzarddrivingschool.co.uk,3 13963,http://www.biker.ie,3 13964,http://www.drivewithmarkwj.co.uk,3 13965,http://www.childtrustfund.gov.uk,3 13966,http://ap6.auth.athensams.net,3 13967,http://my.riversidecollege.ac.uk,3 13968,http://www.punternet.com,3 13969,http://da.wikipedia.org,3 13970,http://www.cancelmyloan.co.uk,3 13971,http://wikitravel.org,3 13972,http://www.doggybog.co.uk,3 13973,http://gillhillary.theorytestpro.co.uk,3 13974,http://www.hertsdriving.co.uk,3 13975,http://cypslive.nycc.storm50.com,3 13976,http://www.bikeacademylincoln.co.uk,3 13977,http://www.ten-tenths.com,3 13978,http://jira.2ndbyte.2bnet:999,3 13979,http://www.cogent-careers.com,3 13980,http://nftintranet,3 13981,http://www.canadahill.devon.sch.uk,3 13982,http://cygnets-childcare.co.uk,3 13983,http://www.childsafetyweek.org.uk,3 13984,http://london.trade.gov.pl,3 13985,http://jimburgin.mekkanix.com,3 13986,http://norfolkfireservice.gov.uk,3 13987,http://cyberdefender.infospace.com,3 13988,http://wikipedia.infostar.cz,3 13989,http://gettingstarted.glam.ac.uk,3 13990,http://www.pvgschemescotland.org,3 13991,http://www.drivinglessonsslough.co.uk,3 13992,http://cwt.sharepoint.carlson.com,3 13993,http://jhptraining.com,3 13994,http://wikiinfo,3 13995,http://www.pvqdriving.com,3 13996,http://technologies.intra.bt.com,3 13997,http://www.tenancy-agreements.co.uk,3 13998,http://london.gov.uk,3 13999,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011660,3 14000,http://schoolsfinder.direct.gov.uk/la/Merton/,3 14001,http://www.makeholidaysgreener.org.uk,3 14002,http://cvh.easysearch.org.uk,3 14003,http://www.eldercaregroup.co.uk,3 14004,http://www.direct.gov.uk/en/Environmentandgreenerliving/Wasteandrecycling/DG_064367,3 14005,http://www.coet.es,3 14006,http://schoolsfinder.direct.gov.uk/la/Lancashire/,3 14007,http://www.1st4solar.co.uk,3 14008,http://nfdis.easysearch.org.uk,3 14009,http://norcrosscc.easysearch.org.uk,3 14010,http://www.directlineforbusiness.co.uk,3 14011,http://cursos.itesm.mx,3 14012,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Inretirement/DG_10018952,3 14013,http://germany.angloinfo.com,3 14014,http://www.westlandpensionscheme.co.uk,3 14015,http://www.philtaylordriving.co.uk,3 14016,http://www.motortorque.com,3 14017,http://teamservices.audit-commission.gov.uk,3 14018,http://jerrybradford.theorytestpro.co.uk,3 14019,http://cumbrialibraries.theorytestpro.co.uk,3 14020,http://www.westlea.co.uk,3 14021,http://www.uktheorytest.co.uk,3 14022,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/SupportedHousingSchemes/DG_10034231,3 14023,http://www.montgomeryschool.co.uk,3 14024,http://geoffgreener.co.uk,3 14025,http://www.liquidpersonnel.com,3 14026,http://www.cocosearch.com,3 14027,http://z3.invisionfree.com,3 14028,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Pollution/DG_180281,3 14029,http://www.svet.lu.se,3 14030,http://www.jcmotorcycletraining.co.uk,3 14031,http://www.campervanconversion.co.uk,3 14032,http://www.senscot.net,3 14033,http://www.iamnewtolondon.com,3 14034,http://team,3 14035,http://ukinuruguay.fco.gov.uk,3 14036,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011957,3 14037,http://www.jcsdrivingschool.co.uk,3 14038,http://logic-group.co.uk,3 14039,http://jd.theorytestpro.co.uk,3 14040,http://www.salopcarbreakers.co.uk,3 14041,http://www.leithmountsurgery.co.uk,3 14042,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/Startingacompanyorpersonalpension/index.htm,3 14043,http://schoolsfinder.direct.gov.uk/la/Buckinghamshire/,3 14044,http://www.direct.gov.uk/prod_consum_dg/DGFragmentsCode/et/images/feedback-icon.png,3 14045,http://www.westmidlandsltp.gov.uk,3 14046,http://www.westminsterfashion.com,3 14047,http://lodgers.com,3 14048,http://www.smartlandlord.co.uk,3 14049,http://gearsaloud.theorytestpro.co.uk,3 14050,http://www.aberdeencycleforum.org.uk,3 14051,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011652,3 14052,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/PestAndWeedControl/DG_172742,3 14053,http://www.cocoonair.co.uk,3 14054,http://gcintranet.greenhead.ac.uk,3 14055,http://www.steves-som.co.uk,3 14056,http://jb-driving.theorytestpro.co.uk,3 14057,http://www.tennisfoundation.org.uk,3 14058,http://www.bhatiabest.co.uk,3 14059,http://www.bham.pl,3 14060,http://www.bham.ac.uk,3 14061,http://www.bglondon.com,3 14062,http://www.direct.gov.uk/prod_consum_dg/DGFragmentsCode/CloudView/javascript/jquery.js,3 14063,http://www.direct.gov.uk/prod_consum_dg/DGFragmentsCode/CloudView/css/search.css,3 14064,http://www.rvs.uni-bielefeld.de,3 14065,http://www.cockburn.leeds.sch.uk,3 14066,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Climatechange/DG_072978,3 14067,http://noodle.uk.europe.hallmark.com,3 14068,http://www.csarecruitment.co.uk,3 14069,http://www.creditaction.org.uk,3 14070,http://www.theparentpoint.com,3 14071,http://tccclic.weebly.com,3 14072,http://tbpiukgroup.homestead.com,3 14073,http://www.serbiancityclub.org,3 14074,http://www.jcysom.com,3 14075,http://www.jd-motors.co.uk,3 14076,http://www.sceneandheard.org,3 14077,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011324,3 14078,http://www.drivinglessons-watford.co.uk,3 14079,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Crimestatistics/DG_181520,3 14080,http://www.phoenixeducationdaynursery.co.uk,3 14081,http://schoolsfinder.direct.gov.uk/9365408/overview,3 14082,http://gb.toolbarhome.com,3 14083,http://www.swanseaitec.co.uk,3 14084,http://www.childcarenow.co.uk,3 14085,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Climatechange/DG_072879,3 14086,http://noiseabatementsociety.com,3 14087,http://localhost:56118,3 14088,http://tansleyhouserafa.easysearch.org.uk,3 14089,http://ukinsingapore.fco.gov.uk,3 14090,http://www.ukworkshop.co.uk,3 14091,http://jamesdrivingschool.com,3 14092,http://www.mal-uk.com,3 14093,http://www.cobraclub.com,3 14094,http://www.oller-driving.co.uk,3 14095,http://w3.ibm.com,3 14096,http://www.jookzsearches.com,3 14097,http://mas.dev.fsa.gov.uk,3 14098,http://vzjatkamnet.at.ua,3 14099,http://www.direct.gov.uk/notify-NotifyUser1,3 14100,http://www.takemywifeplease.co.uk,3 14101,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/CrimePrevention/DG_181651,3 14102,http://www.oswestry-learners.co.uk,3 14103,http://www.childcare.bdct.co.uk,3 14104,http://www.cambridge-som.com,3 14105,http://www.thepensiondepartment.co.uk,3 14106,http://www.photoland.com.au,3 14107,http://192.168.130.1,3 14108,http://ukinpoland.fco.gov.uk,3 14109,http://izzi,3 14110,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenertravel/Greenercarsanddriving/DG_191253,3 14111,http://www.bettercaring.com,3 14112,http://ukinperu.fco.gov.uk,3 14113,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Changesthataffectyourtaxcredits/Changesatwork/DG_174175,3 14114,http://newstats.europarchive.org,3 14115,http://www.quackometer.net,3 14116,http://vvoc.com,3 14117,http://www.better-living-ideas.com,3 14118,http://www.photoplus.co.nz,3 14119,http://www.taxiforums.co.uk,3 14120,http://www.schizophreniawatch.co.uk,3 14121,http://iworld.huntsdc.gov.uk:7777,3 14122,http://moodle.northamptoncollege.ac.uk,3 14123,http://courses.ecornell.com,3 14124,http://courses.cardiff.ac.uk,3 14125,http://www.jpncars.com,3 14126,http://www.smcpsychotherapy.co.uk,3 14127,http://www.westwycombe.org.uk,3 14128,http://www.westyorkshire.police.uk,3 14129,http://www.coastlinehousing.co.uk,3 14130,http://www.50plusfuneralplans.co.uk,3 14131,http://iwfc.easysearch.org.uk,3 14132,http://costadelsol.angloinfo.com,3 14133,http://www.littleacornspre-school.org.uk,3 14134,http://gagb.co.uk,3 14135,http://www.phpbber.com,3 14136,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_178466,3 14137,http://corrosion-doctors.org,3 14138,http://www.wewillbuyyourcar.com,3 14139,http://androidforums.com,3 14140,http://www.landregistry.org.uk,3 14141,http://corporate-portal.ccc,3 14142,http://talesoftheroad.direct.gov.uk/,3 14143,http://www.rsiaction.org.uk,3 14144,http://localcrime.direct.gov.uk/helper/non-emergency-numbers/,3 14145,http://127.0.0.1:8000,3 14146,http://g7a74.mail.163.com,3 14147,http://www.bestchildtrustfund.org,3 14148,http://cornwallartists.org,3 14149,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenertravel/Airtravelandgreenerholidays/,3 14150,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/OrganisationsAndCharities/index.htm,3 14151,http://www.quadsuk.net,3 14152,http://www.best-investment-property-tips.com,3 14153,http://www.phpbbplanet.com,3 14154,http://www.jrf.org.uk,3 14155,http://www.calis-beach.co.uk,3 14156,http://www.myfinances.co.uk,3 14157,http://66life,3 14158,http://g4a30.mail.163.com,3 14159,http://tables.moneyadviceservice.org.uk,3 14160,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenerhomeandgarden/Greenershopping/index.htm,3 14161,http://www.besg.org,3 14162,http://www.jsanchod.com,3 14163,http://www.ids.fr,3 14164,http://schoolsfinder.direct.gov.uk/9264042/overview/,3 14165,http://www.itpro.co.uk,3 14166,http://www.jsmdriving.com,3 14167,http://www.hsocuk.com,3 14168,http://www.direct.gov.uk/homepage.aspx,3 14169,http://vsintranet,3 14170,http://www.caleyschoolofmotoring.co.uk,3 14171,http://www.chewinggumactiongroup.org.uk,3 14172,http://www.berneslaihomes.co.uk,3 14173,http://t0trading-som1.com,3 14174,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenerhomeandgarden/Greenergarden/DG_177399,3 14175,http://www.rx8ownersclub.co.uk,3 14176,http://www.jdmdrivingschool.co.uk,3 14177,http://ukinmalaysia.fco.gov.uk,3 14178,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Becomingamagistrate/index.htm,3 14179,http://www.1nfluence.co.uk,3 14180,http://local.talktalk.co.uk,3 14181,http://ukinkz.fco.gov.uk,3 14182,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZBsHPM4kqb5DWRRl6AkprVdqZ*ftVfBMoUKOLUXds2MPcwsAjNom7BTkuUfULQ0faeS7HgflL0YaMSblRpQBdDnzRogUQJrA*saYVqpXnvVwV138yZ8K5UjWGH7ttFCXYHQyK93OMH0g*JqPCsnl7swV2j4MaugsNoXfnrKHOp6eKiRUiKl9JQJViBWzGE5YvkcxhHjc9gBscMDY3gZn42dvQfTDlqmoXXdORjwzGcS!OnIQs!LW1lNQgxLwTF*cu3LPwtu0RJFS3SLpWpWB8MJGj5lfyJ7iWNH*mPJas7ysiAVyXFcKY0GumE!e8z8jflMIthkO*YUbP8uRekeqSii1VJkj1SU!FopUu2Riga4WurH12WNVPQ!rJYqlqUq91sYur6Fz76RQreXRqpvLAiBRw__/results,3 14183,http://www.sethi.co.uk,3 14184,http://ukinkenya.fco.gov.uk,3 14185,http://www.ulsterbank.co.uk,3 14186,http://www.terra-nostra.org.uk,3 14187,http://www.mamut.net,3 14188,http://local.push.co.uk,3 14189,http://www.chevinha.co.uk,3 14190,http://www.jedidrivertraining.co.uk,3 14191,http://www.sevenforums.com,3 14192,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011257,3 14193,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011807,3 14194,http://www.pathwayscoaching.co.uk,3 14195,http://nottinghamcity.gov.uk,3 14196,http://nctnen.easysearch.org.uk,3 14197,http://www.oneweekdrivingcourse.com,3 14198,http://consultations.dh.gov.uk,3 14199,http://www.elainetrattles.co.uk,3 14200,http://vrdriving-school.co.uk,3 14201,http://www.chesterfieldlawcentre.org.uk,3 14202,http://www.aaltodrivingschool.co.uk,3 14203,http://consuladobritanicomx.elginmidia.com.br,3 14204,http://www.academyofmotorcycling.co.uk,3 14205,http://voyageforum.com,3 14206,http://www.quattrorecruitment.co.uk,3 14207,http://www.1euro.ee,3 14208,http://local.direct.gov.uk/LDGRedirect/cache/75/contact.htm,3 14209,http://www.ultimatedrivingschoolng.com,3 14210,http://www.energysolutions.org.uk,3 14211,http://www.sforsuccess.co.uk,3 14212,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Homeinsulation/DG_195165,3 14213,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Escapingandrecoveringfromafire/DG_180664,3 14214,http://www.internationalschoolofbeauty.co.uk,3 14215,http://sz0036.ev.mail.comcast.net,3 14216,http://www.pia.org.uk,3 14217,http://connect.qmul.ac.uk,3 14218,http://vosanet.vosa.gov.uk,3 14219,http://www.junction17.net,3 14220,http://accorddrivingschool.co.uk,3 14221,http://www.edwards-som.co.uk,3 14222,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069889,3 14223,http://www.hji.co.uk,3 14224,http://mark-lawton.com,3 14225,http://192.168.100.89,3 14226,http://www.co-operativepharmacy.co.uk,3 14227,http://www.queensinclosure.hants.sch.uk,3 14228,http://www.co-operativeinsurance.co.uk,3 14229,http://www.piccolobambini.org.uk,3 14230,http://www.drivetoarrive.com,3 14231,http://marjon.ac.uk,3 14232,http://www.ryan-group.co.uk,3 14233,http://www.belgravepreschool.co.uk,3 14234,http://www.whic.jp,3 14235,http://www.queeryouth.org.uk,3 14236,http://www.drivetimeukdrivertraining.co.uk,3 14237,http://fsd.rbwm.gov.uk,3 14238,http://www.manchesterlieutenancy.org,3 14239,http://wwwin.ceremonies.local,3 14240,http://www.ielts.in.th,3 14241,http://moodle.holycross.ac.uk,3 14242,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Escapingandrecoveringfromafire/DG_064665,3 14243,http://xlr8.name,3 14244,http://www.mandevillesurgery.co.uk,3 14245,http://fs4b.wales.gov.uk,3 14246,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Dealingwithemergencies/Supportafteramajorincident/index.htm,3 14247,http://192.168.100.247:15871,3 14248,http://www.mouchel.com,3 14249,http://www.sytnercoventrymini.co.uk,3 14250,http://www.drivetimetuition.co.uk,3 14251,http://www.whitefriarshousing.co.uk,3 14252,http://community.thejitty.com,3 14253,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Workersemployeesandselfemployment/index.htm,3 14254,http://ukindominicanrepublic.fco.gov.uk,3 14255,http://www.topnotchtraining.co.uk,3 14256,http://advantageschoolofmotoring.theorytestpro.co.uk,3 14257,http://www.therichworks.co.uk,3 14258,http://whs.moodledo.co.uk,3 14259,http://www.itslifejimbutnotasweknowit.org.uk,3 14260,http://community.homeandhealthtv.co.uk,3 14261,http://www.toppesfieldparishcouncil.org.uk,3 14262,http://www.topsail.co.uk,3 14263,http://www.pats4driving.com,3 14264,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Workersemployeesandselfemployment/DG_183505,3 14265,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011799,3 14266,http://www.cabwhabac.org.uk,3 14267,http://www.mruni.eu,3 14268,http://www.divorceguide.com,3 14269,http://ukinchina.fco.gov.uk,3 14270,http://www.parentandchildnannies.co.uk,3 14271,http://sww.wiki.shell.com,3 14272,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011637,3 14273,http://www.beechhillkidsclub.co.uk,3 14274,http://www.beechesrecovery.co.uk,3 14275,http://mwsom.theorytestpro.co.uk,3 14276,http://www.sgsu.org.uk,3 14277,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Workersemployeesandselfemployment/DG_183494,3 14278,http://www.cheshireresilience.org.uk,3 14279,http://www.sha.co.uk,3 14280,http://www.taxreturnsoftware.co.uk,3 14281,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011246,3 14282,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Workersemployeesandselfemployment/DG_183493,3 14283,http://www.pieandbovril.com,3 14284,http://swka.org.uk,3 14285,http://www.drivetimecornwall.co.uk,3 14286,http://vocalcafe.co.uk,3 14287,http://college.cwc.ac.uk,3 14288,http://ncc.org.uk,3 14289,http://www.ipublish.dii.r.mil.uk,3 14290,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Planningyourfuture/DG_073367,3 14291,http://vn.search.yahoo.com,3 14292,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Temporarylayoff/DG_10037790,3 14293,http://colinmurphyschoolofmotoring.co.uk,3 14294,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Dealingwithemergencies/Preparingforemergencies/DG_176651,3 14295,http://www.direct.gov.uk/en/CaringForSomeone/CaringAndSupportServices/DG_4000178,3 14296,http://www.bedfordcab.org.uk,3 14297,http://www.pattayasecrets.com,3 14298,http://www.uni-protokolle.de,3 14299,http://schoolsfinder.direct.gov.uk/8865407/school-profile/,3 14300,http://www.hestoncommunityschool.co.uk,3 14301,http://livingingreece.gr,3 14302,http://www.healthcare-france.com,3 14303,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011633,3 14304,http://www.c90club.co.uk,3 14305,http://schoolsfinder.direct.gov.uk/8865400/overview/,3 14306,http://www.beddingtonparkprimary.com,3 14307,http://www.r32oc.com,3 14308,http://swift2pass.co.uk,3 14309,http://www.17plusdriving.co.uk,3 14310,http://coffinswell.blogspot.com,3 14311,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/peoplewhohelpothers/Entitlementtablesfortaxcredits/Youworkandalsohavechildren/index.htm,3 14312,http://codesign-blog.dhs.gov.au,3 14313,http://208.101.38.218,3 14314,http://www.ifieldmedicalpractice.co.uk,3 14315,http://www.cwuscot1.org,3 14316,http://freedom1.theorytestpro.co.uk,3 14317,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011243,3 14318,http://www.cooltheworld.com,3 14319,http://www.lanzaroteinformation.com,3 14320,http://www.thecrescentprimary.com,3 14321,http://swedenabroad.se,3 14322,http://maps.google.de,3 14323,http://www.manorschool.northants.sch.uk,3 14324,http://www.byrnetraining.com,3 14325,http://www.ryanairfees.co.uk,3 14326,http://www.coolcards.co.uk,3 14327,http://noahsarkduston.easysearch.org.uk,3 14328,http://www.justrightdriving.co.uk,3 14329,http://invictaprimaryschool.org.uk,3 14330,http://www.totalbutler.co.uk,3 14331,http://www.beadbuddies.co.uk,3 14332,http://vle.wyke.ac.uk,3 14333,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011619,3 14334,http://www.justtestsandtyres.com,3 14335,http://www.parents4protest.co.uk,3 14336,http://www.wickforddrivingschool.com,3 14337,http://www.beaconriders.co.uk,3 14338,http://www.direct.gov.uk/en/CaringForSomeone/CarersAndEmployment/DG_4000036,3 14339,http://www.eriding.net,3 14340,http://www.bdl.org.uk,3 14341,http://www.unipol.org.uk,3 14342,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/agriculturalworkers/DG_179664,3 14343,http://wheelersdrivingschool.co.uk,3 14344,http://fr.mc290.mail.yahoo.com,3 14345,http://intsupport.glam.ac.uk,3 14346,http://cncccp.easysearch.org.uk,3 14347,http://www.pinewoodmotorcycles.co.uk,3 14348,http://www.dadpeter.co.uk,3 14349,http://www.thecustodyminefield.com,3 14350,http://cn.mc158.mail.yahoo.com,3 14351,http://www.bda.org.uk,3 14352,http://cn.mc156.mail.yahoo.com,3 14353,http://www.ergonomics4schools.com,3 14354,http://www.raf-families-federation.org.uk,3 14355,http://cn.bing.com:80,3 14356,http://www.smrt.bristol.sch.uk,3 14357,http://www.bcsdrivingschool.co.uk,3 14358,http://ukhrnet,3 14359,http://www.4memorialbench.co.uk,3 14360,http://wwww.jodi.org,3 14361,http://vle.sthelens.ac.uk,3 14362,http://ukgroup.standardlife.com,3 14363,http://www.newsroom.firstdirect.com,3 14364,http://cmsm.info,3 14365,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Agencyworkersandemploymentagencies/DG_198921,3 14366,http://www.drivingschooltorbay.co.uk,3 14367,http://www.bvrla.co.uk,3 14368,http://cms.uwe.ac.uk,3 14369,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Paternityrightsintheworkplace/DG_170383,3 14370,http://www.bvco.org.uk,3 14371,http://www.wiganworld.com,3 14372,http://www.direct.gov.uk/en/YoungPeople/Money/TaxesAndYou/DG_10027904,3 14373,http://www.parentsinwheelchairs.com,3 14374,http://foster-foster.co.uk,3 14375,http://ukgreenpower.co.uk,3 14376,http://www.bcbdrivertraining.co.uk,3 14377,http://www.unison-scotland.org.uk,3 14378,http://www.clutchcollege.co.uk,3 14379,http://cmp.saints-sport.com,3 14380,http://www.direct.gov.uk/en/CaringForSomeone/CareHomes/DG_10031513,3 14381,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/ArrangingHealthAndSocialCare/DG_10038658,3 14382,http://intranet:81,3 14383,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Ifthingsgowrong/Overpayments/DG_175668,3 14384,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztV8uOmzAU*ZpsKgXZGBtYhiFJs2lHpV1b1HgyaAJObTLp59cPEsRMMiJRF5mIjX1f9vW5l4NlJWQzQenEJ6rJregDrfzRwpOQldJyLbnabRqlTdD4lF5Cc8V4XZT1WlvtAu!3EKrhxdeyUd73H3ZP7EcTP5H5fic3WkMzY*Kfm2ZrhFbH*qKd9vu9V5SSs8Zbi1dv99Lat1IUlIla7SparFtjWbDtxilosSpYxuVrybgzpFlGl*Of9HG2nLt4UouCr4rWHQDSmlcZzbLHX60d2gPqIUwqc!DUAMD!g7IKMA4NKzG2WM8aplNuB6ZSqWDf8uoQkS4pBABBEuCBiMM7QBwHARnaYXIHeAGACEN*IGL8AeKRyDcCcyTySOSRyCORRyJ*SrwjkUcij0S!A7z*kcib3D6Xee1e203JqMzrF*2IpvzvVr!yVSnqjt29ocqVgYoTs5Ouip1w!sVvN8d!0oVELiSyIW98ofOFp3zE!cgpH3Y!fMoXOF9w8CE3HM!GbPcixYTk00400qIDYCMfQBc*PUY5zGeXohnoynCucMjuPLPTJyvcWUjQQYKXQIpP5gFH7kVdle2OaN4vu4s*qGiGEYlCEAPi2jWFvYZe0J9rwNxGf96U4CLYfUwd7I9TQXhNql6JBqcC16TqVXxoKhBfk6rXwMGp3v1dhqTqfQ!DU4XnU9lrQaxLpn*7iueSPVN7PUj!VNa8vQsSe8kt4n!u6pik/results,3 14385,http://www.direct.gov.uk/en/campaigns/Vetting/index.htm,3 14386,http://www.directdrivingtuition.co.uk,3 14387,http://navigationshilfe.t-online.de,3 14388,http://www.oecd.org,3 14389,http://www.theshavingroom.co.uk,3 14390,http://clybiauplantcymrukidsclubs.easysearch.org.uk,3 14391,http://intranet2.uk.trt.thales,3 14392,http://127.0.0.1:3044,3 14393,http://www.bbdrivingschool.co.uk,3 14394,http://www.rail-reg.gov.uk,3 14395,http://www.bbact.org.uk,3 14396,http://maps.camden.gov.uk,3 14397,http://www.pirbrightvillageprimaryschool.com,3 14398,http://intranet2.linde.grp,3 14399,http://forums.spacebattles.com,3 14400,http://www.unitedresponse.org.uk,3 14401,http://www.invernessdrivinginstructor.co.uk,3 14402,http://clint,3 14403,http://www.rainbowcc.co.uk,3 14404,http://moodle.cynnal.co.uk,3 14405,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztmU2P2jAQhn8Nl0pETowTcyQboHtpV017tlLHzUYLNrWTpT!**ghE2YVVQD2kki*!mBnP!J0ngBSUkM0MZrMoVk1hlxjozW!9UILWxW4Wpb9aXmobl0y1u0ZpV2hilD5KCkUZL2teaas9GPwUQjWs*Fw3Kvj6zeZGEdZpZHFspc6H4MqYouemOZhFt0fRppuOx2NQ1pLRJqjEa9C!dPaDFCWhgqt2T8qqM9YlPezcBm4eS5oz!VpT5gxZnpPt!jt5Wm3XLj5WKhP0S7E*RWRbEgIQYoziLuIxJ3n!9KPzh*auekjSvbl7ZrSg6EHZDTAOrTA1tqWetWK3mbZiDBdoMVJv8oFez9vznr56z9vz9rw9b8*b8*a8Pe*pK*a8PW*P2*P2vD1vz9vz9rynrfif8d4V9lU64!6NfFNTIgv!UvOKsD8HyZSqBe8fgsGwL5QRilKTSffETij7FHXJUZT2IdiFYBvyxpc4X3LJFztffMmHnA9d8i2cb3HyQTec7wYtO6yokGzeL81q0wuwkQ!gj5!fo5zmq0fhCvRtuNY4aDOv7PSfNe6qpNBJCm!RtLxYB5w*ebjvss0I18O2u*jTFq4QjHECliB2uObhAOgNfO4RMw0!b1pwk!yhpl72x6XC8J5SgxaNLgXuKTXo!NhSYHlPqQHA0aXefbuMKTV4HkaXSq6Xsj8Loqqp!U!WFZI!E8b*AhdAz1A_/results,3 14406,http://www.unityins.co.uk,3 14407,http://www.universalheating.co.uk,3 14408,http://www.hillingdonschoolofmotoring.co.uk,3 14409,http://www.direct.gov.uk/en/Employment/TradeUnions/Tradeunionsintheworkplace/DG_179244,3 14410,http://clients.enablermail.com,3 14411,http://forums.readitswapit.co.uk,3 14412,http://www.learnportsmouth.org.uk,3 14413,http://www.myitcareer.co.uk,3 14414,http://www.salvationarmy.org.uk,3 14415,http://ukcyclerules.com,3 14416,http://www.rainbowicecream.talktalk.net,3 14417,http://www.buyingusedmotorcycles.co.uk,3 14418,http://www.szkocja2006.fora.pl,3 14419,http://www.ignition-tuition.co.uk,3 14420,http://www.battisfordplaygroup.co.uk,3 14421,http://www.wilkesdrivingtuition.co.uk,3 14422,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/AnimalsAndPets/DG_10038504,3 14423,http://www.rushmoorcab.org.uk,3 14424,http://www.newventuredrivingtuition.com,3 14425,http://127.0.0.1:2659,3 14426,http://www.direct.gov.uk/en/Employment/TradeUnions/Tradeunionmembership/DG_179240,3 14427,http://www.talkawhile.co.uk,3 14428,http://www.orange.mu,3 14429,http://www.bathspacareers.com,3 14430,http://support.mozilla.com,3 14431,http://209.85.229.104,3 14432,http://www.thesinner.net,3 14433,http://intranet.wel.roche.com,3 14434,https://mobile.flyastraeus.com,3 14435,http://linux1.smartit.co,3 14436,http://www.totse.info,3 14437,http://vle.nhgs.co.uk,3 14438,http://www.batemansdrivingschool.co.uk,3 14439,http://www.upassed.co.uk,3 14440,http://citywebstudio.com,3 14441,http://www.will-writing.me.uk,3 14442,http://adilewis.theorytestpro.co.uk,3 14443,http://www.marigoldnursery.co.uk,3 14444,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011228,3 14445,http://www.upc.ie,3 14446,http://muirtonresidential.easysearch.org.uk,3 14447,http://intranet.uk.zurich.com,3 14448,http://www.direct.gov.uk/en/AdvancedSearch/search,3 14449,http://www.marisancestry.co.uk,3 14450,http://muikku.otavanopisto.fi,3 14451,http://www.direct.gov.uk/en/Employment/TradeUnions/DG_10031235,3 14452,http://www.basingstokeconsortium.com,3 14453,http://www.butterworth-som.co.uk,3 14454,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Expectingorbringingupchildren/DG_4002854,3 14455,http://www.direct.gov.uk/en/Employment/TradeUnions/DG_10027560,3 14456,http://forums.kustompcs.co.uk,3 14457,http://www.eastnorthantsonline.co.uk,3 14458,http://naturalengland.etraderstores.com,3 14459,http://www.direct.gov.uk/en/Employment/TradeUnions/DG_10027556,3 14460,http://www.learnsomerset.co.uk,3 14461,http://www.basc.org.uk,3 14462,http://intranet.trafford.gov.uk,3 14463,http://www.bartsandthelondon.nhs.uk,3 14464,http://intranet.thomroth.ac.uk,3 14465,http://www.upmystreet.com,3 14466,http://linkedpeople.leaseplan.com,3 14467,http://www.barrywestadi.co.uk,3 14468,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011609,3 14469,http://www.4counties.co.uk,3 14470,http://sunrb1:7777,3 14471,http://www.thederbyshire.co.uk,3 14472,http://www.paulmanselldrivingschool.com,3 14473,http://intranet.southampton.gov.uk,3 14474,http://www.niace.org.uk,3 14475,http://www.thedignityproject.co.uk,3 14476,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011225,3 14477,http://www.snowday.co.uk,3 14478,http://www.direct.gov.uk/dr_consum_dg/groups/dg_codeassets/@dg/@en/documents/codeasset/dg_193621.css,3 14479,http://www.barry.ac.uk,3 14480,http://www.rastafarian.net,3 14481,http://manchester.fsd.org.uk,3 14482,http://www.direct.gov.uk/dr_consum_dg/DGFragmentsCode/images/orangeinputdotb.gif,3 14483,http://www.direct.gov.uk/dr_consum_dg/DGFragmentsCode/et/images/feedback-icon.png,3 14484,http://www.jenowen.co.uk,3 14485,http://www.direct.gov.uk/en/YoungPeople/Money/DG_10027506,3 14486,http://chrisjohnson.theorytestpro.co.uk,3 14487,http://www.touchdurham.com,3 14488,http://www.letsgo-driving.co.uk,3 14489,http://www.busybeesbenefits.com,3 14490,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011223,3 14491,http://www.pjmotoringschool.co.uk,3 14492,http://forums.autosport.com,3 14493,http://www.snowjet.co.uk,3 14494,http://www.direct.gov.uk/en/AdvancedSearch/top100/DG_072883,3 14495,http://www.kaskus.us,3 14496,http://www.jeremyharperdrivingschool.co.uk,3 14497,http://www.rpgfan.com,3 14498,http://www.convenient-wills.co.uk,3 14499,http://www.direct.gov.uk/en/AdvancedSearch/Searchresults/DG_170904,3 14500,http://www.paulnuttalldriving.com,3 14501,http://www.chelmsford.ac.uk,3 14502,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/TheoryTest/,3 14503,http://www.direct.gov.uk/cy/YoungPeople/CrimeAndJustice/Youngpeopleandcourt/index.htm,3 14504,http://www.direct.gov.uk/cy/YoungPeople/CrimeAndJustice/Youngpeopleandcourt/DG_10027682CY,3 14505,http://vle.lancasterhigh.lancs.sch.uk,3 14506,http://www.chellaston.derby.sch.uk,3 14507,http://www.williamsdrivingtuition.co.uk,3 14508,http://www.controlpanel.cc,3 14509,http://suemason.theorytestpro.co.uk,3 14510,http://a1drivingschool.org,3 14511,http://www.schottland-forum.de,3 14512,http://www.pla.co.uk,3 14513,http://www.direct.gov.uk/cy/TravelAndTransport/Usingmotorwaysandroads/Breakdownsdrivingconditions/DG_185145CY,3 14514,http://www.barlowtrailer.co.uk,3 14515,http://lincs2.co.uk,3 14516,http://www.sochealth.co.uk,3 14517,http://lincolnwomensaid.easysearch.org.uk,3 14518,http://www.direct.gov.uk/cy/TravelAndTransport/PublicTransport/BusAndCoachTravel/DG_10036267CY,3 14519,http://forum.vectra-unlimited.pl,3 14520,http://www.sharonsidawayschoolofmotoring.co.uk,3 14521,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011605,3 14522,http://www.direct.gov.uk/cy/TravelAndTransport/PublicTransport/BusAndCoachTravel/DG_10036264cy,3 14523,http://www.social-care.org,3 14524,http://westsomersetonline.gov.uk,3 14525,http://www.direct.gov.uk/cy/TravelAndTransport/PublicTransport/AirtravelintheUK/DG_078179CY,3 14526,http://www.direct.gov.uk/cy/TravelAndTransport/PublicTransport/,3 14527,http://www.lcwc.ac.uk,3 14528,http://www.livestream.com,3 14529,http://limousin.angloinfo.com,3 14530,http://www.nibis.de,3 14531,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Whistleblowingintheworkplace/DG_175821,3 14532,http://www.directdrivecoventry.co.uk,3 14533,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011601,3 14534,http://www.direct.gov.uk/cy/TravelAndTransport/Passports/Applyingforaneworrenewedchildpassport/DG_174105CY,3 14535,http://www.barclayautos.co.uk,3 14536,http://www.marksand.co.uk,3 14537,http://intranet.prod.bfa,3 14538,http://www.livingstonautoparts.co.uk,3 14539,http://alicesuchedns.aol.de,3 14540,http://www.businesshr.net,3 14541,http://www.livingstreets.org.uk,3 14542,http://www.jersey.police.uk,3 14543,http://alicesuche.aol.de,3 14544,http://www.check4jobs.com,3 14545,http://vle.hamblecollege.co.uk,3 14546,http://www.planning.bolton.gov.uk,3 14547,http://mtr.easysearch.org.uk,3 14548,http://intranet.plc.hs.int,3 14549,http://www.bankruptcyhelp.org.uk,3 14550,http://www.jerseyairport.com,3 14551,http://forum.sedty.com,3 14552,http://www.ofmdfmni.gov.uk,3 14553,http://www.morgans-sols.co.uk,3 14554,http://www.livingstreetswirralchester.org.uk,3 14555,http://www.usedcarni.co.uk,3 14556,http://moodle.cardonald.ac.uk,3 14557,http://adi9247.theorytestpro.co.uk,3 14558,http://www.energysaverstore.co.uk,3 14559,http://www.direct.gov.uk/cy/TravelAndTransport/Boatingandtravellingbywater/Usingpleasurecraftsafely/DG_185772CY,3 14560,http://www.nick-clark.co.uk,3 14561,http://www.business-smart.com,3 14562,http://www.direct.gov.uk/cy/TravelAndTransport/Boatingandtravellingbywater/Keepingsafeatthecoast/index.htm,3 14563,http://vle.grantham.ac.uk,3 14564,http://www.our-ladys.oxon.sch.uk,3 14565,http://www.orangemotorcycletraining.co.uk,3 14566,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011218,3 14567,http://www.landrovercentre.com,3 14568,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/PracticalTest/DG_4022542,3 14569,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/KeepingHealthy/DG_10030630,3 14570,http://www.willisdrivingschool.co.uk,3 14571,http://www.martialartsplanet.com,3 14572,http://adi90363.theorytestpro.co.uk,3 14573,http://childcarefinder.direct.gov.uk/search-results/,3 14574,http://www.nickys-som.co.uk,3 14575,http://www.edinburghrc.co.uk,3 14576,http://www.hovecarspares.co.uk,3 14577,http://childcarefinder.direct.gov.uk/childcarefinder,3 14578,http://moodle.cadcol.ac.uk,3 14579,http://www.eoilleida.org,3 14580,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/StatePension/StatePensionforecast/,3 14581,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Adoptionrightsintheworkplace/DG_170401,3 14582,http://www.106rallyeforum.com,3 14583,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/PlanningYourPersonalFinances/DG_10034209,3 14584,http://forum.notobikeparkingtax.com,3 14585,http://intranet.northyorks.gov.uk,3 14586,http://www.rcis.org.uk,3 14587,http://www.parkdeanholidays.co.uk,3 14588,http://childcarefinder.direct.gov.uk/Childcare/code=/dpp/resource/220665/stream/ECD/,3 14589,http://licencecheck.co.uk,3 14590,http://www.nicongrp.co.uk,3 14591,http://vle.dis.aber.ac.uk,3 14592,http://www.societies.ncl.ac.uk,3 14593,http://moodle.brooksbymelton.ac.uk,3 14594,http://www.baha-users-support.com,3 14595,http://www.iva.net,3 14596,http://www.iknowican.co.uk,3 14597,http://libraryonline.leedsmet.ac.uk,3 14598,http://www.busandcoach.com,3 14599,http://www.ljnelson.com,3 14600,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Housingassociationhomes/Housingassociationtenants/DG_188468,3 14601,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/DiscriminationAtWork/DG_10026449,3 14602,http://library.west-cheshire.ac.uk,3 14603,http://www.rdehospital.nhs.uk,3 14604,http://library.wales.org,3 14605,http://www.soenglish.com.cn,3 14606,http://www.kefw.bham.sch.uk,3 14607,http://mswakefield.easysearch.org.uk,3 14608,http://www.willwritersnetwork.com,3 14609,http://www.martinybrown.com,3 14610,http://cherry,3 14611,http://www.ldproperty.co.uk,3 14612,http://www.keith-uckfield-driving-school.co.uk,3 14613,http://intranet.mht.co.uk,3 14614,http://forum.lowyat.net,3 14615,http://chelmsford.gov.uk,3 14616,http://www.nihe.gov.uk,3 14617,http://checkyourmirrors.co.uk,3 14618,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/DG_180420CY,3 14619,http://www.wilmorwil.com,3 14620,http://www.reachoutwestsussex.org,3 14621,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Companyandpersonalpensions/Startingacompanyorpersonalpension/index.htm,3 14622,http://www.burytec.co.uk,3 14623,http://library.rgu.ac.uk,3 14624,http://www.sherriewilliams.co.uk,3 14625,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Housingassociationhomes/Housingassociationtenants/DG_188400,3 14626,http://schoolsfinder.direct.gov.uk/3724017/school-profile/,3 14627,http://www.nikkisignitions.co.uk,3 14628,http://www.babyledweaning.com,3 14629,http://chaucermsukw8,3 14630,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Companyandpersonalpensions/CompanyPensions/DG_10026910CY,3 14631,http://forum.leylandtown.info,3 14632,http://forum.letudiant.fr,3 14633,http://chat.bounty.com,3 14634,http://www.wilsonstreetsurgery.co.uk,3 14635,http://chas.ey.net,3 14636,http://intranet.mbs.ac.uk,3 14637,http://forum.lab501.ro,3 14638,http://www.babyfreebies.co.uk,3 14639,http://www.burychurch.bury.sch.uk,3 14640,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/,3 14641,http://www.cheapaccounting.co.uk,3 14642,http://www.babyboomers-retiring.com,3 14643,http://www.babyboom.pl,3 14644,http://www.400greybike.com,3 14645,http://www.swiftdrivertraining.com,3 14646,http://www.reading-forum.co.uk,3 14647,http://major.theorytestpro.co.uk,3 14648,http://www.direct.gov.uk/cy/Parents/Yourchildshealthandsafety/Yourchildssafetyinthehome/DG_078861CY,3 14649,http://www.contact.uk.com,3 14650,http://121drivingtuition.com,3 14651,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/Parentalleaveandpay/DG_10029416,3 14652,http://www.tourismeducation.org,3 14653,http://www.ljwb.co.uk,3 14654,http://forum.housingenergyadvisor.com,3 14655,http://main.psheok.co.uk,3 14656,http://intranet.lambeth.gov.uk,3 14657,http://www.doberman-chat.com,3 14658,http://intranet.kirklees,3 14659,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/Passplusdrivingcoursefornewdrivers/DG_182847,3 14660,http://library.brighton.ac.uk,3 14661,http://uk.mc872.mail.yahoo.com,3 14662,http://intranet.jti.com,3 14663,http://www.direct.gov.uk/en/SiteInformation/DG_020463,3 14664,http://studentportal,3 14665,http://intranet.industrialmachines.net,3 14666,http://www.nissan.co.uk,3 14667,http://www.direct.gov.uk/cy/Parents/Schoolslearninganddevelopment/ChoosingASchool/index.htm,3 14668,http://www.direct.gov.uk/en/Dl1/Directories/DG_195941,3 14669,http://121drivingschool.net,3 14670,http://studentnet.hca.ac.uk,3 14671,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/Redundancy/DG_173350,3 14672,http://mspstudytourlondon2011.ramboll-management.dk,3 14673,http://www.b2lonline.co.uk,3 14674,http://www.consumerworld.org,3 14675,http://www.scod.org.uk,3 14676,http://www.helpinghands-org.co.uk,3 14677,http://www.wineco.co.uk,3 14678,http://www.matchboroughfirst.org.uk,3 14679,http://centralschoolofmotoring.com,3 14680,http://centrallondondrivingschool.co.uk,3 14681,http://www.winloschoolofmotoring.co.uk,3 14682,http://www.direct.gov.uk/cy/Parents/Moneyandworkentitlements/WorkAndFamilies/Paternityrightsintheworkplace/DG_170383CY,3 14683,http://www.letstalkaboutselfemployment.org.uk,3 14684,http://www.3x3links.com,3 14685,http://cemsites.cem.ac.uk,3 14686,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070312,3 14687,http://studentintranet.hailshamcc.local,3 14688,http://www.kelsey-forums.co.uk,3 14689,http://forum.edu-kingdom.com,3 14690,http://www.hewerdine.co.uk,3 14691,http://forum.ea.com,3 14692,http://www.solarpoweruk.org,3 14693,http://www.ayres-heating.co.uk,3 14694,http://cdslotmount.com,3 14695,http://www.aymelink.org.uk,3 14696,http://intranet.gloscol.ac.uk,3 14697,http://www.burnley.ac.uk,3 14698,http://libguides.wits.ac.za,3 14699,http://www.aylesburydistrictcab.org.uk,3 14700,http://www.nlcafe.hu,3 14701,http://www.wirral-mbc.gov.uk,3 14702,http://www.direct.gov.uk/en/Parents/Lookingafterchildrenifyoudivorceorseparate/Lookingafterchildrenifyourrelationshipends/DG_192856,3 14703,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/NewlyQualifiedDrivers/,3 14704,http://uk.mc862.mail.yahoo.com,3 14705,http://welwyn.theorytestpro.co.uk,3 14706,http://www.burleylodge.org.uk,3 14707,http://libguides.shu.ac.uk,3 14708,http://www.ianrossdriving.co.uk,3 14709,http://www.direct.gov.uk/en/SiteInformation/DG_020456,3 14710,http://cccneb.mrooms3.net,3 14711,http://www.drivinginstructorsinmiltonkeynes.com,3 14712,http://www.matiogi.com,3 14713,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Councilhousing/Counciltenants/DG_188555,3 14714,http://annette,3 14715,http://www.wirraldriving.co.uk,3 14716,http://www.eco-driven.co.uk,3 14717,http://www.vcl-conversions.co.uk,3 14718,http://www.1-rv.co.uk,3 14719,http://www.vegetablefriedrice.com,3 14720,http://www.kennedyskidz.co.uk,3 14721,http://cbforumas.lt,3 14722,http://1sthhb.easysearch.org.uk,3 14723,http://www.towerhamletshomes.org.uk,3 14724,http://www.llrx.com,3 14725,http://www.lambsmead-nurseries.co.uk,3 14726,http://www.direct.gov.uk/cy/Motoring/VehicleCrime/,3 14727,http://welcomtolondon.blog.hu,3 14728,http://uk.mc768.mail.yahoo.com,3 14729,http://adi83828.theorytestpro.co.uk,3 14730,http://libdemninija.wordpress.com,3 14731,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012623,3 14732,http://www.solomotorcycletraining.co.uk,3 14733,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/DG_10026696,3 14734,http://vle.blue-coat.org,3 14735,http://www.lettingprotection.com,3 14736,http://www.avonfire.gov.uk,3 14737,http://www.direct.gov.uk/en/Parents/lookingafterchildrenifyoudivorceorseparate/childrendivorceseparationandcourts/DG_4002963,3 14738,http://www.receptionistjobsonline.co.uk,3 14739,http://www.nmas.ac.uk,3 14740,http://www.sandgatedrivingschool.co.uk,3 14741,http://www.divabradford.org.uk,3 14742,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Ifthingsgowrong/Overpayments/DG_073815,3 14743,http://adi194760.theorytestpro.co.uk,3 14744,http://www.heatingcentral.com,3 14745,http://schoolsfinder.direct.gov.uk/3334025/overview/,3 14746,http://www.interpals.net,3 14747,http://www.direct.gov.uk/cy/Motoring/Drivingforaliving/Drivinglorriesbusesandcoaches/index.htm,3 14748,http://www.llysmeddyg.com,3 14749,http://www.recordsbackground.com,3 14750,http://www.recordsdatacenter.com,3 14751,http://www.msm.im,3 14752,http://stskb.bcc.lan,3 14753,http://www.ikoustic.com,3 14754,http://www.talktofrank.com,3 14755,http://www.matthew-morris.com,3 14756,http://www.avhleeds.org.uk,3 14757,http://www.thedrivingskool.com,3 14758,http://www.direct.gov.uk/en/Parents/lookingafterchildrenifyoudivorceorseparate/childrendivorceseparationandcourts/DG_4002959,3 14759,http://www.3mcareerwise.co.uk,3 14760,http://www.paulsimmons.org.uk,3 14761,http://www.matthewkingschoolofmotoring.co.uk,3 14762,http://www.direct.gov.uk/cy/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/index.htm,3 14763,http://vle.ameryhill.hants.sch.uk,3 14764,http://forolondres.com,3 14765,http://foro.spuks.es,3 14766,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/DG_10026616,3 14767,http://strivetodrive.theorytestpro.co.uk,3 14768,http://www.direct.gov.uk/cy/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/,3 14769,http://www.cliftonschool.org,3 14770,http://forgetmenot.easysearch.org.uk,3 14771,http://10j.ta7.at,3 14772,http://schoolsfinder.direct.gov.uk/3304238/overview/,3 14773,http://careerweb.leeds.ac.uk,3 14774,http://www.mattjohnson-adi.co.uk,3 14775,http://intranet.cobbsch.cobbetts.co.uk,3 14776,http://careers.falmouth.ac.uk,3 14777,http://strive2drive.theorytestpro.co.uk,3 14778,http://www.heycroftschool.org.uk,3 14779,http://intranet.chichester.ac.uk,3 14780,http://careers.aber.ac.uk,3 14781,http://www.tallispost16.com,3 14782,http://careerfox.co.uk,3 14783,http://www.withernseahigh.org.uk,3 14784,http://streetwize.theorytestpro.co.uk,3 14785,http://www.dumgal.gov.uk,3 14786,http://www.sandrayeadon.com,3 14787,http://www.direct.gov.uk/en/Employment/Jobseekers/programmesandservices/DG_198948,3 14788,http://www.direct.gov.uk/cy/Motoring/BuyingAndSellingAVehicle/AdviceOnBuyingAndSellingAVehicle/DG_4022406CY,3 14789,http://cardiffcu.com,3 14790,http://intranet.ccc.local,3 14791,http://adi14502.theorytestpro.co.uk,3 14792,http://www.drivinginstructorsbrixham.co.uk,3 14793,http://www.direct.gov.uk/cy/Motoring/BuyingAndSellingAVehicle/AdviceOnBuyingAndSellingAVehicle/,3 14794,http://carcaptain.com,3 14795,http://www.direct.gov.uk/cy/Motoring/BuyingAndSellingAVehicle/,3 14796,http://www.outdoorinstructorcourse.co.uk,3 14797,http://schoolsfinder.direct.gov.uk/3204072/school-profile/,3 14798,http://webstarter.easily.co.uk,3 14799,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011167,3 14800,http://www.pavingexpert.com,3 14801,http://www.thetechgame.com,3 14802,http://webstaging,3 14803,http://www.ibls.com,3 14804,http://www.msm.me.uk,3 14805,http://www.dulwichtherapyrooms.co.uk,3 14806,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU2PmzAQ*TW5VAoydvg6wpKkubSr0p6Ra7sJWoJZ24T8*BqbBLFLViTqYXuxPfMeM*PGA0gu1AKlC!i*6o1gsYCJwmdtV4LJplRSu12gbamZOZaEVbSo9trbOV!d35xLxejXQknn!w8TyoOhjiJw24hSWyjuXPCgVN0detuDm35r29ahhWBEOXt!cpqX3l8LTnPCK9kcc7rvnQUldWkNtNlRkjFxKgizjjTL8u36Z*4cb9eW71ecsh3tYRiFvXuX5Vn2*Kv3u6ZAvQTJcWGIhvckjQE6QMtKOl!kdy3TGp9HppQpJ9*w8cJIt*kKQOi6wUzBwb8XrIfpT8NKihWeFF6xdnlih4KUbKlHzsGyPr!ry*!gLr*EZhBZ1Y2nwqogucDVix7PnJ1rPb!y4NUwkqPliGVXiJd0kXTtZvPSL7AP7sFkoISWEhrKGyywWDCF!RbzpzDPYt4UtrLY6oIhu1xrQ6bHoSRcsOVw7E6bQYBhPoGBv7yyrOabj6IYDG241ThkIsdm!88ad1OSayW590iKJvOA6xsSDl02EdF63HbLv5go9pAfBiACvr2upTu60Dvu5xExn!N!3rTgLtljTYPsj1O57iOpRi2anQo8kmrU8bmpQPRIqtEFzk717usyJ9VoHmanCm6nMr8Fvi!I*uxLhgU55Kz6C83HKWg_/results,3 14807,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/TaxOnSavingsAndInvestments/DG_4015739CY,3 14808,http://www.autostoreonline.co.uk,3 14809,http://www.no-worries.co.uk,3 14810,http://www.autosolutions2k.co.uk,3 14811,http://www.0044.co.uk,3 14812,http://www.hmprisonservice.gov.uk,3 14813,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/TaxOnPropertyAndRentalIncome/DG_4017930CY,3 14814,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Bankruptcy/DG_187410,3 14815,http://uk.mc368.mail.yahoo.com,3 14816,http://www.ibms.org,3 14817,http://intranet.birdlife.org,3 14818,http://www.charliechaplinadventureplayground.org,3 14819,http://fop.easysearch.org.uk,3 14820,http://campusmoodle.rgu.ac.uk,3 14821,http://campus.rgu.com,3 14822,http://www3.firstdirect.com,3 14823,http://schoolsfinder.direct.gov.uk/3174027/school-profile/,3 14824,http://www.direct.gov.uk/en/DisabledPeople/Everydaylifeandaccess/Everydayaccess/index.htm,3 14825,http://www.ilaw.cas.cz,3 14826,http://foodonabudget.com,3 14827,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/IntroductiontoSelfAssessment/DG_10010523CY,3 14828,http://www.outdoorseiten.net,3 14829,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_179996,3 14830,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/DG_4016319CY,3 14831,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/,3 14832,http://visit.lincoln.ac.uk,3 14833,http://www.local-instructor.co.uk,3 14834,http://www.direct.gov.uk/en/Employment/Jobseekers/programmesandservices/DG_183454,3 14835,http://www.russellhrconsulting.co.uk,3 14836,http://195.28.26.13,3 14837,http://foodimports.direct.gov.uk/eu-countries.html,3 14838,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Ifthingsgowrong/Complaintsappealspenaltieschecks/index.htm,3 14839,http://intranet.acas.org.uk,3 14840,http://www.clickngomortgages.co.uk,3 14841,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/Refundscomplaintsandreportingchanges/,3 14842,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxrefundsreclaimingtax/DG_078358CY,3 14843,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_179966,3 14844,http://www.tracy-l-pass.co.uk,3 14845,http://vision.hw.ac.uk,3 14846,http://foltartanga.wordpress.com,3 14847,http://www.direct.gov.uk/en/DisabledPeople/Everydaylifeandaccess/AccessibleTechnology/DG_4000577,3 14848,http://schoolsfinder.direct.gov.uk/3125402/overview,3 14849,http://folio4me.co.uk,3 14850,http://www.kentprepared.org.uk,3 14851,http://www.paywizard.co.uk,3 14852,http://www.eigenlabs.com,3 14853,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/otherbenefits/DG_175709CY,3 14854,http://foleyparkmc.easysearch.org.uk,3 14855,http://website.braunton.devon.sch.uk,3 14856,http://www.wnxxforum.com,3 14857,http://lesfairfield.org,3 14858,http://www.wokinghammot.com,3 14859,http://www.auto-drive-som.co.uk,3 14860,http://www.leverhulme.ac.uk,3 14861,http://190.1.145.60,3 14862,http://foccs.easysearch.org.uk,3 14863,http://www.disney.co.uk,3 14864,http://www.learnwithdelta1.co.uk,3 14865,http://ade1969.theorytestpro.co.uk,3 14866,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_199088.pdf,3 14867,http://adi7423.theorytestpro.co.uk,3 14868,http://www.eastbournefhs.org.uk,3 14869,http://www.morrisonsschoolofmotoring.co.uk,3 14870,http://www.drivinginstructorkilwinning.co.uk,3 14871,http://leonardstanley.org.uk,3 14872,http://www.learnwithfreedom.co.uk,3 14873,http://www.noiseresourceservice.org.uk,3 14874,http://caldecotecf.easysearch.org.uk,3 14875,http://ade.theorytestpro.co.uk,3 14876,http://www.insurethebox.com,3 14877,http://www.nokiausers.net,3 14878,http://www.horleylp.org.uk,3 14879,http://www.easygp.net,3 14880,http://www.clic.cumbria.gov.uk,3 14881,http://alg.ypla.gov.uk,3 14882,http://www.wolvesfis.com,3 14883,http://www.safestart.org.uk,3 14884,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/Childrenandtaxcredits/,3 14885,http://flutterflyevents.com,3 14886,http://webserver.forest.org.uk,3 14887,http://www.changingmindscentre.co.uk,3 14888,http://moo.priestley.ac.uk,3 14889,http://www.tradesou.com,3 14890,http://www.tradetyres.com,3 14891,http://cabcornwall-access.org,3 14892,http://cabcentralborders.easysearch.org.uk,3 14893,http://www.redlands.notts.sch.uk,3 14894,http://webserver,3 14895,http://www.jgalearning.co.uk,3 14896,http://ca.mg6.mail.yahoo.com,3 14897,http://mail.wedohosting.com,3 14898,http://news.gocompare.com,3 14899,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/DG_177272,3 14900,http://internalweb,3 14901,http://ca.mg1.mail.yahoo.com,3 14902,http://ca.mc886.mail.yahoo.com,3 14903,http://nm.abv.bg,3 14904,http://www.aulro.com,3 14905,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingMoney/PlanningYourPersonalFinances/DG_10013916CY,3 14906,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/BeforeYouTravel/DG_4019500,3 14907,http://fish.fife,3 14908,http://www.aughton-ormskirk-u3a.co.uk,3 14909,http://www.scotrail.co.uk,3 14910,http://www.shuttleworth.ac.uk,3 14911,http://www.audit-commission.gov.uk,3 14912,http://www.audiownersclub.com,3 14913,http://www.howellds.com,3 14914,http://www.maximeyes.net,3 14915,http://stldenton.easysearch.org.uk,3 14916,http://viewer.zmags.com,3 14917,http://amingtonband.easysearch.org.uk,3 14918,http://interior.intranet,3 14919,http://uk.mc270.mail.yahoo.com,3 14920,http://www.thetutorpages.com,3 14921,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingMoney/,3 14922,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/Mortgages/DG_10014997,3 14923,http://www.discoveryownersclub.org,3 14924,http://www.viaa.gov.lv,3 14925,http://interactive.stockport.gov.uk,3 14926,http://www.consettmedicalcentre.co.uk,3 14927,http://www.localschoolsnetwork.org.uk,3 14928,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingDebt/DebtsAndArrears/DG_10035958CY,3 14929,http://www.woodlands-som.co.uk,3 14930,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/SupportWhileInWork/DG_4000255,3 14931,http://www.woodlandshealthcentre.org.uk,3 14932,http://intensiveactivity.wordpress.com,3 14933,http://www.bsuh.nhs.uk,3 14934,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/Youngpeopleservingyoursentence/DG_10027708,3 14935,http://www.norcap.co.uk,3 14936,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/ChildTrustFund/WhentheChildTrustFundisupandrunning/DG_193644,3 14937,http://monran.blog.so-net.ne.jp,3 14938,http://www.atlaslgvtraining.co.uk,3 14939,http://www.atlasdrivingschool.org.uk,3 14940,http://stjohnpaynepta.easysearch.org.uk,3 14941,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/ChildTrustFund/WhentheChildTrustFundisupandrunning/DG_193638,3 14942,http://www.championingcsr.co.uk,3 14943,http://www.trailbikemag.com,3 14944,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/ks3/index_t_ks3.htm,3 14945,http://apps.cardiff.gov.uk,3 14946,http://adi72272.theorytestpro.co.uk,3 14947,http://www.pccure.co.uk,3 14948,http://www.somersetscitt.co.uk,3 14949,http://addons.alltheinternet.com,3 14950,http://www-live.myfamilyclub.co.uk,3 14951,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Paymentsandentitlements/ChildBenefitpayment/,3 14952,http://10.72.92.12,3 14953,http://www.drivinginstructorinhastings.com,3 14954,http://www.atemremote.co.uk,3 14955,http://www.reena.es,3 14956,http://10.66.43.28:15871,3 14957,http://www.atdementia.org.uk,3 14958,http://www.worcestershire.nhs.uk,3 14959,http://www.norfolk.police.uk,3 14960,http://www.mbc.ac.uk,3 14961,http://www.mbecert.com,3 14962,http://stginet,3 14963,http://legacy.london.gov.uk,3 14964,http://www.chameleonsearch.com,3 14965,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/Typesofsentencesyoungpeoplecanget/index.htm,3 14966,http://businesslink.org,3 14967,http://www.wordex.com.ar,3 14968,http://www.mbmc.org.uk,3 14969,http://businessdatabase.indicator.co.uk,3 14970,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018923CY,3 14971,https://secure.studentfinance.direct.gov.uk/protocol/registration/register,3 14972,http://www.jimangus.co.uk,3 14973,http://www.myteaa.com,3 14974,http://www.wordsley.dudley.sch.uk,3 14975,http://www.bsieducation.org,3 14976,http://www.direct.gov.uk/en/Employment/Jobseekers/Helpapplyingforajob/DG_173703,3 14977,http://firekills.direct.gov.uk/pledge/index.html,3 14978,http://www.laria.gov.uk,3 14979,http://webmailvtin.alice.it,3 14980,http://www.astoragency.co.uk,3 14981,http://buscar.univision.com,3 14982,http://www.dudleydrivingschools.com,3 14983,http://www.astdrivingschool.co.uk,3 14984,http://www.mbsellickbsmadi.co.uk,3 14985,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_188028,3 14986,http://www-claims,3 14987,http://www.astarmarksdrivingschool.co.uk,3 14988,http://www.vinden.be,3 14989,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_194408.pdf,3 14990,http://adi136877.theorytestpro.co.uk,3 14991,http://www.myukfriends.com,3 14992,http://www.pnct.pnn.police.uk,3 14993,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Expectingorbringingupchildren/DG_10018750CY,3 14994,http://insite.ucles.org.uk,3 14995,http://www.vinesdrivingschool.co.uk,3 14996,http://insite.northdevon.gov.uk,3 14997,http://www.kevinreynolds-adi.co.uk,3 14998,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_187004,3 14999,http://www.chaletfinder.co.uk,3 15000,http://www.virtual-voyager.net,3 15001,http://steveblake.theorytestpro.co.uk,3 15002,http://www.workfriend.co.uk,3 15003,http://www.okt.co.uk,3 15004,http://adi134418.theorytestpro.co.uk,3 15005,http://www.virtualireland.ru,3 15006,http://www.assetskills.org,3 15007,http://bsure.hubpages.com,3 15008,http://www.rtbdrivingschool.com,3 15009,http://www.workinghours.co.uk,3 15010,http://msagb.com,3 15011,http://www.assetharbour.com,3 15012,http://www.visaforum.org,3 15013,http://n-somerset.theorytestpro.co.uk,3 15014,http://www.learnwithkathy.co.uk,3 15015,http://sterthprimary.easysearch.org.uk,3 15016,http://www.a1stairlifts.co.uk,3 15017,http://www.northamptonshire-carers.org,3 15018,http://uk.mc244.mail.yahoo.com,3 15019,http://finance-legal.com,3 15020,http://www.mcch.co.uk,3 15021,http://www.lewishamhomes.org.uk,3 15022,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Bereaved/DG_10018660CY,3 15023,http://fill-it-in.mag-uk.org,3 15024,http://figur8.net,3 15025,http://mail.tdc.dk,3 15026,http://www.trainingtracker.co.uk,3 15027,http://www.a1ridertraining.com,3 15028,http://www.sophiesdrivinglancaster.co.uk,3 15029,http://www.locksmithondemand.co.uk,3 15030,http://broadland.gov.uk,3 15031,http://www.vision2learn.co.uk,3 15032,http://www.landback.co.uk,3 15033,http://wzeu.ask.com,3 15034,http://britishyouthfilmacademy.com,3 15035,http://www.aspergerfoundation.org.uk,3 15036,http://nldomsvr02.northlincs.gov.uk:81,3 15037,http://www.safestartup.org,3 15038,http://www.keystartdrivingschool.co.uk,3 15039,http://www.tran-quility.co.uk,3 15040,http://www.direct.gov.uk/en/Parents/ChildMaintenance/Arrangingchildmaintenance/DG_199081,3 15041,http://leeds.gov.uk,3 15042,http://www.keystones-consulting.com,3 15043,http://steering2success.com,3 15044,http://britishbydescent.wordpress.com,3 15045,http://www.the-t-bar.com,3 15046,http://mail.st-philips.manchester.sch.uk,3 15047,http://www.parkmedrivingschool.co.uk,3 15048,http://www.brumlearner.co.uk,3 15049,http://www.regents-tc.ac.uk,3 15050,http://britannia.com,3 15051,http://vetlife.sereno-dev.co.uk,3 15052,http://stcatherineshospice.easysearch.org.uk,3 15053,http://www.direct.gov.uk/en/Parents/Childcare/DG_181197,3 15054,http://www.regitra.lt,3 15055,http://bristolcommunitytransport.org.uk,3 15056,http://www.pokerstars.co.uk,3 15057,http://uk.mc1613.mail.yahoo.com,3 15058,http://veteransagency,3 15059,http://www.300zx.co.uk,3 15060,http://mail.st-pauls-pri.manchester.sch.uk,3 15061,http://www.worksopdrivingschool.co.uk,3 15062,http://www.pcvlicencetraining.co.uk,3 15063,http://www.asksid.net,3 15064,http://www.mcleanpropertyservices.co.uk,3 15065,http://brightoneasyriders.forumotion.com,3 15066,http://www.jmedrivingschool.com,3 15067,http://webmail1h.orange.fr,3 15068,http://vespa.proboards.com,3 15069,http://www.learnwithlaura.co.uk,3 15070,http://www.northcornwalldrivertraining.co.uk,3 15071,http://www.transitioninfonetwork.org.uk,3 15072,http://bridgwater.ac.uk,3 15073,http://www.direct.gov.uk/cy/HomeAndCommunity/InYourHome/SupportAtHome/DG_10030785CY,3 15074,http://www.drapersjobs.com,3 15075,http://www.northdown.gov.uk,3 15076,http://www.direct.gov.uk/cy/HomeAndCommunity/InYourHome/FireSafety/DG_10030963CY,3 15077,http://learnwithlaura.theorytestpro.co.uk,3 15078,http://webmail1e.orange.fr,3 15079,http://www.ican.edu.kh,3 15080,http://www.soprov.it,3 15081,http://www.direct.gov.uk/en/Parents/Childcare/DG_071215,3 15082,http://www.theaacareers.com,3 15083,http://www.askdes.org.uk,3 15084,http://fbcweb,3 15085,http://www.law.qub.ac.uk,3 15086,http://www.direct.gov.uk/cy/HomeAndCommunity/InYourHome/AnimalsAndPets/,3 15087,http://www.silversiteonly.org.uk,3 15088,http://favilous.com,3 15089,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/WorriedAbout/DG_174,3 15090,http://www.visitworcestershire.org,3 15091,http://startupbritain.org,3 15092,http://www.silversurfersseventy.co.uk,3 15093,http://www.worldbooknight.org,3 15094,http://inmyprime.co.uk,3 15095,http://startsear.ch,3 15096,http://www.mzridersclub.com,3 15097,http://www.dannys-school-of-motoring.co.uk,3 15098,http://uk.mc1257.mail.yahoo.com,3 15099,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuyingYourHome/DG_4001397,3 15100,http://www.sourcewire.com,3 15101,http://www.worldlingo.com,3 15102,http://www.asil.org,3 15103,http://www.kidsturncentral.com,3 15104,http://www.south-hams-dc.gov.uk,3 15105,http://www.cfauth.com,3 15106,http://www.investinhealth.org.uk,3 15107,http://www.worldworld.com,3 15108,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuyingYourHome/DG_4001324,3 15109,http://10.5.50.1,3 15110,http://www.sane.org.uk,3 15111,http://www.london-invest.ru,3 15112,http://www.vivirenlondres.com,3 15113,http://www.j4automaticdrivinglessonssheffield.co.uk,3 15114,http://www.direct.gov.uk/cy/Hl1/Help/DG_10014666CY,3 15115,http://bpc.laserlearning.org,3 15116,http://schoolfinder.newham.gov.uk,3 15117,http://faq.tescobank.com,3 15118,http://boxrec.com,3 15119,http://www.northdowndrivingacademy.co.uk,3 15120,http://mail.st-edmunds.manchester.sch.uk,3 15121,http://bowspii01,3 15122,http://www.ashlyns.herts.sch.uk,3 15123,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/WorriedAbout/DG_171314,3 15124,http://www.howto.co.uk,3 15125,http://boston.theorytestpro.co.uk,3 15126,http://www.meanwoodschool.co.uk,3 15127,http://www.london-property.org,3 15128,http://www.nabd.org.uk,3 15129,http://money.citizenshipfoundation.org.uk,3 15130,http://fancyratsforum.co.uk,3 15131,http://bopcmsdev,3 15132,http://booktheorytests.co.uk,3 15133,http://infoserv,3 15134,http://informe.intra.bt.com,3 15135,http://starlighttgc.easysearch.org.uk,3 15136,http://informationnow.co.uk,3 15137,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/KeepingYourMoneySecure/DG_10035798,3 15138,http://familyservices.direct.gov.uk/,3 15139,http://www.pdltuition.co.uk,3 15140,http://419813.theorytestpro.co.uk,3 15141,http://familyfund.test.summit.co.uk,3 15142,http://www.vm.ee,3 15143,http://learning.wlc.ac.uk,3 15144,http://inform,3 15145,http://www.london-scooters.co.uk,3 15146,http://infoportal.bre.co.uk,3 15147,http://www.travelbite.co.uk,3 15148,http://www.ashfieldhomes.co.uk,3 15149,http://www.runctonholmewormegay.co.uk,3 15150,http://bobkeeper.co.uk,3 15151,http://www.direct.gov.uk/cy/Governmentcitizensandrights/GettingLegalAdvice/index.htm,3 15152,http://learning.thorntongrammar.bradford.sch.uk,3 15153,http://sbuatweb01.silverbearhosting.co.uk,3 15154,http://uk.mc1120.mail.yahoo.com,3 15155,http://www.voanews.com,3 15156,http://www.jniosh.go.jp,3 15157,http://facts.bournemouth.gov.uk,3 15158,http://sbi4.sitesell.com,3 15159,http://www.london.diplo.de,3 15160,http://www.direct.gov.uk/cy/Governmentcitizensandrights/GettingLegalAdvice/,3 15161,http://boards.ancestry.co.uk,3 15162,http://webmail.westlothian.org.uk,3 15163,http://www.dudleycol.ac.uk,3 15164,http://boardingarea.com,3 15165,http://www.overthegardengate.net,3 15166,http://money-watch.co.uk,3 15167,http://sbcinternet,3 15168,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011555,3 15169,http://bmwclubyorkshire.freeforums.org,3 15170,http://www.electricscotland.com,3 15171,http://www.cesg.gov.uk,3 15172,http://www.mecdrivingsolutions.net,3 15173,http://www.scottishvintageaustinenthusiastsclub.co.uk,3 15174,http://www.safewayuk.com,3 15175,http://blueskydriving.co.uk,3 15176,http://webmail.virgilio.it,3 15177,http://www.policemutual.co.uk,3 15178,http://www.simon-says-pass.co.uk,3 15179,http://www.kimblecouncil.org,3 15180,http://www.media-box.co.uk,3 15181,http://abcsok.no,3 15182,http://www.simonandrew.co.uk,3 15183,http://www.horndeantc.hants.sch.uk,3 15184,http://www.wsfc.ac.uk,3 15185,http://info.letsrentit.co.uk,3 15186,http://www.direct.gov.uk/en/Hl1/Help/Socialbookmark/index.htm,3 15187,http://www.stewartsschoolofmotoring.co.uk,3 15188,http://learning.learndirect.co.uk,3 15189,http://exxingestt:4710,3 15190,http://uk.inside.abb.com,3 15191,http://sarahladbrook.theorytestpro.co.uk,3 15192,http://www.brockleydrivingacademy.co.uk,3 15193,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/Afteradeathmanaginganestate/index.htm,3 15194,http://staging.towerswatson.com,3 15195,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012614,3 15196,http://blogs.fco.gov.uk,3 15197,http://extraordinary.direct.gov.uk/index.aspx,3 15198,http://blogs.dfid.gov.uk,3 15199,http://www.direct.gov.uk/en/DisabledPeople/Disabledparents/index.htm,3 15200,http://myvle.mkcollege.net,3 15201,http://blogs.channel4.com,3 15202,http://www.broadwaydrivingschool.co.uk,3 15203,http://www.connexionscumbria.co.uk,3 15204,http://www.rune-server.org,3 15205,http://extraordinary.direct.gov.uk/careers/,3 15206,http://webmail.topletter.com,3 15207,http://www.simplicitydrivingschool.co.uk,3 15208,http://www.ascel.org.uk,3 15209,http://www.simplifiedrecruitment.com,3 15210,http://www.direct.gov.uk/en/DisabledPeople/Disabledparents/DG_10037905,3 15211,http://various.gbhs.co.uk,3 15212,http://samsmiths.info,3 15213,http://www.hse.ie,3 15214,http://www.republic.org.uk,3 15215,http://www.stgeorgeplc.com,3 15216,http://independentdriving.theorytestpro.co.uk,3 15217,http://www.classiccarsforsale.co.uk,3 15218,http://aimhigher.ac.uk,3 15219,http://uk.ezilon.com,3 15220,http://www.heyeslane.co.uk,3 15221,http://www.broadbaseinternational.com,3 15222,http://www.jaama.co.uk,3 15223,http://www.nacro.org.uk,3 15224,http://expertdrivingtuition.com,3 15225,http://blog.preloved.co.uk,3 15226,http://salfordcitycouncil.createsend4.com,3 15227,http://www.asasa.org.uk,3 15228,http://adi191270.theorytestpro.co.uk,3 15229,http://www.centrepoint.org.uk,3 15230,http://www.londoncouncils.gov.uk:80,3 15231,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Thewiderenvironment/index.htm,3 15232,http://youngdriversscheme.org.uk,3 15233,http://learning.chalfonts.bucks.sch.uk,3 15234,http://webmail.titanhosts.net,3 15235,http://exmilitarymates.net,3 15236,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1TwjAQ*TVcnKGTD5OWY2sBvahj9ZypaQY7QoNJAH!!!Sh0quAUTnrJZvct!*J2k6KlMiOcjxD9sIZv7aZRQm!WRlsfAutrm8JKzUVT1c3CRl3wI3qVUhtR3dZGRw9PvgZByQhlqtxt1NJ6OHUh9GbM2m1an6BZa3a7XVTVSnATLeQ22ry38bWSFeOy0ZsVqxZtsK74ehkcPLureCHUtuYiBPKiYPPpM3tM59OQT7XOJb8vV*uMfM5gjCkhLX5XsKJ4fGlR6E9qlzhbuZPnTglBN9o7wAFWX!ZiE2ut3uD8ab2AUkjgQL3x*9cLAUA0JmigYvqLYros*VUXjXsApjQ1Z6ps3u0DYOJzbV!IrmXTXfresiq1k0oyV8l2xRuSX6G2OEFZl5KElMSnfMPigMXHMBowegwjASPHsOuAXe8xHJbD2bCfXqK5VGLcbd1u1gnwmTegyx8fsoLmkz*FKejacKpx2FdOvflnjTspCQZJ8BxJk6M84PD2kq7LviKe9tse8vcuTgmmSQwmgIZxjWFvoGfM5xIxf2M!31pwluy!pk7271QQXkLVa9FgKnAJVa*jQ6nA5BKq3gAHU*34ugyh6t2HwVTxaSr*tyAXNbeffS1Kxd!YaL4A8Z1AmQ__/results,3 15237,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/TypesOfCrime/DG_10027654,3 15238,http://www.mortgageguideuk.co.uk,3 15239,http://blog.hobbspayrollservices.com,3 15240,http://in.yhs4.search.yahoo.com,3 15241,http://blog.gumtree.com,3 15242,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/DG_180321,3 15243,http://www.arvclub.co.uk,3 15244,http://excoboard.com,3 15245,http://www.londonfreelance.org,3 15246,http://www.orbithomebuyagents.co.uk,3 15247,http://valuestockguide.com,3 15248,http://www.intensive-driving-schools.co.uk,3 15249,http://www.policiamilitar.sp.gov.br,3 15250,http://excelwings.org,3 15251,http://www.simplylearners.com,3 15252,http://www.brittlebone.org,3 15253,http://wtiieeuj.surfcanyon.com,3 15254,http://www.learnwithmarkus.co.uk,3 15255,http://www.lexusandtoyotaservicing.co.uk,3 15256,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Greenertravel/Greenercarsanddriving/DG_10036310CY,3 15257,http://in.mc955.mail.yahoo.com,3 15258,http://www.laneendparishcouncil.org.uk,3 15259,http://www.simplyswitch.com,3 15260,http://www.artsline.org.uk,3 15261,http://www.lfha.co.uk,3 15262,http://www.residentsassociations.co.uk,3 15263,http://ex-l.com,3 15264,http://www.southdartmoor.devon.sch.uk,3 15265,http://staff.stfc.ac.uk,3 15266,http://advisernet.shelter.org.uk,3 15267,http://s8.zetaboards.com,3 15268,http://staff.nrc.ac.uk,3 15269,http://mail.pensnett.dudley.sch.uk,3 15270,http://s7-eu.ixquick.com,3 15271,http://everythingregulation.org.uk,3 15272,http://www.tregister.org,3 15273,http://in.mc946.mail.yahoo.com,3 15274,http://www.volunteeringwandsworth.org.uk,3 15275,http://www.britishwaterways.co.uk,3 15276,http://learn2passwithmike.com,3 15277,http://in.mc1614.mail.yahoo.com,3 15278,http://bladegroupmotability.co.uk,3 15279,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012609,3 15280,http://in.mc1374.mail.yahoo.com,3 15281,http://www.medriving.co.uk,3 15282,http://in.mc1373.mail.yahoo.com,3 15283,http://blackpool.fsd.org.uk,3 15284,http://www.kingofpowerflushing.com,3 15285,http://wtigca.surfcanyon.com,3 15286,http://mail.parkview.manchester.sch.uk,3 15287,http://blackcap,3 15288,http://blackburn.theorytestpro.co.uk,3 15289,http://mod.uk,3 15290,http://www.draftproofing.com,3 15291,http://www.artfund.org,3 15292,http://uk-mkvs.net,3 15293,http://www.stingraymotorsport.com,3 15294,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Greenerlifeevents/DG_179223CY,3 15295,http://www.jobcentreplusadvisor.co.uk,3 15296,http://www.southeastwater.co.uk,3 15297,http://blackboard.langside.ac.uk,3 15298,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011549,3 15299,http://imrg.org,3 15300,http://s-wweb1.winfrith.serco.com,3 15301,http://s-cssorbdb.bcc.lan:7777,3 15302,https://twitter.com,3 15303,http://www.artbynicola.co.uk,3 15304,http://www.politics.ie,3 15305,http://www.retecivica.trieste.it,3 15306,http://uk-immigration.ukresident.com,3 15307,http://www.naht.org.uk,3 15308,http://blackandwhiteandreadallover.blogspot.com,3 15309,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/PayingreducedrateNationalInsurance/index.htm,3 15310,http://www.connexions-rochdale.com,3 15311,http://www.connexions-northumberland.org.uk,3 15312,http://www.edinburgh.com.pl,3 15313,http://learn.oaklands.ac.uk,3 15314,http://www.connexions-norfolk.co.uk,3 15315,http://www.s329613068.websitehome.co.uk,3 15316,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Energyandwatersaving/Energygrants/,3 15317,http://rwec.co.uk,3 15318,http://www.retirement-partnership.co.uk,3 15319,http://www.a1-hgvdrivingschool.co.uk,3 15320,http://sscb.easysearch.org.uk,3 15321,http://www.direct.gov.uk/cy/Employment/Understandingyourworkstatus/Migrantworkers/DG_173236CY,3 15322,http://www.nali.co.uk,3 15323,http://www.direct.gov.uk/en/Diol1/EmploymentInteractiveTools/DG_065397,3 15324,http://images.yandex.ru,3 15325,http://www.centralaudivw.co.uk,3 15326,http://images.moneysavingexpert.com,3 15327,http://www.thewi.org.uk,3 15328,http://www.lgyh.gov.uk,3 15329,http://www.londonschoolofdriving.co.uk,3 15330,http://www.cems.uwe.ac.uk,3 15331,http://udrivemsm.theorytestpro.co.uk,3 15332,http://www.theadventurecentre.co.uk,3 15333,http://wss.fsa.gov.uk,3 15334,http://www.armin-knab-gymnasium.de,3 15335,http://www.yamahaxjrownersclub.com,3 15336,http://movinonsom.theorytestpro.co.uk,3 15337,http://www.politnauka.org,3 15338,http://sptest.scottishpower.co.uk,3 15339,http://www.yasmintest.co,3 15340,http://www.swimming.org,3 15341,http://www.stish.org,3 15342,http://www.triangledrivertraining.co.uk,3 15343,http://www.drivinghorseboxes.co.uk,3 15344,http://www.trianglesom.com,3 15345,http://1.1.1.1,3 15346,http://learn.cem.ac.uk,3 15347,http://www.direct.gov.uk/cy/Employment/RedundancyAndLeavingYourJob/Dismissal/DG_10026692CY,3 15348,http://www.direct.gov.uk/cy/Employment/Jobseekers/LookingForWork/DG_10033053CY,3 15349,http://www.croydon.ac.uk,3 15350,http://www.direct.gov.uk/en/Nl1/Newsroom/SpendingReview/DG_191799,3 15351,http://www.melbournesurgery.co.uk,3 15352,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_180655.pdf,3 15353,http://www.celticdrivingsolutions.com,3 15354,http://www.polski-instruktor.com,3 15355,http://www.claremont-high.org.uk,3 15356,http://www.trimarkdriving.co.uk,3 15357,http://www.jace-training.co.uk,3 15358,http://rsmtraining.theorytestpro.co.uk,3 15359,http://www.accelerateuk.net,3 15360,http://www.trinitychildrenscentre.org,3 15361,http://springpadit.com,3 15362,http://esi.essexcc.gov.uk,3 15363,http://rsgbdata.net,3 15364,http://www.clare.cam.ac.uk,3 15365,http://eservices.merthyr.gov.uk,3 15366,http://3rdwallaseycs.easysearch.org.uk,3 15367,http://www.trinityds.com,3 15368,http://www.scottsfuels.com,3 15369,http://www.thefarmsom.com,3 15370,http://escapethecity.org,3 15371,http://www.britishcouncil.pl,3 15372,http://www.yogatime4u.com,3 15373,http://www.a-zstickers.com,3 15374,http://royalbeta.coraider.com,3 15375,http://newhamworkplace.co.uk,3 15376,http://ucanpreventcrime.co.uk,3 15377,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Findoutaboutyourrights/DG_066860,3 15378,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/Ifyoungpeoplegetintroublewiththelaw/DG_196391,3 15379,http://www.yomiuri.co.jp,3 15380,http://routesadmin.open.ac.uk,3 15381,http://ihdg.proboards.com,3 15382,http://www.vwgolfmk2.co.uk,3 15383,http://route66dundee.com,3 15384,http://www.hullstudent.com,3 15385,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011533,3 15386,http://igmt.easysearch.org.uk,3 15387,http://uat2.hrinsurance.co.uk,3 15388,http://www.thewoodsideschool.com,3 15389,http://abcde.co.uk,3 15390,http://biotoile2.ujf-grenoble.fr,3 15391,http://www.revoeschool.co.uk,3 15392,http://es.euroclinix.net,3 15393,http://www.mendipmotoring.co.uk,3 15394,http://www.imberhorne.w-sussex.sch.uk,3 15395,http://www.w-owen.co.uk,3 15396,http://adi371142.theorytestpro.co.uk,3 15397,http://www.direct.gov.uk/cy/Employment/Employees/EmploymentContractsAndConditions/DG_175704CY,3 15398,http://bildungsserver.hamburg.de,3 15399,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Discrimination-yourrights/DG_10014458,3 15400,http://webmail.racine.ra.it,3 15401,http://www.theworkfoundation.com,3 15402,http://www3.westminster.gov.uk,3 15403,http://ldcbishopauckland.co.uk,3 15404,http://bikersoracle.com,3 15405,http://www.lhmeridian.co.uk,3 15406,http://www.pooliebunker.co.uk,3 15407,http://www.liaa.gov.lv,3 15408,http://10.255.109.142:9093,3 15409,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010948,3 15410,http://www.northlands-jun.essex.sch.uk,3 15411,http://webmail.qmul.ac.uk,3 15412,http://www.direct.gov.uk/cy/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/,3 15413,http://www.dpgplc.co.uk,3 15414,http://lccweb3,3 15415,http://www.scottvehicleservices.com,3 15416,http://www.longeaton.derbyshire.sch.uk,3 15417,http://www.yorkshire-bsl-interpreters.co.uk,3 15418,http://www.i-s-m.org.uk,3 15419,http://u2drive.co.uk,3 15420,http://epsom.3rdsectorit.co.uk,3 15421,http://lccintranet2.lancscc.gov.uk,3 15422,http://www.w124.co.uk,3 15423,http://idsmart.direct.gov.uk/who-can-get-the-card.html,3 15424,http://eplanning.birmingham.gov.uk,3 15425,http://www.cdt82.co.uk,3 15426,http://bhtnet,3 15427,http://idsmart.direct.gov.uk/how-to-apply.html,3 15428,http://romaninuk.net,3 15429,http://bhclrc.18.forumer.com,3 15430,http://www.horsenetwork.co.uk,3 15431,http://www.oxnet.org.uk,3 15432,http://www.menshealth.co.uk,3 15433,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010942,3 15434,http://rogr.web-help-service.net,3 15435,http://www.direct.gov.uk/en/Nl1/Newsroom/Elections_Voting/DG_185706,3 15436,http://www.southport.gb.com,3 15437,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/BeforeYouTravel/DG_4018184,3 15438,http://www.stlawrenceprimary.co.uk,3 15439,http://bfgnet.de,3 15440,http://tynemouthscouts.easysearch.org.uk,3 15441,http://www.cdhhp.co.uk,3 15442,http://mountfieldslodge.easysearch.org.uk,3 15443,http://idlefoundation.net,3 15444,http://bevan.theorytestpro.co.uk,3 15445,http://www.cdfriend.co.uk,3 15446,http://www.scout-enterprises.co.uk,3 15447,http://www.mentalhealth.huntsmind.org.uk,3 15448,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Roadandtravelsafety/index.htm,3 15449,http://identitytheft.org.uk,3 15450,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/UKpublicappointments/DG_184062,3 15451,http://southstaffsworkcafes.co.uk,3 15452,http://www.trueplan.co.uk,3 15453,http://www.youngcarer.com,3 15454,http://www.arbuildersusa.com,3 15455,http://adi21976.theorytestpro.co.uk,3 15456,http://www.portsmouthdrivingschool.com,3 15457,http://www.mentalwealth.org.uk,3 15458,http://www.sapphireautos.co.uk,3 15459,http://beta.stirling.gov.uk,3 15460,http://www.mentisxl.org,3 15461,http://yamahaclub.com,3 15462,http://beta.salford.ac.uk,3 15463,http://www.longroad.ac.uk,3 15464,http://epetitions.direct.gov.uk/petitions/5911,3 15465,http://www.portswood.southampton.sch.uk,3 15466,http://ide.li,3 15467,http://southend.3rdsectorit.co.uk,3 15468,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Roadandtravelsafety/DG_10037078,3 15469,http://www.lanesschoolofdriving.co.uk,3 15470,http://id.mg60.mail.yahoo.com,3 15471,http://lbhrbwebapp01,3 15472,http://www.pembrokeshireu3a.org.uk,3 15473,http://ws-ccbeta1.freedomoss.com,3 15474,http://www.hethersettoldhallschool.co.uk,3 15475,http://www.stloyesfoundation.org.uk,3 15476,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinemotoring/DG_188087,3 15477,http://mle.mbro.ac.uk,3 15478,http://epetitions.direct.gov.uk/petitions/347,3 15479,http://www.apug.org,3 15480,http://icpen.org,3 15481,http://www.merciadrivingschool.co.uk,3 15482,http://webmail.ndevon.swest.nhs.uk,3 15483,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/NewarrivalstotheUK/index.htm,3 15484,http://www.youngscotextra.org,3 15485,http://south-thames.blackboard.com,3 15486,http://epetitions.direct.gov.uk/petitions/20599,3 15487,http://www.apsom.co.uk,3 15488,http://www.direct.gov.uk/cy/DisabledPeople/HealthAndSupport/MentalHealth/DG_10023439CY,3 15489,http://benpct.nhs.uk,3 15490,http://www.ccsadoption.org,3 15491,http://www.direct.gov.uk/en/Employment/Employees/Flexibleworking/DG_184874,3 15492,http://www.youngwrexham.co.uk,3 15493,http://www.rhincentive.co.uk,3 15494,http://benefitshop.co.uk,3 15495,http://www.rhodes-motoring.co.uk,3 15496,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVAftXZ*wxBLd81abIVN9*MLnOwSrDbqU*sCB2ZgnDlG9TCahNYJ4Z92ehtu56synTolpOrFl91Wo9TX3miLYmTX2h5ohG6lenU0WrvNXvhSKkcwwnRtMwp1sYRG3j7sDboblJdhJJ8M70JfbMEqUtiJln5i9RNxqKtJFSg5UHJPmWAZYNkcxgHjcxgDjM1hB8AOd4zC8Hg2evQedDuMMg2lq47BgGc!o8BPHyzwvHiUlijEsBQc9TeXfvpnwS1awmAJb7FUzOpAOEHDp!xvpC9x7MC*L2nJKM8zVCAO7Upx1NAN*dlj5m*0ZxLBJtuxp2D7dymM90hFEa2WQnukosTXSqFij1TUwNVSP74ua6Si92G1VLYsVbjfwnDqWvvZ11KM7bmR6hu5Mn8J/results,3 15497,http://www.southwayhousing.co.uk,3 15498,http://www.learnwithmike.co.uk,3 15499,http://rmm,3 15500,http://bellsdriving.co.uk,3 15501,http://www.apply2medicine.co.uk,3 15502,http://www.appliancesonline.co.uk,3 15503,http://www.appletreemedical.co.uk,3 15504,http://www.drivingforce-training.co.uk,3 15505,http://beinhome.com,3 15506,http://writing.qualitygal.com,3 15507,http://epetitions.direct.gov.uk/petitions/19616,3 15508,http://sortitonline2.cnxnotts.co.uk,3 15509,http://epetitions.direct.gov.uk/petitions/19450,3 15510,http://iconnect,3 15511,http://www.intensive-driving.com,3 15512,http://icmlive,3 15513,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011525,3 15514,http://adi215062.theorytestpro.co.uk,3 15515,http://epetitions.direct.gov.uk/petitions/18976,3 15516,http://epetitions.direct.gov.uk/petitions/18964,3 15517,http://www.cclslondon.co.uk,3 15518,http://risdubai.com,3 15519,http://www.meritec.co.uk,3 15520,http://motorwayservicesonline.co.uk,3 15521,http://becksdrivingschool.co.uk,3 15522,http://riomelapd3.corp.riotinto.org,3 15523,http://icalshare.com,3 15524,http://www.apollomotoring.co.uk,3 15525,http://www.direct.gov.uk/cy/DisabledPeople/Employmentsupport/SupportWhileInWork/DG_4000255CY,3 15526,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/NewarrivalstotheUK/DG_175606,3 15527,http://beatcold.org.uk,3 15528,http://www.jacks-ds-sheffield.co.uk,3 15529,http://www.mortgagerescuescheme.co.uk,3 15530,http://rightwaydrivingtuition.com,3 15531,http://ib2012-itgs.wikispaces.com,3 15532,http://www.apollo-driving-school.co.uk,3 15533,http://www.richardbrownandco.co.uk,3 15534,http://riddellsgarage.blogspot.com,3 15535,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_199608,3 15536,http://www.merlinhs.co.uk,3 15537,http://richpass.theorytestpro.co.uk,3 15538,http://www.direct.gov.uk/cy/DisabledPeople/EducationAndTraining/HigherEducation/,3 15539,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/PublicConsultations/DG_10035668,3 15540,http://www.apm.org.uk,3 15541,http://webmail.mail.126.com,3 15542,http://www.ccinform.co.uk,3 15543,http://iarsc.easysearch.org.uk,3 15544,http://www.yourdrivingacademy.co.uk,3 15545,http://www.stmaryssaffronwalden.org,3 15546,http://richardhinder.com,3 15547,http://www.henryspink.org,3 15548,http://www.scrap-car-collection-derby-nottingham.co.uk,3 15549,http://mk-web-01.familynest.co.uk,3 15550,http://sofia.ceesa.net,3 15551,http://motorrad.wikia.com,3 15552,http://www.congleton-cheshire.co.uk,3 15553,http://latvietis.net,3 15554,http://www.ozbargain.com.au,3 15555,http://www.drivingfactorlessons.co.uk,3 15556,http://www.apexsolaryorks.com,3 15557,http://socialcareconnect.barnet.gov.uk,3 15558,http://epetitions.direct.gov.uk/petitions/16387,3 15559,http://www.jobsgopublic.com,3 15560,http://ianharrington.theorytestpro.co.uk,3 15561,http://www.bridgwaterdrivingschool.co.uk,3 15562,http://snowysnursery.webs.com,3 15563,http://motorlink-malvern.co.uk,3 15564,http://www.bridgwater.pl,3 15565,http://www.mtbbritain.co.uk,3 15566,http://www.apdrivingacademy.co.uk,3 15567,http://rhsom.theorytestpro.co.uk,3 15568,http://www.direct.gov.uk/en/Employment/Employees/EmploymentContractsAndConditions/DG_185049,3 15569,http://www.tsnw.org.uk,3 15570,http://iambristol.easysearch.org.uk,3 15571,http://www.ccauk.org,3 15572,http://rfownersclub.co.uk,3 15573,http://sncportal.snc.ac.uk,3 15574,http://www.driven-by-u.co.uk,3 15575,http://www.disclosure.capitarvs.co.uk,3 15576,http://www.yourlocalweb.co.uk,3 15577,http://tugasuk.ning.com,3 15578,http://www.tantemarie.co.uk,3 15579,http://www.conformance.co.uk,3 15580,http://myquickhomepage.com,3 15581,http://larch.westnotts.ac.uk,3 15582,http://www.northwest.nhs.uk,3 15583,http://www.stmonicajunior.com,3 15584,http://adi50946.theorytestpro.co.uk,3 15585,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8ut3ubxhCydashVbcpJ*fAye7BKuN!tS!wIEZGWeOQWeHMeOnjBWfMPVWyT5jR2Vvpusd7JpBu1s*OgApgbUDfiud0ua1MxfY9Zu9DKU2njDKsVPtIM0VCK3!!oATXGdNUBGsmgzv0l2hEEdWw8SbMInTE*Oor9kxUiqkVIEywUrEyjmsQKyYwwRiYg47IHa4YxyHx7vxc*DglB10HktfnaOBwHwmkZ8*WOh58VHekBjDUnA8nNyE6Z8Ft2iJoiW6xVI9q4PhRI2QcjiRv6SxI*!!5I3gRVWSmhTYrpwmDd3Qnz1m*kZ*JhFssp16irZ*l6J0j1QS0WopskcqSXytFKn3SCUNXC3143ZZI5V8D6ulymWp2v8W7KVTcO07LQf11mrzDVwXfoM_/results,3 15586,http://www.direct.gov.uk/cy/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/index.htm,3 15587,http://revbendb:7777,3 15588,http://www.tte-systems.com,3 15589,http://www.mortgagesorter.co.uk,3 15590,http://www.scrapcarservices.co.uk,3 15591,http://i-staging.myfamilyclub.co.uk,3 15592,http://www.spacepage.co.uk,3 15593,http://www.29castlegate.org,3 15594,http://results.yahoo.com,3 15595,http://www.direct.gov.uk/cy/CrimeJusticeAndTheLaw/CrimePrevention/DG_072139CY,3 15596,http://ttsonline.net,3 15597,http://www.driveleicester.com,3 15598,http://www.stockportmind.org.uk,3 15599,http://www.drivingdreamz.co.uk,3 15600,http://barret_full.sites.letmc.com,3 15601,http://www.thomas-learn-2-drive.co.uk,3 15602,http://www.tugadrivingschool.co.uk,3 15603,http://barnethomes.org,3 15604,http://languedoc.angloinfo.com,3 15605,http://www.ciyp.co.uk,3 15606,http://www.antinsurance.co.uk,3 15607,http://barfilounge.com,3 15608,http://barclays.co.uk,3 15609,http://youngtimer.dykstra.de,3 15610,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Localgovernment/DG_073313,3 15611,http://missionsystems.baesystems.investis.com,3 15612,http://wps.pearsoned.co.uk,3 15613,http://www.edwebspace.com,3 15614,http://mirrorsds.theorytestpro.co.uk,3 15615,http://hyhg.easysearch.org.uk,3 15616,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_198686,3 15617,http://www.jodythomasdriving.co.uk,3 15618,http://banburyjobhunters.wordpress.com,3 15619,http://banburydrivingschool.co.uk,3 15620,http://www.briansdrivingschoolglasgow.co.uk,3 15621,http://www.loseleyfieldscc.com,3 15622,http://www.theautomaticsolution.com,3 15623,http://www.anthonykingdriving.co.uk,3 15624,http://www.enfieldheating.co.uk,3 15625,http://www.anthonygold.co.uk,3 15626,http://epetitions.direct.gov.uk/petitions/10577,3 15627,http://www.naszaszkocja.net,3 15628,http://badscience.net,3 15629,http://www.scs-online.co.uk,3 15630,http://www.richardssom.co.uk,3 15631,http://www.brianhannasdrivingschool.co.uk,3 15632,http://www.youthden.com,3 15633,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BeginnersGuideToBenefits/DG_10018558,3 15634,http://rentback-advice.org,3 15635,http://www.briancampbelltraining.com,3 15636,http://babymaghrib.wordpress.com,3 15637,http://www.direct.gov.uk/en/Employment/Employees/BusinessTransfersandtakeovers/DG_176395,3 15638,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hqEs2ZKl0Iq9*X25ZJdgtVGf2hc4OAPjzDFo9DBmuMtQ8WqnkzD0UQo5fmWoleJdqLMtqJT6gyrGLUsN3LzJ0VgyBHZt7P6eGsbVyZFx5x5K6kuuHGGko2D9QNXFEnr!!WJPMEIrr0pQNRmeqbnYgrSothNu*ES6O!RQV6M2UqpAqTxlgpUBK!ewImDFHEYCRuawQ8AOVwyH4fZu!Og9GKYHnsfSVcdowDPvQeTnN1bwvLgVNyDGsBQc9ic3fvpnwS1agsES3GKpntUJ4UQNn7I*ET!ksQf!dYkbgouqBDUoQrtymDR0Q3*2mPkb*ZlEsMl26ina*l0Kwj1SSUSrpcAeqSTxtVKg3iOVNHC11I*bZY1U8j2sliqXpWr3W9Bnwey1bzgd2FPP1TcTvoSE/results,3 15639,http://www.hoylakelifeboat.org.uk,3 15640,http://www.direct.gov.uk/cy/BritonsLivingAbroad/EducationAndJobs/,3 15641,http://www.meshcomputersownersclub.com,3 15642,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/NewarrivalstotheUK/DG_172735,3 15643,http://reinstate.easysearch.org.uk,3 15644,http://www.kingsnortondrivingschool.co.uk,3 15645,http://webmail.ihorizons.net,3 15646,http://www.icis-info4life.org.uk,3 15647,http://epcnorthlondon.com,3 15648,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Paymentsandentitlements/Benefitsforparents/index.htm,3 15649,http://www.ecitywheels.com,3 15650,http://webmail.homecall.co.uk,3 15651,http://epcadviser.direct.gov.uk/epcadviser.html,3 15652,http://www.eastmidlands.nhs.uk,3 15653,http://10.220.80.253,3 15654,http://www.spinal.co.uk,3 15655,http://www.spinalinjurycentre.org.uk,3 15656,http://www.a-safestart.co.uk,3 15657,http://awp.connexions-berkshire.org.uk,3 15658,http://www.26fun.com,3 15659,http://www.direct.gov.uk/en/Employment/DG_78,3 15660,http://andyc.theorytestpro.co.uk,3 15661,http://www.highamsparkschool.co.uk,3 15662,http://www.yrts.co.uk,3 15663,http://www.direct.gov.uk/6D9E8502F16A4e9aB7CFD01EC5FFCDD7/Agreement.htm,3 15664,http://adi124271.theorytestpro.co.uk,3 15665,http://www.annhughesdrivingschool.co.uk,3 15666,http://redir.netcentrum.cz,3 15667,http://www.edforum.org.uk,3 15668,http://www.norwichapproveddrivingschool.com,3 15669,http://autumn11.theredoak.org.uk,3 15670,http://eojd.eu,3 15671,http://www.intra.staffordshire.gov.uk,3 15672,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Working/LookingForWork/DG_10026784,3 15673,http://autos.groups.yahoo.com,3 15674,http://afzalschoolofmotoring.com,3 15675,http://redbusnursery.wordpress.com,3 15676,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4019449,3 15677,http://www.annesschoolofmotoring.co.uk,3 15678,http://www.conciseaccountancy.com,3 15679,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/DG_176328,3 15680,http://www.natalami.com,3 15681,http://enrolment.smu.ac.uk,3 15682,http://www.kingstondrivingschoolhull.co.uk,3 15683,http://recruitment.barracudas.co.uk,3 15684,http://enrol.waes.ac.uk,3 15685,http://adi99592.theorytestpro.co.uk,3 15686,http://auto-motors.co.uk,3 15687,http://hud.hobsons.co.uk,3 15688,http://www.east15.ac.uk,3 15689,http://rechercher.aliceadsl.fr,3 15690,http://truckschool.co.uk,3 15691,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/WhyGoToUniversityOrCollege/DG_4016991,3 15692,http://www.licence2drive.org,3 15693,http://hu.wikipedia.org,3 15694,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/WhyGoToUniversityOrCollege/DG_073320,3 15695,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/DG_073202,3 15696,http://htmltools.moneymadeclear.org.uk,3 15697,http://htmltools.moneyadviceservice.org.uk,3 15698,http://www.civiclife.net,3 15699,http://adi124143.theorytestpro.co.uk,3 15700,http://smeira.blog.terra.com.br,3 15701,http://hswarrington.easysearch.org.uk,3 15702,http://england.unitedkingdom-tenders.co.uk,3 15703,http://motorcycletrainingwales.co.uk,3 15704,http://www.wakefieldfis.org.uk,3 15705,http://www.scwad.org.uk,3 15706,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_4019970.pdf,3 15707,http://www.noskidsdrivingschool.co.uk,3 15708,http://hss,3 15709,http://au.mg4.mail.yahoo.com,3 15710,http://au.mg3.mail.yahoo.com,3 15711,http://hsom.theorytestpro.co.uk,3 15712,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011509,3 15713,http://hsfc-srv-data,3 15714,http://us.mc657.mail.yahoo.com,3 15715,http://www.diplomainretailbusiness.com,3 15716,http://www.drivingcasualtiesdown.org,3 15717,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Devolvedgovernment/DG_073307,3 15718,http://webmail.excite.com,3 15719,http://www.citywomen.org,3 15720,http://www.2548.com,3 15721,http://www.helpinghandshomecare.co.uk,3 15722,http://www.thomascookairlines.co.uk,3 15723,http://encore.lib.gla.ac.uk,3 15724,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010822,3 15725,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011734,3 15726,http://www.walesonline.co.uk,3 15727,http://tripleone111.webs.com,3 15728,http://www.loudwaterdrivingschool.co.uk,3 15729,http://smallsteps4life.direct.gov.uk/en/secondary/your-health-challenge/challenge-info.aspx,3 15730,http://www.walh.co.uk,3 15731,http://www.kingworldtravel.com,3 15732,http://www.angliaridertraining.co.uk,3 15733,http://www.sithomson.co.uk,3 15734,http://hrportal.intranet.point,3 15735,http://smallsteps4life.direct.gov.uk/en/secondary/what-others-are-doing/index.aspx,3 15736,http://www.sdhct.nhs.uk,3 15737,http://www.ridge-view.kent.sch.uk,3 15738,http://www.walker.newcastle.sch.uk,3 15739,http://www.loughborough.co.uk,3 15740,http://www.motivatordrivingschool.com,3 15741,http://us.mc598.mail.yahoo.com,3 15742,http://employfilton.blogspot.com,3 15743,http://www.nottingham.gov.uk,3 15744,http://www.brakeaway.co.uk,3 15745,http://www.turbokillers.com,3 15746,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxcodes/DG_078423,3 15747,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069864,3 15748,http://rbhintranet,3 15749,http://www.sabp.nhs.uk,3 15750,http://hr.acml.com,3 15751,http://www.practicaldrivingschool.co.uk,3 15752,http://www.kinloss-skillspartnership.co.uk,3 15753,http://mimi.mottmac.com,3 15754,http://www.direct.gov.uk/en/HomeAndCommunity/YourlocalcouncilandCouncilTax/YourCommunity/DG_4018790,3 15755,http://assist.shaw.ca,3 15756,http://www.hmvtickets.co,3 15757,http://hr-inform.cipd.co.uk,3 15758,http://www.nationalcarbonfootprintday.org,3 15759,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/YourChildsWelfareAtSchool/,3 15760,http://www.zoopla.co.uk,3 15761,http://www.licencebureau.co.uk,3 15762,http://www.walkersdrivingschool.com,3 15763,http://emigraruk.blogspot.com,3 15764,http://www.nationalcollege.org.uk,3 15765,http://hpth.org.uk,3 15766,http://www.direct.gov.uk/en/Dl1/Directories/DG_10026666,3 15767,http://slowtalk.com,3 15768,http://mimas,3 15769,http://slough.spydus.co.uk,3 15770,http://www.louthcarsltd.co.uk,3 15771,http://www.angelfire.com,3 15772,http://www.cityultima.com,3 15773,http://www.teachers-corner.co.uk,3 15774,http://www.zunal.com,3 15775,http://milton-keynes.theorytestpro.co.uk,3 15776,http://rajatred.theorytestpro.co.uk,3 15777,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_196376,3 15778,http://www.digital-kaos.co.uk,3 15779,http://askgoogle.net,3 15780,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/CreditAndStoreCardsCreditAndLoans/index.htm,3 15781,http://travis-drive.webs.com,3 15782,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_195899,3 15783,http://sldnc.openplatform.co.uk,3 15784,http://www.andysteeledriving.co.uk,3 15785,http://ask.theorytestpro.co.uk,3 15786,http://www.walletpop.co.uk,3 15787,http://www.direct.gov.uk/en/Dl1/Directories/DG_186809,3 15788,http://www.nottinghamshirecab.org.uk,3 15789,http://www.wallingford.oxon.sch.uk,3 15790,http://www1.emito.net,3 15791,http://www1.imperial.ac.uk,3 15792,http://www.computerweekly.com,3 15793,http://www.love2pass.com,3 15794,http://www.digiseek.com,3 15795,http://www.godrivertraining.co.uk,3 15796,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/CreditAndStoreCardsCreditAndLoans/DG_10035376,3 15797,http://www.nottinghamshirehealthcare.nhs.uk,3 15798,http://www.thompsonstradeunionlaw.co.uk,3 15799,http://us.mc456.mail.yahoo.com,3 15800,http://www.wallstreet-online.de,3 15801,http://www.cityoflondonlettings.co.uk,3 15802,http://elt.oup.com,3 15803,http://alert-som.weebly.com,3 15804,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/KeepingyourChildBenefituptodate/ChildBenefitafter16/DG_173719,3 15805,http://www.dmgtpensions.com,3 15806,http://www.stovebolt.com,3 15807,http://www.targettuition.co.uk,3 15808,http://www.go4it-drivingschool.co.uk,3 15809,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SpecialEducationalNeeds/DG_4000856,3 15810,http://www.sixtownhousing.org,3 15811,http://www.goggles.co.uk,3 15812,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Marriagesandcivilpartnerships/,3 15813,http://www.gogreendriving.co.uk,3 15814,http://www.castlehillsdrivingtuition.co.uk,3 15815,http://www.go-som.co.uk,3 15816,http://www.lovellchohan.com,3 15817,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4awxJrdwhZs0v59gZNdgtVGfWpf5MAMjDPHoNVmzOgxI4UdeSgr5CbvrhB8lL02Xxlpz25JGWk*rqN1CPYU63Z23AqpzoPq3apfvPJQSgUHjoPoDFcXR!jk582dYAetgh4j1eTxxu3FFawltRtoEwZ2fCIe9TVpI6UCShUoE6wErJzDCsCKOYwBxuawA2CHO0bh8Xg3egoerNBG5rH01SkaCMxnFPn5gwWeF7fSBsUYloKj4eQmDP8suEVLGCzhLZbqWR0IJ2qElMOJ9CWNHfj3KW0YLaoS1aiAduU4aeiG*uwx8zf6M4lgk!3UU7T9uxTGe6SSiFZLoT1SSeJrpVC9Rypp4GqpH7fLGqnke1gtVS5L1f63oPtBuGvfSm7EayfVN2CdgPw_/results,3 15818,http://housingbenefithomes.com,3 15819,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011497,3 15820,http://www.kirbysheppard.co.uk,3 15821,http://ninasantos.com.br,3 15822,http://elliefurlong.easysearch.org.uk,3 15823,http://us.mc397.mail.yahoo.com,3 15824,http://skedr01.salford.coopbank,3 15825,http://www.sjd.ac.uk,3 15826,http://www.low-co2-cars.co.uk,3 15827,http://www.drivinglessonshastings.co.uk,3 15828,http://www.cronfabensiwndyfed.org.uk,3 15829,http://www.computerbase.de,3 15830,http://www.drivinglessonshartlepool.co.uk,3 15831,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011491,3 15832,http://www.drivinglessonsharrogate.com,3 15833,http://a2dominion.co.uk,3 15834,http://mail.abbott.manchester.sch.uk,3 15835,http://www.drivinglessonsgwynedd.co.uk,3 15836,http://www.gmbyorkshire.org.uk,3 15837,http://qube.harlow-college.ac.uk,3 15838,http://www.rightstartmotoring.co.uk,3 15839,http://www.walsallcollege.ac.uk,3 15840,http://www.diasporadosenfermeiros.com,3 15841,http://www.citydrivingschool.co.uk,3 15842,http://www.glowsticking.com,3 15843,http://www.mhim.org.uk,3 15844,http://www.gloucestershireprepared.co.uk,3 15845,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Working/LookingForWork/DG_10026752,3 15846,http://www.citycol.ac.uk,3 15847,http://www.completely-crete.com,3 15848,http://mikesschoolofmotoring.co.uk,3 15849,http://www.nowcard.org,3 15850,http://www.electacourse.com,3 15851,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/KeepingyourChildBenefituptodate/Changesyouneedtoreport/DG_073830,3 15852,http://www.esbs.co.uk,3 15853,http://www.nature.com,3 15854,http://mail-attachment.googleusercontent.com,3 15855,http://krishdriving.co.uk,3 15856,http://www.bracknell.ac.uk,3 15857,http://www.easterngreenjuniorschool.co.uk,3 15858,http://www.23searchengines.com,3 15859,http://www.direct.gov.uk/en/Motoring/DriverLicensing/CaravansTrailersCommercialVehicles/DG_192285,3 15860,http://el2.us.edu.pl,3 15861,http://nikolasjanik.com,3 15862,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthmarriageanddeathcertificates/DG_175689,3 15863,http://us.mc356.mail.yahoo.com,3 15864,http://www.penstamps.com,3 15865,http://www.passingplacedriving.co.uk,3 15866,http://www.peoplenet.norfolk.gov.uk,3 15867,http://www.isle-of-wight-fhs.co.uk,3 15868,http://www.stratfordtyresmot.co.uk,3 15869,http://hope-foundation.co.uk,3 15870,http://www.lifewithhiv.org.uk,3 15871,http://hooterstheory.theorytestpro.co.uk,3 15872,http://nigma.ru,3 15873,http://www.cover4fleetinsurance.co.uk,3 15874,http://www.direct.gov.uk/en/Video/CrimeandJustice/DG_WP198801,3 15875,http://www.wand.org.uk,3 15876,http://www.npower.com,3 15877,http://www.ringmer.e-sussex.sch.uk,3 15878,http://www.lifeworks.com,3 15879,http://pupils.theorytestpro.co.uk,3 15880,http://www.springfield.surrey.sch.uk,3 15881,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017784,3 15882,http://pulse2,3 15883,http://pulse.thamesreach.org.uk,3 15884,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/CreditAndStoreCardsCreditAndLoans/,3 15885,http://www.dracksschoolofmotoring.co.uk,3 15886,http://www.mulligansmotoring.co.uk,3 15887,http://simplyelectronicsnot.webs.com,3 15888,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/Streetcleaninglitterandillegaldumping/DG_10029700,3 15889,http://simpleneeds.co.uk,3 15890,http://homewood-school.co.uk,3 15891,http://efva.co.uk,3 15892,http://www.bp.nhs.uk,3 15893,http://www.coventrydrivinglessons.co.uk,3 15894,http://puddleduckoxon.easysearch.org.uk,3 15895,http://pucket.jonny.s3.swerveconcepts.com,3 15896,http://www.amjautoservices.co.uk,3 15897,http://www.glanconwysom.co.uk,3 15898,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/Bonavacantia/DG_171143,3 15899,http://www.jancett.net,3 15900,http://www.glam.ac.uk,3 15901,http://www.goodmanslaw.co.uk,3 15902,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/Afteradeathmanaginganestate/,3 15903,http://edysgu.llanhari.com,3 15904,http://www.direct.gov.uk/en/Dl1/Directories/DG_064584,3 15905,http://www.michanikos.gr,3 15906,http://edvista.com,3 15907,http://us.mc300.mail.yahoo.com,3 15908,http://www.michellehenry.fr,3 15909,http://www.nrc.ac.uk,3 15910,http://www.amicushorizon.org.uk,3 15911,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthandadoptionrecords/Registeringorchangingabirthrecord/DG_175614,3 15912,http://publicaccess.wycombe.gov.uk,3 15913,http://www.amicalespitfire.fr,3 15914,http://www.michellesdrivingschool.co.uk,3 15915,http://www.teachingexpertise.com,3 15916,http://www.amee.com,3 15917,http://knowit.kmbc,3 15918,http://www.citizensadvicestaffordshire.co.uk,3 15919,http://www.hpcha.org.uk,3 15920,http://www.boxhill.co.uk,3 15921,http://silversounds.easysearch.org.uk,3 15922,http://www.google.ca.,3 15923,http://homepage.sirius-academy.org.uk,3 15924,http://www.gipsil.org.uk,3 15925,http://magicroundaboutpreschool.co.uk,3 15926,http://www.dogstrust.org.uk,3 15927,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_180217.pdf,3 15928,http://tourism-london.ru,3 15929,http://mossandcoleman.com,3 15930,http://www.ambrosedriving.co.uk,3 15931,http://www.carshalton-boilers.co.uk,3 15932,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012221,3 15933,http://www.hill-start.net,3 15934,http://www.leedsdirectory.org,3 15935,http://www.lpauk.com,3 15936,http://homeless.org.uk,3 15937,http://homeconnections.org.uk,3 15938,http://us.mc1900.mail.yahoo.com,3 15939,http://www.direct.gov.uk/en/Dl1/Directories/DG_180121,3 15940,http://edit.suffolkcoastal.gov.uk,3 15941,http://www.bournvilleschool.org,3 15942,http://www.prestbury.com,3 15943,http://edit.northamptonshire.gov.uk,3 15944,http://www.microkid.net,3 15945,http://edit.arthritiscare.org.uk,3 15946,http://www.google.co.in.,3 15947,http://www.ghn.org.uk,3 15948,http://ps.puntersouthallgroup.com,3 15949,http://www.nrwas.org,3 15950,http://www.bournemouthpeoplefirst.co.uk,3 15951,http://www.twinsuk.co.uk,3 15952,http://www.nsb.northants.sch.uk,3 15953,http://mymalignantmelanoma.blogspot.com,3 15954,http://www.east-northantsonline.co.uk,3 15955,http://www.gfg.diabetesukgroup.org,3 15956,http://moss.bolton.gov.uk,3 15957,http://edge.jeetyetmedia.com,3 15958,http://yoursmaternally.co.uk,3 15959,http://www.driving.co.uk,3 15960,http://www.dogsthorpeinfants.co.uk,3 15961,http://home.wirral-libraries.net,3 15962,http://www.hvec.org.uk,3 15963,http://ecpass.theorytestpro.co.uk,3 15964,http://www.acautos.net,3 15965,http://www.getreading.co.uk,3 15966,http://www.midastraining.info,3 15967,http://www.cisi.org,3 15968,http://www.wao.gov.uk,3 15969,http://www.cis-assessment.co.uk,3 15970,http://machasee.com,3 15971,http://kittyradio.com,3 15972,http://www.prestongrovemedicalcentre.co.uk,3 15973,http://kite.uk.rsa-ins.com,3 15974,http://www.holdcroft.com,3 15975,http://mospi.nic.in,3 15976,http://www.dmcommission.com,3 15977,http://www.cirencester-friendly.co.uk,3 15978,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_193213,3 15979,http://www.getinlane.co.uk,3 15980,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_181283,3 15981,http://www.txt2drive.co.uk,3 15982,http://www.google.gl,3 15983,http://www.hillbankhealthcentre.co.uk,3 15984,http://www.google.ie.,3 15985,http://www.riton.co.uk,3 15986,http://macclesfieldwheelers.org.uk,3 15987,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011715,3 15988,http://www.morley.leeds.sch.uk,3 15989,http://www.rpldriving.com,3 15990,http://www.type-ra.co.uk,3 15991,http://www.sass-ltd.co.uk,3 15992,http://www.klarskl.org.uk,3 15993,http://www.abbotsfield.hillingdon.sch.uk,3 15994,http://www.gerrybrennan.com,3 15995,http://ecdlautotest.bradford.gov.uk,3 15996,http://www.nseas.org,3 15997,http://eccleshallrufc.easysearch.org.uk,3 15998,http://www.searchtronic.net,3 15999,http://www.tyresmoke.net,3 16000,http://www.devonjobs.gov.uk,3 16001,http://36ohk6dgmcd1n.c.c.yom.mail.yahoo.net,3 16002,http://profile.live.com,3 16003,http://professionals.carers.org,3 16004,http://www.skillsdrivertraining.co.uk,3 16005,http://www.nsgonline.org.uk,3 16006,http://www.disabilitywales.org,3 16007,http://shinybees.wordpress.com,3 16008,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ClaimingChildBenefit/DG_173542,3 16009,http://www.alresources.com,3 16010,http://kingswaysom.theorytestpro.co.uk,3 16011,http://ebct.easysearch.org.uk,3 16012,http://www.onelofadriver.co.uk,3 16013,http://probikecentre.co.uk,3 16014,http://mickbull.theorytestpro.co.uk,3 16015,http://ebasic.easily.co.uk,3 16016,http://www.homelessuk.org,3 16017,http://michelle.theorytestpro.co.uk,3 16018,http://www.carpages.co.uk,3 16019,http://www.midkent.ac.uk,3 16020,http://www.sath.nhs.uk,3 16021,http://www.iconrelocation.com,3 16022,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingdecisionsforsomeoneelse/index.htm,3 16023,http://www.alphart.co.uk,3 16024,http://www.passmytest.co.uk,3 16025,http://www.ednevnik.si,3 16026,http://www.generous.org.uk,3 16027,http://www.homemade-baby-food-recipes.com,3 16028,http://www.inca-ltd.org.uk,3 16029,http://www.strive2drive.biz,3 16030,http://www.2-in-2-1.co.uk,3 16031,http://www.klett.de,3 16032,http://www.tic.ac.uk,3 16033,http://www.primarytimes.net,3 16034,http://easydrivingschool.org.uk,3 16035,http://primarycare.severndeanery.org,3 16036,http://sheilasdrivingschool.com,3 16037,http://www.migrantworker.co.uk,3 16038,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_070210,3 16039,http://www.borderpeople.info,3 16040,http://prezi.com,3 16041,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/NoiseNuisanceAndLitter/DG_4018684,3 16042,http://us.mc1302.mail.yahoo.com,3 16043,http://www.carnect.co.uk,3 16044,http://tonywebber.com,3 16045,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/NoiseNuisanceAndLitter/DG_195585,3 16046,http://www.kmhgas.co.uk,3 16047,http://www.holywellskiphire.co.uk,3 16048,http://www.gearstogo.co.uk,3 16049,http://www.kmscp.org,3 16050,http://www.lrnsafe.co.uk,3 16051,http://www.strive2drive.co.uk,3 16052,http://michaelmillward.co.uk,3 16053,http://eastlondoncollege.com,3 16054,http://www.gdst.net,3 16055,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_192108,3 16056,http://preszhb.bluewin.ch,3 16057,http://www.riversleypark.childrencentre.org,3 16058,http://www.lroadmaster.com,3 16059,http://www.gotobelfast.com,3 16060,http://shaz.theorytestpro.co.uk,3 16061,http://www.gbyoc.org.uk,3 16062,http://prestige3,3 16063,http://press.expedia.co.uk,3 16064,http://www.padrags.net,3 16065,http://www.riversmead.org.uk,3 16066,http://www.innerlondonnorth.com,3 16067,http://www.carmarthenshirehousing.co.uk,3 16068,http://www.mike-angove.co.uk,3 16069,http://www.booktheorytests.co.uk,3 16070,http://www.booksellers.org.uk,3 16071,http://webdev1c.pv.local,3 16072,http://www.primeskillsdriving.com,3 16073,http://www.gazetka.co.uk,3 16074,http://www.gayweddingdestinations.com,3 16075,http://www.cimla-som.co.uk,3 16076,http://www.nssomersetendoflifecare.nhs.uk,3 16077,http://www.nstgroup.co.uk,3 16078,http://practicalplus.theorytestpro.co.uk,3 16079,http://www.lsangels.co.uk,3 16080,http://www.learn-new-skills-from-home.com,3 16081,http://www.gatewaysmoving.com,3 16082,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012143,3 16083,http://www.direct.gov.uk/en/Pensionsandretirementplanning/TaxandNationalInsuranceinretirement/Howyourpensionincomeistaxed/index.htm,3 16084,http://www.hospitalradiobedside.co.uk,3 16085,http://pplace.forumotion.com,3 16086,http://www.strokeunitglos.nhs.uk,3 16087,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Keepingtrafficmoving/DG_184807,3 16088,http://mib.org.uk,3 16089,http://webcrawler.com,3 16090,http://www.lightline.org.uk,3 16091,http://www.stroodacademy.org,3 16092,http://www.thehandrailpeople.co.uk,3 16093,http://www.gplconstruction.co.uk,3 16094,http://www.ncbi.nlm.nih.gov,3 16095,http://www.nthomefinder.co.uk,3 16096,http://www.lightmaker.com,3 16097,http://www.gascheck.co,3 16098,http://us.mc1223.mail.yahoo.com,3 16099,http://hl-cbtsvr1:8080,3 16100,http://www.ertltd.com,3 16101,http://www.criminalsolicitor.net,3 16102,http://www.ucas.lt,3 16103,http://mortgagehelp.direct.gov.uk/real-life-stories/birmingham-home.aspx,3 16104,http://www.desktopdriving.co.uk,3 16105,http://www.garwaylodge.co.uk,3 16106,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/DecidingWhereToStudy/DG_4017763,3 16107,http://m.mg.mail.yahoo.com,3 16108,http://www.knightstone.co.uk,3 16109,http://www.princesschool.co.uk,3 16110,http://www.gardeningchannel.com,3 16111,http://mortgagehelp.direct.gov.uk/real-life-stories/beccles-couple.aspx,3 16112,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/DecidingWhereToStudy/DG_4016991,3 16113,http://us.mc1216.mail.yahoo.com,3 16114,http://www.communitywindpower.co.uk,3 16115,http://www.warwickshireprobation.org.uk,3 16116,http://www.washingtonpost.com,3 16117,http://hiwire,3 16118,http://dyslexiaaction.org.uk,3 16119,http://dyslexia-help.org,3 16120,http://hitchinbridgeclub.easysearch.org.uk,3 16121,http://www.mikeshort.co.uk,3 16122,http://www.gra.co.uk,3 16123,http://kids.baps.org,3 16124,http://npcl.org.uk,3 16125,http://www.ucnotes.co.uk,3 16126,http://kht.verseone.com,3 16127,http://khcc.easysearch.org.uk,3 16128,http://sharp.direct.gov.uk/news/new-motorcycle-helmet-ratings-published-website-unveiled,3 16129,http://artsjobs.org.uk,3 16130,http://dwptrial-web.sharepoint.com,3 16131,http://www.communitysportsfoundation.org.uk,3 16132,http://www.principlefirst.co.uk,3 16133,http://tnij.org,3 16134,http://www.hereward.ac.uk,3 16135,http://www.dermotfayedrivingschool.co.uk,3 16136,http://www.gairgas.com,3 16137,http://www.heronsmoor.n-somerset.sch.uk,3 16138,http://www.priorityimmigration.co.uk,3 16139,http://www.gad.gov.uk,3 16140,http://www.boleyparkpreschool.com,3 16141,http://www.miko_cymro.btinternet.co.uk,3 16142,http://tnij.com,3 16143,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011702,3 16144,http://www.g4swelfaretowork.com,3 16145,http://www.waterlooha.org.uk,3 16146,http://keytechs.co.uk,3 16147,http://www.ltodrive.com,3 16148,http://hijos.about.com,3 16149,http://www.savasocket.com,3 16150,http://www.runshaw.ac.uk,3 16151,http://webboomtrial.co.uk,3 16152,http://ketonline.lt,3 16153,http://www.oneplusone.org.uk,3 16154,http://www.grampianopportunities.org.uk,3 16155,http://highlandlife.net,3 16156,http://www.insightdrivertraining.co.uk,3 16157,http://dundeebb.easysearch.org.uk,3 16158,http://www.derehamcab.org.uk,3 16159,http://www.prisonreformtrust.org.uk,3 16160,http://positiveinpact.easysearch.org.uk,3 16161,http://kerrieondriving.theorytestpro.co.uk,3 16162,http://www.derechos.org,3 16163,http://highfields-arc.co.uk,3 16164,http://www.onesmallstep.org.uk,3 16165,http://dudleydrivingschools.com,3 16166,http://sharepointserve,3 16167,http://tlcdrivertraining.co.uk,3 16168,http://www.knowledgedrivingschool.co.uk,3 16169,http://www.direct.gov.uk/en/TravelAndTransport/Roadsafetyadvice/DG_195019,3 16170,http://www.funtosave.org,3 16171,http://portillion.live.connexion.co.uk,3 16172,http://www.allclassdrivingschool.co.uk,3 16173,http://sharepointhq01,3 16174,http://www.grangedrivingschool.info,3 16175,http://www.waynesdrivingtuition.co.uk,3 16176,http://webauth.southglos.gov.uk,3 16177,http://www.direct.gov.uk/en/DisabledPeople/TravelHolidaysAndBreaks/GettingThere/DG_4017242,3 16178,http://www.wbinfantschool.ik.org,3 16179,http://www.caringforourworld.co.uk,3 16180,http://www.gransnet.com,3 16181,http://www.funeralcomparison.co.uk,3 16182,http://www.wcheshirepct.nhs.uk,3 16183,http://www.allanbanks.co.uk,3 16184,http://portalconstructor.co.uk,3 16185,http://www.tiddly-winks-nursery.co.uk,3 16186,http://www.carillionenergy.co.uk,3 16187,http://www.drive2pass.co.uk,3 16188,http://www.stuartwoodley.co.uk,3 16189,http://www.knowsleyspace.co.uk,3 16190,http://portal.varela.edu.uy,3 16191,http://www.tier4matters.co.uk,3 16192,http://www.rlsmart.net,3 16193,http://www.wdh.co.uk,3 16194,http://www.grantowngrammar.highland.sch.uk,3 16195,http://www.we-are-streetsahead.co.uk,3 16196,http://www.fujiproperty.co.uk,3 16197,http://us.mc1201.mail.yahoo.com,3 16198,http://www.direct.gov.uk/en/Dl1/Directories/DG_10016523,3 16199,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011454,3 16200,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ApplyingForAHigherEducationCourse/DG_10013229,3 16201,http://www.personalcareermanagement.com,3 16202,http://sharepoint.jpmchase.net,3 16203,http://www.all4landlords.com,3 16204,http://www.graveshamschoolofmotoring.co.uk,3 16205,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017483,3 16206,http://adi182887.theorytestpro.co.uk,3 16207,http://aa.mg4.mail.yahoo.com,3 16208,http://www.graysdrivingschool.co.uk,3 16209,http://timtinpgkc.easysearch.org.uk,3 16210,http://wykeregisjun.co.uk,3 16211,http://timsheeran.theorytestpro.co.uk,3 16212,http://www.great-learning.co.uk,3 16213,http://www.endoflifecumbriaandlancashire.org.uk,3 16214,http://dsstenantswelcome.com,3 16215,http://www.passngo.co.uk,3 16216,http://dsmmotorcycletraining.com,3 16217,http://us.mc1143.mail.yahoo.com,3 16218,http://hesskincaidleach.co.uk,3 16219,http://www.frpdc.org.uk,3 16220,http://adi214028.theorytestpro.co.uk,3 16221,http://www.alisonmcgovern.org.uk,3 16222,http://79.170.44.148,3 16223,http://www.hpth.org.uk,3 16224,http://www.nurserynurseforum.com,3 16225,http://www.from-english-to-spanish.com,3 16226,http://www.direct.gov.uk/en/TravelAndTransport/PublicTransport/TaxisAndPrivateHireVehicles/DG_10036418,3 16227,http://www.studentenpilot.de,3 16228,http://www.ncpta.org.uk,3 16229,http://www.carersoxfordshire.org.uk,3 16230,http://www.direct.gov.uk/en/DisabledPeople/RightsAndObligations/Police/index.htm,3 16231,http://www.derby-driving-school.co.uk,3 16232,http://myemail.constantcontact.com,3 16233,http://www.sakuraforwarding.com,3 16234,http://www.studentfinance.direct.gov.uk/calculator/studentfinancecalculator/1011/aboutyou.xhtml,3 16235,http://www.friendskorner.com,3 16236,http://tilmb17.indiatimes.com,3 16237,http://www.greathorwood.bucks.sch.uk,3 16238,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/Optionsafterschool/DG_073382,3 16239,http://www.erewashsound.com,3 16240,http://www.frg.org.uk,3 16241,http://keithgambles.theorytestpro.co.uk,3 16242,http://shakespearedrivingschool.theorytestpro.co.uk,3 16243,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/index.htm,3 16244,http://www.cycletta.co.uk,3 16245,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_188114,3 16246,http://drugdrive.direct.gov.uk/home.shtml,3 16247,http://poor-skills.livejournal.com,3 16248,http://www.churchtownsom.co.uk,3 16249,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/TaxisAndPrivateHireVehicles/DG_10036418,3 16250,http://pontefractdrivingschool.learning2drive.net,3 16251,http://www.frenchpropertylinks.com,3 16252,http://www.carerscentre.com,3 16253,http://www.alextragroup.co.uk,3 16254,http://www.direct.gov.uk/en/TravelAndTransport/PublicTransport/TaxisAndPrivateHireVehicles/DG_10036287,3 16255,http://www.green-car-guide.com,3 16256,http://www.skmemployeebenefits.co.uk,3 16257,http://metalib.library.nottingham.ac.uk,3 16258,http://www.green-me.co.uk,3 16259,http://www.freeway-som.co.uk,3 16260,http://www.countywide-guildford.co.uk,3 16261,http://www.alexandrapark.haringey.sch.uk,3 16262,http://www.studentfinance.direct.gov.uk/calculator/studentfinancecalculator/1011/other_funding.xhtml,3 16263,http://youth.powys.gov.uk,3 16264,http://www.freerenewablesolarpower.com,3 16265,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU*y51HV9DcMoa0ktbmKTPv6ALy3B6aJebTfwwTlyPOczaLp!SOg!IdmXncRZtceE1O9Sqw812F3dS3NrB2NBjOzaWH7DjZD6qPTJ7rrNlvtSakcY!KBE03N9sYRG3j*tCUZ12qswUoyGKzcXW7CalHailZ*Y*oU41NWkDpQCKIWnjLAcsHwKywDLpjAGGJvCdoDtHhiF4flu9OA9GNH1Mg2lqw7BgGe!osBPnyzwPPsorVCIYS446k!u*PTPgpu1hMESXmOpnNSBcIKGT9mfSN*i2IH*WNKK0azIUYkyaFeKo4au6M8WM3!jP6MIVtmOPQXbv0thvEUqimixFNoiFSW!VAqVW6SiBi6W!nG7LJGKvofFUvm8VOl!C91JCXvtG8l7cW6k*gZ!IX5g/results,3 16266,http://www.privaterentedsector.org.uk,3 16267,http://www.direct.gov.uk/en/DisabledPeople/RightsAndObligations/Police/,3 16268,http://helpdrivingschool.vpweb.co.uk,3 16269,http://drivingtheory4all.co.uk,3 16270,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_187798,3 16271,http://www.svuk.org.uk,3 16272,http://www.freemail.hu,3 16273,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011448,3 16274,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Resolvingproblemswithyourrelationship/index.htm,3 16275,http://www.greenbeings.com.au,3 16276,http://kcm.theorytestpro.co.uk,3 16277,http://aa.mg1.mail.yahoo.com,3 16278,http://www.greencarsite.co.uk,3 16279,http://www.dentistry.qmul.ac.uk,3 16280,http://drivingskool.theorytestpro.co.uk,3 16281,http://www.lusi.lancs.ac.uk,3 16282,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011447,3 16283,http://4u2drive.info,3 16284,http://www.uji.es,3 16285,http://www.studentfinance.direct.gov.uk/calculator/studentfinancecalculator/1112/budget_calculator.xhtml,3 16286,http://www.painsley.co.uk,3 16287,http://thyroid-disease.org.uk,3 16288,http://thwaitesdrive.co.uk,3 16289,http://drivingschoolbirmingham.co.uk,3 16290,http://www.carers-network.co.uk,3 16291,http://www.freecarvaluation.org.uk,3 16292,http://www.greenfieldscps.kent.sch.uk,3 16293,http://www.direct.gov.uk/en/TravelAndTransport/PublicTransport/RailTravel/index.htm,3 16294,http://www.direct.gov.uk/en/DisabledPeople/RightsAndObligations/GoingToCourt/index.htm,3 16295,http://www.free2learn.eu,3 16296,http://www.free-theory-test.addbucket.com,3 16297,http://www.ndh-ltd.co.uk,3 16298,http://www.road-train.net,3 16299,http://www.studenti.it,3 16300,http://www.skollink.se,3 16301,http://acorn-epcs.com,3 16302,http://www.studentloanrepayment.co.uk,3 16303,http://www.disabilitypartnership.org.uk,3 16304,http://www.ispesl.it,3 16305,http://www.hillheadsom.co.uk,3 16306,http://servkentthebloodrunners.easysearch.org.uk,3 16307,http://hefce.ac.uk,3 16308,http://www.elite-drivingschool.co.uk,3 16309,http://www.st-albans.suffolk.sch.uk,3 16310,http://www.studentmundial.com,3 16311,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_185331,3 16312,http://pma.org.uk,3 16313,http://plymouth.schooljotter.com,3 16314,http://drivinglessonsinromford.com,3 16315,http://services.defra.gov.uk,3 16316,http://www.uk-car-discount.co.uk,3 16317,http://drivinglessonsguildford.co.uk,3 16318,http://www.bmw-driver.net,3 16319,http://www.foundations.uk.com,3 16320,http://www.fostersdrivingschool.co.uk,3 16321,http://www.murielgreen.herts.sch.uk,3 16322,http://plpsh.ncsl.org.uk,3 16323,http://www.saxonsmotorhomes.co.uk,3 16324,http://mydeco.com,3 16325,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_184971,3 16326,http://www.albion.gportal.hu,3 16327,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/Trusts/Typesoftrustandtaximplications/index.htm,3 16328,http://www.miltonkeynes.nhs.uk,3 16329,http://www.bmmortgages.co.uk,3 16330,http://drivinginstructorstalbans.co.uk,3 16331,http://drivinginstructorsites.co.uk,3 16332,http://www.studenttips.co.uk,3 16333,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/Trusts/TrustsandInheritanceTax/index.htm,3 16334,http://www.st-andrews.aberdeenshire.sch.uk,3 16335,http://www.forum.soham.org.uk,3 16336,http://www.forum.sandsforum.org,3 16337,http://www.jap4x4ownersclub.co.uk,3 16338,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_184760,3 16339,http://www.seetru.com,3 16340,http://www.sefap.it,3 16341,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_187336,3 16342,http://sergio-rodriguez-estrella.suite101.net,3 16343,http://drivingfactorlessons.co.uk,3 16344,http://sept.nhslearn.com,3 16345,http://www.egov.kz,3 16346,http://kb.ifslearning.ac.uk,3 16347,http://www.nw-pa.org,3 16348,http://thisisabuse.direct.gov.uk/videos/view/4/takeaway,3 16349,http://www.forthvalley.ac.uk,3 16350,http://www.forteuk.co.uk,3 16351,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/SpecificNeedsContacts/DG_10014897,3 16352,http://www.driving-mentor.co.uk,3 16353,http://www.roadrideruk.com,3 16354,http://www.greensuffolk.org,3 16355,http://www.skydriving.co.uk,3 16356,http://www.demonschoolofmotoring.co.uk,3 16357,http://drivingacademy.theorytestpro.co.uk,3 16358,http://www.japan-guide.com,3 16359,http://www.formin.fi,3 16360,http://www.formazioneturismo.com,3 16361,http://www.skyline-forum.de,3 16362,http://www.dardni.gov.uk,3 16363,http://www.prodrive.me,3 16364,http://thisisabuse.direct.gov.uk/have-your-say,3 16365,http://affinitysutton.com,3 16366,http://www.studyexperiences.co.uk,3 16367,http://www.iam-bristol.org.uk,3 16368,http://www.iam.org.uk,3 16369,http://www.ne1driving.com,3 16370,http://pl.search.yahoo.com,3 16371,http://morpeth.piramal.com,3 16372,http://www.studyrama.com,3 16373,http://www.alan-russell.co.uk,3 16374,http://www.independentdriver.co.uk,3 16375,http://m.askthe.police.uk,3 16376,http://www.community-tu.org,3 16377,http://m.aol.com,3 16378,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011445,3 16379,http://karlred.theorytestpro.co.uk,3 16380,http://www.forbes.pl,3 16381,http://www.dementiawebwarwickshire.org.uk,3 16382,http://www.direct.gov.uk/en/TravelAndTransport/highwaycode/DG_070236,3 16383,http://www.dldrivertraining.co.uk,3 16384,http://www.akdenizsom.co.uk,3 16385,http://hd.newsquest.co.uk,3 16386,http://www.direct.gov.uk/en/DisabledPeople/RightsAndObligations/DisabilityRights/,3 16387,http://pipl.com,3 16388,http://drivetimesw.co.uk,3 16389,http://www.openskill.pe.kr,3 16390,http://www.dementiawebgloucestershire.org.uk,3 16391,http://www.nwcpp.bangor.ac.uk,3 16392,http://www.careersserviceni.com,3 16393,http://www.slatersdrivingschool.co.uk,3 16394,http://drivetime.theorytestpro.co.uk,3 16395,http://www.ajarnforum.net,3 16396,http://selfservice,3 16397,http://www.roadsafety.cardiff.gov.uk,3 16398,http://www.greenwisebusiness.co.uk,3 16399,http://www.careerslondon.org,3 16400,http://photobox-en.custhelp.com,3 16401,http://www.slaveboys.co.uk,3 16402,http://www.ais1.bdotg.co.uk,3 16403,http://www.focusdrivingschool.com,3 16404,http://www.dementiacentre.com,3 16405,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011443,3 16406,http://www.webmail.co.za,3 16407,http://www.focus-drivingschool.co.uk,3 16408,http://www.passritedriving.co.uk,3 16409,http://think.direct.gov.uk/motorcycle-partners.html,3 16410,http://www.slc-learningcentres.org.uk,3 16411,http://212.121.200.199,3 16412,http://www.seftoncab.org.uk,3 16413,http://philparslow.theorytestpro.co.uk,3 16414,http://www.greypride.org.uk,3 16415,http://www.uk-roadsafety.co.uk,3 16416,http://www.learn2bsafe.co.uk,3 16417,http://www.blueribboncare.org.uk,3 16418,http://www.fmedical.co.uk,3 16419,http://kanadairmes.webs.com,3 16420,http://www.groupon.co.uk,3 16421,http://haveyoursay.communities.gov.uk,3 16422,http://www.stylist.co.uk,3 16423,http://www.minden-regional.info,3 16424,http://www.deldrivertraining.co.uk,3 16425,http://www.disabilityholidaysguide.com,3 16426,http://www.flyingstartengland.nhs.uk,3 16427,http://www.ainsdalegas.co.uk,3 16428,http://www.pajauta.lv,3 16429,http://drivemecrazy.theorytestpro.co.uk,3 16430,http://www.st-bonaventures.bristol.sch.uk,3 16431,http://www.aimtopass.co.uk,3 16432,http://www.aimsondriving.co.uk,3 16433,http://pgsmail.pgs.org.uk,3 16434,http://www.tiger.co.uk,3 16435,http://www.flushablepoobags.co.uk,3 16436,http://admin.csu.ac.uk,3 16437,http://www.offsetconsumer.org,3 16438,http://secureapass.co.uk,3 16439,http://drive.in-derby.com,3 16440,http://www.florenceroadsurgery.nhs.uk,3 16441,http://www.techradar.com,3 16442,http://hasag.co.uk,3 16443,http://www.floodark.co.uk,3 16444,http://petituk.exblog.jp,3 16445,http://www.huahinforum.com,3 16446,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Legalseparation/index.htm,3 16447,http://www.dwrcymru.com,3 16448,http://www.thelearnercenter.co.uk,3 16449,http://www.st-catherines.cumbria.sch.uk,3 16450,http://hartlepool.fsd.org.uk,3 16451,http://www.lymediseaseaction.org.uk,3 16452,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/workoutincomeandworkinghours/DG_172877,3 16453,http://www.dwp.gsi.gov.uk,3 16454,http://www.hillingdoncab.org.uk,3 16455,http://lukevincent.co.uk,3 16456,http://www.enigma-som.co.uk,3 16457,http://www.subscriptionline.co.uk,3 16458,http://www.gsfwsolicitors.co.uk,3 16459,http://www.bluedrivingschool.com,3 16460,http://www.mindyourhead.org.uk,3 16461,http://www.motor1.co.uk,3 16462,http://2drive.me.uk,3 16463,http://searchwithkiss.swagbucks.com,3 16464,http://www.passroute.co.uk,3 16465,http://www.endfuelpoverty.org.uk,3 16466,http://your.nationwide.co.uk,3 16467,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10015999,3 16468,http://www.succeedwithsusan.co.uk,3 16469,http://dpardk04.aib.pri,3 16470,http://www.lancashirecardiaccentre.nhs.uk,3 16471,http://www.sbhg.co.uk,3 16472,http://downloads.moneyfacts.co.uk,3 16473,http://www.thebpc.org.uk,3 16474,http://theukrc.org,3 16475,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Gettingadivorce/DG_193733,3 16476,http://www.st-james-elstead.surrey.sch.uk,3 16477,http://www.swgfl.org.uk,3 16478,http://hap1.ucweb.com.cn:8040,3 16479,http://www.daisysdrivingschool.co.uk,3 16480,http://www.mingleville.com,3 16481,http://www.st-john-ce71.lancsngfl.ac.uk,3 16482,http://pensiynau.gov.uk,3 16483,http://adi43410.theorytestpro.co.uk,3 16484,http://www.eef.org.uk,3 16485,http://www.fitness.tv,3 16486,http://pensionselfservice.sys,3 16487,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwjAQ*JpcKiE5Ns7jGEr5jcgNLqQEm3qDaP!!a1tgmSZVyKm92GvPsJOZRQlo0ydsndDsA7fLXvQJXbVvuHzps8HtXb!ClAdpAA!i6*RFqkZakr2AM5yk2sot1gnlbIONlJFw7nrAfinBM6BELaBBXqt2eGsvO!FKqSyhF33b1EaoAxJq!XnCDtBq5R6M0!JuOQo4YMFXtLSaldv4!ola1NZ0FSiFpxSOcoflHsuHsMxj2RDGPcaHsKXHlleM!eX2bDYi9ACNNnIRSlttggHHfCaBv7ixvOfRn7KKhBjGgmOuc!W2fxbcqKXUW0ofsVQO6vhwgoZL2XVkL3Hsnn89soqzrMhJSTI*rkUaDfSB!cwx8zfmcxfBQ7ZjT8H271JpOkcqimiyFJkjFSU!VYqUc6SiAU6W!vF2mSIV*R8mS!XjUqX9LOhd2!BrH6Qwzb6W6hvSoo72/results,3 16488,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/GetLearning/DG_072072,3 16489,http://www.successwithsara.co.uk,3 16490,http://hantsweb-staging.hants.gov.uk,3 16491,http://www.prometeusz.co.uk,3 16492,http://www.peterboroughtoday.co.uk,3 16493,http://www.suecox.co.uk,3 16494,http://thesunash.co.uk,3 16495,http://www.sueryder.org,3 16496,http://www.salisbury.edu,3 16497,http://www.fishersdrivingschool.co.uk,3 16498,http://www.deedrive.co.uk,3 16499,http://www.thelittledrivingschool.co.uk,3 16500,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012055,3 16501,http://www.fiscooggi.it,3 16502,http://www.bluearrowcatering.co.uk,3 16503,http://www.needasolicitor.com,3 16504,http://www.blue-room.org.uk,3 16505,http://donniesdriving.co.uk,3 16506,http://www.mustardleasing.co.uk,3 16507,http://www.limbcare.org,3 16508,http://hampshiredrivertraining.com,3 16509,http://adi174247.theorytestpro.co.uk,3 16510,http://www.gumtree.com,3 16511,http://www.slingsbys-driving.co.uk,3 16512,http://www.ageukfolkestone.org.uk,3 16513,http://thesmallplaces.blogspot.com,3 16514,http://www.dogpages.org.uk,3 16515,http://halsteaddaycentre.easysearch.org.uk,3 16516,http://www.blogger.com,3 16517,http://haloreachforum.eu,3 16518,http://pendle-intranet,3 16519,http://pen,3 16520,http://www.gurkhaschoolofmotoring.co.uk,3 16521,http://www.kucco.co.uk,3 16522,http://www.debutdrive.com,3 16523,http://www.suffolkonboard.com,3 16524,http://www.kuku123.com,3 16525,http://dom-uk.org,3 16526,http://www.st-marys-rc46.lancsngfl.ac.uk,3 16527,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@employ/documents/digitalasset/dg_179564.rtf,3 16528,http://www.direct.gov.uk/en/Pensionsandretirementplanning/TaxandNationalInsuranceinretirement/GettingyourtaxandNationalInsuranceright/DG_10024687,3 16529,http://peachcare.co.uk,3 16530,http://www.st-maryscofe.suffolk.sch.uk,3 16531,http://www.fireworkheaven.co.uk,3 16532,http://hallowscoutsguides.easysearch.org.uk,3 16533,http://www.countec.org,3 16534,http://moodle2.portsmouth-college.ac.uk,3 16535,http://www.direct.gov.uk/en/Dl1/Directories/DG_176136,3 16536,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwjAQ*BoulZAcG!dxTEr5gt4jyxiIAIfGQernd71bsEyTKuTUXrxrz2YnM46yru36hVgveOp6hemKweYDkp1ZcMk3Bwip7Yy7nnoHx4nHHTxWK6eN3TZ2D6f!8KQwNZa69Y2uO2WPUFCbzwt0cE1rkUzy*GE5K3eERFa8gCBKDHL9wj3qc16FkpxKcix5wDLCsiEsJSwdwiRhcghbEba6YYKW!7uJDWpwuu3MMqRoXxCAla8s1C*vVaR59FFRsmDDmHECO5cY*plxo5ISkpQ8I6kY5CFzAge6jB3FW2w71d!2opQizTNWsJSua5lEF*rE*cwR8zfu58GCp2THmoLs36mSZA5VZNFkKjaHKnJ8KhUr5lBFFziZ6sffZQpV9D1equality%20act,3 16537,http://www.direct.gov.uk/en/Dl1/Directories/DG_10015218,3 16538,http://search25.info.com,3 16539,http://search23.info.com,3 16540,http://web.ebuddy.com,3 16541,http://www.christinesds.co.uk,3 16542,http://www.slmnissan.co.uk,3 16543,http://www.fire.org.uk,3 16544,http://www.kusu.net,3 16545,http://www.drive-inschoolofmotoring.co.uk,3 16546,http://www.kuw-s.com,3 16547,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011434,3 16548,http://theroyalettes.easysearch.org.uk,3 16549,http://www.age-concern-cardiff.org.uk,3 16550,http://mycci,3 16551,http://www.nyulawglobal.org,3 16552,http://wm59.inbox.com,3 16553,http://uqu.edu.sa,3 16554,http://www.sln.org.uk,3 16555,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/Yourvehicleandlicence/,3 16556,http://www.st-pauls.wilts.sch.uk,3 16557,http://www.drivingschoolsloughborough.com,3 16558,http://payereference.co.uk,3 16559,http://www.bliss.org.uk,3 16560,http://www.uka.org.uk,3 16561,http://www.direct.gov.uk/en/Dl1/Directories/DG_175965,3 16562,http://lsaswindon.co.uk,3 16563,http://www.minoritycert.com,3 16564,http://www.robertsdrivingschool.co.uk,3 16565,http://www.afpgltd.com,3 16566,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/AirtravelintheUK/DG_10036988,3 16567,http://dmtpublish.dwp.gov.uk,3 16568,http://dmtpublish,3 16569,http://www.afp-ifa.co.uk,3 16570,http://www.weelzdrivingschool.com,3 16571,http://www.haadi.org.uk,3 16572,http://www.learn2drivecentre.com,3 16573,http://dmbtcl.easysearch.org.uk,3 16574,http://search.youblogged.com,3 16575,http://jsaintranet,3 16576,http://www.councillor.info,3 16577,http://upandoverdyslexia.com,3 16578,http://gyaaninnovations.com,3 16579,http://www.m.bedford-driving-school.co.uk,3 16580,http://www.blemainfinance.co.uk,3 16581,http://www.st-richards.lancsngfl.ac.uk,3 16582,http://www.st-thomasmore.medway.sch.uk,3 16583,http://upacker.co.uk,3 16584,http://www.finallap.co.uk,3 16585,http://www.welcometobirmingham.org.uk,3 16586,http://15thsuttonb.easysearch.org.uk,3 16587,http://www.robertsutton.staffs.sch.uk,3 16588,http://www.welcometostokeontrent.co.uk,3 16589,http://www.scaffoldersforum.com,3 16590,http://uos-web00114-si.soton.ac.uk:1776,3 16591,http://lrn2drive.co.uk,3 16592,http://www.neowin.net,3 16593,http://4thcamberleyscouts.easysearch.org.uk,3 16594,http://www.council.soham.org.uk,3 16595,http://www.cresswell1.plus.com,3 16596,http://theorytest.theorytestpro.co.uk,3 16597,http://www.debrafields.com,3 16598,http://passwithmike.com,3 16599,http://www.fifefire.gov.uk,3 16600,http://www.care-repair-leeds.org.uk,3 16601,http://passwithdrivingschool.theorytestpro.co.uk,3 16602,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/VictimsOfCrime/DG_196166,3 16603,http://passwithdebbie.co.uk,3 16604,http://passwithdan.theorytestpro.co.uk,3 16605,http://www.sloughgrammar.berks.sch.uk,3 16606,http://dispute.practicallaw.com,3 16607,http://www.deborahsschoolofmotoring.com,3 16608,http://passwithcarol.com,3 16609,http://www.iona-kase.co.uk,3 16610,http://www.aemigrar.com,3 16611,http://www.staffnet.ggc.scot.nhs.uk,3 16612,http://www.fieldingsdrivingschool.co.uk,3 16613,http://www.well-online.co.uk,3 16614,http://www.lincs2.co.uk,3 16615,http://guildfordfreedomdrivingschool.co.uk,3 16616,http://www.debbiehowton.co.uk,3 16617,http://www.fidn.co.uk,3 16618,http://discuss.bis.gov.uk,3 16619,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnBenefitsPensionsAndMaintenance/DG_172970,3 16620,http://members.dca.net,3 16621,http://guidingmanual.guk.org.uk,3 16622,http://unpub.justdrivesafely.yellsites.co.uk,3 16623,http://www.fi.muni.cz,3 16624,http://www.heartlandsdrivingschool.com,3 16625,http://lpassodrivingschool.co.uk,3 16626,http://www.robinsdrivingschool.co.uk,3 16627,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Endingacivilpartnership/DG_191953,3 16628,http://wm52.inbox.com,3 16629,http://www.dearne-coll.ac.uk,3 16630,http://www.driving-lessons-leeds.com,3 16631,http://www.deanwood.medway.sch.uk,3 16632,http://www.cardsmart.co.uk,3 16633,http://www.fertilityzone.co.uk,3 16634,http://www.staffordshireobservatory.org.uk,3 16635,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@educ/documents/digitalasset/dg_185932.pdf,3 16636,http://passclassdrivingschool.co.uk,3 16637,http://www.staffsmediation.co.uk,3 16638,http://www.onestopwiltshire.co.uk,3 16639,http://www.maa.intranet.bae.co.uk,3 16640,http://www.peterlee-driving.co.uk,3 16641,http://www.staffssaferroads.co.uk,3 16642,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/TaxOnBenefitsPensionsAndMaintenance/DG_10027047,3 16643,http://themecraft.net,3 16644,http://disability-cuts-map.demos.co.uk,3 16645,http://www.absoluteangelz.co.uk,3 16646,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/DG_4020069,3 16647,http://adi421607.theorytestpro.co.uk,3 16648,http://partners.lincolnshire.gov.uk,3 16649,http://www.scam-detectives.co.uk,3 16650,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/VictimsOfCrime/DG_181647,3 16651,http://www.deafvibe.co.uk,3 16652,http://www.felin.co.uk,3 16653,http://www.haloreachforum.eu,3 16654,http://members.ayme.org.uk,3 16655,http://www.mondeoklubpolska.pl,3 16656,http://www.elitesupportedemployment.co.uk,3 16657,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_178645,3 16658,http://nww.nlg.nhs.uk,3 16659,http://www.adviceforyou.co.th,3 16660,http://adi110405.theorytestpro.co.uk,3 16661,http://www.tavistockandportman.ac.uk,3 16662,http://www.mjcommercials.com,3 16663,http://www.wellspringsnursinghome.co.uk,3 16664,http://www.dorkadore.com,3 16665,http://www.hamiltondriving.co.uk,3 16666,http://www.rodziceradza.pl,3 16667,http://www.tillyhire.co.uk,3 16668,http://www.stainsbyschoolofmotoring.co.uk,3 16669,http://search.sanook.com,3 16670,http://gsrscotland.easysearch.org.uk,3 16671,http://louise-drivingschool.theorytestpro.co.uk,3 16672,http://directgov-uk.blogspot.com,3 16673,http://search.rediff.com,3 16674,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_177966,3 16675,http://archive.treasury.gov.uk,3 16676,http://www.adventsupport.com,3 16677,http://wm34.inbox.com,3 16678,http://www.collisonmotoringservices.co.uk,3 16679,http://theksl.theorytestpro.co.uk,3 16680,http://www.deafblind.org.uk,3 16681,http://www.blackhorse.co.uk,3 16682,http://www.rogerdarlington.me.uk,3 16683,http://jonessom.theorytestpro.co.uk,3 16684,http://www.learn2pass-ds.com,3 16685,http://www.sunshinecentre.org,3 16686,http://www.fastlane-drivingschool.co.uk,3 16687,http://www.motorcycletraining-scarborough.co.uk,3 16688,http://www.slpcollege.co.uk,3 16689,http://www.welshlandlords.org.uk,3 16690,http://www.1stchoicequickpass.co.uk,3 16691,http://www.drive-arrow.co.uk,3 16692,http://www.onesuffolk.co.uk,3 16693,http://theinspirationroom.com,3 16694,http://www.fast-pass.org.uk,3 16695,http://www.adultedbexley.org,3 16696,http://nunsthorpecommunity.org,3 16697,http://diglib1.bham.ac.uk:8331,3 16698,http://www.hangye5.com,3 16699,http://www.hrbullets.co.uk,3 16700,http://www.oag.go.th,3 16701,http://www.stammering.org,3 16702,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/WhatToDoAfterADeath/DG_066800,3 16703,http://johnquicksilver.theorytestpro.co.uk,3 16704,http://thehub.vestas.net,3 16705,http://www.hannahsdrivingschool.co.uk,3 16706,http://www.linden-bridge.surrey.sch.uk,3 16707,http://www.blackcatdriving.com,3 16708,http://www.telecare.org.uk,3 16709,http://www.superbikeforums.co.uk,3 16710,http://www.salisbury.nhs.uk,3 16711,http://pa.manchester.gov.uk,3 16712,http://www.chris-styles-driving-school.co.uk,3 16713,http://search.musicforher.com,3 16714,http://www.wembleymarket.co.uk,3 16715,http://www.ddashop.com,3 16716,http://www.carbuyersinfo.co.uk,3 16717,http://didu.co.uk,3 16718,http://p15136218.pureserver.info,3 16719,http://search.maxonline.com.sg,3 16720,http://www.l1dnb.co.uk,3 16721,http://www.petroc.ac.uk,3 16722,http://www.stanstedairport.com,3 16723,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Over50HealthAndWellBeing/,3 16724,http://unity,3 16725,http://www.salisburywalkincentre.co.uk,3 16726,http://www.adrive4u.co.uk,3 16727,http://4exmilitary.com,3 16728,http://diasporadosenfermeiros.blogspot.com,3 16729,http://www.supernanny.co.uk,3 16730,http://www.familycare-nottingham.org.uk,3 16731,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/DG_4001077,3 16732,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011413,3 16733,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Problemsanddisputes/DG_191684,3 16734,http://www.harlequinsurgery.co.uk,3 16735,http://www.leicesterbbs.com,3 16736,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/start/DG_174185,3 16737,http://www.proskills.co.uk,3 16738,http://www.themgzr.co.uk,3 16739,http://www.prospect-us.co.uk,3 16740,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@educ/documents/digitalasset/dg_183326.pdf,3 16741,http://www.star.org.uk,3 16742,http://www.themgzs.co.uk,3 16743,http://dhlsubjects.wikidot.com,3 16744,http://www.dcsdmentalhealthcarers.org,3 16745,http://www.dcs.gla.ac.uk,3 16746,http://dhi.easysearch.org.uk,3 16747,http://www.cremationservices.co.uk,3 16748,http://www.mx5oc.co.uk,3 16749,http://www.douban.com,3 16750,http://green4go.theorytestpro.co.uk,3 16751,http://www.learner-driver-support-centre.co.uk,3 16752,http://www.fairmountnursery.co.uk,3 16753,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/Bluebadgescheme/DG_181209,3 16754,http://www.motorcycletraininguk.com,3 16755,http://greatstaystill.blogspot.com,3 16756,http://www.caravanning4u.co.uk,3 16757,http://www.fairfield.notts.sch.uk,3 16758,http://www.wendysdrivertraining.co.uk,3 16759,http://www.dcdrivertraining.co.uk,3 16760,http://dfe,3 16761,http://www.ukdrivingtheory.com,3 16762,http://www.factuk.org,3 16763,http://www.administrativeappeals.tribunals.gov.uk,3 16764,http://www.rose.nhs.uk,3 16765,http://www.rosebankhealth.nhs.uk,3 16766,http://thedugout.tv,3 16767,http://www.caravanmoversonline.co.uk,3 16768,http://www.timetodrive.biz,3 16769,http://ah.brookes.ac.uk,3 16770,http://www.aditraining.proboards.com,3 16771,http://moodle.trinitylaban.ac.uk,3 16772,http://www.caravanclub.co.uk,3 16773,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/DG_10013600,3 16774,http://www.adinjc.org.uk,3 16775,http://www.mlddrivingschool.co.uk,3 16776,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4QtP8BrJcN0VJTGvTqp*ftVeJZQoVcGov9tozeJhZZFxvhx0*7Fj!DtOnUGzHmpfeXmHHWO0!LoMDgBJYO!C20iltnjtzgl2*eZGh1MYTBjl0qrXSnIHQ6q83OMF1vQkKgpWj4SrdGQrRsAomXodJHB6YR33NmkgpkVIGyggrECumsByxfAoTiIkpbI*Y*oZxHO7vxo*Bg1O91VksfXWMBgLzkUR!dmeh59lHeU1iDHPB8XByHaZ*FtysJYqW6BpL1aQOhhM1QsrhRP6Uxo7825LXgudlQSqSY7symjR0RX!2mPkb*RlFsMp26ina*l2K0i1SSUSLpcgWqSTxpVKk2iKVNHCx1I*bZYlU8j0slirmpSr*W!hPnYJr32lp1WurzTcVP3xv/results,3 16777,http://www.dbcut.com,3 16778,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/ParentsContacts/DG_172890,3 16779,http://devon.childrensservicedirectory.org.uk,3 16780,http://agreenuk.com,3 16781,http://greasepaint-px.rtrk.co.uk,3 16782,http://origin.direct.gov.uk/en/index.htm,3 16783,http://thecoupleconnection.net,3 16784,http://www.adeyfieldschool.org,3 16785,http://origin.direct.gov.uk/en/AdvancedSearch/Searchresults/index.htm,3 16786,http://www.eyecancerforum.co.uk,3 16787,http://www.hrcompanion.co.uk,3 16788,http://www.safeconcerts.com,3 16789,http://grants.energysavingideas.org.uk,3 16790,http://www.adelaidedriving.com,3 16791,http://orh.oxnet.nhs.uk,3 16792,http://grange.outwood.com,3 16793,http://www.safedriversandriders.org.uk,3 16794,http://www.drstocktonandthompson.co.uk,3 16795,http://www.selfhelpguide.nhs.uk,3 16796,http://www.harrispurley.org.uk,3 16797,http://www.madmoizelle.com,3 16798,http://www.rossendale-driving-school.co.uk,3 16799,http://www.starthere.info,3 16800,http://graduatetalentpoolsearch.direct.gov.uk/casa/servlets/casa.jobseeker.JSVacServlet,3 16801,http://dev.switch-web.co.uk,3 16802,http://www.mmoym.org.uk,3 16803,http://media.pearsoncmg.com,3 16804,http://www.caradisiac.com,3 16805,http://www.startingtogether.co.uk,3 16806,http://www.doorstepcrime.net,3 16807,http://media.education.gov.uk,3 16808,http://moodle.stourbridge.ac.uk,3 16809,http://www.statepension.me.uk,3 16810,http://www.ukfrenchmuslimat.org,3 16811,http://moodle.stokecoll.ac.uk,3 16812,http://www.adamdrivingschool.co.uk,3 16813,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_173442,3 16814,http://www.surestarteastcc.org.uk,3 16815,http://search.gmx.co.uk,3 16816,http://www.ukho.gov.uk,3 16817,http://wave.brighton-hove.gov.uk,3 16818,http://www.oakworthschoolofmotoring.co.uk,3 16819,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/ThePolice/DG_196108,3 16820,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_172156,3 16821,http://dev.boomeranginternet.co.uk,3 16822,http://www.statusquo.co.uk,3 16823,http://search.free.fr,3 16824,http://www.infomed.ch,3 16825,http://www.exiled-again.co.uk,3 16826,http://www.davieslettings.co.uk,3 16827,http://www.hartlepoolnow.com,3 16828,http://www.davidsongifted.org,3 16829,http://destiny.mpls.k12.mn.us,3 16830,http://www.leicestershire.gov.uk,3 16831,http://desktoplawyer.co.uk,3 16832,http://www.hartpury.ac.uk,3 16833,http://www.my-work-experience.com,3 16834,http://www.bishopscastle.co.uk,3 16835,http://www.tisonline.net,3 16836,http://www.surewaydrivingschool.net,3 16837,http://www.surrey-fire.gov.uk,3 16838,http://wattsupsnr.blogspot.com,3 16839,http://dereks.theorytestpro.co.uk,3 16840,http://www.panix.com,3 16841,http://derbytbc.easysearch.org.uk,3 16842,http://www.surreydrivingforce.com,3 16843,http://meadowheadschoolofmotoring.co.uk,3 16844,http://www.pglthomas.com,3 16845,http://www.mr-mechanic.co.uk,3 16846,http://winterwolf.co.uk,3 16847,http://www.excel-drivingschool.com,3 16848,http://www.exceeddriving.com,3 16849,http://www.car-disposals.co.uk,3 16850,http://46.137.117.204,3 16851,http://www.csis.co.uk,3 16852,http://angielopes.wordpress.com,3 16853,http://www.ex-localauthority.com,3 16854,http://thebearpit.forumotion.co.uk,3 16855,http://unistats.direct.gov.uk/aboutUnistats.do,3 16856,http://www.pantherdrive.com,3 16857,http://www.tltcareers.co.uk,3 16858,http://warwickshire.sdesign1dev.co.uk,3 16859,http://www.monaltriedrivertraining.com,3 16860,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/Mistakesonyourclaim/DG_175630,3 16861,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011396,3 16862,http://www.providemedical.com,3 16863,http://www.davidicke.com,3 16864,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4kqb8BrJcN0VJTWtTqZ9fezeJZQoVcGov7JpZ7zCzyHa9HXb8uGO5GySkxOcfPipptbbOr4zV7vMyOP!SBtT5Pa10SpvnzpyuWy4SUm2w1dCp1kpz9gWt*nr3HVzXG2ASrBw93qQ7!0QcWOUDryGI4wMLaMjZIZaUWFJCyQgrECumsByxfAoTiIkpbI*Y*oZxfNy*jTegwane6iymIWuiAKh8JLE!u1eh5tmtvCbRhjnjOHSuIfwz42YlUZRE10iqJnnQnMgBLkNH*pTajvW3Ja8Fz8uCVCTHcWU0GeiK!WwR8zfmM7JglexUU5T9OxWlW6gSixZTkS1UieNLqUi1hSoZ4GKqH6fLEqrkf1hMVcxTVeFa6E!d8se!09Kq1xauB6tfOqOvd8EhsLOGfwPGQIWS/results,3 16865,http://www.hattersley.org.uk,3 16866,http://unipodadvice.com,3 16867,http://online.havering.gov.uk,3 16868,http://www.rotherhamhealth.nhs.uk,3 16869,http://demo.myile.com,3 16870,http://www.tnf.org.uk,3 16871,http://www.actiononaddiction.org.uk,3 16872,http://www.davidhanksschoolofmotoring.com,3 16873,http://www.abacuscarecheshire.co.uk,3 16874,http://www.uklefthanddrivecars.co.uk,3 16875,http://www.drivinglessonsaberystwyth.co.uk,3 16876,http://www.enfield-driving-instructor.co.uk,3 16877,http://www.everafterdaynursery.co.uk,3 16878,http://www.providentpersonalcredit.com,3 16879,http://search.centurylink.com,3 16880,http://www.steercool.co.uk,3 16881,http://www.earlyyearsfoundations.co.uk,3 16882,http://www.birminghamdrivingschool.co.uk,3 16883,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Sentencingandcriminalrecords/DG_187015,3 16884,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/YourHome/DG_4016448,3 16885,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_10038080,3 16886,http://onespace.nacro.org.uk,3 16887,http://www.netherexe.org,3 16888,http://www.susanmillersom.co.uk,3 16889,http://www.haveringra.org.uk,3 16890,http://www.eurotrip.com,3 16891,http://www.action-for-change.org,3 16892,http://www.sellmycarkent.co.uk,3 16893,http://www.westaccountants.com,3 16894,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@disabled/documents/digitalasset/dg_186198.pdf,3 16895,http://www.europeontime.co.uk,3 16896,http://www.toby-churchill.com,3 16897,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_072688,3 16898,http://www.birkett.co,3 16899,http://one2onedriving.theorytestpro.co.uk,3 16900,http://www.europamica.it,3 16901,http://www.davidbrownridertrainingschool.co.uk,3 16902,http://www.historicvws.abelgratis.com,3 16903,http://www.ectopic.org.uk,3 16904,http://www.infraredhomediagnosis.co.uk,3 16905,http://the-hub.cbc.ad.colchester.gov.uk,3 16906,http://www.eurogamer.net,3 16907,http://72.14.203.106,3 16908,http://www.ph-karlsruhe.de,3 16909,http://www.homeinsurance.org,3 16910,http://www.stepgrip.com,3 16911,http://www.hayes-staff.co.uk,3 16912,http://www.uklpf.co.uk,3 16913,http://www.1staire.com,3 16914,http://omrt.easysearch.org.uk,3 16915,http://loop.guildford.gov.uk,3 16916,http://looloo.mrbiggles.be,3 16917,http://www.birchfld.bham.sch.uk,3 16918,http://www.magnacareline.org.uk,3 16919,http://www.davesdrivingschool.org.uk,3 16920,http://www.ukmedix.com,3 16921,http://lookinglocal.gov.uk,3 16922,http://thamesvalley.police.uk,3 16923,http://www.mr2club.nl,3 16924,http://my.xmarks.com,3 16925,http://www.acrdrive.com,3 16926,http://lonwheels.theorytestpro.co.uk,3 16927,http://www.cosmopolitan.co.uk,3 16928,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/PlanningPermission/DG_4018102,3 16929,http://www.route66dundee.com,3 16930,http://longtonladybirds.co.uk,3 16931,http://de.mg.bt.mail.yahoo.com,3 16932,http://www.sussexstudent.com,3 16933,http://www.sust-it.net,3 16934,http://tf-cbtsvr1:8080,3 16935,http://www.acorninsure.co.uk,3 16936,http://old.ywca.org.uk,3 16937,http://www.occupybritain.co.uk,3 16938,http://de.mc870.mail.yahoo.com,3 16939,http://okwave.jp,3 16940,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@crime/documents/digitalasset/dg_072154.pdf,3 16941,http://search.aol.es,3 16942,http://www.eteach.com,3 16943,http://www.eta.co.uk,3 16944,http://jobseeker.direct.gov.uk./listvoluntary.aspx,3 16945,http://www.learnerdriveruk.co.uk,3 16946,http://www.hbs.herts.sch.uk,3 16947,http://www.csdrivingschool.com,3 16948,http://www.neti.ee,3 16949,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MoneyTaxAndBenefitsContacts/DG_10026994,3 16950,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MoneyTaxAndBenefitsContacts/DG_10026993,3 16951,http://www.mr2roc.org,3 16952,http://www.essexsom.co.uk,3 16953,http://www.rovertech.net,3 16954,http://www.cosmoedu.net,3 16955,http://testsites.webshopsupermarket.com,3 16956,http://www.achurchnearyou.com,3 16957,http://goidirectory.nic.in,3 16958,http://www.daveadamsondrivingschools.com,3 16959,http://www.dave-coggon-driving-school.co.uk,3 16960,http://office.floatdesign.net,3 16961,http://office,3 16962,http://www.earlyyearschildcare.org,3 16963,http://offbyheart.co.uk,3 16964,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011671,3 16965,http://search.anchorfree.net,3 16966,http://godrivesleaford.theorytestpro.co.uk,3 16967,http://gobiketraining.com,3 16968,http://www.westcountryha.org.uk,3 16969,http://ameblo.jp,3 16970,http://www.draytonparkschool.org,3 16971,http://www.selwoodhousing.com,3 16972,http://goans.wordpress.com,3 16973,http://www.ocos.sandwell.sch.uk,3 16974,http://www.themountsmedicalcentre.nhs.uk,3 16975,http://www.hehighefficiency.co.uk,3 16976,http://octm.careconfidential.com,3 16977,http://www.ukpass.co.uk,3 16978,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2011/DG_WP195614,3 16979,http://www.helvetic.com,3 16980,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@benefits/documents/digitalasset/dg_198865.pdf,3 16981,http://www.learnerlegal.com,3 16982,http://go.maxthon.com,3 16983,http://jobsearch.kent.gov.uk,3 16984,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EnvironmentandGreenerLivingcontacts/index.htm,3 16985,http://www.espc.com,3 16986,http://www.westcumbriacarers.co.uk,3 16987,http://se.search.yahoo.com,3 16988,http://umbrellog.com,3 16989,http://www.eso.ac.uk,3 16990,http://www.ruralrangers.co.uk,3 16991,http://oasischurch.easysearch.org.uk,3 16992,http://www.thenailschool.co.uk,3 16993,http://www.ingyenesangliaimunkalehetosegek.com,3 16994,http://oakleatrust.easysearch.org.uk,3 16995,http://www.accurate-guide.com,3 16996,http://nz.yhs4.search.yahoo.com,3 16997,http://z1ownersclub.co.uk,3 16998,http://www.westdevon.gov.uk,3 16999,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2011/DG_WP195599,3 17000,http://www.steve-pearce.co.uk,3 17001,http://www.accueillir-magazine.com,3 17002,http://go-driving.theorytestpro.co.uk,3 17003,http://www.westernpower.co.uk,3 17004,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Holidaysandtravel-yourconsumerrights/index.htm,3 17005,http://my.seminar.co.uk,3 17006,http://www.health4work.nhs.uk,3 17007,http://actfund.easysearch.org.uk,2 17008,http://elpost.cl,2 17009,http://elpassohartlepool.co.uk,2 17010,http://www.spow.co.uk,2 17011,http://www.precisiondrivertraining.co.uk,2 17012,http://elmhurstdance.easysearch.org.uk,2 17013,http://skills-elearning.org.uk,2 17014,http://ellisdriving.com,2 17015,http://www.bradfieldschool.net,2 17016,http://172.27.72.27,2 17017,http://skill4life.co.uk,2 17018,http://www.john-daniel.org.uk,2 17019,http://sjpdriving.co.uk,2 17020,http://www.walnutcare.co.uk,2 17021,http://sjo2.uek.krakow.pl,2 17022,http://www.highwaygarage.com,2 17023,http://elgb.easysearch.org.uk,2 17024,http://www.premierdrive.co.uk,2 17025,http://elephantkiosks.com,2 17026,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4a4ZJesxRZs088vcLJLsNqgT!0LHJiRceYYMaOeMnrMSPFuJ3PlWpwz0g7yUxi7qbQwH8NkLIaRXRtL77jphTpLdbG7bnPgvhTKESY!yb7TXN0soRNfb*YEI0flRRipZsMrNzdbsJbUdqKNn9jxiTjU1aQNlAoolafMsBKwcgkrACuWMAYYW8IOgB3uGIXh8W705D2YftQiD6WrTsGAZz6jwM8fLPC8!ihtUIhhLTjqT2789M!CW7WEwRLeYqle1IFwgoZP2Z9IX!LYgX9f0obRoipRjQpoV46jhm7ozx4zf6M*swg22Y49Bdu*S2G8RyqKKFkK7ZGKEk!VQvUeqaiByVI**i4pUtH3kCxVrkvV7loYL7J3l4rgur92Qn0DnL9!FQ__/results,2 17027,http://electricmike.site50.net,2 17028,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4a4xJrdxS2wSfv3PUBWgtVGfWpf4MgMjDPHiB6USegxIdkHTPqhREJqbTiskvomjFCyN19Qd4rLM9CkEvpxNRrYGMGzhgMarlshz73sYNUuXrkrhbQEw03fNrD9AoRGfN7hBN0P0skyUkyGG9cXKFhNSpho5SZ2fCEWtTW810gpPKVwlAmWeyyfwzKPZXMY8xibww4eOzwx6ofx3ejJedDtoEQaSludggHHfEWBn44s73lxK61QiGEpOOpOrtz0z4JbtIS9JbzFUjmr48MJGi5ldyJ9i2P3*OcjrRjNihyVKPPtSnHU0A392WPmb*RnEsEm27GnYPt3KYz3SEURrZZCe6SixNdKoXKPVNTA1VI**i5rpKLvYbVUvixV2mth6PrWXjOCq*a9EfIbLvOEhw__/results,2 17029,http://sites.gateway.bbc.co.uk,2 17030,http://elearning.taftu.edu,2 17031,http://sites.cafevik.fs.fujitsu.com,2 17032,http://elearning.cwdcouncil.org.uk,2 17033,http://elearning.braeburn.ac.ke,2 17034,http://www.walthamparishcouncil.org.uk,2 17035,http://www.springboardproject.com,2 17036,http://eleanor.lib.gla.ac.uk,2 17037,http://www.lowcarboncities.co.uk,2 17038,http://elancs.intranet,2 17039,http://www.walthamstowdeafclub.org.uk,2 17040,http://www.hoddereducation.co.uk,2 17041,http://www.bprcvs.co.uk,2 17042,http://www.waltononthameslocksmiths.com,2 17043,http://site260.theclubuk.com,2 17044,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_194373,2 17045,http://ejf.easysearch.org.uk,2 17046,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw86tr9DUMpsWYttuIm*fwCJ7sEqw361L7AgRkYZ45RPU5zQpuEZJ9merl1cu5Vl5B6GLkyu2qS!jbM2oAYmbU2*JZrIdWr5dHGbg7cldIe0DOfe9FOXF0NoZVfH!YG3Y*KqTBSLIZ3rq!mYDUpzUQrN7HmiVjU1qT2lAIohaMssBywfA3LAMvWMAYYW8NOgJ3uGIXh8Wz04jxoMU4y9aWtLt6AY56R56cPFnjePEor5GPYCo66mys3*bPgNi1hsIT3WCpXdSAcr!FSdjfS5zB24N!XtGI0K3JUogzaleKgoTv6c8TM3!jPIoJdtkNP3vbvUhgfkQoiipZCR6SCxGOlUHlEKmhgtNSPr0uMVPA!REvl21Kl*S2MXS*MZ19LPom3VqpvJX1!eg__/results,2 17047,http://www.holalondres.com,2 17048,http://www.lowther.richmond.sch.uk,2 17049,http://alegnadrivingschool.co.uk,2 17050,http://siobhainmcdonagh.org.uk,2 17051,http://eighteensixtythree.proboards.com,2 17052,http://sines.theorytestpro.co.uk,2 17053,http://sinclair.quarterman.org,2 17054,http://www.bpf.org.uk,2 17055,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw86m73NwyhdEt2iy24Tfv3PUB2CVYb9al9kQMzMM4cg7Y3Q0YPGSneYbhq9SGNUMNXRtpnKS2sayPt9TJYgDGCuYUdHbdC6ielT7DqFi*cl1I7wsAHJTrD9RkInfx8gxOs6rXXYaQaPV,2 17056,http://simpledebtfreefinance.com,2 17057,http://www.johnboothdrivertraining.co.uk,2 17058,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw86m73NwxxydasghU3bf!!B8guwWqjPrUvcHAGxpljUKthjOgpIsk7TKJr1Vcn5BiRkssLjPre94YC67ZVH1zWArhyEPrejhq2YARrDZSK61rISyOv8NQ8bLkthTSEkY9NXQ1c3oBQic8eTtCNklabkWwydFzfoGAlyWGihZ3Y6YUY1NSk9JTMUTJLmWCpw9I5LHFYMocxh7E57OCwwwOjbni!Gz1bD7pWg4h9aaqzN2CZR!T58ZPlPC9upQXyMSwFR!3JhZ3!WXCLlrCzhLdYymd1XDhew6ZsT6SvYeyO*1jSgtEkS1GOEteuGAcN3dCfPWb!Rn8mEWyyHXrytn!XwniPVBDRaim0RypIfK0UyvdIBQ1cLfXjdlkjFXwPq6XSZanc*BbUtanh2teCD*VbJeQ3TYmGjQ__/results,2 17059,http://efficient-products.defra.gov.uk,2 17060,http://www.driving247.co.uk,2 17061,http://www.wandle.com,2 17062,http://simons.theorytestpro.co.uk,2 17063,http://www.springfieldmedicalcentre.co.uk,2 17064,http://simhq.com,2 17065,http://www.boxofideas.org,2 17066,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmmzCZfHyqLX7G4ZasjVrsQU37ef3cMguwWqjPrUvcHAGxplj0A5mTHidsPQDpudr1790!pyw6lMaI*UIgDbKXvvRAk4JrC1saaRtlUYqr93DXmKptCOMcuzaBrZfgNCor3c4wXaDRiHB8snwJu0FClGxAiZe4iTqB!ZQV7MqUHJPyZEywTKPZXNY6rF0DhMeE3PY0WPHG8b9cH83fkIPth2MOoTSVadgAJmPJPAPd5b3vLiVlyTEsBQcx5NLnP5ZcIuWqLdEt1gqZnV8OEEDU8YT!VMcu!fflrwUPM0zUpDUt!tAo4Zu6M8eM3!jP5MINtmOPQXbv0tRukcqimi1FNkjFSW!VooUe6SiBq6W!nG7rJGKvofVUtmyVOF!C8O5a!Hat0qa9rVR!huBlH*I/results,2 17067,http://education.guardian.co.uk,2 17068,http://www.wansford.co.uk,2 17069,http://www.lpass.co.uk,2 17070,http://signz2010.theorytestpro.co.uk,2 17071,http://www.bowlschildprotect.co.uk,2 17072,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_193609,2 17073,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthandadoptionrecords/Adoptionrecords/DG_175588,2 17074,http://www.bovingdonmarket.co.uk,2 17075,http://sidecarland.co.uk,2 17076,http://edition.pagesuite-professional.co.uk,2 17077,http://sid,2 17078,http://www.prestige-nursing.co.uk,2 17079,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthandadoptionrecords/Adoptionrecords/DG_175554,2 17080,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/UsingtheCourtofProtection/index.htm,2 17081,http://www.spritesprimary.org.uk,2 17082,http://shropsbikesafety.com,2 17083,http://ectnt09.ct.edinbr.gecm.com,2 17084,http://www.prestoncofeprimary.co.uk,2 17085,http://shqw2k3intra.guardian.gov.uk,2 17086,http://www.bourneaccountancy.com,2 17087,http://shpdev02,2 17088,http://www.edenthorpehall.doncaster.sch.uk,2 17089,http://ziggytvsearch.com,2 17090,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/UsingtheCourtofProtection/DG_176385,2 17091,http://www.boughtonhealthcentre.co.uk,2 17092,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_193300,2 17093,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_193299,2 17094,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFuhCAQ*BpfmpggHKiP3tn7DUMpUVMLrXhJP78L5I5gtVGf2hd2dcadm9mLGj1OCakTzD6hiI6rtldtgs9TJ!F84eoNChf6piYDnVZDrwBhapTmNsA9UmcIrg0MargRUr3aAaS2NwfuWqksYeJTL5oRJgKhkV8fMMH0Wjl5iovZ8c4NSFN6xiUUUrlC6ydsUdvjc6AUnlI4ygzLPZYvYcxjbAmjHqNL2MljpztG*PH4beTqPBihR5mG1nbXYMAxLyjw0wfLe159lFQoxLAWHHGTK1f!WXCrljJvKdtjqVzU8eEEDZeym0ie49g9*35JKkpYkaMSMb!uNIsWumM*R8z8jf3MIthlO*YUbP8ulWVHpKKINkuhI1JR4lulUHlEKlrgZqkfb5ctUtH*YbNUvi5V2s!CbnsBr30j!Si6Rqpvl8SG5A__/results,2 17095,http://shoeburynesshigh.co.uk,2 17096,http://www.warkscol.ac.uk,2 17097,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LLEBKaiPuq6*YQglltRhC3Zufz!EtgSni*q0vcA153AP51yjulHtBu03MdEttSUw9dXsXddtGeXqchJ1*bU9CsVZWzUfm7i4ne8LkYrrW91qw4f9QW3alVQzLo9CVvduNbUll06lFaxUVJ4NoeSfF9NBi0baS!A4HSzvVBsdjIs4MxvK7Yb3L3GP9nVceErqKKmlDLDEYckYRhxGxjDsMDyG7Ry2e2DILc!7oYP1oFmjeOTLvjp4A5b5Cjw*erKc58mjKAc!hqngkO2c2!2fBTdpCTpLcImlbFTHheM1bMq2I3oLY3f8xyPKMSJpAjJA3LgiGAx0wXzWmPkb8xlEsMh26Mnb*l0KwjVSQUSzpcAaqSDxuVIgWyMVDHC21I!vyxyp4H2YLZVMS2X9b6GpBDOffc2pYqeSy2*G5YkQ/results,2 17098,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Mentalcapacityandplanningahead/DG_194850,2 17099,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Mentalcapacityandplanningahead/DG_194842,2 17100,http://ecitizen.maidstone.gov.uk,2 17101,http://www.johncaveproperties.co.uk,2 17102,http://www.spslearn.co.uk,2 17103,http://shirekilo.co.uk,2 17104,http://ec2-46-137-20-142.eu-west-1.compute.amazonaws.com,2 17105,http://ec.server1.bdcdigital.co.uk,2 17106,http://www.warmhomesinsulation.com,2 17107,http://adi98923.theorytestpro.co.uk,2 17108,http://ebbsfleetufc.easysearch.org.uk,2 17109,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_192792,2 17110,http://www.lplusdrivingschool.co.uk,2 17111,http://shift.ms,2 17112,http://www.lrb.co.uk,2 17113,http://sherweb2,2 17114,http://www.primaryresources.co.uk,2 17115,http://easyread.connexionswest.org.uk,2 17116,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingdecisionsforsomeoneelse/DG_195294,2 17117,http://acorns.mawdesley-village.org.uk,2 17118,http://easyl.theorytestpro.co.uk,2 17119,http://www.hellotommy.co.uk,2 17120,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingdecisionsforsomeoneelse/DG_195271,2 17121,http://eastplanning.wiltshire.gov.uk,2 17122,http://www.lrn2drv.org,2 17123,http://albiontedraga.blogspot.com,2 17124,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingdecisionsforsomeoneelse/DG_186377,2 17125,http://www.lrsuk.com,2 17126,http://eastbournemencap.easysearch.org.uk,2 17127,http://www.bookweb.co.uk,2 17128,http://east.us.mail.aol.com,2 17129,http://www.icons.umd.edu,2 17130,http://www.johndenham.org.uk,2 17131,http://ealinghelp.org.uk.dnnmax.com,2 17132,http://ealing.theorytestpro.co.uk,2 17133,http://eadminblog.net,2 17134,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBEZVH2q6v!wRDGOlMO!zEJfv8XbhpCU4X9Wl7gQvnyPGca9B1*bBjx11efsB0kLx4YbCwvXGf18HBHiWwdkBrlNPGvrb2DLt!86pCaawnDGpoddMrewFCY75ucIJrOxsO53k9Gt6Vu0DB97mAickw8eNT7lFf5*tIqZFSB8oIqxCrprASsXIK44jxKaxArLhjDIfHu7FT8OB015sslr46RQOBeSCRnz1Y6Hn2USZJjGEuOBZOlmH6Z8HNWqJoia6xJCZ1MJyoEVIOJ7LnNHbk35dMclbWFRGkxHZlNGnoiv5sMfM3!jOKYJXt1FO0*bsUpVukkogWS5EtUkniS6WI2CKVNHCx1I*bZYlU8j0slqrmpYT*LXTnVsO174zq9Vtj7DeUTHpR/results,2 17135,http://www.lsc.gov.uk,2 17136,http://www.driving-schools-carlisle.co.uk,2 17137,http://www.lta.org.uk,2 17138,http://www.ltadi.co.uk,2 17139,http://e.taisha.org,2 17140,http://www.warwickpractice.co.uk,2 17141,http://www.warwickshire.nhs.uk,2 17142,http://e-voice.org.uk,2 17143,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/HowtheCourtFundsOfficemanagesyourmoney/DG_195024,2 17144,http://www.nhsfife.scot.nhs.uk,2 17145,http://www.princess.com,2 17146,http://www.boltonsafeguardingchildren.org.uk,2 17147,http://e-careers.com,2 17148,http://www.hotbot.com,2 17149,http://www.spunout.ie,2 17150,http://sharp.direct.gov.uk/search/results/,2 17151,http://www.icq.com,2 17152,https://forms.direct.gov.uk/forms/form/5/en/request_an_email_update_on_the_progress_of_your_passport_application,2 17153,http://www7.politicalbetting.com,2 17154,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Helpingsomeoneelsewithdecisionmaking/DG_186370,2 17155,http://dxw.com,2 17156,http://www.boltonathome.org.uk,2 17157,http://www.dynama.org,2 17158,http://www.bokinteriors.co.uk:2095,2 17159,http://dw-roberts.co.uk,2 17160,http://172.16.1.4,2 17161,http://www.squeakandbubbles.co.uk,2 17162,http://www.lucadegasper.com,2 17163,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvltjwU*y51Nm!hiGMdaYtduCWPf4!IC3B6aJebTfwwTlyPOczaHo9JLRJSPYOk9h9JqR!7TWM5gaQAUBpaT4uUNIGI1gb2G!5EVK9dOoEu3bzwl0plSUMfOhEq7k6A6GVXzc4wXS9ckKMFKPhys0ZClaTEiZauYk1T8SitiZ1oBSeUjjKCMs9lk9hmceyKYx5jE1he4*t7xj1w!Pd6NF5MKLXMg2lrY7BgGM!o8BPHyzvefZRWqEQw1xw1J1cuemfBTdrCXtLeI2lclLHhxM0XMruRHqIY*f8!5JWjGZFjkqU!XalOGroiv5sMfM3!jOKYJXt2FOw*bsUxlukoogWS6EtUlHiS6VQuUUqauBiqR!3yxKp6HtYLJXPS5X2t9CfOgHXvpFci7dWqm*ZSn8N/results,2 17164,http://www.hfrsrma.co.uk,2 17165,http://dustonlibrary.childrencentre.org,2 17166,http://www.lucy-cav.cam.ac.uk,2 17167,http://www.boilerrepairbirmingham.co.uk,2 17168,http://www.prioryhigh.lancs.sch.uk,2 17169,http://www.srcf.ucam.org,2 17170,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_190282,2 17171,http://www.boiler-scrap.co.uk,2 17172,http://www.wayfarerdriving.co.uk,2 17173,http://www.boiler-scheme.co.uk,2 17174,http://www.ludlow.gov.uk,2 17175,http://www.wbs.ac.uk,2 17176,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU1AvdV1fwxAkrWkHnbBkj79PSEtwuqhX24XwyTlyPOczaM3gMnrMCP!AyV2Ey0jTWxgEXB2GQZpOwQLXg7KfN2eBx!DWwpOtsFLprtdnWESweBO!VHokOOF62Q5CX4HQqq87bGB7o70eI!VkeBf2CgVrSAUTrf3Eji9kRMeaNJFSBkrpKROsCFgxh*GA8TmMBYzNYYeAHR4YDcPz3ejJe7DSDCqP5VidogHPfEWRnz9ZwfPio7RGMYal4KjfufbTPwtu0RIOlvAWS9WsTggnaviU*Y70LY098B!3tGaUlwWqEA*tynHS0A392WPmb*RnEsEm26mnaPt3KYz3SCURrZZCe6SSxNdKoWqPVNLA1VI*Tpc1Usn3sFqqWJaqxt!COfcSjn2rxCAvrdLfVsmAqw__/results,2 17177,http://www.wcva.org.uk,2 17178,http://sharepoint01,2 17179,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_190178,2 17180,http://www.wealdenletstart.co.uk,2 17181,http://sharepoint.tsys.com,2 17182,http://sharepoint.otleycollege.ac.uk,2 17183,http://dti.gov.uk,2 17184,http://dtcis,2 17185,http://sharepoint.hughbaird.ac.uk,2 17186,http://www.hillcrest.dudley.sch.uk,2 17187,http://sharepoint-eucan.pfizer.com,2 17188,http://www.eddsdrivingschool.co.uk,2 17189,http://www.direct.gov.uk/en/Governmentcitizensandrights/GettingLegalAdvice/Legalaidincriminalcases/DG_196367,2 17190,http://www.driving-school-blackwood.co.uk,2 17191,http://dsdintranet.webs.dsd.nigov.net,2 17192,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_065267.pdf,2 17193,http://www.lumhead.stockport.sch.uk,2 17194,http://share.dunstable.ac.uk,2 17195,http://www.bocpensions.co.uk,2 17196,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_065265.pdf,2 17197,http://shanelleandresenglish.wordpress.com,2 17198,http://drupallyon.drupalgardens.com,2 17199,http://drupal:85,2 17200,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_188282,2 17201,http://www.bobneillmp.co.uk,2 17202,http://shalbourne.org,2 17203,http://drugdrive.direct.gov.uk/testfordrugs.shtml,2 17204,http://drugdrive.direct.gov.uk/links.shtml,2 17205,http://drugdrive.direct.gov.uk/,2 17206,http://sh.wikipedia.org,2 17207,http://www.direct.gov.uk/en/Governmentcitizensandrights/GettingLegalAdvice/Gettinglegaladviceandlegalaid/DG_195341,2 17208,http://www.webdesignerforum.co.uk,2 17209,http://www.ssfc.ac.uk,2 17210,http://www.lurcherlink.org,2 17211,http://www.hillfortprimary.co.uk,2 17212,http://www.boali.com,2 17213,http://drivingstart.co.uk,2 17214,http://drivingskoolteesside.co.uk,2 17215,http://drivingschoolsmaidstone.co.uk,2 17216,http://www.bnp.org.uk,2 17217,http://drivingschoolinairdrie.co.uk,2 17218,http://sf1317904727.site-fusion.co.uk,2 17219,http://www.pro-biker.co.uk,2 17220,http://www.bnet.com,2 17221,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_186525,2 17222,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Workingoutmoneyandpropertythroughancillaryrelief/DG_193771,2 17223,http://www.johnhenrydrivingschool.co.uk,2 17224,http://www.proceduresonline.com,2 17225,http://seth,2 17226,http://www.proclaim-care.co.uk,2 17227,http://drivinglessonsni.co.uk,2 17228,http://www.bmwcarmagazine.com,2 17229,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Ifyourenotmarriedorinacivilpartnership/DG_193775,2 17230,http://www.bmtschool.co.uk,2 17231,http://www.bmtcbridgend.com,2 17232,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctyozAQ*BpftsqUQBGPI8R21qekwu5ZpZUUhwqWiCTH!fzoQaDI2lvYp81F0kwP03QPDy2VWcDVIklf7dZK!dKI3SKpnqSyKyWC8rYlppHChowYrgewU4SahpLWnm3e2B5CcX1ojbatYmBjbbtjoikXzLWFK5d8jf5IqQ1nPxujo*tHT4!S3LZR5HhQth!CpUslz8Z07tDHKNn02*F4jFijODXRTr5Fh5c!3ynJMJVCH*aY7fpkw2jXhgButozWXL01lIfEqq7x3foXfijv1qE!FZLxLevhpAB9elvjun743edjf4N2yar9,2 17233,http://www.procourier.co.uk,2 17234,http://serisp1,2 17235,http://drivinginstructor.pl,2 17236,http://drivingclass.co.uk,2 17237,http://separatedbyacommonlanguage.blogspot.com,2 17238,http://www.lutonfoyer.org.uk,2 17239,http://drivingacar.co.uk,2 17240,http://driving4lessons.co.uk,2 17241,http://driving-school.com.my,2 17242,http://www.bmgs.bolton.sch.uk,2 17243,http://www.prodrivemotoring.co.uk,2 17244,http://driving-lessons-glasgow-paisley.co.uk,2 17245,http://senior-squad.com,2 17246,http://www.lv.com,2 17247,http://www.lvs-hassocks.org.uk,2 17248,http://drivez.me.uk,2 17249,http://www.productsandservices.bt.com,2 17250,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Financialplanningwhenyourrelationshipends/index.htm,2 17251,http://www.weblio.jp,2 17252,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_183990,2 17253,http://www.blueskypensions.co.uk,2 17254,http://drivewhite.com,2 17255,http://drivewellwithderek.theorytestpro.co.uk,2 17256,http://drivewales.theorytestpro.co.uk,2 17257,http://drivetimeuk.theorytestpro.co.uk,2 17258,http://drivetimesom.theorytestpro.co.uk,2 17259,http://drivetimeciren.weebly.com,2 17260,http://drivetime1.theorytestpro.co.uk,2 17261,http://www.lwaccountants.co.uk,2 17262,http://drivesafetheorytest.theorytestpro.co.uk,2 17263,http://selfadvocates.sharevision.ca,2 17264,http://driversmedicals.com,2 17265,http://self-help-housing.org,2 17266,http://selectdrivertrainingrhyl.blogspot.com,2 17267,http://select.theorytestpro.co.uk,2 17268,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_183877,2 17269,http://driveractive.com,2 17270,http://sefton.theorytestpro.co.uk,2 17271,http://4thworkingtonscoutgroup.easysearch.org.uk,2 17272,http://driveon.theorytestpro.co.uk,2 17273,http://sefton.fsd.org.uk,2 17274,http://seek.mk,2 17275,http://www.johnlowedriving.co.uk,2 17276,http://www.blueislands.com,2 17277,http://securedns.comodo.com,2 17278,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Planningadivorce/DG_193733,2 17279,http://drive-inschoolofmotoring.co.uk,2 17280,http://drive-eco.com,2 17281,http://www.blueflamemk.co.uk,2 17282,http://www.st-cuthbertshigh.newcastle.sch.uk,2 17283,http://www.blueeyeweb.co.uk,2 17284,http://searchwithrelientk.swagbucks.com,2 17285,http://www.driving-lessons-paisley.net,2 17286,http://searchwithchester.swagbucks.com,2 17287,http://www.bluecoatschoolliverpool.org.uk,2 17288,http://dpollonline.com,2 17289,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@greenerliv/documents/digitalasset/dg_179494.pdf,2 17290,http://dp-01,2 17291,http://www.st-georgessurgery.co.uk,2 17292,http://www.programsforelderly.com,2 17293,http://searchresults.business.verizon.net,2 17294,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@employ/documents/digitalasset/dg_179584.rtf,2 17295,http://www.st-jeromes.co.uk,2 17296,http://dorsetfire.radikls.co.uk,2 17297,http://www.bluebell-railway.com,2 17298,http://www.st-johns.bristol.sch.uk,2 17299,http://www.webstatschecker.com,2 17300,http://www.st-katherines.n-somerset.sch.uk,2 17301,http://www.bluebadgelondon.org.uk,2 17302,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_180788,2 17303,http://search45.info.com,2 17304,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwjAQ*BoulZCcmLyOCZQv6D2ygksiwAavEf38rm3AMk2qJKf24l1rJjuZ3SgLUukF3SziFDSzKcH8gvHWMr2IKyZ2eN5arjjGy5WD7qQAJAnF4XrUgNzIPARYqmbQcLHrxP5e6chsyoVT0F1TKyYOSKj51xkrAFazL5DE!ctxYnDAJKniAgMtbUg2b7FBTR5XnpI7Sm4pL1jmsKwPSx2W9mGJw5I!bOWw1QOj7ni!G91aD9BIxZc!NdnWG7DMNfH85ZPlPA8!Skvi2zDUOGorlzb8s8YNWoqcpWiKpaJXxzXHa9gu24r0PWy74z!utExommekIKkb1zIKBjphPnPM*I35vLRgku3Qk7f9u1QUzZEKWjRaisyRCjo!VooUc6SCAY6W!vF3GSMVfA!jpbJhqcKsBbnvGvztA2eqaWu7HhT*7AS*74LqQ55N3EKnOfDGLB17P0ktFa6Pb3zhlxc_/results,2 17305,http://www.bloominlearners.co.uk,2 17306,http://search39.info.com,2 17307,http://www.bloomberg.com,2 17308,http://www.st-marks-aylesford.kent.sch.uk,2 17309,http://www.blogstorm.co.uk,2 17310,http://domcms,2 17311,http://domainsa.com,2 17312,http://acmail01s.syp.southyorks.police.uk,2 17313,http://dokodeska.blogspot.com,2 17314,http://www.wecanhelp.org.uk,2 17315,http://www.st-maryshigh.croydon.sch.uk,2 17316,http://dogstrust.easysearch.org.uk,2 17317,http://dogstodaythinktank.blogspot.com,2 17318,http://doggybog.com,2 17319,http://www.prontopass.co.uk,2 17320,http://documents.intra.bt.com:83,2 17321,http://documents.intra.bt.com:82,2 17322,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwjAQ*BoulYicuHlwTHiVU6umPVvBtsBqsME2pZ9fPwJRKFSBU3uxvbuTHc8sCUpIPYCTQZTszEaYqpY1JYOowGtW253WdEO5NgAuqdrXWhlcCEyszKOoUphywvjKZG1yFyyFUJqSJ6ZV8PzqesdRZjrJ6rCXtYlgblPRWuutPTRxHM2a7XA4BIRJinWwEp*B*qPJb6UgCAuu9htEVk2SEbytfQBnC4JLKj8Zpj4xKUs0n76hl3w!9fiEC0IXpClnWZNdlKgsX96bdOjuZ5a02Nj7TiKHGysXAFswqgqbGxnNdeXkU25N0ZVmGMmKfxhTEP3aGtcUE7w1orNsKmXlxYXtZJxwWzx5iJrmcVS0kMxDMgc5q6W!ll6qJb6WXKrFvhZfqj362uOxBv1yuht0E8sUFpIO26M9zVoBDjkGLX54QnnNVx!FOWhtuGYcdJ1zt*0z465KCr2k8BZJo4s84PS!Za3LriOcdm33!GMI8xgmWQpGIPHjGoadgd4wn3vE*I35nFlwk!yuplb271RheA9Vx6LeVOAeqo7jfanA6B6qzgB7U*34uvSh6vweelOl16nc34JYMWw!!4pWEq8R5d*H88UN/results,2 17323,http://youraz.astrazeneca.net,2 17324,http://www.st-minver.cornwall.sch.uk,2 17325,http://www.wedding-services.demon.co.uk,2 17326,http://www.st-nicholas.kent.sch.uk,2 17327,http://www.driving-lessons-nottingham.co.uk,2 17328,http://search1.rediff.com,2 17329,http://dnssearch.jazztel.com,2 17330,http://dnet,2 17331,http://160.212.94.4:9093,2 17332,http://www.st-peters.stockport.sch.uk,2 17333,http://dmmotorswestkirbyltd.co.uk,2 17334,http://www.st-petersce.bham.sch.uk,2 17335,http://www.welcometobirmingham.org,2 17336,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwjAQ*BoulYicGOdxTHi0nIqa9mylthWigk1tU*r59SMQpYUqcGovtndn2fHMhkQJqUdwNorid7PtJKt5xbUJuWRqv9HKZENgYmUKcaUI47Thtcna5HvwKoTSjD40WgWPT64TitJRVMjqsJcbE8HcpqK11jt7aGMULdrtcDgEtJGM6KAWH8H!rc3vpKCYCK72W0zrNtlQstv4AC6WlJRMfjSE!cSsLPH9*Bmv8vu5r4!5oGxJWzjOUJtelrgsVy9tPnQXNEtSbO2FZ1YAiqbKBcACRlZhc5kRvamcfsatK7rSDcGy4m*GFcw!jYNKNYJ3TvSWbaWsPlTYTsYKt6HZXdQ2R1HRlaS!JHUl37DEY8k5LPZYfA5DHkPnsInHJkcM!uV0N!hGlioiJBt3R3tadAJc5RR09eNTldd88acwB50Nl4yDrnPutn9m3EVJoZcUXiMpO8sDTn!4tHPZdYTzvu2!*hjCHME4TUAGYj!ucdgb6BXzuUXM35jPNwuukt3X1Mn!nSoMb6HqWTSYCtxC1XN8KBXIbqHqDXAw1Y!3yxCq3vMwmCq5TOU!C6JuiHntK1ZJssaMfwFAX79I/results,2 17337,http://dlp-prodcont001.dlp.r.mil.uk,2 17338,http://search.vmn.net,2 17339,http://djhschoolofmotoring.co.uk,2 17340,http://dj.theorytestpro.co.uk,2 17341,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Gettingadivorce/DG_181195,2 17342,http://www.welcometowalsall.org.uk,2 17343,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_179990,2 17344,http://search.us.b00kmarks.com,2 17345,http://www.blazeheating.co.uk,2 17346,http://search.uk.excite.eu,2 17347,http://www.blakemores.co.uk,2 17348,http://disqus.com,2 17349,http://www.blakehallcollege.co.uk,2 17350,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKlH5EfM4kqb5DWS5VoKSmBS7Uj!*9m4TyxQq4NRe7EUz3mFmkbFd7zZ8v2G5dRJK4ut3v6vO2I!Lk67tzIYJdqC8FPT55K6eYHodQOt5NBywvk0jrdLmrTXH7y4XCaU22N21qumlOXtCoz9vvoMNrYO4YOVguUp79oXYscpvvIZN7J9YQEPNdpFSIqUEygArECvGsByxfAwTiIkxbIvY9o5xXB7vxg*gwaqu11ksIcVoAJgvJPKzBws9Tx7lNYkxTAXHoXMN2z8LbtISRUt0iaVqVAfDiRqQMnTkr2nsyL8*8lrwvCxIRXIcV0aTgS6Yzxozf2M!gwgW2U49Rdu*S1G6RiqJaLYUWSOVJD5XilRrpJIBzpb6cbvMkUq!h9lSxbRUFX4L3bFV*tq3Wvbq1GjzBbRshQk_/results,2 17351,http://www.staffnet.herts.ac.uk,2 17352,http://www.property118.com,2 17353,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Endingacivilpartnership/DG_193743,2 17354,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Endingacivilpartnership/DG_192021,2 17355,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiHZOOZxJEnzG8iiVmIlNamXSv38ml0RyxQq4NRe8Noz9jCzyEDrup047dIMOoUlZ37y4YvjVTnTGQ1!bp2Gz3sHAw5!W62g0fbN2Itf7RfvCktt6bTONLVT9uYJtf56!BPAtBbFZFqMHu8Kbr6Qh7T0g6hwkKeXtEf7Oj0ESkGUAikjLCcsn8IywrIpTBImp7A9YfsBE*R4vps4owdoWqeTUPbVORhA5pEFfvJkkefZraJiIYa54ASeXOHwz4KbtcTJEl9jqZzUoXCCBqaMJ4rXOHbiD1NRSZEVOStZRu1KeNTQFf3ZYuZv9GcUwSrbsadg!3cpzrdIRREtlmJbpKLEl0qxcotU1MDFUj9ulyVS0fewWCqflyr730J7MY2*9kEr11xrbb8BWb2ANg__/results,2 17356,http://discover.amee.com,2 17357,http://159.92.18.156,2 17358,http://disabilityfocus.org,2 17359,http://www.welling.bexley.sch.uk,2 17360,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_179187,2 17361,http://disabilitiesgrants.org,2 17362,http://www.wellingboroughtyres.co.uk,2 17363,http://www.ictgateshead.org,2 17364,http://search.sholland.gov.uk,2 17365,http://directory.necc.co.uk,2 17366,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_179060,2 17367,http://www.propertyinfopoint.co.uk,2 17368,http://www.wellsfamilymediation.co.uk,2 17369,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiHZOOZxJE3zG8h1rRQlNalNpPbvu!w2sUyhAk7txbtm1jvMLDK!dd1G7Ddp5juFKYP8HeKzsid3vehP2Ftn*PXceXjMe9zDqVp5bexLY4*fh84KU2OpWdfo2kEPKKjNxwU6!Ka1yCXTYrC8KX!CRO7SEoKoMMj9Q9qjfZ7uQklBJQWWDLCcsHwMywjLxjBJmBzDtoRtb5ig5f5u4oAavG6dSULaZ4cgACsfWahP7lWkefKoqFiwYco4gZ0rDP*MuElJnCTxJZLKUR4yJ3Cgy9hRPMW2U*1tKyopsiJnJctoXAmPBrpgPmvE*I35DCxYJDvWFGT*TsX5GqrIotlUbA1V5PhcKlauoYoGOJvqx!0yhyr6HmZT5dNUZf9baI!NhmvfG!X0a23sF16HgDg_/results,2 17370,http://www.wellsschoolofmotoring.co.uk,2 17371,http://www.wellsway.bathnes.sch.uk,2 17372,http://www.stairlifttrader.com,2 17373,http://www.blacklowbrow.co.uk,2 17374,http://search.qip.ru,2 17375,http://www.welshbikers.co.uk,2 17376,http://157.55.43.17,2 17377,http://www.welshgasheating.co.uk,2 17378,http://www.macintyrecharity.org,2 17379,http://www.stallarddrivingschool.co.uk,2 17380,http://www.blackfriars-advice.com,2 17381,http://search.oceanfree.net,2 17382,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_177919,2 17383,http://search.nifty.com,2 17384,http://www.staloysiusjun.camden.sch.uk,2 17385,http://www.standardmotorclub.org,2 17386,http://digitalengagement.cabinetoffice.gov.uk,2 17387,http://www.blackchat.co.uk,2 17388,http://www.standardsverificationuk.org,2 17389,http://www.standoutdriving.co.uk,2 17390,http://www.standrews-woodhallspa.org.uk,2 17391,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@educ/documents/digitalasset/dg_184527.pdf,2 17392,http://www.stanmoredrivingschool.com,2 17393,http://www.driving-lessons-in-hull.co.uk,2 17394,http://search.lphant.com,2 17395,http://4muladriving.com,2 17396,http://www.blackburn.ac.uk,2 17397,http://search.kooiii.com,2 17398,http://www.dwp.gov.uk.,2 17399,http://diamond.theorytestpro.co.uk,2 17400,http://www.stanwick.northants.sch.uk,2 17401,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@educ/documents/digitalasset/dg_183332.pdf,2 17402,http://dhrc.rchomepage.com,2 17403,http://www.madeformums.com,2 17404,http://www.starbuckdriving.co.uk,2 17405,http://www.bkz-online.de,2 17406,http://www.starfishdaynursery.com,2 17407,http://www.wemburyprimary.co.uk,2 17408,http://dftsample.fubradev.vc.catn.com,2 17409,http://www.wendycareychildminding.co.uk,2 17410,http://search.indiatimes.com,2 17411,http://dforce.theorytestpro.co.uk,2 17412,http://devweb.southlanarkshire.gov.uk,2 17413,http://www.bkmlojistik.com.tr,2 17414,http://devweb.bournemouth.ac.uk,2 17415,http://www.starsgarage.co.uk,2 17416,http://www.bjm-schoolofmotoring.co.uk,2 17417,http://www.starskyandclutch.co.uk,2 17418,http://www.epcadviser.direct.gov.uk/epcadviser.html,2 17419,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_175892,2 17420,http://www.driving-lessons-glasgow.co.uk,2 17421,http://development.knowsley.gov.uk,2 17422,http://search.hub.tesco.org,2 17423,http://search.hp.my.en.aol.ca,2 17424,http://devapps,2 17425,http://zimbra,2 17426,http://dev.southeastwater.co.uk,2 17427,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@educ/documents/digitalasset/dg_071227.pdf,2 17428,http://www.startuk.org,2 17429,http://www.madmums.com,2 17430,http://www.prosperityifas.com,2 17431,http://www.madrasmodernstudies.doodlekit.com,2 17432,http://www.driving-lessons-bridgwater.co.uk,2 17433,http://search.givefind.com,2 17434,http://www.hotkey.net.au,2 17435,http://dev.co-test.co.uk,2 17436,http://destiny.chicopee.mec.edu,2 17437,http://deskinet.waitrose.co.uk,2 17438,http://search.food.gov.uk,2 17439,http://46.137.190.197,2 17440,http://derekjones.theorytestpro.co.uk,2 17441,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_171713,2 17442,http://www.bishopgate.co.uk,2 17443,http://derbydrivingschool.learning2drive.net,2 17444,http://www.protegor.net,2 17445,http://derby.theorytestpro.co.uk,2 17446,http://www.bishopchalloner.hants.sch.uk,2 17447,http://denovodrivingtuition.co.uk,2 17448,http://www.protonownersclub.co.uk,2 17449,http://www.stbenedicts.essex.sch.uk,2 17450,http://www.stbrn.ac.uk,2 17451,http://democracy.rochdale.gov.uk,2 17452,http://search.eastlink.ca,2 17453,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Yourconsumerrightswhenbuyinggoodsandservices/DG_195151,2 17454,http://demo1.yourfirmonline.co.uk,2 17455,http://demo1.greenbadgewebsites.co.uk,2 17456,http://demo.ridgian.co.uk,2 17457,http://demo.ashleykate-apply.com,2 17458,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Yourconsumerrightswhenbuyinggoodsandservices/DG_195147,2 17459,http://46.137.102.152,2 17460,http://www.stdrivers.co.uk,2 17461,http://demaeparamae.pt,2 17462,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_170371,2 17463,http://www.birminghamcar.co.uk,2 17464,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8wDyO0DS*gSzqpCiJaW0q9fO79iqxTKECTu3FXnsGDzOLjB3MmPBDwvIPmE6DuSWssaeMUAN72ij7eR0tQJTA2gK7lbZT!rXXZ9h1m1fpS6UdYZRj37VG6gsQWvX1DifYftBeQ7ByMtykvUAhGlbBxGs*icMTc6irWRMoJVJKT5lgBWLFHJYjls9hAjExh2WIZXeM4*B4N370Hmw3GJWG0lXHYMAzn0ngpw8Wel58lNckxLAUHPcn1376Z8EtWqJoiW6xVM3qYDhBw6fsT!QvcezIvy95LXheFqQiObYrpVFDN*Rnj5m*0Z9JBJtsx56C7d!lKN0jFUW0WorskYoSXytFqj1SUQNXS*24XdZIRd*DaqliWapyv4Xh3Hdw7VslTffWKv0NGrR9Dw__/results,2 17465,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Yourconsumerrightswhenbuyinggoodsandservices/DG_194546,2 17466,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_078387,2 17467,http://www.direct.gov.uk/en/Nl1/Newsroom/ChristmasHolidays/DG_173375,2 17468,http://debpetewilliams.com,2 17469,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Situationsthatcanchangeyourconsumerrights/DG_195116,2 17470,http://debeauvoircouncillors.blogspot.com,2 17471,http://www.birdsbush.com,2 17472,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@crime/documents/digitalasset/dg_170532.pdf,2 17473,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Situationsthatcanchangeyourconsumerrights/DG_194562,2 17474,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrJcK0WhJrWp1M*v2qvEMoUKOLUXdvEMHmYWGTfYMeOnjBUfUHSv1WiHvs*Y0RcH68Zq99mPDmBK4N7BE610SpvXzlxg1S*2MrTaeMIox061VporEFr9dYMdXDeYoCNYNbm8S3eFRhxZDYU3oYjTE*Oo79kxUiqkVIEywUrEyjmsQKyYwwRiYg47IHa4Yxwvj3fj5!DBqcHqPLa!O0cDgflMIj9*sNDz4qO8ITGGpeB42LkJ5Z8Ft2iJoiW6xVI9q4PhRI2QctiRv6SxI*9!yxvBi6okNSlwXDlNBrphPnvM*I35TCLYZDv1FG3*LkXpHqkkotVSZI9UkvhaKVLvkUoGuFrqx!myRir5HlZLlctStf8tDJdOwbHvtLTqrdXmGzk!f20_/results,2 17475,http://www.bipp.com,2 17476,http://search.aol.pl,2 17477,http://deadinteresting.blogspot.com,2 17478,http://search.aol.ph,2 17479,http://www.magnumdrivingschool.co.uk,2 17480,http://search.aol.my,2 17481,http://www.westburyparkschool.co.uk,2 17482,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget2009/index.htm,2 17483,http://www.biomedcentral.com,2 17484,http://www.stephensdrivingschool.com,2 17485,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/PostalServices-yourconsumerrights/index.htm,2 17486,http://www.stephensons.co.uk,2 17487,http://de.mc295.mail.yahoo.com,2 17488,http://www.erimushousing.co.uk,2 17489,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BnJdK7GSmtamUtWv7!JVYplCBZzaC157xh5mFhnfuT7jh4wV7zA8O9Mbf87YXkHxZbQFwDrtP669B5wSmHvY0kqvtH0x9gSrw!JVhjJs8L3sjWqdtBcgtPrzDU7wprNBSLBq9HiV*gKF2LMaBt6EQRwe2IAONdtHSoWUKlBGWIlYOYUViBVTmEBMTGE7xHY3jOPj*m78GDx41Tmdx3KojtFAYD6SyM*vLPQ8u5U3JMYwFxwPJzdh!GfBzVqiaImusVRP6mA4USOkHE7kT2nsyL9NeSN4UZWkJgW2K6dJQ1f0Z4uZv9GfUQSrbKeeou3fpSjdIpVEtFiKbJFKEl8qReotUkkDF0v9uF2WSCXfw2Kpcl6qHn4L3ckouPa9lk6dW22*Aa3Qf88_/results,2 17490,http://www.stepin-hatier.com,2 17491,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget2008/DG_072926,2 17492,http://de.mc265.mail.yahoo.com,2 17493,http://www.hollierautocare.co.uk,2 17494,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Personalfinance-yourconsumerrights/DG_195392,2 17495,http://www.bing.com.,2 17496,http://www.psoriasis-help.org.uk,2 17497,http://www.westcountryway.co.uk,2 17498,http://dds.glam.ac.uk,2 17499,http://search.1und1.de,2 17500,http://www.idealenergyassessors.co.uk,2 17501,http://www.maguirejackson.com,2 17502,http://seaforthcs.easysearch.org.uk,2 17503,http://www.johnpaulweller.com,2 17504,http://se.ask.com,2 17505,http://www.johnpayne.com,2 17506,http://sdmc.easysearch.org.uk,2 17507,http://sdiweb,2 17508,http://dbscareers.wordpress.com,2 17509,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/,2 17510,http://davisandgold.co.uk,2 17511,http://daviesfuneraldirectors.co.uk,2 17512,http://davidsteptowe.easysearch.org.uk,2 17513,http://davidfield2.easysearch.org.uk,2 17514,http://sctnet,2 17515,http://scstage.sciencemag.org,2 17516,http://davesdrivingsch.co.uk,2 17517,http://www.billericayfamilies.com,2 17518,http://davesautodrive.co.uk,2 17519,http://www.billeo.com,2 17520,http://www.hillingdoncarers.org.uk,2 17521,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A7nEIijUbm0i9fNre5tYplABp*aCF2a8w8wiY5QeE3pMSGZG7ktk6w!7DkqelUxI*aq0unUXY59LLcxtGI2FseMZu7vhphXy3Mvue*PAfSkkNB37ttFcXi2hEZ*vtoPpbV!nyUgxubxxc7UFq0lpF1r5hR2fiENdTepAKYBSeMoEywHL57AMsGwOY4CxOewA2OGOUbg83o2evAfTKi3SULrqFAx45jMK*PTBAs!LW2mFQgxLwVHfufLLPwtu0RIGS3iLpXJWB8IJGj5l35G!xLED*35LK0azIkclymBcKY4GumE!e8z8jflMIthkO*YUbP8uhfEeqSii1VJoj1SU!FopVO6Riga4WurH6bJGKvoeVkvly1Kl!y2orm*tsW8E1!2lEfILDCSC9Q__/results,2 17522,http://scottownersclub.org,2 17523,http://www.public-audit-forum.gov.uk,2 17524,http://www.maidstonemot.co.uk,2 17525,http://scottishbikers.co.uk,2 17526,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/%40dg/%40en/documents/digitalasset/dg_194354.pdf,2 17527,http://www.bikesrsafe.co.uk,2 17528,http://www.westernwelsh.co.uk,2 17529,http://dartforddrivertraining.co.uk,2 17530,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Energy-yourconsumerrights/DG_196254,2 17531,http://scnc,2 17532,http://scluett.theorytestpro.co.uk,2 17533,http://www.publicaccess.bedford.gov.uk,2 17534,http://scip.portsmouth.gov.uk,2 17535,http://danceadvantage.net,2 17536,http://damisela.com,2 17537,http://schoolsonline.swindon.gov.uk,2 17538,http://www.bikerwales.com,2 17539,http://dailywith.me,2 17540,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2010/DG_188500,2 17541,http://www.mail2world.com,2 17542,http://www.publiclawproject.org.uk,2 17543,http://daemon4x4.org,2 17544,http://www.drivewithsimon.co.uk,2 17545,http://www.pukybikes.co.uk,2 17546,http://schoolsfinder.direct.gov.uk/la/Warrington/,2 17547,http://schoolsfinder.direct.gov.uk/la/Wandsworth/,2 17548,http://www.bikeforums.net,2 17549,http://d2c.infogin.com,2 17550,http://d12db054.de.ibm.com,2 17551,http://www.puregt.com,2 17552,http://schoolsfinder.direct.gov.uk/la/Surrey/,2 17553,http://schoolsfinder.direct.gov.uk/la/Staffordshire/,2 17554,http://www.westgatemedicalpractice.co.uk,2 17555,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Buyingacar-yourconsumerrights/,2 17556,http://www.majorlaw.co.uk,2 17557,http://www.purpleivy.co.uk,2 17558,http://www8.yoog.com,2 17559,http://www.bigyellow.co.uk,2 17560,http://schoolsfinder.direct.gov.uk/la/Sandwell/,2 17561,http://www.make-a-wish.org.uk,2 17562,http://www.bigstring.com,2 17563,http://www.drivewithken.co.uk,2 17564,http://cwuhands.org,2 17565,http://cwsa5-sp1,2 17566,http://www.biglotteryfund.org.uk,2 17567,http://schoolsfinder.direct.gov.uk/la/Northamptonshire/,2 17568,http://cwdd,2 17569,http://schoolsfinder.direct.gov.uk/la/Newham/,2 17570,http://www.westkent.org,2 17571,http://cv-cbtsvr1:8080,2 17572,http://schoolsfinder.direct.gov.uk/la/Lambeth/,2 17573,http://www.direct.gov.uk/en/Nl1/,2 17574,http://www.bigben.hu,2 17575,http://schoolsfinder.direct.gov.uk/la/Kent/,2 17576,http://www.bigbangblogs.org,2 17577,http://schoolsfinder.direct.gov.uk/la/Islington/,2 17578,http://schoolsfinder.direct.gov.uk/la/Hertfordshire/,2 17579,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Protectingwildlife/DG_182177,2 17580,http://schoolsfinder.direct.gov.uk/la/Hampshire/,2 17581,http://cumbrianwa.wordpress.com,2 17582,http://www.johnssite.co.uk,2 17583,http://www.makesenseofyourretirement.com,2 17584,http://schoolsfinder.direct.gov.uk/la/ESSEX/,2 17585,http://schoolsfinder.direct.gov.uk/la/Essex/,2 17586,http://www.biendoikhihau.cantho.gov.vn,2 17587,http://www.johnstonvets.co.uk,2 17588,http://cui2-uk.diif.r.mil.uk,2 17589,http://adi93172.theorytestpro.co.uk,2 17590,http://www.drivewithharry.co.uk,2 17591,http://www.westlowmere.co.uk,2 17592,http://ctc.mytrico.com,2 17593,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Lookingafternature/index.htm,2 17594,http://ct4u.laserlearning.org,2 17595,http://www.biba.org.uk,2 17596,http://www.bia.homeoffice.gov.uk,2 17597,http://www.stevenhalehearing.co.uk,2 17598,http://csm.easysearch.org.uk,2 17599,http://www.direct.gov.uk/en/Motoring/VehicleCrime/DG_10035622,2 17600,http://www.westmeadowsprimary.org.uk,2 17601,http://www.direct.gov.uk/prod_consum_dg/DGFragmentsCode/fPlayerIn.swf,2 17602,http://www.pytbournemouth.co.uk,2 17603,http://ace-suffolk.org.uk,2 17604,http://schoolsfinder.direct.gov.uk/la/Bexley/,2 17605,http://schoolsfinder.direct.gov.uk/la/Bedford-Borough/,2 17606,http://146.116.190.100,2 17607,http://schoolsfinder.direct.gov.uk/la/Barking-and-Dagenham/,2 17608,http://www.q2a.co.uk,2 17609,http://crw-intranet01,2 17610,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/DG_070060,2 17611,http://www.bhcac.org.uk,2 17612,http://www.stevesdriving.co.uk,2 17613,http://www.q8yat.com,2 17614,http://www.jolan.co.uk,2 17615,http://crmweb3:8080,2 17616,http://www.direct.gov.uk/en/Motoring/PersonalisedRegAndNumberPlates/DG_197445,2 17617,http://schoolsfinder.direct.gov.uk/9374803/overview/,2 17618,http://www.dvla.guv.co.uk,2 17619,http://www.qbeeurope.com,2 17620,http://schoolsfinder.direct.gov.uk/9373541/overview/,2 17621,http://www.emle.org,2 17622,http://alandrabble.theorytestpro.co.uk,2 17623,http://schoolsfinder.direct.gov.uk/9365415/overview/,2 17624,http://www.drivewithduncan.co.uk,2 17625,http://www.bfi.org.uk,2 17626,http://criminal-bailiffs.angelfire.com,2 17627,http://www.westonfavell-ds.com,2 17628,http://www.qck.com,2 17629,http://128.1.12.207:100,2 17630,http://www.bfca.eu,2 17631,http://creditor.weesh.co.uk,2 17632,http://www.hounslowcabs.org.uk,2 17633,http://acdcdrivingschool.co.uk,2 17634,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Climatechange/DG_064391,2 17635,http://crawley-px.rtrk.co.uk,2 17636,http://www.qdps-shop.co.uk,2 17637,http://www.jonessom.co.uk,2 17638,http://www.bevsdrivingschool.co.uk,2 17639,http://cranbrookdrivertraining.co.uk,2 17640,http://cram.theorytestpro.co.uk,2 17641,http://www.beverleygrammar.co.uk,2 17642,http://appledrivertraining.theorytestpro.co.uk,2 17643,http://www.hounslowhomes.org.uk,2 17644,http://www.betterlives.org.uk,2 17645,http://www.qi.leeds.ac.uk,2 17646,http://cr-cbtsvr1:8080,2 17647,http://www.hernebayhigh.kent.sch.uk,2 17648,http://cpw1.cpw.mail.aol.com,2 17649,http://www.westsuffolk.ac.uk,2 17650,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcIWl!A1mOm6BQu7VJ1c!v8TaxTKECTu0FL8x4h5lFxmrTJ*SQkMz23JfI1e9ufem0PiWk*tA3cZHGPVVG2lvXWwfigWXd3oZbIdWpVefvrR33pVTQsm9FY7i6OkIjP99cB9tq5RUZKUaXV26vrmA1Kd1CK7!wwxMZ0KEmdaAUQCk8ZYTlgOVTWAZYNoUxwNgUtgNsd8coXB7vRo*egxXayDSUQ3UMBjxzjwI*fbDA8!xWWqEQw1xw1Heu*PLPgpu1hMESXmOpnNSBcIKGT9l3pM9x7MC*39KK0azIUYkyGFeKo4GumM8WM39jPqMIVtmOPQXbv0thvEUqimixFNoiFSW!VAqVW6SiAS6W!nG6LJGKvofFUvm8VDn8FvS5Fe7Yt5IbcWmk!gJWSoIS/results,2 17651,http://www.westsussexpct.nhs.uk,2 17652,http://cpcp.easysearch.org.uk,2 17653,http://www.qohldrs.co.uk,2 17654,http://cow.neondragon.net,2 17655,http://10.187.90.253,2 17656,http://coventry.com.pl,2 17657,http://www.maltingsacademy.org,2 17658,http://www.housemate.org.uk,2 17659,http://www.jpmorganassetmanagement.co.uk,2 17660,http://courses.learning.ox.ac.uk,2 17661,http://www.jpmorganclimatecare.com,2 17662,http://schoolsfinder.direct.gov.uk/9313247/school-profile/,2 17663,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenertravel/DG_064429,2 17664,http://www.jrcprojects.co.uk,2 17665,http://www.quad-response.com,2 17666,http://www.bestjobs.ro,2 17667,http://costacalida.angloinfo.com,2 17668,http://www.jrdrivingschool.co.uk,2 17669,http://www.wewant2work.com,2 17670,http://corporate1.internal.standardlife.com,2 17671,http://corporate.bbg.co.uk,2 17672,http://corpnet.peterborough.ac.uk,2 17673,http://www.bestdrivertraining.co.uk,2 17674,http://corpaudit.chevron.com,2 17675,http://www.direct.gov.uk/jobseekers,2 17676,http://schoolsfinder.direct.gov.uk/9268003/overview/,2 17677,http://schoolsfinder.direct.gov.uk/9265411/school-profile/,2 17678,http://schoolsfinder.direct.gov.uk/9265408/overview/,2 17679,http://127.0.0.1:7101,2 17680,http://schoolsfinder.direct.gov.uk/9265400/overview/,2 17681,http://www.weymouthpeople.co.uk,2 17682,http://www.bespoke-group.co.uk,2 17683,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/Motorinsurance/DG_067628,2 17684,http://www.jsmdt.com,2 17685,http://cool.easysearch.org.uk,2 17686,http://www.help-in-bereavement.co.uk,2 17687,http://www.jstdrive.co.uk,2 17688,http://www.qualityansweringservice.com,2 17689,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenerhomeandgarden/Greenergarden/DG_064418,2 17690,http://www.housing-ombudsman.org.uk,2 17691,http://contentmanager,2 17692,http://www.jtbdrivingschool.co.uk,2 17693,http://www.qualityindependence.co.uk,2 17694,http://www.durhamteesvalleyairport.com,2 17695,http://www.whatsoninlyme.co.uk,2 17696,http://content.brent.gov.uk,2 17697,http://content-management-systems.info,2 17698,http://www.beremese.cz,2 17699,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZBsHPM4kqb5DWRRi6KAaTEo!fyuvQqWKVTAqb3gxTPseGYR6K4fAnYJovgLFiWGulOiCaJzW6uxHVuo7qKSgKte6rEZNNAogXsNTxZCl1K916qCXbPZCFtKZQgDdCuLXqgbEAr5!IQOGvpbPR6ls0sr9A0Kfo4yWFhuF355iQxqajjUREmRklrKDEsQS5awGLF4CeOI8SXshNjpiTG8TGdjV!tBl10vQ1ea6uoMWOYrcfxwYqHn1UdZTlwMa8Ex2zm3yz8LbtUSRUt0j6VsUQfDcRo2ZduRvfmxI*95y3LO4jQhGYlxXCH1BrpjPkfM*I35zCLYZdv35Gz*LkXpESkvos1S5IiUl*hWKZIdkfIGuFnqx9dli5T3PmyWStalMvNb6Kq6hM!!lqIvPwqpvgFjxIIW/results,2 17700,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Renewableandlowcarbonenergy/DG_195180,2 17701,http://www.bensutcliffemarine.co.uk,2 17702,http://www.jubilee77garage.co.uk,2 17703,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZAMDq8jSZrfQBbZpijEpF5XSv!!a1uJZQoV4dRe7DUz7DCzCHBQOuL7KM0*aEPo36J0C5drP3zBkUotbrQKREC8gNR0UHAC1KCoHCQtfSeB7pcK8LPXSG0SRmekzo3AFuSxkye6ai72wpYgDUEL3bWNEvJMhAZuV!qAHfU0z5Ol5Wi5CDxTkW3TijZe2y3bv6QGNXW69ZTSUUpLGWGFw4opLHdYPoVlDsumsI3DNneMu!XxbPxgPWA7KIh9aaqDN2CZO!b58YPlPM*eymvmY5gLjtvOtd3!WXCzlhJnKXnGUjWp48LxGjZl25G*hrE7*v3I64znZcEqlrtxxUkw0Cfms8bM35jPKIKnbIeevO3fpZJkjVQQ0WIptkYqSHypFKvWSAUDXCz14!uyRCp4HxZLFfNSlfktDKeutf8fodr3BuQ3d2!M!g__/results,2 17704,http://consumerline.org,2 17705,http://www.benrhydding.ngfl.ac.uk,2 17706,http://www.driveways-som.com,2 17707,http://www.benleeson.plus.com,2 17708,http://www.direct.gov.uk/en/YoungPeople/Youthfunds/DG_067060,2 17709,http://www.benenden.org.uk,2 17710,http://schoolsfinder.direct.gov.uk/9192457/overview/,2 17711,http://www.managers.org.uk,2 17712,http://www.wheel-nutz.co.uk,2 17713,http://www.housingaid.org.uk,2 17714,http://constructingequality.cmail4.com,2 17715,http://connexionstrafford.typepad.com,2 17716,http://www.julesdrivertraining.co.uk,2 17717,http://www.healthscotland.com,2 17718,http://www.juliemartindrivingschool.co.uk,2 17719,http://schoolsfinder.direct.gov.uk/9164002/overview//,2 17720,http://www.juliesimpsondrivingtuition.co.uk,2 17721,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*Boulaj8iMEcSdP8BrJcK0FJTIup1M*veq3EMoUKOLUXe*EMO8wsAtf1Q8YPGSs!YNOddZ*XQQ0tFBkT7Ei5FPT5PNyAYXvjUQdESuDawb2NctrYt9ae4NQfXhWWxnqC76SbXtkLEBrz9Q4dHPRGRcHkaLkpd4FC7FkFG69xE4cn5lFfs32kyECRSBlhZcDKKawIWDGFiYCJKWwXsN0d42F5PBs*ogenu97kscQUowFkvpDIzx!s4Hn2Vl6TGMNccBw717j9s!BmLdFgia6xVE3qhHCiBqaMHflrGnvg3y95LXghS1KRIowrp8lAV8xni5m*MZ9RBKtsp56i7d!lKN0ilUS0WIpskUoSXypFqi1SyQAXS*34uiyRSt6HxVLlvFTlfwvdqdXw2XdG9frcGPsNrJeB9Q__/results,2 17722,http://www.idtdrivingschool.co.uk,2 17723,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoukZD8iA0coWl!A1nESlFSk2Iq5fOz9iqxTKECTu3Fa3sGDzOLjO36IeGHhMkvKIO6J6w6tfYCRd9vDmTS9Np!XwcLBEpgbWG7VrbR5tSaM!y6zavyU20cYVBD29S9Mhcg1HAQnGDbznglwfLR8KmcoBAVK6Dw0hdx2DGHujmrAiVHSu4pIyxDLJvCJGJyChOIiSlsj9j!iXEcXu*Gj96Dbbpep2HqZsdgwDPfSOCnLxZ6nn2UlyTEMBcc9yeXvvyz4GYtUbRE11gqJnUwnKDhU*Yn8vc4duQ*l7wUXOYZKYjEdqU0auiK*mwx8zf6M4pgle3YU7D9uxSlW6SiiBZLkS1SUeJLpUixRSpq4GKpH7fLEqnoe1gslc1LFe630J3bBq59q1XffNTaPADhWn!u/results,2 17724,http://www.wheelsbydrivingschool.com,2 17725,http://www.jungle-busters.co.uk,2 17726,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctu6jAQ*Ro2lYj8IA!WSQOUTW*V3Lu2UtuiacGmtin38!tHIEoLVWDVbjyeOSczPjNOoqUyI1yOUPJmzYt8GqGCcmEU1zYmrNmtjbYQBNbXlk1qbQmsESsbdcG36ElKbTi7a4yO*jz6dDHKbCZV73dqbT2cuxB6NmbrNq0fo3lr9vt9xBrFqYlW8j3avbbxrZKMUCn0bkPYqg02jG7XwcHzJaMVV!8N5SFQVhVZzP6Sh3wxC*xE61LS!3pzYJQLAgHAAOJJy1hWpKoe*rU49Ge1S1ps3NlLpyVGt9o7wAFWYeFiU2ut4uD8HMVCMr5kBzkADpSZ*maZCKKBMpNvZCbr2l9sLtx1N7VpKFG1eLXXnfD*W*s!6EaK7or3lk2tnb64cJlsK7yJyxvUJo9R0VGyQMk85ROWBiw9hSUBS05hccDiU9gkYJMDhsNyPBv2I8s0lYqPu63bzTsBnnkLOv74yAqazz6Kc9C14VzjsM!ce*PLGndWEgyS4CWSpifrgOMLl3Vd9hnxrN*2wD!4OI9xkqVgCpIwrjHsDfSC!Vwj5mfM51MLLpLd19TJ*r4UhNeU6rVocClwTalex4eWAtNrSvUGOLjUl6*LkFK9!zC4VHq!lP8tyFVD7Wdf81rRZ8LFBy7yPw4_/results,2 17727,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctu6jAQ*Ro2lYgcu07CMinQsmp1066tXNsCq8Gmtin9*OtHSpReqAKrdmN7zpnMyZnJwyhtJ2g!gdmb2!hGtGwCK9t8uJVqzoR1lNTc7FtrXEYKXGzcRaQxlEsm5NqhHnxL*iplLGcPwprk8U!oimHhCunmsNeti1DpIbixducPXYzhstsOh0PChObUJmv1nuxfO3ynFSNUSbPfErbuQMHoro0BWq4Yrbl!F5RHYF7X5H7xTJ7K!0XMz6RifMU6GuKsg1c1qeunlw5Pww26Ja!2k5BYeOTOhAB4wtmqPDZzu7MZgx9qMwVwrM*8G59Z24Q5c!mnbxsrKNGNfHXTJ*xj5x4PI5TsJz5Yto3xBnHlK7lehA3Pb2BXHMOqTyliShFSvnB55PJTXBa57BSHI4dPcbeRu*3kUFyO94bCzApDlebT*uhPy95AyLwDff70mBU9n70UlaBvw7nGoVC5DNsva9xZS2m0lF5iaXZSBxzfuKLvcqiIFsO2x*zPEJUYZUUOZiCL45qmg4FeMJ9rzPyM!XxpwUW2h556299Lpek1UoMWjZYC10gNOj5WCsyukRoMcLTUf1!XMVKD52G0VH5eKvwW1FpQ99k3vNF0Q7j8B7U1AM4_/results,2 17728,http://www.queensbury.ngfl.ac.uk,2 17729,http://www.queenscroft.staffs.sch.uk,2 17730,http://www.manchesterdrivinglessons.com,2 17731,http://www.direct.gov.uk/en/YoungPeople/Workandcareers/Yourrightsandresponsibilitiesatwork/DG_066174,2 17732,http://computeraidinternational.wordpress.com,2 17733,http://www.wheretosleep.co.uk,2 17734,http://www.questdrivingschool.co.uk,2 17735,http://www.begin.org.uk,2 17736,http://compass,2 17737,http://www.justderbyshire.co.uk,2 17738,http://www.mangoletsi-alfaromeo.co.uk,2 17739,http://www.beforetravel.co.uk,2 17740,http://www.whitbyschool.org,2 17741,http://comp-degree.uhi.ac.uk,2 17742,http://www.beezdriving.co.uk,2 17743,http://www.justfornurses.co.uk,2 17744,http://www.beepdrivingtuition.com,2 17745,http://community.sigames.com,2 17746,http://www.whitehall.bristol.sch.uk,2 17747,http://community.macmillan.org.uk,2 17748,http://www.whitehallgarage.co.uk,2 17749,http://ap5.auth.athensams.net,2 17750,http://www.whitehavennews.co.uk,2 17751,http://www.quickbookmarks.com,2 17752,http://www.whitehorseschoolofmotoring.co.uk,2 17753,http://www.beehappydriving.co.uk,2 17754,http://www.durhamcarers.info,2 17755,http://www.whiteleyskips.co.uk,2 17756,http://aks-renault.co.uk,2 17757,http://community-toolkit.org.uk,2 17758,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcFuhCAU*Jq9NDEBWVCP2u026aFNmt4NsWRrdout2KSf3wcvuwSrDXrqXuDBjIwzz6Dp!mHDdptUfML08FTdP5ePL7DUvTJfp8HALiWwNkCspWmUfm31AXbt5km6UmlLGOTQNnUv9REItfr!gBNM22l3PE*z0fAuzREKXqUFTKx0E9*dpBa1dVp5So6U3FFGWIZYNoUJxMQUxhHjU9gWse0ZYzhc3o3tnQfTdL1KfGmrvTfgmLfE85MLCz3PPspK4mOYC465k0s3XVlws5YoWqJLLBWTOhiO13ApuxPZXRg78s9LVnIm8owURGC7Eho0dEF*1pj5H*0ZRbDIdujJ2*5bitI1UkFE0VJkjVSQeKwUKdZIBQ2Mlvp1u8RIBd9DtFQ2L1XY30J3aBu49o2SffNWK*0DWm97OQ__/results,2 17759,http://communities.eu.atkinsglobal.com,2 17760,http://www.beecheshomecare.co.uk,2 17761,http://common-land.com,2 17762,http://www.beechdale.org.uk,2 17763,http://schoolsfinder.direct.gov.uk/8882687/school-profile/,2 17764,http://combiboilerinsurance.co.uk,2 17765,http://www.quickpassdriving.net,2 17766,http://www.bedsfire.com,2 17767,http://www.mankind.co.uk,2 17768,http://www.quikpass.co.uk,2 17769,http://www.mankymonkeymotors.co.uk,2 17770,http://www.justlanded.be,2 17771,http://colins-school-of-motoring.co.uk,2 17772,http://www.quora.com,2 17773,http://www.bedfordcentralchildrenscentre.co.uk,2 17774,http://www.r-m-t.org.uk,2 17775,http://colin.theorytestpro.co.uk,2 17776,http://www.ekmpowershop6.com,2 17777,http://coles.theorytestpro.co.uk,2 17778,http://www.drivetime.me.uk,2 17779,http://coldpackswalmart.cold10.com,2 17780,http://schoolsfinder.direct.gov.uk/8865400/school-profile/,2 17781,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztWUuPmzAQ*jW5VEpkMAZyDEuS5tKuyvaMqPGy1gac2s6mP79!kCC2yYpEPWSRL3he9vib4WMOCMblBKYTPxSyMCICSvmthGfGa6HkhhOx30qhTJ72CbUlLwQmTUmbSlnNhtkvxoQk5Vcqxez7D3Mm8uOJn*DisOdbpcGFNvkvUu600OrIX7XL4XCYlZQTLGcVe5vtX1v7jrMyx6wR!zovq9ZIS7zbWgWuNiXOCH!jmFhDmmX5evmUPy7WSxsfNqwkm7J1ByBszZssz7LHn63dMxdUjyip9YVTDQD5D8IoQDsUrETb5mpVMK1yPzCFSBn!VtTHiHSdewBALwzQQMTRCBDPgyAc2uFwBHgB8CDy*IGI0QeIHZHvBKYjsiOyI7IjsiPyp8TriOyI7Ig8AryOyI7IjsgjwOuI7IjsiDwCvI7IjsiOyCPA!x!JvC3MnyjS2B9ZkuKcF80rbaqc*NlxIgRlTcfu3qMuhIaKEn2SqopZUPrFbw9HftKFxDYkNiHvfJH1Red8ofWF53zI!tA5X2B9wdEH7eN0N2i6FwvMOJl2opZWHQAT!QC6!OkpymK!uBUuQFeGS4WD5uSFWT5Z4S5C8iwk7xpI87N5wIl7cVdlcyJc9stu448qXCAYxhGYg9C2a!r1GnpFf24Bcx*9eVeCq2D3MXWwP07lebek6pVocCpwS6pexYemAvNbUvUaODjVP1!XIal678PgVNHlVGYssIpi9dkXpOD4JTfjgZNn2pB2FiRPzAzDlaCSCDX69JjQes0k42p8*AXAD7EF/results,2 17782,http://www.manorjunior.co.uk,2 17783,http://codforum.org.uk,2 17784,http://code.google.com,2 17785,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVUuP2jAQ*jVcKhE5MXlwTDZAubSo2Z4j1*ay1oY4tQ3sz68fgTTbsApIlVi1F3tmvolnvrEzI7lQE5hPgkgqZEWg5Z96J4cKabEWVO4rJbXFN5DUH5RIYloTVm9P*t4PzqWi5DNT0vv6zZ4YBskkyAQ67kWlNZgaU*CsVGOEVg!DZbsdj0ePMEGx8rb84O1fWnsjOCkxr!V!V5Jta2QEN5VT4HJNcEHFgWHqDHlRlKvFY7lJVwvnH9Wc0DVp4QS21nVRFsXme2v2bX56ibOdyTc3!YfBg7QKMIBmlRnbXO!apVPuh6WUOcdf0O7kka9KHwA*mMezkYzjv8NYoVfCJB5kvjhUG*2mUJU2zW9f9tKK3knr*!O7D5b*5uOrkG2CtHYdVDFcClS*6NZY0tdG907JeN29yN6yQ9LkEWbmJJ263cL8U9AeHgZZ55I4l8S6vMFih8VDWOSwaAgLHRYOYTOHzU4YdMs5N2gLlUjMBZ12opGWHQHr!QA6*!nZy3G!!ClMQVeGS4WD9uTUbh!scBcp!Y6Sfw2l!WAccP5Bkq7K9kS46Jfd!Z9UmIYwSmIwB5G7rqnfu9Ar7ucWMvdxP29KcBXtPqeO9vuhfP!WUL0SjQ4FbgnVq*jYUGB!S6jeBY4O9Ud3GROq9x5Gh4ovh7JjgW8Z1m1fUiTwc2nHg6BPrKbtLMgeuR04S8kUlXoumTFhdML1dGFKL7yutP8v6P3now__/results,2 17786,http://cobf.websitetoolbox.com,2 17787,http://www.hha.org.uk,2 17788,http://coalvillesc.easysearch.org.uk,2 17789,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVUtvozAQ*jW5VAryI7yOUJI0l2617J4tarspbYKpTZr9!esHBNEmFckplXphPDOfZ*zNmLESspngbIIC1RR2CfT6TctaqGaC0hfxqA2V5Gq3aZS2QwNQehspFOUVK6t1t8t7FHoTZ3dlo7xfv21cH0U6iiz2O7nRGk6MCT03TW0Wre6jRSv2!73HSslp463Fu7d7be21FIxQUandlrB1aywZrTdOwYsVozmX7yXlzpDlOVnO*5CHZDl3!ECpTND7YtshsiWBAGAA8axFrHKS5w9*Wz!0Z9WfMN2as2eGi49ulVWAcWiGqbHFWmrGTrkexpVgfMU6OgCOpBl!Z5oIopE0gy9o*tzmK2*zz20!5zZvCjumeeUmfVNSIovqVQ9vwv*VerqrUlT9FR98toUy*PzURNKlsMLPblAb3EdpD4kcJLKQD77Q!cJjvsD5gmM!3*n8Y76Z8806H3afw9mwbVmkqJB82i*NatETsMhb0OOnB5TjfHIrTkBfhlOFwzZyYsU3K9xJStBRgudQio*mAYcfLuqrbCPi!bDsDt!pOPFxEIUgBoFr1xQOGnpGfy4hcx39!VCCs2gPOfW0v04F4SWpBiUanQpckmpQ8bGpQHxJqkEDR6f6NF3GpBrch9GpwtOp7LMg1iXVY1*xQtJnYp8HyZ*Kimvj1L5qCxTG*wGpCQir/results,2 17790,http://www.whittle-le-woods.lancsngfl.ac.uk,2 17791,http://www.because.org.uk,2 17792,http://www.beautyserve.com,2 17793,http://www.beauchamphouse.co.uk,2 17794,http://www.justlearning.me.uk,2 17795,http://www.ecoledirecte.com,2 17796,http://www.beastsofwar.com,2 17797,http://www.manpower.co.uk,2 17798,http://www.wholeu.co.uk,2 17799,http://accesscontracts.extra.bt.com,2 17800,http://www.raddlebarn.co.uk,2 17801,http://www.wickes.co.uk,2 17802,http://www.beachcombertours.co.uk,2 17803,http://www.k-h-t.org,2 17804,http://www.ifwecanhelpblackpool.co.uk,2 17805,http://www.ecohouseagent.com,2 17806,http://www.manuden.essex.sch.uk,2 17807,http://www.wigancommunitylearning.com,2 17808,http://schoolsfinder.direct.gov.uk/8812690/overview/,2 17809,http://cn.mc921.mail.yahoo.com,2 17810,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Agencyworkersandemploymentagencies/DG_198949,2 17811,http://www.rafalconbury.com,2 17812,http://www.bcs.org,2 17813,http://access-trading.com,2 17814,http://cmsweb.cardiff.gov.uk,2 17815,http://cmsserv1,2 17816,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Agencyworkersandemploymentagencies/DG_198930,2 17817,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Agencyworkersandemploymentagencies/DG_198927,2 17818,http://www.bcnh.co.uk,2 17819,http://www.bcmtouring.com,2 17820,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Agencyworkersandemploymentagencies/DG_198917,2 17821,http://www.bch.co.uk,2 17822,http://www.igd.com,2 17823,http://www.wikaniko.com,2 17824,http://cms.gold.ac.uk,2 17825,http://www.drivesmith.co.uk,2 17826,http://cms,2 17827,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVk1vozAQ*TW5VAqycfk6QknSXrpV2T1b1LgJKsGpbZr9!fUHCaINK8KpK3HBnnmDn9!bMIpgXC5QunD9d7XsWCPKertwkxda09dSqnzNqWgqKRQMgYqFegPngtC60KUo1cl354UxIWlxX0rh*Ho2R3puqE7i!bHhlYpQrFPuTsqD3rSx567b5Xg8OkXJKZHOln04zVubP3BWYMJq0exxsW2TZUEOlQ3Q!qEgGeUfJaE2kWYZ3qx!46d4s7L1vhApI4*5*lSRbjAEAIaR67cVDxnOsqc*LQ7NXdUjSPb67qnW4rl3wgRAA0phonOR0l*lxgpaa4NkLkuCeV6*KYMw*XtQDoqS1Z0p3x*7XGi9XqKPU9aYxUtv3JbBc5OuJLQloSn5ggUWCy5hvsX8S5hnMe8Sdmux2xOG7ON8N2RaGArCOF12W71bdwJM5R3o6pfnKqt58FUUg86GIeOQOTk2y39m3KAkaCXBayRFF3nA!QMMO5fNiWjVt93Wn0IUe8gPAxAB37ZrCXsNvaI*U8T8jP58seAq2X1Nnex*U0E4hapn0WgqMIWq5*hYKhBNoeo1cDTVt!kyhqr3exhNFQxTRYNU85ifx*w85n9Uf!YxP4*5yWPer9i2JOovvqA5JztM608Z6xf9/results,2 17828,http://www.kab.org.uk,2 17829,http://www.direct.gov.uk/en/YoungPeople/Money/SavingForTheFuture/DG_10027637,2 17830,http://cmhd.easysearch.org.uk,2 17831,http://www.bbpfs.com,2 17832,http://cmabc.easysearch.org.uk,2 17833,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztV01v4jAQ*TVcViJybOKEI2mActmtNrtny3VcGjXY1A5kf*76IxClC1VAWolKXOyZeeMZv5kBjJaqHqFsBLGuqRMhMMq7ETTdl2KtRzClVSUbKhg3snwxyzMX*KWsDYaF4npXGRFloT2pTUBCNeOiMKeN1YULnqXUNS8ezaHgx0!XMYKJCaVos1OV0dDMmuBrXW!t0OoRXLRb0zRBUSrO6mAt98HurbVvlSwIk0LvNqRYt8ayYNvKK2ixKljO1b6097eGLM*Jcv6LPM2Wc!!PhSz4qmhhGMeteZWTPH*63dpDd0GzxOlm5BwTa3nQTgEWMLRSa5ua3dD0yq3SxGg,2 17834,http://www.energysaving.co.uk,2 17835,http://www.bbdrivingschoolleeds.co.uk,2 17836,http://clueless3655.wordpress.com,2 17837,http://club.biberonbg.com,2 17838,http://clpta.easysearch.org.uk,2 17839,http://www.wikijob.co.uk,2 17840,http://cllrlynweber.wordpress.com,2 17841,http://cliveadams.theorytestpro.co.uk,2 17842,http://www.railforums.co.uk,2 17843,http://climbingframe.unionlearn.org.uk,2 17844,http://www.direct.gov.uk/en/YoungPeople/Money/ManagingYourMoney/DG_10027732,2 17845,http://anonym.to,2 17846,http://www.maps.co.uk,2 17847,http://www.wildaboutbritain.co.uk,2 17848,http://www.baxterdrivingschool.co.uk,2 17849,http://www.driveskills.co.uk,2 17850,http://www.wildmoorheath.org.uk,2 17851,http://www.rainbowmotorcycles.com,2 17852,http://www.ecodrivinglesson.co.uk,2 17853,http://www.hove-driving-lessons.co.uk,2 17854,http://www.batoutofldrivingschool.co.uk,2 17855,http://classic.netaddress.com,2 17856,http://www.bathstudentpad.co.uk,2 17857,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzdVUtzmzAQ*jW!dMaMHuHhowm260ubKe2ZkYXGZgISkUTc*Pvqgc2Q2hnsU9oDkna*ZT99uxIoIfUMZzMUvZipIc8V389QSsxDRdPWpOLa2jvR6d5fsp3uYcLfzOpApCRK!TffRGeScclUV2tlckJgbGVoCqIo46UNw5l1vgQ7IZRm5ddKq!D7D7ePECUmiyTHTtbGwkvrQgetW7vo7RCt!!l4PAZlJRnVwV68Bt1z72!lKAsquOqaotz3zqqkbe0NvN6WNGfytaLMO7I8Lzarn8XTcrPy8REXJduWPQxR2Lu3eZHnT79OfrdBM8RpYzecWQEhelTOABYwslLrW5jZyPTG55GpVCboN9KcIrJNAQGAGC3gRMXxf6EYYZhM7XH0geKoJu6MM25Pvia6ooUk3F6tgv1uzdVQleDDaR8NDVFWapjaTKYqbgqzL6hPHqJ0CEl8SOJC3mGxx!JLWOSx6BIWeiy8hD147OGEYT!c94Zd9xJFhWTzYWlX60GAi3wEQ*z8HOU1X30VL8FQhmuFwy7z0k3*WOGuSoJeErxF0uIiDzjfvWSossuIV!Oy!*iTiZchjpIYLEDk2zWHo4be0J97xHyO*rwrwU2yx5oG2R9TQXgP1ahEk6nAPVSjik!lAot7qEYNnEz119dlCtXoPEymiq9Tud!C2FfUfPYVI5IeCsb*AEhMVWw_/results,2 17858,http://www.ramsdale.org,2 17859,http://www.bathrowmedicalpractice.co.uk,2 17860,http://www.direct.gov.uk/en/Employment/TradeUnions/Tradeunionmembership/DG_179201,2 17861,http://www.ignitionschoolofmotoring.com,2 17862,http://www.karenbeaumontdrivingschool.co.uk,2 17863,http://amsterdam.angloinfo.com,2 17864,http://www.karensdrivingschool.co.uk,2 17865,http://www.karlclarkedriving.co.uk,2 17866,http://citywaysom.co.uk,2 17867,http://citypoint,2 17868,http://www.direct.gov.uk/en/AdvancedSearch/search/,2 17869,http://www.basmind.org,2 17870,http://www.basisnetwork.org,2 17871,http://schoolsfinder.direct.gov.uk/8554601/overview/,2 17872,http://schoolsfinder.direct.gov.uk/8554049/overview,2 17873,http://www.nhslothian.scot.nhs.uk,2 17874,http://www.rapidedrivingschool.com,2 17875,http://cinemaholics.net,2 17876,http://cilt.org.uk,2 17877,http://cieh.org,2 17878,http://www.nhsonline.net,2 17879,http://www.nhstayside.scot.nhs.uk,2 17880,http://churchsafe.org.uk,2 17881,http://www.bartholomewmaps.com,2 17882,http://www.willharringtons.co.uk,2 17883,http://www.rarechromo.org,2 17884,http://www.nhwsteyning.org.uk,2 17885,http://www.williamallitt.derbyshire.sch.uk,2 17886,http://schoolsfinder.direct.gov.uk/8507000/overview/,2 17887,http://www.maritime-edge.net,2 17888,http://www.williamdrivingschool.co.uk,2 17889,http://www.barrycomp.com,2 17890,http://chrissdrivingtuition.co.uk,2 17891,http://www.direct.gov.uk/en/employment/tradeunions/dg_10027544,2 17892,http://www.direct.gov.uk/dr_consum_dg/*,2 17893,http://academyschoolofmotoring.co.uk,2 17894,http://www.dunnehl.com,2 17895,http://chrisdoran.easysearch.org.uk,2 17896,http://annisbetweenworlds.blogspot.com,2 17897,http://schoolsfinder.direct.gov.uk/8502027/school-profile/,2 17898,http://www.kasdsa.co.uk,2 17899,http://chqflag.theorytestpro.co.uk,2 17900,http://www.direct.gov.uk/cy/YoungPeople/index.htm,2 17901,http://www.direct.gov.uk/cy/YoungPeople/HealthAndRelationships/KeepingHealthy/DG_10030623CY,2 17902,http://www.ravanchenas.blogsky.com,2 17903,http://www.rawlinscollege.org.uk,2 17904,http://www.barnsley-driving-instructor.co.uk,2 17905,http://www.direct.gov.uk/en/YoungPeople/Money/DebtAndYou/DG_10027628,2 17906,http://childsafety.direct.gov.uk/index.html,2 17907,http://www.markgrundy-som.co.uk,2 17908,http://www.direct.gov.uk/cy/YoungPeople/CrimeAndJustice/TypesOfCrime/DG_10027721CY,2 17909,http://www.barnet.nhs.uk,2 17910,http://www.direct.gov.uk/en/Employment/StartingANewJob/DG_10026524,2 17911,http://www.raymondschoolofdriving.co.uk,2 17912,http://www.katherinesemar-inf.essex.sch.uk,2 17913,http://childrenscentresfinder.direct.gov.uk/cc8336/overview/,2 17914,http://www.barlo.org.uk,2 17915,http://www.marklane-cdi.co.uk,2 17916,http://www.katiemanleydriving.co.uk,2 17917,http://www.barlborough.org,2 17918,http://www.rays-drivingschool.co.uk,2 17919,http://www.niassembly.gov.uk,2 17920,http://www.barkantine.nhs.uk,2 17921,http://www.direct.gov.uk/en/YoungPeople/Money/DebtAndYou/DG_10027627,2 17922,http://www.emersonpark.havering.sch.uk,2 17923,http://www.direct.gov.uk/cy/TravelAndTransport/Passports/Loststolenordamagedpassports/DG_174162CY,2 17924,http://schoolsfinder.direct.gov.uk/8265400/overview/,2 17925,http://www.barclaysmoneyskills.com,2 17926,http://www.rbfrs.co.uk,2 17927,http://www.rbs.com,2 17928,http://acad.hhc.ac.uk,2 17929,http://airtelforum.com,2 17930,http://www.drivesafely4life.com,2 17931,http://www.rbsip.com,2 17932,http://www.rca.ac.uk,2 17933,http://www.banut.net,2 17934,http://www.ihbristol.com,2 17935,http://www.markstanleydrivertraining.co.uk,2 17936,http://www.bansteadschoolofmotoring.co.uk,2 17937,http://www.banksroad.ik.org,2 17938,http://www.markwhalendrivingtuition.co.uk,2 17939,http://www.ecodomus.co.uk,2 17940,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Employmenttribunals/DG_186468,2 17941,http://www.direct.gov.uk/cy/TravelAndTransport/Foreigntravel/IfThingsGoWrong/DG_4000027CY,2 17942,http://www.nicedriving.co.uk,2 17943,http://www.nichollsschoolofmotoring.co.uk,2 17944,http://www.direct.gov.uk/cy/TravelAndTransport/Foreigntravel/AirTravel/DG_198925CY,2 17945,http://www.direct.gov.uk/cy/TravelAndTransport/Foreigntravel/AirTravel/DG_176737CY,2 17946,http://www.drivesafedrivingschool.co.uk,2 17947,http://www.marlboroughnursery.co.uk,2 17948,http://schoolsfinder.direct.gov.uk/8033300/overview/,2 17949,http://www.marlboroughschool.ik.org,2 17950,http://www.marlboroughtowncouncil.gov.uk,2 17951,http://childrensbehavior.creativesolutionsmall.com,2 17952,http://www.rcht.nhs.uk,2 17953,http://www.balliol.ox.ac.uk,2 17954,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/StatePension/StatePensionforecast/DG_10014008CY,2 17955,http://www.ballardschool.co.uk,2 17956,http://www.martinherbertdriving.co.uk,2 17957,http://www.bali.org.uk,2 17958,http://www.keepitquiet.co.uk,2 17959,http://www.bajrfed.co.uk,2 17960,http://www.emergencynorthyorks.gov.uk,2 17961,http://www.baileyscourt.com,2 17962,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/StatePension/Basicstatepension/DG_10026707CY,2 17963,http://www.willow-tree.ik.org,2 17964,http://www.rcshaven.org.uk,2 17965,http://www.bagsshop.co.uk,2 17966,http://www.willpassdrivingschool.co.uk,2 17967,http://www.rcsolicitors.co.uk,2 17968,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/StatePension/AdditionalStatePension/DG_4017827CY,2 17969,http://www.badscience.net,2 17970,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/PlanningForRetirement/DG_183705CY,2 17971,http://www.keepsundayspecial.org.uk,2 17972,http://www.baddia.co.uk,2 17973,http://www.martinsdrivingschool.net,2 17974,http://www.wilmingtonpc.kentparishes.gov.uk,2 17975,http://schoolsfinder.direct.gov.uk/3824021/overview/,2 17976,http://www.nigma.ru,2 17977,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Companyandpersonalpensions/Startingacompanyorpersonalpension/DG_183744CY,2 17978,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/DG_199634,2 17979,http://www.direct.gov.uk/en/Motoring/LearnerAndNewDrivers/PracticalTest/DG_173040,2 17980,http://www.read.lancs.sch.uk,2 17981,http://www.nikko.ch,2 17982,http://chat.deviantart.com,2 17983,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Benefits/ConcessionsAndOtherHelp/index.htm,2 17984,http://www.wiltshiresom.com,2 17985,http://www.martysdrivingschool.com,2 17986,http://adi8735.theorytestpro.co.uk,2 17987,http://www.winchcombefarmdaynursery.co.uk,2 17988,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/FamilyAndRelationships/index.htm,2 17989,http://channel9.msdn.com,2 17990,http://www.readingfestival.com,2 17991,http://www.baby.ru,2 17992,http://www.marycreagh.co.uk,2 17993,http://www.babiesandall.com,2 17994,http://ch.search.yahoo.com,2 17995,http://www.readingmencap.org.uk,2 17996,http://www.direct.gov.uk/cy/Parents/Yourchildshealthandsafety/WorriedAbout/index.htm,2 17997,http://www.winchesterdriving.co.uk,2 17998,http://www.dundeecab.org,2 17999,http://www.kellettsdrivingschool.co.uk,2 18000,http://www.mass.org.uk,2 18001,http://cf.ac.uk,2 18002,http://cetatenie-romana.info,2 18003,http://www.ba.notts.sch.uk,2 18004,http://ceshics.mfa.gov.cn,2 18005,http://www.master-builders.co.uk,2 18006,http://www.equitimo.com,2 18007,http://www.windsordrivingschool.com,2 18008,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/ConcernedAbout/DG_183882,2 18009,http://www.holtsacademy.com,2 18010,http://www.reallygooddrivingschoolglasgow.com,2 18011,http://www.maternal-and-early-years.org.uk,2 18012,http://cem.ac.uk,2 18013,http://www.direct.gov.uk/cy/Parents/Moneyandworkentitlements/WorkAndFamilies/Parentalleaveandflexibleworking/index.htm,2 18014,http://www.direct.gov.uk/cy/Parents/Moneyandworkentitlements/WorkAndFamilies/Adoptionrightsintheworkplace/index.htm,2 18015,http://www.aywas.com,2 18016,http://absolutedriving.theorytestpro.co.uk,2 18017,http://www.nks.kent.sch.uk,2 18018,http://cdrex.com,2 18019,http://schoolsfinder.direct.gov.uk/3414429/overview/,2 18020,http://www.rebletting.co.uk,2 18021,http://www.aylesbury.ac.uk,2 18022,http://www.direct.gov.uk/en/employment/redundancyandleavingyourjob/dismissal/index.htm,2 18023,http://ccllpoole.easysearch.org.uk,2 18024,http://ccgt.easysearch.org.uk,2 18025,http://www.maths.manchester.ac.uk,2 18026,http://www.axappphealthcarebusinessblog.co.uk,2 18027,http://www.axabesupported.co.uk,2 18028,http://www.aws.gov.uk,2 18029,http://www.hillspet.no,2 18030,http://cbsinet,2 18031,http://www.wirralmums.com,2 18032,http://www.direct.gov.uk/cy/Parents/Adoptionfosteringandchildrenincare/AdoptionAndFostering/DG_100172,2 18033,http://www.wirralwell.org,2 18034,http://cbf1000.com,2 18035,http://www.awardlist.co.uk,2 18036,http://schoolsfinder.direct.gov.uk/3401100/overview/,2 18037,http://www.duncanbicknell.co.uk,2 18038,http://cbci.cbc.local,2 18039,http://catwalk.catlin.com,2 18040,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/DG_10029836,2 18041,http://www.direct.gov.uk/cy/Motoring/OwningAVehicle/HowToTaxYourVehicle/DG_4022117CY,2 18042,http://www.direct.gov.uk/cy/Motoring/LearnerAndNewDrivers/TheoryTest/index.htm,2 18043,http://www.nltg.co.uk,2 18044,http://www.avoncoroner.com,2 18045,http://casetracker.justice.gov.uk,2 18046,http://casabill.blogspot.com,2 18047,http://www.avonandbristollawcentre.org.uk,2 18048,http://www.wiseknight.com,2 18049,http://www.wiseowls.co.uk,2 18050,http://carrs.theorytestpro.co.uk,2 18051,http://www.kent.fire-uk.org,2 18052,http://www.recycle-more.co.uk,2 18053,http://www.avicp.co.uk,2 18054,http://www.wisestart.co.uk,2 18055,http://caringforourfuture.dh.gov.uk,2 18056,http://carfweb.org,2 18057,http://www.avgthreatlabs.com,2 18058,http://10to2drivingschool.theorytestpro.co.uk,2 18059,http://www.dumville.org,2 18060,http://www.avenuedesecoles.com.,2 18061,http://careuk.com,2 18062,http://carerstogether.easysearch.org.uk,2 18063,http://10thoxfordsg.easysearch.org.uk,2 18064,http://www.witchs-brew.org,2 18065,http://careers.bmj.com,2 18066,http://109.74.4.113:8080,2 18067,http://schoolsfinder.direct.gov.uk/3304084/school-profile/,2 18068,http://www.witham.gov.uk,2 18069,http://www.avclub.gr,2 18070,http://care2.easysearch.org.uk,2 18071,http://106owners.co.uk,2 18072,http://cardiff.ac.uk,2 18073,http://www.howarth-timber.co.uk,2 18074,http://www.redarrowdrivingschool.co.uk,2 18075,http://caravanchannel.proboards.com,2 18076,http://schoolsfinder.direct.gov.uk/3204072/overview/,2 18077,http://www.avagodriving.co.uk,2 18078,http://www.nndb.com,2 18079,http://www.autoweb.co.uk,2 18080,http://www.nnwfhs.org.uk,2 18081,http://www.autotechnik.uk.com,2 18082,http://www.ikubeinsurance.com,2 18083,http://www.redcliffe.org,2 18084,http://cancerresearchuk.easysearch.org.uk,2 18085,http://schoolsfinder.direct.gov.uk/3186907/overview,2 18086,http://ablemagazine.co.uk,2 18087,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/TaxOnPropertyAndRentalIncome/DG_10014027CY,2 18088,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/TaxOnBenefitsPensionsAndMaintenance/DG_172143CY,2 18089,http://schoolsfinder.direct.gov.uk/3182018/overview,2 18090,http://www.wldia.org.uk,2 18091,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/TaxOnBenefitsPensionsAndMaintenance/,2 18092,http://www.automaticdrivingschoolwirral.co.uk,2 18093,http://campaigns2.direct.gov.uk/money4mum2be/en/alerts.jsp,2 18094,http://www.wmjobs.co.uk,2 18095,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/Drivingtestsforlorriesbusesandcoaches/index.htm,2 18096,http://www.dulwich-beijing.cn,2 18097,http://campaigns.direct.gov.uk/taxcreditsvideos/index.html,2 18098,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/Drivingtestsforlorriesbusesandcoaches/DG_4022526,2 18099,http://www.wmsolicitors.com,2 18100,http://www.noeldrivingschool.co.uk,2 18101,http://www.ilikedriving.co.uk,2 18102,http://www.reddi2drive.com,2 18103,http://www.automatic-driving-instructor-basingstoke.co.uk,2 18104,http://campaigns.direct.gov.uk/actonco2/home/on-the-move/driving-your-car.html,2 18105,http://www.autolearn-driving-lessons-durham.co.uk,2 18106,http://adi79831.theorytestpro.co.uk,2 18107,http://www.redditchdogwalkingandpetcare.co.uk,2 18108,http://www.wnsc.ac.uk,2 18109,http://www.autocrew.co.uk,2 18110,http://campaigns.direct.gov.uk/actonco2/home/,2 18111,http://www.direct.gov.uk/en/YoungPeople/DG_10034796,2 18112,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/otherbenefits/DG_172873CY,2 18113,http://www.redferns-solicitors.com,2 18114,http://www.woahsearch.com,2 18115,http://schoolsfinder.direct.gov.uk/3115402/overview/,2 18116,http://www.wolfiesdrivingschool.co.uk,2 18117,http://camden-essentials.lbcamden.net,2 18118,http://www.redfieldedge.ik.org,2 18119,http://cambridgeuk.org.uk,2 18120,http://www.howdenjoinerypensions.co.uk,2 18121,http://x3dcx.enjin.com,2 18122,http://www.autism-whatnext.com,2 18123,http://www.auswandern-webforum.de,2 18124,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/DG_181705,2 18125,http://www.ilkestonservice.co.uk,2 18126,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/,2 18127,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Ifthingsgowrong/Overpayments/DG_073813CY,2 18128,http://www.wolverhamptoncab.org,2 18129,http://able.askham-bryan.ac.uk,2 18130,http://cafedillo.org.uk,2 18131,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/DG_178884,2 18132,http://www.aussieeducator.org.au,2 18133,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/DG_177331,2 18134,http://cache.yahoofs.jp,2 18135,http://www.nolanschoolofmotoring.co.uk,2 18136,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/Mistakesonyourclaim/DG_175630CY,2 18137,http://www.aupairagency.com,2 18138,http://schoolsfinder.direct.gov.uk/3094703/overview/,2 18139,http://www.wolvesunion.org,2 18140,http://www.women-on-the-road.com,2 18141,http://www.direct.gov.uk/en/YoungPeople/DG_10016105,2 18142,http://ca.mg5.mail.yahoo.com,2 18143,http://ca.mg4.mail.yahoo.com,2 18144,http://www.mawwfire.gov.uk,2 18145,http://www.redlandsschool.co.uk,2 18146,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingMoney/PlanningYourPersonalFinances/DG_10013642CY,2 18147,http://www.howedell.herts.sch.uk,2 18148,http://ca.ask.com,2 18149,http://www.audita.co.uk,2 18150,http://c3.one.lv,2 18151,http://www.nonslipsp.co.uk,2 18152,http://www.duffielddrivingschool.co.uk,2 18153,http://www.attorneygeneral.gov.uk,2 18154,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/DG_10018750,2 18155,http://www.womenswheels.org.uk,2 18156,http://schoolsfinder.direct.gov.uk/3066906/overview/,2 18157,http://www.kerrycarandcommercial.co.uk,2 18158,http://schoolsfinder.direct.gov.uk/3065900/overview/,2 18159,http://schoolsfinder.direct.gov.uk/3065403/school-profile/,2 18160,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/Youngpeopleservingyoursentence/DG_196441,2 18161,http://www.woodlands.n-yorks.sch.uk,2 18162,http://schoolsfinder.direct.gov.uk/3065201/overview/,2 18163,http://www.woodleycentresurgery.co.uk,2 18164,http://www.reducingroadcasualties.com,2 18165,http://www.atlasms.co.uk,2 18166,http://www.atlasdrivinggroup.co.uk,2 18167,http://www.maydaytrust.org.uk,2 18168,http://www.atlanticstardrivingschool.co.uk,2 18169,http://www.woodward-group.co.uk,2 18170,http://adi72852.theorytestpro.co.uk,2 18171,http://www.maylands.org,2 18172,http://www.atl.org.uk,2 18173,http://www.mbapursuit.com,2 18174,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Paymentsandentitlements/ChildBenefitpayment/DG_173683CY,2 18175,http://www.nordanglia.com,2 18176,http://www.ehso.com,2 18177,http://www.driverightnow.co.uk,2 18178,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/,2 18179,http://www.asylum-support-tribunal.gov.uk,2 18180,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018679CY,2 18181,http://www.refugeecouncil-intranet.org.uk,2 18182,http://www.refugeecouncil.org.uk,2 18183,http://www.refugeetoolkit.org.uk,2 18184,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/Typesofsentencesyoungpeoplecanget/DG_196435,2 18185,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_10018913CY,2 18186,http://www.astarmotorcycletraining.co.uk,2 18187,http://bul.proz.com,2 18188,http://www.astardt.co.uk,2 18189,http://www.astards.com,2 18190,http://www.astardrivingschool.co.uk,2 18191,http://www.workafterkids.co.uk,2 18192,http://buckleup.theorytestpro.co.uk,2 18193,http://www.assuredriving.com,2 18194,http://adi67455.theorytestpro.co.uk,2 18195,http://bttwip.drivingtheory4all.co.uk,2 18196,http://www.regendahomes.co.uk,2 18197,http://btid.intra.bt.com,2 18198,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_186001CY,2 18199,http://www.assistantsinfrance.com,2 18200,http://www.workingforwellness.org.uk,2 18201,http://www.ilo.org,2 18202,http://bst-secure.com,2 18203,http://www.keyemployment.co.uk,2 18204,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Caringforsomeone/DG_10018921CY,2 18205,http://bs178:1776,2 18206,http://www.asquithnurseries.com,2 18207,http://www.keyletting.com,2 18208,http://brunelstudents.com,2 18209,http://brr.easysearch.org.uk,2 18210,http://browsersize.googlelabs.com,2 18211,http://broomfieldducklingspg.easysearch.org.uk,2 18212,http://www.keyschoolofmotoring.co.uk,2 18213,http://www.northamptonshire.nhs.uk,2 18214,http://www.keyskillsdriving.co.uk,2 18215,http://www.mccormickschoolofmotoring.com,2 18216,http://aberdeencitydev,2 18217,http://www.direct.gov.uk/cy/HomeAndCommunity/WhereYouLive/Streetcleaninglitterandillegaldumping/DG_4001703CY,2 18218,http://schoolsfinder.direct.gov.uk/2104680/school-profile/,2 18219,http://brjc.easysearch.org.uk,2 18220,http://www.workitgibraltar.com,2 18221,http://brits-americans.livejournal.com,2 18222,http://www.asp.nhs.uk,2 18223,http://britishmedalforum.com,2 18224,http://www.workplacedoctors.co.uk,2 18225,http://schoolsfinder.direct.gov.uk/2096905/overview/,2 18226,http://www.workplacelaw.net,2 18227,http://www.northbaddesley-inf.org.uk,2 18228,http://www.workprogramme.org.uk,2 18229,http://www.asmed.ro,2 18230,http://www.northbournemouth.childrencentre.org,2 18231,http://www.asm-som.co.uk,2 18232,http://britannia.co.uk,2 18233,http://www.howellslegal.co.uk,2 18234,http://www.worksmanagement.co.uk,2 18235,http://www.kgv.ac.uk,2 18236,http://www.direct.gov.uk/cy/HomeAndCommunity/Planning/BuildingRegulations/DG_10014147CY,2 18237,http://www.askted.org.uk,2 18238,http://www.worksop.com,2 18239,http://bristol.gov.uk,2 18240,http://www.world711.com,2 18241,http://www.askpedia.com,2 18242,http://www.mcnninjas.co.uk,2 18243,http://brigadiri.com,2 18244,http://www.howetopass.com,2 18245,http://bridgwaterhog.co.uk,2 18246,http://www.kidicareltd.co.uk,2 18247,http://www.askhutch.pwp.blueyonder.co.uk,2 18248,http://www.md2000.co.uk,2 18249,http://brianlsl.theorytestpro.co.uk,2 18250,http://www.askgoogle.net,2 18251,http://brianboydschoolofmotoring.co.uk,2 18252,http://www.kidney.org.uk,2 18253,http://www.askcedric.org.uk,2 18254,http://www.worldatlas.com,2 18255,http://www.askaprice.com,2 18256,http://www.rememberland.co.uk,2 18257,http://breakaway.sotsys.com,2 18258,http://www.mdctrailblazers.org,2 18259,http://brazilianvwbay.forumotion.com,2 18260,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/TypesOfCrime/DG_10027698,2 18261,http://www.ask4udrive.co.uk,2 18262,http://www.direct.gov.uk/cy/HomeAndCommunity/Gettinginvolvedinyourcommunity/Volunteering/DG_064405CY,2 18263,http://bradford.schooljotter.com,2 18264,http://bradford.ac.uk,2 18265,http://www.direct.gov.uk/cy/HomeAndCommunity/BuyingAndSellingYourHome/MobileHousing/DG_10029631CY,2 18266,http://www.removalmarket.co.uk,2 18267,http://www.direct.gov.uk/cy/HomeAndCommunity/BuyingAndSellingYourHome/MobileHousing/,2 18268,http://br.mc1616.mail.yahoo.com,2 18269,http://www.ashtonvalepreschool.co.uk,2 18270,http://br.mc1108.mail.yahoo.com,2 18271,http://www.kidswithdiabetesinsouthport.co.uk,2 18272,http://www.stevetopass.com,2 18273,http://br-cbtsvr1:8080,2 18274,http://www.ashteadresidents.org.uk,2 18275,http://schoolhillsurgery.virtualgp.net,2 18276,http://www.ashmountprimary.co.uk,2 18277,http://www.meadgate.essex.sch.uk,2 18278,http://www.worthing-driving-school.co.uk,2 18279,http://www.northdowns.surrey.sch.uk,2 18280,http://www.ashleymilton.com,2 18281,http://boroughofpoole.com,2 18282,http://bor.toolbarhome.com,2 18283,http://scfm.easysearch.org.uk,2 18284,http://www.ashleydrivingschool.co.uk,2 18285,http://www.meareprimary.co.uk,2 18286,http://www.stewartlaw.co.uk,2 18287,http://booking.snowjet.co.uk,2 18288,http://www.wpic.co.uk,2 18289,http://www.direct.gov.uk/en/Employment/Employees/WorkingHoursAndTimeOff/DG_10037051,2 18290,http://www.wps-development.co.uk,2 18291,http://www.kieskleurtegenpesten.be,2 18292,http://www.killickstreet.co.uk,2 18293,http://www.northeast.groundwork.org.uk,2 18294,http://www.kilmorieschool.co.uk,2 18295,http://scantec-sbs01:4256,2 18296,http://scamps.forumotion.co.uk,2 18297,http://bobsdrivingschool.co.uk,2 18298,http://www.wrekinsport.co.uk,2 18299,http://boards.mpora.com,2 18300,http://www.direct.gov.uk/cy/Governmentcitizensandrights/GettingLegalAdvice/Gettinglegaladviceandlegalaid/index.htm,2 18301,http://www.wrenn.northants.sch.uk,2 18302,http://sblintranet.sbl.co.uk,2 18303,http://www.meassociation.org.uk,2 18304,http://www.ashcombe.surrey.sch.uk,2 18305,http://www.wrighthassall.co.uk,2 18306,http://www.wrightwaytolearn.co.uk,2 18307,http://bn.wikipedia.org,2 18308,http://www.ashbyenergy.co.uk,2 18309,http://sb-mycollege,2 18310,http://bmail.uol.com.br,2 18311,http://www.rental-deposits.co.uk,2 18312,http://savvywoman.co.uk,2 18313,http://savvycitizens.bcs.org,2 18314,http://savetherhinotrust.org,2 18315,http://bluebadge.direct.gov.uk/index.html,2 18316,http://www.mediacoms.co.uk,2 18317,http://saudiclub-le.net,2 18318,http://blogs.redcross.org.uk,2 18319,http://www.ase.org.uk,2 18320,http://www.rentaliz.com,2 18321,http://www.asdfamilyhelp.org,2 18322,http://www.rentamotorcycle.co.uk,2 18323,http://www.rentdss.com,2 18324,http://www.medianrecruit.co.uk,2 18325,http://www.kimharding.net,2 18326,http://www.wte-ltd.co.uk,2 18327,http://sandrayeadon.com,2 18328,http://sandra.theorytestpro.co.uk,2 18329,http://www.ascollege.org,2 18330,http://blog2.wflack.com,2 18331,http://www.ascl.org.uk,2 18332,http://www.aschamhomes.org.uk,2 18333,http://blog.udn.com,2 18334,http://blog.thomsonlocal.com,2 18335,http://blog.theatredigsbooker.com,2 18336,http://samsung.uk.msn.com,2 18337,http://blog.taxassist.co.uk,2 18338,http://www.reocities.com,2 18339,http://sameimichael.theorytestpro.co.uk,2 18340,http://www.medicalnewstoday.com,2 18341,http://www.stgeorges.wirral.sch.uk,2 18342,http://www.direct.gov.uk/cy/Governmentcitizensandrights/Dealingwithemergencies/Supportafteramajorincident/DG_076342CY,2 18343,http://www.www.facebook.com,2 18344,http://blog.recordsbackground.com,2 18345,http://salmon0926.blogspot.com,2 18346,http://salisburyu3a.org.uk,2 18347,http://salford.gov.uk,2 18348,http://www.medicalprotection.org,2 18349,http://www.driverabc.talktalk.net,2 18350,https://secure2.epdq.co.uk,2 18351,http://www.kindfinancialservices.com,2 18352,http://www.northernguild.org,2 18353,http://safidrivingschool.co.uk,2 18354,http://www.resalemobilehomesinspain.co.uk,2 18355,http://blog.housingcare.org,2 18356,http://safetyfirstdrivingschool.co.uk,2 18357,http://safetyfirst.theorytestpro.co.uk,2 18358,http://www.northernireland.gov.uk,2 18359,http://blog.evanscycles.com,2 18360,http://safesearch.ask.com,2 18361,http://www.northernminis.com,2 18362,http://blog.educastur.es,2 18363,http://blog.edlanta.com,2 18364,http://www.sthelenslife.net,2 18365,http://saferiders.co.uk,2 18366,http://blog.dri-members.co.uk,2 18367,http://blog.divorce-online.co.uk,2 18368,http://blog.decc.gov.uk,2 18369,http://www.wyldecrestparks.com,2 18370,http://safehaven.easysearch.org.uk,2 18371,http://10.39.80.89,2 18372,http://safeguardingchildrenservices.easysearch.org.uk,2 18373,http://www.residential-property.judiciary.gov.uk,2 18374,http://www.northernmoney.org.uk,2 18375,http://saedin.com,2 18376,http://www.kingedwardvi.devon.sch.uk,2 18377,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Greenertravel/Airtravelandgreenerholidays/DG_064406CY,2 18378,http://blindsearch.fejus.com,2 18379,http://s8-eu.ixquick.com,2 18380,http://s660a0015,2 18381,http://s6-eu.ixquick.com,2 18382,http://www.direct.gov.uk/en/youngpeople/crimeandjustice/keepingsafe/index.htm,2 18383,http://blekko-webcache.com,2 18384,http://blbwt.easysearch.org.uk,2 18385,https://www2.dwp.gov.uk,2 18386,http://www.wzemi.com,2 18387,http://www.mediterranean-cruise-ports-easy.com,2 18388,http://s368304770.websitehome.co.uk,2 18389,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Greenerlifestyles/DG_064440CY,2 18390,http://www.resultdrivingschool.com,2 18391,http://blackcatdriving.com,2 18392,http://s1.itseeze.co.uk,2 18393,http://animascorp.co.uk,2 18394,http://www.stillness-inf.lewisham.sch.uk,2 18395,http://www.xavierautoclinic.com,2 18396,http://www.xcar.com.cn,2 18397,http://blackboard.gcal.ac.uk,2 18398,http://blackboard.don.ac.uk,2 18399,http://ryedale.gov.uk,2 18400,http://blackberry-driving.co.uk,2 18401,http://www.medwaydys.org,2 18402,http://adi62734.theorytestpro.co.uk,2 18403,http://www.xendpay.pl,2 18404,http://ryankett.hubpages.com,2 18405,http://rxhws001,2 18406,http://www.arrowdrivingschool.co.uk,2 18407,http://www.medwayfisd.com,2 18408,http://www.xlar8drivingschool.co.uk,2 18409,http://www.retirementdirectory.co.uk,2 18410,http://russellgroup.org,2 18411,http://ruslon.com,2 18412,http://rushden.www.thederbyshire.co.uk,2 18413,http://www.driver-tuition.com,2 18414,http://www.xtras-online.co.uk,2 18415,http://www.aroarinsuccess.com,2 18416,http://www.arnoldmill.ik.org,2 18417,http://www.stirlingcab.org.uk,2 18418,http://www.megafunuk.co.uk,2 18419,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_197550,2 18420,http://www.armycadets.com,2 18421,http://www.driver-training-northeast.co.uk,2 18422,http://www.retro-renault.com,2 18423,http://www.armchairlaners.co.uk,2 18424,http://www.driver-skills.co.uk,2 18425,http://www.armagh.gov.uk,2 18426,http://www.yatessom.co.uk,2 18427,http://www.ybs.co.uk,2 18428,http://www.armadale.org.uk,2 18429,http://www.ycscomputers.co.uk,2 18430,http://www.stivoschool.org,2 18431,http://www.yde.org.uk,2 18432,http://rsplumbheat.co.uk,2 18433,http://www.arkseysom.co.uk,2 18434,http://www.yesil-kalsin.org,2 18435,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185875,2 18436,http://www.yhgfl.net,2 18437,http://www.melf.nl,2 18438,http://www.ymlp.com,2 18439,http://www.ariesdrivingschool.co.uk,2 18440,http://www.ynysmon.gov.uk,2 18441,http://www.ariane-info.com,2 18442,http://10.147.1.206,2 18443,http://www.yogasisters.co.uk,2 18444,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/Ifyoungpeoplegetintroublewiththelaw/index.htm,2 18445,http://bjse.blog.163.com,2 18446,http://biznut.co.uk,2 18447,http://biz.centurylink.net,2 18448,http://www.stjohns.kingston.sch.uk,2 18449,http://bitly.com,2 18450,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/Ifyoungpeoplegetintroublewiththelaw/DG_196396,2 18451,http://bishopstortfordmontessori.co.uk,2 18452,http://www.direct.gov.uk/cy/Employment/Jobseekers/ContactJobcentrePlus/DG_186347CY,2 18453,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185783,2 18454,http://bishopburton.strawberrydevelopment.co.uk,2 18455,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/Ifyoungpeoplegetintroublewiththelaw/DG_196375,2 18456,http://route66dundee.theorytestpro.co.uk,2 18457,http://route2000.org.uk,2 18458,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/CrimeAndTheLaw/DG_10028367,2 18459,http://www.direct.gov.uk/cy/Employment/Employees/Sicknessabsence/DG_187161CY,2 18460,http://birchcooper.co.uk,2 18461,http://roundhill.web6.devwebsite.co.uk,2 18462,http://bing.search.sympatico.ca,2 18463,http://billturtondrivingschool.co.uk,2 18464,http://rotherham.theorytestpro.co.uk,2 18465,http://www.archnorthstaffs.org.uk,2 18466,https://webmail.hermes.cam.ac.uk,2 18467,http://bikesmartmotorcycletraining.com,2 18468,http://bikesafe.co.uk,2 18469,http://rotarywestwirral.easysearch.org.uk,2 18470,http://bikeportland.org,2 18471,http://www.archivesenlignes.com,2 18472,http://www.yorketrust.org,2 18473,http://rosevillacare.co.uk,2 18474,http://www.yorkgsa.org,2 18475,http://www.direct.gov.uk/cy/EducationAndLearning/index.htm,2 18476,http://www.revolutiondrivingschool.co.uk,2 18477,http://bigdaddydata.com,2 18478,http://rongilling.co.uk,2 18479,http://rondomotoring.co.uk,2 18480,http://big-net01.big-fund.net,2 18481,http://www.direct.gov.uk/cy/EducationAndLearning/AdultLearning/ImprovingYourSkills/,2 18482,http://www.stjosephslichfield.org.uk,2 18483,http://biblsrc.btk.ppke.hu,2 18484,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/CrimeAndTheLaw/DG_10027682,2 18485,http://rome.angloinfo.com,2 18486,http://biased-bbc.blogspot.com,2 18487,http://bhhpta.easysearch.org.uk,2 18488,http://www.yorkshiredales.org.uk,2 18489,http://www.architectsjournaljobs.com,2 18490,http://3rdhernebayguides.easysearch.org.uk,2 18491,http://adi52235.theorytestpro.co.uk,2 18492,http://www.archery-interchange.net,2 18493,http://www.archersdirect.co.uk,2 18494,http://abc.theorytestpro.co.uk,2 18495,http://www.yorkshiretrikers.co.uk,2 18496,http://beyondourselves.easysearch.org.uk,2 18497,http://bexleyheathacademy.org,2 18498,http://rochdale.gov.uk,2 18499,http://www.mentalhealth-world.org.uk,2 18500,http://www.youclaim.co.uk,2 18501,http://www.ehps.co.uk,2 18502,http://www.arc-uk.org,2 18503,http://www.mentalhealthcarers.org,2 18504,http://www.youmatter.co,2 18505,http://www.mentalhealthwales.net,2 18506,http://www.direct.gov.uk/cy/DisabledPeople/RightsAndObligations/Police/DG_4018606CY,2 18507,http://www.youngeducationservices.co.uk,2 18508,http://roadwisedrivertraining.co.uk,2 18509,http://www.youngfoundation.org,2 18510,http://roadwise.theorytestpro.co.uk,2 18511,http://beta.nottingham.ac.uk,2 18512,http://10.240.25.114,2 18513,http://beta.cssd.ac.uk,2 18514,http://www.younghackney.org,2 18515,http://www.younghealth.co.uk,2 18516,http://www.driveprice.co.uk,2 18517,http://www.direct.gov.uk/cy/DisabledPeople/MotoringAndTransport/PublicAndCommunityTransport/DG_4002764CY,2 18518,http://www.arabianlines.com,2 18519,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185599,2 18520,http://bespoke.edvantage.net,2 18521,http://www.drivepass.co.uk,2 18522,http://berr.gov.uk,2 18523,http://www.apwdrivertraining.co.uk,2 18524,http://berlin.angloinfo.com,2 18525,http://www.rhcfunerals.co.uk,2 18526,http://berkhamstedguides.easysearch.org.uk,2 18527,http://www.youngsdrivingtuition.co.uk,2 18528,http://bentley1.theorytestpro.co.uk,2 18529,http://www.direct.gov.uk/en/Video/Parenting/A/DG_191314,2 18530,http://www.direct.gov.uk/cy/DisabledPeople/HealthAndSupport/HelpWithCosts/index.htm,2 18531,http://www.ribbletonmedicalcentre.co.uk,2 18532,http://www.meresurgery.co.uk,2 18533,http://www.meridianbs.co.uk,2 18534,http://beingthreatened.yolasite.com,2 18535,http://www.northowram-school.co.uk,2 18536,http://www.howtobecome.info,2 18537,http://www.driveondrivingschool.com,2 18538,http://beethoven,2 18539,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185434,2 18540,http://beehappypassing.com,2 18541,http://www.kingsbury.bham.sch.uk,2 18542,http://www.direct.gov.uk/cy/DisabledPeople/FinancialSupport/DisabilityLivingAllowance/index.htm,2 18543,http://www.ricardomattos.com,2 18544,http://riteway-som.co.uk,2 18545,http://www.imiawards.org.uk,2 18546,http://bedfordacademy.co.uk,2 18547,http://www.yourchamber.org.uk,2 18548,http://www.apollodrivinglessons.co.uk,2 18549,http://www.richardavenue.co.uk,2 18550,http://www.yourchildrenscentres.org.uk,2 18551,http://righttomanage.cflabs.org.uk,2 18552,http://bds.theorytestpro.co.uk,2 18553,http://bda.theorytestpro.co.uk,2 18554,http://bd-wm.com,2 18555,http://www.aplusschoolofmotoring.net,2 18556,http://www.direct.gov.uk/cy/DisabledPeople/EducationAndTraining/,2 18557,http://www.yourdrivinglicence.co.uk,2 18558,http://richardbovey.pbworks.com,2 18559,http://www.apis.ac.uk,2 18560,http://www.stmatthewsprimaryschool.co.uk,2 18561,http://www.apho.org.uk,2 18562,http://www.direct.gov.uk/en/Video/Educationandlearning/index.htm,2 18563,http://www.direct.gov.uk/en/Employment/Employees/EmploymentContractsAndConditions/DG_185846,2 18564,http://www.yourfuture-eastmidlands.co.uk,2 18565,http://www.yourfuturechoiceaction.org.uk,2 18566,http://www.yourhorse.co.uk,2 18567,http://10.232.197.194,2 18568,http://www.northumberlandnationalpark.org.uk,2 18569,http://bbs.arukikata.co.jp,2 18570,http://www.apex-hgvtraining.co.uk,2 18571,http://www.apex-foundation.org,2 18572,http://www.apex-driving.co.uk,2 18573,http://bbp-notes-app1.ho.nfumutual.co.uk,2 18574,http://www.direct.gov.uk/cy/Diol1/DoItOnline/Doitonlinemotoring/DG_4017669CY,2 18575,http://www.eclipse.blogs.com,2 18576,http://bbc-staging2,2 18577,http://www.apassngo.co.uk,2 18578,http://bb.westking.ac.uk,2 18579,http://www.direct.gov.uk/cy/Diol1/DoItOnline/DG_4017846CY,2 18580,http://bb.isb.be,2 18581,http://www.yourlondonweddingplanner.co.uk,2 18582,http://www.ducatisti.co.uk,2 18583,http://www.merseyside.police.uk,2 18584,http://revolutiondrivertraining.weebly.com,2 18585,http://www.emendesigns.co.uk,2 18586,http://www.kingshurst.ac.uk,2 18587,http://www.merton.leics.sch.uk,2 18588,http://www.anyjunk.co.uk,2 18589,http://retailtrust.custhelp.com,2 18590,http://www.richardsmotoring.co.uk,2 18591,http://base-uk.org,2 18592,http://www.kingshurst.net,2 18593,http://www.direct.gov.uk/en/Employment/Employees/EmploymentContractsAndConditions/DG_10027514,2 18594,http://restonwaste1-px.rtrk.co.uk,2 18595,http://www.northwickmanorprimary.co.uk,2 18596,http://www.yourpension.org.uk,2 18597,http://barks.easysearch.org.uk,2 18598,http://www.yourpensionservice.org.uk,2 18599,http://www.anti-bullyingalliance.org.uk,2 18600,http://www.direct.gov.uk/cy/CaringForSomeone/CaringAndSupportServices/DG_10016779CY,2 18601,http://bao-bab.pl,2 18602,http://www.anthonysdrivingschoolburntwood.co.uk,2 18603,http://resourcelists.rgu.ac.uk,2 18604,http://bandbautocare.co.uk,2 18605,http://resourcelists.coventry.ac.uk,2 18606,http://www.yoursupportyourchoice.org.uk,2 18607,http://www.imoc.co.uk,2 18608,http://www.northyorkshire.org,2 18609,http://researchpro.dpsk12.org:8311,2 18610,http://www.hoxtonmakeupacademy.co.uk,2 18611,http://www.direct.gov.uk/cy/BritonsLivingAbroad/Moneyabroad/DG_4000102CY,2 18612,http://baesystemspensions.com,2 18613,http://badp.org,2 18614,http://backtoworksupport.com,2 18615,http://www.ant.com,2 18616,http://www.direct.gov.uk/en/Employment/Employees/BusinessTransfersandtakeovers/DG_176402,2 18617,http://abacusbureau.com,2 18618,http://www.ansis.nu,2 18619,http://www.youthmusic.org.uk,2 18620,http://b1.qzone.qq.com,2 18621,http://www.richardtildesleyopticians.co.uk,2 18622,http://www.stoneandco.co.uk,2 18623,http://www.youthpoint.co.uk,2 18624,http://ayrdrivinglessons.co.uk,2 18625,http://aylesburyautocare.co.uk,2 18626,http://www.anonym.to,2 18627,http://awww02:8080,2 18628,http://regainoakleigh.easysearch.org.uk,2 18629,http://awhizz.com,2 18630,http://adi47097.theorytestpro.co.uk,2 18631,http://www.kingston-i.org.uk,2 18632,http://www.yusu.org,2 18633,http://avb.s-oman.net,2 18634,http://redditch.worcs4me.com,2 18635,http://www.stonesdrivingschool.com,2 18636,http://autoshite.com,2 18637,http://redcafe.easysearch.org.uk,2 18638,http://www.stop-repossessions.co.uk,2 18639,http://recycleforgloucestershire.com,2 18640,http://autokadabra.ru,2 18641,http://autokacik.pl,2 18642,http://xa.mc299.mail.yahoo.com,2 18643,http://www.annasbusybees.co.uk,2 18644,http://www.direct.gov.uk,2 18645,http://www.zante.me.uk,2 18646,http://www.mesupport.co.uk,2 18647,http://author.euro.confirmit.com,2 18648,http://www.anitaschoolmotoring.co.uk,2 18649,http://www.stopjunkmail.org.uk,2 18650,http://aulavirtual2.educa.madrid.org,2 18651,http://www.animascorp.co.uk,2 18652,http://www.animalmedicines.co.uk,2 18653,http://www.metaldetectingforum.co.uk,2 18654,http://www.zen123082.zen.co.uk,2 18655,http://www.anhops.com,2 18656,http://readmail.westiemail.com,2 18657,http://aucklandtrailertraining.co.uk,2 18658,http://www.kingstonfeet.com,2 18659,http://au.yhs4.search.yahoo.com,2 18660,http://au.tixdaq.com,2 18661,http://www.angusandtaysidedriving.co.uk,2 18662,http://www.direct-gas.co.uk,2 18663,http://au.mg1.mail.yahoo.com,2 18664,http://au.mc597.mail.yahoo.com,2 18665,http://readingroom.ypla.gov.uk,2 18666,http://www.diplomaticnet.com,2 18667,http://au.mc1619.mail.yahoo.com,2 18668,http://au.mc1617.mail.yahoo.com,2 18669,http://readingdrivingschool.learning2drive.net,2 18670,http://au.mc1607.mail.yahoo.com,2 18671,http://www.anglocontinentalplacements.com,2 18672,http://www.dttpscitt.co.uk,2 18673,http://au.mc1124.mail.yahoo.com,2 18674,http://www.rics.org,2 18675,http://www.imperialcollegeunion.org,2 18676,http://www.ridendriveuk.co.uk,2 18677,http://www.ridesafe.net,2 18678,http://rdo.digital-trip.co.uk,2 18679,http://www.improvement.nhs.uk,2 18680,http://www.zibzoom.com,2 18681,http://rct.theorytestpro.co.uk,2 18682,http://atlaspro.tistrafficinfo.com,2 18683,http://atlas121.co.uk,2 18684,http://atlas,2 18685,http://www.direct.gov.uk/en/Video/DG_WP194031,2 18686,http://rcgp-innovait.oxfordjournals.org,2 18687,http://www.ridgewaycommunity.org.uk,2 18688,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Typesoffinance/DG_171574,2 18689,http://www.angliahomesurveys.co.uk,2 18690,http://www.storrington.org.uk,2 18691,http://www.stortfordkickstart.org.uk,2 18692,http://www.nottinghamalfaromeo.co.uk,2 18693,http://at.ask.com,2 18694,http://rbcdev.web-labs.co.uk,2 18695,http://www.dignitas.ch,2 18696,http://rayzschoolofmotoring.moonfruit.com,2 18697,http://www.zodiacdrivertraining.co.uk,2 18698,http://assist2.searchguide.frontier.com,2 18699,http://www.angleseykickstart.co.uk,2 18700,http://www.zoomdriving.com,2 18701,http://www.nottinghamcvs.co.uk,2 18702,http://ratethatdriver.co.uk,2 18703,http://www.metsuki.com,2 18704,http://assessor.justepc.co.uk,2 18705,http://www.angelsforum.co.uk,2 18706,http://aspirel.theorytestpro.co.uk,2 18707,http://www.angels-driving-school.co.uk,2 18708,http://www.kinnoulldrivingschool.co.uk,2 18709,http://rangedrivingschool.co.uk,2 18710,http://www.direct.gov.uk/en/Motoring/DriverLicensing/DrivingInGbOnAForeignLicence/DG_185285,2 18711,http://ramh.org,2 18712,http://ramadan4u.blogspot.com,2 18713,http://ram.forumcommunity.net,2 18714,http://www.angelfastrak.info,2 18715,http://www.zx10r.co.uk,2 18716,http://asklibrary.theorytestpro.co.uk,2 18717,http://www.ang.pl,2 18718,http://rageoffstage.wordpress.com,2 18719,http://ask.wmpad.local,2 18720,http://www.kintoreschoolofmotoring.co.uk,2 18721,http://ask.sheffield.ac.uk,2 18722,http://www1.all-aboutgames.net,2 18723,http://radiocatch22.com,2 18724,http://ask.liv.ac.uk,2 18725,http://www.mfs.org.uk,2 18726,http://rachelnorthlondon.blogspot.com,2 18727,http://www.gofishing.co.uk,2 18728,http://www.drivedale.co.uk,2 18729,http://raceagainstglobalpoverty.direct.gov.uk/flash/_level0.swf,2 18730,http://www.godalming-tc.gov.uk,2 18731,http://www.ehl.edu,2 18732,http://www.digart.pl,2 18733,http://www.goggle.co.uk,2 18734,http://www.stoursurgery.co.uk,2 18735,http://www.right-result.net,2 18736,http://www.emct.org.uk,2 18737,http://r1r6.pl,2 18738,http://www.andybaileydrivingschool.co.uk,2 18739,http://www.go-with-gareth.com,2 18740,http://www.andy4drivinglessons.co.uk,2 18741,http://www.go-rio.co.uk,2 18742,http://www.andy-k.talktalk.net,2 18743,http://r.myyearbook.com,2 18744,http://www.goignition.net,2 18745,http://www.andrewsds.co.uk,2 18746,http://www.diectgov.co.uk,2 18747,http://www.right4staff.com,2 18748,http://www.mgjadisom.co.uk,2 18749,http://quicklinks.chacha.com,2 18750,http://zone105.iconography.co.uk,2 18751,http://quezi.com,2 18752,http://www.nottspct.nhs.uk,2 18753,http://www.mgs.kent.sch.uk,2 18754,http://www.stpeters.lancs.sch.uk,2 18755,http://www.direct.gov.uk/en/Motoring/DriverLicensing/CaravansTrailersCommercialVehicles/DG_4022527,2 18756,http://www.gmgdrivertraining.co.uk,2 18757,http://www.goldencharter.co.uk,2 18758,http://www.diavel-forum.com,2 18759,http://www.rightturn-som.co.uk,2 18760,http://quailsdrive.com,2 18761,http://www.mho.co.uk,2 18762,http://www.goldn.co.uk,2 18763,http://www.goldriving.co.uk,2 18764,http://www.gloucesteracademy.com,2 18765,http://www.andover.ac.uk,2 18766,http://qmjobsblog.wordpress.com,2 18767,http://www.andersonsgarageltd.co.uk,2 18768,http://www.gloshomeseeker.co.uk,2 18769,http://www.kirkleessafeguardingchildren.co.uk,2 18770,http://www.goldstartickets.co.uk,2 18771,http://www.andersons-ltd.com,2 18772,http://qcf.skillsfundingagency.bis.gov.uk,2 18773,http://www.direct.gov.uk/en/Video/CrimeandJustice/DG_WP198808,2 18774,http://www.strategic-road.com,2 18775,http://www.npi.co.uk,2 18776,http://pz005.parliament.tas.gov.au,2 18777,http://www.dialsworcs.org.uk,2 18778,http://www.globalrenewables.co.uk,2 18779,http://www.mhrt.org.uk,2 18780,http://www.npmc.nhs.uk,2 18781,http://www.dialapass.co.uk,2 18782,http://www.gonetsite.co.uk,2 18783,http://www1.somerset.gov.uk,2 18784,http://zsoc.com,2 18785,http://www.diainsurance.co.uk,2 18786,http://www.globalcitizen.net,2 18787,http://www.nptcitacademy.com,2 18788,http://www.nptcvs.com,2 18789,http://www10.connecting.nokia.com,2 18790,http://pulse.me,2 18791,http://www.amphillips.co.uk,2 18792,http://www.direct.gov.uk/en/Motoring/DriverLicensing/CaravansTrailersCommercialVehicles/DG_10013085,2 18793,http://ascsthelens.co.uk,2 18794,http://www.ringmeracademy.org,2 18795,http://www.glassesdirect.co.uk,2 18796,http://www.amoc.org,2 18797,http://www.ammado.com,2 18798,http://www.goodedriving.co.uk,2 18799,http://www.goodenergy.co.uk,2 18800,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Wholooksafterourroadsandmotorways/DG_10036664,2 18801,http://publicrecordschecks.com,2 18802,http://www.michaelbelldriving.co.uk,2 18803,http://www.gkluk.com,2 18804,http://www2.tagish.co.uk,2 18805,http://www.goodringtonmethodist.co.uk,2 18806,http://www.dhpscotland.co.uk,2 18807,http://www.goodspaguide.co.uk,2 18808,http://www.mickbarnesdrivingschool.co.uk,2 18809,http://www.amcschoolofmotoring.co.uk,2 18810,http://www.girton.cam.ac.uk,2 18811,http://www.girlguidinglaser.org.uk,2 18812,http://www.equinesportsmassage.net,2 18813,http://ptlserver.powys.gov.uk,2 18814,http://www.micra.org.uk,2 18815,http://ptlls.co.uk,2 18816,http://www.dgfasli.nic.in,2 18817,http://www.google.cf,2 18818,http://www.ginasdrivingschool.co.uk,2 18819,http://www.gilmourjuniors.com,2 18820,http://www.gillingham.dorset.sch.uk,2 18821,http://www.dgdt.co.uk,2 18822,http://pt.textoeditores.com,2 18823,http://www.gilby.ch,2 18824,http://www.risdubai.com,2 18825,http://www.riseinformationcentre.org.uk,2 18826,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/RegisteringAVehicle/Registeringakitcarrebuildorradicallyalteredvehicle/DG_191158,2 18827,http://www.gigablast.com,2 18828,http://www.ambersom.biz,2 18829,http://www.google.cn.www.google.com.hk.www.baidu.com.www.bing.com.www.soso.com,2 18830,http://www.drivecarrs.com,2 18831,http://www.dft.gov.uk.,2 18832,http://pscitt2.silicondesigns.co.uk,2 18833,http://www.ggibbons.lewisham.sch.uk,2 18834,http://www.microscope.co.uk,2 18835,http://www.nscp.co.uk,2 18836,http://www.gfphomeheating.co.uk,2 18837,http://www.gewizrepairs.co.uk,2 18838,http://www.getyourdrivinglicence.co.uk,2 18839,http://www.energyassessornorthamptonshire.co.uk,2 18840,http://www.dfa.ie,2 18841,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_191573,2 18842,http://www.amazon-rws.co.uk,2 18843,http://www.dewsburydrivingschool.hostoi.com,2 18844,http://www.driveawayschoolofmotoring.com,2 18845,http://www.streetwisehartlepool.co.uk,2 18846,http://zuula.com,2 18847,http://www.devonportgirls.plymouth.sch.uk,2 18848,http://www.streetwiselearners.co.uk,2 18849,http://www.geton-edinburgh.org.uk,2 18850,http://www.amaraheating.co.uk,2 18851,http://www.amanotech.com,2 18852,http://www.driveawaymotoring.com,2 18853,http://www.getintolivemusic.org,2 18854,http://property.practicallaw.com,2 18855,http://property.co.uk,2 18856,http://www.amaliaking.co.uk,2 18857,http://www.streetwizeschoolofmotoring.co.uk,2 18858,http://www.alzscot.org,2 18859,http://www.getbike.net,2 18860,http://prolife.org.uk,2 18861,http://www.getbank.com,2 18862,http://www.get2thecore.co.uk,2 18863,http://projectserver,2 18864,http://www.devonlearnerdrivers.co.uk,2 18865,http://www.gestaltcentre.co.uk,2 18866,http://www.germany-england.de,2 18867,http://www.altrainadr.co.uk,2 18868,http://www.altondrivingschool.co.uk,2 18869,http://www.altondrivinginstructor.co.uk,2 18870,http://www.google.pn,2 18871,http://prodweb.slc.co.uk,2 18872,http://as-vs.co.uk,2 18873,http://www.altavista.com,2 18874,http://www.geog.leeds.ac.uk,2 18875,http://proceed-driving-academy.co.uk,2 18876,http://360safe.org.uk,2 18877,http://probationassociation.co.uk,2 18878,http://prkorea.com,2 18879,http://www.goonsearch.com,2 18880,http://privycouncil.independent.gov.uk,2 18881,http://www.striker-cars.co.uk,2 18882,http://www.hiltonvillage.co.uk,2 18883,http://www.genevahealth.com,2 18884,http://www.genesreunited.co.za,2 18885,http://www.genesis-recruitment.co.uk,2 18886,http://www.gordonjarviesom.co.uk,2 18887,http://www.strive2drive-drivinglessons.co.uk,2 18888,http://www.genealogyforum.co.uk,2 18889,http://princes-trust.org.uk,2 18890,http://www.alphadrive.org,2 18891,http://www.driveastleys.co.uk,2 18892,http://www.kmackenzie.net,2 18893,http://www.alpha-driving-school.co.uk,2 18894,http://www.gemelectriccars.co.uk,2 18895,http://preview.westonfavellschoolofmotoring.vpweb.co.uk,2 18896,http://www.alpassdrivingschool.com,2 18897,http://www.gem.org.uk,2 18898,http://preview.staffordshire.gov.uk,2 18899,http://www.nsra.org.uk,2 18900,http://preview.create.net,2 18901,http://preview-www.kent.ac.uk,2 18902,http://preszhh.bluewin.ch,2 18903,http://www2.wlv.ac.uk,2 18904,http://www.allyourjunk.co.uk,2 18905,http://www.gov.mb.ca,2 18906,http://www.gbbag.co.uk,2 18907,http://prescientpower.co.uk,2 18908,http://www.allwalesjobs.co.uk,2 18909,http://www.strive2drive.com,2 18910,http://www.dethickleaandholloway.org.uk,2 18911,http://pracujwanglii.one.pl,2 18912,http://www.gaytoz.com,2 18913,http://www.nsw.ipaa.org.au,2 18914,http://www.gatwickairport.com,2 18915,http://www.govdirect.net,2 18916,http://www.strokesupportgroup.org,2 18917,http://www.alltheinterweb.co.uk,2 18918,http://www.gaswaterheating.co.uk,2 18919,http://powyshousing.co.uk,2 18920,http://www.gastabr.co,2 18921,http://www.ststepheninbrannel.org.uk,2 18922,http://ameydocuments.ameygroup.int,2 18923,http://www.allsitestravel.co.uk,2 18924,http://aacraoedge.aacrao.org,2 18925,http://www.gasafetycertificate.co.uk,2 18926,http://www.allsearchengines.co.uk,2 18927,http://www.gas-motorcycle-couriers.co.uk,2 18928,http://www.garywhiteschoolofmotoring.com,2 18929,http://www.garychewdrivingschool.co.uk,2 18930,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Keepingtrafficmoving/DG_184770,2 18931,http://www.gpstsociety.org.uk,2 18932,http://www.designfridge.co.uk,2 18933,http://www.mikenevins.co.uk,2 18934,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Breakdownsdrivingconditions/DG_185145,2 18935,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/ImportingAndExportingAVehicle/DG_071781,2 18936,http://www.hiluxsurf.co.uk,2 18937,http://www.gapyeardirectory.co.uk,2 18938,http://aac-int.com,2 18939,http://www.gapdaemon.com,2 18940,http://www.gapadvice.org,2 18941,http://aaanorcap.easysearch.org.uk,2 18942,http://posta51a.mailbeta.libero.it,2 18943,http://posta50a.mailbeta.libero.it,2 18944,http://www.grade-a-som.co.uk,2 18945,http://posta4a.mailbeta.libero.it,2 18946,http://www.drive4lifeacademy.co.uk,2 18947,http://posta48a.mailbeta.libero.it,2 18948,http://posta47b.mailbeta.libero.it,2 18949,http://posta46a.mailbeta.libero.it,2 18950,http://www.derrickashdown.com,2 18951,http://posta42a.mailbeta.libero.it,2 18952,http://www.rjsheating.co.uk,2 18953,http://www.gacps.co.uk,2 18954,http://posta37a.mailbeta.libero.it,2 18955,http://www.dereksl.com,2 18956,http://www.g4s.com,2 18957,http://www.derekmatthews-adi.co.uk,2 18958,http://posta23a.mailbeta.libero.it,2 18959,http://www.rkl.org.uk,2 18960,http://www.mildhogs.co.uk,2 18961,http://www.derehamsurestart.childrencentre.org,2 18962,http://posta18a.mailbeta.libero.it,2 18963,http://www.grammarschool.ac.cy,2 18964,http://www.grampiancaredata.gov.uk,2 18965,http://posta17a.mailbeta.libero.it,2 18966,http://www.futuresnn.co.uk,2 18967,http://www.stuarts-driving-school.co.uk,2 18968,http://www.futureofdowns.com,2 18969,http://www.dereham-resprays.co.uk,2 18970,http://www.futurefocus.staff.hsbc.co.uk,2 18971,http://www.futura-sciences.com,2 18972,http://portsmouthcitycollege.co.uk,2 18973,http://www.stuarts-driving-tuition.co.uk,2 18974,http://www.mildmay-jun.essex.sch.uk,2 18975,http://www.allcheapflights.co.uk,2 18976,http://www.funeralservicesguide.com,2 18977,http://www.grangeparksom.co.uk,2 18978,http://www.dsltuition.co.uk,2 18979,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ApplyingForAHigherEducationCourse/DG_10013340,2 18980,http://www.allansvehicleservices.co.uk,2 18981,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ApplyingForAHigherEducationCourse/DG_10013307,2 18982,http://www.fundingcentral.org.uk,2 18983,http://www.funcar.org.uk,2 18984,http://www.fullcontrol.org.uk,2 18985,http://www.fulhamdrivingschool.com,2 18986,http://portal.tenantservicesauthority.org,2 18987,http://www.allaboutitaly.com,2 18988,http://www.fuelleddriving.co.uk,2 18989,http://www.student.uva.nl,2 18990,http://www.allaboutcareers.com,2 18991,http://www.studentadvice.cam.ac.uk,2 18992,http://www.mileoakdrivingschool.co.uk,2 18993,http://www.all-saints.bardaglea.org.uk,2 18994,http://www.all-forums.co.uk,2 18995,http://www.grb.uk.com,2 18996,http://portal.lsclondon.co.uk,2 18997,http://www.dsl-driving.co.uk,2 18998,http://www.aliveandtwitching.co.uk,2 18999,http://www.independence.co.uk,2 19000,http://www.energyactiondevon.org.uk,2 19001,http://portal.fiveislands.scilly.sch.uk,2 19002,http://portal.exe-coll.ac.uk,2 19003,http://www.frostproperty.co.uk,2 19004,http://portal.colchester.ac.uk,2 19005,http://portal.balbycarr.org.uk,2 19006,http://www.frieslandschool.com,2 19007,http://www.friendsreuniteddating.co.uk,2 19008,http://www.nurturingbirth.co.uk,2 19009,http://www.friendsom.co.uk,2 19010,http://www.studentfinance.direct.gov.uk/calculator/studentfinancecalculator/1011/dsa.xhtml,2 19011,http://porondeomeupeanda.blogspot.com,2 19012,http://poradnikemigranta.blogspot.com,2 19013,http://popularclassics.forumcircle.com,2 19014,http://www.algarve-retreats.co.uk,2 19015,http://poplar.westnotts.ac.uk,2 19016,http://poorbuthappy.com,2 19017,http://www.greatyeldhamschool.co.uk,2 19018,http://www.freshhorizon.co.uk,2 19019,http://pooletownfootballclub.easysearch.org.uk,2 19020,http://www.koolas.co.uk,2 19021,http://www.freeweb.hu,2 19022,http://www.alexdriving.co.uk,2 19023,http://polskicraigavon.com,2 19024,http://pollyannapickeringfoundation.easysearch.org.uk,2 19025,http://www.freeprf.com,2 19026,http://www.greenacredriving.co.uk,2 19027,http://www.freemotoring.co.uk,2 19028,http://www.rncb.ac.uk,2 19029,http://www.alertme.com,2 19030,http://www.freemankeepondriving.com,2 19031,http://www.greenbang.com,2 19032,http://www.deparysmedical.co.uk,2 19033,http://www.kos.net,2 19034,http://www.dentistry.leeds.ac.uk,2 19035,http://www.alderbrook.solihull.sch.uk,2 19036,http://www.alder-som.co.uk,2 19037,http://polestarpension.co.uk,2 19038,http://polepositiondrivertraining.co.uk,2 19039,http://www.millmead.herts.sch.uk,2 19040,http://www.denovodrivingtuition.co.uk,2 19041,http://www.alcoholpolicy.net,2 19042,http://www.elydrivingtuition.com,2 19043,http://www.freedating.co.uk,2 19044,http://www.koweekly.co.uk,2 19045,http://www.greenfudge.org,2 19046,http://poczta.t.pl,2 19047,http://www.freckletonparishcouncil.org.uk,2 19048,http://www.albynhousing.org.uk,2 19049,http://www.greenhillscentre.co.uk,2 19050,http://www.albyn.net,2 19051,http://pnld,2 19052,http://www.frankdooley.co.uk,2 19053,http://www.francisgray.co.uk,2 19054,http://www.francisclark.co.uk,2 19055,http://www.milton-driving-school.co.uk,2 19056,http://www.studentpad.co.uk,2 19057,http://www.albrightestates.co.uk,2 19058,http://www.ecademy.com,2 19059,http://www.greeninggovernment.co.uk,2 19060,http://plshop.co.uk,2 19061,http://www2.apetito.co.uk,2 19062,http://www.fossilaustralia.com.au,2 19063,http://www.denmeadparishcouncil.co.uk,2 19064,http://www.drive-with-terry.com,2 19065,http://www.forumrowerowe.org,2 19066,http://www.greenleas.net,2 19067,http://www.greenlight-learn.co.uk,2 19068,http://www.dencaneycoaches.co.uk,2 19069,http://www.alastaircampbell.org,2 19070,http://www.forum.prawojazdy.com.pl,2 19071,http://www.forum.mobilediscodirectory.co.uk,2 19072,http://www.alastair-mcpherson.com,2 19073,http://www.forum.gwladrugby.com,2 19074,http://www.greenlightgateway.com,2 19075,http://www.roada-norfolk.org.uk,2 19076,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/RailTravel/DG_190826,2 19077,http://www.roadcraftdriving.org.uk,2 19078,http://planningpa.shropshire.gov.uk,2 19079,http://www.denbigh.net,2 19080,http://www.roadlegalatvs.com,2 19081,http://www.demweb.co.uk,2 19082,http://www.formspring.me,2 19083,http://planning.hambleton.gov.uk,2 19084,http://www.studiumanglie.cz,2 19085,http://planning.chelmsford.gov.uk,2 19086,http://www.nw5theatreschool.co.uk,2 19087,http://www.drive-solo.co.uk,2 19088,http://www.alan.shrank.freeuk.com,2 19089,http://www.alan-whitehead.org.uk,2 19090,http://www.alan-uk.com,2 19091,http://www.forest-heath.gov.uk,2 19092,http://www.forensicmed.co.uk,2 19093,http://www.alamy.com,2 19094,http://www.al.group-net.co.uk,2 19095,http://www.fordcapriforum.com,2 19096,http://www.al-sid.co.uk,2 19097,http://www.al-drive.co.uk,2 19098,http://www.sturveydrop.co.uk,2 19099,http://www.dementiaweboxfordshire.org.uk,2 19100,http://www.footballbanter247.co.uk,2 19101,http://www.greenwichbreastfeeding.com,2 19102,http://www.dsbs.co.uk,2 19103,http://www.roadrunnerinsurance.co.uk,2 19104,http://picusouthampton.easysearch.org.uk,2 19105,http://www.nwds.co.uk,2 19106,http://www.ajdrivingschoolleeds.co.uk,2 19107,http://2passforum.co.uk,2 19108,http://photobox.ie,2 19109,http://www.independentfinancialadvisor.co.uk,2 19110,http://www.focus-mediation.co.uk,2 19111,http://phoenixphotographicltdupload.livelinkprint.com,2 19112,http://www.dementia-support.org,2 19113,http://www.demenshare.com,2 19114,http://www.airmaxgroup.com,2 19115,http://aa.mc260.mail.yahoo.com,2 19116,http://www.elydrivingschool.net,2 19117,http://philoakleyconstruction.wsiefusion.net,2 19118,http://www.gringoes.com,2 19119,http://www.roadsense4u.co.uk,2 19120,http://www.nwht.btck.co.uk,2 19121,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/Trusts/Introductiontotrusts/DG_191713,2 19122,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/LearningOutsideTheClassroom/DG_10033339,2 19123,http://www.growyn.com,2 19124,http://www.ainscoughassociates.co.uk,2 19125,http://ph.mg3.mail.yahoo.com,2 19126,http://www.ebusinessconsultant.co.uk,2 19127,http://www.flugplatz-herzogenaurach.de,2 19128,http://www.nwmhft.nhs.uk,2 19129,http://www.florianonet.com.br,2 19130,http://www.floresbach.com,2 19131,http://www.mindomo.com,2 19132,http://www.nwren.org.uk,2 19133,http://petersschoolofmotoring.co.uk,2 19134,http://peterdurwardharris7.blogspot.com,2 19135,http://www.degistirebiliriz.org,2 19136,http://www.grupy.v10.pl,2 19137,http://www.independentlivingresource.org.uk,2 19138,http://www.gscb.org.uk,2 19139,http://www.aimdrivingschools.com,2 19140,http://www.flexdrive.co.uk,2 19141,http://www.flegg.norfolk.sch.uk,2 19142,http://www.fleetwoodsom.com,2 19143,http://www.aimdrivingschools.co.uk,2 19144,http://www.fleetdirectory.co.uk,2 19145,http://www.gsmdrivingschool.co.uk,2 19146,http://www.suburban-glory.com,2 19147,http://www.aidsmap.com,2 19148,http://www.aidsandadaptations.co.uk,2 19149,http://www.succead.com,2 19150,http://www.kppdlt.ob.tc,2 19151,http://www.kriminalvarden.se,2 19152,http://www.aib.gov.uk,2 19153,http://www.aiai.ed.ac.uk,2 19154,http://peoplesolutions2.birmingham.gov.uk,2 19155,http://www.defaqto.com,2 19156,http://www.ahrc.ac.uk,2 19157,http://www.eborgardens.leeds.sch.uk,2 19158,http://www.fivestarautocentre.co.uk,2 19159,http://penybryn.createprimary.net,2 19160,http://penworthampropertyinspections.co.uk,2 19161,http://www.gttrailers.co.uk,2 19162,http://www.miniadventuredrivingschool.co.uk,2 19163,http://www.success.tid.gov.hk,2 19164,http://www.guide.opendns.com,2 19165,http://www.guildfordfreedomdrivingschool.co.uk,2 19166,http://aa.mc1619.mail.yahoo.com,2 19167,http://www.agni.gr,2 19168,http://www.fishinsurance.co.uk,2 19169,http://www.guildofstudents.com,2 19170,http://www.fishermeredith.co.uk,2 19171,http://www.suestraveltips.com,2 19172,http://www.fis.bedford.gov.uk,2 19173,http://www.drive-on.ie,2 19174,http://www.deebees-som.co.uk,2 19175,http://www.minibuslite.co.uk,2 19176,http://pensions-service.direct.gov.uk,2 19177,http://www.heckgrammar.co.uk,2 19178,http://www.ageuksheffield.org.uk,2 19179,http://www.ksom.co.uk,2 19180,http://www.gunnerpass.co.uk,2 19181,http://www.firstgreatwestern.co.uk,2 19182,http://aristotle,2 19183,http://www.guprod.gnl,2 19184,http://www.nypolfed.org.uk,2 19185,http://pengelly-info.blogspot.com,2 19186,http://www.firstaidquiz.com,2 19187,http://pedago.ac-clermont.fr,2 19188,http://www.firstaid-direct.co.uk,2 19189,http://pebblepad.wlv.ac.uk,2 19190,http://www.agenas.it,2 19191,http://www.hisse-et-oh.com,2 19192,http://www.gval.com,2 19193,http://www.minifinity.co.uk,2 19194,http://www.nytimes.com,2 19195,http://www.drystonecraft.co.uk,2 19196,http://www.fireplacespot.com,2 19197,http://www.ageconcernexeter.org.uk,2 19198,http://www.robertcookconstruction.co.uk,2 19199,http://www.minioneschoolofmotoring.co.uk,2 19200,http://pccintranet.pembrokeshire.gov.uk,2 19201,http://www.fireangel.co.uk,2 19202,http://pbsm.theorytestpro.co.uk,2 19203,http://www.roberthorne.co.uk,2 19204,http://pb-cbtsvr1:8080,2 19205,http://www.agcasscotland.org.uk,2 19206,http://2drive.co.uk,2 19207,http://www.gwynns.co.uk,2 19208,http://www.gx-l.com,2 19209,http://payetaxreferencenumber.co.uk,2 19210,http://www.gyvas.com,2 19211,http://www.findlaws.info,2 19212,http://www.ebedford.co.uk,2 19213,http://www.direct.gov.uk/en/EducationAndLearning/14To19/Years10and11/index.htm,2 19214,http://pawtal,2 19215,http://paulgurd.theorytestpro.co.uk,2 19216,http://www.summersnurseries.com,2 19217,http://www.afop.org.uk,2 19218,http://www.financialskillsforlife.org.uk,2 19219,http://www.affluentfp.co.uk,2 19220,http://paula.theorytestpro.co.uk,2 19221,http://www.habbo.com,2 19222,http://www.robertsprimary.org.uk,2 19223,http://www.habia.org,2 19224,http://www.kwik-fitinsurance.com,2 19225,http://www.affinitycareservices.co.uk,2 19226,http://patienceschoolofmotoring.co.uk,2 19227,http://patiencedrivingschool.me.uk,2 19228,http://www.mintdriving.co.uk,2 19229,http://paston.ac.uk,2 19230,http://www.sunbeamsdaynursery.com,2 19231,http://www.hackettsdrivingschool.co.uk,2 19232,http://www.filshamvalley.e-sussex.sch.uk,2 19233,http://www.hackneyhousingcoop.org.uk,2 19234,http://www.kwik-pass.co.uk,2 19235,http://www.afa.uk.com,2 19236,http://www.kwik-pass.com,2 19237,http://www.filetypepdf.net,2 19238,http://passwithsean.theorytestpro.co.uk,2 19239,http://www.fil.org.uk,2 19240,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/AirtravelintheUK/DG_10036423,2 19241,http://passwithmark.theorytestpro.co.uk,2 19242,http://passwithdrivingschool.com,2 19243,http://www.fifechildprotection.org.uk,2 19244,http://2cvgb.co.uk,2 19245,http://www.haitchdrivertraining.co.uk,2 19246,http://www.mirrorsschoolofmotoring.com,2 19247,http://www.robinmcdonald.co.uk,2 19248,http://www.o.o.facebook.com,2 19249,http://passnow.theorytestpro.co.uk,2 19250,http://arena.yourlondonlibrary.net,2 19251,http://www.adysdrivingschool.co.uk,2 19252,http://passmastermal.com,2 19253,http://www.helston.cornwall.sch.uk,2 19254,http://passit.theorytestpro.co.uk,2 19255,http://passinkent.theorytestpro.co.uk,2 19256,http://www.halfordsvoice.com,2 19257,http://www.kwwcomputers.co.uk,2 19258,http://www.advocacyexperience.com,2 19259,http://www.rockclimbing.com,2 19260,http://www.deanparkparentcouncil.org,2 19261,http://www.adviceuk.org.uk,2 19262,http://www.kynologenvakbondnederland.nl,2 19263,http://www.hallgreeninfant.co.uk,2 19264,http://www.deanesfield.hillingdon.sch.uk,2 19265,http://pass1stime.theorytestpro.co.uk,2 19266,http://www.hallmarkcarehomes.co.uk,2 19267,http://www.ebay-forum.ru,2 19268,http://www.hallwood.org,2 19269,http://www.femaledaily.com,2 19270,http://www.adviceintegration.co.uk,2 19271,http://www.sundrivingschool.co.uk,2 19272,http://www.feedly.com,2 19273,http://www.featherstonehigh.ealing.sch.uk,2 19274,http://www.eazylet.co.uk,2 19275,http://www.deafstrategies.org,2 19276,http://www.deafperspective.co.uk,2 19277,http://www.rodneywarren.co.uk,2 19278,http://park.org,2 19279,http://www.fco.gsi.gov.uk,2 19280,http://www.mjdazeley.com,2 19281,http://www.fch8.com,2 19282,http://www.adventureballoons.co.uk,2 19283,http://www.adventure52.com,2 19284,http://parentsadvice.dev01.onlyw3b.com,2 19285,http://www.sunlifedirect.co.uk,2 19286,http://www.sunnyschoolofmotoring.pwp.blueyonder.co.uk,2 19287,http://www.hampshirefa.com,2 19288,http://parentchannel.tv,2 19289,http://www.fasttrack-drivingschool.co.uk,2 19290,http://www.fasttomato.com,2 19291,http://www.handicap-international.org.uk,2 19292,http://www.rogerios.co.uk,2 19293,http://archive.stevenage.gov.uk,2 19294,http://www.advanceuk.org,2 19295,http://www.advancedbiker.com,2 19296,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/Taxreturndeadlinescheckspenaltiesandappeals/index.htm,2 19297,http://palaeo.gly.bris.ac.uk,2 19298,http://www.l-passosom.co.uk,2 19299,http://www.adulteducation.norfolk.gov.uk,2 19300,http://pages.towson.edu,2 19301,http://www.romancescam.com,2 19302,http://www.adultchildrenlivingathome.com,2 19303,http://pages.123-reg.co.uk,2 19304,http://www.ddif.co.uk,2 19305,http://www.romanse.org.uk,2 19306,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/Caretolearn/DG_066974,2 19307,http://www.farminmypocket.co.uk,2 19308,http://www.rookieacademy.com,2 19309,http://www.farmacovigilanza.org,2 19310,http://www.hansondrivingschool.co.uk,2 19311,http://www.fareham-wheelers.org.uk,2 19312,http://www.mk-automatic.co.uk,2 19313,http://archive.niace.org.uk,2 19314,http://www.hantsfamilymediation.org.uk,2 19315,http://www.rookwoodnursery.co.uk,2 19316,http://oxley.theorytestpro.co.uk,2 19317,http://www.familymosaicsales.co.uk,2 19318,http://www.happydrive.co.uk,2 19319,http://oxfordowl.co.uk,2 19320,http://www.familylawwiki.org.uk,2 19321,http://www.hardmandrivingschool.co.uk,2 19322,http://www.oakfield-primary.co.uk,2 19323,http://www.dcvle.net,2 19324,http://www.harlandsprimaryschool.org,2 19325,http://www.rootsdrivingschool.mfbiz.com,2 19326,http://www.adrianburdendrivingschool.co.uk,2 19327,http://www.dctraining.co.uk,2 19328,http://www.hicksonandwelch.co.uk,2 19329,http://ox.libguides.com,2 19330,http://www.l2pdrivingschool.co.uk,2 19331,http://www.supportforcarers.org,2 19332,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/IntroductiontoSelfAssessment/,2 19333,http://www.mkds.co.uk,2 19334,http://www.drtl.co.uk,2 19335,http://www.supportnw.co.uk,2 19336,http://www.ineedaholidaytoo.com,2 19337,http://www.adonnelly.co.uk,2 19338,http://www.adobe.com,2 19339,http://www.fairoakjunior.co.uk,2 19340,http://www.ineeddrivinglessons.co.uk,2 19341,http://25megroup.easysearch.org.uk,2 19342,http://www.harper-green.bolton.sch.uk,2 19343,http://www.fairfieldschools.org,2 19344,http://ourlearning-interim.barnsley.org,2 19345,http://www.mktowingcourses.co.uk,2 19346,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/DG_4017116,2 19347,http://www.mla.gov.uk,2 19348,http://www.direct.gov.uk/en/EducationAndLearning/14To19/Courseworkandexams/DG_066179,2 19349,http://www.fabed.co.uk,2 19350,http://oshiete.goo.ne.jp,2 19351,http://oseox.fr,2 19352,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/DG_10013651,2 19353,http://www.adidrivingforce.co.uk,2 19354,http://www.eyresgarage.co.uk,2 19355,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/ParentsContacts/DG_172507,2 19356,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/ParentsContacts/DG_172266,2 19357,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/DG_078761,2 19358,http://www.rosetrust.co.uk,2 19359,http://www.oakleigh-vle.co.uk,2 19360,http://www.efors.eu,2 19361,http://www.express.co.uk,2 19362,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/Over50sContacts/DG_10030218,2 19363,http://www.explorelakedistrict.co.uk,2 19364,http://www.adayin.com,2 19365,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/Over50sContacts/DG_10029768,2 19366,http://www.mmpublications.com,2 19367,http://optimalmarket.com,2 19368,http://aa.mc1609.mail.yahoo.com,2 19369,http://www.expedient-training.org.uk,2 19370,http://www.expatwoman.com,2 19371,http://www.expatsportugal.com,2 19372,http://www.mmts.info,2 19373,http://operations,2 19374,http://www.expatries.org,2 19375,http://www.surestartcentralcc.org.uk,2 19376,http://opentravel.com,2 19377,http://www.dawndrive.co.uk,2 19378,http://www.mmunion.co.uk,2 19379,http://www.hartlepool-driving-schools.co.uk,2 19380,http://openlearn.open.ac.uk,2 19381,http://opencms.fta.co.uk,2 19382,http://open.bdo.co.uk.local,2 19383,http://ooyes.net,2 19384,http://www.actuallydrivingschoolofmotoring.co.uk,2 19385,http://www.harton-tc.co.uk,2 19386,http://www.surestartnorthcc.org.uk,2 19387,http://www.hrsfc.ac.uk,2 19388,http://www.eatonbray.com,2 19389,http://www.hartschoolofdriving.com,2 19390,http://www.informedprepared.eu,2 19391,http://www.hartshaw.co.uk,2 19392,http://www.activevetcare.co.uk,2 19393,http://www.harveyroad.herts.sch.uk,2 19394,http://www.excellencedrivertraining.co.uk,2 19395,http://www.moathall.staffs.sch.uk,2 19396,http://www.hassocksnhw.org.uk,2 19397,http://www.activeo.co.uk,2 19398,http://www.activenewcastle.co.uk,2 19399,http://254sqnatc.easysearch.org.uk,2 19400,http://online.west-norfolk.gov.uk,2 19401,http://www.oasiscollege.org,2 19402,http://www.ewyasharoldgpc.org.uk,2 19403,http://www.davidmooredriving.co.uk,2 19404,http://www.infospace.com,2 19405,http://24ur.com,2 19406,http://www.evz.ro,2 19407,http://www.oasisdriving.co.uk,2 19408,http://arcadia.ad.aberdeenshire.gov.uk,2 19409,http://www.hathways.co.uk,2 19410,http://online.nwkcollege.ac.uk,2 19411,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/LeavingOrComingIntoTheUK/DG_078447,2 19412,http://www.everythingbutbikes.com,2 19413,http://online.gateshead.gov.uk,2 19414,http://online.fluid-ideas.co.uk,2 19415,http://www.davidgrayschoolofmotoring.co.uk,2 19416,http://www.surreyheath.gov.uk:80,2 19417,http://www.surreypa.gov.uk,2 19418,http://www.rothervalley.ac.uk,2 19419,http://www.eventsthatwork.co.uk,2 19420,http://www.eventsecurity.co.uk,2 19421,http://onfairground.blogspot.com,2 19422,http://www.evenbreak.co.uk,2 19423,http://www.davidcoxdrivingschool.co.uk,2 19424,http://arathor.net,2 19425,http://www.surveymonkey.com,2 19426,http://adi417161.theorytestpro.co.uk,2 19427,http://aa.mc1257.mail.yahoo.com,2 19428,http://www.actbrighton.org,2 19429,http://www.haverstock.camden.sch.uk,2 19430,http://www.haveyoursayonline.net,2 19431,http://www.europeanweblinks.com,2 19432,http://www.roundaboutdriving.co.uk,2 19433,http://www.europe.basf-ag.de,2 19434,http://www.eurolpg.co.uk,2 19435,http://one,2 19436,http://www.acsnavigator.co.uk,2 19437,http://www.acscare.co.uk,2 19438,http://www.david-james.com,2 19439,http://www.eurodesk.eu,2 19440,http://www.eurocontrol.int,2 19441,http://www.sussexdrivingschool.co.uk,2 19442,http://www.roundtable.org.uk,2 19443,http://www.oc.org.br,2 19444,http://www.euro-japan.co.uk,2 19445,http://www.euro-backpacker.com,2 19446,http://www.ingear2drive.co.uk,2 19447,http://www.hayward-baker.com,2 19448,http://www.haywards.co.uk,2 19449,http://www.mobilitybenefits.co.uk,2 19450,http://ollepass.theorytestpro.co.uk,2 19451,http://www.elondonlets.com,2 19452,http://oldp.scotborders.gov.uk,2 19453,http://www.eudrivinglicence-notests4u.co.uk,2 19454,http://www.acoukdrivingschool.co.uk,2 19455,http://www.eu2009.cz,2 19456,http://aa.mc1124.mail.yahoo.com,2 19457,http://www.davepickford.co.uk,2 19458,http://www.acorn-som.co.uk,2 19459,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/ContactOrDealWithHMRC/DG_10014956,2 19460,http://www.eswater.co.uk,2 19461,http://www.davehowelldrivingschool.co.uk,2 19462,http://www.hca.ac.uk,2 19463,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MoneyTaxAndBenefitsContacts/DG_10026996,2 19464,http://www.ladies1stdrivingschool.com,2 19465,http://www.elocalz.com,2 19466,http://www.essexlegacy.org,2 19467,http://www.efestivals.co.uk,2 19468,http://247-homecare-services-ltd.co.uk,2 19469,http://www.essexcab.org.uk,2 19470,http://www.hdsmotoring.co.uk,2 19471,http://oecdobserver.org,2 19472,http://www.head2pillow.com,2 19473,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/ContactOrDealWithHMRC/DG_078345,2 19474,http://www.essex-fire.gov.uk,2 19475,http://www.acer.ac.uk,2 19476,http://www.headlines.org.uk,2 19477,http://ocs-intranet,2 19478,http://ocnsearch.goo.ne.jp,2 19479,http://www.esprit-fa.com,2 19480,http://2345.com,2 19481,http://www.sustainablefundingcymru.org.uk,2 19482,http://www.acenden.com,2 19483,http://www.ingleseprecoce.it,2 19484,http://www.headsup.org.uk,2 19485,http://www.moldova-uk.com,2 19486,http://www.royal-adi.co.uk,2 19487,http://www.esl-languages.com,2 19488,http://www.suttonfisdirectory.org.uk,2 19489,http://www.esf.org,2 19490,http://www.esf-works.com,2 19491,http://nz.mg4.mail.yahoo.com,2 19492,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EmploymentContacts/DG_172117,2 19493,http://www.escouts.org.uk,2 19494,http://www.darrenmagrane.co.uk,2 19495,http://www.escola-apel.com,2 19496,http://nz.mc1615.mail.yahoo.com,2 19497,http://nz.bing.com:80,2 19498,http://www.royalwellscollege.co.uk,2 19499,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EmploymentContacts/DG_172115,2 19500,http://nymail.jubii.dk,2 19501,http://nyenrode.nl,2 19502,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EmploymentContacts/DG_172114,2 19503,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/Voluntarycontributionsandtoppingup/DG_190073,2 19504,http://www.off.ekorp.com,2 19505,http://nww.sefton.nhs.uk,2 19506,http://www.dromaracc.co.uk,2 19507,http://nww.pathfinder.northants.nhs.uk,2 19508,http://www.dannycaveschool.co.uk,2 19509,http://www.danielcameron.co.uk,2 19510,http://www.offbyheart.co.uk,2 19511,http://www.suzuki4x4club.com,2 19512,http://nww.inet.leeds.nhs.uk,2 19513,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/Refundscomplaintsandreportingchanges/index.htm,2 19514,http://www.inmyprime.co.uk,2 19515,http://www.sw-fp.co.uk,2 19516,http://221.120.234.242,2 19517,http://nww.berkshirehct.nhs.uk,2 19518,http://nww.berkshireeast-pct.nhs.uk,2 19519,http://www.homecare.org.uk,2 19520,http://www.money.pl,2 19521,http://www.money4dentists.com,2 19522,http://www.rpms.co.uk,2 19523,http://nwds.co.uk,2 19524,http://www.accessgroupmelton.org.uk,2 19525,http://www.innocentdrinks.co.uk,2 19526,http://www.daiyanhk.com,2 19527,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/PayingreducedrateNationalInsurance/DG_190081,2 19528,http://www.access4u2.com,2 19529,http://www.official-documents.gov.uk,2 19530,http://www.moneygap.com,2 19531,http://www.officiallondontheatre.co.uk,2 19532,http://www.hifrs.org,2 19533,http://www.access-driving.co.uk,2 19534,http://www.access-care.co.uk,2 19535,http://nshn.easysearch.org.uk,2 19536,http://www.daily5remodel.com,2 19537,http://www.lakelandbookkeepingservices.co.uk,2 19538,http://www.daftmoo.org.uk,2 19539,http://www.swea.co.uk,2 19540,http://www.dafmobile.ournet.org.uk,2 19541,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/OrganisationsAndCharities/DG_10014872,2 19542,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/OrganisationsAndCharities/DG_10014867,2 19543,http://nov1.m.yahoo.net,2 19544,http://nottspfc.easysearch.org.uk,2 19545,http://www.inputyouth.co.uk,2 19546,http://nottsdrivingschool.com,2 19547,http://nottschildmindingassociation.webeden.co.uk,2 19548,http://appmd77,2 19549,http://www.academyschoolofmotoring.co.uk,2 19550,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/OrganisationsAndCharities/DG_065230,2 19551,http://www.insiderinfo.com,2 19552,http://www.daddycarestoo.co.uk,2 19553,http://www.monorientationenligne.fr,2 19554,http://www.academicsltd.co.uk,2 19555,http://noschoolplace.wordpress.com,2 19556,http://www.academic-refugees.org,2 19557,http://norwichdragonshc.easysearch.org.uk,2 19558,http://norwichapproveddrivingschool.theorytestpro.co.uk,2 19559,http://northyorks.gov.uk,2 19560,http://www.academiajuridicapactasuntservanda.es,2 19561,http://www.daca.uk.com,2 19562,http://www.swinburne.edu.au,2 19563,http://www.acacia.ac.uk,2 19564,http://www.abwalker.co.uk,2 19565,http://app4,2 19566,http://www.dabd.org.uk,2 19567,http://www.daad.org.uk,2 19568,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/Howtovaluetheestateofsomeonewhohasdied/DG_187443,2 19569,http://www.da.mod.uk,2 19570,http://www.oia-complaints.co.uk,2 19571,http://www.montessori-fieldhouse.co.uk,2 19572,http://www.hsm-online.co.uk,2 19573,http://adi359207.theorytestpro.co.uk,2 19574,http://www.montessoripavilion.co.uk,2 19575,http://www.abschoolofdriving.com,2 19576,http://www.d-2-p.co.uk,2 19577,http://noodletools.com,2 19578,http://nonsolus,2 19579,http://nogsport.co.uk,2 19580,http://www.oie.int,2 19581,http://www.aboutus.org,2 19582,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/FormsforprobateandInheritanceTax/DG_187439,2 19583,http://www.rsms.co.uk,2 19584,http://www.rsobb.co.uk,2 19585,http://www.insitesurveyors.co.uk,2 19586,http://www.abo.org.uk,2 19587,http://www.direct.gov.uk/en/Dl1/Directories/Localcouncils/DG_4003604,2 19588,http://nm30.abv.bg,2 19589,http://nm20.abv.bg,2 19590,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/DG_179368,2 19591,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/DG_179336,2 19592,http://www.able2pass.co.uk,2 19593,http://nl.cleanright.eu,2 19594,http://www.rtoc.org,2 19595,http://www.sybournprimary.com,2 19596,http://www.rtpi.org.uk,2 19597,http://www.cypnow.co.uk,2 19598,http://www.lancashirelln.org.uk,2 19599,http://www.cygnetnewtheatre.com,2 19600,http://nigelfreeman.theorytestpro.co.uk,2 19601,http://www.cyclistsdefencefund.org.uk,2 19602,http://www.sydenhamroadunderfives.org,2 19603,http://www.insomnia.gr,2 19604,http://www.lancaster.ac.uk,2 19605,http://www.ability.org.uk,2 19606,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxrefundsreclaimingtax/DG_171198,2 19607,http://www.sydlingpreschool.co.uk,2 19608,http://www.drivingwithdee.co.uk,2 19609,http://www.sylviamilne.btinternet.co.uk,2 19610,http://www.direct.gov.uk/en/TravelAndTransport/Knowyourtrafficsigns/DG_189811,2 19611,http://www.high-hopes.org.uk,2 19612,http://nhsgg.org.uk,2 19613,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxrefundsreclaimingtax/DG_078355,2 19614,http://nhs.blumilk.info,2 19615,http://www.englishuk.com,2 19616,http://www.oli2001.hit.bg,2 19617,http://nfm.org.uk,2 19618,http://www.cyber-rights.org,2 19619,http://nexttest.studentfinance.direct.gov.uk/calculator/studentfinancecalculator/1213/summary.xhtml,2 19620,http://nextsteptrust.easysearch.org.uk,2 19621,http://newwildlife.easysearch.org.uk,2 19622,http://www.rudstoninfants.com,2 19623,http://newventuredrivingtuition.wordpress.com,2 19624,http://www.cxoc.net,2 19625,http://www.cxdirectchatroom.com,2 19626,http://newsearch.active.hmrci,2 19627,http://www.systemsofecare.com,2 19628,http://news.uktemps.co.uk,2 19629,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxcodes/DG_174936,2 19630,http://www.abep.org.uk,2 19631,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxcodes/DG_171723,2 19632,http://www.oloan.com,2 19633,http://www.institute-of-fundraising.org.uk,2 19634,http://news.netcraft.com,2 19635,http://news.hse.gov.uk,2 19636,http://news.google.com,2 19637,http://www.t-vox.org,2 19638,http://news.ebookers.com,2 19639,http://www.instructme2drive.co.uk,2 19640,http://news.businesslinkdcs.co.uk,2 19641,http://www.t2k.org.uk,2 19642,http://www.abcontraining.co.uk,2 19643,http://newport.theorytestpro.co.uk,2 19644,http://newmarketjewellery.easysearch.org.uk,2 19645,http://www.downwidows.org,2 19646,http://newmail.012.net.il,2 19647,http://newlinxhousingoptions3.scoutdevelopment.co.uk,2 19648,http://newlifenetwork.co.uk,2 19649,http://newintranet,2 19650,http://newhamintranet,2 19651,http://www.omegadrive.co.uk,2 19652,http://www.landgpensioners.co.uk,2 19653,http://www.abcd-1234.net,2 19654,http://www.englishteachers.ru,2 19655,http://newcastleroutes.co.uk,2 19656,http://www.runesofmagic.com,2 19657,http://www.abbreviations.com,2 19658,http://www.taaccountancy.co.uk,2 19659,http://new.waccoe.com,2 19660,http://www.downside-primary.ik.org,2 19661,http://www.runnersworld.co.uk,2 19662,http://www.tabisland.ne.jp,2 19663,http://www.landlordexpert.co.uk,2 19664,http://new-mas.omobonomarketing.com,2 19665,http://www.abbeyfieldwinchester.hampshire.org.uk,2 19666,http://new-intranet,2 19667,http://www.cus.net,2 19668,http://www.direct.gov.uk/en/Dl1/Directories/DG_177680,2 19669,http://networx.ugslimited.com,2 19670,http://app.starthere.org,2 19671,http://netaccess.qmul.ac.uk:81,2 19672,http://net,2 19673,http://www.currentgeneration.co.uk,2 19674,http://www.easydriveaberdeen.co.uk,2 19675,http://ambitions.theorytestpro.co.uk,2 19676,http://www.landlordsafety1st.co.uk,2 19677,http://www.omniauto.it,2 19678,http://neintranet,2 19679,http://www.tagged.com,2 19680,http://www.aaschool.ac.uk,2 19681,http://www.aardvarkmotorcycles.co.uk,2 19682,http://www.tagish.co.uk,2 19683,http://www.aardvarkdrivingschoolweymouth.co.uk,2 19684,http://217.179.68.40,2 19685,http://www.aardvarkdriving.com,2 19686,http://www.direct.gov.uk/en/Dl1/Directories/DG_175876,2 19687,http://www.cunningcanary.com,2 19688,http://www.cummingriley.com,2 19689,http://www.cumbriaprobation.org.uk,2 19690,http://www.takingcontroloxon.org.uk,2 19691,http://ncweb,2 19692,http://www.tale.edu.au,2 19693,http://www.cumbriapasstime.com,2 19694,http://www.cumbriapartnership.nhs.uk,2 19695,http://www.cumbriahomebuy.org.uk,2 19696,http://www.aabreakdowncover.org.uk,2 19697,http://www.a6klub.pl,2 19698,http://www.talismancharity.org,2 19699,http://www.talkingbusinesscontinuity.com,2 19700,http://www.cumbriacc.gov.uk,2 19701,http://www.a4automatic.co.uk,2 19702,http://naszewyspy.co.uk,2 19703,http://www.direct.gov.uk/en/Dl1/Directories/DG_174888,2 19704,http://www.landstribunal.gov.uk,2 19705,http://www.a2bmotorcycletraining.co.uk,2 19706,http://www.ondivorce.co.uk,2 19707,http://naiscoilantseanchai.easysearch.org.uk,2 19708,http://www.tameside-drivingschool.co.uk,2 19709,http://217.12.8.115,2 19710,http://www.insuringyourcar.co.uk,2 19711,http://mywycombe.wycombe.gov.uk,2 19712,http://www.tameside-strategic-partnership.org.uk,2 19713,http://www.culmorechildcare.co.uk,2 19714,http://www.insw1.com,2 19715,http://www.direct.gov.uk/en/Dl1/Directories/DG_10029755,2 19716,http://www.a1ladycare.co.uk,2 19717,http://www.a1drivingschool.org.uk,2 19718,http://www.a1drivingschool.org,2 19719,http://www.cuhk.edu.hk,2 19720,http://www.a1aboltondriving.co.uk,2 19721,http://www.a1-forum.co.uk,2 19722,http://www.a1-drivingschool.co.uk,2 19723,http://www.onecalldirect.co.uk,2 19724,http://www.morgansindall-pensions.co.uk,2 19725,http://mysearch.sweetim.com,2 19726,http://www.int.halfords.co.uk,2 19727,http://ambitions.ixishosting.co.uk,2 19728,http://www.a-pass.co.uk,2 19729,http://www.a-new-start-pass.co.uk,2 19730,http://www.drivingtheorytestcentre.co.uk,2 19731,http://www.onedriving.com,2 19732,http://www.onedriving.net,2 19733,http://mymanchesterservices.manchester.gov.uk,2 19734,http://www.tarncourt.co.uk,2 19735,http://www.a-cg.org,2 19736,http://www.9am.ro,2 19737,http://www.oneinfourmag.org,2 19738,http://myitcareer.co.uk,2 19739,http://www.hertfordshire.nhs.uk,2 19740,http://www.tate.co.uk,2 19741,http://www.cssc.co.uk,2 19742,http://myfairgroundride.blogspot.com,2 19743,http://mydulwich.dulwich.org.uk,2 19744,http://www.90-one.co.uk,2 19745,http://www.8thworthing.org.uk,2 19746,http://www.tate.org.uk,2 19747,http://mycourse.solent.ac.uk,2 19748,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/GettingyourIncomeTaxright/DG_078352,2 19749,http://www.tateoil.co.uk,2 19750,http://www.csnmotorcycletraining.co.uk,2 19751,http://ageuksolihull.easysearch.org.uk,2 19752,http://www.tauntontraining.co.uk,2 19753,http://www.taverhamhigh.norfolk.sch.uk,2 19754,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/GettingyourIncomeTaxright/DG_078342,2 19755,http://www.csm.arts.ac.uk,2 19756,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/GettingyourIncomeTaxright/DG_078338,2 19757,http://www.direct.gov.uk/en/Dl1/Directories/DG_10014537,2 19758,http://www.direct.gov.uk/en/Dl1/Directories/DG_10014520,2 19759,http://www.tax-advantage.co.uk,2 19760,http://www.taxationdaily.com,2 19761,http://www.5thgear.org.uk,2 19762,http://www.intel.com,2 19763,http://www.csdrivertraining.co.uk,2 19764,http://www.5kuk.com,2 19765,http://www.lantra-awards.co.uk,2 19766,http://my.oadby-wigston.gov.uk,2 19767,http://my.northstate.net,2 19768,http://my.msn.com,2 19769,http://www.intelligencesearch.com,2 19770,http://www2.napier.ac.uk,2 19771,http://www.taxi-driver.co.uk,2 19772,http://www.rvtarantino.co.uk,2 19773,http://www.50plusshow.com,2 19774,http://my.ebay.co.uk,2 19775,http://my.bresnan.net,2 19776,http://www.rw7.co.uk,2 19777,http://my.belfastmet.int,2 19778,http://www.oneway2success.com,2 19779,http://my.affinion.com,2 19780,http://:59B-8-C8;LO<.@D,2 19781,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012730,2 19782,http://www.intellimeds.co.uk,2 19783,http://mwtraining.net,2 19784,http://www.4wheelsmotoring.co.uk,2 19785,http://www.4tforum.gr,2 19786,http://www.taylorsintensive.co.uk,2 19787,http://www.ryansdrivingschool.co.uk,2 19788,http://www.cs.kent.ac.uk,2 19789,http://www.onlineinventories.com,2 19790,http://www.4guk.co.uk,2 19791,http://www.cryer.co.uk,2 19792,http://www.cruzdriving.co.uk,2 19793,http://www.crusescotland.org.uk,2 19794,http://www.homelesslondon.org,2 19795,http://www.onlinemotortrader.co.uk,2 19796,http://muckin4life.direct.gov.uk/index.html,2 19797,http://mtod.theorytestpro.co.uk,2 19798,http://www.40searchengines.com,2 19799,http://www.ryecroft-glenton.co.uk,2 19800,http://msroot04,2 19801,http://www.largeandgibson.co.uk,2 19802,http://www.3wheelerworld.com,2 19803,http://www.onlinewatchdog.co.uk,2 19804,http://msm.jigsy.com,2 19805,http://www.cruises.explorertravel.co.uk,2 19806,http://www.englishmartyrs.towerhamlets.sch.uk,2 19807,http://www.3ecloseprotection.co.uk,2 19808,http://www.ontrackaviation.com,2 19809,http://www.s-ymotors.co.uk,2 19810,http://yq.search.yahoo.com,2 19811,http://msd-destiny,2 19812,http://www.larkhallinfants.co.uk,2 19813,http://www.drivingtestonline.co.uk,2 19814,http://www.38degrees.org.uk,2 19815,http://www.365alive.co.uk,2 19816,http://www.360travelguide.com,2 19817,http://www.32searchengines.com,2 19818,http://www.306gti6.com,2 19819,http://mrlhc.easysearch.org.uk,2 19820,http://ageconcerndacorum.easysearch.org.uk,2 19821,http://mrd.theorytestpro.co.uk,2 19822,http://mrct.easysearch.org.uk,2 19823,http://10-to-2-driving-school.co.uk,2 19824,http://mpserver,2 19825,http://www.tbradleymotor.co.uk,2 19826,http://www.croydoncrunch.com,2 19827,http://www.intensive-driving-uk.co.uk,2 19828,http://www.2pass.com,2 19829,http://www.croydoncab.org.uk,2 19830,http://www.larne.gov.uk,2 19831,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012575,2 19832,http://adi255412.theorytestpro.co.uk,2 19833,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/otherbenefits/index.htm,2 19834,http://move-on.org.uk,2 19835,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012573,2 19836,http://www.tcmotorslincoln.co.uk,2 19837,http://www.sa.gov.au,2 19838,http://motoringlawyers.silkmoth.co.uk,2 19839,http://www.crosswaydrivingschool.co.uk,2 19840,http://www.crossroads.org.uk,2 19841,http://www.247recruit.com,2 19842,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012281,2 19843,http://www.drivingtestmillhill.co.uk,2 19844,http://www.intensivedrivingcoursesperth.co.uk,2 19845,http://motd.blackpool.ac.uk,2 19846,http://www.2366atc.co.uk,2 19847,http://www.opening-doors.org,2 19848,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/entitlement/DG_186815,2 19849,http://www.easybib.com,2 19850,http://www.teachingsupport.org.uk,2 19851,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/entitlement/DG_073944,2 19852,http://www.croftonacademy.org.uk,2 19853,http://212.2.31.39,2 19854,http://www.laspurs.com,2 19855,http://www.teachingtimes.com,2 19856,http://www.lasthousewifeinengland.co.uk,2 19857,http://www.doug2drive.co.uk,2 19858,http://www.sacredheart.sefton.sch.uk,2 19859,http://www.1styoungdrivertraining.com,2 19860,http://95.131.64.69,2 19861,http://www.sacredheartmiddlesbrough.co.uk,2 19862,http://www.team-bhp.com,2 19863,http://www.saddle-up.org,2 19864,http://www.criminalrecordssearch.co.uk,2 19865,http://mortgagehelp.direct.gov.uk/i-am-struggling-to-pay-my-mortgage/diagnostic-tool.aspx,2 19866,http://www.1ststep-drivingschool.co.uk,2 19867,http://www.openroaddrivingtuition.co.uk,2 19868,http://www.1stopsnoring.co.uk,2 19869,http://mortgagecompensationscheme.org.uk,2 19870,http://morrisminorowners.co.uk,2 19871,http://www.criminallaw-solicitors.co.uk,2 19872,http://www.opinia.co.uk,2 19873,http://moorhouse.easysearch.org.uk,2 19874,http://www.1stgeards.co.uk,2 19875,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012112,2 19876,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012075,2 19877,http://www.hucknallrdmc.co.uk,2 19878,http://www.teigndriving.com,2 19879,http://www.crestschools.com,2 19880,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Changesthataffectyourtaxcredits/Familychanges/DG_172977,2 19881,http://moodle.wortech.ac.uk,2 19882,http://www.morton-fraser.com,2 19883,http://moodle.wilberforce.ac.uk,2 19884,http://www.interimmanagementuk.com,2 19885,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Changesthataffectyourtaxcredits/DG_173254,2 19886,http://moodle.west-lothian.ac.uk,2 19887,http://www.1stchoicedrivingschool.com,2 19888,http://2112biketraining.co.uk,2 19889,http://www.1stcentralinsurance.com,2 19890,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012000,2 19891,http://www.1stbinghamdrivingschool.co.uk,2 19892,http://www.creditslips.org,2 19893,http://www.1stachievedrivingschool.co.uk,2 19894,http://moodle.selby.ac.uk,2 19895,http://www.creditreportuk.co.uk,2 19896,http://africanchildrenschoir.com,2 19897,http://www.templemillchildrenscentre.co.uk,2 19898,http://www.ten2two.org,2 19899,http://www.tenancy-agreement.org.uk,2 19900,http://www.1st4driving.com,2 19901,http://www.international-school.org,2 19902,http://www.1st-time.co.uk,2 19903,http://www.1st-time-school-of-motoring.co.uk,2 19904,http://www.tengovernor.com,2 19905,http://www.1st-reactions.com,2 19906,http://www.internationaldriversservice.com,2 19907,http://moodle.ourict.net,2 19908,http://www.1st-impressions-driving.co.uk,2 19909,http://www.optifirst.com,2 19910,http://www.safeguardingchildren.co.uk,2 19911,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011887,2 19912,http://www.safeinteesvalley.org,2 19913,http://www.creativerecruitment.co.uk,2 19914,http://www.teoma.com,2 19915,http://www.creativeportal.co.uk,2 19916,http://www.teresapearce.org.uk,2 19917,http://www.termcymru.cymru.gov.uk,2 19918,http://www.1qx.com,2 19919,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011809,2 19920,http://www.1hfs.co.uk,2 19921,http://moodle.llangefni.anglesey.sch.uk,2 19922,http://www.terrytaylorgarages.co.uk,2 19923,http://www.eastvillemedicalpractice.co.uk,2 19924,http://209.85.229.147,2 19925,http://www.optimumdrivingschool.com,2 19926,http://www.testbourne.hants.sch.uk,2 19927,http://www.mosi.org.uk,2 19928,http://www.saferderbyshire.gov.uk,2 19929,http://moodle.hadlow.ac.uk,2 19930,http://www.testersdrivingschool.co.uk,2 19931,http://www.testvalleypkg.co.uk,2 19932,http://www.internations.org,2 19933,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011797,2 19934,http://www.mossandcoleman.co.uk,2 19935,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011794,2 19936,http://www.opusenergy.com,2 19937,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011793,2 19938,http://www.13-19central.co.uk,2 19939,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011792,2 19940,http://www.cranleighmedicalpractice.com,2 19941,http://www.123drivertraining.co.uk,2 19942,http://209.85.229.132,2 19943,http://www.internetoffer.munnsom.co.uk,2 19944,http://www.tfs-net.co.uk,2 19945,http://www.saferlife.co.uk,2 19946,http://www.121drivingtuition.com,2 19947,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011787,2 19948,http://www.121drivingschool.net,2 19949,http://moodle.citycol.ac.uk,2 19950,http://www.cranbrookprimary.redbridge.sch.uk,2 19951,http://moodle.ccacolchester.com,2 19952,http://www.thamesdrivingschool.com,2 19953,http://www.121drivertraining.com,2 19954,http://moodle.calderdale.ac.uk,2 19955,http://www.craigs-schoolofmotoring.co.uk,2 19956,http://www.1066motorcycletraining.co.uk,2 19957,http://moodle.bournville.ac.uk,2 19958,http://www.craigchapmansdrivingschool.com,2 19959,http://moodle.bmetc.ac.uk,2 19960,http://www.1010global.org,2 19961,http://www.100searchengines.com,2 19962,http://www.the-cbb.co.uk,2 19963,http://www.1-lofalesson.co.uk,2 19964,http://moodle.bca.ac.uk,2 19965,http://www.cradlehallnursery.com,2 19966,http://www.01495info.com,2 19967,http://moodle.barnfield.ac.uk,2 19968,http://www.cr8purleysom.co.uk,2 19969,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011771,2 19970,http://www-staging.westsussex.gov.uk,2 19971,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Ifthingsgowrong/Complaintsappealspenaltieschecks/DG_173445,2 19972,http://www-old.hud.ac.uk,2 19973,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011767,2 19974,http://www-leibniz.imag.fr,2 19975,http://www,2 19976,http://wwp.romania-links.com,2 19977,http://moneytimeline.group.shef.ac.uk,2 19978,http://www.orbitcare.org.uk,2 19979,http://ww3.wandsworth.gov.uk,2 19980,http://moneypress.org.uk,2 19981,http://moneyjungle.net,2 19982,http://ww2.westberks.gov.uk,2 19983,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Ifthingsgowrong/Complaintsappealspenaltieschecks/DG_173381,2 19984,http://www.safetyphoto.co.uk,2 19985,http://www.dorsethealthcare.nhs.uk,2 19986,http://ww1.tiki.ne.jp,2 19987,http://mondialintranet,2 19988,http://monarchists-ottawa.ca,2 19989,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011761,2 19990,http://ww.school-portal.co.uk,2 19991,http://mon-bs-broker.staging.imaginet.co.uk,2 19992,http://ww.mariadelpilar.info,2 19993,http://mog.myfreeforum.org,2 19994,http://209.85.227.105,2 19995,http://wtiieeui.surfcanyon.com,2 19996,http://www.lawcommunicator.co.uk,2 19997,http://wstltd.co.uk,2 19998,http://mobile.waccoe.com,2 19999,http://www.cpht.co.uk,2 20000,http://www.orchardschool.org.uk,2 20001,http://wsom.theorytestpro.co.uk,2 20002,http://mobbebloggen.wordpress.com,2 20003,http://mneme,2 20004,http://www.theaic.co.uk,2 20005,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/BeforeYouTravel/DG_4019390,2 20006,http://wsmptfa.easysearch.org.uk,2 20007,http://www.cpastudios.co.uk,2 20008,http://wsc-rblive:7777,2 20009,http://www.orestonacademy.com,2 20010,http://www.cpa.org.uk,2 20011,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011751,2 20012,http://mkc20720,2 20013,http://www.theardenmedicalcentre.co.uk,2 20014,http://wrecks2riches.co.uk,2 20015,http://www.sagebusinessadvice.co.uk,2 20016,http://mitchldrivingschool.co.uk,2 20017,http://www.huddersfieldschoolofmotoring.co.uk,2 20018,http://wra.easysearch.org.uk,2 20019,http://wpop4.libero.it,2 20020,http://www.orianit.edu-negev.gov.il,2 20021,http://www.homeownershipwestminster.co.uk,2 20022,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011735,2 20023,http://209.85.169.147,2 20024,http://worldworld.com,2 20025,http://mindthegap.thecareersgroup.co.uk,2 20026,http://www.motive.co.nz,2 20027,http://workxone,2 20028,http://www.thebeehiveclub.co.uk,2 20029,http://workspaces-portal,2 20030,http://workspace.nottingham.ac.uk,2 20031,http://workspace,2 20032,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/DG_172852,2 20033,http://worksmart.org.uk,2 20034,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011729,2 20035,http://mikep.theorytestpro.co.uk,2 20036,http://www.englishinbritain.de,2 20037,http://mikeandmarkburgess.co.uk.124.gppnetwork.com,2 20038,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011726,2 20039,http://midsussexmencap.easysearch.org.uk,2 20040,http://workingforessex.com,2 20041,http://www.laws.sandwell.gov.uk,2 20042,http://workforums.co.uk,2 20043,http://workforceinitiative.co.uk,2 20044,http://workabout.org.uk,2 20045,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011716,2 20046,http://www.saintalbanschool.co.uk,2 20047,http://www.coventrybuildingsociety.co.uk,2 20048,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011714,2 20049,http://worcsmegroup.weebly.com,2 20050,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/Childrenandtaxcredits/DG_177784,2 20051,http://209.85.169.104,2 20052,http://www.lawscot.org.uk,2 20053,http://worcesterrenewables.com,2 20054,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011705,2 20055,http://michaelbelldriving.theorytestpro.co.uk,2 20056,http://www.thebigtrainingcompany.co.uk,2 20057,http://www.thebigwheel.org.uk,2 20058,http://woolseryschool.easysearch.org.uk,2 20059,http://www.thebirchesmedicalcentre.co.uk,2 20060,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011703,2 20061,http://www.court-moor.hants.sch.uk,2 20062,http://woodruff-fp.co.uk,2 20063,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/Childrenandtaxcredits/DG_172713,2 20064,http://www.motomanai.lt,2 20065,http://www.intran4.com,2 20066,http://metricviews.org.uk,2 20067,http://www.courrierinternational.com,2 20068,http://metalib.library.qmul.ac.uk,2 20069,http://www.countywide-driving.co.uk,2 20070,http://wolvcoll.blackboard.com,2 20071,http://www.countyupper.suffolk.sch.uk,2 20072,http://www.lawsonsdrivingschool.co.uk,2 20073,http://wolp-app02,2 20074,http://www.countrywidemedicaltraining.co.uk,2 20075,http://www.countryside-properties.com,2 20076,http://wokingham.build.eibs.co.uk,2 20077,http://merton.theorytestpro.co.uk,2 20078,http://www.drivingschoolsnortholt.co.uk,2 20079,http://www.hithergreen.org.uk,2 20080,http://www.ormskirkwestend.lancs.sch.uk,2 20081,http://www.motor2000.moonfruit.com,2 20082,http://meophamschoolofmotoring.co.uk,2 20083,http://meolebrace.com,2 20084,http://www.countesthorpeparishcouncil.co.uk,2 20085,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011689,2 20086,http://www.dormers-wells.ealing.sch.uk,2 20087,http://membersmd.managers.org.uk,2 20088,http://members5.boardhost.com,2 20089,http://www.coundoncourt.coventry.sch.uk,2 20090,http://www.thebridgetrust.org.uk,2 20091,http://wm55.inbox.com,2 20092,http://www.orpheusweb.co.uk,2 20093,http://www.couchsurfing.org,2 20094,http://members,2 20095,http://member.goodpractice.net,2 20096,http://mels.theorytestpro.co.uk,2 20097,http://www.motorcycletraining.net,2 20098,http://8thlsg.easysearch.org.uk,2 20099,http://medway.gov.uk,2 20100,http://meduw,2 20101,http://withhopeupass.co.uk,2 20102,http://www.dore-primary.ik.org,2 20103,http://mediacentre.dh.gov.uk,2 20104,http://wirral-libraries.theorytestpro.co.uk,2 20105,http://www.salmonsdrivingschool.co.uk,2 20106,http://wip-ubs.fconet.fco.gov.uk,2 20107,http://mec.design.officelive.com,2 20108,http://winterwatch.dh.gov.uk,2 20109,http://mdt.theorytestpro.co.uk,2 20110,http://www.motoringassist.com,2 20111,http://www.oscar.org.uk,2 20112,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/Usingpleasurecraftsafely/index.htm,2 20113,http://win1089.vs.easily.co.uk,2 20114,http://www.cosmopolitan.bg,2 20115,http://www.heidisdrivingschool.co.uk,2 20116,http://mcjsdm13.lb.johnlewis.co.uk,2 20117,http://www.motorlawsolicitors.co.uk,2 20118,http://willsandbooks.co.uk,2 20119,http://209.85.147.106,2 20120,http://mbh.theorytestpro.co.uk,2 20121,http://mbdaweb,2 20122,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011661,2 20123,http://www.corporateinsolvency.org,2 20124,http://www.drivingschoolsinporthmadog.co.uk,2 20125,http://www.donnysom.co.uk,2 20126,http://www.corp.google.com,2 20127,http://www.drivingschoolsinpeterborough.com,2 20128,http://www.drivingschoolsinlouth.co.uk,2 20129,http://wiki.openstreetmap.org,2 20130,http://xlr8u.co.uk,2 20131,http://www.homes4u.co.uk,2 20132,http://www.ossettacademy.co.uk,2 20133,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011650,2 20134,http://maswellparkdoctors.co.uk,2 20135,http://wiki.d-fine.local,2 20136,http://www.drivingschoolsinbasildon.com,2 20137,http://www.lbro.org.uk,2 20138,http://www.lbustersdrivingschool.com,2 20139,http://www.salsa.uk.net,2 20140,http://martys.theorytestpro.co.uk,2 20141,http://www.corkyscars.co.uk,2 20142,http://www.motorwise.net,2 20143,http://wight5.easysearch.org.uk,2 20144,http://martinybrown.theorytestpro.co.uk,2 20145,http://wiganworld.co.uk,2 20146,http://www.motoszkocja.pun.pl,2 20147,http://www.motpoole.co.uk,2 20148,http://wigan.theorytestpro.co.uk,2 20149,http://wigan.portal.s-cool.co.uk,2 20150,http://www.cordlessphoneworld.co.uk,2 20151,http://www.inventoryexpert.co.uk,2 20152,http://www.inventoryhouse.co.uk,2 20153,http://www.corby.pun.pl,2 20154,http://www.saltforddrivingschool.co.uk,2 20155,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011641,2 20156,http://markonedrivingschool.co.uk,2 20157,http://markmembrydrivertraining.co.uk,2 20158,http://www.thecodestore.co.uk,2 20159,http://whystudyeconomics.ac.uk,2 20160,http://209.85.143.99,2 20161,http://www.corby-advancedmotorists.org,2 20162,http://whyevolutionistrue.wordpress.com,2 20163,http://www.theconstructionindex.co.uk,2 20164,http://marinestore.co.uk,2 20165,http://www.otctraining.co.uk,2 20166,http://www.saltireschoolofmotoring.com,2 20167,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011636,2 20168,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011635,2 20169,http://www.otest.co.uk,2 20170,http://www.mountcarmelfirstschool.co.uk,2 20171,http://www.lcffirstmove.co.uk,2 20172,http://maps.google.ie,2 20173,http://www.mousebreaker.com,2 20174,http://www.hkdiamondjubileeparty.co.uk,2 20175,http://www.cool-planet.co.uk,2 20176,http://wheelerprimary.org,2 20177,http://www.cookridgeprimaryschool.org.uk,2 20178,http://maps.google.bg,2 20179,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/Keepingsafeatthecoast/DG_185487,2 20180,http://maps.environment-agency.gov.uk,2 20181,http://www.thecvstore.net,2 20182,http://www.thedaisygarland.org.uk,2 20183,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/SavingsAndInvestments/DG_10034496,2 20184,http://www.conyers.stockton.sch.uk,2 20185,http://www.samarahomes.co.uk,2 20186,http://whaleybridgeband.easysearch.org.uk,2 20187,http://www.conwyvalleyflooding.org.uk,2 20188,http://manuzacharia.blogspot.com,2 20189,http://www.hull.ac.uk,2 20190,http://www.conveypropertyservices.com,2 20191,http://wfps-newsletter.blogspot.com,2 20192,http://www.sampfordcourtenay.net,2 20193,http://manchesterdrivingacademy.co.uk,2 20194,http://manchester.3rdsectorit.co.uk,2 20195,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011606,2 20196,http://malyshi-uk.livejournal.com,2 20197,http://www.direct.gov.uk/en/SiteInformation/DG_10036216,2 20198,http://89.234.2.42,2 20199,http://www.doncaster-recruitment.com,2 20200,http://westmeonpc.easysearch.org.uk,2 20201,http://www.samsltraining.co.uk,2 20202,http://www.movequickproperties.co.uk,2 20203,http://malaysia.answers.yahoo.com,2 20204,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011597,2 20205,http://www.contaminatedfuel.com,2 20206,http://www.ldforum.net,2 20207,http://west-penwith.org.uk,2 20208,http://makejusticework.org.uk,2 20209,http://www.thedrivingacademy.org,2 20210,http://www.drivingschoolsglasgowwestend.co.uk,2 20211,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011586,2 20212,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/PlanningYourPersonalFinances/DG_10013582,2 20213,http://www.thedrivingschool.co.uk,2 20214,http://www.direct.gov.uk/en/SiteInformation/DG_020455,2 20215,http://www.thedrivingschool.net,2 20216,http://wegcode.be,2 20217,http://mail50.abv.bg,2 20218,http://www.thedrivingschoolonline.co.uk,2 20219,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011579,2 20220,http://www.consumerconnect.ie,2 20221,http://app.bpc.ac.uk,2 20222,http://websrv1,2 20223,http://www.outdoorsmagic.com,2 20224,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011576,2 20225,http://website.informer.com,2 20226,http://www.construction-student.co.uk,2 20227,http://www.sandwellparentpartnership.co.uk,2 20228,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011575,2 20229,http://mail.wnsc.ac.uk,2 20230,http://mail.whsg.info,2 20231,http://www.constablesmobility.com,2 20232,http://www.theeducationwebsite.co.uk,2 20233,http://www.sandycrosswealth.co.uk,2 20234,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011571,2 20235,http://www.conservatoryblinds.co.uk,2 20236,http://www.theenergysavingteam.com,2 20237,http://webmailb.juno.com,2 20238,http://www.outitgoes.com,2 20239,http://mail.themews.tv,2 20240,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/Mortgages/DG_10014982,2 20241,http://www.movinghere.org.uk,2 20242,http://mail.temple.manchester.sch.uk,2 20243,http://webmail2.vodafone.ie:8080,2 20244,http://webmail2.autotrader.co.uk,2 20245,http://amafhh.co.uk,2 20246,http://webmail1m.orange.fr,2 20247,http://webmail1k.orange.fr,2 20248,http://webmail1j.orange.fr,2 20249,http://www.conquerdriving.co.uk,2 20250,http://adi224048.theorytestpro.co.uk,2 20251,http://www.sandymoor-mini-som.com,2 20252,http://mail.st-josephs.manchester.sch.uk,2 20253,http://www.direct.gov.uk/en/prod_dg/groups/ta/@dg/documents/system/dg_184605.jpg,2 20254,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011556,2 20255,http://www.connexionsportsmouth.co.uk,2 20256,http://www.ovesco.co.uk,2 20257,http://www.ovoenergy.com,2 20258,http://mail.sacredheart-baguley.manchester.sch.uk,2 20259,http://mail.rosewood.dudley.sch.uk,2 20260,http://mail.ringway.manchester.sch.uk,2 20261,http://mail.redhill.dudley.sch.uk,2 20262,http://mail.ravensbury.manchester.sch.uk,2 20263,http://www.movingonmovingup.co.uk,2 20264,http://www.enable.org.uk,2 20265,http://www.connexions360.co.uk,2 20266,http://mail.plymouthgrove.manchester.sch.uk,2 20267,http://mail.pbc.gov.cn,2 20268,http://www.oxfam.org.uk,2 20269,http://www.saperlo.it,2 20270,http://www.connexions-stockport.com,2 20271,http://www.drivingschoolsblackpool.co.uk,2 20272,http://www.educationvacancies.com,2 20273,http://mail.nottinghamschools.co.uk,2 20274,http://www.investmentguide.co.uk,2 20275,http://mail.nightingaleremovals.com,2 20276,http://www.oxfordairport.co.uk,2 20277,http://www.oxfordcollege.ac,2 20278,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011536,2 20279,http://webmail.rock.com,2 20280,http://mail.myvle.org,2 20281,http://mail.mycosmos.gr,2 20282,http://mail.mcsportal.org.uk,2 20283,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011532,2 20284,http://www.drivingschoolsaltash.co.uk,2 20285,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011530,2 20286,http://www.oxtedhealthcentre.co.uk,2 20287,http://webmail.notredamecoll.ac.uk,2 20288,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011529,2 20289,http://www.thefreewebsite.net,2 20290,http://www.sapphiredrivingschool.co.uk,2 20291,http://87.248.114.86,2 20292,http://www.connectingcheshire.org.uk,2 20293,http://www.leadingedgesafety.co.uk,2 20294,http://mail.holytrinity.lambeth.sch.uk,2 20295,http://www.investmentsense.co.uk,2 20296,http://webmail.liminal.com,2 20297,http://mail.grange.manchester.sch.uk,2 20298,http://webmail.lcn.com,2 20299,http://mail.forolondres.com,2 20300,http://webmail.katamail.com,2 20301,http://www.confidentdrive.co.uk,2 20302,http://www.movingonup.info,2 20303,http://www.confidencedrivingschool.co.uk,2 20304,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011520,2 20305,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011518,2 20306,http://www.movingsomersetforward.co.uk,2 20307,http://webmail.inklude.net,2 20308,http://webmail.hants.gov.uk,2 20309,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Working/LookingForWork/index.htm,2 20310,http://webmail.foyowa.com,2 20311,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/FinancialProblemsAndComplaints/DG_10035505,2 20312,http://www.theglobeandmail.com,2 20313,http://mail.bowkervale.manchester.sch.uk,2 20314,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011506,2 20315,http://www.sarahraven.com,2 20316,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011505,2 20317,http://www.comune.torino.it,2 20318,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011503,2 20319,http://mail.beaverroad-pri.manchester.sch.uk,2 20320,http://webmail.earthlink.net,2 20321,http://mail.baguleyhall.manchester.sch.uk,2 20322,http://mail.baconsctc.co.uk,2 20323,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011502,2 20324,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011499,2 20325,http://www.pa.enigmait.co.uk,2 20326,http://xn-----mlcnbcfoj8co4isb.xn--p1ai,2 20327,http://mail.agrosupdijon.fr,2 20328,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011488,2 20329,http://mail-ha.hodgsongroup.co.uk,2 20330,http://webmail.calicohousing.co.uk,2 20331,http://webmail.cahro.co.uk,2 20332,http://www.elles-som.co.uk,2 20333,http://webmail.bushinternet.com,2 20334,http://magyaroklondonban.com,2 20335,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/Bonavacantia/index.htm,2 20336,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/Bonavacantia/DG_171068,2 20337,http://www.compensationclaimtoday.co.uk,2 20338,http://maggie,2 20339,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011478,2 20340,http://www.compassdriving.co.uk,2 20341,http://www.investorsinhomes.co.uk,2 20342,http://madrid.angloinfo.com,2 20343,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011474,2 20344,http://macharsaction.easysearch.org.uk,2 20345,http://weblog.fok.nl,2 20346,http://macc.easysearch.org.uk,2 20347,http://weblearn.nescot.ac.uk,2 20348,http://mablethorpeatc.easysearch.org.uk,2 20349,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011471,2 20350,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/BankAccountsAndBankingProducts/DG_10035183,2 20351,http://www.compareandsave.com,2 20352,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011467,2 20353,http://www.involvingfamilies.org,2 20354,http://m3net.mcga.gov.uk,2 20355,http://www.saturday-work.com,2 20356,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/BankAccountsAndBankingProducts/DG_10035158,2 20357,http://webdesignledger.com,2 20358,http://www.saunders1865.com,2 20359,http://87.117.250.111,2 20360,http://www.thehanley.co.uk,2 20361,http://www.dogsey.com,2 20362,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011458,2 20363,http://www.thehavencentre.com,2 20364,http://www.pagtour.net,2 20365,http://www.theholidaylet.com,2 20366,http://m.direct.gov.uk/www.direct.gov.uk/homePageController,2 20367,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011457,2 20368,http://www.mpdrivingschool.com,2 20369,http://webapplicationliveenp,2 20370,http://webapp,2 20371,http://www.paheducation.co.uk,2 20372,http://www.thehuddle.co.uk,2 20373,http://www.learn-with-bob.com,2 20374,http://www.emstrackinglinks.com,2 20375,http://m.direct.gov.uk/gmapsController,2 20376,http://m.direct.gov.uk/charitySearchController,2 20377,http://m.direct.gov.uk/categoriesController,2 20378,http://web19.pistonheads.com,2 20379,http://www.thekennelclub.org.uk,2 20380,http://www.mphdrivingacademy.co.uk,2 20381,http://m.baidu.com,2 20382,http://m.baaso.org.uk,2 20383,http://web02,2 20384,http://lyndhurstweb.com,2 20385,http://web.worldbank.org,2 20386,http://www.sbcstnt.com,2 20387,http://luucc.liquidsatisfaction.com,2 20388,http://lutonsfc.ac.uk,2 20389,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011441,2 20390,http://www.humberside-probation.org.uk,2 20391,http://www.communigate.co.uk,2 20392,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011439,2 20393,http://lucy-ds.co.uk.,2 20394,http://200.1.1.221:15871,2 20395,http://lucy,2 20396,http://www.thelicencecentre.com,2 20397,http://www.commonsleader.gov.uk,2 20398,http://www.drivingschoollondon.co.uk,2 20399,http://www.thelittlehousecompany.co.uk,2 20400,http://www.comeonyouspurs.com,2 20401,http://lst.easysearch.org.uk,2 20402,http://lsrs.ro,2 20403,http://www.come2uk.com,2 20404,http://web.brimsham.com,2 20405,http://www.palgrave.com,2 20406,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011432,2 20407,http://www.thelondonlink.net,2 20408,http://web-reform-dialogue.ideascale.com,2 20409,http://1stwhittinghamscouts.easysearch.org.uk,2 20410,http://www.mpps.ik.org,2 20411,http://lpa.justapplications.co.uk,2 20412,http://web-23.citromail.hu,2 20413,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011425,2 20414,http://www.iop-epd.org,2 20415,http://www.colostomyassociation.org.uk,2 20416,http://love2pass.com,2 20417,http://lovathallpresch.easysearch.org.uk,2 20418,http://www.learn2drivewithjanet.co.uk,2 20419,http://www.colnat.com,2 20420,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011420,2 20421,http://wds880457.theorytestpro.co.uk,2 20422,http://wdpstapp2.ons.statistics.gov.uk:7785,2 20423,http://www.iop.org,2 20424,http://www.learnandrive.co.uk,2 20425,http://los.direct.gov.uk/jobsearch,2 20426,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Makingacourtclaimformoney/DG_195886,2 20427,http://www.themfg.co.uk,2 20428,http://www.pameladrivingschool.co.uk,2 20429,http://www.pamojaconsulting.co.uk,2 20430,http://www.educationinuk.or.kr,2 20431,http://www.mr-electric.co.uk,2 20432,http://www.collativelearning.com,2 20433,http://www.colinwpritchard.co.uk,2 20434,http://www.colintett.co.uk,2 20435,http://www.colinsperformingarts.co.uk,2 20436,http://www.colinsdrivingschool.co.uk,2 20437,http://waverleysingers.easysearch.org.uk,2 20438,http://www.colins-school-of-motoring.co.uk,2 20439,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011400,2 20440,http://www.mr2club.be,2 20441,http://www.ip-centre.org,2 20442,http://www.colesdrivingacademy.com,2 20443,http://www.colesdrivingacademy.co.uk,2 20444,http://www.pantherpass.com,2 20445,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011393,2 20446,http://xr80.com,2 20447,http://www.coleggwent.ac.uk,2 20448,http://warhammer-empire.com,2 20449,http://longniddryspc.easysearch.org.uk,2 20450,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011383,2 20451,http://www.coldstream-bike-training.co.uk,2 20452,http://londresdvalc.herobo.com,2 20453,http://londontaxi.proboards.com,2 20454,http://www.ipacanada.com,2 20455,http://www.ipass-driving.co.uk,2 20456,http://1stopinstruction.com,2 20457,http://waltonweb.walton.lincs.sch.uk,2 20458,http://www.panthertaxis.co.uk,2 20459,http://www.papanurgle.net,2 20460,http://londonmet.metafaq.com,2 20461,http://walsall.theorytestpro.co.uk,2 20462,http://londonlife.bloggplatsen.se,2 20463,http://www.mrc.ac.uk,2 20464,http://wallace.design-portfolio.info,2 20465,http://walkertracker.com,2 20466,http://londonban.com,2 20467,http://www.educationindex.net,2 20468,http://www.theopenroad.co.uk,2 20469,http://www.coffinswell.blogspot.com,2 20470,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011372,2 20471,http://www.theorion.org.uk,2 20472,http://www.theory-online.co.uk,2 20473,http://www.theory-test-training.co.uk,2 20474,http://www.learning-opportunities.org.uk,2 20475,http://londen.startpagina.nl,2 20476,http://www.paradigmnorton.co.uk,2 20477,http://www.codeuk.com,2 20478,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/StatePensiondeferral/DG_179996,2 20479,http://wakefield.schooljotter.com,2 20480,http://www.educationict.org.uk,2 20481,http://www.cocoonyourhome.co.uk,2 20482,http://locksofsandwichcycles.co.uk,2 20483,http://lockleaze.co.uk,2 20484,http://www.theparaplanner.com,2 20485,http://www.highbridgemc.co.uk,2 20486,http://wacp,2 20487,http://www.scels.com,2 20488,http://localhost:85,2 20489,http://www.mrjools.com,2 20490,http://www.thepasslane.co.uk,2 20491,http://w3.tap.ibm.com,2 20492,http://www.ipsea.org.uk,2 20493,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011321,2 20494,http://www.ipsi.fraunhofer.de,2 20495,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011286,2 20496,http://www.thepolicetreatmentcentres.org,2 20497,http://localhost:3000,2 20498,http://www.learningmentor.co.uk,2 20499,http://www.thepolishobserver.co.uk,2 20500,http://localcrime.direct.gov.uk/helper/street-drinking/index.html,2 20501,http://www.thepowerservice-newcastle.co.uk,2 20502,http://www.learningrecordsservice.org.uk,2 20503,http://www.coastguardrescue.org.uk,2 20504,http://www.eastlancsme.org.uk,2 20505,http://www.learningtechnologies.ac.uk,2 20506,http://local.speedwaymotorcycles.co.uk,2 20507,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011256,2 20508,http://www.mrsite.co.uk,2 20509,http://vrsac.easysearch.org.uk,2 20510,http://www.co2list.org,2 20511,http://www.hun-vagyok.talktalk.net,2 20512,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011253,2 20513,http://local.direct.gov.uk/LDGRedirect/cache/75/index.cfm,2 20514,http://vowbrw049:9000,2 20515,http://local.direct.gov.uk/LDGRedirect/cache/3/contact.htm,2 20516,http://vorotok.com.ua,2 20517,http://local.direct.gov.uk/LDGRedirect/,2 20518,http://volvoforums.org.uk,2 20519,http://advego.ru,2 20520,http://www.schooladmissionappeals.info,2 20521,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011250,2 20522,http://lnapp01,2 20523,http://lmssrvr01,2 20524,http://advanticaweb,2 20525,http://www.thermal-earth.uk.com,2 20526,http://www.parcgarage.com,2 20527,http://www.parentcouncil.org.uk,2 20528,http://llanelweddchurchinwalesprimaryschool.schools.uk.com,2 20529,http://www.theroadend.co.uk,2 20530,http://www.cn97.com,2 20531,http://livesnotknives.org,2 20532,http://www.theroadster.net,2 20533,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011244,2 20534,http://www.parentingproject.org.uk,2 20535,http://www.parentingsolutions.org.uk,2 20536,http://livent247,2 20537,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011241,2 20538,http://vle2.peterborough.ac.uk,2 20539,http://vle03,2 20540,http://www.theschoolrun.com,2 20541,http://live.washingtonpost.com,2 20542,http://live.vodafone.com,2 20543,http://www.huncote.leics.sch.uk,2 20544,http://live.oldham.gov.uk,2 20545,http://www.cmc-careers.com,2 20546,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Debtrepaymentoptions/DG_187427,2 20547,http://www.iqpg.co.uk,2 20548,http://live-est.vwtcloud.com,2 20549,http://www.clydebank.ac.uk,2 20550,http://vle.swindon-college.ac.uk,2 20551,http://vle.stamford.ac.uk,2 20552,http://littlegiantsskoolclub.easysearch.org.uk,2 20553,http://vle.southhunsley.org.uk,2 20554,http://www.clusterweb.org.uk,2 20555,http://vle.seevic-college.ac.uk,2 20556,http://www.schoolspeoplenet.norfolk.gov.uk,2 20557,http://listmymotor.com,2 20558,http://www.iranyskocia.hu,2 20559,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011233,2 20560,http://www.schoolswire.org,2 20561,http://www.schooltrip.com,2 20562,http://www.easthuntspillparishcouncil.gov.uk,2 20563,http://www.msatrust.org.uk,2 20564,http://www.schotlandforum.nl,2 20565,http://www.msconline.net,2 20566,http://www.thesmartclub.com,2 20567,http://vle.lrgs.lancs.sch.uk,2 20568,http://linkdb.memiah.co.uk,2 20569,http://linkage.easysearch.org.uk,2 20570,http://vle.longleypark.ac.uk,2 20571,http://www.thesprout.co.uk,2 20572,http://www.mseproperty.co.uk,2 20573,http://link.azet.sk,2 20574,http://82.179.249.29,2 20575,http://vle.jeron.je,2 20576,http://vle.ips-international.com,2 20577,http://lincolnshire.theorytestpro.co.uk,2 20578,http://www.thestarphoenix.com,2 20579,http://lims.easysearch.org.uk,2 20580,http://www.clri.net,2 20581,http://liliesonmars.com:2095,2 20582,http://likwenupcm.easysearch.org.uk,2 20583,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011222,2 20584,http://lightwaterguides.easysearch.org.uk,2 20585,http://www.episerver.com,2 20586,http://www.hertsmere-children.co.uk,2 20587,http://www.clotted.f2s.com,2 20588,http://www.thestore.org.uk,2 20589,http://www.msingreatermanchester.nhs.uk,2 20590,http://vle.eastdurham.ac.uk,2 20591,http://licensing.ofcom.org.uk,2 20592,http://libros-en-pdf.com,2 20593,http://www.closeprotectionwork.com,2 20594,http://82.147.19.61,2 20595,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/CourtClaimsAndBankruptcy/DG_187340,2 20596,http://www.thestoveyard.co.uk,2 20597,http://library.nhsggc.org.uk,2 20598,http://www.parkersage.co.uk,2 20599,http://www.emptychair.org.uk,2 20600,http://vle.caw.ac.uk,2 20601,http://vle.carrhill.lancs.sch.uk,2 20602,http://library,2 20603,http://libraries.uky.edu,2 20604,http://alt.nottinghamshire.gov.uk,2 20605,http://vle.bsfc.ac.uk,2 20606,http://libguides.uta.edu,2 20607,http://www.learntodriveinnorwich.co.uk,2 20608,http://libguides.miami.edu,2 20609,http://www.scoobyireland.com,2 20610,http://www.msm-drivertraining.co.uk,2 20611,http://libcat.stir.ac.uk,2 20612,http://vle.bggs.com,2 20613,http://adi196285.theorytestpro.co.uk,2 20614,http://www.parkgaragebournemouth.co.uk,2 20615,http://vle.ayrcoll.ac.uk,2 20616,http://www.irrvlearning.org.uk,2 20617,http://www.huntingtonschool.co.uk,2 20618,http://vla43,2 20619,http://www.educationandtraining.org.uk,2 20620,http://lfedrivingschool.theorytestpro.co.uk,2 20621,http://www.parkhomeforum.co.uk,2 20622,http://alsquickpass.theorytestpro.co.uk,2 20623,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011161,2 20624,http://www.scotland-sdma.org.uk,2 20625,http://www.cliconline.co.uk,2 20626,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011138,2 20627,http://www.parkhousehotel.org.uk,2 20628,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Bankruptcy/DG_187344,2 20629,http://lesleyjohnston.theorytestpro.co.uk,2 20630,http://virtualshopping.livejournal.com,2 20631,http://www.envtecservices.co.uk,2 20632,http://virtual-lancaster.blogspot.com,2 20633,http://www.cleves.co.uk,2 20634,http://lemoci.com,2 20635,http://www.learnwithkarens.co.uk,2 20636,http://leicesternpcgroup.btck.co.uk,2 20637,http://www.drivingschool.toucansurf.com,2 20638,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011038,2 20639,http://vinciintranet.vinci.norwest.co.uk,2 20640,http://www.clevelandemergencyplanning.info,2 20641,http://view.yandex.net,2 20642,http://www.cleveland.ac.uk,2 20643,http://www.theupperroom.org.uk,2 20644,http://www.cleftsmile.org,2 20645,http://legacy.intracen.org,2 20646,http://victimsupport.org.uk,2 20647,http://victimsupport.com,2 20648,http://victimsofatoscorruption.wordpress.com,2 20649,http://vickyc.me,2 20650,http://www.cleethorpespeople.co.uk,2 20651,http://www.drivingschool-westbromwich.co.uk,2 20652,http://leedschildcare.proceduresonline.com,2 20653,http://www.clearskysolaruk.com,2 20654,http://1stgearintensivecourses.co.uk,2 20655,http://www.clearflow-services.co.uk,2 20656,http://www.scottishhousingconnections.org,2 20657,http://www.clearchimneyservices.co.uk,2 20658,http://www.eastgarforth.leeds.sch.uk,2 20659,http://leeds-manchester.pl,2 20660,http://learnzone.macmillan.org.uk,2 20661,http://www.clear2go.org.uk,2 20662,http://www.clear-links.co.uk,2 20663,http://version2.lettingsearch.co.uk,2 20664,http://learnwithjoe.theorytestpro.co.uk,2 20665,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011012,2 20666,http://verenigd-koninkrijk.startpagina.nl,2 20667,http://anglia2010.blogspot.com,2 20668,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011007,2 20669,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011002,2 20670,http://www.parksdrivingschool.co.uk,2 20671,http://vdev-schoolfinder.dcsf.gov.uk,2 20672,http://www.classonedrivingschool.com,2 20673,http://vdab.be,2 20674,http://www.thevillagegarage.co.uk,2 20675,http://vctamh.easysearch.org.uk,2 20676,http://www.parkside.org.uk,2 20677,http://www.parksidedrivingschool.co.uk,2 20678,http://learning.mandeville.bucks.sch.uk,2 20679,http://learning.lingfieldnotredame.co.uk,2 20680,http://alra.co.uk,2 20681,http://learning.holbrook.w-sussex.sch.uk,2 20682,http://vb-oc.co.uk,2 20683,http://www.learnwithlewis.co.uk,2 20684,http://www.scottishweddingdirectory.co.uk,2 20685,http://www.classicfm.co.uk,2 20686,http://www.classicdrivingschool.co.uk,2 20687,http://www.theweek.co.uk,2 20688,http://learning.bwd-development.com,2 20689,http://learning.ashfield.notts.sch.uk,2 20690,http://learnerdriveruk.co.uk,2 20691,http://www.thewelfarestatewerein.com,2 20692,http://www.parksmarter.org.uk,2 20693,http://validator.w3.org,2 20694,http://valeopf.org.uk,2 20695,http://learn2drivewithteresa.co.uk,2 20696,http://www.clas.switalskis.com,2 20697,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010991,2 20698,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010987,2 20699,http://learn.yale-wrexham.net,2 20700,http://learn.winchester.ac.uk,2 20701,http://www.clarkesdrivingschool.net,2 20702,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/ChildTrustFund/AnintroductiontotheChildTrustFund/DG_193687,2 20703,http://www.clarkatkentsom.co.uk,2 20704,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/ChildTrustFund/AnintroductiontotheChildTrustFund/DG_193636,2 20705,http://adi189978.theorytestpro.co.uk,2 20706,http://www.thewhitewolves.co.uk,2 20707,http://www.thewigacademy.co.uk,2 20708,http://v-civireddot01.salford.gov.uk,2 20709,http://learn.george-monoux.ac.uk,2 20710,http://www.educationalbackup.co.uk,2 20711,http://www.scottsdriving-school.co.uk,2 20712,http://uxcont71.sabahosted.com,2 20713,http://uwillpass.co.uk,2 20714,http://uwicsu.co.uk,2 20715,http://uwb2m-s.blogspot.com,2 20716,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Paymentsandentitlements/index.htm,2 20717,http://ldmanap001,2 20718,http://www.learnwithmichael.com,2 20719,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Paymentsandentitlements/ChildBenefitpayment/DG_178333,2 20720,http://lcnet,2 20721,http://lcms.scottish-fireservicescollege.org,2 20722,http://www.theydondrivingschool.co.uk,2 20723,http://www.parkview.haringey.sch.uk,2 20724,http://www.scouser-tommy.com,2 20725,http://www.clacton-crash-courses.co.uk,2 20726,http://users.swing.be,2 20727,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010940,2 20728,http://www.this-planet.com,2 20729,http://www.thisfrenchlife.com,2 20730,http://www.parrswood.manchester.sch.uk,2 20731,http://www.isdc.ch,2 20732,http://www.cks.nhs.uk,2 20733,http://www.thisismyanmar.com,2 20734,http://usedcarlabel.dft.gov.uk,2 20735,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Paymentsandentitlements/ChildBenefitpayment/DG_173620,2 20736,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010863,2 20737,http://www.thistlesom.co.uk,2 20738,http://www.cjspayroll.com,2 20739,http://us2.campaign-archive1.com,2 20740,http://www.scrap-car-remove.co.uk,2 20741,http://www.scrap-your-boiler.co.uk,2 20742,http://www.education2.bham.ac.uk,2 20743,http://latviesiem.co.uk,2 20744,http://www.parsonsleisure.com,2 20745,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010840,2 20746,http://larkin.theorytestpro.co.uk,2 20747,http://lark-sharesql,2 20748,http://lapvwsenpwb01.corp.scottishenterprise.net,2 20749,http://us.mg41.mail.yahoo.com,2 20750,http://www.screenacademyscotland.ac.uk,2 20751,http://www.thomas-som.com,2 20752,http://www.scribd.com,2 20753,http://langleydrivingacademy.firstpatsdrivingschool.co.uk,2 20754,http://www.drivingmatterssom.com,2 20755,http://us.mg203.mail.yahoo.com,2 20756,http://www.scslondonuk.com,2 20757,http://www.scunnybikers.com,2 20758,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Paymentsandentitlements/Benefitsforparents/DG_173784,2 20759,http://us.mc841.mail.yahoo.com,2 20760,http://us.mc836.mail.yahoo.com,2 20761,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010834,2 20762,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010831,2 20763,http://us.mc811.mail.yahoo.com,2 20764,http://www.pass-with-flyingcolours.co.uk,2 20765,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010829,2 20766,http://lancashirelln.org.uk,2 20767,http://www.civicclinic.co.uk,2 20768,http://lanarkshiredrivingschools.com,2 20769,http://lambeth.theorytestpro.co.uk,2 20770,http://www.sdgaccountants.co.uk,2 20771,http://www.thomastrailerhire.co.uk,2 20772,http://www.citywesthousingtrust.org.uk,2 20773,http://us.mc596.mail.yahoo.com,2 20774,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Paymentsandentitlements/Benefitsforparents/DG_073800,2 20775,http://www.citywaysom.co.uk,2 20776,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010810,2 20777,http://www.mtprog.com,2 20778,http://lablms.org,2 20779,http://www.mtridersclub.co.uk,2 20780,http://www.learnwithtom.co.uk,2 20781,http://www.leasedrive.com,2 20782,http://us.mc458.mail.yahoo.com,2 20783,http://l2p.theorytestpro.co.uk,2 20784,http://us.mc450.mail.yahoo.com,2 20785,http://yummymummieshideaway.forumotion.com,2 20786,http://www.isjustfree.com,2 20787,http://www.direct.gov.uk/en/Dl1/Directories/DG_069043,2 20788,http://www.direct.gov.uk/en/Dl1/Directories/DG_069034,2 20789,http://kweb,2 20790,http://kurnsou4.elephantkiosks.co.uk,2 20791,http://www.dmgtpensions.co.uk,2 20792,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/KeepingyourChildBenefituptodate/Changesyouneedtoreport/DG_173773,2 20793,http://www.islandschoolhe.blogspot.com,2 20794,http://us.mc374.mail.yahoo.com,2 20795,http://www.passingplace.supanet.com,2 20796,http://krautchan.net,2 20797,http://www.thornalleyfs.co.uk,2 20798,http://korrespondent.net,2 20799,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Ifthingsgowrong/Wheretostart/DG_173687,2 20800,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Ifthingsgowrong/Wheretostart/DG_073798,2 20801,http://www.thornleigh.bolton.sch.uk,2 20802,http://us.mc306.mail.yahoo.com,2 20803,http://knowledgedrivingschool.theorytestpro.co.uk,2 20804,http://www.thorntonchildcare.co.uk,2 20805,http://knowledge.ukregeneration.org.uk,2 20806,http://www.huttonsomerset.org.uk,2 20807,http://www.thpscitt.org,2 20808,http://www.leeds.childrencentres.org,2 20809,http://adi183962.theorytestpro.co.uk,2 20810,http://www.three.co.uk,2 20811,http://www.passlifeintheuk.com,2 20812,http://us.mc1807.mail.yahoo.com,2 20813,http://www.citibank.co.uk,2 20814,http://klc.co.uk,2 20815,http://kiwaniskids.org,2 20816,http://www.multiurl.com,2 20817,http://www.searchbox.co.uk,2 20818,http://www.thurrockdrivingschool.co.uk,2 20819,http://www.searchmobileonline.com,2 20820,http://adi183742.theorytestpro.co.uk,2 20821,http://kiosk-fenland.advicehub.org,2 20822,http://www.searchtool.com,2 20823,http://www.passmasterintensive.co.uk,2 20824,http://www.cipr.co.uk,2 20825,http://www.mumplusone.com,2 20826,http://www.thyroid-disease.org.uk,2 20827,http://www.sebelfurniture.com,2 20828,http://www.securedloanscompared.com,2 20829,http://www.ciob.org.uk,2 20830,http://www.security-institute.org,2 20831,http://us.mc1260.mail.yahoo.com,2 20832,http://www.mumsawayuk.com,2 20833,http://www.leedshomes.org.uk,2 20834,http://www.leedslearning.net,2 20835,http://us.mc1254.mail.yahoo.com,2 20836,http://us.mc1250.mail.yahoo.com,2 20837,http://kids.direct.gov.uk/resource_areas/html/moving.aspx,2 20838,http://www.tica.org,2 20839,http://www.mumsdrivingschool.co.uk,2 20840,http://kids.direct.gov.uk/resource_areas/html/animations/ks2_fire_station.htm,2 20841,http://www.ticket-mart.com,2 20842,http://www.ciltuk.org.uk,2 20843,http://us.mc1218.mail.yahoo.com,2 20844,http://us.mc1215.mail.yahoo.com,2 20845,http://kiasorento.proboards.com,2 20846,http://us.mc1214.mail.yahoo.com,2 20847,http://www.passmyway.co.uk,2 20848,http://us.mc1210.mail.yahoo.com,2 20849,http://us.mc1209.mail.yahoo.com,2 20850,http://us.mc1207.mail.yahoo.com,2 20851,http://www.direct.gov.uk/en/DisabledPeople/TravelHolidaysAndBreaks/PlanningATrip/DG_4015878,2 20852,http://www.sedgefieldboroughhomes.co.uk,2 20853,http://www.easterncyprus.com,2 20854,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ChildBenefitandwhoqualifies/DG_173535,2 20855,http://www.tierneysdriving.co.uk,2 20856,http://kent.acisconnect.com,2 20857,http://79.170.44.81,2 20858,http://www.leedsmusicforum.co.uk,2 20859,http://www.direct.gov.uk/en/DisabledPeople/RightsAndObligations/Police/DG_4018606,2 20860,http://www.ciao.co.uk,2 20861,http://us.mc1137.mail.yahoo.com,2 20862,http://www.isoshousing.co.uk,2 20863,http://us.mc1135.mail.yahoo.com,2 20864,http://keepsafeathome.co.uk,2 20865,http://www.tiffieldschool.ik.org,2 20866,http://kdcschoolofmotoring.co.uk,2 20867,http://www.dlrk.dk,2 20868,http://www.passportandvisaservice.co.uk,2 20869,http://www.churchofscotland.org.uk,2 20870,http://www.ispreview.co.uk,2 20871,http://www.churchfarmdrivingschool.co.uk,2 20872,http://79.170.40.235,2 20873,http://kay.theorytestpro.co.uk,2 20874,http://us.mc1115.mail.yahoo.com,2 20875,http://katies-kids1.moonfruit.com,2 20876,http://www.direct.gov.uk/en/Pensionsandretirementplanning/PlanningForRetirement/DG_10014582,2 20877,http://www.heirhunters-association.org.uk,2 20878,http://kash4kenya.easysearch.org.uk,2 20879,http://79.125.27.179,2 20880,https://www.taxdisc.direct.gov.uk/EvlPortalApp/app/home/intro,2 20881,http://www.musavirlikler.gov.tr,2 20882,http://www.chss.org.uk,2 20883,http://www.chscb.org.uk,2 20884,http://kanaiq.apps.inrev.gov.uk,2 20885,http://kalkan.turkishlocalnews.com,2 20886,http://www.chrysalisnailsandbeauty.co.uk,2 20887,http://us.lrd.yahoo.com,2 20888,http://k9crusaders.easysearch.org.uk,2 20889,http://k.daum.net,2 20890,http://jwdt.theorytestpro.co.uk,2 20891,http://justtestsandtyres.com,2 20892,http://justpassing.net,2 20893,http://www.passtimemotoring.co.uk,2 20894,http://justlearning.me.uk,2 20895,http://www.lees-driver-training.co.uk,2 20896,http://www.istd.org,2 20897,http://urlwww--drivelpg--co--uk.rtrk.co.uk,2 20898,http://www.leewoodhams.co.uk,2 20899,http://justbricksandmortar.wordpress.com,2 20900,http://urlwww--carillionenergy--com.rtrk.co.uk,2 20901,http://jurist.law.pitt.edu,2 20902,http://www.passwaydrive.co.uk,2 20903,http://www.christopherdeane.co.uk,2 20904,http://juneau.servershost.net,2 20905,http://jump.digitaleditions.co.uk,2 20906,http://julietdriving.theorytestpro.co.uk,2 20907,http://juliesdrivertraining.co.uk,2 20908,http://www.dlcandtraining.co.uk,2 20909,http://juliemartin.theorytestpro.co.uk,2 20910,http://www.hwca.com,2 20911,http://julesdrivertraining.co.uk,2 20912,http://www.tih.org.uk,2 20913,http://jssm.co.uk,2 20914,http://jsserver1,2 20915,http://www.hybriddriving.co.uk,2 20916,http://www.christies.com,2 20917,http://www.christiancentrenursery.com,2 20918,http://www.mutual-support.org.uk,2 20919,http://www.christchurchpre-school.co.uk,2 20920,http://www.christch34.lancsngfl.ac.uk,2 20921,http://jp.mg5.mail.yahoo.co.jp,2 20922,http://unpub.reeddriving.yellsites.co.uk,2 20923,http://jp.mc32.mail.yahoo.co.jp,2 20924,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/PublicAndCommunityTransport/DG_4001063,2 20925,http://jp.mc1001.mail.yahoo.co.jp,2 20926,http://jp.f42.mail.yahoo.co.jp,2 20927,http://unpub.epc-harrogate.yellsites.co.uk,2 20928,http://jp-intranet,2 20929,http://journomania.net,2 20930,http://www.chrissielarkindrivingschool.co.uk,2 20931,http://unpub.djsdrivertraining.yellsites.co.uk,2 20932,http://www.itemiseinventories.co.uk,2 20933,http://www.tilley.com,2 20934,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/LearningToDrive/index.htm,2 20935,http://unpub.averingcliffesom.yellsites.co.uk,2 20936,http://www.chrishuhne.org.uk,2 20937,http://www.healthyambitionssuffolk.co.uk,2 20938,http://www.chrisbeales.net,2 20939,http://johnstheory.theorytestpro.co.uk,2 20940,http://www.sel.cam.ac.uk,2 20941,http://universal.edu.gr,2 20942,http://www.chrisbarker-adi.co.uk,2 20943,http://johnpaulweller.com,2 20944,http://adi17219.theorytestpro.co.uk,2 20945,http://joehickey.theorytestpro.co.uk,2 20946,http://www.leicesterdrivingschool.com,2 20947,http://jobseekers.noads.biz,2 20948,http://www.time2pass.com,2 20949,http://www.selexpensions.co.uk,2 20950,http://www.my-decorator.co.uk,2 20951,http://www.selfbuild-central.co.uk,2 20952,http://www.timespared.com,2 20953,http://www.my-oxford.co.uk,2 20954,http://www.timlebreuilly.co.uk,2 20955,http://www.timms-law.com,2 20956,http://www.timronsdrivingtuition.co.uk,2 20957,http://www.tims-school-of-motoring.co.uk,2 20958,http://www.drivinglessonswithphill.co.uk,2 20959,http://www.choicefinancialsolutions.com,2 20960,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/Bluebadgescheme/DG_10038295,2 20961,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/AdaptingAVehicle/index.htm,2 20962,http://www.titleresearch.com,2 20963,http://www.titleworth121.com,2 20964,http://www.leicestershirediabetes.org.uk,2 20965,http://www.tlbhomes.co.uk,2 20966,http://www.myashfield.co.uk,2 20967,http://www.chiswickschools.co.uk,2 20968,http://www.chiswickcarcraft.co.uk,2 20969,http://unison.org.uk,2 20970,http://www.tmcridertraining.co.uk,2 20971,http://www.tmjlegal.co.uk,2 20972,http://www.tml-accountants.co.uk,2 20973,http://www.tnqit.tafe.qld.gov.au,2 20974,http://www.leics-pa.police.uk,2 20975,http://www.passwithpeppers.co.uk,2 20976,http://www.chinese-embassy.org.uk,2 20977,http://www.chinaliveuk.org.uk,2 20978,http://unet.unisys.com,2 20979,http://www.toddlersuni.co.uk,2 20980,http://74.86.5.191:8080,2 20981,http://jobseeker.direct.gov.uk./relatedsearch.aspx,2 20982,http://jobseeker.direct.gov.uk./mysearcheshomepage.aspx,2 20983,http://www.tofs.org.uk,2 20984,http://underoneroofexchange.com,2 20985,http://jobseeker.direct.gov.uk./homepagevw.aspx,2 20986,http://www.chimat.org.uk,2 20987,http://jobseeker.direct.gov.uk./detailvoluntary.aspx,2 20988,http://www.chilwell.notts.sch.uk,2 20989,http://www.sembcorpbw.co.uk,2 20990,http://jobseeker.direct.gov.uk./confirmsubject.aspx,2 20991,http://jobs.wikinut.com,2 20992,http://www.tomleyschoolofmotoring.co.uk,2 20993,http://jobs.telegraph.co.uk,2 20994,http://ultimatesalonmanagement.com,2 20995,http://jobs.ofcom.org.uk,2 20996,http://jobs.lincolnshire.gov.uk,2 20997,http://www.eastdurhamhomes.co.uk,2 20998,http://www.chilternhousinginfo.co.uk,2 20999,http://www.drivinglessonsswindon.com,2 21000,http://jobs.excite.co.uk,2 21001,http://ukskatepark.easysearch.org.uk,2 21002,http://www.passwithrst.com,2 21003,http://www.chillipeppa.com,2 21004,http://jobcentre.com,2 21005,http://jobcenter-plus.net,2 21006,http://ukpersonal-2g.bde.us.dotcom.hsbc,2 21007,http://ukpensions.basf.co.uk,2 21008,http://ukpassportofficeinformation.co.uk,2 21009,http://ukpass.co.uk,2 21010,http://www.childsplaynurseryltd.co.uk,2 21011,http://jipeast.org,2 21012,http://jingxi.baidu111.net,2 21013,http://www.childrenwithdiabetesuk.org,2 21014,http://jimb.theorytestpro.co.uk,2 21015,http://ukoubei.com,2 21016,http://www.childrenstherapysolutions.co.uk,2 21017,http://jhp-web,2 21018,http://www.top-properties.com,2 21019,http://www.passwithsteve.com,2 21020,http://ukmarriagerecords.co.uk,2 21021,http://www.mycaremychoice.org.uk,2 21022,http://jessopschoolofmotoring-1.co.uk,2 21023,http://www.drivinglessonssalisbury.com,2 21024,http://www.drivinglessonsnottinghamshire.co.uk,2 21025,http://jepsonandco.com,2 21026,http://jensdrivingschool.web.officelive.com,2 21027,http://www.direct.gov.uk/en/Pensionsandretirementplanning/DG_183705,2 21028,http://www.sepa.org.uk,2 21029,http://ukinuae.fco.gov.uk,2 21030,http://jcsp.org.uk,2 21031,http://jcc.theorytestpro.co.uk,2 21032,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/Startingacompanyorpersonalpension/DG_183722,2 21033,http://ukintranet,2 21034,http://jbamotors.co.uk,2 21035,http://jazzys.theorytestpro.co.uk,2 21036,http://www.lemoci.com,2 21037,http://www.childint.co.uk,2 21038,http://ukintanzania.fco.gov.uk,2 21039,http://www.mydriving4life.co.uk,2 21040,http://ukinswitzerland.fco.gov.uk,2 21041,http://jason.theorytestpro.co.uk,2 21042,http://ukinsudan.fco.gov.uk,2 21043,http://www.mydrivinginstructortraining.com,2 21044,http://www.childdeathhelpline.org.uk,2 21045,http://ukinslovenia.fco.gov.uk,2 21046,http://ukinslovakia.fco.gov.uk,2 21047,http://ukinseychelles.fco.gov.uk,2 21048,http://www.childcarejobsdorset.co.uk,2 21049,http://jacquisdrivingschool.com,2 21050,http://www.childcareincardiff.info,2 21051,http://www.series2club.co.uk,2 21052,http://www.childcareboffin.com,2 21053,http://www.seriesoneturbo.co.uk,2 21054,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/MentalHealth/DG_4014771,2 21055,http://www.service-plus.co.uk,2 21056,http://www.topdrivinginstructor.co.uk,2 21057,http://ukinoman.fco.gov.uk,2 21058,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/Startingacompanyorpersonalpension/DG_183715,2 21059,http://www.drivinglessonsnottinghamarea.co.uk,2 21060,http://www.chigwelldrivingschool.co.uk,2 21061,http://www.topgear-drivingschool.com,2 21062,http://www.lenwell.com,2 21063,http://iwest.ourcheshire.cccusers.com,2 21064,http://www.myfinancepage.co.uk,2 21065,http://www.topgear-som.co.uk,2 21066,http://iwantsomemore.fr,2 21067,http://ivysen.dk,2 21068,http://www.path-finder.org.uk,2 21069,http://www.chew-the-fat.com,2 21070,http://www.diy-site.co.uk,2 21071,http://www.ses-cab.org,2 21072,http://www.pathwaydriving.co.uk,2 21073,http://www.topgear-training.co.uk,2 21074,http://www.topgunschoolofmotoring.com,2 21075,http://www.drivinglessonsnorthlondon.co.uk,2 21076,http://www.myglobalsearch.com,2 21077,http://74.125.93.147,2 21078,http://www.patiencedrivingschool.me.uk,2 21079,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/Hospitals/index.htm,2 21080,http://www.sfclient.co.uk,2 21081,http://www.diy-forum.net,2 21082,http://www.topicbox.co.uk,2 21083,http://www.topicbox.org.uk,2 21084,http://ukinghana.fco.gov.uk,2 21085,http://www.heartprogramme.org,2 21086,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/Hospitals/DG_4000466,2 21087,http://www.chessvalley-u3a.org.uk,2 21088,http://isogermany.com,2 21089,http://iso.wikis.bt-ws.com,2 21090,http://www.sft.edu,2 21091,http://www.topmarksdrivinskool.com,2 21092,http://www.lepetitjournal.com,2 21093,http://www.topnotchdriving.co.uk,2 21094,http://islington.gov.uk,2 21095,http://1stbinghamdrivingschool.co.uk,2 21096,http://www.sfx.ac.uk,2 21097,http://ukinecuador.fco.gov.uk,2 21098,http://www.patrobson.com,2 21099,http://isharemaps.nelincs.gov.uk,2 21100,http://ish.falmouth.ac.uk,2 21101,http://www.sgdrivingtest.com,2 21102,http://ukincuba.fco.gov.uk,2 21103,http://ukincroatia.fco.gov.uk,2 21104,http://ironpark.ru,2 21105,http://ukinchile.fco.gov.uk,2 21106,http://ukincayman.fco.gov.uk,2 21107,http://iris.interserve.com,2 21108,http://www.torbayestates-customerclub.com,2 21109,http://irenicon.wordpress.com,2 21110,http://www.lespaulsmotors.co.uk,2 21111,http://ukinbotswana.fco.gov.uk,2 21112,http://www.torhomes.com,2 21113,http://ipv6.google.com,2 21114,http://www.cheshireeasthighways.org,2 21115,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/DG_10027106,2 21116,http://ukinbelarus.fco.gov.uk,2 21117,http://aolrecherche.aol.fr,2 21118,http://www.lesswaste.org.uk,2 21119,http://www.leswindrivingschool.co.uk,2 21120,http://www.toselandproperties.co.uk,2 21121,http://ipl.org,2 21122,http://1st-car.co.uk,2 21123,http://ipayless.co.uk,2 21124,http://www.cheshamgrammar.bucks.sch.uk,2 21125,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/Equipment/DG_10016340,2 21126,http://inyourloss.com,2 21127,http://www.totalbantercommunity.com,2 21128,http://adi152971.theorytestpro.co.uk,2 21129,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/DG_10037826,2 21130,http://inty,2 21131,http://intuitiondriving.theorytestpro.co.uk,2 21132,http://intrinsic.aegon.co.uk,2 21133,http://www.cherylsmotoringschool.co.uk,2 21134,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/CompanyPensions/DG_179740,2 21135,http://1.txwb.com,2 21136,http://www.hldrivertraining.co.uk,2 21137,http://www.itwdcps.co.uk,2 21138,http://intranetm,2 21139,http://intranetemea.cshare.net,2 21140,http://ukgov.mobi,2 21141,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/ArrangingHealthAndSocialCare/DG_10034402,2 21142,http://intranet3,2 21143,http://intranet2.wolseley.co.uk,2 21144,http://www.totallymoney.com,2 21145,http://www.cherryfold.lancs.sch.uk,2 21146,http://www.cherrydrivingschool.co.uk,2 21147,http://www.myhq.com,2 21148,http://ukdrive.net,2 21149,http://www.chequeredflag.org,2 21150,http://www.chennestone.surrey.sch.uk,2 21151,http://ukcisa.org.uk,2 21152,http://ukbridge.ge,2 21153,http://www.letpropertyrentproperty.co.uk,2 21154,http://intranet.wellingtoncollege.org.uk,2 21155,http://intranet.welling.bcw,2 21156,http://intranet.warwickshire.police.uk,2 21157,http://www.highcroftsurgery.co.uk,2 21158,http://intranet.valueretail.com,2 21159,http://www.cheltenhamlearning.com,2 21160,http://intranet.uk.t-systems.com:4503,2 21161,http://www.itwiz.co.uk,2 21162,http://www.drivinglessonslivingston.co.uk,2 21163,http://intranet.tsft.nhs.uk,2 21164,http://ukbaby.exblog.jp,2 21165,http://ukbabamama.blogspot.com,2 21166,http://ukba.homeoffice.gov.uk,2 21167,http://ukaf.ris.local,2 21168,http://www.mykpmgstakeholderpension.com,2 21169,http://adi152296.theorytestpro.co.uk,2 21170,http://www.shareawebpage.com,2 21171,http://intranet.sites.fsguk.com,2 21172,http://www.paulmorris-som.co.uk,2 21173,http://intranet.sefton.gov.uk,2 21174,http://www.iva.co.uk,2 21175,http://intranet.salixhomes.org,2 21176,http://www.cheethamadvice.org.uk,2 21177,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/Introductiontofinancialsupport/DG_196980,2 21178,http://www.checkyourmirrors.co.uk,2 21179,http://intranet.rotherhamconnect.com,2 21180,http://intranet.rbh.nhs.uk,2 21181,http://www.checkthemap.org,2 21182,http://195.59.90.178,2 21183,http://www.mylawyer.co.uk,2 21184,http://www.letsgonlearn.me.uk,2 21185,http://uk.practicallaw.com.lawdbs.lawcol.com,2 21186,http://www.chebucto.ns.ca,2 21187,http://intranet.pebley.co.uk,2 21188,http://www.cheaptraintickets.info,2 21189,http://www.touchluton.com,2 21190,http://www.mylifeafterdivorce.com,2 21191,http://www.shawlandsarcade.com,2 21192,http://uk.my.msn.com,2 21193,http://uk.mvp.hr,2 21194,http://intranet.open.ac.uk,2 21195,http://www.letsgoproperties.co.uk,2 21196,http://www.paulrobbiemotors.co.uk,2 21197,http://uk.missingkids.com,2 21198,http://www.shed1953.moonfruit.com,2 21199,http://www.touchtruro.com,2 21200,http://www.cheapestoil.co.uk,2 21201,http://www.sheffieldinteractive.co.uk,2 21202,http://www.cheapdrivinglessonshornchurch.co.uk,2 21203,http://www.ivaadvisorycentre.co.uk,2 21204,http://intranet.neath-porttalbot.gov.uk,2 21205,http://intranet.mrc-cbu.cam.ac.uk,2 21206,http://www.sheltons-solicitors.co.uk,2 21207,http://www.sherbornecab.org.uk,2 21208,http://www.sherbournemedicalcentre.co.uk,2 21209,http://intranet.london.gov.uk,2 21210,http://www.touretteshero.com,2 21211,http://www.touringandtenting.com,2 21212,http://www.mymarelearning.com,2 21213,http://www.equalityforum.com,2 21214,http://andyedwardssom.theorytestpro.co.uk,2 21215,http://www.letspass.uk.com,2 21216,http://www.tovabbtanulok.info,2 21217,http://adi150383.theorytestpro.co.uk,2 21218,http://www.shiatsusociety.org,2 21219,http://www.tower.ac.uk,2 21220,http://www.letsrecycle.com,2 21221,http://www.drivinglessonslincoln.co.uk,2 21222,http://www.honda125.co.uk,2 21223,http://www.mypad.co.uk,2 21224,http://intranet.fwuk.fwc.com,2 21225,http://www.towerhamlets.nhs.uk,2 21226,http://intranet.fos.org.uk,2 21227,http://www.iwantoneofthose.com,2 21228,http://intranet.farn-ct.ac.uk,2 21229,http://intranet.exlayer.net,2 21230,http://www.shireoaksom.co.uk,2 21231,http://www.towerswatson.com,2 21232,http://www.diversity.grg.com,2 21233,http://uk.mc659.mail.yahoo.com,2 21234,http://uk.mc657.mail.yahoo.com,2 21235,http://www.direct.gov.uk/en/DisabledPeople/Everydaylifeandaccess/VisitingPlacesOfInterest/index.htm,2 21236,http://www.towners.co.uk,2 21237,http://www.drivinglessonskettering.co.uk,2 21238,http://www.townlaneinfantschool.co.uk,2 21239,http://intranet.craven-college.ac.uk,2 21240,http://www.dit.ie,2 21241,http://intranet.connexionskentandmedway.co.uk,2 21242,http://uk.mc595.mail.yahoo.com,2 21243,http://www.direct.gov.uk/en/DisabledPeople/Everydaylifeandaccess/LeisureAtHome/DG_4019003,2 21244,http://uk.mc462.mail.yahoo.com,2 21245,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_171827,2 21246,http://195.3.145.254,2 21247,http://intranet.bso.ac.uk,2 21248,http://www.toyotaownersclub.com,2 21249,http://www.tpaselearning.org.uk,2 21250,http://intranet.brent.gov.uk,2 21251,http://uk.mc394.mail.yahoo.com,2 21252,http://www.charnwood-surgery.co.uk,2 21253,http://www.direct.gov.uk/en/DisabledPeople/Everydaylifeandaccess/LeisureAtHome/DG_066828,2 21254,http://www.tpproperties.co.uk,2 21255,http://www.charityretail.org.uk,2 21256,http://www.shiresom.co.uk,2 21257,http://www.distancelearningcentre.com,2 21258,http://www.highgatedaynursery.co.uk,2 21259,http://www.trabalhoemlondres.com,2 21260,https://emea.webaccess.hp.com,2 21261,http://www.charitybags.org.uk,2 21262,http://ybd.theorytestpro.co.uk,2 21263,http://www.disposalknowhow.co.uk,2 21264,http://www.tradeautosltd.co.uk,2 21265,http://www.chapelendjuniorschool.co.uk,2 21266,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Yourchildssafetyinthehome/DG_10038395,2 21267,http://intra.metsaliitto.com,2 21268,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/WorkSchemesAndProgrammes/DG_4011789,2 21269,http://www.shoresideprimary.org,2 21270,http://intra.barclayswealth.net,2 21271,http://www.drivinglessonsinswindon.com,2 21272,http://www.showmyhomework.co.uk,2 21273,http://www.pbsom.co.uk,2 21274,http://www.lewinpreschool.org.uk,2 21275,http://www.mysteryseeker.com,2 21276,http://www.shropshirefire.gov.uk,2 21277,http://www.shropshirelearners.co.uk,2 21278,http://www.mysteryshopperjobs.co.uk,2 21279,http://www.discreetsolarpanels.co.uk,2 21280,http://www.tradingeye.com,2 21281,http://www.tradingresources.co.uk,2 21282,http://www.traditional-sailing.com,2 21283,http://interhell.co.uk,2 21284,http://interhatch.white-list.co.uk,2 21285,http://www.trafficengland.co.uk,2 21286,http://www.chandlersforddriving.co.uk,2 21287,http://integratepreston.easysearch.org.uk,2 21288,http://www.sierramar.com.br,2 21289,http://www.hyundai-forums.com,2 21290,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/LookingForWork/DG_4000377,2 21291,http://inspire-education.org,2 21292,http://www.signpostcc.co.uk,2 21293,http://insolvency.gov.uk,2 21294,http://insite.hobtpct.nhs.uk,2 21295,http://www.training-hypnotherapy.co.uk,2 21296,http://www.pcg.org.uk,2 21297,http://www.traininglinkonline.co.uk,2 21298,http://www.hyundaiownersclub.co.uk,2 21299,http://www.silkonia.co.uk,2 21300,http://www.silsdendrivingschool.co.uk,2 21301,http://www.silver60.com,2 21302,http://www.myupfpension.co.uk,2 21303,http://www.trainingzone.co.uk,2 21304,http://www.chacomleite.com,2 21305,http://www.lewishammylifemychoice.org.uk,2 21306,http://uk.mc1618.mail.yahoo.com,2 21307,http://inside.dnv.com,2 21308,http://www.j17drivingschool.co.uk,2 21309,http://www.i-drive-drivinglessonschesterfield.co.uk,2 21310,http://www.trans-mission.org,2 21311,http://194.75.50.69,2 21312,http://uk.mc1612.mail.yahoo.com,2 21313,http://www.mywalsall.org,2 21314,http://uk.mc1605.mail.yahoo.com,2 21315,http://uk.mc1603.mail.yahoo.com,2 21316,http://uk.mc1601.mail.yahoo.com,2 21317,http://www.lewishamstrategicpartnership.org.uk,2 21318,http://www.transportassociation.org.uk,2 21319,http://uk.mc1324.mail.yahoo.com,2 21320,http://innovate-apps.direct.gov.uk/bereavement/0-1-0.html,2 21321,http://uk.mc1261.mail.yahoo.com,2 21322,http://www.n-club-finland.org,2 21323,http://uk.mc1215.mail.yahoo.com,2 21324,http://uk.mc1203.mail.yahoo.com,2 21325,http://www.simanndriving.co.uk,2 21326,http://www.cetad.lancs.ac.uk,2 21327,http://www.travelagencystartup.com,2 21328,http://194.247.79.37,2 21329,http://uk.mc1121.mail.yahoo.com,2 21330,http://infolondres.wordpress.com,2 21331,http://www.travelforum.se,2 21332,http://www.nachp.org,2 21333,http://infocentre.is.fsa.gov.uk,2 21334,http://www.certificate-exchange.co.uk,2 21335,http://info.wokingham.gov.uk,2 21336,http://www.direct.gov.uk/en/DisabledPeople/EducationAndTraining/FurtherEducation/index.htm,2 21337,http://www.direct.gov.uk/en/DisabledPeople/EducationAndTraining/FurtherEducation/DG_4000896,2 21338,http://www.simpleneeds.co.uk,2 21339,http://www.naco.coop,2 21340,http://www.direct.gov.uk/en/DisabledPeople/Disabledparents/DG_10037907,2 21341,http://www.travelsure.co.uk,2 21342,http://www.direct.gov.uk/en/DisabledPeople/Disabledparents/DG_10037906,2 21343,http://inet.goodwinprocter.com,2 21344,http://induction.posterous.com,2 21345,http://www.direct.gov.uk/en/DisabledPeople/Disabledparents/DG_10037844,2 21346,http://www.traveltrade.visitwales.com,2 21347,http://www.pearson-pensions.com,2 21348,http://uk.creditcards.com,2 21349,http://uk.copify.com,2 21350,http://uk.cleanright.eu,2 21351,http://www.centralwebs.co.uk,2 21352,http://74.125.67.105,2 21353,http://www.nadp.org.uk,2 21354,http://www.simplymoving.co.uk,2 21355,http://uk.beta.bookmarks.yahoo.com,2 21356,http://www.drivinglessonsinstructionfife.co.uk,2 21357,http://www.centralschoolofballet.co.uk,2 21358,http://in.mc948.mail.yahoo.com,2 21359,http://www.centrallondonheating.co.uk,2 21360,http://uk-vasarlas.lap.hu,2 21361,http://www.centrallondondrivingschool.co.uk,2 21362,http://www.trenddesign.co.uk,2 21363,http://www.pearsonhotlinks.com,2 21364,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/WorriedAbout/DG_10026211,2 21365,http://www.pearsonschoolsandfecolleges.co.uk,2 21366,http://www.centralfoundationboys.co.uk,2 21367,http://imobitabua.net,2 21368,http://www.centralemployment.co.uk,2 21369,http://www.direct.gov.uk/en/Diol1/MotoringDecisionTrees/,2 21370,http://www.jabs.org.uk,2 21371,http://uhad2bdisability.co.uk,2 21372,http://imbstaging.homeofficeweb.gws.gsi.gov.uk,2 21373,http://www.centean.co.jp,2 21374,http://images.ask.com,2 21375,http://www.pebblesofsalcombe.co.uk,2 21376,http://www.namlife.org,2 21377,http://www.pedelecs.co.uk,2 21378,http://www.nandp.co.uk,2 21379,http://www.eliteinstructors.co.uk,2 21380,http://www.tridenttrailers.com,2 21381,http://ilearn.adamsmith.ac.uk,2 21382,http://www.celica.talktalk.net,2 21383,http://www.trinityestates.com,2 21384,http://www.pegasuslearnerdriving.com,2 21385,http://iihuk.easysearch.org.uk,2 21386,http://ucas.co.uk,2 21387,http://www.nannymatters.co.uk,2 21388,http://www.celebratingcycling.org,2 21389,http://www.celan.droit.univ-cezanne.fr,2 21390,http://www.trinitysaintdavid.ac.uk,2 21391,http://ifelag.co.uk,2 21392,http://ifdnsas1,2 21393,http://www.nannytax.co.uk,2 21394,http://www.tripadvisor.ca,2 21395,http://www.cedarpark.org.uk,2 21396,http://www.cedargarage.ipages.biz,2 21397,http://www.cedargarage.co.uk,2 21398,http://www.cecab.org.uk,2 21399,http://www.tripwiremagazine.com,2 21400,http://adn.theorytestpro.co.uk,2 21401,http://www.sirusautomotive.co.uk,2 21402,http://www.nao.org.uk,2 21403,http://tymczasowi.zsp.net.pl,2 21404,http://www.cdf.org.uk,2 21405,http://www.discountmobilitydirect.co.uk,2 21406,http://www.narcolepsy.org.uk,2 21407,http://www.drivinglessonsinsalisbury.com,2 21408,http://www.trusteenet.org.uk,2 21409,http://www.pembrokeinventory.co.uk,2 21410,http://icwwwt1-new.cc.ic.ac.uk,2 21411,http://www.libbyclarke.co.uk,2 21412,http://www.trustpilot.com,2 21413,http://iconwomen.co.uk,2 21414,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinemotoring/DG_10031646,2 21415,http://www.jackpottyforums.co.uk,2 21416,http://www.penaltychargesforum.co.uk,2 21417,http://www.ts24.com,2 21418,http://tvhrf.easysearch.org.uk,2 21419,http://tutors.digitalunite.com,2 21420,http://ibmcthb:8888,2 21421,http://ibi.bibliotheek.nl,2 21422,http://www.tsig.gr,2 21423,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinemotoring/DG_10015770,2 21424,http://iansyst.com,2 21425,http://iansimpson.theorytestpro.co.uk,2 21426,http://turn2us.org.uk,2 21427,http://www.honitonprimary.ik.org,2 21428,http://turkishlove.yuku.com,2 21429,http://www.employmentlawforum.co.uk,2 21430,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BeginnersGuideToBenefits/DG_199109,2 21431,http://www.jacksonsford.co.uk,2 21432,http://apriliaperformance.myfastforum.org,2 21433,http://www.tssc.org.uk,2 21434,http://tuck-tucks.webstarts.com,2 21435,http://www.jacquisdrivingschool.com,2 21436,http://i-went-bankrupt.com,2 21437,http://tttdrivertraining.com,2 21438,http://www.ttts.co.uk,2 21439,http://ttiis,2 21440,http://i,2 21441,http://www.jagojones.com,2 21442,http://ttc.bryanston.co.uk,2 21443,http://ycdt.theorytestpro.co.uk,2 21444,http://ttarc.easysearch.org.uk,2 21445,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_067797,2 21446,http://www.tullholm.se,2 21447,http://tsswiftsure.easysearch.org.uk,2 21448,http://www.licence-to-drive.com,2 21449,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_067277,2 21450,http://admin.webbystar.com,2 21451,http://hundredfamilies.org,2 21452,http://tsintranet.norfolk.gov.uk,2 21453,http://www.pension-annuity.co.uk,2 21454,http://www.tumbit.com,2 21455,http://www.cbcglobal.org,2 21456,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/YourChildsWelfareAtSchool/DG_196162,2 21457,http://hulldockers.easysearch.org.uk,2 21458,http://www.cavendish.herts.sch.uk,2 21459,http://trove,2 21460,http://hstrial-azalea.intuitwebsites.com,2 21461,http://hssg.easysearch.org.uk,2 21462,http://www.catsrecovery.co.uk,2 21463,http://www.catsdrivingschool.com,2 21464,http://hscharnwood.easysearch.org.uk,2 21465,http://hsc.uwe.ac.uk,2 21466,http://tristan.curia.eu.int:8080,2 21467,http://hs-albsig.de,2 21468,http://www.nathnac.org,2 21469,http://www.nation44.com,2 21470,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018657,2 21471,http://www.catherinesmithlettings.co.uk,2 21472,http://hrcms01.atl.hp.com:6644,2 21473,http://www.east-thames.co.uk,2 21474,http://www.nationalarchives.co.uk,2 21475,http://hr.chevron.com,2 21476,http://hr-sharepoint,2 21477,http://www.cat.or.jp,2 21478,http://www.jamesdrivertraining.co.uk,2 21479,http://www.drivinglessonsinbognorregis.co.uk,2 21480,http://hpbc-crm-1,2 21481,http://www.jamesedgar.co.uk,2 21482,http://www.castlepreschool.co.uk,2 21483,http://howtosavemoneyuk.org.uk,2 21484,http://www.nationalhistoricships.org.uk,2 21485,http://193.11.33.60,2 21486,http://www.castleminibus.co.uk,2 21487,http://howis.wales.nhs.uk,2 21488,http://www.jamesgilesandsonsltd.co.uk,2 21489,http://www.lichfieldstreetsurgery.co.uk,2 21490,http://travelscoop.co.nz,2 21491,http://www.sixcrazyminutes.com,2 21492,http://10.0.169.1:8000,2 21493,http://housing.bathspa.ac.uk,2 21494,http://www.nationalstemcentre.org.uk,2 21495,http://www.lifehounslow.org.uk,2 21496,http://transportdirect.co.uk,2 21497,http://hotscams.com,2 21498,http://transmitters.tripod.com,2 21499,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017903,2 21500,http://www.lifeplanningassociates.co.uk,2 21501,http://www.naturalisationtest.co.uk,2 21502,http://transinterchangesa.lloydstsb.co.uk,2 21503,http://admin.maturetimes.co.uk,2 21504,http://www.skelbimai.co.uk,2 21505,http://www.cassiesdrivinginstruction.co.uk,2 21506,http://www.casmcares.com,2 21507,http://training.dyslexiaaction.org.uk,2 21508,http://training-hypnotherapy.co.uk,2 21509,http://www.caslink.org.uk,2 21510,http://www.jamiefoxdrivingtuition.co.uk,2 21511,http://horap579:10080,2 21512,http://www.jancett.co.uk,2 21513,http://trafficscotland.org,2 21514,http://traductio.co.uk,2 21515,http://www.navca.org.uk,2 21516,http://www.navigate.talktalk.net,2 21517,http://hondacg125.awardspace.com,2 21518,http://homeworking4me.co.uk,2 21519,http://192.ukdata.com,2 21520,http://www.tweetdeck.com,2 21521,http://homers-som.vpweb.co.uk,2 21522,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017725,2 21523,http://homepages.ihug.co.nz,2 21524,http://www.drivinglessonsgosport.co.uk,2 21525,http://www.peponihouseschool.co.ke,2 21526,http://towingdelivery.co.uk,2 21527,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017716,2 21528,http://www.skills-thirdsector.org.uk,2 21529,http://www.carshalton.ac.uk,2 21530,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SchoolLife/DG_4016015,2 21531,http://homelet.co.uk,2 21532,http://74.125.227.50,2 21533,http://www.twinklehouse.co.uk,2 21534,http://homeapproved.wordpress.com,2 21535,http://home2.btconnect.com,2 21536,http://www.drivinglessonsglastonbury.com,2 21537,http://www.twitlonger.com,2 21538,http://home.swipnet.se,2 21539,http://totbytotten.theorytestpro.co.uk,2 21540,http://www.twkonline.co.uk,2 21541,http://www.twsteam.co.uk,2 21542,http://totalopel.com,2 21543,http://totalldvsherpa.19.forumer.com,2 21544,http://www.cars21.co.uk,2 21545,http://www.twydall.co.uk,2 21546,http://www.skills4somerset.org,2 21547,http://www.helenshortsom.co.uk,2 21548,http://www.performanceinnovations.org,2 21549,http://home.intranet.mckinsey.com,2 21550,http://www.carrickfergus.org,2 21551,http://www.east-hunsburyprimary.co.uk,2 21552,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/RoadsAndStreets/DG_10026187,2 21553,http://www.tyredrive.co.uk,2 21554,http://www.u-picardie.fr,2 21555,http://topgear.theorytestpro.co.uk,2 21556,http://home-mortgage17.credit-loans.com,2 21557,http://www.carplus.org.uk,2 21558,http://www.u2candrivesom.co.uk,2 21559,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017652,2 21560,http://www.skillsforgrowth.org.uk,2 21561,http://hoenhs.easysearch.org.uk,2 21562,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/NoiseNuisanceAndLitter/index.htm,2 21563,http://www.caroleschoolofmotoring.com,2 21564,http://www.nbristowe.co.uk,2 21565,http://www.lighthousepropertysearches.co.uk,2 21566,http://tonymorris.easysearch.org.uk,2 21567,http://www.ubuonline.co.uk,2 21568,http://www.nc.gov.ua,2 21569,http://tonecasblog.blogspot.com,2 21570,http://www.permanex-plumbing.co.uk,2 21571,http://tompaterson.co.uk,2 21572,http://hmctsformfinder.direct.gov.uk/HMCTS/FormFinder.do,2 21573,http://tommarkkelly.easysearch.org.uk,2 21574,http://tomlambdriving.co.uk,2 21575,http://www.ncass.org.uk,2 21576,http://hmctscourtfinder.direct.gov.uk/HMCTS/LcodeSearch.do,2 21577,http://tokuhain.arukikata.co.jp,2 21578,http://www.skillsholidays.co.uk,2 21579,http://hk.mc193.mail.yahoo.com,2 21580,http://alliancecaptial.com,2 21581,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/Optionsafterschool/index.htm,2 21582,http://toby-the-ex-ex-pat.blogspot.com,2 21583,http://www.ucmk.ac.uk,2 21584,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017525,2 21585,http://www.carlgoss.com,2 21586,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/FloodingInYourArea/DG_10026188,2 21587,http://hiltonschoolofmotoring.co.uk,2 21588,http://hilt.cdlr.strath.ac.uk,2 21589,http://www.carkeysdrivingschool.co.uk,2 21590,http://hill-start.net,2 21591,http://highwycombecas.easysearch.org.uk,2 21592,http://tlz.lcwc.ac.uk,2 21593,http://tlumaczenia.ubf.pl,2 21594,http://www.skillsonwheels.co.uk,2 21595,http://www.pers.org.uk,2 21596,http://highlandcoll.easysearch.org.uk,2 21597,http://www.carintensives.co.uk,2 21598,http://tlcsvisas.com,2 21599,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/FloodingInYourArea/DG_10014599,2 21600,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017503,2 21601,http://www.personal.u-net.com,2 21602,http://www.skillstraininguk.com,2 21603,http://www.skillsuk.org,2 21604,http://hi.baidu.com,2 21605,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/Derelictbuildingsandsquatters/index.htm,2 21606,http://timwade.co.uk,2 21607,http://www.uctc.e-sussex.sch.uk,2 21608,http://heyhousesnursery.easysearch.org.uk,2 21609,http://hetnieuwewerkenblog.nl,2 21610,http://www.personalitydisorder.org.uk,2 21611,http://timlavelle.theorytestpro.co.uk,2 21612,http://www.ncpontefract.ac.uk,2 21613,http://herodriving.theorytestpro.co.uk,2 21614,http://time-to-change.org.uk,2 21615,http://www.personallicencetraining.co.uk,2 21616,http://www.nct.ac.uk,2 21617,http://hendonschoollibrary.blogspot.com,2 21618,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017230,2 21619,http://hemelwarriors.easysearch.org.uk,2 21620,http://allfreelancewriting.com,2 21621,http://helpguide.org,2 21622,http://www.nctb.nl,2 21623,http://helpforenglish.cz,2 21624,http://ticketsoup.com,2 21625,http://www.ncwe.com,2 21626,http://www.perth.ac.uk,2 21627,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_195918,2 21628,https://www.taxdisc.direct.gov.uk/EvlPortalApp/app/relicence,2 21629,http://thurrock.gov.uk,2 21630,http://threewayssch.easysearch.org.uk,2 21631,http://74.125.224.72,2 21632,http://www.uk-debtcollection.com,2 21633,http://www.direct.gov.uk/en/HomeAndCommunity/TechnologyInYourHome/index.htm,2 21634,http://www.perusupportgroup.org.uk,2 21635,http://www.pesticides.gov.uk,2 21636,http://www.uk-home-information.co.uk,2 21637,http://thisisabuse.direct.gov.uk/stop-yourself,2 21638,http://192.168.3.5,2 21639,http://healthguide.co.uk,2 21640,http://healthandcare.dh.gov.uk,2 21641,http://www.uk-insurance-index.co.uk,2 21642,http://www.nealswheels.co.uk,2 21643,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10035250,2 21644,http://thinksmartdesigns.blogspot.com,2 21645,http://www.careerstructure.com,2 21646,http://www.slackwise.cfmldeveloper.com,2 21647,http://www.nearway.co.uk,2 21648,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10027464,2 21649,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10017735,2 21650,http://www.slaveboys.com,2 21651,http://hbcln01.nestorplc.co.uk,2 21652,http://www.lightweightlandroverclub.org,2 21653,http://www.slc.co.uk.,2 21654,http://www.uk-sands.org,2 21655,http://www.careersforconsultants.co.uk,2 21656,http://www.sleeblackwell.co.uk,2 21657,http://thinet,2 21658,http://adi110454.theorytestpro.co.uk,2 21659,http://www.slhg.org,2 21660,http://thewire,2 21661,http://hartlip,2 21662,http://harrogateschoolofmotoring.com,2 21663,http://www.careers.salford.ac.uk,2 21664,http://thewikigame.com,2 21665,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10016060,2 21666,http://thewell.walsallcs.com,2 21667,http://www.uk.sagepub.com,2 21668,http://haricare.haringey.gov.uk,2 21669,http://www.necpwa.org.uk,2 21670,http://happydrive.co.uk,2 21671,http://www.need2pass.com,2 21672,http://thetravelinsider.info,2 21673,http://hannahhume.easysearch.org.uk,2 21674,http://thespike2010.blogspot.com,2 21675,http://haninherald.com,2 21676,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Tenancies/DG_189116,2 21677,http://hampshire.theorytestpro.co.uk,2 21678,http://halton.olminfoserve.co.uk,2 21679,http://www.uk.search-results.com,2 21680,http://www.peterfholgate.talktalk.net,2 21681,http://thesite.mobi,2 21682,http://www.healthandsafetysystem.co.uk,2 21683,http://halifax.theorytestpro.co.uk,2 21684,http://halesowen.theorytestpro.co.uk,2 21685,http://www.neighbour-training.co.uk,2 21686,http://www.neilraymond.co.uk,2 21687,http://hadlowcc.wordpress.com,2 21688,http://theretreat.myfanforum.org,2 21689,http://hackney.theorytestpro.co.uk,2 21690,http://habrahabr.ru,2 21691,http://haas-en-berg.nl,2 21692,http://www.lincolnshire.nhs.uk,2 21693,http://www.equality.bham.ac.uk,2 21694,http://www.career.tuc.gr,2 21695,http://www.nelink.info,2 21696,http://www.lincolnshireprepared.co.uk,2 21697,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/Gettinginvolvedwithschoolsandyourchildseducation/DG_4016015,2 21698,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Repairsandstandards/DG_189198,2 21699,http://thepensionscrisis.com,2 21700,http://www.lincs.police.uk,2 21701,http://www.peterjepson.com,2 21702,http://theparentstudent.com,2 21703,http://www.care2.com,2 21704,http://guilsboroughclusterextendedservices.co.uk,2 21705,http://theoptom.com,2 21706,http://guidetouni.co.uk,2 21707,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/Gettinginvolvedwithschoolsandyourchildseducation/DG_190880,2 21708,http://www.cardwells.co.uk,2 21709,http://www.ukbikeforum.co.uk,2 21710,http://thematicunits.theteacherscorner.net,2 21711,http://theloungers.org,2 21712,http://www.cardiffstudents.com,2 21713,http://www.ukbridge.ge,2 21714,http://www.jasoneastwooddrivingschool.co.uk,2 21715,http://www.petersfields.com,2 21716,http://gti.gstt.local,2 21717,http://www.cardiffcityforum.co.uk,2 21718,http://www.lindam.com,2 21719,http://theladiesloos.livejournal.com,2 21720,http://gsb.easysearch.org.uk,2 21721,http://grupy.scigacz.pl,2 21722,http://www.nepasiduok.lt,2 21723,http://www.cardatachecks.com,2 21724,http://www.nepft.nhs.uk,2 21725,http://www.carcycle.co.uk,2 21726,http://www.petes-som.co.uk,2 21727,http://theihe.org,2 21728,http://thei,2 21729,http://gro,2 21730,http://grievousbodilycharm.com,2 21731,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/RentingOutYourProperty/DG_175186,2 21732,http://www.jasonsdrivingschool.co.uk,2 21733,http://www.ukcrb.com,2 21734,http://www.disabilitygolf.org.uk,2 21735,http://www.nesensoryservices.org,2 21736,http://thehaylingcollege.web.officelive.com,2 21737,http://www.peugeot406coupe.com,2 21738,http://www.carbonaided.com,2 21739,http://greenroom.asda.com,2 21740,http://greenroom,2 21741,http://www.peugeotbus.co.uk,2 21742,http://www.edline.net,2 21743,http://www.jaybelshaw.co.uk,2 21744,http://www.jaynessom.co.uk,2 21745,http://greekorthodoxchurchofnorwich.easysearch.org.uk,2 21746,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Typesofcrime/DG_174616,2 21747,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Typesofcrime/DG_10027698,2 21748,http://thedriveacademy.com,2 21749,http://www4.yoog.com,2 21750,http://www.cararticles.co.uk,2 21751,http://72.14.203.147,2 21752,http://www.ukforum.pl,2 21753,http://graduatetalentpool.direct.gov.uk/cms/ShowPage/Home_page/Your_stories/Story_4___Tom_Fanning/p!elmmgfL,2 21754,http://graduatetalentpool.direct.gov.uk/cms/ShowPage/Home_page/Your_stories/p!elmmgja,2 21755,http://www.ukfree.tv,2 21756,http://thecareerbreaksite.com,2 21757,http://thebuzz.bradbury.edu.hk,2 21758,http://www.jazyky.com,2 21759,http://www.jbamotors.co.uk,2 21760,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Problemsanddisputes/DG_180095,2 21761,http://thebigtreeplant.direct.gov.uk/treegroup.html,2 21762,http://gra1ms,2 21763,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/ThePolice/DG_181738,2 21764,http://www.smallfishbigocean.com,2 21765,http://www.net-solicitors.co.uk,2 21766,http://thebigtreeplant.direct.gov.uk/about.html,2 21767,http://www.capuk.org,2 21768,http://www.captonline.com,2 21769,http://thebank.s-cheshire.ac.uk,2 21770,http://www.iamchelmsford.org.uk,2 21771,http://theatre-education.co.uk,2 21772,http://thealterium.com,2 21773,http://www.smallmotorhome.co.uk,2 21774,http://www.pgmsolicitors.co.uk,2 21775,http://gp-drivingschool.co.uk,2 21776,http://govproperty2011.ingenium-se.org,2 21777,http://www.iamintheuk.com,2 21778,http://the-monkey-house.com,2 21779,http://www.uklocos.com,2 21780,http://the-ia.org.uk,2 21781,http://www.drivinglessons.ukadi.com,2 21782,http://www.ukmailexchange.com,2 21783,http://google.snt.uk.com,2 21784,http://google.north-ayrshire.gov.uk,2 21785,http://www.ukmotorhometravel.co.uk,2 21786,http://thailand-uk.com,2 21787,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Probation/DG_196038,2 21788,http://www.capitahartshead.co.uk,2 21789,http://www.capeverde.co.uk,2 21790,http://www.capbreizh.com,2 21791,http://www.caox.org.uk,2 21792,http://www.ukorchidforum.com,2 21793,http://www.pharostutors.com,2 21794,http://www.canterburyharriers.org,2 21795,http://testsvr3.ucas.ac.uk:7778,2 21796,http://testing.nedcab.org.uk,2 21797,http://www.phassociation.uk.com,2 21798,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Goingtoprison/DG_196243,2 21799,http://www.ukpcci.com,2 21800,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/LandAndPropertyDevelopment/index.htm,2 21801,http://www.ukpoc.co.uk,2 21802,http://test1.highways.gov.uk,2 21803,http://www.canteen-online.tk,2 21804,http://test.transportdirect.info,2 21805,http://test.stevegansondrivingschool.co.uk,2 21806,http://go-chris.com,2 21807,http://www.directors-information-gateway.iod.com:8080,2 21808,http://www.linksto.co.uk,2 21809,http://www.direct.gov.uk/en/Parents/PreschooldevelopmentandLearning/SpecialEducationalNeeds/index.htm,2 21810,http://gloucestershireprepared.co.uk,2 21811,http://www.ukpropertyshop.co.uk,2 21812,http://www.ukqna.com,2 21813,http://glos.vahub.org.uk,2 21814,http://globarenacom.mail.everyone.net,2 21815,http://192.168.20.125,2 21816,http://www.ukrivers.net,2 21817,http://www.candscareservices.co.uk,2 21818,http://www.direct.gov.uk/en/Parents/Preschooldevelopmentandlearning/SpecialEducationalNeeds/DG_4000691,2 21819,http://www.direct.gov.uk/en/Parents/Preschooldevelopmentandlearning/SpecialEducationalNeeds/DG_10017052,2 21820,http://www.new.rpldriving.co.uk,2 21821,http://tess.easysearch.org.uk,2 21822,http://glass.absolutewebhosting.co.uk,2 21823,http://www.candidateclear.co.uk,2 21824,http://glasgowsharks.easysearch.org.uk,2 21825,http://www.ukriversguidebook.co.uk,2 21826,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Familyandfriendsofprisoners/DG_4002824,2 21827,http://www.uksbestdrivingschools.co.uk,2 21828,http://glasgow.olminfoserve.co.uk,2 21829,http://adi106096.theorytestpro.co.uk,2 21830,http://glallotments.co.uk,2 21831,http://www.smartbiker.co.uk,2 21832,http://www.cancerindex.org,2 21833,http://temp.audi-vw-cliniccouk.officelive.com,2 21834,http://gis.ealing.gov.uk,2 21835,http://www.cancercarewolverhampton.nhs.uk,2 21836,http://telforddrivingexcellence.co.uk,2 21837,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/DoingWorkYourself/index.htm,2 21838,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/DoingWorkYourself/DG_10030948,2 21839,http://www.lionheartdrivingschool.com,2 21840,http://gilbert.saga.co.uk,2 21841,http://giggleslytham.squarespace.com,2 21842,http://www.philipsaventfamily.co.uk,2 21843,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/ChoosingTradersAndServiceProviders/DG_4018096,2 21844,http://www.newbigginbythesea.co.uk,2 21845,http://www.philipscollectionservices.org.uk,2 21846,http://gexcall.unex.es,2 21847,http://www.smartdriveracademy.com,2 21848,http://www.jciuk.org.uk,2 21849,http://technorati.com,2 21850,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Appealingagainstasentenceorconviction/DG_196095,2 21851,http://techniquetraining.co.uk,2 21852,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Reportingcrimeandantisocialbehaviour/index.htm,2 21853,http://geton.direct.gov.uk/index.html,2 21854,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/ChoosingTradersAndServiceProviders/DG_4018094,2 21855,http://www.ukstudentlife.com,2 21856,http://www.uksuperweb.co.uk,2 21857,http://getinlane.com,2 21858,http://www.smartdrivetraining.co.uk,2 21859,http://www.newbury.net,2 21860,http://george.theorytestpro.co.uk,2 21861,http://geogteaching.blogspot.com,2 21862,http://teams.unison.org.uk,2 21863,http://www.smartenergymonitoring.com,2 21864,http://teams.huntsdc.gov.uk,2 21865,http://www.campervans.com,2 21866,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/SupportAtHome/DG_10030785,2 21867,http://wythallriders.proboards.com,2 21868,http://genealogistsforum.co.uk,2 21869,http://genderedviolence.com,2 21870,http://genderagenda6.pbworks.com,2 21871,http://gemselectricblankettesting.co.uk,2 21872,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/PestAndWeedControl/index.htm,2 21873,http://www.newcastledrivinglessons.co.uk,2 21874,http://www.campamercia.co.uk,2 21875,http://teacherspensions.co.uk,2 21876,http://www.phippsandpritchard.co.uk,2 21877,http://zen,2 21878,http://www.phoenix-counselling.co.uk,2 21879,http://tdlschoolofmotoring.co.uk,2 21880,http://gcf.easysearch.org.uk,2 21881,http://www.smartlearner.co.uk,2 21882,http://gbyorkshire.easysearch.org.uk,2 21883,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/PestAndWeedControl/DG_10037530,2 21884,http://www.phoenix-drivertraining.co.uk,2 21885,http://gbt.toolbarhome.com,2 21886,http://www.newcastlefutures.co.uk,2 21887,http://www.smartledgers.co.uk,2 21888,http://gbi.toolbarhome.com,2 21889,http://www.phoneforums.org,2 21890,http://gaydar.co.uk,2 21891,http://www.newcollpont.ac.uk,2 21892,http://gateway.novalis-trust.org.uk,2 21893,http://www.newcourtsurgery.nhs.uk,2 21894,http://www.elevenplusexams.co.uk,2 21895,http://garytaylordrivingschool.webs.com,2 21896,http://garysdrivingschool.com,2 21897,http://garyschuster.theorytestpro.co.uk,2 21898,http://6thhawleyguides.easysearch.org.uk,2 21899,http://garymarshdriving.co.uk,2 21900,http://garyfisherschoolofmotoring.co.uk,2 21901,http://www.newdirectionsreading.co.uk,2 21902,http://talktalkhell.wordpress.com,2 21903,http://www.photographers-resource.co.uk,2 21904,http://www.cambiangroup.com,2 21905,http://www.direct.gov.uk/en/Parents/preschooldevelopmentandLearning/HelpingYourChildToLearn/index.htm,2 21906,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Counterterrorism/DG_183993,2 21907,http://www.edithwestonprimaryschool.co.uk,2 21908,http://www.smartrider.co.uk,2 21909,http://www.ulcerativecolitis.org.uk,2 21910,http://www.uldrive.co.uk,2 21911,http://www.calverleycofeprimaryschool.co.uk,2 21912,http://gambiaeducationteaching.easysearch.org.uk,2 21913,http://talk.notthetalk.com,2 21914,http://www.calmdriving.co.uk,2 21915,http://www.smd.qmul.ac.uk,2 21916,http://gallery.hd.org,2 21917,http://gadburnparentcouncil.easysearch.org.uk,2 21918,http://www.smile.co.uk,2 21919,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/FireSafety/DG_180886,2 21920,http://ga-militia.swagbucks.com,2 21921,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/FireSafety/DG_174329,2 21922,http://g6a51.mail.163.com,2 21923,http://www.calif.aaa.com,2 21924,http://www.phpwebquest.org,2 21925,http://www.direct.gov.uk/en/Parents/Preschooldevelopmentandlearning/HelpingYourChildToLearn/DG_10013540,2 21926,http://g1a91.mail.163.com,2 21927,http://t.qq.com,2 21928,http://www.smilesdriving.co.uk,2 21929,http://www.jeames.stagesite.co.uk,2 21930,http://www.smithandbyford.com,2 21931,http://sz0164.wc.mail.comcast.net,2 21932,http://g1a112.mail.163.com,2 21933,http://www.edit.legend.yorks.com,2 21934,http://www.newhomesforsale.co.uk,2 21935,http://www.calderdale.biz,2 21936,http://api.home,2 21937,http://futurefocus.staff.hsbc.co.uk,2 21938,http://futuredrivelondon.co.uk,2 21939,http://sz0108.wc.mail.comcast.net,2 21940,http://fusion.dla.com,2 21941,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/FireSafety/DG_071693,2 21942,http://www.earlhamsociologypages.co.uk,2 21943,http://funnsites.homestead.com,2 21944,http://www.jeff-blair.co.uk,2 21945,http://funeraldirections.co.uk,2 21946,http://sz0058.wc.mail.comcast.net,2 21947,http://fundraisers.everyclick.com,2 21948,http://www.littlerainbownursery.co.uk,2 21949,http://fulloflife.direct.gov.uk/previous-older-peoples-day.html,2 21950,http://192.168.114.1,2 21951,http://www.hootcarinsurance.co.uk,2 21952,http://www.ultimatemetal.com,2 21953,http://fuel.rca.ac.uk,2 21954,http://www.jellybabiesnursery.co.uk,2 21955,http://sz0021.ev.mail.comcast.net,2 21956,http://www.pianomatics.talktalk.net,2 21957,http://fssg.easysearch.org.uk,2 21958,http://10.112.180.34,2 21959,http://www.caesarsbenefitsnow.com,2 21960,http://www.ultraversity.net,2 21961,http://synergy.office-on-the.net,2 21962,http://www.caerffili.gov.uk,2 21963,http://www.umhan.com,2 21964,http://fs-preston-01,2 21965,http://sylvan.live.ecollege.com,2 21966,http://www.ian-markwick.co.uk,2 21967,http://www.umsa.org.uk,2 21968,http://frogserver.broadgreen.local,2 21969,http://www.cadcol.ac.uk,2 21970,http://frog.stangroundcollege.co.uk,2 21971,http://frog.ribstonhall.gloucs.sch.uk,2 21972,http://syemadds.theorytestpro.co.uk,2 21973,http://www.uncommonforum.com,2 21974,http://www.direct.gov.uk/en/CaringForSomeone/HealthAndTakingABreak/DG_10026504,2 21975,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/YourMoney/DG_071144,2 21976,http://www.earlandcofunerals.co.uk,2 21977,http://www.engage.hscni.net,2 21978,http://www.highsteddrivingschool.com,2 21979,http://www.pictureboxstudio.com,2 21980,http://friendsofluttonschool.easysearch.org.uk,2 21981,http://www.pictureframesexpress.co.uk,2 21982,http://www.equai.eu,2 21983,http://swphq-lmsapp,2 21984,http://all-drivers.co.uk,2 21985,http://swp-fis,2 21986,http://freyaleif.easysearch.org.uk,2 21987,http://www.newquayrowingclub.com,2 21988,http://freeway.theorytestpro.co.uk,2 21989,http://www.littlewalthamschool.co.uk,2 21990,http://freestonbec.cadech.net,2 21991,http://www.drivinginstructortunbridgewells.co.uk,2 21992,http://swindon2.theorytestpro.co.uk,2 21993,http://freemail.ukr.net,2 21994,http://www.direct.gov.uk/en/CaringForSomeone/CaringAndSupportServices/DG_10027518,2 21995,http://www.eagle.co.uk,2 21996,http://freeforumzone.leonardo.it,2 21997,http://www.pilgrim-partnership.org.uk,2 21998,http://swift-owners-club.com,2 21999,http://www.livability.org.uk,2 22000,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/AnimalsAndPets/index.htm,2 22001,http://freebeerforyorky.com,2 22002,http://www.directgov.gov.uk/,2 22003,http://freakytrigger.co.uk,2 22004,http://www.drivinginstructorswindon.co.uk,2 22005,http://www.uniformstore.org,2 22006,http://www.byiast.co.uk,2 22007,http://swanst.3rdsectorit.co.uk,2 22008,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/AnimalsAndPets/Dogs/DG_180008,2 22009,http://www.bxclub.co.uk,2 22010,http://www.unilim.fr,2 22011,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Paternityrightsintheworkplace/DG_190786,2 22012,http://www.newsblur.com,2 22013,http://fr.mc295.mail.yahoo.com,2 22014,http://svrshir115,2 22015,http://www.direct.gov.uk/en/CaringForSomeone/CarersAndEmployment/DG_182917,2 22016,http://svr-foapp01,2 22017,http://fr.mc246.mail.yahoo.com,2 22018,http://www.smruk.org,2 22019,http://all-aboutgames.net,2 22020,http://www.smslaw.co.uk,2 22021,http://www.smssupportgroup.co.uk,2 22022,http://www.livedriveinstructors.co.uk,2 22023,http://192.168.1.45,2 22024,http://www.newstarthighland.org,2 22025,http://www.newstudent.co.uk,2 22026,http://www.newteachers.info,2 22027,http://forums.whirlpool.net.au,2 22028,http://forums.vogue.com.au,2 22029,http://applicantstest.ucs.ac.uk,2 22030,http://surreydrivingforce.co.uk,2 22031,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/AnimalsAndPets/DG_175858,2 22032,http://www.snapcymru.org,2 22033,http://forums.t5d5.org,2 22034,http://www.direct.gov.uk/en/campaigns/,2 22035,http://www.pitchero.com,2 22036,http://forums.ski.com.au,2 22037,http://www.unitescotland.org,2 22038,http://yorkshirenaturalhealing.com,2 22039,http://supporttestsecure.studentfinance.direct.gov.uk/protocol/registration/register,2 22040,http://www.newtownabbey.gov.uk,2 22041,http://supporttest.studentfinance.direct.gov.uk/portal/page,2 22042,http://www.buyingsolutions.gov.uk,2 22043,http://support.speed-trap.com,2 22044,http://www.buydirectheating.co.uk,2 22045,http://support.nannotec.com,2 22046,http://forums.offtopic.com,2 22047,http://forums.mycathatesyou.com,2 22048,http://www.buybreakdowncover.com,2 22049,http://www.directdriveonline.com,2 22050,http://www.uolcareers.co.uk,2 22051,http://www.liverpooladvicealliance.org,2 22052,http://www.upc.hu,2 22053,http://www.newworsleygardencentre.co.uk,2 22054,http://www.liverpoolairport.com,2 22055,http://forums.loquax.co.uk,2 22056,http://forums.leedsfestival.com,2 22057,http://www.uplandsprimaryschool.com,2 22058,http://www.uplandsprimarystroud.co.uk,2 22059,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Parentalleaveandflexibleworking/DG_171864,2 22060,http://superdrivenorwich.co.uk,2 22061,http://www.upmyroad.com,2 22062,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Volunteering/DG_197599,2 22063,http://www.liverpoolcollege.org.uk,2 22064,http://forums.dundeebikers.com,2 22065,http://www.upv.es,2 22066,http://www.butler-solicitors.co.uk,2 22067,http://forums.delfi.lv,2 22068,http://www.e90post.com,2 22069,http://sunderland.hobsons.co.uk,2 22070,http://www.pizza.it,2 22071,http://forums.clublupo.co.uk,2 22072,http://forums.childrenwithdiabetes.com,2 22073,http://www.nextgov.com,2 22074,http://www.liverpoolfc.nu,2 22075,http://0.webmirror.duprule-diff-server.webmirror.ym-i.borg.google.com:25715,2 22076,http://www.direct.gov.uk/en/AdvancedSearch/Searchresults/DG_064158,2 22077,http://forums.aat.org.uk,2 22078,http://www.urbansynergy.com,2 22079,http://www.nexusdrivertraining.co.uk,2 22080,http://forum.xda-developers.com,2 22081,http://www.urlopener.com,2 22082,http://suejones.theorytestpro.co.uk,2 22083,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/DG_181643,2 22084,http://forum.vectraklub.pl,2 22085,http://forum.unlock.org.uk,2 22086,http://www.social-anxiety-community.org,2 22087,http://suche.gmx.at,2 22088,http://www.social-policy.org.uk,2 22089,http://forum.tourettes-action.org.uk,2 22090,http://192.168.1.121,2 22091,http://forum.testowa.info,2 22092,http://stwilfridskibworth.easysearch.org.uk,2 22093,http://www.planitservices.co.uk,2 22094,http://forum.singaporeexpats.com,2 22095,http://www.usdawsherburn.co.uk,2 22096,http://www.hmic.gov.uk,2 22097,http://www.usdawstokek183.org.uk,2 22098,http://www.socialcareconnect.barnet.gov.uk,2 22099,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Charities/DG_192701,2 22100,http://forum.pspeur.org,2 22101,http://forum.prisonplanet.com,2 22102,http://www.livsstilshuset.org,2 22103,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWLCR0F9tOv6NwxxxJm2uIFN!vN34aYlOF3Up!0FLpwjx3OuQdfbYcePOya*YLoqazvValgaq93tMjjYpQTWDoi1co02751pYddvXlQotfGEQQ1dU1tlzkCo9f0TTnBdb8LxghWj4arcGQpxYCVMvAqTOL4wj*qaHSKlQEoRKCMsRyyfwiRicgoTiIkpbI*Y*oFxHJ7vxk*Bg2t6q7NY!uoUDQTmK4n87MlCz7OP8orEGOaC4!HkKkz*LLhZSxQt0TWWykkdDCdqhJTDifwtjR35jyWvBJdFTkoisV0ZTRq6oj9bzPyN*owiWGU79RRt*y5F6RapJKLFUmSLVJL4UilSbpFKGrhY6sftskQq!R4WS!XzUqX*LfRt18C177SyzUetzTdQpXwq/results,2 22104,http://forum.planet-f1.com,2 22105,http://forum.pclab.pl,2 22106,http://forum.offroad-bulgaria.com,2 22107,http://www.lizdenholm.co.uk,2 22108,http://forum.notebookreview.com,2 22109,http://forum.newburytoday.co.uk,2 22110,http://studioeddies.com,2 22111,http://forum.nam-online.org,2 22112,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Rentarrearsandeviction/DG_188686,2 22113,http://www.societyandhealth.co.uk,2 22114,http://www.direct.guv.co.uk,2 22115,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Housingassociationhomes/Housingassociationtenants/DG_188466,2 22116,http://www.utc.fr,2 22117,http://www.sofeminine.co.uk,2 22118,http://www.sohaildrivingschool.co.uk,2 22119,http://studentswithlearningdifficulties.blogspot.com,2 22120,http://www.burystedmundsdrivingschool.net,2 22121,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWKCUvx41HX9G4Yw2pFa3Lh22c*fBdISnC7q0*YCF8!B4znXIPRm2NHDLss*cDopzbVQvNtlDQeQAFepB1yceoMjSPOphMTqhiXgJm0k3LoBcG9KcA14XMtBSP2q9Bmf2ocdd6XUljDwQYnWcH1BQiu*3vEEUL12L8GycjRcOVywYE1W4URrN7HDU2ZRW2dNoJSeUjrKCCs8VkxhucfyKYx5jE1he4*t7xj1w!Pd6NF5ANEbmYTSVsdgwDGfSeAnD5b3PLuV1iTEMBccdSfXbvpnwc1aSr2ldI2lalLHhxM0XMruRPoSx!759yWtGc3LglQk9!1K0qihK*qzxczf6M8oglW2Y0*B9u9SabpFKoposRTZIhUlvlSKVFukogYulvpxuyyRir6HxVLFvFRlfwv9WQm89kFyI95aqb8BQ7yJmw__/results,2 22122,http://www.sohamvc.org,2 22123,http://forum.ks-ekspert.pl,2 22124,http://www.soitu.es,2 22125,http://www.jessieyounghusband.w-sussex.sch.uk,2 22126,http://www.solar-help.co.uk,2 22127,http://www.ljsdrivingschool.co.uk,2 22128,http://www.uwicsu.co.uk,2 22129,http://students.bromley.ac.uk,2 22130,http://192.168.0.24:8089,2 22131,http://www.v12finance.com,2 22132,http://www.v2c.org.uk,2 22133,http://forum.globalsuccessclub.com,2 22134,http://www.llanfair-learners.co.uk,2 22135,http://www.llep.org.uk,2 22136,http://www.v8register.net,2 22137,http://www.vacation-times.org,2 22138,http://www.burntwoodschool.com,2 22139,http://www.drivinginstructorsinsandwich.co.uk,2 22140,http://forum.fok.nl,2 22141,http://www.jet2work.org.uk,2 22142,http://forum.fibroduckfoundation.com,2 22143,http://www.lllg.org,2 22144,http://forum.etyliniarze.pl,2 22145,http://www.solarselections.co.uk,2 22146,http://www.direct.gov.uk/taxdisk,2 22147,http://www.burlinghamhouse.co.uk,2 22148,http://www.burleyschoolofmotoring.com,2 22149,http://forum.demotorsite.be,2 22150,http://www.direct.gov.uk/en/Parents/Lookingafterchildrenifyoudivorceorseparate/Lookingafterchildrenifyourrelationshipends/DG_192844,2 22151,http://www.vds.org.uk,2 22152,http://www.vehiclecheck.co.uk,2 22153,http://www.ianwillcockdrivertraining.co.uk,2 22154,http://forum.britishpolio.org.uk,2 22155,http://forum.brit-cars.com,2 22156,http://www.velokiev.com,2 22157,http://www.playpennies.com,2 22158,http://forum.bladderandbowelfoundation.org,2 22159,http://www.ventnortowncouncil.org.uk,2 22160,http://www.plog.co.uk,2 22161,http://student.bluecoat.nottingham.sch.uk,2 22162,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVUtz2yAQ*jW!ZMYaENbraEW240ubqdozQxFjayKBAyhu*315yNYotTOyT8mFZR*sx7e7SEpIPUPFLIxfjaCkoV1DdM13szDfi6auyF!zY1zXumGtkSaSS6a6RitzAAKjK5MDE0UZr!xBVFjja*BbCKVZ9VRrFXz*4UCiMDXZJDl2sjEaWlpTuNf6YDe9HoXrXhyPx6CqJaM62Im3oHvp7QcpKkwFV12Lq11vrCt6aLyC1tuKlky!1ZR5Q1GWeLP6iZ!Xm5WPj7mo2Lbq3XGGevO2xGX5*Ku3Q3dBsyR5ay9cWAJR!KicAqzD0MqtLTPS0PTK56GpVCHoN9KeIooNhgCgRQLhRMbJ12cMEpQspvKNP!AbN8RNOON27rV5KRRLwl*M3GP252AehqoFH2Z9tLREWaJRbjOZmjgRFQ9hnzwK8yEk9SGpC3nnS7wvueSLvS!!5Iu8L7rkW3jf4uRDfjnfDbnepYoKyebD1u7WAwEX!QiG!Pk5ynO!ehQtwVCGa4VDLvPSiS9WuKuUoKcEb6GUXcQB55eXDlV2GdFqXHYff1LRMkJxmoAMxL5dczhq6A39uYfM5!jPuxLcRHvMaaD9MRSE90CNSjQZCtwDNar4VCiQ3QM1auBkqP!!LlOgRvMwGSq5DuV!C2JXU*PZV4xIuseM*wNZY0pc/results,2 22163,http://student,2 22164,http://forum.arab-mms.com,2 22165,http://forum.apuvsc.net,2 22166,http://stthomaskendal.easysearch.org.uk,2 22167,http://www.bundesnetzagentur.de,2 22168,http://www.direct.gov.uk/en/Parents/Lookingafterchildrenifyoudivorceorseparate/Childrendivorceseparationandcourts/DG_4002963,2 22169,http://www.bumperssom.com,2 22170,http://forum.205gtidrivers.com,2 22171,http://stroke.nottsinfoscript.co.uk,2 22172,http://www.somaligolden.org.uk,2 22173,http://forevermobility.co.uk,2 22174,http://www.hmlr.gov.uk,2 22175,http://www.jevic.co.jp,2 22176,http://www.direct.gov.uk/renewmyphoto,2 22177,http://www.bulgariansociety.com,2 22178,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Owningproperty/DG_196291,2 22179,http://www.loadersdrivingschool.com,2 22180,http://street-stylers.co.uk,2 22181,http://streamline,2 22182,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Mortgagesandrepossessions/DG_180066,2 22183,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Mortgagesandrepossessions/DG_180047,2 22184,http://www.direct.gov.uk/prod_consum_dg/idcplg,2 22185,http://www.versacare.co.uk,2 22186,http://forcesbenson.2day.ws,2 22187,http://forcesaldershot.2day.ws,2 22188,http://stourportdrivingschool.theorytestpro.co.uk,2 22189,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU2PmzAQ*TW5VAKBHb6OYUnSXNpVac!Wa7sJWoJZ24T8*BqbBLFLViRqpfZie2Ye8*xmBpBcqAXMFiB81ZvC5wVIaSGJdlSCyaZUUvt9T9tSQxGWhFW0qPba2zlf3Z!cS8Xo50JJ9!s3kysAsU4jcNuIUltw1bnAQam6O*R2ADb91ratSwvBiHL3*OQ2L72*FpwiwivZHBHd986Ckrq0BtzsKMmZOBWEWUeW52i7*o6eV9u1xYcVp2xH!zBI4t69y1GeP**o*b65oF6i9LgwQIN7ksbwuoCWlXa!RO9apjXukkmw!NWwkmKFJ!VWrHVO7FCQkjm6ES6W9fndvaI*f6!*Wn4pM06!4OMFkW3R0gPA96OZjQg*EByW2Awiq7rxVFgVBAlcvejxROxc6*mVBa!GkRwtRyw7pUHaZdJFMVuQfQJ98gCkAyS2kNhA3sQiG4umYqGNhVOxwMaCqdjSxpaXGLTL9W7QNC!WhAvmDMfutBkEGOSTN!CdK8pqvvkoXHlDGW4VDprMK7P9Z4W7Kcm3kvx7JCWTPN711YuHKpuMcD0uu8VfTLgKYBhHXuKFtl2OP2roHf15RMy*0Z83JbhL9ljTIPtjKt9*hGpUotlU3iNUo4rPpfKSR6hGDZxN9e7rModqNA!zqaLbVOa3wPcF0Z99ybAgB8Sq35uBKdU_/results,2 22190,http://www.drivinginstructorsalisbury.com,2 22191,http://stopurban4x4s.blogspot.com,2 22192,http://footprints.nwleics.gov.uk,2 22193,http://www.versys.co.uk,2 22194,http://192.168.0.2,2 22195,http://www.budmouth.dorset.sch.uk,2 22196,http://www.vesmirnilide.cz,2 22197,http://www.somer.org.uk,2 22198,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Mortgagesandrepossessions/DG_10026228,2 22199,http://www.jewelcontrol.co.uk,2 22200,http://www.employeebenefits.co.uk,2 22201,http://www.plurk.com,2 22202,http://www.bucksstudent.com,2 22203,http://www.plymouthadvancedmotorists.org.uk,2 22204,http://www.direct.gov.uk/en/Parents/CrimeAndYoungOffenders/DG_4003031,2 22205,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zqjAU*TVuOiOTkAZwCUV93bSd0q4zNGQsTyU2N9b!*OYDZbDaQVfvbZLce4735pyLAFLpEclHYfRhtr*ybRRmIMRSKDC5RgnYrjQYCCMTg2GzErhoqrpZmKxNfgRvUoIW1Z9aQ*D47MrRMDGVVLnbqpWJSGpT4bvWG3toYxrO2m232wVVrQTXwUJ!Bttlm98oWTEuG9iuWbVok3XFNysfkNl9xQuhPmsufCIvCjafvrCndD71*Aggl*yhXO8Z!ZxhhHAS07hl3BesKJ5eWxy7u5olztb27rnVQsM7cAGygFGY2dzE6F!VzgrRWIN0qWvOVNksjUFMfG2Mg1DLpjOlt6xLsFJpZisZV9xG85uwLU7DrKMknpI4yhEWeyw!hUUei05h1GP0FHbrsds9RvxyuBtx00uASyXG3dGeZp0Ax7xDHX98YHnNZ39KUtTZcM444iqnbvvPjDsrCXtJ!BJJk5N90OG*l3Quu4pk2rfd8*chSSmJkhhNUOTHNca9gV4wn2vE*BvzObLgItl9TZ3s31thfE2rnkWDW6FrWvUcH9oKTa5p1Rvg4FY*3i5DWvWeh8Gt4vOt3GdBLmpuXvsgSsXfmWi!AXXBw7w_/results,2 22206,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/MobileHousing/DG_191099,2 22207,http://www.plymouthcab.org.uk,2 22208,http://stoneandco.co.uk,2 22209,http://www.plymouthcity.co.uk,2 22210,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAU*DW!dMaMQJaAIwTb9aXNlPasUSWNw8SWiITj*vzqA5shsTPYp!Qi6e0!tNr3BBiluxmsZgl!sVNLjWkdkmCphTnsOmPRGNjYWJhQw4Tkjdxa1IEv0V!lTCf496Yz0c9ffieUZLOk1PR40DsbwcJByVPXtW7RxyhZ9dPxeIx4owXroq16jQ7PPd5qxQlT0hz2hG97sOGs3YUArjac1UK*NkwEoKprsl7!Jo*FehnysVRcbHhPoxz18KYmdf34p8djf0A7pOXeHbhyBlDyYHwAHGFtlQ7L7WxthuCT2szyxUSb6RezaUyl2A!6P2VUaxKnixjBiX7xB37xjvprLaS77B3tGkY0lc*2shPxr7Vvg2mUHC74aNhT44yi0u1ka!InVH1L!s1RUg4pWUjJfMobLg1ceonDgcOXOBQ4dIlbBG5x4mAYzmeDvneZYUqL!bB0q9VgwGc!gCF*fs4Knq8!CgswlOFa4aDfufDTFyvcVUtxsBTfYim*qAPOb142VNnvCJfjsof8UwgLBHGWghzg0K55PGroDf25x8zn6M!bEtxke!xpsP2xVBzfIzUq0WQpcI*UqOJTpUB!j9SogZOl3n1dpkiN7sNkqfS6lP8tqG3D7GffCKrZExHyP0nAPYw_/results,2 22211,http://foad.univ-mlv.fr,2 22212,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!ZMaMPoLARwi2m0uaKe1ZQ4XGYWIkIom4P7*6wGZI7Qz2Kb1otfued*V2haylMgtcLBB5s6YRTLZ8gXLdd51DEBGK635vtEUhsL62YVppxkXdiJ2NuuBb9FtKbXj9rTE6!v7DZ4xRajOp6tCrvfVw5kLoxZjObQY*RpvBHA6HqG4UZybayfeofx3inZI1ZVLovqX1bgg2Nev2wcGbx5qVXL03jIdAUZZ0u*5Jn7PtOvCJ1oVkT1V7ZBRbCgGAaQLSgfFY0rJ8*jXg0J*VLkneurMXyPMetHeAA6zC3MVW1lrFwfnaitOYJGCm3uQTvWRf!dFz4S6EqUzDqKrEq70QlP*p7I3RjRTjJZgsbaWd0Dh3mWxPvImLOzQkj1E!UtJAST3lA5YELDmHkYCRc1gcsPgcdh!w!yOGw3I6G*azSzWTii*HrdttRgGe!QBG*vLECpov*hRnYGzDpcZhnznz5j9r3EVJMEiC10hana0DTl9eOnbZZ8TradsD*!jiLMbEPggrQMK4lnAy0Cvmc4uYrzGfDy24SvZU0yj781IQ3lJq0qLZpcAtpSYdn1sKrG4pNRng7FL*vC5zSk3uw!xSyeVS*m9B7hpmn33NK8VeKBd*AXYbBZc_/results,2 22213,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_199087.pdf,2 22214,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/MobileHousing/DG_191081,2 22215,http://sto.co.uk,2 22216,http://stn.thehub.uk.baa.com,2 22217,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!ZMaMhCLARwi2m0uaCe1ZowiNQ40lR5JDf370gc2Q2h3sU3uRtPseu3pvDdZSmRkqZ3Hybrdf8nUWF5rzLVfanmgrOyoYt7BQXB9aoy0LAhtr!yChmnFRN2Jjsy75Hr1KqQ2vvzVGR99ffGUcZ7aUot1BtTZCuUvFb8bs3aGPcbzqt67rorpRnJloIz!iw7bP75WsCZNCH3ak3vTJpmb7NgRo9ViziquPxt3XJcqqIuvlD*Kcr5eBn2hdSvZEd0dGuSYQAJilOO0ZjxWpquefPQ79Xe2SFjt399JpwfGD9gFwgFVYuNzC6m!pt4ILZ5ChpmFEUbG1BhH!e28d1I0UgymjZUe1k4oLV8m64jdc3sV9cRwXAyULlMxTvmBpwNJzWBKw5ByGA4bPYfcBuz9iKCynuyE*vUwzqfh8OLrTahDgmQ9g4M9PrKD54qMoB4MNl4xDvnLut**MuIuSYJAEr5G0ONsHnN69bHDZV0TLse2BfwxRjlGSpWABkjCuORwN9Ir53CLm35jPFwuukj3WNMj!eysIb2k1smhyK3BLq5HjU1uBxS2tRgOc3OqPr8uUVqPfw!RW6eVW*m9BbhpmP*uaU8XeCBefWJrHnw__/results,2 22218,http://flypie.com,2 22219,http://www.bubbledrivingschool.co.uk,2 22220,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_195933.pdf,2 22221,http://www.e-mentoring.org,2 22222,http://187.187.1.42,2 22223,http://www.plymouthonlinedirectory.com,2 22224,http://flatshare.metro.co.uk,2 22225,http://stmaryschurch.easysearch.org.uk,2 22226,http://17plusgloucester.blogspot.com,2 22227,http://www.vforum.me.uk,2 22228,http://www.hornbydrivertraining.co.uk,2 22229,http://fita.org,2 22230,http://fisheater-uk.blogspot.com,2 22231,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Leaseholdproperties/DG_193053,2 22232,http://fisd.haringey.gov.uk,2 22233,http://www.localresilienceforum.org.uk,2 22234,http://www.vfs.edu,2 22235,http://www.btbuddies.org.uk,2 22236,http://firstport,2 22237,http://firstpoint,2 22238,http://stjosephsinthepark.com,2 22239,http://www.viagemeuropa.com.br,2 22240,http://stjosephschorley.co.uk,2 22241,http://179.1.55.6,2 22242,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/ks4/t4_pupil.htm,2 22243,http://www.bstfoundation.co.uk,2 22244,http://www.hmr.nhs.uk,2 22245,http://stjcheltenham.easysearch.org.uk,2 22246,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_194538.pdf,2 22247,http://www.pm-drivingschool.com,2 22248,http://177sqnatc.easysearch.org.uk,2 22249,http://www.jigsawschoolofmotoring.co.uk,2 22250,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/foundation/screen/s_tf_hcl_plan.htm,2 22251,http://www.er.uqam.ca,2 22252,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_189938,2 22253,http://stewart-johnson.co.uk,2 22254,http://www.bshg.org.uk,2 22255,http://www.villagesos.org.uk,2 22256,http://www.jimini-cars.co.uk,2 22257,http://www.bsdh.org.uk,2 22258,http://fingersandtoes.wordpress.com,2 22259,http://youcanpass.theorytestpro.co.uk,2 22260,http://www.virology.net,2 22261,http://www.jimmurphymp.com,2 22262,http://finday.com,2 22263,http://steveb.theorytestpro.co.uk,2 22264,http://www.virtualnorwood.com,2 22265,http://www.bsac.com,2 22266,http://steve.theorytestpro.co.uk,2 22267,http://sterianet.steria.co.uk,2 22268,http://www.poauk.org.uk,2 22269,http://filtoncollege.clikpages.co.uk,2 22270,http://fighttheairmileschange.co.uk,2 22271,http://www.e-learningfoundation.com,2 22272,http://fifedirect.org.uk,2 22273,http://www.e-lanes.co.uk,2 22274,http://www.brushstrokesproject.org.uk,2 22275,http://fhallapp07,2 22276,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1z2jAQ*TVcOoNHH8g2RzsGyqXN1O1Z40gacAMWkUTc*vvqw!BxChnDKblI3n2PfXq7stFSmQkuJih!sdtv!aQnKN!Kv62U3CYbJfRxZ7TFILCxtnRaaSYaXjcbm3XJl!hJSm0E*1obHX3*4esRlNpKqmqPamcjnLkU2hpzcA9dTNCy29q2jXitBDPRRr5Gx!cuf1CSUyYbfdxTvumSNWeHXQjwcs1ZKdRrzURIFGVJV4uf9DFbLQI*1rqQ7Fu1PzGKFYUAYADxrGOsS1qWj786HPqz2iXJ9!7shfNC0IP2AXCAdZi73Nzu1nEIPo7jRnKx5ic7AI60mXxmmwiikTbjd2zGu8pfbNG4624qUzOqqubZXncq*hzs!6Br2fRXfLDsK!38kdxVsq3wGym!oK44QXlPSQMl9ZQ3WBKw5BIWByy!hJGAkUvYLGCzE4bDcj4b9iNLNZNKTPtH97TsDXjmA!j50zMreL76U5yBvg3XGod95cxvn6xxVy3BYAneYml!UQecX7i077KviBfDtgf!KcQZwXGagDmIw7imcDDQG!Zzj5mPMZ83LbjJ9tBTb*t9KQjvkRq0aLQUuEdq0PGxUmB!j9RggKOl*vu6jJEa3IfRUsl1Kf!3IDc1s599LSrFtlQ0*wC2fz!M/results,2 22277,http://www.jkm.org.uk,2 22278,http://zeta,2 22279,http://www.jlcautomation.co.uk,2 22280,http://www.e-gov.kz,2 22281,http://alfie.easysearch.org.uk,2 22282,http://www.visitskegness.co.uk,2 22283,http://www.jm-dt.co.uk,2 22284,http://www.brt4cbt.co.uk,2 22285,http://fdnetsto.fsdt.uk.hsbc:1300,2 22286,http://fcunitedofmanchester.easysearch.org.uk,2 22287,http://fcsc.easysearch.org.uk,2 22288,http://www.jmgroup.co.uk,2 22289,http://www.browsersafesearch.com,2 22290,http://www.sophiesdrivingskool.com,2 22291,http://www.jml-insurance.co.uk,2 22292,http://www.sopo.org,2 22293,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_194355.pdf,2 22294,http://static.hullcc.gov.uk,2 22295,http://static.advicenow.org.uk,2 22296,http://www.broughtonhall.com,2 22297,http://www.brotherwood.com,2 22298,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuyingYourHome/DG_4018087,2 22299,http://fastmail.fastwebnet.it,2 22300,http://www.broombroom.com,2 22301,http://www.brooktek.co.uk,2 22302,http://fast-pass.org.uk,2 22303,http://adc,2 22304,http://andreainwonderland.blogspot.com,2 22305,http://start.jdownloader.com,2 22306,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuyingYourHome/DG_186472,2 22307,http://www.london-probation.org.uk,2 22308,http://www.vivsschoolofmotoring.co.uk,2 22309,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_194353.pdf,2 22310,http://fanshake.tixdaq.com,2 22311,http://starsschoolofmotoring.theorytestpro.co.uk,2 22312,http://www.vle.motherwell.co.uk,2 22313,http://62.3.97.158:3000,2 22314,http://familyservices.direct.gov.uk/Family-Services-Search-results/,2 22315,http://www.vliegtuigen.net,2 22316,http://stapc.easysearch.org.uk,2 22317,http://www.brookhill-leys.com,2 22318,http://www.vmcc.net,2 22319,http://falcon,2 22320,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuildingYourOwnHome/DG_10030744,2 22321,http://standrewseora.easysearch.org.uk,2 22322,http://www.epconly.co.uk,2 22323,http://www.brompton.co.uk,2 22324,http://www.bromleys.co.uk,2 22325,http://adamrwood.auto.officelive.com,2 22326,http://facc.thefa.com,2 22327,http://www.policehistory.utvinternet.com,2 22328,http://www.voice-online.co.uk,2 22329,http://www.voiceadept.co.uk,2 22330,http://f.chtah.com,2 22331,http://www.healthpromotion.eastsussex.nhs.uk,2 22332,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4jAQ*TVcViLyB07CMSnQ5bRV056j1Lao1WBT25Tdf19*pERpoQqcuhfbM2!Y5zcvCUZpO8GLCUpf3bZVT6IV9p8LpeZm31rjshC42LjCujGUSybkxmV98jV5UspYzn4La5I*96ETQfkElbo57HXrIlz4FHq2ducPXUzQqtsOh0PChObUJhv1luxfuvxOK1ZTJc1!W7NNlxSM7toY4NWa0YrrN0F5TCyqqr5dPtR3xe0y1qdSMb5mHYzhrEuvq7qq7h67PAwXdEtWbv2FF14AQTcmBMADTlbpc3O3O5kx!KEyUwRHysy!kZm2TbCZS2!!baygtW7kizO*5n937ukwQsne8MGybYzXR0rfyY0ibGTxC3XNCSr7kjyW5KHkE5ZFLDuFpRFLT2EkYuQUNovY7APDcTneDQfLckOV5tP!6E!rXkCovAF9*fRYFTWf*SkuQD!Gc4PDoXMRtv9scGclwSgJXiJpfpIHHF!4vJ9y6IiXw7HH!o8QFwSneQbmII12TeHA0Av8uUbMz*Dn0wgukj3U1Mv!ngrCa6gGIxpNBa6hGkx8LBWYX0M1MHA01ZevyxiqwfMwmio7TxX!FtRGUPfZN7zR9Lnm8h0iQfz1/results,2 22333,http://stakeholders.ofcom.org.uk,2 22334,http://staging.yorksj.ac.uk,2 22335,http://www.brodetsky.leeds.sch.uk,2 22336,http://extremeoc.co.uk,2 22337,http://extraordinary.direct.gov.uk/search.aspx,2 22338,http://www.brockley.lewisham.sch.uk,2 22339,http://extraordinary.direct.gov.uk/downloads/,2 22340,http://www.icc.ac.uk,2 22341,http://extraordinary.direct.gov.uk/careers/fast_track_careers.html,2 22342,http://www.londonambulance.nhs.uk,2 22343,http://www.jobcafe.co.uk,2 22344,http://www.direct.gov.uk/en/Hl1/Help/DG_199083,2 22345,http://www.londoncjp.gov.uk,2 22346,http://externalstg,2 22347,http://www.broadgate.ik.org,2 22348,http://www.jobcentreonline.com,2 22349,http://www.jobcentreplus,2 22350,http://www.southampton-childminder.co.uk,2 22351,http://www.broadbaseimmigration.co.uk,2 22352,http://experts.eureka.org.uk,2 22353,http://experience.patient.co.uk,2 22354,http://stag-ukgroup.standardlife.com,2 22355,http://staffs.pl,2 22356,http://wzeu.search-results.com,2 22357,http://exim-uk.com,2 22358,http://exeterrafde.easysearch.org.uk,2 22359,http://staffnet.wnc.ac.uk,2 22360,http://www.volunteercentreliverpool.org.uk,2 22361,http://exchange2003,2 22362,http://www.britzinoz.com,2 22363,http://www.southamptondriving.co.uk,2 22364,http://www.britsincrete.net,2 22365,http://exceldrivingtuition.com,2 22366,http://www.direct.gov.uk/en/Hl1/Help/DG_072684,2 22367,http://www.policyexpert.co.uk,2 22368,http://www.jobcentreplus.gov.uk:80,2 22369,http://staffbank.childcarejobsdorset.co.uk,2 22370,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/AdoptionAndFostering/DG_10029406,2 22371,http://evolutiongames.net,2 22372,http://staff.napier.ac.uk,2 22373,http://everyonebenefits-asda.com,2 22374,http://staff.meconsultancy.com,2 22375,http://www.polish.e-melton.co.uk,2 22376,http://evansaboveonline.co.uk,2 22377,http://www.britishtest.com,2 22378,http://evacpack.co.uk,2 22379,http://evabookkeeping.co.uk,2 22380,http://euwelcome.org,2 22381,http://euuniversalstudies.blogspot.com,2 22382,http://eurotemps.co.uk,2 22383,http://www.britishsnoring.co.uk,2 22384,http://www.direct.gov.uk/en/Hl1/Help/ContactUs/ContactUsForm/DG_179941,2 22385,http://stac.easysearch.org.uk,2 22386,http://st-supp-1,2 22387,http://st-josephs-malmesbury.wilts.sch.uk,2 22388,http://www.britishsecondwivesclub.co.uk,2 22389,http://eulogie.eu,2 22390,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_184487.pdf,2 22391,http://sst-web.tees.ac.uk,2 22392,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_182310.pdf,2 22393,http://www.britishpathram.com,2 22394,http://eu.battle.net,2 22395,http://www.voodoo-media.info,2 22396,http://www.politics.ntnu.edu.tw,2 22397,http://ssa.easysearch.org.uk,2 22398,http://www.direct.gov.uk/en/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_178842.htm,2 22399,http://www.britishmods.com,2 22400,http://www.southendcab.org.uk,2 22401,http://ethiopiancommunity.co.uk,2 22402,http://ethemes.missouri.edu,2 22403,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVk1z2jAQ*TVcOoNHlpBsH!0YKJc2U7dnjStriCcgEUmE*vzqw!BxYjKGU3LRavct!*R2JUBLZWaonEHyYo2WStitUFwfd0bbSAysb8OG1ppx0bRia6Mu!BL9lVIb3nxvjY5!*vJVMExnsFD16ah21kO5C8EnYw5u0*kYrjpzOp2iplWcmWgrX6Pjcxc*KNlQJoU!7mmz7YJtww674KDVpmEVV68t4yFQVhVdL3*Tx3y9DPlE61KyH*X!nFGuKSBZApMO31S0qh7*dGjsT2qXpNi7k5dOCYYP2jvAAVZf4WKZtVZvcD6PXiEbvmk6GGbZRJnJF5M5MtYFgBDgdKJg8oFgsqv9BefuGWhTm5ZRVYtne!0p*3ew70K3UvRXfbDsa!2U4sJVsk3xBpffYFccw6JPSUNK6lPeYEnAkjGMBIyMYThgeAxbBGxxxlBYLmdDfnipZlLxeb91u1UvwGc!gD5*fskKmq9!FOWgb8O1xiFfOffmizXuqqQ4SIpvkZSN8oDL00v7LvuKaDlse8g*uyjHiKQJyAAJ45rHg4HeMJ97xHyO!bxpwU2yh5p62R9TxfE9VIMWTaYC91ANOj6VCmT3UA0GOJnq3bfLFKrBfZhMlVyn8j8Lctsy9weJ14o9US7!Ay7nPrE_/results,2 22404,http://estudy.wiltshire.ac.uk,2 22405,http://estrategiadebusqueda.blogspot.com,2 22406,http://sra.org.uk,2 22407,http://www.londonsouthbanksu.com,2 22408,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Freedomofinformationanddataprotection/index.htm,2 22409,http://www.britishgrooms.org.uk,2 22410,http://essexboilers.com,2 22411,http://essexap:13608,2 22412,http://essex-roadster.co.uk,2 22413,http://essentials.intranet.arup.com,2 22414,http://essar-stanlow-intranet.swuk1.local,2 22415,http://www.polskiebiuroksiegowe.com,2 22416,http://www.vseolondone.com,2 22417,http://sps,2 22418,http://www.hornsea.eriding.net,2 22419,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Findoutaboutyourrights/DG_196541,2 22420,http://www.britishexpat.com,2 22421,http://www.vstrom.info,2 22422,http://www.britishecologicalsociety.org,2 22423,http://esccwebsite,2 22424,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Findoutaboutyourrights/DG_196526,2 22425,http://esabenefit.com,2 22426,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Findoutaboutyourrights/DG_176761,2 22427,http://www.vwgenuineparts.co.uk,2 22428,http://www.londontravelwatch.org.uk,2 22429,http://spinternal,2 22430,http://www.britishblades.com,2 22431,http://www.direct.gov.uk/en/Nl1/Newsroom/SpendingReview/DG_191708,2 22432,http://www.vysokeskoly.cz,2 22433,http://es.answers.yahoo.com,2 22434,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*Jp9aWLCZfHyqN3ubxhiydasCy3YpJ*fAye7BKuN!tS!wIEZGWeOQWfseOCnA8s*YLLG3A6ssUrLwcGetsp9DqMDiBJYO2C30nVKv*b6Art!c5ChVNoTRjn2XWulvgKhVV*vcILrjQ4agpWT4SbdFQrRsAomXodJnJ6YR33NmkgpkVIGygQrECvmsByxfA4TiIk57IjY8Y5xHB7vxs*Bg!uMVVksfXWOBgLzmUR!9mCh58VHeU1iDEvB8XByHaZ*FtyiJYqW6BZL1awOhhM1QsrhRP6Sxo78!5LXgudlQSqSY7symjR0Q3*2mPkb*ZlEsMl26ina*l2K0j1SSUSrpcgeqSTxtVKk2iOVNHC11I*bZY1U8j2sliqWpSr*WzCXvoNr3ylpu7dW6W9nsn29/results,2 22435,http://www.w121som.co.uk,2 22436,http://www.direct.gov.uk/en/Nl1/Newsroom/SpendingReview/DG_191682,2 22437,http://www.britinfo.net,2 22438,http://www.direct.gov.uk/en/Nl1/Newsroom/SpendingReview/,2 22439,http://www.britastro.org,2 22440,http://speedy.theorytestpro.co.uk,2 22441,http://eric,2 22442,http://www.southkirkby.childrencentres.org,2 22443,http://www.horsell-village.surrey.sch.uk,2 22444,http://www.edinburgh-inspiringcapital.com,2 22445,http://speaking24.com,2 22446,http://www.dzined.co.uk,2 22447,http://spaysisters.easysearch.org.uk,2 22448,http://www.portlanddrivingschool.co.uk,2 22449,http://epiphanyscouts.easysearch.org.uk,2 22450,http://sparkymizen.webs.com,2 22451,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@travel/documents/digitalasset/dg_175799.pdf,2 22452,http://epetitions.direct.gov.uk/privacy-policy,2 22453,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_4014345,2 22454,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Accidentandinjurydisputes/DG_194918,2 22455,http://spa-schoolofmotoring.co.uk,2 22456,http://172.28.100.24:9093,2 22457,http://www.wadhamsdrivingschool.moonfruit.com,2 22458,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Accidentandinjurydisputes/DG_194911,2 22459,http://www.portsmouthcitycollege.co.uk,2 22460,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@travel/documents/digitalasset/dg_175798.pdf,2 22461,http://www.southstaffordshirepct.nhs.uk,2 22462,http://www.bristolbikers.co.uk,2 22463,http://epetitions.direct.gov.uk/petitions/7337,2 22464,http://www.southtynesidehomes.org.uk,2 22465,http://www.jobsatportsmouth.co.uk,2 22466,http://epetitions.direct.gov.uk/petitions/491,2 22467,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@shared/documents/digitalasset/dg_180387.pdf,2 22468,http://www.bristol-driving-instructors.com,2 22469,http://www.southwales-fire.gov.uk,2 22470,http://www.bristol-city.gov.uk,2 22471,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/TheUKandtheworld/DG_073421,2 22472,http://epetitions.direct.gov.uk/petitions/3747,2 22473,http://5thgeardrivingschool.com,2 22474,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/TheUKandtheworld/DG_073419,2 22475,http://south.barnfield.ac.uk,2 22476,http://epetitions.direct.gov.uk/petitions/2965,2 22477,http://epetitions.direct.gov.uk/petitions/29,2 22478,http://epetitions.direct.gov.uk/petitions/2311,2 22479,http://www.bringonpotential.com,2 22480,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVAftdv9DUNYsjW7hRZs0s8vcLJLsNqoT!2L58iMjDPHoDN2LOixIPzDF3MuSCeF9YVrq9znbXR!GSN*7zyzF04qfR70xa!GxZuIrdKBMIpxkL0V!uoJvfp69zu4wei4PyP15PIm3NU3rCONL7SNhR2fSEBDT7pEqYFSR8oEqwCr5jAOGJ*DGGBsDjsAdrhjFC6Pd6On6MFJY1WZ2tCdkoHIfEaJXz5Y4HnxUdqiFMNScDTu3Mbyz4JbtITBEt5iqZnVgXCSRkw57khf8tiBf7!lLaO8rlCDOIyrxNlAN8xnj5m*MZ9JBJts556S7d!lMN4jlUW0WgrtkcoSXyuFmj1S2QBXS*04XdZIZd*DaqlqWaoJvwVzGaQ*9p0SVr72Sn8Ds2576A__/results,2 22481,http://soscab03,2 22482,http://www.jobsatteam.com,2 22483,http://epetitions.direct.gov.uk/petitions/19350,2 22484,http://www.brightondrivinglessons.co.uk,2 22485,http://www.longstrattonsurgery.nhs.uk,2 22486,http://somershamsch.easysearch.org.uk,2 22487,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/PublicConsultations/DG_4003113,2 22488,http://solonswha.co.uk,2 22489,http://www.positivestepsnurseries.co.uk,2 22490,http://www.postnl.com,2 22491,http://solico.co.uk,2 22492,http://www.brighton-hove-rpml.org.uk,2 22493,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@over50/documents/digitalasset/dg_194113.pdf,2 22494,http://www.lonoco.co.uk,2 22495,http://sol.easysearch.org.uk,2 22496,http://epetitions.direct.gov.uk/petitions/18102,2 22497,http://sognarelondra.com,2 22498,http://www.ice-cream.org,2 22499,http://sodium,2 22500,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@over50/documents/digitalasset/dg_180312.pdf,2 22501,http://www.hmsdrivingschool.co.uk,2 22502,http://www.southwesttrains.co.uk,2 22503,http://socialbreakfast.org,2 22504,http://snowheads.com,2 22505,http://epetitions.direct.gov.uk/petitions/16050,2 22506,http://epetitions.direct.gov.uk/petitions/15476We,2 22507,http://5stardrivingschoolcoventry.co.uk,2 22508,http://www.poundstretcher.co.uk,2 22509,http://www.southwingfield.org.uk,2 22510,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Parliament/index.htm,2 22511,http://www.southyorks.police.uk,2 22512,http://www.southyorkshiredubs.com,2 22513,http://172.28.100.20:9093,2 22514,http://www.bridgeservicestation.co.uk,2 22515,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Parliament/DG_073671,2 22516,http://www.spa-schoolofmotoring.co.uk,2 22517,http://www.spa.ac.uk,2 22518,http://www.bridgenders.net,2 22519,http://epetitions.direct.gov.uk/petitions/14435,2 22520,http://www.wadhurst.info,2 22521,http://www.iceonline.cam.ac.uk,2 22522,http://answers.worldnomads.com,2 22523,http://www.spanish-translator-services.com,2 22524,http://www.spanishpropertyinsight.com,2 22525,http://epetitions.direct.gov.uk/petitions/1309,2 22526,http://www.lord-lieutenant-kent.info,2 22527,http://www.sparksite.co.uk,2 22528,http://epetitions.direct.gov.uk/petitions/1269,2 22529,http://www.speakability.org.uk,2 22530,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_198584,2 22531,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_198244,2 22532,http://www.wadsworth.com,2 22533,http://epetitions.direct.gov.uk/faq,2 22534,http://epetitions.direct.gov.uk/accessibility,2 22535,http://www.er-go.it,2 22536,http://epcharrogate.org,2 22537,http://www.lostdogs-scotland.org.uk,2 22538,http://www.brevia.co.uk,2 22539,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_198000,2 22540,http://epacda.wwp.wwworldwide.net,2 22541,http://www.spirita.org.uk,2 22542,http://www.waimaolu.com,2 22543,http://www.waipara.plus.com,2 22544,http://enwlsharepoint,2 22545,http://www.powersteeringtuition.com,2 22546,http://anderbydrivingcentre.co.uk,2 22547,http://www.brentlaw.org,2 22548,http://www.sponsorbank.org.uk,2 22549,http://www.powertechireland.co.uk,2 22550,http://www.brenchleypreschoollimited.ik.org,2 22551,http://sms.easysearch.org.uk,2 22552,http://www.sporcle.com,2 22553,http://smithware.co.uk,2 22554,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hiEsWc1uoQW2af!!XLJLsNqoT!0LHJyBceYY1FKZDHcZKt7txAbOhgy1X*KmTmr8GMXZrgzXxhKE4vp2NdryILBrbbf2VDMuTo6HO*fwSn3JhSMYakbWKyoultDzzzd7gh6l8IIEVZPhleqLLUiLajvhxk!ke0IOdTVqI6UKlMpTJlgZsHIOKwJWzGEkYGQOOwTscMdwGB7vho*eg2ZS8TyWrjpGA575DCI*f7CC58WtuAExhqXgsD!58dM*C27REgyW4BZL9axOCCdq!JT9ifgljT3w70vcEFxUJahBEdqVw6ShG*qzx8zf6M8kgk22U0*R9u9SEO6RSiJaLQX2SCWJr5UC9R6ppIGrpX7cLmukku9htVS5LFW734I8j8xe!5pTxYaei293toKR/results,2 22555,http://smilesschoolofdriving.co.uk,2 22556,http://engrandepompe.forumpersos.com,2 22557,http://smg-intranet,2 22558,http://www.dyslexiatutor.org.uk,2 22559,http://smartsecuredloans.co.uk,2 22560,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/DG_067923,2 22561,http://www.icjp.org.uk,2 22562,http://appledriving.users52.donhost.co.uk,2 22563,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZYujW7hS2wafv3PUB2CVYb9al9gQMzMM4co0Zpm9F9Rop3mC7qQ!iMtOoFBm6tumopvgCUWpjr2RrgYARrA8c6bnohnwd5hF23eea!FNIRLLdD32kuT0DoxOcFbjCDkl6MkWo0vHFzgoK1pIaJNn5i!wfiUFeTNlKqQKk8ZYSVASunsCJgxRTGAsamsF3AdjeMhuH!bPTgPZheaZHH0lWHaMAzH1Hk53dW8Dx7lDYoxjAXHPU3N376Z8HNWsLBEl5jqZ7UCeFEDZ!yv5E!pbEH*m1JG0aLqkQ1KkK7cpw0dEV*tpj5G*0ZRbDKduop2v5dCuMtUklEi6XQFqkk8aVSqN4ilTRwsdSPr8sSqeR9WCxVzkvV7regjkMPn30juO5fOyG*AWLJgQE_/results,2 22564,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_4011281.pdf,2 22565,http://smartdriveiow.co.uk,2 22566,http://energise2-0.com,2 22567,http://end-of-life.nottsinfoscript.co.uk,2 22568,http://www.nhsdudley.nhs.uk,2 22569,http://encyclopedia2.thefreedictionary.com,2 22570,http://encyclopedia.thefreedictionary.com,2 22571,http://smallsteps4life.direct.gov.uk/en/teachers/what-is-smallsteps4life.aspx,2 22572,http://smallsteps4life.direct.gov.uk/en/teachers/smallsteps4life-challenge/index.aspx,2 22573,http://smallsteps4life.direct.gov.uk/en/teachers/site/about-us.aspx,2 22574,http://www.bramjnet.com,2 22575,http://emvle.com,2 22576,http://emt.insureverything.com,2 22577,http://employmenttribunals.gov.uk,2 22578,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_197335,2 22579,http://employeeplatform,2 22580,http://www.sportactivensa.co.uk,2 22581,http://5812.easysearch.org.uk,2 22582,http://www.sporthoj.com,2 22583,http://emo-d-doh-illegaltobacco:8066,2 22584,http://emmanuelexeter.easysearch.org.uk,2 22585,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_196799,2 22586,http://www.sports-plan.com,2 22587,http://www.icl-ifa.co.uk,2 22588,http://www.jogtheweb.com,2 22589,http://slroc.6.forumer.com,2 22590,http://emigracia.start.bg,2 22591,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_197608.pdf,2 22592,http://emedia.rmit.edu.au,2 22593,http://www.praesidiumemployment.co.uk,2 22594,http://www.herefordshirehealthyschools.org.uk,2 22595,http://email15.secureserver.net,2 22596,http://www.love-driving.co.uk,2 22597,http://slhdmoneywise.co.uk,2 22598,http://www.wallaseydrivingschool.com,2 22599,http://email.pama.co.uk,2 22600,http://email.northern.ac.uk,2 22601,http://www.bradleys-schoolofmotoring.co.uk,2 22602,http://www.icoast.co.uk,2 22603,https://www.dwpe-services.direct.gov.uk/portal/page/portal/jsaol/lp,2 22604,http://www.smartmoneycreditunion.co.uk,1 22605,http://tandridge.2day.ws,1 22606,http://tameside.portal.s-cool.co.uk,1 22607,http://www.smartplayzone.co.uk,1 22608,http://www.smartpv.co.uk,1 22609,http://talktalk.myfreeforum.org,1 22610,http://talkparkinsons.blogspot.com,1 22611,http://talkmoneyblog.co.uk,1 22612,http://talkingjobs.net,1 22613,http://69.64.153.134,1 22614,http://www.smartrenting.co.uk,1 22615,http://www.smartsavings.org.uk,1 22616,http://www.smartsupplier.net,1 22617,http://talk.gagajoyjoy.com,1 22618,http://talismaclient,1 22619,http://www.smdriving.co.uk,1 22620,http://www.smhdriving.com,1 22621,http://talencentrum.bestelinks.nl,1 22622,http://talbotschoolassociation.easysearch.org.uk,1 22623,http://take-shape-share.fenc.org.uk,1 22624,http://taen.org.uk,1 22625,http://www.smiledrive.co.uk,1 22626,http://ta.forumup.org,1 22627,http://t4tinnitus.com,1 22628,http://t4.net.marjon.ac.uk,1 22629,http://www.smilesbt.co.uk,1 22630,http://t-machine.org,1 22631,http://szukaj.wp.pl,1 22632,http://sz0161.ev.mail.comcast.net,1 22633,http://sz0151.wc.mail.comcast.net,1 22634,http://sz0131.ev.mail.comcast.net,1 22635,http://sz0118.wc.mail.comcast.net,1 22636,http://sz0111.wc.mail.comcast.net,1 22637,http://sz0103.wc.mail.comcast.net,1 22638,http://sz0091.wc.mail.comcast.net,1 22639,http://sz0066.wc.mail.comcast.net,1 22640,http://sz0050.wc.mail.comcast.net,1 22641,http://sz0049.wc.mail.comcast.net,1 22642,http://sz0040.ev.mail.comcast.net,1 22643,http://sz0035.wc.mail.comcast.net,1 22644,http://sz0033.ev.mail.comcast.net,1 22645,http://systemdrive.co.uk,1 22646,http://sys.hybis.info,1 22647,http://sys-gn,1 22648,http://synergydriving.com,1 22649,http://syndication.innovate.direct.gov.uk/doc/article/DG_183754,1 22650,http://syndication.innovate.direct.gov.uk/articles/index/CrimeJusticeAndTheLaw/Counterterrorism,1 22651,http://symphony.westminster.gov.uk,1 22652,http://syfireweb,1 22653,http://syessr.easysearch.org.uk,1 22654,http://www.smithssom.co.uk,1 22655,http://sydenhamroadunderfives.org,1 22656,http://sydenham.org.uk,1 22657,http://syctheden.easysearch.org.uk,1 22658,http://sybournprimary.com,1 22659,http://sy4x4r.easysearch.org.uk,1 22660,http://sy.870buy.com,1 22661,http://www.smlc.org.uk,1 22662,http://swsh.easysearch.org.uk,1 22663,http://www.smmi.nu,1 22664,http://swn26,1 22665,http://switzerland.angloinfo.com,1 22666,http://swintongb.easysearch.org.uk,1 22667,http://swinny.net,1 22668,http://swindonlivingoptions.org.uk,1 22669,http://swindonconservatives.easysearch.org.uk,1 22670,http://swindon.info.pl,1 22671,http://swimwarriors.easysearch.org.uk,1 22672,http://swiftpass.co.uk,1 22673,http://swift.intra.bt.com,1 22674,http://swift,1 22675,http://swf.userplane.com,1 22676,http://sweett.academy0611.co.uk,1 22677,http://swebfat,1 22678,http://swbikers.pl,1 22679,http://swayvillagehall.easysearch.org.uk,1 22680,http://65.60.5.220,1 22681,http://swanagerailway.easysearch.org.uk,1 22682,http://swadelands.kent.sch.uk,1 22683,http://svrwebtest.havering-college.ac.uk,1 22684,http://svrshir223,1 22685,http://svr-gen266:6060,1 22686,http://65.55.85.23,1 22687,http://www.smsg.myschoolsite.net,1 22688,http://suze.theorytestpro.co.uk,1 22689,http://www.snaaponline.co.uk,1 22690,http://sutton.theorytestpro.co.uk,1 22691,http://sustainableallendalecic.easysearch.org.uk,1 22692,http://sust-it.net,1 22693,http://sussexcarbuyer.co.uk,1 22694,http://susankirkschoolofmotoring.co.uk,1 22695,http://surveys.mpa.gov.uk,1 22696,http://surveyors.haywater.co.uk,1 22697,http://www.snapcharity.org,1 22698,http://surreystarlets.easysearch.org.uk,1 22699,http://surreylibraries.theorytestpro.co.uk,1 22700,http://65.55.72.7,1 22701,http://www.sneinton.nottingham.sch.uk,1 22702,http://surc.easysearch.org.uk,1 22703,http://suprafootwear.bertramdev.com,1 22704,http://supporttestsecure.studentfinanceni.co.uk,1 22705,http://supporttestsecure.studentfinance.direct.gov.uk/protocol/1011/pages/ChangeOfCircumstanceOptions.xhtml,1 22706,http://www.snowballdrivingschool.co.uk,1 22707,http://support.u-xplore.com,1 22708,http://support.suitablecandidatesfranchise.com,1 22709,http://www.snowboardclub.co.uk,1 22710,http://support.plus.qinetiq.com,1 22711,http://support.leics.police.uk,1 22712,http://support.dsd.ro:5050,1 22713,http://support.datawind-s.com,1 22714,http://www.snowclearingsolutions.co.uk,1 22715,http://support.activseo.com,1 22716,http://superveloce.net,1 22717,http://superman.datakultur.com,1 22718,http://superdriver.co.uk,1 22719,http://sunshinecentre.org,1 22720,http://sunrise.org.uk,1 22721,http://sunhive.com,1 22722,http://sunderlandcouncil.com,1 22723,http://summitdrivingschool.co.uk,1 22724,http://summercroft.net,1 22725,http://summarizr.labs.eduserv.org.uk,1 22726,http://sullivan.saga.co.uk,1 22727,http://suitcaseensemble.easysearch.org.uk,1 22728,http://suffolktradingstandards.wordpress.com,1 22729,http://www.snpensionsgroup.com,1 22730,http://www.sns.hackney.sch.uk,1 22731,http://suffolk.testurl.co.uk,1 22732,http://www.soapforum.co.uk,1 22733,http://suffolk-carers.org.uk,1 22734,http://suebrayne.co.uk,1 22735,http://sue-steve-driving.co.uk,1 22736,http://www.social-sciences.brookes.ac.uk,1 22737,http://successwithsara.co.uk,1 22738,http://subsites,1 22739,http://subscriber.yourbulletins.com,1 22740,http://submissions.epetitions.direct.gov.uk/petitions/138,1 22741,http://submissions.epetitions.direct.gov.uk/,1 22742,http://subglasgow.com,1 22743,http://subaruklubas.com,1 22744,http://stwilfridscrawley.easysearch.org.uk,1 22745,http://stuweb.cms.gre.ac.uk,1 22746,http://stutteringhub.com,1 22747,http://stuhrling.eu,1 22748,http://studywiz.herschel.slough.sch.uk,1 22749,http://www.socialhousingexhibition.co.uk,1 22750,http://studymore.org.uk,1 22751,http://studyintheuk.tistory.com,1 22752,http://studyingeconomics.ac.uk,1 22753,http://65.55.72.55,1 22754,http://study.conted.ox.ac.uk,1 22755,http://studley-cottage-soap.co.uk,1 22756,http://65.55.40.87,1 22757,http://studera.nu,1 22758,http://www.societyofbiology.org,1 22759,http://studentweb.southgate.ac.uk,1 22760,http://www.sodc.com,1 22761,http://www.soe.org.uk,1 22762,http://studentstories.co.uk,1 22763,http://studentsp.centralsussex.ac.uk,1 22764,http://studentsavingcentral.co.uk,1 22765,http://students.worthing.ac.uk,1 22766,http://students.skema.edu,1 22767,http://www.sol-ve.co.uk,1 22768,http://students.jameswatt.ac.uk,1 22769,http://students.hkf.org.uk,1 22770,http://www.solar-technology.co.uk,1 22771,http://www.solarcellpanels.co.uk,1 22772,http://www.solarcentresuk.com,1 22773,http://www.solargadgetsinfo.com,1 22774,http://www.solarnavigator.net,1 22775,http://65.55.255.11,1 22776,http://www.solarnotts.co.uk,1 22777,http://www.solarpowerportal.co.uk,1 22778,http://studentfinance-yourfuture.direct.gov.uk/PR1,1 22779,http://www.solartwin.com,1 22780,http://studentfinance-yourfuture.direct.gov.uk/other-support.,1 22781,http://www.soldriving.co.uk,1 22782,http://www.soletlibre.com,1 22783,http://studentfinance-yourfuture.direct.gov.uk/fees,1 22784,http://www.solihull.nhs.uk,1 22785,http://www.solihullcaredirectory.co.uk,1 22786,http://studentfinance-yourfuture.direct.gov.uk/archives/18,1 22787,http://www.solihulldrivingschool.com,1 22788,http://studentdesktop.eteacher.pro,1 22789,http://www.solimantravel.com,1 22790,http://student.uwic.ac.uk,1 22791,http://student.myerscough.ac.uk,1 22792,http://www.soloplus.net,1 22793,http://student-loans.page.co.uk,1 22794,http://sttsevenoaks.easysearch.org.uk,1 22795,http://stsav.wordpress.com,1 22796,http://strood.2day.ws,1 22797,http://strongsignals.net,1 22798,http://www.solutionsfortheplanet.co.uk,1 22799,http://www.somax-driver-training.com,1 22800,http://strive2drive.biz,1 22801,http://www.somazone.com.au,1 22802,http://65.55.237.79,1 22803,http://streetsaheaddriving.com,1 22804,http://streets-ahead-som.co.uk,1 22805,http://64.4.56.183,1 22806,http://street-wise-s-o-m.org,1 22807,http://stratford.gov.uk,1 22808,http://strangelyperfect.tv,1 22809,http://stpetersrc.co.uk,1 22810,http://stpetersardingly.easysearch.org.uk,1 22811,http://stpaulsplaygroup.co.uk,1 22812,http://stowtingmontessori.easysearch.org.uk,1 22813,http://stortfordkickstart.org.uk,1 22814,http://www.somdiaryonline.com,1 22815,http://store.englandhockey.co.uk,1 22816,http://stopthetraffik.easysearch.org.uk,1 22817,http://stopnop.pl,1 22818,http://stoploansharks.direct.gov.uk/common-myths.html,1 22819,http://stopgap.easysearch.org.uk,1 22820,http://stopforabite.com,1 22821,http://stopcyberbullyingonguam.org,1 22822,http://stonetb.easysearch.org.uk,1 22823,http://stonescc.easysearch.org.uk,1 22824,http://stones.theorytestpro.co.uk,1 22825,http://stonehaventrailertrainingservices.co.uk,1 22826,http://stonehaven.2day.ws,1 22827,http://www.somerset-trf.com,1 22828,http://stoltworld,1 22829,http://stokeinside.corporate.stoke.gov.uk,1 22830,http://64.4.56.151,1 22831,http://stocksbridgetc.easysearch.org.uk,1 22832,http://stockportspartans.easysearch.org.uk,1 22833,http://stockportnetwork.com,1 22834,http://64.4.56.103,1 22835,http://www.somersetdaat.org.uk,1 22836,http://stnics.easysearch.org.uk,1 22837,http://stmichaelstaunton.easysearch.org.uk,1 22838,http://stmichaelsmalton.easysearch.org.uk,1 22839,http://stmdonningtonwood.easysearch.org.uk,1 22840,http://stmatthewschurch.easysearch.org.uk,1 22841,http://stmarysrisborough.easysearch.org.uk,1 22842,http://stmarysnortholt.easysearch.org.uk,1 22843,http://stmarysdunstable.easysearch.org.uk,1 22844,http://stmarysbergholt.easysearch.org.uk,1 22845,http://stmarksaberdeen.easysearch.org.uk,1 22846,http://stlukeshospiceplymouth.easysearch.org.uk,1 22847,http://stjtemerrow.easysearch.org.uk,1 22848,http://stjsttptfa.easysearch.org.uk,1 22849,http://stjosephscatholicprimaryschool.easysearch.org.uk,1 22850,http://stjohnwarley.easysearch.org.uk,1 22851,http://stjohnscekidderminster.easysearch.org.uk,1 22852,http://stjohnplessington.com,1 22853,http://stjbaptistsomersham.easysearch.org.uk,1 22854,http://www.somersetdap.org.uk,1 22855,http://sthelenwitton.org.uk,1 22856,http://sthelens-one.com,1 22857,http://stgmc.easysearch.org.uk,1 22858,http://stgilesschool.net,1 22859,http://stgeorges.icd-support.org.uk,1 22860,http://stgabrielsrcspta.easysearch.org.uk,1 22861,http://stewartsschoolofmotoring.co.uk,1 22862,http://64.4.2.111,1 22863,http://www.somersetsupport.co.uk,1 22864,http://stevepearce.theorytestpro.co.uk,1 22865,http://stevenageseacadets.easysearch.org.uk,1 22866,http://www.sommanfc.co.uk,1 22867,http://www.sonningcommonparishcouncil.org.uk,1 22868,http://stevecowedrivingschool.co.uk,1 22869,http://stevebroadley.theorytestpro.co.uk,1 22870,http://stevebeasant.mycouncillor.org.uk,1 22871,http://64.233.232.17,1 22872,http://stereoboard.com,1 22873,http://stepro.co.uk,1 22874,http://zenithed.livejournal.com,1 22875,http://stephrowdendesigns.blogspot.com,1 22876,http://stephenson.wellatcollege.co.uk,1 22877,http://stephenolliver.neotericuk.co.uk,1 22878,http://stephen-driving.co.uk,1 22879,http://stem-res.tribalhosting.net,1 22880,http://steforestgate.easysearch.org.uk,1 22881,http://stdavidsprimarywales.easysearch.org.uk,1 22882,http://std-codes.com,1 22883,http://stcuthbertscarlisle.easysearch.org.uk,1 22884,http://stccblackpool.easysearch.org.uk,1 22885,http://stcadfantywyn.easysearch.org.uk,1 22886,http://stbrpcc.easysearch.org.uk,1 22887,http://stbedesscouts.easysearch.org.uk,1 22888,http://www.sophiesdrivingschool.co.uk,1 22889,http://stayathomesolutions.co.uk,1 22890,http://staveleybrownies.easysearch.org.uk,1 22891,http://staugustineoccb.easysearch.org.uk,1 22892,http://stats.berr.gov.uk,1 22893,http://stationcarscaterham.com,1 22894,http://62cms.tda.gov.uk,1 22895,http://62.60.137.88,1 22896,http://stathishaikalis.blogspot.com,1 22897,http://www.sorgenfrei24.com,1 22898,http://www.sortiesdechiens.com,1 22899,http://www.sosplumbing.co.uk,1 22900,http://www.soundfield.info,1 22901,http://www.soundservice.co.uk,1 22902,http://www.south-lanarkshire-college.ac.uk,1 22903,http://start.msn.iplay.com,1 22904,http://start.movs.eu,1 22905,http://www.south.barnfield.ac.uk,1 22906,http://start.incognito.commanigy.com,1 22907,http://start.ilsc.org,1 22908,http://www.southalltravel.co.uk,1 22909,http://www.southamdrive.co.uk,1 22910,http://stantoninpeaksch.easysearch.org.uk,1 22911,http://stanhoe.org,1 22912,http://stanfordproperty.co.uk,1 22913,http://standrewsashburton.2day.ws,1 22914,http://standhigh.net,1 22915,http://standardmotorclub.org.uk,1 22916,http://standardlifehealthcare.medi-health.info,1 22917,http://standardclub.proboards.com,1 22918,http://zh.870buy.com,1 22919,http://stanbridgeps.easysearch.org.uk,1 22920,http://stamps.ntu.ac.uk,1 22921,http://stamp.easysearch.org.uk,1 22922,http://stamfordgreenprimary.easysearch.org.uk,1 22923,http://stallarddrivingschool.co.uk,1 22924,http://stalbans.gov.uk,1 22925,http://stagnesdn.easysearch.org.uk,1 22926,http://staging.walthamforest.gov.uk,1 22927,http://staging.uni.mdx.ac.uk,1 22928,http://staging.stannahstairlifts.co.uk,1 22929,http://staging.scouts.org.uk,1 22930,http://staging.joboti.com,1 22931,http://staging.informedprepared.eu,1 22932,http://staging.cdtpartners.com,1 22933,http://staging.cc.cornwallonline.net,1 22934,http://staging.alg.pearson.com,1 22935,http://staging-wyp-intranet,1 22936,http://staging-www.palgrave-journals.com,1 22937,http://staging-www.nature.com,1 22938,http://stagestruck.easysearch.org.uk,1 22939,http://stage.nationwideeducation.co.uk,1 22940,http://stage.hattrick.org,1 22941,http://staffzone,1 22942,http://www.southampton4learners.net,1 22943,http://staffordshire.futures4me.co.uk,1 22944,http://staffneticm.gloscc.gov.uk,1 22945,http://staffnet.valeofglamorgan.gov.uk,1 22946,http://staffnet.internal.swansea.gov.uk,1 22947,http://www.southamptoncounselling.org,1 22948,http://www.southcentralambulance.nhs.uk,1 22949,http://staffinfo.wakefield.ac.uk,1 22950,http://staffiezone.boardonly.com,1 22951,http://staffdevelopment.london.ac.uk,1 22952,http://staffcentral.brighton.ac.uk,1 22953,http://staff.ucreative.ac.uk,1 22954,http://staff.kingston.ac.uk,1 22955,http://staff.keele.ac.uk,1 22956,http://staff.ednet.ns.ca,1 22957,http://www.southderbyshirehomefinder.org.uk,1 22958,http://staff.cumbria.ac.uk,1 22959,http://www.southdowns.ac.uk,1 22960,http://st-josephs-pta.blogspot.com,1 22961,http://st-bbapp1.uel.ac.uk,1 22962,http://sst.contii.com,1 22963,http://sshls-dev.port.ac.uk,1 22964,http://www.southend.nhs.uk,1 22965,http://sscdurham.co.uk,1 22966,http://www.southendairport.net,1 22967,http://www.southendbikeathon.co.uk,1 22968,http://10.0.100.1,1 22969,http://www.southernkitcars.com,1 22970,http://www.southernplanning.co.uk,1 22971,http://www.southfarnborough-inf.hants.sch.uk,1 22972,http://sptx,1 22973,http://spstrainingservices.com,1 22974,http://spsrc.easysearch.org.uk,1 22975,http://62.189.201.148,1 22976,http://spslaw.co.uk,1 22977,http://spshes,1 22978,http://sps2ksrv.towerhamlets.gov.uk,1 22979,http://sps-na.delphiauto.net,1 22980,http://spruce.westnotts.ac.uk,1 22981,http://springwell-online.co.uk,1 22982,http://springerrescuescotland.easysearch.org.uk,1 22983,http://springbokgarage.co.uk,1 22984,http://springboard.visav.co.uk,1 22985,http://spring.informagiovanionline.it,1 22986,http://sppbird.rbs.us,1 22987,http://sportac.easysearch.org.uk,1 22988,http://www.southfleetpc.kentparishes.gov.uk,1 22989,http://spinabifida-ni.org,1 22990,http://spike,1 22991,http://spider.artemis,1 22992,http://spider,1 22993,http://spf13.com,1 22994,http://www.southgloscab.org.uk,1 22995,http://spelthorneaccessnow.easysearch.org.uk,1 22996,http://www.southgrove.waltham.sch.uk,1 22997,http://spelnet,1 22998,http://speedtouch.lan,1 22999,http://speed.sulzer.com,1 23000,http://specialistminiforums.yuku.com,1 23001,http://spdriving.theorytestpro.co.uk,1 23002,http://www.southnorthantslabour.com,1 23003,http://sparkcreativegroupltd.com,1 23004,http://spanish-number-plates.com,1 23005,http://spamlinks.net,1 23006,http://spacelist.org,1 23007,http://www.southsideschoolofmotoring.co.uk,1 23008,http://sp-provider.oxfordcc.co.uk,1 23009,http://southwoodinfants.easysearch.org.uk,1 23010,http://southwest.sovereign.org.uk,1 23011,http://www.southtees.nhs.uk,1 23012,http://southmoltonsom.theorytestpro.co.uk,1 23013,http://southkesteven.cabadvice.pageperfection.co.uk,1 23014,http://southessex.ac.uk,1 23015,http://southernwebconstruction.co.uk,1 23016,http://www.southtynside.info,1 23017,http://southbankwomenscentre.easysearch.org.uk,1 23018,http://southaquitaine.angloinfo.com,1 23019,http://61727.theorytestpro.co.uk,1 23020,http://southampton-driving-lessons.com,1 23021,http://southamdrive.co.uk,1 23022,http://sourcedirectory.org.uk,1 23023,http://www.southwalesvolvos.com,1 23024,http://soundasapound.weebly.com,1 23025,http://sotland.pl,1 23026,http://sorce,1 23027,http://soprov.it,1 23028,http://sophieryan.easysearch.org.uk,1 23029,http://somer-moss:500,1 23030,http://www.southwestburnley.surestart.org,1 23031,http://solihull-sustain.org.uk,1 23032,http://solicitorsupontyne.co.uk,1 23033,http://solentdrivinglessons.co.uk,1 23034,http://5thgeardrivingacademy.co.uk,1 23035,http://solcaraweb,1 23036,http://solar.skyweb.co.uk,1 23037,http://sohmos001,1 23038,http://softuk.easysearch.org.uk,1 23039,http://socservweb,1 23040,http://www.southwestessexcarers.co.uk,1 23041,http://10.0.10.2,1 23042,http://socialcarebulletin.dh.gov.uk,1 23043,http://social-anxiety-community.org,1 23044,http://snowclearingsolutions.co.uk,1 23045,http://sneintoncofeprimaryschool.weebly.com,1 23046,http://www.southyorks.101.gov.uk,1 23047,http://www.sova.org.uk,1 23048,http://www.sovereign.org.uk,1 23049,http://www.sovereignfinance.org,1 23050,http://www.spacecadets.com,1 23051,http://www.spainexpat.com,1 23052,http://www.spalding4u.co.uk,1 23053,http://www.spaldingdrivingschool.co.uk,1 23054,http://www.spareroom-online.co.uk,1 23055,http://www.sparklemousse.com,1 23056,http://www.sparksdirect.co.uk,1 23057,http://www.speakeasy-mag.com,1 23058,http://www.specialeducationalneeds.co.uk,1 23059,http://www.specialkidsintheuk.org,1 23060,http://www.specialmatters.co.uk,1 23061,http://www.spectrumdrivertraining.co.uk,1 23062,http://www.spectrumhousing.co.uk,1 23063,http://www.speedorsafety.com,1 23064,http://www.speedpass.co.uk,1 23065,http://www.speedsolving.com,1 23066,http://www.speedtile.net,1 23067,http://www.spelduk.co.uk,1 23068,http://www.spenergynetworks.co.uk,1 23069,http://www.spiegel.de,1 23070,http://www.spig.clara.net,1 23071,http://www.spired.com,1 23072,http://www.spiritassociates.org,1 23073,http://www.spiritrider.biz,1 23074,http://www.spoke.com,1 23075,http://www.spolem.co.uk,1 23076,http://smtp3.cali.co.uk,1 23077,http://smtp.dynamis.co.uk,1 23078,http://smtgblue.exblog.jp,1 23079,http://smsstudenttest,1 23080,http://smithssom.co.uk,1 23081,http://smira.easysearch.org.uk,1 23082,http://smf.thezenagency.co.uk,1 23083,http://5i01.com,1 23084,http://smartlearner.co.uk,1 23085,http://smartiesbookkeeping.co.uk,1 23086,http://smartenergysolutions.co.uk,1 23087,http://www.sport-touring.net,1 23088,http://smartdriving.co.uk,1 23089,http://smart2drive.theorytestpro.co.uk,1 23090,http://smardenheritagecentre.synthasite.com,1 23091,http://smallsteps4life.direct.gov.uk/wl/index.aspx,1 23092,http://59thnewchapelsg.easysearch.org.uk,1 23093,http://smallsteps4life.direct.gov.uk/en/secondary/your-health-challenge/challenge-finder.aspx,1 23094,http://www.sport.ox.ac.uk,1 23095,http://smallsteps4life.direct.gov.uk/en/secondary/3-ways/quiz.aspx,1 23096,http://smallsteps4life.direct.gov.uk/en/secondary/3-ways/healthy-eating.aspx,1 23097,http://smallsteps4life.direct.gov.uk/en/primary/3-ways/getting-active.aspx,1 23098,http://smallsteps4life.direct.gov.uk/en/primary/3-ways/feeling-good-inside.aspx,1 23099,http://www.sportifchalfont.citroen.co.uk,1 23100,http://sm.escapecommittee.com,1 23101,http://www.sportscarrepair.co.uk,1 23102,http://slrk.phpbb2.se,1 23103,http://www.sportsmassagetherapy.co.uk,1 23104,http://slough.gov.uk,1 23105,http://www.spot-ondrivingschool.co.uk,1 23106,http://slm.theorytestpro.co.uk,1 23107,http://slipstreampass.com,1 23108,http://sleafordtownrunners.easysearch.org.uk,1 23109,http://slcvle.slc.ac.uk,1 23110,http://slaveboys.co.uk,1 23111,http://skybadger.tumblr.com,1 23112,http://skollink.se,1 23113,http://skippersguide.wordpress.com,1 23114,http://skillsonwheels.co.uk,1 23115,http://skillsforfamilies.excellencegateway.org.uk,1 23116,http://skillsdrivingschool.com,1 23117,http://skillnet.visarc48.co.uk,1 23118,http://skillcms.ds2620.dedicated.turbodns.co.uk,1 23119,http://skill4life.moonfruit.com,1 23120,http://skdcintranet,1 23121,http://skba-intraapp,1 23122,http://sjca.easysearch.org.uk,1 23123,http://www.sppa.gov.uk,1 23124,http://www.sppowersystems.co.uk,1 23125,http://www.spraklankportalen.se,1 23126,http://www.springboardnottingham.co.uk,1 23127,http://sitekarma.com,1 23128,http://www.springboardtv.com,1 23129,http://www.springboardumbrella.co.uk,1 23130,http://sitebuilder.plesk.n-yorks-schools.net,1 23131,http://www.springdaleschool.org.uk,1 23132,http://site220.theclubuk.com,1 23133,http://53.253.253.135,1 23134,http://site.llantwitschool.org.uk,1 23135,http://sit-umbraco,1 23136,http://sirhodes.theorytestpro.co.uk,1 23137,http://simplythebestdrivingschool.co.uk,1 23138,http://simplifymypension.com,1 23139,http://www.springfielddriving.co.uk,1 23140,http://simpl-e,1 23141,http://simonwilliams.theorytestpro.co.uk,1 23142,http://simonsmithdrivingschool.com,1 23143,http://simonhughes.independent.gov.uk,1 23144,http://simanndriving.co.uk,1 23145,http://silvesterdrivingschool.co.uk,1 23146,http://silverservicesecretaries.com,1 23147,http://silver60.com,1 23148,http://sihotadrivingschool.co.uk,1 23149,http://ziggytv.toolbaroptions.com,1 23150,http://signit.easysearch.org.uk,1 23151,http://signamic.co.uk,1 23152,http://signam.co.uk,1 23153,http://sighthoundsonline.easysearch.org.uk,1 23154,http://sidipforge.ch,1 23155,http://sibfordgowerpta.easysearch.org.uk,1 23156,http://siauresanglija.lt,1 23157,http://sianreis.easysearch.org.uk,1 23158,http://sia.homeoffice.gov.uk,1 23159,http://www.springparknw.co.uk,1 23160,http://shsbpa.easysearch.org.uk,1 23161,http://shropshire-west.net,1 23162,http://shrewsburycathedral.easysearch.org.uk,1 23163,http://shqkp03s.syp.southyorks.police.uk,1 23164,http://10.0.1.53,1 23165,http://www.sprlaw.co.uk,1 23166,http://shortholdtenancy.com,1 23167,http://shorecliffe-training.com,1 23168,http://shopping.yahoo.com,1 23169,http://shop.lagondola.it,1 23170,http://shop.devon.gov.uk,1 23171,http://shop.belvoirinteriors.com,1 23172,http://sholao.hubpages.com,1 23173,http://shoevomit.com,1 23174,http://50plusworks.com,1 23175,http://www.sprokkel.be,1 23176,http://shirleyayresconsulting.co.uk,1 23177,http://shiretrust.easysearch.org.uk,1 23178,http://www.spsw.ox.ac.uk,1 23179,http://shiftpatterncentral.com,1 23180,http://shift.ms.,1 23181,http://sheu.org.uk,1 23182,http://sherston.theorytestpro.co.uk,1 23183,http://sheriffhales.2day.ws,1 23184,http://sherburngc.easysearch.org.uk,1 23185,http://shenfieldstmarys.easysearch.org.uk,1 23186,http://shelthorpeschool.com,1 23187,http://www.spt.co.uk,1 23188,http://sheffieldunitedcc.easysearch.org.uk,1 23189,http://sheffieldcc.easysearch.org.uk,1 23190,http://sheffieldcats.easysearch.org.uk,1 23191,http://sheffield24.co.uk,1 23192,http://sheffield.interactive.u-explore.com,1 23193,http://shef.ac.uk,1 23194,http://www.spub.co.uk,1 23195,http://shcp.easysearch.org.uk,1 23196,http://shcgb.easysearch.org.uk,1 23197,http://shawnboatin1.hubpages.com,1 23198,http://shawbirch.net,1 23199,http://shaun-evans-pask.suite101.com,1 23200,http://sharp.direct.gov.uk/testsratings/suomy-vandal,1 23201,http://sharp.direct.gov.uk/testsratings/shoei-xr-1100,1 23202,http://sharp.direct.gov.uk/testsratings/shark-rsr2,1 23203,http://sharp.direct.gov.uk/testsratings/schuberth-c3,1 23204,http://sharp.direct.gov.uk/testsratings/marushin-rs1-carbon,1 23205,http://sharp.direct.gov.uk/testsratings/hjc-fs-max,1 23206,http://sharp.direct.gov.uk/testsratings/hjc-fg-15,1 23207,http://sharp.direct.gov.uk/testsratings/harley-davidson-laguna-ii,1 23208,http://sharp.direct.gov.uk/testsratings/grex-rf2,1 23209,http://sharp.direct.gov.uk/testsratings/caberg-konda,1 23210,http://sharp.direct.gov.uk/testsratings/box-bz1,1 23211,http://sharp.direct.gov.uk/testsratings/box-bx2,1 23212,http://sharp.direct.gov.uk/testsratings/bell-m5x,1 23213,http://sharp.direct.gov.uk/testsratings/arai-rx-7-gp,1 23214,http://sharp.direct.gov.uk/testsratings/agv-stealth-sv,1 23215,http://sharp.direct.gov.uk/testsratings/agv-s4-sv,1 23216,http://sharp.direct.gov.uk/testsratings/agv-airtech,1 23217,http://sharp.direct.gov.uk/node/30,1 23218,http://sharp.direct.gov.uk/node/194,1 23219,http://4you2.org.uk,1 23220,http://www.spyfu.com,1 23221,http://www.sqa.org.uk,1 23222,http://sharp.direct.gov.uk/index.php,1 23223,http://www.sqaacademy.org.uk,1 23224,http://www.square-bear.co.uk,1 23225,http://sharp.direct.gov.uk/content/ratings,1 23226,http://4wheelz.co.uk,1 23227,http://www.squawkfox.com,1 23228,http://sharp.direct.gov.uk/content/get-right-fit,1 23229,http://www.squireschoolofmotoring.co.uk,1 23230,"http://sharp.direct.gov.uk/compareview/257,294,330",1 23231,"http://sharp.direct.gov.uk/compareview/161,334,163",1 23232,http://sharp.direct.gov.uk/about-sharp/,1 23233,http://www.src.gla.ac.uk,1 23234,http://sharoncox.theorytestpro.co.uk,1 23235,http://www.srt-motaquip.com,1 23236,http://10.0.0.8:15871,1 23237,http://sharepoint3.prioryacademies.co.uk,1 23238,http://sharepoint2010,1 23239,http://www.ssasinfants.herts.sch.uk,1 23240,http://sharepoint.woxford.net,1 23241,http://sharepoint.forest-heath.local,1 23242,http://www.sscov.co.uk,1 23243,http://shareit,1 23244,http://shared.westmidlands.nhs.uk,1 23245,http://shareapp01vm,1 23246,http://share.intranet,1 23247,http://www.ssdc50.org.uk,1 23248,http://share,1 23249,http://shamrockdrivingschool.theorytestpro.co.uk,1 23250,http://shameemsdrivingschool.co.uk,1 23251,http://sh45inta,1 23252,http://sgpdriving.co.uk,1 23253,http://sg.mc774.mail.yahoo.com,1 23254,http://sg.mc1907.mail.yahoo.com,1 23255,http://sg.images.search.yahoo.com,1 23256,http://www.ssha.co.uk,1 23257,http://www.ssiacymru.org.uk,1 23258,http://sfp.easysearch.org.uk,1 23259,http://sfointranet,1 23260,http://www.ssmdrivingschool.com,1 23261,http://sf1319219005.site-fusion.co.uk,1 23262,http://sf.tapuz.co.il,1 23263,http://sf.easysearch.org.uk,1 23264,http://www.sspa.it,1 23265,http://sevenoaks.gov.uk,1 23266,http://seurat.bradford.gov.uk,1 23267,http://settrington.2day.ws,1 23268,http://setiathome.berkeley.edu,1 23269,http://sessions.searchpw.com,1 23270,http://www.ssrp.co.uk,1 23271,http://www.st-andrews-worsley.salford.sch.uk,1 23272,http://4travel.jp,1 23273,http://servicedesk:9750,1 23274,http://servicedesk.bcc.lan,1 23275,http://servicedesk,1 23276,http://server9.islonline.net,1 23277,http://server2,1 23278,http://server1.pla.co.uk,1 23279,http://server.ffn.local,1 23280,http://server,1 23281,http://www.st-annes-jun.bristol.sch.uk,1 23282,http://www.st-annesrc.derbyshire.sch.uk,1 23283,http://www.st-antonys.com,1 23284,http://sentencing.cjsonline.gov.uk,1 23285,http://www.st-augustines.lancs.sch.uk,1 23286,http://seniorcarepeople.co.uk,1 23287,http://www.st-augustinewebster.n-lincs.sch.uk,1 23288,http://sendcomment.com,1 23289,http://semaphore.kent.gov.uk,1 23290,http://sellmytoyota.net,1 23291,http://sellmycarberkshire.com,1 23292,http://sellcarlondon.co.uk,1 23293,http://selfbuildselfhelp.com,1 23294,http://seftoncab.org.uk,1 23295,http://www.st-birinus-school.org.uk,1 23296,http://see-stage.leeds.ac.uk,1 23297,http://sedsh07.sedsh.gov.uk,1 23298,http://secure2.photobox.com,1 23299,http://secure.motorjunction.com,1 23300,http://secure.goldengateshousing.org.uk,1 23301,http://secure.alacra.com,1 23302,http://seatondelaval.2day.ws,1 23303,http://searchwithsum41.swagbucks.com,1 23304,http://searchwithshinedown.swagbucks.com,1 23305,http://4thnr.easysearch.org.uk,1 23306,http://searchwithmatchboxtwenty.swagbucks.com,1 23307,http://searchwithmaroon5.swagbucks.com,1 23308,http://searchup.org,1 23309,http://www.st-edwards.derbyshire.sch.uk,1 23310,http://www.st-georges.lancsngfl.ac.uk,1 23311,http://www.st-ignatius.surrey.sch.uk,1 23312,http://searchsitesonline.com,1 23313,http://www.st-james-less.lancsngfl.ac.uk,1 23314,http://searchforresult.com,1 23315,http://searchepic.appspot.com,1 23316,http://www.st-john-vianney.blackpool.sch.uk,1 23317,http://www.st-leonards-pri.lancs.sch.uk,1 23318,http://search50.info.com,1 23319,http://www.st-lukes.leics.sch.uk,1 23320,http://search44.info.com,1 23321,http://www.st-lukes.notts.sch.uk,1 23322,http://4thknottingleyguides.easysearch.org.uk,1 23323,http://search38.info.com,1 23324,http://search3.incredimail.com,1 23325,http://search3.babylon.com,1 23326,http://www.st-marksschool.co.uk,1 23327,http://www.st-marys.lewisham.sch.uk,1 23328,http://www.st-maryshigh.derbyshire.sch.uk,1 23329,http://search22.info.com,1 23330,http://www.st-maryshigh.wigan.sch.uk,1 23331,http://www.st-michaels.notts.sch.uk,1 23332,http://www.st-patricks.wilts.sch.uk,1 23333,http://search.zoyco.com,1 23334,http://search.yam.com,1 23335,http://www.st-petersschool.co.uk,1 23336,http://www.st-richards.lancs.sch.uk,1 23337,http://www.st-thomasmore.norfolk.sch.uk,1 23338,http://search.us.com,1 23339,http://4school4jobs4life.co.uk,1 23340,http://www.stacs.org,1 23341,http://www.staffnet.cotswold.gov.uk,1 23342,http://search.treasuretrooper.com,1 23343,http://search.toolbarhome.com,1 23344,http://www.staffordandco.co.uk,1 23345,http://search.teenee.org,1 23346,http://www.staffordandstonetn.org.uk,1 23347,http://www.staffordforum.com,1 23348,http://www.staffordleys.leics.sch.uk,1 23349,http://www.staffordworks.co.uk,1 23350,http://www.staffspf.org.uk,1 23351,http://search.similarweb.com,1 23352,http://www.staffsstem.co.uk,1 23353,http://www.staglanemiddle.ik.org,1 23354,http://www.stah.org,1 23355,http://www.stainesprep.co.uk,1 23356,http://search.sentencingcouncil.judiciary.gov.uk,1 23357,http://search.rochdale.gov.uk,1 23358,http://search.redbridge.gov.uk,1 23359,http://www.stalbansprimary.org.uk,1 23360,http://www.staljubljana.com,1 23361,http://www.staloysius.org,1 23362,http://search.nottinghamshire.gov.uk,1 23363,http://search.netmile.co.jp,1 23364,http://search.nethouseprices.com,1 23365,http://www.standardmotorclubnw.co.uk,1 23366,http://www.standrewscambridge.co.uk,1 23367,http://www.stanthonyofpadua.co.uk,1 23368,http://search.lancashire.gov.uk,1 23369,http://www.stanwellroadsurgery.co.uk,1 23370,http://search.kingstoncommunications.com,1 23371,http://4dyslexics.com,1 23372,http://www.star-network.org.uk,1 23373,http://search.k9webprotection.com,1 23374,http://46thgloucesterscouts.easysearch.org.uk,1 23375,http://search.jumpto.com,1 23376,http://www.starmoauto.co.uk,1 23377,http://search.incredibar.com,1 23378,http://www.start-page.co.uk,1 23379,http://www.start2finishsom.co.uk,1 23380,http://46.137.93.192,1 23381,http://search.huntingdonshire.gov.uk,1 23382,http://www.startdrivingautomatic.co.uk,1 23383,http://www.startinbusiness.co.uk,1 23384,http://www.statcrux.co.uk,1 23385,http://www.state-pension.com,1 23386,http://www.statesecondpension.com,1 23387,http://search.gobest.co.kr,1 23388,http://www.statewatch.org,1 23389,http://search.gbg.bg,1 23390,http://www.statistics.gov.my,1 23391,http://www.staugustinesprimary.com,1 23392,http://search.findlaw.co.uk,1 23393,http://www.staysafedriving.co.uk,1 23394,http://www.staywimi.com,1 23395,http://www.stbarnabas.co.uk,1 23396,http://www.stbedewinchester.co.uk,1 23397,http://www.stcatherinesgracemount.ik.org,1 23398,http://www.stchris.co.uk,1 23399,http://www.stdavids.sceschools.com,1 23400,http://www.stdominicspriory.co.uk,1 23401,http://www.steabers.com,1 23402,http://www.steam-museum.org.uk,1 23403,http://search.carrot2.org,1 23404,http://search.ca.msn.com,1 23405,http://www.steering2success.com,1 23406,http://46.105.126.209,1 23407,http://search.bracknell-forest.gov.uk,1 23408,http://search.bpath.com,1 23409,http://search.birmingham.gov.uk,1 23410,http://search.benefitbar.com,1 23411,http://search.bedfordshire.gov.uk,1 23412,http://www.steiadrivingschool.co.uk,1 23413,http://www.stemnortheast.co.uk,1 23414,http://search.b00kmarks.com,1 23415,http://www.step1.co.uk,1 23416,http://search.auone.jp,1 23417,http://search.atkinsglobal.com,1 23418,http://www.stephenbrooksequine.co.uk,1 23419,http://www.stephenpreston1.org,1 23420,http://44thnorwichscouts.easysearch.org.uk,1 23421,http://search.aol.se,1 23422,http://www.stephenroweopticians.co.uk,1 23423,http://search.aol.nl,1 23424,http://search.aol.it,1 23425,http://www.stephens-son.co.uk,1 23426,http://search.aol.hk,1 23427,http://search.aol.com.mx,1 23428,http://search.aol.com.ar,1 23429,http://www.stephentimms.org.uk,1 23430,http://www.steppingstones.childrencentre.org,1 23431,http://www.steritech.co.uk,1 23432,http://search.anygator.com,1 23433,http://www.sterling-ind.com,1 23434,http://www.sterlingeffort.com,1 23435,http://www.sterlingscott.co.uk,1 23436,http://search-cube.com,1 23437,http://sealionsc.easysearch.org.uk,1 23438,http://sealfamilytree.co.uk,1 23439,http://se.yhs4.search.yahoo.com,1 23440,http://se-intranet,1 23441,http://sdf.easysearch.org.uk,1 23442,http://sdcrn01.ad.uk-retail.corpintra.net,1 23443,http://www.stevebargnadrivingtuition.co.uk,1 23444,http://scwad.org.uk,1 23445,http://scunthorpe.infolinia.org,1 23446,http://sculptor:8081,1 23447,http://www.stevebishopdrivingtuition.co.uk,1 23448,http://screenacademyscotland.ac.uk,1 23449,http://scream.co.uk,1 23450,http://scpreview.studentcalculator.org.uk,1 23451,http://scottpovey.easysearch.org.uk,1 23452,http://www.steveframpton.me.uk,1 23453,http://scottishmc.easysearch.org.uk,1 23454,http://scottishfencing.easysearch.org.uk,1 23455,http://www.stevegibbonsschoolofmotoring.net,1 23456,http://www.steveharrissom.co.uk,1 23457,http://scotland-jobs.page.co.uk,1 23458,http://scotetrade.com,1 23459,http://scormprod.fronter.com,1 23460,http://scnintranetdev.stockport.gov.uk,1 23461,http://sciroccoregisterforum.co.uk,1 23462,http://science.malmesbury.wilts.sch.uk,1 23463,http://sci.rutgers.edu,1 23464,http://www.stevehoffman.tv,1 23465,http://schoolsonline.britishcouncil.org,1 23466,http://schoolsfinder.direct.gov.uk/town/Knole/Somerset/,1 23467,http://schoolsfinder.direct.gov.uk/town/Cirencester/Gloucestershire/,1 23468,http://schoolsfinder.direct.gov.uk/town/Broughton/Buckinghamshire/,1 23469,http://www.stevehuntdrivinginstructor.co.uk,1 23470,http://schoolsfinder.direct.gov.uk/search,1 23471,http://www.stevenage-driving-tuition.co.uk,1 23472,http://www.stevenagecab.org.uk,1 23473,http://schoolsfinder.direct.gov.uk/la/WORCESTERSHIRE/,1 23474,http://schoolsfinder.direct.gov.uk/la/Wiltshire/,1 23475,http://schoolsfinder.direct.gov.uk/la/WARRINGTON/,1 23476,http://schoolsfinder.direct.gov.uk/la/Waltham-Forest/,1 23477,http://schoolsfinder.direct.gov.uk/la/Torfaen/,1 23478,http://schoolsfinder.direct.gov.uk/la/Swansea/,1 23479,http://schoolsfinder.direct.gov.uk/la/SUNDERLAND/,1 23480,http://schoolsfinder.direct.gov.uk/la/St.-Helens/,1 23481,http://www.stevenagehomes.org.uk,1 23482,http://www.stevendavies001.co.uk,1 23483,http://schoolsfinder.direct.gov.uk/la/Solihull/,1 23484,http://schoolsfinder.direct.gov.uk/la/SANDWELL/,1 23485,http://schoolsfinder.direct.gov.uk/la/Richmond-upon-Thames/,1 23486,http://schoolsfinder.direct.gov.uk/la/Plymouth/,1 23487,http://schoolsfinder.direct.gov.uk/la/Peterborough/,1 23488,http://schoolsfinder.direct.gov.uk/la/Oxfordshire/,1 23489,http://schoolsfinder.direct.gov.uk/la/Nottinghamshire/,1 23490,http://schoolsfinder.direct.gov.uk/la/Nottingham/,1 23491,http://schoolsfinder.direct.gov.uk/la/Liverpool/,1 23492,http://schoolsfinder.direct.gov.uk/la/Leicestershire/,1 23493,http://schoolsfinder.direct.gov.uk/la/Leeds/,1 23494,http://schoolsfinder.direct.gov.uk/la/Knowsley/,1 23495,http://schoolsfinder.direct.gov.uk/la/Kirklees/,1 23496,http://schoolsfinder.direct.gov.uk/la/Kensington-and-Chelsea/,1 23497,http://schoolsfinder.direct.gov.uk/la/Harrow/,1 23498,http://schoolsfinder.direct.gov.uk/la/Hackney/,1 23499,http://schoolsfinder.direct.gov.uk/la/Guernsey-Offshore-Establishments/,1 23500,http://schoolsfinder.direct.gov.uk/la/East-Riding-of-Yorkshire/,1 23501,http://schoolsfinder.direct.gov.uk/la/Ealing/,1 23502,http://schoolsfinder.direct.gov.uk/la/Dudley/,1 23503,http://schoolsfinder.direct.gov.uk/la/Devon/,1 23504,http://schoolsfinder.direct.gov.uk/la/Cumbria/,1 23505,http://schoolsfinder.direct.gov.uk/la/Cornwall/,1 23506,http://schoolsfinder.direct.gov.uk/la/Cheshire-West-and-Chester/la/Cheshire-West-and-Chester//la/Cheshire-West-and-Chester//la/Cheshire-West-and-Chester//la/Cheshire-West-and-Chester//,1 23507,http://schoolsfinder.direct.gov.uk/la/Cheshire-West-and-Chester/la/Cheshire-West-and-Chester//,1 23508,http://www.stevenson.ac.uk,1 23509,http://schoolsfinder.direct.gov.uk/la/Central-Bedfordshire/,1 23510,http://schoolsfinder.direct.gov.uk/la/Bury/,1 23511,http://schoolsfinder.direct.gov.uk/la/Brighton-and-Hove/,1 23512,http://schoolsfinder.direct.gov.uk/la/Bournemouth/,1 23513,http://schoolsfinder.direct.gov.uk/download-help/,1 23514,http://schoolsfinder.direct.gov.uk/copyright/,1 23515,http://schoolsfinder.direct.gov.uk/and,1 23516,http://schoolsfinder.direct.gov.uk/9388004/overview/,1 23517,http://schoolsfinder.direct.gov.uk/9386030/overview/,1 23518,http://schoolsfinder.direct.gov.uk/9384606/overview/,1 23519,http://schoolsfinder.direct.gov.uk/9384106/school-profile/,1 23520,http://schoolsfinder.direct.gov.uk/9384001/overview/,1 23521,http://schoolsfinder.direct.gov.uk/9383340/school-profile/,1 23522,http://schoolsfinder.direct.gov.uk/9383062/overview/,1 23523,http://schoolsfinder.direct.gov.uk/9382250/school-profile/,1 23524,http://schoolsfinder.direct.gov.uk/9382244/overview/,1 23525,http://schoolsfinder.direct.gov.uk/9382201/overview/,1 23526,http://schoolsfinder.direct.gov.uk/9374802/school-profile/,1 23527,http://schoolsfinder.direct.gov.uk/9373594/school-profile/,1 23528,http://schoolsfinder.direct.gov.uk/9372605/school-profile/,1 23529,http://schoolsfinder.direct.gov.uk/9372083/overview/,1 23530,http://schoolsfinder.direct.gov.uk/9365412/school-profile/,1 23531,http://schoolsfinder.direct.gov.uk/9365412/overview,1 23532,http://schoolsfinder.direct.gov.uk/9365409/overview//,1 23533,http://schoolsfinder.direct.gov.uk/9365404/overview/,1 23534,http://schoolsfinder.direct.gov.uk/9365217/school-location-map/,1 23535,http://schoolsfinder.direct.gov.uk/9364765/school-profile/,1 23536,http://schoolsfinder.direct.gov.uk/9364462/overview,1 23537,http://schoolsfinder.direct.gov.uk/9364456/overview/,1 23538,http://schoolsfinder.direct.gov.uk/9364193/overview/,1 23539,http://schoolsfinder.direct.gov.uk/9364165/school-profile/,1 23540,http://schoolsfinder.direct.gov.uk/9364153/overview/,1 23541,http://schoolsfinder.direct.gov.uk/9363924/overview/,1 23542,http://schoolsfinder.direct.gov.uk/9363446/overview/,1 23543,http://schoolsfinder.direct.gov.uk/9363014/school-profile/,1 23544,http://schoolsfinder.direct.gov.uk/9362391/school-location-map/,1 23545,http://schoolsfinder.direct.gov.uk/9362349/overview/,1 23546,http://schoolsfinder.direct.gov.uk/9362309/school-profile/,1 23547,http://schoolsfinder.direct.gov.uk/9362156/overview/,1 23548,http://schoolsfinder.direct.gov.uk/9362138/overview/,1 23549,http://schoolsfinder.direct.gov.uk/9354096/overview/,1 23550,http://schoolsfinder.direct.gov.uk/9353337/overview/,1 23551,http://schoolsfinder.direct.gov.uk/9353302/,1 23552,http://schoolsfinder.direct.gov.uk/9352159/school-profile/,1 23553,http://schoolsfinder.direct.gov.uk/9334259/overview/,1 23554,http://schoolsfinder.direct.gov.uk/9333158/school-profile/,1 23555,http://schoolsfinder.direct.gov.uk/9316066/overview//,1 23556,http://schoolsfinder.direct.gov.uk/9316064/overview/,1 23557,http://schoolsfinder.direct.gov.uk/9316050/overview/,1 23558,http://schoolsfinder.direct.gov.uk/9314142/overview/,1 23559,http://schoolsfinder.direct.gov.uk/9314127/school-profile/,1 23560,http://schoolsfinder.direct.gov.uk/9314060/school-location-map/,1 23561,http://schoolsfinder.direct.gov.uk/9313833/overview//,1 23562,http://schoolsfinder.direct.gov.uk/9313043/school-profile/,1 23563,http://schoolsfinder.direct.gov.uk/9312209/school-profile/,1 23564,http://schoolsfinder.direct.gov.uk/9294369/school-location-map/,1 23565,http://schoolsfinder.direct.gov.uk/9294369/overview/,1 23566,http://schoolsfinder.direct.gov.uk/9292526/overview/,1 23567,http://schoolsfinder.direct.gov.uk/9284022/school-profile,1 23568,http://schoolsfinder.direct.gov.uk/9282191/school-profile/,1 23569,http://schoolsfinder.direct.gov.uk/9282171/overview//,1 23570,http://schoolsfinder.direct.gov.uk/9282021/school-profile/,1 23571,http://schoolsfinder.direct.gov.uk/9268000/overview/,1 23572,http://schoolsfinder.direct.gov.uk/9267004/overview/,1 23573,http://schoolsfinder.direct.gov.uk/9265411/overview/,1 23574,http://schoolsfinder.direct.gov.uk/9264067/school-profile/,1 23575,http://schoolsfinder.direct.gov.uk/9264060/overview/,1 23576,http://schoolsfinder.direct.gov.uk/9264053/overview/,1 23577,http://schoolsfinder.direct.gov.uk/9264052/school-profile/,1 23578,http://schoolsfinder.direct.gov.uk/9264052/overview/,1 23579,http://schoolsfinder.direct.gov.uk/9263377/school-profile/,1 23580,http://schoolsfinder.direct.gov.uk/9263049/overview/,1 23581,http://schoolsfinder.direct.gov.uk/9263013/school-profile/,1 23582,http://schoolsfinder.direct.gov.uk/9262420/overview/,1 23583,http://schoolsfinder.direct.gov.uk/9262352/school-profile/,1 23584,http://schoolsfinder.direct.gov.uk/9262279/overview/,1 23585,http://schoolsfinder.direct.gov.uk/9257021/overview/,1 23586,http://schoolsfinder.direct.gov.uk/9256905/overview/,1 23587,http://schoolsfinder.direct.gov.uk/9255412/school-profile/,1 23588,http://schoolsfinder.direct.gov.uk/9255211/overview/,1 23589,http://schoolsfinder.direct.gov.uk/9255201/overview/,1 23590,http://schoolsfinder.direct.gov.uk/9254029/school-profile/,1 23591,http://schoolsfinder.direct.gov.uk/9254028/overview//,1 23592,http://schoolsfinder.direct.gov.uk/9252239/school-profile/,1 23593,http://schoolsfinder.direct.gov.uk/9252109/school-profile/,1 23594,http://schoolsfinder.direct.gov.uk/9252109/overview/,1 23595,http://schoolsfinder.direct.gov.uk/9252066/overview,1 23596,http://schoolsfinder.direct.gov.uk/9226071/overview/,1 23597,http://schoolsfinder.direct.gov.uk/9196000/overview/,1 23598,http://schoolsfinder.direct.gov.uk/9195402/overview/,1 23599,http://schoolsfinder.direct.gov.uk/9195202/school-profile,1 23600,http://schoolsfinder.direct.gov.uk/9194504/overview/,1 23601,http://schoolsfinder.direct.gov.uk/9194047/school-profile,1 23602,http://schoolsfinder.direct.gov.uk/9194011/school-profile,1 23603,http://schoolsfinder.direct.gov.uk/9194008/overview/,1 23604,http://schoolsfinder.direct.gov.uk/9194005/overview/,1 23605,http://schoolsfinder.direct.gov.uk/9193378/school-profile,1 23606,http://schoolsfinder.direct.gov.uk/9193301/school-profile/,1 23607,http://schoolsfinder.direct.gov.uk/9192414/school-profile/,1 23608,http://schoolsfinder.direct.gov.uk/9192379/school-profile/,1 23609,http://schoolsfinder.direct.gov.uk/9192314/overview/,1 23610,http://schoolsfinder.direct.gov.uk/9192261/school-location-map/,1 23611,http://schoolsfinder.direct.gov.uk/9192122/overview/,1 23612,http://schoolsfinder.direct.gov.uk/9192050/school-profile/,1 23613,http://schoolsfinder.direct.gov.uk/9167019/overview/,1 23614,http://schoolsfinder.direct.gov.uk/9165412/overview/,1 23615,http://schoolsfinder.direct.gov.uk/9163094/school-profile/,1 23616,http://schoolsfinder.direct.gov.uk/9163094/overview/,1 23617,http://schoolsfinder.direct.gov.uk/9163077/overview/,1 23618,http://schoolsfinder.direct.gov.uk/9163047/overview/,1 23619,http://schoolsfinder.direct.gov.uk/9163025/overview/,1 23620,http://schoolsfinder.direct.gov.uk/9162145/overview/,1 23621,http://schoolsfinder.direct.gov.uk/9162125/overview/,1 23622,http://schoolsfinder.direct.gov.uk/9095201/overview//,1 23623,http://schoolsfinder.direct.gov.uk/9093662/school-profile/,1 23624,http://schoolsfinder.direct.gov.uk/9093410/overview/,1 23625,http://schoolsfinder.direct.gov.uk/9092713/school-profile/,1 23626,http://schoolsfinder.direct.gov.uk/9092521/overview/,1 23627,http://schoolsfinder.direct.gov.uk/9092226/school-profile/,1 23628,http://schoolsfinder.direct.gov.uk/9087005/overview/,1 23629,http://schoolsfinder.direct.gov.uk/9084144/school-profile/,1 23630,http://schoolsfinder.direct.gov.uk/9082023/overview/,1 23631,http://schoolsfinder.direct.gov.uk/8966906/overview/,1 23632,http://schoolsfinder.direct.gov.uk/8966018/overview/,1 23633,http://schoolsfinder.direct.gov.uk/8965205/school-ofsted-information/,1 23634,http://schoolsfinder.direct.gov.uk/8964623/school-profile/,1 23635,http://schoolsfinder.direct.gov.uk/8964221/overview/,1 23636,http://schoolsfinder.direct.gov.uk/8962268/overview/,1 23637,http://schoolsfinder.direct.gov.uk/8957112/overview//,1 23638,http://schoolsfinder.direct.gov.uk/8945400/overview//,1 23639,http://schoolsfinder.direct.gov.uk/8943363/school'profile/,1 23640,http://schoolsfinder.direct.gov.uk/8943157/overview/,1 23641,http://schoolsfinder.direct.gov.uk/8942074/school-profile/,1 23642,http://schoolsfinder.direct.gov.uk/8932088/school-profile,1 23643,http://schoolsfinder.direct.gov.uk/8925404/overview/,1 23644,http://schoolsfinder.direct.gov.uk/8923324/school-profile/,1 23645,http://schoolsfinder.direct.gov.uk/8923321/overview/,1 23646,http://schoolsfinder.direct.gov.uk/8922903/overview/,1 23647,http://schoolsfinder.direct.gov.uk/8922155/overview/,1 23648,http://schoolsfinder.direct.gov.uk/8922083/school-profile/,1 23649,http://schoolsfinder.direct.gov.uk/8922077/overview/,1 23650,http://schoolsfinder.direct.gov.uk/8914364/school-profile/,1 23651,http://schoolsfinder.direct.gov.uk/8912838/school-profile/,1 23652,http://schoolsfinder.direct.gov.uk/8886009/school-ofsted-information/,1 23653,http://schoolsfinder.direct.gov.uk/8886004/overview//,1 23654,http://schoolsfinder.direct.gov.uk/8884802/school-profile/,1 23655,http://schoolsfinder.direct.gov.uk/8884193/overview/,1 23656,http://schoolsfinder.direct.gov.uk/8884000/school-profile/,1 23657,http://schoolsfinder.direct.gov.uk/8883707/overview/,1 23658,http://schoolsfinder.direct.gov.uk/8882833/school-profile/,1 23659,http://schoolsfinder.direct.gov.uk/8882656/school-ofsted-information/,1 23660,http://schoolsfinder.direct.gov.uk/8882526/overview/,1 23661,http://schoolsfinder.direct.gov.uk/8882509/overview//,1 23662,http://schoolsfinder.direct.gov.uk/8875420/school-profile/,1 23663,http://schoolsfinder.direct.gov.uk/8868007/overview/,1 23664,http://schoolsfinder.direct.gov.uk/8867070/overview/,1 23665,http://schoolsfinder.direct.gov.uk/8866920/overview/,1 23666,http://schoolsfinder.direct.gov.uk/8866910/overview,1 23667,http://schoolsfinder.direct.gov.uk/8865452/school-profile/,1 23668,http://schoolsfinder.direct.gov.uk/8865446/school-profile/,1 23669,http://schoolsfinder.direct.gov.uk/8865443/school-profile/,1 23670,http://schoolsfinder.direct.gov.uk/8865438/overview/,1 23671,http://schoolsfinder.direct.gov.uk/8865435/school-profile/,1 23672,http://schoolsfinder.direct.gov.uk/8865425/school-profile/,1 23673,http://schoolsfinder.direct.gov.uk/8865406/overview/,1 23674,http://schoolsfinder.direct.gov.uk/8865403/school-ofsted-information/,1 23675,http://schoolsfinder.direct.gov.uk/8864065/school-profile/2004/,1 23676,http://schoolsfinder.direct.gov.uk/8864065/overview/,1 23677,http://schoolsfinder.direct.gov.uk/8863902/school-profile/,1 23678,http://schoolsfinder.direct.gov.uk/8863350/school-profile/,1 23679,http://schoolsfinder.direct.gov.uk/8863181/school-profile/,1 23680,http://schoolsfinder.direct.gov.uk/8863117/school-profile/,1 23681,http://schoolsfinder.direct.gov.uk/8862684/overview/,1 23682,http://schoolsfinder.direct.gov.uk/8862553/overview/,1 23683,http://schoolsfinder.direct.gov.uk/8862300/school-profile,1 23684,http://schoolsfinder.direct.gov.uk/8862170/school-profile/,1 23685,http://schoolsfinder.direct.gov.uk/8862170/school-attainment-tables/KS2/2008/,1 23686,http://schoolsfinder.direct.gov.uk/8862095/school-profile/,1 23687,http://schoolsfinder.direct.gov.uk/8862095/school-ofsted-information/,1 23688,http://schoolsfinder.direct.gov.uk/8854005/school-profile/,1 23689,http://44thmsg.easysearch.org.uk,1 23690,http://schoolsfinder.direct.gov.uk/8853116/school-location-map/,1 23691,http://schoolsfinder.direct.gov.uk/8853001/school-location-map/,1 23692,http://schoolsfinder.direct.gov.uk/8852907/overview/,1 23693,http://schoolsfinder.direct.gov.uk/8842014/overview/,1 23694,http://schoolsfinder.direct.gov.uk/8835438/school-profile/,1 23695,http://schoolsfinder.direct.gov.uk/8833605/school-ofsted-information/,1 23696,http://schoolsfinder.direct.gov.uk/8823327/school-profile/,1 23697,http://schoolsfinder.direct.gov.uk/8822023/school-profile/,1 23698,http://schoolsfinder.direct.gov.uk/8818025/overview/,1 23699,http://schoolsfinder.direct.gov.uk/8815466/overview/,1 23700,http://schoolsfinder.direct.gov.uk/8815429/overview/,1 23701,http://schoolsfinder.direct.gov.uk/8815238/overview/,1 23702,http://schoolsfinder.direct.gov.uk/8814323/school-profile/,1 23703,http://schoolsfinder.direct.gov.uk/8813411/school-profile/,1 23704,http://schoolsfinder.direct.gov.uk/8813224/school-ofsted-information/,1 23705,http://schoolsfinder.direct.gov.uk/8812529/school-profile/,1 23706,http://schoolsfinder.direct.gov.uk/8812003/overview/,1 23707,http://schoolsfinder.direct.gov.uk/8804601/overview//,1 23708,http://schoolsfinder.direct.gov.uk/8792637/school-profile,1 23709,http://schoolsfinder.direct.gov.uk/8786905/overview//,1 23710,http://schoolsfinder.direct.gov.uk/8784607/overview//,1 23711,http://schoolsfinder.direct.gov.uk/8784607/overview/,1 23712,http://schoolsfinder.direct.gov.uk/8783308/school-profile/,1 23713,http://schoolsfinder.direct.gov.uk/8782219/overview/,1 23714,http://schoolsfinder.direct.gov.uk/8782090/overview/,1 23715,http://schoolsfinder.direct.gov.uk/8782085/school-profile/,1 23716,http://schoolsfinder.direct.gov.uk/8782006/overview/,1 23717,http://schoolsfinder.direct.gov.uk/8774228/overview/,1 23718,http://schoolsfinder.direct.gov.uk/8773642/school-profile/,1 23719,http://schoolsfinder.direct.gov.uk/8772402/overview/,1 23720,http://schoolsfinder.direct.gov.uk/8763614/overview/,1 23721,http://schoolsfinder.direct.gov.uk/8763511/school-profile/,1 23722,http://schoolsfinder.direct.gov.uk/8762407/overview/,1 23723,http://schoolsfinder.direct.gov.uk/8745417/overview/,1 23724,http://schoolsfinder.direct.gov.uk/8745404/school-profile/,1 23725,http://schoolsfinder.direct.gov.uk/8744081/school-profile/,1 23726,http://schoolsfinder.direct.gov.uk/8742223/school-profile/,1 23727,http://schoolsfinder.direct.gov.uk/8737023/school-profile/,1 23728,http://schoolsfinder.direct.gov.uk/8734501/school-profile/,1 23729,http://schoolsfinder.direct.gov.uk/8734501/overview//,1 23730,http://schoolsfinder.direct.gov.uk/8734083/overview//,1 23731,http://schoolsfinder.direct.gov.uk/8734055/school-profile/,1 23732,http://schoolsfinder.direct.gov.uk/8734002/overview/,1 23733,http://schoolsfinder.direct.gov.uk/8732336/school-profile/,1 23734,http://schoolsfinder.direct.gov.uk/8732222/school-profile/,1 23735,http://schoolsfinder.direct.gov.uk/8732121/overview/,1 23736,http://schoolsfinder.direct.gov.uk/8726003/overview/,1 23737,http://schoolsfinder.direct.gov.uk/8724053/overview/,1 23738,http://schoolsfinder.direct.gov.uk/8724049/overview/,1 23739,http://schoolsfinder.direct.gov.uk/8724047/overview/,1 23740,http://schoolsfinder.direct.gov.uk/8723373/school-ofsted-information/,1 23741,http://schoolsfinder.direct.gov.uk/8723373/overview//,1 23742,http://schoolsfinder.direct.gov.uk/8723372/overview/,1 23743,http://schoolsfinder.direct.gov.uk/8723315/overview/,1 23744,http://schoolsfinder.direct.gov.uk/8723312/school-profile/,1 23745,http://schoolsfinder.direct.gov.uk/8723061/overview/,1 23746,http://schoolsfinder.direct.gov.uk/8722088/overview/,1 23747,http://schoolsfinder.direct.gov.uk/8714082/overview/,1 23748,http://schoolsfinder.direct.gov.uk/8705413/overview/,1 23749,http://schoolsfinder.direct.gov.uk/8694052/overview/,1 23750,http://schoolsfinder.direct.gov.uk/8683010/overview/,1 23751,http://schoolsfinder.direct.gov.uk/8672057/school-profile/,1 23752,http://schoolsfinder.direct.gov.uk/8665409/school-attainment-tables/KS3/2007/,1 23753,http://schoolsfinder.direct.gov.uk/8655405/overview/,1 23754,http://schoolsfinder.direct.gov.uk/8653459/overview/,1 23755,http://schoolsfinder.direct.gov.uk/8653063/school-profile/,1 23756,http://schoolsfinder.direct.gov.uk/8614044/overview/,1 23757,http://schoolsfinder.direct.gov.uk/8612086/overview/,1 23758,http://schoolsfinder.direct.gov.uk/8612045/school-profile/,1 23759,http://schoolsfinder.direct.gov.uk/8612012/overview/,1 23760,http://schoolsfinder.direct.gov.uk/8606032/overview/,1 23761,http://schoolsfinder.direct.gov.uk/8605404/overview/,1 23762,http://schoolsfinder.direct.gov.uk/8604133/,1 23763,http://schoolsfinder.direct.gov.uk/8603468/overview/,1 23764,http://schoolsfinder.direct.gov.uk/8603084/overview/,1 23765,http://schoolsfinder.direct.gov.uk/8564723/school-profile/,1 23766,http://schoolsfinder.direct.gov.uk/8564721/overview/,1 23767,http://schoolsfinder.direct.gov.uk/8564244/school-profile/,1 23768,http://schoolsfinder.direct.gov.uk/8562339/school-profile/,1 23769,http://schoolsfinder.direct.gov.uk/8557002/school-profile/,1 23770,http://schoolsfinder.direct.gov.uk/8554508/school-profile/,1 23771,http://schoolsfinder.direct.gov.uk/8554503/overview/,1 23772,http://schoolsfinder.direct.gov.uk/8554017/school-profile/,1 23773,http://schoolsfinder.direct.gov.uk/8552349/school-profile/,1 23774,http://schoolsfinder.direct.gov.uk/8522459/school-profile,1 23775,http://schoolsfinder.direct.gov.uk/8522425/overview/,1 23776,http://schoolsfinder.direct.gov.uk/8517047/school-profile/,1 23777,http://schoolsfinder.direct.gov.uk/8514301/school-profile/,1 23778,http://schoolsfinder.direct.gov.uk/8513420/overview/,1 23779,http://schoolsfinder.direct.gov.uk/8512694/school-profile/,1 23780,http://schoolsfinder.direct.gov.uk/8512689/school-profile/,1 23781,http://schoolsfinder.direct.gov.uk/8509455/overview/,1 23782,http://schoolsfinder.direct.gov.uk/8508003/overview/,1 23783,http://schoolsfinder.direct.gov.uk/8507009/school-profile/,1 23784,http://schoolsfinder.direct.gov.uk/8506058/overview/,1 23785,http://schoolsfinder.direct.gov.uk/8506050/overview/,1 23786,http://schoolsfinder.direct.gov.uk/8505400/school-profile/,1 23787,http://schoolsfinder.direct.gov.uk/8503414/school-profile/,1 23788,http://schoolsfinder.direct.gov.uk/8503395/overview/,1 23789,http://schoolsfinder.direct.gov.uk/8503183/overview/,1 23790,http://schoolsfinder.direct.gov.uk/8503172/school-profile/,1 23791,http://schoolsfinder.direct.gov.uk/8502763/overview/,1 23792,http://schoolsfinder.direct.gov.uk/8502387/school-profile/,1 23793,http://schoolsfinder.direct.gov.uk/8502346/school-profile/,1 23794,http://schoolsfinder.direct.gov.uk/8502300/school-location-map/,1 23795,http://schoolsfinder.direct.gov.uk/8502284/school-location-map/,1 23796,http://schoolsfinder.direct.gov.uk/8502269/school-profile/,1 23797,http://schoolsfinder.direct.gov.uk/8502049/school-profile/,1 23798,http://schoolsfinder.direct.gov.uk/8464067/overview/,1 23799,http://schoolsfinder.direct.gov.uk/8463304/school-ofsted-information/,1 23800,http://schoolsfinder.direct.gov.uk/8453321/school-profile/,1 23801,http://schoolsfinder.direct.gov.uk/8413514/school-profile/,1 23802,http://schoolsfinder.direct.gov.uk/8412666/overview/,1 23803,http://schoolsfinder.direct.gov.uk/8408002/overview/,1 23804,http://schoolsfinder.direct.gov.uk/8376905/overview//,1 23805,http://schoolsfinder.direct.gov.uk/8362170/overview/,1 23806,http://schoolsfinder.direct.gov.uk/8354801/overview/,1 23807,http://schoolsfinder.direct.gov.uk/8354510/school-profile/,1 23808,http://schoolsfinder.direct.gov.uk/8354184/overview/,1 23809,http://schoolsfinder.direct.gov.uk/8354035/overview/,1 23810,http://schoolsfinder.direct.gov.uk/8354027/overview/,1 23811,http://schoolsfinder.direct.gov.uk/8352245/overview/,1 23812,http://schoolsfinder.direct.gov.uk/8316905/overview/,1 23813,http://schoolsfinder.direct.gov.uk/8314158/overview/,1 23814,http://schoolsfinder.direct.gov.uk/8312629/school-profile/,1 23815,http://schoolsfinder.direct.gov.uk/8305415/overview/,1 23816,http://schoolsfinder.direct.gov.uk/8305411/school-location-map/,1 23817,http://schoolsfinder.direct.gov.uk/8305408/school-profile/,1 23818,http://schoolsfinder.direct.gov.uk/8305401/school-profile/,1 23819,http://schoolsfinder.direct.gov.uk/8305400/overview/,1 23820,http://schoolsfinder.direct.gov.uk/8304193/school-profile/,1 23821,http://schoolsfinder.direct.gov.uk/8304126/overview/,1 23822,http://schoolsfinder.direct.gov.uk/8304074/overview/,1 23823,http://schoolsfinder.direct.gov.uk/8303325/school-profile/,1 23824,http://schoolsfinder.direct.gov.uk/8303107/school-profile/,1 23825,http://schoolsfinder.direct.gov.uk/8303065/school-profile/,1 23826,http://schoolsfinder.direct.gov.uk/8302356/overview//,1 23827,http://schoolsfinder.direct.gov.uk/8302328/school-profile/,1 23828,http://schoolsfinder.direct.gov.uk/8302315/school-profile/,1 23829,http://schoolsfinder.direct.gov.uk/8302243/school-profile/,1 23830,http://schoolsfinder.direct.gov.uk/8301019/overview/,1 23831,http://schoolsfinder.direct.gov.uk/8263004/overview/,1 23832,http://schoolsfinder.direct.gov.uk/8255404/school-profile/,1 23833,http://schoolsfinder.direct.gov.uk/8255402/school-profile/,1 23834,http://schoolsfinder.direct.gov.uk/8255204/school-profile/,1 23835,http://44searchengines.com,1 23836,http://schoolsfinder.direct.gov.uk/8253375/overview/,1 23837,http://schoolsfinder.direct.gov.uk/8253102/school-profile/,1 23838,http://schoolsfinder.direct.gov.uk/8253057/school-profile/,1 23839,http://schoolsfinder.direct.gov.uk/8253020/school-profile/,1 23840,http://schoolsfinder.direct.gov.uk/8252254/school-profile/,1 23841,http://schoolsfinder.direct.gov.uk/8252071/school-profile/,1 23842,http://schoolsfinder.direct.gov.uk/8234077/school-profile/,1 23843,http://schoolsfinder.direct.gov.uk/8226905/overview/,1 23844,http://schoolsfinder.direct.gov.uk/8212293/school-profile/,1 23845,http://schoolsfinder.direct.gov.uk/8212266/school-profile/,1 23846,http://schoolsfinder.direct.gov.uk/8212237/school-ofsted-information/,1 23847,http://schoolsfinder.direct.gov.uk/8212227/school-profile/,1 23848,http://schoolsfinder.direct.gov.uk/8156028/overview/,1 23849,http://schoolsfinder.direct.gov.uk/8154611/overview/,1 23850,http://schoolsfinder.direct.gov.uk/8154041/overview/,1 23851,http://schoolsfinder.direct.gov.uk/8152390/overview/,1 23852,http://schoolsfinder.direct.gov.uk/8152329/school-profile/,1 23853,http://schoolsfinder.direct.gov.uk/8152327/overview/,1 23854,http://schoolsfinder.direct.gov.uk/8152316/school-profile/,1 23855,http://schoolsfinder.direct.gov.uk/8152118/overview/,1 23856,http://schoolsfinder.direct.gov.uk/8152047/overview/,1 23857,http://schoolsfinder.direct.gov.uk/8132907/school-attainment-tables/KS2/2005/,1 23858,http://schoolsfinder.direct.gov.uk/8104020/school-profile/,1 23859,http://schoolsfinder.direct.gov.uk/8102903/overview/,1 23860,http://schoolsfinder.direct.gov.uk/8102813/school-profile/,1 23861,http://schoolsfinder.direct.gov.uk/8083305/school-profile/,1 23862,http://schoolsfinder.direct.gov.uk/8062331/overview/,1 23863,http://schoolsfinder.direct.gov.uk/8054603/overview/,1 23864,http://schoolsfinder.direct.gov.uk/8036906/overview/,1 23865,http://schoolsfinder.direct.gov.uk/8033042/school-profile/,1 23866,http://schoolsfinder.direct.gov.uk/8032171/school-profile/,1 23867,http://schoolsfinder.direct.gov.uk/8023350/school-profile,1 23868,http://schoolsfinder.direct.gov.uk/8022295/school-profile/,1 23869,http://schoolsfinder.direct.gov.uk/8017025/overview/,1 23870,http://schoolsfinder.direct.gov.uk/8012312/overview/,1 23871,http://schoolsfinder.direct.gov.uk/8012027/school-profile/,1 23872,http://schoolsfinder.direct.gov.uk/8005400/overview/,1 23873,http://schoolsfinder.direct.gov.uk/6742365/overview/,1 23874,http://schoolsfinder.direct.gov.uk/3944609/overview/,1 23875,http://schoolsfinder.direct.gov.uk/3943326/school-profile/,1 23876,http://schoolsfinder.direct.gov.uk/3943313/school-profile/,1 23877,http://schoolsfinder.direct.gov.uk/3943306/school-profile/,1 23878,http://schoolsfinder.direct.gov.uk/3932020/overview/,1 23879,http://schoolsfinder.direct.gov.uk/3924605/overview/,1 23880,http://schoolsfinder.direct.gov.uk/3923318/overview/,1 23881,http://schoolsfinder.direct.gov.uk/3922062/school-profile/,1 23882,http://schoolsfinder.direct.gov.uk/3922024/overview/,1 23883,http://schoolsfinder.direct.gov.uk/3922013/school-profile/,1 23884,http://schoolsfinder.direct.gov.uk/3913472/school-profile/,1 23885,http://schoolsfinder.direct.gov.uk/3913472/overview/,1 23886,http://schoolsfinder.direct.gov.uk/3912910/school-profile/,1 23887,http://schoolsfinder.direct.gov.uk/3912004/school-profile/,1 23888,http://schoolsfinder.direct.gov.uk/3844006/school-profile/2004/,1 23889,http://schoolsfinder.direct.gov.uk/3842203/school-profile/,1 23890,http://schoolsfinder.direct.gov.uk/3842100/overview/,1 23891,http://schoolsfinder.direct.gov.uk/3835400/overview/,1 23892,http://schoolsfinder.direct.gov.uk/3834115/overview/,1 23893,http://schoolsfinder.direct.gov.uk/3834107/overview/,1 23894,http://schoolsfinder.direct.gov.uk/3834031/overview/,1 23895,http://schoolsfinder.direct.gov.uk/3833911/overview//,1 23896,http://schoolsfinder.direct.gov.uk/3833379/school-profile/,1 23897,http://schoolsfinder.direct.gov.uk/3833375/school-profile/,1 23898,http://schoolsfinder.direct.gov.uk/3832463/school-profile/,1 23899,http://schoolsfinder.direct.gov.uk/3832462/overview/,1 23900,http://schoolsfinder.direct.gov.uk/3832446/overview/,1 23901,http://schoolsfinder.direct.gov.uk/3832413/school-profile/,1 23902,http://schoolsfinder.direct.gov.uk/3824042/school-profile/,1 23903,http://schoolsfinder.direct.gov.uk/3824019/overview/,1 23904,http://schoolsfinder.direct.gov.uk/3822026/school-ofsted-information/,1 23905,http://schoolsfinder.direct.gov.uk/3805401/overview/,1 23906,http://schoolsfinder.direct.gov.uk/3804074/overview/,1 23907,http://schoolsfinder.direct.gov.uk/3803026/school-profile/,1 23908,http://schoolsfinder.direct.gov.uk/3802145/school-profile/,1 23909,http://schoolsfinder.direct.gov.uk/3734259/school-profile/,1 23910,http://schoolsfinder.direct.gov.uk/3732338/school-profile/,1 23911,http://schoolsfinder.direct.gov.uk/3724024/overview/,1 23912,http://schoolsfinder.direct.gov.uk/3722070/overview/,1 23913,http://schoolsfinder.direct.gov.uk/3712180/school-profile/,1 23914,http://schoolsfinder.direct.gov.uk/3712130/school-profile/,1 23915,http://schoolsfinder.direct.gov.uk/3712110/school-location-map/,1 23916,http://schoolsfinder.direct.gov.uk/3702133/school-profile/,1 23917,http://schoolsfinder.direct.gov.uk/3702109/school-profile/,1 23918,http://schoolsfinder.direct.gov.uk/3582006/school-profile/,1 23919,http://schoolsfinder.direct.gov.uk/3576000/overview/,1 23920,http://schoolsfinder.direct.gov.uk/3562069/overview/,1 23921,http://schoolsfinder.direct.gov.uk/3553806/overview//,1 23922,http://schoolsfinder.direct.gov.uk/3553618/overview/,1 23923,http://schoolsfinder.direct.gov.uk/3553042/overview/,1 23924,http://schoolsfinder.direct.gov.uk/3552022/school-profile/,1 23925,http://schoolsfinder.direct.gov.uk/3544089/overview/,1 23926,http://schoolsfinder.direct.gov.uk/3532097/overview/,1 23927,http://schoolsfinder.direct.gov.uk/3528601/overview/,1 23928,http://schoolsfinder.direct.gov.uk/3524770/school-profile/,1 23929,http://schoolsfinder.direct.gov.uk/3524765/school-profile/,1 23930,http://schoolsfinder.direct.gov.uk/3524271/overview/,1 23931,http://schoolsfinder.direct.gov.uk/3523501/school-profile/,1 23932,http://schoolsfinder.direct.gov.uk/3523418/school-profile/,1 23933,http://schoolsfinder.direct.gov.uk/3522340/school-profile/,1 23934,http://schoolsfinder.direct.gov.uk/3522109/overview/,1 23935,http://schoolsfinder.direct.gov.uk/3517009/school-profile/,1 23936,http://schoolsfinder.direct.gov.uk/3513017/school-profile/,1 23937,http://schoolsfinder.direct.gov.uk/3506907/overview/,1 23938,http://schoolsfinder.direct.gov.uk/3502084/school-profile/,1 23939,http://schoolsfinder.direct.gov.uk/3445400/overview/,1 23940,http://schoolsfinder.direct.gov.uk/3444060/overview/,1 23941,http://schoolsfinder.direct.gov.uk/3442266/school-profile/,1 23942,http://schoolsfinder.direct.gov.uk/3442238/school-profile/,1 23943,http://schoolsfinder.direct.gov.uk/3442200/overview/,1 23944,http://schoolsfinder.direct.gov.uk/3442110/school-profile/,1 23945,http://schoolsfinder.direct.gov.uk/3436128/overview//,1 23946,http://schoolsfinder.direct.gov.uk/3432076/school-profile/,1 23947,http://schoolsfinder.direct.gov.uk/3423452/overview/,1 23948,http://schoolsfinder.direct.gov.uk/3423320/overview/,1 23949,http://schoolsfinder.direct.gov.uk/3422019/school-profile/,1 23950,http://schoolsfinder.direct.gov.uk/3422001/overview/,1 23951,http://schoolsfinder.direct.gov.uk/3417052/overview/,1 23952,http://schoolsfinder.direct.gov.uk/3417025/overview/,1 23953,http://schoolsfinder.direct.gov.uk/3416907/overview/,1 23954,http://schoolsfinder.direct.gov.uk/3416046/overview/,1 23955,http://schoolsfinder.direct.gov.uk/3415402/overview/,1 23956,http://schoolsfinder.direct.gov.uk/3414790/school-profile/,1 23957,http://schoolsfinder.direct.gov.uk/3414431/overview/,1 23958,http://schoolsfinder.direct.gov.uk/3414427/overview/,1 23959,http://schoolsfinder.direct.gov.uk/3414425/overview/,1 23960,http://schoolsfinder.direct.gov.uk/3414419/school-profile/,1 23961,http://schoolsfinder.direct.gov.uk/3413523/school-profile/,1 23962,http://schoolsfinder.direct.gov.uk/3413327/overview/,1 23963,http://schoolsfinder.direct.gov.uk/3413025/school-profile/,1 23964,http://schoolsfinder.direct.gov.uk/3412223/overview/,1 23965,http://schoolsfinder.direct.gov.uk/3412171/overview/,1 23966,http://schoolsfinder.direct.gov.uk/3412149/overview/,1 23967,http://schoolsfinder.direct.gov.uk/3412084/school-profile/,1 23968,http://schoolsfinder.direct.gov.uk/3412021/school-profile/,1 23969,http://schoolsfinder.direct.gov.uk/3411106/overview//,1 23970,http://schoolsfinder.direct.gov.uk/3407006/overview,1 23971,http://schoolsfinder.direct.gov.uk/3403353/overview/,1 23972,http://schoolsfinder.direct.gov.uk/3403352/overview/,1 23973,http://schoolsfinder.direct.gov.uk/3403344/school-profile/,1 23974,http://schoolsfinder.direct.gov.uk/3402040/school-profile/,1 23975,http://schoolsfinder.direct.gov.uk/3362074/overview/,1 23976,http://schoolsfinder.direct.gov.uk/3362051/school-profile/,1 23977,http://schoolsfinder.direct.gov.uk/3357007/overview/,1 23978,http://schoolsfinder.direct.gov.uk/3353329/school-profile/,1 23979,http://schoolsfinder.direct.gov.uk/3343501/school-profile/,1 23980,http://schoolsfinder.direct.gov.uk/3343011/school-profile/,1 23981,http://schoolsfinder.direct.gov.uk/3342090/school-profile/,1 23982,http://schoolsfinder.direct.gov.uk/3336909/overview/,1 23983,http://schoolsfinder.direct.gov.uk/3336908/overview/,1 23984,http://schoolsfinder.direct.gov.uk/3336905/overview/,1 23985,http://schoolsfinder.direct.gov.uk/3334500/school-location-map/,1 23986,http://schoolsfinder.direct.gov.uk/3334500/overview/,1 23987,http://schoolsfinder.direct.gov.uk/3334129/overview/,1 23988,http://schoolsfinder.direct.gov.uk/3334111/overview/,1 23989,http://schoolsfinder.direct.gov.uk/3333401/school-location-map/,1 23990,http://schoolsfinder.direct.gov.uk/3332189/school-ofsted-information/,1 23991,http://schoolsfinder.direct.gov.uk/3332174/overview/,1 23992,http://schoolsfinder.direct.gov.uk/3332171/overview/,1 23993,http://schoolsfinder.direct.gov.uk/3332161/overview/,1 23994,http://schoolsfinder.direct.gov.uk/3332113/overview/,1 23995,http://schoolsfinder.direct.gov.uk/3332078/school-ofsted-information/,1 23996,http://schoolsfinder.direct.gov.uk/3332041/overview/,1 23997,http://schoolsfinder.direct.gov.uk/3331104/overview/,1 23998,http://schoolsfinder.direct.gov.uk/3324106/overview/,1 23999,http://schoolsfinder.direct.gov.uk/3322137/school-profile/,1 24000,http://schoolsfinder.direct.gov.uk/3312122/school-profile/,1 24001,http://schoolsfinder.direct.gov.uk/3312054/school-profile/,1 24002,http://schoolsfinder.direct.gov.uk/3307031/overview/,1 24003,http://schoolsfinder.direct.gov.uk/3305412/school-profile/,1 24004,http://schoolsfinder.direct.gov.uk/3304238/school-attainment-tables/KS3/2007/,1 24005,http://schoolsfinder.direct.gov.uk/3304188/overview/,1 24006,http://schoolsfinder.direct.gov.uk/3303375/overview/,1 24007,http://schoolsfinder.direct.gov.uk/3303356/school-ofsted-information/,1 24008,http://schoolsfinder.direct.gov.uk/3303354/school-profile/,1 24009,http://schoolsfinder.direct.gov.uk/3303350/school-profile/,1 24010,http://schoolsfinder.direct.gov.uk/3302473/overview/,1 24011,http://schoolsfinder.direct.gov.uk/3205401/school-location-map/,1 24012,http://www.stevesmotoringschool.com,1 24013,http://schoolsfinder.direct.gov.uk/3205400/overview/,1 24014,http://schoolsfinder.direct.gov.uk/3204069/overview/,1 24015,http://schoolsfinder.direct.gov.uk/3204069/overview,1 24016,http://schoolsfinder.direct.gov.uk/3204066/overview/,1 24017,http://schoolsfinder.direct.gov.uk/3202081/school-ofsted-information/,1 24018,http://schoolsfinder.direct.gov.uk/3202076/overview/,1 24019,http://schoolsfinder.direct.gov.uk/3202075/overview,1 24020,http://schoolsfinder.direct.gov.uk/3202072/overview/,1 24021,http://schoolsfinder.direct.gov.uk/3202069/overview/,1 24022,http://schoolsfinder.direct.gov.uk/3202028/school-profile/,1 24023,http://schoolsfinder.direct.gov.uk/3202027/overview/,1 24024,http://schoolsfinder.direct.gov.uk/3195407/school-profile/,1 24025,http://schoolsfinder.direct.gov.uk/3194011/overview/,1 24026,http://schoolsfinder.direct.gov.uk/3194002/school-profile/,1 24027,http://schoolsfinder.direct.gov.uk/3184021/overview,1 24028,http://schoolsfinder.direct.gov.uk/3182036/overview/,1 24029,http://schoolsfinder.direct.gov.uk/3182018/school-profile/,1 24030,http://schoolsfinder.direct.gov.uk/3174603/overview/,1 24031,http://schoolsfinder.direct.gov.uk/3174007/school-profile/,1 24032,http://schoolsfinder.direct.gov.uk/3172066/school-ofsted-information/,1 24033,http://schoolsfinder.direct.gov.uk/3172063/overview/,1 24034,http://schoolsfinder.direct.gov.uk/3162100/school-ofsted-information/,1 24035,http://schoolsfinder.direct.gov.uk/3162098/overview/,1 24036,http://schoolsfinder.direct.gov.uk/3162093/school-profile/,1 24037,http://schoolsfinder.direct.gov.uk/3153506/school-profile/,1 24038,http://schoolsfinder.direct.gov.uk/3153304/school-profile/,1 24039,http://schoolsfinder.direct.gov.uk/3152075/overview/,1 24040,http://schoolsfinder.direct.gov.uk/3152055/overview/,1 24041,http://schoolsfinder.direct.gov.uk/3142032/overview/,1 24042,http://schoolsfinder.direct.gov.uk/3142001/school-profile/,1 24043,http://schoolsfinder.direct.gov.uk/3136051/school-location-map/,1 24044,http://schoolsfinder.direct.gov.uk/3132081/school-profile,1 24045,http://schoolsfinder.direct.gov.uk/3132078/school-profile/,1 24046,http://schoolsfinder.direct.gov.uk/3132048/school-profile/,1 24047,http://schoolsfinder.direct.gov.uk/3132000/school-profile/,1 24048,http://schoolsfinder.direct.gov.uk/3125406/overview/,1 24049,http://schoolsfinder.direct.gov.uk/3125211/school-profile/,1 24050,http://schoolsfinder.direct.gov.uk/3123307/school-ofsted-information/,1 24051,http://schoolsfinder.direct.gov.uk/3123302/overview,1 24052,http://schoolsfinder.direct.gov.uk/3122036/overview,1 24053,http://schoolsfinder.direct.gov.uk/3122018/overview/,1 24054,http://schoolsfinder.direct.gov.uk/3122000/school-profile/,1 24055,http://schoolsfinder.direct.gov.uk/3116905/overview/,1 24056,http://schoolsfinder.direct.gov.uk/3114037/overview/,1 24057,http://schoolsfinder.direct.gov.uk/3114025/overview/,1 24058,http://schoolsfinder.direct.gov.uk/3114025/overview,1 24059,http://schoolsfinder.direct.gov.uk/3114006/overview/,1 24060,http://schoolsfinder.direct.gov.uk/3114001/overview/,1 24061,http://schoolsfinder.direct.gov.uk/3114000/overview,1 24062,http://schoolsfinder.direct.gov.uk/3113504/overview/,1 24063,http://schoolsfinder.direct.gov.uk/3113501/overview/,1 24064,http://schoolsfinder.direct.gov.uk/3112085/school-profile/,1 24065,http://schoolsfinder.direct.gov.uk/3112069/school-profile/,1 24066,http://schoolsfinder.direct.gov.uk/3112060/overview/,1 24067,http://schoolsfinder.direct.gov.uk/3112037/school-profile/,1 24068,http://schoolsfinder.direct.gov.uk/3112017/overview/,1 24069,http://schoolsfinder.direct.gov.uk/3112014/school-profile/,1 24070,http://schoolsfinder.direct.gov.uk/3112014/overview/,1 24071,http://schoolsfinder.direct.gov.uk/3103511/overview/,1 24072,http://schoolsfinder.direct.gov.uk/3102095/overview/,1 24073,http://schoolsfinder.direct.gov.uk/3102071/school-profile/,1 24074,http://schoolsfinder.direct.gov.uk/3102049/school-profile/,1 24075,http://schoolsfinder.direct.gov.uk/3101003/overview//,1 24076,http://schoolsfinder.direct.gov.uk/3094037/school-profile/,1 24077,http://schoolsfinder.direct.gov.uk/3093506/school-ofsted-information/,1 24078,http://schoolsfinder.direct.gov.uk/3084706/school-profile/,1 24079,http://schoolsfinder.direct.gov.uk/3084029/overview,1 24080,http://schoolsfinder.direct.gov.uk/3083503/school-profile/,1 24081,http://schoolsfinder.direct.gov.uk/3083308/overview/,1 24082,http://schoolsfinder.direct.gov.uk/3082090/overview/,1 24083,http://schoolsfinder.direct.gov.uk/3082077/overview,1 24084,http://schoolsfinder.direct.gov.uk/3082024/school-profile/,1 24085,http://schoolsfinder.direct.gov.uk/3075400/school-profile/,1 24086,http://schoolsfinder.direct.gov.uk/3075400/overview/,1 24087,http://schoolsfinder.direct.gov.uk/3075200/school-profile/,1 24088,http://schoolsfinder.direct.gov.uk/3074035/overview//,1 24089,http://schoolsfinder.direct.gov.uk/3074030/overview/,1 24090,http://schoolsfinder.direct.gov.uk/3073503/school-profile/,1 24091,http://schoolsfinder.direct.gov.uk/3072185/overview/,1 24092,http://schoolsfinder.direct.gov.uk/3072185/overview,1 24093,http://schoolsfinder.direct.gov.uk/3072167/school-profile/,1 24094,http://schoolsfinder.direct.gov.uk/3072165/overview,1 24095,http://schoolsfinder.direct.gov.uk/3067008/overview/,1 24096,http://schoolsfinder.direct.gov.uk/3066910/overview/,1 24097,http://schoolsfinder.direct.gov.uk/3066905/overview/,1 24098,http://schoolsfinder.direct.gov.uk/3065402/overview/,1 24099,http://schoolsfinder.direct.gov.uk/3065400/overview/,1 24100,http://schoolsfinder.direct.gov.uk/3064702/overview/,1 24101,http://schoolsfinder.direct.gov.uk/3064603/overview/,1 24102,http://schoolsfinder.direct.gov.uk/3064600/overview/,1 24103,http://schoolsfinder.direct.gov.uk/3064031/overview,1 24104,http://schoolsfinder.direct.gov.uk/3063417/overview/,1 24105,http://schoolsfinder.direct.gov.uk/3063415/overview/,1 24106,http://schoolsfinder.direct.gov.uk/3063401/overview/,1 24107,http://schoolsfinder.direct.gov.uk/3062108/overview/,1 24108,http://schoolsfinder.direct.gov.uk/3062057/overview/,1 24109,http://schoolsfinder.direct.gov.uk/3062030/school-profile/,1 24110,http://schoolsfinder.direct.gov.uk/3062019/school-profile/,1 24111,http://schoolsfinder.direct.gov.uk/3056073/overview/,1 24112,http://schoolsfinder.direct.gov.uk/3055419/school-profile/,1 24113,http://schoolsfinder.direct.gov.uk/3055412/overview/,1 24114,http://schoolsfinder.direct.gov.uk/3055410/overview/,1 24115,http://schoolsfinder.direct.gov.uk/3055405/overview,1 24116,http://schoolsfinder.direct.gov.uk/3054604/overview,1 24117,http://schoolsfinder.direct.gov.uk/3053005/overview/,1 24118,http://schoolsfinder.direct.gov.uk/3053001/school-profile/,1 24119,http://schoolsfinder.direct.gov.uk/3052000/school-profile/,1 24120,http://schoolsfinder.direct.gov.uk/3046072/overview/,1 24121,http://schoolsfinder.direct.gov.uk/3045406/school-profile,1 24122,http://schoolsfinder.direct.gov.uk/3043505/school-profile,1 24123,http://schoolsfinder.direct.gov.uk/3043308/,1 24124,http://schoolsfinder.direct.gov.uk/3042072/overview/,1 24125,http://schoolsfinder.direct.gov.uk/3042071/overview/,1 24126,http://schoolsfinder.direct.gov.uk/3042006/school-profile/,1 24127,http://schoolsfinder.direct.gov.uk/3035404/overview,1 24128,http://schoolsfinder.direct.gov.uk/3034001/school-profile/,1 24129,http://schoolsfinder.direct.gov.uk/3034001/overview/,1 24130,http://schoolsfinder.direct.gov.uk/3034001/overview,1 24131,http://schoolsfinder.direct.gov.uk/3032029/overview/,1 24132,http://schoolsfinder.direct.gov.uk/3031102/overview/,1 24133,http://schoolsfinder.direct.gov.uk/3026905/overview/,1 24134,http://schoolsfinder.direct.gov.uk/3025406/overview,1 24135,http://schoolsfinder.direct.gov.uk/3025402/school-profile/,1 24136,http://schoolsfinder.direct.gov.uk/3025401/overview/,1 24137,http://schoolsfinder.direct.gov.uk/3025401/overview,1 24138,http://schoolsfinder.direct.gov.uk/3024215/school-profile/,1 24139,http://schoolsfinder.direct.gov.uk/3022072/overview/,1 24140,http://schoolsfinder.direct.gov.uk/3022018/overview/,1 24141,http://schoolsfinder.direct.gov.uk/3014029/school-profile/,1 24142,http://schoolsfinder.direct.gov.uk/3014023/school-profile/,1 24143,http://schoolsfinder.direct.gov.uk/3013506/overview/,1 24144,http://schoolsfinder.direct.gov.uk/3012024/school-profile/,1 24145,http://schoolsfinder.direct.gov.uk/2136047/overview//,1 24146,http://schoolsfinder.direct.gov.uk/2136047/overview/,1 24147,http://schoolsfinder.direct.gov.uk/2136044/overview//,1 24148,http://schoolsfinder.direct.gov.uk/2134687/overview//,1 24149,http://schoolsfinder.direct.gov.uk/2134628/overview,1 24150,http://schoolsfinder.direct.gov.uk/2133539/school-profile/,1 24151,http://schoolsfinder.direct.gov.uk/2133446/school-profile/,1 24152,http://schoolsfinder.direct.gov.uk/2125401/overview/,1 24153,http://schoolsfinder.direct.gov.uk/2125400/school-profile/,1 24154,http://schoolsfinder.direct.gov.uk/2123376/overview,1 24155,http://schoolsfinder.direct.gov.uk/2114722/school-profile/,1 24156,http://schoolsfinder.direct.gov.uk/2114298/overview,1 24157,http://schoolsfinder.direct.gov.uk/2113397/overview/,1 24158,http://schoolsfinder.direct.gov.uk/2112922/overview,1 24159,http://schoolsfinder.direct.gov.uk/2112341/overview,1 24160,http://schoolsfinder.direct.gov.uk/2112254/overview,1 24161,http://schoolsfinder.direct.gov.uk/2112003/overview,1 24162,http://schoolsfinder.direct.gov.uk/2112001/overview/,1 24163,http://schoolsfinder.direct.gov.uk/2107007/overview/,1 24164,http://schoolsfinder.direct.gov.uk/2106908/school-profile/,1 24165,http://schoolsfinder.direct.gov.uk/2106000/overview/,1 24166,http://schoolsfinder.direct.gov.uk/2105404/overview/,1 24167,http://schoolsfinder.direct.gov.uk/2105403/overview/,1 24168,http://schoolsfinder.direct.gov.uk/2105207/school-profile/,1 24169,http://schoolsfinder.direct.gov.uk/2105205/school-profile/,1 24170,http://schoolsfinder.direct.gov.uk/2104680/overview/,1 24171,http://schoolsfinder.direct.gov.uk/2104680/overview,1 24172,http://schoolsfinder.direct.gov.uk/2102142/overview/,1 24173,http://schoolsfinder.direct.gov.uk/2092869/school-profile/,1 24174,http://schoolsfinder.direct.gov.uk/2092815/school-profile/,1 24175,http://schoolsfinder.direct.gov.uk/2092381/school-profile/,1 24176,http://schoolsfinder.direct.gov.uk/2092029/overview/,1 24177,http://schoolsfinder.direct.gov.uk/2092023/overview/,1 24178,http://schoolsfinder.direct.gov.uk/2085207/school-profile/,1 24179,http://schoolsfinder.direct.gov.uk/2085201/school-profile/,1 24180,http://schoolsfinder.direct.gov.uk/2084321/school-profile/,1 24181,http://schoolsfinder.direct.gov.uk/2084223/overview/,1 24182,http://schoolsfinder.direct.gov.uk/2083596/school-profile/,1 24183,http://schoolsfinder.direct.gov.uk/2083499/overview/,1 24184,http://schoolsfinder.direct.gov.uk/2082371/school-profile/,1 24185,http://schoolsfinder.direct.gov.uk/2076104/overview//,1 24186,http://schoolsfinder.direct.gov.uk/2075200/school-profile/,1 24187,http://schoolsfinder.direct.gov.uk/2064614/overview,1 24188,http://schoolsfinder.direct.gov.uk/2063644/school-profile/,1 24189,http://schoolsfinder.direct.gov.uk/2062857/school-profile/,1 24190,http://schoolsfinder.direct.gov.uk/2062854/school-attainment-tables/KS2/2008/,1 24191,http://schoolsfinder.direct.gov.uk/2062251/school-profile/,1 24192,http://schoolsfinder.direct.gov.uk/2056905/overview,1 24193,http://schoolsfinder.direct.gov.uk/2056401/overview//,1 24194,http://schoolsfinder.direct.gov.uk/2054319/school-profile/,1 24195,http://schoolsfinder.direct.gov.uk/2053648/school-profile/,1 24196,http://schoolsfinder.direct.gov.uk/2052577/school-profile/,1 24197,http://schoolsfinder.direct.gov.uk/2052555/overview/,1 24198,http://schoolsfinder.direct.gov.uk/2052134/school-location-map/,1 24199,http://schoolsfinder.direct.gov.uk/2052089/school-ofsted-information/,1 24200,http://schoolsfinder.direct.gov.uk/2042421/overview/,1 24201,http://schoolsfinder.direct.gov.uk/2033500/school-profile/,1 24202,http://schoolsfinder.direct.gov.uk/2032877/overview/,1 24203,http://schoolsfinder.direct.gov.uk/2032552/school-profile/,1 24204,http://schoolsfinder.direct.gov.uk/2032266/overview/,1 24205,http://schoolsfinder.direct.gov.uk/2032242/school-profile/,1 24206,http://schoolsfinder.direct.gov.uk/2032028/overview/,1 24207,http://schoolsfinder.direct.gov.uk/2027205/overview/,1 24208,http://schoolsfinder.direct.gov.uk/2024652/overview/,1 24209,http://schoolsfinder.direct.gov.uk/2024104/overview/,1 24210,http://schoolsfinder.direct.gov.uk/2023441/school-profile/,1 24211,http://schoolsfinder.direct.gov.uk/2023359/school-profile/,1 24212,http://www.stevesrhodes.co.uk,1 24213,http://schools.richmond.gov.uk,1 24214,http://43fmamsatc.easysearch.org.uk,1 24215,http://schoolgoverning.blogspot.com,1 24216,http://schooldevelopmentfund.easysearch.org.uk,1 24217,http://www.stewardsschool.co.uk,1 24218,http://schoolcomms.com,1 24219,http://school.haas-en-berg.nl,1 24220,http://school-portal.co.uk,1 24221,http://www.stewartbakerdrivingschool.co.uk,1 24222,http://schizophrenia24x7.com,1 24223,http://www.stewartkeating.com,1 24224,http://sceneandheard.org,1 24225,http://www.stewartlancasterdrivingschool.co.uk,1 24226,http://scc.staging.southampton.gov.uk,1 24227,http://scbpensions.com,1 24228,http://scbdriving.theorytestpro.co.uk,1 24229,http://scb-bikes.dhweb.co.uk,1 24230,http://scarborough.gov.uk,1 24231,http://scambusters-uk.org,1 24232,http://sc.lg.esf.edu.hk,1 24233,http://sbtforum.no,1 24234,http://sbi12.sitesell.com,1 24235,http://www.stewartonmedicalpractice.co.uk,1 24236,http://sbcs.edu.tt,1 24237,http://sbcinternetauth,1 24238,http://zimbra.thesggroup.co.uk,1 24239,http://sb-fag-ends.livejournal.com,1 24240,http://saylethru.im,1 24241,http://saversnews.co.uk,1 24242,http://savedoncasterlibraries.wordpress.com,1 24243,http://saughallcc.easysearch.org.uk,1 24244,http://www.stewartsplumbing.co.uk,1 24245,http://sarunas.maminuklubs.lv,1 24246,http://sarcomatrust.easysearch.org.uk,1 24247,http://sarcoidosissupport.ning.com,1 24248,http://sap204.buckscc.gov.uk:8000,1 24249,http://www.stewkleygreen.org.uk,1 24250,http://sandycoast.wordpress.com,1 24251,http://sandwichdrivingschool.com,1 24252,http://sandbox.tayam.co.uk,1 24253,http://sandbox.suffolkcc.gov.uk,1 24254,http://sandbox.contentcaretaker.co.uk,1 24255,http://samsunggalaxysforums.com,1 24256,http://samsdriving.co.uk,1 24257,http://www.stfc.ac.uk,1 24258,http://sambucaandfriends.proboards.com,1 24259,http://samaritanswalsall.easysearch.org.uk,1 24260,http://sam-gough.suite101.com,1 24261,http://salford.portal.s-cool.co.uk,1 24262,http://10.0.0.200,1 24263,http://salaswildthoughts.blogspot.com,1 24264,http://sal-primo-production.hosted.exlibrisgroup.com,1 24265,http://sailine.org.uk,1 24266,http://3rsv.dlinkddns.com,1 24267,http://saffronsolicitors.co.uk,1 24268,http://safetyonlinecourse.co.uk,1 24269,http://safety.poigps.com,1 24270,http://www.sthelens-connect.net,1 24271,http://www.sthelens-one.com,1 24272,http://safepass.theorytestpro.co.uk,1 24273,http://safedrivingandriding.org.uk,1 24274,http://safeanaesthesia.easysearch.org.uk,1 24275,http://www.stickmanbangkok.com,1 24276,http://www.stickywicketgarden.co.uk,1 24277,http://saa.auto.sohu.com,1 24278,http://s9-eu.ixquick.nl,1 24279,http://s45067196imran.webs.com,1 24280,http://s4-eu.ixquick.com,1 24281,http://s337220757.websitehome.co.uk,1 24282,http://s330030014.initial-website.co.uk,1 24283,http://s298478106.websitehome.co.uk,1 24284,http://s17-us2.startpage.com,1 24285,http://s1.iloveim.com,1 24286,http://s1-eu3.startpage.com,1 24287,http://s.maxthon.com,1 24288,http://ryedale.staging,1 24289,http://rydefirestation.co.uk,1 24290,http://ryansteeledriving.theorytestpro.co.uk,1 24291,http://ryanparsons.vpweb.co.uk,1 24292,http://rwsgateway,1 24293,http://rwsdriving.theorytestpro.co.uk,1 24294,http://rweituk,1 24295,http://rv-and.us,1 24296,http://ruswarp.2day.ws,1 24297,http://www.stippolyts-parishcouncil.org.uk,1 24298,http://rushcliffesolar.blogspot.com,1 24299,http://rupoint.co.uk,1 24300,http://rupertsnursery.co.uk,1 24301,http://rumbletums.easysearch.org.uk,1 24302,http://rugozat.tjp.hu,1 24303,http://ruessmann.jura.uni-sb.de,1 24304,http://rubystgsvr01.ucas.ac.uk:7777,1 24305,http://www.stischooltravel.co.uk,1 24306,http://ru.search.yahoo.com,1 24307,http://ru.mc656.mail.yahoo.com,1 24308,http://ru.mc1618.mail.yahoo.com,1 24309,http://ru.mc1205.mail.yahoo.com,1 24310,http://www.stivestowncouncil.gov.uk,1 24311,http://rttc.easysearch.org.uk,1 24312,http://rtb02.yuku.com,1 24313,http://rspcainjustice.blogspot.com,1 24314,http://zonaforo.meristation.com,1 24315,http://rspcacentrallondon.org.uk,1 24316,http://rspcaashleyheath.easysearch.org.uk,1 24317,http://rspbmacclesfield.easysearch.org.uk,1 24318,http://www.stjamesandebringtonschools.org.uk,1 24319,http://www.stjamesandemmanuel.org,1 24320,http://rsesu.easysearch.org.uk,1 24321,http://royalcrescentsurgery.co.uk,1 24322,http://www.stjohnsblackpool.co.uk,1 24323,http://rowlandbrothersinternational.blogspot.com,1 24324,http://routledge.tandf.co.uk,1 24325,http://www.stjohnskirkdale.co.uk,1 24326,http://roundthebend.theorytestpro.co.uk,1 24327,http://roundthebend.co,1 24328,http://rounddiamondsch.rounddiamondsch.easysearch.org.uk,1 24329,http://roundcube.mewan.net,1 24330,http://rouma.hg.free.fr,1 24331,http://rotherhamcareers.com,1 24332,http://rotherham.moreinfo.futures4me.com,1 24333,http://www.stjohnsmedicalcentre.co.uk,1 24334,http://rossendale.theorytestpro.co.uk,1 24335,http://rootsireland.ie,1 24336,http://rootlink.org.ru,1 24337,http://rook.longislandnewsday.com,1 24338,http://www.stjosephs-aylesham.co.uk,1 24339,http://ronatrust.easysearch.org.uk,1 24340,http://romford-driving-school.co.uk,1 24341,http://www.stjosephsrc.co.uk,1 24342,http://www.stjps.lewisham.sch.uk,1 24343,http://rogolssolicitors.law.officelive.com,1 24344,http://rogerparsons.info,1 24345,http://roger.theorytestpro.co.uk,1 24346,http://rocklandsschool.easysearch.org.uk,1 24347,http://robinmckinleysblog.com,1 24348,http://robgriffsom.co.uk,1 24349,http://robertsmith.easysearch.org.uk,1 24350,http://robertpittssom.com,1 24351,http://robertpittsdrivinglessons.co.uk,1 24352,http://robertosiot.blogspot.com,1 24353,http://robertmiles.primarysite.net,1 24354,http://3rdarbroathrainbows.easysearch.org.uk,1 24355,http://rob-som.co.uk,1 24356,http://roadwize.co.uk,1 24357,http://roadsenseleicester.co.uk,1 24358,http://roadsafetywestscotland.com,1 24359,http://roadsafetysomerset.org.uk,1 24360,http://roadmasterdrivingacademy.com,1 24361,http://www.stlukesadviceservice.org.uk,1 24362,http://roadahead.mib.org.uk,1 24363,http://road-train.net,1 24364,http://road-smith.co.uk,1 24365,http://road-sense.co.uk,1 24366,http://www.stlukesmedicalpractice.co.uk,1 24367,http://ro.search.yahoo.com,1 24368,http://rnli.easysearch.org.uk,1 24369,http://rncm.ac.uk,1 24370,http://www.stmaryandstmargarets.com,1 24371,http://rnaroydon.easysearch.org.uk,1 24372,http://rmtgb.org,1 24373,http://rmtc.easysearch.org.uk,1 24374,http://www.stmarybourneschool.co.uk,1 24375,http://rmc.easysearch.org.uk,1 24376,http://rlclaw.co.uk,1 24377,http://www.stmaryrc.bham.sch.uk,1 24378,http://rjsdrivingschool.yolasite.com,1 24379,http://rjp.homeip.net,1 24380,http://www.stmarysce.bucks.sch.uk,1 24381,http://riverviewrt.com,1 24382,http://riverside.org.uk,1 24383,http://riverside.laserlearning.org,1 24384,http://riverdeepmountainhigh.co.uk,1 24385,http://riti04.cornwall.nhs.uk:7780,1 24386,http://rishworthschoolsowerbybridge.2day.ws,1 24387,http://ripleytowncouncil.org.uk,1 24388,http://www.stmarysceinf-prestbury.co.uk,1 24389,http://ringroads.co.uk,1 24390,http://ringandbring.com,1 24391,http://rigorousintuition.ca,1 24392,http://righttherapist.com,1 24393,http://3rdag.easysearch.org.uk,1 24394,http://rickmansworthsch.easysearch.org.uk,1 24395,http://richmondshire.gov.uk,1 24396,http://www.stmarysceva.northants.sch.uk,1 24397,http://www.stmaryscollege.wirral.sch.uk,1 24398,http://www.stmarysplaygroup.info,1 24399,http://richardbenyon.com,1 24400,http://www.stmattsprimary.org,1 24401,http://www.stmichaelandallangelspreschool.org.uk,1 24402,http://ribblevalleyhgv.com,1 24403,http://ribaappointments.com,1 24404,http://riazschoolofmotoring.netau.net,1 24405,http://ria.ru,1 24406,http://rhythmyx.surrey.ac.uk:9992,1 24407,http://rhythmyx.lawpack.co.uk:9992,1 24408,http://www.stmichaelinthehamletschool.com,1 24409,http://rhsweb,1 24410,http://rhoyle.cusd.claremont.edu,1 24411,http://rhonda-campbell.suite101.com,1 24412,http://rgsdrivertraining.co.uk,1 24413,http://rfgbc11,1 24414,http://reynolds-home-inspections.com,1 24415,http://www.stmichaels-eastwickham-ce-school.co.uk,1 24416,http://www.stmichaelscp.co.uk,1 24417,http://www.stmichaelspreschool-hilperton.org.uk,1 24418,http://www.stmonicasschool.co.uk,1 24419,http://review.wtrpartnerlearn.co.uk,1 24420,http://review.morgansindall-pensions.co.uk,1 24421,http://www.stnicholas-shepperton.org.uk,1 24422,http://retirephilippines.wetpaint.com,1 24423,http://retirementplanningnow.net,1 24424,http://retail.intra.bt.com,1 24425,http://www.stnicholasprimary.co.uk,1 24426,http://www.stnicholasprimaryradstock.co.uk,1 24427,http://www.stockporthealth.nwest.nhs.uk,1 24428,http://www.stockton.ac.uk,1 24429,http://response.pure360.com,1 24430,http://www.stockwellgrouppractice.co.uk,1 24431,http://resources.dynamic-learning.co.uk,1 24432,http://resourceportal.nextstep.org.uk,1 24433,http://resourcelists.st-andrews.ac.uk,1 24434,http://resourcecompanion.co.uk,1 24435,http://www.stoke-driving-school.co.uk,1 24436,http://research.info.com,1 24437,http://www.stokenchurchprimary.co.uk,1 24438,http://3rd9thruncornscouts.easysearch.org.uk,1 24439,http://rescue.utdforum.com,1 24440,http://3feetplease.org.uk,1 24441,http://renxueping.blog.sohu.com,1 24442,http://www.stokesleyprimary.co.uk,1 24443,http://rent-money.aidpage.com,1 24444,http://rendezvouscaravanclub.wetpaint.com,1 24445,http://renaultlaguna.pl,1 24446,http://remote.stylographics.co.uk,1 24447,http://relifecycle.com,1 24448,http://www.stolaf.edu,1 24449,http://reigatelibdems.org.uk,1 24450,http://reigate.easysearch.org.uk,1 24451,http://www.stonehousecorinium.co.uk,1 24452,http://regent.theorytestpro.co.uk,1 24453,http://reethandgunnerside.easysearch.org.uk,1 24454,http://reedinpartnership.co.uk,1 24455,http://redz.com,1 24456,http://reduce-your-co2.com,1 24457,http://www.stonepages.com,1 24458,http://rediger.dab.dk,1 24459,http://red-driving.co.uk,1 24460,http://reculverbrownies.easysearch.org.uk,1 24461,http://recruitment.direct.gov.uk/main/index.html,1 24462,http://recoveryegroup.com,1 24463,http://recordingworkshopuk.com,1 24464,http://rechercher.index-net.org,1 24465,http://www.stopgodriving.co.uk,1 24466,http://www.stophateuk.org,1 24467,http://rebuild.easysearch.org.uk,1 24468,http://www.stordammen.uppsala.se,1 24469,http://rebal.co.uk,1 24470,http://realitydrivingschool.co.uk,1 24471,http://ready2beat.com,1 24472,http://readmail.bust.com,1 24473,http://readitlaterlist.com,1 24474,http://readingsom.theorytestpro.co.uk,1 24475,http://readingsight.org.uk,1 24476,http://www.stormbox.com,1 24477,http://readingmencap.org.uk,1 24478,http://readingcab.org.uk,1 24479,http://readers.web.local,1 24480,http://reader.mac.com,1 24481,http://reachnet,1 24482,http://reachimmigration.com,1 24483,http://re-cpd.org.uk,1 24484,http://3ec3e2e3.linkbucks.com,1 24485,http://rdcmsdev,1 24486,http://rda.easysearch.org.uk,1 24487,http://www.stormfront.org,1 24488,http://rcintranet,1 24489,http://rchi.easysearch.org.uk,1 24490,http://rcdowarchives.blogspot.com,1 24491,http://rccenfield.org,1 24492,http://rc-web.mariecurie.org.uk,1 24493,http://rbwm.theorytestpro.co.uk,1 24494,http://rbhintranet.rbch.nhs.uk,1 24495,http://rba.co.uk,1 24496,http://raybird.theorytestpro.co.uk,1 24497,http://rawdonsom.com,1 24498,http://ratings.food.gov.uk,1 24499,http://raqueldiario.blogspot.com,1 24500,http://rapidlearn.accessacademy.net,1 24501,http://rapidcarscrap.co.uk,1 24502,http://www.stotfoldmill.com,1 24503,http://ranet,1 24504,http://rama.easysearch.org.uk,1 24505,http://ralphdeeds.hubpages.com,1 24506,http://raisingourgame.org,1 24507,http://railwaychildren.easysearch.org.uk,1 24508,http://rafbf.kreateit.co.uk,1 24509,http://radwagon.blogspot.com,1 24510,http://radnoryfc.easysearch.org.uk,1 24511,http://radar.easysearch.org.uk,1 24512,http://radag.easysearch.org.uk,1 24513,http://rachelcarson.org.uk,1 24514,http://raceonline2012.wordpress.com,1 24515,http://raceagainstglobalpoverty.direct.gov.uk/fairtrademarket/,1 24516,http://raceagainstglobalpoverty.direct.gov.uk/,1 24517,http://rabbitrendezvous.co.uk,1 24518,http://r4l.somerset.gov.uk,1 24519,http://r.verzu.com,1 24520,http://www.stow.ac.uk,1 24521,http://r.pepple.com,1 24522,http://qwest.newport.ac.uk,1 24523,http://qwebirc.swiftirc.net,1 24524,http://quilondra.com,1 24525,http://quikdig.com,1 24526,http://quickstartdrivingschool.co.uk,1 24527,http://questorstheatre.easysearch.org.uk,1 24528,http://www.stowmarketpeople.co.uk,1 24529,http://queens-honours-list.deluxe-private-hire.com,1 24530,http://quedgeley.2day.ws,1 24531,http://qub.ac.uk,1 24532,http://quality-computers.com,1 24533,http://qualcalculator.nextstep.org.uk,1 24534,http://quail.katalyst-creative.co.uk,1 24535,http://qsdata08w:8180,1 24536,http://www.stpetersedgmond.org.uk,1 24537,http://qms.trainingtracker.co.uk,1 24538,http://qehkl-inet,1 24539,http://qe2.schoolvle.org,1 24540,http://www.strandnursesbureau.com,1 24541,http://qcfiguide.skillsfundingagency.bis.gov.uk,1 24542,http://qatools-farm.netratings.com,1 24543,http://qahmrcstgweb.internal.rmplc.net,1 24544,http://q4s.eu,1 24545,http://pythia2,1 24546,http://pyramiddrivingschool.co.uk,1 24547,http://pyramidcomm.blogspot.com,1 24548,http://pwg.vu-creative.com,1 24549,http://pwaslough.org.uk,1 24550,http://pvqdriving.com,1 24551,http://push.co.uk,1 24552,http://purton.2day.ws,1 24553,http://purchase.tickets.com,1 24554,http://punsamajuk.com,1 24555,http://ztix.ziinga.com,1 24556,http://pulmuone.tistory.com,1 24557,http://pukybikes.co.uk,1 24558,http://pugwash:8079,1 24559,http://pudsey.2day.ws,1 24560,http://publishing.brookes.ac.uk,1 24561,http://publicsector.practicallaw.com,1 24562,http://www.strathclydecameras.com,1 24563,http://publiclawproject.org.uk,1 24564,http://www.strathclydefire.org,1 24565,http://publicapps.oxfordshire.gov.uk,1 24566,http://www.street-triple.co.uk,1 24567,http://www.streetangels.org.uk,1 24568,http://publicaccess1.hart.gov.uk,1 24569,http://publicaccess.westberks.gov.uk,1 24570,http://publicaccess.southampton.gov.uk,1 24571,http://www.streetdrive-dorset.co.uk,1 24572,http://public.klp.rm.com,1 24573,http://pubassist.co.uk,1 24574,http://www.streetfilms.org,1 24575,http://pttrainingcentre.personaltouchfs.com,1 24576,http://ptllsresource.co.uk,1 24577,http://ptgnocapp005.emea.nsn-net.net,1 24578,http://ptes.easysearch.org.uk,1 24579,http://www.streetgangs.com,1 24580,http://pt.luna.tv,1 24581,http://pt.cleanright.eu,1 24582,http://3cmt.com,1 24583,http://psycats.eu,1 24584,http://pss.org.uk,1 24585,http://psoteen.sevenpointsix.net,1 24586,http://psngb.org,1 24587,http://pru.co.uk,1 24588,http://www.streetsaheadsom.co.uk,1 24589,http://proz.mail.everyone.net,1 24590,http://www.streettalk.org.uk,1 24591,http://proxy4.wiltshire.ac.uk,1 24592,http://proxy2.wiltshire.ac.uk,1 24593,http://proxy1.wiltshire.ac.uk,1 24594,http://proxy.hkpolice.gov,1 24595,http://www.streetwise.me,1 24596,http://zurich.angloinfo.com,1 24597,http://protocol.slc.co.uk,1 24598,http://www.streetwisedrivertraining.co.uk,1 24599,http://zvsprsdp01,1 24600,http://propertytoyou.co.uk,1 24601,http://propertymanagementfaq.com,1 24602,http://www.streetwisesouthampton.co.uk,1 24603,http://property.adflyerblog.co.uk,1 24604,http://proof.ems-media.co.uk,1 24605,http://www.stress.org.uk,1 24606,http://promenade.omegle.com,1 24607,http://projects.tengizchevroil.com,1 24608,http://projects.dfid.gov.uk,1 24609,http://www.strictly-driving.co.uk,1 24610,http://proj.moeaidb.gov.tw,1 24611,http://progressivemarketinguk.com,1 24612,http://progressdrivingschool.com,1 24613,http://programmes.stv.tv,1 24614,http://professionaldivingacademy.com,1 24615,http://prodrive.me,1 24616,http://procurement.hmprisonservice.gov.uk,1 24617,http://privateclient.p01edi.practicallaw.com,1 24618,http://prisonofficer.org.uk,1 24619,http://prismdt.theorytestpro.co.uk,1 24620,http://prioryparkis.easysearch.org.uk,1 24621,http://printserver,1 24622,http://princecharlescinema.com,1 24623,http://35thrsg.easysearch.org.uk,1 24624,http://prima.theorytestpro.co.uk,1 24625,http://prideofmerseyside.co.uk,1 24626,http://pricehough.easysearch.org.uk,1 24627,http://prfast.easysearch.org.uk,1 24628,http://preview.stefanhamlett.vpweb.co.uk,1 24629,http://preview.rcsed.ac.uk,1 24630,http://preview.paulinegallagher.vpweb.co.uk,1 24631,http://preview.maxx-digital.co.uk,1 24632,http://preview.gradsouthwest.prospects.ac.uk,1 24633,http://prestonczyk.co.uk,1 24634,http://prestoncofeprimary.co.uk,1 24635,http://preston.searchimprove.com,1 24636,http://presencial.eoicampus.org,1 24637,http://premier.education-demo.co.uk,1 24638,http://prawojazdywuk.files.wordpress.com,1 24639,http://www.strodepark.org.uk,1 24640,http://www.strodes.ac.uk,1 24641,http://practicelifeintheuktest.co.uk,1 24642,http://practical.theorytestpro.co.uk,1 24643,http://ppmnortheast.co.uk,1 24644,http://ppar.easysearch.org.uk,1 24645,http://powerofinformation.wordpress.com,1 24646,http://www.ststravel.co.uk,1 24647,http://powerfulpartnerships.easysearch.org.uk,1 24648,http://www.stthomasprimary.com,1 24649,http://potsuk.org,1 24650,http://potha2,1 24651,http://postpals.co.uk,1 24652,http://32ndgds.easysearch.org.uk,1 24653,http://www.stuartcooperdrivingschool.co.uk,1 24654,http://posta9a.mailbeta.libero.it,1 24655,http://posta73a.mailbeta.libero.it,1 24656,http://posta66a.mailbeta.libero.it,1 24657,http://posta59a.mailbeta.libero.it,1 24658,http://posta56b.mailbeta.libero.it,1 24659,http://posta56a.mailbeta.libero.it,1 24660,http://posta54a.mailbeta.libero.it,1 24661,http://posta53a.mailbeta.libero.it,1 24662,http://posta52b.mailbeta.libero.it,1 24663,http://posta48b.mailbeta.libero.it,1 24664,http://posta43b.mailbeta.libero.it,1 24665,http://posta40a.mailbeta.libero.it,1 24666,http://posta39b.mailbeta.libero.it,1 24667,http://posta38b.mailbeta.libero.it,1 24668,http://posta38a.mailbeta.libero.it,1 24669,http://posta34a.mailbeta.libero.it,1 24670,http://posta32b.mailbeta.libero.it,1 24671,http://posta22a.mailbeta.libero.it,1 24672,http://posta1a.mailbeta.libero.it,1 24673,http://posta19a.mailbeta.libero.it,1 24674,http://positivestepsintowork.org,1 24675,http://portswood.info,1 24676,http://portstewart.net,1 24677,http://portsmouth.infolinia.org,1 24678,http://portsmouth-landlord-show.org,1 24679,http://portreathsurflifesavingclub.easysearch.org.uk,1 24680,http://porthealth,1 24681,http://portalwiedzy.onet.pl,1 24682,http://portalweb,1 24683,http://300zx.co.uk,1 24684,http://portalprod.mli.org.il,1 24685,http://portaldemo.olminfoserve.co.uk,1 24686,http://portaldem1.cdpsoft.com,1 24687,http://2xgw.newmillsschool.co.uk,1 24688,http://www.student-jobs.co.uk,1 24689,http://www.student-service.co.uk,1 24690,http://www.student-support.stir.ac.uk,1 24691,http://portal.stclares.ac.uk,1 24692,http://www.studentaccommodation.org,1 24693,http://portal.rta.local,1 24694,http://www.studentbikehire.com,1 24695,http://www.studentcalculator.org.uk,1 24696,http://www.studentcash.org.uk,1 24697,http://portal.lsri.nottingham.ac.uk,1 24698,http://www.studentcashquick.com,1 24699,http://www.studentconnect.co.uk,1 24700,http://portal.hickorytech.net,1 24701,http://portal.gov.cz,1 24702,http://portal.dwmh.nhs.uk,1 24703,http://portal.chester.ac.uk,1 24704,http://www.studentdigsworcester.co.uk,1 24705,http://portal.bradfordacademy.co.uk,1 24706,http://portal.attnet.mcore.com,1 24707,http://portal-wigan,1 24708,http://popssee.com,1 24709,http://pontyates.2day.ws,1 24710,http://pont-dc1,1 24711,http://www.studentfinance.direct.gov.uk/calculator/studentfinancecalculator/1011/hei_course_search.xhtml,1 24712,http://www.studentfinance.direct.gov.uk/calculator/studentfinancecalculator/1011/hei_course_search_results_course.xhtml,1 24713,http://www.studentfinance.direct.gov.uk/calculator/studentfinancecalculator/1011/household_income.xhtml,1 24714,http://polski-instruktor.com,1 24715,http://www.studentfinance.direct.gov.uk/calculator/studentfinancecalculator/1011/previous_study_part2.xhtml,1 24716,http://www.studentfinance.direct.gov.uk/calculator/studentfinancecalculator/1011/save_Illustration.xhtml,1 24717,http://politicallandscaping.wordpress.com,1 24718,http://polishstudent.co.uk,1 24719,http://www.studentfinance.direct.gov.uk/calculator/studentfinancecalculator/1011/save_successful.xhtml,1 24720,http://polishforum.eu,1 24721,http://polishexpress.polacy.co.uk,1 24722,http://polishbelfast.co.uk,1 24723,http://www.studentfinance.direct.gov.uk/calculator/studentfinancecalculator/1011/summary.xhtml,1 24724,http://policereports.com,1 24725,http://pol.proz.com,1 24726,http://www.studentfinance.direct.gov.uk/goodbye,1 24727,http://www.studentfinance.org.uk,1 24728,http://poisk.ngs.ru,1 24729,http://www.studentfinancevideo.tv,1 24730,http://pocztaplus.onet.pl,1 24731,http://www.studenthousinglancaster.co.uk,1 24732,http://www.studentmoneynet.co.uk,1 24733,http://www.studentmoneysaver.com,1 24734,http://pndworkwear.co.uk:2095,1 24735,http://www.students.teachers.org.uk,1 24736,http://www.studentsdrivingschool.com,1 24737,http://plp-sp2010,1 24738,http://plloyd.theorytestpro.co.uk,1 24739,http://plbpc013.ouhk.edu.hk,1 24740,http://www.studentsloveuni.co.uk,1 24741,http://playsmartplaysafe.eu,1 24742,http://www.studerenuk.be,1 24743,http://platinumsom.com,1 24744,http://platinumschoolofmotoring.com,1 24745,http://platforms.wiki.dev,1 24746,http://platform-one.suffolkone.org,1 24747,http://plasmenai.co.uk,1 24748,http://plasina.rutil.net,1 24749,http://plashet.weebly.com,1 24750,http://planportal.erewash.gov.uk,1 24751,http://planningdocs.eastleigh.gov.uk,1 24752,http://planning.westlothian.gov.uk,1 24753,http://www.studiawanglii.eu,1 24754,http://planning.wandsworth.gov.uk,1 24755,http://planning.redbridge.gov.uk,1 24756,http://planning.cardiff.gov.uk,1 24757,http://2wheelsridertraining.co.uk,1 24758,http://planetls,1 24759,http://placesforpeople.co.uk,1 24760,http://www.studyrama.be,1 24761,http://pl.ask.com,1 24762,http://www.studyvisauk.com,1 24763,http://pjschildcare.weebly.com,1 24764,http://pjgscrapcar.co.uk,1 24765,http://pizza.it,1 24766,http://pituitaryfoundation.easysearch.org.uk,1 24767,http://www.sturgeweber.org.uk,1 24768,http://www.stvincent.ac.uk,1 24769,http://piripedia.blogspot.com,1 24770,http://pinkfishmedia.net,1 24771,http://pine4parrots.co.uk,1 24772,http://pinboard.in,1 24773,http://pim.globalactionplan.org.uk,1 24774,http://pickersleigh-nhw.co.cc,1 24775,http://pic6.piczo.com,1 24776,http://pht.yhs.search.yahoo.com,1 24777,http://photoplus.co.nz,1 24778,http://photo.net,1 24779,http://photo-forum.net,1 24780,http://phonebook,1 24781,http://phoenixholidayretreat.co.uk,1 24782,http://phoenix.ps.gov.uk:8000,1 24783,http://phoenix-som.weebly.com,1 24784,http://www.stx.ox.ac.uk,1 24785,http://www.styledriving.co.uk,1 24786,http://phillipsdrivertraining.co.uk,1 24787,http://phillips-griffiths.co.uk,1 24788,http://philholden.edublogs.org,1 24789,http://phbprograms,1 24790,http://pharmindex.com,1 24791,http://pharmacyregulation.org,1 24792,http://www.su.ic.ac.uk,1 24793,http://www.subaru-impreza.org,1 24794,http://2ndwt7graysbrownies.easysearch.org.uk,1 24795,http://www.subjectfinder.com,1 24796,http://2ndnsg.easysearch.org.uk,1 24797,http://pg.digital-ink.co.uk,1 24798,http://2ndbutssg.easysearch.org.uk,1 24799,http://peugeotrczforum.co.uk,1 24800,http://petercannell.com,1 24801,http://www.submit-it.com,1 24802,http://peterboroughdrivingschool.learning2drive.net,1 24803,http://www.subn.org,1 24804,http://peterboras.net,1 24805,http://www.subu.org.uk,1 24806,http://personalpensions.co.uk,1 24807,http://personallicencebirmingham.co.uk,1 24808,http://persiannurses.blogfa.com,1 24809,http://pereklubi.com,1 24810,http://peperonity.com,1 24811,http://pepa-online.org.uk,1 24812,http://people4people.org.uk,1 24813,http://people.buckschildrenstrust.org.uk,1 24814,http://penysarnyc.easysearch.org.uk,1 24815,http://penwithha.org.uk,1 24816,http://pentalndcc.easysearch.org.uk,1 24817,http://pensionsportal,1 24818,http://pensionselfservice.dev,1 24819,http://www.sudbury.org.uk,1 24820,http://www.suecookedrivingschool.co.uk,1 24821,http://www.suesdirectpayments.org.uk,1 24822,http://www.sueweir.co.uk,1 24823,http://www.suffolk.ac.uk,1 24824,http://www.suffolkmultiples.org,1 24825,http://pensions,1 24826,http://penrhiw-pal.2day.ws,1 24827,http://pennmanor.info,1 24828,http://pennineinstrumentservicesltd.cmail4.com,1 24829,http://pennineinstrumentservicesltd.cmail1.com,1 24830,http://pegasus.theorytestpro.co.uk,1 24831,http://pedia.myjcom.jp,1 24832,http://pedagogie.ac-toulouse.fr,1 24833,http://pe,1 24834,http://www.suffolkroadsafe.net,1 24835,http://pdf.healthhaven.com,1 24836,http://pcwww.liv.ac.uk,1 24837,http://pct,1 24838,http://pcshmrcscotlandeast.weebly.com,1 24839,http://pcicportal,1 24840,http://www.sugarscape.com,1 24841,http://www.suggest.org.uk,1 24842,http://pc54b:3000,1 24843,http://www.suiteam.com,1 24844,http://www.suitsmen.co.uk,1 24845,http://pb-sp01,1 24846,http://payrollservices-cisscheme.blogspot.com,1 24847,http://www.summercroft.net,1 24848,http://payandworkrightscampaign.direct.gov.uk/index/html,1 24849,http://www.summers-som.co.uk,1 24850,http://paulsmith1442.theorytestpro.co.uk,1 24851,http://pauls-elearning.tumblr.com,1 24852,http://pauln.livejournal.com,1 24853,http://paulhughes.theorytestpro.co.uk,1 24854,http://paulfounddriving.co.uk,1 24855,http://paulclarke.com,1 24856,http://paulbradley.tv,1 24857,http://paul-advantagesofdla.blogspot.com,1 24858,http://www.summitdrivingschool.co.uk,1 24859,http://patrick4driving.co.uk,1 24860,http://www.sun1419.net,1 24861,http://passyourtheory.org.uk,1 24862,http://passyourbiketest.co.uk,1 24863,http://www.sunderland-driving-schools.co.uk,1 24864,http://passwiththedale.co.uk,1 24865,http://passwithpurple.vpweb.co.uk,1 24866,http://passwithpanther.theorytestpro.co.uk,1 24867,http://passwithcbs.co.uk,1 24868,http://passwithalison.theorytestpro.co.uk,1 24869,http://passwithaces.com,1 24870,http://passuok.theorytestpro.co.uk,1 24871,http://passroute.co.uk,1 24872,http://www.sunderlandcarers.co.uk,1 24873,http://passme.theorytestpro.co.uk,1 24874,http://passmasters.co.uk,1 24875,http://passmarx.com,1 24876,http://www.sunderlandchildrenscentres.co.uk,1 24877,http://www.sunderlandschools.org,1 24878,http://passinkent.com,1 24879,http://passingwithdavid.co.uk,1 24880,http://passfirsttime.theorytestpro.co.uk,1 24881,http://passfast.theorytestpro.co.uk,1 24882,http://passdrivetest.co.uk,1 24883,http://275290.theorytestpro.co.uk,1 24884,http://passatmsm.com,1 24885,http://pass2passplus.co.uk,1 24886,http://www.sundonmotoringschool.co.uk,1 24887,http://pass-slm.co.uk,1 24888,http://pass-drive.co.uk,1 24889,http://www.sundridge.kent.sch.uk,1 24890,http://partnershipcouncil.easysearch.org.uk,1 24891,http://partner19.mydomainadvisor.com,1 24892,http://parrotzoo.easysearch.org.uk,1 24893,http://parklands.newcastle.gov.uk,1 24894,http://parking.npt.gov.uk,1 24895,http://www.sunglassesdirect.co.uk,1 24896,http://parkfieldnewschool.org.uk,1 24897,http://parkfieldmot.co.uk,1 24898,http://parkfield.edmodo.com,1 24899,http://parishes.durham.gov.uk,1 24900,http://parishcouncils.org,1 24901,http://www.sunhilldaycare.com,1 24902,http://parentsprotect.co.uk,1 24903,http://parentknowhow.surreycc.gov.uk,1 24904,http://www.sunrisemedicalpractice.co.uk,1 24905,http://papanurgle.net,1 24906,http://pangbourne.2day.ws,1 24907,http://pandys.org,1 24908,http://pandora.salford.ac.uk,1 24909,http://pam.wikipedia.org,1 24910,http://pal-svr-intra,1 24911,http://paisleydrivingschools.com,1 24912,http://painterspitstop.com,1 24913,http://painsley.co.uk,1 24914,http://pages.pagemodo.com,1 24915,http://www.sunshinecentre.org.uk,1 24916,http://www.supanet.com,1 24917,http://www.super-drive.co.uk,1 24918,http://pafinder.org.uk,1 24919,http://pacarazl.dsta.gov.sg,1 24920,http://pablospizzaplace.proboards.com,1 24921,http://paanic.org,1 24922,http://p8080-library.shef.ac.uk.eresources.shef.ac.uk,1 24923,http://p3bjawabali.pln.co.id,1 24924,http://p-claims-lb,1 24925,http://oxoniantravel.co.uk,1 24926,http://oxfordklass.com,1 24927,http://www.supermama.com,1 24928,http://www.supersaveralert.com,1 24929,http://oxford.cancerlinks.org.uk,1 24930,http://oxford-cc.devshowcase.co.uk,1 24931,http://oxfam.easysearch.org.uk,1 24932,http://www.supportandcare.org,1 24933,http://ox.ac.uk,1 24934,http://ownspy.com,1 24935,http://owens-driving-school.co.uk,1 24936,http://owa2.tate.org.uk,1 24937,http://owa.esher.ac.uk,1 24938,http://overthegate.myfreeforum.org,1 24939,http://www.supportsolutions.co.uk,1 24940,http://outlook.lipa.ac.uk,1 24941,http://www.surajdrivingschool.com,1 24942,http://ourtimes.wordpress.com,1 24943,http://ourcelebration.easysearch.org.uk,1 24944,http://our-ladys.oxon.sch.uk,1 24945,http://ouh.cheryl.nhs.uk,1 24946,http://ou.businessrestructuringtoolkit.com,1 24947,http://www.surecareshropshire.co.uk,1 24948,http://otonwheels.wordpress.com,1 24949,http://otomandriving.com,1 24950,http://osti.ic.cz,1 24951,http://oshelcdm.oxfordmedicine.com:1080,1 24952,http://oshdn-server.oshdn.local:4080,1 24953,http://osbaldwicks.easysearch.org.uk,1 24954,http://ortigra.net23.net,1 24955,http://orthostatictremor.co.uk,1 24956,http://orszaginfo.itdhungary.com,1 24957,http://orpingtonguides.easysearch.org.uk,1 24958,http://oro.open.ac.uk,1 24959,http://orion,1 24960,http://originalcarbon.com,1 24961,http://www.surefiredriving.co.uk,1 24962,http://origin.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/MotoringContacts/DG_178028,1 24963,http://origin.direct.gov.uk/en/Dl1/Directories/DG_10011165,1 24964,http://origin.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4yAQ*TW5rBQLTPx1tOskm8tuVbdnRAElVh2TAml2*335cGK5TSonp*YCzLzxPN4MYCWknqByEsavZnom7cskLDaiqRn5b1aMaK4M2Equ9o1WJgYCYyvzGSaK8pbV7dp4rfM1eBZCac5!11oFfx9c3ihMTR5JDnvZGAvl1hVutN7ZRWdH4aKbDodDwGrJqQ7W4i3Yv3T!nRQMU9Gq*RazdeesGd013kCLFaMVl2815d5RVhVezh*xfb6c!*i4FYyvWAfHGercqwpX1f1T54dug2ZIiq3dcGkFROGdcgawgJFVWF9mZiPTG99HplKloH*I9hhRLjEEAM0SCEcqTn6!YpCgZDZWb*yF3rgh7oTz1p57TXRNsTT3xJx7zP*tzMVQtWj7sz4YtkRZoVFhM5mauCkqf4Vd8igs!pDUh6Qu5AOWeCw5h8Uei89hkceic9jMY7Mjhvxw2htyvUsVFZJP!6VdLXoBLvIO9PHTU5TXfPFTlIO!DJcKh1zm3E0*rHAXJUEvCV4jKTvLA043L!2r7DKi!bDsPv5oojxCcZqADMS!XVM4aOgV*blFzPfoz4cSXCV7qKmX*TUVhLdQDUo0mgrcQjWo!FgqkN1CNWjgaKpPr8sYqsF5GE2VXKZyvwWxrql59hUnkm4wb98BG21E2Q__/results,1 24965,http://origin.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZQsjVr0Xps0s*vAbJLsNqoT!2LHJiBceYYhH6cEn5OWPaBwyABhl5PCavlMHStklPbGwTNqOGzmwA5lOAccFsjQWnz2porrtrFTrpS2w0w4VbVjNLckNDorwFPAHuYFROsmD3eJdywEDUrceCVG8T5iVnU1qwOlMJTCkeZYbnH8iUs81i2hAmPiSXs5LHTHeP!8Xg3fnEeQPWjTkNpq0sw4JjPJPDTB8t7Xt3KKxJiWAuOu5MrN*yz4FYtUW!J7rFULur4cIKGS9mdyF*i2D3*PuWV4FmRk5Jkvl0pjRq6oz9HzPyN*swi2GU79hRs*y5F6RGpKKLNUuSIVJT4VilSHpGKGrhZ6sftskUq!h42S!XrUqX9LfTXVuG1D1qO6q3R5huAS4F!/results,1 24966,http://origin-forums.horseandhound.co.uk,1 24967,http://orientationgb.com,1 24968,http://organicarganoil.org.uk,1 24969,http://orfordcevapschool.easysearch.org.uk,1 24970,http://oreston.primarysite.net,1 24971,http://orderline.education.gov.uk,1 24972,http://orchardprimary.easysearch.org.uk,1 24973,http://orangutrans.evoluciona.com,1 24974,http://opusgold.com,1 24975,http://optirisk.typepad.com,1 24976,http://optimizer.adnetwork.net,1 24977,http://www.sureridingmotorcycletrainingleicester.co.uk,1 24978,http://operator-safety-training.co.uk,1 24979,http://operationfatherhood.org,1 24980,http://openreach.intra.bt.com,1 24981,http://www.surestartfpmcw.org.uk,1 24982,http://openlikejob.info,1 24983,http://ooakforum.com,1 24984,http://ontrack.theorytestpro.co.uk,1 24985,http://ontolo.com,1 24986,http://onthemove,1 24987,http://ons.gov.uk,1 24988,http://onoffer.tickets.com,1 24989,http://onlinevragenstellen.nl,1 24990,http://onlineservices.cpag.org.uk,1 24991,http://www.surreydrivingforcedrivinglessons.com,1 24992,http://onlinemotortrader.co.uk,1 24993,http://onlineborders.org.uk,1 24994,http://www.surreydrivingschool.co.uk,1 24995,http://online.ukwelcomes.businesslink.gov.uk,1 24996,http://online.surreycc.gov.uk,1 24997,http://online.sfx.ac.uk,1 24998,http://online.lthtr.nhs.uk,1 24999,http://online.hult.edu,1 25000,http://online.goinglobal.com,1 25001,http://www.surreyglazingsupplies.co.uk,1 25002,http://online.coleg-powys.ac.uk,1 25003,http://online.chiumento.co.uk,1 25004,http://online-funeral.info,1 25005,http://www.surreypoliceonline.co.uk,1 25006,http://onestepvisa.com,1 25007,http://www.survivefrance.com,1 25008,http://oneconnect.kreateit.co.uk,1 25009,http://www.susanna-morrill.co.uk,1 25010,http://www.susantaylordrivingschool.co.uk,1 25011,http://www.sussexcancer.net,1 25012,http://www.sussexcancer.nhs.uk,1 25013,http://one-stop-diy.co.uk,1 25014,http://ondemandold.kingshurst.ac.uk,1 25015,http://onairosjs.wordpress.com,1 25016,http://on.iptorrents.com,1 25017,http://omanhospital.com,1 25018,http://olssol001,1 25019,http://olprcps.easysearch.org.uk,1 25020,http://ollyshospitaltour.easysearch.org.uk,1 25021,http://ollies-cool.com,1 25022,http://www.sussexdrivingschools.co.uk,1 25023,http://www.sussexpartnership.nhs.uk,1 25024,http://www.sussexsaferroads.gov.uk,1 25025,http://oldhamcab.co.uk,1 25026,http://oldfartsruleok.co.uk,1 25027,http://oldburybenefice.easysearch.org.uk,1 25028,http://old.gold.ac.uk,1 25029,http://old.blog.edu.cn,1 25030,http://oilondres.com.br,1 25031,http://oiiaustralia.com,1 25032,http://oia.easysearch.org.uk,1 25033,http://ohalloransdrivingtuition.theorytestpro.co.uk,1 25034,http://oh22svr,1 25035,http://www.sustainability.manchester.ac.uk,1 25036,http://oftnet.oft.local,1 25037,http://www.sustainabilitymatters.org.uk,1 25038,http://www.sustainabilityteachers.com,1 25039,http://ofsted.biz,1 25040,http://offtoseemylawyer.com,1 25041,http://offthekerb.org.uk,1 25042,http://office.microsoft.com,1 25043,http://oe.bpweb.bp.com,1 25044,http://odnoklassniki.ru,1 25045,http://odnobaus.ru,1 25046,http://www.sustainablecrediton.org.uk,1 25047,http://www.sustainableeventsolutions.com,1 25048,http://october.northtyneside.gov.uk:7778,1 25049,http://2469atc.easysearch.org.uk,1 25050,http://www.sustainableroutes.co.uk,1 25051,http://obywatelstwo.org.uk,1 25052,http://obtree.south-hams.gov.uk,1 25053,http://obtree-inter.nottscc.gov.uk,1 25054,http://www.suttoncoldfield-locksmiths.co.uk,1 25055,http://oakwood.posterous.com,1 25056,http://oakfieldhspta.easysearch.org.uk,1 25057,http://nz.mg261.mail.yahoo.com,1 25058,http://nz.mg1.mail.yahoo.com,1 25059,http://nz.mc961.mail.yahoo.com,1 25060,http://www.suttonhousingpartnership.org.uk,1 25061,http://www.suttonwinson.com,1 25062,http://nymail.spray.se,1 25063,http://nww.this.nhs.uk,1 25064,http://nww.syndas.nhs.uk,1 25065,http://nww.surreycommunityhealth.nhs.uk,1 25066,http://www.suug.co.uk,1 25067,http://222.178.184.133:8080,1 25068,http://nww.sth.nhs.uk,1 25069,http://www.suzannecollier.com,1 25070,http://nww.seeview.gyw.nhs.uk,1 25071,http://nww.pat.nhs.uk,1 25072,http://nww.nwas.nhs.uk,1 25073,http://nww.nottstpct.nhs.uk,1 25074,http://www.suzannehartleysdrivingschool.co.uk,1 25075,http://www.svforum.pl,1 25076,http://nww.extranet.asp.nhs.uk,1 25077,http://www.svobodainfo.org,1 25078,http://nww.clch.nhs.uk,1 25079,http://www.swannrecruitment.co.uk,1 25080,http://nwlciam.easysearch.org.uk,1 25081,http://nwinet001:8002,1 25082,http://nwht.btck.co.uk,1 25083,http://nwfportal,1 25084,http://nwchurch.easysearch.org.uk,1 25085,http://nwcable.net,1 25086,http://nwaa.easysearch.org.uk,1 25087,http://nw.wea.org.uk,1 25088,http://nw-cbtsvr1:8080,1 25089,http://www.swansea-driving-school.co.uk,1 25090,http://nvqassessors.org,1 25091,http://nusu.co.uk,1 25092,http://221.120.233.10,1 25093,http://nurblog11.wordpress.com,1 25094,http://www.swansea-local.co.uk,1 25095,http://ntvhonda.proboards.com,1 25096,http://ntscotland.easysearch.org.uk,1 25097,http://nthferribyutd.easysearch.org.uk,1 25098,http://ntcvoyager,1 25099,http://ntc.cc.inrev.gov.uk,1 25100,http://nt935007,1 25101,http://nseas-px.rtrk.co.uk,1 25102,http://www.swanswellmedicalcentre.co.uk,1 25103,http://nsd.theorytestpro.co.uk,1 25104,http://www.swanwickhall.derbyshire.sch.uk,1 25105,http://nrich.maths.org,1 25106,http://nrgwise.co.uk,1 25107,http://nrg.theorytestpro.co.uk,1 25108,http://www.swbspayroll.co.uk,1 25109,http://nram.co.uk,1 25110,http://np-wcms-staging.link2.gpn.gov.uk,1 25111,http://www.sweetnet.com,1 25112,http://www.sweynepark.com,1 25113,http://novomind01,1 25114,http://nottsgymgirls.easysearch.org.uk,1 25115,http://nottscc.theorytestpro.co.uk,1 25116,http://notts-ho.myextranet.co.uk,1 25117,http://nottinghamyoungdrivers.com,1 25118,http://www.swgs.wilts.sch.uk,1 25119,http://nottingham.ac.uk,1 25120,http://notrukgen07.rukdom5.renault.uk,1 25121,http://notify.webproxy-lidl.com,1 25122,http://www.swiatczarnegoteriera.republika.pl,1 25123,http://www.swiftfit.uk.com,1 25124,http://notice.achilles.co.uk,1 25125,http://www.swiftpass.co.uk,1 25126,http://notesbrokensociety.wordpress.com,1 25127,http://nosca.easysearch.org.uk,1 25128,http://northwiltsroadar.co.uk,1 25129,http://2203hatfield.easysearch.org.uk,1 25130,http://northumberland.ac.uk,1 25131,http://northshieldschildminders.co.uk,1 25132,http://northshields-drivingschool.co.uk,1 25133,http://northlindsey.ac.uk,1 25134,http://northhantsmum.wordpress.com,1 25135,http://northeastassembly.wordpress.com,1 25136,http://www.swindonlscb.org.uk,1 25137,http://www.swindonsilversurfers.co.uk,1 25138,http://northantsconsortium.co.uk.powerpanel-host.co.uk,1 25139,http://northants.police.uk,1 25140,http://northants.lbhillingdon.hillingdon.gov.uk,1 25141,http://northanston.2day.ws,1 25142,http://www.swineflubritain.co.uk,1 25143,http://www.swingingheaven.co.uk,1 25144,http://220.191.158.69:10011,1 25145,http://www.swintonsizzler.co.uk,1 25146,http://norfolktowbars.vpweb.co.uk,1 25147,http://nora.cc,1 25148,http://www.swisscorner.com,1 25149,http://nofweb,1 25150,http://noelsdrivingsch.co.uk,1 25151,http://noagendaforums.com,1 25152,http://www.swissembassy.org.uk,1 25153,http://no.search.yahoo.com,1 25154,http://www.swissvalley-schoolofmotoring.co.uk,1 25155,http://nnet-server.com,1 25156,http://www.swoosh.me.uk,1 25157,http://nm40.abv.bg,1 25158,http://nlgnhs.easysearch.org.uk,1 25159,http://nle.nottingham.ac.uk,1 25160,http://www.sworcs.ac.uk,1 25161,http://nl.yhs4.search.yahoo.com,1 25162,http://www.swpf.org,1 25163,http://21stesg.easysearch.org.uk,1 25164,http://www.swsalloys.co.uk,1 25165,http://nissan-navara.net,1 25166,http://nippyhire.com,1 25167,http://ninezcolombianico.blogspot.com,1 25168,http://www.sycamorehousesurgery.co.uk,1 25169,http://nigelsway.com,1 25170,http://www.sycop.gov.uk,1 25171,http://nidos.clients.civiccomputing.com,1 25172,http://nicksdriving.squarespace.com,1 25173,http://nichollsschoolofmotoring.co.uk,1 25174,http://nicedrive.theorytestpro.co.uk,1 25175,http://zyciewuk.com,1 25176,http://nibis.ni.schule.de,1 25177,http://nhtsurvey.econtrack.co.uk,1 25178,http://nhssm.org.uk,1 25179,http://www.symbaloo.com,1 25180,http://www.synergynetworksolutions.co.uk,1 25181,http://nhs-ayot,1 25182,http://nggc.easysearch.org.uk,1 25183,http://nexttestsecure.studentfinance.direct.gov.uk/protocol/index.do,1 25184,http://nexgen.simplyms.com,1 25185,http://newventuredt.weebly.com,1 25186,http://newtonschoolwem.easysearch.org.uk,1 25187,http://www.synthetix-ec2.com,1 25188,http://newsite.som.org.uk,1 25189,http://www.systemnetwork.net:2095,1 25190,http://www.syw2w.co.uk,1 25191,http://news.uk.msn.com,1 25192,http://news.sterlingpensions.co.uk,1 25193,http://news.rocketsoftware.co.uk,1 25194,http://news.plus.qinetiq.com,1 25195,http://news.northfields.co.uk,1 25196,http://news.myhammer.co.uk,1 25197,http://news.cheapflights.co.uk,1 25198,http://www.t-zones.co.uk,1 25199,http://newportinfantschool.taw.org.uk,1 25200,http://newms03,1 25201,http://218.104.166.34,1 25202,http://www.t2ldrivingschool.co.uk,1 25203,http://newforest.gov.uk,1 25204,http://newforest.easysearch.org.uk,1 25205,http://newdrugapprovals.com,1 25206,http://newdle.noonnoppi.com,1 25207,http://newdirectionsreading.co.uk,1 25208,http://newchurchculcheth.easysearch.org.uk,1 25209,http://www.t3sc.org,1 25210,http://newcastle.easyads123.co.uk,1 25211,http://newarthill.2day.ws,1 25212,http://new.vwclub.bg,1 25213,http://new.totallyyours.co.uk,1 25214,http://new.snitt.co.uk,1 25215,http://new.ourdigitalculture.org,1 25216,http://www.tabstraining.co.uk,1 25217,http://www.tachmancentral.co.uk,1 25218,http://zzx27.com,1 25219,http://nevad.theorytestpro.co.uk,1 25220,http://www.tacklingflytipping.com,1 25221,http://network.nationalcollege.org.uk,1 25222,http://netvet.wustl.edu,1 25223,http://netmanager,1 25224,http://netex.mako.co.il,1 25225,http://nestscheme-st.in.tapue.com,1 25226,http://nessr.easysearch.org.uk,1 25227,http://www.tacticalairsoftshop.co.uk,1 25228,http://nemo,1 25229,http://nelsonslettings.com,1 25230,http://nelar.easysearch.org.uk,1 25231,http://nel-son.co.uk,1 25232,http://neiltest.theorytestpro.co.uk,1 25233,http://neilswheelsdrivingschool.co.uk,1 25234,http://217.36.75.141,1 25235,http://www.takeheart.co.uk,1 25236,http://needlicence.com,1 25237,http://nead-scotland.org,1 25238,http://www.takepartexeter.org,1 25239,http://217.146.188.199,1 25240,http://www.takethefamily.com,1 25241,http://ncdt.theorytestpro.co.uk,1 25242,http://nccu.edu.tw,1 25243,http://nc.gov.ua,1 25244,http://nc-schoolofmotoring.co.uk,1 25245,http://nbcnet.nbcdomain.nbc.gov.uk,1 25246,http://nawthenoo.net,1 25247,http://navestockside.2day.ws,1 25248,http://www.talk2gether.nhs.uk,1 25249,http://nationalpupildatabase.wikispaces.com,1 25250,http://www.talkingpensions-jti.co.uk,1 25251,http://www.talkreviews.co.uk,1 25252,http://nationalarchives,1 25253,http://naszetaunton.co.uk,1 25254,http://nass.co.uk,1 25255,http://nasgp.wordpress.com,1 25256,http://nanninginfosite.editboard.com,1 25257,http://namlife.org,1 25258,http://www.tamatthews.co.uk,1 25259,http://naiz.mn,1 25260,http://n06-p-x3sql01.sagedev.com:81,1 25261,http://myzone1.roehampton.ac.uk,1 25262,http://myzerowaste.com,1 25263,http://www.tamesideadultprospectus.co.uk,1 25264,http://myweb.westnet.com.au,1 25265,http://www.tamesidehospital.nhs.uk,1 25266,http://www.tamesidesafeguardingchildren.org.uk,1 25267,http://mytunstall.co.uk,1 25268,http://www.tamsbrig.co.uk,1 25269,http://www.tandridge.gov.uk:80,1 25270,http://mysutton-test.sntqa.com,1 25271,http://mysocialstudies.net,1 25272,http://216924904991602.iframehost.com,1 25273,http://mysite.verizon.net,1 25274,http://mysite.cherokee.k12.ga.us,1 25275,http://mysignpost.org,1 25276,http://myservices.hmps.gsi.gov.uk,1 25277,http://mysearchindex.net,1 25278,http://mysdc.southdowns.ac.uk,1 25279,http://216.7.158.187:2111,1 25280,http://myportal.walsallcs.com,1 25281,http://216.7.153.82:2111,1 25282,http://myperfectpet.com,1 25283,http://mynorthstate.net,1 25284,http://216.194.248.21,1 25285,http://mymotor.biz,1 25286,http://www.tarleton-school-of-motoring.co.uk,1 25287,http://mymarstons.co.uk,1 25288,http://www.taskeraccountingservices.com,1 25289,http://mylifemychoice.sthelens.gov.uk,1 25290,http://mylegal.org.uk,1 25291,http://www.tasom.co.uk,1 25292,http://myknet.mwhglobal.com,1 25293,http://myinfo.lincoln.gov.uk,1 25294,http://mygvtc.com,1 25295,http://mygreenwich.mobi,1 25296,http://mygiantssearch.swagbucks.com,1 25297,http://myfirstweb.1dc.com,1 25298,http://mydeposits.co.uk,1 25299,http://mycsn.cc,1 25300,http://mycourses.jec.ac.uk,1 25301,http://mycourse.highbury.ac.uk,1 25302,http://mychechfree.com,1 25303,http://mychargerssearch.swagbucks.com,1 25304,http://mycedar.cedar-foundation.org,1 25305,http://www.tavistock.gov.uk,1 25306,http://mycardrivinglessons.co.uk,1 25307,http://mybtfleet.intra.bt.com:61004,1 25308,http://www.tavistock.hants.sch.uk,1 25309,http://www.tavistockcollege.devon.sch.uk,1 25310,http://mybem.co.uk,1 25311,http://mybeachwedding.co.uk,1 25312,http://myapex.ib3.co.uk,1 25313,http://www.tax-effective-giving.org.uk,1 25314,http://www.tax-hell.co.uk,1 25315,http://my.scola.ac.uk,1 25316,http://www.taxback.com,1 25317,http://my.page-flip.co.uk,1 25318,http://www.taxcreditshelpline.com,1 25319,http://www.taxesforexpats.com,1 25320,http://my.mg2.mail.yahoo.com,1 25321,http://my.mc770.mail.yahoo.com,1 25322,http://my.mc1900.mail.yahoo.com,1 25323,http://my.jolicloud.com,1 25324,http://my.freeze.com,1 25325,http://www.taxicabservices.co.uk,1 25326,http://www.taxingnannies.co.uk,1 25327,http://www.taxinsider.co.uk,1 25328,http://www.taxisafetynet.com,1 25329,http://my.aol.com,1 25330,http://my-sra.com,1 25331,http://www.taxpayertreasurehunt.com,1 25332,http://mx1.standrewscambridge.co.uk,1 25333,http://213.229.105.50,1 25334,http://213.207.132.219:2111,1 25335,http://www.taylorbracewell.co.uk,1 25336,http://musulmaneallestero.forumattivo.com,1 25337,http://213.186.167.46:2111,1 25338,http://www.taylormadeuk.com,1 25339,http://musicforeveryone.easysearch.org.uk,1 25340,http://muse.rcm.ac.uk,1 25341,http://muse.lib.nccu.edu.tw:8080,1 25342,http://musculardystrophy.easysearch.org.uk,1 25343,http://munph.edublogs.org,1 25344,http://mundo.busca.uol.com.br,1 25345,http://munchkins-maidenhead.co.uk,1 25346,http://mumplusone.com,1 25347,http://213.175.193.104,1 25348,http://multiply.com,1 25349,http://mudhook.wordpress.com,1 25350,http://mud.attach.mail.ymail.com,1 25351,http://muckin4life.direct.gov.uk/ready-to-muck-in.html,1 25352,http://mti.botley.com,1 25353,http://www.taylorwimpeyetv.com,1 25354,http://msrva.nimr.mrc.ac.uk:8080,1 25355,http://msresearch.easysearch.org.uk,1 25356,http://213.129.70.227,1 25357,http://www.tayside-vjb.gov.uk,1 25358,http://msmchesterfield.co.uk,1 25359,http://msmbristol.co.uk,1 25360,http://msm-web-prod.hbeu.adroot.hsbc,1 25361,http://www.taysidefire.gov.uk,1 25362,http://msm-driving-school.org,1 25363,http://msinverclyde.homestead.com,1 25364,http://msg.do.co.za,1 25365,http://msg-s.airfrance.fr,1 25366,http://msdcrw.onesuffolk.co.uk,1 25367,http://msdcnet.midsussex.jug,1 25368,http://msconline.net,1 25369,http://mschousing.cih.co.uk,1 25370,http://mschat.piczo.com,1 25371,http://ms165.mysearch.com,1 25372,http://ms154.mysearch.com,1 25373,http://ms106.mysearch.com,1 25374,http://www.tayvallichprimary.com,1 25375,http://ms,1 25376,http://mrslettings.wordpress.com,1 25377,http://www.tbmotors.btinternet.co.uk,1 25378,http://mrc.easysearch.org.uk,1 25379,http://www.tc.umn.edu,1 25380,http://mp7.ru,1 25381,http://212.62.4.202,1 25382,http://www.tc21.org.uk,1 25383,http://212.44.47.91,1 25384,http://www.tcbevents.co.uk,1 25385,http://www.tccpreschool.co.uk,1 25386,http://moyo.easysearch.org.uk,1 25387,http://movingimage-year2.blogspot.com,1 25388,http://moving2london2010.blogspot.com,1 25389,http://www.tces.org.uk,1 25390,http://moving-house-checklist.com,1 25391,http://movemymotor.net,1 25392,http://mountschool.fluencycms.co.uk,1 25393,http://motswansea.info,1 25394,http://motorscootermuse.com,1 25395,http://212.44.32.152,1 25396,http://www.tda.gov.uk.,1 25397,http://212.248.237.123,1 25398,http://212.219.11.68,1 25399,http://motoring.direct.gov.uk/,1 25400,http://motorhomechooser.blogspot.com,1 25401,http://motordealing.com,1 25402,http://motorcycletraininguk.com,1 25403,http://motorcycletraining.net,1 25404,http://www.tdwaterhouse.co.uk,1 25405,http://motorbike-licence.com,1 25406,http://motoguzziclub.co.uk,1 25407,http://www.teachers.org.uk,1 25408,http://www.teachersmedia.co.uk,1 25409,http://www.teacherspensions.com,1 25410,http://www.teachingcitizenship.co.uk,1 25411,http://motardsrennais.bbgraph.com,1 25412,http://motabilty.co.uk,1 25413,http://www.teachingcitizenship.org.uk,1 25414,http://mossportal.eu.brothergroup.net,1 25415,http://mosspilot2,1 25416,http://www.teachingnews.co.uk,1 25417,http://moss.eu.sony.com,1 25418,http://moss.accentgrp.org,1 25419,http://mortgagehelp.direct.gov.uk/what-are-the-facts.aspx,1 25420,http://mortgagehelp.direct.gov.uk/real-life-stories/worthing.aspx,1 25421,http://mortgagehelp.direct.gov.uk/real-life-stories/search-results.aspx,1 25422,http://mortgagehelp.direct.gov.uk/real-life-stories/scarborough-resident.aspx,1 25423,https://admin.cerosmedia.com,1 25424,http://www.teachingyourchild.org.uk,1 25425,http://mortgagehelp.direct.gov.uk/real-life-stories/hull-family.aspx,1 25426,http://www.teachmetodrive.net,1 25427,http://mortgagehelp.direct.gov.uk/new-action-plan.aspx,1 25428,http://mortgagehelp.direct.gov.uk/my-lender-is-telling-im-going-to-be-repossessed/diagnostic-tool.aspx,1 25429,http://www.teachnet-uk.org.uk,1 25430,http://mortgagehelp.direct.gov.uk/i-have-received-papers-telling-i-need-to-go-to-court/diagnostic-tool.aspx,1 25431,http://mortgagehelp.direct.gov.uk/i-have-missed-mortgage-payments/diagnostic-tool.aspx,1 25432,http://www.teamukrenewables.co.uk,1 25433,http://www.techcityuk.com,1 25434,http://mortgagehelp.direct.gov.uk/default.aspx,1 25435,http://www.techniplan.co.uk,1 25436,http://morethan.force.com,1 25437,http://moreoverwhichtheylead.info,1 25438,http://mor-shareprd-01,1 25439,http://moove2london.co.uk,1 25440,http://moose.forumotion.co.uk,1 25441,http://www.techsupportforum.com,1 25442,http://www.teessidelgv.com,1 25443,http://moodlezone.deeside.ac.uk,1 25444,http://www.tehnopol.ro,1 25445,http://www.teignacademy.co.uk,1 25446,http://moodle.yorksj.ac.uk,1 25447,http://212.121.200.198,1 25448,http://moodle.xrtraining.co.uk,1 25449,http://www.tele.ucl.ac.be,1 25450,http://moodle.weymouth.ac.uk,1 25451,http://moodle.westnotts.ac.uk,1 25452,http://moodle.westleigh.wigan.sch.uk,1 25453,http://moodle.univ-lille3.fr,1 25454,http://www.television-magazine-forum.co.uk,1 25455,http://moodle.tynemet.ac.uk,1 25456,http://www.telfordschoolofmotoring.com,1 25457,http://www.tem-po.co.uk,1 25458,http://www.templelifts.ltd.uk,1 25459,https://classes.sscnet.ucla.edu,1 25460,http://210.60.119.10,1 25461,http://www.templemeadow.com,1 25462,http://moodle.solihullsfc.ac.uk,1 25463,http://moodle.shrewsbury.ac.uk,1 25464,http://moodle.sbc.ac.uk,1 25465,http://moodle.sac.ac.uk,1 25466,http://www.tenant-finders.co.uk,1 25467,http://www.tenburyfire.co.uk,1 25468,http://www.tenderheart.co.uk,1 25469,http://www.tendermatch.co.uk,1 25470,http://2094957579.nvmodules.netvibes.com,1 25471,http://moodle.racc.ac.uk,1 25472,http://moodle.penyrheol-comp.swansea.sch.uk,1 25473,http://moodle.paston.ac.uk,1 25474,http://2094934798.nvmodules.netvibes.com,1 25475,http://moodle.org,1 25476,http://moodle.oldham.ac.uk,1 25477,http://209.85.229.99,1 25478,http://moodle.nrc.ac.uk,1 25479,http://moodle.nptc.ac.uk,1 25480,http://moodle.nottingham.ac.uk,1 25481,http://www.tenterdentown.co.uk,1 25482,http://moodle.nct.ac.uk,1 25483,http://www.terminalu.com,1 25484,http://moodle.mkcollege.ac.uk,1 25485,http://www.termtimeteachers.co.uk,1 25486,http://www.terry.co.uk,1 25487,http://www.terryhaguedrivingschool.com,1 25488,http://www.test.bdia.co.uk,1 25489,http://moodle.lec.ac.uk,1 25490,http://www.test.mbwebdesigns.co.uk,1 25491,http://www.test.photographers-resource.com,1 25492,http://moodle.ipb.fr,1 25493,http://www.testdrive.uk.com,1 25494,http://moodle.hereford-art-col.ac.uk,1 25495,http://moodle.herbertofliverpool.co.uk,1 25496,http://moodle.headington.org,1 25497,http://www.testing-web-sites.co.uk,1 25498,http://www.testway.co.uk,1 25499,http://www.tewkesburyschool.org,1 25500,http://moodle.flintshire.gov.uk,1 25501,http://www.texas.aaa.com,1 25502,http://moodle.essex.ac.uk,1 25503,http://www.texnet-it.co.uk,1 25504,http://moodle.ecclescollege.ac.uk,1 25505,http://moodle.eastridingcollege.ac.uk,1 25506,http://moodle.eastleigh.ac.uk,1 25507,http://moodle.dudley.gov.uk,1 25508,http://moodle.derwentside.ac.uk,1 25509,http://moodle.derby-college.ac.uk,1 25510,http://moodle.csun.edu,1 25511,http://moodle.coulsdon.ac.uk,1 25512,http://www.thai-guides.com,1 25513,http://moodle.citysun.ac.uk,1 25514,http://www.thaiinlondon.org,1 25515,http://www.thailivingwill.in.th,1 25516,http://www.thamesdittoninfants.co.uk,1 25517,http://www.thamesmead.surrey.sch.uk,1 25518,http://209.85.229.103,1 25519,http://www.thamesschoolofmotoring.co.uk,1 25520,http://www.thamesview-i.bardaglea.org.uk,1 25521,http://moodle.britishsection.fr,1 25522,http://www.thanet.ac.uk,1 25523,http://www.thanetcitizensadvice.org,1 25524,http://moodle.blackpoolsixth.ac.uk,1 25525,http://www.the-anglo-french-forum.co.uk,1 25526,http://www.the-castle-primary.devon.sch.uk,1 25527,http://www.the-claim-solicitors.co.uk,1 25528,http://209.85.227.147,1 25529,http://www.the-diy-income-investor.com,1 25530,http://www.the-driving-instructor.co.uk,1 25531,http://www.the-happy-club.co.uk,1 25532,http://moodle.barry.ac.uk,1 25533,http://www.the-hta.org.uk,1 25534,http://moodle.barnet.ac.uk,1 25535,http://209.85.227.106,1 25536,http://moodle.angley.kent.sch.uk,1 25537,http://moodle.altoncollege.ac.uk,1 25538,http://moodle-ver1-prod.ed-coll.ac.uk,1 25539,http://www.the-l-team.com,1 25540,http://monwel.com,1 25541,http://monteney.sheffield.sch.uk,1 25542,http://www.the-leaky-cauldron.org,1 25543,http://monks-walk.moodle.overnetdata.com,1 25544,http://monitor.anglesey.gov.uk,1 25545,http://www.the-minuteman.org,1 25546,http://www.the-old-school.org.uk,1 25547,http://www.the-pikers-pit.com,1 25548,http://moneyskills.live.lbi.co.uk,1 25549,http://www.the-platform.org.uk,1 25550,http://moneyfundsavailable.blogspot.com,1 25551,http://www.the-scream.co.uk,1 25552,http://www.the115club.co.uk,1 25553,http://www.theaacareers.co.uk,1 25554,http://money.howstuffworks.com,1 25555,http://www.theabbeyifd.co.uk,1 25556,http://www.theabi.org.uk,1 25557,http://www.theaccessgroup.com,1 25558,http://monaco.angloinfo.com,1 25559,http://mon-bs.intermediaries.demo.imaginet.co.uk,1 25560,http://www.theach.co.uk,1 25561,http://moh2005.proboards.com,1 25562,http://moelwyngc.easysearch.org.uk,1 25563,http://moderngov.sthelens.gov.uk,1 25564,http://modellandrally.110mb.com,1 25565,http://mobilityparking.org.nz,1 25566,http://mobilityaids.blogspot.com,1 25567,http://www.theactorworks.co.uk,1 25568,http://mobile.onestopadvice.org.uk,1 25569,http://mobile.donanimhaber.com,1 25570,http://mobile.aidsmap.com,1 25571,http://mmpublications.com,1 25572,http://mmasc.easysearch.org.uk,1 25573,http://mm.theorytestpro.co.uk,1 25574,http://mlwmis01,1 25575,http://mlmpdc,1 25576,http://209.85.227.103,1 25577,http://mlg.nisaiva.com,1 25578,http://www.theangelsstudio.co.uk,1 25579,http://mld.mcga.gov.uk,1 25580,http://ml.wikipedia.org,1 25581,http://mktowingcourses.co.uk,1 25582,http://mkmt.co.uk,1 25583,http://mixi.jp,1 25584,http://mitraconsultancy.co.uk,1 25585,http://mitchelldrivingschool.wordpress.com,1 25586,http://mitchelldrivingschool.theorytestpro.co.uk,1 25587,http://missdaisy.me,1 25588,http://misc.feedfury.com,1 25589,http://mint.wymetro.com,1 25590,http://minkara.carview.co.jp,1 25591,http://minisolarpower.com,1 25592,http://minisculedrivertraining.co.uk,1 25593,http://minihp.cyworld.com,1 25594,http://www.theavenuemedicalpractice.co.uk,1 25595,http://www.thebd.co.uk,1 25596,http://mindtheroad.org.uk,1 25597,http://mindinflux.wordpress.com,1 25598,http://mindfulemployer.cwp.nhs.uk,1 25599,http://miltonhallschool.com,1 25600,http://milly,1 25601,http://millomrl.easysearch.org.uk,1 25602,http://millmeadsch.easysearch.org.uk,1 25603,http://milan.angloinfo.com,1 25604,http://209.85.169.105,1 25605,http://mikehaywood.wordpress.com,1 25606,http://mike-pc,1 25607,http://migrantworkerswiltshire.org.uk,1 25608,http://migraineaction.easysearch.org.uk,1 25609,http://midsuffolkcab.org.uk,1 25610,http://midlandscoobies.invisionzone.com,1 25611,http://www.thebestof.co.uk,1 25612,http://middx.net,1 25613,http://midcornwallexplorers.easysearch.org.uk,1 25614,http://mid2.uk.rsa-ins.com,1 25615,http://micscho.theorytestpro.co.uk,1 25616,http://microstage.leics.gov.uk,1 25617,http://www.thebigchoice.com,1 25618,http://www.thebiggreenpledge.org.uk,1 25619,http://micksdrivertraining.co.uk,1 25620,http://mickjones.theorytestpro.co.uk,1 25621,http://michelleblight.theorytestpro.co.uk,1 25622,http://michelle-strozykowski.suite101.com,1 25623,http://michelebarnes.moonfruit.com,1 25624,http://miasto.norwich.pl,1 25625,http://mhm.hud.ac.uk,1 25626,http://mhfe.org.uk,1 25627,http://www.thebirminghampress.com,1 25628,http://mgspa.easysearch.org.uk,1 25629,http://mg-rover.trafficsmart.co.uk,1 25630,http://www.thebluecoatschool.com,1 25631,http://mewnrwyd,1 25632,http://www.thebmc.co.uk,1 25633,http://metalmicky007.theorytestpro.co.uk,1 25634,http://metalib3.exlibrisgroup.com:8334,1 25635,http://metalib.qub.ac.uk.ezproxy.qub.ac.uk,1 25636,http://metafaq.tescofinance.com,1 25637,http://www.theboilercompany.com,1 25638,http://209.85.169.103,1 25639,http://messenger1.providesupport.com,1 25640,http://messenger.live.com,1 25641,http://www.thebondboard.org.uk,1 25642,http://messagerie-12.sfr.fr,1 25643,http://messagerie-11.sfr.fr,1 25644,http://www.thebookseller.com,1 25645,http://mertonmencap.easysearch.org.uk,1 25646,http://merseysidelieutenancy.weebly.com,1 25647,http://merqury.t-t.com,1 25648,http://merlinscotworld.wordpress.com,1 25649,http://mercury-intranet.localnet,1 25650,http://mercury,1 25651,http://merchistongeography.blogspot.com,1 25652,http://menmedia.co.uk,1 25653,http://meningiomauk.org,1 25654,http://mendipcommunitytransport.co.uk,1 25655,http://mendip06.web-labs.co.uk,1 25656,http://menai.ac.uk,1 25657,http://members.webs.com,1 25658,http://members.tripod.com,1 25659,http://209.85.148.104,1 25660,http://members.iinet.net.au,1 25661,http://members.ifl.ac.uk,1 25662,http://members.ebay.co.uk,1 25663,http://members.childlink.co.uk,1 25664,http://members.britishbridalretailersassociation.co.uk,1 25665,http://members.bda.uk.com,1 25666,http://www.thebritishcolumbian.com,1 25667,http://meifod.2day.ws,1 25668,http://meetings.sheffield.gov.uk,1 25669,http://meekdrivingschool.co.uk,1 25670,http://medwayasthma.easysearch.org.uk,1 25671,http://medneg.michelmores.com,1 25672,http://www.thebroomwoodroadsurgery.co.uk,1 25673,http://www.thecabbie.co.uk,1 25674,http://medicare.ahost.co.uk,1 25675,http://medicalsure.co.uk,1 25676,http://medicalneedspupil.webs.com,1 25677,http://mediacatalog,1 25678,http://media.visitbritain.com,1 25679,http://media.nhschoices.nhs.uk,1 25680,http://medals.nzdf.mil.nz,1 25681,http://me-ow.co.uk,1 25682,http://me,1 25683,http://mds.theorytestpro.co.uk,1 25684,http://mddcmoss,1 25685,http://md05.quartz.synacor.com,1 25686,http://209.85.147.99,1 25687,http://mcsocialimpacts.blogspot.com,1 25688,http://mcs3,1 25689,http://mcs-www.co.uk,1 25690,http://mcr.chu.cam.ac.uk,1 25691,http://mcl.easysearch.org.uk,1 25692,http://mcl-intranet.merckgroup.com,1 25693,http://mcct.co.uk,1 25694,http://mccaffrey.ischool.utoronto.ca,1 25695,http://mcc001m43,1 25696,http://mcbuynet:9091,1 25697,http://mcarr.co.uk,1 25698,http://mc949.mail.yahoo.com,1 25699,http://mc295.mail.yahoo.com,1 25700,http://mbro.ac.uk,1 25701,http://mbox.s701.sureserver.com,1 25702,http://mbc-cms-001,1 25703,http://mba.insead.edu,1 25704,http://maypole.2day.ws,1 25705,http://mayfieldps.easysearch.org.uk,1 25706,http://maxsschoolofmotoring.com,1 25707,http://maximum-som.co.uk,1 25708,http://209.85.147.104,1 25709,http://maverickscheerleaders.easysearch.org.uk,1 25710,http://maurie.customer.netspace.net.au,1 25711,http://www.thecaterpillarclub.org.uk,1 25712,http://maturetimes.co.uk,1 25713,http://matty.theorytestpro.co.uk,1 25714,http://mattlucht.com,1 25715,http://mattlee-drivertraining.co.uk,1 25716,http://matthew-arnold.oxon.sch.uk,1 25717,http://mattcass.co.uk,1 25718,http://mattblackrat.myfineforum.org,1 25719,http://matgb.dreamwidth.org,1 25720,http://www.thecbf.org.uk,1 25721,http://masrecruitment.co.uk,1 25722,http://masicorp.org,1 25723,http://mashu.freeblog.hu,1 25724,http://mas-yourmoney.dev.fsa.gov.uk,1 25725,http://martysdrivingschool.com,1 25726,http://martynloveridgedrivertraining.blogspot.com,1 25727,http://209.85.146.99,1 25728,http://marts.theorytestpro.co.uk,1 25729,http://martinwrightdrivingschool.co.uk,1 25730,http://martinsom.co.uk,1 25731,http://martins.theorytestpro.co.uk,1 25732,http://www.thecentrepac.com,1 25733,http://martinco.editme.com,1 25734,http://marshexeter.toyota.co.uk,1 25735,http://marshallingtotties.easysearch.org.uk,1 25736,http://marriscollege.com,1 25737,http://marquees.co,1 25738,http://maroancouk.mail.everyone.net,1 25739,http://marksds.theorytestpro.co.uk,1 25740,http://market.powerapple.com,1 25741,http://markagiusblog.blogspot.com,1 25742,http://www.theconnectprogramme.com,1 25743,http://www.theconstructioncollege.org,1 25744,http://mariespavound.easysearch.org.uk,1 25745,http://marechal-soult.entmip.fr,1 25746,http://mareaunire.com,1 25747,http://marcopolooxford.theorytestpro.co.uk,1 25748,http://www.theconsultingroomssouthoxhey.co.uk,1 25749,http://maps.newcastle-staffs.gov.uk,1 25750,http://maps.maidstone.gov.uk,1 25751,http://maps.hants.gov.uk,1 25752,http://maps.google.se,1 25753,http://maps.google.ro,1 25754,http://www.thecornsnake.co.uk,1 25755,http://209.85.143.104,1 25756,https://directgov-online.hmrc.gov.uk,1 25757,http://www.thecqi.org,1 25758,http://maps.google.com.my,1 25759,http://maps.google.com.hk,1 25760,http://maps.google.com.ec,1 25761,http://maps.google.com.au,1 25762,http://maps.google.com.ar,1 25763,http://www.thecroftmedicalcentre.co.uk,1 25764,http://maps.google.ca,1 25765,http://maps.google.be,1 25766,http://maps.direct.gov.uk/LDGRedirect/,1 25767,http://mapping.uk-infobroker.com,1 25768,http://mapping.reading.gov.uk,1 25769,http://mapping.dorsetforyou.com,1 25770,http://mapperz.blogspot.com,1 25771,http://mapdrivingschool.theorytestpro.co.uk,1 25772,http://maoyi-wangzhan.tradesou.com,1 25773,http://mansionstudent.co.uk,1 25774,http://manor-rights.org.uk,1 25775,http://mangas.eastriding.gov.uk,1 25776,http://manchestergraduatecareers.wordpress.com,1 25777,http://manchesterfoe.pbworks.com,1 25778,http://manchesterdrivingacademy.com,1 25779,http://man290909a.gosafe.org,1 25780,http://man-gis-data,1 25781,http://mamcbt1.cymru.nhs.uk,1 25782,http://mamcbt1,1 25783,http://mamasandpapasblog.com,1 25784,http://mamaforum.co.uk,1 25785,http://207.44.242.20,1 25786,http://malvernaccess.co.uk,1 25787,http://malvern.whub.org.uk,1 25788,http://maltbyyorkshire.2day.ws,1 25789,http://www.thedocsmanchester.co.uk,1 25790,http://www.thedownsdrivingschool.co.uk,1 25791,http://maldontowncouncil.gov.uk,1 25792,http://www.thedrivertrainers.co.uk,1 25793,http://www.thedriveschool.com,1 25794,http://malayaleepathram.co.uk,1 25795,http://www.thedriving-academy.co.uk,1 25796,http://makingawill.wordpress.com,1 25797,http://makindixon.co.uk,1 25798,http://makewealthhistory.org,1 25799,http://main.saga.co.uk,1 25800,http://main.genesreunited.co.uk,1 25801,http://mailzone.onetel.net.uk,1 25802,http://mailuk.seafrance.org,1 25803,http://mailserver.blackpoolsixth.ac.uk,1 25804,http://mailie.mail.everyone.net,1 25805,http://mailhost.tssa.org.uk:5080,1 25806,http://mailhost.hull-college.ac.uk,1 25807,http://mailchoice2.saga.co.uk,1 25808,http://mail:3000,1 25809,http://mail70.abv.bg,1 25810,http://mail60.abv.bg,1 25811,http://mail3.middlesbrough.gov.uk,1 25812,http://mail3-245.sinamail.sina.com.cn,1 25813,http://www.thedugout.net,1 25814,http://www.theeastbourneacademy.org,1 25815,http://mail2.flashbay.com,1 25816,http://206info.co.uk,1 25817,http://mail2-202.sinamail.sina.com.cn,1 25818,http://mail2,1 25819,http://mail1.voila.fr,1 25820,http://mail1.middlesbrough.gov.uk:81,1 25821,http://mail02.nucomm.net:9000,1 25822,http://mail0.oxted.surrey.sch.uk,1 25823,http://mail.zee2a.com,1 25824,http://www.theecologist.org,1 25825,http://mail.wsgfl.org.uk,1 25826,http://mail.woodswork.co.uk,1 25827,http://mail.wishmorecross.surrey.sch.uk,1 25828,http://mail.which.net:81,1 25829,http://mail.voila.fr,1 25830,http://www.theeducationwebsite.com,1 25831,http://mail.victoria.manchester.sch.uk,1 25832,http://mail.verizon.com,1 25833,http://mail.varnastreet.manchester.sch.uk,1 25834,http://mail.urstreams.com,1 25835,http://www.theenterprize.bdia.co.uk,1 25836,http://www.theextenders.com,1 25837,http://mail.tillotson.com,1 25838,http://mail.thedivinemercy.manchester.sch.uk,1 25839,http://mail.theclarkes.tv,1 25840,http://mail.surf.co.nz,1 25841,http://mail.st.unii.ac.jp:8080,1 25842,http://mail.st-wilfrids.manchester.sch.uk,1 25843,http://mail.st-wilfrids-pri.manchester.sch.uk,1 25844,http://mail.st-richards.manchester.sch.uk,1 25845,http://mail.st-peters.manchester.sch.uk,1 25846,http://mail.st-patricks.manchester.sch.uk,1 25847,http://mail.st-maryscofe.manchester.sch.uk,1 25848,http://mail.st-marys-levenshulme.manchester.sch.uk,1 25849,http://mail.st-margarets.manchester.sch.uk,1 25850,http://mail.st-kentigerns.manchester.sch.uk,1 25851,http://mail.st-jamescofe-gorton.manchester.sch.uk,1 25852,http://mail.st-francis.manchester.sch.uk,1 25853,http://mail.st-chads.manchester.sch.uk,1 25854,http://mail.st-brigids.manchester.sch.uk,1 25855,http://mail.st-augustines.manchester.sch.uk,1 25856,http://mail.st-annes-jun.manchester.sch.uk,1 25857,http://mail.st-andrews.manchester.sch.uk,1 25858,http://mail.st-agnes.manchester.sch.uk,1 25859,http://mail.seymourroad.manchester.sch.uk,1 25860,http://mail.sellickpartnership.co.uk,1 25861,http://mail.selcom.co.uk,1 25862,http://204.108.199.20,1 25863,http://mail.rolls-crescent.manchester.sch.uk,1 25864,http://mail.rgg.co.uk,1 25865,http://www.thefactlab.com,1 25866,http://mail.ranbyhouseschool.co.uk:3000,1 25867,http://www.thefamilygp.com,1 25868,http://mail.porkysprimecuts.com,1 25869,http://mail.planet-group.co.uk,1 25870,http://mail.pattinson.co.uk,1 25871,http://mail.paplv.org,1 25872,http://mail.ourladys-pri.manchester.sch.uk,1 25873,http://mail.oswaldroad.manchester.sch.uk,1 25874,http://mail.oriflame.biz,1 25875,http://mail.oldmoat.manchester.sch.uk,1 25876,http://mail.oldhalldrive.manchester.sch.uk,1 25877,http://www.thefamilyhubleeds.co.uk,1 25878,http://mail.nsb.northants.sch.uk,1 25879,http://mail.northenden.manchester.sch.uk,1 25880,http://mail.newyorkemail.net,1 25881,http://mail.newmoston.manchester.sch.uk,1 25882,http://mail.nestonhigh.local:3000,1 25883,http://mail.navitasresources.com,1 25884,http://mail.mostonfields.manchester.sch.uk,1 25885,http://www.thefinancialgroup.co.uk,1 25886,http://mail.mauldethroad.manchester.sch.uk,1 25887,http://www.thefizz.co.uk,1 25888,http://mail.manleypark.manchester.sch.uk,1 25889,http://mail.lilylane-jun.manchester.sch.uk,1 25890,http://mail.lilylane-inf.manchester.sch.uk,1 25891,http://mail.laudan.co.uk,1 25892,http://mail.kings.edu.au,1 25893,http://mail.jsoft.co.kr,1 25894,http://mail.issel.co.uk,1 25895,http://mail.islux.lu,1 25896,http://mail.irkvalley.manchester.sch.uk,1 25897,http://mail.ireland.com,1 25898,http://203glasgowsg.easysearch.org.uk,1 25899,http://mail.image-corporate.com,1 25900,http://mail.iinet.net.au,1 25901,http://mail.idanurseries.com,1 25902,http://mail.howlandselectrical.co.uk,1 25903,http://mail.holytrinity.manchester.sch.uk,1 25904,http://mail.holyname.manchester.sch.uk,1 25905,http://www.thegardencoop.com,1 25906,http://mail.higher-openshaw.manchester.sch.uk,1 25907,http://mail.headington.org,1 25908,http://mail.harpurmount.manchester.sch.uk,1 25909,http://www.thegardenersguild.co.uk,1 25910,http://mail.gmw.nhs.uk,1 25911,http://mail.firenet.uk.net:3000,1 25912,http://mail.excite.nl,1 25913,http://203.208.46.208,1 25914,http://mail.dssltd.net:3000,1 25915,http://mail.didsbury-pri.manchester.sch.uk,1 25916,http://mail.diamondbathroom.co.uk,1 25917,http://mail.cwgsy.net,1 25918,http://mail.crossacres.manchester.sch.uk,1 25919,http://mail.cravenwood.manchester.sch.uk,1 25920,http://mail.crablane.manchester.sch.uk,1 25921,http://mail.claremont.manchester.sch.uk,1 25922,http://mail.choiceslondoncic.co.uk,1 25923,http://mail.cheetwood.manchester.sch.uk,1 25924,http://mail.cheetham.manchester.sch.uk,1 25925,http://mail.catholic.ac.kr,1 25926,http://mail.care2.com,1 25927,http://mail.camgrain.co.uk,1 25928,http://mail.buttonlane.manchester.sch.uk,1 25929,http://mail.broadoak.manchester.sch.uk,1 25930,http://mail.broadhurst.manchester.sch.uk,1 25931,http://mail.blundells.org,1 25932,http://www.thegrangeprimary.com,1 25933,http://mail.blackfrostcards.com,1 25934,http://2020megadrive.com,1 25935,http://mail.benchill.manchester.sch.uk,1 25936,http://mail.barlowhall.manchester.sch.uk,1 25937,http://mail.avow.org,1 25938,http://mail.aspects.net:3000,1 25939,http://mail.ashgate.manchester.sch.uk,1 25940,http://mail.ashburymeadow.manchester.sch.uk,1 25941,http://www.thegreenandfirroadsurgeries.co.uk,1 25942,http://mail.almapark.manchester.sch.uk,1 25943,http://mail.allainet.com:2095,1 25944,http://mail.alessi.com,1 25945,http://mail.activeit.co,1 25946,http://mail.acacias.manchester.sch.uk,1 25947,http://mail.abrahammoss.manchester.sch.uk,1 25948,http://mail.5starweddingdirectory.com:2095,1 25949,http://mail.1webmail.net,1 25950,http://maidstoneinvicta.easysearch.org.uk,1 25951,http://maharashtraspider.asterpix.com,1 25952,http://mahara.ystrad-mynach.ac.uk,1 25953,http://magyaroklondonbancom.w3h.hu,1 25954,http://magyaroklondonban.hu,1 25955,http://magpiespreschool.co.uk,1 25956,http://www.thegreeno.com,1 25957,http://magnifico-ds.co.uk,1 25958,http://magnacartacollege.org,1 25959,http://www.thegrovejunior.co.uk,1 25960,http://magazine.utvdrive.co.uk,1 25961,http://mag.theorytestpro.co.uk,1 25962,http://maetik.tumblr.com,1 25963,http://made2measurechildcare.co.uk,1 25964,http://macintosh.home,1 25965,http://maccaboard.devstars.eu,1 25966,http://www.theguildhallsurgery.co.uk,1 25967,http://mabm.co.uk,1 25968,http://maatieto.net,1 25969,http://maassandco.co.uk,1 25970,http://ma3lumat.wordpress.com,1 25971,http://ma-ict.co.uk,1 25972,http://m549.mail.qq.com,1 25973,http://m534.mail.qq.com,1 25974,http://m326.mail.qq.com,1 25975,http://m2training.net,1 25976,http://m194.mail.qq.com,1 25977,http://m188.mail.qq.com,1 25978,http://m155.mail.qq.com,1 25979,http://m143.mail.qq.com,1 25980,http://m1.mail.sina.com.cn,1 25981,http://m0.mail.sina.com.cn,1 25982,http://m.zdnet.co.uk,1 25983,http://m.tweete.net,1 25984,http://m.mg.mail.yahoo.co.jp,1 25985,https://driverpracticaltest.direct.gov.uk/logincheckwarnings.aspx,1 25986,http://m.library.qmul.ac.uk,1 25987,http://www.theharmonycentre.com,1 25988,http://www.theheatingbusiness.co.uk,1 25989,http://m.goldenspy.com,1 25990,http://m.fr.geneawiki.com,1 25991,http://202.5.137.238,1 25992,http://www.thehoneymoonproject.com,1 25993,http://www.thehouseplanner.co.uk,1 25994,http://m.direct.gov.uk/servlet/searchController,1 25995,http://2010.affordablemortgages.co.uk,1 25996,http://m.direct.gov.uk/servlet/articlesController,1 25997,http://www.thehub.ignitiondrivinglessons.co.uk,1 25998,http://2009.westminster.ac.uk,1 25999,http://www.thehuntinglife.com,1 26000,http://www.theihe.org,1 26001,http://www.theinjurylawyers.co.uk,1 26002,http://www.theinquirer.net,1 26003,http://m.direct.gov.uk/%20http://m.direct.gov.uk/syndicationController,1 26004,http://www.theinternationalman.com,1 26005,http://m.customsearch.ask.com,1 26006,http://www.thel-team.co.uk,1 26007,http://m.ask.com,1 26008,http://lyris.labware.com,1 26009,http://lyon.angloinfo.com,1 26010,http://lxwebmail.svr.luxair,1 26011,http://lwt.easysearch.org.uk,1 26012,http://lws.theorytestpro.co.uk,1 26013,http://lvfusion.wellingborough.gov.uk,1 26014,http://www.thelaurelsdaynursery.co.uk,1 26015,http://www.theleyschildrenscentre.org,1 26016,http://lukehalliwell.wordpress.com,1 26017,http://lukecorytrust.easysearch.org.uk,1 26018,http://ludlowhc.easysearch.org.uk,1 26019,http://lucy-locket.com,1 26020,http://ltop.co.uk,1 26021,http://ltjordan.tamu.edu,1 26022,http://lthweb,1 26023,http://lt0420,1 26024,http://lswebmail2.lyleandscott.com,1 26025,http://www.thelocalweb.net,1 26026,http://lsmdriving.co.uk,1 26027,http://2.paddy.tridan.it,1 26028,http://lsg-vpc13,1 26029,http://lseo.org.uk,1 26030,http://www.thelondonlimocompany.com,1 26031,http://ls29.org.uk,1 26032,http://lrn2drve.com,1 26033,http://lrn2drive-worcester.co.uk,1 26034,http://www.thelondonstudy.com,1 26035,http://lpg-forum.pl,1 26036,http://loxian.livejournal.com,1 26037,http://lowries.homeip.net,1 26038,http://lowercarbonhomes.blogspot.com,1 26039,http://lovedrivingschool.com,1 26040,http://1stshinfieldroadbrownies.easysearch.org.uk,1 26041,http://louisedt.theorytestpro.co.uk,1 26042,http://louise-drivingschool.co.uk,1 26043,http://lottoscams.blogspot.com,1 26044,http://www.thelowdown.info,1 26045,http://lostchild.tv,1 26046,http://losethel.theorytestpro.co.uk,1 26047,http://los.direct.gov.uk/swanse,1 26048,http://www.themanorpractice.co.uk,1 26049,http://los.direct.gov.uk/r,1 26050,http://los.direct.gov.uk/jobs,1 26051,http://los.direct.gov.uk/jobcentre,1 26052,http://los.direct.gov.uk/(X(1)S(zuid4q55tqhfm3y4owexuxmj))/default.aspx,1 26053,http://los.direct.gov.uk/(X(1)S(yp54rsqa3cvrnj3mk5dtjm55))/default.aspx,1 26054,http://los.direct.gov.uk/(X(1)S(xvpq2rn0or21t3j3ml212yq3))/default.aspx,1 26055,http://los.direct.gov.uk/(X(1)S(wxy41y55h5taxtvzpzujmdvv))/results.aspx,1 26056,http://los.direct.gov.uk/(X(1)S(vqejizzq0xr4ck45raaihoid))/default.aspx,1 26057,http://los.direct.gov.uk/(X(1)S(tok2pfit1p0jn455lqwafpea))/default.aspx,1 26058,http://los.direct.gov.uk/(X(1)S(pbk3dl2h0a2yoy552rwlgtiu))/results.aspx,1 26059,http://los.direct.gov.uk/(X(1)S(ott33h45yyle2l55pems3w45))/results.aspx,1 26060,http://los.direct.gov.uk/(X(1)S(m5ggpvjhk4u4e224o2kfevjg))/default.aspx,1 26061,http://los.direct.gov.uk/(X(1)S(lmgkyl2cgq00xa452qmwucjq))/default.aspx,1 26062,http://los.direct.gov.uk/(X(1)S(kbpnir550tx45t55ysnoho55))/default.aspx,1 26063,http://los.direct.gov.uk/(X(1)S(k2jhykuy1pjd1g55vrsngzvs))/results.aspx,1 26064,http://los.direct.gov.uk/(X(1)S(jzy0zhybjjynnivqbmunvv55))/default.aspx,1 26065,http://los.direct.gov.uk/(X(1)S(jkq5nqeaonigrq45hglbovf1))/results.aspx,1 26066,http://los.direct.gov.uk/(X(1)S(ixl5y1555kp05f55bl1tc2ny))/default.aspx,1 26067,http://los.direct.gov.uk/(X(1)S(imm2jsmgy41oo12ep4std055))/default.aspx,1 26068,http://los.direct.gov.uk/(X(1)S(icuy2nvusehv4oehcvuvpw45))/default.aspx,1 26069,http://los.direct.gov.uk/(X(1)S(dolmws45nya1k5uxhb10wo3i))/results.aspx,1 26070,http://los.direct.gov.uk/(X(1)S(cdoslx45ihtwi545yqt4zuul))/default.aspx,1 26071,http://los.direct.gov.uk/(X(1)S(audgoja0bnnhnr55olacbcrh))/default.aspx,1 26072,http://los.direct.gov.uk/(X(1)S(arvwhi45z3yhnfmldwjkbyb2))/results.aspx,1 26073,http://los.direct.gov.uk/(X(1)S(ag4pzz55qc0ynjvudjkguq45))/default.aspx,1 26074,http://los.direct.gov.uk/(X(1)S(24q1ipqvpx4fnc45zu4hev45))/default.aspx,1 26075,http://los.direct.gov.uk/(S(k4azxd45oicp4wi5faqnd2qf))/default.aspx,1 26076,http://www.themidwiferysanctuary.com,1 26077,http://lornadupre.blogspot.com,1 26078,http://loretolaw.blogspot.com,1 26079,http://lookaheadnet,1 26080,http://lonwss3564,1 26081,http://longwoodholidays.co.uk,1 26082,http://longroomuat,1 26083,http://longdensdrivertraining.co.uk,1 26084,http://www.theminis.co.uk,1 26085,http://www.themobileagents.co.uk,1 26086,http://www.themusselclub.com,1 26087,http://www.thenationalarchives.gov.uk,1 26088,http://www.thenationalstudent.com,1 26089,http://londonschoolofsound.co.uk,1 26090,http://www.thenma.org.uk,1 26091,http://londonprepared.gov.uk,1 26092,http://londonnepal.com,1 26093,http://londonmodelmanagement.blogspot.com,1 26094,http://londonmau.forumcommunity.net,1 26095,http://www.theoaksprimary.co.uk,1 26096,http://1stloughtonbrownies.easysearch.org.uk,1 26097,http://londoncouncils.gov.uk,1 26098,http://www.theoldschoolsurgery.co.uk,1 26099,http://londonapprenticeship.co.uk,1 26100,http://london_web,1 26101,http://www.theoremoftheday.org,1 26102,http://london.polemb.net,1 26103,http://london-property.org,1 26104,http://london-money.co.uk,1 26105,http://lol-drivingmadefun.com,1 26106,http://logout.hu,1 26107,http://login.yudu.com,1 26108,http://login.nomadix.com:1111,1 26109,http://www.theorytest-online.co.uk,1 26110,http://www.thepalmsmedicalcentre.co.uk,1 26111,http://loftusfunerals.co.uk,1 26112,http://locklead.com,1 26113,http://locate.coventry.ac.uk,1 26114,http://localise.mapofmedicine.com,1 26115,http://localhost:9090,1 26116,http://www.theparentconnection.org.uk,1 26117,http://localhost:8000,1 26118,http://localhost:57386,1 26119,http://localhost:56912,1 26120,http://localhost:52231,1 26121,http://localhost:51779,1 26122,http://localhost:50377,1 26123,http://localhost:50374,1 26124,http://localhost:50187,1 26125,http://localhost:49473,1 26126,http://1stkingskerswellg.easysearch.org.uk,1 26127,http://localhost:4082,1 26128,http://localhost:30775,1 26129,http://localhost:1716,1 26130,http://localhost:1560,1 26131,http://localhost:10821,1 26132,http://localcrime.direct.gov.uk/helper/litter/index.html,1 26133,http://localcrime.direct.gov.uk/helper/groups/index.html,1 26134,http://localcrime.direct.gov.uk/helper/graffiti/index.html,1 26135,http://www.thepumphousesurgery.co.uk,1 26136,http://local.uk.ask.com,1 26137,http://local.lancasterguardian.co.uk,1 26138,http://local.kentonline.co.uk,1 26139,http://www.thepurplecasserole.com,1 26140,http://local.direct.gov.uk/LDGRedirect/maps/,1 26141,http://www.theramppeople.ie,1 26142,http://www.therange.co.uk,1 26143,http://local.direct.gov.uk/LDGRedirect/Locat,1 26144,http://www.therapiesathome.co.uk,1 26145,http://local.direct.gov.uk/LDGRedirect/index.isp,1 26146,http://local.direct.gov.uk/LDGRedirect/cache/66/contact.htm,1 26147,http://local.direct.gov.uk/LDGRedirect/cache/57/contact.htm,1 26148,http://local.direct.gov.uk/LDGRedirect/cache/227/browse.shtml,1 26149,http://loanslogbook.com,1 26150,http://loanseurope.com,1 26151,http://lo.st,1 26152,http://lnwf.co.uk,1 26153,http://lndnstaging:7001,1 26154,http://lndnstaging,1 26155,http://lms.nsafs-link.co.uk,1 26156,http://www.therenewableenergycentre.co.uk:8081,1 26157,http://www.theroadahead-rugby.co.uk,1 26158,http://llpgport.oltps.sthelens.gov.uk:8080,1 26159,http://llnmoodle.worc.ac.uk,1 26160,http://llearn.co.uk,1 26161,http://ljastudios.com,1 26162,http://lizw.livejournal.com,1 26163,http://livshp01,1 26164,http://1stislington.co.uk,1 26165,http://livingscotland.wordpress.com,1 26166,http://liverpoolmediaacademy.com,1 26167,http://www.therosehillschool.com,1 26168,http://www.therosspractice.co.uk,1 26169,http://livent200,1 26170,http://www.theroyalforums.com,1 26171,http://livechat.boldchat.com,1 26172,http://www.theschoolofcoaching.com,1 26173,http://www.theschooltravelcompany.com,1 26174,http://1stimepass.co.uk,1 26175,http://1sthookscoutgroup.easysearch.org.uk,1 26176,http://live.kerboodle.com,1 26177,http://live.eco.rizotek.com,1 26178,http://live-the-solution.com,1 26179,http://liv.ac.uk,1 26180,http://littlescholarsbusyscholars.weebly.com,1 26181,http://littlepicklesspalding.easysearch.org.uk,1 26182,http://littleoaksburrington.easysearch.org.uk,1 26183,http://littleheartsmatter.easysearch.org.uk,1 26184,http://littlegreenblog.com,1 26185,http://littleacornschildmindingservices.yolasite.com,1 26186,http://www.thesession.org,1 26187,http://lists.lib.mmu.ac.uk,1 26188,http://listorious.com,1 26189,http://www.theshootingemporium.co.uk,1 26190,http://lisbon.angloinfo.com,1 26191,http://lisablake.wordpress.com,1 26192,http://lis.decc.gsi.gov.uk,1 26193,http://www.theshowring.info,1 26194,http://liphookmotors.com,1 26195,http://liobiansafc.easysearch.org.uk,1 26196,http://linthwaitejfc.easysearch.org.uk,1 26197,http://linkvalidator.net,1 26198,http://linksforliving.islington.gov.uk,1 26199,http://links.mkt304.com,1 26200,http://www.thesource.kentandmedway.nhs.uk,1 26201,http://links.email.ucasmedia.com,1 26202,http://link.smartscreen.live.com,1 26203,http://www.thestar.com,1 26204,http://link.mofcom.gov.cn,1 26205,http://link.leaseplanonline.co.uk,1 26206,http://lingscars.whoson.com,1 26207,http://1sthighworth.easysearch.org.uk,1 26208,http://lindisfarnertp.org,1 26209,http://linda-considerations.blogspot.com,1 26210,http://lincsafe.vctms.co.uk,1 26211,http://limes.co,1 26212,http://lilypadpresch.easysearch.org.uk,1 26213,http://lightweightlandroverclub.org,1 26214,http://lightning-pass1.irunbuild2.co.uk,1 26215,http://lightning-pass.co.uk,1 26216,http://lightforceint.easysearch.org.uk,1 26217,http://www.thestoragebed.co.uk,1 26218,http://lifestyledrivertraining.co.uk,1 26219,http://lifeeducationwessex.easysearch.org.uk,1 26220,http://lif.easysearch.org.uk,1 26221,http://licencetodrive.co.uk,1 26222,http://libwww.essex.ac.uk,1 26223,http://www.thestoriesofo.net,1 26224,http://library.thinkquest.org,1 26225,http://library.ppsd.org,1 26226,http://library.leeds.ac.uk,1 26227,http://library.law.umn.edu,1 26228,http://library.hud.ac.uk,1 26229,http://library.bcu.ac.uk,1 26230,http://www.thestudentguide.com,1 26231,http://www.thestudentpocketguide.com,1 26232,http://www.thestuff.org.uk,1 26233,http://www.thesurgerynewtownards.co.uk,1 26234,http://libguides.ncl.ac.uk,1 26235,http://liberty.theorytestpro.co.uk,1 26236,http://www.thesustainableheatingcompany.com,1 26237,http://lib.leedstrinity.ac.uk,1 26238,http://lib-cd.nottinghamcity.gov.uk:8088,1 26239,http://lhr.thehub.uk.baa.com,1 26240,http://lhmos01,1 26241,http://lhdrf.easysearch.org.uk,1 26242,http://lh16hisa,1 26243,http://lgwmsiis03,1 26244,http://lgsedu.com,1 26245,http://lgonline,1 26246,http://lgdrive.co.uk,1 26247,http://lgconversions.co.uk,1 26248,http://lg-driving.theorytestpro.co.uk,1 26249,http://www.thesuttonacademy.org.uk,1 26250,http://lfe-drivingschool.co.uk,1 26251,http://1sthedgeeg.easysearch.org.uk,1 26252,http://leyhrs03.ad.redbridge.gov.uk,1 26253,http://lewisham.schooljotter.com,1 26254,http://leweslabour.org.uk,1 26255,http://leventhorpe.net,1 26256,http://leukaemiabusters.easysearch.org.uk,1 26257,http://letterstotheeditor.yuku.com,1 26258,http://letterboxlock.co.uk,1 26259,http://letslet.net,1 26260,http://www.thetelegraphandargus.co.uk,1 26261,http://letsgocov.com,1 26262,http://letsgo.theorytestpro.co.uk,1 26263,http://lets-learnsom.co.uk,1 26264,http://lets-learn.theorytestpro.co.uk,1 26265,http://leswindrivingschool.co.uk,1 26266,http://www.thetenerifeforum.com,1 26267,http://leonchapman-drivinginstructor.co.uk,1 26268,http://leon-pc,1 26269,http://leo.theorytestpro.co.uk,1 26270,http://lenwell.com,1 26271,http://lenta.ru,1 26272,http://lemura79.livejournal.com,1 26273,http://www.thetfordmtbracing.com,1 26274,http://www.thetravelinsider.info,1 26275,http://www.thetruthabouttb.org,1 26276,http://leicester-driving-school.co.uk,1 26277,http://leguardien.wordpress.com,1 26278,http://legstat.dft.gov.uk,1 26279,http://legends.theorytestpro.co.uk,1 26280,http://legalaidhandbook.com,1 26281,http://www.theufobunker.com,1 26282,http://legaladviserfinder.justice.gov.uk:80,1 26283,http://legal365.secureclient.co.uk,1 26284,http://legal-aware.org,1 26285,http://leeplant.theorytestpro.co.uk,1 26286,http://leekwestwoodpreschool.co.uk,1 26287,http://leedsuniversityunion.org.uk,1 26288,http://leedstoconfidence.com,1 26289,http://1stgearintensivecourses.org.uk,1 26290,http://leedsmencap.easysearch.org.uk,1 26291,http://www.thevalleychildrenscentre.org.uk,1 26292,http://leedsbuildingsociety.co.uk,1 26293,http://leeds.talis.com,1 26294,http://1stfrankbygreasby.easysearch.org.uk,1 26295,http://leeds.pl,1 26296,http://leeds-pl.com,1 26297,http://leebailey.theorytestpro.co.uk,1 26298,http://leda.law.harvard.edu,1 26299,http://leckieandleckie.co.uk,1 26300,http://learnwithsal.theorytestpro.co.uk,1 26301,http://1stelr.easysearch.org.uk,1 26302,http://learnwithmichael.com,1 26303,http://learnwithlee.co.uk,1 26304,http://learnwithlea.web-savvy.net,1 26305,http://learnpass.theorytestpro.co.uk,1 26306,http://learnonline.canberra.edu.au,1 26307,http://learnnpass.theorytestpro.co.uk,1 26308,http://learningthelawaguidetouniversity.blogspot.com,1 26309,http://learningenglish.com,1 26310,http://learningdoncasterladiesfemaledrivinginstructor.co.uk,1 26311,http://learningconnect.co.uk,1 26312,http://learningambition.co.uk,1 26313,http://learning.westpark.w-sussex.sch.uk,1 26314,http://learning.summerlea.w-sussex.sch.uk,1 26315,http://learning.slcollege.org.uk,1 26316,http://learning.skills4learning.co.uk,1 26317,http://www.thevillagemedicalpractice.co.uk,1 26318,http://www.thevillagepractice.org,1 26319,http://learning.highwycombecombined.bucks.sch.uk,1 26320,http://learning.havering-sfc.ac.uk,1 26321,http://www.thevisaguide.com,1 26322,http://www.thewaltoncentre.nhs.uk,1 26323,http://learning.essq.ed.ac.uk,1 26324,http://www.theweddingwizard.co.uk,1 26325,http://learning.digitalfife.com,1 26326,http://learning.cric-uk.co.uk,1 26327,http://learnerstuff.co.uk,1 26328,http://learner.theorytestpro.co.uk,1 26329,http://www.thewhatcentre.com,1 26330,http://learnenglish.de,1 26331,http://learnanddevelop.mariecurie.org.uk,1 26332,http://1stdriverkeighley.co.uk,1 26333,http://learn2drive.co.uk,1 26334,http://learn123.awardspace.co.uk,1 26335,http://learn.unisa.edu.au,1 26336,http://learn.swancoll.ac.uk,1 26337,http://www.thewhitchurchweb.org,1 26338,http://www.thewhitepractice.com,1 26339,http://learn.hillcroft.ac.uk,1 26340,http://www.thewillowsmedicalcentre.co.uk,1 26341,http://learn.efc.ac.uk,1 26342,http://learn.anniesland.ac.uk,1 26343,http://learn-to-drive-liverpool.co.uk,1 26344,http://learn-energy.net,1 26345,http://leanselfreg.vctms.co.uk,1 26346,http://leannewinsper.easysearch.org.uk,1 26347,http://www.thewokinglocal.com,1 26348,http://leadershipaccountancy.vpweb.co.uk,1 26349,http://ldrivingschool.com,1 26350,http://www.thewoodlands.org.uk,1 26351,http://ldlhome.liverpool.local,1 26352,http://ldl2050,1 26353,http://ld.practicallaw.com,1 26354,http://lccweb,1 26355,http://www.thg-vehicle-repairs.co.uk,1 26356,http://www.thincs.co.uk,1 26357,http://lcc.org.uk,1 26358,http://lbustersdrivingschool.com,1 26359,http://www.thinklocalactpersonal.org.uk,1 26360,http://lbsrvhqweb05-v,1 26361,http://lbs-trb:8888,1 26362,http://www.thirsk.org.uk,1 26363,http://lbealde.msmas.co.uk,1 26364,http://lbbspending.blogspot.com,1 26365,http://lbbd.yourchoices.org.uk,1 26366,http://www.thisishome.eu,1 26367,http://lb-primo.hosted.exlibrisgroup.com,1 26368,http://www.thisistheuk.org,1 26369,http://lazybicycleblog.blogspot.com,1 26370,http://laws-blog.blogware.com,1 26371,http://lawborepro.net,1 26372,http://law.page.co.uk,1 26373,http://laurieston.2day.ws,1 26374,http://laurendix.easysearch.org.uk,1 26375,http://laurawest.easysearch.org.uk,1 26376,http://lastingpoint.co.uk,1 26377,http://lasswadegc.easysearch.org.uk,1 26378,http://laser,1 26379,http://laop.easysearch.org.uk,1 26380,http://lanternarts.easysearch.org.uk,1 26381,http://languages.refugeecouncil.org.uk,1 26382,http://langtonherringcvh.easysearch.org.uk,1 26383,http://langleyprimaryschool.easysearch.org.uk,1 26384,http://langas.net,1 26385,http://landscape,1 26386,http://landrover.startpagina.nl,1 26387,http://landrover.auto.com.pl,1 26388,http://1stdrive.auto.officelive.com,1 26389,http://landregistry.co.uk,1 26390,http://www.thomasarnold.co.uk,1 26391,http://landlordzone.co.uk,1 26392,http://landlordlaw.blogspot.com,1 26393,http://landcruiserclub.net,1 26394,http://landaustjames.yolasite.com,1 26395,http://lancs.talis.com,1 26396,http://www.thomasautotec.co.uk,1 26397,http://lancerregister.com,1 26398,http://lancaster.libguides.com,1 26399,http://www.thomasclarkson.cambs.sch.uk,1 26400,http://lancashire.schooljotter.com,1 26401,http://lanarkshirelet.com,1 26402,http://lamdcs.easysearch.org.uk,1 26403,http://www.thomashutchison.co.uk,1 26404,http://lalschools.com,1 26405,http://lakes.chebucto.org,1 26406,http://ladyinter.com,1 26407,http://www.thomaswhithamsixthform.lancs.sch.uk,1 26408,http://ladieswithlesions.wordpress.com,1 26409,http://lacrmapps,1 26410,http://lacebyscouts.easysearch.org.uk,1 26411,http://laburnum:20000,1 26412,http://labradorrescue.easysearch.org.uk,1 26413,http://labourplus.com,1 26414,http://labidiomas.ua.es,1 26415,http://labanquepostale.dp.ua,1 26416,http://l2pdrivingschool.co.uk,1 26417,http://l2pdrivertraining.theorytestpro.co.uk,1 26418,http://l2dandover.theorytestpro.co.uk,1 26419,http://l-teamsom.co.uk,1 26420,http://l-sangels.com,1 26421,http://kyotoshotokankarate.easysearch.org.uk,1 26422,http://kyanmedia.com,1 26423,http://www.thomsonski.co.uk,1 26424,http://kwntsicms:81,1 26425,http://kwik-pass.com,1 26426,http://kwik-pass.co.uk,1 26427,http://kwhittington.homestead.com,1 26428,http://kurnsou1.elephantkiosks.co.uk,1 26429,http://kulugyminiszterium.hu,1 26430,http://www.thornabychildrensnursery.co.uk,1 26431,http://ktspa.easysearch.org.uk,1 26432,http://ksom1645.theorytestpro.co.uk,1 26433,http://ksom.theorytestpro.co.uk,1 26434,http://ksmdriving.theorytestpro.co.uk,1 26435,http://kryssco.theorytestpro.co.uk,1 26436,http://kriminalvarden.se,1 26437,http://kr.dir.yahoo.com,1 26438,http://kpss.easysearch.org.uk,1 26439,http://kps.easysearch.org.uk,1 26440,http://kokeki.com,1 26441,http://www.thorngumbaldparishcouncil.co.uk,1 26442,http://knowsley.theorytestpro.co.uk,1 26443,http://knowledgeportal,1 26444,http://knowledgebase.valeofglamorgan.gov.uk,1 26445,http://www.thorpemarriottlife.net,1 26446,http://knowhow.staging.in.telstra.com.au,1 26447,http://knowhow.in.telstra.com.au,1 26448,http://knockloughrim.educatr.com,1 26449,http://knh.kirklees.gov.uk,1 26450,http://knet2,1 26451,http://knet.knt.co.jp,1 26452,http://kmsdrivinglessonsmiltonkeynes.co.uk,1 26453,http://kmcunx11:7777,1 26454,http://www.threebearseducare.co.uk,1 26455,http://www.threespiresmedical.co.uk,1 26456,http://www.thunderroad.co.uk,1 26457,http://kjs.theorytestpro.co.uk,1 26458,http://kit.fos.org.uk,1 26459,http://kirkwallbaptist.easysearch.org.uk,1 26460,http://kirklees.gov.uk,1 26461,http://www.thurrockcvs.org.uk,1 26462,http://kipmcgrath.co.uk,1 26463,http://www.thurrockroadsafetycampaign.co.uk,1 26464,http://kinnesswood.2day.ws,1 26465,http://www.thwaitesdrive.co.uk,1 26466,http://kingswinford.2day.ws,1 26467,http://1stconnelbrowniepack.easysearch.org.uk,1 26468,http://kingssuttonpsp.easysearch.org.uk,1 26469,http://kingsaccountancy2.sofwebtest.me.uk,1 26470,http://kingfridayseattle.wordpress.com,1 26471,http://www.thyroidhelp.org,1 26472,http://www.tiangong-qigong.org,1 26473,http://kingfieldschoolwoking.2day.ws,1 26474,http://killindramaticclub.easysearch.org.uk,1 26475,http://kilboskola.sala.se,1 26476,http://kierdoc,1 26477,http://kielderptfa.easysearch.org.uk,1 26478,http://kidsunlimi2.eweb102.discountasp.net,1 26479,http://kidscape.easysearch.org.uk,1 26480,http://kids.direct.gov.uk/xmldataservice/media/lesson_plans/fireactionplan.mpeg,1 26481,http://kids.direct.gov.uk/XmlDataService/Media/lesson%20plans/kids%20court%20ks2%201.pdf,1 26482,http://kids.direct.gov.uk/resourceareas/htm1/game/1,1 26483,http://kids.direct.gov.uk/resource_areas/html/Game/2,1 26484,http://kids.direct.gov.uk/resource_areas/html/Game/1,1 26485,http://kids.direct.gov.uk/games/house_of_hazards/house_of_hazards_1.swf,1 26486,http://kids.direct.gov.uk/downloads/teachers_area/worksheetvotes.doc,1 26487,http://kids.direct.gov.uk/download/teachers_area/dinner_dash_ks2_1.doc,1 26488,http://www.ticket4rugby.com,1 26489,http://khafagy.maktoobblog.com,1 26490,http://www.tickettodrive.net,1 26491,http://keyp-an02:6001,1 26492,http://www.ticketupdates.co.uk,1 26493,http://kevi.the3rivers.net,1 26494,http://www.tidbury-green.solihull.sch.uk,1 26495,http://kerrydalestreet.co.uk,1 26496,https://driverpracticaltest.direct.gov.uk/TermsAndConditions.aspx,1 26497,http://kerinctclasses.wordpress.com,1 26498,http://kentwildlife.easysearch.org.uk,1 26499,http://kent.startpagina.nl,1 26500,http://kensington.londoninformer.co.uk,1 26501,http://kenrixschoolofmotoring.co.uk,1 26502,http://kennetcab.easysearch.org.uk,1 26503,http://kennedysfunerals.co.uk,1 26504,http://kenhaighdrivingtuition.co.uk,1 26505,http://kendriving.theorytestpro.co.uk,1 26506,http://keithweatherhogg.theorytestpro.co.uk,1 26507,http://keithsdrivingsch.com,1 26508,http://keiths.theorytestpro.co.uk,1 26509,http://keithmaidment.co.uk,1 26510,http://keithk.org,1 26511,http://keithdean.proboards.com,1 26512,http://kefoundation.org.uk,1 26513,http://keeptonyblairforpm.wordpress.com,1 26514,http://keen2learn.theorytestpro.co.uk,1 26515,http://kd.mysearch.myway.com,1 26516,http://kclsu.org,1 26517,http://kcintranet,1 26518,http://kccns.org.uk,1 26519,http://kc.easysearch.org.uk,1 26520,http://kc-k9s.co.uk,1 26521,http://kbportal-digitaluk.kb.net,1 26522,http://kbp-statravel.kb.net,1 26523,http://kbadmin-slc.kb.net,1 26524,http://www.tiffingreen.com,1 26525,http://kaztek.theorytestpro.co.uk,1 26526,http://kawasakiownersclub.com,1 26527,http://kathbrown.info,1 26528,http://kates.theorytestpro.co.uk,1 26529,http://karmicangels.easysearch.org.uk,1 26530,https://driverpracticaltest.direct.gov.uk/TestCategoryRequirements.aspx,1 26531,http://karensds.theorytestpro.co.uk,1 26532,http://1stclassdrivingglasgow.co.uk,1 26533,http://karenandneildriving.co.uk,1 26534,http://karen.theorytestpro.co.uk,1 26535,http://karbonkalkulator.hu,1 26536,http://kaplanapprenticeships.co.uk,1 26537,http://kankangal.theorytestpro.co.uk,1 26538,http://kaberett.livejournal.com,1 26539,http://www.tiger800.co.uk,1 26540,http://www.tigerlogcabins.com,1 26541,http://justmail.easily.co.uk,1 26542,http://justlearn.theorytestpro.co.uk,1 26543,http://justkids.org.uk,1 26544,http://justine-diaryofajobseeker.blogspot.com,1 26545,http://justdrivesafely.yellsites.co.uk,1 26546,http://just4you.medway.gov.uk,1 26547,http://jupiterdriving.co.uk,1 26548,http://jupitercubs.easysearch.org.uk,1 26549,http://www.tigersheds.com,1 26550,http://junestendall.nottinghamshire.gov.uk,1 26551,http://juliemurphysdrivingschool.theorytestpro.co.uk,1 26552,http://julias-som.co.uk,1 26553,http://julia.theorytestpro.co.uk,1 26554,http://jubileetimecapsule.wordpress.com,1 26555,http://jubilee77garage.co.uk,1 26556,http://jsri.ro,1 26557,http://jsgedge.co.uk,1 26558,http://www.tilehousesurgery.com,1 26559,http://jrsanders.eu,1 26560,http://jrs.theorytestpro.co.uk,1 26561,http://jrgproxy:4080,1 26562,http://jrei-gware.jrei.jp,1 26563,http://jpplumbingandheating.co.uk,1 26564,http://jpmorgan-uat.fundnets.fundworks.com,1 26565,http://jp.mg3.mail.yahoo.co.jp,1 26566,http://jp.mc31.mail.yahoo.co.jp,1 26567,http://jp.mc1006.mail.yahoo.co.jp,1 26568,http://jp.f41.mail.yahoo.co.jp,1 26569,http://www.tilehurstsurgery.co.uk,1 26570,http://journals.cambridge.org,1 26571,http://jottersltd.co.uk,1 26572,http://jordans-solicitors-birmingham.co.uk,1 26573,http://jonrio.com,1 26574,http://www.time2.co.uk,1 26575,http://jonpurchase.brinkster.net,1 26576,http://jollyrogercomplex.org,1 26577,http://joinedupforjobs.org.uk,1 26578,http://johnsdrivingschool.net,1 26579,http://johnsclub.easysearch.org.uk,1 26580,http://johnpaulweller.theorytestpro.co.uk,1 26581,http://johnlowedriving.com,1 26582,http://johnfloydadi.theorytestpro.co.uk,1 26583,http://1stclassdriving.theorytestpro.co.uk,1 26584,http://johnclifford.theorytestpro.co.uk,1 26585,http://johnbrace.wordpress.com,1 26586,http://jodis.hubpages.com,1 26587,http://jobssearchengine.net,1 26588,http://www.time4birth.co.uk,1 26589,http://www.timeforcarers.info,1 26590,http://www.timeplan.com,1 26591,http://www.timesharetalk.co.uk,1 26592,http://www.timeshighereducation.co.uk,1 26593,http://1stcityvanhire2-px.rtrk.co.uk,1 26594,http://www.timothyjamesconsulting.com,1 26595,http://www.tineye.com,1 26596,http://www.tinytoonspre-school.co.uk,1 26597,http://www.tipecscotland.co.cc,1 26598,http://www.tiphero.com,1 26599,http://www.tiresias.org,1 26600,http://www.tisa.uk.com,1 26601,http://www.tjunction.org.uk,1 26602,http://www.tlcdrivertraining.co.uk,1 26603,http://www.tlgv.co.uk,1 26604,http://www.tlltraining.co.uk,1 26605,http://www.tlmotorsltd.co.uk,1 26606,http://www.tlocuk.co.uk,1 26607,http://www.tmac.uk.com,1 26608,http://www.tmlc.org.uk,1 26609,http://www.tntmagazine.com,1 26610,http://www.tobeavet.com,1 26611,http://www.tobysproject.co.uk,1 26612,http://jobseekers.direct.gov.uk./searchoptionjob.aspx,1 26613,http://jobseekers.direct.gov.uk./listjob.aspx,1 26614,http://www.tockwithtraining.co.uk,1 26615,http://jobseekers.direct.gov.uk./detailjob.aspx,1 26616,http://jobseeker.direct.gov.uk./searchoptionjob.aspx,1 26617,http://www.tokyozeirishikai.or.jp,1 26618,http://www.toleranceinternational.org.pe,1 26619,http://www.toleranceinternational.org.uk,1 26620,http://www.tolleshuntdarcy-st-nicholas.essex.sch.uk,1 26621,http://www.tomclarke.org.uk,1 26622,http://jobsearch.about.com,1 26623,http://www.tomlinsonhall.com,1 26624,http://jobs.swale.gov.uk,1 26625,http://jobs.screendaily.com,1 26626,http://www.tomorrowsengineers.co.uk,1 26627,http://www.tomsdrivingschool.co.uk,1 26628,http://jobs.jobinthebox.com,1 26629,http://www.tony-adi.co.uk,1 26630,http://jobs.groupon.co.uk,1 26631,http://www.tonybeedham.com,1 26632,http://www.tonyhart.org,1 26633,http://jobs.bcu.ac.uk,1 26634,http://joboti.com,1 26635,http://jobland.pl,1 26636,http://www.tonysharptrailers.co.uk,1 26637,http://www.tonysofpickering.co.uk,1 26638,http://jobbbloggen.wordpress.com,1 26639,http://joanna-karpasea-jones.suite101.com,1 26640,http://jnc.easysearch.org.uk,1 26641,http://jmortoza.publishpath.com,1 26642,http://jmh,1 26643,http://jjs.theorytestpro.co.uk,1 26644,http://jiten.biglobe.ne.jp,1 26645,http://1stchoicedrivingacademy.co.uk,1 26646,http://jimsdrumlessons.co.uk,1 26647,http://jimjay.blogspot.com,1 26648,http://1stcheshamsg.easysearch.org.uk,1 26649,http://jigsaw.theorytestpro.co.uk,1 26650,http://jhpapprenticeships.com,1 26651,http://jezknight.theorytestpro.co.uk,1 26652,http://jevic.co.jp,1 26653,http://jet2work.org.uk,1 26654,http://jessicamatherstst.easysearch.org.uk,1 26655,http://jessicajackson.easysearch.org.uk,1 26656,http://www.top-ten-glasgow-guide.com,1 26657,http://jeremyharperdrivingschool.co.uk,1 26658,http://jennylous.theorytestpro.co.uk,1 26659,http://jeffcomley.com,1 26660,http://jedsdrivingschool.co.uk,1 26661,http://www.top-travel-tips.com,1 26662,http://jddrivingschool.com,1 26663,http://1stcdaltd.theorytestpro.co.uk,1 26664,http://jciscotland.easysearch.org.uk,1 26665,http://jce-autos.jp,1 26666,http://jbryant.eu,1 26667,http://jbdebtadvice.co.uk,1 26668,http://jaynetserver,1 26669,http://jasonweyman.blogspot.com,1 26670,http://jasonsdrivingschool.theorytestpro.co.uk,1 26671,http://jasonbellschoolofmotoring.com,1 26672,http://jasonattheaa.theorytestpro.co.uk,1 26673,http://www.top100europe.com,1 26674,http://japanesecarexporters-list.com,1 26675,http://janetwilliams.wordpress.com,1 26676,http://janet.theorytestpro.co.uk,1 26677,http://janesdriving.theorytestpro.co.uk,1 26678,http://janemassey.easysearch.org.uk,1 26679,http://janechewins.co.uk,1 26680,http://www.topauto-recovery.co.uk,1 26681,http://www.topazblueuk.com,1 26682,http://jag.theorytestpro.co.uk,1 26683,http://jacobymgtt.weebly.com,1 26684,http://jacks-ds.theorytestpro.co.uk,1 26685,http://jackpound.easysearch.org.uk,1 26686,http://jacklancaster.easysearch.org.uk,1 26687,http://jack.easysearch.org.uk,1 26688,http://www.topclass.org.uk,1 26689,http://www.topclassdriving.co.uk,1 26690,http://iyell,1 26691,http://ixquick.de,1 26692,http://www.topedge.com,1 26693,http://iww.countries.alstom.com,1 26694,http://iworldtest:7777,1 26695,http://iwon.results.myway.com,1 26696,http://iwight.com,1 26697,http://iwest.ourcheshire.cccusers.com:81,1 26698,http://iwanttodrive.theorytestpro.co.uk,1 26699,http://iwadecb.easysearch.org.uk,1 26700,http://ivythesis.typepad.com,1 26701,http://ivyschoolofmotoring.co.uk,1 26702,http://ivinghoeaston.2day.ws,1 26703,http://itsonlymeruth.tumblr.com,1 26704,http://itservicedesk.xlincs.nhs.uk,1 26705,http://itsacoastthing.com,1 26706,http://ithelpathome.org,1 26707,http://ithala,1 26708,http://ithacafreecycle.com,1 26709,https://email.stoke.gov.uk,1 26710,http://itcentre.uwl.ac.uk,1 26711,http://it.zibb.com,1 26712,http://www.topgeardrivingschool.net,1 26713,http://www.tophamdrive.co.uk,1 26714,http://it.mg40.mail.yahoo.com,1 26715,http://it.mc295.mail.yahoo.com,1 26716,http://it.mc284.mail.yahoo.com,1 26717,http://it.mc272.mail.yahoo.com,1 26718,http://it.mc270.mail.yahoo.com,1 26719,http://it.mc248.mail.yahoo.com,1 26720,http://it.m.wikipedia.org,1 26721,http://it.bing.com:80,1 26722,http://www.topix.com,1 26723,http://it-library.com,1 26724,http://issuu.com,1 26725,http://www.topkatdriving.co.uk,1 26726,http://ispeakuspeak.com,1 26727,http://www.toplinkuk.com,1 26728,http://islingtonlaw.org.uk,1 26729,http://islet.org,1 26730,http://islayenergytrust.org.uk,1 26731,http://islandgardens.2day.ws,1 26732,http://islacrouch.easysearch.org.uk,1 26733,http://iseult.blacknight.ie,1 26734,http://iseek.un.org,1 26735,http://www.topsite.com,1 26736,http://iscape5sat,1 26737,http://www.topspin-drivinglessonsinbromsgrove.co.uk,1 26738,http://isagrade2.edublogs.org,1 26739,http://www.toptread.com,1 26740,http://iron-start.com,1 26741,http://1stautoskill.co.uk,1 26742,http://irlandiapolnocna.info,1 26743,http://www.tor-bay-harbour.co.uk,1 26744,http://1st.twipple.jp,1 26745,http://irelandwoodchildrenscentre.com,1 26746,http://www.torfaenhomes.co.uk,1 26747,http://ir11.morson.com,1 26748,http://ir11.kbcat.com,1 26749,http://ipv4.google.com,1 26750,http://ipthosting.org.uk,1 26751,http://www.torpoint.cornwall.sch.uk,1 26752,http://ipropertyswap.co.uk,1 26753,http://iprism,1 26754,http://ippr.typepad.com,1 26755,http://ipassplus.co.uk,1 26756,http://ioanalazarov.com,1 26757,http://investigativemommyblogger.com,1 26758,http://inventoryclerkuk.co.uk,1 26759,http://1e-k.sawyerroad.marietta-city.org,1 26760,http://intraweb-no,1 26761,http://www.totaldrivertraining.co.uk,1 26762,http://intranetshared.ourcheshire.cccusers.com,1 26763,http://intranetportal.jpmorganchase.com,1 26764,http://intranetportal,1 26765,http://www.totalinvestor.co.uk,1 26766,http://intranetapps,1 26767,http://intranet:8280,1 26768,http://intranet4.crown.copfs.gsi.gov.uk:7779,1 26769,http://www.totallypharmacy.co.uk,1 26770,http://intranet2.egov.gov.sg,1 26771,http://www.totalopel.com,1 26772,http://intranet1.salford.coopbank,1 26773,http://intranet1.cup.cam.ac.uk,1 26774,http://www.totalwealthsolutions.co.uk,1 26775,http://intranet02.akerman.com,1 26776,http://intranet.yorkcollege.ac.uk,1 26777,http://intranet.yas.nhs.uk,1 26778,http://www.totnespeople.co.uk,1 26779,http://intranet.westsussex.gov.uk,1 26780,http://www.totstoteenschildcare.co.uk,1 26781,http://intranet.urbanvision.org.uk,1 26782,http://www.totton.ac.uk,1 26783,http://www.touchbromley.com,1 26784,http://www.touchchelmsford.com,1 26785,http://www.touchcoventry.com,1 26786,http://intranet.stockport.nhs.uk,1 26787,http://www.touchcrewe.com,1 26788,http://intranet.southlanarkshire.gov.uk,1 26789,http://intranet.southdowns.ac.uk,1 26790,http://intranet.somcomhealth.nhs.uk,1 26791,http://intranet.solarflarecom.com,1 26792,http://intranet.smhsct.local,1 26793,http://www.touchenfield.com,1 26794,http://www.touchgraph.com,1 26795,http://intranet.seaford.org,1 26796,http://www.touchharrow.com,1 26797,http://intranet.sbic.co.za,1 26798,http://www.touchipswich.com,1 26799,http://www.touchkirkcaldy.com,1 26800,http://www.touchlocal.com:80,1 26801,http://intranet.rspb.org.uk,1 26802,http://19thwbscouts.easysearch.org.uk,1 26803,http://intranet.rbge.org.uk,1 26804,http://intranet.purecoll.local,1 26805,http://intranet.psc.ac.uk,1 26806,http://intranet.ppdi.com,1 26807,http://195.59.163.54,1 26808,http://intranet.policija.si,1 26809,http://intranet.parliament.uk,1 26810,http://www.touchmotherwell.com,1 26811,http://www.touchnewcastle.com,1 26812,http://www.touchoxford.com,1 26813,http://intranet.opus.co.nz,1 26814,http://www.touchpeterborough.com,1 26815,http://www.touchshrewsbury.com,1 26816,http://www.touchsunderland.com,1 26817,http://www.touchtaunton.com,1 26818,http://www.touchwolverhampton.com,1 26819,http://intranet.nomuranow.com,1 26820,http://intranet.nmsi.ac.uk,1 26821,http://intranet.new-tr.wales.nhs.uk,1 26822,http://intranet.nelctp.nhs.uk,1 26823,http://intranet.mpc.local,1 26824,http://195.49.180.85:15871,1 26825,http://intranet.medicalprotection.org,1 26826,http://www.tourettes-action.org.uk,1 26827,http://intranet.lothian.scot.nhs.uk,1 26828,http://intranet.legalombudsman.org.uk,1 26829,http://www.tourismsoutheast.com,1 26830,http://intranet.kirklees.gov.uk,1 26831,http://intranet.keystone-distribution.co.uk,1 26832,http://intranet.justice.gsi.gov.uk,1 26833,http://intranet.humberside.police.uk,1 26834,http://intranet.hull-college.ac.uk,1 26835,http://intranet.hdy.com.au,1 26836,http://intranet.havering-college.ac.uk,1 26837,http://www.towercranetraining.co.uk,1 26838,http://intranet.gsd.kingfisher.com,1 26839,http://intranet.ghdnet.internal,1 26840,http://intranet.gb.avisrac.net,1 26841,http://intranet.flightcentre.co.uk,1 26842,http://intranet.essexcc.gov.uk,1 26843,http://www.towerhouse.nhs.uk,1 26844,http://intranet.ent.baesystems.com,1 26845,http://intranet.educ8training.co.uk,1 26846,http://www.towingdelivery.co.uk,1 26847,http://www.towingschool.enuu.net,1 26848,http://intranet.dom.se,1 26849,http://www.town-farm.surrey.sch.uk,1 26850,http://intranet.deedi.govnet.qld.gov.au,1 26851,http://intranet.cramlingtonlv.co.uk,1 26852,http://intranet.connexionscumbria.net,1 26853,http://intranet.connectingforhealth.nhs.uk,1 26854,http://intranet.coletcourt.org.uk,1 26855,http://www.townlifeonline.com,1 26856,http://intranet.central.health,1 26857,http://intranet.castlecollege.ac.uk,1 26858,http://www.tpas.org.uk,1 26859,http://intranet.bradfordcollege.ac.uk,1 26860,http://intranet.bmj.com,1 26861,http://intranet.blitzgamesstudios.com,1 26862,http://intranet.bl.uk,1 26863,http://www.tpore.co.uk,1 26864,http://intranet.aucb.ac.uk:8080,1 26865,http://intranet.argyll-bute.gov.uk,1 26866,http://intranet.ams.or.at,1 26867,http://intranet.ainscough.local,1 26868,http://www.tpstructures.co.uk,1 26869,http://www.track-days.co.uk,1 26870,http://intranet-finance,1 26871,http://www.trade-press.com,1 26872,http://intralink.dwp.gsi.gov.uk,1 26873,http://www.trade2win.com,1 26874,http://www.tradecarboncreditsuk.co.uk,1 26875,http://intra2.tieto.com,1 26876,http://intra.space.corp,1 26877,http://intra.relate.org.uk,1 26878,http://intra.peakvalley.contour.scapesoft.co.uk,1 26879,http://www.trademe.co.nz,1 26880,http://intra.barton.ac.uk,1 26881,http://intra.adfero.co.uk,1 26882,http://www.tradequalified.co.uk,1 26883,http://intl.m.yahoo.com,1 26884,http://inthegenes-genesandjumpers.blogspot.com,1 26885,http://interviewtechniquesandtips.org,1 26886,http://intervention.livingwithbipolar.co.uk,1 26887,http://internationalbusiness.wikia.com,1 26888,http://international.studentcalculator.org.uk,1 26889,http://international.bmknet.hu,1 26890,http://195.162.21.160:8565,1 26891,http://internal.bolton.gov.uk,1 26892,http://195.104.45.5,1 26893,http://www.trafalgarmedicalpractice.co.uk,1 26894,http://interact,1 26895,http://intelliconnect.wkasiapacific.com.wwwproxy0.library.unsw.edu.au,1 26896,http://www.trafficwatchni.com,1 26897,http://www.trailbikeandenduroclassics.com,1 26898,http://www.trailerandcartraining.co.uk,1 26899,http://int-pub-03.tst.thomsonnet.co.uk,1 26900,http://insuremyquadbike.co.uk,1 26901,https://forms.direct.gov.uk/forms/form/14/en/v14_application_for_a_refund,1 26902,http://instantwebsite.daily.co.uk,1 26903,http://inspirationfmradiojerrysblog.blogspot.com,1 26904,http://insiteeu,1 26905,http://insite.xuhl-tr.nhs.uk,1 26906,http://www.trainforlife.co.uk,1 26907,http://insite.havebury.com,1 26908,http://insite.council.leicester.gov.uk,1 26909,http://insightws.infospace.com,1 26910,http://insight.intuit.com,1 26911,http://www.trainingplusliverpool.co.uk,1 26912,http://www.trainingreference.co.uk,1 26913,http://insidesouthway,1 26914,http://insideireland.ie,1 26915,http://insidedramaschoolauditions.blogspot.com,1 26916,http://inside.rockwool.co.uk,1 26917,http://inside.kingston.gov.uk,1 26918,http://inside.dun1.net.fmcti.com,1 26919,http://inside.bentley.com,1 26920,http://www.tranceisland.com,1 26921,http://inquiringminds.cc,1 26922,http://innovate.direct.gov.uk/pages/foreign-commonwealth-office-travel-advice,1 26923,http://innovate.direct.gov.uk/faq/,1 26924,http://innovate.direct.gov.uk/apps/safer-streets,1 26925,http://www.transform-hr.com,1 26926,http://innovate.direct.gov.uk/2009/03/10/pedalling-some-raw-data,1 26927,http://www.transitionnayland.co.uk,1 26928,http://innovate-apps.direct.gov.uk/widgets/independent/assets/index.html,1 26929,http://www.transportforall.org.uk,1 26930,http://www.transportforbucks.net,1 26931,http://www.transportoffice.gov.uk,1 26932,http://www.transportsafety.dii.r.mil.uk,1 26933,http://194.61.175.66,1 26934,http://inline,1 26935,http://ingrid.zcubes.com,1 26936,http://www.transportsalariedstaffs.org.uk,1 26937,http://www.travel-insurance.net,1 26938,http://ingeusnet,1 26939,http://ingeus.co.uk,1 26940,http://infront223501.theorytestpro.co.uk,1 26941,http://infrastructure.independent.gov.uk,1 26942,http://www.travel-rants.com,1 26943,http://www.travel-solutions.co.uk,1 26944,http://informationcommissioner.gov.uk,1 26945,http://informaticolondres.blogspot.com,1 26946,http://www.travelexpertguide.org,1 26947,http://infomine.ucr.edu,1 26948,http://infoleeds,1 26949,http://infocentras.iom.lt,1 26950,http://infocenter.na.westcongrp.com,1 26951,http://www.travelinsuranceguide.org.uk,1 26952,http://info.rxworks.com,1 26953,http://www.travellersworldwide.com,1 26954,http://info.ecgd.gov.uk,1 26955,http://info.e4s.co.uk,1 26956,http://www.travellingwren.com,1 26957,http://www.travelprofessionals.co.uk,1 26958,http://info.citroen.co.uk,1 26959,http://www.travelrepublic.co.uk,1 26960,http://inet2.surreycc.gov.uk,1 26961,http://inet.axa-uk.intraxa,1 26962,http://www.traveltis.co.uk,1 26963,http://194.128.21.20:3000,1 26964,http://www.traveltoschool.com,1 26965,http://inda12.indamail.hu,1 26966,http://inda-05.indamail.hu,1 26967,http://inclusivechoice.com,1 26968,http://inchturechurch.easysearch.org.uk,1 26969,http://www.travelwise.co.uk,1 26970,http://www.travelzad.com,1 26971,http://www.traymans.co.uk,1 26972,http://inagist.com,1 26973,http://www.traynordrivingschool.co.uk,1 26974,http://www.treatingautism.co.uk,1 26975,http://in.mg6.mail.yahoo.com,1 26976,http://www.treddi.com,1 26977,http://in.mg4.mail.yahoo.com,1 26978,http://in.mc959.mail.yahoo.com,1 26979,http://in.mc958.mail.yahoo.com,1 26980,http://in.mc956.mail.yahoo.com,1 26981,http://www.tree-felling.co.uk,1 26982,http://in.mc953.mail.yahoo.com,1 26983,http://in.mc952.mail.yahoo.com,1 26984,http://in.mc949.mail.yahoo.com,1 26985,http://www.tremendosculos.com,1 26986,http://in.mc1612.mail.yahoo.com,1 26987,http://in.mc1115.mail.yahoo.com,1 26988,http://194.11.16.144,1 26989,http://in-marketing.biz,1 26990,http://in-gear.co.uk,1 26991,http://imsm042.netvigator.com,1 26992,http://impact.easysearch.org.uk,1 26993,http://imp.uwe.ac.uk,1 26994,http://imoodle.imgsoftware.com,1 26995,http://193.63.141.7:8080,1 26996,http://www.trentcollege.net,1 26997,http://immediacy,1 26998,http://imgoingtopass.theorytestpro.co.uk,1 26999,http://imai4-uk.diif.r.mil.uk,1 27000,http://www.tretherras.cornwall.sch.uk,1 27001,http://www.trevithicksurgery.co.uk,1 27002,http://images.google.nl,1 27003,http://images.google.com.au,1 27004,http://www.trevorellis.co.uk,1 27005,http://www.trfwia.org.uk,1 27006,http://imaanlondon.proboards.com,1 27007,http://ilsshared2:20001,1 27008,http://www.trialsuk.co.uk,1 27009,http://ilkley.school-site2.net,1 27010,http://ilkestonfsg.easysearch.org.uk,1 27011,http://ilikedriving.co.uk,1 27012,http://www.tring.herts.sch.uk,1 27013,http://ikona.biz,1 27014,http://iipcontent,1 27015,http://iiac.independent.gov.uk,1 27016,http://ihsc.worc.ac.uk,1 27017,http://igrowveg.com,1 27018,http://ignition.theorytestpro.co.uk,1 27019,http://igmd.org,1 27020,http://igdriving.com,1 27021,http://ifaltd.com,1 27022,http://ifa.intelligence-centre.com,1 27023,http://iestynarmstrong.blogspot.com,1 27024,http://ieservices.org.uk,1 27025,http://www.tripadvisor.com.au,1 27026,http://ie.mg41.mail.yahoo.com,1 27027,http://www.tripanswers.org,1 27028,http://ie.mc280.mail.yahoo.com,1 27029,http://ie.mc246.mail.yahoo.com,1 27030,http://ie.m.yahoo.com,1 27031,http://www.tritade-driving-school.co.uk,1 27032,http://www.tritalk.co.uk,1 27033,http://idrivesafe.theorytestpro.co.uk,1 27034,http://www.trixonline.co.uk,1 27035,http://www.trowbridgedrivinglessons.co.uk,1 27036,http://idrive-safe.com,1 27037,http://idox.tendringdc.gov.uk,1 27038,http://idgnow.uol.com.br,1 27039,http://idetran.blogspot.com,1 27040,http://www.trrt.org.uk,1 27041,http://www.trueshopping.co.uk,1 27042,http://ideahartley.co.uk,1 27043,http://idea.uch.ceu.es,1 27044,http://www.trustedshops.com,1 27045,http://id.m.wikipedia.org,1 27046,http://id.answers.yahoo.com,1 27047,http://icwwwt1-new,1 27048,http://www.trustpilot.co.uk,1 27049,http://icslegal.com,1 27050,http://iconweb1,1 27051,http://iconnect.zone1.scb.net,1 27052,http://iconnect.nngad.co.uk,1 27053,http://www.trustredline.co.uk,1 27054,http://icliverpool.icnetwork.co.uk,1 27055,http://ichthyosis.easysearch.org.uk,1 27056,http://www.tside.co.uk,1 27057,http://ibmcthb:7777,1 27058,http://iaswebp1.cms.brm.pri:7778,1 27059,http://ianwillcockdrivertraining.co.uk,1 27060,http://193.219.177.96,1 27061,http://ianmalone.theorytestpro.co.uk,1 27062,http://iankingdon.theorytestpro.co.uk,1 27063,http://iandolphin.moonfruit.com,1 27064,http://www.tsmdrivingschoolpeterborough.co.uk,1 27065,http://iaehome,1 27066,http://www.tsol.gsi.gov.uk,1 27067,http://iaakuza.blogspot.com,1 27068,http://www.tssa.org.uk,1 27069,http://i2cat.academia.edu,1 27070,http://www.tt-forum.com,1 27071,http://www.ttm.ie,1 27072,http://i-site.thecrownestate.co.uk,1 27073,http://www.ttsom.co.uk,1 27074,http://i-net,1 27075,http://hyperwave.barnsley.gov.uk,1 27076,http://www.tukes.fi,1 27077,http://hypatia.dedoc,1 27078,http://hypatia.adi-diary,1 27079,http://hyderabadspider.asterpix.com,1 27080,http://193.189.74.89,1 27081,http://hwnl.easysearch.org.uk,1 27082,http://hurstmerelibrary.easysearch.org.uk,1 27083,http://hurghadaoasisresort.com,1 27084,http://huradoanglie.cz,1 27085,http://huoniao-owners.co.uk,1 27086,http://hundesonen.no,1 27087,http://humphris.wordpress.com,1 27088,http://humber.conocophillips.net,1 27089,http://humancapital.pwcinternal.com,1 27090,http://hullsynchro.easysearch.org.uk,1 27091,http://hulldrivinglessons.com,1 27092,http://hukumonline.com,1 27093,http://hughesparry.law.officelive.com,1 27094,http://hugh.web-help-service.net,1 27095,http://hud.ada.hpmdigital.co.uk,1 27096,http://www.tummy2mummymidwiferyservices.co.uk,1 27097,http://www.tunneltalk.com,1 27098,http://htclyne.easysearch.org.uk,1 27099,http://www.tuomas-holopainen.com,1 27100,http://hshillingdon.easysearch.org.uk,1 27101,http://hseonline,1 27102,http://hs.sicetelecom.it,1 27103,http://hrwww05:3434,1 27104,http://www.turbochargedrivingschool.co.uk,1 27105,http://hrweb,1 27106,http://hrsystems,1 27107,http://hrdiversity.co.uk,1 27108,http://hrcompanion.co.uk,1 27109,http://hra.easysearch.org.uk,1 27110,http://hr01,1 27111,http://hr-informationlibrary.arts.ac.uk,1 27112,http://hqsvr38,1 27113,http://www.turning-point.co.uk,1 27114,http://www.turnpikegarage.co.uk,1 27115,http://0creditbalancetransfer.org,1 27116,http://hpcmstc.easysearch.org.uk,1 27117,http://hpcdsmoss1:44123,1 27118,http://www.turntoislam.com,1 27119,http://hp-britglish.livejournal.com,1 27120,http://howtowriteawill.org,1 27121,http://howtoshareyourfaith.org,1 27122,http://howtopayoffdebt.org,1 27123,http://www.tuska.co.uk,1 27124,http://howinuk.co.uk,1 27125,http://howardonline.com,1 27126,http://how-to.ask.com,1 27127,http://how-to-build-a-pilgrim-sumo.wikidot.com,1 27128,http://how-2-drive.com,1 27129,http://housingoptions.lichfielddc.gov.uk,1 27130,http://housinginfo,1 27131,http://www.tutor2u.net,1 27132,http://www.tutorsanook.com,1 27133,http://housing-help.co.uk,1 27134,http://www.tutorsdirectory.co.uk,1 27135,http://houghtonmedicalgroup.nhs.uk,1 27136,http://www.tvcp.org,1 27137,http://www.tvetcouncil.com.bb,1 27138,http://hotelstaff.co.za,1 27139,http://hotels.kingworldtravel.com,1 27140,http://hotel.hotspot,1 27141,http://host1.atriumsoft.com,1 27142,http://horshamdrivingschool.co.uk,1 27143,http://horsham.westsussexwellbeing.org.uk,1 27144,http://horserangers.easysearch.org.uk,1 27145,http://www.tvlb.org,1 27146,http://horndean.fluencycms.co.uk,1 27147,http://hornchurchdrivingtestcentre.com,1 27148,http://horizonteamgym.easysearch.org.uk,1 27149,http://horizonschoolofmotoring.co.uk,1 27150,http://horizonone.co.uk,1 27151,http://www.tvlicensing.biz,1 27152,http://horizon,1 27153,http://horap579:8080,1 27154,http://hopsere.org.uk,1 27155,http://hopscotchdaynursery-px.rtrk.co.uk,1 27156,http://hopqadmin:25080,1 27157,http://hopkins.bathbusinessweb.co.uk,1 27158,http://www.tvt-messed-up-mesh.org.uk,1 27159,http://hongpao.co.uk,1 27160,http://hongkong.geoexpat.com,1 27161,http://hongkong.angloinfo.com,1 27162,http://honestmums.co.uk,1 27163,http://www.twamleyandco.co.uk,1 27164,http://homework.webatu.com,1 27165,http://homes.assetz.co.uk,1 27166,http://homepages.nildram.co.uk,1 27167,http://homepages.gold.ac.uk,1 27168,http://homepages.enterprise.net,1 27169,http://homepage.ufp.pt,1 27170,http://www.twheatingltd.co.uk,1 27171,http://www.twigdenasset.co.uk,1 27172,http://homeowner.warmaway.co.uk,1 27173,http://www.twike.co.uk,1 27174,http://homeoffice,1 27175,http://homeletmailer.fastantobas.co.uk,1 27176,http://www.twingo133.net,1 27177,http://home2.swipnet.se,1 27178,http://www.twistngo.com,1 27179,http://www.twitterfall.com,1 27180,http://home.samsltraining.co.uk,1 27181,http://www.twsurveyors.co.uk,1 27182,http://home.online.no,1 27183,http://home.lw.com,1 27184,http://home.kosha.net,1 27185,http://www.tydrivingschool.co.uk,1 27186,http://home.intranet.eon-energie.com,1 27187,http://home.inje.ac.kr,1 27188,http://www.typp.org,1 27189,http://www.tytherington.com,1 27190,http://www.u-drive.uk.com,1 27191,http://www.u-xplore.com,1 27192,http://home-link.org.uk,1 27193,http://www.u3asouthampton.org.uk,1 27194,http://holtest,1 27195,http://holbeachhurnvh.easysearch.org.uk,1 27196,http://hockerillfoundation.org.uk,1 27197,http://www.u3awarwickdistrict.org.uk,1 27198,http://www.ua.dk,1 27199,http://hmv.seatwave.com,1 27200,http://www.ubm.org.uk,1 27201,http://hmsimpregvets.easysearch.org.uk,1 27202,http://www.ubsu.co.uk,1 27203,http://www.ubsu.org.uk,1 27204,http://hmrc-gov.co,1 27205,http://hmhrf.easysearch.org.uk,1 27206,http://www.ucandrive2.co.uk,1 27207,http://hmctsformfinder.direct.gov.uk/HMCTS/Search.do,1 27208,http://hmctsformfinder.direct.gov.uk/HMCTS/GetLeaflet.do,1 27209,http://hmctsformfinder.direct.gov.uk/HMCTS/GetForms.do,1 27210,http://192.168.85.12:8181,1 27211,http://hmctsformfinder.direct.gov.uk/courtfinder/forms/ex301_web_0510.pdf,1 27212,http://hmctsformfinder.direct.gov.uk/courtfinder/forms/ex160a_eng.pdf,1 27213,http://www.ucanpreventcrime.co.uk,1 27214,http://www.ucas.ac.uk.,1 27215,http://hmctscourtfinder.direct.gov.uk/HMCTS/CourtFinder.do,1 27216,http://hm-treasury.gov.uk,1 27217,http://192.168.8.1:82,1 27218,http://www.ucas.com.,1 27219,http://hk.myblog.yahoo.com,1 27220,http://192.168.77.222,1 27221,http://192.168.55.243,1 27222,http://www.uckfielddrivingschool.co.uk,1 27223,http://hitched.co.uk,1 27224,http://hiring.monster.co.uk,1 27225,http://him.uk.msn.com,1 27226,http://hillssidesa.easysearch.org.uk,1 27227,http://hillingdon.middx.net,1 27228,http://hillcroftcollege.easysearch.org.uk,1 27229,http://www.ucpccu.org,1 27230,http://highwayfaults.bedfordshire.gov.uk,1 27231,http://highway-driver-training.co.uk,1 27232,http://highpeakcentre.wordpress.com,1 27233,https://forms.direct.gov.uk/forms/form/259/en/request_a_lost_or_stolen_passport_form_to_be_sent_to_you_in_the_post,1 27234,http://highercallschool.taw.org.uk,1 27235,http://highamferres.web8.devwebsite.co.uk,1 27236,http://192.168.41.66,1 27237,http://hif.wikipedia.org,1 27238,http://hieintranet,1 27239,http://hiddenmarks.org.uk,1 27240,http://www.ucrconsultants.co.uk,1 27241,http://hi.wikipedia.org,1 27242,http://www.ucsunion.com,1 27243,http://hi-arts.co.uk,1 27244,http://hhstaff.co.uk,1 27245,http://hhfc.easysearch.org.uk,1 27246,http://hhbta.com,1 27247,http://hfmiddlesborough.easysearch.org.uk,1 27248,http://heywoodcc.easysearch.org.uk,1 27249,http://www.udonmap.com,1 27250,http://heserver,1 27251,http://hesas.glam.ac.uk,1 27252,http://www.uefalmsforum.com,1 27253,http://herts.hobsons.co.uk,1 27254,http://herefordbc.easysearch.org.uk,1 27255,http://hepwww.rl.ac.uk,1 27256,http://hepcnomads.co.uk,1 27257,http://henryprinceschool.easysearch.org.uk,1 27258,http://hendy.theorytestpro.co.uk,1 27259,http://hemingtonps.easysearch.org.uk,1 27260,http://www.ufodigest.com,1 27261,http://helpinhounslow.org.uk,1 27262,http://helpinghandshomecare.co.uk,1 27263,http://www.uge.uk.com,1 27264,http://help4teens.co.uk,1 27265,http://help2let.co.uk,1 27266,http://help25.creativevirtual.com,1 27267,http://www.uiaccess.com,1 27268,http://help.mothercare.com,1 27269,http://help.liverpoolfc.tv,1 27270,http://192.168.36.44,1 27271,http://www.uk-asbestos-claims.co.uk,1 27272,http://help.autodirect.co.uk,1 27273,http://helionsbumpstead.easysearch.org.uk,1 27274,http://helesweb,1 27275,http://helenasofsprotbrough.com,1 27276,http://hedosop.theorytestpro.co.uk,1 27277,http://heatonhousenursery.co.uk,1 27278,http://heathrowairthought.com,1 27279,http://heathfieldjunior.createprimary.net,1 27280,http://heatherdriving.co.uk,1 27281,http://heather-esafety.blogspot.com,1 27282,http://192.168.36.101,1 27283,http://heart-disease.nottsinfoscript.co.uk,1 27284,http://hearingaid.co.uk,1 27285,http://hearing.screening.nhs.uk,1 27286,http://heanorgate.org.uk,1 27287,http://healthy.wellatcollege.co.uk,1 27288,http://www.uk-homeinsurance.com,1 27289,http://healtheservices,1 27290,http://healthcarestudies.cf.ac.uk,1 27291,http://healthcare-public.blogspot.com,1 27292,http://headwayrotherham.easysearch.org.uk,1 27293,http://headoffice,1 27294,http://headleydownca.easysearch.org.uk,1 27295,http://headleydown.2day.ws,1 27296,http://www.uk-passport-service-guide.com,1 27297,http://hdahampshire.org,1 27298,http://hcsprovek.co.uk,1 27299,http://hcc-726.hullcc.gov.uk:7777,1 27300,http://hcanet,1 27301,http://hcai.dh.gov.uk,1 27302,http://hc-reddot-live1,1 27303,http://192.168.250.82:8884,1 27304,http://www.uk-planningpermission.co.uk,1 27305,http://www.uk-plates.com,1 27306,http://hbcalfresco64a,1 27307,http://hbadvice.co.uk,1 27308,http://hayleytitley.easysearch.org.uk,1 27309,http://hawk.globalinfra.net,1 27310,http://havering.theorytestpro.co.uk,1 27311,http://hatershating.com,1 27312,http://www.uk-study-pack.com,1 27313,http://hastings-px.rtrk.co.uk,1 27314,http://hasnainfoundation.easysearch.org.uk,1 27315,http://hasburyscouts.easysearch.org.uk,1 27316,http://hartside.co.uk,1 27317,http://harrison,1 27318,http://haroldwoodgpwalkin.co.uk,1 27319,http://www.uk.belembassy.org,1 27320,http://harlandaccounting.co.uk,1 27321,http://www.uk.highcommission.gov.au,1 27322,http://hardenhuishteam.easysearch.org.uk,1 27323,http://happyfrugalyear.blogspot.com,1 27324,http://192.168.250.175,1 27325,http://hao.2345.com,1 27326,http://hants.gov.uk,1 27327,http://192.168.250.16:15871,1 27328,http://hannabambina.hubpages.com,1 27329,http://handovers.co.uk,1 27330,http://hamshahrionline.ir,1 27331,http://hampsteadaupairs.com,1 27332,http://hammersconnection.darkbb.com,1 27333,http://halwellmoreleigh.co.uk,1 27334,http://hallmarkschoolofmotoring.co.uk,1 27335,http://www.uk20.co.uk,1 27336,http://hallamdriving.co.uk,1 27337,http://hale.easysearch.org.uk,1 27338,http://hairdotop.it,1 27339,http://hainesdistribution.co.uk,1 27340,http://hailstone,1 27341,http://had.easysearch.org.uk,1 27342,http://hackney.gov.uk,1 27343,http://h4h.easysearch.org.uk,1 27344,http://h41111.www4.hp.com,1 27345,http://www.ukadia.ac.uk,1 27346,http://www.ukadvice.org.uk,1 27347,http://www.ukambulanceforum.com,1 27348,http://gygvc.easysearch.org.uk,1 27349,http://www.ukapa.co.uk,1 27350,http://gxc.google.co.in,1 27351,http://gwuklhrfs04,1 27352,http://gws.easysearch.org.uk,1 27353,http://www.ukbaroquedance.com,1 27354,http://gwentbs.easysearch.org.uk,1 27355,http://gwent.police.uk,1 27356,http://gw.pfungstadt.de,1 27357,http://guru.orange.co.uk,1 27358,http://gunnerpass.co.uk,1 27359,http://gumtree.force.com,1 27360,http://guildwork.com,1 27361,http://guildforddrivinglessons.co.uk,1 27362,http://guides.wsj.com,1 27363,http://guides.myhammer.co.uk,1 27364,http://guides.library.ualberta.ca,1 27365,http://guardiansocialmediacampaigns.eventbrite.com,1 27366,http://guardiansocialmediacampaigns.eventbrite.co.uk,1 27367,http://guaranteedpass.co.uk,1 27368,http://gu.wikipedia.org,1 27369,http://gu.se,1 27370,http://www.ukboilerquotes.com,1 27371,http://www.ukbtlproperty.co.uk,1 27372,http://www.ukbusiness.info,1 27373,http://gtlocaltool.appspot.com,1 27374,http://www.ukcarbuyingtips.com,1 27375,http://www.ukcareerpath.co.uk,1 27376,http://gsg.easysearch.org.uk,1 27377,http://grpconsulting.wordpress.com,1 27378,http://www.ukchinese.com,1 27379,http://www.ukcip.org.uk,1 27380,http://groupspaces.com,1 27381,http://www.ukcosmos.org,1 27382,http://groups.google.com,1 27383,http://group.thebizniz.com,1 27384,http://group.intra.bt.com,1 27385,http://group.barclays.com,1 27386,http://www.ukcougarforum.com,1 27387,http://grodprins.blogg.se,1 27388,http://gro-scotland.gov.uk,1 27389,http://greymatter,1 27390,http://greyhoundscene.proboards.com,1 27391,http://greyhounds4me.proboards.com,1 27392,http://grenosidehomeschool.easysearch.org.uk,1 27393,http://greet.childrencentre.org,1 27394,http://greenz.jp,1 27395,http://greenwichsupport.sotsys.com,1 27396,http://www.ukculture.info,1 27397,http://greenwayschoolassoc.easysearch.org.uk,1 27398,http://greenselfbuild.co.uk,1 27399,http://greenmeupscotty.ca,1 27400,http://greenlivingblog.org.uk,1 27401,http://greenarrowdrivingschool.com,1 27402,http://www.ukdebate.co.uk,1 27403,http://greece.angloinfo.com,1 27404,http://www.ukdirecthomes.com,1 27405,http://greatfinborough.easysearch.org.uk,1 27406,http://www.ukfa.info,1 27407,http://www.ukfindit.com,1 27408,http://greaterlondonforum.org,1 27409,http://greatdunmow.2day.ws,1 27410,http://graysfarmprimary.com,1 27411,http://grays-schoolofmotoring.co.uk,1 27412,http://grandebretagne.weezblog.com,1 27413,http://graleconfintea6.net,1 27414,http://www.ukfr.com,1 27415,http://www.ukhippy.com,1 27416,http://www.ukimmigration.com,1 27417,http://www.ukinjuryclaim.com,1 27418,http://www.uklandagent.co.uk,1 27419,http://graduacao.anhangueravirtual.com.br,1 27420,http://gradmoneymatters.com,1 27421,http://grad.gold.ac.uk,1 27422,http://gr8ladiesdrivingschool.com,1 27423,http://www.uklawyers.co.uk,1 27424,http://gr.qatrain2.eu,1 27425,http://gr.mg5.mail.yahoo.com,1 27426,http://gr.mg40.mail.yahoo.com,1 27427,http://gr.mc293.mail.yahoo.com,1 27428,http://gr.mc258.mail.yahoo.com,1 27429,http://gr.mc257.mail.yahoo.com,1 27430,http://gr.m.yahoo.com,1 27431,http://gpstsociety.org.uk,1 27432,http://gpop.web-help-service.net,1 27433,http://gpjohn.theorytestpro.co.uk,1 27434,http://gpar.easysearch.org.uk,1 27435,http://192.168.220.172:8080,1 27436,http://gp-hq-sharep,1 27437,http://governmentinitiativesiq.com,1 27438,http://gov.im,1 27439,http://gov-direct.co.uk,1 27440,http://www.uklifeleads.co.uk,1 27441,http://gotimeshare.digital-trip.co.uk,1 27442,http://www.uklillypad.dolfrog.co.uk,1 27443,http://gorsleypresch.easysearch.org.uk,1 27444,http://gordonjarvie.theorytestpro.co.uk,1 27445,http://goparty.livejournal.com,1 27446,http://goosh.org,1 27447,http://gooofullsearch.com,1 27448,http://www.ukmove.co.uk,1 27449,http://www.uknumberplates.com,1 27450,http://goodhopefreeps.easysearch.org.uk,1 27451,http://goodbyelplate2.moonfruit.com,1 27452,http://192.168.205.1,1 27453,http://gonzotrucker.com,1 27454,http://gonnapass.theorytestpro.co.uk,1 27455,http://www.ukonlineservices.co.uk,1 27456,http://gomshall.2day.ws,1 27457,http://www.ukoubei.com,1 27458,http://golderportal,1 27459,http://goldenageofaviation.org,1 27460,http://golancaster.co.uk.predns.ourwindowsnetwork.com,1 27461,http://goingfastgettingnowhere.blogspot.com,1 27462,http://gogreener.org.uk,1 27463,http://goengland.jugem.jp,1 27464,http://gobeyond.pfizer.com,1 27465,http://go2uni.net,1 27466,http://www.ukpha.org.uk,1 27467,http://go.direct.gov.uk/index.html,1 27468,http://go.chw.com,1 27469,http://go-rio.co.uk,1 27470,http://go-driving.eu,1 27471,http://go-accelerate.com,1 27472,http://gnesc.easysearch.org.uk,1 27473,http://glwfloat.easysearch.org.uk,1 27474,http://gltcc.easysearch.org.uk,1 27475,http://www.ukpolitical.info,1 27476,http://global2.vic.edu.au,1 27477,http://global.factiva.com.ezproxy.bond.edu.au,1 27478,http://glnt313,1 27479,http://glennstrainingservices.co.uk,1 27480,http://glenkenspg.easysearch.org.uk,1 27481,http://glcstrplnng12.co.uk,1 27482,http://192.168.2.34,1 27483,http://glasgowstopthewarcoalition.easysearch.org.uk,1 27484,http://glasgowdrivingschools.com,1 27485,http://glamorgan.studentpad.co.uk,1 27486,http://www.ukshoppinginspain.com,1 27487,http://gladstoneprimaryschool.co.uk,1 27488,http://gla.defra.gov.uk,1 27489,http://gis.tcgs.tc.edu.tw,1 27490,http://girlguidingstane.easysearch.org.uk,1 27491,http://girlguidingdorset.easysearch.org.uk,1 27492,http://gingerbread.org.uk,1 27493,http://www.ukskeptics.com,1 27494,http://gillcroftpalantype.co.uk,1 27495,http://gilead.ncl.ac.uk:8331,1 27496,http://www.uksolarpanels.com,1 27497,http://gh6f1:7777,1 27498,http://ggessexne.easysearch.org.uk,1 27499,http://www.ukspaceagency.bis.gov.uk,1 27500,http://gfshums.wordpress.com,1 27501,http://getyourgreenbottomup.blogspot.com,1 27502,http://gettinginvolved.cch-online.org.uk,1 27503,http://getthel.theorytestpro.co.uk,1 27504,http://getsmaart.com,1 27505,http://www.ukstartpage.com,1 27506,http://www.ukstt.org.uk,1 27507,http://geton.direct.gov.uk/tv-advert.html,1 27508,http://geton.direct.gov.uk/get-ahead.html,1 27509,http://gethelpdev,1 27510,http://www.uktaxclinic.co.uk,1 27511,http://germany-england.de,1 27512,http://germancarcentre.co.uk,1 27513,http://geospatial.blogs.com,1 27514,http://geographyjazz.blogspot.com,1 27515,http://192.168.2.30,1 27516,http://www.uktier4.co.uk,1 27517,http://genss.nss.scot.nhs.uk,1 27518,http://genie.local,1 27519,http://www.uktoday2jhsdjhjgchgsdjfhab.ru.tc,1 27520,http://www.uktrf.com,1 27521,http://genesis.theorytestpro.co.uk,1 27522,http://genesis-hsia.quadriga-www.com,1 27523,http://genesis-dse.co.uk,1 27524,http://genesis-driving-tuition.co.uk,1 27525,http://genderqueerintheuk.wordpress.com,1 27526,http://www.uktriplets.com,1 27527,http://gedlingplayforum.org,1 27528,http://192.168.168.38:8080,1 27529,http://gearsdrivingschool.theorytestpro.co.uk,1 27530,http://gearsagodriving.co.uk,1 27531,http://gdjnc.easysearch.org.uk,1 27532,http://gcsc.easysearch.org.uk,1 27533,http://gcrll.easysearch.org.uk,1 27534,http://www.ukusforum.com,1 27535,http://gcint-crmdv-001.gcint.gc.gov.uk,1 27536,http://gc-hr01,1 27537,http://gbwksshp003:3001,1 27538,http://gbwksshp003.gslglobal.gsl.local:3001,1 27539,http://gbritain.net,1 27540,http://gbpassport.com,1 27541,http://www.ukvs.com.cn,1 27542,http://gblhor42.uk.rsa-ins.com,1 27543,http://www.ukwelcomes.ais1.bdotg.co.uk,1 27544,http://gblhor14.uk.rsa-ins.com,1 27545,http://gbhqintranet02.avis.co.uk,1 27546,http://gbb.toolbarhome.com,1 27547,http://gba.toolbarhome.com,1 27548,http://www.ukwelder.com,1 27549,http://www.ukwhitegoods.co.uk,1 27550,http://gateway.kmhs,1 27551,http://192.168.16.193,1 27552,http://gatesheadolderpeoplesassembly.co.uk,1 27553,http://garysaundersdrivingtuition.co.uk,1 27554,http://garswood.2day.ws,1 27555,http://garstangstthomasceprimaryschool.yolasite.com,1 27556,http://www.uky.edu,1 27557,http://garryfroggatt.co.uk,1 27558,http://garrycrawford.co.uk,1 27559,http://garnerslaw.co.uk,1 27560,http://garden-polytunnel.co.uk,1 27561,http://garagesinmalvern.co.uk,1 27562,http://www.ukyouthparliament.org.uk,1 27563,http://gapproject.easysearch.org.uk,1 27564,http://ganymede.chester.ac.uk.voyager.chester.ac.uk,1 27565,http://gamevance.infospace.com,1 27566,http://gambiaeducationteaching.gambiaeducationteaching.easysearch.org.uk,1 27567,http://192.168.120.1,1 27568,http://www.ullswatercc.co.uk,1 27569,http://gallifreybase.com,1 27570,http://gallery.mailchimp.com,1 27571,http://www.ulookubook.com,1 27572,http://gadgetarius.net,1 27573,http://192.168.12.1,1 27574,http://gad-childline,1 27575,http://gacps.co.uk,1 27576,http://gabat.easysearch.org.uk,1 27577,http://g7a60.mail.163.com,1 27578,http://g7a59.mail.163.com,1 27579,http://g7a57.mail.163.com,1 27580,http://g4swelfaretowork.com,1 27581,http://g3a38.mail.126.com,1 27582,http://g2a9.mail.126.com,1 27583,http://g2a80.mail.163.com,1 27584,http://g2a15.mail.163.com,1 27585,http://g1a99.mail.163.com,1 27586,http://g1a9.mail.163.com,1 27587,http://g1a8.mail.126.com,1 27588,http://g1a76.mail.163.com,1 27589,http://g1a69.mail.126.com,1 27590,http://g1a60.mail.126.com,1 27591,http://g1a59.mail.126.com,1 27592,http://g1a149.mail.163.com,1 27593,http://g1a135.mail.163.com,1 27594,http://g1_ecs2b_ms005.britishcouncil.org,1 27595,http://fxu.org.uk,1 27596,http://fwprod.nottscc.gov.uk,1 27597,http://fwdservice.com,1 27598,http://fwbox.fastwebnet.it,1 27599,http://futurearth.org,1 27600,http://funnyoldlife.wordpress.com,1 27601,http://funnyjunk.com,1 27602,http://funeralhelper.org,1 27603,http://www.ultimate-guitar.com,1 27604,http://www.ultimatedriving.co.uk,1 27605,http://www.ultimatedrivingskool.co.uk,1 27606,http://192.168.112.11:15871,1 27607,http://fullcontrol.org.uk,1 27608,http://fuelouryouth.org,1 27609,http://192.168.102.20:15871,1 27610,http://ftejerez.com,1 27611,http://192.168.101.10,1 27612,http://fsnmt.easysearch.org.uk,1 27613,http://www.ultimatereef.net,1 27614,http://www.ultraonline.co.uk,1 27615,http://www.ulverley.co.uk,1 27616,http://www.umass.manchester.ac.uk,1 27617,http://fsd.liverpool.gov.uk,1 27618,http://fs2.ulster.ac.uk,1 27619,http://192.168.1.86,1 27620,http://fronteraowners.co.uk,1 27621,http://www.unbiased.co.uk,1 27622,http://frog.kevi.info,1 27623,http://www.uncoverthenet.com,1 27624,http://frog.haybridge.networcs.net,1 27625,http://frog.eveshamhigh.co.uk,1 27626,http://frog.cleeveschool.net,1 27627,http://frog.attleboroughhigh.norfolk.sch.uk,1 27628,http://frimleyvts.org,1 27629,http://friendsreuniteddating.mobi,1 27630,http://friendsoftheschool.easysearch.org.uk,1 27631,http://friendsofheverschool.easysearch.org.uk,1 27632,http://friendsofakitas.easysearch.org.uk,1 27633,http://friendslife.co.uk,1 27634,http://www.undeb.bangor.ac.uk,1 27635,http://frfry.com,1 27636,http://frenchyalondres.wordpress.com,1 27637,http://www.underbodyprotection.co.uk,1 27638,http://freeyourparenting.com,1 27639,http://freeway-drivingschool.co.uk,1 27640,http://www.undertakers.co.uk,1 27641,http://www.unfair-dismissal.org,1 27642,http://www.uni-leipzig.de,1 27643,http://freemailng0105.web.de,1 27644,http://www.uni-regensburg.de,1 27645,http://freeliftstairlifts.co.uk,1 27646,http://www.uni4me.co.uk,1 27647,http://freegovinfo.info,1 27648,http://freedomtochoose.easysearch.org.uk,1 27649,http://freedomsom.theorytestpro.co.uk,1 27650,http://freedomchildminding.co.uk,1 27651,http://freebird-driving.co.uk,1 27652,http://www.unicef.org.uk,1 27653,http://fraserburgh.2day.ws,1 27654,http://francisas777.theorytestpro.co.uk,1 27655,http://franceinlondon.co.uk,1 27656,http://fragsoc.co.uk,1 27657,http://fragilexsociety.easysearch.org.uk,1 27658,http://fragilex.org.uk,1 27659,http://www.unifreight.co.uk,1 27660,http://www.unionenergy.co.uk,1 27661,http://www.unionreps.org.uk,1 27662,http://www.unionukdrivingschool.co.uk,1 27663,http://fr.mc281.mail.yahoo.com,1 27664,http://fr.mc270.mail.yahoo.com,1 27665,http://fr.mc248.mail.yahoo.com,1 27666,http://fr.mc247.mail.yahoo.com,1 27667,http://fr.mc1322.mail.yahoo.com,1 27668,http://fr.luna.tv,1 27669,http://02.chat.mibbit.com,1 27670,http://www.uniquedrivingtuition.co.uk,1 27671,http://www.uniset.ca,1 27672,http://fpta.easysearch.org.uk,1 27673,http://fpsites,1 27674,http://foxtoninclinedplanetrust.easysearch.org.uk,1 27675,http://www.unison-nuh.org.uk,1 27676,http://fotios.org,1 27677,http://fotcp.easysearch.org.uk,1 27678,http://forward.theorytestpro.co.uk,1 27679,http://forums.xkcd.com,1 27680,http://forums.whyweprotest.net,1 27681,http://forums.v3.co.uk,1 27682,http://www.unisongasgl.org.uk,1 27683,https://forms.direct.gov.uk/forms/form/277/en/community_legal_advice-call_back_service,1 27684,http://www.unisoninverclyde.org.uk,1 27685,http://forums.testdriveunlimited2.com,1 27686,http://192.168.1.220:80,1 27687,http://forums.sxoc.nl,1 27688,http://www.unitedkingdom.co.uk,1 27689,http://forums.steampowered.com,1 27690,http://forums.readingfestival.com,1 27691,http://www.universaltraininguk.co.uk,1 27692,http://forums.puntomk2.co.uk,1 27693,http://192.168.1.220,1 27694,http://forums.prospero.com,1 27695,http://www.universitaperta.com,1 27696,http://forums.pre67vw.com,1 27697,http://www.universities.ro,1 27698,http://www.universityofexeter-homemoving.co.uk,1 27699,http://forums.penny-arcade.com,1 27700,http://www.universitytuitionfees.co.uk,1 27701,http://www.unofficialroyalty.com,1 27702,http://www.uobdev.co.uk,1 27703,http://forums.multiplay.co.uk,1 27704,http://www.up.krakow.pl,1 27705,http://www.upc.edu,1 27706,http://www.update.org.uk,1 27707,http://forums.lotro.com,1 27708,http://forums.longhaircommunity.com,1 27709,http://forums.islamicawakening.com,1 27710,http://forums.insightvacations.com,1 27711,http://www.upperplumbers.co.uk,1 27712,http://www.upton-by-chester.cheshire.sch.uk,1 27713,http://forums.dpreview.com,1 27714,http://forums.digitalpoint.com,1 27715,http://forums.d2jsp.org,1 27716,http://forums.craigslist.org,1 27717,http://www.uq.edu.au,1 27718,http://www.urban-energy.co.uk,1 27719,http://forums.computeractive.co.uk,1 27720,http://www.urbanehoylake.co.uk,1 27721,http://www.urbanretreatlandscapes.co.uk,1 27722,http://forums.bfenthusiasts.com,1 27723,http://192.168.1.20:2111,1 27724,http://forums.army.ca,1 27725,http://forums.aria.co.uk,1 27726,http://forums.animeuknews.net,1 27727,http://forums.airshows.co.uk,1 27728,http://forums.afteradoption.org.uk,1 27729,http://www.urc.org.uk,1 27730,http://192.168.1.134,1 27731,http://forum.whatmobile.net,1 27732,http://forum.webuser.co.uk,1 27733,http://www.urmstoninfants.co.uk,1 27734,http://forum.vodafone.co.uk,1 27735,http://forum.ukfur.org,1 27736,http://forum.tunisia.com,1 27737,http://forum.tts.lt,1 27738,http://forum.truckersworld.co.uk,1 27739,http://forum.train2game.com,1 27740,http://forum.tornevall.net,1 27741,http://forum.tdu-central.com,1 27742,http://forum.sydenham.org.uk,1 27743,http://forum.svmc.se,1 27744,http://www.urp.cnr.it,1 27745,http://www.us-credit.com,1 27746,http://www.usa-reise.net,1 27747,http://www.usa-vs-uk.com,1 27748,http://forum.snagging.org,1 27749,http://forum.slc-apps.co.uk,1 27750,http://forum.shamsawy.net,1 27751,http://forum.scoziatravel.it,1 27752,http://forum.rs246.com,1 27753,https://forms.direct.gov.uk/forms/form/4/en/request_a_passport_application_form_to_be_sent_to_you_in_the_post,1 27754,http://www.usedvehiclecheck.co.uk,1 27755,http://forum.qashqaiclub.co.uk,1 27756,http://forum.prideangel.com,1 27757,http://forum.portal.edu.ro,1 27758,http://forum.planetswans.co.uk,1 27759,http://forum.paticik.com,1 27760,http://www.ushelldrive.co.uk,1 27761,http://192.168.0.9:8004,1 27762,http://forum.mr2.it,1 27763,http://www.uship.com,1 27764,http://www.usrowers.com,1 27765,http://www.usseek.com,1 27766,http://www.utahconsuls.org,1 27767,http://forum.mg-rover-freunde.de,1 27768,http://forum.merseyside.eu,1 27769,http://forum.marfan-forum.org.uk,1 27770,http://192.168.0.4,1 27771,http://forum.lush.co.uk,1 27772,http://www.utilityconnection.com,1 27773,http://forum.lrytas.lt,1 27774,http://www.utopiahair.co.uk,1 27775,http://www.utravel.com.hk,1 27776,http://forum.littleone.ru,1 27777,http://forum.liaz.cz,1 27778,http://www.uukpf.co.uk,1 27779,http://forum.kusadasi.biz,1 27780,http://forum.krstarica.com,1 27781,http://forum.kitecrowd.com,1 27782,http://forum.jednoslad.pl,1 27783,http://www.uwants.com,1 27784,http://www.uwha.co.uk,1 27785,http://forum.hsmpforumltd.com,1 27786,http://www.uws2011.com,1 27787,http://forum.glasgow24.pl,1 27788,http://forum.gbssg.org,1 27789,http://192.168.0.244,1 27790,http://forum.fordclubpolska.org,1 27791,http://www.vale-da-telha.eu,1 27792,http://www.vale-housing.co.uk,1 27793,http://forum.fmotl.com,1 27794,http://www.valendale.myby.co.uk,1 27795,http://www.valleacademy.co.uk,1 27796,http://forum.earlybay.com,1 27797,http://forum.downsizer.net,1 27798,http://www.valley-autos.co.uk,1 27799,http://forum.dog.bg,1 27800,http://www.valonline.org.uk,1 27801,http://www.valuemobility.co.uk,1 27802,http://www.valuesmoneyandme.co.uk,1 27803,http://forum.dict.cc,1 27804,http://www.vam-online.org.uk,1 27805,http://www.vam.ac.uk,1 27806,http://www.vanorak.co.uk,1 27807,http://www.vauxhall.co.uk,1 27808,http://www.vax.co.uk,1 27809,http://forum.burek.com,1 27810,http://forum.buckshaw.org,1 27811,http://www.venittandgreaves.com,1 27812,http://forum.bitdefender.com,1 27813,http://forum.baby-gaga.com,1 27814,http://forum.awd.ru,1 27815,http://www.venturacottage.com,1 27816,http://forum.autohoje.com,1 27817,http://forum.astraownersnetwork.co.uk,1 27818,http://www.veosearch.com,1 27819,http://www.verabaird.com,1 27820,http://forum.allergyuk.org,1 27821,http://forum.alfa145.com,1 27822,http://www.verdecito.es,1 27823,http://www.verinav.com,1 27824,http://forum.405mi16.com,1 27825,http://foros.vogue.es,1 27826,http://foro.latabernadelpuerto.com,1 27827,http://www.vernon-coaker-mp.co.uk,1 27828,http://forestnet.lbwf.gov.uk,1 27829,http://forestnet,1 27830,http://foresightrecruitment.co.uk,1 27831,http://foresight.gov.uk,1 27832,http://forensicscienceinformatics.wikispaces.com,1 27833,http://fordwiki.co.uk,1 27834,http://www.veronmaksajat.fi,1 27835,http://fordanglia105eownersclub.co.uk,1 27836,http://forceswaterbeach.2day.ws,1 27837,http://forceswaddington.2day.ws,1 27838,http://forcesshrivenham.2day.ws,1 27839,http://forcesrheindahlen.2day.ws,1 27840,http://forcespaderborn.2day.ws,1 27841,http://forcesmarchwood.2day.ws,1 27842,http://forcesleuchars.2day.ws,1 27843,http://forcesleeming.2day.ws,1 27844,http://forcesgosport.2day.ws,1 27845,http://forcesbassingbourn.2day.ws,1 27846,http://forcesabingdon.2day.ws,1 27847,http://forcenet:8002,1 27848,http://forcedfamily.com,1 27849,http://for.indire.it,1 27850,http://footprints01.rl.ac.uk,1 27851,http://www.vesmirni-lide.cz,1 27852,http://foodimports.direct.gov.uk/middle-east.html,1 27853,http://www.vesti.bg,1 27854,http://foodimports.direct.gov.uk/chinese-traditional.html,1 27855,http://foodimports.direct.gov.uk/chinese,1 27856,http://www.veteran-horse-society.co.uk,1 27857,http://www.vetsurgeon.org,1 27858,http://192.168.0.149,1 27859,http://foodaware.easysearch.org.uk,1 27860,http://fomss.easysearch.org.uk,1 27861,http://folks.easysearch.org.uk,1 27862,http://foleyschoolofmotoring.co.uk,1 27863,http://fohsc.easysearch.org.uk,1 27864,http://fodsupport.org,1 27865,http://192.156.171.214,1 27866,http://fobcoes.easysearch.org.uk,1 27867,http://foac.easysearch.org.uk,1 27868,http://fnet.axa-uk.intraxa,1 27869,http://fncy.us,1 27870,http://18thssg.easysearch.org.uk,1 27871,http://fmfpc.altervista.org,1 27872,http://fmcfsme.com,1 27873,http://fmcalderdale.co.uk,1 27874,http://fmauk.org,1 27875,http://flytippingactionwales.org,1 27876,http://flythomascook.custhelp.com,1 27877,http://flysfc.com,1 27878,http://flyincolours.yolasite.com,1 27879,http://www.vezess.hu,1 27880,http://flutterbyschildminding.co.uk,1 27881,http://www.vfast.co.uk:2095,1 27882,http://flexdrivingschool.co.uk,1 27883,http://1858473209.nvmodules.netvibes.com,1 27884,http://fjsdriving.webhostingdeluxe.com,1 27885,http://fivenights.com,1 27886,http://fisd.lbhf.gov.uk,1 27887,http://fis.northamptonshire.gov.uk,1 27888,http://firsttimepass.theorytestpro.co.uk,1 27889,http://firststepslondon.org,1 27890,http://firstmigration.com,1 27891,http://firstgeardrivingschool.co.uk,1 27892,http://first-revs.co.uk,1 27893,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/ks4/t4_programme.htm,1 27894,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/ks4/t4_contents.htm,1 27895,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/ks4/screen/s_t4_fs_themes.htm,1 27896,http://www.vicaragelanegarage.com,1 27897,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/ks3/t3_part3.htm,1 27898,http://www.victoria.staffs.sch.uk,1 27899,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/ks3/screen/s_fs_themes.htm,1 27900,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/foundation/tf_guess_the_sounds.htm,1 27901,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/foundation/tf_fire_safety_workshop.htm,1 27902,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/foundation/tf_fire_safety_learn.htm,1 27903,http://www.victoriasurgery.co.uk,1 27904,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/foundation/tf_big_bk_story_lesson.htm,1 27905,http://firekills.direct.gov.uk/www.firekills.gov.uk/education/teacher/foundation/screen/s_tf_fire_safety_workshop.htm,1 27906,http://www.vidahealthcare.nhs.uk,1 27907,http://www.vielfliegertreff.de,1 27908,http://www.vii.org,1 27909,http://firekills.direct.gov.uk/pledge/celebrities.html,1 27910,http://www.villacopernico.com,1 27911,http://www.village.derby.sch.uk,1 27912,http://www.vinden.nl,1 27913,http://firekills.direct.gov.uk/calendar.html,1 27914,http://fire.org.uk,1 27915,http://finlandeducationguide.com,1 27916,http://www.vinnysdrivingschool.co.uk,1 27917,http://www.virginactive.co.uk,1 27918,http://finder.cox.net,1 27919,http://www.virtualdrivinglessons.com,1 27920,http://find.tdc.dk,1 27921,http://www.visajourney.com,1 27922,http://www.visawebs.info,1 27923,http://financialplanning.hsbc.co.uk,1 27924,http://financialaid.ie.edu,1 27925,http://174.132.194.66,1 27926,http://fightingrsd.com,1 27927,http://fiches.actuel-cidj.info,1 27928,http://fibrosupportmedway.btck.co.uk,1 27929,http://www.vision2learnforschool.com,1 27930,http://www.vision2learnforschools.co.uk,1 27931,http://www.visionindigo.co.uk,1 27932,http://fgwelch.co.uk,1 27933,http://fgmindandsun.co.uk,1 27934,http://ffepublication.skillsfundingagency.bis.gov.uk,1 27935,http://festivalchurchtrust.easysearch.org.uk,1 27936,http://fesl.s8.siteincubator.co.uk,1 27937,http://ferret-training.com,1 27938,http://fernhurstfolk.magix.net,1 27939,http://www.visit-londoncity.com,1 27940,http://feministphilosophers.wordpress.com,1 27941,http://femaledaily.com,1 27942,http://felinitykat.livejournal.com,1 27943,http://www.visitnorthfield.co.uk,1 27944,http://fearnoch.2day.ws,1 27945,http://fdpm.co.uk,1 27946,http://fcsharepoint,1 27947,http://fco.innovate.direct.gov.uk/countries/spain/travel_advice_full,1 27948,http://fco.innovate.direct.gov.uk/countries/france/travel_advice_full,1 27949,http://fco.bis-web.com,1 27950,http://fcnotes,1 27951,http://fcd.new.hciyork.co.uk,1 27952,http://fccprocint,1 27953,http://fcbluecoat,1 27954,http://174.122.254.42,1 27955,http://fc.gwc.org.uk,1 27956,http://www.visittci.com,1 27957,http://www.visitweymouth.co.uk,1 27958,http://favs.yonx.com,1 27959,http://fasttrack2pass.co.uk,1 27960,http://www.visivagroup.it,1 27961,http://fastpassdrivinglessonsglasgow.co.uk,1 27962,http://fastfixstewarton.com,1 27963,http://fastbull-service.com,1 27964,http://www.visualart.ro,1 27965,http://fassit.co.uk,1 27966,http://fashion.azyya.com,1 27967,http://www.visualchaosstudios.co.uk,1 27968,http://farn-ct.ac.uk,1 27969,http://farmingfriends.com,1 27970,http://www.vitalise.epwebsites.co.uk,1 27971,http://farmacistaininghilterra.splinder.com,1 27972,http://farleyhill.2day.ws,1 27973,http://faqs.bolsover.gov.uk,1 27974,http://faq.cheapoair.com,1 27975,http://fanyi.youdao.com,1 27976,http://www.vl28.dial.pipex.com,1 27977,http://fan-direct.com,1 27978,http://familyservices.direct.gov.uk/search-results/,1 27979,http://familyservices.direct.gov.uk/familyservicesfinder/,1 27980,http://familiesat.forumhope.com,1 27981,http://falklandcc.easysearch.org.uk,1 27982,http://falconsc.easysearch.org.uk,1 27983,http://fairviewprimary.easysearch.org.uk,1 27984,http://fairview.theorytestpro.co.uk,1 27985,http://fairview.deadfrontier.com,1 27986,http://fair.easysearch.org.uk,1 27987,http://factoidz.com,1 27988,http://facetime.tncbb.local:8090,1 27989,http://facebook.education.gov.uk,1 27990,http://www.vocal.org.uk,1 27991,http://www.vocationalalliance.com,1 27992,http://f800riders.org,1 27993,http://ezproxy.twu.edu:2056,1 27994,http://www.voicefordisability.org.uk,1 27995,http://ezedrivingtuition.co.uk,1 27996,http://ez-ei.com,1 27997,http://eynsham-partnership.btck.co.uk,1 27998,http://www.voicesforhorses.co.uk,1 27999,http://www.volkswagenforum.co.uk,1 28000,http://extstageapp.starthere.org,1 28001,http://extremesearcher.com,1 28002,http://extraordinary.direct.gov.uk/the_crew/group_manager.html,1 28003,http://extraordinary.direct.gov.uk/downloads/downloads.html,1 28004,http://extraordinary.direct.gov.uk/careers/result.aspx,1 28005,http://extraordinary.direct.gov.uk/careers/more_information.aspx,1 28006,http://extranet3.kent.gov.uk,1 28007,http://extranet.pack-net.co.uk,1 28008,http://extranet.corp.dixcart.com,1 28009,http://extrahandsrec.co.uk,1 28010,http://www.volkswagondeals.co.uk,1 28011,http://extend.easysearch.org.uk,1 28012,http://ext.woodenhill.bracknell-forest.sch.uk,1 28013,http://expressnet.tnt.com,1 28014,http://exposingfeminism.wordpress.com,1 28015,http://export.gov,1 28016,http://172.31.52.213:15871,1 28017,http://www.voluntaryactionsws.webeden.co.uk,1 28018,http://expatsmalaga.com,1 28019,http://www.voluntarysectorgateway.org,1 28020,http://expats.org.uk,1 28021,http://exminster.2day.ws,1 28022,http://exmdrive.theorytestpro.co.uk,1 28023,http://exeterci.easysearch.org.uk,1 28024,http://excite-english.com,1 28025,http://exchange.cleanburnersystems.com,1 28026,http://www.volunteercentremerton.org.uk,1 28027,http://excelmotorcycletraining.co.uk,1 28028,http://excelldrivingschool.co.uk,1 28029,http://excelerate.avonvalleyschool.co.uk,1 28030,http://exceldrivertraining.net,1 28031,http://excel.officeapps.live.com,1 28032,http://172.31.42.30:32000,1 28033,http://ex7.mail2web.com,1 28034,http://ex-vecs.com,1 28035,http://ewt.easysearch.org.uk,1 28036,http://ewd.sssc.uk.com,1 28037,http://evodrive.theorytestpro.co.uk,1 28038,http://eveshr,1 28039,http://everychancerescue.easysearch.org.uk,1 28040,http://eventarchive.gcho.local,1 28041,http://evaq8.co.uk,1 28042,http://eval8.xyleme.com,1 28043,http://www.volunteeringwirral.co.uk,1 28044,http://www.volunteermanagers.org.uk,1 28045,http://www.volunteerstaffordshire.org.uk,1 28046,http://euroguidance-france.org,1 28047,http://euro-labour.co.uk,1 28048,http://euresonlinejobdays.eu,1 28049,http://eureferendum.blogspot.com,1 28050,http://euportal,1 28051,http://www.volvo-480-europe.org,1 28052,http://eua3300001-vip1-rufusleonard-ips.eu.verio.net,1 28053,http://eu3.startingpage.com,1 28054,http://www.volvo300mania.com,1 28055,http://eu.startingpage.com,1 28056,http://www.vonne.org.uk,1 28057,http://eu.arc.aggrekonet.biz,1 28058,http://etuitions.org,1 28059,http://www.vosa.gov.uk#,1 28060,http://etsymetal.blogspot.com,1 28061,http://etsg.easysearch.org.uk,1 28062,http://etrust.org.uk,1 28063,http://et.wikipedia.org,1 28064,http://estuviaje.com,1 28065,http://www.vosa.gov.uk.,1 28066,http://www.voscur.org,1 28067,http://essexpoliceunison.org,1 28068,http://www.vpl.ca,1 28069,http://www.vscc.co.uk,1 28070,http://essexdrive.theorytestpro.co.uk,1 28071,http://172.31.16.1,1 28072,http://essentials,1 28073,http://essentialmarketingplanning.blogspot.com,1 28074,http://espo.org,1 28075,http://esperantolobby.wordpress.com,1 28076,http://espanol.answers.yahoo.com,1 28077,http://www.vso.org.uk,1 28078,http://esmaholden.suite101.com,1 28079,http://esl.proz.com,1 28080,http://esgpx.com,1 28081,http://esense.bruntwood.co.uk,1 28082,http://escape.easysearch.org.uk,1 28083,http://www.vtct.org.uk,1 28084,http://es.yhs4.search.yahoo.com,1 28085,http://www.vulnerableworkers.co.uk,1 28086,http://172.30.20.14,1 28087,http://www.vwv.co.uk,1 28088,http://es.mc292.mail.yahoo.com,1 28089,http://es.mc258.mail.yahoo.com,1 28090,http://ertltd.com,1 28091,http://erskine-chambers.co.uk,1 28092,http://eroyton.co.uk,1 28093,http://ernestsautomatic.com,1 28094,http://erinbendle.cold10.com,1 28095,http://eric.wyreforestdc.local,1 28096,http://eric.lewisham.ac.uk,1 28097,http://eric.greenlnk.net,1 28098,http://erewashbc.org.uk,1 28099,http://era-solutions.co.uk,1 28100,http://equalrightsuk.blogspot.com,1 28101,http://equaleducation.blogspot.com,1 28102,http://172.28.100.7:9093,1 28103,http://epspta.easysearch.org.uk,1 28104,http://epsom-ewell.gov.uk,1 28105,http://eporady.blogspot.com,1 28106,http://epichosts.co.uk,1 28107,http://www.w8forum.dk,1 28108,http://www.wadebridgedoctors.co.uk,1 28109,http://epetitions.direct.gov.uk/petitions/9650,1 28110,http://epetitions.direct.gov.uk/petitions/9316,1 28111,http://epetitions.direct.gov.uk/petitions/8993,1 28112,http://epetitions.direct.gov.uk/petitions/8903/signature/signed,1 28113,http://epetitions.direct.gov.uk/petitions/8903,1 28114,http://epetitions.direct.gov.uk/petitions/8533,1 28115,http://epetitions.direct.gov.uk/petitions/8454,1 28116,http://epetitions.direct.gov.uk/petitions/8187,1 28117,http://epetitions.direct.gov.uk/petitions/7925,1 28118,http://epetitions.direct.gov.uk/petitions/7770,1 28119,http://epetitions.direct.gov.uk/petitions/7570,1 28120,http://epetitions.direct.gov.uk/petitions/7337/signature/signed,1 28121,http://epetitions.direct.gov.uk/petitions/7334,1 28122,http://epetitions.direct.gov.uk/petitions/6986,1 28123,http://epetitions.direct.gov.uk/petitions/6342/signature/signed,1 28124,http://epetitions.direct.gov.uk/petitions/6071/signature/signed,1 28125,http://epetitions.direct.gov.uk/petitions/5334,1 28126,http://epetitions.direct.gov.uk/petitions/4787,1 28127,http://epetitions.direct.gov.uk/petitions/4671,1 28128,http://epetitions.direct.gov.uk/petitions/461,1 28129,http://epetitions.direct.gov.uk/petitions/45,1 28130,http://epetitions.direct.gov.uk/petitions/4411,1 28131,http://epetitions.direct.gov.uk/petitions/4226/signature/signed,1 28132,http://epetitions.direct.gov.uk/petitions/3577,1 28133,http://epetitions.direct.gov.uk/petitions/356/signature/signed,1 28134,http://epetitions.direct.gov.uk/petitions/356,1 28135,http://epetitions.direct.gov.uk/petitions/20754,1 28136,http://epetitions.direct.gov.uk/petitions/20485,1 28137,http://epetitions.direct.gov.uk/petitions/20219%3E,1 28138,http://epetitions.direct.gov.uk/petitions/20133,1 28139,http://epetitions.direct.gov.uk/petitions/19828/signature/signed,1 28140,http://epetitions.direct.gov.uk/petitions/19768,1 28141,http://epetitions.direct.gov.uk/petitions/19741,1 28142,http://epetitions.direct.gov.uk/petitions/19512,1 28143,http://epetitions.direct.gov.uk/petitions/19350/signature/signed,1 28144,http://epetitions.direct.gov.uk/petitions/19319,1 28145,http://epetitions.direct.gov.uk/petitions/1929,1 28146,http://epetitions.direct.gov.uk/petitions/19268,1 28147,http://epetitions.direct.gov.uk/petitions/18820,1 28148,http://epetitions.direct.gov.uk/petitions/18742,1 28149,http://epetitions.direct.gov.uk/petitions/18733,1 28150,http://epetitions.direct.gov.uk/petitions/18638,1 28151,http://epetitions.direct.gov.uk/petitions/18508,1 28152,http://epetitions.direct.gov.uk/petitions/18396,1 28153,http://epetitions.direct.gov.uk/petitions/18328,1 28154,http://epetitions.direct.gov.uk/petitions/183/signature/signed,1 28155,http://epetitions.direct.gov.uk/petitions/18283/signature/signed,1 28156,http://epetitions.direct.gov.uk/petitions/18283,1 28157,http://epetitions.direct.gov.uk/petitions/18192/signature/signed,1 28158,http://epetitions.direct.gov.uk/petitions/18072,1 28159,http://epetitions.direct.gov.uk/petitions/17821/signature/signed,1 28160,http://epetitions.direct.gov.uk/petitions/17638/signature/signed,1 28161,http://epetitions.direct.gov.uk/petitions/17638,1 28162,http://epetitions.direct.gov.uk/petitions/17581,1 28163,http://epetitions.direct.gov.uk/petitions/17388,1 28164,http://epetitions.direct.gov.uk/petitions/17237,1 28165,http://epetitions.direct.gov.uk/petitions/17027,1 28166,http://epetitions.direct.gov.uk/petitions/16798,1 28167,http://epetitions.direct.gov.uk/petitions/16571,1 28168,http://epetitions.direct.gov.uk/petitions/16322,1 28169,http://epetitions.direct.gov.uk/petitions/1617/signature/signed,1 28170,http://epetitions.direct.gov.uk/petitions/1617,1 28171,http://epetitions.direct.gov.uk/petitions/16140,1 28172,http://epetitions.direct.gov.uk/petitions/16111,1 28173,http://epetitions.direct.gov.uk/petitions/16080/signature/signed,1 28174,http://epetitions.direct.gov.uk/petitions/15476,1 28175,http://epetitions.direct.gov.uk/petitions/15442,1 28176,http://epetitions.direct.gov.uk/petitions/1535/signature/signed,1 28177,http://172.28.100.23:9093,1 28178,http://epetitions.direct.gov.uk/petitions/15341/signature/signed,1 28179,http://epetitions.direct.gov.uk/petitions/15341,1 28180,http://epetitions.direct.gov.uk/petitions/15115,1 28181,http://epetitions.direct.gov.uk/petitions/15081,1 28182,http://epetitions.direct.gov.uk/petitions/15063,1 28183,http://epetitions.direct.gov.uk/petitions/14909,1 28184,http://epetitions.direct.gov.uk/petitions/14696,1 28185,http://epetitions.direct.gov.uk/petitions/14591,1 28186,http://epetitions.direct.gov.uk/petitions/14586,1 28187,http://epetitions.direct.gov.uk/petitions/14574,1 28188,http://epetitions.direct.gov.uk/petitions/14125,1 28189,http://epetitions.direct.gov.uk/petitions/14079,1 28190,http://epetitions.direct.gov.uk/petitions/13716,1 28191,http://epetitions.direct.gov.uk/petitions/13695,1 28192,http://epetitions.direct.gov.uk/petitions/13586,1 28193,http://0-www.sciencedirect.com.lib.cpce-polyu.edu.hk,1 28194,http://epetitions.direct.gov.uk/petitions/13177,1 28195,http://epetitions.direct.gov.uk/petitions/13085,1 28196,http://epetitions.direct.gov.uk/petitions/13005,1 28197,http://epetitions.direct.gov.uk/petitions/12504,1 28198,http://epetitions.direct.gov.uk/petitions/12405/signature/signed,1 28199,http://epetitions.direct.gov.uk/petitions/11530,1 28200,http://epetitions.direct.gov.uk/petitions/11291,1 28201,http://epetitions.direct.gov.uk/petitions/10864,1 28202,http://epetitions.direct.gov.uk/petitions/10733,1 28203,http://epetitions.direct.gov.uk/petitions/10633,1 28204,http://epetitions.direct.gov.uk/petitions/10519,1 28205,http://www.wagdrivingschool.co.uk,1 28206,http://epetitions.direct.gov.uk/departments/6,1 28207,http://epetitions.direct.gov.uk/departments/13,1 28208,http://www.wageweb.info,1 28209,http://epd.open.ac.uk,1 28210,http://epcassure.com,1 28211,http://www.waimao8.net,1 28212,http://epc-shropshire.co.uk,1 28213,http://epc-harrogate.yellsites.co.uk,1 28214,http://epaper.thetimes.co.uk,1 28215,http://ep.sso.corpms.com,1 28216,http://eon-uk.com,1 28217,http://www.waitroseconnect.co.uk,1 28218,http://envirosearch.org,1 28219,http://environmentcentre.easysearch.org.uk,1 28220,http://environment-agency.gov.uk,1 28221,http://enterprise.somerset.gov.uk,1 28222,http://enstsnotesappa1,1 28223,http://enrol.bournemouth.gov.uk,1 28224,http://enmacwiki,1 28225,http://enjoyresponsibly.co.uk,1 28226,http://enjoykalkan.com,1 28227,http://enjoydriving.theorytestpro.co.uk,1 28228,http://enigma.theorytestpro.co.uk,1 28229,http://enic-naric.net,1 28230,http://enhanced.charter.net,1 28231,http://englishinrussia.ru,1 28232,http://englishinguiaintermedio.wordpress.com,1 28233,http://english.stackexchange.com,1 28234,http://english-eggs.blogspot.com,1 28235,http://www.wakefield.childrencentres.org,1 28236,http://172.28.100.14:9093,1 28237,http://www.wakefieldwindscreens.co.uk,1 28238,http://enfield-council.custhelp.com,1 28239,http://eneya.wordpress.com,1 28240,http://energyuk.cmail1.com,1 28241,http://energyapps.consumerfocus.org.uk,1 28242,http://endoflifecareinformation.stchristophers.org.uk,1 28243,http://endfuelpoverty.org.uk,1 28244,http://www.waldmanspharmacy.co.uk,1 28245,http://www.waldrons.co.uk,1 28246,http://en.wikibooks.org,1 28247,http://www.walesprepared.org,1 28248,http://en.gjdriving.co.uk,1 28249,http://en.community.dell.com,1 28250,http://en-gb.luna.tv,1 28251,http://emuch.net,1 28252,http://emprereading.easysearch.org.uk,1 28253,http://www.walkerdrivertraining.com,1 28254,http://www.walkerizard.co.uk,1 28255,http://employee.hiqonline.co.uk,1 28256,http://employandpay.wordpress.com,1 28257,http://emo-d-doh-illegaltobacco:8080,1 28258,http://172.28.100.13:9093,1 28259,http://emmabarber.easysearch.org.uk,1 28260,http://emlondres.com,1 28261,http://emito.qualitybros.co.uk,1 28262,http://emis.webmentorlibrary.com,1 28263,http://emilyllewellyn.easysearch.org.uk,1 28264,http://www.walkermedical.nhs.uk,1 28265,http://emh.tenantsfirst.com,1 28266,http://emeawiki.dc6.digitalriver.com,1 28267,http://www.walkersharp.co.uk,1 28268,http://emailmg.easycgi.com,1 28269,http://email18.secureserver.net,1 28270,http://email16.secureserver.net,1 28271,http://email13.secureserver.net,1 28272,http://email10.secureserver.net,1 28273,http://www.walkingforum.co.uk,1 28274,http://email03.secureserver.net,1 28275,http://email.tiscali.cz,1 28276,http://email.broadgreeninternationalschool.com,1 28277,http://email.bg,1 28278,http://email-sharedealing.co.uk,1 28279,http://email,1 28280,http://elyvle,1 28281,http://elrond:15987,1 28282,http://172.28.100.12:9093,1 28283,http://elondyn.co.uk,1 28284,http://ellyandmick.blogspot.com,1 28285,http://ellon.2day.ws,1 28286,http://ellisschhemingfield.easysearch.org.uk,1 28287,http://ellisdrivingtuition.co.uk,1 28288,http://ellisdriving.co.uk,1 28289,http://elleeseymour.com,1 28290,http://ellabarnes.easysearch.org.uk,1 28291,http://elitedriving.co.uk,1 28292,http://eliteautomobile.com,1 28293,http://172.24.45.200:9000,1 28294,http://elib.strode-college.ac.uk,1 28295,http://172.21.85.22,1 28296,http://elf-hornet.4forum.biz,1 28297,http://www.walport.com,1 28298,http://electmelondon.net,1 28299,http://electionsmeter.com,1 28300,http://elearning.rawlinscollege.org.uk,1 28301,http://www.waltersnextgenerationbicycles.com,1 28302,http://www.walthamstow-academy.org,1 28303,http://elderlycaretips.info,1 28304,http://eldercare-solutions.co.uk,1 28305,http://el.science.wikia.com,1 28306,http://ektronstg.roehampton.ac.uk,1 28307,http://ekspresas.co.uk,1 28308,http://ek-intranet,1 28309,http://ejw.i8.com,1 28310,http://eisweb,1 28311,http://eis.bris.ac.uk,1 28312,http://eip-prod.bradford.gov.uk,1 28313,http://einstein,1 28314,http://eilp-server,1 28315,http://eikmail.com,1 28316,http://ehi.cpami.gov.tw,1 28317,http://eh-trove,1 28318,http://egov.kz,1 28319,http://egncstraining.careshield.co.uk,1 28320,http://egham.2day.ws,1 28321,http://egenda.southribble.gov.uk,1 28322,http://egcc.easysearch.org.uk,1 28323,http://eforms.dorsetforyou.com,1 28324,http://efocus,1 28325,http://efllecturer.blogspot.com,1 28326,http://eec.easysearch.org.uk,1 28327,http://edunet,1 28328,http://educationjobsinbirmingham725.wikispaces.com,1 28329,http://educationinuk.or.kr,1 28330,http://educationcymru.org,1 28331,http://education.ukresident.com,1 28332,http://www.wandsworth.nhs.uk,1 28333,http://www.wandsworthcabx.org.uk,1 28334,http://education.iseek.com,1 28335,http://education.gg,1 28336,http://www.want2drive.co.uk,1 28337,http://edubase.gov.uk,1 28338,http://172.20.1.163:9090,1 28339,http://www.wantaddigest.com,1 28340,http://edu.taisha.org,1 28341,http://edsuite.decs.sa.edu.au,1 28342,http://edrivingsolutions.com,1 28343,http://edmstagsrv01:90,1 28344,http://editorial.practicallaw.com,1 28345,http://www.wantage.com,1 28346,http://edit.suffolk.gov.uk,1 28347,http://edit.rnib.org.uk,1 28348,http://edinburghsambaschool.org.uk,1 28349,http://www.wanttoleaveteaching.co.uk,1 28350,http://edinburgh.startpagina.nl,1 28351,http://edgeworth.2day.ws,1 28352,http://edge.ppgdev.com,1 28353,http://eden.searchpw.com,1 28354,http://eddsdrivingschool.co.uk,1 28355,http://ecpd.liv-coll.ac.uk,1 28356,http://ecoveritas.wikispaces.com,1 28357,http://www.wanttopass.com,1 28358,http://ecoswitch.com,1 28359,http://ecostudioxv.com,1 28360,http://ecosse205challenge.co.uk,1 28361,http://www.wapt.com,1 28362,http://econsultations.redbridge.gov.uk,1 28363,http://www.warblingtonpreschool.co.uk,1 28364,http://economix.blogs.nytimes.com,1 28365,http://www.wardenlodge.co.uk,1 28366,http://economicsurvivor.net,1 28367,http://economicsonline.co.uk,1 28368,http://ecommerce-associates.info,1 28369,http://ecologicliving.co.uk,1 28370,http://172.20.0.200,1 28371,http://eco-wizz.com,1 28372,http://eco-living.blogspot.com,1 28373,http://eco-capital.co.uk,1 28374,http://www.warmerhealthyhomes.org.uk,1 28375,http://www.warmfront.co.uk,1 28376,http://www.warmfrontltd.com,1 28377,http://ec.europa.eu.,1 28378,http://172.17.8.92,1 28379,http://ebay.co.uk,1 28380,http://172.17.56.15,1 28381,http://easywalkerseasylies.freeforums.org,1 28382,http://www.warnerbus.com,1 28383,http://www.warringtonaccountants.co.uk,1 28384,http://172.16.87.15,1 28385,http://easysites.drivinginstructorsites.co.uk,1 28386,http://easysite-test2,1 28387,http://easypass.theorytestpro.co.uk,1 28388,http://www.warringtonnorthconservatives.org.uk,1 28389,http://www.warting.com,1 28390,http://easybuy.mencap.org.uk,1 28391,http://eaststreetdrive.theorytestpro.co.uk,1 28392,http://eastriggs.2day.ws,1 28393,http://eastrenfrewshire.theorytestpro.co.uk,1 28394,http://eastogwell.2day.ws,1 28395,http://eastmolesey.2day.ws,1 28396,http://eastlothian19.live.jadu.net,1 28397,http://eastlothian.theorytestpro.co.uk,1 28398,http://172.16.240.4,1 28399,http://eastkilbride.2day.ws,1 28400,http://www.warwickartscentre.co.uk,1 28401,http://eastdurhamfuneralservice.co.uk,1 28402,http://eastbourne.gov.uk,1 28403,http://eastberkshire.greenparty.org.uk,1 28404,http://eastassembly.wordpress.com,1 28405,http://earthwatch.easysearch.org.uk,1 28406,http://earthstudies.co.uk,1 28407,http://eap.rightcorecare.co.uk,1 28408,http://eanda,1 28409,http://eaglandhill.2day.ws,1 28410,http://eact.easysearch.org.uk,1 28411,http://eacintra01,1 28412,http://eacea.ec.europa.eu,1 28413,http://eabintranet,1 28414,http://e1.mc1206.mail.yahoo.com,1 28415,http://e-uapv.univ-avignon.fr,1 28416,http://e-streetdrive.theorytestpro.co.uk,1 28417,http://e-leren.vdab.be,1 28418,http://e-learning.dyslexiaaction.org.uk,1 28419,http://e-government.az,1 28420,http://dzl.baidu.com,1 28421,http://dyspraxiamiddx.easysearch.org.uk,1 28422,http://www.wasisdrivingschool.co.uk,1 28423,http://dysc.co.uk,1 28424,http://dynamic-recruitment.co.uk,1 28425,http://dylanpatel.easysearch.org.uk,1 28426,http://dwww.standardlife.ca,1 28427,http://dwplondonmedia.blogsome.com,1 28428,http://www.waterloo.org.uk,1 28429,http://www.waterloo.tameside.sch.uk,1 28430,http://www.waterlooandstlevansurgery.co.uk,1 28431,http://dweb.peugeotinfo.net,1 28432,http://172.16.100.1:8000,1 28433,http://dwct.easysearch.org.uk,1 28434,http://www.waterofleith.org.uk,1 28435,http://www.waterside.moveitnetwork.com,1 28436,http://www.waterwidget.co.uk,1 28437,http://www.watfordhindugroup.org.uk,1 28438,http://www.watfordwillsandtrusts.co.uk,1 28439,http://www.way-to-work.co.uk,1 28440,http://dunvantrfc.easysearch.org.uk,1 28441,http://dunsdale.2day.ws,1 28442,http://www.way2go.me.uk,1 28443,http://dumanschoolofmotoring.co.uk,1 28444,http://dulcineaworld.com,1 28445,http://dukeriesnews.tumblr.com,1 28446,http://dudley.schooljotter.com,1 28447,http://duafc.easysearch.org.uk,1 28448,http://www.ways2work.org.uk,1 28449,http://www.waze.com,1 28450,http://www.wchnet.co.uk,1 28451,http://www.wdco.org,1 28452,http://www.weald.surrey.sch.uk,1 28453,http://www.wealthmanagement.web.rbsgrp.net,1 28454,http://du-glasgow.co.uk,1 28455,http://www.weareperth.co.uk,1 28456,http://www.wearsidewomeninneed.org.uk,1 28457,http://dswestpennine.giving.officelive.com,1 28458,http://dswdriving.co.uk,1 28459,http://dswa.easysearch.org.uk,1 28460,http://dsscribs.com,1 28461,http://www.weather.com,1 28462,http://www.weaverham.cheshire.sch.uk,1 28463,http://www.web-labs.co.uk,1 28464,http://dschl195.ds.devon.gov.uk,1 28465,http://www.web40571.clarahost.co.uk,1 28466,http://ds-cbtsvr1:8080,1 28467,http://druryandco.financial.officelive.com,1 28468,http://drumoak.2day.ws,1 28469,http://drummingteacher.net,1 28470,http://www.webbers.devon.sch.uk,1 28471,http://drugrehabclinics.co.uk,1 28472,http://www.webbrowsersearch.com,1 28473,http://drpriceandpartners.co.uk,1 28474,http://drpl.co.uk,1 28475,http://dropthel.com,1 28476,http://www.webdevfaqs.com,1 28477,http://drivingtrainingcentre.co.uk,1 28478,http://drivingtheorytestcentre.co.uk,1 28479,http://www.webenrol.com,1 28480,http://drivingteststheory.co.uk,1 28481,http://drivingsuccess.theorytestpro.co.uk,1 28482,https://giffgaff.com,1 28483,http://drivingschoolsreigate.co.uk,1 28484,http://drivingschoolsisleworth.co.uk,1 28485,http://drivingschoolsassociation.com,1 28486,http://drivingschoolcoulsdon.co.uk,1 28487,http://drivingschoolcannock.co.uk,1 28488,http://drivingschoolbasildon.com,1 28489,http://drivingschool-directory.co.uk,1 28490,http://drivingottery.netau.net,1 28491,http://www.webexpenses.com,1 28492,http://drivinglicencetests.co.uk,1 28493,http://drivinglessonsyeadon.co.uk,1 28494,http://www.webforditas.hu,1 28495,http://172.16.0.32,1 28496,http://drivinglessonsouthampton.co.uk,1 28497,http://www.webjam.com,1 28498,http://drivinglessonsmacclesfield.co.uk,1 28499,http://drivinglessonsinswindon.com,1 28500,http://drivinglessonsinkeighley.com,1 28501,http://drivinglessonsinbradford.com,1 28502,http://drivinglessonsgosforth.co.uk,1 28503,http://drivinglessonsfinder.co.uk,1 28504,http://drivinglessonsbirmingham.net,1 28505,http://drivinglessons.webs.com,1 28506,http://drivinglesson.com,1 28507,https://hr.vmware.com,1 28508,http://drivinginstructorsessex.co.uk,1 28509,http://drivinginstructorjobs.org.uk,1 28510,http://drivinginstructorcourses.org,1 28511,http://drivinginstructorbsmipswich.co.uk,1 28512,http://drivinginstructorbournemouth.com,1 28513,http://drivingguru.blogspot.com,1 28514,http://www.weblearneng.com,1 28515,http://drivingcannock.co.uk,1 28516,http://drivingambitionuk.co.uk,1 28517,http://drivingambition.theorytestpro.co.uk,1 28518,http://driving-passed-mk.co.uk,1 28519,http://driving-lessons-southampton.co.uk,1 28520,http://driving-lessons-orpington.com,1 28521,http://172.16.0.20,1 28522,http://driving-instructors-uk.co.uk,1 28523,http://drivez.moonfruit.com,1 28524,http://www.weblinksresearch.com.au,1 28525,http://drivewithmarks.theorytestpro.co.uk,1 28526,http://drivewithdon.theorytestpro.co.uk,1 28527,http://drivewise-som.com,1 28528,http://drivethrul.co.uk,1 28529,http://drivesom.theorytestpro.co.uk,1 28530,http://drivesafely1st.com,1 28531,http://driversfriend.co.uk,1 28532,http://driverighttoday.co.uk,1 28533,http://driverhireleedseast.sotsys.com,1 28534,http://www.webmail.derwentside.net,1 28535,http://16thlongeatonguides.easysearch.org.uk,1 28536,http://www.webmail.interdns.co.uk,1 28537,http://driveondrivingschool.net,1 28538,http://drivensom.co.uk,1 28539,http://www.webpagesthatsuck.com,1 28540,http://driveiq.co.uk,1 28541,http://drivedale.co.uk,1 28542,http://driveawayschoolofmotoring.co.uk,1 28543,http://driveat15.com,1 28544,http://driveaide.co.uk,1 28545,http://drive-uk.com,1 28546,http://drive-academy.co.uk,1 28547,http://drive-2-freedom.co.uk,1 28548,http://www.webpowersoftware.com,1 28549,http://drfronkensteen.blogspot.com,1 28550,http://16faylearntodrive.theorytestpro.co.uk,1 28551,http://drasacs.easysearch.org.uk,1 28552,http://dralgs.easysearch.org.uk,1 28553,http://dragondriver.com,1 28554,http://draftsites.co.uk,1 28555,http://drafts.theorytestpro.co.uk,1 28556,http://www.webs4cd.co.uk,1 28557,http://www.webscanningservice.com,1 28558,http://dpsite.dev.wearefarm.com,1 28559,http://www.websearch.com,1 28560,http://www.webserve4u.co.uk,1 28561,http://www.websiteoftheyearawardnight.co.uk,1 28562,http://dp2,1 28563,http://downforme.org,1 28564,http://www.websites.thedms.co.uk,1 28565,http://dounehighland.2day.ws,1 28566,http://douglas.theorytestpro.co.uk,1 28567,http://doubleglazingsecrets.com,1 28568,http://dotwiki,1 28569,http://dos.easysearch.org.uk,1 28570,http://dorsetroughriders.co.uk,1 28571,http://dorsetfire.co.uk,1 28572,http://dorsetadvocacy.easysearch.org.uk,1 28573,http://dorkingchristiancentre.easysearch.org.uk,1 28574,http://dorisbanhamsanctuary.easysearch.org.uk,1 28575,http://dorchestercns.easysearch.org.uk,1 28576,http://162604.theorytestpro.co.uk,1 28577,http://www.webtretho.com,1 28578,http://www.webuser.co.uk,1 28579,http://dontforgetyourtoothbrush.com,1 28580,http://www.webwatch2000.com,1 28581,http://doncaster.pl,1 28582,http://doncaster-recruitment.com,1 28583,http://donacloneyps.org.uk,1 28584,http://dommail1.renfrewshire.gov.uk,1 28585,http://dominoapps.nottscc.gov.uk,1 28586,http://162.26.62.26,1 28587,http://domains.googlesyndication.com,1 28588,http://domainnotfound.optimum.net,1 28589,http://dolphindrivingschool.co.uk,1 28590,http://dolceta.net,1 28591,http://dojnet,1 28592,http://doig.net,1 28593,http://www.wecil.co.uk,1 28594,http://doe2010.staging.nigov.net,1 28595,http://dodderhill2.design-jazz.com,1 28596,http://documents.manchester.ac.uk,1 28597,http://documents.intra.bt.com:81,1 28598,http://doctorstax.org,1 28599,http://docshare,1 28600,http://docmanpilot,1 28601,http://docman.solent.ac.uk,1 28602,http://www.weddingpath.co.uk,1 28603,http://www.weekendsoccer.co.uk,1 28604,http://www.weeklyhome.com,1 28605,http://dmundie.theorytestpro.co.uk,1 28606,http://www.weizmann.ac.il,1 28607,http://www.welcomemobility.co.uk,1 28608,http://dlrk.dk,1 28609,http://dljinteractive.co.uk,1 28610,http://dlect1-stg,1 28611,http://dlauk.net,1 28612,http://dlahelpgroup.com,1 28613,http://dl.dropbox.com.,1 28614,http://diwb.org,1 28615,http://www.weldbankgarage.co.uk,1 28616,http://www.weldonedrivingtuition.co.uk,1 28617,http://divany.hu,1 28618,http://ditu.google.cn,1 28619,http://dittas.org,1 28620,http://distancelearningcoursesgb.co.uk,1 28621,http://disneyworld.disney.go.com,1 28622,http://dismissal.wordpress.com,1 28623,http://discussion.guprod.gnl,1 28624,http://discuss.joelonsoftware.com,1 28625,http://discovery.nationalarchives.gov.uk,1 28626,http://discoverthephilippines.co.uk,1 28627,http://discovershropshire.org.uk,1 28628,http://discoverengineering.co.uk,1 28629,http://www.wellabooks.co.uk,1 28630,http://www.wellerslawgroup.com,1 28631,http://disable.gr,1 28632,http://www.wellfieldinfants.com,1 28633,http://disabilityhackney.org,1 28634,http://disabilitydirect.com,1 28635,http://www.wellingboroughhomes.org,1 28636,http://disability-cuts-map.modernactivity.co.uk,1 28637,http://directory.warwickshire.gov.uk,1 28638,http://directory.thatsbritain.co.uk,1 28639,http://www.wellingtonmedicalcentre.co.uk,1 28640,http://directguv.org.uk,1 28641,http://www.wellingtonprimary-hereford.co.uk,1 28642,http://directgovjobs.net,1 28643,http://www.wellwarmsolar.co.uk,1 28644,http://www.wellwork.co.uk,1 28645,http://directgov.consumerfocuslabs.org,1 28646,http://www.welovepolly.org,1 28647,http://directdebtadvice.co.uk,1 28648,http://directbooking.org.uk,1 28649,http://direct.the-corrado.net,1 28650,http://www.welshcoalmines.co.uk,1 28651,http://dir.naver.com,1 28652,http://dir.abroadeducation.com.np,1 28653,http://dipmoodle.southdevon.ac.uk,1 28654,http://dipendra,1 28655,http://dionysus.efestivals.co.uk,1 28656,http://dinningtoncb.easysearch.org.uk,1 28657,http://digswelllakesociety.easysearch.org.uk,1 28658,http://digitalunite.com,1 28659,http://digitaltachograph.gov.uk,1 28660,http://digitalistv.lap.hu,1 28661,http://digitalcitizens7-8.wiki.elanco.net,1 28662,http://www.welshwidows.co.uk,1 28663,http://digitaalpesten.wikispaces.com,1 28664,http://digiquick.agencypreview.info,1 28665,http://digest.intranet.int,1 28666,http://www.welshwomensaid.org,1 28667,http://didyouknow.org,1 28668,http://diddyvans.co.uk,1 28669,http://dictionary.sensagent.com,1 28670,http://www.wembleyparkdrive.co.uk,1 28671,http://dickpuddlecote.blogspot.com,1 28672,http://dickens.fi,1 28673,http://dic.academic.ru,1 28674,http://diasporadosenfermeiros.com,1 28675,http://dianesschoolofmotoring.theorytestpro.co.uk,1 28676,http://157.55.0.141,1 28677,http://diamonddrivingschool.theorytestpro.co.uk,1 28678,http://diamond.slc.co.uk,1 28679,http://dialogsdev.citizensadvice.org.uk,1 28680,http://dialogs.citizensadvice.org.uk,1 28681,http://dial2drive.easysearch.org.uk,1 28682,http://157.203.43.67,1 28683,http://dhsintranet,1 28684,http://dhef.easysearch.org.uk,1 28685,http://dhc.wildbeans.co.uk,1 28686,http://dgfasli.nic.in,1 28687,http://dftstg.dvla.gov.uk,1 28688,http://dfp.staging.nigov.net,1 28689,http://devweb.prenihe.test:8080,1 28690,http://devsiteadmin.southeastwater.co.uk,1 28691,http://devsecure.studentfinancedirect.co.uk,1 28692,http://devsecure.studentfinance.direct.gov.uk/protocol/index.do,1 28693,http://www.weobley-pri.hereford.sch.uk,1 28694,http://devoli.nsms.ox.ac.uk,1 28695,http://devintra,1 28696,http://www.wera.org.uk,1 28697,http://developme.ning.com,1 28698,http://developecs.ning.com,1 28699,http://dev4.ehaus2.co.uk,1 28700,http://dev1.tagish.net,1 28701,http://dev.thepensionservice.gov.uk,1 28702,http://dev.smartlandlord.co.uk,1 28703,http://dev.parentsintheloop.co.uk,1 28704,http://dev.opera.com,1 28705,http://dev.myaviva.co.uk,1 28706,http://dev.movewithus.co.uk,1 28707,http://dev.mlad.s43.siteincubator.co.uk,1 28708,http://dev.kdc.education.gov.uk,1 28709,http://dev.intouch.ccc,1 28710,http://dev.garage.a2om.com,1 28711,http://dev.eojd.eu,1 28712,http://dev.edrivinglessons.co.uk,1 28713,http://dev.donmar.sequence.co.uk,1 28714,http://dev.cmoptions.org,1 28715,http://dev.admin.internal.admin.cam.ac.uk,1 28716,http://www.werelate.org,1 28717,http://www.wertpapier-forum.de,1 28718,http://desenvolan.5forum.net,1 28719,http://dersingham.2day.ws,1 28720,http://www.wessex4epc.co.uk,1 28721,http://derbyhomes.org,1 28722,http://157.181.199.194,1 28723,http://www.wessexdriveability.org.uk,1 28724,http://dentalserver01.liv.ac.uk,1 28725,http://demontfortstudents.com,1 28726,http://demoguide.homematch.co.uk,1 28727,http://democratic.bracknell-forest.gov.uk,1 28728,http://demo7.sotsys.com.local,1 28729,http://demo5.dimensioninteractive.com,1 28730,http://demo1.clt-totalsolution.co.uk,1 28731,http://demo.tribaldemo.com,1 28732,http://www.wessexwater.co.uk,1 28733,http://demo.achievecommunity.com,1 28734,http://demo-110.demo.jadu.net,1 28735,http://dementiacentre.com,1 28736,http://dementiacaredevon.co.uk,1 28737,http://dementia.nottsinfoscript.co.uk,1 28738,http://156.61.41.112,1 28739,http://delsoluk.com,1 28740,http://www.west-dunbarton.gov.uk,1 28741,http://dell.uk.msn.com,1 28742,http://www.west-minster.kent.sch.uk,1 28743,http://deirakealey.web.officelive.com,1 28744,http://defencejobs.net,1 28745,http://defenceconsultations.org.uk,1 28746,http://deedrive.co.uk,1 28747,http://deedpoll.org.uk,1 28748,http://www.westbelfast.com,1 28749,http://deceunincksharepoint,1 28750,http://debtrecoveryplus.co.uk,1 28751,http://deborahrussell.easysearch.org.uk,1 28752,http://debbiesschoolofmotoring.biz,1 28753,http://151.176.242.242,1 28754,http://debatewise.com,1 28755,http://150.100.2.39,1 28756,http://0-www.nationalarchives.gov.uk.library.edgehill.ac.uk,1 28757,http://dealerservices.autotrader.co.uk,1 28758,http://dealerportal1.volvo.com,1 28759,http://www.westberks.org,1 28760,http://deafax.easysearch.org.uk,1 28761,http://dead-shot12.blogspot.com,1 28762,http://www.westberkspps.org.uk,1 28763,http://www.westbourne.sutton.sch.uk,1 28764,http://de.mg41.mail.yahoo.com,1 28765,http://www.westburytownforums.co.uk,1 28766,http://de.memory-alpha.org,1 28767,http://de.mc865.mail.yahoo.com,1 28768,http://de.mc864.mail.yahoo.com,1 28769,http://de.mc656.mail.yahoo.com,1 28770,http://de.mc296.mail.yahoo.com,1 28771,http://de.mc290.mail.yahoo.com,1 28772,http://de.mc282.mail.yahoo.com,1 28773,http://de.mc276.mail.yahoo.com,1 28774,http://de.mc270.mail.yahoo.com,1 28775,http://de.mc253.mail.yahoo.com,1 28776,http://de.mc248.mail.yahoo.com,1 28777,http://de.mc1601.mail.yahoo.com,1 28778,http://www.westcheshireac.co.uk,1 28779,http://www.westcorkjobsupport.com,1 28780,http://dddl.csurl.eu,1 28781,http://ddcinhouse.daventrydc.gov.uk,1 28782,http://dctrsapep01.vesuk.local:50100,1 28783,http://dcsafetycameras.org,1 28784,http://dcpiis03:4000,1 28785,http://dcms-otetest,1 28786,http://dcms,1 28787,http://dccs.easysearch.org.uk,1 28788,http://dccacademy.org.uk,1 28789,http://dcc-wiweb01.derbyad.net,1 28790,http://dcc-wiweb01,1 28791,http://dcc-wicms01:8082,1 28792,http://dbsnet.dbs.com.sg,1 28793,http://www.westdrivesom.co.uk,1 28794,http://dbcccweb3,1 28795,http://davyhulmegb.easysearch.org.uk,1 28796,http://davids.theorytestpro.co.uk,1 28797,http://davidogden.theorytestpro.co.uk,1 28798,http://davidgrayschoolofmotoring.co.uk,1 28799,http://davidcampbelltrust.easysearch.org.uk,1 28800,http://davesgarden.com,1 28801,http://davesdahon.wordpress.com,1 28802,https://jobs.nationwide.co.uk,1 28803,https://lha-direct.voa.gov.uk,1 28804,http://davepickford.co.uk,1 28805,http://146.185.248.163,1 28806,http://davemcat.theorytestpro.co.uk,1 28807,http://davelucas.theorytestpro.co.uk,1 28808,http://davehowell.theorytestpro.co.uk,1 28809,http://daveharrisonbolton.com,1 28810,http://davefelladrivingtuition.com,1 28811,http://davecollinsonadi.co.uk,1 28812,http://daveclark.theorytestpro.co.uk,1 28813,http://daveatred.theorytestpro.co.uk,1 28814,http://146.116.190.85:9992,1 28815,http://data.nbn.org.uk,1 28816,http://data.ecn.ac.uk,1 28817,http://data.axmag.com,1 28818,http://data-port.draxpower.com,1 28819,http://darwendrivinginstructor.com,1 28820,http://dartford.gov.uk,1 28821,http://darrensdrivingschool.com,1 28822,http://dar-nar.blogspot.com,1 28823,http://dannymorrisplumbingandheating.co.uk,1 28824,http://danna.theorytestpro.co.uk,1 28825,http://danilo.es,1 28826,http://www.westfield.hereford.sch.uk,1 28827,http://danger-ahead.railfan.net,1 28828,http://danegrovepta.easysearch.org.uk,1 28829,http://dancerdaycare.co.uk,1 28830,http://danceprofessional.webs.com,1 28831,http://dan-love.com,1 28832,http://dallington.wordpress.com,1 28833,http://www.westfield.wigan.sch.uk,1 28834,http://daleelleeds.blogspot.com,1 28835,http://dain.wea.org.uk,1 28836,http://dailydigit.com,1 28837,http://dailybooth.com,1 28838,http://dafcars.proboards.com,1 28839,http://dadslovekids2.org,1 28840,http://dads.is-slick.com,1 28841,http://dadonboys.com,1 28842,http://dacweb01,1 28843,http://dactest,1 28844,http://dac.webfactional.com,1 28845,http://dabr.myopiclunacy.com,1 28846,http://dabr.co.uk,1 28847,http://dab.argh.tc,1 28848,http://d69.com,1 28849,http://d1.scribdassets.com,1 28850,http://d.hatena.ne.jp,1 28851,http://www.westfields-jun.hants.sch.uk,1 28852,http://cyprusliving.netfirms.com,1 28853,http://www.westgatepractice.co.uk,1 28854,http://cymru.gov.uk,1 28855,http://cymdeithastaihafan.easysearch.org.uk,1 28856,http://www.westguildfordconfederation.org.uk,1 28857,http://cycleroutes.transportdirect.info,1 28858,http://cycle.stoke.gov.uk,1 28859,http://cyberunions.org,1 28860,http://cyberbullyingstories.com,1 28861,http://cwwam.org,1 28862,http://www.westhamonline.net,1 28863,http://cws,1 28864,http://cwlhc.easysearch.org.uk,1 28865,http://cwebmail.mail.126.com,1 28866,http://cwacpartnerships.ourcheshire.cccusers.com,1 28867,http://cvwriting.net,1 28868,http://cvstudio.redcarrot.net,1 28869,http://cv4.biz,1 28870,http://cv057,1 28871,http://cutcarbon.info,1 28872,http://www.westlakesacademy.org.uk,1 28873,http://cushiontheimpact.wordpress.com,1 28874,http://www.westlancs.ac.uk,1 28875,http://cursurienglezaonline.blogspot.com,1 28876,http://cursingmalay.blogspot.com,1 28877,http://curriemotors.toyota.co.uk,1 28878,http://curia.europa.eu,1 28879,http://curacare.co.uk,1 28880,http://cumnockacademy-links.wikispaces.com,1 28881,http://www.westlodge.harrow.sch.uk,1 28882,http://cumbria.ac.uk,1 28883,http://www.westlothian.com,1 28884,http://cullingworth.learnanywhere.co.uk,1 28885,http://cukpa.org.uk,1 28886,http://cukas.ac.uk,1 28887,http://cuddles.easysearch.org.uk,1 28888,http://www.westlothiancouncil.org,1 28889,http://ctrlv-cyberbullying.weebly.com,1 28890,http://ctab1.wordpress.com,1 28891,http://cssd.ac.uk,1 28892,http://csrhelp,1 28893,http://csm.theorytestpro.co.uk,1 28894,http://csla2008.pbworks.com,1 28895,http://csep.co.uk,1 28896,http://csdrivertraining.co.uk,1 28897,http://csd.wustl.edu,1 28898,http://www.westmidlandsdeanery.nhs.uk,1 28899,http://www.westminsternaked.com,1 28900,http://cs1.e-learningforhealthcare.org.uk,1 28901,http://www.westminstertransportationservices.co.uk,1 28902,http://145.10.10.1,1 28903,http://www.westmoorjuniorschool.com,1 28904,http://cruseherefordshire.easysearch.org.uk,1 28905,http://cruiseforums.cruisecritic.com,1 28906,http://cruisecontroldriving.theorytestpro.co.uk,1 28907,http://croydonamphibians.easysearch.org.uk,1 28908,http://croydon.theorytestpro.co.uk,1 28909,http://crownpropertyinvestments.com,1 28910,http://crossnet,1 28911,http://141291305953410.iframehost.com,1 28912,http://cropshop.byteaccess.net,1 28913,http://12thstag.easysearch.org.uk,1 28914,http://croftonsconveyancing.co.uk,1 28915,http://crockenhill.kent.sch.uk,1 28916,http://croatuk.proboards.com,1 28917,http://crmweb2:8080,1 28918,http://crmweb1:8080,1 28919,http://www.westmorlandprimary.co.uk,1 28920,http://crm1.powys.gov.uk,1 28921,http://crm.trafford.gov.uk,1 28922,http://crm,1 28923,http://www.westnorthwesthomesleeds.org.uk,1 28924,http://www.westofengland.org,1 28925,http://crimondraceway.21.forumer.com,1 28926,http://12thkg.easysearch.org.uk,1 28927,http://www.westparkprimary.org.uk,1 28928,http://cressi-sub.net,1 28929,http://creditunion.co.uk,1 28930,http://creativecircles.co.uk,1 28931,http://createsend.com,1 28932,http://127.0.0.1:9634,1 28933,http://crawley.westsussexwellbeing.org.uk,1 28934,http://crawfordsworld.com,1 28935,http://www.westropsurgery.co.uk,1 28936,http://crave.cnet.co.uk,1 28937,http://cranswicksom.freehostia.com,1 28938,http://craigsplates.com,1 28939,http://craigneukpetersburnonline.easysearch.org.uk,1 28940,http://craigchapmansdrivingschool.com,1 28941,http://craigbusch.easysearch.org.uk,1 28942,http://craftersreunited.co.uk,1 28943,http://crabtree.herts.dbprimary.com,1 28944,http://www.westsuffolk-ac.co.uk,1 28945,http://cqf.com,1 28946,http://www.westsussexcarers.org.uk,1 28947,http://cp-slc.kb.net,1 28948,http://coxwoldpfa.easysearch.org.uk,1 28949,http://cowiki,1 28950,http://coversure.info,1 28951,http://coventry.talis.com,1 28952,http://couv.com,1 28953,http://www.westsussexwpa.org.uk,1 28954,http://127.0.0.1:81,1 28955,http://www.westwightmiddle.iow.sch.uk,1 28956,http://www.westwood.notts.sch.uk,1 28957,http://www.westwoodfirst.co.uk,1 28958,http://courses,1 28959,http://countryproperties-headoffice.briefyourmarket.com,1 28960,http://www.wetag.co.uk,1 28961,http://coughingbear.livejournal.com,1 28962,http://costadelaluz.angloinfo.com,1 28963,http://costabrava.angloinfo.com,1 28964,http://corpnet,1 28965,http://corp.barclayswealth.net,1 28966,http://coroners.leicester.gov.uk,1 28967,http://cornwall.schooljotter.com,1 28968,http://cornwall.gov.uk,1 28969,http://www.weybridgecc.org,1 28970,http://cornwall.ac.uk,1 28971,http://www.weyfield-pri.surrey.sch.uk,1 28972,http://cornishgems.com,1 28973,http://cornishdrivingschools.co.uk,1 28974,http://www.weymouth.ac.uk,1 28975,http://corg:8080,1 28976,http://127.0.0.1:49153,1 28977,http://core.videoegg.com,1 28978,http://cordis.europa.eu,1 28979,http://copmanthorpe.demonweb.co.uk,1 28980,http://www.whale.to,1 28981,http://copalonline.ning.com,1 28982,http://coopersdrivingschool-walsall.co.uk,1 28983,http://coombeboysschool.org,1 28984,http://www.whaleslide.com,1 28985,http://convertible-driving-school.co.uk,1 28986,http://www.wharfedaleforums.com,1 28987,http://controlledpractice.co.uk,1 28988,http://control.conscious.co.uk,1 28989,http://contiki.com,1 28990,http://contiki.co.uk,1 28991,http://contentmanager.dev.harinet.haringey.gov.uk,1 28992,http://www.whatithinks.com,1 28993,http://www.whatqualifications.co.uk,1 28994,http://content.oxfordshire.gov.uk,1 28995,https://mail.qq.com,1 28996,http://contactregister.net,1 28997,http://contactcentrepre.birmingham.gov.uk,1 28998,http://contactcentredev.birmingham.gov.uk,1 28999,http://contact-2103.org,1 29000,http://cont.norfolkprepared.gov.uk,1 29001,http://consumers.webstage.intra.ofcom.local,1 29002,http://www.whatsonstage.com,1 29003,http://consumerfraudreporting.org,1 29004,http://www.whatsthedealwith.co.uk,1 29005,http://www.whcm.org.uk,1 29006,http://consultations.direct.gov.uk/search.do,1 29007,http://consultations.direct.gov.uk/search,1 29008,http://consultation.cabinetoffice.gov.uk,1 29009,http://consultation.boundarycommissionforengland.independent.gov.uk,1 29010,http://www.wheel-fit.co.uk,1 29011,http://constructionsite.org.uk,1 29012,http://conquerdriving.co.uk,1 29013,http://www.wheelbase.org.uk,1 29014,http://connexions-tameside.com,1 29015,http://connexions-rochdale.com,1 29016,http://www.wheelchairs-uk.co.uk,1 29017,http://www.wheelchairusers.org.uk,1 29018,http://connectnl,1 29019,http://www.wheels-of-steel.co.uk,1 29020,http://connect.spcc.edu,1 29021,http://connect.savills.com,1 29022,http://connect.learningleads.org.uk,1 29023,http://connect.hymans.co.uk,1 29024,http://connect.hertscc.gov.uk,1 29025,http://connect.bc.jsplc.net,1 29026,http://www.whenimdeadandgone.com,1 29027,http://www.whentoretire.co.uk,1 29028,http://confluence.barcapint.com,1 29029,http://conferencing.cixonline.com,1 29030,http://concordewheelchairdancers.easysearch.org.uk,1 29031,http://comunidadchile.co.uk,1 29032,http://www.wherecanifind.net,1 29033,http://comres.sotsys.com,1 29034,http://compliance.bluecoat.fta.local,1 29035,http://completedrive.theorytestpro.co.uk,1 29036,http://competition.practicallaw.com,1 29037,http://compensationconnect.co.uk,1 29038,http://compasscare.info,1 29039,http://compass.oce.net,1 29040,http://www.whickhamplumbingservices.co.uk,1 29041,http://www.whipperleyinfantschool.co.uk,1 29042,http://comparetheunis.com,1 29043,http://comparetheuni.com,1 29044,http://comparepayday-loans.co.uk,1 29045,http://compaq-notebook.uk.msn.com,1 29046,http://communityportal.thanet.gov.uk,1 29047,http://www.whitchurch.hants.sch.uk,1 29048,http://www.whitegateend.oldham.sch.uk,1 29049,http://community.stroud.gov.uk,1 29050,http://community.singstar.com,1 29051,http://www.whitehallprimary.com,1 29052,http://community.evo.co.uk,1 29053,http://www.whitehillsurgery.nhs.uk,1 29054,http://www.whitehouse-community-school.suffolk.sch.uk,1 29055,http://community.bracknell-forest.gov.uk,1 29056,http://community.autism.org.uk,1 29057,http://communities.leeds.gov.uk,1 29058,http://127.0.0.1:4154,1 29059,http://comms.group.cam.ac.uk,1 29060,http://comms.dh.ois.net,1 29061,http://cominscochpta.easysearch.org.uk,1 29062,http://comfortstitching.typepad.co.uk,1 29063,http://comedrivewithme.com,1 29064,http://www.whiterose-schoolofmotoring.co.uk,1 29065,http://colstonsps.easysearch.org.uk,1 29066,http://collyers.libguides.com,1 29067,http://collinson.eviewuk.com,1 29068,http://collingwood.web6.devwebsite.co.uk,1 29069,http://collegeportal,1 29070,http://college.cengage.com,1 29071,http://www.whitesolicitors.co.uk,1 29072,http://collaborate.bt.com,1 29073,http://colinparry.theorytestpro.co.uk,1 29074,http://colindaleguides.easysearch.org.uk,1 29075,http://colinatred.theorytestpro.co.uk,1 29076,http://colin455314.theorytestpro.co.uk,1 29077,http://www.whitestarmedia.com,1 29078,http://www.whitestone.warwickshire.sch.uk,1 29079,http://colfes.fluencycms.co.uk,1 29080,http://coleridgeonline.co.uk,1 29081,http://colchester.gov.uk,1 29082,http://colanddistdia.btck.co.uk,1 29083,http://cokayltd.com,1 29084,http://coins.westlothian.gov.uk,1 29085,http://www.whittallstreet.nhs.uk,1 29086,http://www.whittinghamsgarage.co.uk,1 29087,http://coconutvolunteeringtravel.easysearch.org.uk,1 29088,http://cobra.cobwebinfo.com,1 29089,http://127.0.0.1:4033,1 29090,http://coal.decc.gov.uk,1 29091,http://www.whittles.uk.com,1 29092,http://www.whittongreen.suffolk.sch.uk,1 29093,http://www.whizz-kidz.org.uk,1 29094,http://www.whnt.nhs.uk,1 29095,http://co1201.inem.es,1 29096,http://www.who.is,1 29097,http://www.whocanbuymycar.co.uk,1 29098,http://www.whodoyouthinkyouaremagazine.com,1 29099,http://www.whoistraveling.com,1 29100,http://www.wholooksafteryou.co.uk,1 29101,http://www.whtvr.org,1 29102,http://www.whtvr.org.uk,1 29103,http://www.wibseyandqueensbury.co.uk,1 29104,http://www.wickhammarket.suffolk.sch.uk,1 29105,http://www.wickhammarketmc.co.uk,1 29106,http://www.wideopendoors.net,1 29107,http://www.widernet.org,1 29108,http://www.widgit.com,1 29109,http://www.widnes-driving-school.co.uk,1 29110,http://www.widnes-school-of-motoring.co.uk,1 29111,http://www.wigan-driving-lessons.co.uk,1 29112,http://cnelm.co.uk,1 29113,http://www.wigandriving.co.uk,1 29114,http://cn.mc157.mail.yahoo.com,1 29115,http://cn.mc153.mail.yahoo.com,1 29116,http://cn.mc152.mail.yahoo.com,1 29117,http://www.wiganfis.org.uk,1 29118,http://cmullen.co.uk,1 29119,http://cmu.dh.gov.uk,1 29120,http://cmswip01.nottingham.ac.uk,1 29121,http://127.0.0.1:3673,1 29122,http://cmsm.theorytestpro.co.uk,1 29123,http://cmslive:9992,1 29124,http://cms1,1 29125,http://www.wiganlife.com,1 29126,http://cms.piratefm.co.uk,1 29127,http://cms.oldham.gov.uk,1 29128,http://cms.manchester.gov.uk,1 29129,http://www.wighamintensive2009.co.uk,1 29130,http://cms.essexcc.gov.uk,1 29131,http://www.wikelya.com,1 29132,http://cmlintranet,1 29133,http://cmionline.interpublic.com,1 29134,http://cmi.cms.scsaga,1 29135,http://cmccord.co.uk,1 29136,http://cmc.easysearch.org.uk,1 29137,http://www.wikicamhs.co.uk,1 29138,http://cm.my.yahoo.com,1 29139,http://clydesideactiononasbestos.org.uk,1 29140,http://club66pro.com,1 29141,http://club126uk.co.uk,1 29142,http://club.cyworld.com,1 29143,http://clio197.net,1 29144,http://clinicalgov,1 29145,http://climatex.org,1 29146,http://www.wikilaw3k.org,1 29147,http://www.wikispaces.com,1 29148,http://clients.hitwise.co.uk,1 29149,http://clients.fuzzylime.co.uk,1 29150,http://clients.ctn.co.uk,1 29151,http://clicks.theanswerbank.co.uk,1 29152,http://www.wildinaccountants.co.uk,1 29153,http://www.wilfward.org.uk,1 29154,http://cled.easysearch.org.uk,1 29155,http://cleanroomshop.fatmediahost10.co.uk,1 29156,http://clcmembers.co.uk,1 29157,http://clcgb.easysearch.org.uk,1 29158,http://classspageaccess.cold10.com,1 29159,http://classiccamperclub.co.uk,1 29160,http://classic-funerals.weebly.com,1 29161,http://classeswithmrsblack.wikispaces.com,1 29162,http://www.wilkiedriving.com,1 29163,http://class.org.uk,1 29164,http://clarkedrivertraining.theorytestpro.co.uk,1 29165,http://www.wilkinchapman.co.uk,1 29166,http://claire-m75.livejournal.com,1 29167,http://claimsadmin.1stcentralinsurance.com,1 29168,http://127.0.0.1:2223,1 29169,http://cjstone.hubpages.com,1 29170,http://127.0.0.1:1915,1 29171,http://127.0.0.1:1891,1 29172,http://www.will-2-pass.co.uk,1 29173,http://www.willetts-som.co.uk,1 29174,http://cityofchicago.com,1 29175,http://cityheating.co.uk,1 29176,http://citycyclingedinburgh.info,1 29177,http://citycampldn.eventbrite.com,1 29178,http://www.willettsolicitors.com,1 29179,http://citroen-bg.net,1 29180,http://127.0.0.1:1793,1 29181,http://cis67.bham.ac.uk,1 29182,http://cis.staging.southampton.gov.uk,1 29183,http://cis,1 29184,http://circle,1 29185,http://cirano,1 29186,http://cienewsarticles.mib.org.uk,1 29187,http://cidbt.org.uk,1 29188,http://cicfinancialsolutions.com,1 29189,http://cic-sp01,1 29190,http://ci1:82,1 29191,http://churchfortomorrow.easysearch.org.uk,1 29192,http://chsw.easysearch.org.uk,1 29193,http://www.william-parker.org,1 29194,http://chs.easysearch.org.uk,1 29195,http://chriswilkie.theorytestpro.co.uk,1 29196,http://www.williambrettell.com,1 29197,http://christchurchguide.co.uk,1 29198,http://christchurchfelling.easysearch.org.uk,1 29199,http://chrispeters.theorytestpro.co.uk,1 29200,http://chrisparker.theorytestpro.co.uk,1 29201,https://nextstep.direct.gov.uk/HelpAdviceandMoney/Money/searchbycoursetype/Pages/default.aspx,1 29202,http://chrisnet,1 29203,http://chrismoo.theorytestpro.co.uk,1 29204,http://chrislansdowne.co.uk,1 29205,http://chrislambertdrivingschool.co.uk,1 29206,http://www.williamgilbertend.derbyshire.sch.uk,1 29207,http://chrisfinch.theorytestpro.co.uk,1 29208,http://www.williammacgregor.com,1 29209,http://chrisbeales.net,1 29210,http://chrisbarker-adi.theorytestpro.co.uk,1 29211,http://chris-price.theorytestpro.co.uk,1 29212,http://chp.com.ua,1 29213,http://chowhound.chow.com,1 29214,http://chopkins2011.blogspot.com,1 29215,http://chip,1 29216,http://www.williamogilby.co.uk,1 29217,http://chinnor.2day.ws,1 29218,http://chinesescoots.forumwise.com,1 29219,http://childrenscentresfinder.direct.gov.uk/townchildrenscentre/Luton/Bedfordshire/,1 29220,http://childrenscentresfinder.direct.gov.uk/townchildrenscentre/Lincoln/Lincolnshire/,1 29221,http://childrenscentresfinder.direct.gov.uk/lachildrenscentre/Blackpool/,1 29222,http://childrenscentresfinder.direct.gov.uk/contact-us/,1 29223,http://www.williamparker.northants.sch.uk,1 29224,http://childrenscentresfinder.direct.gov.uk/childrens-centres-search-res,1 29225,http://childrenscentresfinder.direct.gov.uk/cc8551/overview//,1 29226,http://childrenscentresfinder.direct.gov.uk/cc8494/overview//,1 29227,http://childrenscentresfinder.direct.gov.uk/cc840/overview/,1 29228,http://childrenscentresfinder.direct.gov.uk/cc8058/childrenscentre-ofsted-information/,1 29229,http://childrenscentresfinder.direct.gov.uk/cc8032/childrenscentre-ofsted-information/,1 29230,http://childrenscentresfinder.direct.gov.uk/cc8019/overview/,1 29231,http://childrenscentresfinder.direct.gov.uk/cc7932/overview/,1 29232,http://childrenscentresfinder.direct.gov.uk/cc7908/overview/,1 29233,http://childrenscentresfinder.direct.gov.uk/cc7808/overview/,1 29234,http://childrenscentresfinder.direct.gov.uk/cc7647/overview/,1 29235,http://childrenscentresfinder.direct.gov.uk/cc7643/overview/,1 29236,http://childrenscentresfinder.direct.gov.uk/cc7506/overview/,1 29237,http://childrenscentresfinder.direct.gov.uk/cc7504/overview/,1 29238,http://childrenscentresfinder.direct.gov.uk/cc7025/overview/,1 29239,http://childrenscentresfinder.direct.gov.uk/cc6977/overview/,1 29240,http://childrenscentresfinder.direct.gov.uk/cc6331/overview/,1 29241,http://childrenscentresfinder.direct.gov.uk/cc6326/overview//,1 29242,http://childrenscentresfinder.direct.gov.uk/cc6010/overview/,1 29243,http://childrenscentresfinder.direct.gov.uk/cc5677/overview/,1 29244,http://childrenscentresfinder.direct.gov.uk/cc5600/overview/,1 29245,http://childrenscentresfinder.direct.gov.uk/cc5481/overview//,1 29246,http://childrenscentresfinder.direct.gov.uk/cc5335/overview//,1 29247,http://childrenscentresfinder.direct.gov.uk/cc5257/overview/,1 29248,http://childrenscentresfinder.direct.gov.uk/cc5244/overview/,1 29249,http://childrenscentresfinder.direct.gov.uk/cc5117/overview/,1 29250,http://childrenscentresfinder.direct.gov.uk/cc4830/overview/,1 29251,http://childrenscentresfinder.direct.gov.uk/cc4813/overview/,1 29252,http://childrenscentresfinder.direct.gov.uk/cc4789/overview/,1 29253,http://childrenscentresfinder.direct.gov.uk/cc4726/overview/,1 29254,http://childrenscentresfinder.direct.gov.uk/cc464/overview/,1 29255,http://childrenscentresfinder.direct.gov.uk/cc4516/overview/,1 29256,http://childrenscentresfinder.direct.gov.uk/cc4464/overview/,1 29257,http://childrenscentresfinder.direct.gov.uk/cc4413/overview/,1 29258,http://childrenscentresfinder.direct.gov.uk/cc4382/overview/,1 29259,http://childrenscentresfinder.direct.gov.uk/cc4335/overview/,1 29260,http://childrenscentresfinder.direct.gov.uk/cc4310/overview/,1 29261,http://childrenscentresfinder.direct.gov.uk/cc4260/overview/,1 29262,http://childrenscentresfinder.direct.gov.uk/cc4211/overview//,1 29263,http://childrenscentresfinder.direct.gov.uk/cc4035/overview/,1 29264,http://childrenscentresfinder.direct.gov.uk/cc4028/overview/,1 29265,http://childrenscentresfinder.direct.gov.uk/cc3975/overview/,1 29266,http://childrenscentresfinder.direct.gov.uk/cc3405/overview/,1 29267,http://childrenscentresfinder.direct.gov.uk/cc3330/overview//,1 29268,http://childrenscentresfinder.direct.gov.uk/cc2630/overview/,1 29269,http://childrenscentresfinder.direct.gov.uk/cc2295/overview/,1 29270,http://childrenscentresfinder.direct.gov.uk/cc224/overview/,1 29271,http://childrenscentresfinder.direct.gov.uk/cc1959/overview/,1 29272,http://childrenscentresfinder.direct.gov.uk/cc1897/overview//,1 29273,http://childrenscentresfinder.direct.gov.uk/cc1739/overview/,1 29274,http://childrenscentresfinder.direct.gov.uk/cc1614/overview/,1 29275,http://childrenscentresfinder.direct.gov.uk/cc1430/overview/,1 29276,http://childrenscentresfinder.direct.gov.uk/cc1373/overview/,1 29277,http://childrenscentresfinder.direct.gov.uk/cc1310/overview/,1 29278,http://childrenscentresfinder.direct.gov.uk/cc1256/overview/,1 29279,http://childrenscentresfinder.direct.gov.uk/cc1085/overview/,1 29280,http://www.williamssound.com,1 29281,http://childrenscentresfinder.direct.gov.uk/,1 29282,http://125ccbikeclub.awardspace.co.uk,1 29283,http://www.williamstockton.com,1 29284,http://childint.co.uk,1 29285,http://childcaremanchester.co.uk,1 29286,http://childcarefinder.direct.gov.uk/childcarefinder/whitebox/cis.asp,1 29287,http://childcarefinder.direct.gov.uk/childcarefinder/index.asp,1 29288,http://www.willow-estates.co.uk,1 29289,http://childcarefinder.direct.gov.uk/Childcare/code=/dpp/resource/89065/stream/ECD/,1 29290,http://childcarefinder.direct.gov.uk/Childcare/code=/dpp/resource/70001/stream/ECD/,1 29291,http://childcarefinder.direct.gov.uk/Childcare/code=/dpp/resource/61922/stream/ECD/,1 29292,http://childcarefinder.direct.gov.uk/Childcare/code=/dpp/resource/381230/stream/ECD/,1 29293,http://childcarefinder.direct.gov.uk/Childcare/code=/dpp/resource/352703/stream/ECD/,1 29294,http://childcarefinder.direct.gov.uk/Childcare/code=/dpp/resource/304003/stream/ECD/,1 29295,http://childcarefinder.direct.gov.uk/Childcare/code=/dpp/resource/267313/stream/ECD/,1 29296,http://childcarefinder.direct.gov.uk/Childcare/code=/dpp/resource/26542/stream/ECD/,1 29297,http://childcarefinder.direct.gov.uk/Childcare/code=/dpp/resource/246290/stream/ECD/,1 29298,http://childcarefinder.direct.gov.uk/Childcare/code=/dpp/resource/244025/stream/ECD/,1 29299,http://childcarefinder.direct.gov.uk/Childcare/code=/dpp/resource/134798/stream/ECD/,1 29300,http://childcarefinder.direct.gov.uk/Childcare/code=/dpp/resource/134509/stream/ECD/,1 29301,http://childcarefinder.direct.gov.uk/Childcare/code=/dpp/resource/121506/stream/ECD/,1 29302,http://www.willowcroft.org.uk,1 29303,http://childcarecanada.org,1 29304,http://childbenefitonline.info,1 29305,http://www.willowtreedaynursery.com,1 29306,http://chezceridwen.blogspot.com,1 29307,http://cheung.sw.hku.hk,1 29308,http://chetwyndsqn.easysearch.org.uk,1 29309,http://chestnutlinton.easysearch.org.uk,1 29310,http://chesterlet.co.uk,1 29311,http://chessingtonsg.easysearch.org.uk,1 29312,http://www.willsandwealth.co.uk,1 29313,http://cheshirewest.ourcheshire.cccusers.com,1 29314,http://cheshirepensionfund.org,1 29315,http://cheshire.theorytestpro.co.uk,1 29316,http://cherrypickedproperty.co.uk,1 29317,http://cheltenhambc.easysearch.org.uk,1 29318,http://cheltenham-driving-instructor.co.uk,1 29319,http://chelmsfordresilience.info,1 29320,http://cheekymonkeys-softplay.com,1 29321,http://checkertrade.com,1 29322,http://cheapminibusrentals.com,1 29323,http://cheapfascias.co.uk,1 29324,http://cheapdrivinglessonsdagenham.co.uk,1 29325,http://cheap-mots-birmingham.co.uk,1 29326,http://cheap-digitals.co.uk,1 29327,http://cheam.moodle.uk.net,1 29328,http://chctfs,1 29329,http://chcc.easysearch.org.uk,1 29330,http://www.wilmott.com,1 29331,http://www.wilmslow.co.uk,1 29332,http://www.wilsonpractice.co.uk,1 29333,http://charthamprimary.easysearch.org.uk,1 29334,http://charlieswinbourne.com,1 29335,http://124.160.227.111,1 29336,http://charleschurchcb.easysearch.org.uk,1 29337,http://charitycommission.gov.uk,1 29338,http://charity.lovetoknow.com,1 29339,https://nextstep.direct.gov.uk/planningyourcareer/jobprofiles/jobProfile0116/Pages/default.aspx,1 29340,http://chaos,1 29341,http://channelfostercare.com,1 29342,http://changingmindscentre.co.uk,1 29343,http://changecity.blogspot.com,1 29344,http://challengewales.easysearch.org.uk,1 29345,http://challenger90.theorytestpro.co.uk,1 29346,http://challenge.tedxathens.com,1 29347,http://ch-sql1,1 29348,http://cgserver8,1 29349,http://cg2a10.mail.126.com,1 29350,http://cfps.easysearch.org.uk,1 29351,http://cfpknowledge.sheffield.gov.uk,1 29352,http://www.windhillchildrenscentres.org.uk,1 29353,http://cestria.org,1 29354,http://certificatetranslator.co.uk,1 29355,http://www.windleandbowker.co.uk,1 29356,http://www.windlesora.co.uk,1 29357,http://centurty21.com,1 29358,http://centricasavingsplan.com,1 29359,http://centrenet,1 29360,http://www.windsorobserver.co.uk,1 29361,http://centre70.org.uk,1 29362,http://centranetauth.ourcheshire.cccusers.com,1 29363,http://centralstudies.co.uk,1 29364,http://centraldoaluno2.cellep.com,1 29365,http://www.winning-lottery-numbers.co.uk,1 29366,http://central-uksp1,1 29367,http://www.winsfordtrust.org.uk,1 29368,http://celicious.com,1 29369,http://www.winstonesdrivingschoolkent.com,1 29370,http://cefas.defra.gov.uk,1 29371,http://cebusecond.ph.schlund.net,1 29372,http://www.wintonprimaryschool.com,1 29373,http://ce.bromley.ac.uk,1 29374,http://www.winwoodschoolofmotoring.co.uk,1 29375,http://cdi.theorytestpro.co.uk,1 29376,http://cdci,1 29377,http://ccwater.custhelp.com,1 29378,http://cctc.easysearch.org.uk,1 29379,http://www.wirral.childrencentres.org,1 29380,http://ccnukorguk.site.securepod.com,1 29381,http://ccn.ac.uk,1 29382,http://ccepsc.easysearch.org.uk,1 29383,http://ccekc.easysearch.org.uk,1 29384,http://cccs.co.uk,1 29385,http://ccafs.cgiar.org,1 29386,http://cc.shu.edu.tw,1 29387,http://www.wirralcarers.co.uk,1 29388,http://121drivertraining.theorytestpro.co.uk,1 29389,http://cbtcheshire.co.uk,1 29390,http://cbmacademy.com,1 29391,http://cbhc.easysearch.org.uk,1 29392,http://cbe003.chat.mibbit.com,1 29393,http://cbcweba,1 29394,http://www.wisboroughgreenschool.org.uk,1 29395,http://cbcminutes.ecomsoftware.com,1 29396,http://www.wisedrive.org.uk,1 29397,http://catseyesdriving.co.uk,1 29398,http://catsdrivingschool.com,1 29399,http://catnav.cats.org.uk,1 29400,http://catherinericewilliams.easysearch.org.uk,1 29401,http://catherinepenn.easysearch.org.uk,1 29402,http://catch22ncs.wordpress.com,1 29403,http://121.theorytestpro.co.uk,1 29404,http://catalent.net,1 29405,http://www.wisekids.org.uk,1 29406,http://119.84.84.56:7978,1 29407,http://carvellassociates.com,1 29408,http://cartyreworld.co.uk,1 29409,http://cars.failblog.org,1 29410,http://carrotworkers.wordpress.com,1 29411,http://carolynhopkinson.easysearch.org.uk,1 29412,http://carolinesdrivingschool.com,1 29413,https://nextstep.direct.gov.uk/PlanningYourCareer/JobProfiles/JobProfile0301/Pages/default.aspx,1 29414,http://carmadrivingschool.co.uk,1 29415,http://carltonhillpspg.easysearch.org.uk,1 29416,http://carltoncars.net,1 29417,http://carl14,1 29418,http://www.wishfulbeginnings.pwp.blueyonder.co.uk,1 29419,http://carfueldata.direct.gov.uk/search-by-running-cost.aspx,1 29420,http://carfueldata.direct.gov.uk/search-by-fuel-economy.aspx,1 29421,http://carfueldata.direct.gov.uk/downloads/download.aspx,1 29422,http://carfueldata.direct.gov.uk/additional/aug2011/VCA-Booklet-text-Aug-2011.pdf,1 29423,http://10thpla.net,1 29424,http://www.witchampton.dorset.sch.uk,1 29425,http://carefulhands.net,1 29426,http://careers3d.com,1 29427,http://careers.bakertilly.co.uk,1 29428,http://career-agency.com,1 29429,http://www.withyking.co.uk,1 29430,http://www.witley-pc.gov.uk,1 29431,http://cardiffhousing.co.uk,1 29432,http://card.easysearch.org.uk,1 29433,http://carcarecentreuk.co.uk,1 29434,http://carbonindependent.org,1 29435,http://carboncalculator.direct.gov.uk/index.html,1 29436,http://carbon-hub.com,1 29437,http://cara-online.org,1 29438,http://car17.co.uk,1 29439,http://car-services-repair-and-mot-yeovil.yeovil.somerset.bizuk.tel,1 29440,http://captainwebbprimary.taw.org.uk,1 29441,https://outlook.easyjet.com,1 29442,http://capitalpt.easysearch.org.uk,1 29443,http://capitaconnections.capita.zone,1 29444,http://capernwray.easysearch.org.uk,1 29445,http://canterburycp.easysearch.org.uk,1 29446,http://www.witneyschoolspartnership.org.uk,1 29447,http://100thentrylocking.myfreeforum.org,1 29448,http://0-www.google.co.za.innopac.up.ac.za,1 29449,http://candidmoney.com,1 29450,http://www.witraining.org.uk,1 29451,http://canali.kataweb.it,1 29452,http://canadiansforhealthfreedom.wordpress.com,1 29453,http://www.wizardeducation.co.uk,1 29454,http://camweb2,1 29455,http://www.wlct.org,1 29456,http://campus.medway.ac.uk,1 29457,http://www.wljourney.com,1 29458,http://campaigns2.direct.gov.uk/money4mum2be/en/stakeholders/index.html,1 29459,http://www.wm4x4response.org.uk,1 29460,http://www.wmhousing.co.uk,1 29461,http://www.wmld.org,1 29462,http://campaigns.direct.gov.uk/thebigtreeplant/terms.html,1 29463,http://campaigns.direct.gov.uk/thebigtreeplant/planttree.html,1 29464,http://campaigns.direct.gov.uk/thebigtreeplant/about.html,1 29465,http://campaigns.direct.gov.uk/renewyourtaxcredits/index.html,1 29466,http://campaigns.direct.gov.uk/polls/who-gets-the-tip-poll.html,1 29467,http://campaigns.direct.gov.uk/fireskills/fire-safety-quick-guide.html,1 29468,http://campaigns.direct.gov.uk/brand/toolkit/Toolkit_v3.5/help_messages.html,1 29469,http://campaigns.direct.gov.uk/actonco2/home/on-the-move/top-10-fuel-efficient-cars.html,1 29470,http://www.wnds.co.uk,1 29471,http://campaigns.direct.gov.uk/actonco2/home/on-the-move/car-emission-comparison-tools.html,1 29472,http://campaigns.direct.gov.uk/actonco2/home/on-the-move/buying-your-car.html,1 29473,http://campaigns.direct.gov.uk/actonco2/home/on-the-move.html,1 29474,http://campaigns.direct.gov.uk/actonco2/home/on-the-move.htm,1 29475,http://10.98.1.12:80,1 29476,http://campaigns.direct.gov.uk/actonco2/home/features/offsetting.html,1 29477,https://owa.nas.org.uk,1 29478,http://www.wnwhl.org.uk,1 29479,http://campaigns.direct.gov.uk//keepwarmkeepwell/index.html,1 29480,http://campaigns.direct.gov.uk//actonco2/home.html,1 29481,http://campaign.vpweb.com,1 29482,http://campaign.scottishpower-online.co.uk,1 29483,http://camdencarers.org.uk,1 29484,http://camden.talis.com,1 29485,http://www.wolverhampton-locksmiths.co.uk,1 29486,http://cambridgecab.org.uk,1 29487,http://cambridge.cyclestreets.net,1 29488,http://calsayseat.co.uk,1 29489,http://calmore.theorytestpro.co.uk,1 29490,http://calmactyres-px.rtrk.co.uk,1 29491,http://callum.easysearch.org.uk,1 29492,http://calid.info,1 29493,http://caliberowners.co.uk,1 29494,http://calderdalenc.easysearch.org.uk,1 29495,http://calculator.communitylegaladvice.org.uk,1 29496,http://www.wolverhamptonhomes.org,1 29497,http://cairngormdriving.co.uk,1 29498,http://cafe309.daum.net,1 29499,http://www.wolverhamptonwellbeing.nhs.uk,1 29500,http://cachepilot:9000,1 29501,http://cachepilot,1 29502,http://cache.spyfu.com,1 29503,http://10.96.53.10:15871,1 29504,http://cabwiltshire.org.uk,1 29505,http://www.wolvesfoundation.com,1 29506,http://www.womanstudent.co.uk,1 29507,http://www.womenconfidentials.com,1 29508,http://ca.mg206.mail.yahoo.com,1 29509,http://ca.mg2.mail.yahoo.com,1 29510,http://ca.mc459.mail.yahoo.com,1 29511,http://ca.mc394.mail.yahoo.com,1 29512,http://ca.mc1613.mail.yahoo.com,1 29513,http://ca.mc1608.mail.yahoo.com,1 29514,http://ca.mc1147.mail.yahoo.com,1 29515,http://ca.mc1124.mail.yahoo.com,1 29516,http://www.womeninprison.org.uk,1 29517,https://pod51002.outlook.com,1 29518,http://c8015473.myzen.co.uk,1 29519,http://c6owners.org,1 29520,http://www.womeninpublicpolicy.org,1 29521,http://c2club.co.uk,1 29522,http://c-gas.co.uk,1 29523,http://byfleetbc.easysearch.org.uk,1 29524,http://bycchoir.easysearch.org.uk,1 29525,http://www.womenintechnology.co.uk,1 29526,http://www.womensviewsonnews.org,1 29527,http://www.wonder-years.org.uk,1 29528,http://www.woodcockswell.ik.org,1 29529,http://www.woodcroftschool.net,1 29530,http://www.woodenclimbingframesonline.co.uk,1 29531,http://www.woodfield.wigan.sch.uk,1 29532,http://www.woodgateprimary.co.uk,1 29533,http://www.woodlandtrust.org.uk,1 29534,http://www.woodleynet.co.uk,1 29535,http://www.woodmancoteschool.co.uk,1 29536,http://www.woodmansterne.lambeth.sch.uk,1 29537,http://www.woodmansterne.surrey.sch.uk,1 29538,http://www.woodsmotorcycles.com,1 29539,http://www.woodstockbower.co.uk,1 29540,http://www.woodstones.org.uk,1 29541,http://www.woodstreetautos.co.uk,1 29542,http://www.wooduwaste.com,1 29543,http://www.woodyssom.com,1 29544,http://www.woolenwickjm.herts.sch.uk,1 29545,http://www.woolfirst.dorset.sch.uk,1 29546,http://bwgateway,1 29547,http://bwenergy.users58.webfusion.co.uk,1 29548,http://bwd50plus.org.uk,1 29549,http://bwbb.easysearch.org.uk,1 29550,http://bvs.minsa.gob.pe,1 29551,http://buzz,1 29552,http://buywithconfidence.gov.uk,1 29553,http://buytoletpropertyguide.com,1 29554,http://www.woollens.co.uk,1 29555,http://www.worcestershire14-19prospectus.co.uk,1 29556,http://www.word4weapons.co.uk,1 29557,http://buxtonanddistrictu3a.easysearch.org.uk,1 29558,http://busycomsupport.co.uk,1 29559,http://www.wordcat.co.uk,1 29560,http://businessviewdotorg.wordpress.com,1 29561,http://businesslink.transportdirect.info,1 29562,http://businessdrivertraining.co.uk,1 29563,http://businessadm.wetpaint.com,1 29564,http://www.wordex.uk.com.,1 29565,http://www.wordsforlife.org.uk,1 29566,http://business.scarborough.gov.uk,1 29567,http://www.work-fit.co.uk,1 29568,http://business.gov.in,1 29569,http://www.work-global.com,1 29570,http://business.bournemouth.ac.uk,1 29571,http://business-ideas.page.co.uk,1 29572,http://bus1st.hmce.gov.uk,1 29573,http://burtonpol.co.uk,1 29574,http://burnthefat.sites-reviewed.com,1 29575,http://burnleybc.easysearch.org.uk,1 29576,http://burghclereps.easysearch.org.uk,1 29577,http://bulgariansociety.com,1 29578,http://bucksconsultation.buckscc.gov.uk,1 29579,http://www.workabout.uk.com,1 29580,http://bucks.phewinternet.co.uk,1 29581,http://bucks-lscb.org.uk,1 29582,http://buckinghamshire-jobs.com,1 29583,http://bucareers.wordpress.com,1 29584,http://10.65.57.50,1 29585,http://www.workexperienceuk.com,1 29586,http://www.workfoundation.co.uk,1 29587,http://bt.my.yahoo.com,1 29588,http://bsw.easysearch.org.uk,1 29589,http://bsuresnet.edublogs.org,1 29590,http://10.61.32.1,1 29591,http://www.workingoverseas.com,1 29592,http://bsabantamclub.org.uk,1 29593,http://brynmillss.easysearch.org.uk,1 29594,http://www.workingthedoors.co.uk,1 29595,http://brunelpccblog.wordpress.com,1 29596,http://brownschat.clevelandbrowns.com,1 29597,http://brookeweston.easysearch.org.uk,1 29598,http://bromsgrove.whub.org.uk,1 29599,http://www.workingtogetherproject.org.uk,1 29600,http://www.workingwithothers.org,1 29601,http://www.workingwithwords.org,1 29602,http://brokensemaphore.livejournal.com,1 29603,http://brodsworth.2day.ws,1 29604,http://10.57.12.101:15871,1 29605,http://britishredcross.easysearch.org.uk,1 29606,http://britishrecipes.com,1 29607,http://britishgenes.blogspot.com,1 29608,http://www.workplaceharassment.org.uk,1 29609,http://britishdyslexiaassociation.easysearch.org.uk,1 29610,http://britishcouncil.home.pl,1 29611,http://british-national-party.disqus.com,1 29612,http://british-holiday.blogspot.com,1 29613,http://britfa.gs,1 29614,http://britchopper.co.uk,1 29615,http://britain-careers.com,1 29616,http://bristoldaverants.blogspot.com,1 29617,http://bristolcommunitychurch.org,1 29618,http://bristolcars.blogspot.com,1 29619,http://bristoladventuresc.easysearch.org.uk,1 29620,http://brilliantbritain.blogspot.com,1 29621,http://brightonfilmschool.org.uk,1 29622,http://brighterfutures.easysearch.org.uk,1 29623,http://brightdrivingschool.co.uk,1 29624,http://brigadekids.com.au,1 29625,http://brief.ly,1 29626,http://bridgeurl.com,1 29627,http://bridgeschoolofmotoring.co.uk,1 29628,http://bridgenddrivinglessons.com,1 29629,http://bridgecounselling.easysearch.org.uk,1 29630,http://bridge-gateway.co.uk,1 29631,http://brianpassinkkent.theorytestpro.co.uk,1 29632,http://brianclegg.blogspot.com,1 29633,http://bri01,1 29634,http://brew.clients.ch,1 29635,http://brentwoodsc.easysearch.org.uk,1 29636,http://10.50.1.73,1 29637,http://breathtakers.co.uk,1 29638,http://breastcancerhaven.easysearch.org.uk,1 29639,http://brc.hotsawz.com,1 29640,http://braveheartschildrenstrust.easysearch.org.uk,1 29641,http://brandles.herts.sch.uk,1 29642,http://www.worlddrivingschools.com,1 29643,http://bradford-and-bingley-consumer.production.investis.com,1 29644,http://www.worldhealthweek.co.uk,1 29645,http://brad.ac.uk,1 29646,http://br.mg6.mail.yahoo.com,1 29647,http://br.mc1620.mail.yahoo.com,1 29648,http://www.worldticketservice.com,1 29649,http://www.worplesdon.surrey.sch.uk,1 29650,http://br-vm-db03,1 29651,http://bppa.ws,1 29652,http://www.worrpress.com,1 29653,http://bpms.kemco.or.kr,1 29654,http://bpc.digitalbrain.com,1 29655,http://bp-guild.org.uk,1 29656,http://boxhill.co.uk,1 29657,http://boxerwelfarescotland.easysearch.org.uk,1 29658,http://bournemouth.hobsons.co.uk,1 29659,http://bostonbelles.easysearch.org.uk,1 29660,http://www.worthing.justmots.eu,1 29661,http://bossdriving.com,1 29662,http://boscesch.easysearch.org.uk,1 29663,http://bookshop.rcplondon.ac.uk,1 29664,http://booksaliveo.8m.com,1 29665,http://www.wotson4u.com,1 29666,http://www.wpcc.org.uk,1 29667,http://boobjobsupportforum.forumotion.co.uk,1 29668,http://bonessasc.easysearch.org.uk,1 29669,http://www.wray-common.surrey.sch.uk,1 29670,http://bolsoverchurch.easysearch.org.uk,1 29671,http://www.wreakevalleydrivingschool.co.uk,1 29672,http://www.wreck-less.co.uk,1 29673,http://bohemianscc.easysearch.org.uk,1 29674,http://www.wrecsam.gov.uk,1 29675,http://bobslocks.co.uk,1 29676,http://bobdrivesafe.co.uk,1 29677,http://boards.rootsweb.com,1 29678,http://boards.gingerbeer.co.uk,1 29679,http://www.wrestlingworthschool.co.uk,1 29680,http://boards.cruisecritic.com,1 29681,http://10.46.200.51,1 29682,http://boards.ancestry.com,1 29683,http://www.wretch.cc,1 29684,http://www.wrexham-driving-school.co.uk,1 29685,http://www.writersservices.com,1 29686,http://bmetc.ac.uk,1 29687,http://bmd-cert-exch-site.ourwardfamily.com,1 29688,http://www.writesofpassage.org.uk,1 29689,http://blur-claims,1 29690,http://bluepipeplumbing.co.uk,1 29691,http://bluegum,1 29692,http://bluedrivingschool.com,1 29693,http://www.wrpmail.com,1 29694,http://www.wrs.hsbc.co.uk,1 29695,http://www.wsb.gda.pl,1 29696,http://blogs.yahoo.co.jp,1 29697,http://blogs.rue89.com,1 29698,http://www.wstraining.co.uk,1 29699,http://blogs.nature.com,1 29700,http://blogs.mycentraljersey.com,1 29701,http://www.wsxebp.org.uk,1 29702,http://blogs.lse.ac.uk,1 29703,http://blogs.intranet.npl.co.uk,1 29704,http://www.wtal.co.uk,1 29705,http://blogs.hbr.org,1 29706,http://www.wtctheology.org.uk,1 29707,http://blogs.coventrytelegraph.net,1 29708,http://blogs.confused.com,1 29709,http://www.ww.bury.guv.co.uk,1 29710,http://www.ww2talk.com,1 29711,http://blog.wearepropeople.com,1 29712,http://blog.thebigpropertylist.co.uk,1 29713,http://blog.teara.govt.nz,1 29714,http://blog.sterlingcareandsupport.co.uk,1 29715,http://blog.staywimi.com,1 29716,http://www.wwelecltd.com,1 29717,http://blog.sina.cn,1 29718,http://blog.simplyhired.co.uk,1 29719,http://blog.series2rebuild.net,1 29720,http://blog.safetyclicks.com,1 29721,http://blog.rpldriving.com,1 29722,http://www.wwiireenacting.co.uk,1 29723,http://blog.pulmuone.com,1 29724,http://blog.propertyhawk.co.uk,1 29725,http://blog.powermapper.com,1 29726,http://blog.osfc.ac.uk,1 29727,http://blog.old-and-bold.com,1 29728,http://blog.nominet.org.uk,1 29729,http://www.www.www.facebook.com,1 29730,http://www.wyfms.co.uk,1 29731,http://blog.lowpricelessons.com,1 29732,http://blog.livedoor.jp,1 29733,http://blog.lexus.co.uk,1 29734,http://blog.kaname2010.org,1 29735,http://blog.internship-uk.com,1 29736,http://blog.hertsinsurance.com,1 29737,http://blog.gooutdoors.co.uk,1 29738,http://blog.goo.ne.jp,1 29739,http://blog.gardenersworld.com,1 29740,http://blog.ethicalfutures.co.uk,1 29741,http://www.wyke.ac.uk,1 29742,http://blog.dzp.pl,1 29743,http://blog.dtrc.co.uk,1 29744,https://signet.hca-online.org.uk,1 29745,http://www.wymondhamhigh.norfolk.sch.uk,1 29746,https://submissions.epetitions.direct.gov.uk/petitions/406/signature,1 29747,http://www.wynagrodzenia.pl,1 29748,http://blog.bookaskip.co.uk,1 29749,http://www.wyredup.co.uk,1 29750,http://www.wyverncollege.wilts.sch.uk,1 29751,http://blog.alpha.gov.uk,1 29752,http://blog.163.com,1 29753,http://blog-pt.hostelbookers.com,1 29754,http://bllrf.org.uk,1 29755,http://blidworthnw.myfastforum.org,1 29756,http://blg_des1,1 29757,http://blf.easysearch.org.uk,1 29758,http://www.wyvernfm.co.uk,1 29759,http://www.wyvernservice.co.uk,1 29760,http://blacktrianglecampaign.org,1 29761,http://blackpoolunlimited.businesslink.gov.uk,1 29762,http://blackpooldrivertraining.com,1 29763,http://blackpool.gov.uk,1 29764,http://blacklandssg.easysearch.org.uk,1 29765,http://blackcountrylivingmuseumtrust.easysearch.org.uk,1 29766,http://blackboard.uws.ac.uk,1 29767,http://www.x-cafevn.org,1 29768,http://blackboard.northglasgowcollege.ac.uk,1 29769,http://www.x2drive.co.uk,1 29770,http://www.xado.co.uk,1 29771,http://www.xakep.ru,1 29772,http://10.35.194.19,1 29773,http://blackboard.bridgwater.ac.uk,1 29774,http://www.xcel.uk.net,1 29775,http://10.3.50.9,1 29776,http://blackboard,1 29777,http://blackarrow.me,1 29778,http://www.xdrivers.co.uk,1 29779,http://www.xentrall.org.uk,1 29780,http://www.xilfee.eu,1 29781,http://www.xitraining.co.uk,1 29782,http://www.xl2drive.com,1 29783,http://www.xlauk.com,1 29784,http://www.xlindriving.com,1 29785,http://www.xlr8.co.im,1 29786,http://www.xlr8.uk.net,1 29787,http://www.xmediapartners.com,1 29788,http://www.xmembers.co.uk,1 29789,http://www.xmind.net,1 29790,http://www.xpresionz.co.uk,1 29791,http://www.xsortal.com,1 29792,http://www.xtratime.org,1 29793,http://www.xtremepapers.com,1 29794,http://www.xtz750.com,1 29795,http://www.xxytalk.com,1 29796,http://www.xyzinsurance.co.uk,1 29797,http://www.yak.ca,1 29798,http://www.yakeo.co.uk,1 29799,http://www.yamaha-rd.com,1 29800,http://www.yamahar125.com,1 29801,http://www.yandex.ru,1 29802,http://www.yarevalley.co.uk,1 29803,http://www.yaseen2.com,1 29804,http://www.yatton-pc.gov.uk,1 29805,http://www.ychiow.org.uk,1 29806,http://www.ydance.org,1 29807,http://www.ydrindoddewisant.ac.uk,1 29808,http://www.yellowexplorer.com,1 29809,http://www.yeovil-college.ac.uk,1 29810,http://www.yeoviltown.com,1 29811,http://www.yesdebtfree.co.uk,1 29812,http://www.yesyesyes.org,1 29813,http://www.ymca.ac.uk,1 29814,http://www.yms.gov.tr,1 29815,http://www.ynyfundingadvice.org.uk,1 29816,http://www.yoga4kidz.org.uk,1 29817,http://www.yogafrankie.co.uk,1 29818,http://bl.insolvency.gov.uk,1 29819,http://bkfa.org.uk,1 29820,http://bjintranet,1 29821,http://biz,1 29822,http://bisley.2day.ws,1 29823,http://bishopsclyst.btck.co.uk,1 29824,http://bishops-hatfield.moodle.overnetdata.com,1 29825,http://bishopg.ac.uk,1 29826,http://bishopaucklandcollege.ac.uk,1 29827,http://bis,1 29828,http://birminghamnewsroom.com,1 29829,http://www.yoodidit.co.uk,1 29830,http://birmingham.schooljotter.com,1 29831,http://www.yorkaded.org.uk,1 29832,http://birkenheaddrivingschool.com,1 29833,http://birdsbush.com,1 29834,http://bipolarlikeme.com,1 29835,http://10.3.50.6,1 29836,http://biotech.law.lsu.edu,1 29837,https://vpn.doncaster.gov.uk,1 29838,http://billy-copeland-som.co.uk,1 29839,http://bills.theorytestpro.co.uk,1 29840,http://billhancock.co.uk,1 29841,http://www.yorkcab.org.uk,1 29842,http://www.yorkcarerscentre.co.uk,1 29843,http://bike2bike.net,1 29844,http://bighelp.theorytestpro.co.uk,1 29845,http://biggwebsites.com,1 29846,https://wsvprd1a.theorytest.direct.gov.uk/Dispatcher,1 29847,http://bigdeck251101.theorytestpro.co.uk,1 29848,http://bigdave.theorytestpro.co.uk,1 29849,http://bigbrother.theorytestpro.co.uk,1 29850,http://big5.fmprc.gov.cn,1 29851,http://bifm-onlinetraining5.com,1 29852,http://www.yorkshire-forward.com,1 29853,http://biblioteksvar.no,1 29854,http://biblio.laurentian.ca,1 29855,http://bhct.easysearch.org.uk,1 29856,http://bham.hobsons.co.uk,1 29857,http://www.yorkshirelawyer.co.uk,1 29858,http://bgoog.com,1 29859,http://bghelp.co.uk,1 29860,http://bg.wikipedia.org,1 29861,http://bg.inrev.gov.uk,1 29862,http://bg.cc.inrev.gov.uk,1 29863,http://www.yorkshireoffroadclub.net,1 29864,http://bfc-ser,1 29865,http://bettywivell.easysearch.org.uk,1 29866,http://www.yorkstreetmedicalpractice.nhs.uk,1 29867,http://www.yorkstudentsupport.co.uk,1 29868,http://www.youdidwhatwithtsql.com,1 29869,http://www.yougodrivingschool.co.uk,1 29870,http://www.yougoo.fr,1 29871,http://betterfuture.direct.gov.uk/futurewallet/index.jsp,1 29872,http://www.youngealing.co.uk,1 29873,http://betapreview.cumbria.ac.uk,1 29874,http://betainter,1 29875,http://beta.stannahstairlifts.co.uk,1 29876,http://beta.sholland.gov.uk,1 29877,http://beta.onespace.org.uk,1 29878,http://bestwoodstalbans.org,1 29879,http://besttravel.org.uk,1 29880,http://www.younghealthymanchester.nhs.uk,1 29881,http://bestmultisearch.com,1 29882,http://besc.easysearch.org.uk,1 29883,http://www.youngnewport.co.uk,1 29884,http://bernieshelp.theorytestpro.co.uk,1 29885,http://www.youngpeopleshealth.org.uk,1 29886,http://berkshiremefm.web.officelive.com,1 29887,http://berkshire-driving-school.co.uk,1 29888,http://benson.primarysite.net,1 29889,http://bens:7777,1 29890,http://www.youngsussex.co.uk,1 29891,http://www.youngvic.org,1 29892,http://benefitsnow.co.uk,1 29893,http://www.your-career-change.com,1 29894,http://www.youradda.com,1 29895,http://benefithelp.org.uk,1 29896,http://benefitadvice.blogspot.com,1 29897,http://www.yourannouncement.co.uk,1 29898,http://bellnor.ee,1 29899,http://belgium.angloinfo.com,1 29900,http://belfastbiblecollege.com,1 29901,http://belbroughtonpta.easysearch.org.uk,1 29902,http://beingselfemployed.org,1 29903,http://begin-motorcycling.co.uk,1 29904,http://beforeiapply.wordpress.com,1 29905,http://beeppete.co.uk,1 29906,http://beechhall.anything4web.co.uk,1 29907,http://beechamsdrivingschool.co.uk,1 29908,http://beech.westnotts.ac.uk,1 29909,http://bedwellandroebucksurgery.com,1 29910,http://bedsrcc.org.uk,1 29911,http://www.yourcarehome.co.uk,1 29912,http://bedfordshire.theorytestpro.co.uk,1 29913,http://becketsch.easysearch.org.uk,1 29914,http://bebox.config,1 29915,http://beaverwood.co.uk,1 29916,http://beauty.mitrasites.com,1 29917,http://beardallstreet.createprimary.net,1 29918,http://beacondrivingschool.co.uk,1 29919,http://beachley.theorytestpro.co.uk,1 29920,http://www.yourchurchwedding.org,1 29921,http://be-interactive,1 29922,http://bdschool.theorytestpro.co.uk,1 29923,http://bdp.easysearch.org.uk,1 29924,http://bdgreen.org,1 29925,http://bdcintiis,1 29926,http://bd.careersresources.co.uk,1 29927,http://bcu.ac.uk,1 29928,http://bcs.easysearch.org.uk,1 29929,http://bcfb.easysearch.org.uk,1 29930,http://bcagent.info,1 29931,http://bbs.ziqiangren.cn,1 29932,http://bbs.wzdsb.net,1 29933,http://www.yourdsa.com,1 29934,http://bbs.uker.net,1 29935,http://bbs.todaytex.com,1 29936,http://www.yourfuneraldirectors.co.uk,1 29937,http://www.yourhome.uk.net,1 29938,http://www.yourhrservices.co.uk,1 29939,http://bbs.applepassport.com,1 29940,http://www.yourlewishamcollege.com,1 29941,http://bbrc.tv,1 29942,http://bbnottingham.easysearch.org.uk,1 29943,http://bbhilimited.co.uk,1 29944,http://bbcroydon.easysearch.org.uk,1 29945,http://bbcltd.co.uk,1 29946,http://www.yourlocaldrivinginstructor.co.uk,1 29947,http://bbbchurch.easysearch.org.uk,1 29948,http://bb6.dundeecollege.ac.uk,1 29949,http://bb.vle.keele.ac.uk,1 29950,http://bb.tamagawa.ac.jp,1 29951,http://baxterdrivingschool.co.uk,1 29952,http://batteryme.com,1 29953,http://www.yourmot.com,1 29954,http://batleymot.co.uk,1 29955,http://bathroomorganizersystem.cold10.com,1 29956,http://bathdrivingschools.co.uk,1 29957,http://batemansdrivingschool.co.uk,1 29958,http://bassmegeve.wordpress.com,1 29959,http://www.yournotary.co.uk,1 29960,http://basingstoke.searchimprove.com,1 29961,http://basingstoke.gov.uk,1 29962,http://basingstoke.3rdsectorit.co.uk,1 29963,http://basilll.com,1 29964,http://basildon.searchimprove.com,1 29965,http://bartonbriggcircuit.easysearch.org.uk,1 29966,http://barton-under-needwood.2day.ws,1 29967,http://barrywandererscc.easysearch.org.uk,1 29968,http://barrytheinstructor.co.uk,1 29969,http://10.228.117.7,1 29970,http://www.youronlinechoices.com,1 29971,http://barnsleyfibrogroup.co.uk,1 29972,http://barnsley.theorytestpro.co.uk,1 29973,http://barkergotelee.wp.dev.free-rein.net,1 29974,http://10.225.64.1,1 29975,http://www.yourstudentpad.co.uk,1 29976,http://bankruptcy.org.uk,1 29977,http://bangkok.angloinfo.com,1 29978,http://10.224.19.45,1 29979,http://bananaman:9070,1 29980,http://ban.easysearch.org.uk,1 29981,http://bambinochildmindingltd.co.uk,1 29982,http://baldragonacademy.easysearch.org.uk,1 29983,http://baike.soso.com,1 29984,http://www.yourtomtom.com,1 29985,http://www.youthconnections.co.uk,1 29986,http://backwell.fluencycms.co.uk,1 29987,http://backgroundcheckswiki.com,1 29988,http://bachcentre.com,1 29989,http://babywiggles.co.uk,1 29990,http://baby.livingchaos.co.uk,1 29991,http://baby-holidays.com,1 29992,http://babebikers.find-forum.net,1 29993,http://babcockmembers-staging.catchdigital.com,1 29994,http://baa.printingdivision.co.uk,1 29995,http://b50.org,1 29996,http://www.youthink.com,1 29997,http://b48s.org.uk,1 29998,http://b1.bitty.com,1 29999,http://b-v-s.co.uk,1 30000,http://www.youthnet.org,1 30001,https://www.businessportal.southeastiep.gov.uk,1 30002,http://awsql:43486,1 30003,http://www.youthrights.org,1 30004,http://10.200.128.61,1 30005,http://www.youthsporttrust.org,1 30006,http://avevaportal,1 30007,http://avcmotors.co.uk,1 30008,http://www.zaferglobal.com,1 30009,http://avantemotoring.com,1 30010,http://10.200.122.66,1 30011,http://autoszkola.co.uk,1 30012,http://www.zamuk.com,1 30013,http://automaticdrivinglessons.com,1 30014,http://automatic-driving-instructor.co.uk,1 30015,http://automatic-car-tuition.co.uk,1 30016,http://autolearn-driving-lessons-durham.co.uk,1 30017,http://autobackusponline.com,1 30018,http://autoalloys.com,1 30019,http://auto1.ricerca.alice.it,1 30020,http://auto.england.pl,1 30021,http://auto-nrj.co.uk,1 30022,http://autismwestmidlands.org.uk,1 30023,http://authoring,1 30024,http://authintranet.diiweb.r.mil.uk,1 30025,http://austillfamilygenealogy.com,1 30026,http://aupairworld.net,1 30027,http://www.zatzy.com,1 30028,http://www.zcarsdrivingschool.co.uk,1 30029,http://aula.newton.edu.pe,1 30030,http://10.20.92.253,1 30031,http://audiotalk.proboards.com,1 30032,http://audidrivingschool.co.uk,1 30033,http://10.20.7.1:5788,1 30034,http://www.zenith.gi,1 30035,http://au.mg5.mail.yahoo.com,1 30036,http://au.mg41.mail.yahoo.com,1 30037,http://au.mc456.mail.yahoo.com,1 30038,http://au.mc379.mail.yahoo.com,1 30039,http://au.mc344.mail.yahoo.com,1 30040,http://au.mc1615.mail.yahoo.com,1 30041,http://au.mc1260.mail.yahoo.com,1 30042,http://au.mc1144.mail.yahoo.com,1 30043,http://au.mc1130.mail.yahoo.com,1 30044,http://10.20.0.43,1 30045,http://au.m.yahoo.com,1 30046,http://au.gamespot.com,1 30047,http://www.zenithleisure.co.uk,1 30048,http://www.zerocarbonco.com,1 30049,http://attimik.webnode.sk,1 30050,http://atpdrivinginstruction.co.uk,1 30051,http://atozintranet.eastriding.gov.uk,1 30052,http://atlrc.hct.ac.ae,1 30053,http://atlanticserver1,1 30054,http://atlanticcrossings.wordpress.com,1 30055,http://atlanticbb.net,1 30056,http://atlantic.theorytestpro.co.uk,1 30057,http://athomewithmoney.staffordlong.com.,1 30058,http://www.zippe.co.uk,1 30059,http://athens.angloinfo.com,1 30060,http://www.zkinvestments.com,1 30061,http://athelstanmuseum.easysearch.org.uk,1 30062,http://atbrandon.brandontrust.org,1 30063,http://asyouare.easysearch.org.uk,1 30064,http://astro.ukho.gov.uk,1 30065,http://astonsaccountants.co.uk.tonicfusionlabs.com:4000,1 30066,http://astards.theorytestpro.co.uk,1 30067,http://assunnahschool.co.uk,1 30068,http://www.zoeken.nl,1 30069,http://assisifundraising.easysearch.org.uk,1 30070,http://assignum.co.uk,1 30071,https://www.devonhomechoice.com,1 30072,http://aspspider.ws,1 30073,http://aspirehereford.org.uk,1 30074,http://aspire2,1 30075,http://www.zouch.wilts.sch.uk,1 30076,http://aspinpark.n-yorks.sch.uk,1 30077,http://aspergers.nottsinfoscript.co.uk,1 30078,http://aspapps.lincolnshire.gov.uk,1 30079,http://asmtauntondrivinglessons.co.uk,1 30080,http://asmlearners.com,1 30081,http://www.zsl.org,1 30082,http://askmid.co.uk,1 30083,http://askhambryancollegeyork.2day.ws,1 30084,http://www.zyciewuk.com,1 30085,http://ask4udrive.co.uk,1 30086,http://ask.warwick.ac.uk,1 30087,http://www.zzx27.com,1 30088,http://www1.bigentertainmentfinder.com,1 30089,http://ask.oxfordaviation.net,1 30090,http://www1.openedu.com.cn,1 30091,http://ask,1 30092,http://www.godriveme.co.uk,1 30093,http://www.godivaestates.co.uk,1 30094,http://ashu3a-familyhistory.lefora.com,1 30095,http://www.goforthebestchildcare.co.uk,1 30096,http://www.goftp.com,1 30097,http://ashsom.co.uk,1 30098,http://www.gobike.org,1 30099,http://www.goanddrive.co.uk,1 30100,http://www.go4mentalhealth.com,1 30101,http://www.go4green.org,1 30102,http://www.go2uni.net,1 30103,http://www.gogo.by,1 30104,http://www.go-simple.co.uk,1 30105,http://www.gogreenfuels.co.uk,1 30106,http://www.go-ignition.co.uk,1 30107,http://www.go-green-energy-shop.co.uk,1 30108,http://www.go-drivingtuition.com,1 30109,http://www.go-drivingtuition.co.uk,1 30110,http://www1.sch.im,1 30111,http://www.go-driveby.co.uk,1 30112,http://www.gmvss.net,1 30113,http://www.gmts.gg,1 30114,http://www.gmsp.edu.sg,1 30115,http://www.gmraynet.org.uk,1 30116,http://www.golancaster.co.uk,1 30117,http://www.goldcarehomes.com,1 30118,http://ashfield-dc.co.uk,1 30119,http://www.goldenschoolofmotoring.com,1 30120,http://www.gmbreachout.org.uk,1 30121,http://www.goldentimes.co.uk,1 30122,http://www.glynhopkinalfaromeo.co.uk,1 30123,http://www.goldersdrivingschool.co.uk,1 30124,http://www.glplaw.com,1 30125,http://www.goldin.co.uk,1 30126,http://www.gloucestershirelaunchpad.ac.uk,1 30127,http://www.goldstardrivingschool.org.uk,1 30128,http://www.glostp.co.uk,1 30129,http://www.glosprobation.org.uk,1 30130,http://www.glosmgoc.co.uk,1 30131,http://www.glosjobs.co.uk,1 30132,http://www.glosfire.gov.uk,1 30133,http://www.goldwyns-bristol.co.uk,1 30134,http://www.goll-it.co.uk,1 30135,http://www.gomersaldrivingschool.com,1 30136,http://www.glory-glory.co.uk,1 30137,http://www.glog.dmkhost.net,1 30138,http://www.globalxuk.com,1 30139,http://www.globaltrees.co.uk,1 30140,http://ash.excite.co.jp,1 30141,http://www.globalpropertyguide.com,1 30142,http://www.globalpost.com,1 30143,http://www.globaloutpostservices.com,1 30144,http://www.goneis-moraitis.gr,1 30145,http://www.globaldialogue.info,1 30146,http://www.globalconnections.co.uk,1 30147,http://www.globalclimatenetwork.info,1 30148,http://www.globalactionplan.org.uk,1 30149,http://www.glitec.co.uk,1 30150,http://www.gliding.co.uk,1 30151,http://www.glensidemedicalcentre.co.uk,1 30152,http://www.glenpark.plymouth.sch.uk,1 30153,http://www.glendale-electrical.co.uk,1 30154,http://www.good.is,1 30155,http://www.glenburgiecars.co.uk,1 30156,http://www.gleerupslms.se,1 30157,http://www.gleeds.net,1 30158,http://www.gooddaysonline.com,1 30159,http://www.glaslondon.com,1 30160,http://www.glasgowstudent.net,1 30161,http://asbsf.easysearch.org.uk,1 30162,http://www.glasgowcentralcab.org.uk,1 30163,http://www.goodfuneralguide.co.uk,1 30164,http://www.goodgaragescheme.co.uk,1 30165,http://www.goodmanhamparishcouncil.org.uk,1 30166,http://www.gksdrivingschool.co.uk,1 30167,http://www.gklearners.co.uk,1 30168,http://www.gkdsportscars.com,1 30169,http://asa.org.uk,1 30170,http://www.gjdriving.co.uk,1 30171,http://www.goodshepherd.catholic.edu.au,1 30172,http://www.givemefootball.com,1 30173,http://www.goodtogoinsurance.com,1 30174,http://www.gitrad.uji.es,1 30175,http://www.giselastuartmp.co.uk,1 30176,http://www.gisburnroad.com,1 30177,http://www.gis.naturalengland.org.uk,1 30178,http://www.girtonjcr.com,1 30179,http://www.google.be.,1 30180,http://www.girlguidingglasgow.org.uk,1 30181,http://www.gires.org.uk,1 30182,http://www.giovaniperilfuturo.com,1 30183,http://www.gingerlettings.com,1 30184,http://www.gingerbreadni.org,1 30185,http://www.google.ci.,1 30186,http://www.gillhams.com,1 30187,http://www.gilesnurseryandinfants.co.uk,1 30188,http://www.gilbertinglefield.org,1 30189,http://www.google.cn,1 30190,http://www.gigaflop.demon.co.uk,1 30191,http://www.gift-tours.com,1 30192,http://www.giantbomb.com,1 30193,http://www.ghweeks.talktalk.net,1 30194,http://www.ght.org.uk,1 30195,http://www.gho-englisch.de,1 30196,http://www.ghanaweb.com,1 30197,http://www.gha.org.uk,1 30198,http://www.google.co.uk.ezproxy.liv.ac.uk,1 30199,http://www.gges.pwp.blueyonder.co.uk,1 30200,http://www.gg.rhul.ac.uk,1 30201,http://www.getwokingham.co.uk,1 30202,http://www.gettrained.co.uk,1 30203,http://www.gettingpassed.co.uk,1 30204,http://www.google.co.uk.lcproxy.shu.ac.uk,1 30205,http://www.google.com.hk.,1 30206,http://www.getreadyforadultlife.org,1 30207,http://www14.ocn.ne.jp,1 30208,http://www.getpuppysmart.com,1 30209,http://www.getpreparednow.co.uk,1 30210,http://www.getoutofdebtfree.org,1 30211,http://www.getonit.info,1 30212,http://www.google.com.libezproxy.open.ac.uk,1 30213,http://www.getmeatradesman.co.uk,1 30214,http://www.getinvolvedinthecity.org.uk,1 30215,http://www.google.com.nf,1 30216,http://www.getintogardening.co.uk,1 30217,http://www.getinsured.co.uk,1 30218,http://www.google.com.tn,1 30219,http://www.google.es.,1 30220,http://www.getfurther.co.uk,1 30221,http://www.google.gr.,1 30222,http://www.google.lt.,1 30223,http://www.getbetterlinks.com,1 30224,http://www.google.lv.,1 30225,http://www.get-driving.com,1 30226,http://www.get-driving.co.uk,1 30227,http://www.germanscooterforum.de,1 30228,http://www.germancarcentre.co.uk,1 30229,http://www.gepsolutions.co.uk,1 30230,http://www.geoscopies.net,1 30231,http://www.georgetomlinsonprimary.com,1 30232,http://www.georgestaceyfuneralservices.co.uk,1 30233,http://www.google.nl.,1 30234,http://www14.yoog.com,1 30235,http://www.geoplanit.co.uk,1 30236,http://www.google.ro.,1 30237,http://www.google.ru.,1 30238,http://www.google.sk.,1 30239,http://www.google.vu,1 30240,http://www.googleadservices.com,1 30241,http://www.geoffcapesdriving.co.uk,1 30242,http://www.goolehighschool.org,1 30243,http://www.geocities.com,1 30244,http://www.gorbalslive.org.uk,1 30245,http://www.gentileschi.it,1 30246,http://www.genius-energy.co.uk,1 30247,http://www.genguide.co.uk,1 30248,http://www.gordonbrock.lewisham.sch.uk,1 30249,http://www.gordonruralaction.org.uk,1 30250,http://www.generalpractice.co.uk,1 30251,http://www.genealogyhounds.com,1 30252,http://www.goringpc.org,1 30253,http://www.genealogie.com,1 30254,http://www.genealogic.co.uk,1 30255,http://www.gos.gov.uk,1 30256,http://www.gosfield-pri.essex.sch.uk,1 30257,http://www.gemsdrivingschool.com,1 30258,http://www.goshipping.gr,1 30259,http://www.geminilettings.co.uk,1 30260,http://www.geminidrivingschool.co.uk,1 30261,http://www.geminidriving.co.uk,1 30262,http://arvato.easysearch.org.uk,1 30263,http://www.gemdrivingschool.co.uk,1 30264,http://arun.westsussexwellbeing.org.uk,1 30265,http://www.gosportcab.hampshire.org.uk,1 30266,http://www.gearupanddrive.co.uk,1 30267,http://www.gearsdrivingschool.com,1 30268,http://www.gearsaloud.com,1 30269,http://www.gotimeshare.org,1 30270,http://www.gearboxdrivingschool.co.uk,1 30271,http://www.gearblast.co.uk,1 30272,http://www.gdkltd.co.uk,1 30273,http://www.gdia.org.uk,1 30274,http://www.gdba.internal,1 30275,http://www.gculondon.ac.uk,1 30276,http://www.gotwarrior.co.uk,1 30277,http://www.goumbrella.co.uk,1 30278,http://www.gov.il,1 30279,http://www.govdirect.co.uk,1 30280,http://www.gb-legal.com,1 30281,http://www.gb-drivereducation.co.uk,1 30282,http://www.gazprom-energy.com,1 30283,http://www.gazoomy.com,1 30284,http://www.gazettelive.co.uk,1 30285,http://www.gazetteherald.co.uk,1 30286,http://www.gaynesparkdaynursery.com,1 30287,http://www.gaydar.fr,1 30288,http://www.gautrain.co.za,1 30289,http://www.gauntscommon.dorset.sch.uk,1 30290,http://www.gatesheadolderpeoplesassembly.co.uk,1 30291,http://www.gatesheadhousing.co.uk,1 30292,http://www.gatesheadhealth.nhs.uk,1 30293,http://www.govermentpensions.co.uk,1 30294,http://www.gpdriving.com,1 30295,http://www.gastradingco.com,1 30296,http://www.gasta.us,1 30297,http://www.gasta.tv,1 30298,http://www.gassecure.co.uk,1 30299,http://www.gponline.com,1 30300,http://www.gasheatinginstallers.com,1 30301,http://www.gasboiler-buyability.co.uk,1 30302,http://www.gas-shop.com,1 30303,http://www.garweb.ru,1 30304,http://www.gppp.bham.ac.uk,1 30305,http://www.garryfroggatt.co.uk,1 30306,http://www.gpsbroughtonhouse.co.uk,1 30307,http://www.gardenforum.co.uk,1 30308,http://www.gpsurgerywebsites.co.uk,1 30309,http://www.garageservice.com,1 30310,http://www.garageandmot.co.uk,1 30311,http://www.gpuss.com,1 30312,http://arum.lits.shu.ac.uk,1 30313,http://www.gapyearadvice.org,1 30314,http://www17.i-grasp.com,1 30315,http://www.gamespot.com,1 30316,http://www.gamesleycommunityprimaryschool.com,1 30317,http://www.gracemary.co.uk,1 30318,http://www.gamcare.org.uk,1 30319,http://www.grade6.biz,1 30320,http://www.gradsouthwest.com,1 30321,http://www.galleycommonschool.ik.org,1 30322,http://www.galleryarchitects.com,1 30323,http://www.galaxydrivingschool.co.uk,1 30324,http://www.graduatefinance.com,1 30325,http://www.gaj74.dial.pipex.com,1 30326,http://www.graememedicalcentre.scot.nhs.uk,1 30327,http://www.gai.ru,1 30328,http://www.gabriel.ch,1 30329,http://www.graham-may.com,1 30330,http://www.grahamrogers.org.uk,1 30331,http://www.g26.ch,1 30332,http://www.g-and-t.co.uk,1 30333,http://www.grahamsmotorcycles.com,1 30334,http://www.fxu.org.uk,1 30335,http://www.grahamsofcolneltd.com,1 30336,http://www.graigyrhacca.org.uk,1 30337,http://www.futurestore.org.uk,1 30338,http://www.granardprimary.co.uk,1 30339,http://www.futureprospects.org.uk,1 30340,http://www.futuremorph.org,1 30341,http://www.futuregreensolutions.co.uk,1 30342,http://www.futuregate.co.uk,1 30343,http://www.fusionhlc.org.uk,1 30344,http://www.fushia.org.uk,1 30345,http://www.grandparentcarers.com,1 30346,http://www.grandparentsplus.org.uk,1 30347,http://www.furaffinity.net,1 30348,http://www.funradio.pwp.blueyonder.co.uk,1 30349,http://www.grandparentsupportgroup.org.uk,1 30350,http://www.funlearning.co.uk,1 30351,http://www.funeralprices.co.uk,1 30352,http://www.grangeprimaryshrewsbury.co.uk,1 30353,http://www.funeralhelper.org,1 30354,http://www.fundraisingsuccessmag.com,1 30355,http://www.granthelpline.com,1 30356,https://www.dvla.gov.uk,1 30357,http://www.funandfastdrivingschool.com,1 30358,http://www.fulwood-cadley.lancsngfl.ac.uk,1 30359,http://www.fulminationswithoutfoundations.com,1 30360,http://www.fulloflifekc.com,1 30361,http://www.full-bore.co.uk,1 30362,http://www.grants4.info,1 30363,http://www.fuerteventura-forum.com,1 30364,http://arts.brighton.ac.uk,1 30365,http://www.grantsonline.org.uk,1 30366,http://www.ftreg.com,1 30367,http://www.grapevinecommunications.co.uk,1 30368,http://www.gravelmaster.co.uk,1 30369,http://www.gravydriving.co.uk,1 30370,http://www.grays-schoolofmotoring.co.uk,1 30371,http://www.fsz.uni-hannover.de,1 30372,http://www.graysdrivingschoolstourbridge.co.uk,1 30373,http://www.fsj.co.uk,1 30374,http://www.fsd.liverpool.gov.uk,1 30375,http://www.fsb.org.uk,1 30376,http://www.greatberry.co.uk,1 30377,http://www.frustratedcustomers.co.uk,1 30378,http://www.frugallerforum.co.uk,1 30379,http://www.frpilot.com,1 30380,http://www.frontlineworkerstoolkit.org.uk,1 30381,http://www.greatcrosbycatholicprimary.org.uk,1 30382,http://www.fronteraowners.co.uk,1 30383,http://www.greatermanchesterepc.co.uk,1 30384,http://www.frodshamhappybunnies.co.uk,1 30385,http://www.frobishercapital.co.uk,1 30386,http://www.frizinghallmedicalcentre.co.uk,1 30387,http://www.friendsreuniteddating.co.nz,1 30388,http://www.friendsreunited.com,1 30389,http://www.greatfieldplaygroup.co.uk,1 30390,http://www.friendscircle.co.uk,1 30391,http://www.friendorfollow.com,1 30392,http://www.friarwoodsurgery.co.uk,1 30393,http://www.greatmalvernprimary.com,1 30394,http://www.greattrek.net,1 30395,http://www.greatwesternmedicalpractice.co.uk,1 30396,http://www.freshstartmotorcycle.co.uk,1 30397,http://www.freshbusinessthinking.com,1 30398,http://www.greeen.uk.com,1 30399,http://www.frenchweirhealth.co.uk,1 30400,http://www.frenchvie.com,1 30401,http://www.frenchcarforum.co.uk,1 30402,http://artofmanliness.com,1 30403,http://www.freewheelers.org.uk,1 30404,http://www.freewayds.co.uk,1 30405,http://www.freeway-drivingschool.co.uk,1 30406,http://www.freeviewberkshire.co.uk,1 30407,http://www.green-planet-solar-energy.com,1 30408,http://www.green4go.co.uk,1 30409,http://www.freeratio.org,1 30410,http://www.freemantleacademy.com,1 30411,http://www.freemans-accountants.com,1 30412,http://www.greenbank-primary.co.uk,1 30413,http://www.greenbuildingforum.co.uk,1 30414,http://www.greencaravanning.co.uk,1 30415,http://www.freegiftcardsonline.net,1 30416,http://www.freeebooksblog.com,1 30417,http://www.freedomsom.co.uk,1 30418,http://www.freedomschoolofmotoring.org.uk,1 30419,http://www.greendealguide.co.uk,1 30420,http://www.freedomldrivers.com,1 30421,http://www.freedomfromdebt.eu,1 30422,http://artofdriving.theorytestpro.co.uk,1 30423,http://www.freedomdrivin.com,1 30424,http://www.freedomchildminding.co.uk,1 30425,http://www.freedom-to-drive.co.uk,1 30426,http://www.greenflag.com,1 30427,http://www.freeads.co.uk,1 30428,http://www.free-courses.linkpodium.com,1 30429,http://www.fredmiranda.com,1 30430,http://www.frederic-hall.co.uk,1 30431,http://www17.yoog.com,1 30432,http://www.greengatemedicalcentre.co.uk,1 30433,http://www.fraoch.co.uk,1 30434,http://www.greenhomeenergysolutions.co.uk,1 30435,http://www.franceinlondon.co.uk,1 30436,http://www.framwellgatemoor-newtonhall-labourparty.co.uk,1 30437,http://www.fqp.nl,1 30438,http://www.fpa.org.uk,1 30439,http://www.foxysschoolofmotoring.co.uk,1 30440,http://www.greenimpact.org.uk,1 30441,http://www.foxford.coventry.sch.uk,1 30442,http://www.greeninsurancecompany.co.uk,1 30443,http://www.fosteringmatters.com,1 30444,http://www.greenlane.childrencentre.org,1 30445,http://www.forzamotorsport.co.uk,1 30446,http://www.forwardswindon.co.uk,1 30447,http://www.forumukdetectornet.co.uk,1 30448,http://www.greenlawpractice.co.uk,1 30449,http://www.forumishqiptar.com,1 30450,http://www.forumgercek.com,1 30451,http://www.forumforthefuture.org,1 30452,http://www.forum.rivierareporter.com,1 30453,http://www.greenlightdrivingschool.net,1 30454,http://www.greenmarketing.tv,1 30455,http://www.forum.docpoland.com,1 30456,http://www.forum.bukmacherskie.com,1 30457,http://www.forum-edemocratie.com,1 30458,http://www.greenselfbuild.co.uk,1 30459,http://www.fortywillowssurgery.nhs.uk,1 30460,http://www.forster.ac.uk,1 30461,http://arrowdrivingacademy.co.uk,1 30462,http://www.greenshield.com,1 30463,http://www.foroharley.com,1 30464,http://www.greentrees-school.com,1 30465,http://www.greenunion.co.uk,1 30466,http://www.greenwayps.co.uk,1 30467,http://www.greenwich.gov.uk.,1 30468,http://arpsdir.a.state.gov,1 30469,http://www.forestonline.org,1 30470,http://www.forestofdean.gov.uk,1 30471,http://www.forestgatesurgery.nhs.uk,1 30472,http://www.forestgate.newham.sch.uk,1 30473,http://www.forestforum.co.uk,1 30474,http://www.foresight.gov.uk,1 30475,http://www.fordwiki.co.uk,1 30476,http://www.fordownersclub.com,1 30477,http://www.fordingbridgegps.co.uk,1 30478,http://www.fordhousesmedicalcentre.co.uk,1 30479,http://www.fordescortclub.co.uk,1 30480,http://www.forced-adoption.com,1 30481,http://www.forbesstyle.com,1 30482,http://www.for-vip.net,1 30483,http://www.footprintsrecruiting.com,1 30484,http://www.footballforums.net,1 30485,http://www.footballcvacademy.com,1 30486,http://armleyrangers.easysearch.org.uk,1 30487,http://www.greenwichcab.org.uk,1 30488,http://www.foodbase.org.uk,1 30489,http://www.greenwichcarerscentre.org,1 30490,http://www.folly-hill.surrey.sch.uk,1 30491,http://www.follettstock.co.uk,1 30492,http://www.folkd.com,1 30493,http://www.fogsoff.com,1 30494,http://www.greenwinguk.com,1 30495,http://www.foerderland.de,1 30496,http://www.fodsupport.org,1 30497,http://www.focusrsoc.com,1 30498,http://www.focuspartnership.com,1 30499,http://www.focusowners.com,1 30500,http://www.greenwoodpersonalcredit.com,1 30501,http://www.focus.coop,1 30502,http://www.greglambsom.co.uk,1 30503,http://www.focas-support-group.co.uk,1 30504,http://www.gregsdrivingschool.co.uk,1 30505,http://www.greswold.org.uk,1 30506,http://www.fmt.pwp.blueyonder.co.uk,1 30507,http://www.fmsm.co.uk,1 30508,http://www.fms-sas.co.uk,1 30509,http://www.griffiths-pegg.co.uk,1 30510,http://www.groupleisure.com,1 30511,http://www.fmcalderdale.co.uk,1 30512,http://www.grove-pension-release.co.uk,1 30513,http://www.grovesdavey.co.uk,1 30514,http://www.growenterprisewales.org.uk,1 30515,http://www.growingredhill.co.uk,1 30516,http://www.flyingwithbaby.com,1 30517,http://www.growthbusiness.co.uk,1 30518,http://www.flybmi.com,1 30519,http://www.grp.gov.uk,1 30520,http://www.flyastraeus.com,1 30521,http://www.fly-2let.co.uk,1 30522,http://www.flwalker.com,1 30523,http://www.grumbletext.co.uk,1 30524,http://www.grupy.banzaj.pl,1 30525,http://www.floraforum.eu,1 30526,http://www.floodforum.org.uk,1 30527,http://armedforcescomplaints.independent.gov.uk,1 30528,http://www.flitwick.gov.uk,1 30529,http://www.flipconnect.co.uk,1 30530,http://www.flintshirehousing.co.uk,1 30531,http://www.flightsimworld.com,1 30532,http://www.gsdrivingschool.co.uk,1 30533,http://www.fleetstreetltd.co.uk,1 30534,http://www.fleetrepaircentre.com,1 30535,http://armchairadvice.isledev.co.uk,1 30536,http://www.fledglings.net,1 30537,http://armbritain.com,1 30538,http://www.gsp.gov.tw,1 30539,http://www.flaksearch.com,1 30540,http://www.gsx1400.org,1 30541,http://www.flaconline.org.uk,1 30542,http://www.flackssom.pwp.blueyonder.co.uk,1 30543,http://arlenewaddell.co.uk,1 30544,http://www.gtamotorcycle.com,1 30545,http://www.gtcaravans.co.uk,1 30546,http://www.gtce.org.uk,1 30547,http://www.fixmystreet.com,1 30548,http://www.fivewaysdrivingschool.com,1 30549,http://www.fivewaysdrivingschool.co.uk,1 30550,http://www.gtschoolofmotoring.co.uk,1 30551,http://www.gtsownersclub.co.uk,1 30552,http://www.fivelanes.leeds.sch.uk,1 30553,http://www.gu.se,1 30554,http://www.guaranteedpass.co.uk,1 30555,http://www.guestsolihullalfaromeo.co.uk,1 30556,http://www.fittingfarewell.co.uk,1 30557,http://www.fitnessindustryeducation.com,1 30558,http://www.guidance-research.org,1 30559,http://www.fitflop.com,1 30560,http://www.guildford-pru.surrey.sch.uk,1 30561,http://www.fit2drivemedicals.co.uk,1 30562,http://www.fit2drive.co.uk,1 30563,http://www.fiso.co.uk,1 30564,http://ark.easysearch.org.uk,1 30565,http://www.fisherowners.co.uk,1 30566,http://www.fisfrcuk.com,1 30567,http://www.firsttimepass.org,1 30568,http://www.guitarbassbanjo.co.uk,1 30569,http://www.guitartechbrasil.com,1 30570,http://www.firststepswakefield.co.uk,1 30571,http://www.gullanemedicalpractice.co.uk,1 30572,http://www.firststep.me,1 30573,http://www.firstsm.co.uk,1 30574,http://www.gup.org.uk,1 30575,http://www.firstdrivedrivertraining.co.uk,1 30576,http://www.firstcount.co.uk,1 30577,http://www.firstcontact.org.uk,1 30578,http://www.gurgle.com,1 30579,http://www.firstcallfinancials.co.uk,1 30580,http://arifrahmat.wordpress.com,1 30581,http://www.firstbuyermortgages.co.uk,1 30582,http://www.gurney.co.uk,1 30583,http://www2.autotrader.co.uk,1 30584,http://www.first4lawyers.com,1 30585,http://www.guv.co.uk,1 30586,http://www.guycampbell.co.uk,1 30587,http://www.guyzngirlz.com,1 30588,http://www.firesafetynetwork.co.uk,1 30589,http://www.firesafemanagement.co.uk,1 30590,http://www.firesafe.org.uk,1 30591,http://www.gvbslinter.be,1 30592,http://www.firebox.com,1 30593,http://www.fireblades.org,1 30594,http://www.firebladeriders.org,1 30595,http://www.fionasdrivingschool.co.uk,1 30596,http://www.finnart.org,1 30597,http://www.gvi.hu,1 30598,http://www.finlandforum.org,1 30599,http://www.finlandeducationguide.com,1 30600,http://www.gwdriving.co.uk,1 30601,http://www.gwra.org.uk,1 30602,http://www.fingerscrosseddrivingschool.co.uk,1 30603,http://www.gwyneddpensionfund.org.uk,1 30604,http://www.finduny.com,1 30605,http://www.findmelocaltrade.com,1 30606,http://www.gywpct.nhs.uk,1 30607,http://www.h-eta.co.uk,1 30608,http://www.findingtheanswers.co.uk,1 30609,http://www.findingpotential.com,1 30610,http://www.findia.net,1 30611,http://www.findersuk.com,1 30612,http://www.h2contracts.co.uk,1 30613,http://www.findalternative.com,1 30614,http://www.h2way.com,1 30615,http://www.findadeath.com,1 30616,http://www.findadaewoo.co.uk,1 30617,http://www.find-a-part.com,1 30618,http://www.financialplanningweek.org.uk,1 30619,http://www.haaretz.co.il,1 30620,http://www.financial-expert.co.uk,1 30621,http://www.financespain.com,1 30622,http://www.financemarkets.co.uk,1 30623,http://www.financebanter.co.uk,1 30624,http://argyllscouts.easysearch.org.uk,1 30625,http://www.hackerscreek.com,1 30626,http://www.finalstitch.co.uk,1 30627,http://www.filtonparkpreschool.org,1 30628,http://www.filternet.si,1 30629,http://www.hadfield-inf.derbyshire.sch.uk,1 30630,http://arethusaoldboys.com,1 30631,http://www.fileysurgery.co.uk,1 30632,http://www.filbydrivertraining.co.uk,1 30633,http://www.hafal.org,1 30634,http://www.fiftyplusforum.co.uk,1 30635,http://www.hafod.org.uk,1 30636,http://www.fifefamilyhistoryfair.org.uk,1 30637,http://www.hagertyinsurance.co.uk,1 30638,http://www.haighroadinfantschool.com,1 30639,http://www.hainaultforest.redbridge.sch.uk,1 30640,http://www.fifecouncil.co.uk,1 30641,http://www.hainesco.co.uk,1 30642,http://www.fife.org.uk,1 30643,http://www.hairdressers-barnsley.co.uk,1 30644,http://www.haitos.com,1 30645,http://www.fieldingsporter.co.uk,1 30646,http://www.haixia56.com,1 30647,http://ares.mp3.es,1 30648,http://www.fieldend.com,1 30649,http://www.hakes.info,1 30650,http://archives.norfolk.gov.uk,1 30651,http://www.fiatpunto.co.uk,1 30652,http://www.halbevanpetman.com,1 30653,http://www.halfbakery.com,1 30654,http://www.halfords.com,1 30655,http://www.fhlfavorites.info,1 30656,http://www.fgwelch.co.uk,1 30657,http://www2.bcu.ac.uk,1 30658,http://www.halifaxoffers.co.uk,1 30659,http://www.fethiyetimes.com,1 30660,http://www2.bikechatforums.com,1 30661,http://www.fesussex.org.uk,1 30662,http://www.hallbrook.leics.sch.uk,1 30663,http://www.ferryman-polytunnels.co.uk,1 30664,http://www.ferrarichat.com,1 30665,http://www.fernwoodjunior.co.uk,1 30666,http://archivemanager,1 30667,http://www.feoc-uk.com,1 30668,http://www.fensaonline.com,1 30669,http://www.fensa.org.uk,1 30670,http://www.feministe.us,1 30671,http://www.halodrivingschool.co.uk,1 30672,http://www.femaledrivinginstructorluton.co.uk,1 30673,http://www.femaledrivinginstruction.co.uk,1 30674,http://www.fellowes.com,1 30675,http://www.felixstoweacademy.org,1 30676,http://www.halsbury.com,1 30677,http://www.fearnhill.herts.sch.uk,1 30678,http://www.fearless.org,1 30679,http://www.hambleden.org.uk,1 30680,http://www.fdc-law.co.uk,1 30681,http://www.fctickets.co.uk,1 30682,http://www.fcross.co.uk,1 30683,http://www.hamiltoncollege.co.uk,1 30684,http://www.fclcollege.co.uk,1 30685,http://www.hamlet-homes.com,1 30686,http://www.hammonds.uk.com,1 30687,http://www.fcars.co.uk,1 30688,http://www.fawleyonline.org.uk,1 30689,http://www.hampshire.nhs.uk,1 30690,http://www.faulknermotorcycles.co.uk,1 30691,http://www.hamptoncourtvillage.co.uk,1 30692,http://www.hamstelinfants.co.uk,1 30693,http://www.hamstercentral.com,1 30694,http://www.fastpass4u.com,1 30695,http://www.fastpass-drivingschool.co.uk,1 30696,http://www.fastlinelifts.co.uk,1 30697,http://www.fasterpass.com,1 30698,http://www.fasterglobal.com,1 30699,http://www.fastenergycertificates.co.uk,1 30700,http://www.fastcarbuyer.co.uk,1 30701,http://www.fastbull-service.com,1 30702,http://www.handicapped.org,1 30703,http://www.fast-trackdrivingschool.co.uk,1 30704,http://www.handsondriving.co.uk,1 30705,http://www.handsworth.bham.sch.uk,1 30706,http://www.handymoves.co.uk,1 30707,http://www.fasano.org.uk,1 30708,http://www.hannahmoreinfant.com,1 30709,http://archive.salford.ac.uk,1 30710,http://www.farndonfields.org,1 30711,http://www.farnboroughroadinfants.co.uk,1 30712,http://www.farnboroughprimary.co.uk,1 30713,http://www.farmtoysforum.com,1 30714,http://www.farmingfutures.org.uk,1 30715,http://www.farming.co.uk,1 30716,http://www.fareport.co.uk,1 30717,http://www.hansonsfastpass.co.uk,1 30718,http://www.fandb.ik.org,1 30719,http://www.hao123.com,1 30720,http://www.happy-days-childcare.com,1 30721,http://www.happy-driving.co.uk,1 30722,http://www.happydaysnurserybrampton.co.uk,1 30723,http://www.happydriving.net,1 30724,http://www.familylaw.co.uk,1 30725,http://www.hardysfunerals.co.uk,1 30726,http://www.familycare.co.uk,1 30727,http://www.family-lawyers.co,1 30728,http://www.family-housing.co.uk,1 30729,http://www.familiesonline.co.uk,1 30730,http://archive.in.gr,1 30731,http://www.familiesagainstneuroblastoma.org,1 30732,http://www.famenottinghamshire.org.uk,1 30733,http://www.famakschools.com,1 30734,http://www.false-allegations.org.uk,1 30735,http://www.harleys-driving-lessons.co.uk,1 30736,http://www.harpendenmencap.org.uk,1 30737,http://www.falconryforum.co.uk,1 30738,http://www.harpendenpeople.co.uk,1 30739,http://www.fake-memory.com,1 30740,http://www.fairweatherstephenson.co.uk,1 30741,http://www.fairwayproject.org.uk,1 30742,http://www.fairviewdrivertraining.co.uk,1 30743,http://archive.food.gov.uk,1 30744,http://www.fairoakinfant.co.uk,1 30745,http://www.fairlightvillage.info,1 30746,http://www.fairfields.herts.sch.uk,1 30747,http://www.fairfaxgrouppractice.nhs.uk,1 30748,http://www.harpergreen.org.uk,1 30749,http://www.fairbairnpb.com,1 30750,http://www.factura.vacau.com,1 30751,http://www2.brent.gov.uk,1 30752,http://www.faceitpages.com,1 30753,http://www.harpers-heating.co.uk,1 30754,http://www.fabred.co.uk,1 30755,http://www.fabafterfifty.co.uk,1 30756,http://www.f3.proxymice.com,1 30757,http://www.f1scooters.co.uk,1 30758,http://www.harpyness.com,1 30759,http://archive.corporatewatch.org,1 30760,http://www.f-gas-certification.co.uk,1 30761,http://www.ezy-pass.co.uk,1 30762,http://www.harriettbaldwin.com,1 30763,http://www.ezedrivingtuition.co.uk,1 30764,http://archinet03.blanch.org.uk,1 30765,http://www.eysuk.org.uk,1 30766,http://www.eyp.no,1 30767,http://www.eynsham-partnership.btck.co.uk,1 30768,http://archassistedreadingforchildreninoxfordshire.easysearch.org.uk,1 30769,http://www.eyemead.com,1 30770,http://www.eyedriveschoolofmotoring.com,1 30771,http://www.eyecontactsopticians.com,1 30772,http://www.extremesearcher.com,1 30773,http://www.harringayonline.com,1 30774,http://www.extrapersonnel.com,1 30775,http://www.harrington.derbyshire.sch.uk,1 30776,http://www.externalinsulation.co.uk,1 30777,http://www.exteriorrenovations.co.uk,1 30778,http://www.harris-lipman.co.uk,1 30779,http://www.expressautocentre.com,1 30780,http://www.export.org.uk,1 30781,http://www.exploremalta.co.uk,1 30782,http://www.harropfold.com,1 30783,http://www.explainingthefuture.com,1 30784,http://www.expertdrive.net,1 30785,http://www.harrow.ac.uk,1 30786,http://www.experiencedriving.co.uk,1 30787,http://www.experian.co.uk,1 30788,http://www.harrowcarers.org,1 30789,http://www.harrowprelearnerdrivers.co.uk,1 30790,http://archant7.promotor2.com,1 30791,http://www.expatmedicalinsurances.co.uk,1 30792,http://archant2.promotor2.com,1 30793,http://www2.canterbury.gov.uk,1 30794,http://www.hartburnmotoringschool.co.uk,1 30795,http://www.hartcab.org.uk,1 30796,http://www.expatexchange.com,1 30797,http://www.exodus.co.uk,1 30798,http://www.hartlepoolcarers.org.uk,1 30799,http://www.hartlepoolcreditunion.co.uk,1 30800,http://www.exlschoolofmotoring.co.uk,1 30801,http://www.exitdebt.co.uk,1 30802,http://www.exeterstudentpad.com,1 30803,http://www.exeterguild.org,1 30804,http://www.exetercvs.org,1 30805,http://www.harton6form.co.uk,1 30806,http://www.executiverelocation.co.uk,1 30807,http://www.executiveforum.org.uk,1 30808,http://www.exclusivehealthcare.com,1 30809,http://www.excite.co.uk,1 30810,http://www.excite.co.jp,1 30811,http://www.excelsiorpropertyinventories.co.uk,1 30812,http://www.haslers.com,1 30813,http://www.excelinstructortraining.com,1 30814,http://www.exceldesign.ltd.uk,1 30815,http://www.example.parishcouncil.net,1 30816,http://www.exalead.com,1 30817,http://www.exacta.co.uk,1 30818,http://www.hastings.justmots.eu,1 30819,http://www.ewingplumbing.co.uk,1 30820,http://www.eweekeurope.co.uk,1 30821,http://www.ewartprice.com,1 30822,http://www.hatfieldpeverel.ik.org,1 30823,http://www.evolvedconveyancing.co.uk,1 30824,http://www.evolve2.org.uk,1 30825,http://www.evo-forum.de,1 30826,http://www.everynorfolkchildmatters.org,1 30827,http://www.everyinvestor.co.uk,1 30828,http://www.hattonhilldaynursery.com,1 30829,http://www.everycare.co.uk,1 30830,http://www.hatwelsolutions.com,1 30831,http://www.eversley.co.uk,1 30832,http://www.evershedspension.com,1 30833,http://www.everon.com,1 30834,http://arcadia,1 30835,http://arbtalk.co.uk,1 30836,http://www.events.businesslink.gov.uk,1 30837,http://www.evecars.com,1 30838,http://www.havant.ac.uk,1 30839,http://www.havantgoesgreener.org.uk,1 30840,http://www.havencare.com,1 30841,http://www.havenpower.com,1 30842,http://www.haverhilldrivingschool.co.uk,1 30843,http://www.eurotravellerhotel.com,1 30844,http://www.haveringyouth.co.uk,1 30845,http://www.european-studies.org,1 30846,http://www.hawaiiantel.net,1 30847,http://www.europa-auf-einen-blick.de,1 30848,http://www.hawksecuritysys.com,1 30849,http://www.hawkshead.cumbria.sch.uk,1 30850,http://www.hawktraining.com,1 30851,http://www.eurofound.europa.eu,1 30852,http://www.haws-animals.org.uk,1 30853,http://www.hawsons.co.uk,1 30854,http://www.eurocell.co.uk,1 30855,http://www.euro2.de,1 30856,http://www.euro-villalocation.com,1 30857,http://www.hayleyfuller.co.uk,1 30858,http://www.hayleysdriving.co.uk,1 30859,http://www.eures.praca.gov.pl,1 30860,http://www.eurados.org,1 30861,http://www.haywards.devon.sch.uk,1 30862,http://www.euractiv.pl,1 30863,http://arapaho.nsuok.edu,1 30864,http://www.eukhost.com,1 30865,http://www.eu4you.hu,1 30866,http://www.eu2uk2eu.com,1 30867,http://www.etwellegarage.co.uk,1 30868,http://www.etuienglishonline.org,1 30869,http://www.hazelgrove-pri.stockport.sch.uk,1 30870,http://www.ettaplumbing.co.uk,1 30871,http://www.etsy.com,1 30872,http://www.etsos.co.uk,1 30873,http://www.ets-lindgren.com,1 30874,http://www.etonbury.com,1 30875,http://www.hbnwa.com,1 30876,http://www.ethicalcare.co.uk,1 30877,http://www.estonsurgery.co.uk,1 30878,http://ara.kst.or.kr,1 30879,http://www.estates17.co.uk,1 30880,http://www.essextransportcpctraining.co.uk,1 30881,http://www.hceoa.org.uk,1 30882,http://www.essexsolarenergy.co.uk,1 30883,http://www.hcsu.co.uk,1 30884,http://www.essexinstitute.co.uk,1 30885,http://www.essexinfo.net,1 30886,http://www.essexhousemedicalcentre.co.uk,1 30887,http://www.essexhonours.org.uk,1 30888,http://www.hdas.co.uk,1 30889,http://www.essexcricket.org.uk,1 30890,http://www.essexcpc.co.uk,1 30891,http://www.hdft.nhs.uk,1 30892,http://www.hdtvtest.co.uk,1 30893,http://www.headingtonpartnership.org.uk,1 30894,http://www.headlandsgarage-kettering.co.uk,1 30895,http://www.essex-roadster.co.uk,1 30896,http://www.headley-village.com,1 30897,http://www2.dorsetcommunityaction.org.uk,1 30898,http://www.essentialaids.com,1 30899,http://www.essandelle.com,1 30900,http://www.esrcsocietytoday.ac.uk,1 30901,http://www.esrc.ac.uk,1 30902,http://www.esramallorca.org,1 30903,http://www.esports.lt,1 30904,http://www.headstartdt.co.uk,1 30905,http://www.espltd.info,1 30906,http://www.espelectricity.com,1 30907,http://www.espares.co.uk,1 30908,http://www.esolteacher.co.uk,1 30909,http://www.esns.slb.com,1 30910,http://www.esmail.co.uk,1 30911,http://www.eskombursaries.com,1 30912,http://www.esjonesalfaromeo.co.uk,1 30913,http://www.esher.surrey.sch.uk,1 30914,http://www.esgpx.com,1 30915,http://www.headwayni.org,1 30916,http://www.healingparishcouncil.com,1 30917,http://www.health.bcu.ac.uk,1 30918,http://www.esda.org.uk,1 30919,http://www.escortevolution.co.uk,1 30920,http://www.esato.com,1 30921,http://www.esargi.co.uk,1 30922,http://www.esabenefit.com,1 30923,http://www.erypct.nhs.uk,1 30924,http://www.erskine-chambers.co.uk,1 30925,http://www.ers.north-ayrshire.gov.uk,1 30926,http://www.erics-school-of-motoring.com,1 30927,http://www.healthchallengedenbighshire.co.uk,1 30928,http://www.era-solutions.co.uk,1 30929,http://www.equityreleasesupermarket.co.uk,1 30930,http://www.equityreleaseexpert.co.uk,1 30931,http://www.equiniti.com,1 30932,http://www.equinepodiatrytraining.co.uk,1 30933,http://www.equigas.co.uk,1 30934,http://www.healthchallengepembrokeshire.co.uk,1 30935,http://www.equality4u.com,1 30936,http://www.healthexchange65.co.uk,1 30937,http://www.healthknowledge.org.uk,1 30938,http://www.epsomsurestart.childrencentre.org,1 30939,http://www.epsom-sthelier.nhs.uk,1 30940,http://www.eprodoffice.com,1 30941,http://www.epractice.eu,1 30942,http://www.healthtrainersnelctp.org.uk,1 30943,http://www.epping-forest.ac.uk,1 30944,http://www.epost.no,1 30945,http://www.epmpractice.co.uk,1 30946,http://www.healthwatch-uk.org,1 30947,http://www.epilepsyscotland.org.uk,1 30948,http://www.healthymindscalderdale.co.uk,1 30949,http://www.epicsearch.in,1 30950,http://www.epichosts.co.uk,1 30951,http://www.ephs.ealing.sch.uk,1 30952,http://www.healthyworkingwales.com,1 30953,http://www.epclocal.co.uk,1 30954,http://www.epcd.info,1 30955,http://www.epc4u.com,1 30956,http://www.epc-uk.co.uk,1 30957,http://www.epassportphoto.com,1 30958,http://www.healthyworkmatters.org.uk,1 30959,http://www.healthyworkstations.com,1 30960,http://www.hearingconcernlink.org,1 30961,http://www.heartline.org.uk,1 30962,http://www.eoilleida.cat,1 30963,http://www.eoicaceres.com,1 30964,http://www.heartnsoul.co.uk,1 30965,http://www.envitae.co.uk,1 30966,http://www.heartsheatingandplumbing.co.uk,1 30967,http://www.heartsplumbing.com,1 30968,http://www.heatfleet.co.uk,1 30969,http://www.heatgb.co.uk,1 30970,http://www.environment-agency.co.uk,1 30971,http://www.entrypark.com,1 30972,http://www.heathandholmewoodpc.org.uk,1 30973,http://www.entershikari.com,1 30974,http://www.heathrowtrainingservices.com,1 30975,http://www.enotes.com,1 30976,http://www.enllegal.co.uk,1 30977,http://www.enlightenedequitation.com,1 30978,http://www.heathrowtravelcare.co.uk,1 30979,http://www.enjoylearningtodrive.com,1 30980,http://www.enjoy50plus.co.uk,1 30981,http://www.heatinghelpline.org.uk,1 30982,http://www.heckgrammar.kirklees.sch.uk,1 30983,http://www.englishschoolofmotoring.com,1 30984,http://www.englishmartyrs.co.uk,1 30985,http://www.englishforums.com,1 30986,http://www.english.marylo.net,1 30987,http://www.english-heritage.org.uk,1 30988,http://ar.search.yahoo.com,1 30989,http://www.helensburgh-lifeboat.org.uk,1 30990,http://ar.mg6.mail.yahoo.com,1 30991,http://www.helensdrivingschool.co.uk,1 30992,http://www.engagingdisabilities.org.uk,1 30993,http://aqueductprimary.taw.org.uk,1 30994,http://www.helium.com,1 30995,http://www2.elmbridge.gov.uk,1 30996,http://www.hellesdon.net,1 30997,http://www.eng-tips.com,1 30998,http://www.hellingmassey.com,1 30999,http://www.helliwellsschoolofmotoring.co.uk,1 31000,http://www.helmdonprimaryschool.com,1 31001,http://www.enfamille.com,1 31002,http://www.help-me-park.co.uk,1 31003,http://www.helpaids.it,1 31004,http://www.helpdroit.fr,1 31005,http://www.energyintelligencegroup.co.uk,1 31006,http://www.helpingyou.org.uk,1 31007,http://www.helpinhounslow.org.uk,1 31008,http://www.energy.gs,1 31009,http://www.helsbyhigh.org.uk,1 31010,http://www.energizeinc.com,1 31011,http://www.energise7.co.uk,1 31012,http://www.endsleigh.co.uk,1 31013,http://www.henbane.plus.com,1 31014,http://www.endoflifecareforadults.nhs.uk,1 31015,http://www.endlessmatches.com,1 31016,http://www.endeavourpractice.co.uk,1 31017,http://www.encyclopedie-de-la-formation.fr,1 31018,http://www.encyclopedia.com,1 31019,http://www.hendydrivingschool.com,1 31020,http://www.henleychaps.co.uk,1 31021,http://www.emr-recruitment.co.uk,1 31022,http://aprvli.vlihosting.co.uk,1 31023,http://www.empowerpeople.co.uk,1 31024,http://www.henleyfuneraldirectors.co.uk,1 31025,http://www.henleyschool.com,1 31026,http://www.employmentrights.co.uk,1 31027,http://www.employment-solutions.co.uk,1 31028,http://www.employerspensionsforum.co.uk,1 31029,http://www.employers-guide.org,1 31030,http://www.employerpayereference.co.uk,1 31031,http://www.employees.org.uk,1 31032,http://www.henryhindejuniorschool.co.uk,1 31033,http://www.employeeassistance.org.uk,1 31034,http://www.henrymoore.essex.sch.uk,1 31035,http://www.employ-ability.org.uk,1 31036,http://www.empireonline.com,1 31037,http://www.empica.co.uk,1 31038,http://www.emmasdrivingschool.co.uk,1 31039,http://www.heritage.derbyshire.sch.uk,1 31040,http://www.heritagecare.co.uk,1 31041,http://www.emma-jane.com,1 31042,http://www.heroesandvillains.info,1 31043,http://www2.etown.edu,1 31044,http://www.emigrare.info,1 31045,http://www.emid.wea.org.uk,1 31046,http://www.emhomebuy.co.uk,1 31047,http://www2.hkedcity.net,1 31048,http://www.emergencychildcare.co.uk,1 31049,http://www.emeraldstreet.com,1 31050,http://www.emeraldinsight.com.ezproxy.psz.utm.my,1 31051,http://www.emdn-mitonet.co.uk,1 31052,http://www.emcouncils.gov.uk,1 31053,http://www2.mgcars.org.uk,1 31054,http://www.embassyofireland.ru,1 31055,http://www.elysian-field.co.uk,1 31056,http://www.elwelltaylor.co.uk,1 31057,http://www.elvismatters.com,1 31058,http://www.elvethamheath.hants.sch.uk,1 31059,http://www.elsop.com,1 31060,http://www.elmridgepta.com,1 31061,http://www.elmleaf.co.uk,1 31062,http://www.elmhurstprimary.co.uk,1 31063,http://www.hertford.ox.ac.uk,1 31064,http://www.elmetdrivertraining.co.uk,1 31065,http://www.elmcroftsurgery.co.uk,1 31066,http://www.hertsbedsbucks.proboards.com,1 31067,http://www.ellisschoolofmotoring.com,1 31068,http://www.ellisdrivingtuition.co.uk,1 31069,http://www.ellisdriving.com,1 31070,http://www.ellisdriving.co.uk,1 31071,http://www.hertsdrivertraining.com,1 31072,http://www.elliottsheating.co.uk,1 31073,http://apps.southnorthants.gov.uk,1 31074,http://www.ellenbrookestates.co.uk,1 31075,http://www.elledriver.co.uk,1 31076,http://www.elka-ds.talktalk.net,1 31077,http://www.hertsmindnetwork.org,1 31078,http://www.elitetrainingacademy.org.uk,1 31079,http://www.eliteschoolofmotoring.net,1 31080,http://www.hertssafeguarding.org.uk,1 31081,http://www.elitelearners.co.uk,1 31082,http://www2.n-kesteven.gov.uk,1 31083,http://www.elitedrivinginstruction.co.uk,1 31084,http://apps.rhs.org.uk,1 31085,http://www.eliteautocentres.co.uk,1 31086,http://www.elite-driving.co.uk,1 31087,http://www.hev-driving.co.uk,1 31088,http://www.elevatedrivertraining.co.uk,1 31089,http://www.elergonomista.com,1 31090,http://www.elementalhistorical.co.uk,1 31091,http://www.electronicsweekly.com,1 31092,http://www.electronicsjobs.co.uk,1 31093,http://www.electricmobility.co.uk,1 31094,http://www.electriccarsite.co.uk,1 31095,http://www.electricalmate.co.uk,1 31096,http://www.electrical-chat.co.uk,1 31097,http://www.heyportugal.com,1 31098,http://www.heywardroad-surgery.co.uk,1 31099,http://www.hfaning.f2s.com,1 31100,http://www.elearningrepository.nhs.uk,1 31101,http://www.elderrahimi.co.uk,1 31102,http://www.hft.org.uk,1 31103,http://www.elderjuice.com,1 31104,http://www.hgs.herts.sch.uk,1 31105,http://www.hgss.co.uk,1 31106,http://apps.newham.gov.uk,1 31107,http://www.hgvtrainingsouthwest.co.uk,1 31108,http://www.ekwalslearningsolutions.com,1 31109,http://www.eknews.net,1 31110,http://www.ekaya.co.uk,1 31111,http://www.ekam.org.uk,1 31112,http://www.ek9.org,1 31113,http://www.ejiji.com,1 31114,http://www.ejcl.org,1 31115,http://www.eipa.nl,1 31116,http://www.einterventions.com,1 31117,http://www.eigroup.co.uk,1 31118,http://www.hhc.rca.ac.uk,1 31119,http://www.hhplace.org,1 31120,http://www.hi-linedrivingschool.co.uk,1 31121,http://www.egyptiantalks.org,1 31122,http://www.egs.org.uk,1 31123,http://www.hi-netgrampian.org,1 31124,http://www.egpfforum.com,1 31125,http://www.egov2c.kz,1 31126,http://www.egov.vic.gov.au,1 31127,http://www.egi.co.uk,1 31128,http://www.egfl.org.uk,1 31129,http://www.egeorman.org.tr,1 31130,http://www.egceducation.org,1 31131,http://www.hi4em.org.uk,1 31132,http://www.eforestry.gov.uk,1 31133,http://www.efm.uk.com,1 31134,http://www.efcab.org.uk,1 31135,http://www.efc.ac.uk,1 31136,http://www.highamscars.com,1 31137,http://www.eerstehulpbijrecht.nl,1 31138,http://www.eelga.gov.uk,1 31139,http://www.eeerecycling.co.uk,1 31140,http://www.eecforum.co.uk,1 31141,http://www.eeac.org.uk,1 31142,http://www.edwardwilson.westminster.sch.uk,1 31143,http://www.edwarddavey.co.uk,1 31144,http://www.edupa.uva.es,1 31145,http://www.edumat.co.uk,1 31146,http://www.edulinks.co.uk,1 31147,http://www.highamsparknursery.com,1 31148,http://www.educoteam.rs,1 31149,http://www.educatorsabroad.org,1 31150,http://www.educationuk.info,1 31151,http://www.educationleeds.co.uk,1 31152,http://www.educationbase.co.uk,1 31153,http://www.educationawarenessprogram.co.uk,1 31154,http://www.educationartsservice.org.uk,1 31155,http://www.educationalvisitsuk.com,1 31156,http://www.highbury.ac.uk,1 31157,http://www.highburyquadrant.islington.sch.uk,1 31158,http://apps.hi.baidu.com,1 31159,http://www.education-otherwise.net,1 31160,http://www.educareforeducation.com,1 31161,http://www.highdownjunior.co.uk,1 31162,http://www.edt.org.uk,1 31163,http://www.edsgarage.co.uk,1 31164,http://www.highlandhospice.org,1 31165,http://www2.northumberland.gov.uk,1 31166,http://www.edpasy.co.uk,1 31167,http://www.edmontonrangers.com,1 31168,http://www.highlandhospice.org.uk,1 31169,http://www.edmgarageservices.co.uk,1 31170,http://www.highlands.enfield.sch.uk,1 31171,http://www.highleghparishcouncil.gov.uk,1 31172,http://www.edistancelearning.co.uk,1 31173,http://apps.facebook.com,1 31174,http://www.edinburghdriving.co.uk,1 31175,http://www.edinburghdaysout.com,1 31176,http://www.edinburghcruise.co.uk,1 31177,http://www.edinburghcoachingservices.co.uk,1 31178,http://www.edinburghcarservices.co.uk,1 31179,http://www.edinburghairport.com,1 31180,http://www.edinburgh.uk.emb-japan.go.jp,1 31181,http://www.hightech-flat-roofing.co.uk,1 31182,http://www.highway-drivingschool.co.uk,1 31183,http://www.edgecrew.co.uk,1 31184,http://www.edgebury.bromley.sch.uk,1 31185,http://apps.castlepoint.gov.uk,1 31186,http://www.highwaydrivingschool.co.uk,1 31187,http://www.edenvale-uk.com,1 31188,http://www.edenproridertraining.co.uk,1 31189,http://www.edenjosh.co.uk,1 31190,http://www.edenbridgetown.com,1 31191,http://www.ecvn.com,1 31192,http://www.ecured.cu,1 31193,http://www.ecourtdemo.com,1 31194,http://www.ecosafefleet.co.uk,1 31195,http://www.ecosafe-driving.co.uk,1 31196,http://www.ecoopenhouses.org,1 31197,http://www.economycarhire.com,1 31198,http://www.economicsnetwork.ac.uk,1 31199,http://www.hillingdoncommunitytransport.org.uk,1 31200,http://www.econguru.com,1 31201,http://www.econ.ed.ac.uk,1 31202,http://www.ecolsom.co.uk,1 31203,http://www.ecologisticstraining.co.uk,1 31204,http://www.ecojam.org,1 31205,http://www.ecohomesetc.com,1 31206,http://www.hillsford.co.uk,1 31207,http://www.hillsnumberplates.com,1 31208,http://www.ecocongregationscotland.org,1 31209,http://www.ecoangus.co.uk,1 31210,http://www.hillspet.co.za,1 31211,http://www.hilltopdriving.com,1 31212,http://www.ecmk.co.uk,1 31213,http://www.eclipsemotorcycles.com,1 31214,http://www.eclipseinventories.co.uk,1 31215,http://www.hiltingbury-inf.hants.sch.uk,1 31216,http://www.ecita.org.uk,1 31217,http://www.echosix.co.uk,1 31218,http://www.echoroukonline.com,1 31219,http://www.echoone.co.uk,1 31220,http://www.hiltongarden.com,1 31221,http://www.hiltonschoolofmotoring.co.uk,1 31222,http://www.ecclestonprimary.org.uk,1 31223,http://www.hinckley-info.co.uk,1 31224,http://www.ecar.co.uk,1 31225,http://www.eca.ac.uk,1 31226,http://www.hind-leys.net,1 31227,http://www.hindehouse.net,1 31228,http://www.hiqonline.co.uk,1 31229,http://www.ebc-tefl-course.com,1 31230,http://www.ebay.co.uk,1 31231,http://www.eazydrivedrivingschool.co.uk,1 31232,http://www.eawmotorcycletraining.com,1 31233,http://www.historum.com,1 31234,http://www.easyterra.pt,1 31235,http://apprenticecareers.co.uk,1 31236,http://www.historyguy.com,1 31237,http://www.easypassschoolofmotoring.com,1 31238,http://www.historyworkshop.org.uk,1 31239,http://www.hiswaydrivingschool.co.uk,1 31240,http://www.easydrivingschool.org.uk,1 31241,http://www.easydrivestreet.co.uk,1 31242,http://apply.asda.jobs,1 31243,http://www.easydriverschool.co.uk,1 31244,http://www.hitachicapital.co.uk,1 31245,http://www.easychirp.com,1 31246,http://www.easybuildpension.co.uk,1 31247,http://www.easybm.com,1 31248,http://www.easybib.com.ezproxy.lib.csustan.edu:2048,1 31249,http://applications.sth.net,1 31250,http://www.easttenders.com,1 31251,http://www.hitchin-driving-school.co.uk,1 31252,http://www.hitchinandharpendenlabour.org,1 31253,http://www.hitchinbrakeclutchcentre.co.uk,1 31254,http://www.hivscotland.com,1 31255,http://www.hiype.org.uk,1 31256,http://www.eastonprimary.org.uk,1 31257,http://www.eastmidlandsgas.com,1 31258,http://www.eastmidlandsairport.com,1 31259,http://www.eastlothianyogaschool.co.uk,1 31260,http://www.hklawsoc.org.hk,1 31261,http://www.hkr.myzen.co.uk,1 31262,http://www.eastlondon.nhs.uk,1 31263,http://www.hkreform.gov.hk,1 31264,http://www.hkseagirt.com,1 31265,http://www.eastlandshomes.co.uk,1 31266,http://www.hkst.com,1 31267,http://www.hkstories.net,1 31268,http://www.easthamgrouppractice.co.uk,1 31269,http://www.easthagbourne.net,1 31270,http://www.eastgrinsteadschoolofmotoring.com,1 31271,http://www.eastfinchleymedicalpractice.nhs.uk,1 31272,http://www.eastfieldschool.co.uk,1 31273,http://www.easternandcoastalkent.nhs.uk,1 31274,http://www.easterlydriving.co.uk,1 31275,http://www.hktsy.com,1 31276,http://www.hlc-heathrow.org,1 31277,http://www.hlc.edu.hk,1 31278,http://www.eastcroydonmc.co.uk,1 31279,http://www.hlfoundation.org.uk,1 31280,http://www.eastbridgfordmedicalcentre.co.uk,1 31281,http://www.eastbournecab.co.uk,1 31282,http://www.hlhawes.co.uk,1 31283,http://www.eastberksmagistrates.org.uk,1 31284,http://applications.maidstone.gov.uk,1 31285,http://www.hlpdev.entitledto.co.uk,1 31286,http://www2.pearsonvue.com,1 31287,http://www.easilett.com,1 31288,http://www.easebourne.org,1 31289,http://www.eas.org.uk,1 31290,http://www.earth-anchors.com,1 31291,http://www.earsham.norfolk.sch.uk,1 31292,http://www.earlyrecruitment.co.uk,1 31293,http://www.earlyarts.co.uk,1 31294,http://www.early-retirement-investor.com,1 31295,http://www.eamg.org.uk,1 31296,http://www.ealingcycling.org.uk,1 31297,http://www.hmg.gov.uk,1 31298,http://www.e46zone.com,1 31299,http://www.e3learning.com.au,1 31300,http://www.e30zone.net,1 31301,http://www.e-probateonline.co.uk,1 31302,http://applemorepta.easysearch.org.uk,1 31303,http://www.e-goat.co.uk,1 31304,http://www.e-fakty.pl,1 31305,http://www.e-factor.co.uk,1 31306,http://www.hmrc-gov.co,1 31307,http://www.hmrc.gov.uk.,1 31308,http://www.e-campus.uvsq.fr,1 31309,http://www.hms-albion.r.mil.uk,1 31310,http://www.hmso.gov.uk,1 31311,http://www.hmt.co.uk,1 31312,http://www.hmvf.co.uk,1 31313,http://www.hmvtickets.com,1 31314,http://www.dyslexiapositive.org.uk,1 31315,http://www.dyslexialincolnshire.blogspot.com,1 31316,http://www.hobotraveler.com,1 31317,http://www.holbornmedicalcentre.com,1 31318,http://www.dyscoop.com,1 31319,http://www.dynwales.org,1 31320,http://www.dynamic-driving.co.uk,1 31321,http://www.dylannair.com,1 31322,http://www.holdenhurstsurgery.co.uk,1 31323,http://www.holding4.bigidea-creative.co.uk,1 31324,http://www.dyfed-powys.police.uk,1 31325,http://www.dwru.org,1 31326,http://www.dwrightservices.co.uk,1 31327,http://www.dwp.gov.uk:80,1 31328,http://www.holidayautos.co.uk,1 31329,http://www.dwmt.com,1 31330,http://www.holland.lancsngfl.ac.uk,1 31331,http://www.dvtani.gov.uk,1 31332,http://www.dvlni.co.uk,1 31333,http://www.dvlc.org.uk,1 31334,http://www.hollyfast.com,1 31335,http://www.duxburys.co.uk,1 31336,http://www.dutchie.co.uk,1 31337,http://www.hollyfield.kingston.sch.uk,1 31338,http://www.durhamdubbers.com,1 31339,http://www.durhamcollective.co.uk,1 31340,http://www.durhamcitystudios.com,1 31341,http://www.holmhurstmedicalcentre.co.uk,1 31342,http://www.durham-pa.gov.uk,1 31343,http://www.holstein-uk.com,1 31344,http://www.durbins.co.uk,1 31345,http://www.holsworthycollege.devon.sch.uk,1 31346,http://www.dunwalking.co.uk,1 31347,http://www.duntop.co.uk,1 31348,http://www.dunslandcrosswindfarm.co.uk,1 31349,http://www.dungannonps.co.uk,1 31350,http://www.dunfermline.com,1 31351,http://www.holsworthymedicalcentre.co.uk,1 31352,http://www.dundeecan.org.uk,1 31353,http://www.dundeeaccessgroup.co.uk,1 31354,http://www.dundasintransition.ca,1 31355,http://www.dundasfyfe.co.uk,1 31356,http://www.duncansofanniesland.co.uk,1 31357,http://www.holyfamilyschool.org.uk,1 31358,http://www.dulaldrivertraining.co.uk,1 31359,http://www.dudleylsp.org,1 31360,http://www.dudleylocksmiths.co.uk,1 31361,http://www.holyhead.cswebsites.org,1 31362,http://www.dudley-oldburydrivinginstructor.co.uk,1 31363,http://www.dubschool.co.uk,1 31364,http://www.holytrinityprimary.co.uk,1 31365,http://www.dtvprobation.org.uk,1 31366,http://www.holywell.leics.sch.uk,1 31367,http://www.dtefinancial.com,1 31368,http://www.dt4u.com,1 31369,http://www.dt1st.com,1 31370,http://www.dswdriving.co.uk,1 31371,http://www.dsu.org.uk,1 31372,http://www.dssaccepted.co.uk,1 31373,http://www.home-accounting.co.uk,1 31374,http://www.dshdriving.co.uk,1 31375,http://www.home-energy-report.com,1 31376,http://www.home-english.co.uk,1 31377,http://www.home-living-news.co.uk,1 31378,http://www.home-maintenance.info,1 31379,http://www.home-schooling-uk.com,1 31380,http://appleby-som.co.uk,1 31381,http://www.home.uni-osnabrueck.de,1 31382,http://www.homeandmedical.co.uk,1 31383,http://www.ds-driving.co.uk,1 31384,http://www.dryorkandpartners.co.uk,1 31385,http://www.dry-planet.com,1 31386,http://www.drwschoolofmotoring.co.uk,1 31387,http://www.drummgroup.com,1 31388,http://www.drumconstruction.co.uk,1 31389,http://www.drumbeat.org.uk,1 31390,http://www.drstudios.co.uk,1 31391,http://appl158a,1 31392,http://www.homecallbroadband.com,1 31393,http://www.droptheweapons.org,1 31394,http://appcmsportal2,1 31395,http://www.dropshippingforum.co.uk,1 31396,http://www.dropby.co.uk,1 31397,http://www.homecare-personnel.co.uk,1 31398,http://www.drloveandpartners.com,1 31399,http://www.drivinskool.com,1 31400,http://www.drivingwithrod.co.uk,1 31401,http://www.homecarederby.co.uk,1 31402,http://www.drivingupyourstreet.co.uk,1 31403,http://www.drivingtuitionipswich.co.uk,1 31404,http://www.drivingtuitioninhemelhempstead.com,1 31405,http://www.homecctvdirect.co.uk,1 31406,http://www.homechoicebristol.co.uk,1 31407,http://www.homecinema-fr.com,1 31408,http://www.homeenergysaver.co.uk,1 31409,http://www.homelessblackcountry.org,1 31410,http://www.drivingteststheory.co.uk,1 31411,http://www.homelessnessact.org.uk,1 31412,http://www.drivingtestmaster.co.uk,1 31413,http://www.drivingskool.net,1 31414,http://www.drivingschoolwokingham.co.uk,1 31415,http://www.homeopathic-college.com,1 31416,http://www.homeowners-club.co.uk,1 31417,http://www.homepagego.com,1 31418,http://www.drivingschoolsouthend.co.uk,1 31419,http://www.homepro.com,1 31420,http://www.drivingschoolsinyork.co.uk,1 31421,http://www.drivingschoolsinwinchester.co.uk,1 31422,http://www.drivingschoolsintelford.com,1 31423,http://www.homesandproperty.co.uk,1 31424,http://www.homesbycharter.co.uk,1 31425,http://www.drivingschoolsharrogate.co.uk,1 31426,http://www.drivingschoolsgrays.co.uk,1 31427,http://www.drivingschoolscambridge.co.uk,1 31428,http://www.drivingschoolsbethnalgreen.co.uk,1 31429,http://apollo.smu.ac.uk,1 31430,http://www.drivingschools-leicester.co.uk,1 31431,http://www.drivingschooloban.co.uk,1 31432,http://www.drivingschoolnorthampton.com,1 31433,http://www.drivingschoolinholbeach.co.uk,1 31434,http://www.drivingschoolhorsham.co.uk,1 31435,http://www.drivingschoolhayes.co.uk,1 31436,http://www.homesinsedgemoor.org,1 31437,http://www.drivingschooldidsbury.co.uk,1 31438,http://www.drivingschooldevon.com,1 31439,http://www.drivingschooldevon.co.uk,1 31440,http://apollo-solar-panels.com,1 31441,http://www.homestartrochdale.org.uk,1 31442,http://www.drivingschoolbasildon.com,1 31443,http://www.drivingschool4me.com,1 31444,http://www.drivingschool-directory.co.uk,1 31445,http://www.homeunltd.com,1 31446,http://www.drivingmebananas.co.uk,1 31447,http://www.drivingmagic.com,1 31448,http://www.drivingmadeeeasy.co.uk,1 31449,http://www.drivingmadeeasy.co.uk,1 31450,http://www.honda-forums.com,1 31451,http://www.drivinglessonsworcester.com,1 31452,http://aplus.theorytestpro.co.uk,1 31453,http://www.drivinglessonsnewhaven.co.uk,1 31454,http://www.drivinglessonsnewcastle.co.uk,1 31455,http://www.drivinglessonsmiddlesbrough.com,1 31456,http://www.drivinglessonslouth.co.uk,1 31457,http://www.drivinglessonsliverpool.org.uk,1 31458,http://www.hondaclub.cz,1 31459,http://apicdn.viglink.com,1 31460,http://www.drivinglessonsinstockport.co.uk,1 31461,http://www.hondahornet.org.uk,1 31462,http://www.drivinglessonsincleckheaton.com,1 31463,http://www.drivinglessonsinchesham.co.uk,1 31464,http://www.hooeprimary.co.uk,1 31465,http://www.drivinglessonsinbradford.com,1 31466,http://www.hooksurgery.nhs.uk,1 31467,http://api.ning.com,1 31468,http://www.drivinglessonsfinder.co.uk,1 31469,http://www.hoolabajunga.net,1 31470,http://www.hooseek.com,1 31471,http://www.drivinglessonscardiff.net,1 31472,http://www.drivinglessonsbirmingham.net,1 31473,http://www.drivinglessonsbirmingham.com,1 31474,http://www.drivinglessonsalnwick.co.uk,1 31475,http://www.drivinglessons4u.co.uk,1 31476,http://www.drivinglessons.a1.vg,1 31477,http://www.drivinglessons-torpoint.co.uk,1 31478,http://www.drivinglessons-stourbridge.co.uk,1 31479,http://www.drivinglessons-lancaster.co.uk,1 31480,http://www.drivinglessons-coventry.co.uk,1 31481,http://api.24quan.com,1 31482,http://www.drivingkit.co.uk,1 31483,http://www.hopetameside.org.uk,1 31484,http://www.hopfieldsautorepairs.co.uk,1 31485,http://www.drivinginstructortrainingportsmouth.com,1 31486,http://www.hopscotchdaynursery.co.uk,1 31487,http://www.horizonschoolofmotoring.co.uk,1 31488,http://www.drivinginstructorspeterborough.co.uk,1 31489,http://www.drivinginstructorsites.co.uk,1 31490,http://www.drivinginstructorsinnorthlondon.com,1 31491,http://www.drivinginstructorsilford.co.uk,1 31492,http://www.drivinginstructorsedinburgh.com,1 31493,http://www.drivinginstructorsbrighton.co.uk,1 31494,http://www.drivinginstructorlincoln.com,1 31495,http://apexsolaryorks.com,1 31496,http://www.drivinginstructorinliverpool.co.uk,1 31497,http://www.drivinginstructorindudley.com,1 31498,http://www.drivinginstructorincambridge.com,1 31499,http://www.drivinginstructorinashford.com,1 31500,http://www.drivinginstructorbsmipswich.co.uk,1 31501,http://www.drivinginstructorbournemouth.com,1 31502,http://www.drivinginstructoraa.co.uk,1 31503,http://www.drivinginstructor.pl,1 31504,http://www.drivinginstruction4u.co.uk,1 31505,http://www.horneteam.com,1 31506,http://www.drivingforceyorkshire.co.uk,1 31507,http://www.drivingforceschool.co.uk,1 31508,http://www.horsetrailers4hire.co.uk,1 31509,http://www.drivingflavas.com,1 31510,http://www.drivingcrashcourse.co.uk,1 31511,http://apexcm.co.uk,1 31512,http://www.drivingcourses.uk.com,1 31513,http://www.horsforth-driving-school.co.uk,1 31514,http://www.horshamdrivinglessons.co.uk,1 31515,http://www.drivingcar.co.uk,1 31516,http://apex-hgvtraining.co.uk,1 31517,http://apdrivingacademy.co.uk,1 31518,http://www.horsleyprimary.org.uk,1 31519,http://www.horspath.org.uk,1 31520,http://www.drivingambition1.co.uk,1 31521,http://www.driving4lessons.co.uk,1 31522,http://www.hortonlodge.org,1 31523,http://www.driving-time.com,1 31524,http://www.horwichschoolofmotoring.co.uk,1 31525,http://www2.physics.ox.ac.uk,1 31526,http://www.driving-schools-guildford.co.uk,1 31527,https://www.ellcchoicehomes.org.uk,1 31528,http://www.driving-school-pontypridd.co.uk,1 31529,http://www.driving-school-hatfield.co.uk,1 31530,http://www.driving-school-grantham.co.uk,1 31531,http://www.driving-school-eastbourne.co.uk,1 31532,http://www.driving-school-bedford.co.uk,1 31533,http://www.hotcourses.co.id,1 31534,http://www.driving-lessons.net,1 31535,http://www.driving-lessons-warwickshire.co.uk,1 31536,http://www.hotelscene.co.uk,1 31537,http://www.driving-lessons-harrow.co.uk,1 31538,http://www.hotfrog.co.uk,1 31539,http://www.driving-instructor-oldham.co.uk,1 31540,http://www.driving-instructor-maidstone.co.uk,1 31541,http://www.driving-instructor-crewe.co.uk,1 31542,http://www.driving-horsham.co.uk,1 31543,http://www.driving-a-cert.co.uk,1 31544,http://www.drivewithjeansom.co.uk,1 31545,http://www.hotmobilephoneoffers.com,1 31546,http://www.drivewithems.co.uk,1 31547,http://www.drivewithdave.co.uk,1 31548,http://www.housekeepercompany.co.uk,1 31549,http://www.drivewithadi.co.uk,1 31550,http://www.housetohome.co.uk,1 31551,http://www.housing-plus.co.uk,1 31552,http://www.drivewaydrivingschool.co.uk,1 31553,http://www.driveukdti.co.uk,1 31554,http://www.drivetolearn.co.uk,1 31555,http://www.drivetimelessons.com,1 31556,http://www.drivetime121.co.uk,1 31557,http://www.housingbenefithomes.com,1 31558,http://www.drivesussex.co.uk,1 31559,http://www.drivesright.co.uk,1 31560,http://www.drivesms.co.uk,1 31561,http://www.drivesmartuk.biz,1 31562,http://www.housingnet.co.uk,1 31563,http://www.drivesign.co.uk,1 31564,http://www.driveshak.co.uk,1 31565,http://www.driveschool.biz,1 31566,http://www.drivesafely1st.com,1 31567,http://www.drivesafehounslow.co.uk,1 31568,http://www.how-2-drive.com,1 31569,http://www.drivesafe-som.co.uk,1 31570,http://www.how-to-hunt-rabbit.com,1 31571,http://www.howardmatthews.co.uk,1 31572,http://www.howardroth.co.uk,1 31573,http://www.drivertrainingtaylormade.co.uk,1 31574,http://www2.puresight.com,1 31575,http://www.drivertrainingcentre.co.uk,1 31576,http://www2.sprak.umu.se,1 31577,http://www.drivertaxuk.co.uk,1 31578,http://www.howardswaydrivingschool.co.uk,1 31579,http://www.driverskillstraining.co.uk,1 31580,http://www.driversify101.com,1 31581,http://www.howarthfunerals.co.uk,1 31582,http://www.driverite.comxa.com,1 31583,http://www.driverighttoday.co.uk,1 31584,http://www.driverightschool.com,1 31585,http://www.driverdevelopment-northants.co.uk,1 31586,http://www.howto.gov,1 31587,http://www.howto.tv,1 31588,http://www.howtobuyausedcar.co.uk,1 31589,http://www.drivemastersplus.co.uk,1 31590,http://www.howwood.herts.sch.uk,1 31591,http://www.drivel2p.co.uk,1 31592,http://www.drivejohnsons.co.uk,1 31593,http://www.hpa.nhs.uk,1 31594,http://www.drivecraft.co.uk,1 31595,http://www.drivecooper.co.uk,1 31596,http://www.drivecolin.co.uk,1 31597,http://www.drivecawston.com,1 31598,http://www.drivebug.co.uk,1 31599,http://www.driveasylondon.co.uk,1 31600,http://www.driveandlearnwithgrahamfearn.co.uk,1 31601,http://www2.yoog.com,1 31602,http://www.hpiexchange.com,1 31603,http://www.drive2success.net,1 31604,http://www.hpmservices.org,1 31605,http://www.hprepairsperth.com,1 31606,http://www.drive-wright.com,1 31607,http://www.hqnetwork.org.uk,1 31608,http://www.drive-with-simon.co.uk,1 31609,http://www.drive-school.co.uk,1 31610,http://www.drive-ryte.co.uk,1 31611,http://www.drive-rlh.co.uk,1 31612,http://www.hr-business-people.co.uk,1 31613,http://www.drive-passed.co.uk,1 31614,http://www.drive-mk.co.uk,1 31615,http://www.hr-services.stir.ac.uk,1 31616,http://www.hraozemi.cz,1 31617,http://www.drive-for-life.co.uk,1 31618,http://www.hrbc.co.uk,1 31619,http://www20.gencat.cat,1 31620,http://www.hrbird.org.uk,1 31621,http://www28.yoog.com,1 31622,http://www.hrc.ac.uk,1 31623,http://www.drive-a-mota.co.uk,1 31624,http://www.drinkdrive.org.uk,1 31625,http://www.hrd-online.com,1 31626,http://www.drgatesandptnrs.co.uk,1 31627,http://www.drewberrygroupinsurance.co.uk,1 31628,http://www2s.biglobe.ne.jp,1 31629,http://www.dreamfoundation.eu,1 31630,http://www.hs-albsig.de,1 31631,http://www.draycott.derbyshire.sch.uk,1 31632,http://www.hsbcpensioners.org,1 31633,http://www3.aberdeenshire.gov.uk,1 31634,http://www.dragontravel.co.uk,1 31635,http://www.hsdipman.co.uk,1 31636,http://www.hsgmobility.com,1 31637,http://www.hskingstanding.co.uk,1 31638,http://www.dpr.gov.uk,1 31639,http://www.dpda.co.uk,1 31640,http://www.hsmsearch.co.uk,1 31641,http://www.dpcamps.org,1 31642,http://www.downthelane.net,1 31643,http://www.downside-fisher.org,1 31644,http://www.downshouse.co.uk,1 31645,http://www.hsv.org.uk,1 31646,http://www.download.bham.ac.uk,1 31647,http://www.downholland.lancsngfl.ac.uk,1 31648,http://www.downforeveryoneorjustme.com,1 31649,http://www.downend.com,1 31650,http://www.dowdalesschool.co.uk,1 31651,http://www3.adelanet.se,1 31652,http://www.doverdealadvice.co.uk,1 31653,http://www.doverdc.co.uk,1 31654,http://www.hsw.uol.com.br,1 31655,http://www.dovedale-inf.liverpool.sch.uk,1 31656,http://www.douglassilassolicitors.co.uk,1 31657,http://www.douglascommunitycouncil.info,1 31658,http://www.douglasalexander.org.uk,1 31659,http://www.douglasadams.com,1 31660,http://www.hucknallcommunity.co.uk,1 31661,http://www.huddersfield.ac.uk,1 31662,http://www.doshiuk.com,1 31663,http://www.huddersfielddriving.co.uk,1 31664,http://www.huddersfielddrivingschool.co.uk,1 31665,http://www.huddnewcoll.ac.uk,1 31666,http://www.hudsonfamily.eu,1 31667,http://www.dorset.nhs.uk,1 31668,http://www.dorringtonprimary.co.uk,1 31669,http://www.dorothyhouse.co.uk,1 31670,http://www.dorkingnurserychildrenscentre.org.uk,1 31671,http://www.doopedia.co.kr,1 31672,http://www.doody-designs.com,1 31673,http://www.dontstallit.com,1 31674,http://www.hughesguides.com,1 31675,http://www.donningtonmedicalpractice.co.uk,1 31676,http://www.donnamak.easysearch.org.uk,1 31677,http://www3.nccu.edu.tw,1 31678,http://www.doncastermot.co.uk,1 31679,http://www.doncasterfhs.co.uk,1 31680,http://www.doncasterchildrenandfamilies.info,1 31681,http://www.hughlaurie.net,1 31682,http://www.hulldrivinglessons.com,1 31683,http://www.donateyourfuelallowance.com,1 31684,http://www3.sympatico.ca,1 31685,http://www.hullpct.nhs.uk,1 31686,http://www.dominiquesvillas.co.uk,1 31687,http://www.domesticgasservicesuk.co.uk,1 31688,http://www.dolphinnursery-kingston.com,1 31689,http://www.dollarstopounds.net,1 31690,http://www.human-rights.org.uk,1 31691,http://www.humanrights.ago.go.th,1 31692,http://www.dogs-r-us.org,1 31693,http://www.humberston-school.co.uk,1 31694,http://www.humberstonpark.org.uk,1 31695,http://www.dogbasics.co.uk,1 31696,http://www.humphreys.co.uk,1 31697,http://www.doddiscombsleigh.parishcouncil.net,1 31698,http://www.doctorssupportgroup.com,1 31699,http://www.docklandsdrivingschool.com,1 31700,http://www.docgb.org,1 31701,http://www.huntersbarvets.co.uk,1 31702,http://www.huntingdonroadsurgery.co.uk,1 31703,http://www.dnrvinyl.co.uk:2095,1 31704,http://www.dnquinn.co.uk,1 31705,http://www.dna-awards.co.uk,1 31706,http://www.hutchings.co.uk,1 31707,http://www.dmschoolofmotoring.co.uk,1 31708,http://www.huttonhouserecruitment.com,1 31709,http://www3.uni-bonn.de,1 31710,http://www.dmmotorswestkirbyltd.co.uk,1 31711,http://www.dmg-customerclub.com,1 31712,http://www.dlugi.co.uk,1 31713,http://www.hwb-accountants.com,1 31714,http://www.dla-claim.co.uk,1 31715,http://www.hydepreschool.co.uk,1 31716,http://www.djdoors.co.uk,1 31717,http://www.dj-forum.co.uk,1 31718,http://www.dizzytimes.com,1 31719,http://www.hydropath.com,1 31720,http://www.diybanter.com,1 31721,http://www.diy4everyone.com,1 31722,http://www.diy2go.com,1 31723,http://www.hymans.co.uk,1 31724,http://www.diy-pvcu-conservatories.co.uk,1 31725,http://www.diy-extra.co.uk,1 31726,http://www.divorcefinancetoolkit.co.uk,1 31727,http://www.hyms.ac.uk,1 31728,http://www.hypermobilityuk.org,1 31729,http://www.divorce-law.org,1 31730,http://www.diversusinterpreting.co.uk,1 31731,http://www.diversitytravel.co.uk,1 31732,http://www.diversityaction.co.uk,1 31733,http://www.hysterectomy-association.org.uk,1 31734,http://www.hythe-hants.org.uk,1 31735,http://www.hythebay.kent.sch.uk,1 31736,http://www.discussthemarket.com,1 31737,http://www.i-futures.co.uk,1 31738,http://www.i-learnerdrivingschool.co.uk,1 31739,http://www.i-studentadvisor.com,1 31740,http://www.discountcarrentaluk.com,1 31741,http://www.disco3.co.uk,1 31742,http://www.disclosurescotland.co.uk,1 31743,http://www.i-volunteer.org.uk,1 31744,http://www.disabledramps.co.uk,1 31745,http://www.disabledramblersni.com,1 31746,http://www3.yoog.com,1 31747,http://www.disabledparentsnetwork.org.uk,1 31748,http://www.i818.com,1 31749,http://www.disabledgo.com,1 31750,http://www.disablededucation.co.uk,1 31751,http://www.disableddrivinglessons.co.uk,1 31752,http://www.disableddriverinsurance.co.uk,1 31753,http://www.disabled4disabled.co.uk,1 31754,http://www4.gsb.columbia.edu,1 31755,http://www.disabled-entrepreneurs.net,1 31756,http://www.ialpa.net,1 31757,http://www.disabilitypolicy.ca,1 31758,http://www.disabilitynow.org.uk,1 31759,http://www.disabilityhelp-scotland.co.uk,1 31760,http://www.disabilityhackney.org,1 31761,http://www.disabilitycando.org.uk,1 31762,http://www.disability-cambridgeshire.org.uk,1 31763,http://www.dirtyrock.org,1 31764,http://aolanswers.com,1 31765,http://www.directresponsesecurity.co.uk,1 31766,http://www5.yoog.com,1 31767,http://www.directline-flights.co.uk,1 31768,http://www.iampissedoff.com,1 31769,http://www6.amiveille.amisw.com,1 31770,http://www.ian-baxter.co.uk,1 31771,http://www.ian-blake.co.uk,1 31772,http://www.directguv.org,1 31773,http://www.ian-rayner.com,1 31774,http://www.ianburtdriving.co.uk,1 31775,http://www.iancraigie.com,1 31776,http://www.ianhooper-adi.co.uk,1 31777,http://www.ianleaverschoolofmotoring.com,1 31778,http://www.directgov.info,1 31779,http://www.ianleesassetmanagement.com,1 31780,http://www.ianmarriottdrivingschool.co.uk,1 31781,http://www.directdriveonline.co.uk,1 31782,http://www.ianmcneilldrivertraining.co.uk,1 31783,http://www.direct.jov.co.uk,1 31784,http://www.direct.gov.uk:/en/index.htm,1 31785,http://www.ianpdrivinginstructor.co.uk,1 31786,http://anulib.anu.edu.au,1 31787,http://www.iasst.com,1 31788,http://www.direct.gov.uk/renewmyphoto=&FailedURI=http%3A%2F%2Fdirectgov.uk%2Frenewmyphoto&AddInType=4&Version=2.1.8-1.78base&Referer=&Implementation=0,1 31789,http://www.ibiscommunication.co.uk,1 31790,http://www.direct.gov.uk/prod_consum_dg/groups/ta/@dg/documents/digitalasset/dg_177068.htm,1 31791,http://www.ibmukppp-offer.co.uk,1 31792,http://antoninfantschool.com,1 31793,http://www.ibnbattutascouts.org.uk,1 31794,http://www.icalshare.com,1 31795,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_195932.pdf,1 31796,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_195929.pdf,1 31797,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_195672.pdf,1 31798,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_194536.pdf,1 31799,http://antiknifecrime.wordpress.com,1 31800,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_194358.pdf,1 31801,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_194357.pdf,1 31802,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_194355.pdfhttp://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_194355.pdfhttp://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_194355.pdf,1 31803,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_194350.pdf,1 31804,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_187179.htm,1 31805,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_187178.htm,1 31806,http://anthony-roper.kent.sch.uk,1 31807,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_186295.html,1 31808,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_184065.pdf,1 31809,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_180681.pdf,1 31810,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_180653.pdf,1 31811,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_176245.pdf,1 31812,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_10035538.pdf,1 31813,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/documents/digitalasset/dg_066421.pdf,1 31814,http://www.icd-gloucestershire.org.uk,1 31815,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@shared/documents/digitalasset/dg_180385.pdf,1 31816,http://www7.pearsonvue.com,1 31817,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@over50/documents/digitalasset/dg_180311.pdf,1 31818,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@over50/documents/digitalasset/dg_180227.pdf,1 31819,http://www.icegripper.co.uk,1 31820,http://www.icethecake.co.uk,1 31821,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@over50/documents/digitalasset/dg_180196.pdf,1 31822,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@over50/documents/digitalasset/,1 31823,http://www.iciscpf.org.uk,1 31824,http://www.icknielddrivingschool.com,1 31825,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_4011275.pdf,1 31826,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_199572.pdf,1 31827,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_191931.pdf,1 31828,http://answers.microsoft.com,1 31829,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_191924.pdf,1 31830,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_191922.pdf,1 31831,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_186824.pdf,1 31832,http://answers.loanfinder.co.uk,1 31833,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_180218.pdf,1 31834,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_179053.pdf,1 31835,http://www.icoico.org,1 31836,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_177096.pdf,1 31837,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_078131.pdf,1 31838,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_072022.pdf,1 31839,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_069731.pdf,1 31840,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_068626.pdf,1 31841,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_067958.pdf,1 31842,http://www.icpnetworks.co.uk,1 31843,http://www.ics-wastemanagement.co.uk,1 31844,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_067209.pdf,1 31845,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_066276.pdf,1 31846,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_066275.pdf,1 31847,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_065303.pdf,1 31848,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_065298.pdf,1 31849,http://www.icsa.org.uk,1 31850,http://www.ict.edu.ru,1 31851,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_065262.pdf,1 31852,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/dg_065251.pdf,1 31853,http://www7.yoog.com,1 31854,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@motor/documents/digitalasset/,1 31855,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@money/documents/digitalasset/dg_195544.pdf,1 31856,http://www.icteachers.co.uk,1 31857,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@educ/documents/digitalasset/dg_186496.pdf,1 31858,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@educ/documents/digitalasset/dg_184526.pdf,1 31859,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@educ/documents/digitalasset/dg_183337.pdf,1 31860,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@educ/documents/digitalasset/dg_174794.pdf,1 31861,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@educ/documents/digitalasset/dg_174306.pdf,1 31862,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@educ/documents/digitalasset/,1 31863,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@educ/documents/,1 31864,http://www.ictteam.org.uk,1 31865,http://www.id-sphere.com,1 31866,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/@en/@crime/documents/digitalasset/dg_071397.pdf,1 31867,http://www.ideal-epc.co.uk,1 31868,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/@dg/,1 31869,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/%40dg/%40en/documents/digitalasset/dg_198632.pdf,1 31870,http://www.ideas4adis.co.uk,1 31871,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/%40dg/%40en/%40motor/documents/digitalasset/dg_069390.pdf,1 31872,http://www.direct.gov.uk/prod_consum_dg/groups/dg_digitalassets/,1 31873,http://ansleycc.easysearch.org.uk,1 31874,http://www.ideasourceltd.com,1 31875,http://www.direct.gov.uk/prod_consum_dg/DGFragmentsCode/images/corners/noborderTopRight.gif,1 31876,http://www.direct.gov.uk/photorenewal,1 31877,http://www.direct.gov.uk/payacourtfine,1 31878,http://www.ident.co.uk,1 31879,http://www.direct.gov.uk/notify-wlan-guests,1 31880,http://www.idgraphicdesign.com,1 31881,http://www.direct.gov.uk/motoringforms,1 31882,http://www.idmu.co.uk,1 31883,http://www.direct.gov.uk/login,1 31884,http://www.idrivesom.co.uk,1 31885,http://anopenroaddrivingschool.co.uk,1 31886,http://www.direct.gov.uk/error/taxdisc,1 31887,http://www.ids.org.uk,1 31888,http://www.ids2u.co.uk,1 31889,http://www.direct.gov.uk/en/YoungPeople/Youngdisabledpeople/index.htm,1 31890,http://www.idsbrief.com,1 31891,http://www.idsystemsandsupplies.com,1 31892,http://www.idt-driving.co.uk,1 31893,http://www.ieaddons.com,1 31894,http://www.iee-library.eu,1 31895,http://www.iema.net,1 31896,http://www.ier.org.cn,1 31897,http://www.ietconnect.org,1 31898,http://www.iexplore.com,1 31899,http://www.ifa.net,1 31900,http://www.ifaportals.co.uk,1 31901,http://www.ifjusagzala.hu,1 31902,http://www.ifs.inchcape.co.uk,1 31903,http://www.ift.org,1 31904,http://www.direct.gov.uk/en/YoungPeople/Money/TaxesAndYou/index.htm,1 31905,http://www.direct.gov.uk/en/YoungPeople/Money/SavingForTheFuture/index.htm,1 31906,http://www.direct.gov.uk/en/YoungPeople/Money/ManagingYourMoney/index.htm,1 31907,http://www.direct.gov.uk/en/YoungPeople/Money/ManagingYourMoney/DG_10027616,1 31908,http://www.igmaynard.co.uk,1 31909,http://anonops.blogspot.com,1 31910,http://www.ignition247.com,1 31911,http://www.igovbrasil.com,1 31912,http://www.igpcorporate.co.uk,1 31913,http://www.ihaveiih.com,1 31914,http://www.iiit.org,1 31915,http://www.direct.gov.uk/en/YoungPeople/Housing/DG_181368,1 31916,http://www.ikeepbookmarks.com,1 31917,http://www.ikhwan.net,1 31918,http://www.ikmal.org.my,1 31919,http://anniesland.theorytestpro.co.uk,1 31920,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/FamilyAndRelationships/DG_10031389,1 31921,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/ConcernedAbout/DG_10032849,1 31922,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/ConcernedAbout/DG_10031257,1 31923,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/ConcernedAbout/DG_10030921,1 31924,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/ConcernedAbout/DG_10030631,1 31925,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/ConcernedAbout/DG_068631,1 31926,http://www.ikona.biz,1 31927,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/Bullying/DG_182401,1 31928,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/Bullying/DG_182400,1 31929,http://annasbusybees.co.uk,1 31930,http://www.direct.gov.uk/en/YoungPeople/HealthAndRelationships/Bullying/DG_10031374,1 31931,http://annabelstorr.theorytestpro.co.uk,1 31932,http://www.ilincolnshire.co.uk,1 31933,http://www93.hattrick.interia.pl,1 31934,http://www.illegaltobaccomedway.co.uk,1 31935,http://www.direct.gov.uk/en/YoungPeople/DG_064487,1 31936,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/Youngpeopleservingyoursentence/index.htm,1 31937,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/Youngpeopleandcourt/index.htm,1 31938,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/Youngpeopleandcourt/DG_196437,1 31939,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/Youngpeopleandcourt/DG_10027682,1 31940,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/Typesofsentencesyoungpeoplecanget/DG_196430,1 31941,http://www.ilondyn.polacy.co.uk,1 31942,http://animods.careersoft.info,1 31943,http://www.ilsyork.org.uk,1 31944,http://www.iltasanomat.fi,1 31945,http://www.images.naturalengland.org.uk,1 31946,http://www.direct.gov.uk/en/YoungPeople/CrimeAndJustice/KeepingSafe/DG_10027713,1 31947,http://www.imaginecruising.co.uk,1 31948,http://www.imamother.com,1 31949,http://www.imdb.com,1 31950,http://www.imdleo.gr,1 31951,http://www.direct.gov.uk/en/Video/Parenting/A/DG_191407,1 31952,http://www.direct.gov.uk/en/Video/Morevideos/index.htm,1 31953,http://www.imgoingtopass.co.uk,1 31954,http://www.imigracja-uk.pl,1 31955,http://www.direct.gov.uk/en/Video/Drivingandmotoring/DG_WP198684,1 31956,http://www.direct.gov.uk/en/Video/DG_WP198544,1 31957,http://www.immigrationservicestribunal.gov.uk,1 31958,http://www.direct.gov.uk/en/Video/DG_WP196003,1 31959,http://www.direct.gov.uk/en/Video/DG_WP195671,1 31960,http://animalhealth.defra.gov.uk,1 31961,http://www.impact.org.uk,1 31962,http://www.direct.gov.uk/en/Video/DG_WP195654,1 31963,http://www.impactbumpers.com,1 31964,http://www.direct.gov.uk/en/Video/DG_WP194021,1 31965,http://www.imthurricane.org,1 31966,http://www.direct.gov.uk/en/Video/DG_WP193936,1 31967,http://www.direct.gov.uk/en/Video/CrimeandJustice/index.htm,1 31968,http://www.in-marketing.biz,1 31969,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Trafficinformationandjourneyplanning/DG_196093,1 31970,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Trafficinformationandjourneyplanning/DG_184667,1 31971,http://www.in-tuition.moonfruit.com,1 31972,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Reducingroadcongestionandpollution/index.htm,1 31973,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Reducingroadcongestionandpollution/DG_10025601,1 31974,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Reducingroadcongestionandpollution/DG_10025600,1 31975,http://www.inboxdollars.com,1 31976,http://www.inchcapeservicing.co.uk,1 31977,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Keepingtrafficmoving/DG_184855,1 31978,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Keepingtrafficmoving/DG_184826,1 31979,http://www.direct.gov.uk/en/TravelAndTransport/Usingmotorwaysandroads/Breakdownsdrivingconditions/DG_185021,1 31980,http://animalcouriers-px.rtrk.co.uk,1 31981,http://www.inchtureprimary.ik.org,1 31982,http://www.inclusion.me.uk,1 31983,http://www.direct.gov.uk/en/TravelAndTransport/Roadsafetyadvice/DG_188761,1 31984,http://www.ind-case-exam.org.uk,1 31985,http://www.direct.gov.uk/en/TravelAndTransport/PublicTransport/TaxisAndPrivateHireVehicles/index.htm,1 31986,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/TaxisAndPrivateHireVehicles/DG_187322,1 31987,http://www.independencedrivingschool.co.uk,1 31988,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/RailTravel/index.htm,1 31989,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/RailTravel/DG_190946,1 31990,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/RailTravel/DG_10036413,1 31991,http://www.independent-practitioner-today.co.uk,1 31992,http://www.independentfamilymediation.org.uk,1 31993,http://www.direct.gov.uk/en/TravelAndTransport/PublicTransport/RailTravel/DG_10036272,1 31994,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/RailTravel/DG_10036272,1 31995,http://www.indexmundi.com,1 31996,http://www.indian-surrogacy.com,1 31997,http://angszel.yolasite.com,1 31998,http://www.direct.gov.uk/en/TravelAndTransport/PublicTransport/BusAndCoachTravel/DG_10036267,1 31999,http://www.indianfuneraldirectors.co.uk,1 32000,http://www.direct.gov.uk/en/TravelAndTransport/PublicTransport/BusAndCoachTravel/DG_10036241,1 32001,http://www.direct.gov.uk/en/TravelAndTransport/PublicTransport/BusAndCoachTravel/DG_071640,1 32002,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/AirtravelintheUK/index.htm,1 32003,http://www.direct.gov.uk/en/TravelAndTransport/Publictransport/AirtravelintheUK/DG_10036233,1 32004,http://www.indiavision.com,1 32005,http://www.indiegogo.com,1 32006,http://www.indoeuropeherbals.com,1 32007,http://www.indusladies.com,1 32008,http://www.industrialdeafnesswatch.co.uk,1 32009,http://www.industrialleaders.com,1 32010,http://www.industrymailout.com,1 32011,http://www.inertiaderiter.com,1 32012,http://www.inetmedia.nu,1 32013,http://www.infobasecymru.net,1 32014,http://www.informationarchitects.jp,1 32015,http://www.informationprescription.info,1 32016,http://www.infrared-heating-redwell.co.uk,1 32017,http://www.direct.gov.uk/en/TravelAndTransport/Passports/DG_177741,1 32018,http://www.ingenie.com,1 32019,http://www.ingenieroambiental.com,1 32020,http://www.inghams.co.uk,1 32021,http://www.ingiltereve.biz,1 32022,http://www.ingilterevizesial.com,1 32023,http://www.injoy-yoga.com,1 32024,http://www.injunction-direct.com,1 32025,http://www.innerfictions.com:2095,1 32026,http://www.innocentdrinks.ie,1 32027,http://www.innovatefurniture.co.uk,1 32028,http://www.innovateot.com,1 32029,http://www.innovatoripa.it,1 32030,http://www.insidecareers.co.uk,1 32031,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Applicationinformation/DG_174150,1 32032,http://www.insight.bt.com,1 32033,http://www.direct.gov.uk/en/TravelAndTransport/Passports/Aboutcollectivegrouppassports/DG_174147,1 32034,http://www.insol.org,1 32035,http://www.direct.gov.uk/en/TravelAndTransport/Knowyourtrafficsigns/DG_192207,1 32036,http://www.inspiredofspirit.com,1 32037,http://www.inspiredriving.com,1 32038,http://www.instantloansdirect.com,1 32039,http://www.instructors.icecentral.net,1 32040,http://www.insulateyourhome.co.uk,1 32041,http://www.insulationgranthelpline.co.uk,1 32042,http://www.insurance-cheap.co.uk,1 32043,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_070339,1 32044,http://www.insurance4carrental.com,1 32045,http://www.insurancecomparisonsites.co.uk,1 32046,http://www.insurancevirgins.com,1 32047,http://www.intaplumb.co.uk,1 32048,http://www.intasure.com,1 32049,http://www.integratedsciences.org.uk,1 32050,http://www.intelligentanswers.co.uk,1 32051,http://www.direct.gov.uk/en/TravelAndTransport/Highwaycode/DG_069873,1 32052,http://anglingtrust.easysearch.org.uk,1 32053,http://www.intensive-driving-courses-birmingham.co.uk,1 32054,http://www94.hattrick.org,1 32055,http://www.intensivedrivingcourses4u.co.uk,1 32056,http://www.intensivedrivingcoursessheffield.co.uk,1 32057,http://www.inter-lawyer.com,1 32058,http://www.intercars.co.uk,1 32059,http://www.intercoolsystems.co.uk,1 32060,http://www.interdebt.co.uk,1 32061,http://www.intereducation.co.uk,1 32062,http://www.interestfreecreditshopping.co.uk,1 32063,http://www.intermortgages.co.uk,1 32064,http://www.internationalmodelagency.co.uk:2095,1 32065,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/IfThingsGoWrong/DG_4016877,1 32066,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/BringinggoodsorcashintotheUK/DG_181171,1 32067,http://anglickysen.cz,1 32068,http://www.intersites.co.uk,1 32069,http://www.intervol.org.uk,1 32070,http://www.intoimserv.com,1 32071,http://www.intouchwithhealth.co.uk,1 32072,http://www.intralinea.it,1 32073,http://www.direct.gov.uk/en/TravelAndTransport/Foreigntravel/AirTravel/DG_198925,1 32074,http://www.intranet.pppgroup.co.uk,1 32075,http://www.intuition-school-of-motoring.co.uk,1 32076,http://www.intuitiondrivertraining.co.uk,1 32077,http://www.direct.gov.uk/en/TravelAndTransport/Cycling/DG_4018700,1 32078,http://www.intuitiondrivingschoolbarnsley.co.uk,1 32079,http://www.direct.gov.uk/en/TravelAndTransport/Cycling/DG_190038,1 32080,http://www.intute.ac.uk,1 32081,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/Usingpleasurecraftsafely/DG_185779,1 32082,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/Usingpleasurecraftsafely/DG_185772,1 32083,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/Usingpleasurecraftsafely/DG_185767,1 32084,http://angliaimunka.linkcenter.hu,1 32085,http://www.inva.info,1 32086,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/Usingpleasurecraftsafely/DG_185401,1 32087,http://www.invate.co.uk,1 32088,http://www.inventivepropertysolutions.co.uk,1 32089,http://www.inventoryclerkuk.co.uk,1 32090,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/Keepingsafeatthecoast/DG_186009,1 32091,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/Keepingsafeatthecoast/DG_185550,1 32092,http://www.direct.gov.uk/en/TravelAndTransport/Boatingandtravellingbywater/Keepingsafeatthecoast/DG_185489,1 32093,http://www.direct.gov.uk/en/SiteInformation/DG_197506,1 32094,http://www.direct.gov.uk/en/SiteInformation/DG_196009,1 32095,http://www.inversolenergy.co.uk,1 32096,http://www.investigationservices.co.uk,1 32097,http://www.direct.gov.uk/en/RSSLibrary/index.htm,1 32098,http://www.investinme.org,1 32099,http://angliai-munka.fw.hu,1 32100,http://www.investmentfile.com,1 32101,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Working/OpportunitiesInRetirement/index.htm,1 32102,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Working/OpportunitiesInRetirement/DG_10026803,1 32103,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Working/LosingYourJob/index.htm,1 32104,http://www.investmentuk.org,1 32105,http://www.investoo.co.uk,1 32106,http://www.investorschronicle.co.uk,1 32107,http://www.invo.org.uk,1 32108,http://www.direct.gov.uk/en/Pensionsandretirementplanning/TaxandNationalInsuranceinretirement/Howyourpensionincomeistaxed/DG_171913,1 32109,http://www.inyourloss.com,1 32110,http://www.direct.gov.uk/en/Pensionsandretirementplanning/TaxandNationalInsuranceinretirement/GettingyourtaxandNationalInsuranceright/DG_180972,1 32111,http://www.io-magazine.com,1 32112,http://www.iodigital.co.uk,1 32113,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/StatePensionforecast/index.htm,1 32114,http://www.ipassdriver.com,1 32115,http://www.ipassu.co.uk,1 32116,http://www.ipetitions.com,1 32117,http://www.ipit-update.com,1 32118,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_190048,1 32119,http://www.ipswichdrivingschool.com,1 32120,http://www.iq-portal.co.uk:60000,1 32121,http://www.irational.org,1 32122,http://www97.intel.com,1 32123,http://www.irazoo.com,1 32124,http://www.irishalien.com,1 32125,http://www.irishosted.org,1 32126,http://www.irthlingborough-jun.northants.sch.uk,1 32127,http://www.is.stir.ac.uk,1 32128,http://www.isbgfh.org,1 32129,http://www.direct.gov.uk/en/pensionsandretirementplanning/statepension/DG_10026714,1 32130,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/DG_10026714,1 32131,http://www.iscamp.co.uk,1 32132,http://www.ischools.org.uk,1 32133,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/Basicstatepension/index.htm,1 32134,http://www.isfaq.com,1 32135,http://www.direct.gov.uk/en/Pensionsandretirementplanning/StatePension/Basicstatepension/DG_172318,1 32136,http://www.islambosna.ba,1 32137,http://www.islayinfo.com,1 32138,http://wwwcache3.lancs.ac.uk,1 32139,http://www.isledrive.co.uk,1 32140,http://www.islingtonlaw.org.uk,1 32141,http://www.ison21.es,1 32142,http://www.isotb.toucansurf.com,1 32143,http://anglais.ac-rouen.fr,1 32144,http://www.issuu.com,1 32145,http://www.isv1.com,1 32146,http://www.iswp.co.uk,1 32147,http://www.italianialondra.com,1 32148,http://www.italymag.co.uk,1 32149,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Over50HealthAndWellBeing/index.htm,1 32150,http://www.itgen.co.uk,1 32151,http://andys-driving-school.co.uk,1 32152,http://www.direct.gov.uk/en/Pensionsandretirementplanning/HomeAndCommunity/StayingInYourHome/DG_10027572,1 32153,http://www.itlondres.com,1 32154,http://www.direct.gov.uk/en/Pensionsandretirementplanning/DG_183780,1 32155,http://www.direct.gov.uk/en/Pensionsandretirementplanning/DG_183754,1 32156,http://www.direct.gov.uk/en/Pensionsandretirementplanning/DG_183723,1 32157,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/Startingacompanyorpersonalpension/DG_10026927,1 32158,http://www.itsasellout.com,1 32159,http://www.itsconnection.com,1 32160,http://www.itsg.u-net.com,1 32161,http://www.itsgoodtotalk.org.uk,1 32162,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/DG_183783,1 32163,http://www.itsnotrocketscience.com,1 32164,http://www.itspc.co.uk,1 32165,http://www.direct.gov.uk/en/Pensionsandretirementplanning/Companyandpersonalpensions/CompanyPensions/DG_179486,1 32166,http://andyholden.theorytestpro.co.uk,1 32167,http://www.itzcaribbean.com,1 32168,http://www.ivepassed.co.uk,1 32169,http://www.ivorygas.com,1 32170,http://www.ivybridge.devon.sch.uk,1 32171,http://www.iwayafrica.co.zw,1 32172,http://www.iwcollege.ac.uk,1 32173,http://www.iwcp.co.uk,1 32174,http://www.iwdrivinginstructors.co.uk,1 32175,http://www.iwonasrecruitment.com,1 32176,http://www.iworkveryhard.com,1 32177,http://www.iwsightconcern.org.uk,1 32178,http://www.iyss.org.uk,1 32179,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Yourchildssafetyinthehome/DG_078862,1 32180,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Yourchildssafetyinthehome/DG_078853,1 32181,http://www.iyssportsmouth.info,1 32182,http://www.izvoznookno.si,1 32183,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Youngpeopleandalcohol/DG_183848,1 32184,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Youngpeopleandalcohol/DG_183839,1 32185,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/WorriedAbout/index.htm,1 32186,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/WorriedAbout/DG_10026450,1 32187,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/WorriedAbout/DG_10015788,1 32188,http://www.jackiequinn.co.uk,1 32189,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/WorriedAbout/DG_10015782,1 32190,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Roadandtravelsafety/DG_4008686,1 32191,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Roadandtravelsafety/DG_4003009,1 32192,http://www.jackpetcheyfoundation.org.uk,1 32193,http://www.direct.gov.uk/en/Parents/Yourchildshealthandsafety/Internetsafety/DG_071136,1 32194,http://www.jacksondrivertraining.co.uk,1 32195,http://www.jacksons-law.com,1 32196,http://www.jacobs-solicitors.com,1 32197,http://www.jamesalpe.co.uk,1 32198,http://www.jamesanduzzell.com,1 32199,http://www.jamesdrivertraining.com,1 32200,http://www.jamesmorrismp.com,1 32201,http://www.jamesons.co.uk,1 32202,http://www.jamessom.co.uk,1 32203,http://www.jamieandrewsom.com,1 32204,http://www.jandtproperty.co.uk,1 32205,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SchoolLife/DG_179512,1 32206,http://www.janehudsondrivertuition.co.uk,1 32207,http://www.janetanscombe.com,1 32208,http://www.janewilliams.com,1 32209,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/SchoolLife/DG_064441,1 32210,http://www.jantec-services.co.uk,1 32211,http://www.janwildingyoga.com,1 32212,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/Optionsafterschool/DG_073246,1 32213,http://10.18.0.77,1 32214,http://www.japanintercultural.com,1 32215,http://www.japanspecialist.co.uk,1 32216,http://www.jasonbellschoolofmotoring.com,1 32217,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/HelpingYourChildToLearn/DG_4015467,1 32218,http://www.direct.gov.uk/en/Parents/Schoolslearninganddevelopment/HelpingYourChildToLearn/DG_10013557,1 32219,http://www.jata-net.or.jp,1 32220,http://www.jax-drivingschool.co.uk,1 32221,http://www.jayrashbrooke.co.uk,1 32222,http://www.jbaoc.org.uk,1 32223,http://www.jbinstructors.co.uk,1 32224,http://www.jcbacademy.com,1 32225,http://www.jcbwebsites.co.uk,1 32226,http://www.jcci.org.uk,1 32227,http://www.jcdt.co.uk,1 32228,http://www.jchriswilliamsschoolofmotoring.co.uk,1 32229,http://www.jcmotorcycles.co.uk,1 32230,http://www.jcmotorengineers.co.uk,1 32231,http://www.jddrivingschool.co.uk,1 32232,http://www.jdipracovat.cz,1 32233,http://www.direct.gov.uk/en/Parents/Preschooldevelopmentandlearning/HelpingYourChildToLearn/DG_4016074,1 32234,http://www.jeanpaulleblanc.com,1 32235,http://www.jebelgroup.com,1 32236,http://www.jeepjunkies.co.uk,1 32237,http://www.jeffries.moveitnetwork.com,1 32238,http://www.jellybeans-preschool.org.uk,1 32239,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/YourMoney/DG_067577,1 32240,http://www.jembookkeeping.com,1 32241,http://www.jemjabella.co.uk,1 32242,http://www.jemotors.co.uk,1 32243,http://www.jemsaccountancy.co.uk,1 32244,http://www.jemsbookkeepingandaccountancy.com,1 32245,http://www.jemstoneschoolofmotoring.co.uk,1 32246,http://www.jemuk.co.uk,1 32247,http://www.jennings-mazda.co.uk,1 32248,http://www.jenningsopticians.co.uk,1 32249,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Parentalleaveandflexibleworking/DG_187248,1 32250,http://www.jennylousdrivingschool.co.uk,1 32251,http://www.jerryfoley.com,1 32252,http://www.jerseycourts.je,1 32253,http://www.direct.gov.uk/en/Parents/Moneyandworkentitlements/WorkAndFamilies/Adoptionrightsintheworkplace/DG_190875,1 32254,http://www.jerseylaw.je,1 32255,http://www.jesus.ox.ac.uk,1 32256,http://www.jetprogramme.org,1 32257,http://www.direct.gov.uk/en/Parents/Lookingafterchildrenifyoudivorceorseparate/Lookingafterchildrenifyourrelationshipends/DG_192873,1 32258,http://www.direct.gov.uk/en/Parents/Lookingafterchildrenifyoudivorceorseparate/Lookingafterchildrenifyourrelationshipends/DG_192848,1 32259,http://www.jetro.go.jp,1 32260,http://www.jeuxvideo.com,1 32261,http://www.direct.gov.uk/en/Parents/Lookingafterchildrenifyoudivorceorseparate/Childrendivorceseparationandcourts/DG_4002959,1 32262,http://www.direct.gov.uk/en/Parents/Lookingafterchildrenifyoudivorceorseparate/Childrendivorceseparationandcourts/DG_192879,1 32263,http://www.direct.gov.uk/en/Parents/Lookingafterchildrenifyoudivorceorseparate/Childrendivorceseparationandcourts/,1 32264,http://www.jevic.com,1 32265,http://www.direct.gov.uk/en/Parents/Familyleisureandrecreation/index.htm,1 32266,http://www.direct.gov.uk/en/Parents/Familyleisureandrecreation/DG_178066,1 32267,http://www.direct.gov.uk/en/Parents/Familyleisureandrecreation/DG_172801,1 32268,http://www.direct.gov.uk/en/Parents/DG_90,1 32269,http://wwwdev.bris.ac.uk,1 32270,http://www.jewellerybyjules.co.uk,1 32271,http://andrewdixondrivingschool.co.uk,1 32272,http://www.jewelleryenchantments.co.uk,1 32273,http://www.jewelsplus.co.uk,1 32274,http://www.jewishbuys.com,1 32275,http://www.jfdrivingschoolyeovil.co.uk,1 32276,http://www.jfk.herts.sch.uk,1 32277,http://www.direct.gov.uk/en/Parents/ChildMaintenance/IfyourealreadyusingtheChildSupportAgency/DG_199067,1 32278,http://www.jiangnan-pm.com,1 32279,http://www.jigsawdrivinglessons.com,1 32280,http://www.jigsawww.net,1 32281,http://www.jillcooper.co.uk,1 32282,http://www.jimbakersonlinelearning.co.uk,1 32283,http://www.jj-solutions.com,1 32284,http://www.jjdohertyschoolofmotoring.com,1 32285,http://www.jlesgroup.com,1 32286,http://www.direct.gov.uk/en/Parents/Childcare/DG_071219,1 32287,http://andreasom.theorytestpro.co.uk,1 32288,http://www.jmlproperty.co.uk,1 32289,http://www.jmw.co.uk,1 32290,http://www.jnrspace.info,1 32291,http://www.joansdrivingschool.co.uk,1 32292,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/ChildrenInCare/index.htm,1 32293,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/ChildrenInCare/DG_4003058,1 32294,http://www.jobcentreplus.com.,1 32295,http://www.jobfreebies.co.uk,1 32296,http://www.direct.gov.uk/en/Parents/Adoptionfosteringandchildrenincare/AdoptionAndFostering/DG_10021336,1 32297,http://www.direct.gov.uk/en/Parents/%20Schoolslearninganddevelopment%20/HelpingYourChildToLearn/DG_4016596,1 32298,http://www.jobfresh.co.uk,1 32299,http://www.direct.gov.uk/en/Nl1/Newsroom/SpendingReview/DG_191764,1 32300,http://www.direct.gov.uk/en/Nl1/Newsroom/SpendingReview/DG_191762,1 32301,http://www.jobinscotland.com,1 32302,http://www.direct.gov.uk/en/Nl1/Newsroom/Pre-BudgetReport2008/index.htm,1 32303,http://www.jobjourney.co.uk,1 32304,http://www.jobs1.co.uk,1 32305,http://www.jobs4you2.org.uk,1 32306,http://www.jobsandskills.gov.uk,1 32307,http://www.jobsatsouthwark.co.uk,1 32308,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_199708,1 32309,http://www.jobsfor16yearolds.co.uk,1 32310,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_199568,1 32311,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_199564,1 32312,http://andreaholland.co.uk,1 32313,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_199498,1 32314,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_199450,1 32315,http://www.jodrellbank.manchester.ac.uk,1 32316,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_199046,1 32317,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_198958,1 32318,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_198494,1 32319,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_198187,1 32320,http://andra.web.id,1 32321,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_197976,1 32322,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_197827,1 32323,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_197785,1 32324,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_197754,1 32325,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_197740,1 32326,http://www.joemcgrorydrivertraining.co.uk,1 32327,http://www.joes-bristol.co.uk,1 32328,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_196756,1 32329,http://ande.isma.lv,1 32330,http://www.john-clark.co.uk,1 32331,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_196400,1 32332,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_195659,1 32333,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_195179,1 32334,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_194891,1 32335,http://www.johnandersonbusinessservices.com,1 32336,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_194444,1 32337,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_194348,1 32338,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_193802,1 32339,http://www.johnboylesolicitors.com,1 32340,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_193603,1 32341,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_193548,1 32342,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_193356,1 32343,http://wwwdev.bristol.ac.uk,1 32344,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_193137,1 32345,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_192663,1 32346,http://www.johncleishamdrivertraining.co.uk,1 32347,http://www.johncliftdrivingschool.com,1 32348,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_191679,1 32349,http://www.johnexley.com,1 32350,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_191306,1 32351,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_191125,1 32352,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_190793,1 32353,http://ancientbritonpetros.blogspot.com,1 32354,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_190456,1 32355,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_190311,1 32356,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_189997,1 32357,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_189908,1 32358,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_189525,1 32359,http://www.johng-adi.com,1 32360,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_188464,1 32361,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_187877,1 32362,http://www.johniddon.co.uk,1 32363,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_184160,1 32364,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_183655,1 32365,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_183622,1 32366,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_183266,1 32367,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_183113,1 32368,http://ancestralwales.com,1 32369,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_181004,1 32370,http://www.johnmacs.co.uk,1 32371,http://www.johnmason.oxon.sch.uk,1 32372,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_179432,1 32373,http://www.johnmenziespensions.com,1 32374,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_179070,1 32375,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_177777,1 32376,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_177747,1 32377,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_177440,1 32378,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_177413,1 32379,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_177032,1 32380,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_176738,1 32381,http://anaeoilangreo.blogspot.com,1 32382,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_175095,1 32383,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_174618,1 32384,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_172936,1 32385,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_170745,1 32386,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_10027800,1 32387,http://www.direct.gov.uk/en/Nl1/Newsroom/DG_064160,1 32388,http://www.direct.gov.uk/en/Nl1/Newsroom/ChristmasHolidays/DG_071752,1 32389,http://www.johnmillmandrivingschool.co.uk,1 32390,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget2008/index.htm,1 32391,http://www.johnmorrisarchitects.co.uk,1 32392,http://www.johnnyauld.co.uk,1 32393,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2011/DG_WP195612,1 32394,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2011/DG_WP195492,1 32395,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2011/DG_WP195490,1 32396,http://anactor.net,1 32397,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2011/DG_WP195275,1 32398,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2010/DG_188507,1 32399,http://www.johnsdrivingschool.co.uk,1 32400,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2010/DG_186644,1 32401,http://www.direct.gov.uk/en/Nl1/Newsroom/Budget/Budget2010/DG_186637,1 32402,http://www.johnsonsdrivingschool.co.uk,1 32403,http://www.johnsontidsall.co.uk,1 32404,http://www.direct.gov.uk/en/Nl1/Newsroom/Broadcasts/DG_4010354,1 32405,http://amyline.easysearch.org.uk,1 32406,http://www.johnstreetsurgery.co.uk,1 32407,http://www.johntinsleydrivingschool.co.uk,1 32408,http://www.johnyeodt.co.uk,1 32409,http://www.joke.co.uk,1 32410,http://www.jolewisdrivingschool.co.uk,1 32411,http://www.jones-ea.co.uk,1 32412,http://www.jonesdrivingschool.co.uk,1 32413,http://www.joneshunt.co.uk,1 32414,http://www.joptimiz.com,1 32415,http://www.jordans-solicitors-birmingham.co.uk,1 32416,http://www.jordanssolicitors.co.uk,1 32417,http://www.journalism.co.uk,1 32418,http://www.journoworld.co.uk,1 32419,http://www.jpaget.nhs.uk,1 32420,http://www.jrdrivingtuition.co.uk,1 32421,http://www.jsautos.co.uk,1 32422,http://www.jsmedicalpractice.com,1 32423,http://www.jst.org.uk,1 32424,http://www.jsuk.org,1 32425,http://www.jtfaccountants.co.uk,1 32426,http://www.judgeelectrical.co.uk,1 32427,http://www.judyofthewoods.net,1 32428,http://www.judyrudd.co.uk,1 32429,http://www.julertooke.co.uk,1 32430,http://www.juliafrimond.co.uk,1 32431,http://www.juliatolsonfamilysolicitor.co.uk,1 32432,http://www.jumperooreview.com,1 32433,http://www.juniormagazine.co.uk,1 32434,http://www.jussportalen.no,1 32435,http://www.just-recycling.com,1 32436,http://www.justaskgemalto.com,1 32437,http://www.justdrivesafely.co.uk,1 32438,http://www.justice.gov.tr,1 32439,http://www.justice.gov.uk.,1 32440,http://www.justice.org.uk,1 32441,http://www.justlanded.fr,1 32442,http://www.justlanded.jp,1 32443,http://www.direct.gov.uk/en/Motoring/OwningAVehicle/AdviceOnKeepingYourVehicle/DG_180097,1 32444,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/index.htm,1 32445,http://www.justlawlinks.com,1 32446,http://www.justmot.co.uk,1 32447,http://www.justuppingsticks.com,1 32448,http://www.k-int.com,1 32449,http://www.k10.dk,1 32450,http://www.k2conservatories.co.uk,1 32451,http://www.k2drivingschool.co.uk,1 32452,http://www.k9safesearch.com,1 32453,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyC/DG_10035604,1 32454,http://www.kaixin001.com,1 32455,http://www.kalamsolicitors.co.uk,1 32456,http://www.kam-servicing-belper.co.uk,1 32457,http://www.kam-servicing-longeaton.co.uk,1 32458,http://www.direct.gov.uk/en/Motoring/Motoringtransactions/BeforeyouapplyB/DG_191754,1 32459,http://www.kameldrivingschool.co.uk,1 32460,http://www.kangaroomigration.co.il,1 32461,http://www.kaoban.org,1 32462,http://www.kapak.co.uk,1 32463,http://www.karnheathltd.com,1 32464,http://www.karracing.com,1 32465,http://www.karuna-institute.co.uk,1 32466,http://www.katesdrivingschool.co.uk,1 32467,http://www.kats-eyes.co.uk,1 32468,http://ampfieldcofeprimary.co.uk,1 32469,http://www.kaunoaleja.lt,1 32470,http://www.kbmd.co.uk,1 32471,http://www.kbsa.org.uk,1 32472,http://www.kccns.org.uk,1 32473,http://www.kcebp.co.uk,1 32474,http://www.kdjones.co.uk,1 32475,http://www.keap.org.uk,1 32476,http://ampetronic.com,1 32477,http://www.keepproperties.co.uk,1 32478,http://www.keithfaulds.co.uk,1 32479,http://www.keithwarnerdrivingschool.co.uk,1 32480,http://ampatico.com,1 32481,http://wwwin.cisco.com,1 32482,http://www.kelliesdrivingschool.co.uk,1 32483,http://www.kellysdrivingschoolwokingham.co.uk,1 32484,http://www.kelvinjwebb-cambridgeplumbers.co.uk,1 32485,http://www.kendalnurseryschoolbrantfield.co.uk,1 32486,http://www.kenleydrivingschool.co.uk,1 32487,http://www.kennowaygp.co.uk,1 32488,http://www.kensingtonsupport.com,1 32489,http://www.kent1stcare.co.uk,1 32490,http://www.direct.gov.uk/en/Motoring/index.htm/___possible__unsafe__site__,1 32491,http://www.kentaylor.co.uk,1 32492,http://www.kentholistichealth.co.uk,1 32493,http://www.kentlibraryshop.co.uk,1 32494,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/Tractororspecialistvehicles/DG_182843,1 32495,http://www.kentmedwaycancerguide.nhs.uk,1 32496,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/Drivingtestsforlorriesbusesandcoaches/DG_4022527,1 32497,http://www.kentonline.co.uk,1 32498,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/Drivinglorriesbusesandcoaches/DG_4022549,1 32499,http://www.kentsavers.co.uk,1 32500,http://amnestyresearch.org,1 32501,http://www.kentsussexbikers.com,1 32502,http://www.keoghonline.com,1 32503,http://www.kerrbaillie.co.uk,1 32504,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/DG_186131,1 32505,http://www.direct.gov.uk/en/Motoring/Drivingforaliving/DG_182842,1 32506,http://wwws.caerdydd.ac.uk,1 32507,http://www.kerrystainsby.co.uk,1 32508,http://www.keshani.com,1 32509,http://www.kessdrivingschool.co.uk,1 32510,http://www.ketteringmotoristcentre.co.uk,1 32511,http://www.kettlefields.cambs.sch.uk,1 32512,http://www.kettonpc.org.uk,1 32513,http://www.kevinbarronmp.com,1 32514,http://www.keyboardr.com,1 32515,http://www.keystothepast.info,1 32516,http://www.kickitout.org,1 32517,http://www.kidskingdomcroydon.co.uk,1 32518,http://www.kierowca.co.uk,1 32519,http://www.kilworthhouse.co.uk,1 32520,http://www.kimsschoolofmotoring.co.uk,1 32521,http://www.kinesiologyuk.com,1 32522,http://www.kingjohn.northants.sch.uk,1 32523,http://www.kings-grove.cheshire.sch.uk,1 32524,http://www.kings-motors.co.uk,1 32525,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185878,1 32526,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185877,1 32527,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185787,1 32528,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185784,1 32529,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185769,1 32530,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185758,1 32531,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185716,1 32532,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185689,1 32533,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185630,1 32534,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185615,1 32535,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185604,1 32536,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185593,1 32537,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185587,1 32538,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185581,1 32539,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185444,1 32540,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185424,1 32541,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185411,1 32542,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185381,1 32543,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185380,1 32544,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185244,1 32545,http://www.direct.gov.uk/en/Motoring/DriverLicensing/MedicalRulesForDrivers/MedicalA-Z/DG_185241,1 32546,http://www.kingsley.worcs.sch.uk,1 32547,http://www.kingsleychildcare.co.uk,1 32548,http://www.kingsleynapley.co.uk,1 32549,http://www.kingsnortoncoaches.co.uk,1 32550,http://www.kingsnortonnurseryschool.org.uk,1 32551,http://www.kingstonpk.newcastle.sch.uk,1 32552,http://www.kingstonschoolofmotoring.co.uk,1 32553,http://www.kingsway.stockport.sch.uk,1 32554,http://www.kingswaydriving.co.uk,1 32555,http://www.kinhelp.co.uk,1 32556,http://www.kipmcgrath-se27.co.uk,1 32557,http://www.kipmcgratheducation.co.uk,1 32558,http://www.kirbyhillschool.ik.org,1 32559,http://www.kirbzz.co.uk,1 32560,http://www.kirosdrivingschool.com,1 32561,http://www.kis-unipart.co.uk,1 32562,http://www.direct.gov.uk/en/Motoring/DriverLicensing/CaravansTrailersCommercialVehicles/DG_10013074,1 32563,http://www.kishtpc.com,1 32564,http://www.kissimmee-us192.com,1 32565,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/RegisteringAVehicle/Registeringakitcarrebuildorradicallyalteredvehicle/index.htm,1 32566,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/RegisteringAVehicle/Registeringakitcarrebuildorradicallyalteredvehicle/DG_191069,1 32567,http://www.kitchenerprimaryschool.com,1 32568,http://www.kiteleys.co.uk,1 32569,http://www.kjandp.co.uk,1 32570,http://www.klase.lt,1 32571,http://www.klcschool.com,1 32572,http://www.klimowicz-online.co.uk,1 32573,http://www.kmpt.nhs.uk,1 32574,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/ImportingAndExportingAVehicle/DG_197428,1 32575,http://www.knightslowe.co.uk,1 32576,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/ImportingAndExportingAVehicle/DG_10018282,1 32577,http://wwwstage.richmond.gov.uk,1 32578,http://www.direct.gov.uk/en/Motoring/BuyingAndSellingAVehicle/DG_4022402,1 32579,http://www.knowinnofees.co.uk,1 32580,http://www.knowledge.scot.nhs.uk,1 32581,http://www.knowledgenetwork.gsi.gov.uk,1 32582,http://www.knowsley.childrencentres.org,1 32583,http://www.knowsley.nhs.uk,1 32584,http://www.knowuk.co.uk,1 32585,http://wwww.draugiem.lv,1 32586,http://www.knowuk.com,1 32587,http://www.kobietawuk.info,1 32588,http://www.kongregate.com,1 32589,http://www.konsumentuk.com,1 32590,http://www.kooperation-international.de,1 32591,http://www.kosmee.or.kr,1 32592,http://www.kosoeurope.com,1 32593,http://www.kowessex.co.uk,1 32594,http://www.kpins-harrow.org.uk,1 32595,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/Trusts/TrustsandInheritanceTax/DG_191850,1 32596,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/Trusts/TrustsandInheritanceTax/DG_191842,1 32597,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/Trusts/TrustsandInheritanceTax/DG_191840,1 32598,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/Trusts/TrustsandIncomeTax/index.htm,1 32599,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/Trusts/TrustsandIncomeTax/DG_191812,1 32600,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/Trusts/TrustsandCapitalGainsTax/index.htm,1 32601,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/Trusts/Trusteetaxobligations/index.htm,1 32602,http://www.kpmfinancialservices.co.uk,1 32603,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/Trusts/DG_191855,1 32604,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/Trusts/CompletingtheTrustandEstateTaxReturn/DG_191803,1 32605,http://www.krisdika.go.th,1 32606,http://www.krishnaschoolofmotoring.co.uk,1 32607,http://www.ksmdrivingschool.com,1 32608,http://www.kulfoldimagyarok.com,1 32609,http://www.kuoni.co.uk,1 32610,http://www.kuvouchers.co.uk,1 32611,http://www.kvv.se,1 32612,http://www.kw4ed.org,1 32613,http://www.kwikpass.com,1 32614,http://www.kwikpassdrivingschool.co.uk,1 32615,http://www.kwonline.co.uk,1 32616,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/Understandingyourtaxbillandhowtopay/index.htm,1 32617,http://americanradioworks.publicradio.org,1 32618,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/Taxreturndeadlinescheckspenaltiesandappeals/DG_193205,1 32619,http://www.l12drivinglessons.co.uk,1 32620,http://www.l2p-ackerley.co.uk,1 32621,http://www.l4alettings.co.uk,1 32622,http://americaninbritain.com,1 32623,http://www.l6fc.org,1 32624,http://www.l8ms.co.uk,1 32625,http://www.l8ms.net,1 32626,http://www.l8r-online.co.uk,1 32627,http://www.la-murta.eu,1 32628,http://www.labour.org.uk,1 32629,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/LeavingOrComingIntoTheUK/DG_181171,1 32630,http://www.labourlist.org,1 32631,http://www.labourplus.com,1 32632,http://www.labourproviders.org.uk,1 32633,http://www.labouruniondigest.org.uk,1 32634,http://www.lacors.gov.uk,1 32635,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/ContactOrDealWithHMRC/DG_10014986,1 32636,http://www.ladrivinglessons.com,1 32637,http://www.ladrivingschool.co.uk,1 32638,http://www.ladslads.com,1 32639,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/VAT/DG_190905,1 32640,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/VAT/DG_190901,1 32641,http://www.ladybirddaynurseryfenstanton.co.uk,1 32642,http://www.ladybridgedrivingschool.co.uk,1 32643,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/Voluntarycontributionsandtoppingup/DG_190069,1 32644,http://www.ladylearners.co.uk,1 32645,http://www.ladymanners.derbyshire.sch.uk,1 32646,http://www.ladyroyd.co.uk,1 32647,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/PayingreducedrateNationalInsurance/DG_190116,1 32648,http://www.lafargeukpensions.com,1 32649,http://www.lafemmedrivingschool.co.uk,1 32650,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/NationalInsurance/IntroductiontoNationalInsurance/DG_190059,1 32651,http://www.lakedistrict.gov.uk,1 32652,http://www.lambethfirst.org.uk,1 32653,http://www.lambethmind.org.uk,1 32654,http://www.lambfoot.co.uk,1 32655,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/InheritanceTaxwhenpassingonmoneyorproperty/index.htm,1 32656,http://www.lanarkshiredrivingschools.com,1 32657,http://www.lancashire.police.uk,1 32658,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/Howtovaluetheestateofsomeonewhohasdied/DG_187446,1 32659,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/InheritanceTaxEstatesAndTrusts/FormsforprobateandInheritanceTax/DG_187490,1 32660,http://www.lancashireinstallationsltd.com,1 32661,http://www.lancashirelearners.co.uk,1 32662,http://www.lancashiretelegraph.co.uk,1 32663,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxrefundsreclaimingtax/DG_170697,1 32664,http://www.lancaster.gov.uk:80,1 32665,http://www.lancasterandthorpe.co.uk,1 32666,http://ambrinoc.wordpress.com,1 32667,http://www.lanciasport.com,1 32668,http://www.lancswt.org.uk,1 32669,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxcodes/DG_078546,1 32670,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxcodes/DG_078426,1 32671,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxcodes/DG_078418,1 32672,http://www.landings.com,1 32673,http://www.landlord-insurance-for-landlords-building-blog.co.uk,1 32674,http://www.landlordinformationnetwork.co.uk,1 32675,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxallowancesandreliefs/DG_078786,1 32676,http://www.landlordlawblog.co.uk,1 32677,http://www.landregistrydirect.gov.uk,1 32678,http://www.landscapejuicenetwork.com,1 32679,http://www.lane-som.co.uk,1 32680,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxallowancesandreliefs/DG_078319,1 32681,http://www.laneendmedicalgroup.co.uk,1 32682,http://www.lang-bennetts.co.uk,1 32683,http://www.langdonhillsmedicalcentre.nhs.uk,1 32684,http://www.languagematters.co.uk,1 32685,http://www.lansinoh.co.uk,1 32686,http://www.lanternlane.notts.sch.uk,1 32687,http://www.lanternsurgery.co.uk,1 32688,http://amberleyps.easysearch.org.uk,1 32689,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCreditsAndChildBenefit/index.htm,1 32690,http://www.lantra.co.uk,1 32691,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/peoplewhohelpothers/Getauthoritytoactforsomeoneelse/DG_172940,1 32692,http://www.larevenue.org,1 32693,http://www.largesexygirls.com,1 32694,http://www.larkspeed.com,1 32695,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/payments/DG_175664,1 32696,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/payments/DG_175634,1 32697,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/otherbenefits/DG_172863,1 32698,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/otherbenefits/DG_172855,1 32699,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/otherbenefits/affectofbenefitsontaxcredits/DG_172873,1 32700,http://www.lasereyeforum.com,1 32701,http://www.lasg-forum.co.uk,1 32702,http://www.lasgarage.co.uk,1 32703,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Renewingtaxcreditsclaim/DG_173318,1 32704,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Renewingtaxcreditsclaim/DG_173316,1 32705,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/index.htm,1 32706,http://www.lastingpost.com,1 32707,http://www.latvuks.co.uk,1 32708,http://amberleydrivingschool.net76.net,1 32709,http://www.laughinghens.com,1 32710,http://www.lauraspedro.blogspot.com,1 32711,http://www.laurencekirkhealthcarecentre.co.uk,1 32712,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Changesthataffectyourtaxcredits/Changesatwork/index.htm,1 32713,http://www.laverydrivingschool.com,1 32714,http://www.law-lib.utoronto.ca,1 32715,http://amberhomecarers.com,1 32716,http://www.law.co.il,1 32717,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Ifthingsgowrong/Overpayments/index.htm,1 32718,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Ifthingsgowrong/Overpayments/DG_173371,1 32719,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Ifthingsgowrong/Overpayments/DG_173326,1 32720,http://www.law.ed.ac.uk,1 32721,http://wx1.getthere.net,1 32722,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Ifthingsgowrong/Complaintsappealspenaltieschecks/DG_173437,1 32723,http://www.lawborepro.net,1 32724,http://www.lawforconsumers.co.uk,1 32725,http://www.lawnb.com,1 32726,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/NewarrivalstotheUK/DG_174920,1 32727,http://www.lawonlines.com,1 32728,http://www.lawresearch.com,1 32729,http://www.lawresearchservices.com,1 32730,http://www.lawshopbristol.co.uk,1 32731,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/Childrenandtaxcredits/,1 32732,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/workoutincomeandworkinghours/DG_174179,1 32733,http://www.lawtel.com,1 32734,http://www.lawthorndrivingschool.com,1 32735,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/start/DG_195805,1 32736,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/start/DG_175653,1 32737,http://www.lawworksclinics.org.uk,1 32738,http://www.lawyer-reviews.co.uk,1 32739,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/Mistakesonyourclaim/DG_172900,1 32740,http://www.laxdrivingschool.com,1 32741,http://amber-drive.com,1 32742,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/Backdatingorclaimahead/index.htm,1 32743,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/Backdatingorclaimahead/DG_172934,1 32744,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/Claimingtaxcredits/Backdatingorclaimahead/DG_172932,1 32745,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/TaxCredits/DG_194921,1 32746,http://www.lbfire.org.uk,1 32747,http://www.lbp.org.uk,1 32748,http://www.lbp.police.uk,1 32749,http://www.lc.leics.sch.uk,1 32750,http://www.lcarter-school-of-motoring.co.uk,1 32751,http://www.lccs.org.uk,1 32752,http://www.direct.gov.uk/en/moneytaxandbenefits/taxcredits/DG_073803,1 32753,http://www.lcil.org.uk,1 32754,http://www.lcon.org.uk,1 32755,http://www.lcpackaging.com,1 32756,http://www.lcr.nhs.uk,1 32757,http://amarjass.co.uk,1 32758,http://www.ldcforum.co.uk,1 32759,http://www.ldelissa.bham.sch.uk,1 32760,http://www.ldrivingschool.com,1 32761,http://www.ldv-sherpa.co.uk,1 32762,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/PlanningYourPersonalFinances/DG_10013390,1 32763,http://www.ldwa.org.uk,1 32764,http://www.leaderdrivertraining.co.uk,1 32765,http://www.leadershiplearning.org.uk,1 32766,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/KeepingYourMoneySecure/DG_10035809,1 32767,http://alzheimerssocietyteessidebranch.easysearch.org.uk,1 32768,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/Insurance/DG_10034596,1 32769,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/Insurance/DG_10034578,1 32770,http://www.leadhpt.co.uk,1 32771,http://www.leadingbyexample.org.uk,1 32772,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/GivingMoneyToCharity/DG_188051,1 32773,http://www.leaflets2u.co.uk,1 32774,http://www.league.org.uk,1 32775,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/FinancialProblemsAndComplaints/index.htm,1 32776,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/FinancialProblemsAndComplaints/DG_10035579,1 32777,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingMoney/FinancialProblemsAndComplaints/DG_10035570,1 32778,http://www.leap.ac.uk,1 32779,http://www.leapfrogskidsclub.co.uk,1 32780,http://wy-cbtsvr1:8080,1 32781,http://www.leapsandboundstruro.co.uk,1 32782,http://www.learn-2-drive.org.uk,1 32783,http://www.learn-ict.org.uk,1 32784,http://alwayslearninggateway.pearson.com,1 32785,http://alvinhall.com,1 32786,http://www.learn-with-daniel.co.uk,1 32787,http://www.learn2drive-rochdale.co.uk,1 32788,http://www.learn2drive-with-john.co.uk,1 32789,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/PlanYourWayOutOfDebt/DG_10023289,1 32790,http://www.learn2drivebrighton.co.uk,1 32791,http://www.learn2driveinbasingstoke.co.uk,1 32792,http://www.learn2driveni.com,1 32793,http://www.learn2teach.net,1 32794,http://www.learner-ni.com,1 32795,http://www.learnerdrivers.net,1 32796,http://www.learnerone.co.uk,1 32797,http://www.learnersuccess.com,1 32798,http://www.learnertalk.co.uk,1 32799,http://www.learninamini.moonfruit.com,1 32800,http://www.learning-to-drive.co.uk,1 32801,http://www.learningdisabilitywales.org.uk,1 32802,http://www.learningenglish.com,1 32803,http://www.learningeye.net,1 32804,http://www.learninginstitute.co.uk,1 32805,http://www.learningschoolstrust.org,1 32806,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Debtrepaymentoptions/index.htm,1 32807,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Debtrepaymentoptions/DG_187449,1 32808,http://alunbuffry.blogspot.com,1 32809,http://www.learninherbie.com,1 32810,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Debtrepaymentoptions/DG_10023163,1 32811,http://www.learnshetland.com,1 32812,http://www.learntodrive.me.uk,1 32813,http://www.learntodrivebirmingham.co.uk,1 32814,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/CourtClaimsAndBankruptcy/DG_187326,1 32815,http://www.learntodrivehull.co.uk,1 32816,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Bankruptcy/DG_187419,1 32817,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Bankruptcy/DG_187414,1 32818,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Bankruptcy/DG_187413,1 32819,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ManagingDebt/Bankruptcy/DG_187385,1 32820,http://www.learnwithallied.co.uk,1 32821,http://www.learnwithjen.co.uk,1 32822,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/ChildTrustFund/WhentheChildTrustFundisupandrunning/index.htm,1 32823,http://www.learnwithkarl-stoke.co.uk,1 32824,http://www.learnwithlancaster.co.uk,1 32825,http://www.learnwithlawley.co.uk,1 32826,http://alphabetcity.rttest.co.uk,1 32827,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Paymentsandentitlements/ChildBenefitpayment/DG_173709,1 32828,http://www.learnwithshiningstars.co.uk,1 32829,http://wyedrive.theorytestpro.co.uk,1 32830,http://www.leavalleyhomes.co.uk,1 32831,http://www.leaversdrivingtuition.co.uk,1 32832,http://www.lecturematerials.co.uk,1 32833,http://www.leebootschoolofmotoring.co.uk,1 32834,http://www.leechapel.essex.sch.uk,1 32835,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Ifthingsgowrong/Wheretostart/index.htm,1 32836,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Ifthingsgowrong/Complaintsandappeals/index.htm,1 32837,http://www.leedsdriving.co.uk,1 32838,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ClaimingChildBenefit/DG_173552,1 32839,http://www.leedsmetsu.co.uk,1 32840,http://www.leedspalliativecare.co.uk,1 32841,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ChildBenefitandwhoqualifies/DG_173452,1 32842,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ChildBenefitandwhoqualifies/DG_173451,1 32843,http://www.leedspft.nhs.uk,1 32844,http://www.leedstoconfidence.com,1 32845,http://www.leedswestacademy.org.uk,1 32846,http://www.leemartindrivingschool.com,1 32847,http://www.leesautomaticpass.co.uk,1 32848,http://www.legacyfuneraldirectors.co.uk,1 32849,http://www.legalaidlawyer.co.uk,1 32850,http://www.legalcheek.com,1 32851,http://www.legalservicesboard.org.uk,1 32852,http://www.legalservicesconsumerpanel.org.uk,1 32853,http://www.lehrer-online.de,1 32854,http://www.leicester1stdrivingschool.co.uk,1 32855,http://www.leicesterdrivingschool4u.co.uk,1 32856,http://www.leicestershirelawsociety.org.uk,1 32857,http://www.leigh.kent.sch.uk,1 32858,http://www.leighnorthstreetjuniors.co.uk,1 32859,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_10018679,1 32860,http://www.leighparkcip.org,1 32861,http://www.leisaslearners.co.uk,1 32862,http://www.leistoncab.org,1 32863,http://www.leistonsurgery.com,1 32864,http://www.leisureandculturedundee.com,1 32865,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Inretirement/DG_10018651,1 32866,http://alocallink.com,1 32867,http://www.lendleasepensions.co.uk,1 32868,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Illorinjured/DG_194379,1 32869,http://www.leominstercarauctions.co.uk,1 32870,http://www.leon-house.com,1 32871,http://www.leonchapman-drivinginstructor.co.uk,1 32872,http://www.leopold.brent.sch.uk,1 32873,http://www.leosschoolofmotoring.co.uk,1 32874,http://www.lesbiforums.ru,1 32875,http://www.lesliemedicalpractice.co.uk,1 32876,http://www.lessnessheath.bexley.sch.uk,1 32877,http://www.lessons.uk.com,1 32878,http://www.lessonswithmal.co.uk:9998,1 32879,http://www.letalife.com,1 32880,http://www.letjacksons.co.uk,1 32881,http://www.letmove.com,1 32882,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Expectingorbringingupchildren/HealthinPregnancyGrant/DG_173502,1 32883,http://www.lets-ride.co.uk:80,1 32884,http://www.letsgo-drive.co.uk,1 32885,http://www.letsgocov.com,1 32886,http://www.letslearn2drive.com,1 32887,http://www.letslet.net,1 32888,http://alnwickchess.easysearch.org.uk,1 32889,http://www.letsmotor.co.uk,1 32890,http://www.letstalklessrubbish.com,1 32891,http://www.letswithpets.org.uk,1 32892,http://alns.easysearch.org.uk,1 32893,http://www.lettingprotection.co.uk,1 32894,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_191447,1 32895,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_191445,1 32896,http://www.lettings247.com,1 32897,http://www.lettingssolutions.co.uk,1 32898,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10023094,1 32899,http://www.letz-drive.co.uk,1 32900,http://www.lewes.co.uk,1 32901,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10019276,1 32902,http://www.lewescycleaction.co.uk,1 32903,http://www.lewesdistricttuc.org,1 32904,http://www.lewisbrownlee.co.uk,1 32905,http://alltots.easysearch.org.uk,1 32906,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10018715,1 32907,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10018714,1 32908,http://www.direct.gov.uk/en/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Disabledpeople/DG_10012525,1 32909,http://www.lewishampct.nhs.uk,1 32910,http://www.lex.bg,1 32911,http://www.lexiology.com,1 32912,http://www.lexology.com,1 32913,http://www.lexus.co.uk,1 32914,http://www.leyland-methodist-inf.lancs.sch.uk,1 32915,http://www.lfhe.ac.uk,1 32916,http://www.lgcareers.com,1 32917,http://www.lha.org.uk,1 32918,http://www.lhdintheuk.com,1 32919,http://www.lhlaw.co.uk,1 32920,http://www.liamclayton.com,1 32921,http://www.lib.cam.ac.uk,1 32922,http://www.lib.jjay.cuny.edu,1 32923,http://www.lib.uk.net,1 32924,http://www.lib.uoguelph.ca,1 32925,http://www.lib.uwo.ca.proxy1.lib.uwo.ca:2048,1 32926,http://www.liberator.org.uk,1 32927,http://www.libertydrivingtuition.co.uk,1 32928,http://www.library.carleton.ca,1 32929,http://www.library.liverpool.gov.uk,1 32930,http://www.library.northants.nhs.uk,1 32931,http://www.library.sh.cn,1 32932,http://www.library.yorku.ca,1 32933,http://www.libyanet.com,1 32934,http://www.licence-to-drive.co.uk,1 32935,http://www.direct.gov.uk/en/London2012/index.htm,1 32936,http://www.direct.gov.uk/en/index/htm,1 32937,http://www.licence2drive.co.uk,1 32938,http://alltheolddudes.blogspot.com,1 32939,http://allstschurch.easysearch.org.uk,1 32940,http://www.direct.gov.uk/en/HomeAndCommunity/YourlocalcouncilandCouncilTax/YourCommunity/DG_196382,1 32941,http://www.licencetodrive.co.uk,1 32942,http://www.licencetodrive.com,1 32943,http://www.direct.gov.uk/en/HomeAndCommunity/YourlocalcouncilandCouncilTax/CouncilTax/DG_743,1 32944,http://www.liddellgrainger.org.uk,1 32945,http://www.lifedirect.co.uk,1 32946,http://allsitestravel.com,1 32947,http://www.lifeinsurance.org,1 32948,http://allseascargo.com.my,1 32949,http://www.lifeplanningsolutions.co.uk,1 32950,http://www.liferollercoaster.com,1 32951,http://www.lift-chairs.org,1 32952,http://www.lightcliffepreschool.co.uk,1 32953,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/Streetcleaninglitterandillegaldumping/DG_10026147,1 32954,http://www.lightfootslearners.com,1 32955,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/SaferStreets/DG_181635,1 32956,http://www.lighthouse365.com,1 32957,http://wymondhamkangaroos.easysearch.org.uk,1 32958,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/RoadsAndStreets/DG_10026093,1 32959,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/RoadsAndStreets/DG_10026089,1 32960,http://allowayrangerssu.easysearch.org.uk,1 32961,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/FloodingInYourArea/DG_180083,1 32962,http://www.direct.gov.uk/en/HomeAndCommunity/WhereYouLive/Derelictbuildingsandsquatters/DG_10030253,1 32963,http://www.direct.gov.uk/en/HomeAndCommunity/TechnologyInYourHome/InternetTechnologies/index.htm,1 32964,http://www.direct.gov.uk/en/HomeAndCommunity/TechnologyInYourHome/InternetTechnologies/DG_10038607,1 32965,http://www.direct.gov.uk/en/HomeAndCommunity/TechnologyInYourHome/DigitalTelevision/DG_100312,1 32966,http://www.direct.gov.uk/en/HomeAndCommunity/SocialHousingAndCareHomes/MovingHome/DG_10025972,1 32967,http://www.lightninglearners.co.uk,1 32968,http://www.lightningpass.co.uk,1 32969,http://www.lilyvillesurgery.co.uk,1 32970,http://www.limes.co,1 32971,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Repairsandstandards/DG_189202,1 32972,http://www.lincolnsu.com,1 32973,http://www.linda-brown-driving-school.co.uk,1 32974,http://wypccfaq.hosting.pdms.com,1 32975,http://www.lindfieldnursery.org.uk,1 32976,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Problemsanddisputes/DG_195065,1 32977,http://www.lindsaysautomaticdrivingschool.co.uk,1 32978,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Problemsanddisputes/DG_189242,1 32979,http://www.lings-primary.co.uk,1 32980,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Problemsanddisputes/DG_180115,1 32981,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Problemsanddisputes/DG_180114,1 32982,http://www.lingsschoolofmotoring.com,1 32983,http://www.direct.gov.uk/en/HomeAndCommunity/Privaterenting/Problemsanddisputes/DG_180085,1 32984,http://www.linkable.com,1 32985,http://www.linkrr.com,1 32986,http://www.links.org,1 32987,http://www.linksmedicalpractice.co.uk,1 32988,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/PlanningPermission/DG_10022613,1 32989,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/LandAndPropertyDevelopment/DG_10026177,1 32990,http://www.linkstolearning.com,1 32991,http://www.linthorpecommunityprimaryschool.co.uk,1 32992,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/GrantsFundsAndStandards/DG_191702,1 32993,http://www.linthwaite-ardron.org.uk,1 32994,http://www.linux.bideford.devon.sch.uk,1 32995,http://www.direct.gov.uk/en/HomeAndCommunity/Planning/ChoosingTradersAndServiceProviders/DG_4018095,1 32996,http://www.liphookmotors.com,1 32997,http://www.lisaslearnerssom.co.uk,1 32998,http://www.list-of-domains.org,1 32999,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/SupportAtHome/DG_10026083,1 33000,http://www.listbox.com,1 33001,http://www.litcham.org,1 33002,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/KeepingSafeAtHome/DG_179814,1 33003,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/KeepingSafeAtHome/DG_10029724,1 33004,http://www.littleacornsnursery.org.uk,1 33005,http://allaboutorkney.com,1 33006,http://www.littlealberts.co.uk,1 33007,http://www.littlebirdshometutoring.co.uk,1 33008,http://www.littlebritainfans.com,1 33009,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/FireSafety/DG_071793,1 33010,http://www.littlehampton-cab.org.uk,1 33011,http://www.littleheath.coventry.sch.uk,1 33012,http://www.littlehoughtonceprimary.moonfruit.com,1 33013,http://www.littleowlschildcare.com,1 33014,http://www.littlepoppet.com,1 33015,http://www.littlestarz.childrencentre.org,1 33016,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Escapingandrecoveringfromafire/DG_180620,1 33017,http://www.littlesteps-nursery.co.uk,1 33018,http://www.littlesu.bham.sch.uk,1 33019,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Dealingwithemergencies/Supportafteramajorincident/DG_076363,1 33020,http://all-france.frankrijkinfo.com,1 33021,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Dealingwithemergencies/Supportafteramajorincident/DG_074067,1 33022,http://www.littleswans.org.uk,1 33023,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Dealingwithemergencies/Preparingforemergencies/DG_176587,1 33024,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/Dealingwithemergencies/preparingforemergencies/DG_176587,1 33025,http://www.live.kerboodle.com,1 33026,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/AnimalsAndPets/Dogs/DG_180091,1 33027,http://www.live1.knowledgeboxonline.com,1 33028,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/AnimalsAndPets/DG_178464,1 33029,http://www.direct.gov.uk/en/HomeAndCommunity/InYourHome/AnimalsAndPets/DG_178461,1 33030,http://www.livego.com,1 33031,http://www.livejournal.com,1 33032,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Volunteering/DG_197652,1 33033,http://www.liverpoolcrossroads.co.uk,1 33034,http://www.liverpooldrivinglessons.co.uk,1 33035,http://www.liverpooldrivingschool.co.uk,1 33036,http://www.liverpoolsas.ac.uk,1 33037,http://www.livingitlondon.com,1 33038,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Charities/Startingacharity/Isstartingacharitytherightchoice/DG_066666,1 33039,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Charities/Startingacharity/Becomingaregisteredcharity/DG_194965,1 33040,http://www.direct.gov.uk/en/HomeAndCommunity/Gettinginvolvedinyourcommunity/Charities/Startingacharity/Becomingaregisteredcharity/DG_066539,1 33041,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Repairsandstandards/DG_188670,1 33042,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Rentarrearsandeviction/DG_188733,1 33043,http://www.ljd.uk.com,1 33044,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Housingassociationhomes/DG_188400,1 33045,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Housingassociationhomes/Applyingforahousingassociationhome/DG_188392,1 33046,http://www.llgbc.com,1 33047,http://www.llgc.org.uk,1 33048,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Councilhousing/DG_188670,1 33049,http://www.lloydsbankinggroup.com,1 33050,http://wzemi.com,1 33051,http://www.lloydstsboffers.com,1 33052,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Councilhousing/DG_188483,1 33053,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Councilhousing/Counciltenants/DG_188570,1 33054,http://www.direct.gov.uk/en/HomeAndCommunity/Councilandhousingassociationhomes/Councilhousing/Counciltenants/DG_188541,1 33055,http://www.llttf.com,1 33056,http://www.lmbbs.org.uk,1 33057,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/SellingYourHome/DG_171890,1 33058,http://www.lmh.ox.ac.uk,1 33059,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Owningproperty/DG_196296,1 33060,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Owningproperty/DG_196294,1 33061,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Owningproperty/DG_196293,1 33062,http://www.lnpt.org,1 33063,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Mortgagesandrepossessions/DG_180046,1 33064,http://www.loanslogbook.com,1 33065,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Mortgagesandrepossessions/DG_180043,1 33066,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Mortgagesandrepossessions/DG_180041,1 33067,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Mortgagesandrepossessions/DG_180039,1 33068,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/MobileHousing/index.htm,1 33069,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/MobileHousing/DG_191103,1 33070,http://www.local.communities.gov.uk,1 33071,http://www.local.odpm.gov.uk,1 33072,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/MobileHousing/DG_191088,1 33073,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/MobileHousing/DG_191087,1 33074,http://www.localberkshire.co.uk,1 33075,http://www.localdrivingschool.co.uk,1 33076,http://www.localpetpeople.com,1 33077,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Leaseholdproperties/DG_193056,1 33078,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Leaseholdproperties/DG_193055,1 33079,http://www.localweddingband.co.uk,1 33080,http://www.locatelancashire.co.uk,1 33081,http://www.locatelincolnshire.co.uk,1 33082,http://www.locatenottinghamshire.co.uk,1 33083,http://www.locatestrathclyde.co.uk,1 33084,http://www.locatewestmidlands.co.uk,1 33085,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_187035,1 33086,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_187016,1 33087,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_187000,1 33088,http://www.lochaberhope.org.uk,1 33089,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/HomeBuyingSchemes/DG_186954,1 33090,http://www.locksofsandwichcycles.co.uk,1 33091,http://www.loco2energy.com,1 33092,http://www.locop.co.uk,1 33093,http://www.lodgeside.nhs.uk,1 33094,http://www.lodwayservicestation.co.uk,1 33095,http://www.loestrin24sideeffects.org,1 33096,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/Energyperformancecertificates/DG_177156,1 33097,http://www.lofadrive.co.uk,1 33098,http://www.loftusfunerals.co.uk,1 33099,http://www.loggerheadscommunityinformationshop.org.uk,1 33100,http://www.logic-group.co.uk,1 33101,http://www.logicschoolofmotoring.com,1 33102,http://www.logodrivingschool.co.uk,1 33103,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuyingYourHome/DG_10017926,1 33104,http://www.direct.gov.uk/en/HomeAndCommunity/BuyingAndSellingYourHome/BuildingYourOwnHome/DG_10030742,1 33105,http://www.london-studio-centre.co.uk,1 33106,http://www.london.edu,1 33107,http://www.direct.gov.uk/en/Hl1/Help/YourQuestions/DG_10015164,1 33108,http://www.london.home.pl,1 33109,http://www.london.net,1 33110,http://www.londonboilercompany.com,1 33111,http://www.londonclaimsadvice.co.uk,1 33112,http://www.direct.gov.uk/en/Hl1/Help/DG_174798,1 33113,http://www.londonclub.fr,1 33114,http://www.londonmore.co.uk,1 33115,http://www.direct.gov.uk/en/Hl1/Help/DG_020463,1 33116,http://www.londonnarpo.org.uk,1 33117,http://www.direct.gov.uk/en/Hl1/Help/Accessibility/DG_10018159,1 33118,http://www.londonorange.com,1 33119,http://www.direct.gov.uk/en/HealthAndWellBeing/HealthyLiving/index.htm,1 33120,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Freedomofinformationanddataprotection/DG_4003239,1 33121,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/Freedomofinformationanddataprotection/DG_10031451,1 33122,http://www.londontostanstedairport.co.uk,1 33123,http://alexandersom.co.uk,1 33124,http://www.londra.mae.ro,1 33125,http://www.londres-expat.com,1 33126,http://www.lone-parents.org.uk,1 33127,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/DG_177951,1 33128,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/DG_176761,1 33129,http://www.longfield.darlington.sch.uk,1 33130,http://www.longfieldandnewbarnpc.kentparishes.gov.uk,1 33131,http://www.longfurlongprimaryschool.org.uk,1 33132,http://www.direct.gov.uk/en/Governmentcitizensandrights/Yourrightsandresponsibilities/DG_066860,1 33133,http://www.longhill.org.uk,1 33134,http://www.longmynd.com,1 33135,http://alexander-som.com,1 33136,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/UKpublicappointments/DG_066548,1 33137,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/TheUKandtheworld/DG_073418,1 33138,http://www.longstone.derbyshire.sch.uk,1 33139,http://www.longwickcumilmer.org.uk,1 33140,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/PublicConsultations/DG_10035670,1 33141,http://www.lonwheels.co.uk,1 33142,http://alevel.theorytestpro.co.uk,1 33143,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Politicalpartiesandelections/DG_073241,1 33144,http://www.lookafterlearners.co.uk,1 33145,http://www.lookwhosdriving.co.uk,1 33146,http://wzlet.org,1 33147,http://www.looneylounge.co.uk,1 33148,http://www.loos.co.uk,1 33149,http://www.loose-junior.kent.sch.uk,1 33150,http://www.lordgrey.co.uk,1 33151,http://www.lordgrey.org,1 33152,http://www.losmotoringschool.co.uk,1 33153,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/TheUKhonourssystem/DG_181375,1 33154,http://www.lostchild.tv,1 33155,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/TheQueensAwardforVoluntaryService/DG_181021,1 33156,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/TheQueensAwardforVoluntaryService/DG_181020,1 33157,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/Militarymedalsandawards/DG_10014011,1 33158,http://www.lostsubs.com,1 33159,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/DG_176372,1 33160,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Honoursawardsandmedals/DG_067977,1 33161,http://www.losviajeros.com,1 33162,http://www.losviajeros.net,1 33163,http://www.lotfisdrivingschool.co.uk,1 33164,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Devolvedgovernment/DG_073309,1 33165,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Devolvedgovernment/DG_073308,1 33166,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Centralgovernmentandthemonarchy/DG_073571,1 33167,http://www.loughboroughdrivingtuition.co.uk,1 33168,http://www.loughton-selfdrive.co.uk,1 33169,http://www.louise-drivingschool.co.uk,1 33170,http://www.direct.gov.uk/en/Governmentcitizensandrights/UKgovernment/Centralgovernmentandthemonarchy/DG_073442,1 33171,http://www.louisesschoolofmotoring.co.uk,1 33172,http://www.lovdata.no,1 33173,http://www.love2drive.co.uk,1 33174,http://www.love2pass.co.uk,1 33175,http://alert.easysearch.org.uk,1 33176,http://www.lovelace.kingston.sch.uk,1 33177,http://www.lovetoescape.com,1 33178,http://wzus1.ask.com,1 33179,http://www.low-hall.com,1 33180,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthmarriageanddeathcertificates/DG_175654,1 33181,http://www.lowerroadservicecentre.co.uk,1 33182,http://www.lowestoftonline.com,1 33183,http://aldringham.onesuffolk.net,1 33184,http://www.direct.gov.uk/en/Governmentcitizensandrights/Registeringlifeevents/Birthandadoptionrecords/Registeringorchangingabirthrecord/DG_175617,1 33185,http://www.lowtonhs.wigan.sch.uk,1 33186,http://www.lpasso.org.uk,1 33187,http://www.lpassodrivingschool.co.uk,1 33188,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/UsingtheCourtofProtection/DG_185912,1 33189,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/UsingtheCourtofProtection/DG_176444,1 33190,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/UsingtheCourtofProtection/DG_176267,1 33191,http://www.lpc-online.org.uk,1 33192,http://www.lpf.org.uk,1 33193,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Mentalcapacityandplanningahead/DG_194899,1 33194,http://www.lplatedriver.co.uk,1 33195,http://www.lplates2pplates.co.uk,1 33196,http://www.lplatesoff.co.uk,1 33197,http://www.lrdpublications.org.uk,1 33198,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingdecisionsforsomeoneelse/DG_195282,1 33199,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingdecisionsforsomeoneelse/DG_176444,1 33200,http://www.ls-angels.co.uk,1 33201,http://www.lsaswindon.co.uk,1 33202,http://www.lsbc.co,1 33203,http://www.lscmanual.co.uk,1 33204,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Helpingsomeoneelsewithdecisionmaking/DG_186483,1 33205,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Helpingsomeoneelsewithdecisionmaking/DG_186479,1 33206,http://www.direct.gov.uk/en/Governmentcitizensandrights/Mentalcapacityandthelaw/Helpingsomeoneelsewithdecisionmaking/DG_186377,1 33207,http://albionprimaryschool.co.uk,1 33208,http://www.ltest.co.uk,1 33209,http://www.lucasvale.lewisham.sch.uk,1 33210,http://www.lucy-locket.com,1 33211,http://www.ludlowjunior.org.uk,1 33212,http://www.direct.gov.uk/en/Governmentcitizensandrights/Identitycards/DG_174616,1 33213,http://www.ludusdance.org,1 33214,http://albaston.2day.ws,1 33215,http://www.luggagetransfers.co.uk,1 33216,http://www.lupinhousechildcare.co.uk,1 33217,http://www.direct.gov.uk/en/Governmentcitizensandrights/GettingLegalAdvice/Gettinglegaladviceandlegalaid/DG_195395,1 33218,http://www.lupusuk.org.uk,1 33219,http://www.lurchersdriving.co.uk,1 33220,http://www.lurkingglass.com,1 33221,http://wzus1.destinationthere.com,1 33222,http://www.luton-driving-school.co.uk,1 33223,http://www.lutonadvicenetwork.org.uk,1 33224,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Ifyourenotmarriedorinacivilpartnership/index.htm,1 33225,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Ifyourenotmarriedorinacivilpartnership/DG_193774,1 33226,http://www.lutoncab.org.uk,1 33227,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Ifyoureendingamarriageorcivilpartnership/DG_193766,1 33228,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Financialplanningwhenyourrelationshipends/DG_193779,1 33229,http://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Planningadivorce/index.htm,1 33230,http://www.lyceefrancais.org.uk,1 33231,http://www.lycos.co.uk,1 33232,http://www.lymington.org,1 33233,http://www.lynbrown.org.uk,1 33234,http://www.lynehamvillage.com,1 33235,http://www.lyntonhouse.karoo.net,1 33236,http://www.lyonsfarmcars.co.uk,1 33237,http://www.lyrcis.com,1 33238,http://www.lytes.co.uk,1 33239,http://www.m-alliance.org.uk,1 33240,http://www.m.yahoo.com,1 33241,http://www.m3jobclub.co.uk,1 33242,http://www.ma-commercial.co.uk,1 33243,http://www.mac-k.com,1 33244,http://www.maccasdrivingschool.co.uk,1 33245,http://www.macclesfield.ac.uk,1 33246,http://www.macdonaldandcompany.com,1 33247,http://www.macfarlane.org.uk,1 33248,http://www.mackem-som.com,1 33249,http://www.macla.co.uk,1 33250,http://www.macworld.co.uk,1 33251,http://www.madabout-kitcars.com,1 33252,http://www.madaboutdriving.co.uk,1 33253,http://www.madeeasydriving.co.uk,1 33254,http://www.madeinsheffield.com,1 33255,http://www.madmaxmovies.com,1 33256,http://www.madmechanics.com,1 33257,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/BenefitsAndMoney/index.htm,1 33258,http://www.maestro.org.uk,1 33259,http://www.magbaztravels.com,1 33260,http://www.direct.gov.uk/en/Governmentcitizensandrights/Death/BenefitsAndMoney/DG_10029453,1 33261,http://www.magdrivingschool.co.uk,1 33262,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Yourconsumerrightswhenbuyinggoodsandservices/DG_195383,1 33263,http://www.maggiemilessom.co.uk,1 33264,http://www.magicalkingdoms.com,1 33265,http://www.magicjon.co.uk,1 33266,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Yourconsumerrightswhenbuyinggoodsandservices/DG_183295,1 33267,http://www.magistrates.gov.uk,1 33268,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Yourconsumerrightswhenbuyinggoodsandservices/Adviceonmobileandlandlinecharges/DG_WP189643,1 33269,http://www.magmawww.co.uk,1 33270,http://www.magna-recruitment.co.uk,1 33271,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Situationsthatcanchangeyourconsumerrights/DG_194919,1 33272,http://10.168.4.22:15871,1 33273,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Protectyourselffromscams/DG_195960,1 33274,http://10.166.248.99:4080,1 33275,http://www.magnumdrivingtuition.co.uk,1 33276,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Personalfinance-yourconsumerrights/DG_195731,1 33277,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Personalfinance-yourconsumerrights/DG_194968,1 33278,http://www.magoo-design.co.uk,1 33279,http://www.magpas.org.uk,1 33280,http://www.mahalo.com,1 33281,http://www.maharashtrapolice.com,1 33282,http://x.facebook.com,1 33283,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Holidaysandtravel-yourconsumerrights/DG_195950,1 33284,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Holidaysandtravel-yourconsumerrights/DG_182877,1 33285,http://www.maidavaledrivingschool.com,1 33286,http://www.maidstonecab.org.uk,1 33287,http://alanmakuk.wordpress.com,1 33288,http://www.maihwa.com.tw,1 33289,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/Energy-yourconsumerrights/DG_196252,1 33290,http://www.direct.gov.uk/en/Governmentcitizensandrights/Consumerrights/DG_190007,1 33291,http://www.mailboxcontrol.co.uk,1 33292,http://www.mailwatch.co.uk,1 33293,http://www.mainforums.redissue.co.uk,1 33294,http://www.maka.co.il,1 33295,http://www.direct.gov.uk/en/Environmentandgreenerliving/Wasteandrecycling/DG_078263,1 33296,http://www.direct.gov.uk/en/Environmentandgreenerliving/Wasteandrecycling/DG_064369,1 33297,http://www.makeitseen.com,1 33298,http://www.makepassportphoto.com.,1 33299,http://alanjbarker.co.uk,1 33300,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Pollution/DG_064397,1 33301,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Lookingafternature/DG_180360,1 33302,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Lookingafternature/DG_064402,1 33303,http://www.makeuseof.com,1 33304,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/DG_064397,1 33305,http://www.makingawill.org.uk,1 33306,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Climatechange/DG_179147,1 33307,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Climatechange/DG_072959,1 33308,http://www.makingmoneyfromproperty.tv,1 33309,http://www.makingthegames.co.uk,1 33310,http://www.makingthenetwork.org,1 33311,http://www.direct.gov.uk/en/Environmentandgreenerliving/Thewiderenvironment/Climatechange/DG_070060,1 33312,http://www.mal-uk.co.uk,1 33313,http://alancox.theorytestpro.co.uk,1 33314,http://www.direct.gov.uk/en/Environmentandgreenerliving/Smallholders/DG_179478,1 33315,http://www.maldawson.talktalk.net,1 33316,http://www.mallard.doncaster.sch.uk,1 33317,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenertravel/Greenercarsanddriving/DG_191976,1 33318,http://www.maltbyradio.org.uk,1 33319,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenertravel/Enjoyingthecountryside/DG_4018801,1 33320,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenertravel/Enjoyingthecountryside/DG_187728,1 33321,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenertravel/Enjoyingthecountryside/DG_187645,1 33322,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenertravel/Enjoyingthecountryside/DG_185956,1 33323,http://www.malvernprimary.ik.org,1 33324,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenertravel/Airtravelandgreenerholidays/DG_064430,1 33325,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenertravel/Airtravelandgreenerholidays/DG_064429,1 33326,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenerlifeevents/DG_179223,1 33327,http://www.mamapacks.eu,1 33328,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenerhomeandgarden/Greenershopping/DG_064425,1 33329,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenerhomeandgarden/Greenershopping/DG_064421,1 33330,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenerhomeandgarden/Greenershopping/DG_064373,1 33331,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenerhomeandgarden/Greenerlabelsandclaims/index.htm,1 33332,http://www.mammamuntetiem.lv,1 33333,http://alanbray.theorytestpro.co.uk,1 33334,http://alan.theorytestpro.co.uk,1 33335,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenerhomeandgarden/Greenergarden/DG_064410,1 33336,http://www.mammealondra.com,1 33337,http://www.direct.gov.uk/en/Environmentandgreenerliving/Greenercommunityandwork/DG_064440,1 33338,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Renewableandlowcarbonenergy/DG_072626,1 33339,http://www.managementtoday.co.uk,1 33340,http://alan-stewart.net,1 33341,http://www.managemoney4life.com,1 33342,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Homeinsulation/DG_195171,1 33343,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Homeinsulation/DG_195170,1 33344,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Homeinsulation/DG_195168,1 33345,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Homeinsulation/DG_195167,1 33346,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Homeinsulation/DG_195166,1 33347,http://www.manbymotorplex.com,1 33348,http://www.manbymotors.co.uk,1 33349,http://www.manchester-career.com,1 33350,http://www.manchester.anglican.org,1 33351,http://www.manchesterinfo.eu,1 33352,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Energyandwaterefficiencyinyourhome/DG_195185,1 33353,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Energyandwaterefficiencyinyourhome/DG_195183,1 33354,http://www.manchesterstudenthomes.com,1 33355,http://www.direct.gov.uk/en/Environmentandgreenerliving/Energyandwatersaving/Energyandwaterefficiencyinyourhome/DG_064375,1 33356,http://www.manchestertravelclinic.co.uk,1 33357,http://www.direct.gov.uk/en/Environmentandgreenerliving/DG_067762,1 33358,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Workersemployeesandselfemployment/DG_198935,1 33359,http://www.mangotsfieldschool.org.uk,1 33360,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Workersemployeesandselfemployment/DG_183501,1 33361,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Workersemployeesandselfemployment/DG_175241,1 33362,http://www.manor-pass.com,1 33363,http://www.manorfieldinfant.co.uk,1 33364,http://www.manorhigh.leics.sch.uk,1 33365,http://www.manorinsurance.co.uk,1 33366,http://www.manoroakprimaryschool.co.uk,1 33367,http://www.manorroyalmotors.co.uk,1 33368,http://www.manorservicecentre.co.uk,1 33369,http://akintranet:8080,1 33370,http://www.manorviewpractice.co.uk,1 33371,http://www.mansfield2020.com,1 33372,http://www.mansionhousesurgery.nhs.uk,1 33373,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/agriculturalworkers/DG_179681,1 33374,http://www.mantralearning.co.uk,1 33375,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/agriculturalworkers/DG_179607,1 33376,http://www.manurematters.co.uk,1 33377,http://www.manutdchat.com,1 33378,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Agencyworkersandemploymentagencies/DG_173262,1 33379,http://www.manx2.com,1 33380,http://www.maoyiren.com,1 33381,http://www.map.uk.net,1 33382,http://www.direct.gov.uk/en/Employment/Understandingyourworkstatus/Agencywork,1 33383,http://x08-devserver,1 33384,http://www.maps.cjsonline.gov.uk,1 33385,http://www.marchwoodparishcouncil.org.uk,1 33386,http://www.mareaunire.com,1 33387,http://www.margaretthatcher.org,1 33388,http://www.direct.gov.uk/en/Employment/TradeUnions/Tradeunionmembership/DG_179428,1 33389,http://ajsdriving.theorytestpro.co.uk,1 33390,http://www.marge.com.local,1 33391,http://www.maria-childminding.co.uk,1 33392,http://airthpta.easysearch.org.uk,1 33393,http://www.marianvian.bromley.sch.uk,1 33394,http://www.maritime-studies.gr,1 33395,http://www.mark1drivingschool.com,1 33396,http://www.markbensonbs.co.uk,1 33397,http://www.markbradysom.co.uk,1 33398,http://www.markcoyle.co.uk,1 33399,http://www.market-design.com,1 33400,http://www.marketingmanagersinfo.co.uk,1 33401,http://www.direct.gov.uk/en/Employment/Startinganewjob/DG_10026524,1 33402,http://www.markneill.co.uk,1 33403,http://www.direct.gov.uk/en/Employment/Startinganewjob/DG,1 33404,http://www.markonesom.co.uk,1 33405,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Mediationconciliationandarbitration/DG_10028132,1 33406,http://www.marksdrivingschoolstaffordshire.co.uk,1 33407,http://www.markwilliamsdriving.co.uk,1 33408,http://www.markyateparishcouncil.com,1 33409,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/Employmenttribunals/DG_182912,1 33410,http://www.marscapital.co.uk,1 33411,http://www.marshgreenprimary.com,1 33412,http://www.martinclarkefireplaces.co.uk,1 33413,http://www.martini.com,1 33414,http://www.martinlee.sg,1 33415,http://www.direct.gov.uk/en/Employment/ResolvingWorkplaceDisputes/DiscriminationAtWork/DG_10026540,1 33416,http://www.martins-drivingschool.co.uk,1 33417,http://www.martins-school-of-motoring.piczo.com,1 33418,http://www.martsschoolofmotoring.co.uk,1 33419,http://www.martysdrivingschool.co.uk,1 33420,http://www.marveldrivingschool.co.uk,1 33421,http://www.marylangleyschoolofmotoring.co.uk,1 33422,http://www.masicorp.org,1 33423,http://www.masonandstokes.co.uk,1 33424,http://www.master-driving.co.uk,1 33425,http://www.mastercover.co.uk,1 33426,http://www.mastersdegrees.org.uk,1 33427,http://www.mastertyres.co.uk,1 33428,http://www.mathaba.net,1 33429,http://www.maths.dur.ac.uk,1 33430,http://www.matrixdeputies.org.uk,1 33431,http://www.matrixfinancial.co.uk,1 33432,http://www.matrixtravel.co.uk,1 33433,http://www.matrixtrust.com,1 33434,http://www.matt-bentley.co.uk,1 33435,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/DG_10026695,1 33436,http://www.direct.gov.uk/en/Employment/RedundancyAndLeavingYourJob/DG_10026693,1 33437,http://www.mattbearman.co.uk,1 33438,http://www.matthewsdrivingschool.co.uk,1 33439,http://www.mattlee-drivertraining.co.uk,1 33440,http://www.maturefreeandsingle.com,1 33441,http://www.matyasesmelinda.hu,1 33442,http://airporttransfersmanchester.com,1 33443,http://www.direct.gov.uk/en/Employment/Jobseekers/programmesandservices/DG_198818,1 33444,http://www.mauricemullard.co.uk,1 33445,http://www.mavarine.com,1 33446,http://www.maverickmotorcycletraining.co.uk,1 33447,http://www.mavicanet.ru,1 33448,http://airfixtributeforum.myfastforum.org,1 33449,http://www.direct.gov.uk/en/Employment/Jobseekers/programmesandservices/DG_173561,1 33450,http://www.mawsleydaynursery.co.uk,1 33451,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/DG_212,1 33452,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/DG_181688,1 33453,http://www.direct.gov.uk/en/Employment/Jobseekers/LookingForWork/DG_177319,1 33454,http://www.maxdriving.co.uk,1 33455,http://www.maxicosiaxiss.co.uk,1 33456,http://www.maximum-som.co.uk,1 33457,http://www.maxpass.co.uk,1 33458,http://www.maxsmasterclass.com,1 33459,http://www.maxwellgillott.com,1 33460,http://www.maxwellsaccountants.co.uk,1 33461,http://www.mayerhillman.com,1 33462,http://www.mbha.org.uk,1 33463,http://air-conditioning-inspections.co.uk,1 33464,http://www.direct.gov.uk/en/Employment/Jobseekers/Helpapplyingforajob/DG_173725,1 33465,http://www.direct.gov.uk/en/Employment/Jobseekers/Helpapplyingforajob/DG_173701,1 33466,http://www.mbookkeeping.com,1 33467,http://www.mcafeecommercial.com,1 33468,http://www.mcallisters-recovery.co.uk,1 33469,http://www.mcautos.co.uk,1 33470,http://www.mccarts.co.uk,1 33471,http://www.mcchousing.co.uk,1 33472,http://www.mccn.nhs.uk,1 33473,http://www.mcgill.ca,1 33474,http://www.mcia.co.uk,1 33475,http://www.mckaypharmacy.com,1 33476,http://www.direct.gov.uk/en/Employment/HealthAndSafetyAtWork/DG_4016688,1 33477,http://www.mcopus.co.uk,1 33478,http://www.mcqbank.co.uk,1 33479,http://www.mdc-ce.de,1 33480,http://www.direct.gov.uk/en/Employment/HealthAndSafetyAtWork/DG_10026595,1 33481,http://www.mddsz.gov.si,1 33482,http://www.mdfwales.org.uk,1 33483,http://www.meadowcommunity.co.uk,1 33484,http://www.direct.gov.uk/en/Employment/Employees/WorkingHoursAndTimeOff/DG_10034711,1 33485,http://www.direct.gov.uk/en/Employment/Employees/WorkingHoursAndTimeOff/DG_10034642,1 33486,http://www.meashamdoctors.co.uk,1 33487,http://www.meatnpotatoes.com,1 33488,http://www.medclima.com,1 33489,http://www.medical-acupuncture.co.uk,1 33490,http://www.direct.gov.uk/en/Employment/Employees/Timeoffandholidays/DG_183468,1 33491,http://www.direct.gov.uk/en/Employment/Employees/Timeoffandholidays/DG_183403,1 33492,http://www.medicalwomensfederation.org.uk,1 33493,http://www.medicine.manchester.ac.uk,1 33494,http://www.medicsonthemove.co.uk,1 33495,http://www.medsafe.govt.nz,1 33496,http://www.medway-driving.com,1 33497,http://www.medwaypct.nhs.uk,1 33498,http://www.direct.gov.uk/en/Employment/Employees/TheNationalMinimumWage/DG_181935,1 33499,http://www.meganeownersclub.co.uk,1 33500,http://www.megavan.org,1 33501,http://www.melekdrivingschool.co.uk,1 33502,http://www.melinhomes.co.uk,1 33503,http://www.direct.gov.uk/en/Employment/Employees/TheNationalMinimumWage/DG_175096,1 33504,http://www.mellers.nottingham.sch.uk,1 33505,http://www.melson.org.uk,1 33506,http://www.members.dca.net,1 33507,http://www.direct.gov.uk/en/Employment/Employees/Sicknessabsence/DG_190449,1 33508,http://www.menieres.co.uk,1 33509,http://www.menorca-net.co.uk,1 33510,http://www.mentalhealth.org.uk,1 33511,http://www.merchant-navy.net,1 33512,http://www.merchantmcdonald.co.uk,1 33513,http://www.mercia.co.uk,1 33514,http://www.mercurynews.com,1 33515,http://www.meridiancare.co.uk,1 33516,http://x3webworx.wordpress.com,1 33517,http://www.meridiandrivingcentre.co.uk,1 33518,http://www.meridianenglish.com,1 33519,http://www.meridianoffices.co.uk,1 33520,http://www.merlinmoney.co.uk,1 33521,http://www.merrill.derby.sch.uk,1 33522,http://www.merrys.co.uk,1 33523,http://www.merseymoney.org.uk,1 33524,http://www.merseysideheatingplumbing.co.uk,1 33525,http://www.merseysidepoliceauthority.gov.uk,1 33526,http://www.direct.gov.uk/en/Employment/Employees/EmploymentContractsAndConditions/DG_10027735,1 33527,http://www.mertonconnected.com,1 33528,http://www.mertonschoolofmotoring.co.uk,1 33529,http://aidsmap.com,1 33530,http://www.mervynjonesdrivertraining.co.uk,1 33531,http://www.meslimited.org,1 33532,http://www.mesp.pearsonhighered.com,1 33533,http://www.message.org.uk,1 33534,http://www.messegitim.com.tr,1 33535,http://www.metgasservices.co.uk,1 33536,http://www.methwoldhigh.norfolk.sch.uk,1 33537,http://ahsmlt.easysearch.org.uk,1 33538,http://www.metishr.co.uk,1 33539,http://www.metro.co.uk,1 33540,http://www.metrocentre.co.uk,1 33541,http://www.metropolistraining.co.uk,1 33542,http://www.metsu.org,1 33543,http://www.mexico-child-link.org,1 33544,http://www.mez.co.uk,1 33545,http://www.mfa.fo,1 33546,http://www.mgboard.de,1 33547,http://www.mgbsom.com,1 33548,http://www.mgbtraining.co.uk,1 33549,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/StudentsFromOtherEUCountries/DG_184393,1 33550,http://www.mh-p.org,1 33551,http://www.mhphotographic.co.uk,1 33552,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/RepayingStudentLoansCoursesStartingFrom1998/DG_10034869,1 33553,http://www.mhqonline.com,1 33554,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/RepayingStudentLoansCoursesStartingBefore1998/DG_10034885,1 33555,http://www.mhsgmoodle.org.uk,1 33556,http://www.mhsystems.co.uk,1 33557,http://www.michaelaschoolofmotoring.co.uk,1 33558,http://www.michaelmurdock.org,1 33559,http://www.mickgarton.co.uk,1 33560,http://www.micklands.reading.sch.uk,1 33561,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/Extrahelp/index.htm,1 33562,http://www.microcherry.com,1 33563,http://www.microsscreative.me.uk,1 33564,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/StudentFinance/DG_189417,1 33565,http://www.midchesh.ac.uk,1 33566,http://www.middlesexcollegeoflaw.co.uk,1 33567,http://www.midlandfirst.co.uk,1 33568,http://www.midlandroadnursery.org.uk,1 33569,http://www.midnorthumberlanddistrictscouts.co.uk,1 33570,http://www.midspace.co.uk,1 33571,http://www.migrantemploymentrightsadvice.co.uk,1 33572,http://www.migrantworkersnorthwest.org,1 33573,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/LifeAtUniversityOrCollege/DG_180817,1 33574,http://www.migrationexpert.co.uk,1 33575,http://www.migrationnews.com,1 33576,http://www.mike-coles-travel.co.uk,1 33577,http://www.mikegapes.org.uk,1 33578,http://www.mikekujawski.ca,1 33579,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/DecidingWhereToStudy/DG_4017086,1 33580,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/DecidingWhereToStudy/DG_073359,1 33581,http://www.mikesadlerdriving.co.uk,1 33582,http://www.mikesdrivingtuition.co.uk,1 33583,http://www.mikevineer.co.uk,1 33584,http://www.mikkelinnuohoustoimi.fi,1 33585,http://www.mildmaymedicalpractice.co.uk,1 33586,http://ahportal,1 33587,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ApplyingForAHigherEducationCourse/index.htm,1 33588,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ApplyingForAHigherEducationCourse/DG_10013274,1 33589,http://www.mileestates.co.uk,1 33590,http://www.direct.gov.uk/en/EducationAndLearning/UniversityAndHigherEducation/ApplyingForAHigherEducationCourse/DG_073163,1 33591,http://www.mileskingsport.co.uk,1 33592,http://www.milfordonsea.com,1 33593,http://www.militaryinstallations.dod.mil,1 33594,http://www.militarysos.com,1 33595,http://www.milkfloats.org.uk,1 33596,http://www.milkforschools.org.uk,1 33597,http://www.millers.biz,1 33598,http://www.millfieldssom.co.uk,1 33599,http://www.milnefriend.co.uk,1 33600,http://www.milnesschoolofmotoring.co.uk,1 33601,http://www.mils.co.uk,1 33602,http://www.milton.dorset.sch.uk,1 33603,http://www.miltonhousesurgery.co.uk,1 33604,http://www.miltonkeynes.com.pl,1 33605,http://www.miltonkeynesacademy.co.uk,1 33606,http://www.miltonkeynesdrivinglessons.co.uk,1 33607,http://www.miltonvillage.org.uk,1 33608,http://www.milverton-primary-school.co.uk,1 33609,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/Shapinglearning/DG_068290,1 33610,http://www.minagric.gr,1 33611,http://www.mindaligned.org,1 33612,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/LearningOutsideTheClassroom/DG_4016807,1 33613,http://www.mindbodyyoga.co.uk,1 33614,http://www.mindhey.co.uk,1 33615,http://www.mindthemoneygap.org,1 33616,http://www.mindtheroad.org.uk,1 33617,http://www.mineheadcyclingclub.com,1 33618,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/GetLearning/DG_4016530,1 33619,http://www.minerscompensation.org.uk,1 33620,http://www.minibus-trader.co.uk,1 33621,http://ahp.dh.gov.uk,1 33622,http://www.minibustraininguk.com,1 33623,http://www.miniconomy.nl,1 33624,http://www.minidrivin.com,1 33625,http://www.minidrivingschool.co.uk,1 33626,http://www.minimissions.co.uk,1 33627,http://www.direct.gov.uk/en/EducationAndLearning/AdultLearning/FinancialHelpForAdultLearners/CareerDevelopmentLoans/DG_10033241,1 33628,http://www.minirevolution.co.uk,1 33629,http://www.minivator.co.uk,1 33630,http://www.minivator.fr,1 33631,http://www.minster-ramsgate.kent.sch.uk,1 33632,http://www.minstermedicalpractice.co.uk,1 33633,http://www.mintproclean.co.uk,1 33634,http://www.mirfieldgroundworksgroup.co.uk,1 33635,http://www.mirrorsignalgo.co.uk,1 33636,http://www.misschiefschildcare.co.uk,1 33637,http://www.missionstclare.com,1 33638,http://www.mitbbs.com,1 33639,http://www.mitchammedicalcentre.nhs.uk,1 33640,http://www.mitochondrialncg.nhs.uk,1 33641,http://www.mitsubishi-cars.co.uk,1 33642,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/ExtraHelp/DG_066560,1 33643,http://www.mixitmusic.co.uk,1 33644,http://xaxt.com,1 33645,http://www.mjpotts.co.uk,1 33646,http://www.mju.gov.si,1 33647,http://www.mjwsurveying.co.uk,1 33648,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/Caretolearn/DG_066971,1 33649,http://www.mk-midwife.co.uk,1 33650,http://www.mkautocare.co.uk,1 33651,http://www.direct.gov.uk/en/EducationAndLearning/14To19/MoneyToLearn/16to19bursary/DG_072898,1 33652,http://www.mklearners.co.uk,1 33653,http://www.mkpostgrad.co.uk,1 33654,http://www.direct.gov.uk/en/EducationAndLearning/14To19/Courseworkandexams/index.htm,1 33655,http://www.direct.gov.uk/en/EducationAndLearning/14To19/Courseworkandexams/DG_10034387,1 33656,http://www.mlcareers.co.uk,1 33657,http://aguratsky.theorytestpro.co.uk,1 33658,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/ParentsContacts/DG_172262,1 33659,http://www.mmaf.fi,1 33660,http://www.mmiweb.org.uk,1 33661,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/Over50sContacts/DG_10030219,1 33662,http://www.mndasouthbucks.org,1 33663,http://www.mnopf.co.uk,1 33664,http://www.mnx.com,1 33665,http://www.moat.leicester.sch.uk,1 33666,http://www.moatside.co.uk,1 33667,http://www.mobiledevhq.com,1 33668,http://www.mobilityaids.blogspot.com,1 33669,http://www.mobilityaidservicesscotland.co.uk,1 33670,http://www.mobilityandlifestyle.co.uk,1 33671,http://www.mobilityequipment.co.uk,1 33672,http://www.mobilitynews.info,1 33673,http://www.mod-langs.ox.ac.uk,1 33674,http://www.model-engineer.co.uk,1 33675,http://www.modelmayhem.com,1 33676,http://www.mofcom.gov.cn,1 33677,http://www.mofem.co.uk,1 33678,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/Governmentcitizensandrightscontacts/DG_196191,1 33679,http://www.moj.coionline.tv,1 33680,http://www.mojacaronline.com,1 33681,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EnvironmentandGreenerLivingcontacts/DG_073206,1 33682,http://agradedriving.com,1 33683,http://www.molenet.org.uk,1 33684,http://www.monarchsom.co.uk,1 33685,http://www.mondeoforums.co.uk,1 33686,http://www.mondofacto.com,1 33687,http://www.money-marketuk.com,1 33688,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EducationAndLearningContacts/DG_10013732,1 33689,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/EducationAndLearningContacts/DG_066978,1 33690,http://www.moneyextra.com,1 33691,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/SpecificNeedsContacts/DG_10014900,1 33692,http://www.moneyforscrapcarsuk.co.uk,1 33693,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/SpecificNeedsContacts/DG_10014896,1 33694,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/OrganisationsAndCharities/DG_10016715,1 33695,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/OrganisationsAndCharities/DG_10014894,1 33696,http://www.moneymatters.bham.ac.uk,1 33697,http://www.moneymaxim.co.uk,1 33698,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/OrganisationsAndCharities/DG_10014879,1 33699,http://www.moneyobserver.com,1 33700,http://www.moneysoft.co.uk,1 33701,http://www.monklands.co.uk,1 33702,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/DisabledPeopleContacts/GovernmentContacts/DG_10014920,1 33703,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/CrimeJusticeAndTheLawContacts/index.htm,1 33704,http://www.monsterrecruitmentnetwork.com,1 33705,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/BritonsLivingAbroadContacts/index.htm,1 33706,http://www.direct.gov.uk/en/Dl1/Directories/UsefulContactsByCategory/%20Governmentcitizensandrightscontacts/DG_195356,1 33707,http://www.monstertackle.co.uk,1 33708,http://www.montessorinorthoxford.org,1 33709,http://www.montreal.cumbria.sch.uk,1 33710,http://www.monwel.com,1 33711,http://www.moodle.cmv.org.br,1 33712,http://www.moonmotor.net,1 33713,http://www.mooreblatch.com,1 33714,http://www.moorehelpathome.co.uk,1 33715,http://www.moorfields-private.co.uk,1 33716,http://www.moorlands.ac.uk,1 33717,http://www.moormums.co.uk,1 33718,http://www.direct.gov.uk/en/Dl1/Directories/LocalCouncils,1 33719,http://www.moorparkgarage.com,1 33720,http://www.direct.gov.uk/en/Dl1/Directories/DG_6000211,1 33721,http://www.direct.gov.uk/en/Dl1/Directories/DG_6000210,1 33722,http://www.mootango.webspace.virginmedia.com,1 33723,http://www.direct.gov.uk/en/Dl1/Directories/DG_6000137,1 33724,http://www.direct.gov.uk/en/Dl1/Directories/DG_6000100,1 33725,http://xfactor.itv.com,1 33726,http://www.mopedriders.org,1 33727,http://www.moray.org,1 33728,http://www.direct.gov.uk/en/Dl1/Directories/DG_199261,1 33729,http://www.direct.gov.uk/en/Dl1/Directories/DG_193583,1 33730,http://agilitynet.co.uk,1 33731,http://www.direct.gov.uk/en/Dl1/Directories/DG_189280,1 33732,http://www.direct.gov.uk/en/Dl1/Directories/DG_187144,1 33733,http://www.direct.gov.uk/en/Dl1/Directories/DG_186053,1 33734,http://www.direct.gov.uk/en/Dl1/Directories/DG_185997,1 33735,http://www.morecambebaychemist.co.uk,1 33736,http://www.direct.gov.uk/en/Dl1/Directories/DG_178392,1 33737,http://www.moredonmedicalcentre.nhs.uk,1 33738,http://www.direct.gov.uk/en/Dl1/Directories/DG_177589,1 33739,http://www.direct.gov.uk/en/Dl1/Directories/DG_177531,1 33740,http://www.moremoneyreview.com,1 33741,http://www.morgandrivertraining.co.uk,1 33742,http://xipinusi.webuda.com,1 33743,http://www.direct.gov.uk/en/Dl1/Directories/DG_175872,1 33744,http://www.morgannwg.ac.uk,1 33745,http://www.direct.gov.uk/en/Dl1/Directories/DG_175862,1 33746,http://ageukwestsussex.org.uk,1 33747,http://www.direct.gov.uk/en/Dl1/Directories/DG_172244,1 33748,http://www.direct.gov.uk/en/Dl1/Directories/DG_171157,1 33749,http://www.direct.gov.uk/en/Dl1/Directories/DG_171064,1 33750,http://www.direct.gov.uk/en/Dl1/Directories/DG_10029825,1 33751,http://www.direct.gov.uk/en/Dl1/Directories/DG_10027219,1 33752,http://www.direct.gov.uk/en/Dl1/Directories/DG_10026923,1 33753,http://www.morgellonsuk.org.uk,1 33754,http://www.direct.gov.uk/en/Dl1/Directories/DG_10026580,1 33755,http://www.direct.gov.uk/en/Dl1/Directories/DG_10020807,1 33756,http://www.morleydrivingschool.com,1 33757,http://www.morrell-middleton.co.uk,1 33758,http://www.direct.gov.uk/en/Dl1/Directories/DG_10016439,1 33759,http://www.morrishsolicitors.com,1 33760,http://www.direct.gov.uk/en/Dl1/Directories/DG_10015185,1 33761,http://www.direct.gov.uk/en/Dl1/Directories/DG_10014515,1 33762,http://www.direct.gov.uk/en/Dl1/Directories/DG_10014511,1 33763,http://www.direct.gov.uk/en/Dl1/Directories/DG_10014501,1 33764,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012783,1 33765,http://ageukblog.org.uk,1 33766,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012722,1 33767,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012714,1 33768,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012711,1 33769,http://ageconcernkingston.org,1 33770,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012631,1 33771,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012629,1 33772,http://www.morrisons.co.uk,1 33773,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012622,1 33774,http://www.mortgagedealshelp.com,1 33775,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012619,1 33776,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012617,1 33777,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012611,1 33778,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012607,1 33779,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012599,1 33780,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012574,1 33781,http://www.mortgageid.co.uk,1 33782,http://www.mortgagesoverseas.com,1 33783,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012293,1 33784,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012272,1 33785,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012264,1 33786,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012261,1 33787,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012253,1 33788,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012212,1 33789,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012211,1 33790,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012205,1 33791,http://www.mortlakep12.vic.edu.au,1 33792,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012147,1 33793,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012144,1 33794,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012126,1 33795,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012125,1 33796,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012053,1 33797,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012052,1 33798,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012032,1 33799,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012021,1 33800,http://www.direct.gov.uk/en/Dl1/Directories/DG_10012005,1 33801,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011964,1 33802,http://www.mosa.org.uk,1 33803,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011859,1 33804,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011805,1 33805,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011804,1 33806,http://www.mosesbasketstands.co.uk,1 33807,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011798,1 33808,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011791,1 33809,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011790,1 33810,http://www.motag.com,1 33811,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011785,1 33812,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011782,1 33813,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011781,1 33814,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011780,1 33815,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011778,1 33816,http://afpgltd.com,1 33817,http://www.motecukltd.co.uk,1 33818,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011764,1 33819,http://www.motherwellwishawcab.org.uk,1 33820,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011762,1 33821,http://xlr8drivertraining.co.uk,1 33822,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011759,1 33823,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011754,1 33824,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011753,1 33825,http://afintranet,1 33826,http://afh.larrytech.com,1 33827,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011745,1 33828,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011739,1 33829,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011738,1 33830,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011730,1 33831,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011727,1 33832,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011720,1 33833,http://www.motkingston.com,1 33834,http://www.motocykl-online.pl,1 33835,http://www.motokrasnystaw.fora.pl,1 33836,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011699,1 33837,http://www.moton.co.uk,1 33838,http://www.motonline.co.uk,1 33839,http://www.motopower.lv,1 33840,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011694,1 33841,http://www.motor-way.co.uk,1 33842,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011692,1 33843,http://www.motorbike-warehouse.co.uk,1 33844,http://afdrivingtuition.co.uk,1 33845,http://www.motorcyclekb.com,1 33846,http://www.motorcycletrainingclevedon.co,1 33847,http://www.motorcycletrainingkent.com,1 33848,http://www.motorhomes.mobi,1 33849,http://www.motori.hr,1 33850,http://www.motoringoffencelawyers.com,1 33851,http://www.motoringtuition.co.uk:80,1 33852,http://www.motoroffence.co.uk,1 33853,http://www.motorradfrage.net,1 33854,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011662,1 33855,http://www.motors.co.uk,1 33856,http://afdevelopment.org.uk:2095,1 33857,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011656,1 33858,http://www.motorvoguealfaromeo.co.uk,1 33859,http://www.motorway-driving-made-easy.info,1 33860,http://10.16.213.45,1 33861,http://aesessex.regulus.titaninternet.co.uk,1 33862,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011647,1 33863,http://www.motrustelford.co.uk,1 33864,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011642,1 33865,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011640,1 33866,http://www.moultonschool.co.uk,1 33867,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011631,1 33868,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011620,1 33869,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011618,1 33870,http://aepmotorcycletraining.com,1 33871,http://www.mouseonthemove.co.uk,1 33872,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011613,1 33873,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011612,1 33874,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011603,1 33875,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011600,1 33876,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011599,1 33877,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011595,1 33878,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011592,1 33879,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011590,1 33880,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011588,1 33881,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011587,1 33882,http://www.movetobirmingham.org,1 33883,http://www.movingforwardportsmouth.org.uk,1 33884,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011582,1 33885,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011577,1 33886,http://xml.admanage.com,1 33887,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011570,1 33888,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011561,1 33889,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011560,1 33890,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011559,1 33891,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011557,1 33892,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011552,1 33893,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011548,1 33894,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011538,1 33895,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011537,1 33896,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011535,1 33897,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011531,1 33898,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011524,1 33899,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011523,1 33900,http://advisernet.ipswichcab.org.uk,1 33901,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011514,1 33902,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011512,1 33903,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011511,1 33904,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011510,1 33905,http://xmlgw.companieshouse.gov.uk,1 33906,http://www.movingtoengland.co.uk,1 33907,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011487,1 33908,http://advice.lusu.co.uk,1 33909,http://www.mowll.net,1 33910,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011483,1 33911,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011482,1 33912,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011481,1 33913,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011479,1 33914,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011476,1 33915,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011475,1 33916,http://www.mpb-ks.org,1 33917,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011466,1 33918,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011465,1 33919,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011464,1 33920,http://www.mpc-forums.com,1 33921,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011460,1 33922,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011453,1 33923,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011450,1 33924,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011442,1 33925,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011440,1 33926,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011438,1 33927,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011437,1 33928,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011436,1 33929,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011429,1 33930,http://www.mpowerpeople.co.uk,1 33931,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011424,1 33932,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011422,1 33933,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011421,1 33934,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011419,1 33935,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011415,1 33936,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011414,1 33937,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011412,1 33938,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011409,1 33939,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011397,1 33940,http://www.mr2mk1club.com,1 33941,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011382,1 33942,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011381,1 33943,http://www.mrbvsg.co.uk,1 33944,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011377,1 33945,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011373,1 33946,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011371,1 33947,http://www.mrgleam.com,1 33948,http://advice,1 33949,http://www.mri.gouv.qc.ca,1 33950,http://www.mrmot.com,1 33951,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011302,1 33952,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011281,1 33953,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011278,1 33954,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011273,1 33955,http://www.mrs-silk.com,1 33956,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011254,1 33957,http://www.ms-bournemouth.co.uk,1 33958,http://www.ms-researchandrelief.org,1 33959,http://www.msa-scotland.net,1 33960,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011236,1 33961,http://advantageschoolofmotoring.com,1 33962,http://advancetogo.org,1 33963,http://yahoo.omgeu.com,1 33964,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011226,1 33965,http://www.msha.gov,1 33966,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011220,1 33967,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011203,1 33968,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011201,1 33969,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011189,1 33970,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011180,1 33971,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011178,1 33972,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011170,1 33973,http://www.msm.jigsy.com,1 33974,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011168,1 33975,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011166,1 33976,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011146,1 33977,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011141,1 33978,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011137,1 33979,http://www.msmadi.com,1 33980,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011098,1 33981,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011075,1 33982,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011074,1 33983,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011072,1 33984,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011040,1 33985,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011034,1 33986,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011033,1 33987,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011031,1 33988,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011027,1 33989,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011023,1 33990,http://www.msmchesterfield.co.uk,1 33991,http://www.msmdriving.com,1 33992,http://www.direct.gov.uk/en/Dl1/Directories/DG_10011000,1 33993,http://www.msmprofessional.com,1 33994,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010997,1 33995,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010968,1 33996,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010964,1 33997,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010962,1 33998,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010960,1 33999,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010953,1 34000,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010952,1 34001,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010939,1 34002,http://www.msrc.co.uk,1 34003,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010866,1 34004,http://www.mtasolicitors.com,1 34005,http://www.mtbe.co.uk,1 34006,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010837,1 34007,http://www.mtc.gob.pe,1 34008,http://www.direct.gov.uk/en/Dl1/Directories/DG_10010815,1 34009,http://www.direct.gov.uk/en/Dl1/Directories/DG_073834,1 34010,http://www.direct.gov.uk/en/Dl1/Directories/DG_073084,1 34011,http://www.direct.gov.uk/en/Dl1/Directories/DG_072537,1 34012,http://www.direct.gov.uk/en/Dl1/Directories/DG_071935,1 34013,http://www.direct.gov.uk/en/Dl1/Directories/DG_069256,1 34014,http://yamahadtclub.proboards.com,1 34015,http://www.direct.gov.uk/en/Dl1/Directories/DG_068981,1 34016,http://www.mtw.nhs.uk,1 34017,http://www.muir.org.uk,1 34018,http://www.direct.gov.uk/en/Dl1/Directories/DG_067641,1 34019,http://www.muiredgesurgery.co.uk,1 34020,http://www.direct.gov.uk/en/Dl1/Directories/DG_065327,1 34021,http://www.direct.gov.uk/en/Dl1/Directories/DG_065064,1 34022,http://www.direct.gov.uk/en/Dl1/Directories/DG_064152,1 34023,http://www.multiheatuk.com,1 34024,http://www.multiplymagazine.com,1 34025,http://www.multitran.ru,1 34026,http://www.mumplusbusiness.co.uk,1 34027,http://yandex.03compu.ru,1 34028,http://www.direct.gov.uk/en/DisabledPeople/TravelHolidaysAndBreaks/PlanningATrip/DG_4018622,1 34029,http://www.direct.gov.uk/en/DisabledPeople/TravelHolidaysAndBreaks/PlanningATrip/DG_4017245,1 34030,http://www.mumsintouch.com,1 34031,http://www.direct.gov.uk/en/DisabledPeople/TravelHolidaysAndBreaks/GettingThere/DG_4017243,1 34032,http://www.direct.gov.uk/en/DisabledPeople/TravelHolidaysAndBreaks/GettingThere/DG_4017239,1 34033,http://www.direct.gov.uk/en/DisabledPeople/TravelHolidaysAndBreaks/GettingThere/DG_197965,1 34034,http://www.munidraugi.lv,1 34035,http://adulteducation.gloucestershire.gov.uk,1 34036,http://www.munromedicalcentre.co.uk,1 34037,http://www.direct.gov.uk/en/DisabledPeople/RightsAndObligations/DisabilityRights/DG_4001075,1 34038,http://www.murrayedwards.cam.ac.uk,1 34039,http://www.murraylieberman.co.uk,1 34040,http://www.murrayspetservices.com,1 34041,http://yaseen2.com,1 34042,http://www.museumoflondonimages.com,1 34043,http://www.museumsassociation.org,1 34044,http://www.mustardsupportedlodgings.org.uk,1 34045,http://www.musu.mdx.ac.uk,1 34046,http://www.mutai-shunsuke.jp,1 34047,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/PublicAndCommunityTransport/DG_190499,1 34048,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/PublicAndCommunityTransport/DG_068407,1 34049,http://www.direct.gov.uk/en/DisabledPeople/MotoringAndTransport/LearningToDrive/DG_4016279,1 34050,http://www.mvp-search.com,1 34051,http://www.mwsbusiness.co.uk,1 34052,http://adsp02,1 34053,http://www.my-pharmacy.gr,1 34054,http://www.my-steps.co.uk,1 34055,http://www.myanxiety.co.uk,1 34056,http://www.mybem.co.uk,1 34057,http://www.mybigcampus.com,1 34058,http://www.mybike.gr,1 34059,http://www.mybmvdeals.com,1 34060,http://www.mybnk.org,1 34061,http://www.mycardrivinglessons.co.uk,1 34062,http://www.direct.gov.uk/en/DisabledPeople/HomeAndHousingOptions/YourHome/DG_10028393,1 34063,http://www.mycareermatch.co.uk,1 34064,http://www.mycareinbirmingham.org.uk,1 34065,http://www.mycarenewcastle.org.uk,1 34066,http://www.mycounciltax.org.uk,1 34067,http://www.mycsharppassion.com,1 34068,http://www.mycupofteaforum.com,1 34069,http://www.mydaughter.co.uk,1 34070,http://www.mydiabetesmyway.scot.nhs.uk,1 34071,http://ads.clicksor.com,1 34072,http://www.mydiageopension.com,1 34073,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/MentalHealth/DG_316,1 34074,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/MentalHealth/DG_10023439,1 34075,http://www.myelitis.org.uk,1 34076,http://www.myfamilywill.co.uk,1 34077,http://www.myfirsthome.org.uk,1 34078,http://ads.ahds.ac.uk,1 34079,http://www.myfutureinhampshire.com,1 34080,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/Hospitals/DG_4004057,1 34081,http://www.mygraduatecareer.com,1 34082,http://www.mygreendirectory.info,1 34083,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/HelpWithCosts/index.htm,1 34084,http://www.mygvtc.com,1 34085,http://adrianyoung.dev,1 34086,http://www.myhcl.com,1 34087,http://www.myhomemygarden.co.uk,1 34088,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/Equipment/DG_179971,1 34089,http://adriantheplumber.co.uk,1 34090,http://www.myhomepotential.co.uk,1 34091,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/ArrangingHealthAndSocialCare/index.htm,1 34092,http://www.direct.gov.uk/en/DisabledPeople/HealthAndSupport/ArrangingHealthAndSocialCare/DG_4001074,1 34093,http://www.myhouseinsulation.co.uk,1 34094,http://www.myjd.co.uk,1 34095,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/Taxreliefandreductions/DG_064481,1 34096,http://adrians.theorytestpro.co.uk,1 34097,http://www.myjobplus.co.uk,1 34098,http://www.mykeypay.com,1 34099,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/OtherBenefitsAndSupport/DG_066322,1 34100,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/Introductiontofinancialsupport/index.htm,1 34101,http://www.mylearningpool.com,1 34102,http://yatton.2day.ws,1 34103,http://www.mylittlefriends.co.uk,1 34104,http://www.mylocalelectrician.co.uk,1 34105,http://www.mymedschool.co.uk,1 34106,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/DG_10026451,1 34107,http://www.direct.gov.uk/en/DisabledPeople/FinancialSupport/DG_10023092,1 34108,http://www.mymotor.biz,1 34109,http://www.mynewsdesk.com,1 34110,http://www.mynrma.com.au,1 34111,http://www.myositis.org.uk,1 34112,http://www.mypersonalfinances.co.uk,1 34113,http://www.mypolice.co,1 34114,http://www.myprivatedatatree.com,1 34115,http://www.mypsace.ws,1 34116,http://www.direct.gov.uk/en/DisabledPeople/Everydaylifeandaccess/SportsAndHobbies/DG_4017664,1 34117,http://www.direct.gov.uk/en/DisabledPeople/Everydaylifeandaccess/PerformingArts/index.htm,1 34118,http://www.direct.gov.uk/en/DisabledPeople/Everydaylifeandaccess/LeisureAtHome/DG_4018341,1 34119,http://www.myrockport.com,1 34120,http://www.direct.gov.uk/en/DisabledPeople/Everydaylifeandaccess/Everydayaccess/DG_4018353,1 34121,http://www.direct.gov.uk/en/DisabledPeople/Everydaylifeandaccess/DG_10037996,1 34122,http://www.mysearcheagle.com,1 34123,http://www.myself.gr,1 34124,http://www.myskbook.com,1 34125,http://www.myspain.es,1 34126,http://www.mystart.surestart.org,1 34127,http://www.mystartpage.biz,1 34128,http://www.direct.gov.uk/en/DisabledPeople/Employmentsupport/SupportWhileInWork/index.htm,1 34129,http://www.mysupport.org.uk,1 34130,http://www.mysutton.mobi,1 34131,http://www.myukmove.com,1 34132,http://www.myukplaces.com,1 34133,http://yccloginfach.easysearch.org.uk,1 34134,http://www.direct.gov.uk/en/DisabledPeople/EducationAndTraining/Schools/DG_10039608,1 34135,http://www.direct.gov.uk/en/DisabledPeople/EducationAndTraining/Schools/DG_10013035,1 34136,http://www.mywot.com,1 34137,http://www.mywwwis.com,1 34138,http://www.n-e-ability.co.uk,1 34139,http://www.naaidt.org.uk,1 34140,http://www.direct.gov.uk/en/DisabledPeople/Disabledparents/DG_10037841,1 34141,http://www.direct.gov.uk/en/DisabledPeople/DG_10021425,1 34142,http://www.nadra.gov.pk,1 34143,http://www.nadsdrivingschool.co.uk,1 34144,http://www.naea.co.uk,1 34145,http://www.direct.gov.uk/en/Diol1/MotoringDecisionTrees/DuplicateLicences,1 34146,http://www.najdi.si,1 34147,http://www.nali.org.uk,1 34148,http://adndrivertraining.co.uk,1 34149,http://www.direct.gov.uk/en/Diol1/DoItOnline/WP/DG_WP194200,1 34150,http://www.nannyservice.co.uk,1 34151,http://www.nannyworld.co.uk,1 34152,http://www.nano-publishing.com,1 34153,http://www.nantwichtowncouncil.gov.uk,1 34154,http://www.napduk.org,1 34155,http://www.napit.org.uk,1 34156,http://www.narpo-wilts.org.uk,1 34157,http://www.direct.gov.uk/en/Diol1/DoItOnline/Doitonlinemotoring/DG_196463,1 34158,http://www.narscc.co.uk,1 34159,http://www.nasalton.com,1 34160,http://www.nasda.org.uk,1 34161,http://www.nasdriving.co.uk,1 34162,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_4018866,1 34163,http://www.nasdu.co.uk,1 34164,http://www.nasgreenwich.org.uk,1 34165,http://www.nasmah.co.uk,1 34166,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_170372,1 34167,http://www.nasz-bocian.pl,1 34168,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_072556,1 34169,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_070797,1 34170,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_067572,1 34171,http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_067570,1 34172,http://www.naszetaunton.co.uk,1 34173,http://www.nat.org.uk,1 34174,http://www.nataliesdrivingschool.co.uk,1 34175,http://admin.morgansindall-pensions.co.uk,1 34176,http://www.national-awareness-days.com,1 34177,http://www.nationalasbestos.co.uk,1 34178,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018166,1 34179,http://www.nationalcareassociation.org.uk,1 34180,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018114,1 34181,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4018047,1 34182,http://www.nationalforest.org,1 34183,http://www.nationalinfrastructureprojects.org.uk,1 34184,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017969,1 34185,http://www.nationaljuniorschool.com,1 34186,http://www.nationaltrust.org.uk,1 34187,http://www.nationmaster.com,1 34188,http://www.natlotcomm.gov.uk,1 34189,http://www.natowarriors.co.uk,1 34190,http://www.natura-medioambiental.com,1 34191,http://www.naturaldeathcentre.org.uk,1 34192,http://www.natwestlifetransfer.com,1 34193,http://admin.hero.ac.uk,1 34194,http://www.nautilusyachting.com,1 34195,http://www.navenbyschool.com,1 34196,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017777,1 34197,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017734,1 34198,http://www.navitas-solar.com,1 34199,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017708,1 34200,http://www.navitron.org.uk,1 34201,http://www.navy-net.co.uk,1 34202,http://www.navysteel-rust-converter.co.uk,1 34203,http://www.nawton.n-yorks.sch.uk,1 34204,http://www.nazia-driving-school.co.uk,1 34205,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017656,1 34206,http://admin.dodspeople.com,1 34207,http://www.nbacademy.org.uk,1 34208,http://www.nbtn.org.uk,1 34209,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_4017609,1 34210,http://www.nc-schoolofmotoring.co.uk,1 34211,http://www.ncb.org.uk,1 34212,http://www.ncca.co.uk,1 34213,http://www.ncejobs.co.uk,1 34214,http://www.ncf.info,1 34215,http://www.ncfo.co.uk,1 34216,http://www.nci.org.uk,1 34217,http://www.ncil.org.uk,1 34218,http://www.nclt.org.uk,1 34219,http://www.ncscomputers.co.uk,1 34220,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_196372,1 34221,http://www.ndpa.info,1 34222,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_189962,1 34223,http://www.ndsccc.co.uk,1 34224,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_187405,1 34225,http://www.ndtnorfolk.co.uk,1 34226,http://www.ne-worcs.ac.uk,1 34227,http://www.ne1driving.co.uk,1 34228,http://www.nebp.org.uk,1 34229,http://www.nebsmgt.co.uk,1 34230,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10015917,1 34231,http://www.direct.gov.uk/en/Diol1/DoItOnline/DG_10015858,1 34232,http://www.needtosellmyvan.co.uk,1 34233,http://www.neilsnowdriversolutions.co.uk,1 34234,http://www.nelft.nhs.uk,1 34235,http://www.nelsonseyepatch.com,1 34236,http://www.direct.gov.uk/en/DG_4016453,1 34237,http://www.nemm.co.uk,1 34238,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/VictimsOfCrime/DG_4016872,1 34239,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/VictimsOfCrime/DG_196116,1 34240,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/VictimsOfCrime/DG_196109,1 34241,http://admin.cambridge-steiner-school.co.uk,1 34242,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/VictimsOfCrime/DG_177433,1 34243,http://www.nerc.ac.uk,1 34244,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Typesofcrime/DG_4003136,1 34245,http://www.nerc.gov.ua,1 34246,http://www.nes.scot.nhs.uk,1 34247,http://www.nessas.org,1 34248,http://www.nessie.cz,1 34249,http://www.nestac.org,1 34250,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Typesofcrime/DG_181544,1 34251,http://www.nestoria.co.uk,1 34252,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/ThePolice/DG_182255,1 34253,http://www.net-model.com,1 34254,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/ThePolice/DG_181747,1 34255,http://www.netcu.org.uk,1 34256,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Sentencingandcriminalrecords/DG_199794,1 34257,http://www.netguest.com,1 34258,http://www.netherbrook.dudley.sch.uk,1 34259,http://www.netherfield-inf.notts.sch.uk,1 34260,http://www.netherhall.org,1 34261,http://www.netkobiety.pl,1 34262,http://www.netnor.co.uk,1 34263,http://www.netrent.co.uk,1 34264,http://www.nettrace.com.au,1 34265,http://www.netvouz.com,1 34266,http://www.networkwestmidlands.com,1 34267,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Goingtoprison/DG_181707,1 34268,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Goingtoprison/DG_181679,1 34269,http://www.new-ash.kent.sch.uk,1 34270,http://www.new7ob.com,1 34271,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Communitysentences/index.htm,1 34272,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Communitysentences/DG_196068,1 34273,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Communitysentences/DG_070333,1 34274,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Sentencingprisonandprobation/Appealingagainstasentenceorconviction/DG_196101,1 34275,http://www.newbold.ac.uk,1 34276,http://www.newbridge-nava.co.uk,1 34277,http://www.newburyleasing.co.uk,1 34278,http://www.newbyprimary.co.uk,1 34279,http://www.newcaledonianwoodlands.org,1 34280,http://www.newcastle-parentpartnership.co.uk,1 34281,http://www.newcastle.com,1 34282,http://admin.1fife.org.uk,1 34283,http://www.newcastlechildminders.co.uk,1 34284,http://www.newcastledrivingschool.co.uk,1 34285,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Goingtocourt/DG_181619,1 34286,http://www.newcastleroutes.co.uk,1 34287,http://www.newcastleyouthlinx.co.uk,1 34288,http://www.newcollegetelford.ac.uk,1 34289,http://www.newdealsupport-wp.scot.nhs.uk,1 34290,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Counterterrorism/index.htm,1 34291,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Counterterrorism/DG_181897,1 34292,http://www.direct.gov.uk/en/CrimeJusticeAndTheLaw/Counterterrorism/DG_181896,1 34293,http://www.newdrivers.org,1 34294,http://www.newfieldpark.co.uk,1 34295,http://www.newforest-odc.co.uk,1 34296,http://www.newforestmedicalgroup.co.uk,1 34297,http://adiviesiek.theorytestpro.co.uk,1 34298,http://www.newha.co.uk,1 34299,http://www.direct.gov.uk/en/ContentItemManager/index.htm,1 34300,http://www.newhopeworcester.co.uk,1 34301,http://www.newhorizonsborders.co.uk,1 34302,http://www.newhorizonspartnership.co.uk,1 34303,http://www.direct.gov.uk/en/CaringForSomeone/MoneyMatters/DG_10026158,1 34304,http://www.direct.gov.uk/en/CaringForSomeone/MoneyMatters/DG_10018531,1 34305,http://www.newhorizonstrust.co.uk,1 34306,http://www.newislington.co.uk,1 34307,http://www.newlifeconsultants.com,1 34308,http://www.direct.gov.uk/en/CaringForSomeone/MoneyMatters/DG_10012525,1 34309,http://www.newlink.org,1 34310,http://www.newlinxhousingtrust.co.uk,1 34311,http://www.direct.gov.uk/en/CaringForSomeone/HealthAndTakingABreak/DG_4006302,1 34312,http://www.newmanthomson.com,1 34313,http://www.newmills-nur.derbyshire.sch.uk,1 34314,http://www.direct.gov.uk/en/CaringForSomeone/CaringForADisabledChild/DG_180165,1 34315,http://www.newmillsschool.co.uk,1 34316,http://www.newmiltonjuniorschool.co.uk,1 34317,http://www.newmother.co.uk,1 34318,http://www.newrailwaymodellers.co.uk,1 34319,http://www.direct.gov.uk/en/CaringForSomeone/CaringAndSupportServices/DG_4000194,1 34320,http://www.newrickstonesacademy.org,1 34321,http://www.news-ball.co.uk,1 34322,http://www.news-medical.net,1 34323,http://www.news.com.au,1 34324,http://yeovil.ac.uk,1 34325,http://www.newsandongarage.co.uk,1 34326,http://www.direct.gov.uk/en/CaringForSomeone/CarersRights/DG_149,1 34327,http://www.newsar.org.uk,1 34328,http://www.newsiblandsschool.ik.org,1 34329,http://www.newspress.co.uk,1 34330,http://www.newsshopper.co.uk,1 34331,http://www.newtimes.in,1 34332,http://adired425153.theorytestpro.co.uk,1 34333,http://www.newtown.devon.sch.uk,1 34334,http://www.newvanwarehouse.co.uk,1 34335,http://www.newwave-driving.com,1 34336,http://www.newworldencyclopedia.org,1 34337,http://www.newydd.co.uk,1 34338,http://www.direct.gov.uk/en/BritonsLivingAbroad/EducationAndJobs/DG_4014675,1 34339,http://www.newyorkstatedmv.com,1 34340,http://www.newzoid.com,1 34341,http://www.nextgenerationbeds.co.uk,1 34342,http://www.direct.gov.uk/en/BritonsLivingAbroad/BeforeYouGo/index.htm,1 34343,http://www.direct.gov.uk/en/AdvancedSearch/Searchresults/results,1 34344,http://www.nextgreencar.com,1 34345,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en/,1 34346,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV2TmjAU*TW!dEYnwPLhIyxq96XdKe1zJg3RzQgEk7DWf9!bBGXYagd9al9ucu895OSci6KE1LMgn*nRARbFqu3Mz1jdVuLEStgqTXSnhTyZPad7WFpiEkoaiCfRQTx0pOJbU90KaaJkzAAlU1TyVnPRKGBoIO8qrYDIQ5Ar4MZEUdaUvNlB1RQPi59CKM3Kz1yrxddv9nKhn8B5khw7WUEWpKbkv2ndmk2fh*66X47H46LkklG92In3Rbfv660UJaZwma7G5a4v8pK2lUuC9UtJCybfOWWukBcF3qy!49d0s3L4SKlc0C!kPiPyDfYQ8pI4iXrES4GL4vVH3*fsXSHEWW3unhstof!sbIJMAxRmprYE*RWxVrDGGATmc4olafZgEGa*jKMK3BxMGYWaKCM1zMxJ4IpdwvyT3x8e!tkASRwksZAPvdj14mu9yPWia73Q9cJrvSfXezr3Ahcudwvs9BJFhWTzYWt260GART6jAT!*oJzmm48GKRpsuGVcYE9O7fKfGXdTkuckefdIWl7lQZffXjK4bE8MVmPbHf6cBmkYREmMlihy45p7o4HeMZ9HxPwb8*lgwV2yx5oG2X!n8rxHqEYWTaZCj1CNHJ9KhZaPUI0GOJnqj3!XKVSj92EyVXybyn4WxI5T!4Umkr5h1vwGYtbe9g__/results,1 34347,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vhCAQ*DW!NDFBOfx41F7vbxiC9M6cxRZs2p*fhe0dwWqjPrUvMGaWHWbWqBn0GNFjlGZm5A4SwG!wf1yGKK1bKXquZQtQS*PejwCGZ1iMFGM3KChWSBg4k9jDBlo23Aip2k6dvzv23EGpUGnsRKO5ukJBIz9foYOxzexFWFpMlhdurgBYnZaw0cpt7PiQWtbitPYlBZYUrmTC5cjlc1yGXDbHMeTYHHdA7nDjKC73u9GT82DEoGXsoUUnb8BVPhJfH9!r0PPiUVoRH8NScNR1rtz2z4JbtJSgpWSLpXJWB8PxGi5l15E!hbFj*e2RVoxmRU5KkuG44iQY6Ib57DHzN!YziWCT7dCTt*27VJLskQoiWi1F9kgFia!VIuUeqWCAq6V!fF3WSAXvw2qpfFmqtL!F4dwJ!OwbybW4NFJ9ASJribg_/results,1 34348,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TW!LGmCUPx41Hb9G4ZR6kxb6MCm27*fBdISOl3Up!0FrpzjPZ5zjRql!4RsE5x9wMaZTHD9pa6wtgoW9qYV20NxUBrW*mYPb0IcDezdwZMtouyN3Zmrs4DCXC8X2xjXCaZkB92lFuZ66g2IpAiuDcANM1zIfSdbOLWHJ!ZKIS2hZ33HG83kEQiN!LxAB9OBjn1aioun5czMEQpa49JqVm6j2xdsUVvjOlAKTykc5QnLPZYPYZnHsiGMeowOYWuPre8Y8cvj2WxE4MFwpcUqlLbaBQOOuUGBv3qwvOfRW0mFQgxjwRHXuXLbPwtu1FLqLaVzLJWDOj6coOFSdh3Jaxy7598vSUVJVuSoRJkf1yqNBjpjPkvM*I35PEUwy3bsKdj!XSpNl0hFEU2WQkukosSnSqFyiVQ0wMlSP74uU6Si92GyVD4uVdrfgmo7Dp99I5jm742Q3zs!lLM_/results,1 34349,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TW!LGmCUPx41Hb9G4Yoa0kddkCz*fxdIC3B6aI!bS!XK!fI8ZxrVA*KJOSY4OwDls8LMwmuxRsUJqEMquPK7mgo3f3Wi5YZ3gFdKq7vvdFwV4rgWsNBDdMtl52QZ9i1mz1zLZeWYJgRbaOYvAKh4V83OEGLQTp5iotReWf6Cg2tcQkLqdxCjy*YorbHdaAUnlI4ygjLPZZPYZnHsimMeoxOYXuP7R8Y8eX5bOTkPOh2UHwXWtudggHHPKDA3z1Z3vPsraRCIYa54Ig7uXLLPwtu1lLqLaVrLJWTOj6coOFSdieS1zh2z39ckoqSrMhRiTI*rl0aDXTFfLaY!RvzGUWwynbsKdj!XSpNt0hFES2WQlukosSXSqFyi1Q0wMVSP74uS6Si92GxVD4vVdrfwnAWLXz2NWeqvTRcfgOrHIZI/results,1 34350,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TW!LDHho6A!2nb9G4Y41pm2uIFL9vN34aYlOF3Up!0FLpwjx3OuQdfbIePHjMkPmF57e8vYnkqiYMdY7T6vgwOAElg74DbKtdq8dOYMu37zqkKpjScMaujaxipzAUKjv97hBNf1JigIVo6Gm3IXKMSeVTDxOkzi!MQ86mu2j5QSKWWgjLACsWIKk4jJKUwgJqawHWK7O8ZxeLwbPwUPru2tzmPpq1M0EJgHEvn5g4WeZx*lNYkxzAXHw8l1mP5ZcLOWKFqiayxVkzoYTtQIKYcT!XMaO*LvS14LLsuCVERiu3KaNHRFf7aY!Rv9GUWwynbqKdr!XYrSLVJJRIulyBapJPGlUqTaIpU0cLHUj9tliVTyPSyWKualKv9b6M9dC9e!08q2b40231CFfCc_/results,1 34351,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TW!LDFBKH48arv!DUMsbU0tbMCS*vxdIC3B6aI!bS9w9Rzu8ZxrVEtlEnJIcP4Jm!aPBDfyfObixJWGuhewDFKcpC2MNIaLK7sDXyiuvwaj4ViG4FpDp5bpDo724gJ37c2BuZILSzDM9F2rmLgBoeWPD!ige2hs9SkuR8ud6RsUtMEVbKR2Gz28YYvaGjeBUnpK6SgjrPBYMYXlHsunMOoxOoXtPLZ7YsQvr2cjR!dBd1LxNJS2OgYDjrlHgZ!!WN7z7FFSoxDDXHDEda7d9s!Cm7WUeUvZGkvVpI4PJ2i4lF1H8h7H7vnPS1JTkpcFqlDux5Vm0UBXzGeLmb8xn1EEq2zHnoLt36WybItUFNFiKbRFKkp8qRSqtkhFA1ws9ePrskQqeh8WSxXzUpX9LchL37n*DVPdteXiG7Hhh4c_/results,1 34352,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TW!LDEBKX48al3*hiGUtKQddmC3*fxdIC3B6aI!bS*ci!dcjudeg6bXQ0LaJMvfIWhxg71UpyRrjlp!!OxTDmcIqodFKnPXTHEBFUoLc78OBgoxgr2B2o4ZLtTRFpLWPrwylwplCQMbJO!g*gKETnzd4AQje!XegGblaHlj5gIJbbIKAqldoO1LZlGbZ02glJ5SOsoIKzxWTGG5x*IpjHqMTmE7j!0eGPHL893IwXkwvNciDanNDsGAY!5R4KdPlvc8W0pqFNow1zjiTq5d!GeNm7WEvSW8xlI1qeObEzRcl92J5DVuu!c*tqSmJC8LVKHcjyvF0UBXzGeLmb8xn1ELVtmOPQXbv0thvEUqatFiKbRFKur4UilUbZGKBrhY6sftskQq!h4WSxXzUpX9LfQnyeHaN4Jpfu6E!gbAH4h0/results,1 34353,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TW!LDEBKX482nX9G4ZY0pEqduLS*fxduKkEp4v6tL3AlXPgeM41aLp!iNgpStIPmB6qaZRoo!TYSnHpHgbWdS*NZzMYgCmBZwM7KmFqqS9KX2HVLjbClVJbwiAGVVe90DcgVPLrDicY1Wmnw5N8MrTC3KDgx6SAiZVu4qeXxKK2hrcZKTlSckeZYBli2RyWIpbOYRwxPocdEDs8MYbD!G7s7DyYuutl7Etbnb0Bx3wlnh!PLPS8uJWVxMewFBxzJ5du!mfBLVqiaIlusVTM6mA4XsOl7E5kb2HsyH8!spKzNM9IQVJsV0yDhm7ozx4zf6M*kwg22Q49edu*S1G6RyqIaLUU2SMVJL5WihR7pIIGrpb6cbuskQq!h9VS2bJUYX8L3VXVcO0bKfr6vZL6G7*cf1o_/results,1 34354,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWLCR1F5tOv6NwxxpDPtoAOX7Ofvwk1LcLqoT9uLXDgHjudcI966YcePO1Z!wOAH6wzUxmn*eR08LFECcw!sVvlOm9fenGE1LF5VLHXY4Ac19F3rlLkAodVfNzjB99bEswWrR4935S9QiAOTMPAmDuL4xAIaanZIlBopdaSMsAqxagorESunMIGYmML2iO3vGMfH4934KXrwnXW6SGWoTslAZD6TxC8eLPQ8u5U3JMUwFxyPJzdx!GfBzVqiaImusSQndTCcpBFTjifylzx25N!nvBG8rCsiSYntKmjW0BX92WLmb*RnFMEq27mnZPt3KUq3SGURLZYiW6SyxJdKEblFKmvgYqkff5clUtn3sFiqmpeS4Vqw574Ld4lWrntrtfkGel57GA__/results,1 34355,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWLCR1F5tOv6NwxhxJl22IlL!vN74aYlOF3Up!0FLpwjx3OuQdf1w44fdyz*gunaOAOl7Y37vgwOdiiBtQNSrZw29r21Dez6zYsKpbGeMKih1XWv7BkItbld4QTXdjYcLVg5Gj6VO0MhDkzCxKswieML86iv2SFSSqSUgTLCCsSKKSxHLJ*CBGJiCtsjtn9gHIfnu*FT8OB015sslr46RQOB!UoiP3uy0PPso7wiMYa54Hg4uQrTPwtu1hJFS3SNJTmpg!FEjZByOJG*pbEj*7HkleB5WRBJcmxXRpOGrujPFjN*oz!jCFbZTj1F279LUbpFKolosRTZIpUkvlSKyC1SSQMXS*24XZZIJd*DYqliXkr630LXtBqufWdUrz9qY!8flHqR/results,1 34356,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWLCR1F5tOv6NwxhxJl22IlL!vN74aYlOF3Up!0FLpwjx3OuQdf1w44fdyz*gulqrGs7qxoDG7Y37vsyONinBNYOqLVy2tj31jaw6zcvKpTGesKghlbXvbJnINTmdoUT*HlBQLByNHwqd4ZCHJiEiVdhEscX5lFfs0OklEgpA2WEFYgVU1iOWD6FCcTEFLZHbP*AOA7Pd!On4MHprjdZLH11igYC85VEfvZkoefZR3lFYgxzwfFwchWmfxbcrCWKlugaS3JSB8OJGiHlcCJ*S2NH*mPJK8HzsiCS5NiujCYNXdGfLWb!Rn9GEayynXqKtn!XonSLVBLRYimyRSpJfKkUkVukkgYulvpxuyyRSr6HxVLFvJT0v4WuaTVc!86oXn*Uxt4B7YB9Cw__/results,1 34357,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWLCR0F9tOv6NwxzpDPtYAOX7OcP7k1LcLqoT9sLXDhHjudcI966YcePOyY*wuStew6lcdp*XgcfdigJ67A9tMp32rz05hx24!ZVQalNJAxq6LvWKXMJhFZ*vYcTfG8NHC1YNRrelL!EQhxYHSbewCSODyyisWaHRKmQUgFlhJWIlVOYRExOYQIxMYXtEdvfMI7D*d34CTz4zjpdpDJWp2QAmI8k8Ys7Cz3PPsobkmKYC47DyQ1M*yy4WUsULdE1lupJHQwnaUDKcCJ*ymNH*m3JG8FlVZKaSGxXQbOGrujPFjN*oz!jCFbZzj0l279LUbpFKotosRTZIpUlvlSK1FuksgYulvrxd1kilX0Pi6XKeak6Xgv23HfxKtHKda!tNt9L43qY/results,1 34358,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWLCR0F9tOv6NwxxpDWtuIHL9vN34aYlOF3Up!0FLpwjx3OuQdfbYcePOybfYfpUtrv0nYalsdp93AYHu5TA2gGxVq7R5rU1Z9j1mzcVSm08YVBD29RWmSsQav31Bie4tjfheMGK0dApd4VCHFgJE6*CJI5PzKO!ZodIKZBSBMoIyxHLpzCJmJzCBGJiCtsjtr9jHIfHu*FT8OCa3uoslr46RQOB!UwiP3uw0PPso7wiMYa54Hg4uQrTPwtu1hJFS3SNpXJSB8OJGiHlcCJ*SWNH*n3JK8FlkZOSSGxXRpOGrujPFjN*oz!jCFbZTj1F279LUbpFKolosRTZIpUkvlSKlFukkgYulvpxuyyRSr6HxVL5vFTpfwv9uW3g2nda2eZSa*MN6I58Qg__/results,1 34359,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWLCR0F9tOv6NwxhpHPtcBOX7Ofvwk1LcLqgT9sLXDhHjudcg64fxh0*7pj8gEnrV6jsYNzndXSwQQmsHXBa5bSxz509w67fvKpQGusJoxo73Q7KXoDQmq93OMF1vQ0nC1ZNhjflLlCIA6th4k2YxPGBedTX7BApFVKqQJlgJWLlHCYRk3OYQEzMYXvE9jeM43B*N34KHpzuB1PE0lenaCAwH0nkF3cWel58lDckxrAUHA8nN2H6Z8EtWqJoia6xVM*qYDhRI6QcTuRPaezIvy15I7isSlITie0qaNLQFf3ZYuZv9GcSwSrbqado!3cpSrdIJRFlS5EtUkniuVKk3iKVNDBb6sftkiOVfA*ZUuWyVO1*C*2503DtO6MG*dIa!w33wnoS/results,1 34360,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWLCR0F9tOv6NwxhpDXtcBOX7Ofvwk1LcLqgT9sLXDhHjudcg64fxh0*7pj8gOmiKVR2MO7zNjrYoATWDjitctrY186eYddv3lQojfWEUY2dbgdlr0Bozdc7nOC63oaTBasmw5tyVyjEgdUw8SZM4vjEPOprdoiUCilVoEywErFyDpOIyTlMICbmsD1i!zvGcXi8Gz8FD073gyli6atTNBCYzyTyiwcLPS8!yhsSY1gKjoeTmzD9s!AWLVG0RNdYqmd1MJyoEVIOJ*KXNHbk35e8EVxWJamJxHYVNGnoiv5sMfM3!jOJYJXt1FO0*bsUpVukkoiypcgWqSTxXClSb5FKGpgt9eN2yZFKvodsqXJZqva*hf7cabj2nVGDvrTGfgOvSXne/results,1 34361,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWLCR0F9tOv6NwxhpDPtsBOX7Ofvwk1LcLqgT9sLXDhHjudcg64fxh0*7pj8gMnQglKo7WDc53V0sEUJrB2wWuW0sa!dPcOu37yqUBrrCaMaO90Oyl6A0JqvG5zgut6GswWrJsO7chcoxIHVMPEmTOL4xDzqa3aIlAopVaBMsBKxcg6TiMk5TCAm5rA9Yvs7xnF4vBs*BQ9O94MpYumrUzQQmM8k8osHCz0vPsobEmNYCo6Hk5sw*bPgFi1RtETXWKpndTCcqBFSDifylzR25N!XvBFcViWpicR2FTRp6Ir!bDHzN*oziWCV7dRTtP27FKVbpJKIsqXIFqkk8VwpUm!RShqYLfXjdsmRSr6HbKlyWar2v4X!3Gm49p1Rg35rjf0Gu856Bw__/results,1 34362,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWLCR0F9tOv6NwxhpDPtcBOb7Ofvwk1LcLqgT9sLXDhHjudcg64fxh0*7pj8hEkbq28OFnYw7nYdHexRAmsHtFY5wF87e4Zdv3lVoTTWE0Y1drodlL0AoTVfH3CC63obDhesmgzvyl2gEAdWw8SbMInjE*Oor9khUiqkVIEywUrEyjlMIibnMIGYmMP2iO3vGMfh8W78FDw43Q!miKWvTtFAYD6TyC8eLPS8!ChvSIxhKTgeTm7C9M!CW7RE0RJdY6me1cFwokZIOZzIX9LYkX9f8kZwWZWkJhLbVdCkoSv6s8XM3!jPJIJVtlNP0fbvUpRukUoiypYiW6SSxHOlSL1FKmlgttSP2yVHKvkesqXKZana*xb6c6fh2ndGDfqtNfYbWcZ7Yw__/results,1 34363,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWLCR0F9tOv6NwxhpDPtcBO37Ofvwk1LcLqgT9uLXDhHjudcRdcP444fd0y!w*BZkZpAbQfjPq6jgyXq5w5YrXLa2OfOnmHVL15VKI31hFGNnW4HZS9AaM3XG!zgut6GvQWrJpdX5S5QiAOrYeBNGMTxgXnU1!wQKRVSqkCZYCVi5RwmEZNzmEBMzGF7xPY3jOPl*mz8FDw43Q!miKWvTtFAYD6SyC*uLPS8eCtvSIxhKTgedm7C8M!CW7RE0RJdY6me1cFwokZIOezIn9LYkX!b8kZwWZXwFUhsV0GThq7ozxYzf6M*kwhW2U49Rdu*S1G6RSqJKFuKbJFKEs!VIvUWqaSB2VI*TpccqeR9yJYql6Vq*1voz52GY98ZNeiX1thvkwZ6KQ__/results,1 34364,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWLCR0F91Hb9G4Yw0pm22IlL9vN34aYlOF3Up!0FLpwjx3OuQdf1w44fd0x!wHRXsGL10N4M7NjeuM*r4ACgBNYOuI1y2ti31p5h129eVSiN9YRBDa1uemUvQGjM1x1OcG1ng4JgxWi4KXeBQtSshIlXYRLHF!ZRX7M6UgqkFIEywnLE8ilMIianMIGYmML2iO0fGMfh!W78FDw43fUmi6WvTtFAYB5I5GdPFnqefZRXJMYwFxwPJ1dh!mfBzVqiaImusVRO6mA4USOkHE7kr2nsyH8seSW4LHJSEontymjS0BX92WLmb*RnFMEq26mnaPt3KUq3SCURLZYiW6SSxJdKkXKLVNLAxVI*bpclUsn3sFgqn5cq*W!hO7carn1nVK*fG2O*AekefOE_/results,1 34365,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWLCR0F5tO36NwxxpDPtsBObdP9!F25agtNFfdpe4MI5cjznGnRt12*4YcPkJ0xX*QWV7Yy7XXoHG5TA2gGn0q429q2xJ9j1mxcdSmM9odd9U1edtmcgVOZ!hRNc09pwsmDFYPjQ7gyF2DEFEy*DJA4vzKO!ZrtIKZBSBMoAyxHLxzCJmBzDBGJiDNsitn1gHIfnu*Fj8ODqtjNZLH11jAYCc08iP3uy0PPko7wkMYap4Hg4uQzTPwtu0hJFS3SJJTWqg!FEjZByOJG*prEj*7HkpeCyyIkiEtuV0aShC*qzxszf6M8ggkW2U0*R9u9SlK6RSiKaLUXWSCWJz5Uiao1U0sDZUj9ulzlSyfcwWyqfllL!t9CemhqufWd0V79Xxn4DnCN6LA__/results,1 34366,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWICUvx4tOv6NwyzpDN2sAFb9vN34aYlOF3Up!0FLpwjx3OuQauN27HjLi*eYXrWejib*rNXFyetg11lpP24OgsgJbC2wG!F7aQ6Awl2*eZVhFIqT3DC9V1rhBqA0MqvNzjB9loFFZ5Xo!FV2AEKfshrmFgTJn58yD3q6*wQKRVSqkAZYSVi5RRWIFZMYRwxPoXtEdvfMIbD*d3YKXiwnTYyi6WvTtFAYD6SyM*uLPQ8!yhrSIxhLjgWTm7C9M!Cm7VE0RJdY6me1MFwokZIOZzIntLYkX9bsoazoipJTQpsV0aThq7ozxYzf6M*owhW2U49Rdu*S1G6RSqJaLEU2SKVJL5UitRbpJIGLpb6cbsskUq!h8VS5bxU7X8L!tJ3cO1bKUz30kr1DQwif0A_/results,1 34367,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWICUvx4tOv6NwyxxJo66MAl67*fhZuW4HRRn7YXuHCOHM!5Bq02w44dd2n2AdPlfja6b!!wVEbaz36wsEsJrC0Qa2Ebqc6damHXbfbCl1I5wiCGrqmNUFcg1PLrBifYTit*PE!L0fAu7BUKfkhLmFjlJ358SR3q6vQQKAVSCk8ZYTli!RSWIZZNYRwxPoXtEds*MIbD893YyXuwjTYyCaWrTsGAZ76SwE!eLPQ8!yirSIhhLjjmT6789M!Cm7VE0RJdY6mc1MFwgoZP2Z*I3uLYkf9YsoqzrMhJSTJsV0Kjhq7ozxYzf6M*owhW2Y49Bdu*S1G6RSqKaLEU2SIVJb5UipRbpKIGLpb6cbsskYq!h8VS!bxU6X4Luu0auPatFKa51FJ9A1pNfFQ_/results,1 34368,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWICUvx4tOv6NwyhpDV12IFL9vN34aYlOF3Qp!0FLpwjx3OuQTuYcceOu7z4gEleu*4spFGw1kbZz360sE0JrC0wW2Gl0udOX2DXbfbCl0o7wijGTrZG6BsQWvV1hxNsN2h*Ps!ryfAu7A0KfshrmFjjJ358yR3q6vwQKBVSKk!ZYCVi5RxWIFbMYRwxPoftEds*MIbD893YyXuwcjAqC6WrTsGAZ76SwM!eLPS8!ChrSIhhKTjmT2789M!CW7RE0RJdY6me1cFwgoZP2Z*I3uLYkf9YsoazoipJTQpsV0ajhq7ozxYzf6M*kwhW2Y49Bdu*S1G6RSqKKFmKbJGKEk!VIvUWqaiByVI*bpcUqeh7SJYql6Vq91sYLp2Ea98qYeS1VfobfQ98gQ__/results,1 34369,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWICUvx4tOv6NwyhpCN2uIlN!vN34aYlOF3Qp!0FLpwjx3OuQdsP444dd3nxBVOnzxZKMyh7u44WdiiBtQVSK6xU5qzNBXbd5lX4UhlHGMWoZTsI0wGhVfdPOMHq3vijeV5Nhg9hOyj4Ia9hYo2f!PEld6ir80OgVEipPGWClYiVc1iBWDGHccT4HLZHbP*AGA7Pd2Mn78HKflBZKF11CgY885UEfvZkoefFR1lDQgxLwTF*cuOnfxbcoiWKlugaS*WsDoYTNHzK*kT2FseO*MeSNZwVVUlqUmC7Mho1dEV*tpj5G*2ZRLDKduwp2P5ditItUlFEyVJki1SUeKoUqbdIRQ1Mlvpxu6RIRd9DslS5LFW730J*0RKufavEIN9bZb4BBjZ6jQ__/results,1 34370,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWICUvx4tOv6NwxzpCO1sAlLtn!*CzctwemiPm0vcOEcOZ5zDVozuB077vLiHaarceZZ9cp9wYYepP3onYV9SmBtgdoK20n9ovQZdv1mL0IptSc44VTXDkJfgNDKzzc4wSqjgwDPq9FwFfYCBT*kNUysCRM*PuQe9XV!iJQKKVWgjLASsXIKKxArpjCOGJ*C9ojtbxjD4f5u7BQ82M4MMoulr07RQGA!ksjP7iz0PPsoa0iMYS44Fk5uwvTPgpu1RNESXWOpntTBcKJGSDmcyJ7S2JF*W7KGs6IqSU0KbFdGk4au6M8WM3!jP6MIVtlOPUXbv0tRukUqiWixFNkilSS!VIrUW6SSBi6W!nG7LJFKvofFUuW8VO1*C!asOrj2rRRD99pK*Q3KxX0u/results,1 34371,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWICUvx4tOv6NwxzpCO1sAlLtn!*CzctwemiPm0vcOEcOZ5zDVozuB077vLiHaarceJZ9cp9wYYepP3onYV9SmBtgdoK20n9ovQZdv1mL0IptSc44VTXDkJfgNDKzzc4wSqjgwDPq9FwFfYCBT*kNUysCRM*PuQe9XV!iJQKKVWgjLASsXIKKxArpjCOGJ*C9ojtbxjD4f5u7BQ82M4MMoulr07RQGA!ksjP7iz0PPsoa0iMYS44Fk5uwvTPgpu1RNESXWOpntTBcKJGSDmcyJ7S2JF*W7KGs6IqSU0KbFdGk4au6M8WM3!jP6MIVtlOPUXbv0tRukUqiWixFNkilSS!VIrUW6SSBi6W!nG7LJFKvofFUuW8VO1*C!asOrj2rRRD99pK*Q1yA30g/results,1 34372,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWICUvx4tOv6NwxxxJp2sAFN!vN34aYlOF3Up!1FLpwDx3OuQauN27HjLi!!YOi1O0szqN5pBUvKSHu7OgsIJTC3QG6F7aR6Bw6s!sWrCKX0G6wTbuhaI9QFCK28f8IJdoDDvATPq9HjQ9gLFPyQ1zCwJgz8!JJ71Nf5IVIqpFSBMsJKxMoprECsmMI4YnwK2yO2f2AMH893Y6fgwXbayCyWvjpFA4H5SiI*e7LQ8!xW1pAYw1xwLJzchOGfBTdriaIlusZSPamD4USNkHI4kb2lsSP*MWUNZ0VVkpoU2K6MJg1d0Z8tZv5Gf0YRrLKdeoq2f5eidItUEtFiKbJFKkl8qRSpt0glDVws9eN2WSKVfA!Lpcp5qdr*FnQ*dHDtWylMd26l!gbkRn36/,1 34373,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWICUvx4tOv6NwxxpDPtcAPa7OcP7o0lOF3Qp!0FLpwDx3OuUTNou2PHXV4YK6CkxC0!XXEX1lVKS3O7WjMixh1ohemkeu3V2e36zauAUiq8x*Zdq4W6OEIrvz7cDaYfFMjwvJoM78JcXMEPee0m1sDEj0!5R32dHwKlQkoFlAlWIlbOYQVixRzGEeNz2B6x*YgxHB7Pxk7gwXSDllkofXUKBoD5TAI*e7DQ8!JR1pAQw1JwDG5uYPpnwS1aomiJrrFUz!pgOEEDUoYb2UscO*LHJWs4K6qS1KTAdmU0auiK*mwx8zf6M4lgle3YU7D9uxSlW6SiiJKlyBapKPFUKVJvkYoamCz14!uSIhW9D8lS5bJU7X8Lw7nv3GffSKG7t1aqb3yXfeU_/results,1 34374,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWICUvx4tOv6NwxhpDV1sIlN!vN34aYlOF3Qp!0FLpwjx3OuQWuGcceOu7z4gkn08mKk6WGpB2Vv*WhhlxJYWyC2wkql3zt9hl232QtfKu0Ioxg72Q5CX4HQqvsnnGA7o*3xPK8mw4ewVyj4Ia9hYo2f!PEld6ir80OgVEipPGWClYiVc1iBWDGHccT4HLZHbP*AGA7Pd2Mn78FKM6gslK46BQOe!UoCP3uy0PPio6whIYal4Jg*ufHTPwtu0RJFS3SNpXpWB8MJGj5lfyJ7i2NH*mPJGs6KqiQ1KbBdGY0auqI*W8z8jf5MIlhlO*YUbP8uRekWqSiiZCmyRSpKPFWK1FukogYmS*24XVKkou8hWapclqrdb8GcOwnXvlVikJdW6W89S3wn/results,1 34375,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWICUvx4tOv6NwxB0pl2uIFNtn!*CzctwemCPm0vcOEcOZ5zDdrBjDt23OXFB0xGdTfdCd3JL9jRRtnbdbQAUAJrC9xWWKl01!sz7LrNq*Cl0o4wirGXrRH6AoRWfb7DCbYftFfgeTUZ3oS9QMEPeQ0Ta*zEj0!5Q12dHwKlQkrlKROsRKycwwrEijmMI8bnsD1i!zvGcHi8Gzt5D1YORmWhdNUpGPDMZxL42YOFnhcfZQ0JMSwFx*zJjZ*!WXCLlihaomss1bM6GE7Q8Cn7E9lLHDvy70vWcFZUJalJge3KaNTQFf3ZYuZv9GcSwSrbsadg!3cpSrdIRRElS5EtUlHiqVKk3iIVNTBZ6sftkiIVfQ*JUuWyVO1!C8O5l3DtWyWMfG2V*gaGYX1z/results,1 34376,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWICUvx4tO36NwxxpCXt0HFdsp!*C6QlOF3Qp!0FLpwjx3OuQejNuGOnXV584CSGwUg9KriqAXBPGwmf9xEQogTXgOxWQCf1m9IX3LWbd!FKqS1hFKPqWiP0DQmt*MLzAFSvnQbPq8nwLuCGBT*kNU6scRM*veQWtXV!CJTKUypHmWClx8o5rPBYMYdxj*E5bO!x*QNjfni!Gzs7D9D1RmahtNU5GHDMIwn87MnynhcfZQ0JMSwFx9zJjZv!WXCLlqi3RNdYqmd1fDhBw6XsTmSvceye*1iyhrOiKklNCt!ujEYNXdGfLWb!Rn8mEayyHXsKtn!XonSLVBRRshTZIhUlnipF6i1SUQOTpX7cLilS0feQLFUuS9X2t9BfVIfXPkhhumsr9Te9oH5s/results,1 34377,http://www.nfauk.org,1 34378,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWICUvx4tHX9G4Yw0pla6MQm*fm7cNMSnC7q0*YCF86R4znXoDX9sGP1Ls2!YJLmeutEqwcLG7pX9t5ByWpKYG2B2ggrlf5o9Rl23WYnfKm0IwxiaGXTC30BQqMeNzjBtkZ7AZ4Wo!Eq7AUKfkhLmFjlJ16*pQ51dXoIlAIphaeMsByxfArLEMumMI4Yn8L2iO2fGMPh9W7s5D1YaXqVhNJVp2DAM48k8JMXCz3PPsoqEmKYC475kys**bPgZi1RtETXWCondTCcoOFT9iey9zh25D!XrOIsK3JSkgzbldCooSv6s8XM3!jPKIJVtmNPwfbvUpRukYoiWixFtkhFiS!VIuUWqaiBi6V!3C5LpKLvYbFUPi9Vut!CObcSrn2rRC8*G6W*AVihfRw_/results,1 34379,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWICUlQe7dffMMyRzrTDDWzSn78LNy3B6YI!bS9w4Rw5nnMN2t4MG3bY5MUXTPr2qgzU2ih7uw4WtiiBtQVWI22r9Funz7DrNq*Sl0o7wiCHrm2M1BcgNOr!CSfYrtf!bJ5Xo!FD2gsUfJcLmFjtJ354yR3q6nwXKBVSKk8ZYSVi5RRWIFZMYRwxPoVtEds!MIbD893YyXuwbW9UFkpXnYIBz9yTwM!eLPQ8!yirSYhhLjjmT6799M!Cm7VE0RJdYklM6mA4QcOn7E9kxzh25D!WrOasqEoiSIHtymjU0AX9WWPmb*RnFMEi27GnYPt3KUrXSEURJUuRNVJR4qlSRKyRihqYLPXjdkmRir6HZKlyXkq430J*7lq49q2Spn1vlP4G1d16*g__/results,1 34380,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1vgyAU*TV9WWIC3uLHo53r3zDEkda0gw1stp8*4KYlOF3Qp!0FLpwjx3OuQaP0uIN2lxcfdvrkWpzVzQzyZHekFuZ2HY0FKLFrY7kdN72Qr44Ardu8cl8K6QgjH4e!01xeLKETX!*2BDMo6RVYXk2GN24utmCHvLYTNH5i7VPuUFfnh0CpkFJ5ygQrESvnsAKxYg5jiLE5bI*Y*o4BDo93g6P3YHqlRRZKVx2DAc98JoGfPVjoefFRaEiIYSk48Cc3fvpnwS1aomiJrrFUz!pgOEHDp!xPhJc4duTfl9AwKKqS1KTAdmU0auiK*mwx8zf6M4lgle3YU7D9uxSlW6SiiJKlyBapKPFUKVJvkYoamCz143ZJkYq!h2Spclmqdr8FdRp6e!0bwXV*7oT8BjGQfY4_/results,1 34381,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1rgzAU*TW!DITENH48ph!CYNcyumcRFzppFzfjYD9*NwltiNOhPm0v3hvPMcdzrkTZtJ1Htl4QfkBJn*PcC9anbL!Dwo7HPNuwU3Z4hFV6eNoDTbRcfl47CWyMYC1hg6KUFRcvtTjDXXXzWuqWC0Xoyq6uirYUFyAU*OsddpB1I7QsDeLe5a2UF2joOkigEKYL3T4EClV9sLaU2FBiTelhkcGiISw0WDiEUYPRIWxlsNUNI!ZyfzeSag!yalru21Z1qTWgmRtk!f6dZTyPPkoYsjGMBUf0zkyXfxbcqCVsLOE5lpJBHROO1dAp6x3Jzo3d8G9LwigJ4wglKDTj8rEz0BnzWWLmb8ynF8Es264na*t3KYyXSDkRTZZCS6ScxKdKoWSJlDPAyVI*TpcpUs73MFkqGpdK1G!hOdcVHPuSl231WnDxDaXggXc_/results,1 34382,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1rgzAU*TW!DAr5aKI!am1hLxt0HexNggudtIubcbCfv5uENsTpUJ!6l!Qm5yTHc66obtouokVE!CdMh!wlIvlmvy3uD09Q7Z8fYHyEgatW6q9zp4GFEaw1HCyFrqR6rdURds3mWdhSKkPoRFdXZSvUCQil*P6AG3TdKCvHSNIb3oU!QcFyksJEMzux4o4Y1NQk95TEURJL6WGxw!IhjDuMD2HMYWwIWztsfcGoG67PRnfWg66aVq58aaqdN2CZG!T5qyvLeR49SjPkYxgLjtqbMzv9s!BGLWFnCc!xlA7quHC8hk3Z3ki3YeyOf1nSjFGexChF3LVrhYOGzujPEjO30Z9eBLNsh5687b!lMF4iFUQ0WQotkQoSnyqF0iVSQQMnS*36ukyRCt6HyVLxuFRqfgvNsa7gs6!laKu3UqofJ1F*Og__/results,1 34383,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVV1PwjAU*TW8mLB0q*vgcWNDlxg1Dh98ambbwAK02Bbx59uPyTIFM3jSl7b33rN7es5lQ3KhRjAfBdGb3vKySrPyrpy*jIIsK!6LWTmv9HFa3M!fCg1igsrdWkmN9YGOpX4c1RJTRhq20FmTfPNeOZeKkttGSe*hyfYPg0Q3EvV!J9Y6gqlJBUultubQxmEwa7f9fu!RRlCsvAV*93arNr8VnCDMmdxtEFm0yYbg7doFcFYSXFHx3mDqEnlVoZtijh7Tm8LhI8YJLUlbTpI2W1aoqh6f27Rv76eXONuY!!aBxU2lDYApaFWZyU205nVt5VNmTFG1ajASNVtpUxD92GrXZMNZZ0Rv2dTSyAsz00k7Ybcwvwra5mGQdZDEQRIL!VaLXS0!VotcLTpWC10tPFa7drXrrxp0y!Fu0E4skZgLOu6O5jTrBFjkFHT48QHlNJ98FKags!GUcdB2Tu32z4w7Kcl3kvxzJE2O8oDD!5Z0LtuOsOjb7vBfIUxDGCUxmIDIjWvs9wZ6xnwuEfM35vPNgrNk9zV1sn!n8v1LqHoWDaYCl1D1HB9KBSaXUPUGOJjqx9dlCFXv9zCYKj5NZf8W!KLB!rMvaS3wElH2CXmqw!Y_/results,1 34384,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVUtz6iAU*jVuOmOGgCFxmTRq3fR2mnvXTArUZqpgIdb788sjmqHVTnTVbjicB!fjO!eQaKnaESpHEL8Z8cQFf25abVShuN6tzRaVMTC6NoGk1pQL1oiVsVrjW*QkpW45uzOHoj!PLlMCsxEsVL3fqbXRUG5N8KVtt3bT6Qmcd2K*30esUZy20Uq!R7vXzr5VkhEqhd5tCFt1xobR7doraL5ktOLqvaHcG8qqIovZX*KQL2Y!HgvJ!JJ17hiCzrysSFU9*DvY3QXNkhYbe!HSEkjgrXaKPZMaWoW1TY00NL3yc2hqXUp6X28OEeWCTECcZRgPJJz!MsJBXydpOpAm*oYmXtdurrmw097WbUOJqsWrmXbC*2*Nc9CNFP2EB8um1pZfUthMphROJOUN7JInsOhDMh!SuZBPvtT70lM!7H34lC*xvuSUb!J9k4MP!eV4N!RalmkqFR*3W7ub9wRc5C3o48fHKM*57FGUg74M5wqHXObciV9WuLOUYk8pvoTS9CQOOD64rK!yy4hmYdl9*EFFeYJwloIpwL5d4zho6AX9uYbMz!jPpxJcRDvk1NP!HiqOr4EKSjQYClwDFVR8KBSYXgMVNHAw1JevyxCoYB4GQ6XnodxvQa4aaj77mteKvhAuPgCXDT2J/results,1 34385,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVUtz2yAQ*jW!ZMYaENbrKEW260ubqdozQxBjM5HBATlq*315yNYotTOyT8lll32wH98uSFqqdobKWRjrlrglMOtXo3eym4UFEX!NfCbixaidbHhNrIMLI0IAoUkWiulj02qzB9rN2pTERFMmai62p4rBs5S6ZfU33urgx0!HGYWpKaNId1SNsVBuXeGubQ920dtRuOpV13VBzRWjbbCVb8HxpfcflKwxlUIf97je9k5e00PjDbTa1LRi6o1T5h1lVeH18hd!ytdLnx8LWbNN3YfjDPXuTYWr6ul374fugEYkxd4euLQEovBROwPYgKFVWF9mtKHpjc9DU!tS0u9kf8oo1xgCgBYJhBMZJ1!fMUhQspjKN*6Ab9wQd8OZ8A!o5RQr81bMvcfsz8E8DM2lGO76SOyJtkSjwlYyPXEqKh*CvngUFkNK6lNSl*IulvhYcikW!1h8KRb5WHQptvCxxSmGvDifDbnZpZpKxebD0q5WAwGX!QiG*Pk5y3O!uhXlYGjDtcYhVzl36os17iol6CnBWyhlF3HA!eWlQ5ddRbQct93nn0yURyhOE5CB2I9rDkcDvWE!95D5HPN514KbaI85DbQ*hoLwHqhRiyZDgXugRh2fCgWye6BGA5wM9d*XZQrU6D5MhkquQ7nfgtxyaj77mhFFd5iJf*BhTEs_/results,1 34386,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVUtz2jAQ*jVcOoNHD*zgaMdAubSZuj1rHEkDarBFJBH686uHweMEMoZTctFq91vvp29XtrVUZoLLCUperKFbJbRphJ6g4q98siZpFdeHndEWhcD62j5Aak15y0S7sVEXfImepNSGs!*C6OjnL18xRpkto!rjQe2sh3MXQltj9m7T!TFaduZ4PEZMKE5NtJGv0eG5i!!VZITKVh8awjZdUDC63wUHL9eMVly9CspDoKwqslr8Jo*5ahHyE61LSX*UzSmjXBEIAAYQz7qMdUWq6vFPh0N*VrukRePOXjotMXrQ3gEOsAoLF5tbaxUH5*MobiXja3aSA!BImelXlokgGikz!UBmsqv9xeatu!6mNoISVbfP9roT*m9v3wctZNtf8cHS1NrpiwtXybbCm7j8hrriMSr6lCykZD7lDZYGLL2EJQFLLmFxwOJL2CxgsxOGw3I!G*YjyzSVik*7rdstewE!8wH0!dNzVtB89VGcg74N1xqHfeXcmy*WuKuSYJAEb5E0v8gDzi9c1nfZV8SLYdtD*snFeYyTLAVzkIRxTeFgoDfM5x4xn2M!b1pwk!yhpl72x1QQ3kM1aNFoKnAP1aDjY6nA*B6qwQBHU737uoyhGtyH0VTpdSr*W5AbQe1nX*Na0S3h7X92VkBj/results,1 34387,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVUtvozAQ*jW5VAryI!ZxDCXJ9tKtlt2zRY2VoPJIbUj25!*YJkG0SUVy6l5sz8zHfP5mBtCNamc0mRH*Hbay0e2MxHvVHApdNHVWglUWQtZCwmnXVa9SAbZWUndlq!ERjMDWkIVnGnB5UW*Ba5zv3msD!WT!o2i19*OXpWEkhEQqO3YKcjO6NC6ya9u9OfQ2I!t!Ox6PXl4oKVpv2xy87q33ww1zLppadxXPt72zyMW!dAZdP!UilepQmIsbR5KmfLP6zV!Wm5XD!1onjXjOqhMi2XCMECYML3rEU8rT9OVPH8f2rrAEcWXunhgtjDxqayATAIWx8UWwg2JnfHfFlPgRmqg4!EKxX2a2!bI2I9FmbSG4yuo3GAku*!5hZsxMDWMwWqpMG6ksNpmgKnZjyQPpkzMSD5DQQUIL!RALXCy4FPNdzL8UYy7GLsUWLrY4xahbznejtnuhFo2S8!FoTutBgEU!ogE*P6Oc5quP0iUaynCtcNRmXtrtPyvcVUnYScK3SIou8qDzuxcOVbYZ6Wpcdoc*mXTJqB8GKEK!a9ccjxp6Q3*uEfM9!vOhBDfJHmsaZH9NhfE9VKMSTaZC91CNKj6VCkX3UI0aOJnq09dlCtVoHiZTBdep7G!h2RYCPvtaZkrsuKz*AdYNDU4_/results,1 34388,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVUtuwyAUPI03lSzxCf4s7aQ5QC9gIYoSlBQ34Eg9fh!gBOHale1Vu4EHMzCeeZZtezNk9JCR4gbTmxLnISPt0MPAxe2ujARIG2nv18ECAyNYWzjUcSukflf6BLtu88p9KbUjDHxQojNcX4DQya9PuMGqXnspRqrR8MHtBQrWkhom2viJHV6IQ11N2kipAqXylBFWBqycwoqAFVMYCxibwnYB2z0wGobns9Gj92BFb2QeS1cdowHP3KPIz5!s4Hn2KG1QjGEuOOpvbvz0z4KbtYSDJbzGUj2pE8KJGj5lfyN9TWMP*MeSNowWVYlqVIR25Thp6Ir!bDHzN*ozimCV7dRTtP27FMZbpJKIFkuhLVJJ4kulUL1FKmngYqkfX5clUsn7sFiqnJeq3W!hPykBn30ruRHnTupvBvN*2w__/results,1 34389,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVUtuwyAUPE02lSzxCf4snaa5hkVdlKI40AKV2tsXeEoQrl3ZXrUbeDBjxjPPwlYbt6PHHSnf*XTVTptnOUj35XeUEfZjcNYDGPm19dyO216oF6nOfjdsDjyWQgWC4072neHq4gmd!HzzJ1ipVVRgpB4NV24vvmAH0viJtnFixwcS0FCTQ6LUQKkjZYRVgFVTWAlYOYUxwNgUtgdsf8MoDPd3o6fowfbaiCKVoTolA5H5iBK*uLPA8!yjtEUphrngaDy5jdM*C27WEgZLeI2lZlIHwkkaMeV4In3KYwf!bUlbRsu6Qg0qoV0Fzhq6oj9bzPyN*owiWGU795Rs*y6F8RapLKLFUmiLVJb4UinUbJHKGrhY6sftskQq!x4WS1XzUk34Leiz7P21bwU3*Wsn1Dejbn2g/results,1 34390,http://adidavid.theorytestpro.co.uk,1 34391,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVUtugzAUPA2bSkj!xHyWECBdtVJzAGRRK0VJTYOp1OP32VZimUIFrNqN*ewZe5h5CFTXDwEtAhJdYdo*Ph3KgOTPFQxZ8VIej4DIXqjPy6CAgBGsFZypuWqEfG3lCXb15oWbUkhNGPjQNnXP5RkItfj6gBtU20mjxEgyGt65OkPBcpLCRDMzseKBaFTXJHeUxFISQxlhscXiKSyyWDSFMYuxKWxnsd0No3a4PxutjAfVdL0IXamryhkwzD1y*PDOsp5nj9IMuRjmgqPm5sxM*yy4WUvYWsJrLKWTOjYcp2FSNjfS0o*d8m9LmjEaJTFKUWTbFWKvoSv6s8XM3!jPKIJVtn1PzvbvUhhvkfIiWiyFtkh5iS!VQukWKa!Bi6V!fF2WSHnvw2KpeF4q1b!F7tQ28NlXgvfNWy3kNwZAfdA_/results,1 34392,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVUtugzAUPA2bSkj!xHyW0JAsKgUpPQCyqJWipCbBVOrx!2wrsUyhAlbtBj97xh5mHjKq7fqAbgMS3WDYH4v9a3kISJ4dYC3Pj2X5UgAoO6E!L70CDkYwV7Ct4qoW8q2RJ1jVixduSiE1oed9U1cdl2cgVOLrCieoppVGjJFk8Pjg6gwFy0kKA83MwLZPRKO6JrmjJJaSGMoAiy0Wj2GRxaIxjFmMjWEbi23uGLWPx7vRnfGg6rYToSt1tXMGDPMZOX74YFnPk1tphlwMU8FRc3Jmhn8W3KQlbC3hJZbSUR0bjtMwKZsTaeHHbvn3Kc0YjZIYpSiy7Qqx19AF*Vlj5m*0ZxDBItu!J2f7dymM10h5Ec2WQmukvMTnSqF0jZTXwNlSP26XOVLe9zBbKp6WSvVvoT01NVz7SvCufq!E*AYEfX6!/results,1 34393,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVUtrhDAY*DVeCkIeGx*H6CoUSgtle5Zgw1Z2G1tjoT!*ebAbYrVET9tL8iUzyTjzicp!GCO8j1Dyqaaieqzq!0OEipKWLw*08PSsEDFw!XUepSJAoNZSnWmYbLl47cRR7erNMzMlF5owsrFrm4GJkyI0*PtD3SC7XhglgrLJ8M7kSRWkQLmaMDUT2d8hjeoaFY6SWUpmKBMstVg6hyUWS!YwYjEyh!0strtg2A7XZ8O18SDbfuCxK3VVOwOGWQLHj68s63nxKKbAxbAUHDY3UzP9s!AWLUFrCa6xlM*q2HCchknZ3IgrP3bLvywxJTjJUpCDxLYrhl5DV*Rni5nb6M8kglW2fU*O9t9SEG6R8iIKlgJbpLzEQ6VAvkXKa2Cw1K!vS4iU9z4ES6XLUrn!LfTHrlWffcnZ0L41XPwAwtF!Fg__/results,1 34394,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVUFugzAQfE0ulZBsHBs4kqT5BrKolaJQk7JU6vNr7zaxTKECTu0FL8x4h5lFBrp!2InTLlUwaCyZq9*d2t40uNL2Bj7aAdwT7iFwGyoNtbEvjb1881uNpbHUZ2jqqtf26giV!by5DtB0FmVkmo8ubxqurpCHtHCLKHGRp6fUo75OD4GSEyVHygjLCMumMEWYmsIkYXIK2xO2v2OCLo93E2f0AHXXmySUvjoHA8g8ssBPHizyPLtVlCzEMBecwM4lLv8suFlLnCzxNZaKSR0KJ2hgythRPMexE*9!K0opVJ6xgikaV8Kjga6YzxYzf2M!owhW2Y49Bdu*S3G!RSqKaLEU2yIVJb5UihVbpKIBLpb6cboskYq!h8VS2bxU4X8L3aWp3bEPRvf1a2XsF8YBfhk_/results,1 34395,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVUFugzAQfE0ulZBsHBs4kqb5BrKolaKkJmWp1Od37VVimUJlOLUXvPYMO8wsAuiHcSeOu1x94HIzFnqLGzsY!LyOgGec4R6Q1mhojX3t7BlP3eFV!9K4G2DUY9c2g7YXJDTm64YdoMNmrrnMy8nlXcMFC3nIK1xE7Rd5fMod6ur8ECglUUpPmWAFYcUcpghTc5gkTM5he8L2d0zQ5fFs4uQ9QNsPJgulq07BgGc!s8DPHizyvHirqFmIYSk44TvXfvlnwS1a4mSJr7FUzepQOEHDp!w7ipc4duLft6KWQpUFq5iicWU8GuiK!Wwx8zfmM4lgle3YU7D9uxTnW6SiiJKl2BapKPFUKVZtkYoGmCz14!uSIhW9D8lSxbJU5X4L*blr8bMPRg*tW2PsN8vTe3U_/results,1 34396,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVUFugzAQfE0ulZBsHBs4kqb5BrIcK0UhJsVE7fO79opYplABp*aC18yww8wiY9uu37HjLhUfsOjzQ8m!bs0uPdxkbXpptFEadrJp2k!shem0fTS9hQcogb2FHpW0SptzbS5w191spC!1cYQemqqqk!YKhEp*3aGDdTJOmaf56HKT9goFP6QFLKz0Cz!!pA51tXu7gZIjJfeUEZYhlk1hAjExhXHE!BS2R2w*YAwvz3djJ!*BqrbTSShddQoGPPOVBH7yZKHn2UdZSUIMc8Ex37n0yz8LbtYSRUt0jaViUgfDCRo!Zd!RvcWxI3*YspIzkWekIALHldBooCvms8XM35jPKIJVtmNPwfbvUpRukYoiWixFtkhFiS!VIsUWqWiAi6V!nC5LpKLvYbFUNi9VuN9Ce6kVHPtWy069V9p8Awcthg0_/results,1 34397,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU2PmzAQ*TW5VAqycWzIEZYk3UsblVY9WtRYLNqAs7bZtP!!*iBB7CYrktPm4vHMe8z4zcSOElLPUDYLyYsxTDRdW!t*szBlheTGVLJotUFbyVW308qQIDC!Mt*RQjHelnVbmagNvgR*hFCal19rrYLvP1xiHMYmjywOndwZDyU2FD5pvbeb3sfhujeHwyEoa8mZDirxGnTPfXwvRUmZaFXX0LLqg3XJ9jvvoPVjyXIuX2vGfSDLc7pZ*aTbZLPyfKJUJti3ojkysg2FACCMCekZjznN8!2vHofurGaJ0saePbNacPignAMsYBSmNrY01ij2zmdXDOMYT1Uc3b*i31u4jAAAExWT!1cMowVYTJ0w*kAv2RXuevPWXnpd6JpR8yQ8m0tP!d!9eRVULdrhoo!WplBWKE5tJtMTZ3D2JeyT4zAdKLGnxI7yBos8Fp3DiMfIOQx7DJ*DFh5bHDHkl9PZkJtdrJiQfD5s7W49CHDMBzDw5yeW13zxU5SAoQ2XGodc5sSZO2vcRUnQS4LXSFqerQNONy8euuwyotW47Z5*dFGCEYkjsATEj2sORwO9Yj63iPkc83nTgqtkjzUNsj8uBeEtpUYtmlwK3FJq1PGppcDyllKjAU4u9e51mVJq9HuYXCq6XMr9LYiqZubZV7yQ7Iny9j!YTImJ/results,1 34398,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU2PmzAQ*TW5VAqycWzgCEuS7qWNSqseLWosFm3AWdvZtP!!*iBB7CYrktPm4vHMG!b5zcSOElLPUD4LyYsxbam57PS*WZjVsuy0CXeSq*1WK4NCYHxlPqClYryrmq42URt8Cf4IoTSvvjZaBd9*uIo4jE0dWR72cms8lNpQ!KT1zm56H4er3hwOh6BqJGc6qMVrsH*u4zspKspEp*Ytreo!2FRst*UOWj1WrODytWHcB*KioOvlT7pJ10ufT5TKBftWtseMfE0hAAhjQvqMx4IWxeZXj0N3VrNEWWvPnlstOHxQzgEWMAozG0uMNYq989kVwzjGUxVH96*49wYmEQBgomJy*4phtACLqRPGH!gl29Jdb97ZS69L3TBqnoRnc!kp*7szr4JqRDdc9NHSlsoKxZmtZHriDM6*hH1xHGZDSuxTYpfyBos8Fp3DiMfIOQx7DJ*DFh5bHDHkl9PZkJtdrJiQfD5s7W41CHCZD2DIn5!yvOaLn6IUDG241DjkKqfO3FnjLkqCXhK8RlJylgecbl48dNlVRMtx233!0UUpRiSOQAKIH9ccjgZ6xXxuEfM55vOmBVfJHmsaZH9MBeEtVKMWTaYCt1CNOj6VCiS3UI0GOJnq3esyhWr0e5hMFV2mcn8Lom6YefYVLyV7orz7D8mIh1E_/results,1 34399,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU2PmzAQ*TW5VAqycczHMSxJmku7Ku3Zco2VoCV21oalP7*!IEHsJiuS0!Zie!Y9ZvxmGNBSNTOUz8Lo1Wy1ZLSehdletroSO3OidS07Khg3DKG4butGGyIExtbmWUI146K0ZJRb52vwV0rd8PJ71ejg5y8XHIeJiaVo1yoTHqOldYX7pjnaQ2*jcN1vXdcFZaU4a4KdfAval95*VLIkTArdHki5651VyY61N9B6W7KCq7fK3tc68qIgm9Vv8rzcrDw*ErLk27KHIcRp798WpCie*5wAd0OzxNnB3ji3CnD4pJ0BLGB0ZdZnAmRGpze!jk6tc8l!0MOJkW8IBAAmaRhNVBw*mOJxZ8MUT9QZPbjOxUSd!BOdUU3dCHNhB7uhTcWIouLFDDbh*45m8nUlxTDMo!VAtRWIMxvJ1MJtOP8W9sFxmA2UxFMSR3mHxR6LL2GRx6JLGPYYvoQtPLY4Ycgv57sh17NEM6n4fDja03oQ4JhPYODPzyyv!eqjaAmGMlwrHHKRl257sMJdlQS9JHiLpPRiHnCeuGSosouIVuOye*7JREuMoiQGKYh8u!Zw1NAb!nOPmK*Rn3cluEn2WNMg!*NUEN6TalSiyanAPalGFZ!aCqT3pBo1cHKqD1!XKalG78PkVPH1VO63IHcVM599zalie8LFf3eVgqM_/results,1 34400,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU2PmzAQ*TW5VAoydvg6wpKkubSr0p6Ra7sJWoJZ24T8*BqbBLFLViTqYXuxPfMeM*PGA0gu1AKlC!i*6k1wTBcwUfisHZVgsimV1H4XaFtqao4lYRUtqr32ds5X5zfnUjH6tVDS!f7DxPJgqKMI3Dai1BaKOxc8KFV3h9724Kbf2rZ1aCEYUc6en5zmpffXgtOc8Eo2x5zue2dBSV1aA212lGRMnArCrCPNsny7*pk*x9u15fsVp2xHexhGYe*eZXmWPf*q*a4pUC9BclwYouE9SWOADtCyks4X6V3LtMbnkSllysk3fLww0m2!AhC6bjBTcPDvBRMs*jSspFjhSeEVa5cndihIyZZ65Bws6*O7uvwP6vJLbAaRVd14KqwKkgtcvejxzNm51vMrC14NIzlajlh2hXhJF0nXbjYv*QL74B5MBkpoKaGhvMECiwVTmG8xfwrzLOZNYSuLrS4Yssu1NmR6HErCBVsOx!60GQQY5hMY!Msry2q!!SiKwdCGW41DJnJstv!scTcluVaSe4!kaDIPuL4h4dBlExGtx223*IuJYg*5YQAi4NvrWrqjC73jfh4R8znu500L7pI91jTI*jiV6z6SatSi2anAI6lGHZ!bCkSPpBpd4OxU774uc1KN5mF2quB2KvNb4PuC6M!!ZFiQQ86qv7CgKdg_/results,1 34401,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU2PmzAQ*TW5VAoydjBwDEuS5tKuSnu2XGMl1hLM2iTpz68*SBC7ZEVy2r14PPOeZ3gzBrRU7QzlM4hfjakE4zXjM5jRkjYtL83uxPeCicoEca24PlatNswQGF!bw4Rqc6YU9c5EbfA1!CulNme*i1YHP3!57BFMTCpFz0dVGQ8tbQju27axm86P4Loz5*M5KIXirA128hQcX7p4o2RJmKz18UDKXRcUJWsq76D1tmQFVydhRdhAXhRks*pNnpebledjrXPJftDDhZFvSAgAgjgJO8a2IEXx*KfDXRSaJc4O9tlzqyWCT9o5wAJGYWZjqbFGsXc!j!JalnxbdjBM0ESZ8ReTOTLYBYAQJOlEwfgDwbii7orz2l78lraCEUXrF3PxCf*XmDdDC1n3l32wHKi2SqPMZjJNcSbKv8EueQSznpJ4SuIob7DYY*EYhj2Gx7DIY9EYtvDY4oIhv1yfDbnhJZpJxef91u7WvQDHfAI9f35lec03j6Il6Ntwq3HIZV4688Uad1NS6CWF90hKR!uA66uX9F12GdFq2HbPv7hoGSGcxCAF2I9rHg4Gesd8HhHzOebzpgV3yR5q6mV*XCoMHyk1aNHkUuCRUoOOTy0F0kdKDQY4udS7r8uUUoP7MLlUfLuU!y3InWDms685VWxPeP0fBolHYw__/results,1 34402,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU2PmzAQ*TW5VAKBHb6OYUnSXNpVac!Wa7sJWoJZ24T8*BqbBLFLViRqpfZie!Y9ZvxmBpBcqAXMFiB81RvB8rAAqcJnvdJCEu2vBJNNqaSGfU*bUj!BsCSsokW1197O!er!5FwqRj8XSrpfv5mQAYh1GIHbRpTagqvOBQ5K1d2htwOw6be2bV1aCEaUu!cnt3np*bXgFBFeyeaI6L53FpTUpTXgZkdJzsSpIMw6sjxH2*V39Lzari0*rDhlO9rDIIl79y5Hef78o*f75oJ6idLjwhAN70kaw!sALSvtfInetUxr3CWTYPGrYSXFCk*KrVjrnNihICVzdCNcLOvzu3tFf*5ef7X8UmacfMHHCyPboqUHgO9HMxsRfiA4LLEZRFZ146mwKggSuHrR44nYudbzKwteDSM5Wo5YdkqDtIuki2K2IPsE!uABSAdKbCmxobzBIotFU1hosXAKCywWTGFLiy0vGLTL9W7QNC!WhAvmDMfutBkEGOaTN*CdK8tqvvkoXHlDGW4VDprIK7P9Z4W7Kcm3kvx7JCWTebzrqxcPVTYR4Xpcdsu*mHAVwDCOvMQLbbscf9TQO*rziJh*oz9vSnCX7LGmQfbHqXz*kVSjEs1O5T2SalTxuam85JFUowbOTvXu6zIn1WgeZqeKbqcyvwW!L4j!7EuGBTkgVv0GYdUsDQ__/results,1 34403,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU2PmzAQ*TW5VAKBCV*HsCRpLu2qtGfk2m5iLbFZ24T8*BqbBLFLViRqpfZie!Y9ZvxmBpBcqEWQL0D0qjdBVCPYAmQKnvWKqUQaYYLIplJSE3xP21I*U0KJCMOU7bW3c766PzmXiuDPVEn36zcTNASJDiNg24hKW8Gqc4GDUnV36O0QbPqtbVsXU0GQcvf85DYvvb8WHJeIM9kcS7zvnRSjurJGsNlhVBBxoohYR14U5Xb9vXxebdeWHzGOyQ73MEiT3r0ryqJ4*tH7fXNBvcTZcWGIhvckjeF1gJaVdb5U71qmNe6SiaD41ZAKQwUn5TLSOidyoKgijm6EC2V9fnev!M*f66!WX8qcoy*weGHk23LpAeD78cxGRB8IjipoBpGwbjwVVBSVArIXPZ4lOdd6fiXlbBjJ0XKEslMaZl0kXRSzhfkn0AcPQTZQEktJDOUNFlssnsIii0VTWGixcApbWmx5wQK7XO8WmOYlEnFBnOHYnTaDAMN88ga!c2VZzTcfDVbeUIZbhQtM5JXZ*rPC3ZTkW0n!PZLSyTze9dVLhiqbiMF6XHbLv5jBKgyiJPZSL7LtcvxRQ!*ozyNi*o3!vCnBXbLHmgbZH6fy*UdSjUo0O5X3SKpRxeem8tJHUo0aODvVu6*LnFSjeZidKr6dyvwW!J4i*dmXBAp0KAn7DVNeLQ4_/results,1 34404,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU2P2jAU*DVcKhE5MU7CMdkA3Uu7atqz5ToWRAt21s8s*fn1RyDKFqrAqb3Efm8Gj2ceBFDazHA1S9I3u7Cu00KalgvYtR3YrtQCjnsDFoyRrcHyKQMuZNPKre265lv0UykwovncGoi!fvMHkiSfJaVmp6Pe2woXrpXsjOncpq9Jsu6X0!kUNa0W3ERb9R4dX*t!p1VDuZJwPNBm2zfbhnf7UOD1c8Nrod*tpUOjqmu6WX2nL8VmFfgpQKX4F3Y4M6oNXSAU4yTrCc81reuXHz0c!6vaR1Ye3NUrZ4UkT!AL5ABrsHS9pbW*Zz4JIV0!htn4qGby1eZDxS8bKECr5JDJ6HFg4JyS0p1kQ*ELqT4l*eEkKQdKHii5p3zAsoBl17A0YOk1jASMXMMWAVucMRwel7thP7wcuNJiPmzdbj0Y8MwnNPDnF1bwfPOjuEBDDLeCw*7kwi**WXA3LcXBUnyPpeVVHXT56eVDyv5EvBrHHvjnEhcEp3mGligN45rHo4HeMZ9HzPwb8*kQwV22x54G23!XiuNHpEYRTZZCj0iNEp8qhZaPSI0GOFnqj7fLFKnR92GyVHZbyv8tqG3L7WsfBNN8R4X8DREJxQw_/results,1 34405,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU2P2jAQ*TVcKhHZMXaSY7IBuoe2qGnVo5U6VjZaiFnbWdp*X38EomxhFTgtF49n3mSe3ww2Skg9Q*ksJC*GFJ3kszArdGmiYfbFGC7bRv81Ti3L1gRJK7nqtlqZdAiMr0wFWirG26ppaxO1wZfgtxBK8!pzo1Xw7bujwGFs6sjy0Mmt8VBqQ!GT1nu76X0crnpzOByCqpGc6aAWr0H33Mf3UlSUiVZ1O1rVfbCp2H7rHbR6rFjB5WvDuA*kRUHXyx90k66XPp8olQv2tdwdM*I1hQAgjAnpMx4LWhSbnz0O3VnNEmU7e*bcasHhg3IOsIBRmNlYYqxR7J2PrhjGMZ6qOLp*xb82MIkAABMVk*tXDKMFWEydMH5HL9mW7nrz1l56XeqGUfMkPJtLT*mfvXkVVCPa4aKPll2prFCc2UqmJ87g*FPYF8dhNqTEPiV2KW!wyGPROYx4jJzDsMfwOWzhscURQ345nQ252cWKCcnnw9buVoMAl*kAhvz5KctrvvgpSsHQhkuNQ65y6sydNe6iJOglwWskJWd5wOnmxUOXXUW0HLfd5x9dlGJE4ggkgPhxzeFooFfM5xYxH2M!b1pwleyxpkH2!1QQ3kI1atFkKnAL1ajjU6lAcgvVaICTqf57XaZQjX4Pk6miy1Tub0HUDTPPvuKlZE!Ut*8Aa7qM6w__/results,1 34406,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU2P2jAQ*TVcKhE5NvngCBugXNpV056j1LbA2sTO2gHaf9!xHYiyhVXgtHvA45n3mMmbsROjdDsh2QTHr2BoKSd4KeDHtDhysCfR7sHUf2FpVCWM9SpBuaQWFpbP5a4qJYMcUnNzqFoDqUIEvoHsRWmAzYTcQdQGX4PfSpmWs6!iNcH3H658hFPIpMvTQVfgkYUN4X3bNnbT!RFed!Z0OgVMaE7bYKeOweGlizdasYIqaQ51wXZdUDDaVN4h6y2jOddHYR*fBrI8Lzarn8XzYrPy*NiYTNFvZX1mZJsiRIjgOA07xjYv8vz5V4e7KIYlWdb22TOrJcJPxjnIAqBwaWNzsKDYOx9HsVSMb1kH45SMlJl8MplXBjtDGKN0PlJw*I7gGO6APeJc2oPflq2ghS7lCxz8gv9p4GYYoWR*2AdLXRqrNFraTNAUZ6LsC!6SR3AFL5TUU1JHeYMlHkuuYbHH4mtY5LHoGjbz2OyMEb9cno244aWGKs2n*dbu1r0Ax3xCPX96YXnNN*9KFqhvw63GEZd54cwna9xNSaGXFN4jaX61DrpcvbTvsstIVsO2e*7ZJYuIxGmC5ij245qGg4HeMZ9HxHyM!bxpwV2yh5p62e!XCsNHSg1aNLoUeqTUoONjS6H5I6UGAxxd6r!3y5hSg*MwulRyu5T7LKidoPDaN7zUdF9w!Q!D!lFz/results,1 34407,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU2P2jAQ*TVcKhE58dpJjskGKFI*UNOeLdex2GjBZm0D7b!vPwJRtrAKnHYvtmfeY17ejBO0VGYCq0mCX!z2lRquRGv!TpKSisauK6q4MHRjj184PXBLFIrr*cZoy4!BjbUtQahmXDStWNusS75Ev6XUhjefW6Oj7z!8BkoyW0fR417ZgggWLpU8GbNzhy5Gybzbjsdj1LSKMxOt5SHaP3f5nZINYVLo*ZY06y7ZNmy3CQGcLxtWc3VoGQ!Jqq7JYvaTrIrFLPCxkA1fNh2MUtillzWp69WvLh*7B7RLWm7dA1fOAEoetQ!AA6yt0uVyu1ubIXg*NrWuJPtGtydGtSAxAHGW4Xyk4*SDOR4MFudopE38hk28of5ic!Guu6GmZURR8WyvO!F*dvZ90K0U*RUfLFuqnT9Uukq2FX5D1aekK46SsqdkgZJ5yissDVh6CcMBw5cwFDB0CXsI2MMJg2E5Pxv0I8s0k4pP!6M7zXsDnvkIev70zAqer*4UFqBvw7XGQV!58NsHa9xVS3GwFN9iKb!oA84vXNZ32VeEs2HbA*8UwgJBnKUgBziMaxoPBnrDfO4x8z7m86oFN9keeuptvy0Vx*dIDVo0WgrcIzXo!FgpkN8jNRjgaKn*vi5jpAb3YbRUel3K*y3IdcvsZ19zqtgT4eIfKDhGVg__/results,1 34408,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zqjAU*TVu3oxMIA3gEor6unntlHadSUOeZoqEJrH25zcfKIPVDrpqN0nuPYd7c84VVELqCSwmUfxmNsnamlA2ifIXLvXa7JRJzf9zSrTJxo1kaltrZaghMLEyT2OiKGsq3qxM1ibfghchlGbVX65VcP*oyqMoNdUk2W1lbSKY2VS01rq1hy5G0aLbdrtdUHHJqA5W4j3Yvnb5VooKU9Go7QZXqy7JK9rWPoCLu4qWTL5zq8ImirLEy*kTfsiWc8!PlSoE*Uc2e0axxGGCYntDh9!VuCwfnjs0dDc1S5Jv7M0Lz7tVLgAWMPpym5sZ9TVxRrDG2qOJ5hRL0rwaezD7aI1*ioumt2SwbIiyQlFuKxlP3IaKP1FXHEV5T0k9JXWUIyzxWHIKiz0Wn8KQx9Ap7MZjN3sM!uVwN!hmlyoqJJv2R3ta9AIc8xb0*OmB5TWffRRmoLfhnHHQVc7c9suMOysp9JLCSyTNTvYBhzcv7V12FeF8aLvn70OYIRinCZiB2I9rGg4GesF8rhHzM!ZzZMFFsoeaetnftwrDa1oNLBrdClzTauD42FZgdk2rwQBHt*rydRnTavB7GN0qOd*K*S2IFafms68YkXSNWfMJO5XJQA__/results,1 34409,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!ZMaMQJGAIwTb8aXNlPasUYXGYWIkR5Lj9t9XH9gMqZ3BPiUXrXbfsk9vV4CWysxgNUvwqzUdNVyJ1vy1vlBc77dG23AMrK9tJqGacdG0YmOjLvga*ZZSG948tkZH33*4UijJZkmp6GGvttaDhQslz8bs3Kb3UbLszeFwiJpWcWaijXyL9i99fKdkQ5gUet!RZtMH24bttsGBy3XDaq7eWsZDoKprslr8JE*FahHysZANXzc9jFLYh9c1qeunX3089ge0S1p27sCVE4CSB!0d4AArq3Sx3ForMzifR6bWlWTfaHfMqFYkBiDOMpxPVJx!McWjweIcTZSJP5CJt9RfbC7cdTfUtIwoKl7sdSf8z86!D7qVYrjio6Wj2ulDpatkW!ENqu6SvjhKyiElCymZT3mHpQFLz2E4YPgchgKGzmH3Abs*YjAsp7NBP7JMM6n4fNi63XIQ4DMfwJA*P2UFzRcfhQUY2nCpcdBXLrz5Yo27KCkOkuJrJOVnecDphcuGLvuKcDFue8g*urBAEGcpyAEO45rHo4FeMZ9bxHyO!bxrwVWyx5oG2R9TxfEtVKMWTaYCt1CNOj6VCuS3UI0GOJnqv6*LFKrRfZhMlV6m8r8FuWmZ*exrThV7Jlz8A*3zPlQ_/results,1 34410,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!ZMaMPizARwi24x7aTGnPDBUqZmIkR4K4P7*6wGZIcAb7FF8k7e7zPr1dVlZCNjOczJD*qje6y3nJZigWf*VCK0nbWjU5p0xp!1saaRyXTLX7Rmk4BNpWOkOWK8p4UfFSe43z1fsjhGpY8VQ1yvvx01IQFOosMj!2cq8tHBkX2jXNwRw6m6B1tx2PR6!oJKONV4o3r33p*AcpiowKrto6K8rOWRX0sHcGXm8LmjL5VlHmHEmaZpvVr!w52qwc3lcqEfR7Xp8QySaDAMAwIEGH2KZZmj7*7uLQ3lUvQVybuydGC0GPyhrABLTC2PiWeteKnfG1FQchcjom6A3uTC8XBdsWJzlocl*9O9M5*iVjAPFiomLyiWJ*n9uhZtyMepM3Fc1kzl*0qGfs30G*BaoSvB*vwVLnykglscmkq2I3kjygLjlBcQ8JHSS0kHexwMWCsZjvYv5YjLgYGYstXGxximG3nO!GbfdCRYVk8*5oTutegEU!gh4*P6Oc5os*xRHoy3CpcNhmjux2Z4W7KAk6SfAaSctRHnCevbCvss2IV8OyO*zJxBHBfhiAJfBdu!Zw0NAr!nOLmK*Rn3cluEr2UFMv!3MqCG!hGpRoMhW4hWpQ8alUYHkL1aCBk6k!vC5TqAbfw2Sq4DKV*VsQZUX1s69YLukuY*w*FGiJWw__/results,1 34411,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!ZMaMkMzX0QTb8aXNlPbMqJLsaIIRliBu*331gc2Q4gz2KTkgafet9vF2JVBCNjOUzWB41JNkuK7Lv7zaz2C6E1KPWD8lJ6wizFi7hhkv5erY4pLvOMENF5XeX0mm2rJROo0PtK105gIrvZOafCgzzqP3WwjVMPrEG!V9*2GpAxjrlBKfWllqCy2NC740TW0WnR3AdTedTiePcslI4!3Fm9e!dv5aCloQUan2UNB95!SU1KUz0HpLSc7kGzdSjCPL82Kz!lk8LzcrFx8qlQnyDR*OEdmm8AFAMIz9LmKbF3n!*KvDrRfqIUoP5t0zoyWAj8oawABaYWp8iZ61Ymd8HsWVoGxLOxjGaKLM6IvJHGnsAkAI4mSi4PADwWGJ7RFn5iKoRl8JUkhcveqDX7A*tb4ZylySy2EfDAesjNIgNZl0UewUZA!wSx7AtA!JXUhsQ95hkcOiMSx0WDiGBQ4LxrCFwxZnDLnh8m7INi9WREg275dmte4F2MhH0MfPL1FO89WtaAn6MlwrHLKZl3b6YoW7Ksl3kvxbJCWjPOBy9eK!yjYjWg3L7uLPJloGKIwjkIDQtWvuDxp6Q3*uEfM5!vOuBDfJHmrqZX9M5fv3UA1KNJkK3EM1qPhUKpDcQzVo4GSq*74uU6gG52EyVXSdyv4WxJ4T*dlXDEvyUrDqH4MdUbA_/results,1 34412,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!ZMaMhMzXEYLt!NJmSnvWqJLGZoIlR8Kh*ffVBzZDamewT8lFq9237NPbFaClameonIXxqzE72dSM*J2FBWka2RFBuUGE4vrYtNokQGB8bZ7BRFMuWC22JmqDr8FvKXXL2VPd6uD7D1c0ClNTS5HuqBrjodyGwl3bHuym96Nw1Zuu6wJWK07bYCvfguNLHz8oyTCVQh*3mG37YM3oofEOWm0Yrbh6q!15baCsKrxe*sTP!Xrp82MhGd!wHo4z1Ic3Fa6q5199HLoDmiUp9vbApRUQhY*aOcACRlZhY5mxRqZ3Po9MrUtJv5H9KaNcYwgAWiQQTlScfH3FIEHJYqre!AO9cUPcDefC3vuWtDXFiogXc!8x*3MwL4aupRju!mjZE22FRoWtZHriTFQ!hH3xKCyGlNSnpC7lHZZ4LLmExR6LL2GRx6JL2MJjixOG*HI!G3KzSzWVis!Hrd2tBgEu8xEM!fNzltd89VGUg6EN1xqHXOXcmS*WuKuSoJcEb5GUXeQB5zcvHbrsKqLluO0!*!SiPEJxmoAMxH5cczga6A3zuUfM55jPuxbcJHusaZD9MRWE91CNWjSZCtxDNer4VCqQ3UM1GuBkqv!!LlOoRvdhMlVyncr9FuS2puazrzlRdIe5!AfYzkRJ/results,1 34413,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!ZMaMhCLARwi2m0uaCe1ZowiNQ40lR5JDf370gc2Q2h3sU3uRtPseu3pvDdZSmRkqZ3Hybrdf8nUWF5rzLVfanmjbyo4Kxi0uFNeH1mhLg8DG2j5JqGZc1I3Y2KxLvkevUmrD62!N0dH3F18ax5mtpWh3UK2NUO5S8Zsxe3foYxyv!q3ruqhuFGcm2siP6LDt83sla8Kk0IcdqTd9sqnZvg0BWj3WrOLqo3H3dYmyqsh6!YM85!tl4Cdal5I90d2RUa4JBABmKU57xmNFqur5Z49Df1e7pMXO3b10WnD8oH0AHGAVFi63sPpb6q3gwhlkqGkYUVRsrUGE*95bB3UjxWDKaNlR7aTiwlWyrvgNl3dxXxzHxUDJAiXzlC9YGrD0HJYELDmH4YDhc9h9wO6PGArL6W7ITy*TTCo!H47utBoEeOYDGPjzEytovvgoysFgwyXjkK!c!!0*M!6iJBgkwWskLc72Aad3Lxtc9hXRcmx74B9DlGOUZClYgCSMaw5HA71iPreI!Tfm88WCq2SPNQ2y*94KwltajSya3Arc0mrk!NRWYHFLq9EAJ7f64!sypdXo9zC5VXq5lf9bkJuG2c!!5lSxN8LFJ3umyAs_/results,1 34414,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!dMYMoPDhIw524lMzpT0zRFIxE5CIJELy77uSCAypncE!JRdJu2!1b9!ujCUXaoXSlR8!w9YfC7XytzUtK1kXquIMLPpaSSXhoDgsgmJeskpSOBeMwNoKrijW9954J3QcFY0cYcwZqXQq7eJ*dcKmrflbQxncCZmgsqshP0o9F2wJBeWFxBRusRK82vnsPHIuFSX3lZLOz1!m4sCPdT1F34kaLJRol39UqtWHwQ78*bD1fe!QCspXTslfnO5p8EP5JIciZdfkpBycFcFtbQ20PxCcUfFSYWodaZbld7vf!UNyt7PxIeOEHsgAR*HgPWR5lj38GdyeqQ!WaNvoelPfxN1KY7gaAFVb7dvADiqt8UVVeq6*UGb0icywLsyUKdOzV*DmcC4K9gSzz!lrC49D6lc4znu2NIXU!oKtzgStMFuQ*vCH5IG*nUJiGxKbkA9YZLHoFBZaLDyFBRYLTmE3Frt5x5BdxtqQGVksMRd0PR31aT8JMJG37hS*HqOs5rNXUeJObTjXOGQyJ2b7Zo07K8mzkrxLJG1O8rjjDy6eumwyot287Tb!3URJgMI4cjduaMe19mYDvWA!14j5GvP50IKLZM81TbI*p*K8a6hmLVpM5V5DNev4Uip3cw3VbICLqf77uiyhmr2HxVTReSrzt8DLCsNnX9JC4GNO2T9XjiDj/results,1 34415,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!dMYMIAvwEYzt5tJmSnvoSaMKDdHESI4kQn9!9YHNkNgd7FNykbT7nnf13mJQQuoFKBdx8mK2lnHWdu0iLnrcUJPkkqruoJXBotDEytARVoTymvHGZG3yJfgjhNK0*sq0Cr7*cPVgnJkyEvedPJgI5DYVP2l9tIchhvFu2Pq!D2omKdFBI16D7nnIH6WoERFcdS2qmyHJanI8!ADsHmpSUfnKCPWJsqrQfvsTPeb7recnSpWCfMPtiVHuUZSukni1!T0wHipUVY!*BjxydzVLWrT27qXVAuONckFoAaOwsLm10X*AzgrKrUEaa0aQxPzZGITo36NxUDHBR1MmS4uVlQoLW8m44jZYfomH4jAuRkrmKZmjvMFSj6WXsMRjySUMegxewlYeW50w4Jfz3YCbXqaIkHQ5Hu1pNwpwzE048pdnltd89acgD0cbrhkHXOXcbZ*MuKuSIi8pukXS!mKf8Pzfy0aXXUWwndru!acQ5BAkWRquw8SPaxlNBnrDfO4R8zHm88aCm2RPNY2y*98qiu5pNbFodqvwnlYTx!e2Ctf3tJoMcHard2!XOa0mz8PsVun1Vu6zIBpGzGtfUSzJE6L8Hy1YxGY_/results,1 34416,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!dMaMQJGAowm260ubKe1ZowqNwwQkR5Lt9t9XH9gMqZ3BPiUXrXbfsk9vV4CWysxgOUvwqzUdNVyJxvydJUXL6YHbuFBc71ujLRwD62v7BKGacVE3YmujLvga*ZZSG15*bYyOvv*wJVGS2TqKHveqtR5cuFDybMzObXofJaveHI*HqG4UZybaykO0f!njOyVrwqTQ!47U2z7Y1GzXBgeuNjWruDo0jIdAWVVkvfxJnhbrZcjHQtZ8U*cwSmEf3lSkqp5!9fHYH9AuadG5A5dOAEoetXeAA6yswsVya63M4HwcmVqXkn2j3SmjXJMYgDjLcD5RcfrJFI8Gi3M0USZ!RyZuqb*YXLjrbqhpGFFUvNjrTvifnX0fdCPFcMVHS0e104cKV8m2whtUfkn64igphpQspGQ!5Q2WBiy9hOGA4UsYChi6hD0E7OGEwbCczwb9yDLNpOLzYet2q0GAz3wEQ*78nBU0X30ULsDQhmuNg77ywptP1rirkuIgKb5FUn6RB5xfuGzosq8Il!O2h*yTCxcI4iwFOcBhXPN4NNAb5nOPmI8xnzctuEn2WNMg!32qOL6HatSiyVTgHqpRx6dSgfweqtEAJ1P993WZQjW6D5Op0utU*rcgtw2zn33NqWLPhIt*bfRA!g__/results,1 34417,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!dMaMQJaAIwTb9aXNlPasUSXVZoIRkXDc*vvqA5shsTPYp!Qiafct!*R2JaGl6mawmEX42Uy0beuK0a6SzSzK*0hlRi2YbDhV*!ya7aSsTXCjhD7UnTbfhMDY2qQhVDPR8KrZGq91Pge*pdSd4F!rTgfffzgeFCUmkaLHgzKJEMysK9p1XWsXvY2iVT8dj8eAV0qwLtjKl!Dw1PtbJTkxG9OHPeHb3llx1tbegKsNZ6VQLxUT3lGUJVkvf5LHbL308biRXGx4D6ew925KUpaPv3p36PZnhjjf2*0Wdv8oetDOABYwqnLrS81sVHrj46jUupDsG92fIoo1CQGAC4CnKo4*v!IFCDFI0omC8TuCcU3dCReNPfeduSyMKNo8mXNPxN*WXAxtr8*5rI!GPdVWKcptJlMUN6HiS9QnR1E!hCQ!JHEhr7DYY*ElDHsMX8KQx9AlbOGxxQmDfjjvDbrmJZpJJebD0q5WgwAX!QCG!Pk5ymu!!inMwFCGa4WDLnPmpk9WuKuSQi8pvEVSepEHnK9eMlTZZYTLcdl9*MmEGYI4iUEKsG*XPBw19Ib!3CPmY*TnVQlukj3WNMh!nyoM76EalWgyFbiHalTxqVQgvYdq1MDJVG9elylUo*MwmSq!TuV!C3JbMfPsa0EV2xHR*Ae5nUsG/results,1 34418,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!dMaMPizARwi260ubKe2ZIZLiqLGRI4m4*ffVBzZDamewT8lFq9197NPbFaClMhNcTFD8Yg2tFROPjxOUU2H!OiPbhoqt3f2WD9qiGsV1uzXagiGwvrbPV7WmvGGi2dioC75ED1Jqw9lXYXT0*YcnICi1ZVR9aJWtR3DmQujJmL3bdD5By84cDoeICcWpiTbyNWqfu*heSVZR2eh2V7FNFxSM7rfBwcs1oyVXr4LyECjKslotflb32WoR8LHWhaTf6t0RUawqCAAGEM86xLqsyvL!V5eH*qx2SfKdO3vhtBB0p70DXMIqzF1sbq1VHJyPo7iRjK*ZUQ6AI2Umn1kmgmikzPgdmfG29hebN!66m9oIWqm6ebbXveJ*9vZ90EI2*RUfLLtaO30kd5VsK7whxRfUFSco7yFpgKQe8iaXhFxyLheHXHwuR0KOnMvNQm52zOGwnM6G*chSTaXi037rdstegEfegR4*PaGC5ouP4gz0bbjUOOwrZ958ssZdlASDJHiNpPlZHnB64dK!y74iXgzbHvBHF2cEx2kC5iAO45rCwUCvmM8tYj7GfN604CrZQ0297PepILyFatCi0VTgFqpBx8dSgfktVIMBjqb67!syhmpwH0ZTJZep*G9BbgS1n33Na0WfKt78Axf2RTQ_/results,1 34419,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!dMaMPiLARwi240ubKe1Zo0qKwwSQI!G4P7*6wGZI7Az2Kb1I2vfW!3i7AhuluxkuZih!tZuo2QzlT0o3Fmi1NPu6MxaHwMbGplJmuGxF1W4t6sDX6I9SppPioepM9OOnr0VQastodtjr2kY4cxB67rqdO*QxQat!OxwOkai05F20VW*R*qXHd1oJylVr9g0V2x6sBN*VIcCrjeCl1G8VlwEoypKul7*oY7Zehvy4VUJuRE*HCPbwpqRl!fi7xz2K7JLkjXvgwhkg6N74ADjC2sodtrC7tRmCr2PTmELx76w5ZhRrCgGASQLJRMfJJ47jmvmJy9bdg451FaeatS*2HlD5d2cviqlUO8x!tDTMOKskd5VsV*xGim!oL05QPqSkISX1Ke!4JHDJOS4OXHyOI4Ej57i7wN0dORyW07NhP73UcKXlfDi602ow4DPvwZA*P2UFzxd*ijMwtOFS47CvnPntP2vcRUswWILXWFqc1QGndy8duuwr4uW47SH*GOKM4DhNwALEYVxzOBroFfO5xczXmM!7Flxle!xpsP25FIS3SI1aNFkK3CI16vhUKbC4RWo0wMlSH74uU6RG92GyVHJZyv8tqG3F7WffSKb5M5XtP3FeACs_/results,1 34420,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!dMaMkIyAIwTb9aXNlPasoZLGYYIlIuG4P7*6wGZIcAb7lFy02n3LPr1dAVqqboGKBcQvxnCpZMsXMG9qygU1OywU18em0wYNgfG1eYBU2sCsFnsTtcGX4K!UuuPse93p4OcvVzGCiamkqtNRNcZDmQ3Bp65r7ab3I7jpzel0ClitOO2CvXwNjs99vFWSESqFPh4I2*fBmtG28Q7a7BgtuXqt7XltoChLsl3*Jo*Zdu3zsdaFpD!qwzmj2JIQAARxEvYZu5KU5eOfHndRaJY4P9izF1ZLBB!0c4AFjMLcxlJjjWLvfB7FQjK!Yz0MEzRTZvzFZE4MdgUgBEk6UzD!QDBuKnfFubAXv6u6mhJViWdz8Qn*15o3Q9dSDJd9tBwqbZVGua1kmuJMVHyDffEI5kNK4lMSl*IGiz0WT2HYY3gKizwWTWErj63OGPLL5WzIDS*RVCq!HLZ2txkEuMwHMOQvL1le89VHUQaGNlxrHHKVM2e!WOOuSgq9pPAWSekkD7i8esnQZVcRrcdt9*lnF2URwkkMUoD9uJbhaKA3zOceMZ9jPm9acJPssaZB9sdUYXgP1ahFs6nAPVSjjs!lAuk9VKMBzqZ693WZQzW6D7Op4utU7rcg9zU1n33NK0WfCBf*AUvpQzg_/results,1 34421,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!dMaMkIwQRwi260ubKe1ZQ4XGYQLIkeS4*ffVBzZDijPYp!Si1e5b9untClBC6gXKFxC*GNMKLST7yxq!gFlTM94xs8Od5OrYaGUyQmB8ZR6ipTJwVXd7E7XBl!C3EErz6mutVfD9h6saQWIqyfJ0lI3xUGpD8Enrg930fgQ3vTmdTkFVS850sBevwfG5jx!kqCgTnTq2tNr3wbpih8Y7aLOrWMHla23PawN5UdDt!id9TLdrn4!VygX7VrbnjHxLQwAQxCTsM3YFLYrHXz3uotAscdbas!dWSwQflHOABYzCzMYSY41i73wcxZ2o!K7qYUjQTJnxJ5M5MdgVgBCQZKZg*I5g3JTuivPOXnxd6ppRWXbP5uJT*udg3gxVi2647KOlLZVVGmW2kmmKM1H!BfbFI5gNKcSnEJfyBos9Fk9h2GN4Cos8Fk1hK4!tzhjyy!VsyA2PKCYkXw5bu9sMAlzmAxjyl5csr*nqoygFQxuuNQ65yqkzn6xxVyWFXlJ4i6RkkgdcXj0ydNlVROtx233!2UVphDCJQQKwH9cyHA30hvncI!ZjzOdNC26SPdY0yH6fKgzvoRq1aDYVuIdq1PG5VCC5h2o0wNlU*31d5lCN7sNsqvg6lfstiH3NzGdf8VKyJ8q7fzBnRO8_/results,1 34422,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!dMaMkCzARwi2k0ubCclZowqFMMHIkWTTnx99YDOkdgf71Fy00r5ln95bg5WQeobyGYw!TCgPDZ3BrBGMNiaK19eacWV2FVWV6ExVK7naN1qZ4hCYszLPE6oYb8u6rUzWJj!C30Iozcv7Wqvg15MjwDAxjSTt9tL0xii1Kfim9c5u!jOG6z50XReUteRMB5U4BPv3Pr!ToiRMtGq*JWXVJ!uS7Rp*QOuHkhVcHszNfSIvCrJZPZPHdLPy9ZFSuWA*6fZYkW8IiGGULHr8oSBF8fjSo6G7qVnibGtvnlslGN4pdwAWMPoym1sa9Q11RvDW2qOprhmRtH039hD!Z2f8U7VoB0tGy5YqKxRntpPxxAWc*4B9cwyzoSTxJYkr!YLFHovPYZHHonMY9hg!hy08tjhiyC!nuyE3u0QxIfl82NrdehDgKu*AUD8*VXnNFx9FKRhsuGQccp1TF76ZcRclhV5SeI2k5VkecHrzksFl1xGtxrb7!uMRpRhFSQyWIPLjmoejgV4xn1vE*B*z!WLBVbLHmgbZ*6YKw1uoRhZNpgK3UI0cn0oFlrdQjQY4meqvr8sUqtHvYTJVfJnK*S2Iqmbms684leyN8PYT64XJeA__/results,1 34423,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!dMaMhCzARwi2m0ubKe1ZQ4TGVmMkR5JDf371gc2Q2h3sU3KRtLuPfXpvDdZSmRkqZ3Hyarff8nkWF5QJo5g9cGEXwbpd3VqAUEwf90ZbHAQ21vZRUmuLbrjY2qxLvkbPUmrDmq*c6Oj7D98bx5ltpOruqPY2QrlLxTtjDu7Qxzhe91vXdVHDFaMm2sq36PjS5w9KNoRKoY8tabZ9kjf0sA8BWj82tGLqjVMWEmVVkc3qJ3nKN6uAT7QuJf1WtydEuSEQAAQgWvSIx4pU1dOvvg79Xe2SFq27e!m04PhB!wC4glVYuNzS6t*X3gomnEGmNpwSVYsXaxBhfw7WQc2lGEwZLW2tnVRcuE7WFb*h8kvcN8dxMUCyAMk85F0tDbX0Ui0JteRSDYcavlRbhNriVENhOd8N!ellmkrF5sPRndaDAI98AAN!fkYFzVcfRTkYbLhmHPKdc799MuOuSoJBErxF0vIiDzi*e9ngsu!IVmPbA*4UohyjJEvBEiRhXHM4GugN87lHzMeYzzsLbpI91jTI*j8VhPdQjSyaTAXuoRo5PpUKLO!hGg1wMtU*X5cpVKPfw2Sq9DqV*1uQW07tZ1!zWtEdYeIvg1nHww__/results,1 34424,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zmzAQ*TW!dMaMhCLARwi2m0ubKe1ZowiNQ40lRxKhP7*6wGZI7Q72qb1I2n3LPr23BmupzAKVizh5s5viplOiEbtFXBhpl5*yxa6a8z1X2p5o28qeCsbtA0Jx3bVG2!cgsLG2rQjVjIvadUClS75FL1Jqw!vPjdHR12!eC8eZ7aVo36nWRih3qfjVmKM7DDGON8PW931UN4ozE!3ke9Tth*xRyZowKXR3IPVuSDY1O7YhQJunmlVcvTfuvi5RVhXZrr!T53y7DvWJ1qVkX!jhVFFuCQQAZilOh4qnilTV848Bh*6udkmLg7t76bTg!FH7ADjAKixcbmX1t9RbwYUzyFDTMKKo2FuDCP91tA7qRorRlMlyoNpJxYXrZF3xGy4*xUNzHBdjSRZKMl*yAUsDll7CkoAllzAcMHwJewjYwwlDYTnfDfnpZZpJxZfj0Z02owBf!QjG!uW5Kmi!!ijKwWjDNeOQ75z77T8z7qokGCTBWyStLvKA87uXjS77jmg9tT3Un0KUY5RkKViBJIxrCScDvWE!94j5N!bzwYKbZE81jbL*TgXhPVQTi2ZTgXuoJo7PpQKre6gmA5xN9cfXZQ7V5Pcwmyq9TuX*FuSuYfazrzlV7JVw8RsTfs3!/results,1 34425,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zgjAU*DVeOiOTkAbwCEVtL61T2nOGhowyKqFJ1P785gNlsNJBT!2F5L1ds9l9KpILNULpyA8!9SJlrXeVYHK3UVI3INC11BySS8qqoqyWumuan94H51Kx4rFU0nt5tYdgPxr5icgPO7HRFYpNy18pVZtNU2N*1iyHw8ErSsGo8pZ87!3WTb8WvCCUV3K3JcWyaZYFrTeuQLOngmZM7EvKXCPNMjKfvpFFPJ86fiBlyulzvj0y0jmBAMAojIKG8ZSRLFu8Nzi0d9WPMNmau6fGC*YfpC2AAbTDxPQm2v8mt1GwygSkclVSIvJqrQMi7KvWCcqSV20oncc2l8YqTsxJOhW74PTObw7HftJSIkeJLOUMCx0WXsIChwWXMOwwfAm7d9j9EUPucbobstOLJOWCjdut2c1aA5b5AFr!!MRynns*imLQxtAXHLInx3b5Z8H1WoLOErzG0uSiDjj99qI2ZXsimnZjd*xjiWKMgigEExC4cY1hZ6BXzOcWM39jPmcRXGW766m1*bsUhLdIdSIaLAVukeokPlQKTG6R6gxwsNSPf5chUp3vw2CpsF*Kvhb4sqTmTcpyQVeEVd8ZIsBO/results,1 34426,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zgjAU*DVeOiMTSAN4BL*qqU5pzxmaZCyjJjYJtf33zQfKYLWDntoLydt9ZrP7FJWQegAngyh!N4tktOa05OTLAFwyVW!0MngITK1MKy4VYZxWfGVQC74Hr0IozehDpVXw!OTOQlE6iHJZ7mu5MRXMLBS9ab2zm6ZG0axZ9vt9QCvJiA5W4iOo1w2!k4JiIriqt5iuGrCiZLfxBZwtKCmY*KgI88CkKPB8!oyX2Xzq!2MuKFvQhk5h0sCLAhfF8qXBQ3dB80jyrb3wxBpA0Vi5AljC2MotNjKmN6Xzz7hNRZe6IliWfG1SwexzZ2JTleBtEp3HtlTWH8rtSSYKt6DJXdQcjqK8bUl9S!paTrjEc8k5LvZcfI5DnkPnuHvP3R846B*Hu0E3slQRIdmw3drdrDXgOseg7R8eu7znix!FGWhjuBQcdCdnbvlnwV20FHpL4TWWRmd1wPEHl7YpuxPhtBu77z!UMEMwThMwArEf1zDsDPSK!dxi5m*M5ySCq2x3PbW2f5cKw1ukOhH1lgK3SHUS7ysFRrdIdQbYW!rH26WPVOf70FsquSzl*hbEqiLmta9YKckbZvwbHSDAFA__/results,1 34427,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zgjAQ*TVeOiOTEAN4hKLWS!uU9pyhIWNplWgStT!*!UAZrHTQU3tJsvueu3lvESQXaoDSgR9s9fbB3wZ!QlmlBNOpSjC5WympEQh0LDWZ5FLjRVktddYkt94b51Kx4qFU0nt6ttWwH!lCIj*sxEpHKDYp*12pjTnUMfan9XY4HLyiFIwqb8n33u6zzm8ELwjlldytSbGsk2VBNysXoOm8oBkT!5Iyl0izjMwmL2QRzyaOH0iZcvqYr4!MdEYgAAhANKoZ84xk2eK1xqG9q17CZG3unhot2L!XNgAG0AoTkxtr*avcWsEqY5DKVUmJyKtPbRBhXxvtoCx51ZjSWta5NFJxYippV!yG0zu*Lo79pKFEjhJZyhkWOiy8hAUOCy5h2GH4EjZy2OiIIbec7obs9CJJuWDD5mhO00aAZd6Dhj88sZzmzp!iGDQ2dBmHbOXYbv*MuE5J0EmC10gaX!wDTv!9qHHZVkSTtu2OfwxRjFEQhWAMAjeuIWwN9Ir53CLmb8znzIKrZLc1NbJ*bwXhLa1aFvVuBW5p1XK8byswvqVVa4C9W*14u*Rp1XoeercKu1vZzwJfllS*9iXLBX0nrPoGxQHDOg__/results,1 34428,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zgjAQ*TVeOiMTEgN4FKnTW2f6B5gUMsqoQZMo*fndTVRKix3k1B5Isvte9u2Hgqm1nbBsQqMjbIVQE5pafMRWwlbq6lypNTqkQb8C*kZqpFVa7oQq4arS0px21kCEkIBtgJQLU0hV4mWWofMYvNe1sbJ8qawJXt!cKqcJRNKiOekdWGyBLrqx9oCHi83p6rI1TROoqgTlwgbr!hyctl8IFJY43WOcDONyujTOIAiAWoq!OeQCeWNaUmGyVtiqyLVQW0g2lx8HqMZUtWoT7Cx7YVCUpxgJMnQbz57oJTinaUtJPCVxlG9Y7LG4D4s8FvVh3GO8D5t5bHbFmF9uuTHXqMQUtZbT9oinVVuAYy5Jy5*eWL7mu1fZgrRtuNc45iIv3PbPGne3pNCXFD5S0rxXh9z!B0nbZReRPXfb7vlXky04i5KYzEnkxzUNOwN9YD5jivkb8*nWgofK7tbUlv27VBiOkeq0aLAUGSPV6fhQKTIfI9UZ4GCpH2!XIVKd38Ngqfi!lPss1OuqgNe!kUIXm1yqT3GBr!I_/results,1 34429,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1zgjAQ*TVeOiMTEgN4BD9aT!2UttcMTTLKqMQmsfbnNx8og5UOemovSXbfui*vLYISUg*QdACjD7NN8nQAs7dCloUuRWWyleRqv9HKgCEwsTL1pFCUV6ysliZrkx*BuxBKc*ZQahU8PruGGCamlywOe7kxEUptCq603tlDHWM4r7fD4RCwUnKqg6X4DPbrOr!TghEqKrXfEraskyWju40P0HzBaM7lZ0m5T0zznNzPXshTej*z9VElGF!wGg4jCOv8Iid5*vR6BNwNzRJnW3vjqVWA4US5AFjA6MpsbmxUbwpnALc2KW0Mo0QW1drYQvjXzvimrIUnK1rLtlBWIM5sJ!OF2*D0DtbNMcyaksSXJK7kDIs9Fl*CIo9FlzDsMXwJG3lsdMSQX053Q25miaJC8mFztKd5I8BVTkBTPzxVec2dP0UpaGzoMg65zqnb*plxnZJCLym8RtL4Ig84*eOSxmXXEc3atvv6Y4hSjKIkBmMQ!XENw9ZAr5jPLWL!xnzOLLhKdltTI*t3qjC8haplUW8qcAtVy*G!VGB8C1VrgL2pfrxd!lC1nofeVHE3lfssiGVJzWtf8ULSFeHVN2DhwS0_/results,1 34430,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1z2yAQ*TW!ZMYaJIw!jlJkO760mao9MxQxsiYWOIDj9t!XD9kapXZG9im5ALtv2cfbBUkJqWewnEXxq5lIQ1qu9CwqGkm6jkizUnQrxM4u*irNOhPJJVOHnVZmQwiMrUwOTBRlvG55Y7zW!Rr8FsJsqJ9arYLvPxwJilKTSJLjQZqMCObWFW213ttFb6No1U*H4zGoW8moDhrxFhxeev9eihpTwdWhw3XTO9ua7nfegKtNTSsm31rKvKOsKrxe*sTP!Xrp42MuarapeziDvXdT4ap6*tW7Q3c!MyRFZ89b2vOj6FE5A1jAqCqsLzOzUemNz6NSqVLQb6Q7RZRrHAIAFyCeqjj5!ooXIIxBmk0UHH8gON4Rd8MZt*deE91SLAl*Mfcesz978zBUK*hw10dDR5RVigqbyRTFTah8iPrkKCqGkNSHpC7kHZZ4LLmExR6LL2HIY!gStvDY4oRBP5zPBl3zUkWFZPNhaVerQYCLfARD*Pwc5TVf3QpzMJThWuGgy5y76YsV7qqk0EsKb5GUXeQB56eXDlV2GeFyXHYffzJhjmCcJiADsW*XPBw19Ib!3CPmc*TnXQlukj3WNMj!mCoM76EalWgyFbiHalTxqVQgu4dq1MDJVP99XaZQje7DZKrkOpX7LYimpeazrxiRdIsZ*wehB0nW/results,1 34431,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1z2yAQ*TW!ZMYaJII!jnZkO760mao9aygwtiYSOICs9t!XD9kapXZG9im5ALtv2cfbBUkJqWcwn0Xxm5kkoy2nmJO*s2jZ7auaKW1WgpuhwZpJXmkL1QwfmdnDJVNtrZXZGgJjK5OtxIowTiu!M17rfAt!C6E0o8!VVsH3H44ORanJI3HXytpYcGFd0V7rg130NorW*dR1XUAryYgOduIYtK!9*yAFLYngqm1KuuudFSWH2htwvaWkYPJYEeYdeVGUm9XP8mWxWfn4mAvKtrSHUQJ797Yoi!LlV!8P3QHNkCwbe!DcCkDRk3IGsICRtbS!zMxGpjc!j0ylckG!4eYUkW*KEIAwTeNsouLkiykeNTbO0ESZ8Qcy4xq7i824ve4a64qUEvNXc91L9udg3oOqzHM5X*HR0GBl9aGlzWRK4SaUP0R9cmRf2Skk9SGpC3mHJR5LLmGxx!JLGPIYuoQ9euzxhEE*nM8GXctSRYRk82FpV!tBgIt8AkP8*BzlNV*dChdgKMO1wkGXeeGmL1a4q5JCLym8RVJ2kQecH1w6VNllhKtx2X38yYQLBOM0ARmIfbvm4aihN*TnHjGfoz*vSnCT7LGmQfbHVGF4D9WoRJOpwD1Uo4pPpQLZPVSjBk6m!u*rMoVqdB8mUyXXqdxvQewqYj77imFJ9iXj*wDHaErP/results,1 34432,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1z2yAQ*TW!dMYaJKIPH6XYTn1qpmrPDAHqMMGgAI7af18!FGuU2h3Zp*YC7L7VPt5bSzZK2wVcL7Li1W2464T4tciaH0q7lXKDn7jg1qewEKrHkjBXKzUzR2GNeyQFLjauC8KGMEm53LusT74mT0oZy!hnbk3y5WugybPK9dK4P2rhIlj7VPZsbecPQ5xn22Hr!z6hXDNik716S44vQ77TiiKipDkeEN0PSU5JJ2IAtztKWqbfuL!vT6zbFj1svqHH!mET6wupKNvRAa6qIbtrUds!fh*SabifW8rm4O!7zkLdvQkB8IBT1fjcymkWOMhn0ptiseUEaSxfnCmI*eyca4YrORoxWQ7YeHl54zs5J8KWrz9lQ*M8a8aSKpZUoeQDVkasPIcVESvOYXnE8nPYXcTu3jEYl9PdYJhYZYjSbDke*Wk7CgiV92CsX56qouaLj8IajDZcMg6GznXY*jPjLkpKo6T0Gkmrszzg9L5Vo8uhI9xMbY*17yGsc1hUJViBIo5rmU4GesV8bhHzb8zngwVXyZ5qGmX*nSpNb6GaWDSbCtxCNXF8LhVY3UI1GeBsqj!!LnOoJr!H2VTlZarwt6D2nLjPvmFYk2fE5G*huMk9/results,1 34433,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1z2yAQ*TW!dMYaBEaSj1Jspz41U7VnDQHGYSKDAzhq*335UKxRYmdkn9ILsPtW!3j7ZNkobWdoNYPZi9v26lG0wv6dwYq0reqIpNw4TGpujq01riQFLjbuqYYYyiUTcueyPvmSPCplLGffhTXJj5!hLYaFa6ZJd9Sti1DpU*DJ2oM*9DGGm37rui5hQnNqk516TY7Pff6gFWuokua4b9iuTwpGD20M0GbLaM31q6A8JlZ13dyvfzUP5f061mdSMb5lPYzSRZ*e1k1dP*zu82m4oFvyau8vvPICMLwzIQAecLIqn1u63cmMwReVmcF0osz8E5lZS4LNXHrzLbGCNprIZ2d!w*8c3NthhJKD4aNlT4zXhyvfyY0ibHj1DfbNMayGkiKWFKHkHZZHLD!HZRHLzmE4YvgctojY4g1DcTndDQXLCkOV5vPh6E!bQUCovAND*fxUFTVffBSVYBjDpcGh0LkM2382uIuS0igpvUbS8iwPOP3gimHKoSNaj8ce699CVGKUFTlYgizaNU9Hhl7hzy1ivoY*70ZwleyxpkH251RpegvVaESTqcAtVKOJT6UCy1uoRgZOpvrwdZlCNXofJlPll6nC34LaCeo!!4YTTZ8aLv8BhAUBxg__/results,1 34434,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1z2jAU*DVcMoPHluKvox0DySXJ1O1Zo8oq0WBLjiRC!!!rD4PHKXQMp*Yi6b1d3npXgJWQegGrBUjezaZo!2MBStr1rfjVUa5NgXljVsXIjlOlDJFLqvatVoYfhaZWZgTCilDeML41Xdt8D74LoTRtHplWwcsXpxGDzIyS!LCXralgYVvgTeveHoY6ButhOxwOQcMkJTrYio9gvxv6vRQNIoKrfYea7dBkDelbX8D1U0NqKj8Yob5R1TXarL6i12Kz8vxEqUqQZ9wdGdUGRSnMYTTgTzWq69dvA!q6wCxp2dknr6yTGDwoV4QWMP5K28uN!xa7ICi38WisGUES852JB9GfvclPMcHHSCZLh5U1Gpd2ksnEbXF1B4bhMShHSuYpmaN8wlKPpeewxGPJOSz2WHwOu*fY*RGDfjk9G3R3lykiJF2OR3tajwYc8yEc!csTy3u!!FFYhGMMl4KDbnLhtv8suIuWIm8pusZSflYnPP3ysjFlNxGuprF7*rGERQyTLA3zMPHXtYwmF3rF*dxi5t!4n08RXGV76mm0*XepKLpFahLRbKnwFqlJ4nOlwvwWqckFzpb6499ljtTk!zBbKr0s5V4LYsuIe81iSd4Q5b8Bl5HK5g__/results,1 34435,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1z2jAQ*TVcOoNHtuIPjnaAhFMzdXvWOJIKmhiJSCI0*z4rycHjBDKGU3PRancf!*zegjFK2wmeT5LsGYLdcKVfJ0llubEQKNdW*BW0sRyyVrliJjU3!9YawMcIcgMjSGMol0zINVRd8Tl6VADn7F5YE*385TnSpIAxujnsdQsZLl0p2Vi7c5cuT5NlFw6HQ8SE5tRGa*US7Z!6!k4rRqiSZr8lbN0VBaO7NiR4uWK05vpFUB4K87omd4vf5KG8WwR8JhXjK9a1k2LWlVc1qeuHP1099g8IR15tJwHoKrfGJ8g1QFblajAgaxuvn0vnim2soEQ38glcIfzfDmwzQsneicGxbYzTl1ZuEljhQzr*kXTD06TqIUWAFB7yoZeHXn6ql4VedqqXhl56qncTejfvPRyO47Nhv7LCUKX5tL!627IX4JG3qMdPj6ig!exHcYl6G84Zh*3k0odvZtxZSXGQFF8iaXaSBx1*cEXvsp!IF0PbA*49xWWKsyJHM5SFdU3jwUIv2M81Yv6P*Xyw4CLZQ0297K!p4vgaqoFFo6nQNVQDx8dSodk1VIMFjqb69HYZQzX4Poymys9T!b8FtRYUXvuGN5puCJdvNDzIUw__/results,1 34436,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1z2jAQ*TVcOoNHsiLbHO0YSC5tJk7OGiNriAKWiCRCf370YfA4hY7h1F4k7e7zPr232GipzASVkzj5sBsXVLZsEherWrPG7u9yZVfN2IYpbUFCMb3fGm2xENhY28dJrSkTDRdrm3XJj2glpTaseeBGR7!efX8cZ7aTqg97tbURyl0qfjNm5w5djONFtx0Oh6jhilETreVntN90!Z2SDaFS6H1LmnWX5A3dbUOAFo8NrZj65JSFRFlVZDl*IU*5ch7widalpD*r9ogolwQCALMUpx3isSJV9fTa1aG*q13SonV3L50WHN9rHwBXsAoLl5tZ*dvaW8GEM8jUhlOiarGxBhH2e2cd1FyK3pTB0tbaScWF62Rd8Rsuf8RdcxwXPSQLkMxDvtXSUEvP1ZJQS87VcKjhc7W7ULs71lBYTndDfnqZplKxaX90p0UvwCPvQY!fnlBB88VHUQ56Gy4Zh3zn3G**mXEXJcEgCV4jaXaWB5zevax32XdE86HtAX8MUY5RkqVgBpIwrikcDPSK!dwi5t!YzzcLrpI91NTL*jsVhLdQDSwaTQVuoRo4PpYKzG6hGgxwNNUfX5cxVIPfw2iq9DKV*1uQa07tZ1!zWtE3wsQXtoPJaA__/results,1 34437,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1z2jAQ*TVcOoNHH8gfRxMDTQ5pJm7PGkfWEE*AIpII*flZSQaPU!gYTu1F8u5b7dN7i41R2k5oMSHxO2wLY1U7IfMJYeQO9gf1AquQrdXymLMmhjUzNZxptTT7jTVwFCOIDXTjlYEDddOuIeuS79GLUsbK!ntjTfTj2dMxkkIXXR32egMRzV2KvFq7cw9dzMiy2w6HQ1Q3WgobrdVHtH*r8jutai5Ua*ZbXq!7ZFOL3SYEdHlfi1Lqj0bIkCjKkq8WP*lTvlqE!tiYQonHanusKFYcI0QRprOu4r7kZfn0q8OxvyssyXzr7l44LWCO8QFyQNGZmIH!TeWtkK0zyFa2EVxX7RsYxOXvHThoGjD9ZMpg2VbGSWVz1wlc8RsrvpGuOSPzviQNJakv!YIlAUvOYXHA4nMYCxg7h80CNjtiNCynu1E*vdQIpeW0f3RPy16Ar7xDff30VBU0XzxKc9TbcMk46jvnfvvPjLsoCQdJ!BpJ2VkedHr30t5l35EuhraH!mNIc0bjNEEZisO4pngw0Cvmc4uYf2M!Xyy4SvZQUy*771QY30I1sGg0FbqFauD4WCqU3UI1GOBoqj!!LmOoBr!H0VTJZSr*t6DWjYDPvpGVFq9ctp9kYcu2/results,1 34438,http://www.nfcca-camping.org.uk,1 34439,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1z2jAQ*TVcMoNHtpBtjnYMNJckU7dnjSorRBOwiFaE9t9XHwaPU!gYTu3FWu0!7dN7iw0obSa4miQpGOZDZON3u64YTJKyZi*C*LIBF9rIF8mZETaftlrAfmPAAmN3AmwfyoCLtpHt!tgm!qEUGNF8kQaip6!eiCS5bafZYa83docLl0pejdm5oNuTZNkth8MhaqQW3ERr9RHt37r8TquGctXCfkubdZeUDd9twgYvHxpeC*0huQiJqq7pavGNPherRcCnAJXij2x7RFQrOkNxls5QB3ioaV0*f!*Ksb!qfWTl1l29clJIcg9!485kVmDpcnMrf8O8E6IN7hrJqWbtm*WHip87ayBI1faeDB5bBk4pKV0na4pfSHWXdM1JUvaQPEByD*lUy0ItO1dLQy09VyOhRs7VZqE2O9ZweJzuhv3wcuBKi2kfumjZC*DIe9TjpydU0HzxKC5Qb8Ml47DvXPjlPzPuoqQ4SIqvkTQ*y4NOr17eu!w74sXQ9oA*bnFBcJpnaI7SMK5pPBjoFfO5Rcy*MZ9PFlwle6ipl*13qji!hWpg0WgqdAvVwPGxVGh!C9VggKOp*vi6jKEa*B5GU2WXqfzfglpLbj*7IJjmr1S0vwG47cv1/results,1 34440,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1z2jAQ*TVcMoNHspA*jnYMJJeWqdvpUaPKGscTLBFLhP786sPgcQoZwylctNp9z7t6u0go2ekZKmZh9GZMSxuhqaCC8VmY1x0V2iCi42q*1coQIDC!Mt8QqhgXVSNqE7XBt!CPlErz6qnRKvj!wyXFYWLydPSw77bGQ5kNhS9a7!ym93G46s3hcAiqpuNMB7V8D*avfXzXyYowKdS!JVXdB5uK7bbeQavnipW8e2*suW2gKEuyXv4km2y99PxIqUKyb7Q9Moo1gQAgjKOoZzyXpCw3v3ocurOaJc5be*bCasHho3IOsIBRmNtYaqxR7J2vrhgmCZ6qOL5*xb83MI0BABMVR*evGMYLsJg6YfyJ3mhL3fXmwl56TXXDiHkSXs2lJ*zvzrwKqpFiuOijpaXKCsW5zWR64gwuHsI!OQ7zgZJ4SuIoH7DYY*E5LPJYdA7DHsPnsIXHFkcM!eV0NuRmlygmOz4ftna3GgQ45iMY!PMTy2u!!CnKwNCGS41DLnPmzJ017qIk6CXBaySlZ!uA081Lhi67jGg5brvnH12UYRQlMUhB5Mc1h6OBXjGfW8R8jfl8aMFVsseaBtmfl4LwllKjFk0uBW4pNer41FIgvaXUaICTS*33ukwpNfo9TC4VXy7l*hZk3TDz7CtOO*ZCuPgHfgaIXA__/results,1 34441,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1z2jAQ*TVcMoNHliLbHO0YUk7J1O1Z40oa0MRIRBIhP7*6MHicQsdwai!Sdt9qn99bbIzSdobqGcze3Ua3omMzWNn2061UcyascZjU3Bw6d0R1Clxs3C3SGsolE3Ljsj75nvxSyljOvrlLycv30BbDwnXS7fGgOxeh0qfg1tq9P*Qxhqt!Ox6PCROaU5ts1EdyeOvze60YoUqaw46wTZ8UjO67GKDVmtGG6w9BeUzUTUOelz*Ia*m8jPWZVIyvWQ!nAGZ9ft2Qpnn9eQLCE7olr3b!iWuvAMMnEwLgAaer8rmFU921wQAuvS22tYIS3co3Zwvhn3vnmxFKDlaMll1rvEBc!U7Oi7Dh!gH2zTGshpIilhSh5AuWRyy*hGURyy5hOGL4EvYYsccThuJyfjYUZlYYqjSfD0d*Wg0CQuUTGOrn56qo!epVVILBhmvGodC5DNt*ZtxVSWmUlN4iaXGRB5zfuGJwOXREy7Htsf4UohKjrMjBAmRxXPN0NNAb5nOPmH9jPl8suEn2WNMg!!9UaXoP1ciiyVTgHqqR41OpwOIeqtEAJ1P98XWZQjX6PUymyq9Thb8FtRHUffYNbzXdEi5*A4dQw38_/results,1 34442,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1vozAQ*TW5VAoyuBhyhCZpc9qqtGfLsS2CSuzUNs3!*PqDBtFNViSn3YvtmTeZ5*eGgJbKzOBylqAPu23bjs!ScktY7XYqRc21aaRwwY4ol0VCcd21Rtv6GNhY2xaYaMoFa0Rtsy75EW2l1Iazp8bo6NeL50iT3DZS5Nip1kawcKlkZ8zBHfo4Tdb9djweI9YoTk1Uy8!oe!*zByUZtnfT3R6zuk82jB7aEMD1htGKq8!G8pBYVhV!XL3i5!JxFeqRkIxvWA8jlPfpTYWr6vmtz8f!gnbJyr278DLxdQ*aB8ABVlbpcgsruiVePxfOFUNMQ7Ei4t26gvnvg7VNOytPToyWPdFOX1q6TtYKv6XLu6RvniblUJKHktyX*MCygGXnMBQwdA5LA5aew!4Ddv!NwbCc7gb9yHJNpeLz4ehO60GAr3wAQ*38VBU0X*wpLMBgwyXjoO9c!O0*M!6ipDhIiq!RtDjLA05*uHxw2XeEq7Htof47hEUKUZ6BBUBhXPN4NNAr5nOLmH9jPj8suEr2WNMg!!9UcXwL1ciiyVTgFqqR41OpwOIWqtEAJ1P98XaZQjV6HiZTZZep*GdB1g21r33NiaI7zMUXZtnH8g__/results,1 34443,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1vozAQ*TW5VAoydszHMZQkm0u3WnbPiDUWQSV2apuyP3*9QYJoSUVyai8ez7zHjN!MAcmFWqB0AYNXbbIDV1XLFjBpakIZoXonKKNd0WgGE1S2jZKa6APtS*1sXkhNLGtW6agJvnp*OZeKlj9qJb2fv2xyDCOTqehaoRNhtDYheFDqZDa9j!G2N13XeWUtKFFexd!89qWPnwQvc8KZbI95WfXBuiSnxjlouy9JRsVbbU5uAmmW5bvN7*x5vds4fiBlyslTcTwz0l3uA4BgEPk9Y5*lWfb8p8dtFOolTI7m7KnRguGjtA4wgFaYmFisrVbsnK!jmPGS7ssehhGaKTP8ZjInBrsCEIIonik4!ERw0BT2ilNmLr4qVE1yUbAXffFz!u!k3wxZczZc9tFyLKRRihOTSTfFGpw!wD45hslAiRwlspR3WOiwcAoLHBZMYdhheApbOWx1xpBbLmdDdniRJFzQ5bA1u!0gwDIfwcBfXlhO89VH0RoMbbjWOGQzr635Zo27Ksl3kvxbJMWTdcDl1YuGLtuMaDNuu!OfXbTGKIhCEIPAjWvpjwZ6w3zuEfM15vOuBTfJHmsaZH9eyvfvKTVq0exS4J5So47PLQXie0qNBji71Ievy5xSo*swu1R4vZT9LfCqJvqzL2khyCGn7D95HUcd/results,1 34444,http://www.nff.org.uk,1 34445,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1vozAQ*TW5rBRkcPjIEUqS5rJblfZseW03sQo4tZ1mf379QYJok4rk1L14PPOGeX4zBpSQegLLSZS8GUO2vKYESzaJihchGxNuJVP7WiuDhsD4yjyAsCKspbzdmKgNvgV*hVCa0XuuVfDn0VWMo8yUkfiwl7XxYG5D0Vbrnd10fhwtO3M4HALKJSM62Ij3YP*axXdSUEREq*YNopsuyCnZ1d6ByzUlFZPvnDAfKKsKrRZP6CFfLXx!0grK1rSDwyTrwusKVdXD8zHuDmiWtGjsgcvI5d0p5wALGFmFjc2NNTK983NkKlUK8hs3x4xyhcIUgng2Um*6jd6kxm7erLW3QGPNCZK4fTW3ALF*O3NNFBdtP*nB0mBlhcaFrWR64kxc*oq64nFU9CmZT8lcyics9Vh6Dks8lpzDYo*F57CZx2ZHDPrldDboZpcpIiSb9lu7W*YCXOYd6POnpyyv!eKjMAd9Gy41DrrKuTP*WeMuSgq9pPAaSfOzPOD05mV9l11FuBi23ecfXZjHMMlSMAeJH9c0HAz0ivncIuZnzOdTC66SPdTUy*6eKgxvoRq0aDQVuIVq0PGxVGB!C9VggKOpvnxdxlAN7sNoqvQylfstiA0n5rOvGJZki1j7AUCkAj0_/results,1 34446,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1vozAQ*TW5rBRkcPg6QknSXHajZfdseW0rRSWY2k7Sn7*!IGFpSUUirdRePJ55g9!88QCSCzWDxSyIXrShxxrrbSOYPNRK6ogPtC91EsKSsIZWzU5HTfDF!8O5VIw!Vkp6P37aU8IgmQW5wKeDqLUHMxMKnpRqzabzw2DVmdPp5NFKMKK8HT96h!cu3gpOEeGNPOwR3XXBipK2dg5cbSgpmThWhLlAUZZovfyFttl66fKjhlO2oR2cwC66KVFZbn93Yd*Wp5c435t6C1N*GDxI6wADaFW5iaXaapXO!TwqpSw4!Y7354xijXwA*CCNFxMVx*9HscKvtJJkVPnyWG*1TOE6a9t*nhyUFX1QVlRjO4esMdOpsKoIErh51tOJ2Gurx1dWvOkncrDssTR1hLk5SZduTVh8C7rDwyDvUxKXktiUN1jssHgMixwWjWGhw8IxbOGwxRmDbrnUBm2jEkm4YPN!a3arXoDNfAB9*vyS5TRffRRmoG*DtcZBe3JmzRdr3FVJvpPk3yIpHeUBlxck6btsT4TLYdtd*tmFWQijJAYpiNx1zf3Bhd5wP*eI!Rz386YFN8keauplf0zl!*dQDVo0mQrcQzXo!FQqkN5DNbjAyVTvvi5TqAbzMJkqvk5lfwt8VxH92ZcMC*KEWPMXRQYmYw__/results,1 34447,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1vozAQ*TW5rBRkcGzgCCGkSNtSlfZsscZKUROc2qTZn19*kCDaJCI5tRd7PPOY5zdjG8lFO4HJxMOyLY0JlP2u5nmUTry4mN*l!V9lRMl9VhRZ*qDsNH!611!8TzwEI6DAl2CNYHK3bqWCuTq5VJSklJQ1Vd2sDozOP85ly6q7upVO*mT2hLxApRHlfifWhkq7vNe23WqjWyMv7ab9fu9UtWC0dVb8w9m9df6t4BWhvJG7DalWnbOu6HZtFzDNKlow8VFTZh1JUZDl4pk8RsuFxeOGVyyrunAIO29WkKJ4fOncrtmfGvx4o*eb6P0jby7NAuiAUhVrX6hmpdIufo5KKRNOH8rNAZEsiQsAnAE8VrH*!xXPgItBEI4UjC8IxuvSnHDW2AvW1pSIsnlT556w*1t1MWTNm*6sD4ZNKbVSFOtMqihmQskfr0uOvLiHBBYSGMiXmG9j*qkYtjF8KoZsDJ2KzWxsdohBOxz3Bk3zAkm5YNPe1FbaCzDIOejx0yPKaj77qX52jmU4VzhoMkdm!mWFOyvJtZLcaySFJ3nA8eoFfZVNRrgYlt3iD0sYIYgDH4QA23ZN3UFDr!jPLWJ!Rn!!lOAq2UNNvezLVK57C9WgRKOpwC1Ug4qPpQLhLVSDBo6m!va6jKEanIfRVP55KvNb4KuaqmdfslLQV8KaT9h8UuE_&C.sa=eJwLCPL0dQyKjA8MdQ2KVDV2cXZ0UzUyC3Z19vdzQYgbmRo7GgBlg509*P19VI2cHF18PYODPf39gGw3*yBfAMKNE0s_/results,1 34448,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1vhCAU*DVemmzCx!LHUddu0nvvhli6NetCC27Tn98HZJdgtVFP7QUezMA484wapYeE1glJP2B61vxT9AmpatVeL0IOUD7JVwWw1MJc!8EACyNYGzjYcNMK!dLJE!zazZ67UkhLGPjQtY3m8gyERny9ww2mU9LJMZKPhgs3ZyhYRQqYaOkmVj8Qi9qaVIGSe0ruKCMs81g2haUeS6cw5jE2he09tr9h1A*3Z6NH58G0SotdKG11DAYc84ACf3dnec!zR2mJQgxzwVF3c!mmfxbcrCXsLeE1lopJHR9O0HApuxvpYxy759!WtGQ0zTNUoNS3a4ejhq7ozxYzf6M*owhW2Y49Bdu*S2G8RSqKaLEU2iIVJb5UChVbpKIGLpb68XVZIhW9D4ulsnmpwv4W1Klr4bNvBNftWyPkN1ptgU0_/results,1 34449,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1vhCAU*DVemmwCsvhx1LV76n8whJIt2V1sgTbtv!8Dskuw2qin9sJ7OgPjzDNqBm0z0mV58Qalk4ZrYeWgmP7K8vZJsA8B1Q6waHFlUgFTaWHeL9bABozg2sAZPTNcqGepTnDX3bww3wq3wVhmJe81U2cg9OLzFU4woOKVaV6NliszZ2hom9dQSOML7R5yh7o!byOlCpTKU0ZYGbByCisCVkxhNGB0CtsHbH*DSFjuz0aO3oPhgxa72LruGA145gFF*u7OCp5nt5IGxRjmgiP!5MaXfxbcrCUcLOE1lupJnRBO1PAp!xPJYxp74N8uSUNJUZWoRkUY1w4nA10xny1m*sZ8RhGssp16irZ*l8J4i1QS0WIptEUqSXypFKq3SCUDXCz14!uyRCp5HxZLlfNStfstDCfJ4bNvBNP8pRfqG4!phVk_/results,1 34450,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1vhCAU*DV7aWICsvhxxK57apumH2dDLNma3WIrNunP74OXXYLVRj21F3gwI!PMM2jart!w3SZOPmC6e74tyof7G*FUPsKW7pT5PPUGEEpgbYBcSVMr*dLoA!zazZN0pdKW0Mu!qatO6iMQKvX1DieYptVOgsfZYHiT5ggFL!IcJibcxHdXsUVtHReekiElc5QBliKWjmEJYskYxhHjY9gWse0ZYzhc3o3tnQdTt52KfGmrvTfgmNfE86MLCz1PPsoE8TFMBcfcycJN*yy4SUsULdEllvJRHQzHa7iU3YmsDGNH*nnJBGdJlpKcJNiuiAYNXdCfNWb!Rn8GESyyHXrytn!XonSNVBDRbCmyRipIfK4UyddIBQ2cLfXjdpkjFXwPs6XSaanc*hbaQ1PDtW!U7OrXSulvPDJ8dA__/results,1 34451,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1vhCAU*DV7aWICsvhx1G4322vbuyGWbM1usQs26c*vg5ddgtUGPbUXeDAj48wzaHo9bNhuk2YXmOrHp5fDMyyUlubzPBjYowTWBmiNMK1Ur506wq7dPAtXSmUJgxi6ttFCnYDQyK8POMF0vXKH87QYDe*CnKDgdVrCxCo38d1dalFbp7WnFEgpHGWE5YjlU1iGWDaFccT4FLZFbHvFGA63d2N758G0vZaJL2219wYc8554fnJjoefZR1lFfAxzwTF3cuWmfxbcrCWKlugSS!WkDobjNVzK7kT2EMaO*OuSVZxlRU5KkmG7Eho0dEF*1pj5G*0ZRbDIdujJ2*5ditI1UkFE0VJkjVSQeKwUKddIBQ2Mlvpxu8RIBd9DtFQ!L1Xa30J*7Fq49o0Uun1rpPoG4IJ6rg__/results,1 34452,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1vhCAQ*TVemmwCsvhx1G79Bb0bY!mW7ApboEl*fgfoSrDaqKf2IgPvwePNGEZLZRJyStJMm86FKYLJOwQDFzxJ60EaCStCMf1xNRoAbBkaNrad7pl44eIMq3bx2rmQCX!e4X2rOnEBQss!b3CC5lI4OZoWk8*Q6QsEtE5LGEjlBnp6SC1qY7jKSCk8pXCUCZZ7LJ*DMo9lcxj1GJ3Djh473jHiP!PdSOM86F4qdgihjZpgwDEfUeAfRpb3vLiVVCikYSlxxJ1cueGfJW7REvaW8BZL5ayOT07QcFl2J5KnOO2ef5!SipKsyFGJMl!uA44KuqE!e8z8jfpMUrDJduwp2P5dCuM9UlGKVkuhPVJRxtdKoXKPVFTA1VI*Xpc1UtH*sFoqX5YqbVuQZ97Ds69Zp*q31rUHxV65YN!9oH6WNzs2mhumWW9sm7Bz23wUtI8vIQuQlg__/results,1 34453,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1vgzAM*TW9TKoUSPk6wrr!gt1RlHodKgsdptJ!*py4bZQOJsppu8Q2z*Hj2Qhj1w8ruV3FKQ7KuYL8T7K6a1s4AFJoesBzOyA9jSyMdKlWqMHsG3O43GmVc8FwraHRda*MkRJq!DpRBWw646iSOL87PhQeyUmquCAjS2eS7VNsUevHlU*JOSV3KXdYxlg2hqWMpWNYwlgyhm0Y21wxycft3eTOaUDd9bD2rvV2XoDLfBY!f33LYs2TV2UpfBumGidd5dKZf9a4SUkRS4oekVSM8nBzPIfrsqsoX8K2c*41lGUi0zwThUh5XOsoGOgD81ki5m*M564FD8kONXnZv1NF0RKqoEWzqcQSqqDjc6lEsYQqGOBsqh9*lzlUwfcwmyqbpirsWugOjabfPoLq9Xvt1kMPb42Byy6oXruTtTtsBkDQg10TNob9WSuOKmX2dLZUw9BC!QZZHJWv/results,1 34454,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4yAQ*TW5VIqFTfDH0a6TbC7dar17Rl6MEqsOuOA0!*N3ACeW26RycmovwMw8z!PNANZSdTOcz4LwFSZRdrUUZTMLslrogyoF47De8aZtagHLUCiuD02nAewjsDV8T0vNuKhqsQWvcb56f6XUHa9!1J32fv6yBCSIIZUqjwcF!QlOjSvYdV1rFr1NglU*HY9Hr6oVZ523lW*e4aX3t0pWlEnY3Z5W295ZV6xtnIFXm4oVXL3VZuvGkRcFXS9*0!d0vXT4UMiKb6o!HJCkd28KWhTPf3q*bzcIQ5TtZxYYG8!jtgYyAZCVGR8kyECmM76oTB8v8ESd0TfTqXUu2VO5PyHyNfUThBbxRL3hJ3rDprTnmgtz2ju4IIzCvXiB0075vxaug4YrM5zw0bAvtRFKMpMJamInkj8EfXISZAMkdpDYQt7FIheLLsVCFwsvxYiLkUuxhYstTjHshvPesO1drJlUfD4szWo1CLDIRzTg52eU03z1U5yioQzXCodt5tRO36xwVyX5TpJ*i6TkIg8637x4qLLNiJfjsjv8ycQpwWEcoQSFrl1zf9TQG*pzj5iv0Z93JbhJ9ljTIPtzKt!*h2pUoslU6B6qUcWnUqHkHqpRAydTfXhdplCNzsNkqug6lf0tyG3N4NnXvFRsR7n4DxmqRdU_/results,1 34455,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4yAQ*TW5VIqFTcD20amTNJduVe!ekRfTxKoNKZBmf375cGK5m1ROTu0FmHnjebwZwEpIPYH5JMJvZnqRjE2iuaJbIRqzaFnZKINxydS!0cqEhMDYynxFSkUZr2q!MV7rfAv!CqE0qx5qrYJfzy4tihKTR5aHvTQJEcysK9pqvbOLzkbRspsOh0NQ1ZJRHWzEe7B*7fw7KSpCBVf7llSbzllXdNd4Ay7XFS2YfK8p8468KMhq8Zs8ZauFj8dcVGxddXAKO!!6IEXx9Kdzh25*Zojnrd1vbvePonvlDGABo2pufamZjUpvfB!VSuWCPpbtMSJfkRAAOAN4rOL45yuegRCDJB0pGH8hGDelO!GM23OvS11TIkv!as49Yf925mKoWvD!rA!GtlRWKZrbTKYobkL5XdQlR!aKnUISH5K4kE9Y7LH4HIY9hs9hyGPoHDbz2OyIQT!c9gZd8xJFhWTTfmlXy16Ai7wHffz0FOU1X*wUZqAvw6XCQZc5c9MPK9xFSaGXFF4jKT3LA05XL!mr7DLCxbDsPv5owgxBnMQgBdi3axoOGnpFf24R8z3686kEV8keauplf00VhrdQDUo0mgrcQjWo!FgqkN5CNWjgaKr*XpcxVIPzMJoqvkzlfgtiU1Pz7CtWSroljH8A6kJEfg__/results,1 34456,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4yAQ*TW5VIqFTbGdo10naS7dqt49IwootRpDCiTZn18!nFjuJpWTU*fCMPMGHm8GbC2VmcBqkqTaED8Fdv5h7StXnOx5y4WxEaG43m2MtkDsMrRdh4mmXLBGrI*LolcpteHssTE6!vXiN0ZJPklKRQ47tbEeLFwoeTNm6yadj5JFZw6HQ8QaxamJ1nIf7d67!FZJhqkUetditu6CDaPbTXDgYsVozdW!oTwEqrrGy*lv*Fws5yE*FZLxFetglKEuvKpxXT**6eKxP6AdsrJ1B66cAJQ8aO8AB1hZpYvNrLUyg*NzZGpdSfpE2mNGtcQxAHGeAThScfaN4nRDfMe5CLfGNBQrIt7tPcD879ZeFN1I0fd!MLREO6modDvZqniDqruk2xwlZZ!Sh5Tcp3zBsoBl57A0YOk5DAUMncPuA3Z*xGAYTmeDvnu5plLxaT91s0UvwGc!gD5*esoKmi8uhQXoy3CpcNDvXHjznxXuoqQ4SIqvkTQ7ywNOby*vq!x3hPNh2UP!0YUFgql9IDOQhnZN40FDr!jPLWJ!Rn!!lOAq2UNNvezvqeL4FqpBiUZTgVuoBhUfSwVmt1ANGjia6p!vyxiqwX0YTZVdpvK*BbluqP3sa04UfcNcfALWCATI/results,1 34457,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4yAQ*TW5VIqFTbCdo918NKet1rtn5AWUWknABdLsz98B3Fhuk5WTU3sBZt4wz!9N7Bil7QQvJkn6Clu7r6Vs5HaSlLzRglml4bhVb4BLLcxxbw2UxQhiAzdpbZiQ3N3AC5d8jf4oZazgT4010Y!fvjVJcuii69NR7yHChUslL9a27tDFJFl12!l0igJ7BMzRcdflW604ZUqa44HybZdsOGv3IcCrDWeV0G8NEyGxqCq6Xv6iz8V6GepTqbjY8A5OZqRLbypaVc!*u3zsHxCWrDxMfGHuMo*GB8gBIKt0uTmIBtOcfiGdK7a2DaO6ljtwhYq*LdhmGiV7JwbLoTZOHyldJ7DCb2TxkHTNSVL2JXkoyX3JBywLWHYJSwOWXsJIwMglbBaw2TuGw3J!NuxHlhumtJj2R3da9QJ85SPq66fnqqD56lVcoN6Ga8Zh37nw2zcz7qqkOEiKb5E0v8iDzi9c3rvsO!Ll0PZQ*x7iguA0z9AcpWFc03gw0Bvmc4!YrzGfDxbcJHuoqZf9f6o4vodqYNFoKnQP1cDxsVRofg*VYICjqT59XcZQDX4Po6my61T!b0FtGwaffSNqzV6okP8ABx7FEQ__/results,1 34458,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4yAQ*TW5VIqFIf46xnWSzaVbrXfPlhdQiupACjjZn798OLHcOpWTU3swMPOGebwZbCsh9QwVMxi*mUlS3UrO!G4Gc2UeQjGtFSV2KdnRAw3DlGNqtnBJVdtoZXaGwNjKJKtqZWBiQ1FhnW*BXyGUpuQH0yr4!cuxRTA1mWR9amVjLLS0Lvii9cEuOjuC6246nU4BYZJiHezEMWhfO*9BClJhwVW7r8iuczKCD4030HpLcEnlkdnzWkdRltVm9bt6Xm5WPj5WqhD4qd6fI4pNFQKAYJyGXcS2rMry!U!HOy80Q5Lv7dkLqyWCj8oZwAJGYW59mZmNYm98HcVcELolHQxTNFFm8s1kjjR2ASAEaTZRcPyJ4Lip3RWn3F58XWuGK1nzV3PxK*rvYN4MxQTvL*tg2NfKKo1ym8kUxU1R8QC75BHM!5DUh6Qu5B2WeCwZw2KPxWNY5LFoDFt4bHHGkB8uZ0OueanCQtJ5v7SrdS*ART6CPn5!ifKar25FS9CX4VrhkMu8dNM3K9xVSaGXFN4iKRvlAZdXL!2r7DKi1bDsPv5somWE4jQBGYh9u!bhoKE39OceMV!jP!9KcJPsoaZe9udUYXgP1aBEk6nAPVSDik!lAtk9VIMGTqb68HWZQjW4D5OpkutU7rcgdgybz76itcQvFeX*Ab9gTOs_/results,1 34459,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4yAQ*TW5rBTLhvojR7tO2py2qtszooBSVAdSIPHuvy8fbiy3ycrJaXsBZuZ5Hu9N7GipzAzWM5C9241yjV94y83fGahafuBiYw!4bWWHBWEWJRTT!9ZoC05iG2v7PMKaMEEdGNYu!R69SKkNo*fc6Oj3oydIQWF7KdztVWsjWLoUeDVm5w59nIJVv3VdF1GuGDHRRh6i*Vuf3ylJEZFC77eIbvokp2TXhgCu1pQ0TB24u69L1E2D7pZP6KG8WwZ8JiRla9qXM5D06XWDmubhuc*7LLBLXm3dhWsnIAW32gexK1hZlcstrOgWe*1MOFcMNpwghcWbdQWxPztrm!ZSDE6Mli3WTl9auU7WCr!l9S*QN09BNUCKACk85EstD7X8VC0LtexULQ219FTtJtRuPmswLMe7QT!yQhOp2Hw4utNqEOCRt*GAnx9RQfPZR2EZDzacMw76zqXffphxZyUlQVJyiaTFSZ74!MIVg8u!I1yObQ*4zxCWKcyKPF7EWRjXPBkN9IL5XCPm*5jPFwsukj3WNMj!N1WSXEM1smgyVXwN1cjxqVTx4hqq0QAnU337ukyhGv0eJlPl56n834LccGI*!5phRV4REx*9tsd9/results,1 34460,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4yAQ*TW5rBQLTPDH0a6TbC7Zar17Ri5GqdXYpGA3!*N3ACeW26RycmovwMw8z!PNANZStTOSzfzgFaZt0VayKfYzP900ulNFwwWst139JBRgGiV0t281QDECW8PXrNBcNGXV7MBrnK*ek5S6FeXPqtXer982PfUjSKSKY6cgOyWJcfnPbXswi96m*qqfjsejV1ZK8NbbyTeve!n9ByVLxiXsrWblrndWJT*snUFWm5LnQr1VZuPGkeU5Wy**sMdkvXT4oJGl2JR92Kdx797kLM8f**Z!bDcIQ5jWMwuMjOdBWwOZAMhKjQ8SpCDTGV9UJiYLMlFn!M10ap1Jvi3qEyJbMxwjtIgm6g0!0RvsC3uuRWNOewvXgzO4FS9w2pn4d4DroOHCDCd8NNSFNkJpajJBTexEsx9!n5z66QCJHCSykHex0MXCS7HAxYJLMepi9FJs4WKLU4y44bw3YnsXaS6VmA9Ls1oNAizyAQ34!RnlNF*9lCRoKMO1whGbObHTNyvcVUnYScK3SIov8qDzzYuGKtuMZDkuu8OfTJJQEkQhilHg2jXHo4be0J97xHyN*rwrwU2yx5oG2Z9TYXwP1ahEk6nQPVSjik!lQvE9VKMGTqb68LpMoRqdh8lU4XUq!1uQu4rDs69FofgzE81*aktErQ__/results,1 34461,http://yh.easysearch.org.uk,1 34462,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4yAQ*TW5rBQLm!CPo10n2Vy2Vb17Rl6MUqsJpECa*vwO4MRym1ROTu0FmJnnebwZwFoqM8HlJIpfYBK1aaWoN5OoaIXeq1owDmtVG64BIhTX!43RgAwR2Bo!prVmXDStWIPXOl!C*1Jqw5vfrdHB*aPLTqLU5TnsFSQnOLeu6MmYnV10NokW3XQ4HIKmVZyZYC1fg*1z598p2VAmYWtb2qw7Z9uw3cYbeLFqWMXVa2v3bR1lVdHl*C99yJdzj4!FbPiq6cIRyTr3qqJV9fCv84dugzAkxXbigKn13GlnIBsAWYX1QYICZHrj,1 34463,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4yAQ*TW5rBQLm!CPo10n2Vy2Vb17RixGqdUEUnCa*vwO4MRym1ROTu0FmHnPM7wZwEbpdoLLSRS*wCRZ2yjJNpOoaKTZaya5AEhqYfab1gAjRGAb!Igyw4WsG7kGr3W!BP!VMq2ofzetCe4fXVQSpRBLs8NeQ1CCc!uKntp2ZxedTaJFNx0Oh6ButOBtsFavwf658!!0qilXsKUtrdeds6n5buMNvFjVvBL6tbH7tY6yquhy*pc!5Mu558dS1WJVd3BEss69qmhVPfzr*KHbIAxJsZ04Ymo9d8YZyAIgq7A!CFCATG98U5khnuGROpMfptOYUvE*bHtklEsaZgjN0pF64y*0xhvmzrWQ9rS3cCs4hcvwDKedircdXAcD96Q*4YNhy4wVSgobCWriJlL!irrgJCp6SuopqaN8wBKPJeew2GPxOYx4jJzDZh6bHTHsh9PesOtdarjSYtov7WrRC3DMO9TzpyeW13zxU5yjvgyXCodd5NxNP6xwFyWFXlJ4jaTsbB50unlpX2UXEc!HZff8o4lzguM0QRmKfbum4aChV*TnFjHfoz8fSnCV7KGmXvbXqcLwllSDEo1OhW5JNaj42FQouyXVoIGjU316XcakGpyH0amSy6ncb0GtGw7PvhFM8ycq5DvWZ0Hr/results,1 34464,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4jAU*DVcViKyY5yEY9IA5bJbbdqz5ToWjRpssE3Zn7*!CERpYRU4bS!x35vB45kHQUtlJqicxMneLqzlVHBlK6G4PrRG2yYEttaWR6hmXNSN2Niua!6jVym14fVjY3T067c*CMfZJC4UPR5UayuUu1b8ZszObboax8tuOR6PUd0ozky0kR*R4b3r75SsCZNCH7ak3nTNpma7NhRoua5ZxdVHw3holFVFVotn8pSvFoGfaF1K9pNuT4xyRSAACEA06xjrilTV00uHQ39X!0iLrbt76bzg!EH7AjjAOixcb279t9RHwYULyFDTMKKoeLcBEf5nZxPUjRR9KIPHlmpnFRfuJJuKX3D5I!4Ox3HRU7JAyTzlE5YGLL2EJQFLLmE4YPgSNgvY7ISh8DjfDfnpZZpJxaf91u2WvQHPfAA9f3pmBc9XP4py0MdwLTjkT8798s2Cu2oJBkvwFkvzizrg*NvL!pT9iWgxjD3wTyXKMUqyFMxBEsY1hYOB3jCfe8z8H*P5FMFNtoeeetv*loLwHqlBRKOlwD1Sg8THSoH5PVKDAY6W!vJ2GSM1!D6MlkqvS*m*BblpmH3ta04VeyNc*AXNTcG*/results,1 34465,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4jAU*DVcKhHZMXaSY9IA7aVFTVd7tLKOlUaFmNqm7M9ffwSidKEKnMrF9nsz8Xjew0YJqScon4Tkw0y1LFtt1q3karfWyqQgMLEyLFoqxtuqaWuTtcmP4I8QSvPqodEqeH5x2!AwnoSZLPc7uTYRSm0qfNN6axddjMNFN!33!6BqJGc6qMVnsHvv8lspKspEq3YbWtVdsqnYdu0DtHisWMHlZ8O4T!RFQZfzV7pKl3PPJ0rlgj2VmwMjX1IIAMKYkI7xWNCiWP3qcOjOaoYo29iz59YLDu!VC4AFjMPM5hIzG8c!!OmOYRzjsY6j23f8ewWTCAAw0jG5fccwmoHZ2A7jb*ySdemuN2*tpdelbhg1T8K7ufSU*92aV0E1ou0v!mDYlMoaxZndydTETTi*C7vNcZj1lNhTYkf5gkUei05hxGPkFIY9hk9hM4*NDhjyw*FsyPUuVkxIPu2XdrXoDTjmPej50yPLez77KUpBX4ZzhUNu59RNN1a4s5agtwQvsZSc1AHHmxf3VXY7ovmw7J5*CFGKEYkjkADi2zWFg4Ze0J9rzPyM*nwpwUW2h556299LQXiN1KBEo6XANVKDio!VAsk1UoMGjpb673UZIzX4PYyWis5Lub8FUTfMPPuKl5K9Ud7!A1hzg0Q_/results,1 34466,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4jAQ*TVcViLyB3aSY0KAcqGo2dUeraxj0agQUzuU*vz1RyBKC1Xg1F5sz7yXGb8Z29FSNSOcjRB9NdNqOUJpkmVPszw3q!lDslrMDFYroQ*bRhsKBMbW5itWaC7qsqo3xmudr8E*KXUjyoeq0cHjkwtLUGQCqeJ4UFtj4cS60HPT7O2itQmat9PxeAzKSgneBBv5FhxeWv9eyZJxWevDjpWb1lmVfL*1Bp4vS54L9VZx4R1ZnrPF7DdbJ1aB5VOtM8lXxe7EyBZsAhACUdQSljnL8*WfFoZuq2YI053deoYcb6qdASxgBKbWF5vZCPbGtxYMIwAJHag3*Pl6*65hTGg4GaiYfqGYbgt31kVtb0BTNBVnqqhfzA1g4n1vroiuZN2d!t6wK7SVSlIbyVTFTST7hdrgBKUdJfKUyFE!YKHHwksY9Ri9hBGPkUvYxGOTE4b9cN4bdt2LNJdKjLulXc07AY45BR1*fGZ5zVc*xQnoynCtcNhFTtz0wwp3VRL0kuAtkuKLecD57kVdlV1EPOuX3fNPJk4IplEIYkB9u8aw19Ab!nOPmO*Rnw8luEl2X1Mn!!tUEN6TqleiwanAPal6FR!aCsT3pOo1cHCqT6*LkFS98zA4VXg9lfstyE3FzbOvRaH4MxP1f6jsRbQ_/results,1 34467,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4jAQ*TVcViJy4jofx6QBymW32uyeLde2ICrY1DZlf*76IxCFQhU4tRfbM!8xL2*GCVoqM4H1JEnf7PbSKrPWk6RinPhDKhTX!43RFoyBjbXlY6IpF6wVK5t1ybfoRUptOHtqjY5!*fYFUZLbQooc9mpjI1i6VLI2ZucOXYySebcdDoeItYpTE63ke7R*7fI7JRmmUuj9FrNVl2wZ3W1CAOdLRhuu3lvKQ6JuGryY*cHP5WIW!KmQjC9ZB6M879LLBjfN898uH*sHtEtWbd0D14nnPWofAAdYW5XLFXa3NkPwVW0WYKTN7JvZ1LqW9CfZHhn1AscAJEVWFCMdp584TjfEX2wu3HU3xLQUKyJe7XXH*N*Ovg!6laK*4oNlS7SziipXyXbFb6j!kXTFUVL1lDxQck85w7KAZZewNGDpJQwFDF3CHgL2cMRgWE7PBv30ck2l4tP!6E7z3oBnPoKePz2xguerP4Ul6NtwrXHQVy799s0ad9VSHCzFt1gqLuqA07uX9132FeFs2PbAP4awRDDNM1CANIxrGg8GesN87jHzNeZz1oKbbA899bY*l4rje6QGLRotBe6RGnR8rBQo7pEaDHC01IevyxipwX0YLZVdl*J*C3LVUvvZ15wousZc*AcwLEAZ/results,1 34468,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4jAQ*TVcKhH5o3bCMTTA9tKtNrtnK!tYNGoSp7aB*fnrj0CUFqrAqb14PPOGeX4zdtBSmRnOZoi!WcP3M7Q0ounqwggba5XQu9poC0FgfW2zWaG5aMuq3dqoC75Ff6XURpQ*KqOjn798OYISW0oVh52qrYdTF0IvxnRu0*sErXtzOByislKCm2gr99HutY93SpaMy1bvGlZu!2BV8q4ODl4*ljwXal9xEQJZnrPN6jd7TjerkE!1ziR*KppjRrZhMMaUkB5*zFmeP**pUehPapd42biTZ04JQQ*aO8ABVt*SxRbWWr3B!dJ6AaWQwIl64!!vFwKAaEzQRMX0E8W0LvxVF617AKYwFWeqaF*tA2DiX2dfiK5kO1z60dIU2kklS1fJdsUbkt2hvjhByyElCSmJT3mHxQGLz2E0YPQcRgJGzmH3Abs*Yjgsp7NhP71Ec6nEfNi63XoQ4DMfwJA*P2UFzRd*ilMwtOFS47CvnHrzzRp3URIMkuA1khZnecDp7SVDl31FvBq3PeQfXZwSTJMYLAAN45rD0UCvmM8tYr7GfN614CrZY02D7M!pILyFatSiyVTgFqpRx6dSgcUtVKMBTqb68HWZQjW6D5Op4stU*m9BbituP*taFIq*MNH!B5keRI4_/results,1 34469,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4jAQ*TVcKhE5MU7CMWmg5bTVZvdsGduiFmBT25T9!euPlCgtVIHT7sX2zJvM83tDglHaTmAzyfI3tzFB1twKM8lqqqQl1LpjLjU3x507wiYFLjbuGUwM5ZIJuXFZn3xL1koZy9mzsCb58TM0RVnpWmlyOuqdi2DlU9mrtQd*6GKULbvtdDolTGhObbJR78lx2!UPWjHsLmSOe8w2XVIwetjFAC5XjLZcvwvKY6JpW*y0!IVfqqdFrM!lYnzFOhjmsEuvWty2L7!7fBou6Jai3vsLN14Ayh5NCIAHnKza5!ZO9I4E*Vx6VyyxgmJN5Na5gvmfg7PNCCV7JwbLnhivD9W!k7MibKh5yLrmKKv7kjKWlKHkE1ZErLiE5RHLL2EoYugSNovY7AODcTnfDYaRlYYqzaf90Z!WvYBQ!Qj6!um5Kmq!!iisQG*DNeNg6FyF7T8z7qqkNEpKb5E0v8gDzi9c2bscOsLF0PZY*xHCCsG8LMAc5HFc03Qw0Bvmc4!Yf2M!nyy4SfZQUy*7e6o0vYdqYNFoKnAP1cDxsVRgfg*VYICjqb58XcZQDX4Po6mK61Thb0FtBHWffcOJpq!Yy7!PbMMe/results,1 34470,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4jAQ*TVcKhE5Mfk6Jg2wXLqo6Z4tr23RqCHO2gb689cfgWy6oQpIK3Uv9sy8sd!88RAkF2oGi1kQSYWtCbT9S!*0WGNtNoLJQ62kjvgGkvoAwpKwhlbN7pzv*eRcKka*VUp635*tjWGQzIJc4NNB1NqDmQkFr0q1xuj8MFh12!l08mglGFHejh!9w1sXbwWniPBGHvaI7rpgRUlbOweuNpSUTBwrwlygKEu0Xr6gbbZeuvyo4ZRtaAcnsItuSlSW2x9d2Lf16SXO96bewtQfBo*SOsAAWlVuYqnetUrnfB2VUhacPOH9OaNYIx8AP0jjxUTF8b9RrPA7rSQZVb481ls9U7jO2vaPk4Oyok*Kimps55A1bohVRZDAzZueTsTeWz2!suJNP5GDZY!lqSPMzU26dLuFxUPQXR4GeZ!SuJTEpnzAYofFY1jksGgMCx0WjmELhy3OGHTLpTZoG5VIwgWb96axVr0Am*kI!vz5JctpvnoUZqBvw7XGQXtzZrf*rHFXJflOkn!LpHSUB1x!IEnfZXsjXA7b7vLPLsxCGCUxSEHknmvuDx70hve5R8zXeJ8PLbhJ9lBTL*tzKt!*h2rQoslU4B6qQcenUoH0HqrBA06m!uvrMoVqMA!TqeLrVPZvge8qoj*7kmFBXhFrfgOsoCnq/results,1 34471,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4jAQ*TVcKhE5Mc7HMWmAculWze7Z8toWjQo2tU3Zn19*BKJ0oQqc2ovHM28yz2*GSbRUZgLrSZK!WUOlMIQa6wnF9X5jtA3GwPra5mGiKResFWsbdcG36K!U2nD20Bod*Xr2hVCST5JKkcNebawHSxdKXozZuU3no2TRmcPhELFWcWqitXyP9q9dfKckw*Y8er*FbN0FW0Z3m!DAxYrRhqv3lvIQqJsGL!e*8VO5nIf8VEjGV6yDYQq78KrBTfP0p4vH*oB2yaqtO3DtBKDkXnsHOMDKqlyssNbKDM73kal1Lekj2R4z6iWOAYiTIpuNVJx9oTjdED9xLtw9MMS0FCsiXu09wPzfzl4U3UrRz36wbIl2UlHlKtmueIPqu6QrjpKqT8lDSu5TPmFZwLJzWBqw9ByGAobOYbOAzY4YDMvpbNBPL9dUKj7tt2636AX4zHvQ509PWUHzxUdhCfo2XGoc9JVLb35Y4y5KioOk!BpJxVkecHr38r7LviKcD9se8o8uLBFM8wwUIA3jmsaDgV4xn1vEfI*5fGrBVbKHmnrZX1PF8S1UgxaNpgK3UA06PpYKFLdQDQY4muq*r8sYqsF9GE2VXabyvwW5bqn97GtOFH3BXHwA0d**jw__/results,1 34472,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4jAQ*TVcKhE5cZyEY9IA5dKtNrtnK7VdsBpsaoeyP3*9EYjSQhU4tRd7Zt54nt!MCVqqdgLLSZTotnYmMPab2cmGN3QSFc9MsBfeahMWiul9Y0xYhjZNm8O41oQJysX6eDZ4llK3jD6YQ8Gv3646ijJTStWHvWqMB3MbijZtu7NG56No0W2HwyGgXDHSBmv5Huxfu*hOSYqJFHq*xXTdBTklu8Y7cLGipGLqnRPmA2VV4eX8D37Kl3OfnwhJ2Yp2cBzOuvCqwlX19LeLh!6CZkmLrb1waQWg6F47B1jAyCpszBQojEzvfB!ZWpeSPNbbY0a5xDEIUxSjkYLTLwQnTe0GzoR*OS0nWNXi1TwDzP7tzDvRXIp!9INlW2urFBW2kmmK21B5F3XFUVT0KZlPyVzKByz1WHoOSzyWnMOQx9A5LPZYfMSgX053g254mSZSsWlvWmvRC3CZ96DPn56yvOaLR2EO!jZcahx0lXO3*bDGXZQUeknhNZJmZ3nA6aeX9V12FeF82Haff3RhjmCSpWAGEj!uaTgY6BXzuUXM95jPhxZcJXuoqZf9NVUY3kI1aNFoKnAL1aDjY6nA7BaqwQBHU336uoyhGryH0VTpZSr3tyDXnJjPvma1IhvMxH!ihAX6/results,1 34473,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1v4jAQ*TVcKhE5cfPBMSnQcmq12T1bqW2BRbCpbcruv9!xnRKlhVXgtL3YnpmXeX5vSDBK2wmeT5LsDTYmTPMqWmH*TJIKAk212AnZWKEkQKTm5tBaA8gYQWzgYdIYyiUTcg1Zl3yLXpUylrMnYU30*MN3T5MCOurmeNAtRLh0qWRj7d4dujhNlt12PB4jJjSnNlqr9!iw7fJ7rRihSprDjrB1lxSM7tsQ4OWK0Zrrd0F5SMzrmjwufpKX8nER8JlUjK9YVy6KLruqSV2**OrSsb8fLHm1c*edJx73YHyAXAFUVS43A81t4!VzZ5KxYBclupFbMIXw33twzTgDT0YMll1jnLy0cp3ACb!l87uka54mVQ8pAqTwkE!1PNTyc7Us1LJztTTU0nO1!1C7*6jhsJzuhv3ECkOV5tP!6E7LXoBHPqAePz2hguaLj!IS9TZcMg77zqXfvplxFyXFQVJ8jaTZWR50et!K3mXfES!Gtgf8R4jLFGdFjmYoC!OaxoOBXjGfW8T8H*P5ZMFVsoeaetn*porjW6gGFo2mQrdQDRwfS4Vmt1ANBjia6svXZQzV4Pcwmiq*TOX*FtRaUPjsG95ouiFc*gWZwsbL/results,1 34474,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1TwjAU*DVcnKGTNvaDYyugnGSsnjMlyUCGkmASQP!9!ah0iuAUTnpp8nYf2ew!KEpIPYDjQZS8m4UwVS1YzfSnAbikaldrZfAQmFqZVlQpTDlhfGlQC74HCyGUpuSJaRU8v7iz4igbRIWsDjtZmwrmFopWWm*tpqnjaNosh8MhIExSrIOl2Ae7dYNvpSAIC652G0SWDcgI3ta!gNMZwSWVe4apB8ZliR4nr2ieP058f8IFoTPS0FnWoLMSleX8rYFDdz*zSIuNve84cn0PyhXAEsZVYbGR8VxXzj7lNhRdaYaRrPjahILox9akppjgbRCdx6ZS1l5c2JNMEm6Jx3dRc3gcFW1L5lsy13LCpZ5Lz3GJ55JzXOy5!Bx377n7bw76x*Fu0E0sU1hIOmy3djdtDbjOB9D2D49d3vPFj8IctDFcCg66k3O3*LPgLloKvaXwGkujszrg!HvL2pTdiXDSjd33f5cwj2GSpWAEEj!uYdgZ6BXzucXM35jPSQRX2e56am3*LhWGt0h1IuotBW6R6iTeVwqMbpHqDLC31I!3Sx!pzveht1R6Wcr9LYglw!a1r2gl8QpR*gWZqb*j/results,1 34475,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1TwjAQ*TVcnKGTNvaDY2tBOelYPWdCksGMJcEkiD*ffFQ6VXAKJ70k2X2bfX1vadFSmQmsJ0n2ZjfKNV61jE6SyuAPuxLFKDfawkIxvWvtEdYxsLG2FxHWhAnKxdpmXfItWkmpDaN39lJ0*!g7p0lhOym836nWRrB0qeTFmK07dHGaLLptv99HlCtGTLSW79HutctvlaSISKF3G0TXXZJTsm1DABdLShqm3jlhIVE3DbqdP6GH8nYe6jMhKVvSDi6KLrtsUNM8PHfp2D!fXfJq4563TnzdjfYBcIBVVbnczGpusZfPhDPFYMMJUli8WlMQ!9ha1zSXojdisGywdvLSynWyTvgtra!SrnmaVH1JEUoKX*INywOWH8OygGXHsDRg6THsOmDXXxgMy!HZoJ9YoYlUbNof3WnRC*CVN6Cvnx6qguaTV2EJehtOGQd959Jv*8y4k5LiICk!R9LsKA84vG9F77LvCOdD20P9VwjLFGZFDmYgC!OaxoOBnjGfS8T8jfl8s!As2UNNvezfqeL4EqqBRaOpwCVUA8fHUoHZJVSDAY6m!vF1GUM1!D2MpspPU*m*BbnmxH72NcOKvCAmPgGY78Ra/results,1 34476,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1TwjAQ*TVcnKGTNqYtx9YCelHH6jkT0wgZaYNJEH!!!Sh0iuAUTnpJsvted*Pe0qKE1CNYjKL4w2yvXOrlKMopk5q*cUo0M9GbkLUhNJKpzUorwwuBiZV5FBNFWVPxZmGyNvkRvAqhNKtuuVbBw5OrjaLUlJFku5ErE8HMpqKl1mt7aGMUzdptu90GFZeM6mAhPoPNe5tfS1FhKhq1qXG1aJO8ouuVD!DsrqIlk5!cMp8oyhLPp8*4MZtPPT9WqhD0ntQ7RjHHYYJie0OH35W4LB9fWjR0NzVLktf25oXn3SgXAAsYfbnNTYz6FXFGsMbao4nmFEvSvBt7MPtaG*8UF01nSW!pibJCUW4rGU*choqrqC2OoryjpJ6SOsoBlngsOYbFHouPYchj6Bh27bHrHQb9sr8bdLNLFRWSjbujPc06AY55Azr!eM*ymk8!CjPQ2XDKOOgqZ277Z8adlBR6SeE5kiZH!4D9m5d2LruKcNq33fN3IcwQjNMETEDsxzUOewM9Yz6XiPkb8zmw4CzZfU2d7N9bheElrXoWDW4FLmnVc3xoKzC5pFVvgINb*fi6DGnV!z0MbpWcbuX!FsSCU*PZV4xIusSs!QagAcgY/results,1 34477,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1TwjAQ*TVcnKGTNqYfx9YCclHH6jkT0wx2gAaSAP5881HoFKlTOOmBJLtvuy*vLRTJhRrBfBSEW70pQeiyqhejICP6Q8WHBmrB5G6lpMZ9oGOpH8FEUlaXphTmJrn1PjiXipWPlZLe86vtiYJYdxHksBMrHcHUpIJPpTbm0MQomDbb4XDwykowqrwF33u7ZZPfCF5iymu5W!Ny0SSrkm5WLoDTeUkLJvYVZS6RFwWeTd7wSzqbuPpQypzTJ7I!VuQz7CcoBkmDzwtcFC*vDerbm!olytbm5rlRgoIHaQNgAK0vMzndIFwRawSrjT2KqIpiQWrjJGZfG!2frHjdWtJZ1kQaoSgznbQndkP5XdA0R0HWlsSuJLYlZ1jksOgSFjosvIQhh6FL2L3D7o8YdMvpbtDOLpaUCzZuj!Y0bQXYygfQ1o9PVU5z76MwBa0NfcZB2zm12z8zrleS7yT510hKLvKA0y8vbl22HeGka7urP4YwRTCMI5CA0I1r7HcGesV8bhHzN!ZzZsFVsruaWtm*U*n!LVQdiwZTgVuoOo4PpQLJLVSdAQ6m!vF2GULV!T4Mpor6qezfAl9UVL*2JSOCfmJWfwODNcS2/results,1 34478,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1TwjAQ*TVcnKGTJqYtx9YCelHH6jlT0wxkgKYmQfz55qPQKYJTOOklye5b9uW9La0SUo9QPoLRh9lYwzTXXNTKJGrJ1HatlcmHwMTKlJJSUVZXvF6YrE1!BO9CKM2qe65V8PTiemGYjGAmy91Wrk2EUpuCS60be2hjDGftttvtgopLRnWwEJ*BdtXmGykqQs1lthtSLdokr2iz9gGaPVS0YPKTU!YTeVGQ!fSVPKfzqa!PlMoFfSw3!4p8TkAUIRi3!ENBiuL5rUVDd1OzxNnG3jy3SjC8Uy4AFjD6MpubGPXr0hnBamuPLjWnRJb1ythD2Fdj*FPGy86S3rIplRWKM9vJeOI2nN*AtjmGWVeS!JLElRxhscfiU1jksegUhj2GT2G3HrvdY8gvh7shN7tEUSHZuDva06wT4CrvQFc*PlR5zWd*ilLQ2XDOOOQ6p277Z8adlRR6SeElkiYnecDhn5d0LruOaNq33dfvQ5RiFCUxmIDIj2sc9gZ6wXyuEfM35nNkwUWy!5o62b9TheE1VD2LBlOBa6h6jg!lApNrqHoDHEz14!0yhKr3PAymis9Tuc!CWHBqXvuKlZIuCau*AYlqwtU_/results,1 34479,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1TgzAQ*TW9OFMmJPLRI9hWe9IRPWcwyVRGSDAJVv!9!cAyaOvQnvSSZPe97svbBaqE1DO0nMH41WysaWvx0TCuZzAvOTWr6trWcmDMJVNdrZXhhcDEyqRxqQjjtOJbk7XJ1!BJCKUZvam0Cm7vXe0IpqaSLHedrE2EMpuCz1q39tDHEVz32263C2glGdHBVrwF3Uufb6WgmAiuugbTbZ!sKGlrH6D1hpKCybeKMJ9YFgW!Xj3gu!x65fkxF5RtaA8naZ*dFLgo7h77dOjuZ5Ykb!x9l9DxrpQLgAWMq9zmFmY3Ln3wR12GAE60mfxiM65LN2XG7ex1qSuCZclfzOwxe2*Nw6EqwYd5j5amVNZflNtKphVui5YXsC8ewXygpJ6SOso3LPFYcgiLPRYfwiKPRYewS49dfmHIL*u7ITeyVBEh2Xw42tN6MOCYV2Dgz*cs7*noT1EGhjYcaxxylTO3*bPGHbUUekvhKZYWB3XA*oVLhy67img1brvnf4Uoi1CcJmABYj!ueTga6AnzOcfM35jPtxacZHvsabD9u1QYniM1atFkKXCO1KjjU6XA4hyp0QAnS*34ukyRGj0Pk6WS41Lub0FsK2I!!4qVkjxjxj8Bco0DOA__/results,1 34480,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1T6jAU*TVsnKGTNKQty9YCz406VteZmGYwT2gwCeLPNx!FThGcwuq9TZPcc7gn51woWiozQuUoTj7sorihYjWKi7*yVdtao7jeroy2EAT2rC2bUM14U4tmaauu!BG9SqkNr*8Io6OHJ98Ox5lto!huq2w*jHJXit!M2bhNe8bxvF12u11UC8WZiZbyM9q!t*WNkjVhstHbNamXbVHUbLMKBzS*q1nF1adgPBTKqiKL2TN5zBezwE!0LiW7p!s9o1wQCAACEE1axl1FqurxpcWhv6t9pMXa3b10XnB8q*0BOMA6LFxtav2vqI!CNy4gQ41gRNHm3QZE!NfGJqiFbLpQeo811c4qLlwnm4pfcHkTt81xXHSULFAyTznC0oClp7AkYMkpDAcMn8ImAZvsMRQeh7shP71MM6n4uNu63bwz4Jm3oOOPD6zg!exHUQ66GM4Fh3zn3C**WXBnLcFgCV5iaXpSBxx!e1mXsu!IZv3YA39*RDlGSZaCKUjCuMawN9AL5nONmX9jPkcRXGS776mz*bsUhNdI9SIaLAWukeolPlQKTK!R6g1wsNSPt8sQqd73YbBUel7K*y3IpWD2ta85VeyN8OYbGUrDrQ__/results,1 34481,http://www.nfrnonline.com,1 34482,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1rhDAU*DVeCkI!Nn4ctXah0EOhhR4l2LCV3cbWWOjP70seuyFWi3rqXpKXzJhx5kk0XT9EvIpY8glT9fIYsfLh!f4JNnSvzNdpMLBPCawNUGtpGqVfW32AXbt5kq5U2hIGObRN3Ut9BEKtvj*gBNN22gkIlo2Gd2mOUIiS5TDxwk2iumEWtTUrPSVDSuYoIyxFLJ3CEsSSKUwgJqawHWK7M8ZxuLwb3zsPpul6FfvSVntvwDFviefHFxZ6nn2UF8THMBccdycXbrqy4GYtUbRE11jKJ3UwHK*hUnYn8rswduSfl7wQPMlSkpME2xXToKEr!rPFzP*ozyiCVbZDT97231KUbpEKIlosRbZIBYkvlSL5FqmggYulft0uS6SC72GxVDovldvfQndoG7j2jZJ981Yr*QP9uXui/results,1 34483,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1rhDAU*DVeCgv5WKMeddUilG1pS6EnCTZsZbexNRb68*tM2A2xWtRTe0leMpOMM09UNW3n0dQj7AOmx!e7zCPJbQ5Del88FftrqG6KXbZ*AIDJVqjPU6eAihGsFZwuuaqEfKnlAXb7zRPXpZA9oeNdXZUtl0cglOLrHW5QdSO1pk*CwfDG1REKPyERTDTWk59ekR7ta5JYSmgooaYMsMBgwRjGDMbGMN9g*hi2Ndj2jFEzXJ6N5tqDqppWbGzZV7k1oJk7ZPmbC8t4njxKY2RjmAqO6ptjPf2z4CYtYWMJL7EUjeqYcKyGTlnfSDM3dsM*L2nsUxYGKELMtGuDnYYu6M8aM3!jP4MIFtl2PVnbv0thvEbKiWi2FFoj5SQ!VwpFa6ScBs6W!vF1mSPlvA!zpYJpqaj*LTSHuoLPvhK8rV5LIb8BDVaAmg__/results,1 34484,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1rhDAU*DV7KQiJ2fhx9JN6WUu30KOIDVvZbWyNhf78viTshlgt6qm95D0zY8aZJyq6ftiRdOd6H1Duy!fjzo3TMpOlKGJYozzPkidoHrLDsSgP0CWPWVrAlsd7Jj4vg4BbMYJrAadVtWgYf2n5CXbl5qVWLeOSMNRD21R9zc9AqNjXO5wg2o6rZ6BuMFreanGGhsZuCIVEqtD0zpWo7N3YUAJNCRRlhPka86cwT2PeFEY1Rqewvcb2V4zo5fZsJFceRNP1zDGt7HJjQDETZPjOjaU9z95KImRimAuOqJMjVf5ZcLOWsLaE11gKJ3V0OEZDpaxOJJkdu!ZfL0lEiRf4KESeHpeDrYGumM8WM39jPqMIVtm2PRnbv0thvEXKimixFNoiZSW!VAqFW6SsAS6W!vF1WSJlvQ!Lpfx5qVD!FrpT28BnX7C6b14rxr8BRoKEnw__/results,1 34485,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVU1PhDAU*DVcTDbpx5aPI7BusonRix48kQablexalGLiz*e1L7tNEQxw0kv72hk6zDxSTNv1Ed9FLP6AqTw8PkesKB!e7svDHWzqTpnPc28AowTWBuiVNLXSL40!wq7dPEtXKm0JveybuuqkPgGhUl*vcIJpWu1EBEsHw5s0JyhEwTKYeO4msbthFrU1KzwlRUrqKAMsQSwZw2LE4jFMICbGsC1i2wvGcbi!G987D6ZuO7Xxpa323oBjlsTzN1cWep58lOfExzAVHHcn5276Z8FNWqJoiS6xlI3qYDhew6XsTuS3YezIvyx5LnicJiQjMbZrQ4OGLujPGjN*oz!DCBbZDj15279LUbpGKohothRZIxUkPleKZGukggbOlvpxu8yRCr6H2VLJtFRmfwvtsanh2jdKdvVrpfQ3L7l8wQ__/results,1 34486,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVttuozAQ*Zq8rBQEOAbyCE3SzdNWS*tsUdtKrIKdtU3T*fv1hQTRkopE1Wr3xZc54zlzZiYXJaSegdUsTpSu3DE0519mVwKzqp7FhaLylWGqjJ1LqtpaKwNH1k!Z16hSmHLC!O70OHgWQmlKvjOtgh8*XXgYZyaUrI6tNDEhyK0p3mt9sIfuDuNNtx2Px4AwSbEOduI1aF86!0EKgrDgqm0Q2XVGRvCh9hew2RJc!oS9YVWW6H79iB7y!7X3T7ggdEs6GCRxZ96WqCwfnjp75BI0S1o0NuGVFQDjO!UuoQWMrMLalmY3Mv3lKpnNbyxajlk9KpZxQt!CvW7qD7mkX5*L3yt5lC4mljz5RGZSV27kKPfDqxlGsuIvZhARfTuYSVVM8H74BktTKasPFjaSKYXb4Opb3AWHcdG7ZN4lcy7vsNRj6RiWeCwZw6DH4Bi28NjihAG*nHMDrmWZwkLSeX!0p00vwHnehb3**OzlNV98CvKwL8OlwgEXOXfbf1a4i5IiLym6RtJylCc8f!CyvsouIlgPy!79T1eQQ5BkabgME9!ueTRo6BX9uUXMv9GfdyW4SvZQUy*7c6oouoVqUKLJVOEtVIOKT6UKl7dQDRo4merDt8sUqsE8TKZKL1O5nwWxY9j!f6GVxHtE!R*QECkB/results,1 34487,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVstSwjAU*Ro2ztDJo2nLsrWAbtSxus7UNAMdoMEkiJ9vHoVOFZzCSjdJ7j2HnJx7U1olpB7hfISidzN91MysGsnVbq2VSUBgYmU4tFSMN1XdLEzWJt!DNyGU5tVdrVXw!Ow2ISgZoUyW!51cmwinNoWWWm*too0JmrXTfr8PqlpypoOF!Ah2qza*laKiTDRqt6HVok3WFduufYBn9xUruDTH5T6RFwWdT1*oUzqfen6kVC7YQ7k5MPI5DQFCEMQt4b6gRfH02sLQHdUMcbaxR8!tFYJulQuABYzBzOYmZjaGffCnDUMAYBjiaKDj!BfH0bp0veeNvRG61DWjsmxW5kZQ*rk1V0bVouluQW*YlMpaJZndyVTFTSS*Qe3mBGUdJfGUxFG!YbHH4lNY5LHoFEY8Rk5hocfCA4b9cDwbdt1LFBOSj7ulXc06A455Czr!!Mjyns*!FKegK8O5wmG3c!qmf1a4s5agtwQvsTQ5qQOOz17SVdntiKf9snv!IcQpwVESgwmIfLvGsNfQC*pzjZm*0Z9vJbjIdt9TZ*t3KQivkeqVaLAUuEaqV*GhUmByjVSvgYOlfvy7DJHq3YfBUvF5KfdaEAvz0YBzxUvJlpQ3X7bZAMc_/results,1 34488,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVk2TojAQ*TVetkoqEBPgCIO6Xnanlt1zKhtSSA0mToK6P3*zgVLM6BR6mrmk0*0e3XndAdVSdTNYzCL8aoxmWynbWZS3nB4bUZsdrbkBheL60HbacEJgfG0eI1QzLipLg4UNvgZ*pdQdr743nQ5!*nJ5UZSYLIqeDsokRjCzoWjbdXu76X0UrXpzOp2CqlGcdUEtj8HhpY*vlawIk0IfdqSq!2BTsX3rHbjaVKzk6tgw7gNFWZL18jd5ztZLz8dCVnxT9XAK!!imJGX5*KcPh!58ZonznT1vYc!PoiftHGABoyq3sdRYo9I7n0el1oVkP!juzCjWJAQALgCeqjj!!ooXIMQgSScKxh8Ixi11N5wLe!872jWMKCpezL0n*N*evBi6kWK466NlR7VVinKbyTTFGVR8i*rkKMoHSuIpiaO8wWKPxdcw7DF8DUMeQ9ewhccWZwz65XI26IaXaCYVnw9bu1sNAhzzCQz8!YXlNd98FGZgaMOtxkGXOXPmizXupqTQSwrvkZRerQMur14ydNllhMtx2z3*7MIMQZzEIAXYj2sejgZ6x3weEfM55vOmBXfJHmsaZH9cKgwfKTVq0eRS4JFSo45PLQXSR0qNBji51Luvy5RSo*swuVR8u5T7WZB1w!x*Jk4V2xIu*gNfsETd/results,1 34489,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVk1zmzAQ*TW!dMaMhAyCIwTb9aXNlPasIZLG1gQjIuG4*ffVBzZDYmewT8lFq9237NPbFdhaqm6GilkYvxjTiqda0FmY72QtWPXPhBvF9aHutEEhML42D5BKU94w0WxN1AZfgicpdcfZd9Hp4OcvVzEKE1NJVceDqo2HMhsKd13X2k3vR!GqN8fjMWBCcdoFW*kaHJ77eKskI1Q2!rAnbNsHBaNt7R202jBacvUqKPeBoizJevmbPGbrpc!PG8n4hvVwnKI!vClJWT7!6ePQHdAsON*bAxdWQBQ!aOcACxhZuY2lxhqZ3vk8MrUuJP1R7U8ZxZpAANACQzhRMf76igFGeDFVb*yB3riu3A3njb33XdUJSlTVPJt7T*jf1rwYWshmuOujZV9pKzTKbSXTE2ei4lvYF4*CfEhJfEriUt5g2GP4EhZ7LL6ERR6LLmELjy1OGPLL!WzIzS7RVCo!H7Z2txoEuMwHMOTPz1le89VHUQaGNlxrHHKVM2e!WOOuSoJeErxFUnqRB5zfvGTosquIluO2!*yTi7IIxQkGKYj9uOZwNNAb5nOPmM8xnzctuEn2WNMg!2MqCO!hGrVoMhW4h2rU8alUIL2HajTAyVTvvi5TqEb3YTIVvk7lfhbk1vxJQoXmlaI7wpv*KlZDBg__/results,1 34490,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVk1z2jAQ*TVcOoNHH8g2RzsGyqXN1O1Z48ga4wYkIonQn199GDxOIGM4JRetdt*zrt6ubNBSmQkuJih!seavfJqgXPNKsWZjY0JxfdgabSEIrK8tm1aacVG3orFRF3yJnqTUhtffW6Ojn798OoJSm0lVx4PaWg9nLoQ2xuzdpvMJWnbmeDxGdas4M1EjX6PDcxffK1lTJoU!7GjddMG2ZvttcPByXbOSq9eW8RAoypKuFr*pY7ZaBH6sdSHZj2p3YhQrCgHAAOJZx1iXtCwf*3Q49Ge1S5Lv3NkLp4WgB!0d4ACrMHexubVWcXA!j2Iha76uT3IAHCkz!coyEUQjZcYfyIy3lb*YXLjrbirTMqoq8WyvO!X*9vZ90K0U*RUfLLtKO30kd5lsK7whxTfUJSco7ylpoKSe8gZLApZcwuKAxZcwEjByCZsFbHbCcFjOZ8N!ZKlmUvFpv3W7ZS*AMx9Az5!eWUHz1UdxBvo2XGsc9pkzb75Y465KgkESvEXS*GIdcH7h0r7LPiNeDNse!CcXZwTHaQLmIA7jmsLBQG!Yzz1iPsd83rTgJtlDTb3sj0tBeE!pQYtGlwL3lBp0fGwpML!n1GCAo0u9!7qMKTW4D6NLJddL!Z8F2bTMfvb9f6MN5eI*XSQ!9w__/results,1 34491,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVk1vozAQ*TW5VAqycWzgCCVJc!lWZfdsUdtKUANObdLsz68*SBBtUpGc2ovtmTfM85uxAS1VO0H5JCRvZtJsI!V2Emaa15XWlWy0QRol9H7bahMAgbG1eYaWmomGV83aeK3zLXiRUreCP1StDv48u6Q4jE0yVR72ymTFKLWucNO2O7vobBwuuulwOAS8UoK1wVq!B*vXzr9TklNmNrOvKV93zoqz3dYbaLHirBDqvWLCO*KioMv5X*qULuc!njSSixXv4AR13lVBi!LpX!eGbn9miLLa7je3!8fhvXYGsIBRlVlfYmaj0hs*R6XWuWSPZX2MyJcUAoBmgIxVHP1!xTMACYiTkYLJN4LJtnQnXDT23LdlWzGqyubVnHsq*u*MxbCXpD*rg6EutVWKM5vJFMVNOL8Lu!Q4zPqQ2IfELuQTFnksOocRj5FzGPYYPofNPDY7YsgPp70h17xYM6nEtF*a1aIX4CLvQR8*PUV5zRcfRSnoy3CpcMhlTt30ywp3URL0kuA1kpKzPOB09eK!yi4jmg*L7uOPJkoxInEEEkB8u6Zw0NAr!nOLmJ*Rn08luEr2UFMv!3sqCG!hGpRoNBW4hWpQ8bFUILmFatDA0VRf3i5jqAbnYTRVdJnKfRbkumL2h0mUim2oaD4A0MdEfQ__/results,1 34492,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVk1vozAQ*TW5rBRk7NjAEUqSzWVbld2zxRorRSU4tZ2mP7*!IEG0pCI5tRfbM!8x4zdjA0pIPUP5DJIXMyktGt7OYFbV8rVut2bV1Iy3jBtCK7k6NFoZXgiMrcyjtFQGriwV5db5EvwXQmle*a61Cu4fXWwMYxNJlseDbIyFUuuCT1rv7aKzMVx10*F4DMwGONPBVrwGh!fOv5eioky06rCj1bZz1hXbN95Aq03FCm52bvdrHXlR0PXyL31I10vPJ0rlgv0pdydGvqYhAAiSOOwYm4IWxcO*DndeaIYo29m951YLhnfKGcACRmFmfYmZjWJvfB*Fraj4pupgGKOJMqMfJnOksQsAIYiTiYLJF4JJU7ojbi8HUbrUNaOybJ*Nwaf8bW9uhqpF2x*2wbArlVWKMxvJFMVNOP8Fu!AYZj0l9pTYUT5gkceiMYx4jIxh2GN4DFt4bHHCkB*Oe0OuebFiQvJ5v7SrVS*AMe9Az5!fWV7zxUdRCvoyXCoccpFTN*2wwl2UFHpJ4TWSktE84Hz14r7KLiJaDsvu!ScTpRiROAIJIL5d83DQ0Cv6c4uY79GfDyW4SvZQUy*761RheEuqQYkmpwK3pBpUfGoqkNySatDAyak!vV2mpBqch8mposup3GdBbGtmf5x4KdkT5e07o29Gzw__/results,1 34493,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVduOgyAU*BpfNjHhUrw8at3!hqGUtKRd3AU26eeXS1qCqxv1afcFDszAOHOM6kGZDHcZKr7sZOg9Qy1T*CSMdtVwoUdhhDxbglRcf9*sPu4gsGttj*ZUMy5PjoA7t3mjvuTSEQw1gvWKyqsl9Pz!aW*QYpBekKBqNHxQfbUFaVFtJ9z4iXRvyKGuRm2kVIFSecoIKwNWTmFFwIopjASMTGG7gO2eGA7D69nwwXvQbFA8j6WrDtGAZ!5B5OcvVvA8exQ3IMYwFxz2Nzd!!mfBzVqCwRJcY6me1AnhRA2fsr8Rv6exB*5ziRuCi6oENShCu3KYNHRFf7aY!Rv9GUWwynbqKdr!XQrCLVJJRIulwBapJPGlUqDeIpU0cLHUj6*LEqnkfVgsVc5L1e63MJwFs599zalil57LB2mOgmc_/results,1 34494,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVduOgyAU*BpfNjHhUrw8at3!hiGUdE0tuGCTfn65pCW4ulGfdl*kwAyMM8eglmpMcJOg7NsMTN6GnnZi1AmqByUZ5!e74gYViut7b9ZxA4GZa7OvpZpxce7ExazaxZ66kgtLGOnYsVZRcTWElj8Gc4LupHBqBBWTx43qqylIjUoz4MoNpPlAFrU1qgOl8JTCUSZY7rF8Dss8ls1hxGNkDjt47PDCsH!83w2fnAfNpOJpKG11CgYc8wgCP32zvOfFrbgCIYal4LA7uXLDPwtu0RL0luAWS!Wsjg8naLiU3Yn4M47d819TXBGcFTkoQebblcKooRv6s8fM3!jPJIJNtmNPwfbvUhDukYoiWi0F9khFia!VAuUeqaiBq6V!3C5rpKLvYbVUvixV2t!CvHTMXPuaU8W!Wi6eC7SB4w__/results,1 34495,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVduOgyAU*BpfNjHhUrw8arv9DUNY0jW12BWa!Pl7gLQEVzfq0!4LHJyBceYY1P1gEnpKSPYFk!gfSrRdQmrDRxjlKOTtbtpeAUENUj86o4GHEaw1bG24FlJ9tOoCT!3DjrtS2g3acNOKZuDqCoRGjnc4QdvDrCAjxWS4cX2FgtWkhIlWbmKnN2JRW5M6UApPKRxlguUey!ewzGPZHMY8xuawg8cOT4z64fVu9Ow8aNEPMg2lrc7BgGMeUeCnL5b3vLiVVijEsBQcdSdXbvpnwS1awt4S3mKpnNXx4QQNl7I7kb7HsXv!c0krRrMiRyXKfLtSHDV0Q3*2mPkb*ZlEsMl27CnY*l0K4z1SUUSrpdAeqSjxtVKo3CMVNXC11I*bZY1U9D2slsqXpUr7W!gvrYBrX0s!iM9Gqm9JpoKK/results,1 34496,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVduOgyAU*BpfNjHhUrw8arv9DUMscU1dcMUm7d8vcNISXN2oT7svcGBGxpljUKthjOgpIsmXmR7qJi9NRMpeqL4TZlcOQt!6URsQI7PWhl9xXQt5aWVjdu1mx10ppCWMfGzrauDyagiVuPfmBN0q6VQYySbDJ9dXU7CS5GaihZvY6Y1Y1Nak9JQMKJmjTLAUsHQOSwBL5jAGGJvDDoAdnhiF4fVu9Ow86FoNIvalrc7egGMekefHLxZ4XnyUFsjHsBQcdScXbvpnwS1awmAJb7GUz!pAOF7DpexOpO9h7MB*LmnBaJKlKEcJtCvGQUM39GePmb*Rn0kEm2yHnrzt36Uw3iMVRLRaCu2RChJfK4XyPVJBA1dL*bhd1kgF38NqqXRZKre*BdW0tbn2teBD*VEJ!Q3WcX6W/results,1 34497,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVduOgyAU*BpfNjHhUrw8ai!*YQiyXdMu7oJN!vk9QFqCqxv1afeFA8zAOHOMml4PCT0kJPuGouX7TbUJqQd!h7HtjLgApLQ0t!tggIERrA0cargRUrWdOsOu3bxyN5XKEgY!dKLRXF2A0Mj7F9xgul45KUaK0fDJDegwVpMSCq1cYYc3YlE7J3WgFJ5SOMoIyz2WT2GZx7IpjHmMTWE7j!2eGPXD69noyXkwotcyDVM7OwUDjrlHgZ!!WN7z7FFaoRDDXHDU3Vy58s!Cm7WEvSW8xlI5qePDCRouZXcjPcaxe*5zSStGsyJHJcp8u1IcNXRFf7aY!Rv9GUWwynbsKdj!XQrjLVJRRIul0BapKPGlUqjcIhU1cLHUj6*LEqnofVgslc9Llfa30J87AZ99I7kWH41UD6LQf*M_/results,1 34498,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVduO2jAQ*Zq8VAI5Nrk9JhugSFWLmravUWpbEG2Is7aB7d*Xl0AaGlYB7Uq7L*Z4zsmMz9jjCMalg1IH!kIWxgTKflJz!utL7MBEbinjf7RBhdS0Jwd6KAaKcQnVnIp9JYWCXB1FqNh5ITCtSVlvTqGnvxkTkpLPpRTTb99Ncg!GKgwvjntemfDaBbdSNtpo1x5ctNPxeJySklMspxt2mO4fW3*DGckxq8V!l5NN6ywJbiq7QIsVwRnlhxJT60izLF*Of!TreDm3fL9mhK5IC8Mwat2rLM!y9c*W75oNqiFIdo4las!DMAugASUr0b7ow4kO0StoTpRKu3g*KoVIGf5a7E6MdJm7ALgwCmYjFQdvo1gWz6QUeFD5*FCtVSMVVdw0*3zZ25b*0uWrCtN8tLZNLkuc86J!VC2Z0!dG9awoWd3dyN6wK4Teh5foSGrrZvLST7AN7sGko4SWEhrKBRZYLBjCfIv5Q5hnMW8Im1lsdsKQHc57Q6ZQocCM00lnamvRCTDMB9DxJ2eW1Xz1U*0KnstwrXDIRI7N9MEKd1WSayW5t0iKBvOAc4OEXZVNRDTvl93yT0sUe8gPAxAB3x7XxO0d6A3nc4!Y93E!FyW4SXZfUyf75VSue0!qXolGpwL3pOpVfGwqEN2TqneAo1P997qMSdW7D6NTBddTmd8C25RYPfuCFhxvc1r*BWngei4_&C.sa=eJwLCPL0dQyKjA8MdQ2KVDV2cQnzcVQ1Mgt2dfb3c0FIGJkaOxoApUsyUvOLKlWNnEpSi0sADAkRxw__/results,1 34499,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtygyAU*Jq8dEaHS*DyaJrmNxxKGGtNoQVT!*nlMgmD1Y761L5wgF1Yd4!jWqp!h487lH2YMgxD!iqfNecdV*rcKs76tJGf6bUzDKG4vl56bYgQmLU2Z2uqGRfnVjRm125eqJtyYQk97VtWKyo6Q6j517u5QbdSOEWCitHwRrXRIeSASlNw5Qo5PiCL2jk6BErhKYWjjLDcY*kUlnksm8KIx8gUtvfY*oZhP9yfDZ!cB82k4kmY2tkpGHDMRxD4yZ3lPc8exRUIMcwFh93NlSv*LLhZS9BbgmsslZM6Ppyg4VJ2N!KnOHbPvy1xRXBW5KAEmW9XAqOGrujPFjN*oz!jCFbZjj0F279LQbhFKoposRTYIhUlvlQKlFukogYulvrxdVkiFb0Pi6XyeanS*hZk0zLz2decKvZSc*ENYgiDpQ__/results,1 34500,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtygjAQ*RpfOiMTEsPlEbRO3zrTH2BoSDUjBk2itX*fXFAmFjrIU*uS7O5Z9uzZFZSNUDO0msHoqC*GFRWcqhnMZflBv3SYCypPtZIaDYH2pX6gKCWhvGJ8o6MmeAzem0YqWr0wJYPXN1sRw0TXEeXnSdTaQ5kJwa1SB2O0Pobr9iI1IztS0zMV1jQNBBUTlKhg05yD065NZLyil2Cr9raePuLcmGhl!DBcSusAA!guchNLdY91adul3IhQpWKkECXfaREFvRy0Sska3jXuHftSGnacm0q6c3vh1RNsi2OYdymJS0lsyh0WOyzuwyKHRX0YdhjuwxYOW1wx5I5bb8hOOJGkEXTemcZadwJs5hJ0!fNbltM8!CjKQDeGocEhWzmz1z8b3KCk0EkKH5GU9vKA2*uRdFO2FdGzP3aXf3VRhlGUxCAFkVvXPPQW!sB!poj5G*u5G8FDsn1NnezfqcJwCpU3otFUYAqVN*GxVCCdQuUtcDTVj6*LGCrv9zCaKh6msn8LzYYR*dmXtBRkW1D!DenCrZg_/results,1 34501,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*Jp9aWLCZUF91G73NwxF6lq30IJN!vnlkl2C1UZ9al84B2dknDlGjdLjAZ8OiH7Ywi9MduKAata22tUXpe36qp6FGIRtqdTCfF5HY8kQ2L2x9zfMcCHbXnb2qrt4Zb4V0hFGNva80UwOltCIr3d7gumV9KoEFZPljZnBNqRGpS248oWcHpBDXY*qSCkCpfCUCZYHLJ*DaMDoHEYCRuawY8CONwyH5f5s!Ow9GK60yGLrunM04JmPIPKzOyt4XrwVVyDGsBQc9idXvvyz4BYtwWAJbrFUzuqEcKKGT9mfiJ*S2AP*tsUVwbTIQQloGFcGk4FumM8eM39jPpMINtlOPUXbv0tBuEcqiWi1FNgjlSS!VgqUe6SSAa6W!vF1WSOVvA!rpfJlqdL9FlTXc*vZN4JpfmmE*AZoo4Oh/results,1 34502,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*Jp9aWLCZUF5dG!*YQilW7NbbMVN2r8vcLJLsNqgT!0LHJiRceYYsV0*bOhhQ*iHm6x80cOXW5he29t1sG4PI7e2jtZIq7R5bs3Z7frNqwylNp4wyKFVTS*NxREa*fnuTrBtZ8LhjFSj4U3aiyvYjgg30TpM7PBEPOprsouUCihVoIywErByCuOA8SmMAcamsC1g2ztGYXi8Gz0FD1Z1vS5i6atTNBCYexT5xYMFnmcfpTWKMcwFR8PJdZj!WXCzljBYwkssiUkdCCdqhJTDifSYxg78!5LWjPKqRAJxaFeBk4Yu6M8aM3!jP6MIFtlOPUXbv0thvEYqiShbCq2RShLPlUJijVTSwGypH3!XHKnke8iWKuelhL8WunOr*GWiZa9eG22!AZ9se24_/results,1 34503,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*Jp9aWLCZfHyqLX7G4YosWZ3YQu2af!!B8guwWqjPrUvcGBGxpljxCg9Hmh9IOkbTJ26CjMO7YFUQgrdf0HBu4*BKA0MqYV5v4wGiBjBGnbHhptWyG6QPezazQt3pZCWMHI4rNFcnoHQiM8bnGAGJZ0iI*lkuHJzhoJVpICJlm5i9ROxqK1JFSi5p!SOMsEyj2VzWOqxdA5jHmNz2NFjxztG*fB4N3pyHkyrtEhCaatTMOCYzyjwkwfLe158lJYoxLAUHHUnl276Z8EtWsLeEt5iqZjV8eEEDZeyO5G!xLF7*n1JS0bTPEMFSn27Ehw1dEN*9pj5G*2ZRLDJduwp2P5dCuM9UlFEq6XQHqko8bVSqNgjFTVwtdSPv8saqeh7WC2VLUsV9lpQPVwrtDaC6*a1EfIb0ZmC7g__/results,1 34504,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*Jp9aWLCZfHy6Ha7v2GIkq1ZCy3YpJ*fAye7BKuN!tS!wIEZGWeOQWfseODnA8s*YBqk7gZjO1hqq9znMDrYpQTWDoiNdK3SXa!vsOs3ge9LpT1hlGPfNlbqGxAa9fUOJ7je6HC8YOVkeJPuBoU4sQomXodJnJ!YR33NTpFSIqUMlAlWIFbMYTli!RwmEBNz2BGx4x3jODzejV!CB9caq7JY!uoSDQTmM4n87MFCz4uP8prEGJaC4!HkOkz*LLhFSxQt0S2WqlkdDCdqhJTDifwljR359yWvBc*LglQkx3ZlNGnohv7sMfM3!jOJYJPt1FO0*bsUpXukkohWS5E9Uknia6VItUcqaeBqqR!3yxqp5HtYLVUsS1X!t2CufQvXvlPStq!N0t!DCnwy/results,1 34505,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*Jp9aWLCZfHy6Ha7v2EIJVuzFq3YpJ*fAye7BKsN!tS!wIEZGWeOQduP04GfDyz*gGno9dBpWJhR289usrBHCawt0BpplTavrbnCrtvspC!1cYRJTq1qRmluQGj01wAn2LY3*nDBytnwLu0NCnFiFUy89pM4PzGHupqdAqVESukpM6xArFjCcsTyJUwgJpawI2LHO8ZxeLwbv3gPVvWjzkLpqksw4JnPJPCzBws9rz7KaxJiWAuO!5NrP*2z4FYtUbREt1iqFnUwnKDhU*Yn8pc4duTfl7wWPC8LUpEc25XRqKEb!rPHzN*ozyyCTbZjT8H271KU7pGKIkqWInukosRTpUi1RypqYLLUj9slRSr6HpKlinWpyv0W!mur4Nq3Wo7qrdHmG3Npe2c_/results,1 34506,http://www.nfus.org.uk,1 34507,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*Jp9aWLCZfHy6Ha7v2EIJVuzFq3YpJ*fAye7BKsN!tS!wIEZGWeOQduP04GfDyz*gEkOg5adhZUZtf3sJgublMDaAq!RVmnz2por7LrNTvpSG0eY5NSqZpTmBoRGfw1wgm17408XrJwN79LeoBAnVsHEaz!J8xNzqKvZKVBKpJSeMsMKxIolLEcsX8IEYmIJOyJ2vGMch8e78Yv3YFU*6iyUrroEA575TAI*e7DQ8!qjvCYhhrXguD!59tM*C27VEkVLdIulalEHwwkaPmV*In!JY0f!fclrwfOyIBXJsV0ZjRq6oT97zPyN*swi2GQ79hRs*y5F6R6pKKJkKbJHKko8VYpUe6SiBiZL*bhdUqSi7yFZqliXqtxvob!2Cq59q!Wo3hptvgHeY3vI/results,1 34508,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*Jp9aWICsnh51Nr9DUMo3ZLdYis26ef3wMkuwWqDPrUvcGBGxplj0A7jdGDdIS8!YGqV0S96srA0o7KfVyhZRwmsLRB7YaUyz9qcYddtXoUvlXGESUxa9qMwFyD06usdTrB6MP54nlez4U3YCxS8zWuYWOMn3j3kDnV13gZKhZTKU2ZYiVi5hBWIFUsYR4wvYUfEjjeM4XB*N3byHqwcRpWF0lWnYMAzH0ngZ3cWel59lDUkxLAWHPMnN376Z8GtWqJoiW6xVC*qYDhBw6fsT2RPcezIvy1Zw1lRlaQmBbYro1FDN*Rnj5m*0Z9ZBJtsx56C7d!lKN0jFUWULEX2SEWJp0qReo9U1MBkqR!3S4pU9D0kS5XrUrX7LQxnLeHat0qM8rVX5hvRCXwW/results,1 34509,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmthwWbw8arf7G4ZQYsla2ILbtH9fLtklWG3Up*YFDszIOHOMGKXHDB8zVLzbySgm6JCh1nB21WL8euzVh8Wk5uY6jMZSILBrY5*qqGFcvgjZ2123OVBfcukIIx0F6zSVZ0vo!OfFnmCEkl6LoGoyvFFztgVpUW0n3PiJHB!QQ12N2kipAqXylAlWBqycw4qAFXMYCRiZww4BO9wwHIb7u!GT92CY0jyPpatO0YBnPoHIz!!s4HnxUdyAGMNScNif3PjpnwW3aAkGS3CLpXpWJ4QTNXzK*kT8nMYe!LclbgguqhLUoAjtymHS0A392WPmb*RnEsEm26mnaPt3KQj3SCURrZYCe6SSxNdKgXqPVNLA1VI**i5rpJLvYbVUuSxVu2tB9YK5u4VTzV47Lr8BvY6A6A__/results,1 34510,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmpigLF4e3dr9DUPdU0vcxRbo7e97hKwGq4361CYKR2dkmDlGdadMQMsgTl5xkvAOKoiPH51q4YxFzSWOAs8GDI54XMGAksJ8Yf0IUjwJo*FxqUC*XbCkZUTwWuPCFdc1yLOQDd7tb164LUH2BMONqCvFZYuECj5fcAUtOmm3w!JsMly5brFgxzjHiRZ2YuVd3KN9jVsbKJmjZJYywVKHpXNY4rBkDmMOY3PYwWGHG0bdMOyNnqwHXXcKwrHsq9NowDLvycgPB5bzvPgoLcgYw1Jw1K5c2OmfBbdoKXKWoi2W8lkdF86oYVO2K9IHP3bHv13SgtEkS0lOEteuMPIauqE*e8z8jf5MIthk2*c02v5dKor2SHkRrZYie6S8xNdKkXyPlNfA1VI*vi5rpLz3YbVUuiyV97!FrhE1fvY1cFU*VyC*AcyXi80_/results,1 34511,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmpiALF4etXZ*wxCWuGa32ALbtH*fA2SXYLVRn9oXztEZGGeOUT0qk5A2yfJ3KPzMepFkzdd4U1BOavgYZA!dEdoARyqhb1ejgYoRXGvY3THNhTxZHmntzStzrZCWYJgZeKeYvAChE59vcIIeRuk0aVZOllemL9DQJqugkNoV2j5lFrV91gRK6Smlo0ywwmPFHJZ7LJ*DqMfoHHbw2OGOEb88no0cnQfNRyXS0NruGAw45jMK*PTB8p4Xt5IahRiWgiPu5NqVfxbcoiXsLeEtlqpZHR9O0HApuxPJSxy7598vSU1JXhaoQrkfV4qjgW6Yzx4zf2M!kwg22Y49Bdu*S2G8RyqKaLUU2iMVJb5WClV7pKIBrpb68XVZIxW9D6ulimWpyv4Wxn7g8NnXgil!7oT8Bk0cgyc_/results,1 34512,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVQetXZ*wxBLtmYtWHGT9u97gOwSrDbqU*sCB2ZknDkGjR6nhNYJyT5g!tI3dUlINUg99BI21SjNrZ8MYBjB2gC9EaaV6rUDJq3tZi9cKZUlTGLq2mYU6gqERn4OcILptHIijBSz4V2YKxSsIhwmWrqJ1U*EorYmVaAUnlI4ygzLPZYvYZnHsiWMeYwtYSePne4Y9cPj3ejZeTCtHmUaSludgwHHfEaBnz5Y3vPqo7REIYa14Kg7uXTTPwtu1RL2lvAeS3xRx4cTNFzK7kT6Esfu!fclLRnNihxxlPl2pThq6I7!HDHzN*ozi2CX7dhTsP27FMZHpKKINkuhI1JR4lulED8iFTVws9SP22WLVPQ9bJbK16W4*S3oS9fCtW!kGNu3RqpvVP1!Mg__/results,1 34513,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVQetXZ*w1CXbM1uoRXa9PMLnOwSrDbqU*sCB2dgnDkGjR5tRtuMFO9uetb6kpHmJIfPQZ1dZaWxDlOjNB9XaxwFI7c2blcnTC*VyfNo6x9eRSil8gQr7NB3o1AXR!jk15s7wQxaBS1GqsnwKowTZqwh3E20DhNrH4hHfU2aSKmAUgXKBCsBK!ewArBiDmOAsTnsANjhhlEY7u9Gj8GD6fUo81j66hgNBOYjivz8zgLPi1tpjWIMS8HRcHIdpn8W3KIlDJbwFkt8VgfCiRoh5XAifUpjB*5tSWtGi6pEHBXQrhwnDd3Qnz1m*kZ*JhFssp16irZ*l8J4j1QS0WoptEcqSXytFOJ7pJIGrpb6cbuskUq!h9VS5bIU978FfR56d!0bKcb!pZPqG30zgGU_/results,1 34514,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVQetdv9DUMsuzVroQWb9vN7gOwSrDbqU*vCAWZknDkGrTZjRo8ZKd6hDKI*Z6TRZzd!anOFfWWk*RhGCzBGsLbwRCtsJ9Vzry6w6zYH4adSOcIoxr5rjVBXILTy6w1OsL1WXoeRajK8Cgs6jDWEQ6G1L!z4QBzq5qSJlCpQKk!ZYGXAyjmsCFgxh7GAsTnsELDDDaNhuL8bPXkPttNG5nHqZqdowDMfUeTnd1bwvPgorVGMYSk46k!ufflnwS1awsES3mKJz!qEcKKGT9mfSJ*S2AP*tqQ1o0VVIo6K0K4cJw3d0J89Zv5GfyYRbLKdeoq2f5fCeI9UEtFqKbRHKkl8rRTie6SSBq6W!nG7rJFKvofVUuWyFHe*BX3pO7j2rRSme2ml!gZ68H6u/results,1 34515,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVQetdv9DUMs2Zq1uAXatH9f4GSXYLVRn9oXOTAD48wxaEZtM3rMSPHmhquwUiv7lZFmkOJDumWlpXkfrHEoRm5u3IZWmE6q516d3apfHEQopfIEK2zftVqoiyO08vPqTjD9qIIMI9Xk8SrMxRWsIdwNtA4DOz4Qj*qaNJFSAaUKlAlWAlbOYQVgxRzGAGNz2AGwww2j8Li*Gz0FD6Ybtcxj6atTNBCYjyjy8zsLPC9upTWKMSwFR8PJdRj!WXCLljBYwlss8VkdCCdqhJTDifQpjR34tymtGS2qEnFUQLtynDR0Q3*2mPkb*ZlEsMl26ina*l0K4z1SSUSrpdAeqSTxtVKI75FKGrha6sftskYq!R5WS5XLUtz*FsZz37lr30ihu5dWqm94hX7*/results,1 34516,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVQetdv9DUMo2ZrdQgs27ef3ANklWG3Up*aFA8zIOHMMOmPHgh4LUr1DEVI5V5BuNDB8GnuBfW2V!7iODmCMYO3giV44qfTzoM!w6zevIkyV9oRRjIPsrdAXIPTq6w1OcIPRQYeRZjK8Cgc6jHWEQ6FtKOz4QDzq56RLlCZSmkCZYHXE6jmsilg1h7GIsTnsELHDDaNxuL8bPQUPThqryjT1s1MyEJiPKPHLOyt6XnyUtijFsBQcDSe3ofyz4BYt4WgJb7HEZ3ViOEkjpBxOpE957JF*W9KW0aqpEUdVbFeJs4Zu6M8eM3!jP5MINtnOPSXbv0thvEcqi2i1FNojlSW!VgrxPVJZA1dL*bhd1khl38NqqXpZivvfgjkPEq59p4SVL73S3yb8fsk_/results,1 34517,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVQetdv9DUMo2Zp1YQs0af!!XLJLsNqoT!0LHJiBceYYNUrbAh8LVL276aqs0op*8VEUqLPCWAdILczHaI3DIXBr4470zHAhXwd5drt!c2ShFNITLLMD7zWTF0foxefN3WAGJYMQQc1kuDJzcQXpEHUTbsNEjk*Io75GXaI0kdIEygSrI1bPYVXEqjmMRIzMYYeIHe4YjsPj2fApeDBcaVGm0lenZCAwn0Hilw9W9Lx4FLcgxbAUHA43t2H6Z8EtWoLREtxiic7qxHCSRkg53Ihf8tgj*77ELcFVUwMKqtiuEmYN3dCfPWb!Rn8mEWyynXtKtn!XgnCPVBbRaimwRypLfK0UoHuksgaulvrxdVkjlb0Pq6XqZSnqfwvqPHD32TeCaf7WC*kNYoh*6w__/results,1 34518,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVQedbf7G4ZYujVrcQs06ef3ANklWG3Up*ZFDszAOHMMmlHbjJ4yUnzAcBuElRlprBbKvEoNy0pL8zlYAyhGMDewoRWmk!qlVxdYdYuD8KVUjmCF7bsWTrgCoZVfNzjB9KPyMoxUk8e7MFcoWEM4DLT2Azs9EYe6mjSRUgVK5SkTrAxYOYcVASvmMBYwNocdAna4YzQ8Hu9Gz96D6UYt81i66hwNeOYRRX7!YAXPi1tpjWIMS8FRf3Lth38W3KIlHCzhLZb4rE4IJ2r4lP2J9DmNPfDvU1ozWlQl4qgI7cpx0tAN*dlj5m*0ZxLBJtupp2j7dymM90glEa2WQnukksTXSiG!Rypp4GqpH7fLGqnke1gtVS5LcfdbGC99B9e!kUJ3b61U3zz*fvY_/results,1 34519,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVQedbf7G4a4dDVrsRWatH*fA2SXYLVRn9oXODAD48wxqofRJPSUkOwdplaK3rQJqYS6wKjFi5FfgKlR6o*eaKBgBGsNp2qhG6kunbrCrt3shSulsgQjTNfUo1A3INTy8w1u0N2gnBYjxWR4FfoGBasIh4mWbmKnJ2JRW5MqUApPKRxlguUey!ewzGPZHMY8xuawg8cOd4z64fFs9Ow86GYYZRpKW52DAcc8osBPHyzvefEoLVGIYSk46m4u3fTPglu0hL0lvMUSn9Xx4QQNl7K7kT7HsXv!fUlLRrMiRxxlvl0pjhq6oT97zPyN*kwi2GQ79hRs*y6F8R6pKKLVUmiPVJT4WinE90hFDVwt9ePrskYqeh9WS!XLUtz!FoZr18BnX0sxNm0t1TfLMoBJ/results,1 34520,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVQedbf7G4a4dDVrsRWatH*fA2SXYLVRn9oXODAD48wxqofRJPSUkOwdplaK3rQJqYS6wKjFi*kCSI1Sf*RGAwMjWGs4VAvdSHXp1BV27WYvXCmVJRhhuqYehboBoZafb3CD7gblpBgpJsOr0DcoWEU4TLR0Ezs9EYvamlSBUnhK4SgTLPdYPodlHsvmMOYxNocdPHa4Y9QPj2ejZ!dBN8Mo01Da6hwMOOYRBX76YHnPi0dpiUIMS8FRd3Pppn8W3KIl7C3hLZb4rI4PJ2i4lN2N9DmO3fPvS1oymhU54ijz7Upx1NAN*dlj5m*0ZxLBJtuxp2D7dymM90hFEa2WQnukosTXSiG!Rypq4GqpH1!XNVLR!7BaKl!W4va3MFy7Bj77WoqxaWupvgFCMn*k/results,1 34521,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVAftXZ*wxCX7JK1aAXTfn65ZJdgtVGf2hc5MAPjzDGo!lEnuE4Q*TBDJ!RdyGuCKqWnC5faVJ9C3!zCNAyWi6gcuZo6rQwfAjNXZrlhquXyYvfi2i52zJVcWoJmWrTNyNzhDf8azAlK9NIJE5TPHu9M3U1BKlSYAZduIPULsqitURUouafkjjLDMo9lSxj1GF3CiMfIEnby2OmBYf94vhs!Ow!q7UeehtJW52DAMV9B4KdPlve8uhWXIMSwFhx2J5du!GfBrVqC3hLcY6lY1PHhBA2XsjsRv8Wxe*5jikuCaZ6BAlDfrhRGDd3RnyNm*kZ*ZhHssh17CrZ*l4LwiFQU0WYpcEQqSnyrFCiOSEUN3Cz143bZIhV9D5ulsnWpwv4W!qtozbWvOBvbW8PlN0p1hXk_/results,1 34522,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVAftdv9DUMs2ZrdogU2af!!B8guwWqjPrUvcGBGxplj0AzaZvSYEf4B0yjsTavefmWkGQWMXGlpbldrAMQI1gb4rTCdVK!9OsOu27wKX0rlCFbYvmu1UBcgtPJzhBNMPyivwkg5Gd6FuUDBGlLBRGs*seMTcairSRMpZaCUnjLBioAVcxgPGJ*DWMDYHHYI2OGO0TA83o2evAfTDVrmsXTVKRrwzGcU!fmDFTwvPkprFGNYCo76k2s**bPgFi3hYAlvsVTN6oRwooZP2Z9IX9LYA*!!pDWjvCxQhXhoV46Thm7ozx4zf6M*kwg22U49Rdu*S2G8RyqJaLUU2iOVJL5WClV7pJIGrpb6cbuskUq!h9VSxbJU5X4Lw7nv4No3UujurZXqG5yKfrU_/results,1 34523,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVAftdv9DUMosWYtbIEm*fxyyS7BaqM!tS!egzMyzhyDRmlb4HOB6IcrVlk2FaiblDGucGbFoPQo3IJKLcznZI2jQeDWxj3ZM8OFfB3l4O76mxMLrZCeYJkdea!ZvDpCL75ubgczKhn0CKpnl3dmrq4hHWpcwW0o5PyEPOp71CVKHSl1oMywKmLVEkYjRpcwEjGyhJ0idrpjOF4e74YvwYPhSosytb67JAOB!QwSv3ywoufVR3ELUgxrweGwcxvKPwtu1RKMluAeS82iTgwnaYSUw474JY898u9L3BJM6wo0gMZxlTAb6I75HDHzN!Yzi2CX7dxTsv27FIRHpLKINkuBI1JZ4lulQHNEKhvgZqkfp8sWqex72CxVrUs1*reghpG7Y98IpvlbL!Q3l7iCHw__/results,1 34524,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVAftdv9DUMo2ZrdQgtu0s*vAbJLsNqoT!0LHJiRceYYdMaOBT0WhH*CJI01WtmCdNLcACBcW!Vu19EBiBGsHfB74aTSr4M!w67fvIpQKu0JoxgH2VuhL0Do1dcHnOAGo4MKI*VkeBfuAgXrSAMTbcPEjk*Eo74mXaLUkVIHygSrIlbNYTxifA5jEWNz2CFihztG4*B4N3oKHhzkpspU!uqUDATmM0r88sGKnhcfpS1KMSwFR8PJbZj!WXCLlnC0hLdYamZ1YjhJI6QcTqQveeyRf1*SllFeV6hBPLarxFlDN*Rnj5m*0Z9JBJts556S7d!lMN4jlUW0WgrtkcoSXyuFmj1SWQNXS*24XdZIZd*DaqlqWarxvwVzHiRc!04JK996pb8BFX5!oA__/results,1 34525,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVAftdv9DUMo2Zq1uBWaNv36Aie7BKuN!tS!wIEZGGeOUTOMNqPHjPA3NwlrlX7!0lJlpBF9P3yIUHM9KvPeW!M4GLm1ccdaYaRjd*rsdv1mL0KptCdYYTvZjkJfHKFVn1d3g!kGHcQYKSfDqzAXV7CGVG6idZjY8YF41NekiZQSKGWgTLACsGIO44DxOYwBxuawA2CHG0ZhuD8bPQUPRg6jymPpq1M0EJiPKPLzOws8Lx6lNYoxLAVHw811mP5ZcIuWMFjCWyxVszoQTtQIKYcb6VMaO*BvS1ozyssCVYhDu3KcNHRDf*aY!Rv9mUSwyXbqKdr!XQrjPVJJRKul0B6pJPG1UqjaI5U0cLXUj6*LGqnkfVgtVSxLVf63MJw76T77RolRvrRKfwPJRoFh/results,1 34526,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVAftdv9DUMo2Zq12Aqb7ecXDtklWG3Up*YFDszAOHOMmmG0GT1mhH!6SVir9KvQUmWkqft!uEHJ9ajMtbfGUTBya!NOtcJIR!702e36zV5AqbQnWGE72Y5CXxyhVV8f7gbTDRq0GCknw7swF1ewhlRuojVM7PhEPOpr0kRKGSglUCZYEbBiDuMB43MYCxibww4BO9wxGobHs9ETeDByGFUeS1!dogFgPqPIzx!s4HnxKK1RjGEpOAo31zD9s!AWLeFgCW!xVM3qhHCiBqQMN9KXNPbAvy9pzSgvC1QhHtqV46ShG*qzx8zf6M8kgk22U0*R9u9SGO!RSiJaLYX2SCWJr5VC1R6ppIGrpX58XdZIJe*DaqliWaryv4Xh3En32TdKjPKtVfob7giAxw__/results,1 34527,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVAftdv9DUMo2ZpVtECT9u*LJbsEq4361L7AgRkYZ45RPSqT4XOG6LudxDD109cgpMlQw0dpFOO2pFIJ*dEbbSkQ2LW2p1qmuZCvnbzaXbfZM18K6QiGmY63ismbJbTic7I36G6UXougcjYMTN9sQRpU2QnXfiLnJ!RQV6MmUspAKT1lhhUBK5YwGjC6hJGAkSXsFLDTHcNheDwbvngPmo9K5LF01SUa8MxnEPn5gxU8rx7FNYgxrAWH*c21n*5ZcKuWYLAE91iqFnVCOFHDp!xvxC9p7IF*X!KaYFoWoAI0tCuHSUN39OeImb*Rn1kEu2ynnqLt36UgPCKVRLRZChyRShLfKgWqI1JJAzdL*fi6bJFK3ofNUsW6VOV!C!O14*azrwVT*K0V8hs9SIEk/results,1 34528,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVAfdbf7G4ZQujWrsAWbtH9fLtklWG3Up*YFDszIOHMMGqXHDJ8yRN*txJUcNeNjhhr1agcx3Hr1JQch7RaVWpiPfjSWCIFdG*tsywwX8qWTF7vrNnvmSyEdYWRjx1vN5NUSWvF5syeYTkmvSFA5GQZmrrYgDarshGs*kdMTcqirURMpZaCUnjLBioAVcxgNGJ3DSMDIHHYI2OGO4TA83g2fvQfDlRZ5LF11jgY88wgiP3!wgufFR3ENYgxLwWF*cu2nfxbcoiUYLMEtlqpZnRBO1PAp!xPxcxp74N!XuCaYlgWoAA3tymHS0A392WPmb*RnEsEm26mnaPt3KQj3SCURrZYCe6SSxNdKgWqPVNLA1VI*bpc1Usn3sFqqWJaq3G9BXTpur30jmOZvrZDfOzeC*w__/results,1 34529,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVAf3dr9DUNYdmt2iy3Yy!f3ANklWG3Up*ZFDszAOHOM2N4MGW0ywt9gGIw4nTqZkf2nMEelofgQUmipLDC0Ufb9OlggYgRzC3tbYaXSx06fYdUtXoUv3V5uBzF0sjVCX4DQqq9XOMF2vfaKjJSjx4uwFyjYnlQw0NoPrHkgDnU12UdKGSilp4ywImDFFMYDxqcwFjA2he0CtrthNDzu70YP3oOVvVF5LF11iAY88xFFfn5nBc!zW2mNYgxzwVF*cu2HfxbcrCUcLOE1lqpJnRBO1PAp!xPpUxp74N!mtGaUlwWqEA*tynHS0BX92WLmb*RnFMEq26mnaPt3KYy3SCURLZZCW6SSxJdKoWqLVNLAxVI**i5LpJLvYbFUMS9VuWuhP8O9QhurhJHPrdLfec6CuA__/results,1 34530,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVAetXZ*w1CXbM1uoQXa9PPLJbsEq4361L7AgRkYZ45Ro7QtcFcg!u6mZ6VsgdqTHj9HeXaVFcZtUKmF!bha4ygQuLVxp3puBiFPnoc7v3nloRTSEyy349BrLi!O0IuvN3eDGZUMWgTVk!GVm4srSIuYm3ATJtI9II*6,1 34531,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWVAetXZ*w1CXbM1uoQXa9PPLJbsEq4361L5wjszIOHOMGqVtgbsC0XdXTnr8HOW5QK0VxrryrNQlbFCphfm4WuNYELhr427suRmEPHkC7vzmlYdWSE!w3I5Dr7n0J*Ti682dYEYlgxxB9WR55ebiGtIi5gpuQiHdA*Ko71GbKHWk1IEywaqIVXMYjRidw0jEyBx2iNjhhuG43J8NH4MHMygtytT67pgMBOYjSPzyzoqeF2*FDUgxLAWHw8lNKP8suEVLMFqCWyyxWZ0YTtIIKYcT8VMee!TfLnFDMK0rwACN4yphNtAN89lj5m*MZxLBJtu5p2T7dykI90hlEa2WAnukssTXSgG2Ryob4GqpH1!XNVLZ!7BaqlqWYv63oM7j4D77RnA9vPRCfgPProGw/results,1 34532,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWUQftdv9DUMo2ZrdYiu26ef3wMkuwWqjPrUvcGBGxplj0PXDmPFjxop3mD4z1nAqYWUH4z6uo4NNSmDtgNcqp4197uwZdv3mVYXSWE8Y1djpdlD2AoTWfL3BCa7rbThdsHIyvCp3gUI0rIKJ12ESxwfmUV!zJlJKpJSBMsEkYnIOKxAr5jCBmJjDDogdbhjH4f5u*BQ8ON0PJo!lr07RQGA!ksjP7yz0vPgor0mMYSk4Hk6uw*TPglu0RNES3WKpmtXBcKJGSDmcyJ*S2JF*W*Ja8KKUpCIFtiunSUM39GePmb*Rn0kEm2ynnqLt36Uo3SOVRLRaiuyRShJfK0WqPVJJA1dL*bhd1kgl38NqKbksVfnfQn*uNFz7zqhBv7TGfgMPDXqM/results,1 34533,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8ut3ubxiidEvWhVZo0s*vAbJLsNqoT!0LHJiBceYYNXq0GT0N3Nib7uWrFH3PrchI8QHbBKEaSjUK8zlYAzsYwdrAoZabTqheqovbhc2B!1IoR7Dcyq4duboCoRVf73CDkVoBISOMVJPhxs0VCnYkIMdo4yd2eiIOdTU5RkoVKJWnTLAyYOUcVgSsmMNYwNgcdgjY4Y7RMDyejZ69B9PpUeSxdNU5GvDMZxT5!YMVPC8epQ2KMSwFR*3NjZ*!WXCLlnCwhLdYqmd1QjhRw6fsb6QvaeyBf1*ShtGiKlGNitCuHCcN3dCfPWb!Rn8mEWyynXqKtn!XwniPVBLRaim0RypJfK0UqvdIJQ1cLfXj67JGKnkfVkuVy1Lu3zHoi!zgs28EH7u3VqhvrVaAQQ__/results,1 34534,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8ut3ubxhKydashRZo0s*vAbJLsNqoT!0LHJiBceYYtdq4gp4KUn3A9Kz1tSDHdyOFGwQfoXbSOkCVkfZzdBZIGMHawrmeWyHVy6AusOs3Rx5KqTzBcbiiN1xdgdDLL7jU2kGroMZIMxneuAVpxo6khYl2YWKnB!JRX5NjojSR0gTKBKsjVs9hVcSqOYxFjM1hh4gdbhiNw*3Z6Dl4sEIbWabSV!dkIDAfUeKXd1b0vHiUdijFsBQcDTd3YfpnwS1awtES3mKpndWJ4SSNkHK4kT7lsUf!bUk7RqumRi2qYrtKnDV0Q3*2mPkb*ZlEsMl27inZ*l0K4z1SWUSrpdAeqSzxtVKo3SOVNXC11I!vyxqp7H1YLVUvS7X!t6Avg4DPvpXciNdeqm!!YoE2/results,1 34535,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8ut3ubxhiydasxS3QpJ*fAye7BKuN!tS!wIEZGWeOQTsal*FTxooPmG5Gur6TQ8aOTlkHu9oo!zk4CyAlsLbAb6XtlH7t9QV2*eYgQ6m0Jzh*RGukvgKhVV83OMH2ow4qglWT4V3aKxTiyGqYeBMmcXpiHvU1O0ZKhZQqUCZYiVg5hxWIFXOYQEzMYQfEDneM4*B4N34OHmw3GpXH0lfnaCAwn0nk5w8Wel58lDckxrAUHA8nN2H6Z8EtWqJoiW6xVM*qYDhRI6QcTuQvaezIvy95I3hRlaQmBbYrp0lDN*Rnj5m*0Z9JBJtsp56i7d!lKN0jlUS0WorskUoSXytF6j1SSQNXS*24XdZIJd*DaqlyWar2v4Xx0ndw7VslTffWKv0NkQV!iw__/results,1 34536,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8ut3ubxhCydasxS3HJv38Aie7BKuN!tS!yIEZGGeOQRjsmPFTxooPNyjbgYaMHftBGrdmrIbPfgQHUeLm4NitBKXNa2cubtUv9jKU2m!AUY6daq00V0do9dfNnQDdYIKGYNXk8S7h6gpxZLUbeBMGcXpiHvU1O0ZKhZQqUCZYiVg5hxWIFXOYQEzMYQfEDneM4!PxbvwcPIAarM5j6atzNBCYzyTy8wcLPS9u5Q2JMSwFx8PJTRj!WXCLlihaolss1bM6GE7UCCmHE*lLGjvy71PeCF5UJalJge3KadLQDf3ZY!Zv9GcSwSbbqado!3cpSvdIJRGtliJ7pJLE10qReo9U0sDVUj9ulzVSyfewWqpclqr9b2G4dMpd!6ClVW!tNt8Jsn2u/results,1 34537,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8ut3ubxhCydasha3YpJ9fOCe7BKuN!tS!yIEZGGeOEWeHMeOnjBVulFAy4icfvnBWdbLP2LG30ji*aAbtPvvReYwGkvN7W!mUNq!dufjVsNhLKLXBI8dOtYM0V09o9dfNn!A6a0BRsGryeJfu6gtxZLUfeAODOD2xgIaaHSOlQkoFlAlWIlbOYQVixRwmEBNz2AGxwx3j!Hi8Gz!DB6fsoPNYhuocDQDzmUR!*mCh58WtvCExhqXgOJzcwPDPglu0RNES3WKpntXBcKIGpAwn8pc0duTfp7wRvKhKUpMC25XTpKEb!rPHzN*ozySCTbZTT9H271KU7pFKIlotRfZIJYmvlSL1Hqmkgaulfvxd1kgl38NqqXJZqg7Xgr10KlwqWg7qrdXmG5mggcw_/results,1 34538,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8ut3ubxhCiTW7xRZs0v59D5zsEqw26lP7IgdmYJw5Bt1gx4yfMla8w6DkqLvBfmXsaGDJWO0!rqMDhBKYOyC30iltnnvTwapfvMpQar*BjXLsVWuluQCh1Z9vcILrBxMkBKsmj1fpLlCII6th4E0YxOmBedTX7BgpFVKqQJlgJWLlHFYgVsxhAjExhx0QO9wwjo*7u*Fz8ODUYHUeS1!do4HAfCSRn99Z6HlxK29IjGEpOB5ObsLwz4JbtETREt1iqZ7VwXCiRkg5nMif0tiRf5vyRvCiKklNCmxXTpOGbujPHjN*oz!TCDbZTj1F279LUbpHKolotRTZI5UkvlaK1Hukkgaulvpxu6yRSr6H1VLlslTtfwtD1yu49p2WVr202nwDd3V9Rw__/results,1 34539,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8urX7G4ZSuiVrsQU36ecXONklWG3Up*ZFDszAOHMM2sGMGW0zUny64Vlq9apGm5Gj4L249nwcjMO0kfbau3XaYuTm1u3quBVSvyh9dqt!seehlNoTRj4q0RmuL47Qya8Pd4JVgw5ajFSTxzu3F1ewI6ndQJswsPaBeNTX5BgpFVCqQJlgJWDlHFYAVsxhDDA2hx0AO9wwCo*7u9FT8GDFYGQeS1!dooHAfESRn99Z4HlxK21QjGEpOBpObsLwz4JbtITBEt5iqZ7VgXCiRkg5nEif0tiBf5vShtGiKlGNCmhXjpOGbujPHjN*oz!TCDbZTj1F279LYbxHKolotRTaI5UkvlYK1Xukkgaulvpxu6yRSr6H1VLlslTtfwvDWQl37VvJjXjrpP4GKYWA!Q__/results,1 34540,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8urX7G4awZJesxRZssp*fA2SXYLVRn9oXODAD48wxagczZrTNSPEJk7iqXnAjM3Ic!R1GYeRZjRZgbaT96qGkLUawtnCw41ZIfVb6Artus!e!lNoRRj4q0Rmub0Do5P0DbrBq0F6OkWoyvHN7g4IdSQ0TbfzE2hfiUFeTY6RUgVJ5ygQrA1bOYUXAijmMBYzNYYeAHR4YDcPz2ejJe7BiMDKPpatO0YBnvqLIz5!s4HnxKG1QjGEpOOpvbvz0z4JbtISDJbzFUj2rE8KJGj5lfyN9S2MP*MeSNowWVYlqVIR25Thp6Ib!7DHzN*oziWCT7dRTtP27FMZ7pJKIVkuhPVJJ4mulUL1HKmngaqkfX5c1Usn7sFqqXJaq3W9huCgBn30ruRHXTupv3QSBig__/results,1 34541,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8urX7G4awZGvWYgtssp*fA2SXYLVRn9oXOTAD48wxaEZtM9pmpPiCwfJ7Ro5Cy3Nvjav4wG8Dt6MGgtLS3AZYpy1GMDewteNGSHXu1QVW3eLAfSmVI1hue9Fprq5A6OT9E04w*ai8ICPV5PHBzRUKdiQ1DLTxA2tfiENdTY6RUgVK5SkTrAxYOYcVASvmMBYwNocdAnZ4YDQ8nu9GT96DEaOWeSxddYoGPPMVRX7!ZAXPi1tpg2IMS8FRf3Ljh38W3KIlHCzhLZbqWZ0QTtTwKfsT6Vsae!A*prRhtKhKVKMitCvHSUM39GePmb*Rn0kEm2ynnqLt36Uw3iOVRLRaCu2RShJfK4XqPVJJA1dL*bhd1kgl38NqqXJZqna*hfHSC7j2jeRavHdSfQPOk4J3/results,1 34542,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8urX7G4awZGvW4hZo08*vAbJLsNqoT!0LHJyBceYYNKO2GW0zUrzDdNNc2F7w4az7z15dMnK00lhAlZbmY7AGSBjB2sC!jhsh1dnxaOseDtyXUjmC5XBSp7m6AqGTXzc4wfSj8mqMVJPhjZsrFOxIapho4yfWPhGHupocI6UKlMpTJlgZsHIOKwJWzGEsYGwOOwTscMdoGB7vRk*egxGjlnksXXWKBjzzGUV!*mAFz4tbaYNiDEvBUX9y46d*FtyiJRws4S2W6lmdEE7U8Cn7E!lLGnvg35e0YbSoSlSjIrQrx0lDN*Rnj5m*0Z9JBJtsp56i7d!lMN4jlUS0WgrtkUoSXyuF6j1SSQNXS*24XdZIJd*DaqlyWap2v4Xx0gu49o3kWrx2Un0DAcaB4Q__/results,1 34543,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8urvd3zCEEtesxS3QpJ*fA2SXYLVRn9oXODAD48wxakZtM3rOSPEBk7hy1cmMHO!aC9vzAUorjQVYaWk!B2uAhRGsDRxsuRFSvfWqg123OXBfSuUIlttetJqrGxBa!XWHG0w*Ki*HSDUZ3rm5QcGOpIaJNn5i5xfiUFeTY6RUgVJ5ygQrA1bOYUXAijmMBYzNYYeAHR4YDcPz2ejFezBi1DKPpasu0YBnnlDk509W8Lx4lDYoxrAUHPU3N376Z8EtWsLBEt5iqZ7VCeFEDZ!yv5G!prEH*mNJG0aLqkQ1KkK7cpw0dEN*9pj5G*2ZRLDJduop2v5dCuM9UklEq6XQHqkk8bVSqN4jlTRwtdSPr8saqeR9WC1VLkvV7rcwdr2Az76RXItrK9U33UWBig__/results,1 34544,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hrGW3ZpdYQtu0*59D9BdgtVGfWpf4OAMDDPHqJZqiGgVkUQPjS0R1G8wXxR*52LopIhIKQ8wXAXvL2f52cNjWD5zwQ*doIEvFNfXM5S0wma*hlPrRrdcvHTi!H3oubElF05s6NpaNeIEhJp*gJrWRsvchZFsNPSNPkHBSpLDRAs7seqBGNTUpPSUzFEySxlhqcPSKSxxWDKFMYexKWznsN0No264343urQfdSsVjX5pq7w1Y5iPy*PjOcp5nt9IC!RjmgqP25MJO*yy4WUvYWcJrLOWTOi4cr2FTtifSpzB2x78tacFokqUoR4lrV4yDhq7ozxYzf6M*owhW2Q49edu*S2G8RSqIaLEU2iIVJL5UCuVbpIIGLpb68XVZIhW8D4ul0nmp3PwW5LFr4bOveaPa15qLL7Omi9A_/results,1 34545,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hqGUWuMWW6FJ!*c9QHYJVhv1qX2RAzMwzhyDepxMQpuEZO8wPEoln3ujE1LzTirxBYU2oxjMqICiJqk*LgDTBiOYa9jcci2keupVB6t28cJdKe0GbbjpRTtxNQChlZ9vcILu4TAryUgxe7xyPUDBalLCQCs3sOaOWNTWpA6UwlMKR5lhucfyJSzzWLaEMY!xJezksdMVo*5xezd6dh60GCeZhtJW52DAMe9R4Kc3lve8upVWKMSwFhx1J1du!GfBrVrC3hLeY6lc1PHhBA2XsjuRPsSxe*51SitGsyJHJcp8u1IcNXRHf46Y!Rv9mUWwy3bsKdj!XQrjI1JRRJul0BGpKPGtUqg8IhU1cLPUj9tli1T0PWyWytelSvtbGLtewLWvJZ*ESyvVN0lBg1A_/results,1 34546,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hqGUbsm62Iqb7OcXONklWG3Up*YFDs7AOHMMmn4YE9okJPuyk!i4uih9Skj9KrV8V6OxiB6kuXa2pA1Gdm3snpYbIfWb49LGPey4L6V2hJGPSrQD12dLaOXt055gVK!9EiPFZLhwc7YFq0lpJ1r5iTVPxKGuJnWgFEApPGWC5YDlc1gGWDaHMcDYHHYA7HDHKAyPd6NH78GIfpBpKF11DAY88xkFfvpggefFrbRCIYal4Kg*ufLTPwtu0RIGS3iLpXJWB8IJGj5lfyJ9iWMH*n1JK0azIkclyqBdKY4auqE*e8z8jf5MIthkO*YUbP8uhfEeqSii1VJoj1SU!FopVO6Rihq4WurH7bJGKvoeVkvly1Kl!y30JyXstW8kH8RHK*U3S5qADw__/results,1 34547,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hqGUbM1uoQU32c*vAbJLsNqoT!0LHJyBceYYtNqMGe0yUnzB9CoHdcpIyxUM8ibFddQGMGWkvV5GCxSMYG1hV8!tkOrNbaCde3jhvpTKEUY!DqI3XJ2B0MvbJ5xgB628FiPVZPjg9gwFa0kNE238xLon4lBXkzZSqkCpPGWClQEr57AiYMUcxgLG5rBDwA53jIbh8W706D1YoY3MY!mqYzTgmc8o8vMHK3he3EobFGNYCo76kxs**bPgFi3hYAlvsVTP6oRwooZP2Z9IX9LYA*!!pA2jRVWiGhWhXTlOGrqhP3vM*I3!TCLYZDv1FG3*LoXxHqkkotVSaI9UkvhaKVTvkUoauFrqx!2yRir5HlZLlctStfst6NMg4Nq3khvx3kv1DSGjgFc_/results,1 34548,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hqEusWYttuIm*fweONklWG3Up*YFDszAOHOMmmGcIl5FLPmE6fV2adWk24iV*SA17OpRmVs*GQApgbUBfi1No*SlAx6v7GYvXansATPJqWvqUeorEGr19QE3mG7QTkWwbDa8S3OFQpQsh4kXbhLVE7OorVnpKRlSMkeZYSli6RKWIJYsYQIxsYSdEDvdMY7D49n42XkwzTCq2Je2OnsDjvlMPD9!sNDz6lFeEB*DWnDc3Vy46Z8Ft2qJoiW6x1K!qIPheA2XsruRv4SxI*!!5IXgSZaSnCTYrpgGDd3RnyNm*kZ*ZhHssh168rZ*l6L0iFQQ0WYpckQqSHyrFMmPSAUN3Cz14!uyRSp4HzZLpetSuf0tDG3XwGffKDk2b7XS3wWnfnU_/results,1 34549,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hiGWuGR3cQts0v59uWSXYLVBn9oXODAD48wxqiapM9xlqPgw05XquxRcf2WolXw8aWUAIZm6X0yJOwjMWpkjPVUDE!9cjGbXbl6oK5mwBE01H3pJxdkQevZ5MzcoPgknRFA1G65UnU1BWlSbCTduIt0LsqitURsoladUjjLDSo!VS1jhsWIJIx4jS9jBY4cHhv3wfDZ8dB7UMEmWh9JWx2DAMV9B4OdPlve8ehQ3IMSwFhx2Nzdu!mfBrVqC3hLcYqle1PHhBA2XsrsRv8Wxe*5jiRuCi6oENSh8u3IYNXRDf*aY!Rv9mUWwyXbsKdj!XQrCPVJRRMlSYI9UlHiqFKj3SEUNTJb68XVJkYreh2Spcl2qtr!FaeSD!ewrRuVw6pn4BroBf*k_/results,1 34550,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hiGWbI1btGIvn184J7sEq4361L7AwRkYZ45B049TxKuIJW92!mjVZ6svESvNMKhnLKe26dRkLEWPyrxfbckrSuza2M21NI3SQOWVe3iVUCrtCJO0u!tR6s4SavU12BNM22uQFCybDa*SdLYQJcvtxAuYRPXAHOpqVnpKhpQMKDMsRSxdwhLEkiVMICaWsBNipxvGcbi*Gz!DB9P0o4p96aqzNwDMR!L58Z2Fnle38oL4GNaC43ByAdM*C27VEkVLdI!lfFEHw*EakDKcyJ*C2JF*W*JC8CRLSU4SbFdMg4bu6M8RM3!jP7MIdtkOPXnbv0tRekQqiGizFDkiFSS!VYrkR6SCBm6W!nG7bJEKvofNUum6VO5!C*2lbey1b5Qcm5da6W!kuYNe/results,1 34551,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hiGUWLMutEAvn18u2SVYbdSn9kUOznjGmWNQS2Uy3GWoeLPLID!4ElcuTIZao!goRjHYkk6T*KSCccsTiuv3yWhLh8Dute3QU824eHZk3LmbE*UlF45gqBlZr6i4WELPv15tBz1K4XUJqmaXK9UXW5AW1XbBjV9I94Ac6mrURkoVKJWnzLAyYOUSVgSsWMJIwMgSdgrY6YbhcLm*Gz57D5pJxfNYuuocDXjmI4j8*M4KnlcfxQ2IMawFh33nxi**LLhVSzBYgnss1Ys6IZyo4VP2HfFTGnvg37a4IbioSlCDIowrh8lAd8zniJm*MZ9ZBLtsp56i7d!lIDwilUS0WQockUoS3yoF6iNSyQA3S*04XbZIJd*DZqlyXap2vwU5jMwe!5pTxV56Lr4B6rOFaw__/results,1 34552,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hiGUrGYtbMWm*fzCIbsEq4361L7AgRkYZ45Ro8cpoU1Csnc7dXK4ffZTl5C6k3yAQmgzGYurUZqPwZa0wciujT3ZciOkeu3Vxe66zYFDKZUjTHzqRTtydbWEVn7d7A2m1wr0GClmwxs3V1uwmpR2ohVMrHkiDnU1qQOl8JQCKDMs91i!hGUey5Yw5jG2hJ08drpj1A!PZ6Nn8GCEHmUaSledgwFgPqPATx8s73n1KK1QiGEtOAo3VzD9s!BWLWFvCe!xVC7q!HCCBqQMN9KXOHbPvy9pxWhW5KhEmW9XiqOG7ujPETN*oz!zCHbZjj0F279LYXxEKoposxQ6IhUlvlUKlUekogZulvrxddkiFb0Pm6XydanS*Rb0pRf2s28kH0XXSvUNghuCGw__/results,1 34553,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hiGUbM2u0IJN!vkFTnYJVhv1qX2BgzMwzhyDVpspo11Gig83KT4O6pKRVkgjR60GabmDlJH28zZZx8DIra3b1HMrpHr1dNr5hzceSqk8YeLTIHrD1dURevn17k6wg1ZBipFqNozcXl3BWlK7iTZhYt0T8aivSRspFVCqQJlhJWDlElYAVixhDDC2hJ0AO90xCsPj3eg5eLBCG5nH0lfnaCAwn1Hk5w8WeF7dShsUY1gLjoaTmzD9s!BWLWGwhPdYqhd1IJyoEVIOJ9KXNHbg35e0YbSoSlSjAtqV46ShO*pzxMzf6M8sgl22U0*R9u9SGB!RSiLaLIWOSCWJb5VC9RGppIGbpX7cLlukku9hs1S5LlX734K!DMJd!1ZyI956qb4BIF!AgA__/results,1 34554,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hiFKtma32HJo0s8vl!wSrDboU*sCB2dgnDkGYVY6o11Gig8zacXHSV4y0oLmcuRqBINIJeDzpsEQMDJrMHt6DoOQjkw7!*DGXSmkJWiup6FXXF4NoRdf7!YEmGbplBipFsMbh6spWEtqM9HGTax7Iha1NWkDpfKUylEWWOmxcg0rPFasYcxjbA07eex0x6gfHu9Gz84DDLMSeShtdQ4GHPMZBX7!YHnPm1tpg0IMW8FRd3Ljpn8W3KYl7C3hPZbqVR0fTtBwKbsT6Uscu!ffl7RhtKhKVKPCtyvHUUN39OeImb*Rn0UEu2zHnoLt36UwPiIVRZQshY5IRYmnSqH6iFTUwGSpH7dLilT0PSRLldtStf0tzJdpMNc!CK6G117Ib!qegCg_/results,1 34555,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hiEusWYtbME2*fwCJ7sEq4361L7AwRkYZ45Bo*SU0CYh2budeq4vQg6yT0g9Dp9C35QaLSa1MB*jZCwFI7s2dlfLTSfkxZFp4x6O3JdCOsLEp6FrNZdXS2jF182eYAYlvRYjxWx44!ZqC1aT0k608hNrnohDXU3qQCmAUnjKDMsBy5ewDLBsCWOAsSXsBNjpjlEYHu9Gz96D6ZQWaShddQ4GPPMZBX76YIHn1a20QiGGteCoP7ny0z8LbtUSBkt4j6VyUQfCCRo!ZX8ifYljB*59SStGsyJHJcqgXSmOGrqjP0fM*I3!zCLYZTv2FGz*LoXxEakoos1S6IhUlPhWKVQekYoauFnqx!2yRSr6HjZL5etSpfstqH7o7LVvBNfdayvkN3xtgQY_/results,1 34556,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hiEsWc1abMU2*fweILsEqw361D4IR2dgnDkG9TjNCW0Skr3D1PHPXl0TUnO4RNcPFwDUJPXHMGvAMYJ7DUtaroVUF0OmjXk4cFtKZQgzn3vRTlzdgNDKrzfYQfejskKMFIvhlesbFKwmJUy0shNrnohBTU1qTykcpbCUBZY7LF*DModlaxhzGFvDTg473THqhse70bP1oMU4ydSXpjp7A5b5jDw*fbCc582ltEI!hq3gqN25stM*C27TEnaW8B5L5aqOC8dr2JTtjvQljN3x77e0YjQrclSizLUrxUFDd*TniJm*0Z9FBLtsh5687d!lMD4iFUQULYWOSAWJx0qh8ohU0MBoqR!nS4xU8D1ES!XbUqX5LYzXXsCxryWfRNdK9Q1M!H72/results,1 34557,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hiEsu2vW4hZs0s*vAbJLsNqoT!0LHJyBceYYNIMeE9okJPuA6SblvVOXhNSGn2E8DxpGce36EzCUluazHw0QMYK1gb0tN0Kqk91EG*uw566UyhJGPnai1VzdgNDKrzucYLpBOUVGisnwzs0NClaTEiZauYk1L8SitiZ1oBSeUjjKBMs9ls9hmceyOYx5jM1hB48dHhj1w*Pd6NF5MGLQMg2lrY7BgGO!osBPnyzveXErrVCIYSk46k6u3PTPglu0hL0lvMVSOavjwwkaLmV3In2LY*f8x5JWjGZFjkqU!XalOGrohv7sMfM3!jOJYJPt2FOw*bsUxnukoohWS6E9UlHia6VQuUcqauBqqR!3yxqp6HtYLZUvS5X2tzBcOgHXvpFci2sr1Tdt8IIV/results,1 34558,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8au3!hiEs2ZLdYgts088vl!wSrDboU*sCB2dgnDkG9aRMgYcCVR92OinxKeS5QL2Q2qgbM1Rpi0nF9e1qtKVAYNfa7hqpZlyeHB0P7uGV!pJLRzDUCDYqKi!WMPKvd3uCFpP0WgQ1s!GN6ostSI9aO!HOT2R4Qg51NeojpQmUxlNmWB2wegmrAlYtYSRgZAk7BOxwx3AYHu!Gj96DZpPiZSxddYwGPPMZRH75YAXPq1txB2IMa8Fhf3Lnp38W3KolGCzBLZbaRZ0QTtTwKfsT8Usae!Dfl7gjuGpq0IIqtKuESUM39GePmb*Rn1kEm2ynnqLt36Ug3COVRJQtBfZIJYnnSoF2j1TSwGypH7dLjlTyPWRL1etSrfstTGfB7LWvOVXsdeTyG4a1gTA_/results,1 34559,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8at39DUMp3ZK12Iqb7Of3ANklWG3Up*YFDs7AOHMMmn4YE9okJPuCSXB17fio9Dkh9YvU6k2NBjA9SHPtoKQNRrA2sKvlRkj9arm0sQ877kqpLWGEU0Q7cH0BQitvn3CCUb12WowUk!GDmwsUrCYlTLRyE2ueiEVtTepAKTylcJQJlnssn8Myj2VzGPMYm8MOHjvcMeqHx7vRk*NgRD*INJS2OgUDjvmMAj99sLznxa20QiGGpeCoO7ly0z8LbtES9pbwFkvlrI4PJ2i4lN2J9BjH7vn3Ja0YzYoclSjz7Upx1NAN*dlj5m*0ZxLBJtuxp2D7dymM90hFEa2WQnukosTXSqFyj1TUwNVSP26XNVLR97BaKl!WKu1voT8rAde!kXwQ763U3*GygPA_/results,1 34560,http://www.ngfl-cymru.org.uk,1 34561,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZYujW7Qgs0af!!B8guwWqjPrUvcmAGxplj0ChtM3rMSPEOw8it5nKwXxlpX5QeYVlqYT6u1gCKEcwNbOi46YV8HuQZVt3ilftSSEew3A59B!dcgNCJzzc4wQxKehlGqslj5OYCBWtJDQNt*MCOD8ShriZtpFSBUnnKBCsDVs5hRcCKOYwFjM1hh4AdbhgNj*u70ZP3YHqlRR5LV52iAc98RJGf31nB8!JW2qAYw1Jw1J*c!OGfBbdoCQdLeIulelYnhBM1fMr!RPqUxh74tyltGC2qEtWoCO3KcdLQDf3ZY!Zv9GcSwSbbqado!3cpjPdIJRGtlkJ7pJLE10qheo9U0sDVUj9ulzVSyfewWqpclqrdb0Gdhx6ufSO47l87Ib8Bsah*CA__/results,1 34562,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZYsjXrogWa7P59D5BdgtVGfWpf4MAMjDPHqB6USegxIdknTEpoYUwvrkKahNSjGkahzB1QCdBXbzSQMIK1hnMN162Q7508w67d7LkrhbQEw03XNorLCxAacRvhBt0N0qkxUkyGK9cXKFhNSpho5SZ2fCEWtTWpA6XwlMJRJljusXwOyzyWzWHMY2wOO3js8MCoH57PRk*Og24HJdJQ2uoUDDjmKwr89MnynheP0gqFGJaCo!7myk3*LLhFS9hbwlsslbM6Ppyg4VJ2N9K3OHbPfyxpxWhW5KhEmW9XiqOGbujPHjN*oz!TCDbZjj0F279LYbxHKopotRTaIxUlvlYKlXukogaulvrxdVkjFb0Pq6XyZanS*haGc9fCZ18LrtqPRshvdn!CHA__/results,1 34563,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZYsjW7xS3QpJ*fAye7BKuN!tS!wIEZGWeOQTsal*FjxooPmJyyLmNtr7RTBva0Ufbz6ixAlMDaAruTFvDXQZ9h129eZSiV9gQn3dB3RuoLEDr1dYMT7DDqoCFYNRnepb1AIVpWw8SbMInjE*Oor1kbKRVSqkCZYCVi5RxWIFbMYQIxMYcdEDvcMY7D4934KXiw*WhUHktfnaKBwHwmkZ8*WOh58VHekBjDUnA8nNyE6Z8Ft2iJoiW6xVI9q4PhRI2QcjiRv6SxI*!!5I3gRVWSmhTYrpwmDd3Qnz1m*kZ*JhFssp16irZ*l6J0j1QS0WopskcqSXytFKn3SCUNXC3143ZZI5V8D6ulymWp2v8WxvPQw7VvlTT9W6f0N2FGfbw_/results,1 34564,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZYsjW7xS2HJv38HiC7BKuN!tS!wIEZGWeOQRiNzfgxY8UHTlaBzVjbK22VAdzURsHn1QJilOAakN5JQMLroM!46zav0pdKO4KVdug7I*UFCZ36uuEJMIzaiwhWTYZ3CRcsRMtqnHjjJ3F8Yg51NWsjpQqUylMmWBmwcg4rAlbMYSJgYg47BOxwx3gYHu*GT94D9KNReSxddYoGPPOZRH7!YAXPi4*yhsQYloLj*uTGT*8suEVLNFiiWyzVszohnKjhU*Yn8pc09sC*L3kjeFGVpCZFaFdOk4Zu6M8eM3!jP5MINtlOPUXbv0tRukcqiWi1FNkjlSS!VorUe6SSBq6W!nG7rJFKvofVUuWyVO1!C!N56PHaByVN*9Yp*Q1Ar34v/results,1 34565,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZSuiW7i1uhSfv3PUB2CVYb9al9gQMzMM4co6YfbEb3GSneYVJa8CsXyn5lpH2WWr0qC5AepPk4WwMMjGBt4FDHjZD6Rekj7LrNM*el1I5guVWiG7g!AaGTn1e4waheeylGqtFw4eYEBWtJDRNt*MT2D8ShriZtpFSBUnnKCCsDVk5hRcCKKYwFjE1hu4DtbhgNw*3Z6MF7MKIfZB5LVx2iAc98RJGf31nB8!xR2qAYw1xw1N*c!OmfBTdrCQdLeI2lelInhBM1fMr!RvqUxh74tyVtGC2qEtWoCO3KcdLQFf3ZYuZv9GcUwSrbqado!3cpjLdIJREtlkJbpJLEl0qheotU0sDFUj!!LkukkvdhsVQ5L1W730J*VAI!!0byQbx1Un8DKOaAgQ__/results,1 34566,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZSsjXrYgua7OfvAbJLsNqoT!0LHJiBceYYNb0eEnpMSPYNk5JD2yveJaRulRk1V0JCrcbru9TAUVqasRsMUDGCtYHTDTdCqo9WnWHXbnbclVJZwsCHVjRw0QUIjbx9wQ0GNJwmI8VkuHJzgYLVpISJVm5ixxdiUVuTOlAKTykcZYLlHsvnsMxj2RzGPMbmsIPHDg!M!uH5bPTkPBjRa5mG0lanYMAxX1Hgp0!W97x4lFYoxLAUHHU3V276Z8EtWsLeEt5iqZzV8eEEDZeyu5G!xbF7*mNJK0azIkclyny7Uhw1dEN*9pj5G*2ZRLDJduwp2P5dCuM9UlFEq6XQHqko8bVSqNwjFTVwtdSPr8saqeh9WC2VL0uV9rfQn1sBn30juRafjVR3GVKDvw__/results,1 34567,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZSsjXrYgua7OfvAbJLsNqoT!0LHJiBceYYNb0eEnpMSPYNk!JD2yveJaRulRm14kJCrcbru9TAUVqasRsMUDGCtYHTDTdCqo9WnWHXbnbclVJZwgA3ikZzdQFCI29fcIMBDafJSDEZrtxcoGA1KWGilZvY8YVY1NakDpTCUwpHmWC5x*I5LPNYNocxj7E57OCxwwOjfng!Gz05D0b0WqahtNUpGHDMVxT46ZPlPS8epRUKMSwFR93NlZv!WXCLlrC3hLdYKmd1fDhBw6XsbqRvceye*1jSitGsyFGJMt!uFEcN3dCfPWb!Rn8mEWyyHXsKtn!XwniPVBTRaim0RypKfK0UKvdIRQ1cLfXj67JGKnofVkvly1Kl*S3051bAZ99IrsVnI9Ud*6CDuw__/results,1 34568,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZSas26sBWbtH*fA2SXYLVRn9oXDjAD48wxavQwJvSYkOwditDXr4TU!hWGXrfPWp8BUYM0H*1ogIARrA2cabgRUr10qoVdu9lzN5XKEkY!dqIZuDoDoZGfV7jBdFo5JUaKyXDhBnQYq0kJhVausOMDsaidkzpQCk8pHGWC5R7L57DMY9kcxjzG5rCDxw43jPrh*mz05DwYoQeZhqmdnYIBx3xEgZ*eWd7z4lFaoRDDUnDU3Vy58s!CW7SEvSW8xVI5q!PDCRouZXcjfYpj9*zbklaMZkWOSpT5dqU4auiG*uwx8zf6M4lgk!3YU7D9uxTGe6SiiFZLoT1SUeJrpVC5Rypq4GqpH1!XNVLR!7BaKl!WKu1vQbedgM!!kXwQb41U3yoWf5E_/results,1 34569,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZQYsla2AJN!vnlkl2C1UZ9al*gwAyMM8eoUdoW!Fyg6sNNfOLMKi3oVKBe81EYy7XDpObmc7LGUSBwa!NODdQwLl!FHN2u35xoKLn0BEutYIOm8uoIA*!6uRuMUDJoEdTMhndqrq4gPWrdhLswkfMT8qivUZ8oTaQ0gTLD6ojVS1gVsWoJIxEjS9gpYqc7huPweDZ8CR4MU5qXqfTVJRkIzGeQ!OWDFT2vHsUdSDGsBYfDzV2Y*llwq5ZgtAT3WGoXdWI4SSOkHG7EL3nskX9f4o7gqqlBC6rYrhJmDd3RnyNm*kZ*ZhHssp17SrZ*l4LwiFQW0WYpcEQqS3yrFGiPSGUN3Cz14!uyRSp7HzZL1etSrf8tqFEw99k3nGr2NnD5DXDggQQ_/results,1 34570,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZQYs3uYgtssp*fA2SXYLVRn9oXODAD48wxakZtM3rMSPEFkxhJRlp5HYwZRmWgtlz30gKstDS3izXAwgjWBg523Aip3gfVw67bvHBfSuUIlttBdJqrMxA6ef!EG9y1Xo6RajJcuTlDwVpSw0QbP7HjC3Goq0kbKVWgVJ4ywcqAlXNYEbBiDmMBY3PYIWCHB0bD8Hw2evIejBi1zGPpqlM04JmvKPLzJyt4XjxKGxRjWAqO!psbP*2z4BYt4WAJb7FUz!qEcKKGT9nfSN*S2AP*saQNo0VVohoVoV05Thq6oT97zPyN*kwi2GQ79RRt*y6F8R6pJKLVUmiPVJL4WilU75FKGrha6sfXZY1U8j6sliqXpWr3Wxj7QcBn30iuxUcn1Tds6oF5/results,1 34571,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZQYs3u4hZo0v59D5BdgtVGfWpf4MAMjDPHqBm1zegxI8U7TFYqrsRXRlreaymvUllAlJbm42INEDCCtYEzHTdCqtdB9bDrNi*cl1I5guV2EJ3m6gyETn7e4AYzjMorMVJNhis3ZyhYS2qYaOMndnwiDnU1aSOlCpTKUyZYGbByDisCVsxhLGBsDjsE7HDHaBgez0ZP3oMRo5Z5LF11igY88xlFfv5gBc!LR2mDYgxLwVF*c!OnfxbcoiUcLOEtlupZnRBO1PAp!xvpSxp74N!XtGG0qEpUoyK0K8dJQzf0Z4!Zv9GfSQSbbKeeou3fpTDeI5VEtFoK7ZFKEl8rheo9UkkDV0v9!LqskUreh9VS5bJU7X4LYz8I!OwbybV466T6BtdmgCU_/results,1 34572,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZQYs1a3AJN!vk9QHYJVhv1qX2BAzMwzhyjZtI2o!eMFB8wyVEKq6cxI62W*WCs1IAoLc3naA0QMIK1gTMdN0Kq10H1sOs2R!5LqRzBcjuITnN1BUInv25wgxkm5ZUYqWbDOzdXKFhLapho4yd2fiIOdTVpI6UKlMpTZlgZsHIJKwJWLGEsYGwJOwXsdMdoGB7PRi*egxGTlnksXXWJBjzzGUV!*mAFz6tHaYNiDGvBUX9z46d*FtyqJRws4T2W6kWdEE7U8Cn7G!lLGnvg35e0YbSoSlSjIrQrx0lDd*TniJm*0Z9ZBLtsp56i7d!lMD4ilUS0WQodkUoS3yqF6iNSSQM3S*34umyRSt6HzVLlulTtfgtTPwj47BvJtXjrpPoGXPOAOg__/results,1 34573,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZQsjXrwlbcpJ*fA2SXYLVBn9oXODAj48wxaPQ4ZfSYkeITpl4JfZUZac39pi1C2kkOMCoNDDVKcx8mA0SMYG2A0XEjpHrv1Rl27ebAXSmVJUx86kU3cnUBQie*bnCC6bVyioxUs!HKzQUK1pIaJtq4iR1fiEVtTdpAqTylcpQZVnqsXMIKjxVLGPMYW8IOHjs8MOqH57vRk*NghB5lHkpbnYIBx3xFgZ8*Wd7z6qO0QSGGteCoO7lx0z8LbtUS9pbwFkv1oo4PJ2i4lN2J9C2O3fMfS9owWlQlqlHh25XjqKEb!rPHzN*ozyyCTbZjT8H271IY75GKIkqWQnukosRTpVC9RypqYLLUj9slRSr6HpKlynWp2v4W9LkXcO0byUfx0Un1DXRfgmY_/results,1 34574,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZQsjVa2Iqb7ucvcLJLsNqoT!2LHJiBceYYNHoYE3pMSPZlh07pb9PLMSG10FfR9nZdDdJc!9FYGCM7N3ZHw42Q6r1VZ7vqFnvuS6kcYeRjK5qBq84SGnm72BNMq5XXYaSYPD656WzBalLagVZ!YMcX4lBXkzpQCqAUnjLBcsDyOSwDLJvDGGBsDjsAdnhgFB7Pd6Mn78EIPcg0lK46BQOe!YoCP32ywPPiVlqhEMNScNSfXPnhnwW3aAmDJbzFUjmrA!EEDZ!yP5G!xbED*zGlFaNZkaMSZdCuFEcN3dCfPWb!Rn8mEWyyHXsKtn!XwniPVBTRaim0RypKfK0UKvdIRQ1cLfXjdlkjFX0Pq6XyZanS*Rb0uRX22jeSD!KjkeoOUz9*cQ__/results,1 34575,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZQ4pK1sBU2af!!XLpLsNqoT!0LHJiBceYY1Wo0GT5mqHi3E6faDFz05wy1TN2k!fwumBgsRY5c3wajLRMCu9b2cEc14*JVyN7uus2B!pJLRzDUCNaNVF4soeMfV3uDFkp6SYKqyfBG9cUWpEW1nXDjJ3J8Qg51NWojpQqUylMmWBmwcg4rAlbMYSRgZA47BOxwx3AYHs!GT96DZmrkeSxddYoGPPMZRH7!YAXPi0dxA2IMS8Fhf3Pjp38W3KIlGCzBLZbqWZ0QTtTwKfsb8Usae!Dfl7ghuKhKUIMitCuHSUM39GePmb*Rn0kEm2ynnqLt36Ug3COVRLRaCuyRShJfKwXqPVJJA1dL*fi6rJFK3ofVUuWyVO1!C6oXzH72NacjO3dcfgGFCYNZ/results,1 34576,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZauiW7xS6wSfv3PUB2CVYb9al9gQMzMM4co2bQNqP7jBQXmJ6FEq*SZqQV6nKV!gsqqQSgSgtzPVsDJIxgbeBcx00v1ItUR9h1m2fuS6EcwXIr!05zdQJCJz4*4AYjB!XVGKlGwzs3JyhYS2qYaOMntn8gDnU1aSOlCpTKU0ZYGbByCisCVkxhLGBsCtsFbHfDaBjuz0YP3oPpBy3yWLrqEA145iOK*PzOCp5nj9IGxRjmgqP!5sZP*yy4WUs4WMJrLNWTOiGcqOFT9jfSpzT2wL8tacNoUZWoRkVoV46Thq7ozxYzf6M*owhW2U49Rdu*S2G8RSqJaLEU2iKVJL5UCtVbpJIGLpb68XVZIpW8D4ulynmp2v0WhqPs4bNvBNf9WyfUN9oRgTo_/results,1 34577,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ZasiWrsAU2af!!XLJLsNqoT!0LHJiBceYY1VKZDB8zVHzYiY3XQX6NTDCTodYo*noTnA4WFYrp22C0JUFg19qe66jumXjj4mx33eZAfcmEIxhqeN8pKi6W0LHPq71Bcym8GkHVZBipvtiCtKi2E278RI5PyKGuRm2kVIFSecoEKwNWzmFFwIo5jASMzGGHgB3uGA7D49nwyXvQvVQsj6WrTtGAZz6DyM8frOB58ShuQIxhKTjsb2789M!CW7QEgyW4xVI9qxPCiRo!ZX8jfkljD*z7EjcEF1UJalCEduUwaeiG*uwx8zf6M4lgk!3UU7T9uxSEe6SSiFZLgT1SSeJrpUC9Rypp4GqpH1!XNVLJ!7BaqlyWqt1vQZ55bz*7mlHVv3dMfAN42oH0/results,1 34578,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4Yg2Zq12IIm7d8XONklWG3Up*YFDszAOHOMmkGPCT0nJPuwk5bt1HIlvhJSC96LqeejtJjS0kz9aCwFI7s29lTDjZCq7dTV7rrNnvtSKkcY!diJRnN1s4RGfr7bG0w3KK*FSDEb3ri52YLVpLQTrfzEzk*Eoa4mdaAUQCk8ZYblgOVLWAZYtoQxwNgSdgLsdMcoDI9noxfvwYhByzSUrroEA575jAI*fbDA8!pRWqEQw1pw1N9c!emfBbdqCYMlvMdSuagD4QQNn7K*kb7EsQP*vqQVo1mRoxJl0K4URw3d0Z8jZv5Gf2YR7LIdewq2f5fC!IhUFNFmKXREKkp8qxQqj0hFDdws9ePrskUqeh82S!XrUqX7LQzXTtjPvpFci9dGqm!*DIDo/results,1 34579,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ayZEvWggU3af!!XLJLsNqoT!0LHJiBceYYNUqPGT5mqPiwE6MDfRW9GL8y1A5aMc7PN80tKjU3t340lgSBXRt7rqOGcXkW8mJ33WZPfcmlI4x0FKzTVF4toeOfg73BCCW9GkHVZHin5moL0qLaTrjxEzk!IYe6GrWRUgVK5SkTrAxYOYcVASvmMBIwMocdAna4YzgMj2fDJ!*BMKV5HktXnaIBz3wGkZ8*WMHz4lHcgBjDUnDY39z46Z8Ft2gJBktwi6V6VieEEzV8yv5G*JLGHvj3JW4ILqoS1KAI7cph0tAN*dlj5m*0ZxLBJtupp2j7dykI90glEa2WAnukksTXSoF6j1TSwNVSP74ua6SS92G1VLksVbvfgroIZj*7hlPN3jouvwFyDYHL/results,1 34580,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4ayZEt2iy24TdOv7wGyS7DaqE*tCxyYgXHmGLW9GTK6z0jxDpNQg*qS2mak5ccPZSUUz9JIfgWCNtJeL4MFHkawtnC041ZIfVT6BLtu88J9KbUjDHxQojNcn4HQyc83uMGqXntBRqrR8MrtGQrWkhom2viJ7R!IQ11N2kipAqXylBFWBqycwoqAFVMYCxibwnYB290wGob7s9GD92BFb2QeS1cdogHPfESRn99ZwfPsUdqgGMNccNTf3PjpnwU3awkHS3iNpXpSJ4QTNXzK*kb6lMYe!LclbRgtqhLVqAjtynHS0BX92WLmb*RnFMEq26mnaPt3KYy3SCURLZZCW6SSxJdKoXqLVNLAxVI*vi5LpJL3YbFUOS9Vu99Cf1ICPvtWciNeOqm*AZWOgm0_/results,1 34581,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4awZNesxS3YpJ9f4GSXYLVBn9oXODAj48wxaEY9ZfSYkeLDTsOVZ6Q991qKyW4pLc3nMBmLYGTXxpI7boRU515d7K7bHLgvpXKEiU!96DRXN0vo5NfdnmD6UXkJRqrZ8M7NzRasJbWdaOMndnwhDnU1aQOlAkrlKTOsBKxcwgrAiiWMAcaWsANghwdGYXi!Gz15D0aMWuahdNUpGPDMVxT4!ZMFnlcfpQ0KMawFR*3JjZ*!WXCrljBYwlss1Ys6EE7Q8Cn7E!lbHDvwH0vaMFpUJapRAe3KcdTQDf3ZY!Zv9GcWwSbbsadg!3cpjPdIRRElS6E9UlHiqVKo3iMVNTBZ6sftkiIVfQ*JUuW6VO1!C!OlF*baN5Jrce2k!gbC730r/results,1 34582,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4awZGvWhS3YpJ*fA2SXYLVRn9oXOTAD48wxYrUZM3rMSPEBg71Lec5IK*hNGg7FoAUfe60sEJSR9nMYLfAwgrmFrR23Qqpzry6w6hYH7kupHGGEvaIzXF2B0MmvO5xg4TQvyEg1edy4vULBWlLDQBs*sOMLcairSRspVaBUnjLByoCVc1gRsGIOYwFjc9ghYIcHRsPj!W705D1YoY3MY!mqUzTgma8o8vMnK3he3EobFGNYCo76kxs**LPgFi3hYAlvsVTP6oRwooZP2Z9I39LYA*8xpQ2jRVWiGhWhXTlOGrqhP3vM*I3!TCLYZDv1FG3*LoXxHqkkotVSaI9UkvhaKVTvkUoauFrqx99ljVTyPayWKpelanct6Esv3AUjuRHvnVTfFxiCWg__/results,1 34583,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4awZEvW4hZs088vcLJLsNqoT!0LHDPDGWeOQTuYMaPHjBR25KFErn53!81wMRoleJ!R9mzUp9IXB2kj7Uc*WsfAnmpdg45bIfXZE!B8z0MpNfQdlegM11dH6OTXzXWwatBBlpFqsrxxe3UFa0ntNtqEjR2fiEd9TdpIqYBSBcoEKwEr57ACsGIOY4CxOewA2OGOUVge70ZPwYMVg5F5LH11igYC8xlFfv5ggefFo7RBMYal4Gjo3ITtnwW3aAmDJbzFUj2rA!FEjZBy6Ehf0tiBf3!kDaNFVaIaFTCuHCcD3TCfPWb!xnwmEWyynXqKtn!XwniPVBLRaim0RypJfK0UqvdIJQNcLfXjdlkjlXwPq6XKZana*xaGixLu2reSG*HaSf0NdFKEGg__/results,1 34584,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4awxJp1sQU32f59D5BdgtVGfWpf5MAMjDPHoBn0mNBjQrJPGORV6lYq8ZWQuh*4GZaVlubWjwZQjGBuYEPDjZDq3KkWVu1iz10plSWMfOxEo7m6AKGR9w84wXSDcjKMFJPHlZsLFKwmJQy0cgM7vhCL2prUgVJ4SuEoEyz3WD6HZR7L5jDmMTaHHTx2eGDUP57vRk*OgxGDlmkobXUKBhzzFQV!!mR5z4tbaYVCDEvBUXdy5YZ*FtyiJewt4S2WylkdH07QcCm7E!lbHLvnP6a0YjQrclSizLcrxVFDN*Rnj5m*0Z9JBJtsx56C7d!lMN4jFUW0WgrtkYoSXyuFyj1SUQNXS*24XdZIRd*Daql8Waq0v4Wh7QRc!0ZyLd4bqb4BjgZ!2g__/results,1 34585,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4awRMlucSs2bf!!B8guwWqjPrUvcGBGxplj0PTDmNBjQrI3mDrVdh*8KyG1uJ0lbOpBmvfraADDCNYG6A03Quqz0i3s2s0rd6XUljDyUYlm4PoChEZ!3uAEo3rtRBgpJsMrNxcoWE1KmGjlJnZ8Iha1NakDpfCUwlEmWO6xfA7LPJbNYcxjbA47eOxwx6gfHu9GT86DEf0g01Da6hQMOOYzCvz0wfKeFx!lFQoxLAVH3cmVm*5ZcIuWsLeEt1gqZ3V8OEHDpexOpC9x7J5*X9KK0azIUYky364URw3d0J89Zv5GfyYRbLIdewq2f5fCeI9UFNFqKbRHKkp8rRQq90hFDVwt9eN2WSMVfQ!rpfJlqdL!FvpWCbj2jeSD6BqpvwFLbn4I/results,1 34586,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw8arf7G4awRM1uYSs2bf!!wMkuwWqjPrUvcGBGxplj0OhhTOgxIdmbnTrddh*8KyG10GdpN9Ugzft1NBbDyK6NpTfcCKnOvWrtrtu8cl9K5QgjH3vRDFxdLKGRnzd7gum18iKMFJPhlZuLLVhNSjvRyk*s!EQc6mpSB0oBlMJTJlgOWD6HZYBlcxgDjM1hB8AOd4zC8Hg3evIejNCDTEPpqlMw4JnPKPDTBws8Lz5KKxRiWAqO!pMrP*2z4BYtYbCEt1gqZ3UgnKDhU*Yn0pc4duDfl7RiNCtyVKIM2pXiqKEb!rPHzN*ozySCTbZjT8H271IY75GKIlothfZIRYmvlULlHqmogaulftwua6Si72G1VL4sVbrfgm57Ya99I*kgukaqb2tJfg0_/results,1 34587,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw86tr9DUORbMmy2IrN7ueXS3YJVhv1qX2BgzMwzhyDuh*GBDcJyj7NxCQVV6HOCao7Qd8k70xFpexvVDFuSGrg!kuO2nAhMGtttrdUM646uw039qGkruTKEkY6CtYOVF0MoeX3D3OCFr1yogQVk!FK9cUUpEalmXDlJtK8IIvaGtWBUnhK4SgTLPdYPodlHsvmMOIxMocdPHZ4YNgPz3fDJ!dBs37gaShtdQoGHPMIAj99srznxa24AiGGpeCwO7ly0z8LbtES9JbgFkvlrI4PJ2i4lN2J!DWO3fMfS1wRnBU5KEHm25XCqKEb!rPHzN*ozySCTbZjT8H271IQ7pGKIlotBfZIRYmvlQLlHqmogaulftwua6Si72G1VL4sVdrfQn8WzFz7mtOBvbdcfQOfjoPT/results,1 34588,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw86tr9DUNZsjVrcQtu0s8vcLJLsNqoT!0LHJyBceYYNIMeE9okJPu001t*lwmpb1xfO3Wx1bkzwmJKS3PvR2MpGNm1sbtaboRUZ8ejjXvYc19K5QgjHzvRaq7cQa38utkTTDcor8VIMRk!uLnagtWktBOt*MSaF!JQV5M6UAqgFJ4ywXLA8jksAyybwxhgbA47AHZ4YBSG57vRk*dgxKBlGkpXnYIBzzyiwE!fLPC8uJVWKMSwFBz1J1d!!mfBLVrCYAlvsVTO6kA4QcOn7E!kr3HswH8sacVoVuSoRBm0K8VRQzf0Z4!Zv9GfSQSbbMeegu3fpTDeIxVFtFoK7ZGKEl8rhco9UlEDV0v9uF3WSEXfw2qpfFmqdL!F4dIJe!0bybV4b6X6BtjwgEs_/results,1 34589,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw86tr9DUMtsWYttMIm*fwCJ7sEq4361L7AgRkYZ45RrSaT0CYh2aedXm69MGaQfULqUXGp7b6chL6NRlsYI7vW9kTLdSfkqyPSxm2O3JdCOoLhZujaicurJbTi68PeoAclvQ4jxWx45*pqC1aT0k608hNrnohDXU3qQCmAUnjKDMsBy5ewDLBsCWOAsSXsBNjpjlEYHs9GL96D7tQk0lC66hIMeOYZBX76YIHn1aO0QiGGteCov7ny0z8LbtUSBkt4j6VyUQfCCRo!ZX8jfY5jB*59SStGsyJHJcqgXSmOGrqjP0fM*I3!zCLYZTv2FGz*LoXxEakoos1S6IhUlPhWKVQekYoauFnqx9dli1T0PmyWytelSvdbUP3Q2c!!Fnzq3lohvwHtiH9h/results,1 34590,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw86tr9DUMs2Zp1D1Zo0s8vl!wSrDbqU*sCB2ZgnDlGlZx0QpuEZB9m4qAFcM2HhNR8HGUP!i5AKwPDJNTnYEraYGTWyhxsueoEvPVwNbt2c!CuFGAJmuu!aycON0NoxddoblC9BCfHSDEb7lzdTMFqUpqJVm5izQuxqK1JHSiFpxSOMsNyj!VLWOaxbAljHmNL2MljpwdG*fB8NnpxHlQnJ5GG0laXYMAxzyjw0yfLe149SisUYlgLjrqbKzf9s!BWLWFvCe!xVC7q!HCChkvZ3Uhf49g9*7GkFaNZkaMSZb5dKY4auqM*R8z8jf7MIthlO*YUbP8uhfERqSiizVLoiFSU!FYpVB6Rihq4WerH12WLVPQ!bJbK16VK!1uQ174zn30l!NS9twK!Aeb!glU_/results,1 34591,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw86tr9DUMpsWYttuIm*fwCJ7sEqw361L7AgRkYZ45RPU5zQpuEZJ9merl1cu5Vl5B6GLnSZltNUt!GWRsUI7PW5kDLtZDq1RJpYzcH7kqpLGHmcy*aiaurIbTy68PcoPtRORlGisXwzvXVFKwmpZlo5SbWPBGL2prUnlIApXCUBZYDlq9hGWDZGsYAY2vYCbDTHaMwPJ6NXpwHLcZJpr601cUbcMwz8vz0wQLPm0dphXwMW8FRd3Plpn8W3KYlDJbwHkvlqg6E4zVcyu5G!hzGDvz7klaMZkWOSpRBu1IcNHRHf46Y!Rv9WUSwy3boydv!XQrjI1JBRNFS6IhUkHisFCqPSAUNjJb68XWJkQreh2ipfFuqtL!FseuF!exrySfx1kr1DQWkfu0_/results,1 34592,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw86m73NwylZEvWYgtu0s8vcLJLsNqoT!0LHJiBceYYtYMZM3rKSPHpJn6zo!G94jojba!EfNFCWgdqI!2tH63jYOTW1h3ruBVSvyp9cbt!s!ehlNoTRj4q0Rmur47Qya8Pd4NVgw5ijFST4Z3bqytYS2o30SZM7PREPOpr0kZKBZQqUCZYCVg5hxWAFXMYA4zNYQfADneMwvB4NnoOHqwYjMxj6atzNBCYRxT5!YMFnheP0gbFGJaCo!HmJkz*LLhFSxgs4S2W6lkdCCdqhJTDjfQ5jR349yVtGC2qEtWogHblOGnohv7sMfM3!jOJYJPt1FO0*bsUxnukkohWS6E9Uknia6VQvUcqaeBqqR9flzVSyfuwWqpclqr9b2G4KOE!!1ZyI946qb8BihOBVw__/results,1 34593,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw86m73NwyhxDVrwQJN!vnlkl2C1UZ9al*gwAyMM8eolspk!JKh4sNORk6yV3S6DYyOGWoN18ZCQnH9ORptGRDYtbaHOqoZF2!D6O2u2xypL7lwBEPNwDpFxd0SOv412Rv0IIWXIqiaDe9U321BWlTbCTd!IpcX5FBXozZSqkCpPGWGlQErl7AiYMUSRgJGlrBTwE4PDIfh!Wz46j1oJhXPY!mqazTgmWcQ!fmTFTyvHsUNiDGsBYf9zY2f*llwq5ZgsAT3WKoXdUI4UcOn7G*Er2nsgf9Y4obgoipBDYrQrhwmDd3RnyNm*kZ*ZhHssp16irZ*l4LwiFQS0WYpcEQqSXyrFKiPSCUN3Cz14!uyRSp5HzZLletStfstyH5g9rOvOVXs1nHxDSNBgKg_/results,1 34594,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw86m73NwyhdGvcYgs07ef3ANklWG3Up*ZFDszAOHMMmlHbjJ4yUrzDQNjwmZFWSG37515w248KIKWl!bhaAwyMYG5gU8eNkOqpVxdYdYtX7kvpNhgLW0WnuRqA0MmvNzjBuMOcFCPV5PHKzQAFa0kNA238wE4PxKGuJm2kVIFSecoEKwNWzmFFwIo5jAWMzWGHgB1uGA2P!7vRs*dgxKhlHktXnaMBzzyiyM*vrOB5cSttUIxhKTjqT2788M!CW7SEgyW8xVI9qxPCiRo!ZX8ifUxjD*zblDaMFlWJalSEduU4aeiG*uwx8zf6M4lgk!3UU7T9uxTGe6SSiFZLoT1SSeJrpVC9Rypp4GqpH7fLGqnke1gtVS5L1e63MF56Ade!kVyLl06qb!wegCg_/results,1 34595,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw86m73NwxxydasxS3QpJ*fA2SXYLVBn9oXODAj48wxqCdlMnrKSPEBk1H8IjLS3kduhIZNqYT!HI0GDCNYa6B3XPdCXgZ5hV27OXJXCmkJhpuh7xSXNyB04usOJ!hhkk6EkWo2vHN9g4K1pIaJNm5ipxdiUVuTNlAqT6kcZYaVHiuXsMJjxRLGPMaWsIPHDg!M!uH5bvTsPOh!UiIPpa3OwYBjHlHg50!W97z6KG1QiGEtOOpObtz0z4JbtYS9JbzFUr2o48MJGi5ldyJ9jWP3*MeSNowWVYlqVPh25Thq6Ib!7DHzN*ozi2CT7dhTsP27FMZ7pKKIkqXQHqko8VQpVO!RihqYLPXjdkmRir6HZKlyXaq2v4XpOvRw7WvBVf*WCfkNlfR!FA__/results,1 34596,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmphwWbw86l5!w1BLrFmLrbjJfn4PnOwSrDbqU*siB2ZgnDkGTT!MET9FLPmC4fXWqDFiZddLDUt6UObWjQYQSmBugFxJUyv91uoGVu1iJ12p7AYzyrGtq0HqKxAqdf!EE0zbaychWDZ5fEhzhUKULIeBF24QpxdmUVuz0lMypGSOMsFSxNI5LEEsmcMEYmIOOyB2eGAcH8934xfnwdT9oGJf2uriDTjmkXh!*GSh58WtvCA!hqXguDu5cMM*C27REkVLdIulfFYHw*EaLmV3Ij!HsSP*MeWF4EmWkpwk2K6YBg3d0J89Zv5GfyYRbLIdevK2f5eidI9UENFqKbJHKkh8rRTJ90gFDVwt9eN2WSMVfA!rpdJlqdz!FvqmreHaN0oO9Xul9DcwM308/results,1 34597,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmmzCZfHyqN3ubxhCiTVrsRWbbf!!B052CVYb9al9gQMzMM4co7YfxoSfEpa!w2T0NWGVbLRRX1B08moBMYO2H91ogUAJrC2cqaVV2jy3poFdt9lJX2rjCKMcW1UP0lyAUOvPN7jBtr3xSoLlk!FV2gsUomIFTLz0kzg9MIe6mlWBkiMl95QJliGWzWEpYukcJhATc9gRseMN4zjcn42fvQer!kEfQumqczDgmY8k8A93FnpePMpLEmJYCo77m0s**bPgFi1RtES3WCpmdTCcoOFT9jfypzh25N!WvBQ8zTNSkBTbdaBRQzf0Z4!Zv9GfSQSbbMeegu3fpSjdIxVFtFqK7JGKEl8rRYo9UlEDV0v9!LqskYreh9VS2bJU4X4LfdMq!OxbLQf1UmvzDQruf4w_/results,1 34598,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmmzCZfHyqGv3Nwxx6ZasRQu26ef3ANklWG3Up*YFDs7AOHMMml6PCa0Tkr7DxIdBdlJdE1K99BrGi5afwhadbIUyAnhKC*PRjQboGMHawAkNNwBf7E5a24cdd6VQljDyUbaN5uoGhEZ8DXCCkb1yuozkk!GNmxsUrCIFTLR0E6ufiEVtTapAyT0ld5QJlnksm8NSj6VzGPMYm8OOHjveMeqHx7vRs*Ng2l6LQyhtdQ4GHPOEAv*wYHnPi1tpiUIMS8FRd3Lppn8W3KIl7C3hLZaKWR0fTtBwKbsT6XMcu!ffl7RkNM0zVKDUt!uAo4Zu6M8eM3!jP5MINtmOPQXbv0thvEcqimi1FNojFSW!VgoVe6SiBq6W!nG7rJGKvofVUtmyVGF*C*1VtnDtG8F1!9oI9Q1rxoS3/results,1 34599,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAU*BpfmmwCnMXLo9bubxhq6ZbsLm6BNv38cskuwWqjPrUvcHAGxpljUA*KZNBmJH!301WJT2Z4RhrFpRHyaKtnLsWrMNpSpOL642xLaDGya203d0z3XL44LrTu4Zn5kktHMMyIvlNMniyh419Xe4IWg*SSlJSj4cL0yRa0IZWdoPYTbR!IQ11NmkgpA6X0lBFWBKyYwvKA5VMYDRidwvYB298wCMP93eDgPeh!UHwXS1cdogHPfESRv7uzgufZrVCjGMNccOBPrv30z4KbtYSDJbzGUjWpE8KJGj5lfyI8pbEH*m0JNYW8LFCF8tCuHU4auqI*W8z8jf6MIlhlO*UUbf8uhfEWqSSixVJoi1SS!FIpVG2RShq4WOrH7bJEKvkeFksV81KV!y0MR9Hba19zpvq3jstvit!DWg__/results,1 34600,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAQ*Zp9aWLCZfHyqN3ubxhCiTW62IIm7d93gOwSrDbqU*vCDJ7DHM!MQTPo8UQvJ5J!QFB8bAfF!xOpxKR1K6Z!usGmk1!wmpE3EiIGttLSTP1o4BBGsDdQp!ZGSPXaqgae2oc9d6lUljBCbVFrrjog1PLzHSoYUHPqjOSz5cZNBwmrSAGBli6wyxOxqM1JFSi5p!SOMsMyj2VLWOqxdAljHmNL2Nlj5ztG*fJ4N3p1HowYtExCarNrMOCYzyjwkwfLe149SksU2rDWOOoqly78s8atWsLeEt5jqVjU8c0JGq7LriJ9idvu!fctLRlN8wwVKPXjSnA00B3zOWLmb8xn1oJdtmNPwfbvUhgfkYpatFkKHZGKOr5VChVHpKIBbpb6cbtskYq!h81S2bpUYX8LQ9MKuPaN5Fq81VJ9A9r5hnU_/results,1 34601,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAQ*Zp9aWICsnh51Nr9DUNcsiVrwYK9*X0HyC7BaqM!tS*M4BnmeM4YNEqPB9Ic0uwVwqDFOxv5Ia21YmcIA9NXIS!QKQnLF!979QFJLyQ3cEhqbt760cBZjGBvoF3LTMfl2R4jjX3YM5dyaQtGNoqu1Uzavi3*HKCDEdDdvgRNi8nywswVElqnJQRSuUCbh9SiNk*rUFL4ksKVTLDcY*kclnksm8Oox!gcdvTY8YYRv9zfjZycBtMpzZOQ2uwUBLjKRxTqk3uV17x4lFQo2LBkHHGdKxf!mXGLkrCXhLdIKmd5vDmBw7nsOpKn2HZff9uSipKsyFGJMj!uBEcD3TCfPWL!xnwmFmySHWsKsn!nwngPVWTRaiq0hypyfC0VKvdQRQNcTfXjdllDFX0Pq6nyZarS*hbURXRw7RvOdPfccvkNYciJAA__/results,1 34602,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAQ*RpfmpigrLdHd!3!hiEsdcm60ALb9PM7QFaD1UZ9al!YwXOYw5kxqqUyEW6iNP!AoCS5ROnRKPLGKSSEGrt2itNHbx6K9LC9SyMVxE925bRnGs4KxTQQNJRIEOw1VG2JpkxcuOjgqX3YE5cyYQmGGE5bRcQNCC37eocKmkvh7pKl5WS5E32DJDumFQRcu5A1L6lFbQ7XGiilp5SOMsEKjxVzWO6xfA7LPJbNYQePHZ4Y9stwN3x2HjSVisVjarPzaMAxT2jkxwPLe148ims0tmGpcdhVrl34Z41btJR4S8kWS9Wsjm*OqOG67Cri17Dtnv*c4jrDeVmgCuV!XHESDHTDfPaY!RvzmbRgk!3Q02j7d6kk2SMVtGi1FNojFXR8rRSq9kgFA1wt9ePrskYqeB9WSxXLUpX9LcgO*jW40Ywoem2Z!AaJ5YvJ/results,1 34603,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAQ*RpfmpiArLdHt3Z*w1CXbskqbMFt!vkdICvBaqM!tQ8yo!fA4cwY0FINEamjJPuAcFb8k4tLlBxvTPV80JC9SQVjx6gSDhokDIbJIFJ4ei44hNc70DOhmL53MJPUGMG7BoGG6paJs5lOavOxozZlwhAGOvC2UVRcgdCwrxusoLkUdltpUkyGnuorJOkxKSGQyoa0fkoManLY0EgpHKWwlAmWOyyfwzKHZXNY6rB0Djs47PDAiBvGvZGT9aBbqVjsU5OdvAHLfEaeH48s53lxKqmQL8NS4YhdubLhnxVu0RJ2lvAWS!WsjiuO17BVtiuSl7Dsjv94JVVKsiJHJcpcu2IcNHRDf*aY!Rv9mZRgk!3Qk7f9uxTGe6SCEq2WQnukgoqvlULlHqmggaulfpwua6SC*2G1VL4sVZprQV54C8e!hsumfW!Y!AYPF46N/results,1 34604,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAQ*RpfmpiALF4etdv9DUMttWZ3sWVo0s*vANklWG3Up*bFGTiHOZ4ZgzBqk7BjkuUfGIwWCl6lTrLmeRQGg5b9ALhthlEhSWkJnxcDyKUE14DHWwGdVC!D6nHXbl6ES6U9AAaPdi3WPSOhlV*vWAFsMSvKs3LyuAo4Y8KbrMLAahf48SGzqM2zJlBKTykdZYIVHivmsNxj!RzGPcbnsIPHDjeM!cf93djJeYBu1DINqc1OwYBjPpLAT!8s73nxKKtJaMNS45irXLvwzxq3aIl6S3SLpWpWxzcnaLguu4rsKW6759!WrOYsLwtSkdyPK6XRQDfMZ4!ZvzGfSQs22Y49Bdu*S1G6Rypq0Wopskcq6vhaKVLtkYoGuFrqx!2yRir6HlZLFctSlf0tjP3Q4bUPUujurZXqGy5GhDo_/results,1 34605,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAQ*RpfmpiALF4e3W73NwxliZpdoRWbtn*fAeoSrDbqU*vCjJ5hDueMQa36ISKnKEn1wGyKIH!F2Kj3KDl2TH5CGNpOaIi8YbIWkDwrdW1lbd5d2MBgj!yFfrsNGrZi00ND54ppLuQFCr8b35hNhXSEQ8urnknTqRIfL9BBt0ra89Aknywd01dI6DEpIJDSBnp6SAxqcnPasSR3JbktmWCZw7I5LHVYOodRh9E57OCww4gRt9zPRs5Wg!aqF7FPTXb2AmzlI*L18b3KaV7cSkrkbVgyjtjOpQ3*zLhFSdhJwlskFbM8zhzPYV22HclTaLurHx9JSUmaZ6hAqRtXjIOBbpjPHjF*Yz4TCzbJDjV52b9TYbyHKrBoNRXaQxU4vpYKFXuoggGupvpxu6yhCr6H1VTZMlVhfguqbjlc!1qwnjeVkF!AuYvn/results,1 34606,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAQ*RpfmphwWVAftXZ*wxBLtmZdtGCTfn6B6S7BaqM!tS*M4BnmeM4YNIOeElonhJtJ!BTZ*N1GLcdetPIm1WQSUo3cAUpL89HbB7TGbm*s8UaYVqrXTl2!T*fCp1JB16lrGy3U1RY08nO0HUw3KE*KSD5bbsJcbcIqUthASx9Y*UQc6nJShZIcSnJfMsMywLIljAPGlzAGGFvCToCd7hiF5fFu9Ow1mHbQMg2py85BgK98RqE!fVSB5tWjtETBhjXjqO9c!vDPjFuVhEES3iOpWOQBcwKHd9l3pC!x7VB*39KSUZ5nqEAcxpXiaKA75nNEzN!Yz8yCXbJjTUH271QYH6GKLNpMhY5QRY5vpULFEapogJupftwuW6ii72EzVbZOVbjfwnDpWnvtGyl0!9ZI9QV4v4Lb/results,1 34607,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAQ*RpfmpggLF4etdv9DUMo3TVrwYJN27*vANklWG3Up*aFGTyHOZ4Zg0bpMSHHBOdvEC7qI8HNqGBhw9B*QXxRGlbOJO8FGzslDXClFua9Hw0cyRDsDVRpmeFCPnfyDE*tw565VEhLGOEsbzWTVyC04nOACgaqOW2Ky8nyyswVEtrgCgKpXaDHB2xRm!MmUEpPKR1lghUeK!aw3GP5HEY9Ruewg8cON4z45f5u5OQ8GK60SENqs1Mw4JiPKPDTO8t7XjxKahTasNQ44irXLvyzxi1ayrylbIulalbHNydouC67iuQpbrvn37akpiQvC1Sh3I8rzaKBbpjPHjN*Yz6TFmyyHXsKtn!XyrI9UlGLVkuhPVJRx9dKoWqPVDTA1VI*bpc1UtH3sFqqWJaq7G9BnTsO174RTPNLK!Q3vneF2A__/results,1 34608,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtuhCAQ*RpfmpgAs3h51Nr9DUMt3ZrdYgs27ed3gOwSrDbqU*vCDJ5hjueMQTPoMYEmYdk7hs9Bn3t1Slg9KFwepZLP*WgQVVqajwum0FCCe4PnWmE6qZ7sAWjsw4twqVS2YBRj37VaKNuxlV9v2MH02NeycVZMlldhzpjwmpUYoHKBN3fMojZndSgpfEnhSiZY7rF8Dss8ls1h3GN8Djt47HDFwC!3d4Oj02C6Qcs0pDY7BgGu8p6E!vRW5TUvHoWKBBuWjAPXuXLhnxm3KIl6SXSLpHKWx5sTOJzLriM8xLb7!usWKg5ZkZOSZH5cKY0GumE!e8T8jflMLNgkO9YUZP9ORekeqsii1VRkD1Xk!FoqUu6higa4murH7bKGKvoeVlPly1Sl*S0Mp77Da99IobuXVqpvC3WBQg__/results,1 34609,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtOhDAU*BpeTEh62XJ5ZF33N0jFuiJYtMXEz7c9J7tNEQzwpC89bWfaYeYQsIMZE35KWPbhyrPsu9Z0CRPsLPv!dXi0DtFG2c9!tI5AiVtbd6aWtlH6qdUXt!s3ewlTpT1hlGPb1EbqzhFq9fXubrDtoEFJsGIyvEnrNcWRla7wCoo43TGP!jk7BkqBlAIoEyxHLJ*DMsSyOUwgJuawA2KHK8ZxuD0bP4MH2wxGpWEKGQYDwLwngZ*eWOh58SivSIhhKTgON1dQ*llwi5YoWqJbLJWzOhhO0ICU4Ub!EMeO*OuSV4JnRU5KkmG7Uho1dEN*9pj5G*2ZRLDJduwp2P5ditI9UlFEq6XIHqko8bVSpNwjFTVwtdSPr8saqeh9WC2VL0uV*rcwXNrGffatkqZ5qZX!BvaUf7E_/results,1 34610,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdtOhDAQ*Zp9MSHpZcvlEVz5DVKxrshu0RYTP98yI9sUwQBP!tJOe6ZzOGdIazvTH*jpwGLbSwgpcYt3F7x2j1apVhm31kbZj0tvR9y6Y5W0tdJPjT673WHzIiFUGqv1TV0ZqVuXUKnPN1fBNp0GMsHSyXCVtnWBKFjmJp7DJE53bECHmBU!JcWUFFImWIJYMofFiMVzmEBMzGFHxI4jxnG4fRsvQYOtO6MiHw5R6QVA5j3x!dEtCzUvHuU58TYsGcehcg7TPzNuURJFSXSLpGyWB83xHOAyVOQPoe2YPy55LnicJiQjMbYrokFDN*Rnj5i*0Z!JBZtkh5q87N!pKN1DFVi0morsoQocX0tFsj1UQQNXU*24XdZQBf*DaqpkmSobnoXu3NTu2rdKmvqlgufBqOdGq!!3oBjYWcm*AHSghpg_/results,1 34611,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFuhCAQ*BpfmpignKiP2uv9hiG4vTNnsQXb9PO7QO8IVhv1qX2BMbPuMLNG9KDGiB6jlOmRW0gQv!GuO3nuQUdprUAMqkXQjbjAR9eCFIDweVC4jsDFBRAxqUC*96PGtxPTRmPzhmsBssVm3717biFIpzl2olFcXrGggc9X7KC7QdojZWkxWV64viLI6rTEjVZ2y44PqWENTmtfUriSwpZMuNxx!RzHHMfmuMxx2Rx3cNzhxlG33M9GT9aDxjAh9tCgkzdgKx!Jr4*vVc7z4qu0Ij6GpeCo7VzZ7Z8Ft2gpcZaSLZbKWR0XjtewKduO9CmM3dXfHmmVUVbkpCTMjStOgoFumM8eM39jPpMINtkOPXnbv0slyR6pIKLVUmSPVJD4WilS7pEKBrha6sffZY1U8D2slsqXpUpzLQznTphrB7gSlwbkF3ekjR0_/results,1 34612,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFuhCAQ*BpfmpggnKiP2uv9hqGWnuYstELT9u!7srkjWG3UpzYxsDgj48waNHqwETtGlL*B1OqPiFZwWQ3Do8RFK0Vv2y!ohIVBP*ddAxBXgzTvvTXwYEJgbWCvWphGqqdOneHueLMXrpRqJFhhu6YehLoAoZafr7CD6bRyb5DSfDK8CHOBIq1oARMr3ZQe7!iIjjWtPCVHSu4oEyxDLJvDOGJ8DksRS!ewA2KHK8ZwuL0bOzkPptGDjH05VidvwDHviefHNxZ6XnyUlcTHsBQcczuXbvpnwS1aStBSssVSMauD4XgNl7LbkT2EsSP*umRlyniekYJwbFecBA3d0J89Zv5GfyYRbLIdevK2f5dKkj1SQUSrpcgeqSDxtVKk2CMVNHC11I*TZY1U8D2slsqWpYrxt6DPXQPHvpFiaNpaqm!O1IY*/results,1 34613,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFuhCAQ*BpfmpggHKiP2uv9hiGWXM1dsQc27ecXdnsSrDbqU*sCqzPuMLNGbW!GhB0TKuwgoSSuvrn9Q3aD6a1KaB1KYW8J5awiEUFoo!z7dbDubuaft65rI22r9HOnz99NrxJKpVFs6NrGSH1xhEZ9vrkOtus1nIXTYrK8SntxBa9pCfqw8eMD9aivaR0oBVIKoEywHLF8DhOIiTmMI8bnsANihzvGcBnPxk7gwba9UWkofXUKBoD5SAI*HVnoefFRP44xhqXgGHSuYPtnwS1aytBStsVSOauD4QQNSBk6sqc4duTfL1nFmShyUhKB40qzaKAb5rPHzN!YzySCTbZjT8H271JZtkcqimi1FNkjFSW!VoqUe6SiAa6W!vF1WSMVvQ!rpfJlqdL*Fvpz17rPvlXStC!N0l!Q9IqJ&C.sa=eJwLCPL0dQyKjA8MdQ2KVDV2KU*MLCnKL05VNTILdnX293NBSBqZGjsaICkBACdxEog_/results,1 34614,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKSqPdm1*wzBHOleLHdikn78LNy3B6aI!bS9w4Rw5nnMN2s70G7bfpNkXTJ*dW610b9S1vVnY00bZW9tbgCiBtQV2JS1w3ht9gl232UpfKu0IveybujJSn4FQqfsVTrBNp70GT4vBcJH2DAXfpQImVvqJ719Sh7o63QVKgZTCUwZYjlg!hmWIZWMYR4yPYVvEtg!M4fB8N3b0HmzdGZWE0lXHYMAzX0ngJ08Wep58lJUkxDAVHPMnl376Z8FNWqJoiS6xJEZ1MJyg4VP2J7JDHDvyH0tWcpYVOREkw3YlNGrogv6sMfM3!jOIYJHt2FOw*bsUpWukoohmS5E1UlHic6WIWCMVNXC21I*bZY5U9D3MlsqnpYT7LXSnpoZr3ypp6o9K6W993H5i/results,1 34615,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKSqPdl1*wxBHOtMOOmHJPn8XblqC0wV92l7kwjlwPOcatGZ0O3bcldUHDE46ZwxM9Kjs59VZWKME5hZonbS90q!DPsOqX7zKUCrtCbB16LtR6gsQOvV1gxPsYHQ4nJfN5PEu7QUKfigFDKwNAz8!lR71dXmIlAYpTaBMsBqxeg6rEKvmMI4Yn8P2iO3vGMPH493YKXiwvRlVEUtfnaKBwHwmkV88WOh5cStrSYxhKTgWTm7D8M!CW7RE0RJdY0nM6mA4USOkHE5kL2nsyL9PWctZ1dREkArbVdCkoSv6s8XM3!jPJIJVtlNP0fbvUpRukUoiypYiW6SSxHOliNgilTQwW!rH7ZIjlXwP2VL1spTwvwVzHnq49q2SY**WKf0N*nN7fQ__/results,1 34616,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKSqPdl1*wxBHOtMOO3DJPn!Xe9MSnC7q0*YiF86B4znXoO*dsBPHXV58wGD7oWsNTKwz*vM6eFjjDOYeaI32rbGvnT3Dali8aiyNDYRBw9bGaXsBQmO!bnCC73qLh8u8Gj3etb9AIQ!5gkHUOMjjUx7QUOeHSKmIUiFlhJWElVNYQVgxhUnC5BS2J2x*xwQ9Hu8mTujBt70zWSxDdYoGkPnMIj97sMjz7FZRsxjDXHACT65x!GfBzVriZImvsaQmdSicqIEp44niJY2d!PepqKUoqpIpVlC7Mp40dEV*tpj5G*0ZRbDKduop2v5divMtUklEi6XYFqkk8aVSTG2RShq4WOrH7bJEKvkeFkuV81Iq*Bb6c9fCte!Ndu1bY!w3YIJ7ZA__/results,1 34617,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKSqPdl1*wxBGnGmHG9ik!*tduGkJThf1aXuBC!fI8Zxr0PV22LHjLi8!YfqwujXSqC9YG6vd9TI42KYE1g6YjXRKm9fOtLDrNy8ylNp4wiCHTjVWmjMQGn2D05zrehPO53k1Gt6lO0PBD7mAidVh4sen3KO!zg!RUiGlCpQRViJWTmEFYsUUxhHjU9gesf0dYzg83o2dggenequzWPrqFA0E5jOJ*OzBQs!zj7KaxBjmgmPh5DpM*yy4WUsULdE1lsSkDoYTNULK4UT2ksaO*PuS1ZwVVUkEKbBdGU0auqI*W8z8jf6MIlhlO*UUbf8uRekWqSSixVJki1SS!FIpIrZIJQ1cLPXjdlkilXwPi6XKeSnhfwt92ym49p2WVr012nwDenJ8qQ__/results,1 34618,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKSiPtq6*YYglnWmHnbhkn78LNy3B6YI!bS9w4Rw5nnMN2n4Yd6ze5eIDprO!97YbLSzNoO3nDUpWUwJrC8RG2Vabc2cusOs2b8qX2jjCqMaubQZlrkBo9NcdTrBdb*zxPC8nw7uyVyj4IZcwscpPvH7JHerq*BAoJVJKT5lgBWLFHCYQE3MYR4zPYXvE9g!M4fB8N3byHmzbDzoLpatOwYBnHkngZ08Wel58lFUkxLAUHPMnV376Z8EtWqJoia6xJGd1MJyg4VP2J7LXOHbkP5as4kyUBZFEYLsyGjV0RX!2mPkb*ZlEsMp27CnY*l2K0i1SUUTJUmSLVJR4qhSRW6SiBiZL*bhdUqSi7yFZqliWku630F!6Fq59q9XQvjXafAMtxXxN/results,1 34619,http://www.nhseac.co.uk,1 34620,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKSiPtl1*wxBGOlOHndhkn78LNy3B6aI!bS9w4Rw5nnMNuq4fduy0y8UnTO39phzUtjfu3g4OtiiBtQNWrZw29q2xF9j1m60KpbGeMKih0XWv7BUItfm6wQmu6Ww4m!flaPhQ7goFP!QSJlaFiZ9eco*6Oj9ESomUMlBGWIFYMYUJxMQUxhHjU9gesf0DYzg8342dgwenu95ksfTVORoIzCOJ*OzJQs!zj7KKxBjmgmPh5CpM*yy4WUsULdE1luSkDoYTNULK4UT2msaO*MeSVZyJsiCSCGxXRpOGrujPFjN*oz!jCFbZTj1F279LUbpFKolosRTZIpUkvlSKyC1SSQMXS*24XZZIJd*DYqliXkr630J3aTRc!86oXr*Xxn4DDtV7Bw__/results,1 34621,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKSiPdm2TvexlH2AII51phxvYZJ8*4KYlOF3Qp!0FLpwjx3OuQdubYUP2m5J9uunp!QUz5BbaKHu9DNbtYb!2jtYKK5V!7fTJ7frNiwil0p4wiKGTrRH67Ait!vpwJ9iu1!FwWtaj4V3YsyvoruRuIk2Y6P6h9Kivy12k1ECpA2WEVYBVUxgDjE1hFDA6hW0B294wAsP93cgxeLCyN6qIpa!O0UBgPqLIL!4s8Dz7KGlQjGEuOBJObsL0z4KbtYTBEl5iiU*qQDhRI6QcTiSHNHbg35akoYTVFeKIQbsKnDR0QX*WmPkb*RlFsMh26ina*l0K4zVSSUTZUmiNVJJ4rhTia6SSBmZL*bhdcqSS7yFbqpqX4v630J866a59q4SRb63S3waaemM_/results,1 34622,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKSiPdl1*wxBHOtMON3DZPn8XblqC0wV92l7gwjlyPOcadIMdd!y4K8U7TJ9q1BZqY7X7uI4OtiiBtQNWq1ynzXNvzrDrN68qlNp4wqjGvmutMhcgtPrrDU5w*WDC2bysJ8Orchco!KGUMLEmTPz4UHrU1!UhUmqk1IEywSrEqjlMICbmMI4Yn8P2iO1vGMPh*m7sFDy4brC6iKWvTtFAYD6SyC*uLPS8!ChrSIxhKTgWTm7C9M!CW7RE0RJdY0nO6mA4USOkHE5kT2nsyL8tWcOZqCsiicB2FTRp6Ir!bDHzN*oziWCV7dRTtP27FKVbpJKIsqXIFqkk8VwpIrdIJQ3Mlvpxu!RIJd9DtlS1LCX9b2E49x1c!04r27202nwDAi97BQ__/results,1 34623,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKSiPdl1*wxBGOtION3DJsq8fcNMSnC7o0*YCF86R4znXiBvsuCPHXc3e*eT0l*Klscp9XEfndzDya!dJvXBSmWdtzn43bF5FLJUJhFGMWvZWmIsn9OrzzZ*g9GDi0bRuJ8OrcBdf0EPN*US6ONHjQx3QUNeHRGmB0kbKBGsAa!YwBhibwyhgdA7bA7a*YQSG!7uRU*Tg5GBVlcpQnZKByHxEiV*dWeB58VHSoRTDUnAkntzF6Z8Ft2gJgyW8xhKf1YFwkkZMOZ5InvLYgX9bko4S1jaIIwbtqnDW0BX92WLmb*RnEsEq27mnZPt3KYy3SGURFUuhLVJZ4qVSiG!RyhpYLPXj71IilX0PxVLNshQP18Jw1jJcJUpY!dIr8w1rdHqd/results,1 34624,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKaiPtl1*wxBGOlPFTmyy*f0u3LQEp4v6tL3AhXPkeM41aLt!2LHTLhUfMN2Nbm9N99VqM8CW6bW9N4MFhBJYWyBX0ipt3mpzgV232UhfauMIgxxqVfXSXIFQ6c8bnGDrzngJnuajoZX2CgU*pAVMrPQTP72kDnV1egiUHCm5p4ywDLFsChOIiSmMI8ansD1i!wfGcHi!Gzt7D1Z1vU5C6apzMOCZRxL4yZOFnmcfZSUJMcwFx*zJpZ*!WXCzlihaomssFZM6GE7Q8Cn7E9lrHDvyH0tWcibyjBREYLsSGjV0RX!2mPkb*RlFsMp27CnY*l2K0i1SUUSLpcgWqSjxpVKk2CIVNXCx1I*bZYlU9D0slsrmpQr3W!gutYJr32rZq*dKm29pkX4P/results,1 34625,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKaiPdm2flyV7NsSRzrTFDVyyz9!Fm5bgdEGfthe4cI4cz7kGbW!GDdtvcvEB0!Hl6ZnWsNBG2c*LYGGPElhboDXStkq*dvoEu27zIn2ptCMMcujaxkh9BkKjvt7hBNv12h*O83I0XKU9Q8F3eQUTq*3E9w!5Q12d7wKlRErpKSOsQKyYwgRiYgrjiPEpbIvY9oYxHO7vxo7eg217o7JQuuoYDHjmIwn87M5Cz7OPspqEGOaCY*7k2k**LLhZSxQt0SWWqkkdDCdo!JT9iewQx47825LVnImyIBUR2K6MRg1d0J81Zv5Gf0YRLLIdewq2f5eidI1UFFGyFFkjFSWeKkWqNVJRA5OlftwuKVLR95AsVcxLVe630J!6Fq59q6Rp3xqlvwEjInqQ/results,1 34626,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKaiPdl1*wxBLOlOLHbBkn78LNy3B6aI!bS9w4Rw5nnMN2sG4HTvucvEB07mzN6ldrwxsaKPsZ!8s7FMCawvURtpW6XOnL7DrN3sZSqU9wUnXtY2R!gqERn3d4QTbDToI8LwcDTdpr1DwQ17BxOow8eNL7lFf54dIKZFSBsoIKxArpjCBmJjCOGJ8Ctsjtn9gDIfnu7FT8GDbwagslr46RQOB!UoiP3uy0PPso6wmMYa54Fg4uQ7TPwtu1hJFS3SNpWpSB8OJGiHlcCJ7S2NH*mPJas5EWZCKCGxXRpOGrujPFjN*oz!jCFbZTj1F279LUbpFKolosRTZIpUkvlSKVFukkgYulvpxuyyRSr6HxVLFvFTlfwvDpWvh2rdKmva9UfobLGZ9FQ__/results,1 34627,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKaiPdl1*wxBKOtMOO3BNP38XblqC00V92l7gwjlyPOcadJ3tN2y*ycUnTMf21lmnYWWsdl!X3sEmJbB2wGukU9ocW3OCXb95kaHUxhN62beqsdKcgdDo!xVOcG1nwuk8LwfDh3RnKPgur2BidZj4*iX3qK*zXaSUSCkDZYAViBVjmEBMjGEcMT6GbRHbPjCGw*Pd2CF4cKqzOoulrw7RQGC!ksjPniz0PPkoq0mMYSo4Fk6uw*TPgpu0RNESXWKpGtXBcKJGSDmcyN7S2JH*WLKaM1EWpCIC25XRpKEL!rPGzN*ozyCCRhttp://www.direct.gov.uk/en/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/Gettingadivorce/DG_193733,1 34628,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKaiPdl1*wxBKOtMOO3BNP38XblqC00V92l7gwjlyPOcadJ3tN2y*ycUnTMf21lmnYWWsdl!X3sEmJbB2wGukU9ocW3OCXb95kaHUxhN62beqsdKcgdDo!xVOcG1nwuk8LwfDh3RnKPgur2BidZj4*iX3qK*zXaSUSCkDZYAViBVjmEBMjGEcMT6GbRHbPjCGw*Pd2CF4cKqzOoulrw7RQGC!ksjPniz0PPkoq0mMYSo4Fk6uw*TPgpu0RNESXWKpGtXBcKJGSDmcyN7S2JH*WLKaM1EWpCIC25XRpKEL!rPGzN*ozyCCR,1 34629,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKaiPdl1*wxBKOlOLndhk*fteuGkJThf1aXuBC!fI8Zxr0LZdv2H7TSq!YLoZfbk27V0fYcN02t6a3sI!JbC2QK2kVdoca3OCXbfZSF9q4wi97GtVddKcgVDp7yucYOvWeAGe5oPhIu0ZCr5LC5hY6Se!f0sd6up0Fyg5UnJPGWAZYtkYJhATYxhHjI9hW8S2T4zh8Ho3dvAerGo7nYTSVYdgwDPfSeAnLxZ6nnyUlSTEMBUc8yeXfvpnwU1aomiJLrFUjOpgOEHDp!xPZB9x7Mh*LlnJmcgzUhCB7Upo1NAF*Vlj5m*0ZxDBItuxp2D7dylK10hFEc2WImukosTnSpFijVTUwNlSP26XOVLR9zBbKpuWKtxvoT3VCq59q2WnPittHovSfSQ_/results,1 34630,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKaiPdl1*wxBHOlOHHbCkn98LNy3B6aI!bS9w4Rw5nnMN2sG4HTvucvEFk1Ha9VBro!x37yxsUQJrC6xG2lbp906fYddv9jKUSnuCk65rGyP1BQiNul3hBNsNOpzN83I0fEp7gYIf8gomVoeJH19yj*o6P0RKiZQyUEZYgVgxhQnExBTGEeNT2B6x*QNjODzfjZ2CB9sORmWx9NUpGgjMVxL52ZOFnmcfZTWJMcwFx8LJdZj!WXCzlihaomssVZM6GE7UCCmHE9lbGjvyH0tWcybKglREYLsymjR0RX!2mPkb*RlFsMp26ina*l2K0i1SSUSLpcgWqSTxpVKk2iKVNHCx1I*bZYlU8j0slirmpSr*WxjOXQvXvlXStB!N0ncOzHsH/results,1 34631,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKaiPdl1*wxBHnGkHHbikn98LNy3B6aI!bS9w4Rw5nnMNOmOHHTvucvEFU6e0snIwFtbaKvd9GRxsUwJrB8xGulbp9153sOs3LzKUSnvCIIe!bazUZyA06naFE1xvdDif5!Vo!JTuDAU*5BVMrA4TP77kHvV1foiUEilloIywArFiChOIiSmMI8ansD1i!wfGcHi!GzsFD641VmWx9NUpGgjMVxL52ZOFnmcfZTWJMcwFx8LJdZj!WXCzlihaomssVZM6GE7UCCmHE9lbGjvyH0tWcybKglREYLsymjR0RX!2mPkb*RlFsMp26ina*l2K0i1SSUSLpcgWqSTxpVKk2iKVNHCx1I*bZYlU8j0slirmpSr*WzBd38K175S07Uej9B16I3yp/results,1 34632,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKaiPdl1*wxBHnGkHHbikn1!4Ny3B6aI!bS9w4Rw4nnONOmOHHTvucuEGCSUlxK!!fNVZ4yttlfu!DA6gwPMnGulapd973fndsHmRUCqNFw1921ipz57QqNvV3!B6o0GH5!Vo!JTu7At!yCs*sRomfnzJAxrq*BApJVJKoIywArFiChOIiSmMI8ansD1i!wfGcHg!GzuBB9caq7JYhuoUDQDzlUR!9mSh59mjrCYxhrngGNxcw*TPgpu1RNESXWOpmtTBcKIGpAw3src0duQ*lqzmTJQFqYjAdmU0aeiK*mwx8zf6M4pgle3UU7T9uxSlW6SSiBZLkS1SSeJLpUi1RSpp4GKpH1!XJVLJ!7BYqpiXqsJvwXR96z*7TknbfjRK3wGg034S/results,1 34633,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKaiPdl1*wxBGWtMOO3BJ!*e7cNMSnC7q0*YCF86R4znXoOtsv2H7TS4!YepP2nZ3WBir3deld7BHCawd0BrplDbvrTnCrt!8yFBq4wm97FvVWGnOQGj07QonuLYz4XCel4PhQ7ozFHyXVzCxOkx8*5J71Nf5LlJKpJSBMsAKxIoxTCAmxjCOGB*DtohtHxjD4flu7BA8ONVZncXSV4doIDBfSeRnTxZ6nnyU1STGMBUcCyfXYfpnwU1aomiJLrFUjepgOFEjpBxOZG9p7Mh*LFnNmSgLUhGB7cpo0tAF*Vlj5m*0ZxDBItupp2j7dylK10glEc2WImukksTnSpFqjVTSwNlSP26XOVLJ9zBbqpiWqvxvoTu2Cq59p6VVp0abb*5ee30_/results,1 34634,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKaiPdl1*wxBGOtMOO3DJPn8XblqC0wV92l7gwjlyPOcadIMdd!y4K8UHTEpara2DlbHafV5HB5uUwNoBr5NOafPamzPs!s2rDKU2njDKsVedleYChE5*3eAE1w8mnM7LejK8S3eBgh*KBibWhokfn0qP!ro8REqNlDpQJliFWDWHCcTEHMYR43PYHrH9HWM4PN6NnYIHpwari1j66hQNBOYzifziwULPi4!ylsQYloJj4eQ2TP8suEVLFC3RNZaaWR0MJ2qElMOJ7CWNHfn3JWs5E3VFGiKwXQVNGrqiP1vM*I3!TCJYZTv1FG3*LkXpFqkkomwpskUqSTxXijRbpJIGZkv9uF1ypJLvIVuqWpZq*G9hOPcKrn2npVVvnTbf1!l7xw__/results,1 34635,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*Zq!LDEBKaiPdl1*wxBGOtMOO3DJPn8XblqC0wV92l7gwjlyPOcadIMdd!y4K8UHTDernbL9bewH42DPwPrzOjqAKIG1A3YnndLmtTdn2PWbVxlKbTxhlGOvOivNBQid*vInOjgtaPCyngzv0l2g4IeygYm1YeLHp9Kjvi4PkVIjpQ6UCVYhVs1hAjExh3HE!By2R2x*xxgOj3djp!DBqcHqIpa!OkUDgflMIr94sNDz4qOsJTGGpeBYOLkN0z8LbtESRUt0jaVmVgfDiRoh5XAie0ljR*59yVrORF2RhghsV0GThq7ozxYzf6M*kwhW2U49Rdu*S1G6RSqJKFuKbJFKEs!VIs0WqaSB2VI*bpccqeR7yJaqlqUa*1sYzr2Ca99padVbp803A41!dw__/results,1 34636,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*RpflpiAVNRHXdffMIyxjrTFDWjSz98F0hKcLurT9gIXzoHjOdeoGbTNyD4r6BdMWiibFR0frorLM1SW3WB8FUq!S0Co0sJcz9YAFyNYGzjeM8OFepPqCLtu88x8KZQjWGYl7zVTJyD04vYJNxg5KC9aFvVouDBzgqLsigYm0vqp3D8VDnV10UVKHSi1p4ywKmDVFEYDRqewMmDlFLYL2O6OkTA8no0cvAfDBy3yWLrqEA145jOK*PzBCp5nj5IWxRjmgiP!5tZP*yy4WUs4WMJrLDWTOiGcqOFT9jeSlzT2wL8vSVsSWleoQTS0K8dJQ1f0Z4uZv9GfUQSrbKeeou3fpTDeIpVEtFgKbZFKEl8qhZotUkkDF0v9!LoskUreh8VS1bxU434Lw1Fy!OwbwTT*6IX6BpUBg4E_/results,1 34637,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*RpflpiAVNRHbdffMISS1mjBiUu6v98F0hKcLurT9gJXz!Eez7lGtRrGiJyihH7AJu59p76EiJJKPHqlxQWqUcHCbw1vhYSqVw9gy0Hoz27UcAgjuNbQp2aaC3lp5BXumpsds6U5RvXIxobXA5MtEGpoDx10o6RVT5N8styZbqFIq6SAjZR2S09viUFNnVSekjtKbikTLHNYNodRh9E5LHVYOocdHHZ4YsQtr2cjZ!tBczWI2JemOnsDlnlEnh!*WM7z4lFSIh*DUnDEdi7t9s!CW7SEnSW8xVIxq!PC8Ro2ZduRvIexO*7zkpQpoXmGCkTduGIcDHTDfPaY!RvzmUSwyXboydv!XQrjPVJBRKul0B6pIPG1UqjYIxUMcLXUj6*LGqngfVgtlS1LFea3oK4Nh8!!Fmzgt1rIbzZ6hq0_/results,1 34638,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVdFugyAU*RpflpggFNBHW9ffMMQRa2qxA5dsf78LpCU4XdSn7QUunMs9nHMNmkGPCakSzMwoXMgRLN4hkLd7P3xJmWCKuUnwsZet6GHWXXsZYYMpLc1HDyGpMnvKQLFamEaqt061sGs3e!FCqTzH2DW1FuoKCbX8vEMF0w3KXYHifDLchLlCQI!4gImUbqLVC7aojfExpOQ!JXcpE4x7jM9hzGNsDqMeo3PYwWOHB0b88LwbOTsNphm0TENoo3MQ4DJPKOSnzyyvefEoKVGwYck44iqXbvpnxi1KyrykbIukYpbHmxM4nMuuInmNbff5jyUpKWE5RwVivl1pFjV0Q3*2iPkb*ZlYsEl2rCnI*p0qy*ZQRRatpkJ7qCLH11KhYg9V1MDVVD9elzVU0fewmoovUxX2tzC0XQPPvpFCN5daqm!oDYcw/results,1 34639,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfZreLLEBKf5c2nV9DcMocaQOO9Blj78PSEtwuqhX2w0fcA4cz*mMmk73O3LapdkHlNvw2kreDExfJFP7pvvcD1fAlBZmaHsDFIxgbeBUzQwX6iJVA7t2s2VuKpQl9KyXvNZMXYFQi68b3GBkp5wWTYvR8M4M6FB6TEsopHKFnp5Si9p5egyUwlMKRxlhucfyKSzzWDaFUY*RKezgscMdI354PBs5Ow!Gd1okYWpn52DAMZ9R4CcPlvc8e5RUKMQwFxxxN1eu*LPgZi1hbwmvsVRO6vhwgoZL2d1IXuLYPf!!JBUlWZGjEmW!XQmOGrqiP1vM*I3!jCJYZTv2FGz*LoXxFqkoosVSaItUlPhSKVRukYoauFjqx9dliVT0PiyWyuelSvtb6BrJ4bNvBNP8rRbqG6SFgTQ_/results,1 34640,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfZreLDHhR1AvbTtfwzDHOlKLG7Bke*vx05bgdFGvthv55Bw4nvMZ0IMyO3zcIaoN8yWw9bsdL4NhT6IX5stOSMX1R2!0nYeOoO2ylumOy2chT9dVPfMll2E3I7pWMXm2hJZ*vtkdtBikFyOoHD0uTJ9tQfaosgOu*UCOD8ihrkb7SCkDpfSUEVYErJjCaMDoFEYCRqawPGD5DcPhcf823HgPuhsUz2LpqiYa8MwDiPzszgqeZ5fiGsQY5oLDfufaD*8suFlLMFiCayxVkzohnKjhU*Y74sc09sC*veKaYFoWoAI0tCuDSUNX9GeLmb*Rn1EEq2ynnqLt36Ug3CKVRLRYCmyRShJfKgWqLVJJAxdL*Thdlkgl*8NiqWJeqnLXwnASnT32NWeqe2399aD4i5D8ehfsnTpqIKb5NyFXh4Y_/results,1 34641,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfZreLDHhpyhc2nV9DUMY6Uw77MAle*wBX1qC0wW92m7gg3PkeM5n0A123NHjjtQffkIcIV8aq93ndXR!B4e186ROOqXNa2*Ogec3rzKW2gTCKMdedVaaiyd0!uvmT3D9YOLRjPDJ8C7dxRfsQISfaBsndnwiAQ01OSQKBwqPlAnWANbMYTVg9RzGAGNz2B6w*R2jMDzejZ6iB6cGq6tUhuqUDETmM0r86sECz4uP0halGJaCo*HkNk7*LLhFSxgs4TWWxKwOhJM0YsrxRPqSxw78!5K2jNa8QQLV0K4KZw1d0Z8tZv5GfyYRrLKde0q2f5fCeItUFlGxFNoilSVeKoXEFqmsgcVSP26XEqnseyiWapalRPgtDOde!WvfaWnVW6fNN2rCeao_/results,1 34642,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfZreLDHhpyBc2nZ9hN0a4khn2mEnNunjD*jSEpwu6NV2Ax!cI8dzPoO264cNPWwI*3LT215I5GrTa3u7DNZtYb!2jlUr22jz3pqT2*WbFxVKbTxhUEPb1L0yZ0eo9f3qTrBtZ8LZjIjR8Kns2RVsR6SbaBUmdnghHvU12UWKAIoIlBFWAlZOYRwwPoUxwNgUtgVs!8AoDM93o8fgwTZdr4tY!uoYDQTmHkV!8WSB59lHaYViDHPB0XByFaZ*FtysJQyW8BJLclIHwokaIeVwIn1NYwf!Y0krRrkokUQc2lXgpKEL!rPGzN*ozyiCRbZTT9H271IYr5FKIsqWQmukksRzpZBcI5U0MFvqx!2SI5V8D9lS5byU9L!F7tQ27tq3WvXNR63NN0Caehw_/results,1 34643,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfZreLDHhp6Be6rq!hmGMtKYVN7DJ9vYDvrQEp4t6td3IB!fA8ZzPoO3NsKOHHeEfbnhtTdfq01l0O1LL*qaHLygciXBtlL1dB!uIGLm5dXsbYaXSb26TW*WLVxFKpT1hEEMrGyP0xREa9fnuTrBtr4MiI8Xo0Ql7cQWrSekGWoWBHZ6IR31N6kgpgFIEygjLAcunMA4Yn8IYYGwK2wO2v2MUHo93o8fgwcreqCyWvjpGA4H5jCI*e7DA8!xWWqEYw1xwNJxcheGfBTdrCYMlvMZSOakD4USNkHI4kb6ksQP*PqUVo7zIUYk4tCvDSUNX9GeLmb*Rn1EEq2ynnqLt36Uw3iKVRLRYCm2RShJfKoXKLVJJAxdL*bhdlkgl38NiqXxeqvS*hf7USnftWyWMPDdKfwNMB4MB/results,1 34644,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfZreLDHhp6Bc2nV9DUMY6Uw77MAle*wBX1qC0wW92m7gg3PkeM5nxA123NHjjvAPP7kbRb40VrvP6!j8Dg5r50mddEqb196c*W7YvMpYahMIoxx71VlpLp7Q6a!bP8H1g4lHM9JMhnfpLr5gByL8RNs4seMTCWioySFRGqA0kTLBasDqOYwDxucwBhibw*aA7e8YheHxbvQUPTg1WF2lMlSnZCAyn1HiVw8WeF58lLYoxbAUHI0nt3H6Z8EtWsJgCa!xJGZ1IJykEVOOJ9KXPHbg35e0ZZQ3NRKIQ7sqnDV0RX!2mPkb*ZlEsMp27inZ*l0K4y1SWUTFUmiLVJZ4qRQSW6SyBhZL*fi7lEhl30OxVL0sJcK1MJx7Fa4SLa1667T5BogJeig_/results,1 34645,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfZreLDHhp*hzqev6GoZQ0ppa6MAl29vvA9ISnC7q1XYDH5wDx3M!o1abYUcPO5K*w9Rrwfsdae6mu3HzBZUVF637E!DKSPvRDxZoGMHawsmWWyHVqVNn2HWbPfelVI4w8KETreHqCoRWft7hBttp5fUYKUfDjdsrFKwhFUy09hM7vBCHupo0kVIGSukpI6wIWDGF5QHLpzAWMDaF7QO2f2A0DM9no0fvwQptZBZLVx2jAc98RZGfPVnB8!xRWqMYw1xw1N9c!!mfBTdrCQdLeI2lalInhBM1fMr!RvqWxh74jyWtGc3LAlUoD!3KcNLQFf3ZYuZv9GcUwSrbqado!3cpjLdIJREtlkJbpJLEl0qhaotU0sDFUj!!LkukkvdhsVQxL1W534I!dwI!!1ZyIy6tVN8y5YIP/results,1 34646,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfZreLDHhp*hzqe36GoYw4kxb7IAue*wBX1qC00W92m7gg3PgeM5n1Aza7uhxR*IPN3Wa3!Rnr!SONFoKfbdXqawDlZbmfrHGcTBya!OOtdwIqd561bldv3nhoZTKEyy3vWg1V2dHaOXXzd1g!kEFMUbK0XDl5uwK1pDKTbQOEzu!EI*6mjSRUgKlDJQRVgBWTGE5YPkUxgBjU9gesP0DozA8n42eggcjBi2zWPrqFA0E5gFFfvZkgefZo7RGMYa54Gi4uQ7TPwtu1hIGS3iNpWpSB8KJGiHlcCN9TWMH*mNJa0bzskAVyqFdGU4auqI*W8z8jf6MIlhlO*UUbf8uhfEWqSSixVJoi1SS!FIpVG2RShq4WOrH12WJVPI!LJYq5qUq*1sYul64z76RXIv3VqpvrCGBhQ__/results,1 34647,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfZreLDHhp*hzqe36GoYw1pFa6MAte*x9QlqC00W92m7gg3PgeM5n1Bnb7!hxR*J3mG7WfCqnDNfdjjSdclILCdWrsVegaCvdR9c7YGIEaweHW!6E1C9Kn2F32Oy4L6UeCD3vlWgt1xcgtPLrBjfA*dpLMlKOhit3FyhYQyqYaO0ndnwiAzrUpImUMlBKTxlhRcCKKSwPWD6FsYCxKWwfsP0do2F4PBs9eQ9OGCuzWA7VKRrwzAOK*OzBCp5nj9IaxRjmgqP!5tpP*yy4WUs4WMJrLFWTOiGcqOFT9jfS5zT2wL8vac1oXhaoQnloV4aThq7ozxYzf6M*owhW2U49Rdu*S2G8RSqJaLEU2iKVJL5UClVbpJIGLpb68XVZIpW8D4ulinmpavgtmLMS8Nl3klvx1kr9Db1Dg2E_/results,1 34648,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfZreLDHhp*hzqe18DUMYa0kdbuCWPv7woy3B6aJebTfw6TlwPOczYDvT7!hxR1LbcyiRqz*c*CXPSrRyR6qeX907baT9bHvrIDxwrFvZcCukflH6dFvYciil9hv2SjSG64sjNPL67nawqtOgx0g!Gt64vbiCVaRwEy1hYscnMqBDTapAyT0lB8oIyzyWTWGpx9IpjHmMTWF7j!3vGPXD49toDR6s6IxMQjlUdTAAzAMK*OTB8p5nl9IShRjmgqOwcwnTPwtu1hL2lvAaS8Wkjg8naEDKsCN9jmP3*PsjLRlN8wwVKPXtSnDU0BX92WLmb*RnFMEq27GnYPt3KYy3SEURLZZCW6SixJdKoWKLVNTAxVI*TpclUtH*sFgqm5cqhmuhOynhjn0ruRHnBq4HI1!Vlre7oBrUSZ1T8g0kPIfd/results,1 34649,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU1QudV1fwxBHWtMOOrDZ9vb7gLQEp4t6td3wAefI8ZzPoNVmyOg!I8U7lC99G04ZaT60OcOWMtLeLoMFBCNYWyC3wnZSvfbqCLtu8yL8VCpHGMTQd60R6gyEVn5e4QTba!UlGKlGw5uwoMNYQzgUWvvC9k*EoW5OmkipAqXylBFWBqycwoqAFVMYCxibwnYB290xGobHu9GD92A7bWQep252iAY88xlFfv5gBc!zj9IaxRjmgqP!5NqXfxbcrCUcLOE1lvikTggnaviU*Yn0JY098O9LWjNaVCXiqAjtynHS0BX92WLmb*RnFMEq26mnaPt3KYy3SCURLZZCW6SSxJdKIb5FKmngYqkft8sSqeR7WCxVzktx91vQx76Da99KYbpTK9U3poJ9dw__/results,1 34650,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU1AvdV1fwxDKOtMON6FJH78fkJbgdFGvthv54Bw4nvMZNP1gM7rPCP!GQRl7PQptM9K8d1poqaCSvbZCwhrXgzLXizXAxAjmBja3wkilj50!wapbvAhfKu0IVthOtoPQZyC06vYFJ5iu116SkXL0!BTmDAVrSAUDrf3A9i*Eoa4mTaSUgVJ6yggrAlZMYTxgfApjAWNT2C5guwdGw!P5bvTgPRjZDyqPpasO0YBnvqLIz5!s4Hl2K61RjGEuOOpPrv3wz4KbtYSDJbzGUjWpE8KJGj5lfyJ9S2MP*MeU1ozyskAV4qFdOU4auqI*W8z8jf6MIlhlO*UUbf8uhfEWqSSixVJoi1SS!FIpVG2RShq4WOrH7bJEKvkeFksV81KV!y30p07CtW!UGORHq*QdzSGDPA__/results,1 34651,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU1AvdV1fwxBKOtMOOrHZ9vYDvrQEp4t6td3AB!fI8ZzPiDX9kNF9Rvi7m!xHp49GZ6SR5qaHLygcg3DdK3u7DNaxMHJr6x5shZVKHzt9crt!8yJCqbQnDGLoZNsLfXaEVn1e3Qm2c6d7OUbK0fAm7NkVrCGVm2gdJrZ*Ih71NWkipQRKGSgjrACsmMI4YHwKY4CxKWwH2O6OURge70YPwYOVpld5LH11iAYC8xlFfv5ggefZR2mNYgxzwdFwch2mfxbcrCUMlvAaS9WkDoQTNULK4UT6ksYO*PuS1ozyskAV4tCuHCcNXdGfLWb!Rn9GEayynXqKtn!XwniLVBLRYim0RSpJfKkUqrZIJQ1cLPXj77JEKvkeFksV81KVvxbMqZP!elGil6!t0t8hgoHl/results,1 34652,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU1AvdV1fwxAlnanFDlyzxx*wpSU4XdSr7UY!OAeO53wGzaDHhB4Twj*s0Mr70N9lm5DqJnTfiatUo51xpaX57EdjORjZubHbamEaqdpOne2qW!yFL6VyhFGMXVNroS6WUMuvmz3BdIPyYozkk8dVmIstWEUKO9DSD!z4QhzqalIFSg6U3FMmWAZYNodxwPgcxgBjc9gBsMMDo*B4vhs9eQ!mGbRMQ!mqUzDgma8o8NMnCzwvbqUlCjEsBUf9yaUf*llwi5YwWMJbLBWzOhBO0PAp!xPpWxw78B9TWjLK8wwViEO7Uhw1dEN*9pj5G*2ZRLDJduwp2P5dCuM9UlFEq6XQHqko8bVSqNgjFTVwtdSP22WNVPQ9rJbKlqUK91sYzl1jr30jhW7ea6m!AeELgWU_/results,1 34653,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU1Avda6vYRglzrTDTWzSxy*wpSU4XdSr7QY!OAeO53xGTT!MCa0Twr*t9H49tWrsdJuQqhfa7upBmetlNBbEyK6N5TfCSKVPjkZrt3kRvlTugBnF2MlmEPpsCY26fdkbTNdrr8JIPhk!hTnbglWksBMt*cTqF!JQV5MqUHKg5J4ywTLAsjmMA8bnMAYYm8MOgB0eGIXh!Wz06D0Y2Q8qDaWrjsGAZ76iwE!fLPC8eJSWKMSwFBz1N5d!!mfBLVrCYAlvsVTM6kA4QcOn7G!kb3HswH8sackozzNUIA7tSnHU0A392WPmb*RnEsEm27GnYPt3KYz3SEURrZZCe6SixNdKoWKPVNTA1VI*vi5rpKL3YbVUtixVuN9C33bSfvaNEoP8aJS!A*M7fnI_/results,1 34654,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU1Avda6vYRglnanDTWzSxy*wpSU4XdSr7QY!OAeO53xGTT!MCa0Twr*t9H49qbHV54RUXS!0sdt6UObajcaiGNm1sQcaYaTSJ0ektdvshC!VdoRRjK1sBqEvltCo25e9wbS99jKM5JPhU5iLLVhFCjvR0k!sfiEOdTWpAiUHSu4pEywDLJvDOGB8DmOAsTnsANjhgVEYns9Gj96Dkf2g0lC66hgMeOYrCvz0yQLPi0dpiUIMS8FRf3Ppp38W3KIlDJbwFkvFrA6EEzR8yv5G!hbHDvzHkpaM8jxDBeLQrhRHDd3Qnz1m*kZ*JhFssh17CrZ*l8J4j1QU0WoptEcqSnytFCr2SEUNXC314!uyRip6H1ZLZctShfst9OdW2s!!UWKQH43Sd*J7fuo_/results,1 34655,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU1Avda6vYRglnanDTWzSxy*wpSU4XdSr7QY!OAeO53xGTT!MCa0Twr*t9H49qbHV54RUXS!03dWDMtduNBbEyK6N5TfCSKVPjkdrt9kJXyp3wIxibGUzCH2xhEbdvuwNpu21V2EknwyfwlxswSpS2ImWfmL1C3Goq0kVKDlQck!ZYBlg2RzGAeNzGAOMzWEHwA4PjMLwfDZ69B6M7AeVhtJVx2DAM19R4KdPFnhePEpLFGJYCo76m0s**bPgFi1hsIS3WCpmdSCcoOFT9jfStzh24D!WtGSU5xkqEId2pThq6Ib!7DHzN*oziWCT7dhTsP27FMZ7pKKIVkuhPVJR4mulULFHKmrgaqkfX5c1UtH7sFoqW5Yq3G!hP7fSfvaNEoP8aJS!AxJmfnc_/results,1 34656,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU1Avda6vYQglHanDDlzTxx8*aQlOF*Vqu4EPz4HjOZ8RM!gxw22G6KedzDj0QmWoOWl5k!psq14aLhQXlqG0MF*9aCwRArs2dm*HHHxyXNy6hz3zpTuFmpGNkneaqYsldOJ!tScYOSivSFA5GT6YudiCNKiyE679RNoX5FBXoyZSykApPWWCFQEr5jAaMDqHkYCROewQsMMDw2F4vhs!eg!GD1rksXTVMRrwzFcQ!fmTFTwvbsU1iDEsBYf9ybWf*llwi5ZgsAS3WKpmdUI4UcOn7E*Eb2nsgf9Y4ppgWhagAjS0K4dJQzf0Z4!Zv9GfSQSbbKeeou3fpSDcI5VEtFoK7JFKEl8rBao9UkkDV0v9!LuskUq!h9VSxbJU5a6F4Sy5u2EE0*y9E!obheiC4g__/results,1 34657,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU1Avbbu!hiGMdaYtbOCSPf7gIy3B6aJebTfywTlwPOcz6IwdCnosCP*wgzTaKT0UZK*0q7FS3WDGtVXu8zo4T8HIz53f1QknlX7p9dmvhsWrgFLpQBjE0MvOCn3xhE59vfsTXG80aDFSjx434S6!YHvS!IG2MLDjEwloqMk!UepIqYEywqqIVVMYjxifwljE2BS2i9jujtH4eLwbPYEHJ41VZSpDdUoGgHlAiV8!WNHz7FbaohTDXHAUTm5h!GfBzVrC0RJeY6mZ1InhJA1IGU6kz3nskX!f0pZRXleoQTy2q8RZQ1f0Z4uZv9GfUQSrbOeeku3fpTDeIpVFtFgKbZHKEl8qhZotUlkDF0v9uF2WSGXfw2Kpal6qCb8Fc!6lv*adEla!dUp*A5wrgQs_/results,1 34658,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU*y51Lq!hiGOdKYtdGCb7e33AWkJThf1aruRD86B4zmfQaP0kNAmIdkHDIO4XBXXXwmpxV3IwUAh1dB3AghSC3M7wxptMIK5ga0tN52Qb708wqpdPHNXCmkJA4etrebyBIRWfF7hBNMr6QQZKUaPCzcnKFhNShho5QbWvBCL2prUgVJ4SuEoIyz3WD6FZR7LpjDmMTaF7Ty2e2DUP57vRg*Og!mUFmkobXUIBhxzjwI*fbK859mttEIhhrngqDu5csM*C27WEvaW8BpL5aSODydouJTdifQ1jt3zH1NaMZoVOSpR5tuV4qihK*qzxczf6M8oglW2Y0*B9u9SGG!RiiJaLIW2SEWJL5VC5RapqIGLpX7cLkukou9hsVQ!L1Xa34I69h1c!0Zw3b23Qn4DwMiCnA__/results,1 34659,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU*y51Lm!hiGUtaYtbGKz7e33AWkJThf1aruBD86B4zmfUaP7IaFNQrJ3mD5OOiG14MqOsh!61y!oDlrcrlINBliql!Z2gZI2GMHawPmWGyHVoVNH2LWbF!5KqSxh4EMn2p6rMxBa!fkGN5hOK6fKSDEartycoWA1KWGilZtY80QsamtSB0rhKYWjjLDcY*kUlnksm8KYx9gUtvPY7o5RPzyeje6dByN0L9NQ2mofDDjmMwr89MHynmeP0gqFGOaCo!7myk3*LLhZS9hbwmsslZM6Ppyg4VJ2N9KXOHbPvy9pxWhW5KhEmW9XiqOGrujPFjN*oz!jCFbZjj0F279LYbxFKoposRTaIhUlvlQKlVukogYulvrxdVkiFb0Pi6XyeanS*hb0sRPw2TeS9!LUSvUNeqiD9Q__/results,1 34660,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU*y51HZ9DUMZ6Uw72MBme*x9QFqC00W92m7gg3PgeM5n1GozZPSQkeIDphMXl4y0g4bhUxtXn7S6WYCVkfZ2HSywMIK1hYMdt0Kql16dYddtXrkvpXKEgQ!96AxXFyB08usdbrC9Vl6OkWo0vHELeoy1pIaJNn5ihyfiUFeTNlKqQKk8ZYSVASunsCJgxRTGAsamsF3AdneMhuHxbPToPVihjcxj6apjNOCZexT5!YMVPM8epQ2KMcwFR*3NjZ*!WXCzlnCwhNdYqid1QjhRw6fsb6TPaeyBf1*ShtGiKlGNitCuHCcNXdGfLWb!Rn9GEayynXqKtn!XwniLVBLRYim0RSpJfKkUqrdIJQ1cLPXj67JEKnkfFkuV81K1!y3ocy*gs28lN!K1k!obsgmBCw__/results,1 34661,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU*y51HV9DUMo6Uw77IA1ffx9QFqC00W92m7gg3PgeM5n1AzaZnSfkeITJsF1RlouRH!UykIphL0BprQ0XxdrgIIRrA2c6rgRUh17dYJdt3nhvpTKESy3veg0V2cgdPJ!hRtMPyivxUg1Gj64OUPBWlLDRBs*sf0LcairSRspVaBUnjLCyoCVU1gRsGIKYwFjU9guYLsHRsPwfDZ68B6MGLTMY!mqQzTgma8o8vMnK3iePUobFGOYC476mxs**bPgZi3hYAmvsVRP6oRwooZP2d9I39LYA*!xpA2jRVWiGhWhXTlOGrqiP1vM*I3!jCJYZTv1FG3*LoXxFqkkosVSaItUkvhSKVRvkUoauFjqx9dliVTyPiyWKuelavdbGE69gM!!kVyL906qb0sogDU_/results,1 34662,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU*y51HV9DUMcaU072MCmffwBX1qC0wW92m74gHPkeM5n0Cg9ZnSfkeLLFsxO6qpNRtqb0me7KbUw18toHIbs2lh6x00v5Psgj3bXbV64nwrpCCMfh77TXJ4toRP3T3uCGZT0IoxUk!GDG6vDWEtqW2jjC9u*EIe6OWkDpQJK5SkTrASsnMMKwIo5jAHG5rAdYLsHRmF4vhs9eA!mV1rkYepmh2DAM19R4OdPFnhefJQ2KMSwFBz1Jze!*LPgFi1hsITXWKpndSCcoOFT9ifStzh24D!WtGG0qEpUowLaleOooSv6s8XM3!jPJIJVtmNPwfbvUhhvkYoiSpZCW6SixFOlUL1FKmpgstSP2yVFKvoekqXKZana*RbUcejttW8E1*2pE*IbBOZ91Q__/results,1 34663,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU*y51HV9DUMc7Uxb6IAl29sP!NISnC7q1XYjH5wDx3M!g0Zpm9F9Rop3N1hxvSnNvzLSGsuPR7cstTAfF2scipGbG7eh46YX8nWQJ7fqFy88lEJ6guV26DvN5dkROvF5cyeYQckgw0g1ely5ObuCtaR2A23CwPZPxKO!Jm2kVECpAmWElYCVU1gBWDGFMcDYFLYDbHfHKDwe70YPwYPplRZ5LH11iAYC8xlFfv5ggefZrbRBMYa54Gg4uQnDPwtu1hIGS3iNpXpSB8KJGiHlcCJ9SWMH*n1KG0aLqkQ1KqBdOU4auqI*W8z8jf6MIlhlO*UUbf8uhfEWqSSixVJoi1SS!FIpVG!RShq4WOrH7bJEKvkeFkuV81K1*y2o09C7a98Irvu3Tshvfwh*AA__/results,1 34664,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU*y51HbNbvYMhjjSmVrsgCZ9*H1AWoLTRb3abuCDc!B4zmdUD8ok9JCQ7Aumd65MJxNSv4nLVUhteN8DJJXQt95oYGAEaw2HGq5bIT86eYJdu9lzVwppCYabrm0Ul2cgNOJ!hRt0N0gnxUgxGi5cn6FgNSlhopWb2OGFWNTWpA6UwlMKRxlhucfyKSzzWDaFMY!xKWznsd0Do354Phs9Og!6HZRIQ2mrYzDgmHsU!OmT5T3PHqUVCjHMBUfdzZWb*llws5awt4TXWCondXw4QcOl7G6kr3Hsnv9Y0orRrMhRiTLfrhRHDV3Rny1m*kZ*RhGssh17CrZ*l8J4i1QU0WIptEUqSnypFCq3SEUNXCz14!uyRCp6HxZL5fNSpf0tDKeuhc!!Fly1n42Q32bUgGM_/results,1 34665,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpjwU*8utV1fwzBKW1KLG7hkj78PSEtwuqhX2w18cA4cz*mMml4PCT0kJP!AiV9ld0pI8yaUOMsBqnOv7wAqLcxnNxjgYARrA8daZrhQJ6kusGs3O!ZKoSxhYIPkrWbqBoRWfL3DDUb2yollpBwNd2ZuUGQNqWCitZuywwuxqK1JEyilp5SOMsIKjxVTWO6xfArLPJZNYTuP7R4Y9cPz2ejReTC81yINpa2OwYBj7lHgp0!W9zx7lNYoxDAXHHU31276Z8HNWsLeEl5jqZrU8eEEDZeyu5G!xrF7*mNJ64zmZYEqlPt2pThq6Ir!bDHzN*ozimCV7dhTsP27FMZbpKKIFkuhLVJR4kulULVFKmrgYqkfX5clUtH7sFiqmJeq7G!hv0gOn30jmObXVqhvNcCAqQ__/results,1 34666,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvlpiA1L9LbdfXMIQSNW2hA7usb78PSEtwuqhX2w18cA4cz*mMaqmGiByiJPuA6SHvQxclNT19SkYHDuVNtYpeTdVR1YuWP4ArFNf3y6DhCEaw1nBLQzXj4gQU2DWbF2pLLgxhoEPPGkXFGQgN*7rBDbqXwmqnSTEarlSfoUjrpISJVHZKD2!JQU2d1J5SOEphKSMsd1g!hWUOy6aw1GHpFLZz2O6JETe8no0crQfNpOKxL0119AYsc488P36xnOfZo6RCPoa54Ii9ubLTPwtu1hJ2lvAaS!WkjgvHa9iU7Y3kPYzd8Z9LUqUkK3JUosy1K8ZBQ1f0Z4uZv9GfUQSrbIeevO3fpTDeIhVEtFgKbZEKEl8qhcotUkEDF0v9!LoskQreh8VS!bxUaX4Lsu0ZfPY1p4p1DRffoHKGcg__/results,1 34667,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvljThp6Bearu!hiGUdaQOOmHJ9vbjJy3B6aJebTfwwTlwPOczavRgC3wsEH13E9fqRZ6FspLxXtqvArU33UvuCqoGYT56axwNArc27mTHDBfqLNXF7frNnoVSKE!wzEreDUxdHaETnzd3g5FaBT2CqtHwxszVFaRFtZtwEyZyfEIe9TVqE6WKlCpQRlgZsXIKoxGjUxiJGJnC9hHb3zEch8ez4VPwYLgexC6VvjolA4F5AIm*e7Ci59mjuAEphrngcLi5CdM*C27WEoyW4BpL9aRODCdphJTDjfg5jz3y70vcEEyrEtSAxnbtYNbQFf3ZYuZv9GcUwSrbuadk!3cpCLdIZREtlgJbpLLEl0qBeotU1sDFUj!!LkuksvdhsVQ5L1X734K!SO4!!0awgb92Qn0DULeCtA__/results,1 34668,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvljThp6Be6rq!hmGOdqQOO3DZHn8fkJbgdFGvthv44Bw4nvMZtb0ZMnrICH!H6VmorlOnk81Ife0*pYGCayPtRzdYwDGCtYUjjbCt1C9Kn2HXbXbCl1I7wiAG1TZG6AsQGvl1hRus6rUXYqQYDW*CXqBgNSlhopWf2OGBONTVpI6UIlAKTxlhecDyKYwHjE9hLGBsCtsHbH*DaBjuz0aP3oNteyN3sXTVMRrwzEcU!bs7K3iePUorFGOYC476mys**bPgZi3hYAmvsVRO6oRwooZP2d9In9LYA*!2pBWjvMhRiXho1w4nDV3Rny1m*kZ*RhGssp16irZ*l8J4i1QS0WIptEUqSXypFCq3SCUNXCz14!uyRCp5HxZL5fNSpfst9GfVwmffSmHa10bqb3sLf8c_/results,1 34669,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvljRBKP5cajtfwxDGWtMOOmDJHn*At5bgdFGvthv49Bw4nvMZMErbjBwzXBjLQolc*e7m21lJkeGWK2kZt!6t1MJ8XK1xYO5Zxq3tmeFCvgzy9L30ykIpJGxpB95rJi!O0IvPm9vBDEoGRYqr0fDGzMUVtMW1m0gTJnp8wh71NW4jpQJKFSgjrASsnMIKwIopjAJGp7A9YPs7RmB4fBvpggfDlRa7WPqqiwYC84Aif*dggefZpaRBMYa54EjYuQnTPwtu1lIOlvI1lupJHQgnaoSUw47kOY0d!PdH0lBSVCWqUQHt2uVJQ1f0Z4uZv9GfUQSrbKeeou3fpfJ8i1QS0WIptEUqSXypFKq3SCUNXCz143RZIpX8D4ulynmp2l8L6jRwd!wbwTQ*9!F60OJ1cFcM3AWtV8cdqb4AJJqIhA__/results,1 34670,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVd1ugyAYfRpvljRBKP5c6rq!hmGWtUSFTmyyvv0!IC3B6aJebTfw4TlyOOczqFU*ROQQ4eQTJhrh8qNlXcfeWw71Xd1gZL2pW9HwNsKUlHdYDcpQhTzBJCQMF6WvYmDASGTP9a0dNGwYI1hr0KiYrrk8CXmGp!Zhy2zJpSEMbBB11TPZAKHiX1fYQQsl7ckozkZDx3QDBS1xbg5U2IkeXrBBTY1LT8kcJbOUEZY6LJ3CEoclUxh1GJ3C9g7bPzDihufZyNF60LXq!c6Xpjp6A5b5ijx*92Q5z7OvkgL5GOaCI3bnwk7*LLhZS7GzFK!xlE*quHC8hk3Z7kjewtgd*7EkBSVJlqIcJa5duzho6Ir!bDHzN*ozimCV7dCTt*27VBxvkQoiWiyFtkgFiS!VQvkWqaCBi6V!3C5LpILvYbFUOi!Vm9!COosarn3NWV9fKi6*Ae7*jl8_/results,1 34671,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcuSmzAQ*BpfUmVKIPPwERbb2UuyFZKzihUKVi0gryTWyd9nJGFT7Nop7FNy0WOmNa3u4aGE1AucL4LoFSbW8Jo*84br34sg!ykkjIruhWhg0XccIi2sall2Go50kqm!0QpO!gj2CoqRUlHWVbyrIWqCr96zEEqz6jPXyvv6zbKFQQJ1ZHnsJZQOcWpCwV7rg1kM!zDYDtPxePQqLhnVXi3evP5liB!kqAgVnepbUtVDkFf00LgN3j5WtGDyjVPmAnlRkN3mO3lKdxuHj5TKBf1StidEviMr5EcoTgbAY0GK4unHkPbtVWGIs9ZcPQ8s7kHZDTIJEJiZ2BrkN6V1gnXGH11qTgm49wL!EPbrAAYqLrrRk8nQlsooDTNTCUyxU5h*CobiYZCNkMRBEgt5l4tdLr6Ui1wuupQLXS68lFu53OqUw2443w3b5iWKCsmW49KstqMAi3xAI355RjnNV4*iFI02XDMO28qpnf4z465K8p0k*xZJ64s86PzqJaPLtiLeTG13!NMWpyGOkhitUeTatfQnDb2hP*eI!Tf6886Cm2RPNY2y*07l!*dQTSyaTYXuoZo4PpcKre!hmjRwNtWHr8scqsnzMJsqvk5lfwui5hQ!!4qVku4J6*4A!gLOqQ__/results,1 34672,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctyozAQ*JpcUmUKIYvHEYLt!JJNhd2zSisUh4qRiCTH!*nRA5sia6ewT8lFYrrH0!oZgZWQ!gaWN1H8ZraOKNVZJCqehWwNyiVTu61WhgShiZVhMVGU8brhG4Na8C34K4TSrL5vtAp!PbmCKEpNGUn2O7k1EcwtFL1o3dmHPkbRst*2!31QN5JRHWzEe7B77fFOihpTwdWuxfWmB5uadlsfwOW6phWT7w1lHiirCq8Wv*Fjvlr4*JiLmq3rnkYZ6uF1havq8U!PA3dAsyRFaw9cWgMoulMuCC1hbBUWy8xubPrgm9pMs*lEm8kPs6lUKegDaQ8Z5QqDZA4QnOg3*sJvvCXuWjNuL7smuqFYEv5qLjtm*zrzNqhG8OGCj5aWKGsUFbaS6YnbUHkb9cVRVAwpqU9JXconLvFccoqLPRef4pDn0Clu7rn5gYN!OZ4NutmligrJZsOjfVoOBlzmXTjkz45Z3vPZn8I8HNpwrnHQVc7d9sMad9YS8JbAJZaykzrh8c1Lhy67inAxbrvPP4QwRzBOkzALYz!uGRgN9IL5XGPme8znUwsusj32NNj!WgqAa6RGLZosFV4jNer4VKkwu0ZqNMDJUv99XaZIje7DZKnkvJT7WxCbhprPvmJE0hfM!Ad8cz*Z/results,1 34673,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctyozAQ*BpfUmVKSBGPIwTbyWU3FXbPKkWoCBWDHEnEu38fPbApEjuFfdq9SJrpZobu4aGE1AtULGD0ZjYm2rbvGv13AXNGJTdbLWmnDdxJrvqtVoYVAhMrcyGhivGuarraZG3yLXgWQmle3TdaBT!fXGUME1NH0n0vtyZCmU3BF6139jDEGK6Hbb*fB1UjOdNBLd6D*nXI76SoCBOd6ltS1UOyqdhu6wO0fqhYyeV7w7hPFGVJNqtf5DHbrDw*UqoQ7AdtD4xiQ0IAwiSF4cB4KElZPv4ecJeFZonz1t57YbVgeKdcACxgFOY2lxr9W!qs4J01SFPdMGLsezUGEf5nZxxUjehGUyZLS5WVinNbybjiNlzcwKE4hvlISTwlcZRPWOyx!BQWeSw6hWGP4VPYrcduDxjyy*HekJteopiQfDke7Wk9CnDMOzDyl0eW13z2UpSB0YZzxiFXOXPbf2bcWUmhlxReIik92Qcc371kdNlVRKup7Z5*CFGGUZTEIAWRH9cynAz0gvlcI!bfmM8nCy6SPdU0yv6!VRhe02pi0exW4JpWE8fntgLpNa0mA5zd6svXZU6ryfMwu1V8vpX7LYi6YeazrziV7IXw7gNCJce9/results,1 34674,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctyozAQ*BpfUmVKIPPwEYLt5LKbCrtnlSIUooqRiCTHu38fPbApEjuFfdq9IM1Ma1rdY7ASUs9gOYuSN7NQTuVz83cWFZ3ZCNliTqiJCJWaPTOCNVUGyiVVu61W5kQITKxME4QVobxmvDFZm3wLnoRQmtZ3TKvg56NjiaPMtJN4v5NbE8HcpqIXrTu76eM4WvfLfr8PaiYp0UEj3oPda5*vpKgREVztWlQ3fZLVpNv6AK7va1JR!c7s9W2irCq0Wf1CD*lm5fGJUqUgP3B7QJQbtABhmixAD7ivUFU9*O7LobuqeaRFa69eWilxdKtcYM!kRmBhc0sjf4udE5RbfzTWjCCJ!avxB9E*nTFQMcEHT0aPFiurNC5sJ2OKW!LyJuqbx1ExQDIPyRzkUy31tfRULfG15FQt9rX4VG3ha4tDDfrH8W7QDS9TREg6H7Z2tx4EOOQtGPDzI8prPnsU5mCw4Zxx0HXO3fKfGXdWUuglhZdIWp7kAcdXLxtcdh3hamy7xx9CmMcwyVKwBIkf1zwcDfSC!Vwj5t!YzycLLpI91jTI*p4qDK!hGlk0mQpcQzVyfCoVWF5DNRrgZKovX5cpVKPfw2Sq9DyV!1sQDSPms68oluQFUf4B*DjMaQ__/results,1 34675,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctyozAQ*BpftsqUQObhIwTbyWU3teyeVYpQHFVA8koizuevHtgUjp3CPiUXaUbTTKt7DFZC6hksZ1GiNHYhMPE*s2v8PosKSRtGn00guFk6zp6FbJWBcElV12hlkKF9RJlGCCtCec349tAneBJCaVrfM62CX78dUxxltjHed7IxGcztUfSi9c4GfR5H637b7*dBzSQlOtiKt6B77c93UtSICK66FtXb*pDVZNf4BK4falJR!cYI9QdlVaHN6g96zDcrj0!UKgX5idsDotygBQgTkGY94KFCVfX4ty!H7qpmSYvWXr2MHO5OuQTYghFY2LOlkd9g5wTl3l7NCJKYvxp*EH3fGQMVM7YePRktLVZWaVzYTsYUt8Xlj6hvHkfFAMk8JHOQk1rqa!m5WuJrybla7GvxudrC1xaHGvTL8W7QDS9TREg6H0IbrQcBDnkHBvz8iPKaLz4KczDYcMk46Drnbvtmxl2UFHpJ4TWSlmd5wPHVywaXXUe4Gtvu8YcU5jFMshQsQeLHNQ9HA71iPreI!RrzObHgKtljTYPsz6nC8BaqkUWTqcAtVCPHp1KB5S1UowFOpvrwdZlCNfo9TKZKL1O5vwWxZcR89hXFkrwgyv8DRK*MKQ__/results,1 34676,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctymzAU*RpvOmNGIIvHEoLtepNmSrvWEKE6TIzkSBC3f98rCZshsTPYq2Qj6T50j859gJaqneF8FoQvsP2pRVWL7SzImn!w3JdtLUW5g!NG6E6VgnE4i6555AquCMV1t2s13PQRyBqC0VIz7qLg3ChfvEcpdcur73WrvR8*LRoJYgikykOnIDrBqVEFT227N4deJsGq3w6Hg1fVirPW28pXr3vu9XslK8okvK2h1bZX1hXb75yAV5uKFVy91ubhRpEXBV0vf9GHdL10*qGQFd9UvTkgSa*eFLQoHn73et8!EJYoa2bWMTaaO20FZAxAKzM6CJABTSd8Upo!XuCJPKMvxlPrXLL7sjl65GvqJwgt4ol8ww*4hrvS9jUXpttbGA9GYSqeodsp*7uHcdAwMEOHj5am1IYoyUwkyIndSP4t6IMTmLqTS!xcYuvyxhY5W3TOFjpbeM5GnI2csy2cbXG0Ybec3oZt7WLNpOLz4WhOq4GA9bxDg**85OU4X7yKUzSk4VLisI2c2u2LJe4iJd9R8q!hlJzFQafJi4cs24h4OU678z!KOCU4jCOUoNCVa!6PCnpFfW4h8znq8yYFV9Eecxpofwzl!7dAjVI0GQrdAjXK!FQolNwCNSrgZKh3X5cpUKN!mAwVXYayvwW5rRl89jUvFXuiXPwHx!tJxA__/results,1 34677,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctymzAU*RpvOmMGIYvHEoLtetNmSrvWqJJKmBhEJDnu51cPbIbUzmCvko2ke89BR!deAUpIvYDlIopfzERlo7nkZBEV4o8ZGGlJzZlZ9USp3nKjuJNcHfZaGT4ITaxMGhNFecearjZZm3wJfguhNGdfG62C7z!cBopSs5Ukx4PcmwjmNhU9ad3bxRCjaDNMx!MxYI3kVAe1eA0Oz0O!l4JhKjp1aDGrh2TDaL*3AdzsGK24fG0o94myqvB2*RM*5tu158edYHzHBhhlaEjvKlxVj7!GPHAHNENStPbApTWAogflgtACxlZhc5mZjU0ffFCbabaaaTP5ZDaVKgX9RtoTo9xikKwAgjP9xu*4jffEXWve2cuuiW4olqR7Npcd87!9eRtUI7rxgk!GlihrFBV2J1MTN6HySzRsjqJipKSekjrKGyzxWHIJiz0WX8KQx9AlbOWx1QmDfjifDbrepYoKyZfj0q42owHHfAhH*vLM8p6vPgrzcCzDtcJBt3Pupk9WuKuWgLcEbrGUXdQJz29eOlbZ7QjX07J7*imEOYJxmoRZGPt2LcGkoTf05x4zH6M*b0pwk!2pp9H2!1IA3CM1KdFsqfAeqUnF50qF2T1SkwbOlvrv6zJHanIfZksl16Xcb0HUDTWffcWJpE!Yd*8ArYlGPg__/results,1 34678,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctymzAU*RpvMmNGIIvHEoLteNNmSrvWEKE6TIzkSBC3f98rCZshtTPYq2Qj6T50j859gJaqneF8FoSvsP2uRTULsuYvLKJsaynKHRxroTtVCsaNumueuNJwQSiuu12r4Z6PQNYQipaacVHVYgtao3z1nqTULa8e6lZ7339YLBLEEEmVh05BeIJTowqe23ZvDr1MglW*HQ4Hr6oVZ623lW9e99Lr90pWlEl4XEOrba!sK7bfOQGvNhUruHqrzcuNIi8Kul7!pI*peun8QyErvql6c0CSXr0paFE8*ur1vn0gLFHWzKxjbDT32grIGIBWZnQQIAOaTvikNH28wBN5Rl!Mp9a5ZN*K5uiRr6mfILSIJ*INP!Ab7krb11yYbm9hPhiFsXiBbqf8zx7GQcPEDB0!WppSG6IkM5EgJ3Yj!V3QBycwdieX2LnE1uWdLXK26JwtdLbwnI04GzlnWzjb4mjDbjm9DdvaxZpJxefD0ZxWAwHreY8G**nJy3G!eBWnaEjDpcRhGzm12xdL3EVKvqPkX0MpOYuDTpMXD1m2EfFynHbnfxRxSnAYRyhBoSvX3B8V9Ir63ELmc9TnXQquoj3mNND!GMr3b4EapWgyFLoFapTxqVAouQVqVMDJUP99XaZAjfphMlR0Gcr!FuS2ZvDZ17xU7Jly8Q!scUk5/results,1 34679,http://10.156.8.27:15871,1 34680,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcty4yAQ*BpftsoqJIIeRym2sz4ltdo9qxSgHCo2KIDtfP4OoFilxE7JPu1eeEwP03SPHkZpO8OLWZK!wdTpllpB2!0sqZgWByE3sLLcWJiokhZgSJWam*3WGjgRI9gbKNK0hnLJ3Am8cMG36FkpYzn7KayJHn95FpLkUEm3x70GDoJLF0perO3cot!TZNVPx!MxYkJzaqONOkT71z7eacUauI*Z7xq26YOC0W4bNni1ZrTm!iAoD4FFXTcPy9*NU*mwDPmpVIyvWQ8nBerD67qp66c*fTz2F4Qhq3Yzn5i7yL3xG3cmA1mVixUgett6*Vw6V2wLXja6la*gSsPfO7DNCCUHJ0bDrjVOH6lcJbDCT2TxI!mLk6QaUvKQkvuUT1gWsOwclgYsPYeRgJFz2F3A7j4wHIbT3bBvWW6o0nw!LN1qNQjwmfdoyJ!fsoLmi0dxiQYbLhmHfeXST*!ZcRclxUFSfI2k4iwPOr1w!eCyr4iXY9tD*scWlwSneYYKlIZ2zeNRQ6*ozy1i*o3!fLLgKtljTYPs76ni!BaqkUWTqdAtVCPHp1Kh4haqUQMnU335ukyhGj0Pk6myy1T!t6A2gsJn3*BW05eGy78x0Mj9/results,1 34681,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcty4jAQ*BouW4VLD2Sbox0D4bKbWu!eVYqsIk6MRSQR9vNXD4PLCaQMp!QieaabafWMbLRUZoKLCYpf7caaZoLyZ*mobaJVQu8bo20eAhtrS6VMc9FWdbuxWZd8jR6l1EZU97XR0a*fvhZBqS2j2GGvbD2CM5dCT8bs3EMXE7TstsPhEFW1EtxEG*kW7V!6*E7JinLZ6v2WVpsuWVd814QAL9cVL4V6q7kIiaIs6Wrxhz5kq0Xgx1oXkv9k2yOjWFEIAAYQzzrGuqRl!fC3w6E*q12SfOvOXjgvBN1pHwAH,1 34682,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcty4jAQ*BouW4VLD*zgaMfActlNxclZpcgq4g1IRBKwnx89DC4nkDKckovkmW6m1TOy0VKZES5HKHmz2z*5PELFnjIqGq5tUiiud2ujLQaBjbWlE6oZF3UjVjbrkm*Rs5Ta8Pp3Y3T098HXi1FmSyl62Km1jXDuUujFmK17aOMYzdvtcDhEdaM4M9FK7qPda5vfKlkTJoXebUi9apNNzbbrEOD5smYVV*uG8ZAoq4osZo*kPl*MAj*RupTsD90cGeWCQAAwgHjSMpYVqar7pxaH*qx2SYuNO3vpvMToTvsAOMA6LFxuanfrOATfx7GQNV*WRzsADrSZ*mSbCKKBNpMvbCZr6i82F!66G2oaRhQVr*a6E*5*a98H3UjRXfHesqHa!YsLV8m2wm9x!Qu1xWNUdJQsUDJP!YClAUvPYUnAknNYHLD4HDYJ2OSI4bCczob9yDLNpOLj7tE9zTsDnnkHOv74xAqeL*4U56Brw6XGYV8599sPa9xFSzBYgtdYmp7VAacXLuu67CviWb*tgX8McR7jJEvBFCRhXGPYG!gV87nFzPeYz4cWXGW776mz*bUUhLdI9Vo0WArcItXr!FApML1FqjfAwVKfvi5DpHr3YbBUelnK*y3IVcPsZ19zqtgL4eIdSCg*ZA__/results,1 34683,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcty4jAQ*BouqcKlB7LN0Y6BcMmm4t2zypG0xAlIRDJhPz96GFzOQspwSi6SZ7qZVs*IxijdjHAxQvGb3V7U0wjlWvwVWkgmbFZqYXbrxlgQAhsby6eVYULyWq5s1iXfoielTCP4Xd2Y6NejL0hQ6mpV!51e2whnLoWem2brHtqYoHm77ff7iNdasCZaqfdo99rmt1pxypQ0uw3lqzZZc7ZdhwDPl5yVQr*X7rwuUZQlXcx!04dsMQv82JhCsftqc2AUCwoBwADiSctYlrQsH*60OPRntUuSb9zZC!eFoFvjA!AA6zB3uandreMQfB*HUnGx5Ac7AA60mfxkmwiigTbjL2zG68pfbCHddW!qpmZUV*LVXncq*m3t!2BqJbsr3ls2lXH!SO4q2Vb4jRQ3qC1OUN5R0kBJPeUTlgQsOYXFAYtPYSRg5BQ2CdjkgOGwHM!G*chSw5QW4!7RPc07A555Czr!!MgKns*!FGega8O5xmFfOfPbD2vcWUswWIKXWJqe1AHHFy7tuuwr4lm*7YF*CHFGcJwmYAriMK4x7A30gvlcY!Z7zOdTCy6y3ffU2f5aCsJrpHotGiwFrpHqdXyoFJheI9Ub4GCp*74uQ6R692GwVHJeyv8tqFXN7GffiEqzZyrkB!rVP8k_/results,1 34684,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcty4jAQ*BouqcIlW5EfRzsGlks2td49qxxJC6qARCQR9vNXD4PLCaQMp!QieaabafWMbLRUZgLrSZK!2o2y1qwnSfXMBPvLjc0KxfR!Y7QFY2Bjbfm41YQJysXKZl3yNXqWUhtGf3Cjo5!*fEGU5LaSag97tbERLF0qWRuzcw9djJJ5tx0Oh4hyxYiJVvIt2r90!Z2SFBMp9H6L6apLckp2mxDA!ZKShqk3TlhI1E2DF7Pf!KlczAI*FZKyJe1glOddetngpnn60!Vjf0C7ZNXWHbhOPO9B!wA4wNqqXK6wu7UZgq9qswAjbWbfzKbWtSSP7fbIqBc4BiApsqIY6Tj9xHG6af3FZsJdd9MaTrBqxYu97pj929n3QXMp!is!WLatdlZR5SrZrvgN1XdJVxwlVU*JAyX3lHdYFrDsHJYGLD2HoYChc9h9wO6PGAzL6WzQTy*XRCo27R*d07w34JkPoOdPT6zg!eJPYQn6NlxqHPSVS799s8ZdtBQHS*E1loqzOuD07uV9l31FOBu2PfCPISwRTPMMFCAN45rGg4FeMZ9bzHyN!bxrwVW2h556259LxfEtUoMWjZYCt0gNOj5WChS3SA0GOFrqw9dljNTgPoyWyi5L!b8FueLEfvY1axVZYyb!A*gAP*c_/results,1 34685,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcty2yAU*RpvOmMNCKPHUops15s2U7VrhgLjaGKDAnLczy8P2Roldkb2KtkA95wrDudeJBmluxmqZnHyYqeWGtNaxNhYamEOO7tEFQQ2NhYn1DAheSO3FnXgS*RXKdMJ*r3pTPTzl98Kx9ksLjU9HvTORqhwUPzUda1b9DGOV*10PB4j3mjBumirXqPDc4!3WnHClDSHPeHbHmw4a3chQKsNZ7XQrw0TAajqmqyXv8ljsV6G*EQqLja8p3GOe3hTk7p!*NPj0B*QDmm5dweunAEcPxgfAEdYW6XDcjtbmyH4pDazfDHRZvrFbBpTKfaD7k8Z1ZrAdAFBPtFv8oHfZEf9tRbSXfaOdg0jmspne9mJ!Nfat8E0Sg4XfDTsqXFGcel2sjXxE66!xf3mOC6HlCykZD7lDZcGLr3EJYFLLnE4cPgStwjc4sShMJzPhnzvMsOUFvNh6VarwYDPfABD*vycFTxffRQVYCjDtcIhv3Phpy9WuKuWYLAEb7GUX9QB5zcvG6rsd0TLcdlD*ilEBUZJloIcJKFdczhq6A39ucfM5!jPmxLcZHvsabD9sRSE90iNSjRZCtwjNar4VCmQ3yM1auBkqXdflylSo*swWSq9LuV*C2rbMPvZN4Jq9kSE*A9v5j4A/results,1 34686,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcty2jAU*Ro2ncGjR*xa2jHQbNpM3K41jqyCJiARSQ79*Ohh8DiFjmGVbCTde47v1TkXGy2VmeFqhpJXu21kp7lYz1D5zAT7w43NC8V0tzXawhDYWNsnSKMpE62j4solX6NnKbVh7XdudPTzyZeMUWYrqebQqa2NcOFSaGPM3h36OEbLfjscDlHLFaMmWsu3qHvp83slW0Kl0N2OtOs!yVu634YALx9aWjP1xikLiaquyWrxizwWq0XgJ1pXkv5odkdGtSIQAJjlKOkZDzWp68ffPQ79Xe2Sljt398ppidG99gFwgFVYulxu9W8bbwUTziDTGE6JasSLNYiwv3vroOZSDKaMll2jndS4dJWsK36Lq2!oLx6jcqBkgZJ5ygcsDVh6DksClpzD4oDF57C7gN0dMRyW092wn16mqVRsPhzdaTkI8Mx7MPDnJ1bQfPFRXIDBhkvGYV!58NsXM!6iJBgkwWsk5Wf7gNO7lw0u!4p4MbY98I8hLmKcZCnIQRLGNYejgV4xn1vEfI75fLDgKtljTYPs*7eC8JZWI4smtwK3tBo5PrUVyG9pNRrg5Fb*fF2mtBr9Hia3Si!38n8Lcs2p*exr1ii6IUy8A9VTxWc_/results,1 34687,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwyAQ*JpcKlniEfw4Oq*fsJCLUpoUt!BI!fwurBKEa1e2T!0FFmbMeGYt7Drbb*hhw*IvmLR5v1mtHCyNVe527R3sUgJrB8RGulaZV23OsOs3rzKUynhCL3vdNlaaCxAadf!EE5zuTDhesHIwfEh3gULsWAUTr8MkDi*Mo75mu0gpkVIGygArECvGsByxfAwTiIkxbIvY9oFxHJ7vxk*Bg2s7q7JY!uoUDQTmnkR!9mSh58lHeU1iDFPB8XByHaZ*FtykJYqW6BJL1agOhhM1QsrhRH5MY0f!Y8lrwfOyIBXJsV0ZTRq6oD9rzPyN*gwiWGQ79RRt*y5F6RqpJKLZUmSNVJL4XClSrZFKGjhb6sftMkcq!R5mSxXTUpX*LXRn3cK175S07VujzDchZHxL/results,1 34688,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwyAQ*JpcKlniEfw4Ok3zGxZ1UWolxS1QqZ*fhVWCcO0K!9RezMIMjGfWwnY0bsePO1Z!wCDN8!CMdMOoYUUbZT!vzgJACcwtcDtpe6VfBn2GVb94laFUfoN1sLXvjNQXIHTq6x1OsP4wryBYPXm8SXuBQhxYAwNvwyCOD8yjvmaHSKmRUgfKBKsQq!awErFyDhOIiTlsj9j!hnF83N!Nn4IH249GFbH01SkaCMxHEvnFnYWeF7fylsQYloLj4eQ2DP8suEVLFC3RNZaaWR0MJ2qElMOJ*CmNHfm3KW8FL!uKNKTEdhU0aeiK*mwx8zf6M4lgle3UU7T9uxSlW6SSiLKlyBapJPFcKdJskUoamC3143bJkUq!h2ypalmq8b!F8Tz0cO1bJU3*2in9Dd7IfYE_/results,1 34689,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwyAQ*JpcKlkCE*w4Oq*fsBClqZUUWnCkfH4XVgnCtSvbp*YCCzNmPLMWdsb2G3bY5MUXTNLcbO*eOq1gQ1vlbtfewT4lsHZAbYWTSr92!gy7fvMqQqm0J*Si72Rrhb4AoVX3TzjBdUYHAZ5Xg!FDuAsUfJfXMLEmTPzwknvU1*kuUiqkVIEywErEyjGsQKwYwzhifAzbIrZ9YAyH57uxU*DgpLEqi6WvTtFAYO5J5GdPFnqefJQ1JMYwFRwLJzdh!mfBTVqiaIkusVSP6mA4USOkHE5kxzR25D!WrOGsqEpSkwLbldGkoQv6s8bM3!jPIIJFtlNP0fbvUpSukUoimi1F1kglic!VIvUaqaSBs6V!3C5zpJLvYbZUOS1V!9!COXcSrn2nhJXvrdLfi8R9JA__/results,1 34690,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwyAQ*JpcKlkCE*w4OknzGxZyUYqS4hSIlP59F1YJwrUr26f2AgszZjyzFra9cRt22OTFJ0xXaZw0Wrkv2NBG2tvFWdinBNYWqK2wndRvSp9g129eRCil9gQnnOpaI*QZCK28X!EEq3odBHheDYYPYc9Q8F1ew8SaMPHDS!5RX!e7SKmQUgXKACsRK8ewArFiDOOI8TFsi9j2gTEcnu*GjsGD7Xojs1j66hgNBOaeRH72ZKHnyUdZQ2IMU8GxcHITpn8W3KQlipboEkv1qA6GEzVCyuFE9prGjvzHkjWcFVVJalJguzKaNHRBf9aY!Rv9GUSwyHbqKdr!XYrSNVJJRLOlyBqpJPG5UqReI5U0cLbUj9tljlTyPcyWKqelav9b6E!qg2vfSmG691bqbwoSfTg_/results,1 34691,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwyAQ*JpcKlkCE*w4Ok3zGxZyUWolwS0QKfn7LqwShGtX2Kf2AgszZjyzFjaDthu23!TFF0wXYa9a9fYOa6WluZ6tgW1KYG2A2QrTSfXeqyPsus2z8KVUjmCF7btWC3UCQitvn3CC6Qflz!d5NRouwpyg4Lu8hok1fuL7l9yhrs53gVIhpfKUEVYiVk5hBWLFFMYR41PYFrHtA2M4PN!NHbwH0w1aZqF01SEY8MxXEvjZk4WeZx9lDQkxzAXH*MmNn*5ZcLOWKFqiSyzVkzoYTtDwKfsT2VscO*IfS9ZwVlQlqUmB7cpo1NAF*Vlj5m*0ZxTBItuxp2D7dylK10hFESVLkTVSUeKpUqReIxU1MFnqx!2SIhV9D8lS5bxU7X4Lw7Hv4No3Uujuo5XqG2rWfM8_/results,1 34692,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwyAQ*JpcKlkCE*w4Ok3zGxaiKLWSQgpU6ud3YZUgXLuyfWovsDBjxjNrYWes37Hjrqw!YPJWSG8srLRV7vPqHWxSAmsHvF44qfTroM!wGzavIpZKB4IXfpC9FfoChF593eAENxgdT!dlMxrehbtAwQ9lCxPr4sSPT2VAQ10eEqVBShMpI6xGrJ7CKsSqKYwjxqewPWL7O8ZweLwbO0UPThqrilSG6pQMROYzSfziwULPs4!yjqQY5oJj8eQuTv8suFlLFC3RNZbaSR0MJ2nElOOJ7CWPHfn3Jes4q5qatKTCdhU0a!iK*mwx8zf6M4pgle3cU7L9uxSlW6SyiBZLkS1SWeJLpUi7RSpr4GKpH7fLEqnse1gsVc9LteG3YM6DhGvfKWHlW6*0N3y!e!E_/results,1 34693,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwyAQ*JpcKlkCE*w4Ok1yq9R!gYUoSq2kuAVH6ud3YZUgXLvCPrUXWJgx45m1sO3NsGH7TV58wvT89AKVNspeL4OFDUpgbYHTCiuVfu30CXbd5kX4UmlHGMTQydYIfQZCq74!4ATb9dqfzPNqNLwLe4aC7*IaJtb4ie8fcoe6Ot8FSoWUylNGWIlYOYUViBVTGEeMT2FbxLY3jOFwfzd29B6s7I3KQumqYzDgmY8k8LM7Cz3PPsoaEmKYC475kxs**bPgZi1RtESXWKondTCcoOFT9ieyQxw78m9L1nBWVCWpSYHtymjU0AX9WWPmb*RnFMEi27GnYPt3KUrXSEURJUuRNVJR4qlSpF4jFTUwWerH7ZIiFX0PyVLlvFTtfgv9qZNw7VsljHxrlf4GVpV50A__/results,1 34694,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwyAQ*JpcIlkCE*w4Ok3zGxYiKLWSQgqOlM*vwipBuHZl!9ReYGHGjGfWws7YfsMOm7z4gkk9lLz3xjpYa6vc*do72KYE1g6YrXBS6VOnz7DrN68ilEp7Qi*6TrZW6AsQWvW4wQmuMzqcz*NqMHwKd4GC7*MaJtaEiR!2uUd9ne8jpUJKFSgDrESsHMMKxIoxjCPGx7AdYrsnxnB4vRs7Bg9OGquyWPrqGA0E5huJ*OzFQs!Tj7KGxBimgmPh5CZM*yy4SUsULdEllupRHQwnaoSUw4nsPY0d!c8lazgrqpLUpMB2ZTRp6IL!rDHzN*oziGCR7dRTtP27FKVrpJKIZkuRNVJJ4nOlSL1GKmngbKkft8scqeR7mC1VTkvV*rdgzp2Ea98pYeVHq*Q3JTB8xA__/results,1 34695,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwyAQ*BpfKkXCEPw4OnFy7h9YiKAUxcEt2FH7910gCSK1K8en9gKLZ8LszEa26XSfkDrBmemZKxHUH7C*anlh*CvBG6YOsIpW8F5LDiXvzudBSc562Sk4J5jiYreFqpYaWPIi7KMSHmhxHFrHM3DCCBVwvdLCDG1vQCW1cgaaaJjhQh2kOl57aJkrhfK99ZI3mqkTEBrx!Q43GCtuWwfxh!XMzAkKurE9UFK5jdYv!NoWxZtAKTylcJQHLPdYPoZlHsvGMOoxOoatPba!YcQv997I3nkwvNNiFUpb7YMBx9yiwF*dWd7z5E9JhUIMU8ERd3Pltn8W3KSl1FtKn7FUjur4cIKGS9ndSHZx7J5*O5KKkqzIUYkyP65VGg30ifksMfM35vMQwVO2Y0*B9u9SabpEKopothRaIhUlPlcKlUukogHOlvrxdpkjFf0fZkvl01Kl*Sx0R*gGkdoIpvlbI9Q39FCY9Q__/results,1 34696,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwjAQ*JpcKiE5MXkdE2i!oPfIDS6NAAe8RqJ*37UNWE6TKsmpvXgnzLDD7KIYOqkCug2iBBQzkCC!YL0qiUhIDtejAvwg1AygvmbQcLFrxf4uPzIDubBtVNvUkokDCmp!O2MHaDthXOIo6x0nBgcEcRnlWGhhSrx9iTSrcVQ6SWYlmZH0uNRy6RCXWC4Z4mLLxUPc2nLrB0ft8fxttDIZoOkkXzmoUeUCGOWGOP3qqbKZR79KC!LGMDY4ajoXpvyzwY1GCm2kcE6kfNDHDsd5mCmbjvTVH7vVPx5pEdMkS0lOEruuVegtdMZ!loT5G*vpjWBWbD!Ti*27VRgusfJGNNmKLLHyJj7ViuRLrLwFTrb68XaZYuX9HyZbpeNWub4Wun3b4GsfOJPNZ22uB8k*WsHvd0H51p11raBVHHij9DWhn0!d4F8abYKoVOyGJxM7PN!5wAYKvgFOmJUP/results,1 34697,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwjAQ*BoulZCcGOdxDFCkfkVkBQMWiR3soJa*764tiEyTKuTUHvBuPIPHM4uC1aZb0O0iTi5QmtsiXoumrfVNGGg*ueos1EbA0mnc0eYM5XCta9ySDpHKdoLvodMHWFoOZ95BFm!gr7jCnZO4ebq0yPiAz147QKIMsOkOrqKMsNcalOk2IvBs4ZIlt5VQe6mOsIubNXetUEjoeCer0nB1BkIpvlo4wUqtnDUWZ09Lwy24YGwd56hZuMK2bzGi2IPlByXzlMxRnrDUY!kQlngsGcKYx9gQtvLY6o5RvzzuhhGBB1tpI5Z9i92uN!CYG9Lzlw!W9zz6VVqQPoax4Kg7uXDlnwU3ainylqJXLOWDOj6cXsOl7E6k72Hsnn9*pAWjSZaSnCR!XMsoGOgL85lj5m*M5ymCl2yHnnrbv0tF0RypIKLJUmSOVJD4VCmSz5EKBjhZ6sfbZYpU8HuYLJWOS!X4t6CPsoLXvhXcVKdSqG9*4KKB/results,1 34698,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwjAQ*BoulYicmDw4JgVaTkVNe7aCbVGLYFPbQD!*fgSiUKgCp*aA7d3Z7HhmISgh9QBOBlHyabZ8M4iKufkQpqplTYnJc0nVrtbKwCEwsTJPoEphygnjK5O1yc9gKYTSlDwzrYKXV9cyjjLTSlaHnaxNBHObij603tpDE8fRrNkOh0NAmKRYByuxD3brJr!VgiAsuNptEFk1SUbwtvYBnM0JLqncM0x9YlKW6Gn6hhb509TXJ1wQOicNnGVNdl6isly8N!nQ3c8sabGx951Eru5RuQBYwKgqbG5sNNeVk0!5NUVXmmEkK742piD6tTWuKSZ4a0Rn2VTKyosL28k44bZ48hA1zeOoaEsyX5K5kjMs9Vh6CUs8llzCYo*Fl7CRx0ZHDPrldDfoJpYpLCQdtkd7mrUCXOUjaOuHpyqv!eqjMAetDdeMg65z7rZ*ZtxVSaGXFN4iaXyRB5x!b1nrsusIp13bff0xhHkMkywFY5D4cQ3DzkBvmM89Yv7GfM4suEl2V1Mr!3eqMLyHqmNRbypwD1XH8b5UYHwPVWeAval!vF36UHW!D72p0utU7m9BrBg2r31FK4k*EOXfgXPBFg__/results,1 34699,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuwjAQ*BoulYgcG!dxJKSot0r9gSg1FkQEG2yjtH9fPwDXNKlCTu3F9u5sdnZ2E0dyoWaonMHkpDdBySdpG7bVNhNUnlsltTsG2pY6sqoloWxjAlBpnKfonXOp6OalUTJ6fbOpMMxmsBB1dxatttDSuOBOqaM5XGwM15et67rIEVPGu4jwwzcc6iUtjAeVJi2GK2kNYABNVhhfrktpa1sVZaZWVauGVKJme11rRT!OWoxsOPP1Bcuhlnt9wIXJpAu0Gy6f4CU5hoUPyVxIZkPusNRhaR!WOCzpw7DDcB!2cNjiiiG33GpDtlGZJFzQuT!a09oLsJEr4OPntyinefBRtAS!DUONQzbz0m7*rHGDkmInKX5EUt7LA26fQea7bDOi57DtLv5qoiVGSZaCHCRuXPM4GOgD85ki5m*M564FD8kONXnZv1PF8RSqoEWjqcAUqqDjY6lAPoUqGOBoqh!3yxiq4H0YTZUOU9nfAt82RF*7ktaC7CrKvgCnuqGN/results,1 34700,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuhCAU*Ro3TUx4DD6W2qlf0L0hlM6YcbAFm7R*3wtkhmC1UVftBi6cA8dzrlEz6DGhx4Rk7zA1mishTULq57OEsem0fO2*AFVamo9!NEDCCNYGzrXcCKleOnWCXbvZc1dKZQkjHzvRwoUXILTy8w1uMN2gnBojxWS4cnOBgtWkhIlWbmLHB2JRW5M6UApPKRxlguUey!ewzGPZHMY8xuawg8cON4z64f5stHEejBi0TENpqyYYcMxHFPjpneU9Lx6lFQoxLAVH3c2Vm*5ZcIuWsLeEt1gqZ3V8OEHDpexupE9x7J5*W9KK0azIUYky364URw3d0J89Zv5GfyYRbLIdewq2f5fCeI9UFNFqKbRHKkp8rRQq90hFDVwt9ePrskYqeh9WS!XLUqX9LQynTsBn30iuxbmV6hsBzIDI/results,1 34701,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctuhCAU*Ro3TUx4DCpLH51Ff8IQSmbMTLEVm8znD3AzQ7DaqKt2AxfOkeM516DphzGhTUKyLzvJs5KXTp8SUtX1m93UgzLf19FYDCO7NpbeCiOVfnc02rjNq*Cl0o4wirGT7SC0O6dVt097gul67UUYKSbDhzAXW7CKcDvR0k!seSEOdTWpAqUASuEpEywHLJ*DMsCyOYwBxuawA2CHB0ZheL4bPXoPRvaDSkPpqmMw4Jk1Cvz0yQLPi4*SEoUYloKj*uTST*8suEVLGCzhLZb4rA6EEzR8yv5E!hrHDvzHkpaMZkWOOMqgXSmOGrqhP3vM*I3!TCLYZDv2FGz*LoXxHqkootVSaI9UlPhaKcT3SEUNXC3143ZZIxV9D6ul8mUp7n4L*amT9to3Sgzy3Cp9BxuPfYc_/results,1 34702,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKkUyOLyOpDS*gSzHDSiJndpu0*59d20RZAoVcGovu2tm2GF2ERil7YZWmzh9g9So!ybeX5n8gmTbqzCQ7wICZxJjw!QJj7bBeGQWk3qFcNOM25azC17X7UcrT9BUamHeL9ZA74jA2YBczQwX8ogEWuHFC3OlkEiwDLrUmskzEGrxeYMOplXSPWQS54NwZeYMRbKPC0i0dCmpnmJEsUY7HSX3lNxRBljmsWwMSz2WjmGJx5IxbOexXYdRHx7PRg*Og!FKi21fYnXoDTjmM!n52wfLe568lZakH8PU4KjrXLr0zwY3aSnylqIllopRHT!cXsNN2XWkL!HYPb870jKhaZ6RgqR!XdsoWOiC*awx8zf2MxjBItuhp97271JRtEYqGNFsKbJGKpj4XClSrJEKFjhb6sfXZY5U8D7MlsqmpQr8LahTy!GzbwTTvKmF*AZAUJLP/results,1 34703,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiHZOOZxJEnzG8iiVoKSGuqlUj!*a68SyxQq4NRe8Noz9jCzyEBnh5047dLsAwfV91aboW3g2vaAi8Zq!LwPgBhnOAek1woabd5ac8FVt3hXvtTGEQaF22urzA0Jtf7CAwHazngRmRajx7uCGxbykJY4iMoP8vSSOtTV6SFQCqIUnjLCcsLyKSwjLJvCJGFyCtsTtn9ggh7PdxNn7wGazuoklK46BwOeeWSBnzxZ5Hl2q6hYiGEuOOFPrvzwz4KbtcTJEl9jqZzUoXCChk*Znyhe49iJ*5iKSoqsyFnJMmpXwqOGrujPFjN*oz!jCFbZjj0F279Lcb5FKoposRTbIhUlvlSKlVukogYulvpxuyyRir6HxVL5vFTpfgvdpW3w2getbHOttfkGOHF!zw__/results,1 34704,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiHZOOZxJEnzG8hyrRQlNalNpHx!l90mlilUwKm94LVn7GFmkfGt6zbisEkz3yksOYPJJxTOaNNcOw9T64y*XaD8hj3sqpXXxr419gSr*eJFYWksHdY1unbKnoFQm*sVTvBNa1FLpsXg8aH8GQq5S0sYRIWDPLykPdrX6S5QCqIUSBlgOWH5GJYRlo1hkjA5hm0J2z4wQY*nu4kjevC6dSYJZV8dgwFk7lngJ08WeZ7cKioWYpgKTuDJFQ7*LLhJS5ws8SWWylEdCidoYMp4oniNYyf!YyoqKbIiZyXLqF0Jjxq6oD9rzPyN*gwiWGQ79hRs*y7F!RqpKKLZUmyNVJT4XClWrpGKGjhb6sftMkcq!h5mS!XTUmX*W2hPjYZr3xvl9Htt7BfOgn*5/results,1 34705,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiHZOOZxJEnzG8hyrRQlMSlLpHx!114llilUwKm94LVn7GFmkYG26zfisEmzLxx0e70ZC6pvWotLtjNwv*SACGc4ByTXCrSxH4094apbvChfGrcBetyq607ZMxJq87jhCeAOcxIyLQaPq4IzFnKXljiIyg*y8JY61NXpLlAKohSeMsBywvIxLCMsG8MkYXIM2xK2fWKCHq93E0fvAXTbmSSUrjoGA565Z4GfvFjkeXKrqFiIYSo44U!u*PDPgpu0xMkSX2KpHNWhcIKGT9mfKN7j2In*nIpKiqzIWckyalfCo4Yu6M8aM3!jP4MIFtmOPQXbv0txvkYqimi2FFsjFSU!V4qVa6SiBs6W!nG7zJGKvofZUvm0VOl!C!2p0Xjtg1Gd*qyN*Qaxin3y/results,1 34706,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiHZOOZxJE3zG8ilVoKSGuqlUj!*a68SyxQq4NRe8Noz9jCzyEBnh5047tLsAwfV91a*Dm2j4dL2gKvGavi8DYAgZzgH5NcKGm3eWnPGVbd4U77UxhEGhftrq8wVCbX!whMB2s54FZkWo8e7gisW8pCWOIjKD*L4lDrU1ekhUAqiFJ4ywnLC8iksIyybwiRhcgrbE7a*Y4Iej3cTJ!8Bms7qJJSuOgUDnvnMAj95sMjz7FZRsRDDXHDCn1z54Z8FN2uJkyW!xlI5qUPhBA2fsj9RvMSxE*8!FZUUWZGzkmXUroRHDV3Rny1m*kZ*RhGssh17CrZ*l!J8i1QU0WIptkUqSnypFCu3SEUNXCz143ZZIhV9D4ul8nmp0v0WunPb4LUPWtnmUmvzDXQKfyg_/results,1 34707,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiHZOOZxJE3zG8ilqxQlMa1Non5!114llilUwKm92GvP4GFmkbGd6Tdiv0mzT5xewcANLqB73NAG7PXcW9znDNcWqbWyDei3Vh9x122elS9BO0Kv!rapjdInJNTw9YEn2LbTXkCmxWC4KHvCQu7SEidR!Unun1KHujrdBUpBlMJTBlhOWD6GZYRlY5gkTI5hW8K2d0zQ8Hg3cfAebNMZSELpqkMw4JnPLPCTB4s8Tz4qKhZimApO!JMrP*2z4CYtcbLEl1gqR3UonKDhU*Ynipc4duLfl6KSIityVrKM2pXwqKEL!rPGzN*ozyCCRbZjT8H271Kcr5GKIpotxdZIRYnPlWLlGqmogbOlftwuc6Si72G2VD4tVbrfQndsG7z2LSjTvNegvwEGQn0P/results,1 34708,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiHZOOZxJE3zG8iiVoqSmtRLpXx!1l4RyxQq4NRe8JoZdphZZKCz*U4cd2kGvfIlZ7j5wuJmW!gMbozV8H3tYQABn6kVNNq8t!aMd93Nq*KlNtSqb5vaKnNBQq3vN!wALTZzSjItRpdPBRcs5CEtcRGVX!TxJXWoq9NDoBRE,1 34709,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiHZOOZxJE3zG8iiVoqSmtRLpX5!l10RyxQqwqm94LVn7GFmkYHO9zt13KUZ9IZKKXDygYW53bx1fdtYXHDewue1h5EAuK820Fj32rozrg6LV0OldXwcbq29cRck1PYLDwNoO0dqOi0mj3cDFyz0IS1xUBUN!viUDuhQp4dAKZhSEGWC5Yzlc1jGWDaHacb0HLZnbD9iih*3d1Mn8gBN520SyqE6BQPEfBaBn9xZ7Hlxq6pEiGEpOEUnVzT8s!AWLUm2JB!xVM7qcDhBg1KmE9VLHDvzx6mqtMqKXJQi43YlMmroA*3ZYuZv9GcSwUO2Y0*B9u9SUm6RiiJaLSW2SEWJr5US5RapqIGrpX7cLmukou9htVS!LFUOv4Xu3DZ47YM1vnmrrfsG7iCAxQ__/results,1 34710,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiHZOOZxJE3zG8iiVoKSGspSqZ*fZbeJZQoVcGoveGHGO8wsMtB0*U4dd3ECvaFSYP2Oq2lb6*q6snCpW8CHrrPwcesBMTmQALeWBirrXmt3*t55M1Raxx1xf9kZd0VCaT9b7AB140hQx9no8mbgioU!xDkuqqBFH5*iAR3q!OApGVMyooywlLF0CksYS6YwzZiewvaM7e!Y4svj3dSJPEDVdDby5VCdvAFiPgvPjx4s9jy7VRXCxzAXnKLOBS3*LLhZS5ItyTWW8kkdDsdrUMrUUb2EsTP*fqsKrZIsFblIeFyRDAa6Yj5bzPyN!YwiWGU79ORt*y4l5RapIKLFUmKLVJD4UimRb5EKBrhY6sfpskQq!B4WS6XzUvnwW2jOdYXHPljTVZfSui!pWoJJ/results,1 34711,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiHZOOZxJE3zG8hyLEBJ7BYTtZ*fxSuwTKECTu0Be2GGHWYWgTVtd2DnQ5zYTriSEjj5gKI2n4f49HjKGrargaWBo1Id4LpV9nnv7MC30KYUVip9bXQFV*uLd!FKpbF718iyFfoGhFJ9vUMH2xjtxHmcTZaHsDco!CnOYWOF2*j5Je7RvoYnGykZUjJHmWApYukcliCWzGEcMT6HHRE7DhjDZXw2dnEerDStinzZVxdvwDFfiedHIws9L97KCuJjWAqOuc6F2*5ZcIuWKFqiWyzlszoYjtdwKbuO7C2MHfnDKSs4S7KU5CTBcUU0GOiG!ewx8zfmM4lgk!3Qk7f9uxSle6SCiFZLkT1SQeJrpUi!RyoY4GqpH1!XNVLB!7BaKl2WyvvfgqkaCZ99q0Qr61Lpb*twhHU_/results,1 34712,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5ERt8JE3zG8iiVoqSmhRTKZ8fezeJZQoVcGov3jWz3mFmkXFt12*4fsOk6zWkxOdfPporlUT7je2M!z73zj!jAXT!SKVdbex7Y4*3E2cNqbHYqW*qqtP25Asqc734Dq5pLRAJVgyWT!1OPhE7pnzgJQSxf2EBDTnbxZICSwooGWA5YvkYJhGTY5hATIxhW8S2D4zj8nw3fgANrm47k8U0ZIcoACpfSazPnlWoefIoL0m0Yco4Dp1LCP*MuElJFCXRJZLUKA!aEznAZejI31Lbsf6x5aXgssiJIhLHldFkoAvms0bM35jPwIJFslNNUfbvVJSuoUosmk1F1lAljs!lImoNVTLA2VQ*bpc5VMn3MJsqn6ZS4bfQHpvaX*vO6K7!qIy9AcFUfj4_/results,1 34713,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5ERs4QtP8BrKoFVCIaW236ufX9iqxTKECTu3FXjzDDjOLwIzaHujpQLixIpQcuYt3V0j12etR3aSyYjiQupNisJ0DlZbmY7DGcbAnG9ejEaaV6rVXF3fqDwcRSqmgte3bRgt1dYRGfr25DqYfVVBmpJgsN2GurmA1Kd1Gq7Cx0xPxqK9JHSkFUIpAmWA5YPkcxgHjcxgDjM1hR8COd4zC8ng2eg4eTDtqmcXSV!doIDCfUeRnDxZ4XryVVijGsBQcDZ2rsP2z4BYtYbCEt1gqZ3UgnKgRUg4d6UsaO*Dvl7RilBc5KhGHcWU4GeiG!ewx8zfmM4lgk!3UU7T9uxTGe6SSiFZLoT1SSeJrpVC5RyoZ4GqpH1!XNVLJ!7BaKl!WKv1vYbz0rfvsGyl02zVSfQN!2IUw/results,1 34714,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5ERs4Qml!A1mORVCISTGt!vld20osU6iAU3vxLszgYWaRMf0wHmh1IPwdirwI3agDKbW42dJrWM5D!9nqBrqulUorCQjXgzIf3WjgIYzg2sA!tTCAny2XVvZmJ1yrtCWMYmxlPQh9BUKtvu6wg2lBwaozkk2WmzBXaFhJcii0cIVVL8SitidloGSekjnKBEs9ls5h3GN8DmMeY3PY0WPHB0b98nw3enIejOwHlYTWdqdgwDFfUeAnT5b3vPgoLVCIYSk46nYuXPlnwS1awt4S3mIpn9Xx4QQNl7Lbkb7FsXv!45IWjPIsRTniflwJjga6YT57zPyN!Uwi2GQ79hRs*y6F8R6pKKLVUmiPVJT4WimU75GKBrha6sfpskYq!h5WS6XLUrn9LfRNK!HYN0oM8lIr*Q34m4ZV/results,1 34715,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5ERs4ktdvIIu6KUpiWptI*fyuvUosU6iAU3ux157Bw8wi4zrbb*hhw!QnTK15s60565s2PWwZq9392jtAKIG1A3KtXKPNK7Bg129eVSi18YRe9W1TW2UuQKj11wec4NrOBAnBisFwU!4ChdixEiZehUkcXphHfc12kVIgpQiUAZYjlo9hEjE5hgnExBi2RWz7wDgOz3fjp!DBNZ3VWSx9dYoGAnNPIj97stDz5KO8IjGGqeB4OLkK0z8LbtISRUt0iaVyVAfDiRoh5XAiP6axI*!x5JXgsshJSSS2K6NJQxf0Z42Zv9GfQQSLbKeeou3fpShdI5VENFuKrJFKEp8rRco1UkkDZ0v9uF3mSCXfw2ypfFqq9L!F7tw2cO07rWzzXmvzDXI7feg_/results,1 34716,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5ERs4kqT5DeRSK0VJTcsSqZ9fsytimUIFnNoLXnvGHmYWGWjabidPO6GhM1hy5iefvni5Q!0sgJ!61sL91sEAg99VGqise63dxa*2izeDpXV0WFdXZWvc1RNK!*XhT4C6cailRDZ6vBu4!kIdRO4HWeCgTk!iR*taHAIlI0qGlBGWEpZOYZowPYUpwtQUtidsP2CSHo93k2f0AFXT2iSUfXUOBpB5ZIGfPFjkeXarLFiIYS44iScXOPyz4GYtcbLE11jKJ3UonKCBKeOJ8jmOnfjDVBZK6ixlOdPUroRHDV3Rny1m*kZ*RhGssh17CrZ*l!J8i1QU0WIptkUqSnypFMu3SEUNXCz143ZZIhV9D4ul0nmpvP8tNJe68tc!WNNWb6V13yD2gAY_/results,1 34717,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EQM!ktc39IYsaqUoqWkxkfL5XXuVWKZQGU7txV57Bg8zi4zt!mHDDxuWf8F0fOWEQm16bW*XwcIWJbC2wKqVbbR5a80Zdt3mVflSG0cY1NA2da*MBQi1vn*CCbbtjD9bsHI0fCh7gULsmISJV34ShxfmUFezXaCUSCk9ZYQViBVTWI5YPoUJxMQUtkVs!8A4Ds934yfvwTZdr7NQuuoUDHjmngR!9mSh59lHeUVCDHPBcX9y5ad*FtysJYqW6BJLclIHwwkaPmV*Ij*GsSP*seSV4HlZEElybFdGo4Yu6M8aM3!jP6MIFtmOPQXbv0tRukYqiihZiqyRihJPlSJyjVTUwGSpH7dLilT0PSRLFfNS0v0WunPbwLVvteqb91qbbwepehM_/results,1 34718,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EQM!kqb5DWS5VoqSmpalUj!*ZreJZQoVcGov9poZe5hZZKDt!p087kQOvcGShfo9zJbzofSdg49rD!EJriFsqA1Y558bf*7mXw2WztM5fWPrzvhLINTu8y2cAE3rUUaJcjS8GriEQh2EDpOscFLHBzGgQy0OkVISpUTKCCsIK6awnLB8ClOEqSlsT9j!hkka7u8mT!gBbNu5LJZDdYoGkPnIIj!7s8jz7FZZsRjDXHAST65w!mfBzVriZImvsaQndSicqIEp44nyKY2d!LelrJTMy4JpllO7Mp40dEV*tpj5G*0ZRbDKduop2v5divMtUklEi6XYFqkk8aVSTG!RShq4WOrH7bJEKvkeFksV81J6!C2058aGax!c6exL7fwXJ9F9Xg__/results,1 34719,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4QtP8BrKom6IQk9pEav!!a68SyxQq4NRe8Noz9jCzyNjeDDt!2LH0A4a3m1ZGdjtWXeXXRekB1rVR9tYNFmBKYG5hRy1to*Rrq0!w6hY76UulHWGQQ9vURuozEGr1eYUTbNtrryNYPnpcpD1DISpWwMBLP4jDE3Ooq1kVKDlSck8ZYRli2RSWIpZOYQIxMYXtEdvfMY6Px7vxo*dgm96oJJSuOgYDnvlMAj95sNDz7FZekhDDXHDcn1z64Z8FN2uJoiW6xlIxqYPhBA2fsj!Rv8SxI*8!5aXgaZ6RgqTYroRGDV3Rny1m*kZ*RhGssh17CrZ*l6J0i1QU0WIpskUqSnypFCm2SEUNXCz143ZZIhV9D4ulsnmpwv0W!lPbwLVvlTTNe630Nwvaf2Y_/results,1 34720,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4QtP8BrKolaAQk3qJlM!v7VVimUIFnNqLvfYMHmYWYejNsOOHHUu*7ATqcZfdjlVnaSTAVenBItoouHcDWAIldg32mVpCo*Rnq09212120pdKO8Igh7apjdQXS6jV42ZPgLbXXkmwfDRcJVxsISpW2ImXfhKHN!ZQV7MqUHKk5J4ywjLEsiksRSydwgRiYgrbI7Z*YhyH17vxo*cATW9UEkpXHYMBz3wngZ!8WOh59lFekhDDXHDcn1z66Z8FN2uJoiW6xlIxqYPhBA2fsj!Rf8SxI*!55KXgaZ6RgqTYroRGDV3Rny1m*kZ*RhGssh17CrZ*l6J0i1QU0WIpskUqSnypFCm2SEUNXCz14!!yRCr6HhZLZfNShbsW!lPb!JtFmuZcK*0NlWaAQw__/results,1 34721,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4QtP8BrKMm6IkJvVSqZ*fxW5imUIFnNqLd8kMO8xsBNDZfscPO5ZCL11LsH*H2rT4i1F6x6rXzuIJN60brEpetZWANGM1fFx6QDYdbgMcVktQ2jStOX3PukjXauM1!lbVVpozEmr9ecMJ0HbGPYJg!ei4SjhjIypWYOGlK!LwxAZ06FkVKLmn5I4ywjKPZVNY6rF0ChMeE1PY3mP7O8b98Xg2fnQeQHVWJ6EdumMw4JjPJPCTB8t7nr2VlyTEMBccd5NLV*5ZcLOWqLdE11gqJnV8OEHDpewm8pc4ds!*X*JS8DTPSEFSv66ERgtdsZ8tZv7GfkYRrLIdewq2f5eidItUFNFiKbJFKkp8qRQptkhFC1ws9ePtskQq!j8slsrmpYrhs9CdWoWvfdDSqrdamy*u34ez/results,1 34722,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4QtP8BrJcK7VCTWq7Ufv3Nd4mlilUwKm9sItm2PHMIrC9cTt62JHcOh5a5Ps3X410prcXKZy6yu5zRxqrxNmXTvKr9CRtpH3vnPVcPDxk*aiWWyH1s9Kn70kdD63UoOCUaA3XZ09o5cfFT7Cq1!EAjJSjyyu3Xo!xhlS!0DoUdnggAzr0pImUEihloIywArBiCssBy6cwBhibwvaA7W8Yhcv9bPQYPFjRG5nFduiO0UBgPqLIz!4s8Dz7KK1RjGEuOBom16H8s!BmLWGwhNdYqiZ1IJyoEVIOE!lTGjvwb7e0ZjQvC1ShHNaV4WShK*azxczf2M8oglW2U0*R9u9SGG!RSiJaLIW2SCWJL5VC1RapZIGLpX58XZZIJe*DYqliXqoafgv9SQn*2beSG*HSSv0FVZGHxg__/results,1 34723,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4QtP8BrJcK0VJTOolUj!*a1uJZQoVcGov7JoZPMwsMtDbYccPO5Z*YrlJXLFm6K4ai!rvFjQgZqyG!2UApFCCa8CnWglKm*fOnPCuu3mRvtXGEQY5dKq10pyR0OqvG!4AXW!8lmDl6HKVcMZGNKzCwmtfxOGFOdT1rImUMlBKTxlhRcCKKSwPWD6FiYCJKWwfsP0D4!HyfDd!9B5A9VZnsXXdMRrwzFcS!dmTFTzPPsprEmOYC477nWtf*llws5ZosETXWKomdUI4UcOn7Hfkb2nsgf9Y8lrwvCxIRfIwrowmA10xny1m*sZ8RhGssp16irZ*l6J0i1QS0WIpskUqSXypFKm2SCUDXCz143RZIpV8D4ulinmpyv0W!lOn8NgHLa36aLX5Bhq8gH4_/results,1 34724,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4QtP8BrIcK6AQ07JU6ufX9iqxTKECTu3FXnsGDzOLMPTDeOCnA0s*7ASqafruwCp5ubcAbW*AImbQ8NmNYAmU2DXYZ2oJSptLa65212120pfaOMIox1bVgzQ3S6j117s9wZ3mlQTLJ8Ndws0WomKFnXjpJ3F6YQ51NasCJUdK7ikTLEMsm8NSxNI5TCAm5rAjYscHxnF4vhs*ew!g!kEnoXTVORjwzFcS!MmThZ4XH!UlCTEsBcf9yaWf*llwi5YoWqJbLBWzOhhO0PAp!xP5Wxw78h9LXgqe5hkpSIrtSmjU0A392WPmb*RnEsEm27GnYPt3KUr3SEURrZYie6SixNdKkWKPVNTA1VI**i5rpKLvYbVUtixVuGuhv7bK3SxaDqqptfkGQhaANg__/results,1 34725,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4QtP8BrIcK0VJTOulUj6*tleJZQoVcGoveO0Ze5hZhKG3w44fdiz*dAPo!441pw6UvXVGDl1vHGKshq*rAI5AiZuD29NKUNqcOnN2q37xKkOp*QYY3FbVWmkujtDq!4c7AfxhXkmwcvS4Sbi4QjSscgOvwyAOL8yjvmZNpJRIKQNlhBWIFVNYjlg!hQnExBS2R2z*wDg!nu*Gj8EDqN7qLJa!OkYDgflKIj97stDz7FZekxjDXHA8nFyH4Z8FN2uJoiW6xlI1qYPhRI2QcjiRv6WxI*8x5bXgeVmQiuTYrowmDV3Rny1m*kZ*RhGssp16irZ*l6J0i1QS0WIpskUqSXypFKm2SCUNXCz14!!yRCr5HhZLFfNSlb8W!nOnws0irXpvtfkGeh6APw__/results,1 34726,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4QtL8BrKIm6KkJrWJlM*P2qvEMoUKOLUXe!0ZPMwsMrYz*YbvNyz9hsmoq1uz6sPI2xE2tVH2duktYJTA2gJcS9sofWz1CXbd5kX6UmlH6GXfNrWR!gyEWt2vcIJtO!1FBMsHw5e0ZyhExQqYeOknsX9jDnU1qwIlR0ruKQMsQywbw1LE0jFMICbGsC1i2yfGcXi9Gz94D7bpjEpC6apDMOCZOxL4yYuFnicf5SUJMUwFx*3JpZ*!WXCTlihaokssFaM6GE7Q8Cn7E*l7HDvyn0teCp7mGSlIiu1KaNTQBf1ZY!Zv9GcQwSLbsadg!3cpStdIRRHNliJrpKLE50qRYo1U1MDZUj9ulzlS0fcwWyqblircb6E7tQ1c!1ZJ03zWSj8AHFZ!KQ__/results,1 34727,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4QtL8BrJcN0UhdoodqZ*fta3EMoUKOLUX75oZPMwsAqMHu6PHHck*oUhlO9vLK9Qdad71AKvQ91svDTDUIM29twaIGMHewL0tN0Kqt06d4aq72HPfSuUIlttOtANXFyC08usGJ5hOK6*ISDlartxcoGENqaDQ2hd2fCEOdT1pIqUMlNJTRlgRsGIKywOWT2EsYGwK2wds*8BoWJ7PRk*egxF6kFlsXXeKBjzzgCI*e7KC59lbaY1iDHPBUX9y7cs*C27WEg6W8BpL1aROCCdq!JT9ifQ1jT3wH1taM5qXBapQHsaV4WSgK!azxczfmM8oglW2U0*R9u9SGG!RSiJaLIW2SCWJL5VC1RapZICLpX58XZZIJe*DYqliXqpyvwV97gR89o3kg*hopfoGQHWC*w__/results,1 34728,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4QtL8BrJcK0UQ02Iq9fO79jaxTKECTu0Be*EMHmYWGdsP44GfDyx995NgJ9nqA6skXKqTzQ0gM2j70Y0WGJTAvYWHammVNi!NucKqW!ykL7VxhFGOjaoHaVog1PrzDXawTW!!NfLJcJO2hUJUrICJl34S5yfmUFezKlBypOSeMsEyxLI5LEUsncMEYmIOOyJ2vGMch8e78Yv3YFU*6CSUrroEA555IoGfPFjoefFRXpIQw1Jw3O9c!umfBbdoiaIlusVSMauD4QQNn7LfkT*HsSP*fstLwdM8IwVJsV0JjRq6oT97zPyN*kwi2GQ79hRs*y5F6R6pKKLVUmSPVJT4WilS7JGKGrha6sfpskYq!h5WS2XLUoX7LfTXRsGxb7Uc1GutzReD*H6t/results,1 34729,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4QtL8BnKJlaIQ09q06ud37VVimUIFnNqLvfYMHmYWGdubYcePO5a!w*SizjtWGXXrP2UHe9oo!9ENFiBKYG2BXUvbKH1u9QV23WYnfam0IwxyaJvaSH0FQq2!3uAE2*baawiWj4abtFcoRMUKmHjpJ3F8Yg51NasCJUdK7ikjLEMsm8JSxNIpTCAmprA9Yvs7xnF4vBs*eQ!26Y1KQumqUzDgmQcS!MmDhZ5nH!UlCTHMBcf9yaWf*llws5YoWqJrLBWTOhhO0PAp!xP5cxw78u9LXgqe5hkpSIrtSmjU0BX92WLmb*RnFMEq27GnYPt3KUq3SEURLZYiW6SixJdKkWKLVNTAxVI*bpclUtH3sFgqm5cq3G!hv7QNXPtWSdO81kp*A5UHfZw_/results,1 34730,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4Qml!A7nUTVCC3dog9fO7tpVYplABp*YAuzBjDzOLwCg9HGh9IOknFD1K2cnzgVQcjtfRdFIYA!27Vj2Ui!oFUKUWZrwNBlZgBNcGNmm4aYV8s6tpbW*euGuFtISBD13baC6vQGjE1wfsYDolnTQj!eTUc3OFhlWkgEJLV1j9RCxqe1IFSu4puaNMsMxj2RyWeiydw5jH2Bx29NjxjlF*ejwbPTkPplVaJKG13SkYcMxnFPjJg!U9Ly6lJQoxLAVH3c6lK*8suEVL2FvCWywVszo!nKDhUnY70pc4ds!*X9KS0TTPUIFSP64ERwPdMJ89Zv7GfCYRbLIdewq2f5fCeI9UFNFqKbRHKkp8rRQq9khFA1wt9ePrskYqeh9WS2XLUoX9Lahz18Jn3wiu20sj5Dcv84Vx/results,1 34731,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4Qml!A1nUoiiJSW1a9fO79iqxTKECTu0Frz1jDzOLjB3MeOD1gaXvMHTDpzL6qvR4YFVnpB4tINoo!3GBkteUwNzCnkbaVunXXnew6hYv0pdKO8Iox75tYP8ZCI36usEJth!0VxIsnzyu0p6hEBUrYOClH0T9xBzqalYFSo6U3FMmWIZYNoeliKVzmEBMzGFHxI53jOPj8W785D3YdjAqCaWrTsGAZz6TwE8eLPS8uJWXJMSwFBz3J5d!!GfBLVqiaIlusVTM6mA4QcOn7E*kL3HsyL9PeSl4mmekICm2K6FRQzf0Z4!Zv9GfSQSbbMeegu3fpSjdIxVFtFqK7JGKEl8rRYo9UlEDV0v9uF3WSEXfw2qpbFmqcL!FoetbuPatkqZ9a5T!BuQLgE8_/results,1 34732,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4Qml!A1mulaIQk2Ii9fO79iqxTKECTu0Frz1jDzOLjO2H8cDrA0s*YVCdvFt9YJUd5aiv2owWEDNoe!!g5DUlMLewp5FWafPemjOsusVO!lIbR4DdrWoGaS5AaPTXDU6wbW!8kmD55HGV9gKFqFgBAy*9IOoX5lBXsypQcqTknjLBMsSyOSxFLJ3DBGJiDjsidnxgHB*Pd!Mn78GqftBJKF11CgY885UEfvJkoefFrbwkIYal4Lg*ufTDPwtu0RJFS3SLpWJWB8MJGj5lfyJ*i2NH*mPKS8HTPCMFSbFdCY0auqE*e8z8jf5MIthkO*YUbP8uRekeqSii1VJkj1SU!FopUuyRihq4WurH7bJGKvoeVktly1KF!y3051bBtW!1HNRHo803gZOAQA__/results,1 34733,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4ktD8BrJcJ0VJTWtTqZ*ftVeJZQoVcGov9tozeJhZhF1vhx1vdiz*gGmw8nzuFKyM1e7zNjjYpATWDnitdEqbl85cYNdv3mQotfGEQQ6daq00VyC0!usdTnBdb8LpgpWj4U26KxTiwCqYeB0m0Twxj*qaHSKlREoZKCOsQKyYwnLE8ilMICamsD1i!zvGcXi8Gz8FD071Vmex9NUpGgjMI4n87MFCz7OP8prEGOaC4!HkOkz*LLhZSxQt0TWWqkkdDCdqhJTDifw5jR359yWvBc*LglQkx3ZlNGnoiv5sMfM3!jOKYJXt1FO0*bsUpVukkogWS5EtUkniS6VItUUqaeBiqR9*lyVSyfewWKqYl6r8tdBf4A7hjdPSqtdWm2!ydnvB/results,1 34734,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4kqT5DWS5boqSGoqp1M*v2qvEMoXKcGov9tozeJhZZGw3jDt!2rH8A6a!f2VQmkHbz9toYYcSWFsgNdIqbV5ac4Fdt3mTvtTGEUY5tqoZpLkCodFfPZxg2874owUrJ8O7tFcoxIFVMPHaT!L0xBzqanYIlBIppadMsAKxYg7LEcvnMIGYmMP2iO3vGMfh8W787D1Y1Q06C6WrzsGAZx5J4GcPFnpefJTXJMSwFBz3J9d!!mfBLVqiaImusVTN6mA4QcOn7E*kz3HsyL8veS14XhakIjm2K6NRQ1f0Z4uZv9GfSQSrbMeegu3fpSjdIhVFlCxFtkhFiadKkWqLVNTAZKkft0uKVPQ9JEsVy1KV!y10l1bBtW!1HNRbo803xBR6Wg__/results,1 34735,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4kqb5DWS5VopC7RYTKZ!ftVeJZQoVcGov9tozeJhZZJzthx0*7lj!DZOyV2XaDlam1!7aDQ42KYG1A14jndLmvTVn2PWbnQylNp4wyKFVTS*NBQiNvn3BCa61JpwuWDkaPqW7QCEOrIKJ12ESxxfmUV!zQ6SUSCkDZYQViBVTWI5YPoUJxMQUtkds*8A4Ds9346fgwSnb6yyWvjpFA4H5SiI*e7LQ8!yjvCYxhrngeDi5DtM*C27WEkVLdI2lalIHw4kaIeVwIn9LY0f!Y8lrwfOyIBXJsV0ZTRq6oj9bzPyN*owiWGU79RRt*y5F6RapJKLFUmSLVJL4UilSbZFKGrhY6sftskQq!R4WSxXzUpX*Ldhzq!Dad1r26qPR5g4K1XvP/results,1 34736,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiH5EfM4kiZRc6lQ2zuyqJWipKbFVOrnd!1VYplCBZyai732DB5mFhnTtN2Kb1cs*oQpL4qn3ePL4fnhUMCWbpX5OncGEEpgbYBcSlMp*VrrI!zazbN0pdKW0MmurspW6hMQSvX9ASeYutFOQrC0N7xLc4JCbFgGE8*dJLZ3zKK2ZhtPSZGSOkoPSxBLhrAYsXgIE4iJIWyN2PqCcRyu78b3zoOpmlZFvrTV3htwzHvi!dGVhZ5HH!U58TGMBcfdybmbbiy4UUsULdE5lrJBHQzHa7iU3Yl8F8aO*MuS54LHaUIyEmO7Iho0dEZ*lpj5H*3pRTDLdujJ2*5bitIlUkFEk6XIEqkg8alSJFsiFTRwstSv22WKVPA9TJZKxqUy!1tojnUF175Rsq3eSqV*AFuzfHk_/results,1 34737,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKiEZO!ZxhKT5DWSBlaIEQ2xStX*ftbeJ5RQqwqm94EEz7DCzUTC9Hjdsv6GJGYWDBPAFTjNI1bTquKFl2w0gE2oE3PT1tZMWcrqDey3rXjeysZQ8t!9Sf8IApaW5nkcDc2I70MDzlTD190h0OQsHpUL3sa0rLdQJBJX8GGCCaXvlXo7T7OHSCXMCwEuaw8EKd*D9C7WsxbT0kgwlmZM8cCly6RSXIJdMcRw5PsVtkdveOIaX!7uxg8tgoDkZeWjRwQdwyh3x!uiuwsyzj7KC!BrmimNucuGOf1bcbKQYI8XPRMonfbAc7!FadhPZa1g76m!3rOAsyVKSkwTXFcXBQp*Yz5owf2M*DxU8FTvM5GP*bhXHa6yCihZbkTVWQeNLrUi!xipY4GKrH*8uS6yC38Niq3TeKrefhf7Y1vYDJIWu3yqpvgB3CpEP/results,1 34738,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*JpcKgUZO!ZxhNAop1ZqPwA5xAooxCTYEf38!kFiOYWKcGovXu*OZmdnlwBvWrFA2QIGF2netp*yxlrKr7XgMuAD6XOZkxNeULav2EFGVfDi7ZqGC7rfVoJ77x!6CIbRAqYt6a5tLT2UqBAshTirS!9juOlN13UeK*mOE2W867GPl5TU,1 34739,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrKolaCkJrVdqf37rr1KLFOogFN7sdeewcPMImMH4zJ!yFjxDpM7KzN8ZWzvlHWwp42yH1dnAaIE1hbYrbSd0q!9PsGu37zKUCrtCU66vmuN1BcgtOrzBifYftBBQ7BqNLxJe4FC7FkNE2*CJA5PzKO!ZvtIqZBSBcoIKxErp7ACsWIKE4iJKWyH2O6OcRwe78aPwYPtBqPyWPrqGA0E5jOJ*PzBQs!zj*KGxBjmguPh5CZM*yy4WUsULdE1lupJHQwnaoSUw4n8JY0d!fclbwQvqpLUpMB25TRp6Ir!bDHzN*ozimCV7dRTtP27FKVbpJKIFkuRLVJJ4kulSL1FKmngYqkft8sSqeR7WCxVzkvV*rcwnPoOrn2rpOnOrdLfByZ91g__/results,1 34740,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrKolaCkJrVdqf37rr1KLFOogFN7sdeewcPMImMH4zJ!yFjxDpM7D8p8ZWzvlHWwp42yH1dnAaIE1hbYrbSd0q!9PsGu37zKUCrtCU66vmuN1BcgtOrzBifYftBBQ7BqNLxJe4FC7FkNE2*CJA5PzKO!ZvtIqZBSBcoIKxErp7ACsWIKE4iJKWyH2O6OcRwe78aPwYPtBqPyWPrqGA0E5jOJ*PzBQs!zj*KGxBjmguPh5CZM*yy4WUsULdE1lupJHQwnaoSUw4n8JY0d!fclbwQvqpLUpMB25TRp6Ir!bDHzN*ozimCV7dRTtP27FKVbpJKIFkuRLVJJ4kulSL1FKmngYqkft8sSqeR7WCxVzkvV*rcwnPoOrn2rpOnOrdLfBy191g__/results,1 34741,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrKMRVFSk9qO1M*v2lZimUIFnNqLvXiGHWYWgRm1zegpI8UnbP2da66slF1GjjepzDAqqISW3WCBo7Q096s1QMUIrg3c3XIjpOoG1cOpO7xyX0rlCJbbQbTQ9AKEVn7doIPv6jQZqSbLBzcXKNiR1LDRxm*s9EIc6mpyjJQqUCpPmWBlwMo5rAhYMYexgLE57BCwwwOjYXk!Gz17D0aMWuaxdNU5GvDMVxT5!ZMVPC*eShsUY1gKjvrOjd*!WXCLlnCwhLdYqmd1QjhRw6fsO9K3NPbAf1zShtGiKlGNijCuHCcD3TCfPWb!xnwmEWyynXqKtn!XwniPVBLRaim0RypJfK0UqvdIJQNcLfXj67JGKnkfVkuVy1K1!y2M*SDgs28k1!K9leobmqiDqw__/results,1 34742,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrKIRVFS03qN1M!v8TaxTKECTu3FXjTjHWYWGeiNTfgpYRlY6Uvi6g!3WzOAVQoSdmwHaS6d1K7OtFEw3Cw4Bh2p4BrUEhqlL51uv8*fpC!Vxr62a2oj9dURavX57jpA12svK1gxWd4kXF0hjqx0G6*8Jk5PbETHmh0DpUBK4SkTLEcsn8MyxLI5TCAm5rADYoc7xnF5vBs*ew*Q9EaloRyrczDgmc8k8NMHCz0vHuUVCTEsBcd958pv*yy4RUsULdEtlspZHQwnaPiUfUf!EseO*PsjrwTPipyUJMNxpTQa6Ib57DHzN!YziWCT7dhTsP27FKV7pKKIVkuRPVJR4mulSLlHKhrgaqkft8saqeh7WC2VL0uV42!hb7vGXfugpGlea6W*AF9phD8_/results,1 34743,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrKIRVCoSW0q9fO79iqxTKECTu3FXnsGDzOLjB3MmPBTwrIPmIy6JOzYD!11hB1tlP3sRwsAJbC2wK2lbZS!dLqFXbfZS18q7QijHLumNlLfgFCrrzucYLtBewXBisnwLu0NCnFkJUy88pM4vTCHupodA6VASuEpEyxHLJ*DMsSyOUwgJuawA2KHB8ZxeL4bP3sPthmMSkPpqnMw4JmvJPDTJws9Lz7KKxJiWAqO!5MrP*2z4BYtUbREt1gqZ3UwnKDhU*Yn8rc4duQ*lrwSPCtyUpIM25XSqKEb!rPHzN*ozySCTbZjT8H271KU7pGKIlotRfZIRYmvlSLlHqmogaulftwua6Si72G1VL4sVbrfwtB2DVz7VknTXGulvwGVznzU/results,1 34744,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrKIlaJQ09qu1M*v2qvEMoUKOLUXe*EMO8wsAjsal*FTxooP2C6qG410*agzdhyUc8oAoo2yn4OzQKAEri3c00rbKX3p9RVO*eEgQ6m0Jzjo0bVG6hsQWvX1Dh2s7!qVBKsmy5u0NyjEkdWw8SZs4vTEPOprdoyUCilVoEywErFyDisQK!YwgZiYww6IHe4Yx!XxbPwcPFhITuWx9NU5GgjMZxL5!YOFnhdv5Q2JMSwFx0PnJmz*LLhFSxQt0S2W6lkdDCdqhJRDR*6Sxo78!yVvBC!qktSkwHHlNBnohvnsMfM35jOJYJPt1FO0*bsUpXukkohWS5E9Uknia6VIvUcqGeBqqR9flzVSyfuwWqpclqr9b2G89h189q2Spnttlf4GMXuAMw__/results,1 34745,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrKIFVCoabEr5fO79iqxTKECTu0Frz1jDzOLjBlGm*BTwrJPGKy8J!xo21GZth36CyxrqL96awClBOYGNtTSNEpfOn2FVbfYS18q7QhW2q6pR6lvQKjV*QNOMN2gvYxgxeTxLs0NCnFkJQy88oM4vTCHupodA6VASuEpEyxHLJ*DMsSyOUwgJuawA2KHB8bx8Xw3fvYeTDOMKg2lq87BgGe!ksBPnyz0vLiVVyTEsBQc9ydXfvhnwS1aomiJbrFUzupgOEHDp!xP5G9x7Mh*THkleFbkpCQZtiulUUM39GePmb*Rn0kEm2zHnoLt36Uo3SMVRbRaiuyRihJfK0XKPVJRA1dL*bhd1khF38NqqXxZqnS*heHaNXDtGyXHpq2V*gZooH79/results,1 34746,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrJcN0FJTGtTqZ*ftVeJZQoVcGov9tozeJhZZFxvh4wfMlZ8wHRWlGZs*9bbG!wYq93ndXAAUAJrB9xWOqXNa2dOsOs3rzKU2njCIIdOtVaaCxBa*fUOJ7iuN0FBsGo03KS7QCH2rIaJN2EShyfmUV!zfaRUSKkCZYSViJVTWIFYMYUJxMQUtkNsd8c4Do9348fgwane6jyWvjpGA4H5TCI*f7DQ8!yjvCExhrngeDi5CdM*C27WEkVLdI2lelIHw4kaIeVwIn9JY0f!fckbwYuqJDUpsF05TRq6oj9bzPyN*owiWGU79RRt*y5F6RapJKLFUmSLVJL4UilSb5FKGrhY6sftskQq!R4WS5XzUrX*LfSnTsG177S06txq8w2cqHxc/results,1 34747,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrJcK6BQk2Ja9fO79iqxTKECTu3Fa3sGDzOLjO2HMeGnhGXvUD5106pOJ!yoGq2usGsGbT!60QJICawt8GtplTavrbnArtvspJ9q4wijHFtVD9JcgVDrrxucYNveeBXBisnwJi3oCHFkJRRe!SJOT8yhbs6OgVIgpfCUCZYjls9hGWLZHCYQE3PYAbHDHeM4PN6Nn70Hq*pBp2HqZudgwDOfSeCnDxZ6XnyUVyTEsBQc9ydXvvyz4BYtUbREt1gqZ3UwnKDhU*Yn8pc4duTfl7wSPCtyUpIM25XSqKEb!rPHzN*ozySCTbZjT8H271KU7pGKIlotRfZIRYmvlSLlHqmogaulftwua6Si72G1VL4sVbrfQn9pFVz7VstBNbU231Pcflk_/results,1 34748,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrJcK0VJTYqJ1M*vstvEMoUKOLUXvHiGHWYWGd92fSIPich8r7HkDG4!oDCt663rfSL2jfO3TjtjAXKd9bcLbH9TPXSotTfWvTbuBLvD5kVjaR017htTw*NnINT28wodfNM61FWiGF3etT9DofaihEVWuKjDkxjQoRb7QCmIUiBlhOWE5VNYRlg2hSnC1BS2I2x3xyRdHu8mj!jBm7azaSiH6hgMIPOZBX76YJHn2UdlxUIMc8FJ7Fzh8s!Cm7XEyRJfY6mc1KFwggamjB3lSxw78e!3slIyK3JWsozGlfJooCvms8XM35jPKIJVtmNPwfbvUpxvkYoiWizFtkhFiS!VYuUWqWiAi6V!nC5LpKLvYbFUPi9VDr!F9tQYOPa91Z15q637AnLjhGk_/results,1 34749,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrJcK0UBk2Iq9fNr7zaxTKECTu0FL8x4h5lF2PbDmPBTwjI7SiiJq9*dajvZtgk7qlZ21j0zg7Yf7WgdRD3Hup21tEqb18Zcvje2EkptsOHYqHqQ5uoItf68uQ626Q3oCVZMLp20V1eIIyvdwitYxOmJedTX7BgoBVIKoEywHLF8DssQy!YwgZiYww6IHe4Yx8vj3fgZPFjVDzoNpa*OwQAwn0ngpw8Wel7cyisSYlgKjkPnCpZ*FtyiJYqW6BZL5awOhhM0IGXoyF*i2JF*v!WV4FmRk5JkOK6URgPdMJ89Zv7GfCYRbLIdewq2f5eidI9UFNFqKbJHKkp8rRQp90hFA1wt9ePvskYq!h5WS!XLUqU*FvpLo*yZouWg3mptvgCJkYEr/results,1 34750,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrIck6KkprWJ1M!v2W1imUIFnNoLXpjxDjOLjOtsn*BDwjLXSyiJrz*82lh5OyVs3zVNq7R*aKx2t2vvPEYHkvNba!mUNqfWnL93XiWU2mDHvlW1lebiCbX!fPcdXNsZEBSsGF3epLv4QuxZ6RdewSIOT2xAh5rtA6VASgGUEZYjlk9hGWLZFCYQE1PYDrHdHeN4ebwbP4IHpzqr01AO1TEYAOYzCfz0wULPs1t5RUIMc8Fx6FzB8s!Cm7VE0RJdY6mc1MFwggakDB35Sxw78u!3vBI8K3JSkgzHldJooCvms8XM35jPKIJVtmNPwfbvUpRukYoiWixFtkhFiS!VIuUWqWiAi6V!nC5LpKLvYbFUPi9VDr!F7twqf!w7La16rbX5Aq6cgYA_/results,1 34751,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrIcK0GhhrJU6ufX9iqxTKECTu0Frz1jDzOLDHTDmPBTwrIPO6hb014gYcdeAvSdHu26GTR8tiNYmBI7B7ujlqC0uTTmalfdYit9qY0jjHJsVD1Ic7eEWn*19gRoOuN1BCsmj3cJd1uIIyvtwCs*iNMLc6ir2TFQCqQUnjLBcsTyOSxDLJvDBGJiDjsgdnhgHB*Pd!Nn7wFUN!g0lK46BwOe!UoCP32y0PPiVl6REMNScNyfXPnhnwW3aImiJbrFUjmrg!EEDZ!yP5G*xbEj*zHlleBZkZOSZNiulEYN3dCfPWb!Rn8mEWyyHXsKtn!XonSPVBTRaimyRypKfK0UKfdIRQ1cLfXjdlkjFX0Pq6XyZanS*Ra6a6PstQ9aDupWa*MN6uN*YQ__/results,1 34752,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrIcK0FJTWpTqZ*ftVeJZQoVcGov9tozeJhZZFxvh4wfMlZ8wDRIdekztlfSnmDLWO0!b4MDhBJYOyC30iltTp05w67fvMlQauMJgxw61VpprkBo9dcdTnBdb4KEYNVoeJfuCoXYsxom3oRJHF6YR33N9pFSIaUKlBFWIlZOYQVixRQmEBNT2A6x3QPjODzfjR!DB6d6q*NY!uoYDQTmK4n8*MlCz7OP8obEGOaC4!HkJkz*LLhZSxQt0TWW6kkdDCdqhJTDifwtjR35jyVvBC!qktSkwHblNGnoiv5sMfM3!jOKYJXt1FO0*bsUpVukkogWS5EtUkniS6VIvUUqaeBiqR!3yxKp5HtYLFXOS9X!t9CfOwXXvtPSqkurzTeYNX0k/results,1 34753,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdP8BrIci6BQk9qu1M*v2lZimUIFnNoLuzDDDjOLwIzaZvSUkeIDirhy1cmMHO9aCtsLPkBvpbFQLtwCUigtzedgDbAxgnMDA1puhFSXXnVw1V0cuG!lcgTLYVKruboBoZVfMNuYflRelpFqcnjn5gYNO5IaCm18YacX4lDXk2OkVIFSecoEKwNWzmFFwIo5jAWMzWGHgB0eGA2H57PRs*dgxKhlHlvXnaMBz3xFkZ8*WcHz4q20QTGGpeCon9z48s!CW7SEgyW8xVI9qxPCiRo!ZT!RvqWxB*7jlDaMFlWJalSEdeU4WeiG*ewx8zf2M4lgk!3UU7T9uxTGe6SSiFZLoT1SSeJrpVC9RypZ4GqpH1!XNVLJ!7BaqlyWqt1vYex6AZ99I7kW11aqb9QWhCg_/results,1 34754,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdL8BrLIiiJSk9pU6ud3bSuxTKECTu3FXnvGHmYWgRn0mPBzwrIPnDS0nRlBwzVhxx7gDhoRpcF83kaDBEpwbfBMLU0D6tqpFnft5k26EpQljHLsmlpL1SOhhq873mC6QTklwYrJ8C5Nj4U4shInXrlJnF!YRW3NjoFSeErhKBMs91g!h2Uey!Yw4TExhx08dnhg3A*PZ!MX58E0g4Y0lLa6BAOOeSKBnz5Z3vPiUV6REMNScNzdXLnpnwW3aIl6S3SLpXJWx4cTNFzK7kb!Gsfu!Y8lrwTPipyUJPPtSmnU0A392WPmb*RnEsEm27GnYPt3KUr3SEURrZYie6SixNdKkXKPVNTA1VI*vi5rpKL3YbVUvixV2t*C0HYNfvYNSN281aC!AdmcgCU_/results,1 34755,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdL8BrLASlGonWIq9fO79iqxTKECTu3FXnsGDzOLjDXDmPBzwrIPmFql2oQd78b0sKMHZT*70QJACawtcGtpG6XbTl9h12320pdKO8Iox66pB6lvQKjV1x1OsJ3RXkGwYjK8S3uDQhxZCROv*CTOL8yhrmbHQCmQUnjKBMsRy!ewDLFsDhOIiTnsgNjhgXEcnu*GL96Dbcyg0lC66hIMeOaJBH76ZKHnxUd5RUIMS8Fxf3Llp38W3KIlipboFkvlrA6GEzR8yv5E*hrHjvzHkleCZ0VOSpJhu1IaNXRDf*aY!Rv9mUSwyXbsKdj!XYrSPVJRRKulyB6pKPG1UqTcIxU1cLXUj9tljVT0PayWypelSvdbMNeugWvfKjk0b7XS30O6fMc_/results,1 34756,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdL8BrKolaCkhnqJlM*v2lZimUIFnNqLvfaMPcwsAujMkPBjwrIvnGTfG6WHtoFL20PCBOOIaKPgfhsACZTgGvBMLaFR!qPVZ9y1mzfpSqUtYZB4R22kviKhVg!8FaDttFMSrBgNnxKuWIg9K3HilZvE8Y1Z1NZsHyiFpxSOMsJyj!VTWOaxbAoTHhNT2M5juyfG*fB6Nn5yHqDpjEpDaatTMOCYBxL46YvlPc8e5RUJMcwFx93NlZv!WXCzlqi3RNdYKid1fDhBw6XsbuTvceye*1zySvCsyElJMt!ulEYNXdGfLWb!Rn9GEayyHXsKtn!XonSLVBTRYimyRSpKfKkUKbdIRQ1cLPXj67JEKnofFkvl81Kl*S1057bBzz4oaZpLrfQ3Xm5*wA__/results,1 34757,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdL8BrJcl6AkpsVE6ud37VVimUIFnNqLvfaMPcwsAtv1Q8KPCcvsIH3JCgKrT6jUWZpGJ2zfvcOg2l7db8AySltgmF7b!3WwQKTuhIWbammVNm!taWDXbV6lL7VBgaFVdS*NBQi1*vqAG2zbGa8vWDEabtJeoBB7VsLEKz!J4wtzqKvZPlAKpBSeMsJyxPIpLEMsm8IEYmIK2yG2e2Ach!ez8ZP3YFXX6zSUrjoFA555IIGfPlnoefYor0iIYS447m!u*PTPgpu1RNESXWOpnNTBcIKGT9nfyF*j2JH*WPJK8KzISUkybFdKo4au6M8WM3!jP6MIVtmOPQXbv0tRukUqimixFNkiFSW!VIqUW6SiBi6W!vF1WSIVvQ!LpfJ5qdL9FrqmVfDZt1r26lxr8w1jOoa0/results,1 34758,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdL8BrJcK0WhJsVESv!!a68SyxQq4NRe7LVn7GFmEdiuHxJ!TFj2CdNVfiVsr7qbUU0L1SDvgJhe21s7WCBQAmsLZ2pplTZvjTnDrttspS!1cYRBDo2qe2kuQKj1*Qo32KYzXkmwYjR8SHuBQuxZCROv*CSOL8yhrmb7QCmQUnjKCMsRy6ewDLFsChOIiSlsh9jugXEcns*GT96DVV2v01C66hQMeOaBBH76ZKHn2aO8IiGGueC4v7ny0z8LbtYSRUt0jaVyUgfDCRo!ZX8jf41jR*5jySvBsyInJcmwXSmNGrqiP1vM*I3!jCJYZTv2FGz*LkXpFqkoosVSZItUlPhSKVJukYoauFjqx9dliVT0PiyWyuelSvdb6M6Ngs!!1bJX77U231gVf5g_/results,1 34759,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdL8BrJcK0WhJsVESv!!a68SyxQq4NRe7LVn7GFmEdiuHxJ!TFj2CdNVfiVsr26dUU0L1SDvgJhe21s7WCBQAmsLZ2pplTZvjTnDrttspS!1cYRBDo2qe2kuQKj1*Qo32KYzXkmwYjR8SHuBQuxZCROv*CSOL8yhrmb7QCmQUnjKCMsRy6ewDLFsChOIiSlsh9jugXEcns*GT96DVV2v01C66hQMeOaBBH76ZKHn2aO8IiGGueC4v7ny0z8LbtYSRUt0jaVyUgfDCRo!ZX8jf41jR*5jySvBsyInJcmwXSmNGrqiP1vM*I3!jCJYZTv2FGz*LkXpFqkoosVSZItUlPhSKVJukYoauFjqx9dliVT0PiyWyuelSvdb6M6Ngs!!1bJX77U231gbf5g_/results,1 34760,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdL8BrJcJ0Whdoup1M!v2RWxTKECTu0Frz1jDzOLjLNdn*BzwjLXSygp8ZMPX7RWyTZhR3u9Nkr7RdNp99n2biQ5v7eWTmnz0pibXx0WWwmlNnhk36i6k!buCbX!evcnuMYaUBSsmDzepLv7QhxZ6QdewSDOT2xAh5odA6VASgGUCZYjls9hGWLZHCYQE3PYAbHDiHF8PN6NX8CDU7bTaSiH6hIMAPNEAj99sNDz4lZekRDDUnAcTq5g!GfBLVqiaIlusVTO6mA4QQNShhP5cxw78scprwTPipyUJMN2pTRq6Ib!7DHzN*oziWCT7dhTsP27FKV7pKKIVkuRPVJR4mulSLlHKmrgaqkft8saqeh7WC2VL0uVw2*B3hrlr32nZadea22!AcGngao_/results,1 34761,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdL8BrJci6Kkhtqu1P5917YSyxQq4NRe8JoZ7zCzCMygbUbPGSneYTGWd9Jk5DjqYZTafkFpNVeGC9sPClhKS*NxswbIGMHewPmWGyHVS686uOtu3rgvpTsALW0vWmhyBUIrP0foYFwzp8pINbm8cXOFgh1JDQtt*MLOT8ShribHSKkCpfKUCVYGrJzDioAVcxgLGJvDDgE73DEaLo9noxfvwYhByzyWrrpEA555QpGfP1jB8!JR2qAYw1Jw1Hdu*PLPglu0hIMlvMVSPasTwokaPmXfkT6nsQf!fUsbRouqRDUqwrhynAx0w3z2mPkb85lEsMl26ina*l0K4z1SSUSrpdAeqSTxtVKo3iOVDHC11I!vyxqp5H1YLVUuS9XutzB0vXB*Gcm1eG2l!ga0iYTG/results,1 34762,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdL8BrIcl6KkpsVEav!!a68SyxQq4NRe8Noz9jCzyNiuHxJ!TFj2AYPqzNA22qivhO1fbuYM66bX9nYdLMCUwNzCjlpapc25NQ2susWr9KU2jjDIoVV1L80FCLX!fIcTbNsZryNYMXq8SXuBQuxZCQOv*CCOT8yhrmb7QCmQUnjKCMsRy6ewDLFsChOIiSlsh9jujnF8PN6Nn7wHq7pep6F01SkY8MwDCfz0wULPs1t5RUIMc8Fxf3Llh38W3KwlipboGkvlpA6GEzR8yv5E*hzHjvz7lFeCZ0VOSpJhu1IaNXRFf7aY!Rv9GUWwynbsKdj!XYrSLVJRRIulyBapKPGlUqTcIhU1cLHUj9tliVT0PSyWyuelSvdb6JpWwbVvtezVa63NN8g1f1s_/results,1 34763,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcSdL8BrIcK6BQk9og9fO7tpVYplABp*ZiL55hh5lFYHo9JPSckOwTNtmPun!0XCXk2EjeDQ0UrTKj5kpIqAXXV!AqLc3YDQZuwQiuDXSpuRFSXVt1g1N72HFXSmUJAx9aUUObOxBq!fWADqbtldNmpJgsH9zcoWBHUsJGK7ex8xuxqK3JMVAKTykcZYLlHsvnsMxj2RzGPMbmsIPHDk!M!uX1bPTiPBjRa5mG0laXYMAxTyjw0xfLe168lVYoxLAUHHWdK7f9s!AWLWFvCW!xVM7q!HCChkvZdaTvceye*7ykFaNZkaMSZX5cKY4GumE!e8z8jflMIthkO*YUbP8uhfEeqSii1VJoj1SU!FopVO6Riga4WurH12WNVPQ!rJbKl6VK!1vob62Az76RXIumluob!reGVw__/results,1 34764,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWlyaCU!AVnUSlFS02Aq9fO79iqxTKECTu3FXnsGDzOLjOn6IeL7iCVXmF6qY8TKsqqeYUP3ynxeBgP7lMDaALWWplH6tdUn2LWbF!lKpS1hkEPb1L3UZyDU6usDTjBtp52AYNloeJfmDIUoWQ4TL9wk9g*MorZmpadkSMkcZYSliKVTWIJYMoUJxMQUtkNsd8M4Dvd34wfnwTRdr2Jf2urgDTjmI*H8!M5Cz7OP8oL4GOaC4!7kwk3*LLhZSxQt0TWW8kkdDMdruJTdifwpjB35tyUvBE!ylOQkwXbFNGjoiv5sMfM3!jOKYJXt0JO3*bsUpVukgogWS5EtUkHiS6VIvkUqaOBiqR!3yxKp4HtYLJXOS!X2t9Cd2gaufaNk37zVSn8DWSZ7iA__/results,1 34765,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWlulfoHyKIWRUlM66VSP7!2V4llChVwai*22jN4mFlkYDBjwo8Jyz7s9PwCCauN6noYlbGb2ij4vIxgMUrsGiy9kdAq*drrzu66zYv0pdKOMMqxbxsj9dkSGvX1bk!AftBeRLBiMlwlnG0halbaiVd!EscH5lBXszpQCqQUnjLBcsTyOSxDLJvDBGJiDjsgdrhhHIf7u*GT9wDtYFQaSledggHPfCSBn95Z6HnxUV6REMNScNyfXPnpnwW3aImiJbrFUjmrg!EEDZ!yP5E*xbEj*7bkleBZkZOSZNiulEYN3dCfPWb!Rn8mEWyyHXsKtn!XonSPVBTRaimyRypKfK0UKfdIRQ1cLfXjdlkjFX0Pq6XyZanS*RaGrm*ttQ9KmvatUfobrup98A__/results,1 34766,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl6qZpPQBa1UpTUtJhK*fyuvUosU6gMp*Zirz2Dh5lFxvTDmPB9wrIPmJ6Ojwmrj8!w1IMyn5fRwC4lsDZAbKRplX7p9Al27eZFulJpSxjl2LXNIPUZCI36eocTTNdrd7xgxWR4k!YMhahZCROv3CT2d8yitma1pxRIKRxlguWI5XNYhlg2hwnExBy2Q2x3xTgOt3fjB!fBtP2gUl*a6uANOOY98fz0xkLPi4*yivgYloLj7uTKTf8suEVLFC3RNZbKWR0Mx2u4lN2J*CGMHfnXJa8Ez4qclCTDdqU0aOiK*mwx8zf6M4lgle3Qk7f9uxSlW6SCiKKlyBapIPFYKVJukQoaGC3143aJkQq!h2ipfFmqtL!F*tS1cO0bJYf2tVH6G8ukevo_/results,1 34767,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!AznETVGI3dq0av!!a1uJZQoVcGov9poZdphZBEbpIaH7hGRvsJ3EUXzwoVMyIbV6hqXvjkJ3wxcQpBbmvR8M8DCCs4FbG25aIU!dPMNVe7HnrhTSEgZo1TaaywsQGvH5Ch2MbW4FGSlGy5WbCxSsJiVstHIb2z8Qi9qa1IFSeErhKCMs91g!hWUey6Yw5jE2he08trth1C*3Z6MH58G0Sos0lLY6BAOO!YgCP72zvOfZW2mFQgxzwVHXuXLbPwtu1hL2lvAaS!Wkjg8naLiUXUf6FMfu!bcjrRjNihyVKPPjSnE00BXz2WLmb8xnFMEq27GnYPt3KYy3SEURLZZCW6SixJdKoXKLVDTAxVI*vi5LpKL3YbFUPi9V2t!COnctfPaN4Lp9aYT8Bpmegm4_/results,1 34768,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A7nEoijUtJhI!fysvUosU6iAU3vBa8*Yw8wiY*phjPgxYsk3DO*Xc6NG3TYRK7tealjWgzLXbjSAUgJzAxsqaWqlz61uYNUudtKVym4woxzbuhqkvgChUrcvOMG0vXYygmWTx6c0FyhEyXIYeOEGcXxhFrU1Kz0lQ0rmKBMsRSydwxLEkjlMICbmsANihwfG8fF8N35yHkzdDyr2pa1O3oBjvhLPj58s9Ly4lRfEx7AUHHcnF274Z8EtWqJoiW6xlM*qYDhew6XsTuRvYezIf0x5IXiSpSQnCbYrpkFDN*Rnj5m*0Z9JBJtsh5687d!lKN0jFUS0WorskQoSXytF8j1SQQNXS*24XdZIBd*Daql0WSq3v4W!aWu49o2SQ*1RKX0Hpy5!3g__/results,1 34769,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nUTVGIaVkq9fNrdptYplABp*aCF2a8w8wiDF0*RPIYiQQGjSVz9btbwbQvkSg1gIGrsYN7bHsDH!0ADuUjDdzmSkNt7HNjz997W42lsdRzaOqq1*biCJX5fHMdoOksSiqRTS5XDRdXqFLkbpEFLur4IEZ0rEXpKRlRMqRMsJSwdA5LCEvmMEWYmsMOhB1umKTL*d3kCT1A3fUm9uVYnbwBZD4yz4*vLPK8uFUWzMewFJzEzgUu*yy4RUucLPEtlvJZHQrHa2DK2FE!hbET*3YrCyWTLGU5S2hcMQ8GumE!e8z8jflMIthkO*Tkbf8uxfkeqSCi1VJsj1SQ!Foplu!RCga4WurH32WNVPA9rJZKl6Xy8Vjozk2Nx4ru69fK2C8TRIJ*/results,1 34770,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nUSlGoSbEr5fOz9iqxTKECTu3FXnsGDzOLjBlGm*BjwrIvmKS2KmG1llb2sKVHZb57awChBNYGyI00rdLvnT7DrtvspS!VdgQrbdc2o9QXIDTqdoUTTDdoLyFYMRk!pblAIWpWwsQrP4njC3Ooq1kdKAVSCk!ZYDli!RyWIZbNYQIxMYcdEDs8MI7D8934yXsw7TCqNJSuOgUDnvlKAj99stDz4qO8IiGGpeC4P7ny0z8LbtESRUt0i6VyVgfDCRo!ZX8if4tjR*5jySvBsyInJcmwXSmNGrqhP3vM*I3!TCLYZDv2FGz*LkXpHqkootVSZI9UlPhaKVLukYoauFrqx!2yRir6HlZL5ctSpfstDOeuhWvfKDm2H43Sd*Z9fTM_/results,1 34771,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nUSlGoaWyi9vO79iqxTKECTu3FXnsGDzOLjB3MmPBjwrIrTH13vQ0mYXUvPy3saaPsrR8tQJTA2gK7kbZV!rXTZ9h1m730pdKOMMqxaxsj9QUIjfr6gBNsN2ivIVgxGd6lvUAhalbCxCs*ieMTc6irWR0oBVIKT5lgOWL5HJYhls1hAjExhx0QO9wxjsPj3fjJe7DtYFQaSledggHPfCaBnz5Y6HnxUV6REMNScNyfXPnpnwW3aImiJbrFUjmrg!EEDZ!yP5G*xLEj*77kleBZkZOSZNiulEYN3dCfPWb!Rn8mEWyyHXsKtn!XonSPVBTRaimyRypKfK0UKfdIRQ1cLfXjdlkjFX0Pq6XyZanS*RaGc9fCtW!VNO1bo*Q31IB9zg__/results,1 34772,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nUSlGoaW0S9fO79iqxTKECTu3FXnsGDzOLjB3MmPBjwrJPmD6M0qPsE1b3St4U7Gqj7LUfLYCUwNoCv5G2Vfq102fYdZu99KXSjjDKsWsbI*UFCI36gjOt7QbtVQQrJsO7tBcoRM1KmHjlJ3F8Yg51NasDpUBK4SkTLEcsn8MyxLI5TCAm5rADYoc7xnF4vBs*eQ!2HYxKQ!mqUzDgmc8k8NMHCz0vPsorEmJYCo77kys**bPgFi1RtES3WCpndTCcoOFT9ifylzh25N!XvBI8K3JSkgzbldKooRv6s8fM3!jPJIJNtmNPwfbvUpTukYoiWi1F9khFia!VIuUeqaiBq6V!3C5rpKLvYbVUvixVut*CcO5auPatkqZ9a5T!Bj6tfn4_/results,1 34773,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nUSlGo3WIS9fO79iqxTKECTu3FXnsGDzOLjDXDmPBjwrJPmHpzU33Cag5rPSh77UcL25TA2gKzkbZV!rXTZ9h1m730pdKOMMqxa5tB6gsQGvX1ASfYzmh*vmDFZHiX9gKFqFkJE6*8JI5PzKGuZnWgFEgpPGWC5Yjlc1iGWDaHCcTEHHZA7HDHOA6Pd!Mn78G2ZlBpKF11CgY885kEfvpgoefFR3lFQgxLwXF*cuWnfxbcoiWKlugWS!WsDoYTNHzK*kT!EseO*PuSV4JnRU5KkmG7Uho1dEN*9pj5G*2ZRLDJduwp2P5ditI9UlFEq6XIHqko8bVSpNwjFTVwtdSP22WNVPQ9rJbKl6VK91sw566Fa98qObRvjdLfHlB70A__/results,1 34774,http://www.nhsidentity.nhs.uk,1 34775,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nUSlCIaVmi5POztpVYplABp*Zirz1jDzOLALp!iPg!Ysk3Tup!klcYIlaqSwPQdBrLVt4Acd0ruLYDII0SXAOerCTUSn82!oi7ZrOVtlTaEAY5NHXVS31GQqXuX3iDvdPoCZaNhouEMxaiZDlOvLCT2L8xg5qalZ6SOUpmKSMsdVg6hSUOS6Yw4TAxhe0ctnti3A2vZ!MH6wHqrlexL0118AYs8514fvxiOc!zR3lBfAxzwXF7c2GnfxbcrCXqLNE1lvJJHReO17Ap2xv5Rxi74z!XvBA8yVKSk8S1K6ZBQ1f0Z4uZv9GfUQSrbIeevO3fpSjdIhVEtFiKbJEKEl8qRfItUkEDF0v9!LoskQreh8VS6bxUbn4L3bGp8bMPSvb1qVL6ASG*gjQ_/results,1 34776,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nUShGpnXqpVPXra7xNLFOogFN7wQsz3mFmkQFjh4QfE5bBIH1JXP3m1k9jElb3Sl2VBfdMWwXvlwEcREcOuJ2NhFbp506fvzdepC!VxoZD1zZW6t4RGvVxdR2gM9rrCVZMLq8SeleImpVu4ZVfxPGBjehYszpQCqQUnjLBcsTyOSxDLJvDBGJiDjsgdrhhHC*3d!Mn7wFaY1UayrE6BQOe!UgCP72z0PPiVl6REMNScNx3rvzyz4JbtETREt1iqZzVwXCChk*Zd!RPcezIv93ySvCsyElJMhxXSqOBbpjPHjN*Yz6TCDbZjj0F279LUbpHKopotRTZIxUlvlaKlHukogGulvpxuqyRir6H1VL5slQ5*hbMuWvdsQ9K2valUfoLRraBSQ__/results,1 34777,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nUpCiJSW0q5fNjdptYplABp*aCF2a8w8wiYzvTR3wfscT2Ekri6k!3XpuGRqxsOnNxT7RR9uvcWwfQgWHdvkraWun3Vh!*t50llEpju76tKyP1yREqdbu6DrbtNKgJlo0uF2lPrhAly93CC1jE*oUN6FCz0lMypGRAGWEpYukUliCWTGECMTGF7RDbPTCOl!e78QN4sHVnVOzLoTp4A8B8JZ4fP1noeXYrL4iPYS44Dp0LWP5ZcLOWKFqiayzlkzoYjteAlKEjfwtjR*7jlheCJ1lKcpLguGIaDHTFfLaY!RvzGUWwynboydv!XYrSLVJBRIulyBapIPGlUiTfIhUMcLHUj9NliVTwPSyWSuel8uG30B3b2h37VklTf1RK3wHr8oAj/results,1 34778,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nUoiip3WISpX9fsytimUIFnNoLXnvGHmYWGWu6PuLHiCW2l1BS4iafrvgy14iVjbkpt6A7Za!X3o4E6*ZV0tZKv7a6cavD4kVCqTQe17d11Ul9doRK3T*cCbY1GtQEyyaPd2nPrhAly93ACxjE8YkN6FCz0lMypGRAmWApYukcliCWzGECMTGHHRA7jBjHx!Pd!Ak82Np0KvblUJ28AWA!E8!PHyz0vLiVF8THsBQch5MLGP5ZcIuWKFqiWyzlszoYjteAlOFE*hLGjvxxygvBkywlOUmwXTENGrqhP3vM*I3!TCLYZDv05G3*LkXpHqkgotVSZI9UkPhaKZLvkQoauFrqx!2yRir4HlZLpctS!fBbME1bu2vfKtnVb5XS36mdgEE_/results,1 34779,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nUoiiJaW0i5fO79iqxTKECTu2FXTyDh5lF2A5mTPgxYdkXFKO63o7KJKzW8qqgWCVN!wGwNsreLqMFFiVwb!HBRtpW6fded7DqFi*St0o7wijHvm2M1GcgNOr!CTvYftBeTrBicrlKe4ZG1KyEwitfxPGFOdT1rA6UAimFp0ywHLF8DssQy!YwgZiYww6IHR4Yx8vz3fjJe7DtYFQaWtedggHPfCWBnz5Z6HnxUV6REMNScNzvXPnyz4JbtETREt1iqZzVwXCChk*Z78jf4tiR*7jlleBZkZOSZDiulEYD3TCfPWb!xnwmEWyyHXsKtn!XonSPVBTRaimyRypKfK0UKfdIRQNcLfXj77JGKvoeVkvly1KlOxaGrm*ht4!HSaP0NwYMgZA_/results,1 34780,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nGSqwQ03qJ1M!vsZtYplABp*bCLpphh5lFBnozJPSYkAwG7lpk!w9bxUV17U3pVpqE1KK*G5BgMW0k3LsBLAWPXLATGg5C6lbp8*eAjrtWaj94UKIxXF8toZGf73YCqF47XUaKyeXG4WobVpPSFlq5wo4vZETHntSBUnhK4SgTLPdYPodlHsvmMOYxNocdPHZ4YNRfnu9GT84DiN7INLRjdwoGHPMVBX76ZHnPi4*SCoUYloKjbnLlyj8LbtES9pbwFkvlrI4PJ2i4lN1E!hbH7vmPW1oxmhU5KlHm15XiaKEb9rPHzN*YzySCTbZjT8H271IY75GKIlothfZIRYmvlULlHqlogaulfpwua6Si72G1VL4sVY6*hf6shD32QXIjLo3UX0BZhIk_/results,1 34781,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nGIijUtLYr9fNrvE0sU6iAU3thF82ww8wiY0ZtE3pOSGYs9y1y*burbd*1lg8JqS0X19FVwXVrHKq0NB!DNY6EJ7ZxMxpuhFRtr7rvEQP3rVQw2vai0VzdHKGRn29ugulH5ZUZKWaXV25urmE1KV2hlS*s*EQmdOpJHSgFUApPmWE5YPkSlgGWLWEMMLaEnQA73TEKl8e70Yv3YMSoZRraqbsEA575jAI*fbDA8!qjtEIhhrXgqJ9c!fLPglu1hMES3mOpXNSBcIKGT9lPpC9x7MC*39KK0azIUYkyWFeKo4Xu2M8RM39jP7MIdtmOPQXbv0thfEQqimizFDoiFSW!VQqVR6SiBW6W!nG6bJGKvofNUvm6VDn9FsauF!7YN5JrcW2k!gKkz4SV/results,1 34782,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nETVGISTGVkr!vvavEMoUKOLUXe!0ZPMwswqbrh4jvI5Z82smo9j1ipbpcu7s62k3dK*PVDsZilNi1sfRKmlrpY6NPdtdtthJKpR1hkENTV73UZ0uo1O1qTzBNp0FEsGw0XKQ520KULLcTL2AS!xfmUFez0lMypGRAGWEpYukUliCWTGECMTGF7RDbPTCOw*Pd!AE8mLrrVexLVx28AWC!Es!Pnyz0PPsoL4iPYS44DicXMP2z4GYtUbRE11jKJ3UwHK8BKcOJ*C2MHfmPJS8ET7KU5CTBdsU0aOiK*mwx8zf6M4pgle3Qk7f9uxSlW6SCiBZLkS1SQeJLpUi!RSpo4GKpH3!XJVLB97BYKp2Xyt210J2aGi4V2dcfldLfrrt!GA__/results,1 34783,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nETVGCaW0q9fO79iqxTKECTu0Frz1jDzOLjB3MmPBjwrIPGOS576ztBp2w!nUwPSxro!znbbSAUgJzCxsaaVulz52!wKpbvElfKu0Ioxy7tjFSX4HQqK93OMGf6WQEKyaPXtorFKJmJQy88oM4PjGHuprVgVIgpfCUCZYjls9hGWLZHCYQE3PYAbHDHeP4eLwbP3kPth2MSkPpqlMw4JnPJPDTBws9L27lFQkxLAXH*cmVH*5ZcIuWKFqiWyyVszoYTtDwKfsT!UscO*LvU14JnhU5KUmG7Upp1NAN*dlj5m*0ZxLBJtuxp2D7dylK90hFEa2WInukosTXSpFyj1TUwNVSP26XNVLR97BaKl!WKt1vYbh0LVz7VknTvjVKfwM*KH72/results,1 34784,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nESlGoaW1H6ud38TaxTKECTu3FXjzDDjOLwA7GJfyYsMw66UtK4OIDik47ZbR03aBln7DauttZaWcB1kbZWw*lN91Cl0baVulzpy9wOh720pdKY3PXtY2R!gqERn2!QwcLnb22YMVkeZP2CoWoWQkbr*wmjk9sRMea1YFSIKXwlAmWI5bPYRli2RwmEBNz2AGxwx3juDyejZ!8B9sORqWhHKtTMOCZzyTw0wcLPS*eyisSYlgKjvvOld*!WXCLlihaolsslbM6GE7Q8Cn7jvwljh3590teCZ4VOSlJhuNKaTTQDfPZY!ZvzGcSwSbbsadg!3cpSvdIRRGtliJ7pKLE10qRco9UNMDVUj!!LmukovdhtVS!LFWOv4Xh0rXw2bdKmva1UfoLq06GJQ__/results,1 34785,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nESlGInbJU6ud3bSuxTKECTu3FXnvGHmYWAZhhTPgxYdkHTr3RZ6MTVqtbBxI6owERPSj47EdAAiW4BjzTSGiVPnf6grt2s5euVNoSRjl2bTNIfUVCo77ueIO9zSkJVkyGm4QrFqJmJU68cpM4vjCL2prVgVJ4SuEoEyz3WD6HZR7L5jDhMTGHHTx2eGDcD89n4yfnAVozqDSUtjoFA475SgI*fbK858WjvCIhhqXguLu5ctM*C27REvWW6BZL5ayODydouJTdjfwtjt3zH0teCZ4VOSlJ5tuV0qihG*qzx8zf6M8kgk22Y0*B9u9SlO6RiiJaLUX2SEWJr5Ui5R6pqIGrpX58XdZIRe*Daql8Waq0vwVz6Vr87IOSQ*veKP0Ngf6AQA__/results,1 34786,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nESlFSk2JHbf!!a68SyxQq4NRe7LVn8DCzyJh!sAnfJyx7h!lDapuw2vYwGHs7fsG!HpS5XawBmBJYG3iikaZV!tjpE!y6zYv0pdKOYKXt2maQ!gyERn1e4QTT9drrCFaMhjdpzlCImpUw8cpPYv*EHOpqVgdKgZTCU0ZYjlg!hWWIZVOYQExMYTvEdneM4*B4N37wHkzbDyoNpasOwYBnPpPATx8s9Dz7KK9IiGEuOO5Prvz0z4KbtUTREl1jqZzUwXCChk*Zn8hf4tiRf1*ySvCsyElJMmxXSqOGrujPFjN*oz!jCFbZjj0F279LUbpFKoposRTZIhUlvlSKlFukogYulvpxuyyRir6HxVL5vFTpfgv9qWvh2jdKDu1ro*Q396x!6g__/results,1 34787,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nESlESk2JXyudn7VVimUIFnNqLd*EMHmYWgekHm*B9wrIvKEd1k4O9Km0TVhvbD8oAoqF8X6wBAiVwbeCeRppW6WOnT7DrNi*St0o7gpW2a5tB6jMQGnW*wQmm67VXEqwYLVdpztCImpVQeOWL2L8xh7qe1YFSIKXwlBGWI5ZPYRli2RQmEBNT2A6x3RPjuLyejR!8B9NCWmloXXcIBjzznQR!!mKh59lbeUVCDHPBcX9y5cs*C27WEkVLdI2lclIHwwkaPmV*Iv!IY0f!85JXgmdFTkqS4bhSGg10xXy2mPkb8xlFsMp27CnY*l2K0i1SUUSLpcgWqSjxpVKk3CIVDXCx1I!vyxKp6H1YLJXPS5Xut9CfuhY!!0bJof1slH4A40SATw__/results,1 34788,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1nEoiipSW0i9fO79iqxTKECTu3FXnvGHmYWgR3MmPBjwrJPmIzqejsqo84Jq*XdWAWANsrer6MFnBJYWzjSSNsqfe51B7tu8yp9qbQjjHLs28ZIfQFCo75ucIPtB!2FBCsmw4e0FyhEzUqYeOUncXxhDnU1qwOlQErhKRMsRyyfwzLEsjlMICbmsANihwfGcXg!Gz95D7YdjEpD6apTMOCZryTw0ycLPS8e5RUJMSwFx*3NlZ*!WXCLlihaolsslbM6GE7Q8Cn7G*lbHDvyH0teCZ4VOSlJhu1KadTQDf3ZY!Zv9GcSwSbbsadg!3cpSvdIRRGtliJ7pKLE10qRco9U1MDVUj!!LmukovdhtVS!LFW638LQ9S189q2Spn1vlP4G3Ah*1g__/results,1 34789,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1muQ60kprWp1M*v2lZimUIFnNqLvXiGHWYWgR3MmNFjRooP2NRN9YaPatAZaYfzWQlpANJG2s*raIGBEVxbuKnjVkj9qnQPp!7wyn0ptSOM0ER0husLEDr59Q4drGvrpBipJsuN2wsUrCU1bLTxGzs!EYe6mrSRUgVK5SkTrAxYOYcVASvmMBYwNocdAna4YzQsj2ejJ!*BisHIPJauOkUDnvmMIj9*sILnxVtpg2IMS8FR37nx2z8LbtESDpbwFkv1rE4IJ2r4lH1H!pLGHvj3S9owWlQlqlERxpXjZKAb5rPHzN!YzySCTbZTT9H271IY75FKIlothfZIJYmvlUL1HqlkgKulfnxd1kgl78NqqXJZqna*haFXAj77VnIj3jqpvwFvlICM/results,1 34790,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1mum6IQQ20q5fOztpVYplABp*ZiL55hh5lFYHo9JvSYkOwLNj4MXSv42PYqIfVHr68AKC3NdzcawDGCawO3NNwIqd5bdYZTe9hxV0plCSN0EI3m6gKERt4G6GBsTyvESDFZrtxcoGA1KWGjldvY8YVY1NakDpTCUwpHmWC5x*I5LPNYNocxj7E57OCxwwOjfnk!Gz05D0b0WqahtNUpGHDMVxT46ZPlPS*eSisUYlgKjrrOldv!WXCLlrC3hLdYKmd1fDhBw6XsOtK3OHbPf1zSitGsyFGJMj!uFEcD3TCfPWb!xnwmEWyyHXsKtn!XwniPVBTRaim0RypKfK0UKvdIRQNcLfXj67JGKnofVkvly1Kl*S3051bAZ99IrsVnI9UdY9h*ww__/results,1 34791,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1mulVqhJrWJ1P5917YSyxQq4NRe2MUzeJhZhO1gxoweM1J8QOmVUFILmZFWWXtz9UtyA6g20t760QIJI7i38FzHrZD6VekzrLrFnvtWakcY!ahEZ7i!AKGTn1fYwapBezVGqsnlndsLNKwlNRTa!MKOT8ShridtpFSBUnnKBCsDVs5hRcCKOYwFjM1hh4Ad7hgNl8e70ZP3YMVgZB5b152iAc98RpGfP1jB8!KjtEExhqXgqN!58eWfBbdoCQdLeIulelYnhBM1fMp!R*qSxh7491vaMFpUJapREcaV42SgG!azx8zfmM8kgk22U0*R9u9SGO!RSiJaLYX2SCWJr5VC9R6pZICrpX78XdZIJd*DaqlyWap2x8JwVgJ!!xaOEvHWSf0NdFOBKg__/results,1 34792,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1mulaJQk2Iq9fO79opYplABp*aC18yww8wiY*thTPg5YZkdpS8pgc0HFL1JWK1k18HeDNp!dqOdcAuPNdIqbV5bc4W77mYnfakNdhtb1QzS3IDQ6K87dLAt9HRighWzy7u0NyhEzUpYeOUXcX5iDnU1qwOlQErhKTMsRyxfwjLEsiVMICaWsBNipwnjeHm8G794D1b1g05D6apLMOCZzyTw0wcLPa8!yisSYlgLjvvOlV*!WXCrlihaonsslYs6GE7Q8Cn7jvwljh3505ZXgmdFTkqS4bhSGg10x3yOmPkb85lFsMt27CnY*l2K0iNSUUSbpcgRqSjxrVKkPCIVDXCz1I*TZYtU9D1slsrXpUr3W!ivrYJj32o5qLdGm2*v4X!s/results,1 34793,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1mulaJQk2Iq5fOz9iqxTKECTu3FXnsGDzOLsO2HMeHHhGVfMNmrVq3sElar3ry3Y9sbC5AZtP3uRgsMSmBt4aFGWqWBY86w6zY76UttHGGUY6uaQZoLEBp9u8IJFk7zUoIVk!FT2gsUomYlTLzykzi!MIe6mtWBUiCl8JQJliOWz2EZYtkcJhATc9gBscMD4zg8342fvAer!kGnoXTVKRjwzFcS!OmThZ4XH!UVCTEsBcf9yZWf*llwi5YoWqJbLJWzOhhO0PAp!xP5Wxw78h9LXgmeFTkpSYbtSmnU0A392WPmb*RnEsEm27GnYPt3KUr3SEURrZYie6SixNdKkXKPVNTA1VI**i5rpKLvYbVUvixVumuhP7fKXS1aDuqj0eYOrCiAlg__/results,1 34794,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1mulaAQ09og5fOztpVYplABp*ZiL55hh5lFYHo9JPSYkOwbtuEiE1IrPrS94h2UYtS6FWN3A4LS0ozdYICHEVwbuLXhRkj12aoznNrDjrtSKksYoJFoNFdXIDTy*gUdDLR2gowUk!XGzRUKVpMSNlq5jR3fiEVtTepAKTylcJQJlnssn8Myj2VzGPMYm8MOHjs8MeqX17PRk*NgRK9lGkpbnYIBx3xHgZ!!WN7z4q20QiGGpeCo61y57Z8Ft2gJe0t4i6VyVseHEzRcyq4j*Yhj9*znJa0YzYoclSjz40pxNNAN89lj5m*MZxLBJtuxp2D7dymM90hFEa2WQnukosTXSqFyj1Q0wNVSP74ua6Si92G1VL4sVdrfQn9uBXz2jeRaXBqpHg5kgoE_/results,1 34795,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1mORVES09qO1M*v2lZimUIFnNqLvXiGHWYWgRm1zegxI8UnbFr20ljN7TCqjLTnUdxvUllAlZbmfrUGSBjBtYH7Om6EVOdB9XDqDq*cl1I5goUuotNcXYDQya8P6GBcX6fGSDVZbtxcoGAtqWGjjd*Y8YU41NWkjZQqUCpPmWBlwMo5rAhYMYexgLE57BCwwwOjYXk!Gz15D0aMWuaxdNUpGvDMVxT5!ZMVPC*eShsUY1gKjvrOjd*!WXCLlnCwhLdYqmd1QjhRw6fsO9K3NPbAf1zShtGiKlGNijCuHCcD3TCfPWb!xnwmEWyynXqKtn!XwniPVBLRaim0RypJfK0UqvdIJQNcLfXj67JGKnkfVkuVy1K1!y2M*SDgs28k1!K9k!obZcGB8Q__/results,1 34796,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1mOlVghdoup1M*v2lZimUIFnNqLd*EMHmYWgTXDmNFjRooPKIO06iz1qHifkfZq7hIKF0JaCwwN8Gc*WiBiBNcW7u24FVKflb7ArtvsuW!ldoSRj0p0A9c3IHTy6x1OsMpor8hINVnu3N6gYS2podDGF3Z8IQ51PWkjpQqUylMmWBmwcg4rAlbMYSxgbA47BOzwwGhYns9GT96DFWaQeWxdd4oGPPMVRX7!ZAXPi7fSBsUYloKj*uTGl38W3KIlHCzhLZbqWZ0QTtTwKfsT6Vsae!A*LmnDaFGVqEZFGFeOk4FumM8eM39jPpMINtlOPUXbv0thvEcqiWi1FNojlSS!VgrVe6SSAa6W!vF1WSOVvA!rpcplqdr9FsxFCfjsW8kHce2k*gbDuILD/results,1 34797,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1mOlVghdoup1M!v7VVimUIFnNqLvWaGHWYWgTXDmNFjRooPt1lxNaa3GWn5!a6sVUb7g9Fu6ZWWjqYHaT*70To2Ru5sXYOOWyH1WemLu!ov9jyUUnvCyEcluoHrmyN08uvddfCdgywj1WS5c3tzBWtJ7TbahI0dX4hHfU3aSKmAUgXKBCsBK!ewArBiDmOAsTnsANjhgVFYns9GT8GDFWaQeSx9dYoGAvMVRX7!ZIHnxVtpg2IMS8HR0LkJ2z8LbtESBkt4i6V6VgfCiRoh5dCRvqWxA*9xpA2jRVWiGhUwrhwnA90wnz1m*sZ8JhFssp16irZ*l8J4j1QS0WoptEcqSXytFKr3SCUDXC314!uyRip5H1ZLlctStf8tmIsS*jcj!SCundTfaUqEZw__/results,1 34798,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1mOlaCkJsVE6udn7VVimUIFnNoLa3vGHmYWGdv1Q8L3Ccu!oKizVpeE1a2x914apWHd9Nrer4MFmBKYW9jRSKu0ObbmBKtu8Sr9UBtHGOTQqgb2X4DQ6O8bnGDbzngdwYrR41Na0BSiZiUUXvki9m*MoW7M6kApkFJ4ygjLEcunsAyxbAoTiIkpbIfY7olxfLzejR!8B6u6Xqdh6EaHYMAz30ngpy8Wep7dyisSYpgLjvuTK1*!WXCzlihaomsslZM6GE7Q8Cn7E*lHHDvyn1NeCZ4VOSlJhu1KadTQFf3ZYuZv9GcUwSrbsadg!3cpSrdIRREtliJbpKLEl0qRcotU1MDFUj9ulyVS0fewWCqflyrdb6E7tQqufatlr86NNg8fjX9B/results,1 34799,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1mOlaBQ09pUav!!y1qJZQoVcGoveO0Ze5hZZFxvh4QfE5a9w6CktV8Jq9W17c5WG1g2VruPbnCAUgJzBxsa6ZQ259ZcYHVc7CSWuMENcmhVY6W5AaHRn29wgmt7gzKCFZPHq3Q3KETNShh4hYM4PrERHWtWB0rhKQVSJljusXwOyzyWzWHCY2IOO3jscMe4fzzejZ*Qg1O91Wkox!oUDCDzmQR!!mB5z4tbeUVCDEvBcTy5wuGfBbdoiXpLdIulclbHhxM0MGU8kb*EsXv!fcorwbMiJyXJfLtSGjV0Q3*2mPkb*ZlEsMl27CnY*l2K0j1SUUSrpcgeqSjxtVKk3CMVNXC11I*bZY1U9D2slsqXpcrxt9BfWgXXvtPSqmujzTfRK37l/results,1 34800,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1mOFVCI3WIi5fO7tpVYplABp*biXTyDh5lFYPQwJvSYkOwLytgO0rS6Pyek7jVXUIxo5U0CrgC696MBGkZwbeDOhhsh1blTF9i1mz13rVSWMPKxE83A1RUIjXx8wgmm08rpMVJMlhs3V2hYTUootHKFHd!IRW1P6kApPKVwlAmWeyyfwzKPZXMY8xibww4eOzwx6pfXs9GT82CEHmQaWtudggHHfEeBn75Y3vPirbRCIYal4Kg7uXLlnwW3aAl7S3iLpXJWx4cTNFzK7kT6Ecfu!c9LWjGaFTkqUebHleJooBvms8fM35jPJIJNtmNPwfbvUhjvkYoiWi2F9khFia!VQuUeqWiAq6V!fF3WSEXvw2qpfFmqtL8FfekEfPaN5INoG6m!A,1 34801,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoWl!A1lgpSjUTjBR!*ld20osU6gMp*biXTyDh5lFoNU4JfSYkOwGpVOfclC8S0h9uws99UpK3o9CAy6h3IdJAw0juNZwZ8N1K2TXyzPsms2B21ZIQ5j41LfNyOUFCI34usIJGo60eowUs!WD6ws0rCYlFFrZwo4vxKCmJ7WnFI5SWMoMyx2WL2GZw7IljDmMLWEHhx0eGHXL89noyXrQrRpF6lvTnbwBy3xFnp8!Wc7z6q20Qj6GteCoPbmy5Z8Ft2oJO0t4i6VyUceF4zVsyvZE!hbG7viPS1oxmhU5KlHmxpXiYKAb5rPHzN!YzyyCTbZDT97271IY75EKIoqWQnukgsRjpVC5RyoYYLTUj69LjFTwPkRL5etSpfktqHPfwmdfCz62742Q3!vBgs0_/results,1 34802,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoTS*gSzXSlBS09pE6ufX7DaxTKECTu0FL8x4h5lFxvV2SHiTsMwNEkri6w!*DtrcrE5Yrc7SDM4*NVa729WXvKEjy*m9rXRKm9fOnL63XiWU2mDLoVOtlebiCa3!fPcdXNcbUBSsmFzepLv4QtSs9AuvYBHNExvRsWZ1oBRIKYAywXLE8jksQyybwwRiYg47IHa4Yxwvj3fjR*DgVG91GsqxOgYDwHwmgZ8!WOh5cSuvSIhhKTgOnStY*llwi5YoWqJbLJWzOhhO0ICUoSN*iWNH*v2WV4JnRU5KkuG4UhoNdMN89pj5G*OZRLDJduwp2P5ditI9UlFEq6XIHqko8bVSpNwjFQ1wtdSP02WNVPQ9rJbKl6XK8bfQnzrlj32npVXnVpsvcI6CFg__/results,1 34803,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoTS*gSzqJijBbm0i5fNre5VYplABp*biXZixh5lFYJQeE9okJPuyRYtR81728pSQ!kOrwZazGoSFpRbmdh2NZWFkr43d2HLTCfnu6LRxN6*ct0I6wsjHvms1lxdLaMX9055geiW9HCPFZBm4udiG1aS0hVa!sOaFONT1pA6UAiiFp0ywHLB8DssAy!YwBhibww6AHR4YheX5bPToPZhOaZGG1nXHYMAzX1Hgp08WeF7cSisUYlgKjvqTK1*!WXCLljBYwlsslbM6EE7Q8Cn7E!lbHDvwH5e0YjQrclSiDMaV4migG!azx8zfmM8kgk22Y0*B9u9SGO!RiiJaLYX2SEWJr5VC5R6paICrpX58XdZIRe*Daql8Wap0vwV16jv72TeC6!7cCvkNh1eBpA__/results,1 34804,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoTS*gSzHSlGoSW0a5fO7tpVYplABp*aCF8!ww8wiYwY9JrRJSPYJy1VzMXaC9wmpT*rWqTMUozSjsRscKiAqLc1XD1u0wQjuDbRouRFSnewDtLGbPXelVJYwcmjaaq4uQGjl*QodTDcoJ8xIMbl8cHOBgtWkhIVWbmHNC7GorUkdKIWnFI4ywXKP5XNY5rFsDmMeY3PYwWOHB0b95flu9Og8GDFomYbSVsdgwDFfUeCnT5b3vPgorVCIYSk46jpXbvlnwS1awt4S3mKpnNXx4QQNl7LrSN*i2D3*cUsrRrMiRyXK*LhSHA10w3z2mPkb85lEsMl27CnY*l0K4z1SUUSrpdAeqSjxtVKo3CMVDXC11I*TZY1U9D2slsqXpUr7WxjOnYBj30iuxXsr1TdwWYUu/results,1 34805,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoTS*gSywUpTUtDaR8vk1uyKWKVTAqb3gNTPsMLPI2N4MEa8ilthBQkmJ23y5YjCy7fQlYqWDdCtNax2ijbL322AnpnUNamkbpYHMq*HmTUKpNPYduqY2Ul8doVaPT9fBdr0GWcGy2eVD2qsrRMlyt*ACFlG9sBEda1Z6SoaUDCgzLEUsXcISxJIlTCAmlrATYqcJ43h5vhs*gwfb9EbFvhyrszcAzFfi!fGThZ5XH!UF8TGsBcehcwHLPwtu1RJFS3SPpXxRB8PxGpAydORvYezIn7a8EDzJUpKTBMcV02CgO!ZzxMzfmM8sgl22Q0*e9u9SlB6RCiLaLEWOSAWJb5Ui!RGpYICbpX6cLlukgu9hs1S6LpWPv4X!0jXu2LdKmua9VvobAESD4A__/results,1 34806,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoTS*gSxipVZSk9pu1c*v2lZimUIFnNoLuzBjDzOLjBm1zWiXkeIdyknLT6nOGWmtMBbKIJQV2pSAKy3Mx9UaoGEE9wZW9twA4!SW0M49vHLfCuUIlls59JqrCxB68XWDHYwclddjpJpc3ri5QMNaUkOhjS!seyIOdT1pI6UKlMpTJlgZsHIOKwJWzGEsYGwOOwTscMdouDzejR69BzOMWuSxdd0xGvDMZxT5!YMVPC8upQ2KMSwFR*3OjS**LLhFSzhYwlss1bM6IZyo4VP2O9KXNPbAv9*ShtGiKlGNijCuHCcD3TCfPWb!xnwmEWyynXqKtn!XwniPVBLRaim0RypJfK0UqvdIJQNcLfXjdFkjlXwPq6XKZana*RbGsxzg2DeC6!G1F!obfW2B8g__/results,1 34807,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoSlSL*0FZFErRUlMa1Opn9!1V4llChVwai*22jN4mFlk7GDGhB8Tln3A9PzSJKymsNJG2c*LaGGTElhb4LXSdkq*9voEu27zIn2ptCOMcuy71kh9BkKrvt7hBNsP2p8uWDEZrtKeoRA1K2HilZ*E8YE51NWsDpQCKYWnTLAcsXwOyxDL5jCBmJjDDogdbhjH4f5uvPEebDcYlYbSVU0w4JmPJPDTOws9Lz7KKxJiWAqO!5MrP*2z4BYtUbREt1gqZ3UwnKDhU*Yn8qc4duTflrwSPCtyUpIM25XSqKEb!rPHzN*ozySCTbZjT8H271KU7pGKIlotRfZIRYmvlSLlHqmogaulftwua6Si72G1VL4sVbrfwnDqO7j2rZKme2uV*gb70nqJ/results,1 34808,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcoSG5tERqq16RRawUJTUpplI*v8YrYplCBZzai732jD3MLAJVN61Htx4JVMtNiZFefOhif3jNnvLHLH*xSPpwSPJnDchGqM9Lq3qi0ucLrkohj5U86d1u88JNKSRc21Zl0XB51oRCfF31DaqqpVFlJBoM71yddcFSEuuJJmZi2zvSoV1NUkuJgBIZygALAQvHsACwYAxjgLExbAPYpscoDLdnozvjQZV1I3xbdtXOGjDMe2T5*o0FnieP0gTZGKaCo!bmxEz*LLhJSxgs4SWW4lEdCMdqmJTNjTRzYwd!v6QJo0EUohgF0C4fOw1d0J81Zv5GfwYRLLLterK2f5fCeI2UE9FsKbRGykl8rhSK10g5DZwt9ePrMkfKeR9mS4XTUnH3W6hPVak*!0rwpnwrhPwGMViBtQ__/results,1 34809,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcIY9z*wBZ1EpRUtN6idT!fde2EssUKuDUXuy1Z*Aws8hAb4aEHxKWfeD0LL8SVpsOFOCONgpu1wEQoATXgNxGQqv0S6fPuGs3r9KVSlvCIIeubYzUFyQ06vMdT4Cu105BsGI0vEm4YCFqVuLEKzeJwxOzqK1ZHSiFpxSOMsJyj!VTWOaxbAoTHhNT2M5juzvG*fB4N35yHqDtjUpDaatTMOCYexL46YPlPc8!yisSYpgLjruTKzf9s!BmLVFvia6xVE7q!HCChkvZnciPceyef1*ySvCsyElJMt!ulEYNXdGfLWb!Rn9GEayyHXsKtn!XonSLVBTRYimyRSpKfKkUKbdIRQ1cLPXjdlkiFX0Pi6XyeanS*hb6c9fitQ9Kmva1UfobXEB8yw__/results,1 34810,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcIY8v6B1Z1E1REtPaVOrnd!1VYplCBZzai732DB5mFhnbmyHhh4RlHzA9H8uE1a!9ucGGNsp!XgcL!5TA2gK1kbZV!qXTZ9h1m1fpS6UdYZBD1zZG6gsQGvX1DifYrtdeQLBiNNykvUAhagaqgld!Eocn5lBXszpQCqQUnjLCcsTyKSxDLJvCBGJiCtshtrtjHIfHu*GT92Db3qg0lK46BQOeuSeBnz5Y6Hn2UV6REMNccNyfXPnpnwU3a4miJbrGUjmpg!EEDZ!yP5Ef49iRf1*ySvCsyElJMmxXSqOGrujPFjN*oz!jCFbZjj0F279LUbpFKoposRTZIhUlvlSKlFukogYulvpxuyyRir6HxVL5vFTpfgv9uWvh2rdKmvatUfobVgF8AQ__/results,1 34811,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcIY*fQA6xKEpqWkykfH7XXiWWKVTAqb3Ya8*gYWaRMV0*RPwQseQLprO6RKw83xsDG7pX5n4bDOxTAmsD1EqaWulLqxvYtZs36UqlLWGQQ1tXvdRXIFTq8QknmLbTTkCwbDR8SHOFQpQsh4kXbhKHN2ZRW7PSUzKkZI4ywlLE0iksQSyZwgRiYgrbIbZ7YhyH17vxk*Ng6q5XsS9tdfIGHHNPPD9!sdDz7KO8ID6GueC4O7lw0z8LbtYSRUt0jaV8UgfD8RouZXciP4axI*!55IXgSZaSnCTYrpgGDV3Rny1m*kZ*RhGssh168rZ*l6J0i1QQ0WIpskUqSHypFMm3SAUNXCz143ZZIhV8D4ul0nmp3P4Wuqat4do3Svb1e6X0N3f1fFc_/results,1 34812,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcIWnOVX8AWdRNURLT2lTq53ftVWKZQgWc2ou99gweZhYZ25sh4YeEZR8wPT2zhNWvvbnChjbKfl4GC*uUwNoCtZG2Vfql0yfYdZsX6UulHWGQQ9c2RuozEBr19Q4n2K7XXkCwYjRcpT1DIWpWwsQrP4nDA3Ooq1kdKAVSCk8ZYTli!RSWIZZNYQIxMYXtENvdMI7D*d340XuwbW9UGkpXHYMBz9yTwE*vLPQ8!yivSIhhLjjuT6789M!Cm7VE0RJdY6mc1MFwgoZP2Z*IH!PYkX9b8krwrMhJSTJsV0qjhq7ozxYzf6M*owhW2Y49Bdu*S1G6RSqKaLEU2SIVJb5UipRbpKIGLpb6cbsskYq!h8VS!bxU6X4L*alr4dq3Spr2rVH6G2K2fAM_/results,1 34813,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcIWl!A1nUoijBpJhI!fyuvUosU6iAU3ux157Bw8wiY*phjPgpYskXTB2sGtmoiJU32XZKjwDoQZn7dTSAUwJrA6RKmlrpj1Y3sGs3r9KVSlvCKMe2rgapL0Co1OMGJ5i2105IsGwydNJcoBAly2HihZvE6Y1Z1Nas9JQMKZmjTLAUsXQOSxBL5jCBmJjDDogdnhjH4fVu*Ow8mLofVOxLW529Acc8Es!PXyz0vPgoL4iPYSk47k4u3PTPglu0RNES3WIpn9XBcLyGS9mdyN*D2JH*XPJC8CRLSU4SbFdMg4Zu6M8eM3!jP5MINtkOPXnbv0tRukcqiGi1FNkjFSS!Vorke6SCBq6W!nG7rJEKvofVUumyVG5*C33T1nDtGyWH!rNS!htJHn!*/results,1 34814,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcIWl!A1nETa0Q02Ij9fO7tpVYplABp*biXTyDh5lFoPvBJPSUkOwTytvYdQmpjbwLKNqMF6EMYGoQeuyMBgpGcK3hrobrVqiLVFfYtZsdd61QlmC4kW0zcHUDQiO!PuAELXvltBgpJsud6xs0rCYlFFq5wk4vxKK2J3WgFJ5SOMoEyz2Wz2GZx7I5jHmMzWEHjx0eGPXL89no2XnQbT!INLS2OwcDjnlEgZ8!Wd7z4q20QiGGpeCoO7ly5Z8Ft2gJe0t4i6VyVseHEzRcyu5E!hrH7vmPS1oxmhU5KlHmx5XiaKAb5rPHzN!YzySCTbZjT8H271IY75GKIlothfZIRYmvlULlHqlogKulfnxd1khF78NqqXxZqrS*hf4qW*jsa8GH9r0R6hsUZ4B9/results,1 34815,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcIWl!A1nEShCpSW1H6ed3bSuxTKECTu0h3sUzeDKzCPSgTEIPCck!oTwENxehElLfb7CcuBEaaidhIfB7CNHDRiaV0Per0XALRnCt4ZSG61bIUyfPsGs3r9y1QlqC4aZrG8VlD4RGfN3gBN0N0mkzUoyWD657aFhNSii0coUd3ohFbU*qQCk8pXCUEZZ7LJ*CMo9lUxjzGJvCdh7bPTHql9d*o0fnQbeDEmlobXcMBhxzjwI*fbG859lbaYVCDHPBUXdy5co*C27WEvaW8BpL5aSODydouJTdifQ9jt3zn5e0YjQrclSizI8rxdFAV8xni5m*MZ9RBKtsx56C7d!lMN4iFUW0WAptkYoSXyqFyi1S0QAXS*14uyyRip6HxVL5vFRpPwvDuWvhta8FV!2lEfIb84WE7Q__/results,1 34816,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcIWl!A1muS6wkprWJ1M*vYiexTKECTu3FXjTDDjOLbNuZPqGHhGS2565EUH*CLk5ctzIhtdKwCGXE7QocLaQFhjbS3i69BSIe3rDQp!FWSP2mdHtvc!GulNq375VoDNdnIDTy6wM6WNVpp85IMVqu3J6hYDUpYaOV29jhhQzoUJM6UApPKRxlhOUey6ewzGPZFMY8xqawncd2D4z65flt9Og8WNEZmYZyqI7BgGPuUeCnT5b3PPsqrVCIYS446jpXbvtnwc1awt4SXmOpnNTx4QQNl7LrSF*j2D3*8UgrRrMiRyXK*LhSHA10xXy2mPkb8xlFsMp27CnY*l0K4y1SUUSLpdAWqSjxpVKo3CIVDXCx1I*TZYlU9D8slsrnpcrhWuhaJeDYt5IbcWrc9WDku9LyfhfUgzocd6T4Br1JjPk_/results,1 34817,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcIWl!A1muS1GCSW0q9fO7tptYplABp*biXTyDh5lFYAY9JvSUkOwdyk3qniupxoTUvP2uQkhjoHkddA88paX5uI4G6BjBtYETGm6EVC!damHXbl65a6WyhJGPnWg0VxcgNPLzBieYblBOl5FisvTcXKBhNSmh0MoVdnoiFrU9qQOl8JTCUSZY7rF8Dss8ls1hzGNsDjt47HDHqF8ez0bPzoMRg5ZpaG13DgYc84gCP32wvOfFW2mFQgxLwVF3cuXKPwtu0RL2lvAWS!Wsjg8naLiU3Yn0OY7d8!!XtGI0K3JUosyPK8XRQDfMZ4!ZvzGfSQSbbMeegu3fpTDeIxVFtFoK7ZGKEl8rhco9UtEAV0v9!LqskYreh9VS!bJUaX8LQ9sJ!OwbybV4a6T6AinIhKw_/results,1 34818,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcIWl!A1mORVFSk9okyud3bSuxTKECTu3Fu3gGDzOLwPR6SOghIdkXlFZ38i6VkAmpr7oX8nTT0gCooNwugwEORnBt4LaGGyHVqVMt7NrNC3etVJYw8KETjebqDIRGPq5wgul65cQYKUbLJzdnaFhNSii0coUd3ohFbU*qQCk8pXCUEZZ7LJ*CMo9lUxjzGJvCdh7bPTHql9ez0aPzYESvZRpa2x2DAcfco8BPXyzvefZWWqEQw1xw1J1cufLPgpu1hL0lvMZSOanjwwkaLmV3In2PY*f85yWtGM2KHJUo8!NKcTTQFfPZYuZvzGcUwSrbsadg!3cpjLdIRREtlkJbpKLEl0qhcotUNMDFUj!!LkukovdhsVQ!L1Xa30LfdgI!!0ZyLT4aqb4BIKiBbw__/results,1 34819,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcIWl!A1mOlaKkJrUdKZ9f26vEMoUKOLUXdu1Z7zCzyJhB24weMlJ8uXDilmekvenBSmH7Qbl9paW5X61xMEZubdyJjhsh1alXZ7frN688pNIfMJbbXnSaq4sr6OTj5joY38zzMFKNHp*cXFzCWlK7QJsQ2OGNeNTnpI0lFZRUoWSElYCVU1gBWDGFMcDYFLYDbPfEKDxe70aPQYMRg5Z5TH12jAJC5R7F!vxVBZpnj9IGRRvmjKOhcxPCPzNuVhIGSXiNpHqSB8yJHMHl0JG!p7ZD*XNJG0aLqkQ1KmBcOU4GumI!W8T8jfmMLFglO9UUZf9OhfEWqsSixVRoC1Xi!FIqVG!hSga4mOrH7bKEKvkeFlOV81S1*y0M5164a99IrsVHJ9U3ygB*XA__/results,1 34820,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcIWl!A1lgpSjUpJhI!fyuvUosU6iAU3ux157Bw8wiY*phjPgpYskXTI1STcTKW991sKMHZe7daACgBNYGuJU0tdJNqy!wazc76UqlLWGUY1tXg9RXIFTqcYMTTNtrpyBYNhk!pblCIUqWw8QLN4nTG7OorVnpKRlSMkeZYCli6RyWIJbMYQIxMYcdEDs8MY7D69342XkwdT!o2Je2OnsDjnkknh!*WOh58VFeEB*DUnDcnVy46Z8Ft2iJoiW6xVI!q4PheA2XsjuRv4exI*!55IXgSZaSnCTYrpgGDd3Qnz1m*kZ*JhFssh168rZ*l6J0j1QQ0WopskcqSHytFMn3SAUNXC3143ZZIxV8D6ul0mWp3P4W!ktbw7VvlBzqj0rpbzDEfMQ_/results,1 34821,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcITS*gSzqpijEpDZR0r*v2lZimUIFnNqLd*EMHmYWge7VENEqIsknlFsrB6EiUr5feQflwr*OQg4aYKmEvnbQ0gojuNZwY811I!RbK4!wazY7blshDWHgQ9vUissTEGpxv8AJuu2llWMkGy1nrk*QsJLkUGhhC6teiEFNT0pPyRwls5QRljosncIShyVTGHMYm8J2Dts9MOqW57PRg*Wgm16J2LemO3gDlrlHnh8*Wc7z7K20QD6GueCoPbmw5Z8FN2sJO0t4jaV8UseF4zVsyvZE!hrG7viPS1owmmQpylHixhXjYKAr5rPFzN!YzyiCVbZDT97271IYb5EKIloshbZIBYkvlUL5FqlggIulfnxdlkgF78NiqXReKje*hf7YNvDZ14Kr5qMW8htaCIHG/results,1 34822,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcITS*gSzipFZS02JXyufH9jaxTKECTu3Fu2iGHWYWge4Hk9AmIZk23LfI9p!2HsVJKmlkrxJS9yd7GKG4MtriahD662pb2mDH13ZKy3Un1FGq8*eQK*etUDDcyK4duLpYQituH3aCdrOdNiPF6Hjn!mIbVpPSFlr5wpoX4lDXkzpQCqAUnjLCcsDyKSwDLJvCGGBsCtsBtntgFI7ns9GD96C7fhBpaF13CAY8c48CP32ywPPsrbRCIYa54KifXPnyz4KbtYTBEl5jqZzUgXCChk*ZT6SvcezAf1zSitGsyFGJMlhXiqOFrtjPFjN*Yz!jCFbZjj0F279LYbxFKoposRTaIhUlvlQKlVukogUulvrxdVkiFb0Pi6XyeanS*Rb6s!zsZ18LPnRvrVB3H5CFlg__/results,1 34823,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcITS*gSzipCjBbm0q9fO7tpVYplABp*biXTyDh5lFYJQeE9okJPuAchYXoQchx4TUF6UHKA1mAEotzOd9NMDBCK4N3NZy0wl57uUVdu3mnbtWSEsY!dh3rebyBoRWfL3DCaZX0okxUkyWgZsbNKwmJRRaucKaF2JR25M6UApPKRxlguUey!ewzGPZHMY8xuawg8cOD4z65fls9OQ8mE5pkYbWdqdgwDGPKPDTJ8t7XryVVijEsBQcdSdXrvyz4BYtYW8Jb7FUzur4cIKGS9mdSF*j2D3*cUkrRrMiRyXK*LhSHA10w3z2mPkb85lEsMl27CnY*l0K4z1SUUSrpdAeqSjxtVKo3CMVDXC11I!vyxqp6H1YLZUvS5X2t6CufQeffSO47t5aIb8BJEGALA__/results,1 34824,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iHkcCWn6GciiboqSmNSmUj!*a68SyxQq4NQesBfP4GFmkbG9GRJ!SFj2AVNdvyRsz!B6680VFrVR9vMyWMAogXsL9EbaVunXTp9g1S1epC!VdoRBDl3bGKnPQGjU1w12sF2vvYhgxWi4SnuGQuxZCROv*CQOT8yhrmb7QCmQUnjKCMsRy6ewDLFsChOIiSlsh9jujnEcHu*Gj96DbXuj0lC66hgMeGZNAj99sNDz7KO8IiGGueC437ny0z8LbtYSRUt0jaVyUgfDCRo!Zb8jf45jR*79lleCZ0VOSpJhu1IaNXRFf7aY!Rv9GUWwynbsKdj!XYrSLVJRRIulyBapKPGlUqTcIhU1cLHUj9NliVT0PSyWyuelSvdb6E9dC8e!VdK0743S31J9fMc_/results,1 34825,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iAEfoWl!A1nUSlFS09pE6ud37VVimUIFnNqLXzPsMLPIuMGOGT9mrPiEyQwmY83tAltjtbtdRwenlMDeAbFVrtPmtTdnOPWHVxWW2njCqMa!a60yFyC0!usDKrgeKvryglWT4V050BGiYRImXodJHJ!YR*2aNZFSIaUKlAlWIlbOYQVixRwmEBNz2AGxwx3jODzejZ!CB9cNVudx6VenaCAwn0nk5w8Wel58lNckxrAUHA!V6zD9s!AWLVG0RLdYkrM6GE7UCCmHivwljR359y2vBS!qkkhSYLtymjR0Q3*2mPkb*ZlEsMl26ina*l2K0j1SSUSrpcgeqSTxtVJE7pFKGrha6sftskYq!R5WS5XLUtL*FoZz38G177Sy3VurzTcM8num/results,1 34826,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iAEfoWl!A1nUSlFS09pE6ud37VVimUIFnNqLXzPsM,1 34827,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iAEfoWl!A1GySVGISTGV2r!v7VVimUIFnNoLXpjxjmcWge76IeL7iCV6qFxJCTF376Z6BQWnZtARE6zQ0J4iVsD11nZfcDQU1YP!aA1s99gGplVZ6RrUsVFn89Q!bCtXgkKFoanLvlIXQyjh82Y66KZT7gCCZaPLtdIXU4iCSbPw3C1i*8QsKt2pPCVDSuYoIyxFLJ3CEsSSKUwgJqawHWK7O8bx8jgbPzgPuu56iH1pq4M34JjPxPPjBws9z27lOfExzAXHXefcLf8suFlLFC3RNZbkpA6G4zVcyq4jfwljR*79lueCJ1lKJElwXDENBrpiPlvM*I35jCJYZTv05G3*LkXpFqkgosVSZItUkPhSKSK3SAUDXCz14!uyRCp4HxZLpfNS0v4WunNTm8!!hqqv30pQ36Zuhrw_/results,1 34828,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iA0cSdP8BrKom6IkprWplM*v2qvEMoUKOLUXvOwMHmYWGdfbIeOHjMlPWPSNSpKx*Vtvrw56xmr3dRkcQBT60gG7Ua7V5rUzJ!j65kWFUhtPGNTQtY1V5gyERt8!YAfX9SZoCFaOLlflzlCIPatg4XVYxOGJedTXbB8pJVLKQBlhBWLFFCYRk1OYQExMYTvEdneM4!XxbvwYPLi2tzqPpa!O0UBgPpPIzx8s9Dz7KK9JjGEuOB52rsPyz4KbtUTREl1jqZrUwXCiRkg57Mhf0tiRf7*lteCyLEhFJI4rp8lAV8xni5m*MZ9RBKtsp56i7d!lKN0ilUS0WIpskUoSXypFqi1SyQAXS*04XZZIJd*DYqliXqryv4X!1LVw7DutbPveaPMNQuJ9Fg__/results,1 34829,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iA0cSdL8BrKolaJQQzGR!vlde5VYplABp*biXTyDh5lFYLthTPg5YfITSq!sTdixb!9QpBm0vbejBYASuLbArZSttXlrzBV23WarfKuNI4xqbOpqUOYGhEp*9XCCbTrjFQTLJ8uHsjdoxJEVUHjpizi*MIe6nh0DJUdK7ikTLEMsm8MkYnIOE4iJOeyA2OGBcVyez8Yv3oOtu0GnoXXdJRjwzBMJ*PTJQs!Lt*KShBiWguP!5NKXfxbcoiWKlugWS8WsDoYTNHzK*kT!GseO*MclLwWXeUYKInFcKY0GumE!e8z8jflMIthkO*YUbP8uRekeqSii1VJkj1SU!FopUuyRiga4WurH12WNVPQ!rJbKlqUK91vork0Nn32r1VC*V9p8A23VfPY_/results,1 34830,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iA0cSdL8BnJdK0GhpvVSqZ9fP0QsU6iAU3ux18yww8wigN4MGT1nhMMgfImRPXzYQgqTkeNNgF1flNJ2g6HvXMG1UfDZDTDywbZpBEilX1t9tVfdxU740t9guw!tbIzQd0to1Ne77QBtr704I!VkeRNwtwU7ksputPYbOz8Rh7qaHCOlDJTSUyZYEbBiDuMB43MYCxibww4BO4wYDcvj2ejFewDZG5XH0lWXaMAzTyjy8wcreF68ldYoxrAUHPWda7*9s!AWLeFgCW!xVM3qhHCihk*Zd6TPaeyBPx5pzSgvC1QhHsaV42SgG!azx8zfmM8kgk22U0*R9u9SGO!RSiJaLYX2SCWJr5VC1R6pZICrpX58XdZIJe*DaqliWapyv4X!2kr72QcljLw1Sn8Dj2WFBg__/results,1 34831,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iA0coWl!A1nESlGoSTGV2r*v2qvEMoUKOLUXdvGMPcwsAtsPY8KPCZPvUKhMWPWl1QCl784Wls2g7Uc3WocSuLewoVa20ebcmgususVO!VYbRxjV2Db1oMwVCLX!vMEJtu2NlxEsn1zelL1CIypWQOGlL!L4xBzqelYFSo6U3FMmWIZYNodJxOQcJhATc9gBscMd43h5PBs*eQ!26QedhtZ1p2DAM59J4KcPFnpe3MpLEmJYCo77k0tf*llwi5YoWqJbLBWzOhhO0PAp!xP5Sxw78u!3vBRc5hkpiMRxpTQa6Ib57DHzN!YziWCT7dhTsP27FKV7pKKIVkuRPVJR4mulSLFHKhrgaqkfX5c1UtH7sFoqW5Yq3G!hv7QNfPYt*FGa11qbb0hHfd4_/results,1 34832,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iA0coWl!A1nESlBSk2Ii9fOz9iqxTKECTu3FXnsGDzOLsO36IeH7hMkvmM5drxNW3e59c1YWSml6be*XwQJICawt8GtlG22OrTnBrtu8Kl9q4wiDGtqm7pW5AKHW3zc4wbad8SqC5aPhU9kLFKJiBUy89JPYvzGHuppVgZIjJfeUEZYhlk1hEjE5hQnExBS2Q2z3xDgOr3fjB!*BNpBbGkpXHYIBz3wngZ!!WOh59lFekhDDXHDcn1z66Z8FN2uJoiW6xlIxqYPhBA2fsj!Rf8SxI*!55KXgMs9IQSS2K6VRQ1f0Z4uZv9GfUQSrbMeegu3fpSjdIhVFtFiKbJGKEl8qRYotUlEDF0v9!LsskYq!h8VS2bxU4a6F7tQ28Nu3WsF9UmvzAGKZfoQ_/results,1 34833,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iA0coWl!A1mulaIQO8W06ufX9iqxTKECTu3Fu3gGDzOLwJphzOgxI*zdFWmuN2E7o8WoMtL0Sny6yvWg7Ec*WsfAyF1bd1MrrFT6tdNnt!s3exFapT1hFGMn20HoiyO06uvmTvDnBilGyslyFfbiGtaQyhVah8KOT8SjvidNpJRAKQNlghWAFXMYB4zPYQwwNocdADvcMQrL49noKXiw0gwqj63vTtFAYD6jyM8fLPC8eCutUYxhKTgaTq5D!WfBLVrCYAlvsVTN6kA4USOkHE6kL2nswL9f0ppRXhaoQhzGleNkoBvms8fM35jPJIJNtlNP0fbvUhjvkUoiWi2F9kglia!VQtUeqWSAq6V!fF3WSCXvw2qpYlmq8r8Fc!6k!!xbJQb51ir9DWp9gIs_/results,1 34834,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iA0coWl!A1muk6KkdoqplM!P7VVimUIFnNqLd*EMHmYWgTX9kNF9RviXK!Z47KTKSGOvwleue2W*L4N1GEbu2jp6K6xU!r3TJ7frNy8itEp7wiCGTra90GdHaNXt6k6wndFBhJFytHwKe3YNa0jlCq1DYfsX4lHfkyZSSqCUgTLCCsCKKYwDxqcwBhibwnaA7R4YheX5bPQQPFhpepXH1neHaCAwX1Hk508WeJ69ldYoxjAXHA0n16H8s!BmLWGwhNdYqiZ1IJyoEVIOJ9K3NHbgPy5pzSgvC1QhDuPKcTLQFfPZYuZvzGcUwSrbqado!3cpjLdIJREtlkJbpJLEl0qhaotUMsDFUj!!LkukkvdhsVQxL1X534I5ddJ99q0Svfxolb4DxXp98w__/results,1 34835,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iA0coTS*gVxipSjUtNhR27!vvVZimUIFnNoD3oUZPMwsAj2MJqF1Qvi7Lc9XZTp1TkgljFvsMQ5forf1Q55OAHE1Sn3tjbZ8jOy5tls0QrdSAYHW7mIvoJXKEYwwXduMQl0soZGfb3YH3Q0KhBnJJ8ur0BfbsIoUttASCqsfiENdT6pAyT0lB8oEyzyWzWHcY3wOYx5jc9jBY4cbRv1yfzZ6BA!6HUaZhtZ1x2AAmI8o8NM7y3tevJWWKMSwFByFnUso*yy4RUvYW8JbLBWzOj6coAEpw470KY7d82!ntGSU5xkqEPfjSnE00A3z2WPmb8xnEsEm27GnYPt3KYz3SEURrZZCe6SixNdKoWKPVDTA1VI*vi5rpKL3YbVUtixVuN*CcO5a!9nXUoztSyPVN*vehHw_/results,1 34836,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iA0cIWl!A7mum6IkprWJ1M!v7VVimUIFnNoLu3gGDzOLjO3NkNFDRvinK7K*Gasy0rwpZV0xqru!wBLXRtnbZbCOhpG7t!7JVlip9GunT27VL15EaJX2hEEMnWyN0GdHaNXXh9vBdr0OeoyUo8tV2LNrWEMqV2gdCjs8EY*6njSRUgKlDJQRVgBWTGEcMD6FMcDYFLYDbHfHKFwe70aPwYOVvVF5bH13jAYCc48iP3!wwPPso7RGMYa54GjYuQ7lnwU3awmDJbzGUjWpA!FEjZBy2JE!p7ED*35La0Z5WaAKcRhXjpOBrpjPFjN*Yz6jCFbZTj1F279LYbxFKolosRTaIpUkvlQKVVukkgEulvpxuiyRSr6HxVLFvFTlfwv9qZPu2LdKGPneKv0NXw2CFg__/results,1 34837,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iA0cIWl!A7mulaBQ03qp1M!vH0osU6iAU3vxLszYw8wigMGMGT1lhH*YIoXJSHMVYNcXpbQtMA69a7g2Cj77ESwNI3sNdmcrQCr92umLvetu9sK3fgOMYuxka4S!WUKrvt7tCdAN2usxUk6WNwE327CGVLbQ2hd2eiIOdT1pIqUMlNJTJlgRsGIO4wHjcxgLGJvDDgE73DEalsez0bP3AHIwKo!t687RgGceUeTnD1bwvLiV1ijGsBQc9SfXvvyz4BYt4WAJb7FUzeqEcKKGT9mfSJ*T2AP*fklrRnlZoArxMK4cJwPdMJ89Zv7GfCYRbLKdeoq2f5fCeI9UEtFqKbRHKkl8rRSq9kglA1wt9ePrskYqeR9WSxXLUpX7LQyXTtrPPihh5LVV!htjfoFO/results,1 34838,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iA0cISm*gZDrpijUbjGRmr*v2lZimUIFnNqLd!0ZdphdhI0exoSeEsI*IdT6OiSkusnWBnETvYSoX2GRvRRjp5WBE64Gaa79aOARjGBvoErTGiHVS6fOcGoP!9alUlnC2I6daIZWXYDQyK8PqGCgnNNmJJ8s7625QMIqUkCgpQvs9EQsanNSBUruKbmjTLDMY9kcxj3G5zDmMTaHHTx2uGPUL493o7XzYIQeZBpSm9XBgGMeUeCnD5b3vPgoLVFow1LjqKtcuvDPGrdoCXtLeIulYlbHNydouC67ivQ5brvn37e0ZJTnGSoQ9!NKcTTQDfPZY!ZvzGfSgk22Y0*B9u9SGO!Rilq0WgrtkYo6vlYKFXukogGulvrxd1kjFX0Pq6WyZanCXgv63An47Ru4ZMRbI9U3byuFow__/results,1 34839,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8iA0cISm*gSzqpCiJSW0q9fNrr5NYplABp*ZgvGiGHWYWYdPrIaGHhHAzCCiRrT*sbhJSuXWzC9t17PXVQkpL83kZjGVgRzW2QSNMK9Vbp0735y8CSql836FrGy3U2RIa!XWzHUzXK5BlJB9drsKcbcEqUtiNlrCxwwtxqKtJFSi5p!RAGWGZx7IpjHuMT2HMY2wK23ls98CovzzfjdbgwbS9lmkoXVUHA8Dco8BPnyzvefZRWqIQw1xwFDqXsP2z4GYtYW8Jr7FUTOr4cIIGpAwd6Wscu!c*bmnJKM8zVCDux5XiaKAr5rPFzN!YzyiCVbZjT8H271IYb5GKIloshbZIRYkvlULFFqlogIulfvxdlkhF38NiqWxeqnDHQn*qWne0SKHb9waOBy2PnZL3s6By6qTm!TdVXIiH/results,1 34840,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8CK8jNM1vINe4CQoxre1K*fyubSWWKVTAqb3gNTPeYWYR6FGZhB4Tkn*A8tp35pKQhith!reeMyNg1wk!MMVMP0rgSSX052A00DGCvYYOLdNcyK6XZ7hrbw7MlcIe0AaO8lYxeQVCK77eoYO2zaxuRsrJ5cb0FYqsIRUstHZLdnwiFrU1aQKl9JTSUSZY4bFiDss9ls9hmceyOezgscMdo*7yeDZ6ch40H5VIQ2mrUzDgmM8o8NMHy3tePEprFGJYCo66zrVb*llwi5awt4S3WKpmdXw4QcOl7DrSlzh2z79vaZ3RvCxQhXI*rhRHA90wnz1m*sZ8JhFssh17CrZ*l8J4j1QU0WoptEcqSnytFKr2SEUDXC314!uyRip6H1ZLFctSlf0tjOeew2dfC6b4pRXyGzhPhSg_/results,1 34841,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8CK8jNM1vIMuxEhRqUtup2r*v2m5imUIFnNoDeNGMd5hZZPSgTEL3Ccm1Ya5EUL*BepNHoQy7dPKkE9IwuIBiukEy9QkP7!Lc8V4AWyqhb73RsAnb3Rp6tkxzIY!w!btlz1wppJcyHW8Vk7Z7Kz6u0EFDZ*cmGSlHt1emL1BkDalgobVbsv0TsaitSRMopaeUjjLCCo8VU1jusXwKyzyWTWE7j!3uGPW3x7vRg*Og!aBEGkpbHYIBx3xGgZ8!WN7z7FZaoxDDXHDUda7d8s!Cm7WEvSW8xlI1qePDCRouZdeRvsSxe*79kdYZzcsCVSj340pxNNAV89li5m*MZxTBKtuxp2D7dymMt0hFES2WQlukosSXSqFqi1Q0wMVSP06XJVLR97BYqpiXquxvYTh1HI59LZji51bIL0B6itI_/results,1 34842,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZD8CK8jhOY3kOs4qRViUuxI7d*XjxDLFCrg1F68C7Pe8cwiI7teRbiOUCoVsSnQ!YeOhCoZoao76eVG!paTKxNqeMOOd0oU74RFvx7QGxPsxM2!VPRM3lud4hqallITNURSJo5cnB88LbEpE45fcdr0RFx0QcM!b7qDNAzmeAnKR8uVyItOkgoVOuDShqR!QQY1Oap8Se5KclsywjKHZVNY6rB0CksclkxhO4ftBgy75Xk2fLAaJO16FvvUZAcvwFbuga!Pn1VO8!xWXAJvw5xx2HYubfhnxs1Kgk4SXCOpmORx5ngO67LtiF9D21398IjLBKd5BgqQunHFMBjoivlsEfM35jOyYJXsUJOX*TsVhFuoAosWU4EtVIHjS6lAsYUqGOBiqh!3yxKq4HtYTJXNUxXmt9CdOdXXvmSkp!8NE9!jCJGL/results,1 34843,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZCMHfM4kqT5DWQ5FkVJTWqTqp*ftVeJZQoVcGov9uIZdphZBLY3Q8KOCc3tIHxJCVx8QNGaTn0KLVVC9zfTS3W!G2UB1LDdr4MFTubIFno0wkqlz51u4dQdXoUvlcbWQycbI*QFCI36ukEH2*XaK3NajpZ3YS9Q8D2tYGO13*jxhTrU1XQfKCVSSk8ZYQVixRSWI5ZPYRwxPoXtENs9MIbL89nYyXuwsjcqDaWrTsGAZx5I4KdPFnqevZXVJMQwFxzznWu**bPgZi1laClbY6ma1MFwgoZP2Xdkr3HsyH9cspqzvCxIRXIcV5pFA10xny1m*sZ8RhGssh17CrZ*l8qyLVJRRIulyBapKPGlUqTaIhUNcLHUj6*LEqnofVgsVcxLVe630LedhM!!VcLIt0bpby5ShSQ_/results,1 34844,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZBsHPM4ktcf9Ixc6qYoYFqbSu3fd!1VsEyhIpzaC7tmxh5mFoHp9RCxY5Sk71BOj1GyfxFd035B08nuSWoDmNLSfLSDAQolsDawqxKmluq5URe4a2!2wrVSWcIghqautFBXIFTy8w1OME2vnBZP8smlE!YKDd8nBRRWusKPD4lFbQ9PM1JypOSOMsEyxLI5LEUsncM4YnwO2yG2u2EML!OzsbPzYOpey9i3tjt7A455IJ4fjyz0vLiVlcTHsBQccyeXrvyz4BYtUbRE77FUzOpgOF7DpexOZKcwduTflqzkLM0zUpAUxxXTYKB3zGeLmb8xn0kEd9kOPXnbv0tRukUqiGi1FNkiFSS!VooUW6SCAa6W!vF1WSMVvA!rpbJlqcL!FvpLU8Nn30ih69dKqm!hy4Ab/results,1 34845,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZBsHPM4kqT5DUQdCyiJ3dqgtn*fta2ATKECTu1ld2HGO57diGipuoCcgyh!h1TLjyA63ntWQ7pKCF!yh1jxDqIUEF7li!a85UrDGaG47m!dhqMYwbOGbkWpGRfXRlTw1ry8lbbkwhC6smtYoUrRAqHgn2*QQTfQ2dyBRukk3EvdQkGPUQaJ5DbR81NkUFPDbQdK6iippUywxGHJHBY7LJ7DqMPoHHZw2OGBEReGu5GL9aCZVDwcS1NdRgOWeUIjPxxYzvPiUZKjcQxLgyO2c27TPxvcoiXsLOEtlrJZHTecUcNO2XYkz*7YHf*xSHJK4jRBGYrdukLsLXTDfvaY!Rv7mYxgk23f02j7dymM90h5I1othfZIeRNfK4WyPVLeAldL*fi6rJHyfg!rpZJlqcz8LciqYfDZ17xUrC64!AZnbIft/results,1 34846,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZBsHPM4kqb5DWQRK0VJTGs7Uj4*a6!CZQoVcGov7JoZe5hZBKbXNmGHJMu*odyVsFaqkzwl2f7WqV4DoLQ096s1gFMCawNbGmFa4HXqDHfdzavwrVSOYIXt2kYLdQFCIx9fcILpeuWFeFaOLjdhLtDwfVZBYbUv*PCWOdT18CwDpURK6SkjrECsmMJyxPIpjCPGp7AdYrsXxvAyPBs7eg!m7bVMQ!u6YzDgme8k8NOBhZ5nt7KahBjmgmP!5NqXfxbcrCWKlugaS9WkDoYTNHzK*kT2EceO*NeS1ZzlZUEqkuO4UhoNdMV8tpj5G*MZRbDKduwp2P5ditItUlFEi6XIFqko8aVSpNoiFQ1wsdSPr8sSqeh9WCxVzEtV7rfQn7sWPvtGCt1!NlI9AZzdf8w_/results,1 34847,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZBsHF5HUprfQA5YAQVsip2on9!1LYJMoQJO7SHswEx2PLtRkGJQHsm9IPqEUgkvOFP49EPzpIoBKkXXU94wCVjWdDCgpk*NKS2*atTRSpf!cW2bEppx0D1aJaEnRnAvwaagsmS8avgNnuqHLTWQcS1QVDVlMVB!B0HBvnroIBvBzeHCIJldOirvAMJzkEIhmSlh*hZoVmN9plGSWEliJDMutly8xEWWi5a40HLhEney3GnkiL28zkYuJoMsxcD8CWp0mQIY5Tua9P5LZTOvfpVkaBrD2uCI6ZyZ8s8GtxoJ20h4T6R00ccOZ*IwUzYdyYc7dqsfb0kWkiiJUYoiuy4fOwvdsZ8jYf7GfmYj2BXbzTTF*t0K4yNWzog2W6EjVs7Et1qh9IiVs8DNVj*!XbZYOb!HzVbxulWqXwviBu8QkktGh7IuGP8GWYSQGw__/results,1 34848,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZAMjnkcoWl!A1ngJijEpjao6d93bSuxTKECTu1lvfYMO8wuMkrIIcDHIE4!YGH3QdIgLt9bTnnd0g5yNfa9JsGpkBBpM3Z6p4aRN4wPCvLPi9CIZBBHDoHd!k58NVCWS6bgAQXVIwR7BbUqqmrGm5af4VQfdtSkjGvCQIe2riTlVyBU7N5DBdUKbl6TxNkk3Ki6QkLKOIcFF2Yhx5dYozqPS0fJLCUzlAmWWiydwxKLJXMYsRiZww4WOzwwbMPz3fDJeFC1kCx0qc5OzoBhviLHD58s63nxUVwg14alxmFTuTDLP2vcoqXIWoq2WMpndWxznIbpsqmI3*y2W*5jiwuCkyxFOUrsuMLIG!iG!ewx8zfmM2nBJtu!J2f7d6ko2iPltWi1FNoj5XV8rRTK90h5A1wt9eN2WSPlfQ!rpdJlqVz*FsS5reHaV4zK!lIx*g2Z8JTV/results,1 34849,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulZAMDq8jhPIFvSOXuClKYqe2q6Z*X9vbxDWFCjilF!!iWe8ws4iVXKgA10GcSkVsinT!puMHF4ee7YO4eqaMvvRKaoAJKt!POsV1ZAqlvt4S2VG2M7Vw!0hsShl0VX3XCsJMs5ZezrqD7DmzpEmcD44TkQedJFVc6IBLG5L6ITaoyePKleRQktuSAZYBlo1hKWDpGJYAloxhG8A2VwzDcXs33FgNsuOChi41WeME2MotcvXhrQo0T17FJXI2TBmHbefShn9m3KSkCCRFSyQVozxgjuOwLtuO!NG3Heqvj7hMcJpnqEApjCuMvIEumM8aMfcxn4EFi2T7mpzsv6miaA2VZ9FsKrSGynN8LhUq1lB5A5xN9evvMofK!x5mU2XTVIVZC3zfd*q3LykR3Wtr14PQi4XR711QPfGziY3sFZW0U2ZNmOcTZ*TTZFu9jRS56JOw3Y*N9AWyn5qe/results,1 34850,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulSL5ERs4QtP8BrKolaJQk9pUbf!!ZlfEMoUKOLUXe2CGHWYXGdfZPuGnhEnXK4CU!Is3Dz7UV8LKvvPLDaBTrbIeSGO1e297N6qdL1IpV2vz3JiLvzvcbBVAbbB239SVVebqBZX!vPkKrukMWAuWTZZX5a4eiJLlfuMFbOL0wAZ2wKwMkgwlGUgmXIpcOsdJ5OQcJ5ATc9wRuePIcVzu78bPkMHVndWHAAd0DgFA!UiC*nBXYebFR3lBQhuWGsehcgHbP2vcYiSKkeiWSPmsDzYneECXoSJ*ituO!vGSF4LLLCU5kTiuA40GumE!e8L8jflMWrApdpwpxP7ditI9VlGLVluRPVZRx9dakXyPVTTA1VY*Tpc1VtH3sNoqXbbKh99Cd2lqf!w7rWz9UmnzDbiPhG8_/results,1 34851,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulSL5EfM4QtP8BnJdK0EQO7WJ2s!v8TaxTKECTu2FXTTDDjOLsNWmT!ghIantuW!R699dtVo0vEtI9aFNK41rrmetpKvqdnmVxjqeMtLeut46Oh6es25aza2Q6q1Rp!9hHfetVCDSN6I2XLWOUMvPq5tgG638OzCSjy4XblvXsIoUrtDSF3Z4IgM69KQKlBwouaeMsAywbApLAUunMAYYm8L2gO3vGIXL493o0XuwQhu5C!3QHYMBz3xGgb97sMDz7KO0RCGGueCon1z68s!Cm7WEwRJeY6mY1IFwgoZP2U!kL3HswL*f0pLRNM9QgVJY1w5HC12xny1m*sZ!RhGssh17CrZ*l8J4i1QU0WIptEUqSnypFCq2SEULXCz14!!yRCr6HhZLZfNSxXAs6FMjhnNGciPOtVRfQ66IXw__/results,1 34852,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulSL5EfM4QtL8BrKIlaJQk7JUav!!ZreJZQoVcGov9sKMd5hZBNB2fSSPkYih11gyV7!5*aY*I1GccW1abcHdt52B96YHB*OBB!50qaEy9lzby*fhRmNpLDXt66rstL06Qmk!bq4D1K1FTSXS0fKq4eoKVYjMbTLHTR2fxIAOtSg8JSVKipQRlhCWTGExYfEUpghTU9iesP0dk7Q8nk2e0ANUbWd2vhyqkzeAzAPz*N2DRZ5nj8qc!RjmgpPYOcftnwU3a4mTJb7GUjapQ!F4DUwZO8rnMHbi3y9lrmScJixjMY1rx4OBrpjPFjN*Yz6jCFbZDj15279Lcb5FKohosRTbIhUkvlSKZVukggEulvrxdVkiFbwPi6WSeals!C20l7pyn30wuqteSmO*AI5RgkA_/results,1 34853,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulSL5EfM4QtL8BnKpRVGo3Xqp1M!v8TaxTKECTu3FXmvGO8wsAjB2SPg5YSkM0pfE1e9u7w1Awipj3fIkbSs77c6ptgo!!gEcg45UcA1qCY3Sz51uv!*30pdKY9!ha2or9dURavX55jpAZ7SXFSyfLK8Srq4QFSvcxku*ifMDG9GxZlWg5EjJPWWCZYhlc1iKWDqHCcTEHHZE7HjDOC73Z!MX7wEaY9UhlGN1CQY880QC*3BnoefFq7wkIYal4LjvXPrtnwW3aImiJbrFUjGrg!EEDZ!y78gf49iRfzvyUvA0z0hBUhzXgUYD3TCfPWb!xnwmEWyyHXsKtn!XonSPVBTRaimyRypKfK0UKfZIRQNcLfXj67JGKnofVktly1LF!Fswbde4zz4oaZuXWukvuDWDhA__/results,1 34854,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulSL5EfM4Qml!A7l0m6IQ09iOms!vH0osU6iAU3vBCzPeYWaRUYPUCa0Tkl7M8t7DrXvtISHV1yBPnTiaSsLlCkqbqgetQRqukKCuvVZmC0bmXpkuDVctiDe7h9b2Yc9dCcISNNdd20gubNMGbp!mg!oG4bQZyUeXM1cnU7CKFGahpVtY*UQsamtSBUruKbmjjLDMY9kUlnosncKYx9gUtvfY*o5Rf3m8Gz04D6odJOxCaatDMOCYzyjwdw!W9zy7lZYoxDAXHHWdS7f8s!BmLWFvCa!xVEzq!HCChkvZdaQvceyef7!lJaNpnqECpX5cOxwNdMV8tpj5G*MZRbDKduwp2P5dCuMtUlFEi6XQFqko8aVSqNgiFQ1wsdSP02WJVPQ9LJbK5qUK!1sYjl1rjn0FXLYfDYhvbe!Gkg__/results,1 34855,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulSL5EfM4Qmh!A1nETVFSk9pE6ud37VVimUIFnNqLvfYMHmYWGdubIeF1wtJPmIy6wbrT54RVb0beT7CvjbL362ABpgTWFhiNtK3SJ0fktdu8Sl8q7QiDHLq2MVJfgNCorxucYLteex3B8tHwIe0FClGxAiZe!knUL8yhrmZVoORIyT1lhGWIZVNYilg6hQnExBS2R2z*wDgOz3fjR!*Btr1Ru1C66hgMeOaBBP7uyULPs4*ykoQY5oLj*uTST*8suFlLFC3RNZaKSR0MJ2j4lP2J*DWOHfmPJS8FT*OMFCTFdu1o1NAV*dli5m*0ZxTBKtuxp2D7dylKt0hFES2WIlukosSXSpFii1TUwMVSP26XJVLR97BYKpuXKtxvoT93LVz7VknTvjdKfwMUbX9n/results,1 34856,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulSL5EfM4kqT5DeQSK1gldoup2vx917aIZQoVcGov3oUZdpjZiBjd9Qk9JSR9h9Loz4Qcblzdobxw9Qql0a288LuBVio4CMIY6KoT5qPtDTyFEVwbGFRxUwt1keoKd!3NlrtWKEvoeS*rqoOpQKjE1xtMMFIrJ89IPjpu3IA8YwdSQKGlK!z0RCxqe*uiAyX3lNxRRljmsWwKSz2WTmHMY2wK23tsP2DUH493o2fnwdS6E7vQ2u4cDDjmEQX!7sHynmcfpSUKMcwFR93k0pV*FtysJewt4TWWikkdH07QcCm7ifQ5jt3zh0taMprmGSpQ6te1w9FCV!xni5m*sZ9RBKtsx56C7d!lMN4iFUW0WAptkYoSXyqFii1S0QIXS*34uiyRin4Pi6WyeanC*i3oq6zhs28E7!qmEuobhfqFdg__/results,1 34857,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulSIZOxg4Qmh!A1nEpSiJTW36yN93bSuxTKECTu0Be2GGHWYWgZZqiEgVYfoG2ye76QiX8gUWzT460ULBBVftDYpOwMLgOMkr10PXQNkr2XM1AEyF4vr9MmjoEyM419C6Zrrh4mQakcpcvDBbcmEIA4MmtWLiDISaf*XQQXdS2AdKcDZarkyfoUhKnMNGCrsl1RM2qKlx6SmZo2SWMsJSh6VTGHUYncIShyVT2N5h!ztG3PJ4NnK0HnQjFd*50lRHb8AyD8jzdw!W8zx7KymQj2EuOGI7F3b7Z8HNWoqdpXiNpXxSx4XjNWzKtiN5DmN3*PspKRJCsxTliLpx7eJgoCvms8XM35jPKIJVtkNP3vbvUnG8RSqIaLEU2iIVJL5UCuVbpIIBLpb68XVZIhW8D4ul0nmp3PwWZAu*E1JpzlTzWnPxDWsBjNE_/results,1 34858,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulSIZO!ZxJCGpokqt1OaOLOKmKKlJMK3av!*aq4CcQgSc2gP2WrPs7Mwio8uq9ljq0UDXwoYE4jPs4nQ6fhdq79HFa1nBKuDZybysRF18Sjikq!XTc7LdPN7D4WGzfTFVzh7lLCFQoAtWldQfx1oD7BsiDfSZ0LlUO0OF7EdhQ6mwq7rIs0qoAyRk8usEFXRRKts0p9HV8i70AQK!oLFtxG48vaMGNTFdtCkRpkQ25QoLEQu7sACxoAvjiPEubI7Y*IIxXJre2Npq0OCxnLWhidatAJu5J,1 34859,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*BoulSIZHF5HSMoX9I5c4qYoiZ2yrpT!fdc2iWUKFXBqL96FGXuYXeQF2amA7oMoAcVMSjD*wPjKBX9rVRCVgG9Ex!HzrACBUDMA99UMGi4OrTj2287MpFzY41Tb1B0TJyTU*HbFE6CVwqjFUTZYLgxOmMRllGOghQnx*inSqM6j0lEyS8kMZYClFkvHsMRiyRgWWywew7YW294xapfHt9HKeIBGdnzjUp1VzoBh7ojjbx4s63lyKy2IK8NU4ag5uTDhnxVu0lJoLYVLLOWjOrY4TsNU2ZxIn*2yW*79kRYxTbKU5CSx7dqEXkMX9GeNmb*Rn0EJFtn2PTnbv0uF4Ropr0SzpcgaKa*ic6VIvkbKa!BsqR!3yxwp73!YLZVOS!V6LMhj2!C1D5x1zXttxkOHs0XwfhaUL*KqYwWt4sAbpceEfr5Iwb90tsMxpNgNVyYOuPbDCb4Bf02XnQ__/results,1 34860,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctugzAQ*Boulaj8iHkcoWl!A1muFaxQk2L6!PyubSWWKVTAqT3gXZjBw8wiMP0wJvSYkOwNSiu7a0LqTzW2UDgc4vEDMD1I896NBigYwbmBuxpuhNQvSp*hqr3YcddKbQkjH5VoBq4vQGjk1xV2MKrXTouRYrK8cnOBhtWkhEIrV9jxgVjU9qQOlMJTCkeZYLnH8jks81g2hzGPsTns4LHDDaN!uT8bPTkPRvSDTENru1Mw4JhPKPDTO8t7XryVVijEsBQcdTtXrvyz4BYtYW8Jb7FUzur4cIKGS9ntSJ*j2D3*dkorRrMiRyXK*LhSHA10w3z2mPkb85lEsMl27CnY*l0K4z1SUUSrpdAeqSjxtVKo3CMVDXC11I!vyxqp6H1YLZUvS5X2t9CflYDPvpF8EG0j9TesLH96/results,1 34861,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctu6jAQ*Ro2lYj8wE5YJg3Qbnqr5t61lTpWGhViaptyP79!BKK0UAVW7cbjmTPM8Zmxg5bKTHA!QfTNmlqVrdHWaZXQu7Xd4hwC62ubxkrNRVs1bW2jLvgWPUupjajuGqOjP0!!DkHJBGWq3O*U2no4dSH0YszWbTqfoGVn9vt9VDVKcBPV8j3avXbxrZIV47LVuw2r6i7YVHy7Dg5e3le8EOq94SIE8qJgq8Vf9piuFiGfap1L*lBuDhn5isEYEhJ3!H3BiuLxX4dCf1K7xNnGnTx3Sgi61d4BDrD6MhebW2v1Budn6wUAE0LpSMXx71c8AwDQGRopmH4jmK5Lf9dF616AKU3DmX0gr*YFMPF*a5!IbmTb3*rBsim1U0oyV8k2xRuS36CuOEFZn5KElMSnfMLigMWnMBowegojASOnsFnAZgcMh!V4NuyHl2gulZj2W7db9gJ85i3o86fHrKD57E9xCvo2nGsc9pVTb35Z485KgkESvETS*CQPOD69pO!yr4gXw7aH*IOLU4JpEoM5oGFcUzgY6AXzuUbMz5jPpxZcJHuoqZf9PRWE11ANWjSaClxDNej4WCowv4ZqMMDRVF!!LmOoBvdhNFV8nsr*Lci64fazr0Wp!AsT7QeZd0J!/results,1 34862,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctu6jAQ*Ro2lYj8IA!WSQOUTW*V3Lu2UtuiacGmtin38!tHIEoLVWDVbjyeOYcZnxk7aKnMCJcjlLxZY7imcoSKF*mkbUgorndroy0CgfW1JZNaUy5YI1Y26oJv0ZOU2nB21xgd*Xn02WKU2TSq3u*U2no4dyH0bMzWbVo*RvPW7Pf7iDWKUxOt5Hu0e23jWyUZoVLo3YawVRtsGN2ug4PnS0Yrrt4bykOgrCqymP0lD*liFviJ1qWk9*XmwCgXBAKAAcSTlrGsSFU9*Gtx6M9ql7TYuLOXTkuMbrV3gAOswsLFptZaxcH5OYqFZHzJDnIAHCgz*c0yEUQDZSbfyEzWtb*YXLjrbmrTUKJq8WqvO!H*t*Y96EaK7or3lk2tnb64cJlsK7yJyxvUJo9R0VGyQMk85ROWBiw9hSUBS05hccDiU9gkYJMDhsNyPBv2I8vs!1d83G3dbt4J8Mxb0PHHR1bQfPanOAddG841DvvMuTe*rHFnJcEgCV4iaXqyDjg!uKzrss!IZ*22B*7BxXmMkywFU5CEcY1hb6AXzOcaMT9jPp9acJHsvqZO9velILymVK9Fg0uBa0r1Oj60FJheU6o3wMGlvnxdhpTq3YfBpdLzpfzfglw11H72Na8VfSZcfAChTj6r/results,1 34863,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctSwyAU*ZpunGmGhJKky6QP7UrH6JqJwNSMLVQgVv9eHmkzqY2TdqUb4N5z4XDOzUMJqUdwPopipUu3BGb9bmbJaM1pycmXSXDJVL3RyuRDW6DMNlwqwjit!PqwK3gRQmlG7yqtgvtHdy6K0lGUy3Jfy42JYGZT0avWO7toYhQtm2m*3we0kozoYC0!gvqtye!koJgIruotpusmWVGy2*gALleUFEx!VIT5xLwo8O3iCT9ktwtfH3NB2Yo2cAqTJr0qcFE8PDf50F3QDEm!tReeWwEomikXAAsYWbnNTY3oTen0M!4t1BXBsuRvxhXMPnfGNlUJ3jrRGbalsvpQbk8yVrgJzW!i5nAU5W1J6ktSV3KCJR5LzmGxx!JzGPIYOodNPDY5YNAPx7tB17JUESHZuF3a1bIV4CpnoK0fH6u85t6tMAOtDX3GQXdy5qZ*ZlyvpNBLCi!RND3LA44vXNq67E6Ei67tvv4QwgzBOE3AFMS!XeOw09AL!nONmL*RnxMLLpLd1dTK*p0qDK!h6lg0mApcQ9VxfCgVmF5D1WngYKofX5chVJ3nYTBV0k*lfgtiXRHz2VeslOQVM*4NMuHDmw__/results,1 34864,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctSwjAU*Ro2ztBJG9PHshVQVjpW15maZEoHSDAJon9vHoVOEZzCSjdJ7j03OTnn9qGE1CM4GUWx0pVbArN!N*NGsppXnHyZmEumtiutTDq0uDK7cKUI47Th9X5T8CaE0ow!NFoFj8*uWBSlo6iQ1W4rVyaCuU1FC603dtHGKJq10263C2gjGdFBLT6C7bLNb6SgmAiutmtM6zbZULJZ!QDO5pSUTH40hPnEpCzx*fQFP!X3U18fc0HZnLZwnKE2PS9xWT69tvnQXdAMSbG2F55YASi6Uy4AFjCyCpvLjOhV5fQz7h3UDcGy4kvjCmafxkKlGsE7J3rDulJWHyrsScYKN6HJTdQejqKiK0l9SepKjrDEY8kpLPZYfApDHkOnsFuP3e4x6IfD3aBrWaqIkGzcLe1q1glwlXegqx8fqrzms1thDjobzhkH3cm5m*6ZcWclhV5SeImk7CQPOLxwaeeyOxFO!7b7!n0IcwTjNAEZiH27xmGvoRf05xoxf6M*RxZcJLuvqZP9O1UYXkPVs2gwFbiGquf4UCqQXUPVa!Bgqh9flyFUvedhMFVynsr9FkTdEPPZV6ySZIEZ*wZOg8M3/results,1 34865,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVctSwjAU*Ro2ztBJG9LHsuWhrHSsrjM1yZSOkGASRP*ePCqdIjiFlW6S3Hsu9!ScW1olpB7B2SiK38y2lazmFSefJuaSqd1aK5MOgYmVqcSVIozThtcma5NvwYsQSjN612gV3D!6VihKR1Ehq*1Ork0Ec5uKVlpv7aGNUbRot*1!H9BGMqKDWrwHu9c2v5WCYiK42m0wrdtkQ8l27QO4WFJSMvneEOYTs7LEt*Mn*JDfzn19zAVlS9rCcYba9LLEZfnw3OZDd0GzJMXGXnhmBaBoqlwALGBkFTaXGdHryuln3LqiK90QLCv!alzB7MNYqFQjeOdEb9lUyupDhe1krHAbmt1EbXMUFV1J6ktSV3KEJR5LTmGxx!JTGPIYOoVNPDb5xqBfDneDbmSpIkKycXe0p0UnwFVOQVc*PlR5zWd*CnPQ2XDOOOg65277Z8adlRR6SeElkrKTPODwh0s7l11HOO*b7uu*Q5gjGKcJyEDsxzUOewO9YD7XiPkb8zmy4CLZfU2d7N!pwvAaqp5Fg6nANVQ9x4dSgewaqt4AB1P9eLsMoeo9D4OpkvNU7rMg6oaY175ilSQrzPgXPEm*sA__/results,1 34866,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcluwjAU*BoulYicmCwcE7ZyKmras5XaFkSADbaB9u*rJRCFkipwai!238zjTWYMQXKhenDcC6K93tSKcvHVCzJFpdIYE1QeNkpqyge6lrobFRJTRkq21KgB994H51JR8lwq6b282nFhkOgxojgdxEZXMDVQsFJqZw5VHQbTajudTh4pBcXKW*Kjd1hX!E5wgjBn8rBFZFmBJcG7jSvgdE5wTsWxxNQB4zxHs8kbWqSzieuPGCd0Tio6SIYVPM9Rni*eK9y3D6iXONv2XKNBRtIWwBDaVmYwPSDaFNY*ZSYVVagSI1GwtU4F0c!djk2WnNVJNJZtIY2*MDOTdBR2C8dPQTU8DLK6JXEtiW254mLHxbe4yHHRLS50XHiLGzhucOagWy7PBu2VJRJzQfv10ZymtQHbOQJ1f**S5Ty3fhSmoI6hLThoJ6d2!2fBtVrynSX*HkvDmzrg8oNL6pTtRDhpxu76zyVMQxglMRiCyF1X329c6B3384iZv3E*VxHcZbvpqbb9u5TvPyLViKizFHhEqpF4VykwfESqcYGdpX68XbpINb4PnaXidin7t8CXJdavfUkLgVeIsm*ilcDc/results,1 34867,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcluwjAQ*RoulYicuFk4Jiwtp6KmPVvBtsAq2NR2oP37ekmJQqEKnNqL7Zk3mZf3JosSUg*gZBAl72bbMs6WtRpEhV5TIT*tgSptUC6pqjdamaIQmFiZ61ClMOWE8ZXJ2uR7sBRCaUoemVbB07NrHEeZaSOrQy03JoK5TUVrrXf20MRxNGu2w!EQECYp1sFK7IP6rcnvpCAIC67qLSKrJskI3m18AGdzgksq9wxTn5iUJXqYvqBF*jD19QkXhM5JA0fZqEnPS1SWi9cmH7obNEtabAe!0GbGygXAAkZWYXOmQbKpnH7KrSu60gwjWfE34wqiHztjm2KCt050lm2lrL64sJ2MFW6LJ3dR0zyOirYk8yWZKznBUo!l57DEY8k5LPZYfA6799j9Nwb9crw36EaWKSwkHbZHe5q1AlzlGLT1w2OV13zxUpiD1oZLxkHXOXfbPzPuoqTQSwqvkTQ6ywOOL1zWuuw6wmnXdl**HcI8hkmWghFI*LiGYWegV8znFjF*Yz4nFlwlu6uplf07VRjeQtWxqDcVuIWq43hfKjC6haozwN5UP74ufag6z0NvqvQylfstiBXD5rOvaCXxGlH!BTX4xGw_/results,1 34868,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcluwjAQ*RoulYicmCwcE5aWU1HTnq3UtsBqsKltSvv39RKIQqEKnNqL7Zk3mZf3JosSUg*gdBAl72bTayrk1yAqNFXabILXjFMDcknVrtbK1ITAxMpchiqFKSeMr0zWJt!DVyGUpuSBaRU8Prm!cZSZRrLa72RtIpjbVLTWemsPTRxH82bb7*cBYZJiHazER7B7a*JbKQjCgqvdBpFVk2QEb2sfwPmC4JLKD4apT0zLEt3PntEyv5*5!oQLQhekgaNs3KQXJSrL5UuTD90NmiUtNgNfaDMT5QJgASOrsDnTIKkrp59y64quNMNIVvzNuILo59bYppjgrROdZVMpqy8ubCdjhdvi6V3UNI!joi3JfEnmSk6w1GPpOSzxWHIOiz0Wn8NGHhsdMOiX471BN7JMYSHpsD3a07wV4ConoK0fHqu85ouXwhy0NlwyDrrOudv!mXEXJYVeUniNpPFZHnB84bLWZdcRzrq2!*pDCPMYJlkKxiDx4xqGnYFeMZ9bxPyN!ZxYcJXsrqZW9u9UYXgLVcei3lTgFqqO432pwPgWqs4Ae1P9!Lr0oeo8D72p0stU7rcgVgybz76ilcRrRPk36ybD!g__/results,1 34869,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVclugzAU*BoulZC8xCxHpyEVl7YiqFdkEStFSU2LqdTPrxcllilUwKm92M!esYeZh0C2XR*gXYCiDzU9F*kLLbMAbYvsIT!UBS3zp8eDQkXH5eell4oEgVpLda5isubi2IiT2tWbF2ZKLjShZ31TVx0TZ0Wo!Ne7ukE2rTBqBCWD4Y3JsyrIFqVqwtRMZHeHNKprtHWUxFISQxlgscXiMSyyWDSGEYuRMWxjsc0Vw3a4PRveGw!ybjseulJXe2fAMO!B44c3lvU8eRRT4GKYCg6bm6mZ*llwk5agtQSXWEpHdWw4TsOkbG7EmR!75V!XmBIcJTFIQWTbFUKvoQv6s8bM3!jPIIJFtn1PzvbvUhCukfIimi0F1kh5ic!VAukaKa!Bs6V!fF3mSHnvw2ypeFoq1b!F9tTU6rMvOevq14qLb*Vdf4Q_/results,1 34870,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVclugzAU*BoulZC8xCxHaJrfQJZrpVaoaf2IlM!PFyWWKVTAqb3gZ8*Yw8xDBgYzZvSYkeLbDsIoUJCRth!u2q5pI!Haj2AhjOwcLLvjIKR!V*psV91iz30p3QYY!ahEZ7i!WEInb1*2BFCD9hqMVJPHJ4eLLVhLajvQxg*s!EIc6mrSRkoVKJWnTLAyYOUcVgSsmMNYwNgcdgjY4YHR8Hi!Gz15DyAGI*NYuuoUDXjmK4r8*MkKnhe30gbFGJaCo*7kxg**LLhFSzhYwlss1bM6IZyo4VP2J9K3NPbAf0xpw2hRlahGRWhXjpOGbujPHjN*oz!TCDbZTj1F279LYbxHKolotRTaI5UkvlYK1Xukkgaulvpxu6yRSr6H1VLlslTtfgvDWQl77YPkRnx0Ut8BoX59xg__/results,1 34871,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVclugzAU*BoulZC8xCxHaJrfQJZrpQhqUj!i5vPjRYllChVwai*42TP2MPOQgUGPCT0mJPsyg!DAr7xPSP096E5qMOtKS7j2IxgYIzMHs6PhIKR6b9XZrNrFnrtSKksY!diKRnPVGUIjbxdzArSDcjqMFJPHJ4fOFKwmpRlo5QZ2fCEWtTWpA6XwlMJRJljusXwOyzyWzWHMY2wOO3js8MCofzzfjZ6cBxCDlmkobXUKBhzzFQV!!mR5z4tbaYVCDEvBUXdy5YZ*FtyiJewt4S2WylkdH07QcCm7E!lbHLvnP6a0YjQrclSizLcrxVFDN*Rnj5m*0Z9JBJtsx56C7d!lMN4jFUW0WgrtkYoSXyuFyj1SUQNXS*24XdZIRd*Daql8Waq0v4Xh3Apz7YPkWnw0Ut0B8bN*Yg__/results,1 34872,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVclugzAU*BoulZC8xCxHaJrfQJZrJVaISW1Hav4!XpRYplABp*bi9*AMHmYeAj0ok!F9hoovWy5UshNX2nCVoZYJc3dluEkmekuRiutbb7RlQmCvtb25o5px!Snk0e66zZ76lktHMNQI1ikqz5bQ8e!rPUGLQXpJgqrRcqH6bBvSotoW3PhC9m*Ioa5HbaRUgVJ5yggrA1ZOYUXAiimMBIxMYbuA7Z4YDsvr2fDBe9BsUDyPresO0YBnvoPIz1!s4Hn2VtyAGMNccNif3Pjyz4KbtQSDJbjGUj2pE8KJGj5lfyL!SGMP*OclbgguqhLUoAjjymEy0BXz2WLmb8xnFMEq26mnaPt3KQi3SCURLZYCW6SSxJdKgXqLVDLAxVI*vi5LpJL3YbFUOS9Vu9*CcBTMfvY1p4qdOi4fc4ODVg__/results,1 34873,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVclugzAU*BoulZC8xCxHaJrfQBZ9SlGMSW0qJX9fL0osU6iAU3uxnz2Dh5mHsB7UmNBjQrJPM!meC5GQGvqrGO6gtKkViA6UIUgF!kuM2vAwMmttHm24bkG!d*Jsdu2m4K4EaQkjH7u2UVxeDKGB29WcoLtBOkFGisnQc30xBatJaSZauYkdX4hFbU3qQCk8pXCUCZZ7LJ*DMo9lcxjzGJvDDh47PDDqh!e70ZPzoNtBQRpKW52CAcd8RYGfPlne8!KjtEIhhqXgqDu5ctM*C27REvaW8BZL5ayODydouJTdifQtjt3zH0taMZoVOSpR5tuV4qihG*qzx8zf6M8kgk22Y0*B9u9SGO!RiiJaLYX2SEWJr5VC5R6pqIGrpX78XdZIRd*Daql8Waq018Jw7lp7wQBX7UcD8htxooKQ/results,1 34874,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVclugzAU*BoulZC8xCxHaJrfQBZ9olaoSW0apX9fL0osU6iAU3uxnz2Dh5mHsB7UmNBjQrIPM!mh5yohNUhQ3ZcphNQgR3EFQ5AK9Gc*asPDyKy1ebThugX5KmRndu1mz10J0hJGPoq2UVyeDaGB28WcoMUgnSAjxWR45*psClaT0ky0chM7PhGL2prUgVJ4SuEoEyz3WD6HZR7L5jDmMTaHHTx2uGPUD493oyfnQbeDgjSUtjoFA475jAI*fbC858VHaYVCDEvBUXdy5aZ*FtyiJewt4S2WylkdH07QcCm7E!lLHLvn35e0YjQrclSizLcrxVFDN*Rnj5m*0Z9JBJtsx56C7d!lMN4jFUW0WgrtkYoSXyuFyj1SUQNXS*34u6yRir6H1VL5slRpr4WhE629YICr9q0B!Q2I84KU/results,1 34875,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVclOwzAQ*ZpekBo5Ns5yTEhakFgqAgdOVnCsEtHGxXYpn4!XtFFKi9Ke4GJ75k3m5b3JIrlQI5SNYPChtyK*nYxgmt*Nbh9ecpNtBJPrhZIa9IGOpa4npaSsqepmrrMm!eG9ci4Vq65rJb2HR9sQw0i3EuVmLRY6QolJwTelVubQxhhO2m2z2XhVLRhV3px*euv3Nr8SvCKUN3K9JNW8TdYVXS1cgCY3FS2Y!Kwpc4msKMg0fyKzZJq7!kDKjNP7crmtyKbED1GM*Ba*KUhRzJ5b1GahXsJ0ae48M0owvJI2AAbQ!lKTi7X6RWmNYI2xR5WqpkSUzbu2h7CvlfZP1rzpLOkty1IaoTg1nbQndsPZBWybY5h2JZEriWzJHhY6LDyEBQ4LDmHYYfgQdumwyy2G3LK7N2RnF0nKBRt3R3OadAJs5RXo6se7Kqf56KUoAZ0Nx4xDtnNit39m3FFJvpPknyIpPsgDdm9e1LlsO6K8b7ur34YowSiIQhCDwI1r7PcGesJ8zhHzN!azZ8FJsvuaOtm*U*n!OVQ9iwZTgXOoeo4PpQLxOVS9AQ6m!vF1GULVex4GU4XHqexvgc9rqj*7kpWCvhHWfAOuL8Kz/results,1 34876,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcGSmzAM*ZpcOhPGwBrIkYQk3Uu7U9oz4xoXmABmbQj9*Mo2gWE32SE5bS!SLT1LepIxkot25UYrx3sFlfN!5WyrjuagipryisFCdk2jYGCSIBpSpKBaDoIod1FnpcI1TEhew4KfmVCIXFlJpiT*AwIjEH2uDgpGWXFmKh4lAg4qZFnyntR0xK8cvHNAhC7GFsYmhQrB2AkqrgWTXdlKKNyGyJ6EIhMiKatTKAmsyvhq*eZctiz9WrTS!v5Dk8VOoGogfSdK2LmhMjl52zZqMeyxcxhU3*dWWkDJrZXxs9WdBnsjeJpQXsuuStJsMBYpbUqzcQ*PKY2ZOBeKkzJEcZwc9z!Tl*C4N3hPyojTb6S6IKJjYiNkBz4KBsRznMTxy6*Bb!taQfjbStUeORq3k3qDlCMyvXM2oIGx2XxuxgH2fLSQr*8BX68kevSsVheiJW1BE0HqE1yIhP1t4MbIAu7oeAlmoiJSEcVbFQl6ohWOvjhDcAzfxggJDCTQkDc!3*j8az7P!LxrPmx8!JrvyfieLj7XiLE2V88ukJQLtp6WanWYCGjkDk349YgynG8edUM0teFW41wdOdTqP2vcTUq2oWTfQ2lzNQ8av7xg6rKO6O7nbTf4y9YNsevBg7BBnhnX2p4N9I75PELmc8znTQvuoj3nNNH!OJVtP5Jq1qLFqdAjqWYdX5oKbR5JNRvg4lTvXpclqWb3YXEq*3Yq*VvgWUHh2ZeMCJonrP4HeMQ0*w__/results,1 34877,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcFymzAQ*RpfOmNGoAjwEYLt5tJmQnvWKEJxqDEiEg79*KwkbIbEzmCfkgvS7j7t03trsJaqneFsFoQvsPyTj7Mg1UJshdKwY1UlO1ZzAfsnqUytrDeVCRtAyBrO1UrofdVqOO4jiDV0pExzUReAhaxJvniPUupWFD*LVnu*HywlCWJopFi3VxVEODGp4LltG7PpYxKs!qXrOq8oleCtt5Gv3n7b5xslC8plrfc7Wmz6ZFnwpnIBXt0VPBfqtTQ6TCLLc7pe*qH3yXrp8KHWmeS*2O6AyNbUR8iPIxL1iLuc5vn9377u27vCI0p35u6Z0UKCW20DZAqgMDW5BeivmLVCGMN0y9qSU8XqLRhExf8GHNQlmHk0ZfTYMW2kktR0AlfsQrIfQd!cBOkAiR0ktpB3tcjVolO10NXCUzXiauRU7cbVbg417B7Hu2E7vVhzqcR82JrdahBgkbdowM!PKKf57FGcoMGGc8Zh2zmxyzcz7qwk30nyL5G0OMmDju9ePLhsO!Ll2HaHP4Q4ITiMI7RAoRvX3B8N9IL5XCPma8znnQUXyR5rGmR*TuX711CNLJpMha6hGjk!lQotrqEaDXAy1YevyxSq0e9hMlV0nsr!LchNyeGzrwVT*JmK!g3R49A2/results,1 34878,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcFuozAQ*ZpcVgoCHAM5kpBke9mtSvewJ8s1FrUaILVN2c*fsU2CaJOK5NRebM!8x4zfm0BUI*UMZbMweoWtplo0tdrPwlUlalG1FZw6WnLAa8lVu9cKaIEPsYInCVWM14WoS8ia5Kv31DRK8!Kn0Mr7*WBL4zCBMpJ2rYTKGKUmFT5rfTCHPsbhtt!6rvMKITnTXtm8ee1Lnz*IpiAMrtdWpCj7pCjYYe8CtL0rWM7lm2DcJbI8J7vNI7lPdxvHj5TKGvaLVkdGtiNBvIjCxfpvz7jLSZ7f*!nxwN4VlnhVmbtnRgsO18oGvgFA4crklqB*T60VvDYGaXCTEUnrFzCI8H8HcFCBv4Mpo6WiykjFK1MJXLEbzn6EfXEMQzlREkdJLOUdFjssPodFDovOYdhh!By2cNjiiCG3nO6G7PQSxRrJ58PRnLaDAMtc!wN*fmI5zRcfRak*2HDJOGQrp3b7ZsZdlBQ4ScE1kpZn!*indy8ZXLYV0WZsu!MfQ5RiFCWxv*QjN655MBroFfO5RczXmM87C66SPdY0yP68VRDc0mpk0eRW*i2tRo5PbeUvb2k1GuDkVh!!LlNajX4Pk1vFl1vZv4WmFAw!!4pTyZ4Jr*8D9N*IZw__/results,1 34879,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcFuhCAU*Jq9NDEBWVCPbu3!hqGWbM1aaMEm*fzCe9klWG3UU3uBBzMyzjyDztjxwJpDLj78NMhnY3t98UttlfscRud3OfFr54mtdJ3SL4HAmrA5SCiVDoRRjn3XWqmvntCqr3d*guuNhuN5Xk6GN!muvuCnvPITq2HizUMe0FDnp0gpkVICZYIViBVzmEBMzGEcMT6HHRE73jCGw*3d2Bk8uM5YlcUyVOdoAJiPJPKzOws9Lz7KahJjWAqOwck1TP8suEVLFC3RLZaqWR0MJ2pAynAie0pjR*5tyWrORFmQighsV0aThm7ozx4zf6M*kwg22U49Rdu*S1G6RyqJaLUU2SOVJL5WilR7pJIGrpb6cbuskUq!h9VSxbJUFX4L5tJ3*tp3StrutVX6G49ifDQ_/results,1 34880,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcFuhCAU*Jq9NDEBWRCObrf7Cb0aYsnW7BZbsUk*vw9edglWG*TUXuDBjIwzz6Drh3HHjrtSfMD0LKWE0g7GfV5HBzuUwNoBqdGuNfals2fY9ZtXHUpjPWHUY9c2g7YXIDTm6x1OcF1vw9G8lJPhTbsLFPxQKphYHSZ!fCg96uvyECkSKTJQJliFWDWHCcTEHMYR43PYHrH9DWM43N!NnYIH1*aDKWLpq1M0EJiPJPKLOws9Lz7KahJjWAqOhZPrMP2z4BYtUbRE11hSszoYTtQIKYcT2VMaO*JvS1ZzJmRFFBHYroImDV3Rny1m*kZ*JhGssp16irZ*l6J0i1QSUbYU2SKVJJ4rRdQWqaSB2VI*bpccqeR7yJaqlqWU*y30566Fa98ZPbSvjbHfwGF54A__/results,1 34881,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcFuhCAU*BovTUxAVtSjdru*YQjSrdktWHCbfn4fkF2C1UY9tRd5OOMbZ55Bo*SYkGOS0Q9YXpXqTJI1g1bdjY!9knanBqHZ2H8K2FCphbldRwNsjGBvoEHLDBey6!UZ7tqbV!ZKIS1hhGd5q5m8AKEVXwN0MNDayeZZObm8M3OBIm!yChZSuyU*PmUWtXXWBErpKaWjTLDCY8UcRj1G57DcY*kcdvDY4Y4Rf3m8Gzk5D4YrLdJQ2uoUDDjmMwr89MHynhcfJTUKMSwFR1zn2i3*LLhFS9hbwlssVbM6Ppyg4VJ2HclLHLvn37ekzgktC1Qh6seV4migG!azx8zfmM8kgk22Y0*B9u9SGO!RiiJaLYX2SEWJr5VC1R6paICrpX6cLmukou9htVSxLFXZ34I69xyOfSOY5m!tkN9CCoUr/results,1 34882,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcFuhCAU*BovTUxAFtSj2!3!hiGWWLOKrbDJfn6BF5dgtUFP7cX3cEbGmWdEjZNOyCXJ2JcpivdCJdl54JK3vBWDkNpAchLq3mtlGBiZtTIP1Vw1Qr53sjV37c2eu1ZIS9Bcd009cXkzhFo8Ps0Oqhulk6JZsbgMXN1MQ89ZaQqpXKGXl8yitrevNFMKoBSOssBywPI1jAHG1jAKGF3DToCdZozA5flu5Oo8qGacROpb2129Acd8RZ6fPlngefNRUiEfw1ZwxO1cufLPgtu0hMES3mOpXNWBcLyGS9ntSN7C2IE*L0lFCStyVCIG40pxMNAd8zli5m*MZxHBLtuhJ2*7dymMj0gFEUVLoSNSQeKxUqg8IhUMMFrqx98lRir4HqKl8m2p0h4LY9s19mgRfGo!aiG*Aez9gHg_/results,1 34883,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcFuhCAU*BovTUwQFtSjW7u*YQhLd8labMEm*fw!ILsEq416ai!8pzMwzjyjdjBjRtoMsw8o4qr6s5E6w0flllcz6BGqlXy0wNFG2s8eWtIWCK4t7O64FVKflb7AXXez5751pzA78lGJznB9A0Inv97hBKsG7TUpribLG7c3aOgR11BI4wttn7BDXY!PkVIFSuUpE6wMWDmHsYCxOYwGjM5hh4Ad7hgJy!PZyMl7sGIwMo!t607RgGc!o8jPH6zgeXEraVCMYSk44k9ufPlnwS1aKoKlYoulelYnhBM1fMr!RPKSxh7490vSUMKqEtWIhXHlRTLQDfPZY!ZvzGcSwSbbqado!3epotgjlUS0WgrtkUoSXyuF6j1SyQBXS*34uqyRSt6H1VLlslTtfgvDRQn47MO*xIhrJ*U34wGDFg__/results,1 34884,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcFuhCAQ*RovTUxAFtSjdru*YShLd60utuCm*fyO0F2C1UY9tQeYMW!cx3tj0HS6j8g!SpjpuU0R5O8QBVdRUvawRMvrC8TX7tlI2UgNuYFVvwwbrI9ONxCu6mgxzM4acKa0NNe2N9AMD10NcFXcCKmOtTp9U7XcplK5I*S1qDRXDRRU8vMNOpi6U*aENMlG24Ub4KW0THIIpLCB7h!SAR3ypPQlmSvJbMkISx2WTmHMYWwKow6jU9jOYbsbRtx2Pxs5WA1GdFrGPh2ygxdgKx!Rr4*vVU7z7KukQN6GOeOI7VzY8M!Mm5WEnSS8RlI!yePM8RzWZduRPIW2u*rbIykoYVmKcsTcuGIcDHTFfLaI!RvzGVmwSnaoycv!nQrjLVSBRYup0BaqwPGlVCjfQhUMcDHVj9tlCVXwPSymSuep8uG30J1qAde!kVyLcyXVF8pBkHA_/results,1 34885,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVcFuhCAQ*RovTTZBWVCP2u0m*QpDKFWyFlthm35!B8guwWqjntqDzMh7zvPNGNHDaBJ8SjL6AUF3w7V*SbL6GS5tZN9DZMYIZTfFp1AQDJDaDhI1wPIqFZfM8SSQqBqFvvZGQ7UUwb0GgYZpDiWkamHXbvbMpbYc1YYZyZuRqQsQGvH1DhW0HJR7LZIVk!WN6QskpM5KCLhygZweMovaPKsDpfCUwlEmWO6xfA6jHqNzGPEYmcOOHjveMOyX!7vhs*Og!TCKQ0htdg4GHPMRBf7hzvKeFx*FFQptWGocdpUrF*5Z4xYtpd5SusVSOavjmxM0XJddRfwUt93zb7e4IpgWOSoR9eM6pNFAN8xnj5m*MZ9JCzbZjj0F279LpekeqahFq6XQHqmo42ulULlHKhrgaqkff5c1UtH3sFoqX5Yq7bEwtJLbY0iwkXeNUN8*oo5I/results,1 34886,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVc1uhCAYfBovTUz4WVSOunavfQRDLLFmFbdik*btC3zZJVht1FN7gQ9mZJz5jOhhnCJaRiR5N9NL99Xf2joiRSN6qc2uGqX!6CZtQIzMWht!JXQt1WurGrNrNzvhSqksYRJTW1ejUFdDqOTnzZyg20E5FUay2dALfTUFKwg3E83dxMonYlFbk8JT,1 34887,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVc1uhCAYfBovTUz4WVCPWruvYQglW7Nb2IKb9PGLfN0lWG3UU3uRMTMwznxGnbFDRtuMcDeIAJHHH36VxhqtrMtII83NDh5wbZW7XTykLR51zu*uhJNKv*b69L35IgJUGg4detlZoc9e0KnPqz*B9UYHT0bKyeVduLMHrCGVX2gdFtY!kZEdMWmipARJGSQTrgCumOM4cHyOY8CxOe4A3OHOUbg8no0eQwbnm1N5hCM6xgBB!YyiPn!oIPPiVlqjWMNScTScXIflnxW3GAlDJLwlUjXrA!VEj9ByOJG!pLWD*n5La0Z5WaAKcRhXjpOBbpjPnjB*Yz6TCjbFTjPF2L9bYbzHKqlotRXaY5U0vtYKVXuskgGutvrxdVljlbwPq62KZatq*C2YUy*9Z98pYeVbp*QXpWCDDQ__/results,1 34888,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzVVc1uhCAYfBovTUz4WVCP2t299hEMocSSteiKJn388pNdgtVGPbUX!GBGxpnPoO6GMcHnBNG7mS73ibUJqt763uxPSo5SaLNmjVCSu5qqQeipHbWhQ2DW2jBrprlQ71I1ZtdutsyVQlnCyEbJ64GpmyHU4qs3J2jZKadLUD4bPpm!mYJUqDATLt1Ezi*IorZGVaDknpI7ygzLPJYtYdRjdAkjHiNL2MljpweG*fB8N3x1HjTvBpGG0lbXYMAxX0Hgp0!W97z6KC5BiGEtOOxOLt30z4JbtQS9JbjHUrGo48MJGi5ldyK!xLF7*mOJS4JpnoECUN!uFEYN3dGfI2b!Rn9mEeyyHXsKtn!XgvCIVBTRZilwRCpKfKsUKI5IRQ3cLPXjdtkiFX0Pm6WydanC*ha6RnJz7WvBBv5RC*UNpWWFOQ__/results,1 34889,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztWV2PojAU*TW!bCIpVD58hEEdX3Yny!5zw5aGIQOt01bdn7!lRQkzOkGzD5L0pe396D2ce4!aoGBczmA68wIhc30MgTLe1UHkh4qWYuYlOS3USqisZE0atasMyonY11KoRLe9IVQhlAtMaKFuKa8u4*xhTEhSPFdSOD9!aiTfi1Q1nh*3vFYWjFuX9yrlrj10tu!tu!14PDpFxQmWTskOzv6t8!84KxBmVOwbVJSdsyrwrjYGXG8LnBF!qDAxjjTL0Gb1C73Em5XJDygryLbowl4Ydu5thrLs5Xfnd*UDqiVMmplOjFrPk9AGaAOKVtL6lmpXNI3xqDQDOJJmODGaQqQMf8!bU0a6QS4A7gIE3kjGwReMrZofkqZVs1WzVfPD07Rqtmq2arZqntSYrZqtmq2aJ0bTqtmq2arZqnlSY7Zq*h9qrnP96plQ8z5bVhjxnL5VtETk744TISpGe4kPliYXLVU*aSuprujNT795XXHfS*qUyKREOuVDLDSx8FIsMLHgUsw3Mf9SbGFii1MMmuX8bFBPLxKYcTLvj!1p3RPQmU!gz5!fswznq1dhDPo2XGsc1JVjvU2scVcpuYaSewul5UUccP7sRX2XdUW4Grbd5J9MGPswiEKwBIEZ19wdDPSG!dxD5jHm86EFN9Eecuppfw3luvdADVo0GgrcAzXo!FgosLwHajDA0VCfvl3GQA30MBoqvA6lfxZYWeH2H02Sc*yKCP0HoQSSWw__/results,1 34890,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVUuPmzAQ*jW5VAoyeM3jCEuS7qVdlVY9Iq9xg5XEptgs3X9fP0gQu0lFcupKe8DzZD5*MxMiRasWMF8EoVTYqkDrv7X8Wb8sgqwWnWR8q7UnyukvprQm9cOFsj7KtWgwq7QQnfGpmpmEntKdFhUl!EXbIW!p7PZK6srIoGncEktCeWXKD7DekxBS0eozU9L7!s1eDAWxrtPivmv32oKpcQW1Uo1RBhsF60H0fe9VrKVEeVvx7HW7wd!0oiqJ4LI7lNV2cLKKNHtnwPVDRQraPjNCnSMvinKz!l4!ppuVyw!lzAX5gg*HjHxT!gD4cRKEQ8ZDURbF448h7tu76iPKDubuueGCgntpDWACmmFmfMkH*3CP7SqYnTLrqBgpW8x3ekFK!qfRCySZ4GNTJscBS0MVZaaS7ooVKP8UDMVRkI0psUuJbcqrWORi0blY6GLhuRhyMXQududid8cYdMfpbtBOL5ZEtHQ5qkZbjwRs5j0Y85enLMf54qswBWMbLjUO2sqpFe!scRcp!Y6Sfw2l5CwOOP324rHLtiJcTdvu8o8mTBEM4wgkIHTjWvqTgV4xn1vI*B*zedWCq2hPOY20*w3l!7dATVo0GwrcAjXp!FwokNwCNRngbKg3X5c5UJN9mA0VXYayfwtiy4j!7EuKW1KXlP8F7*ghrQ__/,1 34891,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVUuPmzAQ*jW5VAoCHB45QkjSvbSrsj30ZFHjstZim9pmaf99*SBBbJOK5NRKvdie!cYz*mYGRnKhVqBYhbFUlT36!vxd75QwQnu6CvOharBWMoFl3yqpscAYSX0VVhJhVhPWnG56XzmXCtfviZLex0*WdxSm2o2ohl60WgKZUYXPSnXmMMpReBi3YRi8mgiMlNfwV69*GfWd4DVEnMmewroZlaRGXesEcHioUYnFK0HYKYqyhMf9E3zMjntnH0tZcPShoieL4giDZBOHm92X0eKhhGX5!HnEA*tWvSQ5NW8vDJco3Ekr!AbQDHOj2*7nH7eVbQXMXEcpgqCo2ItuEIh*dLqDJOFsSspsoZU0VKPceNJZsVtUvAtH51GYTyapM0mtyRsscVhyCYsdFl*CIodFl7CNwzYnDLjl*DZgq5dKxAVeT0dzOkwErOXOn!zXZyvH!epVkPlTGq4lDljPmd3!scRdpRQ4SsEtlLYX4*jnby!dsmw9gv087c7!JIIsAnGa!Fs*duVaB7OC3lCfe8j8HfV5k4KbaM85TbT*HCoI7gk1S9HiUP49oWYZXxrK394TalbAxaF!!7ssCTXrh8Whkuuh7FjgDUH6ty9xJdAztONB4G!E4XEW5E*cDsODJApLPfrMmDAypl3Lf1LM1C8kqh8Y/results,1 34892,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVUtz2jAQ*jVcOoNHD*zgiGMgXNpM3Z41qqwSTUAikoH!*Oph43ECGcOJzORiafdb6dO3K6!M0vUIFyOUmJr6KbDzVzseKKOSCW6sLTU3!01trBs63NhVhBrGZSXkul0U*VHK1Lx6FLWJfvz028YoG6Fc0!Neb6yFZ86Fnut65yaNHaNFMxyPx6gSmrM6WqtDtH9p*DutKsKUNPstqdaNU1RstwkGXqwqVnJ9EIwHR1GWZDn*RZ5my3mIT4wpFPtOt21EsSQQAAwgnjQRq5KU5dPvBof!rPaT5lt39sJpidGD8QZwgFWYO9*UjlZxMO5HsVQVX1WtHAAHykw*s0wE0UCZyQcyv27znZf56zZfc5s31LdpLkOjrwUjmsoX27wJ*7ez3d0IJbsr3vtsqXH64tztZFPhh7j4hprNY5R3IVkIyXzIGywNWHoOSwKWnMPigMXnsEnAJi2Gw!d0NuxLlhmmNB93UzdbdAJ85APo4senqKD54lI8A10aLiUO!51nfvhkibsoCQZJ8BpJ07M84PTDZV2W*Y543k97iG9NPItxkqVgCpJQrjHsFfSK!twi5j7q8yYFV8nua!pkf0wF4S1UvRQNpgK3UPUyPpQKTG!h6hVwMNW77jKEqncfBlOll6n8s6DWgtm2bzjV7Jn450Hzv0Ly5i3I*cu2gDhD*wGxVwm9/results,1 34893,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVUtvozAQ*jW5rBTkRwzkCCXJ5rJblfZsUWOlbAnO2k6zP79!QBDdpCI5pVIvfsx8ns*fjBmUkHqCswkKlS7cEpj1XzMXdT1B6R*xrIyhkVzta62MHVqAMsdooRhvyqrZdKeCZyGU5uXPSqvg94OLS1BswsjisJcmHsGJNaEXrXd20e4JWrbT4XAIykpypoONeAv2r619J0VJmWjUfkvLTWusSrar*QYv1yXLuXyrGPeGLM*pavFI75PVwuNDpTLBfhXbDpGtKAQAA4hnLWKd0zy*f2r90N3VDFG6tXfPrBaC7pTbAOswClNrm5vZKPab21HciJKvy04OgCNlRl9ZJoJopMzwE5nfr*nGy*z9mi95zXXh2jRvfKfXFaOyaF5N86b83850d1WJpn*ig2FbKKuPpDaSSYWbSPYDtcEJSntI7CGxg3zwRd4XnfKF3hee8hHvI6d8M!!bdT7sh!PdsCtZrJiQfNov7WrZC3DIO9Djp0eU13z2KE5An4ZzicMucuKmL5a4s5KglwQvkTQ*yQOOH1zcZ9lFxIth2j2!2!KE4DCOwByEvlxTOCjoBfW5Rsxt1OdDCi6SPdTUy*6cCsJrqAYpGk0FrqEaZHwsFZhfQzUo4Giq*7rLGKrBexhNFZ2ncr8FsamYafuKF5K9UN68A!uMArE_/results,1 34894,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVUtv4jAQ*jVcKhH5QR4ckwYol2612T1bqeNStxBT25T9!etHQpQWqsCJSr3YM*N9ePLNmLESUo9wPkKR0qUzgbHfzP4iHo1VS6Z2a61MAFpEGT4pFWV1xetVSw8ehVCaVXdcq!DXb3dgiJIRymS538m18XBqQ!hZ6601Gj9E82bb7*dBxSWjOliJ92D32sS3UlSEilrtNqRaNUFe0e3aO3i!rGjB5DunzAfyoiCL2R*ykC5mnh8plQt6X25aRr4gEAAMIJ40jGVBiuLhb4ND961mibON*fbcagnRrXIOsIBRmNnY1OxGsXeuR3EtKrasWjkADpQZf2eZCKKBMqMvZP7c5itv889tPuc2r0s3plntR7zmlMiyfjXDm7B*WzPdFRd1d8V7y6ZUVl!Y2ZNMKdwW5jeoOTxEWUdJPCVxlA9Y7LH4GBZ5LDqGhR4Lj2ETj01aDPvl8G3YtSxRVEg27kxrzTsBjnkLOv74wPKaT*4Up6Arw6nCYXdy6rZvVriTkqCXBM!RND2aBxz!cElXZXcinvXL7vmti9MQR0kMpiDy7RrDXkPP6M8lYq6jPx9KcJbsvqZO9tepILwkVa9Eg1OBS1L1Kj40FZhekqrXwMGpPk2XIal692Fwqvh0KvcsiBWnZuwrVkr6TNzzINkTr1nzFmTuZZvH*wH0Pwa0/results,1 34895,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVU2PmzAQ*TW5VAIBDl9HWJJsLu2qtGfLtd0ELcHUNiE*v8YmQeySFYlatSvtxfbMe8z4zTgTwbhcgGzhBUIifXQdZfxSB4zEfuGlEp3USgqBlb*iVDSlFGeeUJ9DJDCtSFHtlFd*bP9gTEhKHgsp7C9fdXzfi1QYjtqGl8oCSefy9lLW3aG3fW*db23b2qTgFEt7x45289z7a84IxKwSzQGSXe8sCK5LY4D1luCc8mOBqXFkeQ43q2*wKdmsDD!oGKFb0sNeHPXubQ7z*Ol773f1BdUSpoeFJmreg9CG0wFKVtr5YrUrmca4SSZG*GdDS4IkmpRb0dY60n2BS2qpRthI1KdX9wr**L3!avmFyBj!jA5nRraBS8fzXDec2YjgDcEfr!*j9f3D11ciPQZpZSaqLDDkqHpWwxHSU62mpyhYNTzJ0XJAolPqp10kVRS9!dknrw*ue!lAiQwl0pQXWGiwcAoLDBZMYb7B*ClsabDlGQNmudwN6OZFAjNOreHYndaDAM18cAa!dWEZzVc*BYkzlOFa4YCOnOjtnRXuqiTXSHJvkRRP5nEuP71oqLKOCFbjshv!2QSJD4IodGInMO2y3FFDb!jPPWL!j*68KMFNsseaBtlvp3Lde1KNSjQ7lXNPqlHF56Zy4ntSjRo4O9Wr6TIn1eg9zE4VXk!l*xbYrsBq7AuKON5DWv0GSF7dIA__/results,1 34896,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVU2PmzAQ*TW5rBRk49jAEZYk3UsblVY9WtS4LNqAszZZ!vPrDxLENlmRnDZSLh6P33jGb4ZhlJDtDKUzn6g2t1ug969adrms*0jRtDM*KWVuJGkkV*ttqzQMjZ3St2muGG!KqikPl73fQqiWF1!qVnnfvlv32A!1H5l3e7nVGorNkf*ctjuz6XXsr3rRdZ1XVJKz1ivFm7d*6c93UhSUiUbta1qU*WFVsN3WKWj1VLCMy7eKcXeQZhldL3*QTbxeOnuiVCrY17w!WKRrCgFAGBPSWzxlNMs2P3sc2rfqJUhq8*bUcMH!o7IKMIBmmJizSEvN2CmfnTEMQzyVcXD7jH9tYBQAACYyJrfPGAYLsJhaYfwB33tP30a97z197!nJPb3N7cjmjRv!bcWoHvMvepBT*nenJ72qRDM0!mipc2WI4sR40jmxAqcPfu8c!8lgEjqT0Jq8wwKHBacw4jByCsMOw6ewhcMWBwy55fg2ZGsXKiYknw9bs1sNBKzlIxjs50crx*nsVRSDIQ3nEoes59iKG0vcWUrQUYKXUIpOxgHHzguHLFuPaDlOu7M*qCjGiIQBiABx5ZrDUUEvqM81ZD5Hfd6l4CLaY04D7Y9DQXhNqFGKJocC14QaZXxqKBBdE2pUwMmh*vu7TAk1!h4mhwrOh7JjQZQV0799xXPJnilv*gE!ZJOK/,1 34897,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVU2P2yAQ*TW5VIoFJvjjGK!TNIe2q7o9I4ppFm1iXCCb9t!XDyeWt8nKiVQplXoBZt4wz2*GgJbKTFA5iRNtqF8Cu*5h5w*UcNUI82sSFy21Y9Iorvdboy0IXZS2ewnVjDe1aDbHrdE3KbXh9XthdPTps0!O48xmUfSwV1troblzxU*GtG7R2ThedtPhcIhqoTgz0Ua!RPvnzt8qWRMmG73fkXrTOUXN2m0w0HJds4qrF8F4cJRVRVaLL!RxvlqE!KSRNV*XHZzkuHOvK1JVj187P*QfaIe02LkPLp0AHD9obwAHWFmF8!V2tjKDcT8ytS4l!0h3x4hyRSAAMEtncKTi9A3F*9t8JzL*cpu31B9s3oQLwghGFG2e7XEn*Gdr7wMtZNP3fjDsqHZSceEy2ar4CZfv4i45jos!JAshmQ95haUBS89hScCScxgOGD6HzQI2O2IoDKdvQ757mWZS8Wm*dKtlL8BHPoA!fnqKCpovbkVz0JfhUuGQzzz30z9WuIuSYJAEr5GUn!UBp7OX9VX2GdFiWPYQfzTRHKMkS0EOktCuKRw09Ir!3CLmPvrzqgRXyR5q6mW*TQXhLVSDEo2mArdQDSo!lgrkt1ANGjia6o*bZQzV4H8YTZVepvLPgtwIZq99zaliT8Q*D4p*Fw23zql*4JYw!Q0Xu49L/results,1 34898,http://www.nhslanarkshire.co.uk,1 34899,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVU1zmzAQ*TW!dMaMQOHrCMF2cmkzpT0zslCwJliikoiTf199YDOkdgf71M7ksqz2rfft2xVYcqEWsFgEkVTIuj7Qh1*aqfkiyN95r21DlLY73kvKGu1tCSPP1MQQq7XFvGeYttpT6E3bDr0TE6fPpxJIEG1rKtG2NVjEBJF9q!SRUupOKiQxYbUhgYXtw9tyLhWpH6iS3rfvttUwSHQpgQ690JQhzEwo2CnVGWc4h8F6eBwOB6!mgmDlNfzV61!GeCd4XWHOZL!v6mYI0hp3rTvA9WONSyJeKSYuUJRltVn9qJ6yzcrlR1IWHH9F!2NGsal8APwkDeCQ8VhWZfn0c8B926s2cb43vRdGSxjcS3sABtAKcxNLP*VHLbJXgTB3QRXFlUDsRV!Qirx1!gZJytk4lInZI2mkhrmppKdiH2HxJRiKh0E!piQuJbEpH7DYYfE5LHJYdA4LHRaew!4cdnfEoDOn3qDdXiIxF2Q5usZbjwJs5j0Y85enLKf54k9hBsYxXBoctJUz!*jPBndRku8k!ddISs*ygNO7l4xTthXhajp2l388wiyEURKDFERuXUt*stAr9nOLmH9jPx9GcJXsqaZR9t!pfP8WqsmIZlOBW6gmE59LBdJbqCYLnE31x9dlDtXkPsymii9T2b8F3lCsP*uSIIF3FWG*AZPkJ1k_/results,1 34900,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVU1zmzAQ*TW!dMaMhMzXEYLt5tJmSnvWUKE4mhiJSiLuz68!sBlSO4N9Sqe5IO2!x67eLqyUkHqBykUYK127LTD7X2ZlnIiWLsJC9V1nWWHMJVX9XiuDQktTxo1rRShvGN8d3w1!CqE0bT4zrYKv31z0KExNJFkferk3FsqtK3zSurObwY7CzbAcDoegYZISHezES9A*D*5OigYTwVXf4mY3OFlDur030Oa!IRWVL4xQ7yirCm*X3*FDvl17fqxUKciXuj0yyi2GAMA0AenAuK9wVT38GHDozmoeSdHas5eh490pZwALGIWF9WVmNYq98b4Vp1GcgJl6kzf0fvT7P!v3vna*OuV!ZmhGsKz5sxkAmP7uzIRQTPDxI5g82lpZoVFhI5mauCUqP4VD8CgsRkrqKamjvMISjyXnsNhj8Tks8lh0Dlt5bHXEkH!czoZc71JFhKTLcWt3m1GAY96Bkb88sbzmi6!iHIxluFQ45CLnbvnHCndREvSS4DWSsrN5wOnPS8cqu4hoPS275x9NlEcoNgMhA7Fv1xJOGnpFf24R8z7686oEV8meahplv50KwltSTUo0OxW4JdWk4nNTgeyWVJMGzk7113SZk2ryPcxOlVxO5a4FsWPEjH1Fa0mesLseJH1knA53QeGuuM0q!wNgCJYR/results,1 34901,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVU1zmzAQ*TW!dMaMhMyHjxBsN5c2U9qzBgvFocGISiLuz!9KwmZI7Az2KZ32ot3Vrvbp7aJFCalnJJv5odKFVRHov0D!FFvGGy35zE*bulMgxONjxbjRii2XJecNxDaSq67WCo5gc1ZBRlooOFtWze6Y0NsKoTQvP1daeV!*WcjAjyGVLA6drMEiidnyn7RujdLbgb*uxeFw8MpKcqa9nXjxuud!v5WipEw0qtvTctdvViVra2eQ9X3Jci5f4O5uI8tzull9pw*JZuXiQ6Uywb4U!2NEtqEYIYIwWfQR9znN84cfvR*bu8ISpXtz98xwCfw7ZQ1kHMAwNXtLkMDYGR!bcRySRTSRb*QO3**9*sf6XRf2qduBAINEV4zKonmGAUD57xYmhKpEM3wEo2VfKEM0SE0mqIkVQfbJ75MHfjqExC4ktiGvfJHzRed8ofOF53yB8wXnfAvnWxx9xC2nuxHbu1gxIfl8UI22HgjYyDs0xM9PUY7zxaMkQUMZLhWO2MyJFX9Z4S5Swo4SvobS8iwOOr28eKiyzUhW47K7!KNJkoCEcYSWKHTtmuNRQ6*ozy1kPkZ*XpXgKtpjTgPt96EwvgVqVKLJUOgWqFHFp0Kh5S1QowZOhnozXaZAjb6HyVDRZSj7WxC7isHYV7yQ7Iny5g*h9pas/results,1 34902,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVU1zmzAQ*TW!dAYGkPk6QrBdX9pMSc!MIhRbE0BUEsY*v0LCZkhwBnt6cCe5IO2!1e6!ldjllIkFSBaOxwVUW0vu*8gVQbZwYgGPUq4Y5k0huFTbHc7lqQxyhKucVLvTIfOZUi5w*p0Ibv78pdy6TiC9MNg2rJASiDqVsxei7ja97Drrfmnb1swJw0iYO3owm9deXzOaZ4hWvCmzfNcrSY7qQgtgvc1RitmBIKwVSZpmm9VT9hhtVtreq2iOt3kPO2HQq7dplqaPv3u9rRKUHz8uF8pQ2T1wJVgdIGnFnS6Uq6SphfuhyXlC0Q9YniySTba0HMe2*ZmE*X9PWD6mlwYXORRwkniFW!OA9wQV2JBPzoS8Pr7Ly*sgr6*Xdyc0P!frK6Bqg7jSjVQQlDFYvcrmmOFjLbsnJ7QanuToU0LeJeLGnSeZu1rc5JvTO3edeDAJtEmgTN5gvsb8KczTmDeFuRpzp7ClxpYnDOjPOTegahxwRBk2hm23Ww8ElOWDNdgbZyvN!eJREFlDGS4VDijPkVr!s8JdpGRrSvY1lMLJONb5DwmGKiuPYDUuu7Y*iSBygRf4Vmh5!roMe3ShV9zPLWTu437elOAq2mNOA!2PQ9n2LaFGJZodyrol1Kjic0NZ4S2hRhc4O9S77jIn1Og9zA7lXw6lxgLdESTbPseQoX2mxgPDL6TC*SyIn6gaWWtOBOZyMHVjopNLKiiT4!MvBRHqQA__/results,1 34903,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVU1z2yAQ*TW!ZMYaBEYfRym2U5!SqdozoyLiMLFBBRy3*758yNYotTOyJwd3phdg9y37eLsCaanMBM0nMNGm9ssYWOOnXbS1YUpw83sCy2epttr6hWJ6tzH6EKftdlJrykTDxdp6*eboh5TasOYLNzp6*OrzY5jZPKre79TGWqhwLvhiTOsWnY3hspv2!33UcMWoidbyLdq9dv5WyYZQKfRuS5p15!QNbTfBQMtVQyum3jhlwTGvKvKw!EaeiodFiE!EbNiq6eAkTzr3qiJV9fS988f!gHZIy6078NwJwPBeewM4wMoqnS!3s5UZjBuVOZvBkTLTD2T!7!0tyvyk3m5qf4WZCK!B4ZSoWrzai03Yr9befM2l6Bs!GLa1dvpw6TLZUvgJz!9glxzDsg*JQkjmQ95hacDSU1gSsOQUhgOGT2GzgM0OGArD8WzItyzTVCo27ZdutewF!Mh70MdPj1FB89mtqAB9Gc4VDvnMhZ*!scKdlRQHSfElkvKTPOB44bK!yj4jWgzLHuIPJiowSrIU5CAJ7ZrGg4Ze0J9rxNxGf96V4CLZQ0297I!p4vgaqkGJRlOBa6gGFR9LBfJrqAYNHE311!syhmrwPYymSs9T!d!CXHNqn33NakVfCBN*AMkyhLk_/results,1 34904,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVU1vozAQ*TW5VAryRw3kCCXJ5tKtlt2z5dpWikpw1naa*flrbBJEm1QkUqWstBd7Zt4wjzeDjVHaTnAxQbGxzJsQOOe3M0TNnNVoaXa1NQfEuAcoM1w2omrWLurTo2eljJXiW2VN9P2Hr0hQOkG5Zvudrp2HszaEXqzdtkbnE7Totv1!H4lKS26jtXqLdq9dfKuVoFw1ZrehYt0FK8G3dXDwYiV4KfVbxWUIFGVJl*Of9ClbzkN!3CghV6KDYwS78KqkZfn0q4v7KHJLkm*aFy5aAQQ9GO!AFnCy8jY2c7uTGZzbkWlMofgj2xwyiiWFAMAkgWSk4uQTxf*HfCMyv3jMNfMHWzbhVrAVp5o1r!64U*ln6!4DU6mmn*1g2TDTSiV5W8l1xW!kuENdcYLyPiUNKalPeYclAUtOYXHA4lMYCRg5hd0H7P6A4bAc3w376aWGKy2nvdlai16Az3wAff70mBU0n30UZ6Bvw7nGYV8589s*1rizkmCQBC!RNDvJA45nL!277Cvi!bDtIf*g4ozgOE3ADMRhXFM4GOgF87lGzG3M510LLpI91NTL*pwKwmuoBi0aTQWuoRp0fCwVmF1DNRjgaKoPt8sYqsH3MJoqOU*lfwtqXXF37RvJNH!hsvkLZ5OFUg__/results,1 34905,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVU1v4jAQ*TVcViLyB3bCMWmA9rJbbXbPVtax0qgQU9uU*fnrj0CUFqrAXorUSzwzb!znN!PYWiozwfkEUW1Kb0JgnRdr1KpsjbZOq4Tera3ZgdrOYaXmoq2atrZRPyP6I6U2orpvjI5!*PSLEpRMUKbK*U6trYdTF0JPxmyd0fkELbthv99HVaMEN1EtX6PdcxffKlkxLlu927Cq7oJNxbfr4ODlQ8ULoV4bLkIgLwq2Wvxij!lqEfKp1rnk38vNISNfMRhDQuIOfyhYUTz!7lDod2o*cbZxO8!dEoLutHeAA6y!zMXmdrR6g*O59QKACaF0pOL49hXPAAB0hkYKph8I*jrgN9DurwP!Hwd8XfrLXLThMTANZ*YFeLZXPBN*t*YN0I1s!1M*!GxK7ZSSzK1ki!IHkn9D3eIEZX1KElISn*IGiwMWn8JowOgpjASMnMJmAZsdMBw!x71h37xEc6nEtDedtewF!Mw70OdPj1lB89mpOAV9Gc4VDvuVUz*cWOHOSoJBErxE0vwkDzj!eklfZb8iXgzLHvIPLk4JpkkM5oCGdk3hoKEX9OcaMZ!jP29KcJHsoaZe9sdUEF5DNSjRaCpwDdWg4mOpwPwaqkEDR1O9u13GUA3Ow2iq!DyVfxZk3XB77WtRKv7ERPsP0z8NQw__/results,1 34906,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVU1v4jAQ*TVcViJybPJ1JA1QLrvVZvdsZR0LrAab2qbsz19*BKK0oQpoD1TqxZ6Z9zKTN!M4Skg9QcUExkpXzgTGfjE7pWQC84YRygk1lhZmIduKcUPgkqpDo5XhhfYBZdLgShluzfjmlCX4I4TStH5kWgU*fro6EUxNHlkdD7IxHprbENxqvbdG60dw2W7H4zGomaREBxvxGhye2*heihoTwdVhh!tNG2Q12TfeQct1TUoqX5l9eRsoyhKvFr*w03y18PxYqUKQ79XuxChWOAQAwTgNW8a6xGX59LvFXRSaJcl39t0LqyWCD8o5wAJGYW5jmdmNYu*cj2IuarquWximaKTM5JPJHBjsDEAI0myk4PgDwV*n!v4G*nWu*8O5bip3dVPu*waaESwr*mwudEz*7s2Nr5jg3WHvLbtKWaVRbjOZprgtKr7BNnkE846SekrqKG!wxGPJEBZ7LB7CIo9FQ9jMY7MThvxyfjfkhpcqIiSddqa1lp0Ax3wAHX96ZnnNFx9Fc9C14VLjkMs8d9sna9xFSaGXFF4jKRusA86fXtp12WVEi37bPf*konmE4jQBGYj9uKZhb6BXzOcWMfcxnzctuEp2X1Mn!!NSYXhLqV6LRpcCt5TqdXxsKZDdUqo3wNGl3t0uY0r1zsPoUsnlUu63IDaMmGtf0UqSLab8H6yyDdo_/results,1 34907,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVU1TwyAQ*TW9ONMMCZKkx6Qf2pMdo2cmAtNm2kIFav358pE2E02dtCd1vMDuvoXH2w1ECakHcDKIYqVLZ0JgnFdjkFIyaWwumdpvtDKh0GLKLMGlIozTii9N1C0IXoRQmtH7Sqvg4dHtiaJ0EOWyPOzlxngws6FopfXOGrWPolk9HQ6HgFaSER0sxVuwX9fxnRQUE8HVfovpsg5WlOw23oGzOSUFk28VYT4wKQp8N33Ci!xu6vNjLiib0xpOkzo6L3BRLJ7rcOjOZ4Yk39rzTuz5UTRWzgEWMKpyGxv9a*7X*Ic1b0p3tRn3L4OuCJYlX5sLj9n7zrwIqhK8KURr2JbKykO53clUwk1ochPVm6Mob1JSn5K6lE9Y4rGkC4s9FndhyGOoC7v12O0Rg344nQ26jqWKCMmGjWmtWSPAZY5Bkz88ZXnNZ5fCDDRlOFc46HbO3PTLCndWUuglhZdIGnXygNN9S5squx3htF12n390YYZgnCZgBGLfrmHYaugF*blGzM*oz6cSXCS7ramR*T1VGF5D1SpRbypwDVWr4n2pwOgaqlYDe1N9eV36ULW!h95UyXkq91sQy4qYZ1!xUpIVZvwDz3eKAA__/results,1 34908,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVsty2jAU*Ro2ncEjW7ZklnYMhE2bqdu1xpFV4glIRDKhn189DB6lkDGsyIw30n3q6Nx7MVJCthNYTCKk2sqKIYiBVt!0!Mw4!9O0SqtcMrXfaNEEmGidRypFGa8bvtZWmxM8C6FaVj*qpODHT3twEqWTKJfVYS83WoOZMUUvbbszQqcn0aLbDodDUDeS0TZYi*dg*9rZd1LUhAqu9ltSrztjU9PdxilwsappyeR7Q5kzFGVJlvNf5Clbzl084qJmq7pzhxHozKuSlOXT76PdXlAvON!aCxeGQBI9KKuYHKxp5cY207um6ZT7oalUIej3anuMKJYkBmGaIjSQMP5ihL2!xhgPpIk!oTkO853QHId5HOZxmMdh7od5U9kXB!Pu1dI2lMiKv!p3CGF*d*qhohrB!wn3lm2lDL8kNyfpUtgtKb5F3eFJlPchqQtJbcgHH3Y!fM6HnA!d8yXOl5zzxc4XH33QLae7QduyVFEh2bQXjbToCdjIB9DHT09RjvPFVJiBvgyXCgftyZndvljhLlIKHaXwGkqzszjg9INL!yrbE!HcL7uLP6owSyBKMZgB5No1Db2GXtGfW8jcR38!lOAq2j6nnvbnUGF4C5RXosFQ4BYor!JDocDsFiivgYOh*vu6DIHy5mEwFL4MZf8WxLqh!rOvWCXpC2H8HyLaxEQ_/results,1 34909,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVsGO2yAQ*ZpcKsUCY2znaK!TNJd2VbdnywtsgtaBFMimn18MTizvJisnUqVU2oth5g3zeDMBoqUyE1RMwlib2k2Bnf!2I9nwhk7C*IkJ9syN9QrF9L4x2oKwjdJ2bVVrwgTlYn1cGjxJqQ2jX7nRwfcfLjkOU5tJ1Ye9aqyFstYVbozZtZPOxuGiGw6HQ0C5YsQEa*ka7F86*05JWhEp9H5b0XXn5JTsGm!gxYqSkqlXTph3FGVZLec*q8dsOffxsZCUrWgHR3DWuVdlVZaPvzo*dBu0nyTfthsuWgE4fNDOAC1gZeWtzybIrUxv3I9MrQtJvtXbY0SxrCIAExzhkYKTDwR*dvlOZP7bLje1O9ZM!OvBcFKpWrzYw16xPzt7G2guRd*6wWdb61YpzttMtihuwMWXsEuOw7wPSX1I6kLeYInHknNY7LH4HIY9hs9hkceiI4b857Q35JqXaiIVm*bTdrboBbjIB9DHT09RXvPFpSgDfRkuFQ65zJkb*rPCXZQEvSR4jaTZWR5wOnppX2WXEc2HZffxRxNlGMVpAmYg9u2awkFDr!jPLWLuoz9vSnCV7KGmXvbHVBDeQjUo0WgqcAvVoOJjqcDsFqpBA0dTvbtdxlANfg!jqZLLVO5ZkGtO7LWvWa3IpnLPg7L*EQXr3oLcvXELCNFfxyyPwg__/results,1 34910,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVktvozAQ*jW5VAqycXjkCCVJs4dttXTPiBpvahUwazvN7r9fPyCINqlItIdEysWemW*w8M0MjAXjcoKSiesLmRsRKPm32r89vggl1pyIbSmFskANCfVAlgtM6oLWm87feWFMSFI8UCmcxx*mRM8NJ27M892Wl0pDkTa5r1I2Wmh1z1222263cwrKCZbOhr0727fW3nBWZJjVYltlxaY10gI3pVXQcl3glPB3iok1JGmarRbP2VO0Wlh*X4iE4e951XkkqwwCgABEs9ZjnWZp!vSzxaF5V7UEcaXfPdFcPPdeGAVoQDGMtW2udsXYKpfDuGYFWRcdHQBH0g,1 34911,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVktv4jAQ*jVcKhH5gZNwTAhQ9rCtmt2zlXW8NCrE1A5lf*76kRClS6qA9gASF9sz33jG38wkthKyGuFkhHxVZXYJ9Ppdz9!e4hGK03n0MnvUqlJytd9USiPQmCi9kWaK8TIvynWzz*slhKp4*lhUynt6sZ4JCrUjmR32cqMlHBkVeq2qnVnUMkGLejocDl5eSM4qby0!vP1brd9JkVMmSrXf0nxdK4uc7TZOwItVzlIuPwrGnSJJU7qc*6DP0XLu7H2lEsG!Z9vGIllSCAAGEE9qi1VK0*T5Z41De1Y9BPHWnD0xXAiaKSsAA2iGsdFN9awZO!F6GJci56u8o,1 34912,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVk1z2yAQ*TW!ZMYaJIwkH6XIdnNJM1V7ZggiDhMbXEBxf375kK1RYmdkn5JpL3zse!zydgVIS2UmsJokqTbED4Ed*7a9lpSTzSQpn1rRWJtQTLcboy0UO462KzHRlImGi*VhYfQopTas!caNjr7*8K5Rkls3iuxbZf0hWDhT8mzMzg26OUqWXbff76OGK0ZNtJavUfvS2XdKNphKodstbtadkTd0twkTuLxraM3UK6csGKq6xqvFT*xQrBaBn2pdSXpPtgdGtcIxAHGeo7Rj3NW4rh9!dXjs92qbrNy6vVdOC0putZ8AB1iFpbPNbW8Vh8nnVpzDGZqN1Jt9oPd*vf!xem!IP!pMhAvDcIoVES*2AsDsz87eEJpL0X8Eg2ZLtBOKSufJ5sR3qLpJOucoKXtKHii5p7zBsoBlp7A0YOkpDAUMncJmAZsdMBia496gr12uqVRs2g*daNkL8Mxb0POnR1bQfHYpLECfhnOJg95z4bsvlrizkuIgKb5E0vxkHHA8eXmfZe8RLoZpD*zDFBYIpnkG5iAN5ZrGg4JeUJ9rxHyO!rxJwUWyh5p62R!HiuNrQg1SNDoUuCbUIONjQ4H5NaEGBRwd6t3tMibU4HsYHSo7H8o*C3LNqftnZETRZ!yfB8WeuGDdW1D6J24J*wL!*5Rr/results,1 34913,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVctuozAU*ZpsRgoyODawhCbpZDXV0K4taqwUldjUdprp348fNIg2qUhWqZqNfV*c43MPYCWknsD5JMJKl86EwDgvxmCbthFvTE6ivC01k7zWb842K!aSqW2jlakL7QPK9CGlooxXNV!bqOsSPAqhNKt!11oFf*46IBQlpossd1vZGA9mNhQ9ad1a,1 34914,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztVclu2zAQ*RpfCligRFPL0Yps15c2qNozwVCsQ8QiXVKK!*nlIltQageyTg6QC5eZp3l8M9RQS9XMYDGLYt0QtwRm*cfMgjRcCrKfRTkXulVEUGbWoq2fmDIYoZhu94020NB!o00kTDRlouJidwoUPEmpG1Z95Y0Ovv9wVChKTSBFjq0y0RFcWlP03DQHu!j2KFp30*F4DCquGG2CnXwN2pfOflCywlSas9W42nVGXtHD3m*gelvRkqlXbg9uDUVZ4s3qJ35cblYeHwtZsW3VuSOUdeZticvy8VdnD90BzZDk9cwBU2t50G4DrMPIyq3NBMiNTL!5U5khXMCROpMPplPrQtJvpD4hig0OMwAW6Ui98Tt6Py*zPcr8vMzTLvOeuCbNhG*9DafYtPgX07ox!3swvV2b7t*f8MFQE22FotxGMjlxEyq!RF1wFOU9JPWQ1EHe!BLvSy75Yu!LL*mQ96FLvoX3LU4!6Ifz2aCrXaqpVGzeL!1q3QtwyAfQ4!dnlNd89VO4BH0ariUOushLN32wxF2VFHpJ4S2Ssos84PznpX2WXUS4Gqbd409buEQwThOQgdiXax4OCnpDfaaIuY*6vEnBTbKHmnrZ71OF4RSqQYpGU4EpVIOMj6UC2RSqQQFHU*3XXcZQDe7DaKrkOpV7FuSOU9P2NSOKPmP3PCj2mwvWvQW5e!LWEQD*AD6VEIk_/results,1 34915,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztmUtvozAQxz9NLpWCeITXEUqS7WW3WnbPiDUWRQWb2lB2v*36QYJok4rklEhzsT2e8Yz*8yPkAKesWznJyvZ4l6ulZZvCehOrbdPW9F!DSbeyY963rYy147yu6ZAThEUYYZj3dcflOXmMi5As5wiToiKl2FW5jD!U8g4X36qOGz9!qnquHYhcLB96VgvLieSW*dJ1rVyMtmvvxmkYBqOoGEadUdJ3o38d91tGiwxRwvsmK8pxsypQW2vD2T0VKMXsvZL3lRtJmmb77a*sOdpvdbzHeULR97w5RCT7zPKtINyM*qc0S9Pn36PXUjcVgx838uaJVOLaj1wZpnQIfbHcC8Us9Grj9vVaC*X6X!gF2kD7HtQDbaANtIE20AbaQBto36peoA20gTbQBtpAG2gD7ftQD7SBNtAG2kB7pF3n6nMYJvpLW1ehjOXktSJlhv!2DHNeUTI9ArOhybkU6sYyk!iJmtzkwR6Tu3Y8hQQ6JFAhH3y!9vmnfJ72ead8rva5p3wb7dscfI4ejndzFLuAI8rwelrK1W4SoCIfzSl!fYzSms8edSJzasO5xjkqc6SmO2vcWUmWlmRdIik8Wcc8*vKCqcsqo7Odt13HH0wnch0v8M3Q9DSutTUDegGfa8TcBp8PLbhI9lzTJPvrUpZ1TalZixaXMq8pNev40lJmeE2pGcDFpT69XZaUmj0Pi0v550upvwVaVki89jnOGXrJMPkPnULe0A__/results,1 34916,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztmk2PmzAQhn9NLpWCDCwfOcKSpHtpV6U9I2os1tpgU5ts!vPrDxLEbrIinKg0F2zPvHh45yHOBclFt*KzlRfKrjRTN0Jq9UfNKMO8ISsvlce21TovZILI46GTWqdlUoWLUmLCKspqFTX3Or85lx2pvtJOOt9*mP0DL1Y7ifJ0FAe18hMd8l66rtWTfh14u344nU5ORQXBnVPzN!f42sdbwasCcyaPTVHVfZBWuD3Yhb97qnBOxBvFxAayPC*225*Fc7LfWn0oZcbxt7I5K7J94SLkxhGKe8VTXuT5868!75pnVZcobfSzZ57RPUqzQDqhHKY6tlGjcmwXy3YcB6FGPclv9Ilf4A28l!8eeANv4A28gTfwBt7Ae*mOgTfwBt7AG3gDb!ANvIH3sh0Db!ANvIE38AbewBt4A!9lOwbewHsW70NpPnUhzH4101FciJK9UlYX5G8riJSUs!ElGF2aUmqjQap3Uj0xQ5B98frNAy8dJLGVxEbyLhfZXHQtF9pceC0X2FxwLfdgcw*nnG8vl2fzDbtYYi7Iepjq2W4wYJSPaNCvLyrr!eatfoKGNtxqnG92TszwnzXupiXXWnLvsbS5Wgddfnnx0GWzo78dt93qz0s*CfxQHQgbFFpca3cE9A4!c8wsg8!7Ftxle!xpsP15KdedU2rUosml0JxSo45PLYU2c0qNAE4u9eF0mVJq9D5MLhXdLmX!FnhNsTr2JSkFfikI!wfvSvfD/results,1 34917,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJztm82OmzAUhZ8mm0qJDMRAlmFI0tm0o9KuETUWgyaB1CaTPn6NTYKYSUYk3Yyls8E*9!LLuecLWSFr0Uy8eOL6ssn01FkQtfqjZoXIqkaqRSW4PGzVVEXboFQ3pZlkvMrLqlC7!o7Z77qWDc!*lo2cff!hT6VuOHEjkR0PYqtW3rLdcp!bZt9OujV1191wPB5neSk4a2ZF*To7vHT7e1HnKasrediledFtljnbb83CWz*mLOHitWTcbMRJkm5WP9On5WZl8n0p45p9y3anjHiTOoFDadDFH5M0SZ5!dVFHP6m6BNGuffK4VULdB6kXpA0ofVG7t1Cj0msWn1svIR6lvj9ScWC*4jkhxJ!7IwX7HwgG4BbYDcABOAAH4ADcVrsBOAAH4AAcgNtqNwAH4AAcgANwW!0G4AAcgANwAG6r3QAcgANwAA7AbbUbgANwAA7AAbitdgNwAA7AATgAt9VuAA7AATgAB!C22g3AATgAB!AA3Fa7ATgAB!AAHIDbajcA*w*At5n!wJ5X5gv9pmSpyKqXsipS*ncvuJRlXfXUDy67TLZKadSepJqiBxp*cbvDqRv1KaFJCXXKm1hgYsGlmG9i*qUYNTF6KTY3sfkp5pnL!dk8bV4oWS34tJ!2s3UvQGc!kD5*es4ymq*e6i1J34ZrjfP0yUs9WNa4q5IcI8m5RdLiYh1y*umFfZf1id5q2HaTf1p6S!r5YUAWxDd2TZ2BoTf4c4!Yz!HPmxbcJHuoqZf9cSnHuafUoEWjS5F7Sg06PrYUWdxTamDg6FLv3i5jSg14GF0quF5K*y3URcnUa1*yTLDnlFf*AB8smjU_/results,1 34918,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzlVV1T6jAQ*TW8OEMnTUxbHlsB5UnH3vuc6U0iZoQEkyD!fPNR6NQLTuFJx5dkd8!yJ2c3NEZpO0LTEcyMbYIJnP3qdmoaZ0nNzXZljQukHjEunzSGcsmEXO7Tk39KGcvZnbAmuX8MBTEsRrDSzW6rV85DpQ*BZ2s33mh9DOftttvtEiY0pzZZqrdk!9LGN1oxQpU02zVhyzYoGN2sooPmC0Zrrt8E5TEwrWtyO*tDHsrbWczPpGJ8wVo4zSBs44ua1PXD3z0QTuiWvFr7E0!9AgxvTHCAB5yuyscmv1b1qglj5zJeGSso0Y18cZeB8PeNuy1GKNm1oresG!MF4spXcr0IG55ewbY4hlWXUsSUIqR8wvKI5cewLGLZMQxHDB*DriN2vcdQXA5nQ2FmhaFK83FnemveCQiZN6DLHx!youaTP0Ul6NpwqnEoVC7D9sMad1JSGiWl50iaHOUBh39c0XU5VESzfttj*t5FJUZZkYMJyOK4xmlvoGfM5xIx32M!n1pwluy!pk7211RpeglVr0WDqcAlVL2OD6UCk0uoegMcTPXf12UIVe8!DKbKT1OFZ0EtBXWffcMbTZ9JeB40fxKSt29BFZ62OQQw!wAMhQrm/results,1 34919,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzlVUtz2jAQ*jVcOoNHsvCDox0DyaXN1O1Zo8ga4saWHEmE*vzqYfA4gYzhlA4HpH1pP3278qKE1DNUzMJYaeJEYORXs1PCKWuamm9nYU7M7494ooxryYysrK3rRM11a2zmCJdM7RqtzEloUyiTGBNlTlQ2RZ83eBJCaVbd11oFP3465ChMTTZJ9jvZGA1l1hQ!a91ZodejcN1v!*0!qGrJqA624i3YvfT2TooKU8HVrsXVtjfWFe0ar6D1Q0VLJt9qyryhKEu8Wf3Cj9lm5eNjpQpBv5P2EFFsMAQAAYgWfcRDicvy8Xfvh!6uZkny1t69sFyi8E45BViHYZhb29LshrFXvjbjNEaLZCLf5BO!t97vW!d*c!!9IW7UMe7nqa4ploS*mAGI2d*OTEhVCz48gtHSEmWJRrnNZGritqj4FvbJozAfQlIfkrqQd77E!5JTvtj74lO!yPuiU76F9y0OPuSX492Q612qqJBsPohWWg8EXOQdGOLnxyjP!exRlIGhDOcKh1zmzG3*WeHOUoKeEryE0vIkDjh!eelQZZcRrcZl9*EHFWURitMELEHs2zWHo4Ze0J9ryHyN*rwrwUW0x5wG2p9DQXgN1KhEk6HANVCjik!FAstroEYNnAz1YbpMgRq9h8lQyXko97cgtjU1Y18xIukzZvwf3FvfAg__/results,1 34920,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzlVU1zmzAQ*TW!dMaMhCzARwi2m0uaCe1ZQ4Rq0wAikoj786MPbIbUzmCf0vFFu6t92qe3i2XJhZqhdOYHUuXWBdp*1Taf!ckf*kxZowTTflt1Uhu6Y1Utf3NRaFwjmOwqJTUcmnNSVyO51GeKstkeinnPnEvFiu!lkt6PJ0uH*UgXE*m!E5WOUGy2*J1SrXH6GPvr3uz3e68oBaPK2*I3r3vp91vBC0J5I7uaFNt!syxoW7kAre8LmjHxVlLmNtIsI5vVT*IYb1YOH0iZcvqQ1wdEuiEQAAQgWvSI!4xk2eOvPg*tXfUSJrW5e2q0YP9O2gCYhFaYmL2ltlqxC7624ihAi3Ci3vATvbc!71vXf3Pfe5Xbp4417hFVJSUib170A0jY31a*kLLkzfARjJY6l0YoTkwl3RNrcPrN74tjPxkgkYNEFvIhF7pceCoXuFxwKoddDp*KLVxuccghtxzvhuzsIkm5YPPBNd56EGCRd2DAz48op*nsURSDoQ3nGods5dia*6xxZyVBJwleIml5kgccf3nR0GVbEa3GbXf4Q4hijIIoBEsQuHHN4WigF8znGjFfYz4fWnCR7LGmQfbnVBBeQzVq0WQqcA3VqONTqcDyGqrRACdT*fO6TKEafQ!TqcLzVPZvgW9Lqp99yXJBd4Q175KR2yI_/results,1 34921,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzlVU1z2yAQ*TW!dMYaSURfRym2E5!SqdozQ4HYTGRwAUX5!eVDskap3ZF9aiYXWPYt!3i7SCgh9QKsFnGqNHJmaOzfZt6LbhFXWpgBowa3DdLU2nvWEDMfEOOacsSx8aZcUtU2Wpl9kU2gTFqIFKacML4bsga*hFCakkemVfD03fEmcW6ySdS1sjErUFpXvNf6aI1!ncSbfuq6LiBMUqyDnXgL2tfef5SCQCy4ag!Q7HonI*jY!AXYbAmuqXxj9rzWsapr!LD!AZ*Lh7WPT7kgdEt6OErjuPdva1jXzz8HwJ3QDFl1sCdeWQVJfK*cIrSA0VVZX*FlVTfItZ1yf7M0w1Ai*mouA6TvR3NbFBN8LMVkOCBlBSaVzWRq4aZk9S3ukyf29g0huQ*JXcgHLPNYdg5LPZaewxKPJeewO4*dDRjww!lswPUsV1hIuhxNa21GAS7yPhzjl6cor*niVlCGYxkuFQ64zKWbPlnhLkqKvKToGknFWZ7w9MXlY5VdRrCelt3HD0tQJiDNs7AIU9!uZTRp6BX9uUXM*9GfDyW4SvZU0yj731RRdAvVpESzqcJbqCYVn0sVFrdQTRo4m!qvv8scqsl9mE2VXaZyz4LYMWx!!4oiiffQPQ!SvjBO!7egck*bJioK8AefMxiF/results,1 34922,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzlVU1z2yAQ*TW!dMYaJIwkH6XYTn1qpkrOjALUYWKDCyjOzy9ftkaJnZF9aqcXWPYt!3i7SGipzAQuJlmuTetNYO3fdiayE4RvJ1lt2nfrE4rpbmu0hVIXo!1O3GrCBOVic9yYPEupDaPfudHJj58!NcpKm0W1h07ZdAhWzpW9GLN3RlyjbBWnw!GQUK4YMclGviXda*TvlaSYSKG7Haab6OSU7LdhAVdrShqm3jhhwbFoGny*fMQP1f0yxOdCUramES5mMLrXDW6ah6foT*0B7VDUO3fghROAsjvtF8ABVlbtfPP*VfS29U1nIlwdwwlWrXi1VwGz9729K5pL0VdiMOxa7fSh2mWypfATWnzLYnKU1X1IGUJKH*IBKwJWnMPygOXnMBQwdA6bBWx2xGAYTmeDvmWlJlKxaW86a9UL8JF3oI!fnqKC5otbYQX6MlwqHPSZKz*9Y4W7KCkNktJrJM3P8oDTB1f2VfYZ4XJY9hB*XMIKwbwswBzkoV3TdNDQK*pzi5i*oz8fSnCV7KGmXvbXVGl6C9WgRKOpwC1Ug4qPpQLzW6gGDRxN9envMoZqcB9GUxWXqfyzIDec2N!!Zq0iL9g*D4r94oLFt6D2L9tqBv4AIxANwg__/results,1 34923,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzlVU1v4yAQ*TW9rBQLTPDH0Y7jbC*bat2ekRfTFDUxWcBNf*7y4cRym6ycnFr1Asy8YR5vBhslpL5BxU0YKV27JTDrv2ZeiM7YYV4ypoyrlUx1G60MAm2IMhtJrShrG96uD*uCP0IozZqfXKvg7rfLjMPEpJH1vpMbY6HMusJnrXd20ds4LPtpv98HDZeM6mAtXoPupffvpGgIFa3qtqRZ907e0N3GG6i8bWjF5CunzDuKqiKr5QO5z1ZLHx8pVQj6q94eIooVgWkKEtTjtxWpqvvHHoXupGaI8609eWGV4HChnAEsYPTl1pd!e*Wb2l0D1vq7pDklsm5fzOUg7G1nbo*ioh1KMhq2tbJCcW4zmZq4CRc*wj45DvMhJPEhiQt5h8Uei09hkceiUxj2GD6FzT02P2DID8ezIde7RFEh2WxY2lU5CHCRCzDEz45RXvPZrSgDQxnOFQ65zJmbvljhzkqCXhK8RFJ6kgccv7xkqLLLiJbjsvv4g4kyjKIkBimIfLtmcNTQC*pzjZjP0Z93JbhI9ljTIPv*VBBeQzUq0WQqcA3VqOJTqUB6DdWogZOpPvxdplCN7sNkqvg8lXsWxJpT89tXrJb0mbjnQbIn3rL!LcjdE1fCOfgHeDUSsQ__/results,1 34924,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzlVctuozAU*ZpsRgoyODyyhJJ0spqqzKwt17ZSq8TO2E6Z!fv6QYNok4pk1aob!z4O9*jca0BLZWawniWZNtibC2Cdv9agXOMH3nLzf5ZUnVRPXGythdtWdlgQZmFCMX1ojbbo2D2mbTWENWGCOjCsfa3oQUptGP3JjY5!3Xu6NClsLYW7g2qtB0sXSh6N2Tuj99Nk3W9d10WUK0ZMtJXP0eGpj!!VpIhIoQ87RLd9kFOyb4MD1xtKGqaeuTuvC9RNg25Xv9FdebsK!ExIyja0TxdFH900qGnu*vTh2J*PLnm1c!etE4!70d4BLmFVVS62*KaaW!xHzkS4TIYTpLBwtwaxf3t7UzSXYmjEaNlh7eSllatkO!G3tP6R9MXTpBogRYAUHvIml4dcfiqXhVx2KpeGXHoqtwi5xWsOhuV4NugnVmgiFZsPprPWgwCPvAEDfn5EBc1nH4UlGNpwrnHQVy799sUad1ZSHCTFl0hanuQBx*etGLrsK8LVuO0B*!rCMoVZkYMlyMK45vFooBfM5xoxn2M!b1pwkeyxpkH2x1RxfA3VqEWTqcA1VKOOT6UCy2uoRgOcTPXu6zKFanQfJlPl56n8b0FuObGffc2wIo!IiRdilQ5p/results,1 34925,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzlVctSwyAU*ZpunGmGBMljmfRlVzpG1wwCUzNtIQK1fr4E0mairZN2peMGuA*uyTn3JtFSmRGcjqJYG!KOIbDGmz3UilBTUbIZRYXh2li3UFzvNkYf0rS9jYmmXLBKrKzX3Q1epNSGs7vK6OD!0ZVHUWrLKLLfKVsPwbxxRa*G1M2htVE0b7f9fh!wSnFqgpV8D3br1l8ryTCVQu!2mK1aZ8VovfEGnC8ZLbl6ryj3jmlZ4sXsCT*ki5nPj4VkfMnacJSB1r0scVk!PLf!0D2gXZJiO3KJaeOZaGc0dxJLq2h82X8lvSGu6Vz48bHDghURazsKmH*UdlZ0JUWnRG*ZEt3wQ0VTyUrhNjS9idriKCq6lNSnpC7lSyzxseRULPax!FQM!Rg6Fbv1sdtDDPrl!GzQtSzVVCo!7o7Nad4RcJkT0OWPj1me89mrMAedDOeEg65y7rY*JtxZSqGnFF5CKTuJA44vXNqp7CrCWV92n38wYY5gnCYgA7Fv1zjsNfSC*lxD5nf054sEF9Huc!po*wwVhtdA9SQaDAWugeopPhQKZNdA9Ro4GOrb12UIVG8eBkMl56Hcb0GuKmo*!5oTRV8xF5!!fAix/results,1 34926,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzdVU1zmzAQ*TW!dMYMEkbAEYLj!NJmSntmVEkhTIzkSCLuz68!sBlSO4N9SnvRat8u!3i7Qigh9SIqFxC9GlPpnjKuF7B4ajnmhNmdkJ0yFnNq1qZvKbMuDEG4gDG8B8A8zCVT*U4rU8PCSJmyNVaEcdryxqAWfA1!CaE0ow!tVsG37443hqmpJvGhlzvjRbmF4LPWe7sZfEMzmMPhENBWMqKDRrwF*cuA76WgNRFc9V1NmwFsKdnvvBPdbympmHxrrSgLlFVVb9Y*6sd8s*b5iAvKtnQIwxAO8Laqq!rx54AD94JmSYpu4RJTi9wp59ieJEZWYbHMWCPTO59,1 34927,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzdVU1z2jAQ*TVcMoNHsmLZHO0YCJc2U7dnjSppiCcgEUmE*Pzqw!BxChnDKe1F0u577PPblY1R2k5QPUnxq9ssfZ!kFdOCt9alpBZmv7HGIRC42DgyoYYJyVu5dlmffE1!K2Ws4I!tNcn3H6FalhaukKaHvd64CJU!lT5bu*OHLs7SRbcdDoeEt1owm6zVW7J*6fI7rThhSpr9lvB1l2w5221igBYrzhqh31omYqJuGrKc*yRP5XIe!VgqLla8g9MMd!lVQ5rm6VeXh!EB3ZJX20kgFj7zYEIAPOBsVT43c7uzGYOvY9OYWrFvdHtk1EsCC5jiYqTf*P*wm4ORfvEnfvGGhvstpL*1ltqWEU3li7v1RLzv3GthWiX7mz5YttR4o1nlK7mehC2r79KueJZWPaWIlCJQPmB5xPJzGI4YPodlEcvOYfcRuz9iKC6nZ0NhdoVhSotpf*SnRW8gMB9Az5!eWNHzxZ!iEvRtuNQ4FCqXYfvHGnfREoyW4DWWZmd1wOnNK*ouh4poPmx75B9DVGYIFzmYARzHNYWDgV4xn1vMfI35fGjBVbaHnnrbn0tBeIvUoEWjpcAtUoOOj5UCs1ukBgMcLfXX12WM1OA!jJbKL0uFvwW1bpn77BtBNXsmQv4BtzBBEg__/results,1 34928,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzdVU1vozAQ*TW5VAoydg3mCCVJc!lWZfdsUdtKUROc2k6zP7*!IEF0k4rk1O3F9swb5vnNDKClMhNUTmDyZretks!1EdZqldC7tdHWGQNraxtHa81Ey5t2Zb3O!RY9S6mN4PeN0dGvJ58IQzKBhar3O7W2FsqdC74Ys3WHzsZw3m37*T7ijRLMRCv5Hu1eO7!9CqdMtnq3oXzVORvOtutgoPmSs0qo94aJ4Cirii5mv!ljvpiF!KSVXCx5B2OSde5lRavq8U*nj*0F7ZIWG3fh0gnA8E57AzjAyiqczyYorMxgfB!ZWpeSPdSbQ0S5oHGaQUJG6k1*gF4AYJZmYzucfKE4Wdd!wkXr5t7UpmFU1e2rnXsq*m7ti6Eb2fazPlg2tXZSceEy2ar4DZc3sEuOYdGHkBBCfMgnLA1YegpLApacwnDA8CnsNmC3BwyF5Xg35LtHNJNKTPujO817AT7yDvTx02NU0Hz2UZSDvgznCod85txv*1nhzkqKg6T4EknZSR5wfPdIX2WfEc2GZQ*xBxPlGCUkBRlIQrum8aChF*TnGjHfoz!fSnCR7KGmXvbXVHF8DdWgRKOpwDVUg4qPpQLZNVSDBo6m!ufrMoZqMA!jqdLzVP63IFcNs599LWrFXqhoPwBEZUAi/results,1 34929,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzdVU1v4jAQ*TVcKhE5dp2PY9IA5bJFTfdsZW2LRgWb2qbsz19*BKJ0oQqcunuxPfMm8*xmJomWykxQNYHJu91Wz09l8TKzllBc7zdGW2cMrK1tHGk05YK1Ym29zvke*ZJSG84eW6Ojp2efCMNsAkvVHPZqYy1UOBd8NWbnDp2N4bzbDodDxFrFqYnW8iPav3X!nZKMUCn0fkvYunO2jO42wUDzJaM1Vx8t5cFR1TVZzF7IqljMQnwiJONL1sE4yzv3siZ1vfrZ!WN*Qbuk5dZduHICMHzQ3gAOsLJK57MJSiszGN9HptaVpD!a7TGiWpA4zWGWjdSb*gd6AYB5mo*tcPKF4mTT!Annws29aUxLiWrEm517wn*v7IuhWyn6WR8s20Y7qbh0mWxV*IarO9glx7DsQ7IQkvmQT1gasPQclgQsOYfhgOFz2H3A7o8YCsvpbsh3L9NUKj7tj!407wX4yAfQx09PUUHzxUdRAfoyXCoc8pkLv*1jhbsoKQ6S4msk5Wd5wOndy*oq!4xoNix7iD!aqMAoyVKQgyS0axoPGnpFf24R8z3686kEV8keauplf00Vx7dQDUo0mgrcQjWo!FgqkN9CNWjgaKq*vi5jqAbzMJoqvUzlfwty3VL72de8UfSVcPEHPk0*Qg__/results,1 34930,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzdVk2PmzAQ*TW5VAryB2A4wpKke2lXpT1b1FhZtIlNbWfTn19*kCC2yYrktO3F9sx7nvGbsUm0VGaBqwVKtWn8Etj1Lztb2*AFKnsudCeF9QrF9WFntAWhY2m7lzaacdF2YnvaGv2UUhvefu6Mjr5!88ETlNlIqjke1M5auHAu9GxM7xaDnaD1MB2Px6jtFGcm2srX6PAy!HslW8qk0Ic9bbeDs2tZvwsGXj!2rObqtWM8OKq6ppvVd*pUbFaBn2pdSfal2Z8Y1YbGAJIc5gPhsaZ1*fRjgKE*qh1IuXdHr5yUBD1obwAHWIGl89kApRUcjA8tGAIA45TAmYrJf6EYEQjimYrTdxSnu8bfdi7CqzEdo6oRL*YNUP67t4*Ev5fzvZ8M!0Y7qUnpItmq!CmpPqEheILKkZIFSuYpbzASMHIJSwOWXsKSgCWXsDhg8QnDYTifDfvuZZpJxZfj0q3WowDPfAAjf3lmBc1Xt!ICjGW4VjjsIxd!!scKd1USDJLgLZLyi3nA!e1lY5V9RLyalj3wTyYuEpxmBOQgDe1awklDb!jPPWI!Rn*elOAm2VNNo!z3U0F4T6pJiWanAvekmlR8biqQ35Nq0sDZqf76usxJNbkPs1OR66n8z4Lcdsz9ceKNYs!Uiz!pqkmK/results,1 34931,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzdVk1zmzAQ*TW!ZMaMQJGAIwTb9SXNlPasoZLGYWJLjiTi*vzqA5shtTPYp6QXSbtvvU9vlzVoqcwMVrMEv9pNm45xYawlFNfd1mjrjIG1tY0jjaZcsFZsrNc5X6PfUmrD2bfW6Oj7D58IJdksKVVz6NTWWrBwruTZmL079DZKlv12OBwi1ipOTbSRb1H30vv3SjJCpdDdjrBN72wZ3W!DAZdrRmuu3lrKg6Oqa7Ja*CRPxWoR4rGQjK9ZD6e4965rUtdPv3p37O9nl7TcuftW7v4oedDeAA6wqkrny!1uVQbj86jUupL0sdkdI6oViQGACOGpitP*QHEaI5hP1Iu*mN7Rc5xP7Sr6QCXeNn6MuXDDbRrTUqIa8WKHm*A*ezv9upViGOjRsmu0k4dKl8lWwm!oukv65Cgph5AshGQ!5B2WBiw9h!GA4XMYChg6h90H7P6IwbCc7gZ9xzJNpeLz4ehOy0GAj3wAQ*z8FBU0X*wpLMBQhkuFgz5z4bcvVriLkuIgKb5GUn6WB5zmLRuq7DPCxbjsIf5owgJBnKUgBzi0ax6PGnpFf24R8zn6864EV8keaxpkf0wVx7dQjUo0mQrcQjWq!FQqkN9CNWrgZKp**l2mUI2eh8lU6WUq*1qQm5a6L0HeKPpMuPgLOId9cg__/results,1 34932,http://www.direct.gov.uk/en/AdvancedSearch/search/C.view=search_en&C.s=eJzdVcuO2jAU*Ro2lYicZPJaJgQom3bU0EW7sVzHykSTB*U10P59*YIoA4wCq7Yb!9rn5B6f60eg52Lm5zMvBEF0iGT8U*Zlfai7auZllHSUNQ0Rdd!BBDvOYN8IkBxXkUGmwAQo60r1gc3g*Oh7EKz8WAtwPn*RGoEXy3ycHPe8kSM*VVPeixA7Fdhx4K1sdzwenRKIU*UHZ*9qJ1PRfwfGDzVlgDPSdYyz0iFgU6wWRJgon7vmk5C0Fsy2DMT2945ZBiX8kiLhTW4JbqRXKJsoa9WKc!Ug8BagB0gBkpupuUT20qcZ3O!z5oyKsdUd70tMZdH3LS4rO1mXdNdU1uympIWphV1wUeD1couf0*XSOgPIe*qJtCdGvsZuEvkIWXxT4KJ4*noyfOE3!l*8Lr5NdBy!4zhsiD7irDM3RtQUc9K9yoOP2a!dvBkgb8lw2EdNS0BZDTKVSVZFd0H!wbPJAy8bKLGhxJryBosMFl3DQoOF17DAYME17MlgTyfMN815bb7evRhoz9l8CFW0Ggxo5gIN*PmZZTzf*NRP0VCGW4XzdeZUd*9Y4W5aco0l9x5LyVUddL578VBlndFfjstu!KehnwZ!GEcoQaHZLvNyJqNm2v48Yubv2J83JbjL9tjTYPt9Kdd9RGpUoslS6BGpUcWnSqHkEanRBk6WunhdpkiNzsNkqei2lP4t9FVN5bMPjHD6gln3By3nSU8_/results,1 34933,http://www.nhslanarkshire.org.uk,1 34934,http://www.direct.gov.uk/educationAndlearning/14to19/moneyTolearn/index.int,1 34935,http://www.direct.gov.uk/drivingtest,1 34936,http://www.direct.gov.uk/drivingsupervision,1 34937,http://www.ni-minis.co.uk,1 34938,http://www.niasdrivingschool.co.uk,1 34939,http://10.156.107.1,1 34940,http://www.direct.gov.uk/cy/YoungPeople/Youngdisabledpeople/index.htm,1 34941,http://www.direct.gov.uk/cy/YoungPeople/Workandcareers/Workexperienceandvolunteering/DG_066213CY,1 34942,http://www.direct.gov.uk/cy/YoungPeople/Workandcareers/index.htm,1 34943,http://www.direct.gov.uk/cy/YoungPeople/HealthAndRelationships/KeepingHealthy/index.htm,1 34944,http://www.direct.gov.uk/cy/YoungPeople/HealthAndRelationships/ConcernedAbout/DG_10030639CY,1 34945,http://www.direct.gov.uk/cy/YoungPeople/CrimeAndJustice/Youngpeopleservingyoursentence/DG_10027708CY,1 34946,http://www.direct.gov.uk/cy/YoungPeople/CrimeAndJustice/TypesOfCrime/DG_172800CY,1 34947,http://www.direct.gov.uk/cy/YoungPeople/CrimeAndJustice/KeepingSafe/index.htm,1 34948,http://www.direct.gov.uk/cy/TravelAndTransport/Usingmotorwaysandroads/Keepingtrafficmoving/,1 34949,http://www.direct.gov.uk/cy/TravelAndTransport/PublicTransport/RailTravel/DG_10036295CY,1 34950,http://www.direct.gov.uk/cy/TravelAndTransport/PublicTransport/index.htm,1 34951,http://www.direct.gov.uk/cy/TravelAndTransport/PublicTransport/AirtravelintheUK/DG_10036423CY,1 34952,http://www.direct.gov.uk/cy/TravelAndTransport/Passports/WhoiseligibleforaBritishpassport/DG_174145CY,1 34953,http://www.direct.gov.uk/cy/TravelAndTransport/Passports/Applyingforyourfirstadultpassport/DG_174100CY,1 34954,http://www.direct.gov.uk/cy/TravelAndTransport/Passports/Applicationinformation/DG_174359CY,1 34955,http://www.direct.gov.uk/cy/TravelAndTransport/Passports/Aboutcollectivegrouppassports/DG_174122CY,1 34956,http://www.direct.gov.uk/cy/TravelAndTransport/index.htm,1 34957,http://www.nibleyhousenursery.co.uk,1 34958,http://www.nibtt.com,1 34959,http://www.direct.gov.uk/cy/TravelAndTransport/Highwaycode/Cyclists/index.htm,1 34960,http://www.nice.org.uk,1 34961,http://www.direct.gov.uk/cy/TravelAndTransport/Foreigntravel/IfThingsGoWrong/index.htm,1 34962,http://www.direct.gov.uk/cy/TravelAndTransport/CyclingAndWalking/DG_10026401CY,1 34963,http://www.direct.gov.uk/cy/TravelAndTransport/Boatingandtravellingbywater/PleasureCraft/,1 34964,http://www.direct.gov.uk/cy/SiteInformation/DG_020455CY,1 34965,http://www.nickraynsford.org.uk,1 34966,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Working/OpportunitiesInRetirement/index.htm,1 34967,http://www.nickryden.com,1 34968,http://yhnintranet,1 34969,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Working/index.htm,1 34970,http://www.nicma.org,1 34971,http://adi89797.theorytestpro.co.uk,1 34972,http://www.nicofayet.fr,1 34973,http://www.nicolasriou.net,1 34974,http://adi88537.theorytestpro.co.uk,1 34975,http://www.nicsdrivingschool.com,1 34976,http://www.nidderdalegrouppractice.co.uk,1 34977,http://www.nieegov.co.uk,1 34978,http://www.nigelsway.com,1 34979,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/PensionCredit/index.htm,1 34980,http://www.nightshade-arts.co.uk,1 34981,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Companyandpersonalpensions/PersonalPensions/index.htm,1 34982,http://www.nihon-u.ac.jp,1 34983,http://www.direct.gov.uk/cy/Pensionsandretirementplanning/Benefits/BenefitsInRetirement/DG_198330CY,1 34984,http://www.ninedots.org.uk,1 34985,http://www.niohp.net.cn,1 34986,http://www.direct.gov.uk/cy/Parents/Yourchildshealthandsafety/YourChildsHealth/DG_10015284CY,1 34987,http://www.direct.gov.uk/cy/Parents/Yourchildshealthandsafety/Roadandtravelsafety/index.htm,1 34988,http://www.direct.gov.uk/cy/parents/yourchildshealthandsafety/internetsafety/index.htm,1 34989,http://www.nippi.co.uk,1 34990,http://www.direct.gov.uk/cy/Parents/Schoolslearninganddevelopment/YourChildsWelfareAtSchool/DG_4016112CY,1 34991,http://www.direct.gov.uk/cy/Parents/Preschooldevelopmentandlearning/NurseriesPlaygroupsReceptionClasses/index.htm,1 34992,http://www.direct.gov.uk/cy/Parents/Preschooldevelopmentandlearning/NurseriesPlaygroupsReceptionClasses/DG_173054CY,1 34993,http://yiewsleycornerstone.easysearch.org.uk,1 34994,http://www.nitroteksupport.co.uk,1 34995,http://adi86668.theorytestpro.co.uk,1 34996,http://www.direct.gov.uk/cy/Parents/Moneyandworkentitlements/WorkAndFamilies/Pregnancyandmaternityrights/index.htm,1 34997,http://www.direct.gov.uk/cy/Parents/Moneyandworkentitlements/WorkAndFamilies/Paternityrightsintheworkplace/DG_190788CY,1 34998,http://www.njceci.co.uk,1 34999,http://www.njobs.co.uk,1 35000,http://www.direct.gov.uk/cy/Parents/Familyleisureandrecreation/DG_172710CY,1 35001,http://www.direct.gov.uk/cy/Parents/FamilyIssuesAndTheLaw/DG_4002959CY,1 35002,http://www.nlgn.org.uk,1 35003,http://www.direct.gov.uk/cy/Parents/Childcare/index.htm,1 35004,http://www.nlhomes.org.uk,1 35005,http://www.direct.gov.uk/cy/Parents/Adoptionfosteringandchildrenincare/Fostering/index.htm,1 35006,http://www.direct.gov.uk/cy/Parents/Adoptionfosteringandchildrenincare/AdoptionAndFostering/index.htm,1 35007,http://www.nlpacademy.co.uk,1 35008,http://adi84455.theorytestpro.co.uk,1 35009,http://adi83227.theorytestpro.co.uk,1 35010,http://www.direct.gov.uk/cy/Motoring/Motoringtransactions/BeforeyouapplyA/DG_10032690CY,1 35011,http://www.nmfhssouthport.co.uk,1 35012,http://www.direct.gov.uk/cy/Motoring/Drivingforaliving/Drivinglorriesbusesandcoaches/DG_186131CY,1 35013,http://www.direct.gov.uk/cy/Motoring/Drivingforaliving/Becomingadrivertrainer/DG_182833CY,1 35014,http://yjyw.teachernet.gov.uk,1 35015,http://adi80859.theorytestpro.co.uk,1 35016,http://www.direct.gov.uk/cy/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_195689CY,1 35017,http://www.direct.gov.uk/cy/Motoring/DriverLicensing/NeedANewOrUpdatedLicence/DG_10012514CY,1 35018,http://www.nmo.bis.gov.uk,1 35019,http://www.direct.gov.uk/cy/Motoring/BuyingAndSellingAVehicle/ImportingAndExportingAVehicle/DG_4022582CY,1 35020,http://www.nmouk.nhs.uk,1 35021,http://www.direct.gov.uk/cy/Motoring/BuyingAndSellingAVehicle/AdviceOnBuyingAndSellingAVehicle/CalculatethefuelconsumptionCO2andtaxcosts/index.htm,1 35022,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/WorkingAndPayingTax/DG_10016920CY,1 35023,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/TaxOnSavingsAndInvestments/DG_4016453CY,1 35024,http://10.151.32.13:15871,1 35025,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/SelfAssessmentYourTaxReturn/Fileyourtaxreturnonline/index.htm,1 35026,http://www.no5.com,1 35027,http://www.noahsarktrust.co.uk,1 35028,http://www.noblesolicitors.co.uk,1 35029,http://www.noelsdrivingschool.org,1 35030,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/Taxes/BeginnersGuideToTax/IncomeTax/Taxallowancesandreliefs/DG_078571CY,1 35031,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/peoplewhohelpothers/Getauthoritytoactforsomeoneelse/,1 35032,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/peoplewhohelpothers/Entitlementtablesfortaxcredits/Youworkandalsohavechildren/index.htm,1 35033,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/otherbenefits/affectofbenefitsontaxcredits/DG_175679CY,1 35034,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Paymentsandentitlement/entitlement/DG_073944CY,1 35035,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Keepingyourtaxcreditsuptodate/Renewingtaxcreditsclaim/DG_073816CY,1 35036,http://www.noisemeters.co.uk,1 35037,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/DG_181268CY,1 35038,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/TaxCredits/Gettingstarted/whoqualifies/Childrenandtaxcredits/DG_073803CY,1 35039,http://www.nolimits-southampton.org.uk,1 35040,http://www.nominet.com,1 35041,http://www.nominet.org.uk,1 35042,http://www.nomorel.co.uk,1 35043,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingMoney/KeepingYourMoneySecure/index.htm,1 35044,http://www.nomorestandby.com,1 35045,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingMoney/GivingMoneyToCharity/DG_078488CY,1 35046,http://www.noo.org.uk,1 35047,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingMoney/BankAccountsAndBankingProducts/DG_10035164CY,1 35048,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingDebt/PlanYourWayOutOfDebt/index.htm,1 35049,http://www.norburyschool.ik.org,1 35050,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingDebt/DebtsAndArrears/DG_10019426CY,1 35051,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingDebt/CourtClaimsAndBankruptcy/DG_10014967CY,1 35052,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ManagingDebt/Bankruptcy/DG_187413CY,1 35053,http://www.norcrospensions.co.uk,1 35054,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/ChildTrustFund/AnintroductiontotheChildTrustFund/index.htm,1 35055,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Ifthingsgowrong/index.htm,1 35056,http://www.norfolkchamber.co.uk,1 35057,http://www.norfolkparents.org.uk,1 35058,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/ChildBenefitandChildTrustFund/Childbenefits/Gettingstarted/ChildBenefitandwhoqualifies/DG_073770CY,1 35059,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/On_a_low_income/DG_180321CY,1 35060,http://www.normandymotorcycles.co.uk,1 35061,http://www.normanhinks.com,1 35062,http://www.north-wales.police.uk,1 35063,http://www.northallerton-iam.org.uk,1 35064,http://adi71457.theorytestpro.co.uk,1 35065,http://www.northamericatravelservice.co.uk,1 35066,http://www.northampton-news-hp.co.uk,1 35067,http://www.northamptonboroughcouncil.com,1 35068,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Caringforsomeone/DG_10018691CY,1 35069,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/Bereaved/index.htm,1 35070,http://www.direct.gov.uk/cy/MoneyTaxAndBenefits/BenefitsTaxCreditsAndOtherSupport/BeginnersGuideToBenefits/DG_171076CY,1 35071,http://www.northants-huntsmasons.org.uk,1 35072,http://www.direct.gov.uk/cy/HomeAndCommunity/WhereYouLive/StreetsParkingCleaningAndLighting/DG_10026223CY,1 35073,http://10.150.185.253,1 35074,http://www.direct.gov.uk/cy/HomeAndCommunity/SocialHousingAndCareHomes/RepairsToCouncilHomes/DG_4001383CY,1 35075,http://www.northbrook.ac.uk,1 35076,http://www.direct.gov.uk/cy/HomeAndCommunity/Planning/GrantsFundsAndStandards/index.htm,1 35077,http://www.direct.gov.uk/cy/homeandcommunity/planning/buildingregulations/dg_10014147cy,1 35078,http://www.northcity.childrencentre.org,1 35079,http://www.direct.gov.uk/cy/HomeAndCommunity/Keepingyourhomeevictionsandhomelessness/Mortgagesandrepossessions/DG_180066CY,1 35080,http://www.direct.gov.uk/cy/HomeAndCommunity/InYourHome/PestAndWeedControl/index.htm,1 35081,http://www.direct.gov.uk/cy/HomeAndCommunity/InYourHome/AnimalsAndPets/Dogs/DG_180127CY,1 35082,http://www.direct.gov.uk/cy/HomeAndCommunity/InYourHome/AnimalsAndPets/DG_175858CY,1 35083,http://www.direct.gov.uk/cy/HomeAndCommunity/index.htm,1 35084,http://www.direct.gov.uk/cy/HomeAndCommunity/Gettinginvolvedinyourcommunity/Volunteering/DG_195453CY,1 35085,http://www.direct.gov.uk/cy/HomeAndCommunity/BuyingAndSellingYourHome/BuyingYourHome/DG_4018090CY,1 35086,http://www.direct.gov.uk/cy/Hl1/Help/Socialbookmark/index.htm,1 35087,http://www.direct.gov.uk/cy/Hl1/Help/Accessibility/index.htm,1 35088,http://www.direct.gov.uk/cy/HealthAndWellBeing/index.htm,1 35089,http://www.direct.gov.uk/cy/Governmentcitizensandrights/Yourrightsandresponsibilities/Findoutaboutyourrights/DG_4002951CY,1 35090,http://www.northealingprimary.co.uk,1 35091,http://www.direct.gov.uk/cy/Governmentcitizensandrights/UKgovernment/Centralgovernmentandthemonarchy/DG_073446CY,1 35092,http://www.direct.gov.uk/cy/Governmentcitizensandrights/Mentalcapacityandthelaw/Mentalcapacityandplanningahead/DG_186373CY,1 35093,http://www.direct.gov.uk/cy/Governmentcitizensandrights/Mentalcapacityandthelaw/Makingdecisionsforsomeoneelse/DG_186479CY,1 35094,http://www.direct.gov.uk/cy/Governmentcitizensandrights/GettingLegalAdvice/Legalaidincriminalcases/index.htm,1 35095,http://www.northeastveterans.net,1 35096,http://www.direct.gov.uk/cy/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Resolvingproblemswithyourrelationship/DG_193780CY,1 35097,http://yms.org.tr,1 35098,http://www.direct.gov.uk/cy/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Workingoutmoneyandpropertythroughancillaryrelief/DG_193772CY,1 35099,http://www.northern-monkey-offroad.co.uk,1 35100,http://www.direct.gov.uk/cy/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Moneypropertyandpossessionswhenyourrelationshipends/Ifyourenotmarriedorinacivilpartnership/DG_193774CY,1 35101,http://www.direct.gov.uk/cy/Governmentcitizensandrights/Divorceseparationandrelationshipbreakdown/Endingamarriageorcivilpartnership/index.htm,1 35102,http://www.northern.police.uk,1 35103,http://www.direct.gov.uk/cy/Governmentcitizensandrights/Dealingwithemergencies/Supportafteramajorincident/index.htm,1 35104,http://www.direct.gov.uk/cy/Governmentcitizensandrights/Dealingwithemergencies/Supportafteramajorincident/DG_078068CY,1 35105,http://www.northernbank.co.uk,1 35106,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Thewiderenvironment/Pollution/index.htm,1 35107,http://adi64987.theorytestpro.co.uk,1 35108,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Thewiderenvironment/Climatechange/index.htm,1 35109,http://www.northerntrust.hscni.net,1 35110,http://www.northfield-school.co.uk,1 35111,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Greenershopping/DG_064872CY,1 35112,http://www.northgate.suffolk.sch.uk,1 35113,http://www.northlancashirecab.org.uk,1 35114,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Greenerlifeevents/index.htm,1 35115,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Greenerhomeandgarden/index.htm,1 35116,http://www.direct.gov.uk/cy/Environmentandgreenerliving/Energyandwatersaving/Energygrants/DG_072668CY,1 35117,http://www.direct.gov.uk/cy/Employment/Understandingyourworkstatus/Agencyworkersandemploymentagencies/DG_10027514CY,1 35118,http://www.direct.gov.uk/cy/Employment/StartingANewJob/index.htm,1 35119,http://www.direct.gov.uk/cy/Employment/ResolvingWorkplaceDisputes/DG_10027991CY,1 35120,http://www.direct.gov.uk/cy/Employment/RedundancyAndLeavingYourJob/Redundancy/DG_10029836CY,1 35121,http://www.northlancashirecentre.co.uk,1 35122,http://adi56958.theorytestpro.co.uk,1 35123,http://www.northlancshealth.nhs.uk,1 35124,http://www.direct.gov.uk/cy/Employment/Jobseekers/JobsAndCareers/index.htm,1 35125,http://www.direct.gov.uk/cy/Employment/Jobseekers/Helpapplyingforajob/index.htm,1 35126,http://www.direct.gov.uk/cy/Employment/Jobseekers/Helpapplyingforajob/DG_173634CY,1 35127,http://www.direct.gov.uk/cy/Employment/Employees/WorkingHoursAndTimeOff/DG_10029426CY,1 35128,http://www.direct.gov.uk/cy/Employment/Employees/Timeoffandholidays/DG_10037655CY,1 35129,http://www.direct.gov.uk/cy/Employment/Employees/Timeoffandholidays/,1 35130,http://10.136.206.127:8089,1 35131,http://www.northlancstraining.co.uk,1 35132,http://www.direct.gov.uk/cy/Employment/Employees/Flexibleworking/index.htm,1 35133,http://www.direct.gov.uk/cy/EducationAndLearning/14To19/OptionsAt16/,1 35134,http://www.direct.gov.uk/cy/EducationAndLearning/14To19/MoneyToLearn/ExtraHelp/index.htm,1 35135,http://www.direct.gov.uk/cy/EducationAndLearning/14To19/MoneyToLearn/DanceandDrama/index.htm,1 35136,http://www.northleamingtonschool.warwickshire.sch.uk,1 35137,http://www.direct.gov.uk/cy/EducationAndLearning/14To19/Courseworkandexams/DG_10034387CY,1 35138,http://www.direct.gov.uk/cy/Dl1/Directories/index.htm,1 35139,http://www.northlondon.bradleyssom.co.uk,1 35140,http://www.direct.gov.uk/cy/DisabledPeople/RightsAndObligations/DisabilityRights/DG_4001068CY,1 35141,http://adi51852.theorytestpro.co.uk,1 35142,http://www.direct.gov.uk/cy/DisabledPeople/MotoringAndTransport/PublicAndCommunityTransport/index.htm,1 35143,http://www.direct.gov.uk/cy/DisabledPeople/MotoringAndTransport/Bluebadgescheme/DG_10038295CY,1 35144,http://www.direct.gov.uk/cy/DisabledPeople/HomeAndHousingOptions/YourHome/index.htm,1 35145,http://www.northmead4x4.co.uk,1 35146,http://www.northmerseydiabetes.nhs.uk,1 35147,http://www.direct.gov.uk/cy/DisabledPeople/HealthAndSupport/Hospitals/DG_4000474CY,1 35148,http://www.direct.gov.uk/cy/DisabledPeople/HealthAndSupport/Equipment/index.htm,1 35149,http://www.northolthigh.org.uk,1 35150,http://www.direct.gov.uk/cy/DisabledPeople/FinancialSupport/Taxreliefandreductions/DG_10026451CY,1 35151,http://www.northshields-drivingschool.co.uk,1 35152,http://www.direct.gov.uk/cy/DisabledPeople/FinancialSupport/IncapacityBenefit/index.htm,1 35153,http://www.northshoresurgery.co.uk,1 35154,http://www.northside-clinic.co.uk,1 35155,http://www.northstreetmedicalcare.co.uk,1 35156,http://www.direct.gov.uk/cy/DisabledPeople/Employmentsupport/index.htm,1 35157,http://www.direct.gov.uk/cy/Diol1/DoItOnline/WP/DG_WP193625CY,1 35158,http://www.northtynesidecarers.org.uk,1 35159,http://www.direct.gov.uk/cy/Diol1/DoItOnline/Doitonlinemotoring/DG_197300CY,1 35160,http://www.direct.gov.uk/cy/Diol1/DoItOnline/Doitonlinemotoring/DG_197299CY,1 35161,http://www.direct.gov.uk/cy/Diol1/DoItOnline/DoItOnlineByCategory/DG_172666CY,1 35162,http://www.direct.gov.uk/cy/CrimeJusticeAndTheLaw/VictimsOfCrime/index.htm,1 35163,http://www.direct.gov.uk/cy/CrimeJusticeAndTheLaw/VictimsOfCrime/DG_4003136CY,1 35164,http://www.direct.gov.uk/cy/CrimeJusticeAndTheLaw/ThePolice/DG_181738CY,1 35165,http://www.direct.gov.uk/cy/CrimeJusticeAndTheLaw/Juryservice/DG_072707CY,1 35166,http://www.northwestadiassociation.com,1 35167,http://www.northwestbikers.net,1 35168,http://www.northwestlandlords.com,1 35169,http://www.northwestscrapcarsremoved.co.uk,1 35170,http://www.direct.gov.uk/cy/CaringForSomeone/CarersRights/DG_4018108CY,1 35171,http://www.direct.gov.uk/cy/CaringForSomeone/CareHomes/index.htm,1 35172,http://www.direct.gov.uk/cy/BritonsLivingAbroad/index.htm,1 35173,http://www.direct.gov.uk/cy/BritonsLivingAbroad/EducationAndJobs/index.htm,1 35174,http://www.direct.gov.uk/cy/BritonsLivingAbroad/EducationAndJobs/DG_071578CY,1 35175,http://adi47182.theorytestpro.co.uk,1 35176,http://www.nortoncanes-primary.staffs.sch.uk,1 35177,http://www.norway.org.uk,1 35178,http://www.direct.gov.uk/booktheorytest,1 35179,http://www.direct.gov.uk/adoption.dsb,1 35180,http://www.norwoodprimaryschool.com,1 35181,http://www.direct.gov.uk./en/AdvancedSearch/Searchresults/index.htm,1 35182,http://www.direct-travel.co.uk,1 35183,http://www.direct-holidayvillas.com,1 35184,http://www.direct-gov.org.uk,1 35185,http://adi457659.theorytestpro.co.uk,1 35186,http://www.noschooltoday.com.au,1 35187,http://www.notjustnumbersltd.co.uk,1 35188,http://www.dipa.org.uk,1 35189,http://www.diogenesllc.com,1 35190,http://www.dino.co.uk,1 35191,http://www.dinaspowysis.co.uk,1 35192,http://www.dinangarage.co.uk,1 35193,http://www.notredame-high.org.uk,1 35194,http://www.nottinghamcity.nhs.uk,1 35195,http://www.nottinghamdrivinginstructor.com,1 35196,http://www.nottinghamlawcentre.org.uk,1 35197,http://www.digitalhandyman.co.uk,1 35198,http://www.nottinghamshire.police.uk,1 35199,http://www.digit.ru,1 35200,http://www.digg.org.uk,1 35201,http://www.nottinghamyouth.co.uk,1 35202,http://www.differentstrokes.co.uk,1 35203,http://www.differentdimension.org,1 35204,http://www.didyoumissme.co.uk,1 35205,http://www.nottsuncut.co.uk,1 35206,http://www.didcotgirls.oxon.sch.uk,1 35207,http://www.novasol.co.uk,1 35208,http://www.novasol.com,1 35209,http://www.nozbe.com,1 35210,http://www.npa.gov.za,1 35211,http://www.npep.org.uk,1 35212,http://www.diamond-drive.co.uk,1 35213,http://www.npia.police.uk,1 35214,http://www.diabolik.tv,1 35215,http://www.nptroadsafety.co.uk,1 35216,http://www.diabetes-healthnet.ac.uk,1 35217,http://www.nqdigitalworks.co.uk,1 35218,http://www.dia.org.uk,1 35219,http://www.dhsspsni.gov.uk,1 35220,http://www.nram.co.uk,1 35221,http://www.dgvr.co.uk,1 35222,http://www.dgs.pt,1 35223,http://www.nrcentre.org.uk,1 35224,http://www.dgmotoring.co.uk,1 35225,http://www.dglearnnet.com,1 35226,http://www.dgdr.cnrs.fr,1 35227,http://www.dgap.gov.pt,1 35228,http://www.nrgr8.co.uk,1 35229,http://www.nsaaa.org.uk,1 35230,http://www.dfalaw.co.uk,1 35231,http://www.nsct.co.uk,1 35232,http://www.dewsalfaromeo.co.uk,1 35233,http://www.nsd.scot.nhs.uk,1 35234,http://www.devonmoonraker.pwp.blueyonder.co.uk,1 35235,http://www.devonline.gov.uk,1 35236,http://www.devonldp.org,1 35237,http://www.devonhec.org.uk,1 35238,http://adi453788.theorytestpro.co.uk,1 35239,http://www.devonchildrenstrust.org.uk,1 35240,http://www.devon4x4.com,1 35241,http://www.nshomes.co.uk,1 35242,http://www.devon-cornwall.police.uk,1 35243,http://www.devineokeeffe.co.uk,1 35244,http://www.nshousing.org.uk,1 35245,http://adi451590.theorytestpro.co.uk,1 35246,http://www.develop-meant.com,1 35247,http://www.dev2-gifhe.co.uk,1 35248,http://www.nss.org,1 35249,http://www.detini.gov.uk,1 35250,http://www.nthfdman.bham.sch.uk,1 35251,http://www.desktoplawyer.net,1 35252,http://www.ntlp.org.uk,1 35253,http://www.designsonproperty.co.uk,1 35254,http://www.designpop.co.kr,1 35255,http://www.designdazzling.com,1 35256,http://www.nudsa.org,1 35257,http://adi45019.theorytestpro.co.uk,1 35258,http://www.derwentsidehomes.co.uk,1 35259,http://www.nuff.ox.ac.uk,1 35260,http://www.derwentdrivertraining.co.uk,1 35261,http://www.derrifordhouse.co.uk,1 35262,http://www.derektealedrivingschool.co.uk,1 35263,http://www.derekssom.co.uk,1 35264,http://www.nuk.co.uk,1 35265,http://www.derbywomenscentre.org.uk,1 35266,http://www.derbyshireeconomicpartnership.org.uk,1 35267,http://www.numberonedrivingschool.co.uk,1 35268,http://www.derbyshirebooth.com,1 35269,http://www.numerouno1.co.uk,1 35270,http://www.nuneaton-mot-test-centre.co.uk,1 35271,http://www.nuneatonandbedworth.gov.uk:8080,1 35272,http://www.derbyrospa.org.uk,1 35273,http://www.nunnrickard.co.uk,1 35274,http://10.132.0.27,1 35275,http://www.nuoret.info,1 35276,http://www.derbyhomefinder.org,1 35277,http://www.derbydrivability.com,1 35278,http://www.derbycitymission.org.uk,1 35279,http://www.nursing-home-lancashire.co.uk,1 35280,http://www.deptfordparkschool.co.uk,1 35281,http://www.nusu.co.uk,1 35282,http://www.dephub.go.id,1 35283,http://www.nuwarra-p.schools.nsw.edu.au,1 35284,http://www.densdrivingschool.co.uk,1 35285,http://www.nvcc.edu,1 35286,http://www.nvqmadesimple.com,1 35287,http://adi435403.theorytestpro.co.uk,1 35288,http://www.denniscartledgefuneralservices.co.uk,1 35289,http://www.denmeadschool.org.uk,1 35290,http://www.denmeaddoctorssurgery.co.uk,1 35291,http://www.denmarkstreetsurgery.nhs.uk,1 35292,http://www.denholma.freeserve.co.uk,1 35293,http://www.denhamelectrical.co.uk,1 35294,http://www.denbighshirehousing.co.uk,1 35295,http://www.nvsd44.bc.ca,1 35296,http://www.demo.drivingschoolwebsites.co,1 35297,http://www.deminos.co.uk,1 35298,http://www.nwcaching.co.uk,1 35299,http://www.nwgc.co.uk,1 35300,http://www.deltaschoolofmotoring.co.uk,1 35301,http://www.nwli.com,1 35302,http://www.nwlondonchilternsiam.org.uk,1 35303,http://www.delce-jun.medway.sch.uk,1 35304,http://www.delboysdrivingschool.co.uk,1 35305,http://www.nwpl-uk.co.uk,1 35306,http://www.nwsadp.org.uk,1 35307,http://www.defender50th.co.uk,1 35308,http://www.nwssn.org,1 35309,http://www.defencejobs.net,1 35310,http://www.defencedrivers.com,1 35311,http://www.deesidelearners.co.uk,1 35312,http://www.nwvle.net,1 35313,http://www.deeroaks.com,1 35314,http://www.deenhomes.co.uk,1 35315,http://www.nyccmoodle.co.uk,1 35316,http://www.deddington.org.uk,1 35317,http://www.decerto.net,1 35318,http://www.deceasedidentityfraud.co.uk,1 35319,http://www.debutds.co.uk,1 35320,http://www.nysp.org.uk,1 35321,http://www.nystagmus.co.uk,1 35322,http://www.debtrelieforder.co.uk,1 35323,http://www.debtquestions.co.uk,1 35324,http://www.debtorsite.co.uk,1 35325,http://www.debtmanagementtoday.co.uk,1 35326,http://www.debtmanagementplan.org,1 35327,http://www.debthelpcharity.com,1 35328,http://www.debtdrivingumad.co.uk,1 35329,http://www.nyypct.nhs.uk,1 35330,http://www.debtadvisorycentre.co.uk,1 35331,http://www.o-bay.org,1 35332,http://www.debtadvice-online.co.uk,1 35333,http://www.debt-helpline-uk.com,1 35334,http://www.debt-consolidation-debt.com,1 35335,http://www.o-om.com,1 35336,http://www.debretts.co.uk,1 35337,http://www.debk.org.uk,1 35338,http://www.debatingmatters.com,1 35339,http://adi42617.theorytestpro.co.uk,1 35340,http://www.deauvilleuk.org,1 35341,http://www.oaasis.co.uk,1 35342,http://www.deanmanson.com,1 35343,http://www.deanengineering.co.uk,1 35344,http://www.deanbenstead.pwp.blueyonder.co.uk,1 35345,http://www.dealingwithdepression.co.uk,1 35346,http://www.oacp.on.ca,1 35347,http://www.deaflincs.com,1 35348,http://www.deafcomm.co.uk,1 35349,http://www.deafblind.com,1 35350,http://www.deaf4life.co.uk,1 35351,http://www.oag-bvg.gc.ca,1 35352,http://www.ddsm.co.uk,1 35353,http://www.oakfield-dartford.co.uk,1 35354,http://www.ddfire.gov.uk,1 35355,http://www.oakfield-day-nursery.co.uk,1 35356,http://www.dctraining.castusdev3.co.uk,1 35357,http://www.dctdrivingschool.com,1 35358,http://www.dcspayroll.co.uk,1 35359,http://www.dcsf.gov.uk,1 35360,http://www.dcsf-disclosures.co.uk,1 35361,http://www.dcms.gov.uk,1 35362,http://www.dcisprepared.org.uk,1 35363,http://www.dchs.nhs.uk,1 35364,http://adi420262.theorytestpro.co.uk,1 35365,http://adi418818.theorytestpro.co.uk,1 35366,http://www.oakfieldcare.co.uk,1 35367,http://www.dbs.uk.net,1 35368,http://www.dbh.nhs.uk,1 35369,http://www.oakfieldmedicalpractice.co.uk,1 35370,http://www.dbdrivinglessons.co.uk,1 35371,http://www.dba-som.co.uk,1 35372,http://www.daysplumbing.co.uk,1 35373,http://www.dayslane.com,1 35374,http://www.daysgarage-edenbridge.co.uk,1 35375,http://www.oakham-primary.rutland.sch.uk,1 35376,http://www.daylightcf.org,1 35377,http://www.oakleyweigh.co.uk,1 35378,http://www.daybrookmedicalpractice.co.uk,1 35379,http://www.day2dayelectricals.co.uk,1 35380,http://www.oaktreefinancialtraining.co.uk,1 35381,http://www.dawsonwealth.co.uk,1 35382,http://www.dawoodenergy.co.uk,1 35383,http://www.dawndrivingtuition.co.uk,1 35384,http://www.dawnadvice.org.uk,1 35385,http://www.davisgraham.co.uk,1 35386,http://www.davidsom.co.uk,1 35387,http://www.davidshackleton.co.uk,1 35388,http://www.oamps.co.uk,1 35389,http://www.davidosler.com,1 35390,http://www.davidlongdrivingschool.com,1 35391,http://www.oayp.org.uk,1 35392,http://www.davidatkinsonschoolofmotoring.co.uk,1 35393,http://ynysygerwncc.easysearch.org.uk,1 35394,http://www.daves-intensive.co.uk,1 35395,http://www.daves-driving.com,1 35396,http://www.daves-driving.co.uk,1 35397,http://www.oceanward.co.uk,1 35398,http://www.davehallschoolofdriving.co.uk,1 35399,http://adi39937.theorytestpro.co.uk,1 35400,http://www.davefreemandrivertraining.co.uk,1 35401,http://www.oclactive.co.uk,1 35402,http://www.davecoles.co.uk,1 35403,http://www.ocnser.org.uk,1 35404,http://www.davaarmedicalcentre.co.uk,1 35405,http://www.datachecks.co.uk,1 35406,http://www.data-websites.com,1 35407,http://www.das-englisch-forum.de,1 35408,http://www.darttraining.co.uk,1 35409,http://www.octf.gov.uk,1 35410,http://www.odacademy.co.uk,1 35411,http://www.dart.org.uk,1 35412,http://www.odpovede.sk,1 35413,http://www.darrensdrivingschool.com,1 35414,http://www.darlington.childrencentres.org,1 35415,http://www.oes-oxon.org.uk,1 35416,http://www.darg.org.uk,1 35417,http://www.darbaslondone.com,1 35418,http://www.dansintuition.co.uk,1 35419,http://www.dannymorrisplumbingandheating.co.uk,1 35420,http://www.dandjtraining.co.uk,1 35421,http://www.dancerdaycare.co.uk,1 35422,http://www.office-365.net,1 35423,http://www.office-electrics.co.uk,1 35424,http://www.damianmurrayadi.webspace.virginmedia.com,1 35425,http://www.damehannah.com,1 35426,http://www.damealiceowens.herts.sch.uk,1 35427,http://www.dame-janet-junior.kent.sch.uk,1 35428,http://www.daltonwoodlandburial.co.uk,1 35429,http://www.daleandvalleyhomes.co.uk,1 35430,http://www.office2admin.co.uk,1 35431,http://www.daisychaindaycare.co.uk,1 35432,http://www.dailystrength.org,1 35433,http://www.dailymessagesfromgod.com,1 35434,http://www.officialroyalwedding2011.org.,1 35435,http://www.dailyfueleconomytip.com,1 35436,http://www.dailydriving.co.uk,1 35437,http://www.dagenhammotors.co.uk,1 35438,http://www.dagenham-drivingschool.co.uk,1 35439,http://www.daewooclub.co.uk,1 35440,http://www.offline.canterbury.ac.uk,1 35441,http://www.dads-space.com,1 35442,http://www.offthekerbmct.co.uk,1 35443,http://www.oficinajove.cat,1 35444,http://www.oficinascomerciales.es,1 35445,http://www.ofqual.gov.uk,1 35446,http://www.dacorum-cycle-training.com,1 35447,http://www.ofwngayon.com,1 35448,http://www.ohalloransdrivingtuition.co.uk,1 35449,http://www.ohip.org.uk,1 35450,http://www.ohs.camdenproviderservices.nhs.uk,1 35451,http://www.da-bham.org,1 35452,http://www.d4multimedia.com,1 35453,http://www.d4-driving.co.uk,1 35454,http://www.d-a-d-s.co.uk,1 35455,http://adi350386.theorytestpro.co.uk,1 35456,http://www.cyps.org.uk,1 35457,http://www.oilondres.com.br,1 35458,http://www.okehamptonpeople.co.uk,1 35459,http://adi344187.theorytestpro.co.uk,1 35460,http://www.cypresscollege.edu,1 35461,http://www.cypp.luton.gov.uk,1 35462,http://www.oldclassiccar.co.uk,1 35463,http://www.olderpeopleleeds.info,1 35464,http://adi335658.theorytestpro.co.uk,1 35465,http://www.cyclingcityyork.org.uk,1 35466,http://www.cycling.bham.ac.uk,1 35467,http://adi330694.theorytestpro.co.uk,1 35468,http://www.olderpeoplewales.com,1 35469,http://www.oldmachar.co.uk,1 35470,http://www.cycleclaim.com,1 35471,http://www.oldschoolhousegarage.co.uk,1 35472,http://www.oldwokingchildrenscentre.org.uk,1 35473,http://www.cwuyouth.org,1 35474,http://www.cwu.org,1 35475,http://www.cwmbran-driving-school.co.uk,1 35476,http://www.cwj.co.uk,1 35477,http://www.olol.co.uk,1 35478,http://www.olympicholidays.com,1 35479,http://www.cwcps.blogspot.com,1 35480,http://www.omega.uk.net,1 35481,http://www.cvstendring.org.uk,1 35482,http://www.cvsnewcastle.org.uk,1 35483,http://adi325752.theorytestpro.co.uk,1 35484,http://www.cvn.uk.com,1 35485,http://www.cvmadebetter.com,1 35486,https://www.rotherham.gov.uk,1 35487,http://www.omegaowners.com,1 35488,http://www.custom-neons.co.uk,1 35489,http://www.curufc.com,1 35490,http://www.omeraccountantz.co.uk:2095,1 35491,http://www.curtishaines.co.uk,1 35492,http://www.cursurienglezaonline.blogspot.com,1 35493,http://adi291992.theorytestpro.co.uk,1 35494,http://www.currentcostgroup.com,1 35495,http://www.currentcost.com,1 35496,http://www.curnow.cornwall.sch.uk,1 35497,http://www.curacare.co.uk,1 35498,http://www.cunard.co.uk,1 35499,http://www.cumbriahealthcounts.nhs.uk,1 35500,http://www.cumbria.police.uk,1 35501,http://www.cumbria.nhs.uk,1 35502,http://www.omnibusltd.com,1 35503,http://www.onceuponatime.org.uk,1 35504,http://www.cumbria-nhw.org,1 35505,http://www.cumberland.co.uk,1 35506,http://www.culsu.co.uk,1 35507,http://www.cullompton.devon.sch.uk,1 35508,http://www.cullenfp.co.uk,1 35509,http://www.one4ruby.com,1 35510,http://www.cuddlybums.co.uk,1 35511,http://www.cuddingtonandsandiway.co.uk,1 35512,http://adi284372.theorytestpro.co.uk,1 35513,http://www.ctparenting.com,1 35514,http://www.ctjt.biz,1 35515,http://www.ctf.ca,1 35516,http://www.onefortheboysinsussex.co.uk,1 35517,http://www.onepepys.com,1 35518,http://www.cssa-nott.org.uk,1 35519,http://www.csrf.org.uk,1 35520,http://www.csp.org.uk,1 35521,http://www.csngwynedd.org,1 35522,http://adi260659.theorytestpro.co.uk,1 35523,http://adi256955.theorytestpro.co.uk,1 35524,http://www.csm-driving.com,1 35525,http://www.onetoonepersonnel.co.uk,1 35526,http://www.csgconsult.com,1 35527,http://www.csep.co.uk,1 35528,http://www.csdrivingschool.co.uk,1 35529,http://www.onevoiceict.org,1 35530,http://www.oneway-driving.co.uk,1 35531,http://www.oneway-som.co.uk,1 35532,http://www.online.sheffcol.ac.uk,1 35533,http://www.csa.caserta.bdp.it,1 35534,http://www.online3.church123.com,1 35535,http://www.cs.ox.ac.uk,1 35536,http://www.cs.man.ac.uk,1 35537,http://www.crystalski.co.uk,1 35538,http://www.onlinemastersdegree.com,1 35539,http://www.crus.ch,1 35540,http://www.ons.gov.uk:80,1 35541,http://www.onsiteinventory.com,1 35542,http://www.cruise4fun.co.uk,1 35543,http://www.crsmalvern.co.uk,1 35544,http://www.crpmb.org,1 35545,http://www.oocities.org,1 35546,http://www.croydonyouthservice.org.uk,1 35547,http://www.opalliance.org.uk,1 35548,http://www.croydonpracticaldrivingschool.co.uk,1 35549,http://www.open-field.org.uk,1 35550,http://www.croydonchoiceadvice.co.uk,1 35551,http://www.open2.net,1 35552,http://www.openbolton.co.uk,1 35553,http://www.croydon-test.org.uk,1 35554,http://www.crowy.net,1 35555,http://www.crowsnestonline.com,1 35556,http://www.crownschoolofmotoring.co.uk,1 35557,http://www.crownpractice.co.uk,1 35558,http://www.crowndriving.co.uk,1 35559,http://www.crowlane.org.uk,1 35560,http://www.crossroadsdrivingschool.co.uk,1 35561,http://www.crossleymillnursery.org.uk,1 35562,http://www.crosscountiessom.co.uk,1 35563,http://www.croquet.org.uk,1 35564,http://www.openfamilyservices.org.uk,1 35565,http://www.crondallnewsurgery.co.uk,1 35566,http://www.cromhall.com,1 35567,http://adi252079.theorytestpro.co.uk,1 35568,http://www.croftprimaryschool.org,1 35569,http://www.criticatac.ro,1 35570,http://www.openmedicine.ca,1 35571,http://www.openmoves.co.uk,1 35572,http://www.openreachloop.com,1 35573,http://adi250850.theorytestpro.co.uk,1 35574,http://www.crimlinks.com,1 35575,http://adi24940.theorytestpro.co.uk,1 35576,http://www.crij-npdc.fr,1 35577,http://www.opo.org.uk,1 35578,http://www.crgs.org.uk,1 35579,http://www.crf-pr.org.br,1 35580,http://yoda,1 35581,http://www.crestschoolofmotoring.co.uk,1 35582,http://www.cressexdaynursery.co.uk,1 35583,http://www.opportunitiesforall.org,1 35584,http://www.cremonaweb.it,1 35585,http://www.creditunion.co.uk,1 35586,http://www.credittoday.co.uk,1 35587,http://www.creditman.biz,1 35588,http://www.opsi.gov.uk,1 35589,http://www.creditcrunchexpert.co.uk,1 35590,http://www.opticar.co.uk,1 35591,http://www.credenhill-pc.org.uk,1 35592,http://www.creativetoolkit.org.uk,1 35593,http://www.creativepool.co.uk,1 35594,http://www.optimaldrivertraining.co.uk,1 35595,http://www.creationchallenge.org.uk,1 35596,http://adi243091.theorytestpro.co.uk,1 35597,http://www.creamchargers.org.uk,1 35598,http://www.crawleyhappytimes.co.uk,1 35599,http://www.optionx.biz,1 35600,http://www.optometrywales.org.uk,1 35601,http://www.crawfordsworld.com,1 35602,http://www.optua.org.uk,1 35603,http://www.craven-college.ac.uk,1 35604,http://www.crashcoursesliverpool.co.uk,1 35605,http://10.120.124.22,1 35606,http://www.oracle-uk.com,1 35607,http://www.crash-driving-courses.com,1 35608,http://www.crash-courses.com,1 35609,http://www.cranfordpropertyservices.com,1 35610,http://www.cranemedical.co.uk,1 35611,http://www.craigshill-livingston.co.uk,1 35612,http://www.crafttelly.com,1 35613,http://adi241066.theorytestpro.co.uk,1 35614,http://www.crackerjacktraining.com,1 35615,http://www.crabtreesschoolofmotoring.co.uk,1 35616,http://www.orangeschoolofmotoring.co.uk,1 35617,http://www.orangetraining.co.uk,1 35618,http://www.cpvden.com,1 35619,http://www.orbitaverde.com,1 35620,http://www.cprsp.gov.uk,1 35621,http://www.cpracc1.plus.com,1 35622,http://www.cpollarddrivingschool.co.uk,1 35623,http://www.orbitfirststep.org.uk,1 35624,http://www.cpltraining.co.uk,1 35625,http://www.cpec.nus.edu.sg,1 35626,http://www.cpalc.org.uk,1 35627,http://www.cpag.co.uk,1 35628,http://www.cpa.org.cy,1 35629,http://www.cpa.gov.tw,1 35630,http://www.cozonac.co.uk,1 35631,http://www.orestonprimary.com,1 35632,http://www.cowleyroadgarage.co.uk,1 35633,http://www.cowbridgedoctors.com,1 35634,http://www.oriel.w-sussex.sch.uk,1 35635,http://www.origincare.com,1 35636,http://www.covwarkpt.nhs.uk,1 35637,http://www.coves.org.uk,1 35638,http://www.coversure-test.info,1 35639,http://www.covers.biz,1 35640,http://www.coveritlive.com,1 35641,http://www.coventrytelegraph.net,1 35642,http://www.coventrycyrenians.co.uk,1 35643,http://www.coventrycarers.org.uk,1 35644,http://www.originhousing.org.uk,1 35645,http://www.coventry-driving-school.co.uk,1 35646,http://www.originsales.co.uk,1 35647,http://adi240378.theorytestpro.co.uk,1 35648,http://www.courtneylang.com,1 35649,http://www.courtinnovation.org,1 35650,http://www.orihuela-costa.info,1 35651,http://www.orleanspark.richmond.sch.uk,1 35652,http://www.courses4forces.co.uk,1 35653,http://www.courses-careers.com,1 35654,http://www.countywideinstructortraining.co.uk,1 35655,http://www.countywide-hampshire.co.uk,1 35656,http://www.countydurhamfamilies.info,1 35657,http://www.county-safety-services.com,1 35658,http://www.countryreports.org,1 35659,http://adi239478.theorytestpro.co.uk,1 35660,http://adi23640.theorytestpro.co.uk,1 35661,http://www.country-funerals.co.uk,1 35662,http://www.country-couples.co.uk,1 35663,http://www.countersearch.com,1 35664,http://adi234936.theorytestpro.co.uk,1 35665,http://www.councillorsupport.bedford.gov.uk,1 35666,http://www.cotswood-doors.co.uk,1 35667,http://www.cotswoldplumbers.co.uk,1 35668,http://www.cotswolder.com,1 35669,http://www.orthostatictremor.co.uk,1 35670,http://www.osadvertiser.co.uk,1 35671,http://www.cotlygarage.co.uk,1 35672,http://www.cotenend.warwickshire.sch.uk,1 35673,http://www.cot.co.uk,1 35674,http://www.costesseycluster.nsix.org.uk,1 35675,http://www.costadelparadise.co.uk,1 35676,http://www.oshsltd.co.uk,1 35677,http://www.osidgemedical.co.uk,1 35678,http://adi23383.theorytestpro.co.uk,1 35679,http://www.corteconti.it,1 35680,http://www.corsit.com,1 35681,http://www.osmastonschool.com,1 35682,http://www.corrwillbourn.com,1 35683,http://yog.easysearch.org.uk,1 35684,http://www.ossett.wakefield.sch.uk,1 35685,http://www.corporatedrivermanagement.co.uk,1 35686,http://www.corporatealliancenetwork.com,1 35687,http://www.corp-webmail.com,1 35688,http://www.cornwallworks.org.uk,1 35689,http://www.cornwallstudents.org,1 35690,http://adi233120.theorytestpro.co.uk,1 35691,http://www.cornwallartists.org,1 35692,http://www.cornwallandislesofscilly.nhs.uk,1 35693,http://www.ossiesdrivingschool.co.uk,1 35694,http://www.cornwall-acl.ac.uk,1 35695,http://www.ostrowiecnr1.pl,1 35696,http://www.cornhilldirect.co.uk,1 35697,http://www.coris-uk.co.uk,1 35698,http://www.corinthianprimary.org.uk,1 35699,http://www.corfe-hills.dorset.sch.uk,1 35700,http://www.cordenconstruction.co.uk,1 35701,http://www.corbytyres.co.uk,1 35702,http://www.ota.fia.com,1 35703,http://www.coralspringshighstudentunionfordisabilityawareness.com,1 35704,http://www.coralis-childcare.co.uk,1 35705,http://www.copyscape.com,1 35706,http://www.copperwiki.org,1 35707,http://www.copley.doncaster.sch.uk,1 35708,http://www.otherwise-engaged.org.uk,1 35709,http://www.copal.org.uk,1 35710,http://www.otleycollege.ac.uk,1 35711,http://adi233063.theorytestpro.co.uk,1 35712,http://www.coolminiornot.com,1 35713,http://www.cooldrive.co.uk,1 35714,http://www.ottawaexpress.net,1 35715,http://www.cookham.com,1 35716,http://www.cookesheating.co.uk,1 35717,http://www.oundle.gov.uk,1 35718,http://www.ounsdale.staffs.sch.uk,1 35719,http://www.convey2day.com,1 35720,http://www.conventiondundeeandangus.co.uk,1 35721,http://www.controlledpractice.co.uk,1 35722,http://www.contractoruk.com,1 35723,http://adi232850.theorytestpro.co.uk,1 35724,http://www.contractoradvisor.co.uk,1 35725,http://www.oup.com:80,1 35726,http://www.contourhousing.co.uk,1 35727,http://www.ourclimateischanging.com,1 35728,http://www.contentweb.co.uk,1 35729,http://www.ourdocs.co.uk,1 35730,http://www.contactsfrancophones.com,1 35731,http://www.ourlady-st-werburghs.staffs.sch.uk,1 35732,http://www.contact-associates.co.uk,1 35733,http://www.consumingexperience.com,1 35734,http://www.ourlady.bexley.sch.uk,1 35735,http://www.ourladys-jun.northants.sch.uk,1 35736,http://www.ourladystarofthesea.lancs.sch.uk,1 35737,http://www.outandaboutdrivertraining.co.uk,1 35738,http://www.outdooraccess-scotland.com,1 35739,http://www.outdoorplasticfurniture.co.uk,1 35740,http://www.constructiontrainingservices.co.uk,1 35741,http://adi230965.theorytestpro.co.uk,1 35742,http://www.outdoorswest.org.uk,1 35743,http://www.outeverywhere.com,1 35744,http://www.outofschoolalliance.co.uk,1 35745,http://www.conscious.co.uk,1 35746,http://adi226799.theorytestpro.co.uk,1 35747,http://www.over50choices.co.uk,1 35748,http://adi223750.theorytestpro.co.uk,1 35749,http://www.overseastrainedteachers.org.uk,1 35750,http://www.overstone-wing.bucks.sch.uk,1 35751,http://www.overtongrange.sutton.sch.uk,1 35752,http://www.ovta.or.jp,1 35753,http://www.owltutors.co.uk,1 35754,http://www.ownvehicle.askmid.com,1 35755,http://adi220138.theorytestpro.co.uk,1 35756,http://www.connexions-rochdale.org.uk,1 35757,http://www.oxford-college.de,1 35758,http://www.oxford.anglican.org,1 35759,http://www.connexions-hertfordshire.co.uk,1 35760,http://www.oxforddeanery.nhs.uk,1 35761,http://www.oxforde-learning.com,1 35762,http://www.oxfordmontessori.co.uk,1 35763,http://www.oxonbe.co.uk,1 35764,http://www.oxoniantravel.co.uk,1 35765,http://www.connevans.com,1 35766,http://www.oyezforms.co.uk,1 35767,http://www.connect.facebook.com,1 35768,http://www.connaughtjuniorbagshot.com,1 35769,http://www.confidencesom.co.uk,1 35770,http://www.confidence-driving.com,1 35771,http://www.confidence-driving-school.co.uk,1 35772,http://www.ozzu.com,1 35773,http://www.p2pmp.co.uk,1 35774,http://www.conference-av.co.uk,1 35775,http://www.confederationc.on.ca,1 35776,http://www.p45news.co.uk,1 35777,http://www.concordmobility.co.uk,1 35778,http://www.concessionarytravel.com,1 35779,http://www.conceptnorthern.co.uk,1 35780,http://www.comunitatea.co.uk,1 35781,http://www.comune.jesi.an.it,1 35782,http://www.comu.govt.nz,1 35783,http://www.computing.dundee.ac.uk,1 35784,http://www.computing.co.uk,1 35785,http://www.pa-assist.com,1 35786,http://www.computerquoteinsurance.com,1 35787,http://www.computermechanics.com.au,1 35788,http://www.pa55withmrp.co.uk,1 35789,http://www.compliance.fta.co.uk,1 35790,http://www.completelyfreedating.co.uk,1 35791,http://www.paddedshorts.co.uk,1 35792,http://www.completeformations.co.uk,1 35793,http://www.completebusinessstartup.co.uk,1 35794,http://www.complete-driver.co.uk,1 35795,http://www.complaintsweb.info,1 35796,http://www.compassnursery.co.uk,1 35797,http://www.compassionindying.org.uk,1 35798,http://www.compareuniversitydata.com,1 35799,http://www.paddingtonpreschools.co.uk,1 35800,http://www.comparecontracthire.com,1 35801,http://www.padgatedriving.co.uk,1 35802,http://www.compareapplications.co.uk,1 35803,http://www.company-registry.com,1 35804,http://www.companioncycling.org.uk,1 35805,http://www.companieshouse.co.uk,1 35806,http://www.companies-house.gov.uk,1 35807,http://www.paf.co.uk,1 35808,http://www.communiversity.co.uk,1 35809,http://www.communitytechnology.org.uk,1 35810,http://www.communityplanning.net,1 35811,http://www.communitypartnership.org.uk,1 35812,http://www.communityni.org,1 35813,http://www.communityjusticecenter.org,1 35814,http://www.paidtoshop.co.uk,1 35815,http://www.communityha.org.uk,1 35816,http://www.pailtonparishcouncil.co.uk,1 35817,http://www.painterspitstop.com,1 35818,http://www.community-toolbox.org,1 35819,http://www.community-organization-fundraising.com,1 35820,http://www.communitiesscotland.gov.uk,1 35821,http://www.communities.gov.uk:80,1 35822,http://www.pakchamber.com,1 35823,http://www.communicationmatters.org.uk,1 35824,http://www.commissioningforeyecare.org.uk,1 35825,http://www.commercialelectricity.co.uk,1 35826,http://www.comercioexterior.ub.es,1 35827,http://www.pakistanadoption.com,1 35828,http://www.combom.co.uk,1 35829,http://www.palmislandresortgrenadines.com,1 35830,http://www.comberenterprises.co.uk,1 35831,http://www.combepc.org,1 35832,http://www.colytongrammar.devon.sch.uk,1 35833,http://www.columbus.essex.sch.uk,1 35834,http://www.colne.essex.sch.uk,1 35835,http://www.collingwoodprimaryschool.ik.org,1 35836,http://www.collingwoodcollege.com,1 35837,http://www.collinghamschool.com,1 35838,http://www.colley.dudley.sch.uk,1 35839,http://www.collegetowninfantschool.com,1 35840,http://www.collegesinsuffolk.co.uk,1 35841,http://www.pampers.co.uk,1 35842,http://www.pandia.com,1 35843,http://www.colleensschoolofmotoring.com,1 35844,http://www.colhammanorprimary.com,1 35845,http://www.colgate.w-sussex.sch.uk,1 35846,http://adi213395.theorytestpro.co.uk,1 35847,http://www.pannone.com,1 35848,http://www.coles.ic24.net,1 35849,http://www.colemandrivertraining.co.uk,1 35850,http://www.coleman.leicester.sch.uk,1 35851,http://www.colejarman.com,1 35852,http://www.coleg.org.uk,1 35853,http://www.coleccionesmilitares.com,1 35854,http://www.colebrookinfants.co.uk,1 35855,http://adi206441.theorytestpro.co.uk,1 35856,http://www.coldencommon.hants.sch.uk,1 35857,http://www.colchesterttc.org.uk,1 35858,http://www.papworth.org.uk,1 35859,http://www.colanddistdia.btck.co.uk,1 35860,http://www.paradigmhousing.co.uk,1 35861,http://www.cofeguildford.org.uk,1 35862,http://www.codiesrecovery.co.uk,1 35863,http://www.codeblog.co.uk,1 35864,http://www.cocopalmdhunikolhu.co.uk,1 35865,http://www.cocollaborative.org.uk,1 35866,http://www.coch.nhs.uk,1 35867,http://www.cobweb.org.uk,1 35868,http://www.cobdes.co.uk,1 35869,http://www.cobalthousing.org.uk,1 35870,http://www.coatesway.herts.sch.uk,1 35871,http://www.coates.lancsngfl.ac.uk,1 35872,http://www.coastmotorcycletraining.com,1 35873,http://www.coastinsurance.co.uk,1 35874,http://www.coastalliving.net,1 35875,http://www.coastalchildrenscentres.org.uk,1 35876,http://adi204219.theorytestpro.co.uk,1 35877,http://www.coact.org.uk,1 35878,http://www.coachdriverforum.co.uk,1 35879,http://adi202822.theorytestpro.co.uk,1 35880,http://www.co-operativetm.co.uk,1 35881,http://www.paragontax.info,1 35882,http://www.paranaguapilots.com.br,1 35883,http://www.cnxsnfk.co.uk,1 35884,http://www.paranannies.co.uk,1 35885,http://www.cninuk.org,1 35886,http://www.cnda.co.uk,1 35887,http://www.cms.rdg.ac.uk,1 35888,http://www.parentcustodyblog.com,1 35889,http://www.parentpartnership-shropshireandtelford.org.uk,1 35890,http://www.cmk-medicalcentre.co.uk,1 35891,http://www.parents.gr,1 35892,http://www.clydesdalecab.org.uk,1 35893,http://www.parentsactive.org.uk,1 35894,http://adi198971.theorytestpro.co.uk,1 35895,http://www.parentvoice.info,1 35896,http://www.parfittcresswell.com,1 35897,http://www.parishchurch.leatherheadweb.org.uk,1 35898,http://www.clubjourneyman.com,1 35899,http://www.park-way.kent.sch.uk,1 35900,http://www.parkdale.notts.sch.uk,1 35901,http://www.clubcalibra.com,1 35902,http://www.club323f.com,1 35903,http://www.club1007.net,1 35904,http://www.club.triumph.org.uk,1 35905,http://www.parkdaynursery.co.uk,1 35906,http://www.cloughhall.staffs.sch.uk,1 35907,http://www.cloudtronix.co.uk,1 35908,http://www.cloud-powered.com,1 35909,http://adi197356.theorytestpro.co.uk,1 35910,http://www.closeit.co.uk,1 35911,http://www.cllsupport.org.uk,1 35912,http://www.cliverton.co.uk,1 35913,http://www.clivegardnerdrivingschool.co.uk,1 35914,http://www.cliowilliams.co.uk,1 35915,http://www.parkersdrivertraining.co.uk,1 35916,http://www.climatechangeandyourhome.org.uk,1 35917,http://www.cliftonsofm.co.uk,1 35918,http://www.cliftonschoolofmotoring.co.uk,1 35919,http://adi192765.theorytestpro.co.uk,1 35920,http://www.cliffordthomas-som.co.uk,1 35921,http://www.clients.tangledfrog.com,1 35922,http://10.12.49.15:9080,1 35923,http://www.clicsargent.org.uk,1 35924,http://www.clicreports.uwclub.net,1 35925,http://www.parkhomeownersclub.co.uk,1 35926,http://www.parkhomesforum.co.uk,1 35927,http://www.clicklancashire.com,1 35928,http://www.parkingappeals.co.uk,1 35929,http://www.parkinsurance.co.uk,1 35930,http://www.clickdocs.co.uk,1 35931,http://www.clickandfix.co.uk,1 35932,http://www.parklane-is.com,1 35933,http://www.clevercubs.com,1 35934,http://www.parklanesurgeryallestree.co.uk,1 35935,http://www.clevehouseschool.com,1 35936,http://www.clevedon.gov.uk,1 35937,http://www.parkmedical.nhs.uk,1 35938,http://www.clearviewdrivingschool.co.uk,1 35939,http://www.clearbury.childrencentre.org,1 35940,http://www.cleanrooms-ireland.ie,1 35941,http://www.cleanmpg.com,1 35942,http://www.parkriteschoolofmotoring.co.uk,1 35943,http://www.clc2.uniservity.com,1 35944,http://www.claudiabeamish.com,1 35945,http://www.classicmotorcycleforum.com,1 35946,http://www.classicfunerals.co.uk,1 35947,http://www.classiccarinsurance.org.uk,1 35948,http://www.clarolearning.com,1 35949,http://www.clarkmotorchoice.co.uk,1 35950,http://www.clarkesdrivingschool.com,1 35951,http://www.clarityenglish.com,1 35952,http://www.parkthatbike.com,1 35953,http://www.clanmacmillan.org,1 35954,http://www.clan-macpherson.org,1 35955,http://www.claimspecialistgroup.com,1 35956,http://www.claims4u.com,1 35957,http://www.parkview-surgery.co.uk,1 35958,http://www.parlettkent.co.uk,1 35959,http://www.clacks.gov.uk,1 35960,http://www.cla.org.uk,1 35961,http://www.parsonsheath.co.uk,1 35962,http://www.ckhsnet.net,1 35963,http://www.ckdrive.co.uk,1 35964,http://www.cjrecruitment.co.uk,1 35965,http://www.partnersinplay.org.uk,1 35966,http://www.cjajobs.com,1 35967,http://www.ciw.ca,1 35968,http://www.partydomain.co.uk,1 35969,http://www.partywallsurveyors.co.uk,1 35970,http://www.paspecialists.co.uk,1 35971,http://www.pass-test.co.uk,1 35972,http://www.pass-with-lee.co.uk,1 35973,http://www.pass-with-pete.co.uk,1 35974,http://www.citywebstudio.com,1 35975,http://www.citywaterside.stoke.gov.uk,1 35976,http://www.cityviewmedical.co.uk,1 35977,http://adi189850.theorytestpro.co.uk,1 35978,http://www.citysave.org.uk,1 35979,http://www.pass2passplus.co.uk,1 35980,http://www.pass4fun.co.uk,1 35981,http://www.pass4sure.org.uk,1 35982,http://www.passeasy.co.uk,1 35983,http://www.passedease.co.uk,1 35984,http://www.passexpress.co.uk,1 35985,http://www.citylit.ac.uk,1 35986,https://www.taxdisc.direct.gov.uk/EvlPortalApp/app/enquiry,1 35987,http://www.passfastdrivingschool.co.uk,1 35988,http://www.passhgv.co.uk,1 35989,http://www.cityandeaton.childrencentre.org,1 35990,http://www.passiton-sen.co.uk,1 35991,http://www.passitondrivingschool.com,1 35992,http://www.passitwithlisa.co.uk,1 35993,http://www.citizenshipfoundation.org.uk,1 35994,http://www.citizensforsanctuary.org.uk,1 35995,http://www.citizensadvicenpt.org,1 35996,http://www.passlane.co.uk,1 35997,http://www.citized.info,1 35998,http://www.citehr.com,1 35999,http://www.cirenuk.trw.com,1 36000,http://www.passmarx.com,1 36001,http://adi183112.theorytestpro.co.uk,1 36002,http://www.ciphe.org.uk,1 36003,http://www.cinder.co.za,1 36004,http://www.cimt.plymouth.ac.uk,1 36005,http://www.cimedoc.uniba.it,1 36006,http://www.cimcitymentor.co.uk,1 36007,http://www.cilk.org.uk,1 36008,http://www.passndrive.co.uk,1 36009,http://www.cila.co.uk,1 36010,http://www.cife.org.uk,1 36011,http://www.ciencars.com,1 36012,http://www.passnplus.co.uk,1 36013,http://www.cices.org,1 36014,http://www.passplus123.co.uk,1 36015,http://www.chyps.org.uk,1 36016,http://www.churchtown.org.uk,1 36017,http://www.churchstreetsurgery.co.uk,1 36018,http://www.churchinwales.org.uk,1 36019,http://adi175696.theorytestpro.co.uk,1 36020,http://www.churchgatesurgery.co.uk,1 36021,http://www.churchfieldssurgery.co.uk,1 36022,http://www.churches-together.net,1 36023,http://www.churcherscollege.com,1 36024,http://www.church-co.com,1 36025,http://www.passports-information.co.uk,1 36026,http://www.passportvisa.org,1 36027,http://www.chronicfatiguesyndrome.me.uk,1 36028,http://www.chriswillsdrivingschool.co.uk,1 36029,http://www.passudriving.co.uk,1 36030,http://www.passwheelz.co.uk,1 36031,http://www.christinesds.t15.org,1 36032,http://www.passwithalison.co.uk,1 36033,http://www.christiescare.com,1 36034,http://www.passwithconfidence.co.uk,1 36035,http://adi174117.theorytestpro.co.uk,1 36036,http://www.christaylor-adi.com,1 36037,http://www.passwithemma.co.uk,1 36038,http://adi17354.theorytestpro.co.uk,1 36039,http://www.passwithflyingcolours.com,1 36040,http://www.chrisgriffindrivingschool.co.uk,1 36041,http://www.passwithjenni.co.uk,1 36042,http://www.chp.org.uk,1 36043,http://www.passwithkeith.co.uk,1 36044,http://www.passwithme.co.uk,1 36045,http://www.choosemysupport.org.uk,1 36046,http://adi17195.theorytestpro.co.uk,1 36047,http://www.chooseachallenge.com,1 36048,http://www.choiceslondon.com,1 36049,http://www.choicesandrights.org.uk,1 36050,http://www.choiceestates.co.uk,1 36051,http://www.passwithme.com,1 36052,http://www.choice-fm.co.uk,1 36053,http://www.chjs.net,1 36054,http://www.chiva.org.uk,1 36055,http://www.passwithmike.com,1 36056,http://www.chiswickschoolofmotoring.co.uk,1 36057,http://www.passwithpatchett.co.uk,1 36058,http://www.chineseop.com,1 36059,http://yogatherapymatters.com,1 36060,http://www.chilternrailways.co.uk,1 36061,http://www.chilternlearners.co.uk,1 36062,http://www.passwithpurdys.co.uk,1 36063,http://www.childwallsc.co.uk,1 36064,http://www.childwallce.co.uk,1 36065,http://www.childrensworkforcematters.org.uk,1 36066,http://www.passwithtimrymell.co.uk,1 36067,http://www.childrenscentres.org.uk,1 36068,http://www.childrenneedfamilies.co.uk,1 36069,http://www.childrenfirst.nhs.uk,1 36070,http://www.childrenboosterseats.com,1 36071,http://www.childrenandyouth.org.uk,1 36072,http://www.passwithus.com,1 36073,http://www.passyou.co.uk,1 36074,http://www.passyourtestbournemouth.co.uk,1 36075,http://www.pastest.co.uk,1 36076,http://www.childhope.org.uk,1 36077,http://www.childgrowthfoundation.org,1 36078,http://www.child-seats.co.uk,1 36079,http://www.child-safe.org.uk,1 36080,http://www.child-development-guide.com,1 36081,http://www.chifra.org,1 36082,http://www.chiff.com,1 36083,http://www.pastymuncher.co.uk,1 36084,http://www.patana.ac.th,1 36085,http://www.patchampreschool.co.uk,1 36086,http://www.chevronmotor.co.uk,1 36087,http://www.chevening.kent.sch.uk,1 36088,http://adi161560.theorytestpro.co.uk,1 36089,http://www.chestersu.com,1 36090,http://www.chesterfieldforum.net,1 36091,http://www.patriciaross.co.uk,1 36092,http://www.patrickwjordan.com,1 36093,http://adi158231.theorytestpro.co.uk,1 36094,http://www.chessdrivers.co.uk,1 36095,http://www.pattaya-addicts.com,1 36096,http://www.cheshirepensionfund.org,1 36097,http://www.patterdalelodge.nhs.uk,1 36098,http://www.paul-williams-som.co.uk,1 36099,http://www.paulberrydrivertraining.co.uk,1 36100,http://www.cheshireautomatictuition.co.uk,1 36101,http://www.cheshire.police.uk,1 36102,http://www.cheshambois.parishcouncil.net.,1 36103,http://www.paulevansandco.co.uk,1 36104,http://www.paulfounddriving.co.uk,1 36105,http://www.cherubsdaynursery.co.uk,1 36106,http://www.cherrysmot.com,1 36107,http://www.cherrygardenprimary.co.uk,1 36108,http://www.cherryfold.lancsngfl.ac.uk,1 36109,http://www.cherrycars.co.uk,1 36110,http://www.paulgriffithsdrivingschool.co.uk,1 36111,http://www.chemlabs.bris.ac.uk,1 36112,http://www.cheltglos.co.uk,1 36113,http://www.cheltenhamlearning.co.uk,1 36114,http://www.cheltenhamcars.co.uk,1 36115,http://www.pauljking.com,1 36116,http://www.chelseastaffbureau.com,1 36117,http://www.paulmcg.com,1 36118,http://www.chelmsford-drivinglessons.co.uk,1 36119,http://www.cheesekid.co.uk,1 36120,http://www.checkcardata.co.uk,1 36121,http://www.checkatrade.com,1 36122,http://www.cheaplivinguk.co.uk,1 36123,http://www.cheapgasandelectricity4u.co.uk,1 36124,http://adi150656.theorytestpro.co.uk,1 36125,http://www.cheapairportparking.org,1 36126,http://www.cheap-weekend-breaks.com,1 36127,http://www.cheap-holidays-compared.co.uk,1 36128,http://www.cheap-credit-cards.org,1 36129,http://www.cheap-car-insurance-britain.co.uk,1 36130,http://www.chd-ni.co.uk,1 36131,http://www.chawtonhousesurgery.co.uk,1 36132,http://www.chavspace.com,1 36133,http://adi149648.theorytestpro.co.uk,1 36134,http://www.paulsalmonsdrivertraining.co.uk,1 36135,http://www.chaucer.lancsngfl.ac.uk,1 36136,http://www.chatsworthinfantschool.com,1 36137,http://www.chathamhouse.org,1 36138,http://www.chat-scene.com,1 36139,http://www.chastheboat.co.uk,1 36140,http://adi148514.theorytestpro.co.uk,1 36141,http://www.paulshillaw.co.uk,1 36142,http://www.paulthedrivinginstructor.co.uk,1 36143,http://www.charnwoodcab.org.uk,1 36144,http://www.charltondriving.com,1 36145,http://www.payday-loan-provision.co.uk,1 36146,http://www.paydaybank.co.uk,1 36147,http://www.charitychallenge.com,1 36148,http://www.charity-fundraising.org.uk,1 36149,http://www.paydaybritain.co.uk,1 36150,http://www.chard.co.uk,1 36151,http://www.chapelendinfants.com,1 36152,http://www.chapelallertonprimary.co.uk,1 36153,http://www.chantellesdrivingschool.co.uk,1 36154,http://www.channelviewmedicalpractice.com,1 36155,http://www.pbsm.org.uk,1 36156,http://www.channelfostercare.com,1 36157,http://www.pcc.nhs.uk,1 36158,http://www.changingfaces.org.uk,1 36159,http://www.changing-places.org,1 36160,http://www.changepeople.co.uk,1 36161,http://www.change.freeuk.com,1 36162,http://www.chandradriving.co.uk,1 36163,http://adi138825.theorytestpro.co.uk,1 36164,http://www.champain.co.uk,1 36165,http://adi137014.theorytestpro.co.uk,1 36166,http://adi135061.theorytestpro.co.uk,1 36167,http://www.chakkarapani.com,1 36168,http://www.chadwicknott.co.uk,1 36169,http://www.pcihosting.co.uk:2095,1 36170,http://www.chace.ac.uk,1 36171,http://www.cgwilliams.co.uk,1 36172,http://www.cgfamilylaw.co.uk,1 36173,http://www.pcwerth.co.uk,1 36174,http://www.cfoi.org.uk,1 36175,http://www.cflhumber.org.uk,1 36176,http://adi127092.theorytestpro.co.uk,1 36177,http://www.pdfgeni.com,1 36178,http://www.cfa-solutions.net,1 36179,http://www.cf.bbc.co.uk,1 36180,http://www.pdkadsum.co.uk,1 36181,http://www.cestaffing.co.uk,1 36182,http://www.pdmtc.co.uk,1 36183,http://www.ceridian.co.uk,1 36184,http://www.pds-drivertraining.co.uk:2095,1 36185,http://www.pdstraining.co.uk,1 36186,http://www.peabody.org.uk,1 36187,http://www.peafieldlane.notts.sch.uk,1 36188,http://www.peakdistrict.gov.uk,1 36189,http://www.pearltrees.com,1 36190,http://www.centrohumboldt.com,1 36191,http://www.centricasavingsplan.com,1 36192,http://www.centreformentalhealth.org.uk,1 36193,http://www.centraltogether.org.uk,1 36194,http://www.centraltax.co.uk,1 36195,http://www.pearsonbcs.co.uk,1 36196,http://www.pearsonferrier.co.uk,1 36197,http://www.centralheatingrochdale.com,1 36198,http://www.centralgas.co.uk,1 36199,http://www.pearsonsdrivingschool.co.uk,1 36200,http://www.centraldrivingschool.net,1 36201,http://www.peartaccessramps.co.uk,1 36202,http://www.pebblepad.co.uk,1 36203,http://www.centaurcollege.com,1 36204,http://www.pedalsbiz.pwp.blueyonder.co.uk,1 36205,http://www.celticschoolofmotoring.co.uk,1 36206,http://www.peer.uk.com,1 36207,http://www.pegasusbiketraining.co.uk,1 36208,http://www.celiaalliance.com,1 36209,http://www.ceimh.bham.ac.uk,1 36210,http://www.ceiba-renewables.co.uk,1 36211,http://www.cegedimgroupukpension.co.uk,1 36212,http://www.ceforum.co.uk,1 36213,http://www.ceb.cam.ac.uk,1 36214,http://www.pegley.net,1 36215,http://www.cdp.org.uk,1 36216,http://www.pelican-customerclub.com,1 36217,http://adi125721.theorytestpro.co.uk,1 36218,http://www.pelicanschoolofmotoring.co.uk,1 36219,http://www.cdandcs.com,1 36220,http://www.cda-devon.co.uk,1 36221,http://www.pembrokeshireyouthzone.co.uk,1 36222,http://www.ccta.co.uk,1 36223,http://www.ccskills.org.uk,1 36224,http://www.ccpas.co.uk,1 36225,http://www.penair.cornwall.sch.uk,1 36226,http://adi124841.theorytestpro.co.uk,1 36227,http://www.penfo.co.kr,1 36228,http://www.ccet.co.uk,1 36229,http://www.penmaenmawr-watch.co.uk,1 36230,http://www.pennmanor.info,1 36231,http://www.ccajobs.com,1 36232,http://www.ccad.ac.uk,1 36233,http://www.cbwchina.com,1 36234,http://www.cbtwarrington.co.uk,1 36235,http://www.cbtvillage.co.uk,1 36236,http://www.cbtsuk.org,1 36237,http://adi124329.theorytestpro.co.uk,1 36238,http://www.pennyauctionwatch.com,1 36239,http://www.cbt-das.com,1 36240,http://www.cbsm.co.uk,1 36241,http://www.pensford.bathnes.sch.uk,1 36242,http://www.cbmdrivingschool.co.uk,1 36243,http://www.cbforumas.lt,1 36244,http://www.pension-parity-uk.com,1 36245,http://www.cavendishdrivingschool.co.uk,1 36246,http://www.cavellnursestrust.org,1 36247,http://www.cave-fhs.org.uk,1 36248,http://www.cause4opinion.co.uk,1 36249,http://www.catie.org.uk,1 36250,http://www.pensiondepartment.co.uk,1 36251,http://www.catholicnurses.org.uk,1 36252,http://www.catherinesdrivingschool.com,1 36253,http://www.catfishclient3.co.uk,1 36254,http://www.cateringtalent.com,1 36255,http://www.pensionrights.org,1 36256,http://www.catengineeringrecruitment.co.uk,1 36257,http://www.catch-22.org.uk,1 36258,http://www.catalyst.org,1 36259,http://www.castlestreetsurgeryluton.co.uk,1 36260,http://www.castlestreetsurgery.co.uk,1 36261,http://www.castlereagh.gov.uk,1 36262,http://www.pensions.gov.uk.,1 36263,http://www.castlemeadmedicalcentre.co.uk,1 36264,http://www.castlehomesderby.co.uk,1 36265,http://www.castlehomecare.co.uk,1 36266,http://www.pensions.philips.co.uk,1 36267,http://www.castledriving.com,1 36268,http://www.castlecomfortstairlifts.com,1 36269,http://www.castlechurchprimary.co.uk,1 36270,http://www.castlecampsschool.co.uk,1 36271,http://www.pensionsadviceservice.co.uk,1 36272,http://www.castle-field.org.uk,1 36273,http://www.castle-estates.co.uk,1 36274,http://www.pensionservice.gov.uk.,1 36275,http://www.pensionsworld.co.uk,1 36276,http://www.pensiynau.gov.uk,1 36277,http://www.cashstor.com,1 36278,http://www.people4business.com,1 36279,http://www.peoplescars.co.uk,1 36280,http://www.carzcrazy.com,1 36281,http://www.cartwrightaccountants.co.uk,1 36282,http://www.peoplesearchpro.com,1 36283,http://www.cartrekking.co.uk,1 36284,http://www.pep.pt,1 36285,http://www.cartersca.co.uk,1 36286,http://www.pepipoo.com,1 36287,http://www.carswell.oxon.sch.uk,1 36288,http://yogis.theorytestpro.co.uk,1 36289,http://www.carservicingliphook.com,1 36290,http://www.pepper-and-salt.co.uk,1 36291,http://www.perfectbusinesssolutions.co.uk,1 36292,http://www.cars.co.uk,1 36293,http://www.carrgreenschool.org.uk,1 36294,http://www.carrentals.co.uk,1 36295,http://www.perhac.com,1 36296,http://www.carpfun.co.uk,1 36297,http://www.carolsdrivingtuition.co.uk,1 36298,http://www.periscopepost.com,1 36299,http://www.periyarpura.org,1 36300,http://www.carnforthtowncouncil.org.uk,1 36301,http://www.carnegiecollege.ac.uk,1 36302,http://www.perkysds.co.uk,1 36303,http://www.perkz.com,1 36304,http://www.carltoncolvilleservicestation.co.uk,1 36305,http://adi115318.theorytestpro.co.uk,1 36306,http://www.carlos.or.tv,1 36307,http://www.carlislehousing.co.uk,1 36308,http://www.carlislecab.co.uk,1 36309,http://www.permittestpractice.com,1 36310,http://www.perry-huntingdonshire.org.uk,1 36311,http://www.carlisle-driving-lessons.co.uk,1 36312,http://www.perrys-recycling.co.uk,1 36313,http://www.personal-assistant-tips.com,1 36314,http://www.carinsurance.com,1 36315,http://www.carfortoday.com,1 36316,http://www.personalcvwriting.co.uk,1 36317,http://www.carersuk.imago3.com,1 36318,http://www.carerssupport.org.uk,1 36319,http://www.carersmiltonkeynes.org,1 36320,http://www.personaltouchdebtsolutions.co.uk,1 36321,http://www.carersgloucestershire.org.uk,1 36322,http://www.carerschoice.com,1 36323,http://www.perspektywy.pl,1 36324,http://www.carers.org.uk,1 36325,http://www.carers.bradford.nhs.uk,1 36326,http://www.carers-doverdistrict.org,1 36327,http://www.carerisk.co.uk,1 36328,http://www.perthcab.org.uk,1 36329,http://www.perthpoms.com,1 36330,http://www.carehomesguide.com,1 36331,http://adi112376.theorytestpro.co.uk,1 36332,http://www.carefromhome.co.uk,1 36333,http://www.careervisa.co.uk,1 36334,http://www.careertrotter.eu,1 36335,http://www.pet-owners.co.uk,1 36336,http://www.careersyandh.co.uk,1 36337,http://www.pet.cam.ac.uk,1 36338,http://www.careerstop4u.com,1 36339,http://www.careerstagged.co.uk,1 36340,http://www.petalia.org,1 36341,http://www.petebartondrivingschool.com,1 36342,http://www.peter-chappell.co.uk,1 36343,http://www.peterboras.net,1 36344,http://www.peterborough.nhs.uk,1 36345,http://www.peterboroughcab.org.uk,1 36346,http://www.peterboroughfamilymediation.co.uk,1 36347,http://www.careers.gg,1 36348,http://www.peterdowd.co.uk,1 36349,http://www.peterearle.co.uk,1 36350,http://www.careers-service.org.uk,1 36351,http://www.careers-gateway.co.uk,1 36352,http://www.careernet.re.kr,1 36353,http://www.careerfinder.co.uk,1 36354,http://www.peterhamiltondrivingschool.co.uk,1 36355,http://www.peterharman-som.co.uk,1 36356,http://www.career.go.kr,1 36357,http://www.career-connect.co.uk,1 36358,http://www.caredirections.co.uk,1 36359,http://www.careathomeservices.co.uk,1 36360,http://www.careathomeltd.co.uk,1 36361,http://www.careandrepair-england.org.uk,1 36362,http://www.care-plus.org.uk,1 36363,http://www.care-in-the-community.com,1 36364,http://www.care-4-you.org,1 36365,http://www.cardiomyopathy.org,1 36366,http://www.petermusgravefd.co.uk,1 36367,http://www.peterstreetsurgery.com,1 36368,http://www.peterwilletts.co.uk,1 36369,http://www.peteryeung.co.uk,1 36370,http://www.peteshaw.co.uk,1 36371,http://www.carbycare.com,1 36372,http://www.carbonspecialreserve.com,1 36373,http://www.peugeot-klub.pl,1 36374,http://www.carbonindependent.org,1 36375,http://www.peugeot-klubas.lt,1 36376,http://www.carbasics.co.uk,1 36377,http://www.peugeotdirectleasing.com,1 36378,http://www.caravantourer.co.uk,1 36379,http://www.pfalzamrhein.com,1 36380,http://www.pffs.org.uk,1 36381,http://www.caravanadditions.co.uk,1 36382,http://www.caraccidenthelpline.co.uk,1 36383,http://www.cara-online.org,1 36384,http://www.pfpensions.co.uk,1 36385,http://www.pfsandpartners.co.uk,1 36386,http://www.pfycards.net,1 36387,http://www.car-driving.com,1 36388,http://www.captainsite.com,1 36389,http://adi107375.theorytestpro.co.uk,1 36390,http://www.pgtax.co.uk,1 36391,http://www.capitalpropertiescardiff.co.uk,1 36392,http://www.capitaldrivingschool.co,1 36393,http://www.capitalcarparkcontrol.co.uk,1 36394,http://www.capital.bg,1 36395,http://www.capital-driving-tuition.co.uk,1 36396,http://www.ph.qmul.ac.uk,1 36397,http://www.canterburyhealthcentre.co.uk,1 36398,http://www.canterburycollege.ac.uk,1 36399,http://www.phil.uni-passau.de,1 36400,http://www.philb.com,1 36401,http://www.philcope.co.uk,1 36402,http://www.cansdales.co.uk,1 36403,http://www.philgodfreydrivingtuition.co.uk,1 36404,http://www.philipalexander.net,1 36405,http://www.caninetherapy.co.uk,1 36406,http://www.philipbarnes.co.uk,1 36407,http://www.candlelightcare.co.uk,1 36408,http://www.philipday.co.uk,1 36409,http://www.philipprice.co.uk,1 36410,http://www.canburymedicalcentre.co.uk,1 36411,http://www.philippullendrivingschool.co.uk,1 36412,http://www.canahillside.catholic.edu.au,1 36413,http://www.camsterhouse.com,1 36414,http://www.camsterhouse.co.uk,1 36415,http://www.philoakley.co.uk,1 36416,http://www.philosophypathways.com,1 36417,http://www.philskies.net,1 36418,http://www.philsmith-adi.co.uk,1 36419,http://www.campus-stellae.com,1 36420,http://www.philwale.co.uk,1 36421,http://www.philzwheelz.co.uk,1 36422,http://www.phinished.org,1 36423,http://www.campden.co.uk,1 36424,http://www.campbellsurgery.org.uk,1 36425,http://www.campbellsdrivingschool.co.uk,1 36426,http://www.campbellschoolofmotoring.com,1 36427,http://www.campbellcollege.co.uk,1 36428,http://www.campbell-page.co.uk,1 36429,http://adi105284.theorytestpro.co.uk,1 36430,http://www.camcycle.org.uk,1 36431,http://www.cambslscb.org.uk,1 36432,http://www.cambsfire.gov.uk,1 36433,http://www.phoenix-wm.co.uk,1 36434,http://www.cambridgeshirehorizons.co.uk,1 36435,http://www.phoenixecoenergy.co.uk,1 36436,http://adi103979.theorytestpro.co.uk,1 36437,http://www.cambridgecarecompany.com,1 36438,http://www.photo4me.com,1 36439,http://www.photobox.de,1 36440,http://www.photocolor.com.au,1 36441,http://www.camberleypeople.co.uk,1 36442,http://www.camberleyontheweb.com,1 36443,http://www.cambell-j.bardaglea.org.uk,1 36444,http://www.calmactyres.co.uk,1 36445,http://www.callieslearners.co.uk,1 36446,http://www.callcreditcheck.com,1 36447,http://www.call-centrejobs.co.uk,1 36448,http://www.calibre-international.com,1 36449,http://www.phunkrabbit.co.uk,1 36450,http://www.caldutch.co.uk,1 36451,http://www.calderhigh.org.uk,1 36452,http://www.calderdaledart.org.uk,1 36453,http://www.phxtraining.co.uk,1 36454,http://www.calderdale.ac.uk,1 36455,http://www.calbrimdocs.co.uk,1 36456,http://www.caithness.org,1 36457,http://www.caisterjunior.co.uk,1 36458,http://www.cahilljones.co.uk,1 36459,http://www.cagoxfordshire.org.uk,1 36460,http://www.cafre.ac.uk,1 36461,http://www.cafescientifique.org,1 36462,http://yoodo.org,1 36463,http://www.caerdydd.gov.uk,1 36464,http://www.cadwyn.co.uk,1 36465,http://www.cadwgansurgery.org,1 36466,http://www.cache.cow.net,1 36467,http://www.cabwiltshire.org.uk:2095,1 36468,http://www.picsearch.com,1 36469,http://www.cabrltd.co.uk,1 36470,http://www.cabotmotorsbristol.co.uk,1 36471,http://www.cableforum.me,1 36472,http://www.picturehalton.org.uk,1 36473,http://www.pieldheathschool.org.uk,1 36474,http://www.pierceandco.co.uk,1 36475,http://www.cabadvisernet,1 36476,http://www.cab2.eu,1 36477,http://www.pierheadhousing.com,1 36478,http://www.caa.gov.tw,1 36479,http://www.pietroichino.it,1 36480,http://www.c4caravans.com,1 36481,http://adi101635.theorytestpro.co.uk,1 36482,http://www.pilkington.com,1 36483,http://www.pilsleycofe.derbyshire.sch.uk,1 36484,http://adi07590.theorytestpro.co.uk,1 36485,http://www.bwsted.com,1 36486,http://www.bws.wilts.sch.uk,1 36487,http://www.pims.co.uk,1 36488,http://www.pinilaw.co.uk,1 36489,http://adhd-yorkshire.com,1 36490,http://www.bwcarpentrybuilding.co.uk,1 36491,http://www.pinkfridge.com,1 36492,http://www.bvrees-fiat.com,1 36493,http://www.bva.co.uk,1 36494,http://adf.ly,1 36495,http://www.buzzlearning.co.uk,1 36496,http://www.buzzhousekeeping.co.uk,1 36497,http://www.pinkysdrivingschool.co.uk,1 36498,http://www.pippinsnursery.co.uk,1 36499,http://www.buzz-housekeeping-services.co.uk,1 36500,http://www.buzbysgarage-chingford.co.uk,1 36501,http://www.buywithconfidence.info,1 36502,http://www.buymy.co.uk,1 36503,http://www.buyingskills.com,1 36504,http://www.buyersguide.co.uk,1 36505,http://www.pitterpatter.org.uk,1 36506,http://www.buy-investment-properties.co.uk,1 36507,http://www.buxtonjuniorschool.co.uk,1 36508,http://www.pitterpatternannies.co.uk,1 36509,http://www.buttles.com,1 36510,http://www.butterflynannies.co.uk,1 36511,http://www.buttercups.co.uk,1 36512,http://www.butlersproperty.co.uk,1 36513,http://www.butehousemedicalcentre.co.uk,1 36514,http://www.busybodiesnursery.com,1 36515,http://www.pjgscrapcar.co.uk,1 36516,http://www.busseyvehicleleasing.co.uk,1 36517,http://www.pkdrivingschoolepsom.co.uk,1 36518,http://www.businessvans.co.uk,1 36519,http://www.pkf.co.uk,1 36520,http://www.businessthreadsonly.com,1 36521,http://www.businesssupporter.co.uk,1 36522,http://www.place2pass.co.uk,1 36523,http://www.places.communities.gov.uk,1 36524,http://www.planet-interactive.co.uk,1 36525,http://www.businesslincolnshire.com,1 36526,http://www.planetwills.co.uk,1 36527,http://www.businessevents.visitwales.com,1 36528,http://www.businessdrivertraining.co.uk,1 36529,http://www.businessccc.com,1 36530,http://www.planningcomment.co.uk,1 36531,http://www.business.com,1 36532,http://www.planningguide.co.uk,1 36533,http://www.planninghelp.org,1 36534,http://www.business-partnership.com,1 36535,http://www.planningni.gov.uk,1 36536,http://www.business-information-uk.com,1 36537,http://www.business-find.co.uk,1 36538,http://www.business-directory-uk.co.uk,1 36539,http://www.planningofficers.org.uk,1 36540,http://www.busandcoachforum.net,1 36541,http://www.planningservices.haringey.gov.uk,1 36542,http://www.buryyouth.co.uk,1 36543,http://www.burytec.com,1 36544,http://www.buryparentsforum.org.uk,1 36545,http://www.buryknowle.org,1 36546,http://www.plans4.co.uk,1 36547,http://www.burwaygarage.co.uk,1 36548,http://www.burtonhydraulics.co.uk,1 36549,http://www.plantsbrookschool.co.uk,1 36550,http://www.burtondrivinglessons.co.uk,1 36551,http://www.burrows.co.uk,1 36552,http://www.burntmill.essex.sch.uk,1 36553,http://www.platinumlegal.co.uk,1 36554,http://www.burnleywood.surestart.org,1 36555,http://www.platinumsom.com,1 36556,http://www.playfieldinstitute.co.uk,1 36557,http://www.burnbrae.co.uk,1 36558,http://www.burkmars.co.uk,1 36559,http://www.playmatesdaycare.co.uk,1 36560,http://www.burgundyvillas.com,1 36561,http://www.burgesshillmc.com,1 36562,http://www.burgesshill.justmots.eu,1 36563,http://www.burgate.hants.sch.uk,1 36564,http://you.travel,1 36565,http://www.plqpellets.co.uk,1 36566,http://adelphi.poise.homeoffice.local,1 36567,http://www.plugoo.com,1 36568,http://www.plugtest.co.uk,1 36569,http://www.bumblebeesdaynursery.co.uk,1 36570,http://www.plumb-line.co.uk,1 36571,http://www.bullyfreezone.co.uk,1 36572,http://www.plumberfarnborough.co.uk,1 36573,http://www.plumberwakefield.co.uk,1 36574,http://www.plumbingcourses.me.uk,1 36575,http://www.buildyourownsolarpanelenergy.com,1 36576,http://www.buildup.eu,1 36577,http://www.buildnet.gr,1 36578,http://www.buildingregulations-uk.com,1 36579,http://www.buildingrecruitment.co.uk,1 36580,http://www.buildersinsurrey.com,1 36581,http://www.builders.org.uk,1 36582,http://www.bugnation.co.uk,1 36583,http://www.buglife.org.uk,1 36584,http://www.plumbsreupholstery.co.uk,1 36585,http://www.plumptononline.ac.uk,1 36586,http://www.budgenalfaromeo.co.uk,1 36587,http://www.buddhachannel.tv,1 36588,http://www.bucksworkability.com,1 36589,http://www.buckshawchildminder.co.uk,1 36590,http://www.buckshaw.lancs.sch.uk,1 36591,http://youbookmarks.com,1 36592,http://www.bucks-lscb.org.uk,1 36593,http://www.buckleupdriving.co.uk,1 36594,http://www.buckinghamsom.co.uk,1 36595,http://www.buckinghamparkschool.co.uk,1 36596,http://www.plymouthcity.flyer.co.uk,1 36597,http://www.buckdenschool.co.uk,1 36598,http://www.bucharestlife.net,1 36599,http://www.buchantoolbox.org,1 36600,http://www.plymouthestates.co.uk,1 36601,http://www.btpolfed.org.uk,1 36602,http://www.plymouthmentalhealth.org.uk,1 36603,http://www.bton.ac.uk,1 36604,http://youcandoit.theorytestpro.co.uk,1 36605,http://www.plymouthpct.nhs.uk,1 36606,http://www.bth.se,1 36607,http://www.bt.com,1 36608,http://www.plymstockschool.org.uk,1 36609,http://www.bsomeone.co.uk,1 36610,http://www.bsmotors.co.uk,1 36611,http://www.pmai.org,1 36612,http://www.bsmchelmsfordinstructors.co.uk,1 36613,http://www.pmdf.df.gov.br,1 36614,http://www.bslbt.co.uk,1 36615,http://www.bsguk.org,1 36616,http://www.bsglaw.co.uk,1 36617,http://www.bsexec.co.uk,1 36618,http://www.pntestbed.co.uk,1 36619,http://www.bsafe2drive.co.uk,1 36620,http://addictomatic.com,1 36621,http://www.pocklington-trust.org.uk,1 36622,http://www.bryanphillipsschoolofmotoring.co.uk,1 36623,http://www.brwm.co.uk,1 36624,http://www.brushstroke.co.uk,1 36625,http://www.brunstoncastle.net,1 36626,http://www.brunelstudents.com,1 36627,http://www.pohwer.net,1 36628,http://www.point2pointelectrics.co.uk,1 36629,http://www.bruiseduk.com,1 36630,http://www.bruised.org.uk,1 36631,http://www.pokerstars.pl,1 36632,http://www.pol-drive.com,1 36633,http://www.polarminibus.org.uk,1 36634,http://www.brownhillscc.co.uk,1 36635,http://www.browells.co.uk,1 36636,http://youngdrivers.theorytestpro.co.uk,1 36637,http://www.polemi.co.uk,1 36638,http://www.broomfield.ik.org,1 36639,http://www.brookstreetgarage.co.uk,1 36640,http://www.brooksideprimary.co.uk,1 36641,http://www.brooksidegrouppractice.co.uk,1 36642,http://www.polepositiondrivertraining.co.uk,1 36643,http://www.brooksbymelton.ac.uk,1 36644,http://www.brooklandsfarm.org.uk,1 36645,http://www.brooklands-garage.co.uk,1 36646,http://www.brooklandnursery.com,1 36647,http://www.polepositiondrivertraining.com,1 36648,http://www.polepositionsom.co.uk,1 36649,http://www.bronbuild.co.uk,1 36650,http://www.bromsgrovedrivinginstructor.co.uk,1 36651,http://www.polestarpension.co.uk,1 36652,http://www.police.wa.gov.au,1 36653,http://www.bromfords.essex.sch.uk,1 36654,http://www.bromfordgroup.co.uk,1 36655,http://www.broken-wheel.com,1 36656,http://www.brodiemaclean.co.uk,1 36657,http://www.broadstonefirstschool.co.uk,1 36658,http://www.broads-authority.gov.uk,1 36659,http://www.broadleysschoolofmotoring.co.uk,1 36660,http://www.broadlandmeridian.org,1 36661,http://www.policeoracle.com,1 36662,http://www.broadfield.cc,1 36663,http://www.broadcaster.org.uk,1 36664,http://adamprice2ab.livejournal.com,1 36665,http://www.broadbandwatchdog.co.uk,1 36666,http://www.brmlaw.co.uk,1 36667,http://www.brlets.co.uk,1 36668,http://www.brixton-connections.org.uk,1 36669,http://www.britsincrete.co.uk,1 36670,http://www.britnett-carveradv.co.uk,1 36671,http://ad.uk.doubleclick.net,1 36672,http://www.politics.co.uk,1 36673,http://www.britishshowjumping.co.uk,1 36674,http://www.britishschoolmanila.org,1 36675,http://actonco2.direct.gov.uk/home/what-you-can-do/On-the-move/Compare-car-CO2-emissions/new-car-co2-emissions-model-search.html,1 36676,http://www.britishrally.co.uk,1 36677,http://www.britishparking.co.uk,1 36678,http://www.politics.ox.ac.uk,1 36679,http://www.britishlivertrust.org.uk,1 36680,http://activefithealthykids.com,1 36681,http://www.polizialocalebagnacavallo.it,1 36682,http://www.britishgerontology.org,1 36683,http://www.poliziotti.it,1 36684,http://www.poloniauk.com,1 36685,http://www.britishfloristassociation.org,1 36686,http://www.polybagsdirect.com,1 36687,http://www.britishcouncil.org.cn,1 36688,http://www.pomelotree.net,1 36689,http://www.pontardulaistownband.com,1 36690,http://www.pontnoir.com,1 36691,http://www.british-human-power.com,1 36692,http://www.poolechildminder.co.uk,1 36693,http://www.british-flag.org,1 36694,http://www.pooletyres.com,1 36695,http://www.britemb.cl,1 36696,http://www.britarch.ac.uk,1 36697,http://www.poppyland.surestart.org,1 36698,http://www.portal.bedford.gov.uk,1 36699,http://www.britannia-in-italia.co.uk,1 36700,http://www.portlandnurseries.co.uk,1 36701,http://www.portlandroadsurgery.co.uk,1 36702,http://www.britain-vacancy.com,1 36703,http://www.britain-magazine.com,1 36704,http://www.portoditerra.it,1 36705,http://www.portsmouth-landlord-show.org,1 36706,http://www.bristoldrivinglessons.com,1 36707,http://www.bristoldea.co.uk,1 36708,http://www.portsmouthnews.tv,1 36709,http://www.portsmouthpropertyservices.co.uk,1 36710,http://www.bristol-plumbing.com,1 36711,http://www.poseidonproperties.co.uk,1 36712,http://www.brinscall.lancs.sch.uk,1 36713,http://www.positionignition.com,1 36714,http://www.brightonstudentpad.co.uk,1 36715,http://www.brightonsbm.com,1 36716,http://www.brightondrivinglessons.com,1 36717,http://www.positiveeast.org.uk,1 36718,http://www.brighton.justmots.eu,1 36719,http://www.postviralfatigue.me.uk,1 36720,http://www.potterrees.co.uk,1 36721,http://www.brightfuturesni.org,1 36722,http://www.brighter-futures.org.uk,1 36723,http://www.pottsfuneralsnorwich.co.uk,1 36724,http://www.poultec.co.uk,1 36725,http://www.bridport-tc.gov.uk,1 36726,http://www.bridport-cab.org.uk,1 36727,http://www.bridlington.net,1 36728,http://www.bridlington.gov.uk,1 36729,http://www.bridgewaterequityrelease.co.uk,1 36730,http://www.bridgepracticechertsey.nhs.uk,1 36731,http://www.poverty.org.uk,1 36732,http://www.povertylaw.org,1 36733,http://www.powarider.com,1 36734,http://www.bridgemankettle.com,1 36735,http://www.bridesmagazine.co.uk,1 36736,http://www.brickwork-and-stonework.co.uk,1 36737,http://www.brickfieldssurgery.co.uk,1 36738,http://www.power-flushing.net,1 36739,http://www.brianmole.co.uk,1 36740,http://www.brianmellorfs.co.uk,1 36741,http://www.brianmcminn.co.uk,1 36742,http://www.brianmartin.co.uk,1 36743,http://www.brianboydschoolofmotoring.co.uk,1 36744,http://www.brian-som.gbr.cc,1 36745,http://www.powerleague.org.uk,1 36746,http://www.breziesmotorcycletraining.co.uk,1 36747,http://activateyourheart.org.uk,1 36748,http://www.brentwoodadvice.co.uk,1 36749,http://www.brentwood-council.gov.uk,1 36750,http://www.brentbark.org,1 36751,http://www.powtec.co.uk,1 36752,http://www.powyshousing.co.uk,1 36753,http://www.ppcscheme.org,1 36754,http://www.ppo.gov.uk,1 36755,http://www.praca-anglia.pl,1 36756,http://www.break-charity.org,1 36757,http://www.breachblog.com,1 36758,http://www.brazil-help.com,1 36759,http://www.praca.polnews.co.uk,1 36760,http://www.bravodrivingschoolcanterbury.co.uk,1 36761,http://www.pracaizycie.pl,1 36762,http://www.practicalcaravan.com,1 36763,http://www.brandontrust.org,1 36764,http://www.bramptonirishcenter.com,1 36765,http://www.practicaldrivinghertford.co.uk,1 36766,http://www.brakefarm.org,1 36767,http://actiontracker.org.uk,1 36768,http://www.practicallaw.com,1 36769,http://www.practicetheorytestonline.com,1 36770,http://www.brainstrust.org.uk,1 36771,http://www.brainhelp.co.uk,1 36772,http://www.pramacare.co.uk,1 36773,http://www.pravo.by,1 36774,http://www.braillesignsuk.co.uk,1 36775,http://www.prawojazdywuk.com,1 36776,http://www.bradshawsresidential.co.uk,1 36777,http://www.bradshawschoolofmotoring.co.uk,1 36778,http://www.bradleys-estate-agents.co.uk,1 36779,http://www.pre-school.org.uk,1 36780,http://www.bradfordcpa.co.uk,1 36781,http://www.precisionenergysurveys.co.uk,1 36782,http://www.bradford.childrencentres.org,1 36783,http://www.premieraccounts.co.uk,1 36784,http://www.bradfield-tradin.com,1 36785,http://www.premiercareplymouth.co.uk,1 36786,http://www.bradburystell.co.uk,1 36787,http://www.bracknellnews.co.uk,1 36788,http://www.bracknellforest.gov.uk,1 36789,http://www.premierletsandsales.com,1 36790,http://www.premierlinedirect.co.uk,1 36791,http://www.premiernails-training.co.uk,1 36792,http://www.premiertransportservices.co.uk,1 36793,http://www.premiumbondsuk.co.uk,1 36794,http://www.preschool.btck.co.uk,1 36795,http://www.bpp.com,1 36796,http://www.bpndevelopment.co.uk,1 36797,http://www.preschool345.org.uk,1 36798,http://www.prescientpower.co.uk,1 36799,http://www.pressdisplay.com,1 36800,http://www.bp-guild.org.uk,1 36801,http://www.boyden.uk.com,1 36802,http://www.boxpre-schoolplaygroup.co.uk,1 36803,http://www.boxfituk.com,1 36804,http://www.box-mag.com,1 36805,http://across.easysearch.org.uk,1 36806,http://www.bowerhill.wilts.sch.uk,1 36807,http://www.bowenmoto.co.uk,1 36808,http://www.bowarts.org,1 36809,http://www.bovingtonmid.dorset.sch.uk,1 36810,http://www.prestigedrivingschool.net,1 36811,http://www.prestigestairlifts.co.uk,1 36812,http://www.prestoncarers.org.uk,1 36813,http://acriss.org,1 36814,http://www.boundarycommission.org.uk,1 36815,http://www.boulevardpractice.co.uk,1 36816,http://www.bottishampc.org.uk,1 36817,http://www.prestonlancasterdriving.com,1 36818,http://www.prestwoodcarsales.co.uk,1 36819,http://www.pricedropper.co.uk,1 36820,http://www.bostonfanreport.com,1 36821,http://www.bostondisabilityforum.co.uk,1 36822,http://acqweb.org,1 36823,http://www.priestleylgv.freeservers.com,1 36824,http://www.bostico.co.uk,1 36825,http://www.bossgtcentral.com,1 36826,http://10.100.100.50:15871,1 36827,http://www.bosmortgages.co.uk,1 36828,http://www.bos.rs,1 36829,http://www.borrowersrecommend.co.uk,1 36830,http://www.primaryassembly.com,1 36831,http://www.borntodrive.co.uk,1 36832,http://www.bopeepspreschool.co.uk,1 36833,http://www.primaschoolofmotoring.co.uk,1 36834,http://www.primedrive.net,1 36835,http://www.primeiradrivingschool.co.uk,1 36836,http://www.boothwood.leics.sch.uk,1 36837,http://www.boothamstudent.co.uk,1 36838,http://www.boost-marketing.co.uk,1 36839,http://www.boomtime.lv,1 36840,http://www.boolers.co.uk,1 36841,http://www.booklessonsonline.co.uk,1 36842,http://www.bookitquick.co.uk,1 36843,http://www.bookdrivinglessons.org,1 36844,http://www.primetimefinancial.co.uk,1 36845,http://www.princecharlescinema.com,1 36846,http://www.bonthronebikes.co.uk,1 36847,http://www.bonsplanslondres.com,1 36848,http://www.bonniedogs.co.uk,1 36849,http://www.bonjourlondres.com,1 36850,http://www.bongous.com,1 36851,http://www.princeofwalesgrouppractice.nhs.uk,1 36852,http://www.boltonmentalhealth.org.uk,1 36853,http://www.princeville.bradford.sch.uk,1 36854,http://www.boltoncc.ac.uk,1 36855,http://www.boltonbsafe.org.uk,1 36856,http://www.prioritydrivingschool.co.uk,1 36857,http://www.bolton-driving-school.co.uk,1 36858,http://www.boingboing.net,1 36859,http://www.priorsleemotorservices.co.uk,1 36860,http://www.priorygarage.co.uk,1 36861,http://www.boilerserviceboston.co.uk,1 36862,http://www.boilerrepairmanchester247.co.uk,1 36863,http://www.prisontalk.com,1 36864,http://www.boiler-repairs-richmond.co.uk,1 36865,http://www.boiler-repair-chelsea.co.uk,1 36866,http://www.bognorregis.justmots.eu,1 36867,http://www.boeckler.de,1 36868,http://www.privatecarecompany.co.uk,1 36869,http://www.bodriggysurgery.co.uk,1 36870,http://www.bodmincollege.cornwall.sch.uk,1 36871,http://www.bodleian.ox.ac.uk,1 36872,http://www.bodey.co.uk,1 36873,http://www.bobtailsplaygroup.com,1 36874,http://www.bobssom.co.uk,1 36875,http://www.bobkeeper.co.uk,1 36876,http://www.bobjacksonandson.co.uk,1 36877,http://www.privatehomeseller.co.uk,1 36878,http://www.boavwaudicars.co.uk,1 36879,http://www.boatmart.co.uk,1 36880,http://www.privaterentedservice.co.uk,1 36881,http://www.bnsc.gov.uk,1 36882,http://www.bnrenergia.com,1 36883,http://www.bne.uwe.ac.uk,1 36884,http://www.bnc.ox.ac.uk,1 36885,http://www.bmyvoice.org.uk,1 36886,http://www.bmwowner.com,1 36887,http://www.bmwclub.ro,1 36888,http://www.bmvwarehouse.co.uk,1 36889,http://www.bms-schoolofmotoring.co.uk,1 36890,http://www.bml-accountants.co.uk,1 36891,http://www.bmj.com,1 36892,http://www.prodisability.org.uk,1 36893,http://acnorfolk.easysearch.org.uk,1 36894,http://www.bmcengineers.co.uk,1 36895,http://www.bmbikes.org.uk,1 36896,http://www.professionalcoverletter.co.uk,1 36897,http://www.professionaldrivinglessons.co.uk,1 36898,http://www.professionsfs.co.uk,1 36899,http://www.profixcomputers.co.uk,1 36900,http://www.blueprint-adl.com,1 36901,http://www.blueice-electronics.co.uk,1 36902,http://www.bluehousedaynursery.com,1 36903,http://www.bluehorizonsmarketing.co.uk,1 36904,http://www.bluefishtest.co.uk,1 36905,http://www.bluedrivingtuition.co.uk,1 36906,http://www.bluedrivingschoolrugby.co.uk,1 36907,http://www.bluedriverdevelopment.com,1 36908,http://www.bluecartraining.co.uk,1 36909,http://www.projectoceanvision.com,1 36910,http://www.bluebird-drivingschool.co.uk,1 36911,http://www.bluebell.uk.eu.org,1 36912,http://www.bluearrowmail.co.uk,1 36913,http://www.blossomtreechildcare.com,1 36914,http://www.blogcatalog.com,1 36915,http://www.prometheanplanet.com,1 36916,http://www.blog.avaganda.org,1 36917,http://www.bllaw.co.uk,1 36918,http://www.proofgb.com,1 36919,http://www.blic.rs,1 36920,http://www.blclaims.co.uk,1 36921,http://www.propcare.co.uk,1 36922,http://www.blairschoolofmotoring.com,1 36923,http://www.blades-hotel.co.uk,1 36924,http://www.blackwoodsolicitors.co.uk,1 36925,http://www.property4usc.co.uk,1 36926,http://achieveforms.valeofglamorgan.gov.uk,1 36927,http://www.blackpoolgymnasticsclub.co.uk,1 36928,http://www.blackpooldrivingschools.com,1 36929,http://10.10.11.2:3000,1 36930,http://www.propertyindex.com,1 36931,http://www.blackpooldrivertraining.com,1 36932,http://www.blackpoolcarers.org,1 36933,http://www.blackpool.gov.uk:2005,1 36934,http://www.propertyinvesting.net,1 36935,http://www.blacklawsdavis.co.uk,1 36936,http://www.propertyshop.uk.com,1 36937,http://www.blackcountryfoodbank.org.uk,1 36938,http://www.propertyvista.info,1 36939,http://www.blackburnadi.co.uk,1 36940,http://www.proride.co.im,1 36941,http://www.blackbrooksurgery.co.uk,1 36942,http://yourcareyourway.lambeth.gov.uk,1 36943,http://www.prospect.co.uk,1 36944,http://www.bl.gov.cn,1 36945,http://www.prospect.org.uk,1 36946,http://www.biznes-solution.pl,1 36947,http://www.prospectdrivingschool.co.uk,1 36948,http://www.prospecthill.notts.sch.uk,1 36949,http://www.prospects.co.uk,1 36950,http://www.prospects.org.uk,1 36951,http://www.prospectsnet.com,1 36952,http://www.bisonbede.co.uk,1 36953,http://www.prostartuk.co.uk,1 36954,http://www.bishopshull.somerset.sch.uk,1 36955,http://www.prostateaction.org.uk,1 36956,http://www.bishopscleeve.gloucs.sch.uk,1 36957,http://www.bishophendersonschool.org.uk,1 36958,http://www.biscalhomes.co.uk,1 36959,http://www.birminghamrussianschool.org.uk,1 36960,http://www.birminghampropertygroup.co.uk,1 36961,http://www.birminghamprepared.gov.uk,1 36962,http://www.birminghamcitycouncil.org,1 36963,http://www.provincia.teramo.it,1 36964,http://www.prt.uk.com,1 36965,http://aceridertraining.co.uk,1 36966,http://www.prudentialstaffps.co.uk,1 36967,http://www.birmingham-driving-tuition.co.uk,1 36968,http://www.birkettlong.co.uk,1 36969,http://www.birkenheaddrivingschool.com,1 36970,http://www.birkenhead-driving-school.com,1 36971,http://www.bire1.info,1 36972,http://www.birdcollege.co.uk,1 36973,http://www.prweb.com,1 36974,http://www.birchwoodinvestment.com,1 36975,http://www.biramalta.com,1 36976,http://www.ps-scripts.com,1 36977,http://www.bioscience.heacademy.ac.uk,1 36978,http://www.pscpayroll.com,1 36979,http://www.pscsafe.com,1 36980,http://www.biochemistry.org,1 36981,http://www.psd.scot.nhs.uk,1 36982,http://www.binleywoods.warwickshire.sch.uk,1 36983,http://www.bingmagazine.co.uk,1 36984,http://www.psdrivertraining.co.uk,1 36985,http://www.binfieldroadsurgery.co.uk,1 36986,http://www.pss-archi.eu,1 36987,http://www.pss.org.uk,1 36988,http://www.psychcorp.co.uk,1 36989,http://www.pta.org.uk,1 36990,http://www.billsimpson.com,1 36991,http://www.billrosedrivingtuition.org.uk,1 36992,http://www.ptp-training.co.uk,1 36993,http://www.billjamesdriving.t83.net,1 36994,http://www.billingshurst-community.org.uk,1 36995,http://www.billesterson.org.uk,1 36996,http://www.bildung-weltweit.de,1 36997,http://www.ptsmini.co.uk,1 36998,http://www.public-sector.co.uk,1 36999,http://www.biketraining.net,1 37000,http://www.public-standards.org.uk,1 37001,http://www.bikesafe-sheffield.co.uk,1 37002,http://www.bikesafe-essex.co.uk,1 37003,http://www.bikertraining.org,1 37004,http://www.bikerssouthampton.co.uk,1 37005,http://www.publicguardian.gov.uk.,1 37006,http://www.publishing-school.co.uk,1 37007,http://www.pulsardrivingschool.com,1 37008,http://www.bikeleathers.org.uk,1 37009,http://www.purina.co.uk,1 37010,http://www.bike-forums.com,1 37011,http://www.bihr.org.uk,1 37012,http://www.purwell.herts.sch.uk,1 37013,http://www.pvdrivertraining.com,1 37014,http://www.bighippo.co.uk,1 37015,http://www.pvsolarinstallers.co.uk,1 37016,http://www.bigday.co.uk,1 37017,http://www.bigbluedrivingschool.com,1 37018,http://www.pw-driving.co.uk,1 37019,http://www.big-fish.org.uk,1 37020,http://www.pwsa.co.uk,1 37021,http://www.bidfordonavon-pc.gov.uk,1 37022,http://www.bideford-tc.gov.uk,1 37023,http://www.bidanswer.com,1 37024,http://www.pypersgarage.co.uk,1 37025,http://www.bickpartnership.co.uk,1 37026,http://acedrivertraining.theorytestpro.co.uk,1 37027,http://www.pyrford.surrey.sch.uk,1 37028,http://www.bhlp.org.uk,1 37029,http://www.q4s.eu,1 37030,http://www.bgiok.org.uk,1 37031,http://www.bghelp.net,1 37032,http://www.qas.co.uk,1 37033,http://www.qatarliving.com,1 37034,http://www.bgcanada.com,1 37035,http://www.bgbm.org,1 37036,http://www.bgasltd.co.uk,1 37037,http://www.qcfm.co.uk,1 37038,http://www.bfpa.co.uk,1 37039,http://www.beyonddriving.co.uk,1 37040,http://www.beyondaccounting.uk.com,1 37041,http://www.bexley.virtualdisplay.co.uk,1 37042,http://www.bewiser.co.uk,1 37043,http://www.qe.dorset.sch.uk,1 37044,http://www.beverlyslater.com,1 37045,http://www.bevanburrows.co.uk,1 37046,http://www.qegs.co.uk,1 37047,http://www.qeqmh.demon.co.uk,1 37048,http://www.qldtempfencesupplies.com.au,1 37049,http://www.betterdrivedrivingschool.co.uk,1 37050,http://www.betterdrive.co.uk,1 37051,http://www.betterbusinessinchildcare.co.uk,1 37052,http://www.betratmo.co.uk,1 37053,http://www.betheridge.dreamhosters.com,1 37054,http://www.bestsocialenterprise.org.uk,1 37055,http://www.bestsitesnow.com,1 37056,http://www.bestratemortgagedeals.com,1 37057,http://www.bestplate.com,1 37058,http://www.bestpet.co.uk,1 37059,http://www.quadinsurance.co,1 37060,http://www.bestcomedymovies.net,1 37061,http://www.best4business.com,1 37062,http://www.best-care-home.co.uk,1 37063,http://www.besgas.co.uk,1 37064,http://www.berwickmigrantsupportgroup.co.uk,1 37065,http://www.berwickhighschool.co.uk,1 37066,http://www.quaker.org.uk,1 37067,http://www.berstedgreensurgery.co.uk,1 37068,http://www.qualifications-across-boundaries.org,1 37069,http://www.beros.com.br,1 37070,http://www.bernieprice.co.uk,1 37071,http://accuratedriving.co.uk,1 37072,http://www.bermudasucks.com,1 37073,http://www.bermudapractice.co.uk,1 37074,http://10.10.1.7,1 37075,http://www.berlinfernsehturm.de,1 37076,http://www.berkshireeast-pct.nhs.uk,1 37077,http://accredofinancialservices.com,1 37078,http://www.qualityresearchinternational.com,1 37079,http://www.benzworld.org,1 37080,http://www.bentleywalker.co.uk,1 37081,http://accountantsnottinghamblog.co.uk,1 37082,http://www.bensdrivingschool.com,1 37083,http://www.bennerleyfields.co.uk,1 37084,http://account.e.mouseflow.com,1 37085,http://www.quantockhills.com,1 37086,http://www.quarmbygarage.co.uk,1 37087,http://www.quattroforum.com,1 37088,http://www.benefitinsurance.com,1 37089,http://www.benefitbee.co.uk,1 37090,http://www.benefiscal.co.uk,1 37091,http://www.beneficial.org.uk,1 37092,http://www.quaysideinventorysolutions.com,1 37093,http://www.bemerton-st-john.wilts.sch.uk,1 37094,http://www.belvederejuniorschool.co.uk,1 37095,http://www.beltupdrivingacademy.co.uk,1 37096,http://www.beltupdriving.com,1 37097,http://www.beltup2drive.co.uk,1 37098,http://www.belmontprimary.com,1 37099,http://www.queensavenue.co.uk,1 37100,http://www.bellschoolofmotoring.co.uk,1 37101,http://www.bellahomecare.co.uk,1 37102,http://www.bell-som.co.uk,1 37103,http://www.belgravialand.com,1 37104,http://www.quentinwillson.co.uk,1 37105,http://www.belaknjiga2011.si,1 37106,http://www.questgarden.com,1 37107,http://www.questonline.co.uk,1 37108,http://www.questscan.com,1 37109,http://accommodation.firststopcareadvice.org.uk,1 37110,http://www.beggarwoodsurgery.co.uk,1 37111,http://accesstomusic.co.uk,1 37112,http://www.beesolarpower.com,1 37113,http://www.beeprepared.co.uk,1 37114,http://www.beepdrivertraining.co.uk,1 37115,http://accessible-property.org.uk,1 37116,http://www.beegger.com,1 37117,http://www.beechwoodpark.herts.sch.uk,1 37118,http://www.beechhillprimary.com,1 37119,http://www.beeches-school.co.uk,1 37120,http://www.bedsprobation.org.uk,1 37121,http://www.bedsadvicedirectory.org.uk,1 37122,http://www.quidos.co.uk,1 37123,http://www.quiltersjuniorschool.com,1 37124,http://www.quintura.com,1 37125,http://www.bedfordschoolofmotoring.co.uk,1 37126,http://www.quintus-solutions.co.uk,1 37127,http://www.r3.org.uk,1 37128,http://www.bedford-driving-school.co.uk,1 37129,http://www.becraautomotive.co.uk,1 37130,http://www.raahi.com,1 37131,http://www.rabutlerschools.ik.org,1 37132,http://www.racpd.org.uk,1 37133,http://www.beckettcorp.co.uk,1 37134,http://accesshighpeak.org.uk,1 37135,http://www.radclifferiverside.com,1 37136,http://www.beatthatquote.com,1 37137,http://www.raddag.org,1 37138,http://www.bearwood.poole.sch.uk,1 37139,http://www.bearbrookschool.ik.org,1 37140,http://www.radiownet.pl,1 37141,http://www.bdsdrivingschool.co.uk,1 37142,http://www.radley.org.uk,1 37143,http://www.bdhc.co.uk,1 37144,http://www.bdf-solutions.co.uk,1 37145,http://www.radreise-wiki.de,1 37146,http://www.radstockdrivingschool.co.uk,1 37147,http://www.raeng.org.uk,1 37148,http://www.raflatt.co.uk,1 37149,http://access-to-he.ning.com,1 37150,http://www.bcom.ac.uk,1 37151,http://www.bch.co.uk:2005,1 37152,http://www.bcf.nhs.uk,1 37153,http://www.bcc.lan,1 37154,http://www.bcbdover.co.uk,1 37155,http://www.rafm.co.uk,1 37156,http://www.raief.com,1 37157,http://www.bbsl.org.uk,1 37158,http://www.bbscoobys.com,1 37159,http://www.bbkca.com,1 37160,http://www.rail-industry.info,1 37161,http://www.bayswaterbid.com,1 37162,http://accc.easysearch.org.uk,1 37163,http://accassociation.org,1 37164,http://www.baylisdrivertraining.co.uk,1 37165,http://www.bayern-bilingual.de,1 37166,http://www.rainbowdriving.co.uk,1 37167,http://www.baxienergyhub.com,1 37168,http://www.battlehillhc.co.uk,1 37169,http://www.ralphallen.bathnes.sch.uk,1 37170,http://www.battersea-plumbers.co.uk,1 37171,http://www.batod.org.uk,1 37172,http://www.rampmatters.com,1 37173,http://www.bathroom-london.co.uk,1 37174,http://www.ramsey-town.co.uk,1 37175,http://www.bathmums.co.uk,1 37176,http://www.bathingfreedom.co.uk,1 37177,http://www.ran-advice.co.uk,1 37178,http://www.bastows.co.uk,1 37179,http://www.bassettroadsurgery.co.uk,1 37180,http://www.randjheating.com,1 37181,http://www.basingstokesofa.org.uk,1 37182,http://www.basingstokehealthwalks.org,1 37183,http://www.randscab.org.uk,1 37184,http://www.rapid-resolutions.com,1 37185,http://www.basilll.co.uk,1 37186,http://www.baselchildrenstrust.ch,1 37187,http://www.barwick-in-elmetschool.com,1 37188,http://www.barthropp.co.uk,1 37189,http://www.barrysheerman.co.uk,1 37190,http://www.barrymoirdrivingschool.co.uk,1 37191,http://www.barrykenward.co.uk,1 37192,http://www.ras.org.uk,1 37193,http://www.barrow6fc.org.uk,1 37194,http://www.barriebookkeeping.co.uk,1 37195,http://accamail.pangia.biz,1 37196,http://www.barrettpropertymanagement.co.uk,1 37197,http://www.barrettestates.com,1 37198,http://www.barqa.com,1 37199,http://www.ratingsurveyorsassociation.org,1 37200,http://www.barnstaplepeople.co.uk,1 37201,http://www.rationalskepticism.org,1 37202,http://www.rausvonzuhaus.de,1 37203,http://www.barnsleycab.org.uk,1 37204,http://www.rawlisa.co.uk,1 37205,http://www.raworths.co.uk,1 37206,http://www.barnetschoolofmotoring.org.uk,1 37207,http://www.barnetlaw.co.uk,1 37208,http://academysafebiketraining.com,1 37209,http://www.barnetcab.org.uk,1 37210,http://www.raymondlam-som.co.uk,1 37211,http://www.barnesandrobinson.com,1 37212,http://www.rayneressex.com,1 37213,http://www.barlingmagnaprimary.com,1 37214,http://www.barleycloseschool.co.uk,1 37215,http://www.barlboroughmedicalpractice.co.uk,1 37216,http://www.rays-schoolofmotoring.co.uk,1 37217,http://www.barkerslearners.co.uk,1 37218,http://www.barkadrivingschool.co.uk,1 37219,http://www.bargainpages.co.uk,1 37220,http://www.barfordschool.org,1 37221,http://www.barfilounge.com,1 37222,http://www.barcouncil.org.uk,1 37223,http://www.barcodeenergy.com,1 37224,http://www.rbdslf.org.uk,1 37225,http://www.barclaycardtravel.co.uk,1 37226,http://academy2.kreateit.co.uk,1 37227,http://www.barbarakeeley.co.uk,1 37228,http://www.bar-uk.org,1 37229,http://www.banthebomb.org,1 37230,http://www.banswer.com,1 37231,http://www.banksideprimary.co.uk,1 37232,http://www.bankofirelandmortgages.co.uk,1 37233,http://www.bankhousesurgery.co.uk,1 37234,http://www.bankhols.co.uk,1 37235,http://www.bankfrank.com,1 37236,http://www.rcahms.gov.uk,1 37237,http://www.bank-accounts-compared.co.uk,1 37238,http://www.bangorstudents.com,1 37239,http://www.rceuk.co.uk,1 37240,http://www.bangalorewalla.com,1 37241,http://www.banesdrivinginstructors.co.uk,1 37242,http://www.rcgp-curriculum.org.uk,1 37243,http://www.banburytowing.co.uk,1 37244,http://www.banbury.oxon.sch.uk,1 37245,http://www.banbridgegroupsurgery.co.uk,1 37246,http://www.bamt.org,1 37247,http://www.bamptonpreschool.co.uk,1 37248,http://www.bamburghschool.co.uk,1 37249,http://www.rcheliaddict.co.uk,1 37250,http://www.rchl.org.uk,1 37251,http://www.balshawlane.lancs.sch.uk,1 37252,http://www.ballyoranps.com,1 37253,http://www.balloonatics.org.uk,1 37254,http://www.ballettrust.org.uk,1 37255,http://www.ballet.co.uk,1 37256,http://www.ballaratgenealogy.org.au,1 37257,http://www.balanceonline.co.uk,1 37258,http://www.rcm.org.uk,1 37259,http://www.baileypunshon.co.uk,1 37260,http://www.rcog.org.uk,1 37261,http://www.rcslt.org,1 37262,http://abz.thehub.uk.baa.com,1 37263,http://www.badreputation.org.uk,1 37264,http://www.rdash.nhs.uk,1 37265,http://www.badgertara.co.uk,1 37266,http://www.badadia.co.uk,1 37267,http://www.bact-online.co.uk,1 37268,http://www.bacs-iam.org,1 37269,http://www.re-adjust.co.uk,1 37270,http://www.baconlanesurgery.co.uk,1 37271,http://www.re-heat.co.uk,1 37272,http://www.backpackers.com.tw,1 37273,http://abwf.wordpress.com,1 37274,http://www.backinjob.de,1 37275,http://www.background-checks.co.uk,1 37276,http://abuchak.net,1 37277,http://www.babytv.tv,1 37278,http://www.babylandcheltenham.co.uk,1 37279,http://www.babygoes2.com,1 37280,http://yourfuture.cityplym.ac.uk,1 37281,http://www.readamillionwords.org.uk,1 37282,http://www.babydrummer.co.uk,1 37283,http://www.readersdigest.co.uk,1 37284,http://www.babybmw.net,1 37285,http://www.readingandspellingchannel.com,1 37286,http://www.baby-kingdom.com,1 37287,http://www.readingschoolofmotoring.co.uk,1 37288,http://absolutewrite.com,1 37289,http://www.babcocktraining.co.uk,1 37290,http://www.readytoleave.com,1 37291,http://www.real-whitby.co.uk,1 37292,http://www.realco-op.co.uk,1 37293,http://www.realisingopportunities.ac.uk,1 37294,http://www.b5000drivingschool.heralded.co.uk,1 37295,http://www.realitydrivingschool.co.uk,1 37296,http://www.realitymod.com,1 37297,http://www.b2bwz.com,1 37298,http://www.b-r-s.org.uk,1 37299,http://www.b-live.com,1 37300,http://www.reallettings.com,1 37301,http://www.b-eat-carers.co.uk,1 37302,http://www.b-b-a.com,1 37303,http://www.azuresol.co.uk,1 37304,http://www.reallyhandy.uphero.com,1 37305,http://www.realsimulation.co.uk,1 37306,http://www.rebal.co.uk,1 37307,http://www.aylesburyautocare.co.uk,1 37308,http://www.aylesbury-driving-lessons.co.uk,1 37309,http://www.axlr8driving.co.uk,1 37310,http://www.axiscentre.com,1 37311,http://www.awp.nhs.uk,1 37312,http://www.awex.be,1 37313,http://www.recellyourbattery.com,1 37314,http://aboutknowsley.typepad.com,1 37315,http://www.recentcoupons.com,1 37316,http://about2.wordpress.com,1 37317,http://www.awardingva.org,1 37318,http://www.avsec.govt.nz,1 37319,http://www.avs.uk.com,1 37320,http://www.avrilbeats.com,1 37321,http://www.avrfreaks.net,1 37322,http://www.avonvalleyschool.co.uk,1 37323,http://yourmoney.co.uk,1 37324,http://www.avonlca.org.uk,1 37325,http://www.recoop.org.uk,1 37326,http://www.avoidstampduty.com,1 37327,http://www.avoiceforchildren.net,1 37328,http://www.avisit2scotland.co.uk,1 37329,http://www.avions-jodel.de,1 37330,http://www.aviazionecivile.com,1 37331,http://www.recycleandenvironmentalconcern.com,1 37332,http://www.averingcliffesom.yellsites.co.uk,1 37333,http://www.averingcliffesom.co.uk,1 37334,http://www.recyclefornorfolk.org.uk,1 37335,http://www.avenue-driving.co.uk,1 37336,http://www.red2greendriving.co.uk,1 37337,http://www.avantgardelewes.co.uk,1 37338,http://www.redambergo.com,1 37339,http://www.avantek.co.uk,1 37340,http://www.avanta.me.uk,1 37341,http://www.avaloncruises.co.uk,1 37342,http://abo.org.uk,1 37343,http://www.autoworkshop.com,1 37344,http://www.redbridgei.com,1 37345,http://www.redcafe.net,1 37346,http://www.redcarletting.co.uk,1 37347,http://www.autosurefit.co.uk,1 37348,http://www.autostop.sk,1 37349,http://www.autoreview.ru,1 37350,http://www.autonews.ru,1 37351,http://www.redconsultant.co.uk,1 37352,http://www.automaticpass.com,1 37353,http://www.automaticdrivinglessonsoldham.co.uk,1 37354,http://www.automaticdrivinglessons.com,1 37355,http://www.automaticdriverschool.co.uk,1 37356,http://www.automaticcarlessons.co.uk,1 37357,http://www.automaticandmobilityinstruction.co.uk,1 37358,http://www.automaticaccess.co.uk,1 37359,http://www.automatic-tuition.co.uk,1 37360,http://www.automatic-lessons.co.uk,1 37361,http://www.automatic-driving-lessons-edinburgh.co.uk,1 37362,http://www.automatic-driving-lessons-blackpool.co.uk,1 37363,http://www.autoleeds.com,1 37364,http://www.autoexpress.co.uk,1 37365,http://www.autocraftservices.co.uk,1 37366,http://www.autocareerz.com,1 37367,http://www.redfearns-solicitors.co.uk,1 37368,http://www.autoalloys.com,1 37369,http://www.auto-nrj.co.uk,1 37370,http://www.redhill.bromley.sch.uk,1 37371,http://www.autismberkshire.org.uk,1 37372,http://www.redhilldrivertraining.co.uk,1 37373,http://www.redkitedriving.co.uk,1 37374,http://www.austria.name,1 37375,http://able2pass.co.uk,1 37376,http://www.australianboardcommunity.com,1 37377,http://www.austrade.gov.au,1 37378,http://www.austinluce.co.uk,1 37379,http://www.aussiemove.com,1 37380,http://www.ausomejobs.com,1 37381,http://www.redkitehomecare.com,1 37382,http://www.aupairworld.net,1 37383,http://www.aupairfriends.com,1 37384,http://abituriendile.blogspot.com,1 37385,http://www.aupair-world.fr,1 37386,http://www.aupair-world.co.uk,1 37387,http://www.redmondschoolofmotoring.ie,1 37388,http://www.auk-mobility.com,1 37389,http://www.augsburger-allgemeine.de,1 37390,http://abinet,1 37391,http://www.redrepublik.net,1 37392,http://www.redroofssurgery.co.uk,1 37393,http://www.aubreyschoolofmotoring.co.uk,1 37394,http://www.redroseassurance.co.uk,1 37395,http://www.atticandloft.co.uk,1 37396,http://www.atthewheel.co.uk,1 37397,http://www.attermackenzie.co.uk,1 37398,http://www.atriumtech.com,1 37399,http://www.atpdrivinginstruction.co.uk,1 37400,http://www.redtapechallenge.cabinetoffice.gov.uk,1 37401,http://www.atob-driving.co.uk,1 37402,http://www.redundantman.com,1 37403,http://www.atlanticforum.co.uk,1 37404,http://www.redy2drive.co.uk,1 37405,http://www.reeddrivingschool.co.uk,1 37406,http://www.atlantabdpa.org,1 37407,http://www.ati.es,1 37408,http://www.athomemagazine.co.uk,1 37409,http://www.athey-educational.co.uk,1 37410,http://abhardy.co.uk,1 37411,http://www.reepham.childrencentre.org,1 37412,http://www.reevoo.com,1 37413,http://www.refdag.nl,1 37414,http://www.ataxia-east-scotland.org.uk,1 37415,http://www.atamemorial.org.uk,1 37416,http://www.refilwe.org,1 37417,http://www.at-home-care.co.uk,1 37418,http://www.refseek.com,1 37419,http://www.asylum-welcome.org,1 37420,http://abertilleryscouts.easysearch.org.uk,1 37421,http://www.astraownersnetwork.com,1 37422,http://www.refworks.com,1 37423,http://www.regbalmer.co.uk,1 37424,http://www.astburymarsden.com,1 37425,http://www.astbury-wren.co.uk,1 37426,http://www.regenda.org.uk,1 37427,http://www.assurances.cc,1 37428,http://www.associazione-sardegna.co.uk,1 37429,http://www.regendahomes.com,1 37430,http://aberdeenshire.theorytestpro.co.uk,1 37431,http://www.assetletting.com,1 37432,http://www.asset1st-customerclub.com,1 37433,http://www.asquithnurseries.co.uk,1 37434,http://aberdeenshire.gov.uk,1 37435,http://www.aspireplanning.co.uk,1 37436,http://www.regentestateagents.co.uk,1 37437,http://www.aspire.co.uk,1 37438,http://aberdeenimagyarok.co.uk,1 37439,http://www.aspira-ifa.co.uk,1 37440,http://www.aspinpark.n-yorks.sch.uk,1 37441,http://www.aspieinthefamily.com,1 37442,http://www.regenthousesurgery.co.uk,1 37443,http://10.10.1.20,1 37444,http://www.regentmobility.co.uk,1 37445,http://aberdeencity.gov.uk,1 37446,http://www.reghardware.com,1 37447,http://www.asktomdoc.com,1 37448,http://aberdeenbikeschool.com,1 37449,http://www.regos.hr,1 37450,http://www.askmycommunity.co.uk,1 37451,http://www.askmid.org.uk,1 37452,http://www.rehabjobfit.com,1 37453,http://www.reidifa.com,1 37454,http://www.reino-unido.net,1 37455,http://www.relate-bournemouth.org.uk,1 37456,http://www.reliableschoolofmotoring.co.uk,1 37457,http://www.askgranny.com,1 37458,http://www.reliabletuition.co.uk,1 37459,http://www.reloburo.com,1 37460,http://www.remmington.plus.com,1 37461,http://www.askaboutbusiness.org,1 37462,http://www.ask4gordondrivingschool.co.uk,1 37463,http://abdriving.co.uk,1 37464,http://www.ask.co.uk,1 37465,http://www.asiand8online.com,1 37466,http://www.ashton-under-lyne.com,1 37467,http://www.ashmountprimary.webeden.co.uk,1 37468,http://www.ashmoredrivingschool.co.uk,1 37469,http://www.ashmeadschool.org.uk,1 37470,http://www.rempstonevillage.org.uk,1 37471,http://www.ashleyschoolofmotoring.co.uk,1 37472,http://www.renault-bg.com,1 37473,http://www.ashgarage.co.uk,1 37474,http://abct.easysearch.org.uk,1 37475,http://www.rendalls.co.uk,1 37476,http://www.renewable-energy-solutions-southwest.co.uk,1 37477,http://www.ashford-driving-instructor.co.uk,1 37478,http://www.ashfieldmc.co.uk,1 37479,http://www.ashfield.notts.sch.uk,1 37480,http://www.renfrewshirecarers.com,1 37481,http://www.renniewelch.co.uk,1 37482,http://www.ashcrofttrailer.co.uk,1 37483,http://www.ashbyvetgroup.co.uk,1 37484,http://www.rentacarsrilanka.com,1 37485,http://www.ashburton-primary.devon.sch.uk,1 37486,http://www.ashbournecollege.co.uk,1 37487,http://www.ash.org.uk,1 37488,http://www.rentshielddirect.com,1 37489,http://www.ascot-drivingschool.co.uk,1 37490,http://www.asbestosclaimsolicitors.co.uk,1 37491,http://www.asbah.org,1 37492,http://www.asauk.org.uk,1 37493,http://www.asapschoolofmotoring.co.uk,1 37494,http://www.asap-uk.org,1 37495,http://www.asahi-net.or.jp,1 37496,http://www.asafiresystems.co.uk,1 37497,http://www.rerundorset.org,1 37498,http://www.arvydas.net,1 37499,http://www.research-lincs.org.uk,1 37500,http://www.arubadriving.co.uk,1 37501,http://www.reservoir-motors.co.uk,1 37502,http://www.artscouncil.org.uk,1 37503,http://www.arts.manchester.ac.uk,1 37504,http://www.resintegration.co.uk,1 37505,http://www.resolutionfoundation.org,1 37506,http://www.respectfire.co.uk,1 37507,http://www.restonwaste.co.uk,1 37508,http://www.articlesbase.com,1 37509,http://www.arthurgait.co.uk,1 37510,http://www.retailresource.biz,1 37511,http://www.artdes.salford.ac.uk,1 37512,http://www.reteinforma.it,1 37513,http://www.retirefit4life.com,1 37514,http://www.retirement-news.co.uk,1 37515,http://www.arraspeople.co.uk,1 37516,http://www.aronhalldrivingcollege.co.uk,1 37517,http://abclynx1,1 37518,http://www.retirementsolutions.co.uk,1 37519,http://www.arnesby.leics.sch.uk,1 37520,http://www.retreat.es,1 37521,http://www.retrobike.co.uk,1 37522,http://www.arma.org.uk,1 37523,http://www.arkwright.org.uk,1 37524,http://www.reuserecycleit.co.uk,1 37525,http://www.arkhealth.co.uk,1 37526,http://www.arim.co.uk,1 37527,http://www.arhiblog.ro,1 37528,http://www.reuters.com,1 37529,http://www.argylestreetmedicalcentre.co.uk,1 37530,http://www.rev-and-go.co.uk,1 37531,http://www.revera-consulting.co.uk,1 37532,http://www.reversedrivingschool.co.uk,1 37533,http://www.argentina.gob.ar,1 37534,http://www.revkites.com,1 37535,http://www.area4parents.co.uk,1 37536,http://www.revolution-driving.co.uk,1 37537,http://www.arcor.de,1 37538,http://www.archway-motors.co.uk,1 37539,http://www.archives.norfolk.gov.uk,1 37540,http://www.archives.gov,1 37541,http://www.archives.com,1 37542,http://www.archive.defra.gov.uk,1 37543,http://www.revtimhall.com,1 37544,http://www.archimuse.com,1 37545,http://www.rewardingmemories.com,1 37546,http://www.reworxstyling.com,1 37547,http://www.arch-fp.co.uk,1 37548,http://www.rf.hk,1 37549,http://www.arc-dtc.co.uk,1 37550,http://www.rfasecurity.co.uk,1 37551,http://www.rgdrivingschool.co.uk,1 37552,http://www.aranservices.co.uk,1 37553,http://www.rgfrancis.co.uk,1 37554,http://www.arabnwa3m.com,1 37555,http://www.arabiyat.com,1 37556,http://www.ar.gov.ru,1 37557,http://www.rgr-garages.co.uk,1 37558,http://www.aptfinancialadvice.co.uk,1 37559,http://www.rhg.co.uk,1 37560,http://www.apsdrivingschool.co.uk,1 37561,http://www.apr-agency.co.uk,1 37562,http://www.rhpedia.wikispaces.net,1 37563,http://www.ribblevalleytyreandautoservices.co.uk,1 37564,http://www.appletonwitheaton.org.uk,1 37565,http://www.appletonschool.co.uk,1 37566,http://www.applegarthdaynurseries.com,1 37567,http://www.appledrivingschool.co.uk,1 37568,http://www.appledriving.co.uk,1 37569,http://www.applebymagna.org.uk,1 37570,http://www.ribstore.co.uk,1 37571,http://www.apparelyzed.com,1 37572,http://www.apolloschoolofmotoring.com,1 37573,http://www.apollodrivingschool.co.uk,1 37574,http://www.apoint.co.uk,1 37575,http://www.apmwebdesign.co.uk,1 37576,http://www.aplusenglish.co.uk,1 37577,http://www.aph.gov.au,1 37578,http://abbeyridertraining.co.uk,1 37579,http://www.apex-motorcycletraining.co.uk,1 37580,http://www.richardbyrom.com,1 37581,http://www.apbusinesscontacts.com,1 37582,http://www.apat.com,1 37583,http://www.apass4u.co.uk,1 37584,http://www.richarddavydayadi.com,1 37585,http://www.ap-executive.com,1 37586,http://www.aop.org.uk,1 37587,http://www.aona.co.uk,1 37588,http://www.aolrecherche.aol.fr,1 37589,http://abbeylearners.com,1 37590,http://www.richardgibbsdrivingschool.co.uk,1 37591,http://www.anywhere.co.uk,1 37592,http://www.anytypeofloan.co.uk,1 37593,http://www.anxietyfreechildren.com,1 37594,http://www.antya.com,1 37595,http://www.antsdrivingschool.co.uk,1 37596,http://www.antonsuk.co.uk,1 37597,http://www.antoninfantschool.com,1 37598,http://www.anthonywebb.co.uk,1 37599,http://www.anthonys-travel.co.uk,1 37600,http://www.richardsrightturn.co.uk,1 37601,http://www.anthonyisd.net,1 37602,http://www.anthonyflint.co.uk,1 37603,http://yourmoney.moneyadviceservice.org.uk:80,1 37604,http://www.answeritshop.com,1 37605,http://www.answerdrivingschool.com,1 37606,http://www.richardssom.com,1 37607,http://www.anstonschoolofmotoring.co.uk,1 37608,http://www.richardtaylordriving.com,1 37609,http://www.anotherbookmark.com,1 37610,http://www.anonlinks.com,1 37611,http://www.annuityplan.co.uk,1 37612,http://www.annuitiescomparison.co.uk,1 37613,http://www.annuities-online.com,1 37614,http://aardvarkdriving.com,1 37615,http://www.annegoulddrivingtuition.co.uk,1 37616,http://www.annaward.co.uk,1 37617,http://www.annaross-drivingschool.co.uk,1 37618,http://www.annaraccoon.com,1 37619,http://www.annakennedyonline.com,1 37620,http://www.richdavies.com,1 37621,http://www.richlandcollege.edu,1 37622,http://www.angusgold.com,1 37623,http://www.richmondandtwickenhamtimes.co.uk,1 37624,http://www.ricksdriving.com,1 37625,http://www.anglodutchservices.co.uk,1 37626,http://www.anglodrivingcentre.co.uk,1 37627,http://www.ricksdrivingschoolluton.co.uk,1 37628,http://yourmortgagefeatures.wordpress.com,1 37629,http://www.rideaway.biz,1 37630,http://aandmschoolofmotoring.com,1 37631,http://www.ridesafebacksafe.co.uk,1 37632,http://www.anglianes.co.uk,1 37633,http://www.angliai-magyarok.co.uk,1 37634,http://www.anglia4u.pl,1 37635,http://www.anglia.ac.uk:80,1 37636,http://www.ridgwaydriving.com,1 37637,http://www.riding-for-disabled.org.uk,1 37638,http://www.angleseydrivingschool.com,1 37639,http://www.ridingabike.co.uk,1 37640,http://www.ridingsafely.net,1 37641,http://www.angelislington.net,1 37642,http://www.angelakimberley.co.uk,1 37643,http://www.andywalkersdrivingschool.co.uk,1 37644,http://www.andysdrivingschool.co.uk,1 37645,http://www.andys-driving-school.co.uk,1 37646,http://www.andypreece.co.uk,1 37647,http://www.ridlerwebster.co.uk,1 37648,http://www.ridleyexhausts.com,1 37649,http://www.andyleesom.co.uk,1 37650,http://www.andyhurley-adi.com,1 37651,http://www.andyeaston.net,1 37652,http://www.andrewusher.co.uk,1 37653,http://www.right-track-driving.co.uk,1 37654,http://aaf.easysearch.org.uk,1 37655,http://www.andrews-consulting.co.uk,1 37656,http://www.andrewprentice.co.uk,1 37657,http://www.rightsofwomen.org.uk,1 37658,http://www.andrearantes.eti.br,1 37659,http://www.andoverlessons.co.uk,1 37660,http://www.andoverdrivinglessons.co.uk,1 37661,http://www.andoverdriving.co.uk,1 37662,http://www.andovercab.org.uk,1 37663,http://www.andersonsheatingandgas.co.uk,1 37664,http://aadduk.wordpress.com,1 37665,http://www.rightwaydriving.co.uk,1 37666,http://www.rightwaydrivingschool.co.uk,1 37667,http://www.rightwaydrivingtuition.com,1 37668,http://www.rightwaymotoring.com,1 37669,http://www.rightwaywithdonna.co.uk,1 37670,http://www.rigorousintuition.ca,1 37671,http://www.ringing.info,1 37672,http://www.analoxsafetytraining.com,1 37673,http://www.ringley.co.uk,1 37674,http://www.amvo.org,1 37675,http://aadduk.proboards.com,1 37676,http://www.ams.at,1 37677,http://www.ampfieldcofeprimary.co.uk,1 37678,http://www.amisafe.co.uk,1 37679,http://www.amiracollections.co.uk,1 37680,http://www.ripleyschoolofmotoring.co.uk,1 37681,http://www.amimad.org.uk,1 37682,http://www.amilo-forum.com,1 37683,http://www.amigospreschool.btck.co.uk,1 37684,http://www.amicusrecruit.com,1 37685,http://www.amesburyarcher.wilts.sch.uk,1 37686,http://www.ripleytowncouncil.org.uk,1 37687,http://www.ambulancemotorcycleclub.150m.com,1 37688,http://www.ambulance.wales.nhs.uk,1 37689,http://www.ambulance-life.co.uk,1 37690,http://www.ambrosedrivingschool.co.uk,1 37691,http://www.rippleparishcouncil.org.uk,1 37692,http://www.risingdampsolutions.co.uk,1 37693,http://www.amberleycattery.co.uk,1 37694,http://www.amberhomecarers.com,1 37695,http://www.amberdrivinglessons.co.uk,1 37696,http://www.amberdriving.co.uk,1 37697,http://www.amber-jobs.co.uk,1 37698,http://www.amber-drive.com,1 37699,http://www.ambassador-line-group.com,1 37700,http://www.ambadrive.co.uk,1 37701,http://www.risingsuntrust.org,1 37702,http://www.risleydaynursery.co.uk,1 37703,http://www.amazing-grades.com,1 37704,http://www.amazines.com,1 37705,http://www.rismove.co.uk,1 37706,http://www.amateurphotographer.co.uk,1 37707,http://www.amandasschoolofmotoring.co.uk,1 37708,http://www.amafhh.co.uk,1 37709,http://www.alysonmcfarlane.co.uk,1 37710,http://www.alwoodleyextendedservices.com,1 37711,http://www.river-city.co.uk,1 37712,http://www.alton.gov.uk,1 37713,http://www.riverflies.org,1 37714,http://www.riverfordenvironment.co.uk,1 37715,http://www.alpin2drive.com,1 37716,http://www.alphaimpact.com,1 37717,http://www.alphadriver.co.uk,1 37718,http://www.alphacouriers.com,1 37719,http://www.alpha1drivingschool.co.uk,1 37720,http://www.alpha.imago3.com,1 37721,http://www.riversidenetworks.co.uk,1 37722,http://www.riversiderecruitment.co.uk,1 37723,http://www.almshouseandsandal.co.uk,1 37724,http://www.almostimpartialguide.co.uk,1 37725,http://www.riversidesurgery.co.uk,1 37726,http://www.almanzoraforum.com,1 37727,http://www.allways-som.com,1 37728,http://www.alltogethernow.org.uk,1 37729,http://www.allthingsroyal.nl,1 37730,http://www.allthingsbritish.net,1 37731,http://www.alltheweb.com,1 37732,http://www.riverview-infant.com,1 37733,http://www.allstardrivertraining.co.uk,1 37734,http://www.allspecialkids.org,1 37735,http://www.allsaints.wandsworth.sch.uk,1 37736,http://www.allsaints.notts.sch.uk,1 37737,http://www.allsaints.childrencentre.org,1 37738,http://www.allsaints-bednall.org.uk,1 37739,http://www.riverview-junior.kent.sch.uk,1 37740,http://www.allplus.com,1 37741,http://www.riviera-weddings.co.uk,1 37742,http://www.allpassdrivertraining.com,1 37743,http://www.allotments4all.co.uk,1 37744,http://www.allotments-uk.com,1 37745,http://www.rivierareporter.com,1 37746,http://www.allkitcar.com,1 37747,http://www.alliotts.com,1 37748,http://www.rjcurrie.co.uk,1 37749,http://www.alliedmobility.com,1 37750,http://www.alliancebernstein.com,1 37751,http://yousearchpage.com,1 37752,http://www.allerdrive.co.uk,1 37753,http://www.allenschoolofmotoring.co.uk,1 37754,http://www.rldrivertraining.com,1 37755,http://www.allen-walden.co.uk,1 37756,http://www.rldt.co.uk,1 37757,http://aa.mg5.mail.yahoo.com,1 37758,http://www.alldayofficesupplies.co.uk,1 37759,http://www.rlelaw.com,1 37760,http://www.allclear4you.com,1 37761,http://www.allbrooksom.com,1 37762,http://www.allatsea.com,1 37763,http://www.rllmukforum.com,1 37764,http://www.rlmdt.co.uk,1 37765,http://www.allaboutorkney.com,1 37766,http://www.rmdaccountancysolutions.co.uk,1 37767,http://www.all4freeuk.co.uk,1 37768,http://www.rmdrivingschool.com,1 37769,http://www.alistairsdrivingschool.co.uk,1 37770,http://www.alisonsdrivinglessons.co.uk,1 37771,http://www.alienink.co.uk,1 37772,http://www.alicestevens.coventry.sch.uk,1 37773,http://www.rmghelp.co.uk,1 37774,http://www.alicepod.com,1 37775,http://www.rmh-training.co.uk,1 37776,http://www.rmjcs.com,1 37777,http://www.rnbtv.com,1 37778,http://10.10.1.14:15871,1 37779,http://www.alertdrive.co.uk,1 37780,http://www.alert-som.co.uk,1 37781,http://www.aldrive.co.uk,1 37782,http://www.aldridge-web.com,1 37783,http://www.aldenham.gov.uk,1 37784,http://www.aldbourne.info,1 37785,http://www.road-safety.org.uk,1 37786,http://www.road-smith.co.uk,1 37787,http://www.road-to-glory.co.uk,1 37788,http://www.albrightonprimary.com,1 37789,http://www.alboraaq.com,1 37790,http://www.albionmedicalpractice.co.uk,1 37791,http://www.albionhigh.co.uk,1 37792,http://www.albanyhousesurgeryworcester.co.uk,1 37793,http://www.albadrivingschool.com,1 37794,http://www.alaturkalondra.com,1 37795,http://www.alastairhignell.com,1 37796,http://www.roadcraft-som.co.uk,1 37797,http://www.alansdrivinglessonsnorwich.co.uk,1 37798,http://www.alanprestidge.ouralbert.com,1 37799,http://aa.mc393.mail.yahoo.com,1 37800,http://www.alanhalldriving.com,1 37801,http://www.alanfrancis.co.uk,1 37802,http://www.alandalus111.com,1 37803,http://youthoria.org,1 37804,http://www.alan-marlow.co.uk,1 37805,http://www.akikodev.com,1 37806,http://www.roadrunnerdrivertraining.com,1 37807,http://www.ak-427.co.uk,1 37808,http://www.ajsecure.co.uk,1 37809,http://www.ajmarsden.co.uk,1 37810,http://www.ajm-schoolofmotoring.co.uk,1 37811,http://www.roadsafetygb.org.uk,1 37812,http://www.airwork.nl,1 37813,http://www.airpollution.eastriding.gov.uk,1 37814,http://www.roadsafetywales.co.uk,1 37815,http://www.airlinecomplaints.org,1 37816,http://www.aireworthvets.co.uk,1 37817,http://www.airevalleyleeds.com,1 37818,http://www.airevalleyleeds.co.uk,1 37819,http://www.roadtrafficlaw.com,1 37820,http://www.roadweb.org.uk,1 37821,http://www.aiming2drive.com,1 37822,http://www.roadwisedriving.co.uk,1 37823,http://www.aimhighersurrey.org.uk,1 37824,http://yp.com.hk,1 37825,http://www.aimhighergreatermanchester.com,1 37826,http://www.roadwisedrivingschool.co.uk,1 37827,http://www.aimdrive.co.uk,1 37828,http://www.aigburth.liverpool.sch.uk,1 37829,http://www.aidinfo.org,1 37830,http://www.aidemploi.com,1 37831,http://www.roadwisedrivingschool.uk.com,1 37832,http://www.ahmlr.gov.uk,1 37833,http://www.ahmadwadan.com,1 37834,http://www.ahc-midlands.org.uk,1 37835,http://www.agsmanagement.co.uk,1 37836,http://www.roathparkprimaryschool.co.uk,1 37837,http://www.agnewdrivingschool.co.uk,1 37838,http://www.agma.gov.uk,1 37839,http://www.rob-tomlinson.com,1 37840,http://www.agilenation.co.uk,1 37841,http://www.agherat.plus.com,1 37842,http://www.ageukincontinence.co.uk,1 37843,http://www.ageukdevon.co.uk,1 37844,http://www.robbrowndrivingtuition.com,1 37845,http://10.10.1.12,1 37846,http://www.agentnanny.co.uk,1 37847,http://www.ageing.ox.ac.uk,1 37848,http://www.robedwards-adi.co.uk,1 37849,http://www.ageconcernluton.org.uk,1 37850,http://www.ageconcernhavering.org.uk,1 37851,http://www.ageconcernbasingstoke.org.uk,1 37852,http://aa.mc1617.mail.yahoo.com,1 37853,http://www.agecarecosta.org,1 37854,http://www.ageandknowledge.ie,1 37855,http://www.agcc.co.uk,1 37856,http://www.afzal-driving-lessons.co.uk,1 37857,http://www.afy-online.com,1 37858,http://www.afteradoption.org.uk,1 37859,http://www.afpe.org.uk,1 37860,http://www.affinitydrivingschools.co.uk,1 37861,http://www.affiliates4u.com,1 37862,http://www.afcrossroads.com,1 37863,http://www.aeroflight.co.uk,1 37864,http://www.aereimilitari.org,1 37865,http://www.robertthornefcca.co.uk,1 37866,http://www.robertwalters.co.uk,1 37867,http://www.robgwilliams.co.uk,1 37868,http://www.aeberli.com,1 37869,http://www.aeb.gov.br,1 37870,http://www.adzuna.co.uk,1 37871,http://www.adwords-magic.biz,1 37872,http://www.adwickschoolofmotoring.co.uk,1 37873,http://www.rochdalesixthformcollege.co.uk,1 37874,http://www.advocate4health.org.uk,1 37875,http://www.rochester.anglican.org,1 37876,http://www.adviserhound.com,1 37877,http://www.rockfieldmotorservices.co.uk,1 37878,http://www.advicenow.org.uk.,1 37879,http://www.rocklands.staffs.sch.uk,1 37880,http://www.adviceni-learningonline.net,1 37881,http://www.adviceleeds.org.uk,1 37882,http://www.rockznrutz.com,1 37883,http://www.advicehubkc.org,1 37884,http://www.adviceguide.org.uk:80,1 37885,http://www.rocmp.org,1 37886,http://www.rodina.cz,1 37887,http://www.adventuretraveller.co.uk,1 37888,http://www.adventurebikerider.co.uk,1 37889,http://www.rogate.w-sussex.sch.uk,1 37890,http://www.rogers-drivingschool.co.uk,1 37891,http://www.rollemedicalpartnership.co.uk,1 37892,http://www.adultsaffectedbyadoption-norcap.org.uk,1 37893,http://www.adultdyslexiaservices.co.uk,1 37894,http://www.adultcollegemoodle.lbbd.gov.uk,1 37895,http://www.romania-uk.com,1 37896,http://www.romseyprimary.co.uk,1 37897,http://www.ads-infinitum.co.uk,1 37898,http://www.ads-drivingschool.co.uk,1 37899,http://www.rooleylanemedicalcentre.co.uk,1 37900,http://aa.mc1614.mail.yahoo.com,1 37901,http://www.adriangarside.co.uk,1 37902,http://www.adrianbeckett.co.uk,1 37903,http://www.adrem.uk.com,1 37904,http://www.adp.org.uk,1 37905,http://www.adore.plus.com,1 37906,http://www.rootsontheweb.com,1 37907,http://www.roperpenberthy.co.uk:2095,1 37908,http://www.adoptionsearchreunion.org.uk.,1 37909,http://www.roperswalkbarns.co.uk,1 37910,http://www.rose-street.kent.sch.uk,1 37911,http://www.rose-trailers.co.uk,1 37912,http://www.admiraltechnology.com,1 37913,http://www.admiralschoolofmotoring.co.uk,1 37914,http://www.admiral.com,1 37915,http://www.admiral-driving-school.co.uk,1 37916,http://www.adm.heacademy.ac.uk,1 37917,http://www.roseburridge.com,1 37918,http://www.aditai.co.uk,1 37919,http://www.adios.org.uk,1 37920,http://www.adifferentopinion.net,1 37921,http://www.adi-training.com,1 37922,http://www.adhdandyou.ie,1 37923,http://www.roseeducation.co.uk,1 37924,http://www.rosemellin.cornwall.sch.uk,1 37925,http://aa.mc1613.mail.yahoo.com,1 37926,http://www.adeptdrive.co.uk,1 37927,http://www.adenhill.com,1 37928,http://www.roshni.org.uk,1 37929,http://yp.direct.gov.uk/diplomas,1 37930,http://www.addstudy.org,1 37931,http://www.adcet.edu.au,1 37932,http://www.adamstevens.net,1 37933,http://www.adamstaylorsolicitors.co.uk,1 37934,http://www.adamsmithdrive.co.uk,1 37935,http://www.rossmartin.co.uk,1 37936,http://www.adamafriyie.org,1 37937,http://ypb.easysearch.org.uk,1 37938,http://www.ad.nl,1 37939,http://www.acusafe.com,1 37940,http://www.rotary1120.org,1 37941,http://www.actuariesforlawyers.com,1 37942,http://www.rothaymanor.co.uk,1 37943,http://www.activitiesinscotland.com,1 37944,http://www.rothburyparishcouncil.co.uk,1 37945,http://www.activeplaygrounds.co.uk,1 37946,http://www.activending.co.uk,1 37947,http://www.activedrivingsolutions.com,1 37948,http://www.rotherhamcareers.com,1 37949,http://www.active-heat.co.uk,1 37950,http://aa.mc1601.mail.yahoo.com,1 37951,http://www.actiontoday.co.uk,1 37952,http://www.actiononaccess.org,1 37953,http://www.rotherhitheprimary.com,1 37954,http://www.rothtrans.com,1 37955,http://www.rothwell.childrencentre.org,1 37956,http://www.acsw.org.uk,1 37957,http://www.acsos.co.uk,1 37958,http://www.acsofficesolutions.com,1 37959,http://www.acs.org.uk,1 37960,http://www.acronymgeek.com,1 37961,http://www.acronym.org.uk,1 37962,http://www.acromedia.org.uk,1 37963,http://www.acriss.org,1 37964,http://www.roundtownnews.co.uk,1 37965,http://www.acorngarage.co.uk,1 37966,http://www.routesintolanguages.ac.uk,1 37967,http://www.acnorfolk.org.uk,1 37968,http://www.routestoemployment.co.uk,1 37969,http://www.routeways.org.uk,1 37970,http://www.aclc.co.uk,1 37971,http://www.routledge.com,1 37972,http://www.roverp4dg.org.uk,1 37973,http://www.rowanpark.co.uk,1 37974,http://www.achievementspecialists.co.uk,1 37975,http://www.rowans.herts.sch.uk,1 37976,http://www.acevo.org.uk,1 37977,http://www.acert2pass.co.uk,1 37978,http://www.rowanspreschool.co.uk,1 37979,http://www.rowanssurgery.co.uk,1 37980,http://www.acep.supanet.com,1 37981,http://aa.mc1113.mail.yahoo.com,1 37982,http://www.acendenactiongroup.co.uk,1 37983,http://www.roxbourneinfantschool.co.uk,1 37984,http://www.aceggleton.co.uk,1 37985,http://www.acedrivinginstructor.co.uk,1 37986,http://www.royalblind.org,1 37987,http://www.royaldeaf.org.uk,1 37988,http://www.accountingissue.info,1 37989,http://www.accountingandgeneral.co.uk,1 37990,http://www.accordr.org,1 37991,http://www.accordklubpolska.pl,1 37992,http://www.accord-driving-school.co.uk:80,1 37993,http://www.accord-driving-school.co.uk,1 37994,http://www.acconadriving.co.uk,1 37995,http://www.accomplishtravel.co.uk,1 37996,http://www.royedwardsadi.com,1 37997,http://a4t.easysearch.org.uk,1 37998,http://www.roytoncarrepair.co.uk,1 37999,http://a4ecareers.com,1 38000,http://www.rpclaims.com,1 38001,http://www.acclaimdrive.com,1 38002,http://www.accidentsinnews.com,1 38003,http://www.accident-claim-solicitors.co.uk,1 38004,http://www.rpldriving.co.uk,1 38005,http://www.rpm-malvern.co.uk,1 38006,http://a2z-english.com,1 38007,http://www.accessnorton.com,1 38008,http://www.accessmystudies.com,1 38009,http://www.accessiweb.org,1 38010,http://www.accessforpeople.co.uk,1 38011,http://www.accessentertainment.co.uk,1 38012,http://www.accessdorset.org.uk,1 38013,http://www.accessdda.com,1 38014,http://www.accesscentral.co.uk,1 38015,http://www.accessbritain.co.uk,1 38016,http://www.rrconsultancy.org,1 38017,http://www.rrsport.co.uk,1 38018,http://www.access-your-future.co.uk,1 38019,http://a2bdrivertraining.theorytestpro.co.uk,1 38020,http://www.access-legal.co.uk,1 38021,http://www.access-ability.org,1 38022,http://www.rsabi.org.uk,1 38023,http://www.accentgroup.org,1 38024,http://www.accelerate2pass.co.uk,1 38025,http://www.rsabroker.com,1 38026,http://www.accalon.co.uk,1 38027,http://www.acastersteel.co.uk,1 38028,http://www.acasefortreason.org,1 38029,http://www.rsacademy.co.uk,1 38030,http://www.rsautosltd.com,1 38031,http://www.rsc.co.uk,1 38032,http://www.acallen.co.uk,1 38033,http://www.acadvertiser.co.uk,1 38034,http://www.rsct.org.uk,1 38035,http://a2b.theorytestpro.co.uk,1 38036,http://www.academyformarketing.com,1 38037,http://a2b.org.uk,1 38038,http://www.academydrivingschool.co.uk,1 38039,http://www.academy360it.co.uk,1 38040,http://www.academy10.com,1 38041,http://www.academy.me.uk,1 38042,http://www.rsdriving.co.uk,1 38043,http://www.rsfdrivingschool.co.uk,1 38044,http://www.absolutewrite.com,1 38045,http://www.absolutespainforum.com,1 38046,http://www.absoluteproperty.co.uk,1 38047,http://a1dt.theorytestpro.co.uk,1 38048,http://www.absolutelyrecruitment.co.uk,1 38049,http://www.rsfinder.info,1 38050,http://www.absoluteinsulation-leicester.co.uk,1 38051,http://www.absolutehss.co.uk,1 38052,http://www.absoluteastronomy.com,1 38053,http://www.absolute-interpreting.co.uk,1 38054,http://www.absnet.org.uk,1 38055,http://www.absafe.org.uk,1 38056,http://www.abs-som.co.uk,1 38057,http://www.rsitips.com,1 38058,http://www.aboutsafety.com,1 38059,http://www.about2drive.co.uk,1 38060,http://www.abmbuilding.co.uk,1 38061,http://www.ableto.co.uk,1 38062,http://www.rtdrivingschool.co.uk,1 38063,http://www.rthdrivingschool.com,1 38064,http://www.abledrivertraininguk.co.uk,1 38065,http://www.abisresources.com,1 38066,http://www.abintegro.com,1 38067,http://www.rtpiconsultants.co.uk,1 38068,http://www.abilitystore.co.uk,1 38069,http://www.rtsuk.org,1 38070,http://www.abilitymagazine.org.uk,1 38071,http://www.abilitydrivingtuition.co.uk,1 38072,http://www.abilitydrivertraining.co.uk,1 38073,http://www.ability2drive.co.uk,1 38074,http://www.abilities.ca,1 38075,http://www.abikecentral.com,1 38076,http://www.ru.ac.za,1 38077,http://www.ruardeancommunity.btck.co.uk,1 38078,http://www.rubberpal.com,1 38079,http://www.rubicontrainingpractises.co.uk,1 38080,http://www.rubyenglish.co.uk,1 38081,http://www.aberdeeninmind.org,1 38082,http://www.rugbyeas.co.uk,1 38083,http://www.rugbyfuneralhome.co.uk,1 38084,http://www.aberdeen-driving-instructor.co.uk,1 38085,http://www.aberdareonline.co.uk,1 38086,http://www.rugbyschoolofmotoring.co.uk,1 38087,http://www.rugeleydrivingschool.co.uk,1 38088,http://a1assessment.co.uk,1 38089,http://www.rumcars.org,1 38090,http://www.abdriving.co.uk,1 38091,http://www.runcornandwidnesweeklynews.co.uk,1 38092,http://www.abd.org.uk,1 38093,http://www.abcsom.biz,1 38094,http://www.abcgenealogy.com,1 38095,http://www.abcdrivingtuition.co.uk,1 38096,http://www.abcdrivingschool.org.uk,1 38097,http://a1amber.com,1 38098,http://www.abcdemploi.com,1 38099,http://www.abc4driving.co.uk,1 38100,http://www.abbreviation.biz,1 38101,http://www.abbotbeyne.net,1 38102,http://www.abbeylettings.co.uk,1 38103,http://www.abbeykl.co.uk,1 38104,http://www.abbeyfield.com,1 38105,http://www.ruralactioneast.org.uk,1 38106,http://www.abberleyparish.org.uk,1 38107,http://www.abatoolsforschools.org.uk,1 38108,http://10.10.0.1:8000,1 38109,http://www.abarthdrivingschool.co.uk,1 38110,http://www.abarcassolutions.co.uk,1 38111,http://www.ruralgateway.org.uk,1 38112,http://www.abacushomecarebromley.co.uk,1 38113,http://www.rushcliffe.notts.sch.uk,1 38114,http://www.rushcroftprimary.com,1 38115,http://www.aardvarkchildcare.co.uk,1 38116,http://www.aaod.fs4.co.uk,1 38117,http://www.rushdenmedicalcentre.com,1 38118,http://www.aandjlawrence.co.uk,1 38119,http://www.aamet.org,1 38120,http://www.aaia.org.uk,1 38121,http://www.aadrivetech.com,1 38122,http://www.aad.btck.co.uk,1 38123,http://www.aa-driving.co.uk,1 38124,http://www.a4ewales.co.uk,1 38125,http://www.a4-learners.co.uk,1 38126,http://www.rushworth-som.co.uk,1 38127,http://www.a2z-english.com,1 38128,http://www.ruslon.com,1 38129,http://www.a2gassessments.co.uk,1 38130,http://a-surepass.co.uk,1 38131,http://www.a2bdrive.co.uk,1 38132,http://www.a2b.org.uk,1 38133,http://www.a1motoringschool.com,1 38134,http://www.russellpp.co.uk,1 38135,http://www.a1ltd.co.uk,1 38136,http://www.a1drivertraining.co.uk,1 38137,http://www.russiancyprus.info,1 38138,http://www.russians-in-london.co.uk,1 38139,http://www.a-stardriving.co.uk,1 38140,http://www.a-star-drivingschool.co.uk,1 38141,http://www.a-s-h.co.uk,1 38142,http://www.a-s-a-p.org.uk,1 38143,http://www.a-quick-sale.co.uk,1 38144,http://www.a-n.co.uk,1 38145,http://www.russianwomanjournal.ru,1 38146,http://www.rustrashflyers.byethost32.com,1 38147,http://www.rutc.ac.uk,1 38148,http://www.99searchengines.com,1 38149,http://www.99percent.org.uk,1 38150,http://www.rutlandprimarypartners.com,1 38151,http://www.96147.com,1 38152,http://www.rvadirectory.org.uk,1 38153,http://www.90searchengines.com,1 38154,http://www.rvoc.co.uk,1 38155,http://www.8thashfordscouts.co.uk,1 38156,http://www.87871.com,1 38157,http://www.85searchengines.com,1 38158,http://www.80searchengines.com,1 38159,http://www.7parkstreet.co.uk,1 38160,http://www.77searchengines.com,1 38161,http://www.75ztcommunity.co.uk,1 38162,http://www.75andztclub.com,1 38163,http://www.750turbo.com,1 38164,http://www.727carco.co.uk,1 38165,http://www.70searchengines.com,1 38166,http://www.6th-gear.co.uk,1 38167,http://www.65searchengines.com,1 38168,http://www.5thgeardrivingschool.com,1 38169,http://www.5thgeardrivingschool.co.uk,1 38170,http://www.5starluxurytravel.co.uk,1 38171,http://www.5stardrivingacademy.co.uk,1 38172,http://www.5ivesdrivingschool.com,1 38173,http://www.5blandamare.blogspot.com,1 38174,http://www.5989motorcycletraining.co.uk,1 38175,http://www.50searchengines.com,1 38176,http://www.rwsdriving.co.uk,1 38177,http://www.4yousound.nl,1 38178,http://www.ryan-care.co.uk,1 38179,http://www.4xforum.net,1 38180,http://www.4x4mediation.com,1 38181,http://www.4u2drive.info,1 38182,http://www.4teen9teen.co.uk,1 38183,http://www.ryansteeledriving.co.uk,1 38184,http://www.rydefirestation.co.uk,1 38185,http://www.4let.co.uk,1 38186,http://www.rydersdrivingacademy.co.uk,1 38187,http://www.ryeconservationsociety.org,1 38188,http://www.4dp.com,1 38189,http://www.4dinteractive.co.uk,1 38190,http://www.41searchengines.com,1 38191,http://www.ryedalecarers.org.uk,1 38192,http://www.3shiresdrivingschool.com,1 38193,http://www.3r-net.com,1 38194,http://www.ryton-breakers.co.uk,1 38195,http://ypla.gov.uk,1 38196,http://www.3dmotorcycletraining.co.uk,1 38197,http://www.rytoncs.co.uk,1 38198,http://www.3cdriving.co.uk,1 38199,http://www.s143834039.websitehome.co.uk,1 38200,http://www.39searchengines.com,1 38201,http://www.2young2die.org.uk,1 38202,http://www.s163068045.websitehome.co.uk,1 38203,http://www.s1jobs.com,1 38204,http://www.2teach.biz,1 38205,http://www.2shrop.net,1 38206,http://www.2shires.org.uk,1 38207,http://www.s217437467.websitehome.co.uk,1 38208,http://www.2lingual.com,1 38209,http://www.2irecruit.co.uk,1 38210,http://www.2fast2soon.com,1 38211,http://www.2facts.com.ezproxy.cameron.edu,1 38212,http://www.2drive.org.uk,1 38213,http://www.2drive.co.uk,1 38214,http://www.2degreesnetwork.com,1 38215,http://www.sa-ms.co.uk,1 38216,http://www.2cvgb.co.uk,1 38217,http://www.2bone.com,1 38218,http://www.saafe.info,1 38219,http://www.26searchengines.com,1 38220,http://www.25searchengines.com,1 38221,http://www.24hourloan.co.uk,1 38222,http://www.sabeenasdrivingschool.co.uk,1 38223,http://www.247propertyletting.co.uk,1 38224,http://www.247professionalhealth.com,1 38225,http://98.139.212.7,1 38226,http://www.247-homecare-services-ltd.co.uk,1 38227,http://www.sacc.notts.sch.uk,1 38228,http://www.2345.cn,1 38229,http://www.220soft.com,1 38230,http://www.21stcenturychallenges.org,1 38231,http://www.sacredheart-baguley.manchester.sch.uk,1 38232,http://www.20searchengines.com,1 38233,http://www.sacredheart-chorley.lancs.sch.uk,1 38234,http://www.2020selection.co.uk,1 38235,http://www.2007-2013.eu,1 38236,http://www.2-move.co.uk,1 38237,http://www.2-drive.co.uk,1 38238,http://www.sacredheart-high.org,1 38239,http://www.sacredheart.hillingdon.sch.uk,1 38240,http://www.1ststopclaimsco.co.uk,1 38241,http://www.1stpracticemanagement.co.uk,1 38242,http://www.saddsa.co.uk,1 38243,http://www.saeuk.com,1 38244,http://www.1stlearntodrive.co.uk,1 38245,http://www.safariindia.co.uk,1 38246,http://www.1stimepass.co.uk,1 38247,http://www.1stgeardrivinglessons.co.uk,1 38248,http://www.1stdriver.org,1 38249,http://www.safeadult.co.uk,1 38250,http://www.safeandsecuretraining.co.uk,1 38251,http://www.1stcss.co.uk,1 38252,http://www.safechild.co.uk,1 38253,http://www.1stclassdrivinglessons.co.uk,1 38254,http://www.1stclassdrivingglasgow.co.uk,1 38255,http://www.1stclass121drivingtuition.co.uk,1 38256,http://www.1stcityvanhire.co.uk,1 38257,http://www.1stchoicedrivingacademy.co.uk,1 38258,http://www.safechildren-cios.co.uk,1 38259,http://www.1stcallschoolofmotoring.co.uk,1 38260,http://www.1staidspain.com,1 38261,http://www.safedrivertraining.co.uk,1 38262,http://www.1st4solutions.com,1 38263,http://www.1st-timepass.co.uk,1 38264,http://www.safedrivestayalive.org,1 38265,http://www.1st-pass-driving.co.uk,1 38266,http://www.safedrivingandriding.org.uk,1 38267,http://www.1st-go.com,1 38268,http://www.safeguardingchildren.stoke.gov.uk,1 38269,http://www.safehandsmobility.co.uk,1 38270,http://www.1st-4.org,1 38271,http://www.1scrapcarsessex.co.uk,1 38272,http://www.1petsitter.com,1 38273,http://www.safercommunitiestorbay.org.uk,1 38274,http://www.1gis.co.uk,1 38275,http://www.1directiondrivingschool.co.uk,1 38276,http://www.1bigdatabase.org.uk,1 38277,http://yrksol01,1 38278,http://www.1837.com,1 38279,http://www.saferdacorum.info,1 38280,http://www.17plusgloucester.blogspot.com,1 38281,http://www.17godrive.co.uk,1 38282,http://94.245.116.17,1 38283,http://www.16pluspathways.com,1 38284,http://www.152law.co.uk,1 38285,http://www.14freedom.co.uk,1 38286,http://www.14-19.lancsngfl.ac.uk,1 38287,http://www.125kj.com,1 38288,http://www.saferhavant.co.uk,1 38289,http://94.245.116.13,1 38290,http://www.123people.com,1 38291,http://www.123.ie,1 38292,http://www.123-reg.co.uk,1 38293,http://www.121drivingsuccess.co.uk,1 38294,http://www.121drivinglessons4u.co.uk,1 38295,http://www.11kbw.com,1 38296,http://www.saferroads.org,1 38297,http://94.236.71.92,1 38298,http://www.101ds.talktalk.net,1 38299,http://www.1-2-1drivingschool.co.uk,1 38300,http://www.saferroadshumber.co.uk,1 38301,http://www.saferroadshumber.com,1 38302,http://www.safertaxi.blogspot.com,1 38303,http://www-users.cs.york.ac.uk,1 38304,http://www.safestart.biz,1 38305,http://www-sul.stanford.edu,1 38306,http://www-stage.squaretrade.com,1 38307,http://www-new.mobiles.co.uk,1 38308,http://www-nationaldebtline-co-uk.uk-staging.totemic.co.uk,1 38309,http://ww35.vermonttransit.com,1 38310,http://www.safetymoment.org,1 38311,http://ww2.madeleyhigh.org,1 38312,http://www.safetyshop.com,1 38313,http://ww.zielonalinia.gov.pl,1 38314,http://wtr-branchmail.johnlewis.co.uk,1 38315,http://wtctheology.org.uk,1 38316,http://wssledi001:1234,1 38317,http://wss.an.ad.anplc.co.uk,1 38318,http://wsms.easysearch.org.uk,1 38319,http://wsmfhs.org.uk,1 38320,http://wse.baidu.com:8080,1 38321,http://ws3.global.logica.com,1 38322,http://wrnsbenevolenttrust.easysearch.org.uk,1 38323,http://writelonger.com,1 38324,http://www.sage.sa.gov.au,1 38325,http://wrexham.gov.uk,1 38326,http://wra.wra.easysearch.org.uk,1 38327,http://wpop2.libero.it,1 38328,http://92.48.127.143,1 38329,http://wpcms.number10.gov.uk,1 38330,http://wpaintranet,1 38331,http://worthingtonguides.easysearch.org.uk,1 38332,http://worldseafishing.com,1 38333,http://world68.com,1 38334,http://world.waze.com,1 38335,http://worksolve.org.uk,1 38336,http://worksiteweb,1 38337,http://www.sagesoft.co,1 38338,http://workingmenscollege.easysearch.org.uk,1 38339,http://workinglinks.co.uk,1 38340,http://ys.search.zoombucks.com,1 38341,http://workingfamilies.org.uk,1 38342,http://work-in-europe.net,1 38343,http://www.saintjamesschool.co.uk,1 38344,http://word.dorsetforyou.com,1 38345,http://www.saintjohnofgod.org,1 38346,http://worcestershiredrivingschool.co.uk,1 38347,http://worcestershire.whub.org.uk,1 38348,http://wooproperties.co.uk,1 38349,http://www.saks.co.uk,1 38350,http://woodysscoutnetwork.easysearch.org.uk,1 38351,http://woodsmotorcycles.co.uk,1 38352,http://woodburysaltertonps.easysearch.org.uk,1 38353,http://womenandwork.co.uk,1 38354,http://women.timesonline.co.uk,1 38355,http://women.soutron.net,1 38356,http://wolveslibrary.webcrossing.com,1 38357,http://wolvesfis.com,1 38358,http://wolverhamptonhomes.net,1 38359,http://www.salecommunityweb.co.uk,1 38360,http://wolston.2day.ws,1 38361,http://www.salenursery.co.uk,1 38362,http://www.salford-pct.nhs.uk,1 38363,http://wokmoodle.woking.ac.uk,1 38364,http://www.salfords.surrey.sch.uk,1 38365,http://wokingham-cab.org.uk,1 38366,http://woeportal.futures4me.com,1 38367,http://wnsc.easysearch.org.uk,1 38368,http://wmtracey.co.uk,1 38369,http://wmpfonline.com,1 38370,http://wmcc.easysearch.org.uk,1 38371,http://wmc.ttsonline.net,1 38372,http://wmail75.movistar.es,1 38373,http://wmail32.movistar.es,1 38374,http://wmail25.terra.es,1 38375,http://wmail.admin.ad.wirral.gov.uk,1 38376,http://91.215.184.61,1 38377,http://wm57.inbox.com,1 38378,http://wm56.inbox.com,1 38379,http://wm50.inbox.com,1 38380,http://wm40.inbox.com,1 38381,http://wm4.eim.ae,1 38382,http://wm.wmh.hu,1 38383,http://91.151.218.11,1 38384,http://www.sallywelfaredriving.co.uk,1 38385,http://wiseowls.electra-1.titaninternet.co.uk,1 38386,http://wise-kid.blogspot.com,1 38387,http://wired,1 38388,http://windwhistlewarren.easysearch.org.uk,1 38389,http://windsordrivingschool.com,1 38390,http://wind.search-help.net,1 38391,http://win2k8mail,1 38392,http://win.nextstep.direct.gov.uk/HelpAdviceandMoney/adviceforyoursituation/helpforstudentswithdisabilities/Pages/default.aspx,1 38393,http://wimbornecubs.easysearch.org.uk,1 38394,http://wiltshirenorthmgu.easysearch.org.uk,1 38395,http://wiltshirechildcare.weebly.com,1 38396,http://wiltshire.theorytestpro.co.uk,1 38397,http://wilplantraining.co.uk,1 38398,http://8thburtonstjohnsscouts.easysearch.org.uk,1 38399,http://willowdr.easysearch.org.uk,1 38400,http://willow.westnotts.ac.uk,1 38401,http://williams-driving.theorytestpro.co.uk,1 38402,http://8thashfordmiddxscoutgroup.easysearch.org.uk,1 38403,http://wikipedia.orange.fr,1 38404,http://wiki.wp.rbsgrp.net,1 38405,http://wiki.worldnakedbikeride.org,1 38406,http://wiki.volunteermanagers.org.uk,1 38407,http://wiki.theworkshop.co.uk,1 38408,http://8jk.wikispaces.com,1 38409,http://wiki.secondlife.com,1 38410,http://wiki.rscwmsystems.org.uk,1 38411,http://wiki.rapidswitch.com,1 38412,http://www.salrc.org,1 38413,http://wiki.grundfos.com,1 38414,http://wiki.fibis.org,1 38415,http://wiki.esportz.com,1 38416,http://wiki.ece.org,1 38417,http://www.salrc.org.uk,1 38418,http://wiki.bankofamerica.com,1 38419,http://wiki.badgerandblade.com,1 38420,http://www.saltairemedicalpractice.nhs.uk,1 38421,http://8a49866b2571de8d012584ded0f412ea-1273605541660.yola.embed.tal.ki,1 38422,http://www.saltersjun.doncaster.sch.uk,1 38423,http://wiganlscb.com,1 38424,http://wiganjnrlatics.easysearch.org.uk,1 38425,http://wifi.gwhl.co.uk,1 38426,http://widgets.serverboy.net,1 38427,http://wid.org,1 38428,http://wibsey.2day.ws,1 38429,http://wi-cms01-derbygovuk,1 38430,http://whyletdrinkdecide.direct.gov.uk/stakeholders/inspire//index.html,1 38431,http://www.saltiredrivertraining.co.uk,1 38432,http://whtwebsite,1 38433,http://whsquires.co.uk,1 38434,http://whois.pho.to,1 38435,http://www.saltwood.kent.sch.uk,1 38436,http://whmc.easysearch.org.uk,1 38437,http://whitleybayschoolofmotoring.co.uk,1 38438,http://whitleybayps.easysearch.org.uk,1 38439,http://whiterosebeautycolleges.com,1 38440,http://whitelabel.worksmart.org.uk,1 38441,http://whitehorsedc.gov.uk,1 38442,http://89.248.50.197,1 38443,http://whistleblowers.nonprofitsoapbox.com,1 38444,http://whickhamplumbingservices.co.uk,1 38445,http://wherecanwewalk.com,1 38446,http://wheldrive.snapshotmedia.co.uk,1 38447,http://wheelz.theorytestpro.co.uk,1 38448,http://wheelchaircars.co.uk,1 38449,http://wheathampstead.2day.ws,1 38450,http://whbmsg02.ad.whitbread.com,1 38451,http://www.salvageandspares.co.uk,1 38452,http://whatisyourworldview.com,1 38453,http://wgrda.easysearch.org.uk,1 38454,http://www.samedaypaydayloans.co.uk,1 38455,http://wgcoc.easysearch.org.uk,1 38456,http://wfnetwork.bc.edu,1 38457,http://89.234.34.107,1 38458,http://westyorkshirelieutenancy.org.uk,1 38459,http://westyorkshire.fish4jobs.co.uk,1 38460,http://westsussexjamboree.easysearch.org.uk,1 38461,http://westsuffolksc.easysearch.org.uk,1 38462,http://westonunderpenyardpta.easysearch.org.uk,1 38463,http://westnorfolkcarers.web.officelive.com,1 38464,http://westminsterfashion.squarespace.com,1 38465,http://www.samsdriving.co.uk,1 38466,http://westmidlandsltp.gov.uk,1 38467,http://westkirbyletting.co.uk,1 38468,http://westderbymc.easysearch.org.uk,1 38469,http://www.sandbagsonline.co.uk,1 38470,http://westberks.spydus.co.uk,1 38471,http://westaccountants.com,1 38472,http://west-sussex.thelittlehousecompany.co.uk,1 38473,http://87871.cn,1 38474,http://weseepeople.blogspot.com,1 38475,http://87.86.162.100,1 38476,http://wentwoodsg.easysearch.org.uk,1 38477,http://wenlockhealthandsafety.co.uk,1 38478,http://wendysdrivertraining.co.uk,1 38479,http://welovelocalgovernment.wordpress.com,1 38480,http://welhat.gov.uk,1 38481,http://www.sandjmotors.co.uk,1 38482,http://wec.web.abbott.com,1 38483,http://www.sandwelldaat.co.uk,1 38484,http://webstage.keele.ac.uk,1 38485,http://websites.pdesas.org,1 38486,http://websites.bordengrammar.kent.sch.uk,1 38487,http://website.lineone.net,1 38488,http://www.sandwelllscb.org.uk,1 38489,http://www.sandwellsgarage.co.uk,1 38490,http://webserv2,1 38491,http://www.sandylaneparishcouncil.org.uk,1 38492,http://webpage.munnsom.co.uk,1 38493,http://webnug.com,1 38494,http://www.sandylanesurgery.co.uk,1 38495,http://webmaila.netzero.net,1 38496,http://webmaila.juno.com,1 38497,http://webmail22.orange.fr,1 38498,http://webmail2.another.com,1 38499,http://10.1.3.1,1 38500,http://webmail1d.orange.fr,1 38501,http://www.sandytowncouncil.gov.uk,1 38502,http://www.sanger.ac.uk,1 38503,http://webmail.wilberforce.ac.uk,1 38504,http://webmail.wightcablenorth.net,1 38505,http://webmail.westking.ac.uk,1 38506,http://webmail.webmetics.com,1 38507,http://webmail.webfusion.co.uk,1 38508,http://webmail.webbsoflincoln.co.uk,1 38509,http://webmail.uwclub.net,1 38510,http://webmail.ukservers.net,1 38511,http://www.sansangduhoc.com,1 38512,http://webmail.tierra.net,1 38513,http://webmail.telkomsa.net,1 38514,http://webmail.tdd-training.com,1 38515,http://webmail.supremecluster.com,1 38516,http://webmail.spiresinthefog.com,1 38517,http://webmail.spamcop.net,1 38518,http://webmail.solarpvrenewables.co.uk,1 38519,http://webmail.skynet.be,1 38520,http://webmail.seahavenfm.com,1 38521,http://webmail.scorpiocc.net,1 38522,http://webmail.scisys.co.uk,1 38523,http://webmail.scarlet.be,1 38524,http://webmail.saunalahti.fi,1 38525,http://webmail.samdec.co.uk,1 38526,http://webmail.rya-online.net,1 38527,http://webmail.relinquished.net,1 38528,http://webmail.register.it,1 38529,http://webmail.promailbox.net,1 38530,http://webmail.portuguesevilla.com,1 38531,http://webmail.perfectpatients.com,1 38532,http://webmail.parrswood.manchester.sch.uk,1 38533,http://webmail.pandbsecurity.com,1 38534,http://webmail.numericable.fr,1 38535,http://webmail.net4india.com,1 38536,http://webmail.mychieveley.co.uk,1 38537,http://webmail.mistral.co.uk,1 38538,http://webmail.microfrost.co.uk,1 38539,http://www.sapphirepartners.co.uk,1 38540,http://webmail.louloubelles.co.uk,1 38541,http://webmail.leightonstagg.com,1 38542,http://www.saracenssolicitors.co.uk,1 38543,http://www.sarahhampshire.co.uk,1 38544,http://webmail.john-clark.co.uk:3000,1 38545,http://webmail.jenandstacey.co.uk,1 38546,http://webmail.isb.be,1 38547,http://webmail.iol.ie,1 38548,http://webmail.inode.at,1 38549,http://webmail.innovatedesigncreate.co.uk,1 38550,http://webmail.hathershaw.org.uk,1 38551,http://webmail.genus-services.com,1 38552,http://webmail.genesis-ds.com,1 38553,http://webmail.felsted.essex.sch.uk,1 38554,http://webmail.faxsol.co.uk,1 38555,http://webmail.extremepitast.ca,1 38556,http://webmail.extend.inchhosting.co.uk,1 38557,http://webmail.ewanet.com,1 38558,http://webmail.edmonton.enfield.sch.uk,1 38559,http://webmail.easyspace.com,1 38560,http://www.sarahsschoolofmotoring.co.uk,1 38561,http://webmail.dunwell.org,1 38562,http://webmail.designerette.nl,1 38563,http://webmail.dcleisure.co.uk,1 38564,http://webmail.colchestermind.org,1 38565,http://webmail.coatbridge.ac.uk,1 38566,http://webmail.clugston.co.uk,1 38567,http://webmail.clear.net.nz,1 38568,http://webmail.clarkson.com,1 38569,http://webmail.circleofangels.co.uk,1 38570,http://webmail.chordalgreen.co.uk,1 38571,http://webmail.centraweb.co.uk,1 38572,http://webmail.catsfieldpc.co.uk,1 38573,http://www.sarangan.org,1 38574,http://webmail.cablenet.com.cy,1 38575,http://webmail.bsia.co.uk,1 38576,http://webmail.bioxydyn.com,1 38577,http://www.sascha-jacob.co.uk,1 38578,http://webmail.avabuilding.co.uk,1 38579,http://webmail.autotrader.co.uk,1 38580,http://webmail.asone.co.uk,1 38581,http://webmail.aruba.it,1 38582,http://www.sash-somerset.org.uk,1 38583,http://webmail-classic.windstream.net,1 38584,http://weblogs.nrc.nl,1 38585,http://www.sasj.lancs.sch.uk,1 38586,http://www.sasshstudentpad.co.uk,1 38587,http://ysgolglanwydden.easysearch.org.uk,1 38588,http://webintranet2,1 38589,http://webhotell.vegvesen.no,1 38590,http://www.satsumamedia.co.uk,1 38591,http://webfetch.com,1 38592,http://www.saudistudents.co.uk,1 38593,http://webdev-www,1 38594,http://www.saunalahti.fi,1 38595,http://www.savas.lt,1 38596,http://webchat.quakenet.org,1 38597,http://webchat.freenode.net,1 38598,http://webchat.dh.gov.uk,1 38599,http://www.save-coventry-greenbelt.co.uk,1 38600,http://www.save-on-your-car-insurance.com,1 38601,http://www.saveonsolar.org.uk,1 38602,http://webapps.cardiff.ac.uk,1 38603,http://www.savsmembers.org,1 38604,http://www.sawley-jun.derbyshire.sch.uk,1 38605,http://web5.pistonheads.com,1 38606,http://web4residents.co.uk,1 38607,http://www.saxmundham.biz,1 38608,http://web20guru.wikispaces.com,1 38609,http://web2.int.sussex.police.cjx.gov.uk,1 38610,http://web1.maturetimes.co.uk,1 38611,http://web03,1 38612,http://www.say-idt.co.uk,1 38613,http://web01.girlings.co.uk,1 38614,http://www.sazzles.co.uk,1 38615,http://web.qq.com,1 38616,http://web.orange.es,1 38617,http://web.onyxnet.co.uk,1 38618,http://web.onetel.com,1 38619,http://www.sbenergy.co.uk,1 38620,http://web.mat.bham.ac.uk,1 38621,http://web.mac.com,1 38622,http://web.hep.uiuc.edu,1 38623,http://web.gadu-gadu.pl,1 38624,http://web.fumsi.com,1 38625,http://web.ebscohost.com.ezp01.library.qut.edu.au,1 38626,http://web.ebscohost.com,1 38627,http://86.26.22.24,1 38628,http://web.bmsi.co.uk,1 38629,http://www.sbtsg.org.uk,1 38630,http://web-hs,1 38631,http://web-25.citromail.hu,1 38632,http://web-02.citromail.hu,1 38633,http://www.scamc.co.uk,1 38634,http://weasw.easysearch.org.uk,1 38635,http://wearethistlefundraising.easysearch.org.uk,1 38636,http://wearejames.com,1 38637,http://wealthwednesday.com,1 38638,http://wdtstage.nfuonline.com,1 38639,http://wdtc.disneyinternational.com,1 38640,http://wdpdevapp2.ons.statistics.gov.uk:7785,1 38641,http://wckltest.orctel.internal,1 38642,http://www.scamnet.net,1 38643,http://www.scamwatch.gov.au,1 38644,http://wbhpha.org,1 38645,http://www.scantsmotorservices.co.uk,1 38646,http://84.235.4.53:2086,1 38647,http://wbcc.easysearch.org.uk,1 38648,http://waygook.org,1 38649,http://wayfoundation.yuku.com,1 38650,http://wayahead-warrington.co.uk,1 38651,http://84.22.168.230,1 38652,http://way-ahead-driving.co.uk,1 38653,http://wawne.2day.ws,1 38654,http://wavecreditcheck.com,1 38655,http://watfordwc.easysearch.org.uk,1 38656,http://watford.searchimprove.com,1 38657,http://waterpilgrim.wordpress.com,1 38658,http://www.scanwell.com,1 38659,http://washlaw.edu,1 38660,http://www.scar-tissue.net,1 38661,http://warsashdrivingschool.co.uk,1 38662,http://warrington.gov.uk,1 38663,http://warrington.fsd.org.uk,1 38664,http://warnerbro.tumblr.com,1 38665,http://warmheat.co.uk,1 38666,http://warmfrontltd.com,1 38667,http://warmaway.co.uk,1 38668,http://warkworthox17.2day.ws,1 38669,http://warboys.web7.devwebsite.co.uk,1 38670,http://www.scarboroughpru.co.uk,1 38671,http://wapedia.mobi,1 38672,http://wanttobeadoctor.co.uk,1 38673,http://wantageorchestra.easysearch.org.uk,1 38674,http://www.sccir.org.uk,1 38675,http://wames.org.uk,1 38676,http://waltonrobinson.dev.internal,1 38677,http://waltonontrent.2day.ws,1 38678,http://walthamstlawrencecc.easysearch.org.uk,1 38679,http://wallace.wilburwebdev.co.uk,1 38680,http://walidator.net,1 38681,http://waleshome.org,1 38682,http://www.scdra.co.uk,1 38683,http://wales-pr.com,1 38684,http://wales-dev.mypreviewurl.co.uk,1 38685,http://waldringfield.onesuffolk.net,1 38686,http://waldegrave.fluencycms.co.uk,1 38687,http://wakiesworld.com,1 38688,http://wakeupfromyourslumber.com,1 38689,http://wakefield.theorytestpro.co.uk,1 38690,http://wakefield.thelittlehousecompany.co.uk,1 38691,http://wajax.pop.com.br,1 38692,http://www.scdrivertraining.co.uk,1 38693,http://wags.org.au,1 38694,http://wag-en.custhelp.com,1 38695,http://waes-elearn.waes.ac.uk,1 38696,http://w46.mail.qq.com,1 38697,http://w3lrn.com,1 38698,http://www.schizophrenia24x7.com,1 38699,http://w104ka001,1 38700,http://vwpolo2000.proboards.com,1 38701,http://vw67reviwtest:8888,1 38702,http://vw4.visionwebsites.co.uk,1 38703,http://vtd.heart-nta.org,1 38704,http://vstg-schoolfinder.dcsf.gov.uk,1 38705,http://vstag.co.uk,1 38706,http://vssp-www,1 38707,http://www.scholarships.leeds.ac.uk,1 38708,http://ysgolllanfairdcpta.easysearch.org.uk,1 38709,http://83.231.230.210,1 38710,http://www.school-financial-management.com,1 38711,http://vrtnmoss01:25000,1 38712,http://vrelegume.rs,1 38713,http://vra-uk.org,1 38714,http://vpra.orgfree.com,1 38715,http://volunteersweek.org.uk,1 38716,http://volunteering.intra.bt.com,1 38717,http://www.school-teacher-student-motivation-resources-courses.com,1 38718,http://volunteercentretamworth.easysearch.org.uk,1 38719,http://voluntarynews.org.uk,1 38720,http://ysgoltreganna.cardiff.sch.uk,1 38721,http://volkspeed.com,1 38722,http://voices.washingtonpost.com,1 38723,http://voicedev.lifelineproject.co.uk,1 38724,http://vocology.forumotion.net,1 38725,http://vocalvoices.com,1 38726,http://voa.gov.uk,1 38727,http://www.schools.ac.cy,1 38728,http://vn.mg4.mail.yahoo.com,1 38729,http://vmsfhqaspire2,1 38730,http://10.1.2.88,1 38731,http://vlondone.com,1 38732,http://vlite.vfast.co.uk,1 38733,http://vle.wymondhamcollege.org,1 38734,http://82ndchapeltown.easysearch.org.uk,1 38735,http://vle.tresham.ac.uk,1 38736,http://vle.trainingfortravel.com,1 38737,http://vle.thedeanes.essex.sch.uk,1 38738,http://www.schoolsantibullying.com,1 38739,http://vle.st-cecilias.lancs.sch.uk,1 38740,http://vle.src.ac.uk,1 38741,http://www.schoolshistory.org.uk,1 38742,http://www.schoolsurveys.co.uk,1 38743,http://www.schoolswire.co.uk,1 38744,http://ytyhysc.z37.163ns.cn,1 38745,http://vle.peelpark.lancs.sch.uk,1 38746,http://www.schoonerman.com,1 38747,http://vle.newcollege.ac.uk,1 38748,http://vle.lythamhigh.lancs.sch.uk,1 38749,http://vle.lostockhallhigh.lancs.sch.uk,1 38750,http://vle.leyton.ac.uk,1 38751,http://vle.lasals.co.uk,1 38752,http://vle.langton.kent.sch.uk,1 38753,http://www.schottlandforum.de,1 38754,http://www.schottlandtrip.de,1 38755,http://www.scids.co.uk,1 38756,http://vle.gloscol.ac.uk,1 38757,http://www.sciencedirect.com,1 38758,http://vle.exeter.ac.uk,1 38759,http://vle.esc.ac.uk,1 38760,http://www.sciencedirect.com.ezp01.library.qut.edu.au,1 38761,http://www.sciencedirect.com.libux.utmb.edu,1 38762,http://www.sciencepresse.qc.ca,1 38763,http://www.scilly.gov.uk:80,1 38764,http://vle.challenge.ngfl.ac.uk,1 38765,http://vle.ccs.northants.sch.uk,1 38766,http://vle.camsfc.ac.uk,1 38767,http://www.scoliosis-support.org,1 38768,http://81.6.214.162,1 38769,http://www.scootering.com,1 38770,http://vle.berryhill.stoke.sch.uk,1 38771,http://www.scootersuk.co.uk,1 38772,http://vle.bankslane-inf.stockport.sch.uk,1 38773,http://vle.appleby.cumbria.sch.uk,1 38774,http://vle.anglia.ac.uk,1 38775,http://www.scopect.com,1 38776,http://www.scorpioneducation.co.uk,1 38777,http://www.scotby.cumbria.sch.uk,1 38778,http://www.scotia-capital.bns,1 38779,http://www.scotia-capital.com,1 38780,http://vivawales.easysearch.org.uk,1 38781,http://vitzy.net,1 38782,http://vitalondon.exblog.jp,1 38783,http://visitwoods.org.uk,1 38784,http://visitcroatia.proboards.com,1 38785,http://81.21.76.62,1 38786,http://81.146.71.23,1 38787,http://www.scotland.com,1 38788,http://vision2learnforschool.com,1 38789,http://www.scotlandagainstracism.com,1 38790,http://www.scotlandoffice.gov.uk,1 38791,http://virtualhrservices.co.uk,1 38792,http://www.scotlandspeoplehub.gov.uk,1 38793,http://virgov.co.uk,1 38794,http://virgin.lithium.com,1 38795,http://vip3-159.sinamail.sina.com.cn,1 38796,http://www.scotlawcom.gov.uk,1 38797,http://vintage-radio.net,1 38798,http://villiers.ealing.sch.uk,1 38799,http://view.vcab.com,1 38800,http://vietnamsexygirls.com,1 38801,http://video-business.net,1 38802,http://victoria-stephens.hubpages.com,1 38803,http://www.scotregen.co.uk,1 38804,http://viajes.forumsee.com,1 38805,http://viajeaqui.abril.com.br,1 38806,http://www.scottfinancial.co.uk,1 38807,http://www.scottishcotdeathtrust.org,1 38808,http://vga.easysearch.org.uk,1 38809,http://veveye.com,1 38810,http://vetrecordjobs.com,1 38811,http://vesture.eu,1 38812,http://vesti.kz,1 38813,http://vertexteams,1 38814,http://versacare.co.uk,1 38815,http://www.scottishhumanrights.com,1 38816,http://venus.dartford.gov.uk,1 38817,http://vega.org.uk,1 38818,http://81.145.148.162:3000,1 38819,http://www.scottishkennelclub.org,1 38820,http://www.scottishlife.co.uk,1 38821,http://www.scottishmobility.com,1 38822,http://vbf.sereno-dev.co.uk,1 38823,http://vaww.search.r02.portal.va.gov,1 38824,http://vasculitisuk.easysearch.org.uk,1 38825,http://variety.varietyclub.org.uk,1 38826,http://vap-preview.horizon.gws.gsi.gov.uk,1 38827,http://vanniveronico.blogspot.com,1 38828,http://valleymotoringschool.co.uk,1 38829,http://valleybikeschool.co.uk,1 38830,http://vaillantheating.co.uk,1 38831,http://vagoc.co.uk,1 38832,http://vactruth.com,1 38833,http://www.scottishwomensaid.org.uk,1 38834,http://81.144.190.89,1 38835,http://v23webint,1 38836,http://v23mando,1 38837,http://v1.syndication.e.qa.choices.nhs.uk,1 38838,http://v-citywapps03,1 38839,http://uyalondon.easysearch.org.uk,1 38840,http://www.scottsdrivingschool.net,1 38841,http://uttoxeter.2day.ws,1 38842,http://utidosnotebooks.com,1 38843,http://uswib.org,1 38844,http://ustaxonline.com,1 38845,http://uspace.shef.ac.uk,1 38846,http://uskciwprimaryschoolptfa.easysearch.org.uk,1 38847,http://usf-gb.hautetfort.com,1 38848,http://users.ox.ac.uk,1 38849,http://users.libero.it,1 38850,http://users.hol.gr,1 38851,http://www.scoutbase.org.uk,1 38852,http://user.chollian.net,1 38853,http://usedtractorforsale.org,1 38854,http://81.134.131.132,1 38855,http://us3.chatzy.com,1 38856,http://us2.ixquick.com,1 38857,http://www.scrapcar.me,1 38858,http://80.86.42.115,1 38859,http://www.scrapcardisposal.co.uk,1 38860,http://us.mg50.mail.yahoo.com,1 38861,http://www.screen-kleen.com,1 38862,http://www.scrubradio.com,1 38863,http://www.sct.nhs.uk,1 38864,http://us.mg.mail.yahoo.com,1 38865,http://us.mc814.mail.yahoo.com,1 38866,http://us.mc813.mail.yahoo.com,1 38867,http://us.mc810.mail.yahoo.com,1 38868,http://us.mc805.mail.yahoo.com,1 38869,http://www.scunthorpedrivingschool.com,1 38870,http://www.sdcconsulting.co.uk,1 38871,http://us.mc656.mail.yahoo.com,1 38872,http://www.sddu.leeds.ac.uk,1 38873,http://us.mc597.mail.yahoo.com,1 38874,http://www.sdpp.org.uk,1 38875,http://80.82.124.74,1 38876,http://us.mc563.mail.yahoo.com,1 38877,http://us.mc464.mail.yahoo.com,1 38878,http://www.sdrsportscars.co.uk,1 38879,http://us.mc461.mail.yahoo.com,1 38880,http://www.sdsamotorcyclecouriers.co.uk,1 38881,http://80.249.57.37,1 38882,http://us.mc454.mail.yahoo.com,1 38883,http://www.sdsuk.co.uk,1 38884,http://us.mc451.mail.yahoo.com,1 38885,http://us.mc398.mail.yahoo.com,1 38886,http://us.mc395.mail.yahoo.com,1 38887,http://www.se23.com,1 38888,http://www.sealfamilytree.co.uk,1 38889,http://us.mc389.mail.yahoo.com,1 38890,http://us.mc386.mail.yahoo.com,1 38891,http://us.mc382.mail.yahoo.com,1 38892,http://us.mc379.mail.yahoo.com,1 38893,http://us.mc369.mail.yahoo.com,1 38894,http://us.mc362.mail.yahoo.com,1 38895,http://us.mc357.mail.yahoo.com,1 38896,http://us.mc345.mail.yahoo.com,1 38897,http://us.mc344.mail.yahoo.com,1 38898,http://us.mc313.mail.yahoo.com,1 38899,http://us.mc311.mail.yahoo.com,1 38900,http://www.sealprimary.com,1 38901,http://us.mc304.mail.yahoo.com,1 38902,http://us.mc286.mail.yahoo.com,1 38903,http://us.mc277.mail.yahoo.com,1 38904,http://us.mc274.mail.yahoo.com,1 38905,http://us.mc192.mail.yahoo.com,1 38906,http://us.mc1901.mail.yahoo.com,1 38907,http://us.mc1811.mail.yahoo.com,1 38908,http://us.mc1803.mail.yahoo.com,1 38909,http://us.mc1802.mail.yahoo.com,1 38910,http://www.seap.org.uk,1 38911,http://www.search-123.com,1 38912,http://www.search-belgium.com,1 38913,http://www.search-results.com,1 38914,http://www.search4solicitors.com,1 38915,http://www.searchtheweb.co.uk,1 38916,http://www.searchuu.com,1 38917,http://us.mc1609.mail.yahoo.com,1 38918,http://www.searchwebmobile.com,1 38919,http://www.seaspraymotors.co.uk,1 38920,http://www.secockpit.com,1 38921,http://us.mc1601.mail.yahoo.com,1 38922,http://us.mc1259.mail.yahoo.com,1 38923,http://www.security-training-manchester.co.uk,1 38924,http://7thsomeriesscouts.easysearch.org.uk,1 38925,http://7thdudleyscouts.easysearch.org.uk,1 38926,http://us.mc1249.mail.yahoo.com,1 38927,http://us.mc1222.mail.yahoo.com,1 38928,http://us.mc1212.mail.yahoo.com,1 38929,http://www.securityoracle.com,1 38930,http://us.mc1204.mail.yahoo.com,1 38931,http://us.mc1203.mail.yahoo.com,1 38932,http://us.mc1202.mail.yahoo.com,1 38933,http://www.sedlescombe.org.uk,1 38934,http://www.see-pct.nhs.uk,1 38935,http://79.170.44.80,1 38936,http://us.mc1142.mail.yahoo.com,1 38937,http://us.mc1140.mail.yahoo.com,1 38938,http://us.mc1139.mail.yahoo.com,1 38939,http://us.mc1138.mail.yahoo.com,1 38940,http://us.mc1136.mail.yahoo.com,1 38941,http://79.170.44.146,1 38942,http://www.seeability.org,1 38943,http://us.mc1131.mail.yahoo.com,1 38944,http://us.mc1128.mail.yahoo.com,1 38945,http://us.mc1126.mail.yahoo.com,1 38946,http://www.seedsforafrica.org,1 38947,http://us.mc1123.mail.yahoo.com,1 38948,http://us.mc1121.mail.yahoo.com,1 38949,http://us.mc1120.mail.yahoo.com,1 38950,http://79.170.40.237,1 38951,http://us.mc1114.mail.yahoo.com,1 38952,http://us.mc1113.mail.yahoo.com,1 38953,http://us.mc1107.mail.yahoo.com,1 38954,http://us.mc1106.mail.yahoo.com,1 38955,http://us.mc1103.mail.yahoo.com,1 38956,http://www.sefton.guv.co.uk,1 38957,http://us.mc1101.mail.yahoo.com,1 38958,http://us.mc1100.mail.yahoo.com,1 38959,http://us.m.yahoo.com,1 38960,http://us.legalombudsman.org.uk,1 38961,http://www.seftonebp.co.uk,1 38962,http://urlwww--realassurance--org--uk.rtrk.co.uk,1 38963,http://urlwww--nhs--uk.rtrk.co.uk,1 38964,http://urlwww--connexions-direct--com.rtrk.co.uk,1 38965,http://urlwww--bbc--co--uk.rtrk.co.uk,1 38966,http://urlwww--asta-uk--org.rtrk.co.uk,1 38967,http://79.0.4.17,1 38968,http://78.31.107.73,1 38969,http://urlseek90.vmn.net,1 38970,http://urlseek60.vmn.net,1 38971,http://www.sehauc.org.uk,1 38972,http://uptospeed.talktalkgroup.co.uk,1 38973,http://upgp-test.pensionsoffice.com,1 38974,http://upbeat.easysearch.org.uk,1 38975,http://upass.theorytestpro.co.uk,1 38976,http://uos-web00115-vs.soton.ac.uk:1776,1 38977,http://uon-pgce-applicants.info,1 38978,http://www.sehd.scot.nhs.uk,1 38979,http://unpub.gordonjeffrey-hawick.yellsites.co.uk,1 38980,http://unpub.edinburghcarservices.yellsites.co.uk,1 38981,http://unpub.driving-control.yellsites.co.uk,1 38982,http://unpub.crosscountiessom.yellsites.co.uk,1 38983,http://unpub.bbeydaledrivinglessons.yellsites.co.uk,1 38984,http://unop.co.uk,1 38985,http://78.141.17.47,1 38986,http://www.sehmidrivingschool.co.uk,1 38987,http://univduby.pbworks.com,1 38988,http://www.selemedicalpractice.co.uk,1 38989,http://unityaccounting.com,1 38990,http://unitetheunion.org,1 38991,http://united.billeo.com,1 38992,http://z11.invisionfree.com,1 38993,http://78.136.18.64,1 38994,http://www.self-builder.com,1 38995,http://unistats.direct.gov.uk/switchmode.do,1 38996,http://unistats.direct.gov.uk/studentBrkdown.do,1 38997,http://z15.invisionfree.com,1 38998,http://www.selfsufficientish.com,1 38999,http://unistats.direct.gov.uk/register.do,1 39000,http://unistats.direct.gov.uk/nStudentSurvey.do,1 39001,http://unistats.direct.gov.uk/loginUser.do,1 39002,http://unistats.direct.gov.uk/loginPage.do,1 39003,http://75e34l72pmo65rj64dpl7jdthnc7hc9n-a-sites-opensocial.googleusercontent.com,1 39004,http://unistats.direct.gov.uk/faq.do,1 39005,http://unistats.direct.gov.uk/englishRetrieveTariff.do,1 39006,http://www.selling-faversham.kent.sch.uk,1 39007,http://www.sellingcar.ltd.uk,1 39008,http://www.sellingyourhouseprivately.co.uk,1 39009,http://www.sellmycarinlondon.co.uk,1 39010,http://unifees2012.com,1 39011,http://unicaredevon.co.uk,1 39012,http://uniainfo.w.interia.pl,1 39013,http://uni4me.com,1 39014,http://www.sellmypropertyonline.co.uk,1 39015,http://underfivesroundabout.easysearch.org.uk,1 39016,http://umbr4.cabinetoffice.gov.uk,1 39017,http://ulrichsweb.serialssolutions.com.ezproxy.csu.edu.au,1 39018,http://ukwallinsulation.co.uk,1 39019,http://ukvapers.com,1 39020,http://ukuniadvisor.com,1 39021,http://www.semta.org.uk,1 39022,http://ukspec.tripod.com,1 39023,http://ukschoolofmotoring.co.uk,1 39024,http://ukscams.co.uk,1 39025,http://ukscaffoldingcompany.co.uk,1 39026,http://uksaabs.co.uk,1 39027,http://www.sendsutton.info,1 39028,http://ukpmc.ac.uk,1 39029,http://ukpass.ac.uk,1 39030,http://ukparttimejobs.co.uk,1 39031,http://ukpallets.com,1 39032,http://ukonetraining.co.uk,1 39033,http://ukmove.blogspot.com,1 39034,http://ukmoss1,1 39035,http://ukma.org.uk,1 39036,http://uklgig.org.uk,1 39037,http://www.senegal.co.uk,1 39038,http://ukkoreapension.wordpress.com,1 39039,http://www.seniorsnetwork.co.uk,1 39040,http://ukinvenezuela.fco.gov.uk,1 39041,http://74.6.238.252,1 39042,http://www.separating-parents.org.uk,1 39043,http://zaferglobal.com,1 39044,http://www.separationagreement.co.uk,1 39045,http://www.sepnet.ac.uk,1 39046,http://www.sequals.co.uk,1 39047,http://ukinsrilanka.fco.gov.uk,1 39048,http://www.serenecommunications.com,1 39049,http://www.serenityknitting.co.uk,1 39050,http://ukinsenegal.fco.gov.uk,1 39051,http://ukinsaudiarabia.fco.gov.uk,1 39052,http://ukinromania.fco.gov.uk,1 39053,http://www.serif.com,1 39054,http://www.serifwebresources.com,1 39055,http://www.serviceraider.co.uk,1 39056,http://www.services1.rsagroup.co.uk,1 39057,http://zaneeastdrivingschool.co.uk,1 39058,http://www.services4.me.uk,1 39059,http://ukinmorocco.fco.gov.uk,1 39060,http://ukinmontenegro.fco.gov.uk,1 39061,http://ukinmongolia.fco.gov.uk,1 39062,http://ukinmoldova.fco.gov.uk,1 39063,http://www.servicesandhorses.co.uk,1 39064,http://www.servigas.co.uk,1 39065,http://ukinmaldives.fco.gov.uk,1 39066,http://ukinmadagascar.fco.gov.uk,1 39067,http://www.settraining.co.uk,1 39068,http://www.sevacare.org.uk,1 39069,http://www.sevenoaksschool.org,1 39070,http://ukiniraq.fco.gov.uk,1 39071,http://www.severnvale.gloucs.sch.uk,1 39072,http://www.sexinthecities.co.uk,1 39073,http://ukiniceland.fco.gov.uk,1 39074,http://www.sexualhealth.eastcoastkent.nhs.uk,1 39075,http://www.sfmta.co.uk,1 39076,http://ukingeorgia.fco.gov.uk,1 39077,http://www.sfsm.co.uk,1 39078,http://ukinfo.eu,1 39079,http://ukinestonia.fco.gov.uk,1 39080,http://ukindrc.fco.gov.uk,1 39081,http://www.sgiauk.com,1 39082,http://74.125.93.132,1 39083,http://www.sgmp.nhs.uk,1 39084,http://ukinbvi.fco.gov.uk,1 39085,http://www.sha.nhsdigital.org.uk,1 39086,http://ukinbolivia.fco.gov.uk,1 39087,http://ukinbih.fco.gov.uk,1 39088,http://ukinbelize.fco.gov.uk,1 39089,http://www.shababonaizah.com,1 39090,http://ukinbarbados.fco.gov.uk,1 39091,http://ukinbangladesh.fco.gov.uk,1 39092,http://www.shadowdrivingschool.co.uk,1 39093,http://www.shadwellmedicalcentre.co.uk,1 39094,http://www.shaiklymotorcompany.co.uk,1 39095,http://www.shakespeare.lancsngfl.ac.uk,1 39096,http://www.shambles.net,1 39097,http://ukinalbania.fco.gov.uk,1 39098,http://www.shameemsdrivingschool.co.uk,1 39099,http://www.shamrockdrivingschool.co.uk,1 39100,http://ukhandmade.co.uk,1 39101,http://www.shanesschoolofmotoring.co.uk,1 39102,http://ukfrenchmuslimat.blogspot.com,1 39103,http://ukfraud.com,1 39104,http://ukfibromyalgia.com,1 39105,http://ukdriving.wordpress.com,1 39106,http://74.125.79.99,1 39107,http://www.shanghaiexpat.com,1 39108,http://ukcompany.studiocommercialisti-londra.com,1 39109,http://ukbouldering.com,1 39110,http://www.shape-it.org,1 39111,http://ukbmd.org,1 39112,http://ukbirthrecords.co.uk,1 39113,http://ukbirth-adoptionregister.com,1 39114,http://ukbasicbankaccounts.co.uk,1 39115,http://uk1.lexisnexis.com,1 39116,http://www.shapingthefuture.org.uk,1 39117,http://www.shapps.com,1 39118,http://www.sharedcarescotland.org.uk,1 39119,http://www.sharoncoxdrivingschool.co.uk,1 39120,http://74.125.77.99,1 39121,http://uk.webmessenger.yahoo.com,1 39122,http://uk.weather.com,1 39123,http://uk.virginmoneygiving.com,1 39124,http://www.sharonschoolofmotoring.co.uk,1 39125,http://uk.travel.yahoo.com,1 39126,http://uk.socompetent.com,1 39127,http://uk.seoguardian.com,1 39128,http://www.sharpdrivingschool.co.uk,1 39129,http://www.shatterlocks.com,1 39130,http://www.shaunreaddriving.co.uk,1 39131,http://www.shawhill.bham.sch.uk,1 39132,http://uk.norton.com,1 39133,http://www.shawlands-pri.glasgow.sch.uk,1 39134,http://www.shearer-candles.com,1 39135,http://uk.mongenie.com,1 39136,http://www.sheffieldautomaticdriving.co.uk,1 39137,http://www.sheffieldmutual.com,1 39138,http://www.shelleymanorsurgery.co.uk,1 39139,http://www.shelthorpeschool.com,1 39140,http://www.sherriff-amenity.com,1 39141,http://uk.messages.news.yahoo.com,1 39142,http://uk.mc953.mail.yahoo.com,1 39143,http://uk.mc947.mail.yahoo.com,1 39144,http://www.sherwoodrecruitment.com,1 39145,http://www.shian.org.uk,1 39146,http://www.shields-som.co.uk,1 39147,http://www.shift.ms,1 39148,http://www.shinvestor.com,1 39149,http://www.ship-ltd.org,1 39150,http://www.shiply.com,1 39151,http://www.shipsnostalgia.com,1 39152,http://uk.mc741.mail.yahoo.com,1 39153,http://uk.mc658.mail.yahoo.com,1 39154,http://uk.mc656.mail.yahoo.com,1 39155,http://uk.mc655.mail.yahoo.com,1 39156,http://uk.mc653.mail.yahoo.com,1 39157,http://uk.mc598.mail.yahoo.com,1 39158,http://uk.mc596.mail.yahoo.com,1 39159,http://uk.mc57.mail.yahoo.com,1 39160,http://uk.mc459.mail.yahoo.com,1 39161,http://uk.mc453.mail.yahoo.com,1 39162,http://uk.mc435.mail.yahoo.com,1 39163,http://uk.mc387.mail.yahoo.com,1 39164,http://uk.mc379.mail.yahoo.com,1 39165,http://uk.mc331.mail.yahoo.com,1 39166,http://uk.mc303.mail.yahoo.com,1 39167,http://uk.mc300.mail.yahoo.com,1 39168,http://www.shj.havering.sch.uk,1 39169,http://www.shockingtimes.co.uk,1 39170,http://www.shoeburynesshigh.co.uk,1 39171,http://www.shoeperwoman.com,1 39172,http://74.125.73.104,1 39173,http://www.shootgardening.co.uk,1 39174,http://www.shopfinder.co.uk,1 39175,http://www.shopmobilityni.org,1 39176,http://www.shopping-savvy.com,1 39177,http://www.shops-uk.org.uk,1 39178,http://www.shopsafe.co.uk,1 39179,http://www.shopzilla.co.uk,1 39180,http://www.shoreham-academy.org,1 39181,http://www.showellparkhealthcentre.co.uk,1 39182,http://www.shrivenham100.com,1 39183,http://www.shriyasschoolofmotoring.co.uk,1 39184,http://74.125.71.106,1 39185,http://www.shropshire-suzuki.co.uk,1 39186,http://www.shropshirestar.com,1 39187,http://www.shropshireuk.com,1 39188,http://www.si-sv1646.com,1 39189,http://www.siberme.com,1 39190,http://www.siddoc.co.uk,1 39191,http://www.sifoweb.it,1 39192,http://www.sign-post.info,1 39193,http://www.signaldrivingschool.co.uk,1 39194,http://www.signalz.co.uk,1 39195,http://www.signet-ac.co.uk,1 39196,http://www.signforward.com,1 39197,http://www.signpostuk.org,1 39198,http://www.signstation.org,1 39199,http://uk.mc253.mail.yahoo.com,1 39200,http://www.sihotadrivingschool.co.uk,1 39201,http://www.sikhhelpline.com,1 39202,http://www.sikhpolice.org,1 39203,http://uk.mc242.mail.yahoo.com,1 39204,http://www.silverbiketraining.com,1 39205,http://uk.mc234.mail.yahoo.com,1 39206,http://uk.mc1620.mail.yahoo.com,1 39207,http://uk.mc1616.mail.yahoo.com,1 39208,http://www.silverline-som.co.uk,1 39209,http://74.125.71.105,1 39210,http://uk.mc1607.mail.yahoo.com,1 39211,http://74.125.67.106,1 39212,http://www.silversurfersatbedford.org.uk,1 39213,http://uk.mc1302.mail.yahoo.com,1 39214,http://uk.mc1256.mail.yahoo.com,1 39215,http://uk.mc1254.mail.yahoo.com,1 39216,http://uk.mc1205.mail.yahoo.com,1 39217,http://uk.mc1146.mail.yahoo.com,1 39218,http://uk.mc1139.mail.yahoo.com,1 39219,http://uk.mc1133.mail.yahoo.com,1 39220,http://uk.mc1126.mail.yahoo.com,1 39221,http://uk.mc1117.mail.yahoo.com,1 39222,http://www.simon-bowman.co.uk,1 39223,http://uk.mc1100.mail.yahoo.com,1 39224,http://uk.m2.yahoo.com,1 39225,http://www.simonboghurst.co.uk,1 39226,http://uk.idibu.com,1 39227,http://uk.ibtimes.com,1 39228,http://uk.groups.yahoo.com,1 39229,http://uk.gamespot.com,1 39230,http://www.simplybiz.co.uk,1 39231,http://uk.f860.mail.yahoo.com,1 39232,http://uk.ettad.eu,1 39233,http://uk.embassy.gov.au,1 39234,http://uk.digler.com,1 39235,http://uk.cw,1 39236,http://www.simplyfinance.co.uk,1 39237,http://uk.chat.fxxy.net,1 39238,http://uk.bookmarky.com,1 39239,http://uk.beruby.com,1 39240,http://www.simplyoga.co.uk,1 39241,http://www.simpsonmillar.biz,1 39242,http://uk.altavista.com,1 39243,http://uk-yankee.com,1 39244,http://uk-tefl.com,1 39245,http://uk-rezydent.com,1 39246,http://uk-passport-advice.info,1 39247,http://www.simpsonwreford.co.uk,1 39248,http://uk-government.page.co.uk,1 39249,http://uk-cms-104.systems.uk.hsbc,1 39250,http://www.sinclair-properties.com,1 39251,http://uhsw.com,1 39252,http://uhsm-intranet,1 39253,http://ugyseged.lap.hu,1 39254,http://ug.mbs.ac.uk,1 39255,http://ufc.searchpw.com,1 39256,http://www.sinclairdrivertraining.co.uk,1 39257,http://ueldirect-c.uel.ac.uk,1 39258,http://www.sinfinprimary.org.uk,1 39259,http://www.singaporeaninlondon.com,1 39260,http://www.single-sided-deafness.com,1 39261,http://www.singletonscrapmetal.co.uk,1 39262,http://uclu.org,1 39263,http://uchm.easysearch.org.uk,1 39264,http://ucblibraries.colorado.edu,1 39265,http://ucas.lt,1 39266,http://www.sipp-partnership.com,1 39267,http://www.sirgar.gov.uk,1 39268,http://uca.moneydoctors.info,1 39269,http://ubvhc.easysearch.org.uk,1 39270,http://uat01.movewithus.co.uk,1 39271,http://uat.stw-edu.boxuk.net,1 39272,http://www.sirjosephwilliamson.medway.sch.uk,1 39273,http://uat.policyadmin.co.uk,1 39274,http://uat.choosemysupport.org.uk,1 39275,http://uat.bromley.gov.uk,1 39276,http://uac-leeds.webs.com,1 39277,http://u3asiteb.org.uk,1 39278,http://u3afhleaders.lefora.com,1 39279,http://u2drive.net,1 39280,http://u-drive.me.uk,1 39281,http://tyresntarmac.theorytestpro.co.uk,1 39282,http://tyneside.schooljotter.com,1 39283,http://tyne,1 39284,http://twynhammail,1 39285,http://twtc.web-help-service.net,1 39286,http://twsteam.co.uk,1 39287,http://twojaemerytura.co.uk,1 39288,http://two-to-one.co.uk,1 39289,http://www.sistershospitallers.org,1 39290,http://74.125.67.100,1 39291,http://tweetyhall.co.uk,1 39292,http://tweetminster.co.uk,1 39293,http://74.125.45.100,1 39294,http://www.sit.nsw.edu.au,1 39295,http://tw.myblog.yahoo.com,1 39296,http://zda0002exp,1 39297,http://tw.mc740.mail.yahoo.com,1 39298,http://74.125.237.82,1 39299,http://tvmt.net,1 39300,http://tvchix.com,1 39301,http://tutor2u.net,1 39302,http://turningpointdrivingschool.co.uk,1 39303,http://turneyschool.co.uk,1 39304,http://www.sitebuilder.ahost.me,1 39305,http://www.sitemeter.com,1 39306,http://tui-retail-train,1 39307,http://www.sitepro3.co.uk,1 39308,http://tugbbs.com,1 39309,http://www.siteslike.com,1 39310,http://tudhoecc.easysearch.org.uk,1 39311,http://ttx.southpoint.k12.oh.us,1 39312,http://ttforum.co.uk,1 39313,http://ttb.easysearch.org.uk,1 39314,http://tt-forum.com,1 39315,http://tt-forum.co.uk,1 39316,http://tswarrington.co.uk,1 39317,http://tsp.aynconsulting.com,1 39318,http://74.125.236.51,1 39319,http://tslintranet,1 39320,http://tsikot.com,1 39321,http://tsfeworldchallenge.easysearch.org.uk,1 39322,http://tsalive,1 39323,http://ts23.gazettelive.co.uk,1 39324,http://ts18.gazettelive.co.uk,1 39325,http://trustnet.learningtrust.co.uk,1 39326,http://www.siteslikeit.com,1 39327,http://trurocollege.ac.uk,1 39328,http://true-searchegine.com,1 39329,http://74.125.232.225,1 39330,http://trovabile.org,1 39331,http://tropdebruit.be,1 39332,http://trixresources.proceduresonline.com,1 39333,http://triskelion-motorcycle.com,1 39334,http://tripoli.bournemouth.ac.uk,1 39335,http://trinityds.com,1 39336,http://trinitychurchgosforth.easysearch.org.uk,1 39337,http://tridentha.smpshowcase.com,1 39338,http://tridentdrivertraining.theorytestpro.co.uk,1 39339,http://triangledrivertraining.co.uk,1 39340,http://trg.easysearch.org.uk,1 39341,http://trevdrive.theorytestpro.co.uk,1 39342,http://trevdrive.co.uk,1 39343,http://treowenprimaryschool.easysearch.org.uk,1 39344,http://trent.netescape.co.uk,1 39345,http://trenodeschool.easysearch.org.uk,1 39346,http://trecynon.2day.ws,1 39347,http://treboeth.theorytestpro.co.uk,1 39348,http://treatingautism.tclhosting.co.uk,1 39349,http://traveltips.usatoday.com,1 39350,http://travelsure.co.uk,1 39351,http://travelstareuropean.com,1 39352,http://www.six.somerset.gov.uk,1 39353,http://travel.uk2hand.com,1 39354,http://travel.startpage.co.uk,1 39355,http://www.sjbealehrconsult.co.uk,1 39356,http://transtscmf.lloydstsb.co.uk,1 39357,http://www.sjmdriving.com,1 39358,http://74.125.230.144,1 39359,http://transnet,1 39360,http://www.skcc.co.uk,1 39361,http://translate.google.cz,1 39362,http://www.skegnesstown.com,1 39363,http://transitiontownstafford.org.uk,1 39364,http://transfreespace.lloydstsb.co.uk,1 39365,http://trainingrocks.co.uk,1 39366,http://www.skeltongrange.org.uk,1 39367,http://training.howtomoodle.com,1 39368,http://www.sketchleyhill.leics.sch.uk,1 39369,http://www.ski-ers.com,1 39370,http://74.125.230.113,1 39371,http://trafford.portal.s-cool.co.uk,1 39372,http://www.skibeat.co.uk,1 39373,http://trafficdefencelawyer.co.uk,1 39374,http://tradetyres.com,1 39375,http://tracking.brightwave.co.uk,1 39376,http://www.skidcarscotland.co.uk,1 39377,http://tracesmartscam.wordpress.com,1 39378,http://74.125.230.112,1 39379,http://www.skill4ever.co.uk,1 39380,http://tpuc.org,1 39381,http://tpnet-tposuk.uk.tpnet.intra,1 39382,http://tpnet-service.uk.tpnet.intra,1 39383,http://tovabbtanulok.info,1 39384,http://touringcaravansuk.com,1 39385,http://tourettes-action.healthunlocked.com,1 39386,http://www.skills4driving.co.uk,1 39387,http://totz2teens.easysearch.org.uk,1 39388,http://totnes.childrencentre.org,1 39389,http://totalfrance.com,1 39390,http://www.skills4wheels.com,1 39391,http://torbayss.easysearch.org.uk,1 39392,http://torbay.gov.uk,1 39393,http://topmarksdrivinskool.com,1 39394,http://topkat.theorytestpro.co.uk,1 39395,http://topgeardrivinglessons.vpweb.co.uk,1 39396,http://topazblueuk.com,1 39397,http://toop.microsign.co.uk,1 39398,http://toonieexpress.easysearch.org.uk,1 39399,http://tools.ashridge.org.uk,1 39400,http://toolkit.sitekit.net,1 39401,http://toolbaroptions.com,1 39402,http://www.skillsforlife.at,1 39403,http://www.skillsforlifenetwork.com,1 39404,http://toolbar.blinkx.com,1 39405,http://toolbar-local.org.uk,1 39406,http://tonyone2one.theorytestpro.co.uk,1 39407,http://tonybudd.co.uk,1 39408,http://toniparker.easysearch.org.uk,1 39409,http://tonbridge-px.rtrk.co.uk,1 39410,http://tomholmes.easysearch.org.uk,1 39411,http://tomaszbarszcz.com,1 39412,http://tom-pc,1 39413,http://tolondonandbeyond.dyco-expat.com,1 39414,http://todoist.com,1 39415,http://today.yougov.co.uk,1 39416,http://toby.library.ubc.ca,1 39417,http://tobias-robinson.suite101.com,1 39418,http://tobeavet.com,1 39419,http://tnsradio.ning.com,1 39420,http://tncradf.easysearch.org.uk,1 39421,http://tllon-webmail.langhamhotels.com,1 39422,http://tlimbu.co.uk,1 39423,http://www.skillsschool.net,1 39424,http://tlc-drivertraining.moonfruit.com,1 39425,http://tizmos.com,1 39426,http://titan.reigate.ac.uk,1 39427,http://tiptonstjptfa.easysearch.org.uk,1 39428,http://www.skippersguide.co.uk,1 39429,http://www.skips-childcare.co.uk,1 39430,http://tinas.theorytestpro.co.uk,1 39431,http://tims.theorytestpro.co.uk,1 39432,http://timeline.britannica.co.kr,1 39433,http://www.skipton-tuition.co.uk,1 39434,http://time2ride.co.uk,1 39435,http://timclark.theorytestpro.co.uk,1 39436,http://tilburyssg.easysearch.org.uk,1 39437,http://www.skiptonfs.co.uk,1 39438,http://tiger.direct.gov.uk/cgi-bin/maternity.com,1 39439,http://www.sklad-kadri.si,1 39440,http://tiger.direct.gov.uk/cgi-bin/maternity,1 39441,http://www.sknvibes.com,1 39442,http://www.skoda.co.uk,1 39443,http://tiagreyhounds.easysearch.org.uk,1 39444,http://thyroiduk.easysearch.org.uk,1 39445,http://thurrockdrivingschool.co.uk,1 39446,http://thurnhamglasson.easysearch.org.uk,1 39447,http://thringstonecommunitycentre.org.uk,1 39448,http://threemilestone.2day.ws,1 39449,http://thoughcowardsflinch.com,1 39450,http://thorns.theorytestpro.co.uk,1 39451,http://thornhamcc.easysearch.org.uk,1 39452,http://thorleycc.easysearch.org.uk,1 39453,http://www.skpartnership.net,1 39454,http://www.skyeschoolofmotoring.co.uk,1 39455,http://thisisabuse.direct.gov.uk/faq/view/2/victims-of-abuse,1 39456,http://74.125.157.147,1 39457,http://www.skyline-owners-club.com,1 39458,http://www.skyshare.eu,1 39459,http://thirdplace.easysearch.org.uk,1 39460,http://www.sla.org.uk,1 39461,http://think.direct.gov.uk/video-speed.html,1 39462,http://think.direct.gov.uk/video-seatbelts.html,1 39463,http://think.direct.gov.uk/video-motorcycles.html,1 39464,http://think.direct.gov.uk/video-fatigue.html,1 39465,http://www.slaughampc.org.uk,1 39466,http://www.slc.ac.uk,1 39467,http://www.slc.org.uk,1 39468,http://www.slcvo.org.uk,1 39469,http://thin-blo0d.tumblr.com,1 39470,http://www.sleekdrive.co.uk,1 39471,http://thewillbureau.wordpress.com,1 39472,http://thewhitchurchweb.org,1 39473,http://thewalkcentre.easysearch.org.uk,1 39474,http://thevillagegarage.co.uk,1 39475,http://thetwounfortunates.blogspot.com,1 39476,http://thethoughtstash.wordpress.com,1 39477,http://74.125.127.106,1 39478,http://www.slideshare.net,1 39479,http://thesource.me.uk,1 39480,http://www.slmfiat.co.uk,1 39481,http://theseen.uk.net,1 39482,http://www.slmhyundai.co.uk,1 39483,http://thescorchedashphilosopher.blogspot.com,1 39484,http://theprioryinn.co.uk,1 39485,http://thepoint.monmouthshire.gov.uk,1 39486,http://theplusesofbeing50plus.blogspot.com,1 39487,http://www.sloanmedicalcentre.co.uk,1 39488,http://thepensionservices.gov.uk,1 39489,http://thepensionservice.gov.uk.master.com,1 39490,http://www.slotforum.com,1 39491,http://thepensionprotectionactof2006.com,1 39492,http://thepatriotswar.com,1 39493,http://thepasslane.co.uk,1 39494,http://www.sloughchildrenstrust.org.uk,1 39495,http://zebedee,1 39496,http://theoryhelp.theorytestpro.co.uk,1 39497,http://theorientacademy.top-forum.net,1 39498,http://theoaksss.easysearch.org.uk,1 39499,http://themotor.myfastforum.org,1 39500,http://themgclub.org,1 39501,http://themgclub.net,1 39502,http://thelounge,1 39503,http://theloophalifax.wordpress.com,1 39504,http://www.sloughmot.co.uk,1 39505,http://thelincolnite.co.uk,1 39506,http://thelearnercenter.co.uk,1 39507,http://thelawportal.co.uk,1 39508,http://thelatebay.com,1 39509,http://theknowledge.dwf.co.uk,1 39510,http://thekidsfunclub.easysearch.org.uk,1 39511,http://www.sloughmot.com,1 39512,http://theinternationalman.com,1 39513,http://theinteriordesignstudent.wordpress.com,1 39514,http://thehub.royallondongroup.com,1 39515,http://thehub.remploy.co.uk,1 39516,http://www.slq.qld.gov.au,1 39517,http://72.29.71.247,1 39518,http://thehomegroundandkatebushnewsandinfoforum.yuku.com,1 39519,http://www.sltest.co.uk,1 39520,http://theheatingexpert.co.uk,1 39521,http://thehawksleypartnership.com,1 39522,http://thehavenwolverhampton.easysearch.org.uk,1 39523,http://thegreenlivingforum.net,1 39524,http://thegrangesoutham.easysearch.org.uk,1 39525,http://theglobetrottersna1a.wikispaces.com,1 39526,http://thegateway.easysearch.org.uk,1 39527,http://thefirsttimebuyerclub.com,1 39528,http://www.sm-motors.com,1 39529,http://thedx.co.uk,1 39530,http://thedrivingschool.kinghamsweb.co.uk,1 39531,http://thedrivingacademy.theorytestpro.co.uk,1 39532,http://www.smaartmags.com,1 39533,http://thechildcarecompany.com,1 39534,http://thecheapestmotorinsurance.com,1 39535,http://www.smaarttalent.co.uk,1 39536,http://www.smahealthyeating.co.uk,1 39537,http://thebookshq.com,1 39538,http://theblacklistawards.com,1 39539,http://thebikeschool.com,1 39540,http://thebigtreeplant.direct.gov.uk/terms.html,1 39541,http://www.small-payday-loans.co.uk,1 39542,http://www.smallfordmotors.com,1 39543,http://thebigtreeplant.direct.gov.uk/contact.html,1 39544,http://thebigproject.co.uk,1 39545,http://thebdc.motionforum.net,1 39546,http://theatrebristol.net,1 39547,http://theaa.zubed.com,1 39548,http://the-starport.net,1 39549,http://the-qrops-specialist.com,1 39550,http://the-power-service.co.uk,1 39551,http://the-one-message.syriaforums.net,1 39552,http://the-international-investor.com,1 39553,http://the-avenue-wellingborough.squarespace.com,1 39554,http://thatmanchesterblog.co.uk,1 39555,http://www.smallremovals.co.uk,1 39556,http://th.thaiza.com,1 39557,http://www.smart-drive.me.uk,1 39558,http://tgsafe.co.uk,1 39559,http://tg2a13.mail.126.com,1 39560,http://text.food.gov.uk,1 39561,http://tewkesbury.gov.uk,1 39562,http://testweb1,1 39563,http://www.smart-pass-driving-school.co.uk,1 39564,http://testosteronemuscle.co.uk,1 39565,http://testbourneptfa.easysearch.org.uk,1 39566,http://testbooking.com,1 39567,http://testa.tedcath.co.uk,1 39568,http://test.turndebtaround.com,1 39569,http://test.sor.org,1 39570,http://www.smart-training-swansea.co.uk,1 39571,http://test.policyadmin.co.uk,1 39572,http://www.smart1.co.uk,1 39573,http://test.nationalarchives.gov.uk,1 39574,http://test.go-on.co.uk,1 39575,http://test.floatdesign.net,1 39576,http://test.education.gov.uk,1 39577,http://test.bllrf.org.uk,1 39578,http://test-www.wakeupyourwealth.com,1 39579,http://tesco-complaint.blogspot.com,1 39580,http://www.smartagent.co.uk,1 39581,http://terryhaguedrivingschool.com,1 39582,http://terranovagp.co.uk,1 39583,http://temp63.eisite2.co.uk,1 39584,http://tellthebride.com,1 39585,http://telfordeducation.taw.org.uk,1 39586,http://telford.gov.uk,1 39587,http://telford-partnership.org.uk,1 39588,http://telferscotsch.easysearch.org.uk,1 39589,http://teignacademy.co.uk,1 39590,http://teesside.easyads123.co.uk,1 39591,http://tees-su.org.uk,1 39592,http://teddingtontown.co.uk,1 39593,http://www.smartdriveofskegness.co.uk,1 39594,http://techpotential.co.uk,1 39595,http://technology.timesonline.co.uk,1 39596,http://techmilieu.com,1 39597,http://techdis.palepurple.co.uk,1 39598,http://teaxl0002,1 39599,http://www.smartdriveuk.co.uk,1 39600,http://teamshare.xerox.net,1 39601,http://teams.uk.hsbc,1 39602,http://teams.hk.hsbc,1 39603,http://teams,1 39604,http://teammattyfundraising.easysearch.org.uk,1 39605,http://www.smarterworkingwm.co.uk,1 39606,http://team.hub.tesco.org,1 39607,http://teaksheds.co.uk,1 39608,http://teakdoor.com,1 39609,http://teachweb.co.uk,1 39610,http://www.smartgeezer.co.uk,1 39611,http://teacherweb.com,1 39612,http://teacherdo.ru,1 39613,http://teach.newport.ac.uk,1 39614,http://tds.theorytestpro.co.uk,1 39615,http://tcedia002,1 39616,http://70.38.56.158,1 39617,http://tbb.easysearch.org.uk,1 39618,http://taylormadedriving.com,1 39619,http://taxdisc.direct.gov.uk/EvlPortalApp/,1 39620,http://www.smartmania.co.uk,1 39621,http://6thwednesfieldguides.easysearch.org.uk,1 39622,http://6thner.easysearch.org.uk,1 39623,http://tas24a,1 39624,http://www.smartmaniacs.co.uk,1 39625,http://www.healthandsafetyfilms.co.uk,1 39626,http://www.esc.org.uk,1 39627,http://www.esc.ac.uk,1 \ No newline at end of file diff --git a/ckanext/qa/tests/data/6a7baac6-d363-4a9d-8e9d-e584f38c05c3.html b/ckanext/qa/tests/data/6a7baac6-d363-4a9d-8e9d-e584f38c05c3.html new file mode 100644 index 00000000..d601808b --- /dev/null +++ b/ckanext/qa/tests/data/6a7baac6-d363-4a9d-8e9d-e584f38c05c3.html @@ -0,0 +1,1978 @@ + + + + + + +1:10 000 Scale Raster - large-scale detailed mapping + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + +
+ + + + + + +
+ + +
+ + +
+ + +
+ + + +
+ + + + + + + + + + + + + + + + + + +
+
+ Site Search + + + + + +
+
+ + +
+ + + + + + +
+ + + +
+ + + + + + +
+ + + +
+ + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + + + + +
+

1:10 000 Scale Raster

+

1:10 000 Scale Raster map extract1:10 000 Scale Raster is our most detailed backdrop product. You can overlay your information on top of it, to give it a geographic context.

+

Ideal for working at a local or community level, to present location of your assets or customers, or to look into planning applications.

+
+
+ + + + +
+ + + + + + + + +
+ + + + + + + + +
+
+ +

Features and benefits

+

Cogs

+
    +
  • Provides details such as fences, field boundaries, road names and buildings.
  • +
  • Seamless dataset, no overlaps or joins.
  • +
  • Available in black and white or colour.
  • +
+

 

+ + + +
+
+ + + + + + +
+
+ +

Suggested uses

+

Cogs and men

+
    +
  • Environmental analysis
  • +
  • Asset management
  • +
  • National planning policy
  • +
  • Planning applications review
  • +
+

 

+ + + +
+
+ + + + + + +
+
+ +

Technical details

+

Format: Colour – TIFF LZW compressed or TIFF uncompressed. Black and White – TIFF Uncompressed, TIFF group 3 compression, TIFF group 4 compression or Windows® BMP uncompressed.

+

Tile size: 5km x 5km

+

Data structure: Raster.

+

Colour options: Black and White and Colour. Colour is used to help with the cartographic interpretation of features within the data.

+

Scale: 1:10 000.

+

Update frequency: Annually – change-only updates.

+

Supply: CD and DVD.

+

Coverage: Great Britain.

+

 

+ + + +
+
+ + + + + + + + + + +
+ + + + + +
+ + + + + + + + +
+
+ +

Try now   + + + + + + +

+ + + +
+
+ + + + + + +
+
+ +

Who should use it

+ + + +
+
+ + + + + + +
+
+ +

How to use it

+ + + +
+
+ + + + + + +
+
+ +

How to buy

+ + + +
+
+ + + +
+ + + + +
+ +
+ + + + + + + + + +
+ +
+ + + +
+ + + + + + + + +
+ + + + + + + + + + +

For general enquiries, complaints, feedback or suggestions, email: customerservices@ordnancesurvey.co.uk or call us on 08456 05 05 05

+ + + +
+ + +
+ + + + + + + +
+ + + + + + + diff --git a/ckanext/qa/tests/data/9_sus_fisheries_201003.csv b/ckanext/qa/tests/data/9_sus_fisheries_201003.csv new file mode 100644 index 00000000..fd5ac70c --- /dev/null +++ b/ckanext/qa/tests/data/9_sus_fisheries_201003.csv @@ -0,0 +1,24 @@ +9 Sustainable Fisheries, +, +Percentage, +, +Year,Fish stocks harvested sustainably and at full reporoductive capacity +1990,12 +1991,11 +1992,11 +1993,11 +1994,11 +1995,11 +1996,11 +1997,6 +1998,17 +1999,6 +2000,22 +2001,22 +2002,33 +2003,28 +2004,28 +2005,39 +2006,33 +2007,39 +2008,50 diff --git a/ckanext/qa/tests/data/Abuse_of_Vulnerable_Adults_report_2009-10.pdf b/ckanext/qa/tests/data/Abuse_of_Vulnerable_Adults_report_2009-10.pdf new file mode 100644 index 00000000..14ad2f7f Binary files /dev/null and b/ckanext/qa/tests/data/Abuse_of_Vulnerable_Adults_report_2009-10.pdf differ diff --git a/ckanext/qa/tests/data/August-2010.xls b/ckanext/qa/tests/data/August-2010.xls new file mode 100644 index 00000000..aa6ec475 Binary files /dev/null and b/ckanext/qa/tests/data/August-2010.xls differ diff --git a/ckanext/qa/tests/data/BagotsResult2010.rdfa b/ckanext/qa/tests/data/BagotsResult2010.rdfa new file mode 100644 index 00000000..5c4dbc11 --- /dev/null +++ b/ckanext/qa/tests/data/BagotsResult2010.rdfa @@ -0,0 +1,525 @@ + + + + + + + + + + + + + + + + + + + + + + + Bagots Result 2010 + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + +

+ + + + + + + + + + + + +
  + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + + + + +
+
+
+ + + + + + +
+
+ + + + + + + + + +
+Back to ESBC Homepage + + + + + + +
  + +
+
+
+ +
+ +
+ + + + + + + + + + +
Home | Accessibility | Sitemap + | Contact Us | Cookies | Find My Councillor | Find My Nearest            Decrease Font Size +Increase Font Size  |   Thunder Screen Reader Listen to this website
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
A - Z of Council Services  A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | All Services
+
+
   Welcome to: + Skip BreadcrumbEast Staffordshire Borough Council: Homepage > A - Z of Services > Elections > Bagots Result 2010 + +
+ + + + + + + + + + + + + +
+ + + +
+ + + +
+
+ + + + + + +
+ + + +
+ + + +
+ + + + + + + + + + + + + + +
+
+
+ + + + + + + + + + + + + + +
+ + + + +
+ + + +
+ +
+
+

2010 Election Results for Bagots Ward

+

Election date: May 6, 2010

+

Electorate: 2125

+

Ballot Papers Issued: 1606

+

Rejected Ballot Papers: 12

+

Turnout:75.58%

+ + + + + + + + + + + + + + + + + + + +
Candidate's Name PartyVotesPercentage of Electorate Elected?
Charles Dean Young Liberal Democrats41419.48%No
Greg Hall Conservative117755.38%Yes
+

Duly Elected:

+

Gregory William Hall (Conservative)

+

Licence for election data: Creative Commons CC0 1.0 Universal

+
+ + + + + +
+ + + + +
+ + + +
Open Election Data
+
+
+ + +
+
+
+
+
+ +
+ + + + + +
+ +
+ + + + + + + +

Website Feedback

Give a positive website rating + Give an average website rating + Give a negative website rating
+ + + + + + + + + + + + + + + + + + + + + +
+East Staffordshire Borough Council, The Maltsters, Wetmore Road, Burton upon Trent, DE14 1LS +
+ Telephone: 01283 508 000, 9:00am - 5:00pm Monday to Friday
+ + + © 2008 East Staffordshire Borough Council

+ + Valid XHTML 1.0! W3C CSS Checker Link to DirectGov Website + Link to Disabled Go Website

+Translate this website, select a country from below

+
+ +
+
+
+ + + + + + +
+ + diff --git a/ckanext/qa/tests/data/CloudStore - May 2012 cat export (three header rows).ods b/ckanext/qa/tests/data/CloudStore - May 2012 cat export (three header rows).ods new file mode 100644 index 00000000..7dfc35fb Binary files /dev/null and b/ckanext/qa/tests/data/CloudStore - May 2012 cat export (three header rows).ods differ diff --git a/ckanext/qa/tests/data/DfidProjects-trunc.xml b/ckanext/qa/tests/data/DfidProjects-trunc.xml new file mode 100644 index 00000000..ac121811 --- /dev/null +++ b/ckanext/qa/tests/data/DfidProjects-trunc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ckanext/qa/tests/data/FCOServices_TransparencySpend_May2011.csv b/ckanext/qa/tests/data/FCOServices_TransparencySpend_May2011.csv new file mode 100644 index 00000000..68695ca4 --- /dev/null +++ b/ckanext/qa/tests/data/FCOServices_TransparencySpend_May2011.csv @@ -0,0 +1 @@ +Department,Entity,Payment Date,Supplier Name,Transaction Number,Expense Area,Expense Types,Amount (excluding VAT) FCO,FCOS,11-May-11,RS COMPONENTS LTD (11532010),98947,Client Delivery,IS Hardware,"47,072.02" FCO,FCOS,17-May-11,SPECIALIST COMPUTER CENTRES PLC,100092,Client Delivery,IS Hardware,"25,235.07" FCO,FCOS,23-May-11,NSSL GLOBAL LTD,100294,Client Delivery,Telecomms Usage,"30,699.44" FCO,FCOS,27-May-11,PMR PRODUCTS LTD,100670,Client Delivery,IS Hardware,"78,389.21" \ No newline at end of file diff --git a/ckanext/qa/tests/data/FHRS501en-GB.xml.zip b/ckanext/qa/tests/data/FHRS501en-GB.xml.zip new file mode 100644 index 00000000..1d5e7d16 Binary files /dev/null and b/ckanext/qa/tests/data/FHRS501en-GB.xml.zip differ diff --git a/ckanext/qa/tests/data/HS2-ARP-00-GI-RW-00434_RCL_V4.shp b/ckanext/qa/tests/data/HS2-ARP-00-GI-RW-00434_RCL_V4.shp new file mode 100644 index 00000000..31d6c1ed Binary files /dev/null and b/ckanext/qa/tests/data/HS2-ARP-00-GI-RW-00434_RCL_V4.shp differ diff --git a/ckanext/qa/tests/data/Inpatients_MHA_Machine_readable_dataset_1011.csv b/ckanext/qa/tests/data/Inpatients_MHA_Machine_readable_dataset_1011.csv new file mode 100644 index 00000000..ec46b496 Binary files /dev/null and b/ckanext/qa/tests/data/Inpatients_MHA_Machine_readable_dataset_1011.csv differ diff --git a/ckanext/qa/tests/data/SG_HumanHealthSafety.atom_feed b/ckanext/qa/tests/data/SG_HumanHealthSafety.atom_feed new file mode 100644 index 00000000..73680a0a --- /dev/null +++ b/ckanext/qa/tests/data/SG_HumanHealthSafety.atom_feed @@ -0,0 +1,134 @@ + + + + + + + Scottish Government - Human Health and Safety (INSPIRE pre-defined download service) + + This Atom feed provides access to a file download through an INSPIRE Pre-defined Download Service for the Scottish Government - Human Health and Safety spatial datasets published by the Scottish Government. + + + + + + + + + + http://sedsh127.sedsh.gov.uk/Atom_data/ScotGov/HumanHealthSafety/SG_HumanHealthSafety.atom.en.xml + + + (e) intellectual property rights; + + 2014-03-24T00:00:00Z + + + + + Scottish Government + GI-SAT@scotland.gsi.gov.uk + + + + + + www.gov.scot/SG_NHS_HealthBoards_2014 + + + + + + + Scottish Government + GI-SAT@scotland.gsi.gov.uk + + http://sedsh127.sedsh.gov.uk/Atom_data/ScotGov/HumanHealthSafety/subfeed_NHSHealthBoards2014.atom.en.xml + + + + + + 2014-04-01T00:00:00Z + + + Delivery of frontline healthcare services in Scotland are the responsibility of 14 regional National Health Service (NHS) Boards that report to the Scottish Government. The boundaries of NHS Health Boards in Scotland are defined by National Health Service (Variation of Areas of Health Boards) (Scotland) Order 2013 (SSI 2013/347), which came into force on April 1st 2014, and replaces the previous definition based upon the former Regions and Districts of the Local Government (Scotland) Act 1973. This change was made in order to re-align Health Boards with the combined area of each Local Authority that they serve. It is expected that future changes to Local Authorities will result in a subsequent change in Health Boards. + + +

+ Shapefile file download: (media type application/x-shapefile): Click to download: + British National Grid +
+ +
+ Dataset metadata: + UK GEMINI +

+ SG Logo + ]]>
+ + Scottish Government - NHS Health Boards (INSPIRE pre-defined download service) + + 2014-04-01T00:00:00Z + + 51.25 -10.75 51.25 -5.5 55.5 -5.5 55.5 -10.75 51.25 -10.75 +
+ + + + www.gov.scot/SG_ScottishPoliceDivisions_2013 + + + + + + + Scottish Government + GI-SAT@scotland.gsi.gov.uk + + http://sedsh127.sedsh.gov.uk/Atom_data/ScotGov/HumanHealthSafety/subfeed_ScottishPoliceDivisions2013.atom.en.xml + + + + + + 2015-07-15T00:00:00Z + + + The Police and Fire Reform (Scotland) Act 2012 dissolved the eight former police and fire areas in to a single service for all of Scotland. Royal assent for the bill was received on August 7th, 2012 and came into effect on April 1st, 2013. Following from this, fourteen police divisions were created to enable policing at the local level. The fourteen divisions were created from aggregations of Local Authorities (Ordnance Survey BoundaryLine), and it is expected that Police Divisions will remain coterminous with Local Authorities as boundaries change. + +

+ Shapefile file download: (media type application/x-shapefile): Click to download: + British National Grid +
+
+ Dataset metadata: + UK GEMINI +

+ SG Logo + ]]>
+ + Scottish Government - Scottish Police Divisions (INSPIRE pre-defined download service) + + 2015-07-15T00:00:00Z + + 51.25 -10.75 51.25 -5.5 55.5 -5.5 55.5 -10.75 51.25 -10.75 +
+
diff --git a/ckanext/qa/tests/data/adjustment_table.torrent b/ckanext/qa/tests/data/adjustment_table.torrent new file mode 100644 index 00000000..d90c1b19 Binary files /dev/null and b/ckanext/qa/tests/data/adjustment_table.torrent differ diff --git a/ckanext/qa/tests/data/afbi_get_capabilities.wms b/ckanext/qa/tests/data/afbi_get_capabilities.wms new file mode 100644 index 00000000..4f7c919d --- /dev/null +++ b/ckanext/qa/tests/data/afbi_get_capabilities.wms @@ -0,0 +1,189 @@ + + + WMS + Primary River Basin Catchments (INSPIRE View Service) + This vector dataset was generated from OSNI's 50m DTM using ESRI ArcView software in 1999. The boundaries represent the agreed delineation by the then Science Service, Rivers Agency and OSNI.. + + ESRI + INSPIRE View + + NI + + + Catchment + + Rivers Agency + INSPIRE:ViewService + + + + + WMSINSPIREViewServiceinfoMapAccessServiceLPSAFBIRiverBasinCatcmentHydrography + + + + GIS UNIT, AFESD + Agri-Food and Biosciences Institute (AFBI) + + PointOfContact + + Postal Address +
Newforge Lane
+ Belfast + [your state or province] + BT9 5PX + Northern Ireland +
+ [your telephone number] + [your fax number] + info@info.com +
+ conditions apply + license + 2048 + 2048 +
+ + + + application/vnd.ogc.wms_xml + text/xml + + + + + + + + + + image/bmp + image/jpeg + image/tiff + image/png + image/png8 + image/png24 + image/png32 + image/gif + image/svg+xml + + + + + + + + + + + + + text/xml + text/html + + + + + + + + + + + application/vnd.ogc.sld+xml + + + + + + + + + + + application/vnd.ogc.se_xml + + + text/xml + + + + http://webservices.spatialni.gov.uk/arcgis/services/AFBI/AFBIPrimaryRiverBasinCatchments/MapServer/InspireViewServiceapplication/vnd.ogc.wms_xmlservice2012-05-23COMMISSION REGULATION (EU) No 1089/2010 of 23 November 2010 implementing Directive 2007/2/EC of the European Parliament and of the Council as regards interoperability of spatial data sets and services2010-12-08OJ:L:2010:323:0011:0102:EN:PDFhttp://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2010:323:0011:0102:EN:PDFapplication/pdfnotEvaluatedAgri-Food and Biosciences Institute (AFBI)info@info.com2012-05-23viewinfoMapAccessServiceGEMET - INSPIRE themes2008-06-01HydrographyWMSINSPIREViewServiceLPSAFBIRiverBasinCatcmentengengengapplication/vnd.iso.19139+xml + AFBI Primary River Basin Catchments of Northern Ireland + CRS:84 + EPSG:4326 + EPSG:3395 + EPSG:3857 + EPSG:4258 + EPSG:3034 + EPSG:3035 + EPSG:3042EPSG:3043EPSG:3044EPSG:3045EPSG:3046EPSG:3047EPSG:3048EPSG:3049EPSG:25830EPSG:25831EPSG:25832EPSG:25833EPSG:25834EPSG:25835EPSG:25836EPSG:25837EPSG:29902 + -8.33633565174996 + -5.29445906124993 + 53.6983372926004 + 55.3898531296186 + + + + + + + + + + Primary_River_Basin_Catchments_of_Northern_Ireland + Primary River Basin Catchments of Northern Ireland + Layer Primary River Basin Catchments of Northern Ireland + + ESRI + INSPIRE View + LPS + NI + River + Basin + Catchment + AFBI + Rivers Agency + + CRS:84 + EPSG:4326 + EPSG:3395 + EPSG:3857 + EPSG:4258 + EPSG:3034 + EPSG:3035 + EPSG:32629 + EPSG:3041 + EPSG:25829 + EPSG:4299 + EPSG:29902 + EPSG:3042EPSG:3043EPSG:3044EPSG:3045EPSG:3046EPSG:3047EPSG:3048EPSG:3049EPSG:25830EPSG:25831EPSG:25832EPSG:25833EPSG:25834EPSG:25835EPSG:25836EPSG:25837 + -8.19806853399996 + -5.43272617899993 + 53.7752243761012 + 55.3129660461178 + + + + + + + + + + + + + + text/xml + + + +
\ No newline at end of file diff --git a/ckanext/qa/tests/data/allotment.kml b/ckanext/qa/tests/data/allotment.kml new file mode 100644 index 00000000..a5d6ece9 --- /dev/null +++ b/ckanext/qa/tests/data/allotment.kml @@ -0,0 +1,8 @@ + + + + allotment.kml + 1 +More information ]]> Birchen Grove -0.258788 51.569319 100 0 0 1 1 relativeToGround -0.258788,51.569319,50 More information ]]> Bovingdon Avenue -0.277903 51.546528 100 0 0 1 1 relativeToGround -0.277903,51.546528,50 More information ]]> Bridge Road -0.254482 51.549062 100 0 0 1 1 relativeToGround -0.254482,51.549062,50 More information ]]> Cecil Avenue -0.290375 51.550747 100 0 0 1 1 relativeToGround -0.290375,51.550747,50 More information ]]> Clifford Road -0.306710 51.541932 100 0 0 1 1 relativeToGround -0.306710,51.541932,50 More information ]]> Dog Lane -0.254806 51.550915 100 0 0 1 1 relativeToGround -0.254806,51.550915,50 More information ]]> Dors Close -0.260077 51.572149 100 0 0 1 1 relativeToGround -0.260077,51.572149,50 More information ]]> Elms Gardens -0.328459 51.557662 100 0 0 1 1 relativeToGround -0.328459,51.557662,50 More information ]]> Furness Road -0.239371 51.539027 100 0 0 1 1 relativeToGround -0.239371,51.539027,50 More information ]]> Gibbons Road -0.257193 51.546965 100 0 0 1 1 relativeToGround -0.257193,51.546965,50 More information ]]> Gladstone Park Gardens -0.227320 51.559945 100 0 0 1 1 relativeToGround -0.227320,51.559945,50 More information ]]> Kinch Grove -0.289576 51.576856 100 0 0 1 1 relativeToGround -0.289576,51.576856,50 More information ]]> Leighton Gardens -0.228291 51.536765 100 0 0 1 1 relativeToGround -0.228291,51.536765,50 More information ]]> Longstone Avenue -0.244662 51.543254 100 0 0 1 1 relativeToGround -0.244662,51.543254,50 More information ]]> Lyon Park Avenue -0.289909 51.546934 100 0 0 1 1 relativeToGround -0.289909,51.546934,50 More information ]]> Nutfield Road -0.239533 51.562785 100 0 0 1 1 relativeToGround -0.239533,51.562785,50 More information ]]> Old Kenton Lane -0.270677 51.583618 100 0 0 1 1 relativeToGround -0.270677,51.583618,50 More information ]]> Sudbury Court Road -0.326050 51.562514 100 0 0 1 1 relativeToGround -0.326050,51.562514,50 More information ]]> Tenterden Close -0.297887 51.573640 100 0 0 1 1 relativeToGround -0.297887,51.573640,50 More information ]]> Tower Road -0.237785 51.545079 100 0 0 1 1 relativeToGround -0.237785,51.545079,50 More information ]]> Townsend Lane -0.256923 51.578707 100 0 0 1 1 relativeToGround -0.256923,51.578707,50 More information ]]> Vale Farm -0.317143 51.558144 100 0 0 1 1 relativeToGround -0.317143,51.558144,50 More information ]]> Woodfield Avenue -0.308882 51.561469 100 0 0 1 1 relativeToGround -0.308882,51.561469,50 + + diff --git a/ckanext/qa/tests/data/bis-quarterly-publications-dg-expenses-jul-sep-2010.doc b/ckanext/qa/tests/data/bis-quarterly-publications-dg-expenses-jul-sep-2010.doc new file mode 100644 index 00000000..e7b827a8 Binary files /dev/null and b/ckanext/qa/tests/data/bis-quarterly-publications-dg-expenses-jul-sep-2010.doc differ diff --git a/ckanext/qa/tests/data/blaby_get_capabilities_1_0.wfs b/ckanext/qa/tests/data/blaby_get_capabilities_1_0.wfs new file mode 100644 index 00000000..931cfd3f --- /dev/null +++ b/ckanext/qa/tests/data/blaby_get_capabilities_1_0.wfs @@ -0,0 +1,22 @@ +WFSBlaby - Web Feature ServiceThis is the reference implementation of WFS 1.0.0 and WFS 1.1.0, supports all WFS operations including Transaction.WFS, WMS, GEOSERVERhttp://w3.blaby.gov.uk/geoserver/wfsNONENONEinspire:listed_buildingsBlaby Listed BuildingsListed Buildings located within the District of +Blabylisted_buildings, features, buildingsEPSG:27700inspire:tree_preservation_orderstree preservation ordersTree Preservation Orders are made by a Planning +Authority under Part V111 of the Town and +Country Planning Act 1990 in England and Wales +or Section 160 of the Town and Country Planning +(Scotland) Act 1997 in Scotland and within the +procedures set out in the Town and Country +Planning (Trees) Regulations 1999 (England and +Wales) or the Town and Country Planning (Tree +Preservation Order and Trees in Conservation +Areas) (Scotland) Regulations 1975-84. They are +an effective means of protecting individual trees, +groups of trees or woodlands whose removal +would have significant impact on the public +amenity of an area. They form a legal constraint +permanently attached to the title of the land +where the trees are located. Individual trees are +represented by a point and groups of trees are +represented by a polygon. Upon accessing this +Licensed Data you will be deemed to have +accepted the terms of the Public Sector End User +Licence - INSPIRE.features, tree_preservation_orders, tree, geoserver, geonetwork, protected sites, environment, blabyEPSG:27700absabs_2abs_3abs_4acosAddCoveragesAffineAggregateAreaarea2AreaGridasinatanatan2BandMergeBandSelectBarnesSurfacebetweenboundaryboundaryDimensionBoundsbufferBufferFeatureCollectionbufferWithSegmentsCategorizeceilCentroidclassifyClipCollectGeometriesCollection_AverageCollection_BoundsCollection_CountCollection_MaxCollection_MedianCollection_MinCollection_NearestCollection_SumCollection_UniqueConcatenatecontainsContourconvertconvexHullcosCountCropCoveragecrossesdateFormatdateParsedifferencedimensiondisjointdisjoint3Ddistancedistance3Ddouble2boolendAngleendPointenvenvelopeEqualIntervalequalsExactequalsExactToleranceequalToexpexteriorRingFeaturefloorgeometryTypegeomFromWKTgeomLengthgetGeometryNgetXgetYgetzgreaterEqualThangreaterThanGridHeatmapidIEEEremainderif_then_elsein10in2in3in4in5in6in7in8in9InclusionFeatureCollectionint2bboolint2ddoubleinteriorPointinteriorRingNInterpolateintersectionIntersectionFeatureCollectionintersectsintersects3DisClosedisCoverageisEmptyisInstanceOfisLikeisNullisometricisRingisSimpleisValidisWithinDistanceisWithinDistance3DJenkslengthlessEqualThanlessThanlistlogLRSGeocodeLRSMeasureLRSSegmentmaxmax_2max_3max_4minmin_2min_3min_4mincircleminimumdiameterminrectanglemoduloMultiplyCoveragesNearestnotnotEqualTonumberFormatnumberFormat2numGeometriesnumInteriorRingnumPointsoctagonalenvelopeoffsetoverlapsparameterparseBooleanparseDoubleparseIntparseLongpiPointBufferspointNPointStackerPolygonExtractionpowpropertyPropertyExistsQuantileQueryrandomRangeLookupRasterAsPointCollectionRasterZonalStatisticsRecodeRectangularCliprelaterelatePatternReprojectrescaleToPixelsrintroundround_2roundDoubleScaleCoveragesetCRSSimplifysinSnapsqrtStandardDeviationstartAnglestartPointstrCapitalizestrConcatstrEndsWithstrEqualsIgnoreCasestrIndexOfstringTemplatestrLastIndexOfstrLengthstrMatchesstrPositionstrReplacestrStartsWithstrSubstringstrSubstringStartstrToLowerCasestrToUpperCasestrTrimstrTrim2StyleCoveragesymDifferencetantoDegreestoRadianstouchestoWKTTransformunionUnionFeatureCollectionUniqueUniqueIntervalVectorToRasterVectorZonalStatisticsverticeswithin \ No newline at end of file diff --git a/ckanext/qa/tests/data/blaby_get_capabilities_1_1.wfs b/ckanext/qa/tests/data/blaby_get_capabilities_1_1.wfs new file mode 100644 index 00000000..7e93e9d6 --- /dev/null +++ b/ckanext/qa/tests/data/blaby_get_capabilities_1_1.wfs @@ -0,0 +1,22 @@ +Blaby - Web Feature ServiceThis is the reference implementation of WFS 1.0.0 and WFS 1.1.0, supports all WFS operations including Transaction.WFSWMSGEOSERVERWFS1.1.0NONENONEBlaby District CouncilJo HicklingSystems AdministratorNarboroughLeicestershireLE19 2EPUnited Kingdomjo.hickling@blaby.gov.uk1.0.01.1.0text/xmltext/xml; subtype=gml/3.1.1resultshitstext/xml; subtype=gml/3.1.1GML2KMLSHAPE-ZIPapplication/gml+xml; version=3.2application/jsonapplication/vnd.google-earth.kml xmlapplication/vnd.google-earth.kml+xmlcsvgml3gml32jsontext/xml; subtype=gml/2.1.2text/xml; subtype=gml/3.22http://w3.blaby.gov.uk/geonetwork/srv/eng/xml_iso19139?uuid=914B1D48-EAC3-4537-BFF2-E3F20D5690B2application/vnd.ogc.csw.GetRecordByIdResponse_xmlengengunknownQueryinspire:listed_buildingsBlaby Listed BuildingsListed Buildings located within the District of +Blabylisted_buildingsfeaturesbuildingsurn:x-ogc:def:crs:EPSG:27700urn:x-ogc:def:crs:EPSG:4258urn:x-ogc:def:crs:EPSG:4326urn:x-ogc:def:crs:EPSG:3034urn:x-ogc:def:crs:EPSG:3857urn:x-ogc:def:crs:EPSG:3003-1.324991965330988 52.49105288710921-1.0614837510790833 52.65510821010321inspire:tree_preservation_orderstree preservation ordersTree Preservation Orders are made by a Planning +Authority under Part V111 of the Town and +Country Planning Act 1990 in England and Wales +or Section 160 of the Town and Country Planning +(Scotland) Act 1997 in Scotland and within the +procedures set out in the Town and Country +Planning (Trees) Regulations 1999 (England and +Wales) or the Town and Country Planning (Tree +Preservation Order and Trees in Conservation +Areas) (Scotland) Regulations 1975-84. They are +an effective means of protecting individual trees, +groups of trees or woodlands whose removal +would have significant impact on the public +amenity of an area. They form a legal constraint +permanently attached to the title of the land +where the trees are located. Individual trees are +represented by a point and groups of trees are +represented by a polygon. Upon accessing this +Licensed Data you will be deemed to have +accepted the terms of the Public Sector End User +Licence - INSPIRE.featurestree_preservation_orderstreegeoservergeonetworkprotected sitesenvironmentblabyurn:x-ogc:def:crs:EPSG:27700urn:x-ogc:def:crs:EPSG:4258urn:x-ogc:def:crs:EPSG:4326urn:x-ogc:def:crs:EPSG:3034urn:x-ogc:def:crs:EPSG:3857urn:x-ogc:def:crs:EPSG:3003-1.3367651115166437 52.501378559400266-1.0825921737019164 52.66291167333094gml:Envelopegml:Pointgml:LineStringgml:PolygonLessThanGreaterThanLessThanEqualToGreaterThanEqualToEqualToNotEqualToLikeBetweenNullCheckabsabs_2abs_3abs_4acosAddCoveragesAffineAggregateAreaarea2AreaGridasinatanatan2BandMergeBandSelectBarnesSurfacebetweenboundaryboundaryDimensionBoundsbufferBufferFeatureCollectionbufferWithSegmentsCategorizeceilCentroidclassifyClipCollectGeometriesCollection_AverageCollection_BoundsCollection_CountCollection_MaxCollection_MedianCollection_MinCollection_NearestCollection_SumCollection_UniqueConcatenatecontainsContourconvertconvexHullcosCountCropCoveragecrossesdateFormatdateParsedifferencedimensiondisjointdisjoint3Ddistancedistance3Ddouble2boolendAngleendPointenvenvelopeEqualIntervalequalsExactequalsExactToleranceequalToexpexteriorRingFeaturefloorgeometryTypegeomFromWKTgeomLengthgetGeometryNgetXgetYgetzgreaterEqualThangreaterThanGridHeatmapidIEEEremainderif_then_elsein10in2in3in4in5in6in7in8in9InclusionFeatureCollectionint2bboolint2ddoubleinteriorPointinteriorRingNInterpolateintersectionIntersectionFeatureCollectionintersectsintersects3DisClosedisCoverageisEmptyisInstanceOfisLikeisNullisometricisRingisSimpleisValidisWithinDistanceisWithinDistance3DJenkslengthlessEqualThanlessThanlistlogLRSGeocodeLRSMeasureLRSSegmentmaxmax_2max_3max_4minmin_2min_3min_4mincircleminimumdiameterminrectanglemoduloMultiplyCoveragesNearestnotnotEqualTonumberFormatnumberFormat2numGeometriesnumInteriorRingnumPointsoctagonalenvelopeoffsetoverlapsparameterparseBooleanparseDoubleparseIntparseLongpiPointBufferspointNPointStackerPolygonExtractionpowpropertyPropertyExistsQuantileQueryrandomRangeLookupRasterAsPointCollectionRasterZonalStatisticsRecodeRectangularCliprelaterelatePatternReprojectrescaleToPixelsrintroundround_2roundDoubleScaleCoveragesetCRSSimplifysinSnapsqrtStandardDeviationstartAnglestartPointstrCapitalizestrConcatstrEndsWithstrEqualsIgnoreCasestrIndexOfstringTemplatestrLastIndexOfstrLengthstrMatchesstrPositionstrReplacestrStartsWithstrSubstringstrSubstringStartstrToLowerCasestrToUpperCasestrTrimstrTrim2StyleCoveragesymDifferencetantoDegreestoRadianstouchestoWKTTransformunionUnionFeatureCollectionUniqueUniqueIntervalVectorToRasterVectorZonalStatisticsverticeswithin \ No newline at end of file diff --git a/ckanext/qa/tests/data/blaby_get_capabilities_2_0.wfs b/ckanext/qa/tests/data/blaby_get_capabilities_2_0.wfs new file mode 100644 index 00000000..0f6c50da --- /dev/null +++ b/ckanext/qa/tests/data/blaby_get_capabilities_2_0.wfs @@ -0,0 +1,22 @@ +Blaby - Web Feature ServiceThis is the reference implementation of WFS 1.0.0 and WFS 1.1.0, supports all WFS operations including Transaction.WFSWMSGEOSERVERWFS2.0.0NONENONEBlaby District CouncilJo HicklingSystems AdministratorNarboroughLeicestershireLE19 2EPUnited Kingdomjo.hickling@blaby.gov.uk1.0.01.1.02.0.0text/xmltext/xml; subtype=gml/3.2resultshitstext/xml; subtype=gml/3.2GML2KMLSHAPE-ZIPapplication/gml+xml; version=3.2application/jsonapplication/vnd.google-earth.kml xmlapplication/vnd.google-earth.kml+xmlcsvgml3gml32jsontext/xml; subtype=gml/2.1.2text/xml; subtype=gml/3.1.1FALSE1000000noneTRUETRUETRUETRUETRUETRUEFALSEFALSETRUETRUETRUETRUEFALSETRUEFALSEwfs:Querywfs:StoredQueryhttp://w3.blaby.gov.uk/geonetwork/srv/eng/xml_iso19139?uuid=914B1D48-EAC3-4537-BFF2-E3F20D5690B2application/vnd.ogc.csw.GetRecordByIdResponse_xmlengengunknowninspire:listed_buildingsBlaby Listed BuildingsListed Buildings located within the District of +Blabylisted_buildingsfeaturesbuildingsurn:ogc:def:crs:EPSG::27700urn:ogc:def:crs:EPSG::4258urn:ogc:def:crs:EPSG::4326urn:ogc:def:crs:EPSG::3034urn:ogc:def:crs:EPSG::3857urn:ogc:def:crs:EPSG::3003-1.324991965330988 52.49105288710921-1.0614837510790833 52.65510821010321inspire:tree_preservation_orderstree preservation ordersTree Preservation Orders are made by a Planning +Authority under Part V111 of the Town and +Country Planning Act 1990 in England and Wales +or Section 160 of the Town and Country Planning +(Scotland) Act 1997 in Scotland and within the +procedures set out in the Town and Country +Planning (Trees) Regulations 1999 (England and +Wales) or the Town and Country Planning (Tree +Preservation Order and Trees in Conservation +Areas) (Scotland) Regulations 1975-84. They are +an effective means of protecting individual trees, +groups of trees or woodlands whose removal +would have significant impact on the public +amenity of an area. They form a legal constraint +permanently attached to the title of the land +where the trees are located. Individual trees are +represented by a point and groups of trees are +represented by a polygon. Upon accessing this +Licensed Data you will be deemed to have +accepted the terms of the Public Sector End User +Licence - INSPIRE.featurestree_preservation_orderstreegeoservergeonetworkprotected sitesenvironmentblabyurn:ogc:def:crs:EPSG::27700urn:ogc:def:crs:EPSG::4258urn:ogc:def:crs:EPSG::4326urn:ogc:def:crs:EPSG::3034urn:ogc:def:crs:EPSG::3857urn:ogc:def:crs:EPSG::3003-1.3367651115166437 52.501378559400266-1.0825921737019164 52.66291167333094TRUETRUETRUETRUEFALSETRUEFALSETRUETRUEFALSEASCDESCASCFALSExs:intxs:intxs:longxs:longxs:floatxs:floatxs:doublexs:doublexs:doublexs:doublexs:stringxs:stringxs:stringxs:stringxs:stringxs:doublexs:doublexs:doublexs:doublexs:doublexs:doublexs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:booleanxs:doublegml:AbstractGeometryTypexs:doublegml:AbstractGeometryTypexs:stringxs:stringxs:intxs:intxs:doublexs:doublexs:doublexs:doublexs:doublexs:doublexs:doublexs:stringxs:stringxs:stringxs:stringxs:intxs:stringxs:stringxs:stringxs:intxs:stringxs:stringxs:stringxs:intxs:doublexs:doublexs:intxs:intxs:doublexs:doublexs:intxs:doublexs:stringxs:intxs:intxs:booleanxs:stringxs:stringxs:stringxs:stringgml:AbstractGeometryTypexs:intgml:AbstractGeometryTypexs:stringxs:stringxs:stringgml:AbstractGeometryTypexs:floatxs:stringxs:stringxs:doublexs:stringxs:stringgml:AbstractGeometryTypexs:floatxs:floatxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:doublexs:floatxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:booleanxs:stringxs:stringxs:floatxs:floatxs:stringgml:AbstractGeometryTypexs:stringxs:floatxs:floatxs:floatxs:floatxs:floatxs:floatxs:stringxs:floatxs:floatxs:floatxs:stringxs:stringxs:stringxs:stringxs:booleanxs:stringxs:stringxs:stringxs:stringxs:intxs:stringxs:doublexs:booleanxs:booleanxs:stringxs:stringxs:stringxs:stringxs:stringgml:AbstractGeometryTypexs:doublexs:doublexs:floatxs:stringxs:stringxs:stringxs:stringxs:booleanxs:stringxs:stringxs:stringxs:stringxs:datexs:datexs:stringxs:stringxs:stringxs:stringxs:stringxs:intgml:AbstractGeometryTypexs:booleanxs:stringxs:stringxs:doublexs:stringxs:stringxs:doublexs:stringxs:stringxs:doublexs:stringxs:stringxs:booleanxs:doublexs:doublexs:stringxs:stringxs:stringxs:stringxs:stringxs:stringgml:AbstractGeometryTypexs:stringxs:doublexs:intxs:booleanxs:stringxs:stringxs:booleanxs:stringxs:stringxs:doublexs:booleanxs:stringxs:stringxs:doublexs:floatxs:stringgml:AbstractGeometryTypexs:stringgml:AbstractGeometryTypexs:stringxs:stringxs:doublexs:doublexs:stringgml:AbstractGeometryTypexs:stringgml:AbstractGeometryTypexs:doublegml:AbstractGeometryTypexs:stringgml:AbstractGeometryTypexs:intxs:doublegml:AbstractGeometryTypexs:doublegml:AbstractGeometryTypexs:doublegml:AbstractGeometryTypexs:booleanxs:stringxs:stringxs:booleanxs:stringxs:stringxs:stringxs:stringxs:doublexs:doublexs:doublexs:stringxs:stringxs:stringxs:intxs:stringxs:intxs:stringxs:intxs:intxs:stringxs:doublexs:floatxs:floatxs:stringxs:booleanxs:stringxs:stringxs:booleanxs:booleanxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:booleanxs:booleanxs:stringxs:stringxs:booleanxs:booleanxs:stringxs:stringxs:stringxs:booleanxs:booleanxs:stringxs:stringxs:stringxs:stringxs:booleanxs:booleanxs:stringxs:stringxs:stringxs:stringxs:stringxs:booleanxs:booleanxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:booleanxs:booleanxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:booleanxs:booleanxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:booleanxs:booleanxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:booleanxs:intxs:doublexs:intxs:stringgml:AbstractGeometryTypexs:stringgml:AbstractGeometryTypexs:intxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:booleanxs:booleanxs:booleanxs:stringxs:stringxs:doublexs:stringxs:stringxs:booleangml:AbstractGeometryTypexs:booleanxs:booleangml:AbstractGeometryTypexs:booleanxs:stringxs:booleanxs:stringxs:stringxs:booleanxs:stringxs:stringgml:AbstractGeometryTypexs:doublexs:booleangml:AbstractGeometryTypexs:booleangml:AbstractGeometryTypexs:booleangml:AbstractGeometryTypexs:booleanxs:stringxs:stringxs:doublexs:doublexs:stringxs:stringxs:doublexs:stringxs:doublexs:intxs:intxs:stringxs:booleanxs:floatxs:floatxs:booleanxs:floatxs:floatxs:stringxs:stringxs:doublexs:floatxs:stringxs:stringxs:stringxs:stringxs:doublexs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:doublexs:doublexs:doublexs:floatxs:floatxs:longxs:floatxs:floatxs:floatxs:floatxs:floatxs:intxs:floatxs:floatxs:doublexs:doublexs:doublexs:longxs:floatxs:floatxs:floatxs:floatxs:floatxs:intxs:floatxs:floatxs:stringgml:AbstractGeometryTypexs:stringgml:AbstractGeometryTypexs:stringgml:AbstractGeometryTypexs:intxs:intxs:intxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:booleanxs:booleanxs:booleanxs:stringxs:stringxs:stringxs:stringxs:floatxs:stringxs:stringxs:floatxs:stringxs:stringxs:stringxs:intgml:AbstractGeometryTypexs:intgml:AbstractGeometryTypexs:intgml:AbstractGeometryTypexs:stringgml:AbstractGeometryTypexs:stringgml:AbstractGeometryTypexs:doublexs:doublexs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:booleanxs:stringxs:doublexs:stringxs:intxs:stringxs:longxs:stringxs:doublexs:stringxs:stringxs:stringxs:stringxs:intxs:stringgml:AbstractGeometryTypexs:intxs:stringxs:stringxs:intxs:booleanxs:stringxs:stringxs:intxs:intxs:stringxs:stringxs:intxs:booleanxs:stringxs:floatxs:stringxs:doublexs:floatxs:floatxs:stringxs:stringxs:booleanxs:stringxs:stringxs:doublexs:intxs:stringxs:stringxs:stringxs:stringxs:doublexs:stringxs:stringxs:intxs:stringxs:stringxs:doublexs:stringxs:stringxs:stringxs:floatxs:stringxs:booleanxs:stringxs:stringxs:intxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:booleanxs:stringxs:stringxs:stringxs:booleangml:AbstractGeometryTypegml:AbstractGeometryTypexs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:doublexs:stringxs:doublexs:floatxs:floatxs:floatxs:longxs:floatxs:doublexs:floatxs:stringxs:stringxs:doublexs:doublexs:doublexs:doublexs:stringxs:stringgml:AbstractGeometryTypexs:stringxs:stringxs:stringxs:doublexs:booleanxs:doublexs:floatxs:stringxs:stringxs:stringxs:stringxs:doublexs:floatxs:stringxs:doublexs:intxs:doublexs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:booleanxs:stringxs:stringxs:booleanxs:stringxs:stringxs:intxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:intxs:stringxs:stringxs:intxs:stringxs:booleanxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:booleanxs:booleanxs:stringxs:stringxs:stringxs:stringxs:intxs:intxs:stringxs:stringxs:intxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringgml:AbstractGeometryTypegml:AbstractGeometryTypexs:doublexs:floatxs:doublexs:floatxs:doublexs:floatxs:booleangml:AbstractGeometryTypegml:AbstractGeometryTypexs:stringgml:AbstractGeometryTypexs:stringxs:stringxs:stringxs:stringgml:AbstractGeometryTypegml:AbstractGeometryTypexs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:doublexs:intxs:stringxs:stringxs:intxs:intxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringxs:stringgml:AbstractGeometryTypexs:booleangml:AbstractGeometryTypegml:AbstractGeometryType \ No newline at end of file diff --git a/ckanext/qa/tests/data/calendar.ics b/ckanext/qa/tests/data/calendar.ics new file mode 100644 index 00000000..52dd414d --- /dev/null +++ b/ckanext/qa/tests/data/calendar.ics @@ -0,0 +1,121 @@ +BEGIN:VCALENDAR +PRODID:-//suda.co.uk//X2V 0.9.7 (BETA)//EN +X-ORIGINAL-URL:http://www.eastsussex.gov.uk/yourcouncil/about/committees/meetings/cabinet.ics +X-WR-CALNAME;CHARSET=UTF-8:Cabinet - East Sussex County Council +VERSION:2.0 +METHOD:PUBLISH +BEGIN:VTIMEZONE +TZID:UK +X-LIC-LOCATION:Europe/London +BEGIN:DAYLIGHT +TZOFFSETFROM:+0000 +TZOFFSETTO:+0100 +TZNAME:BST +DTSTART:19700329T010000 +RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=-1SU;BYMONTH=3 +END:DAYLIGHT +BEGIN:STANDARD +TZOFFSETFROM:+0100 +TZOFFSETTO:+0000 +TZNAME:GMT +DTSTART:19701025T020000 +RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=-1SU;BYMONTH=10 +END:STANDARD +END:VTIMEZONE +BEGIN:VEVENT +LOCATION;LANGUAGE=en;CHARSET=UTF-8:County Hall\, St Anne's Crescent\, Lewes\, East Sussex\, BN7 1UE +SUMMARY;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +UID:http://www.eastsussex.gov.uk/id/committee/42/meeting/339 +DTSTART;VALUE=DATE-TIME:20121211T103000Z +CATEGORIES;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +DTSTAMP:20121121T094007Z +X-MICROSOFT-CDO-INTENDEDSTATUS:FREE +X-MICROSOFT-CDO-BUSYSTATUS:FREE +TRANSP:TRANSPARENT +END:VEVENT + +BEGIN:VEVENT +LOCATION;LANGUAGE=en;CHARSET=UTF-8:County Hall\, St Anne's Crescent\, Lewes\, East Sussex\, BN7 1UE +SUMMARY;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +UID:http://www.eastsussex.gov.uk/id/committee/42/meeting/395 +DTSTART;VALUE=DATE-TIME:20130129T103000Z +CATEGORIES;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +DTSTAMP:20121121T094007Z +X-MICROSOFT-CDO-INTENDEDSTATUS:FREE +X-MICROSOFT-CDO-BUSYSTATUS:FREE +TRANSP:TRANSPARENT +END:VEVENT + +BEGIN:VEVENT +LOCATION;LANGUAGE=en;CHARSET=UTF-8:County Hall\, St Anne's Crescent\, Lewes\, East Sussex\, BN7 1UE +SUMMARY;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +UID:http://www.eastsussex.gov.uk/id/committee/42/meeting/396 +DTSTART;VALUE=DATE-TIME:20130305T103000Z +CATEGORIES;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +DTSTAMP:20121121T094007Z +X-MICROSOFT-CDO-INTENDEDSTATUS:FREE +X-MICROSOFT-CDO-BUSYSTATUS:FREE +TRANSP:TRANSPARENT +END:VEVENT + +BEGIN:VEVENT +LOCATION;LANGUAGE=en;CHARSET=UTF-8:County Hall\, St Anne's Crescent\, Lewes\, East Sussex\, BN7 1UE +SUMMARY;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +UID:http://www.eastsussex.gov.uk/id/committee/42/meeting/440 +DTSTART;VALUE=DATE-TIME:20130416T093000Z +CATEGORIES;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +DTSTAMP:20121121T094007Z +X-MICROSOFT-CDO-INTENDEDSTATUS:FREE +X-MICROSOFT-CDO-BUSYSTATUS:FREE +TRANSP:TRANSPARENT +END:VEVENT + +BEGIN:VEVENT +LOCATION;LANGUAGE=en;CHARSET=UTF-8:County Hall\, St Anne's Crescent\, Lewes\, East Sussex\, BN7 1UE +SUMMARY;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +UID:http://www.eastsussex.gov.uk/id/committee/42/meeting/441 +DTSTART;VALUE=DATE-TIME:20130611T093000Z +CATEGORIES;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +DTSTAMP:20121121T094007Z +X-MICROSOFT-CDO-INTENDEDSTATUS:FREE +X-MICROSOFT-CDO-BUSYSTATUS:FREE +TRANSP:TRANSPARENT +END:VEVENT + +BEGIN:VEVENT +LOCATION;LANGUAGE=en;CHARSET=UTF-8:County Hall\, St Anne's Crescent\, Lewes\, East Sussex\, BN7 1UE +SUMMARY;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +UID:http://www.eastsussex.gov.uk/id/committee/42/meeting/442 +DTSTART;VALUE=DATE-TIME:20130702T093000Z +CATEGORIES;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +DTSTAMP:20121121T094007Z +X-MICROSOFT-CDO-INTENDEDSTATUS:FREE +X-MICROSOFT-CDO-BUSYSTATUS:FREE +TRANSP:TRANSPARENT +END:VEVENT + +BEGIN:VEVENT +LOCATION;LANGUAGE=en;CHARSET=UTF-8:County Hall\, St Anne's Crescent\, Lewes\, East Sussex\, BN7 1UE +SUMMARY;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +UID:http://www.eastsussex.gov.uk/id/committee/42/meeting/443 +DTSTART;VALUE=DATE-TIME:20130723T093000Z +CATEGORIES;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +DTSTAMP:20121121T094007Z +X-MICROSOFT-CDO-INTENDEDSTATUS:FREE +X-MICROSOFT-CDO-BUSYSTATUS:FREE +TRANSP:TRANSPARENT +END:VEVENT + +BEGIN:VEVENT +LOCATION;LANGUAGE=en;CHARSET=UTF-8:County Hall\, St Anne's Crescent\, Lewes\, East Sussex\, BN7 1UE +SUMMARY;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +UID:http://www.eastsussex.gov.uk/id/committee/42/meeting/444 +DTSTART;VALUE=DATE-TIME:20130910T093000Z +CATEGORIES;LANGUAGE=en;CHARSET=UTF-8:Cabinet meeting +DTSTAMP:20121121T094007Z +X-MICROSOFT-CDO-INTENDEDSTATUS:FREE +X-MICROSOFT-CDO-BUSYSTATUS:FREE +TRANSP:TRANSPARENT +END:VEVENT + +END:VCALENDAR \ No newline at end of file diff --git a/ckanext/qa/tests/data/charge_points.json b/ckanext/qa/tests/data/charge_points.json new file mode 100644 index 00000000..5f4812d6 --- /dev/null +++ b/ckanext/qa/tests/data/charge_points.json @@ -0,0 +1 @@ +{"ChargeDevice":[{"ChargeDeviceId":"6aadca7bd86c4743e6724f9607256126","ChargeDeviceRef":"11127","ChargeDeviceName":"Abbotts Hill","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.966678","Longitude":"-1.594901","Address":{"SubBuildingName":null,"BuildingName":"Abbotts Hill","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Gateshead","PostCode":"NE8 3DF","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Abbotts Hill"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"70f250e2d762fbde8a2e70eabf6eb953","ChargeDeviceRef":"11128","ChargeDeviceName":"Abbotts Hill","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.966678","Longitude":"-1.594801","Address":{"SubBuildingName":null,"BuildingName":"Abbotts Hill","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Gateshead","PostCode":"NE8 3DF","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Abbotts Hill"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"0d27688c61c5a172e8e45956cd70cba2","ChargeDeviceRef":"200_10319","ChargeDeviceName":"Acton Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.528340","Longitude":"-0.118633","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"70 Acton Street","DoubleDependantLocality":null,"DependantLocality":"Camden","PostTown":"London","PostCode":"WC1X 9LZ","Country":"gb"},"LocationShortDescription":"70 Acton Street, Camden","LocationLongDescription":"70 Acton Street, Camden, London, WC1X 9LZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f507783927f2ec2737ba40afbd17efb5","ChargeDeviceRef":"SC19","ChargeDeviceName":"Adelaide Street","ChargeDeviceText":"Adelaide Street on-street charging post ","ChargeDeviceLocation":{"Latitude":"54.594342","Longitude":"-5.928256","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"BT2 8GB","Country":"gb"},"LocationShortDescription":"Adelaide Street on-street","LocationLongDescription":"Adelaide Street on-street charging post outside Clarence Court. Usual parking restrictions and charges apply."},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"09060616068d2b9544dc33f2fbe4ce2d","ChargeDeviceRef":"SC20","ChargeDeviceName":"Agnew Street, Larne","ChargeDeviceText":"Agnew Street, Larne","ChargeDeviceLocation":{"Latitude":"54.852279","Longitude":"-5.815372","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Agnew Street, Larne","LocationLongDescription":"Agnew Street, Larne"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b8a03c5c15fcfa8dae0b03351eb1742f","ChargeDeviceRef":"30060","ChargeDeviceName":"Akenside Hill junction with Queen Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.969204","Longitude":"-1.607213","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Akenside Hill junction with Queen Street ","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 3UG","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Akenside Hill junction with Queen Street "},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"06f7c042b76e4b04f698c75b7b2777ea","ChargeDeviceRef":"31120","ChargeDeviceName":"Albert Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.851981","Longitude":"-1.834213","Address":{"SubBuildingName":null,"BuildingName":"Albert Road Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Captain Cook Square","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Consett","PostCode":"DH8 5QU","Country":"gb"},"LocationShortDescription":"Consett","LocationLongDescription":"Albert Road Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c911241d00294e8bb714eee2e83fa475","ChargeDeviceRef":"PP-12289","ChargeDeviceName":"Alex F Noble & Son","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.875053","Longitude":"-3.173333","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Swinton Place, Straiton, Loanhead, Edinburgh, EH20 9FB ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"EH20 9FB","Country":"gb"},"LocationShortDescription":"Edinburgh ","LocationLongDescription":"Swinton PlaceStraitonLoanheadEdinburgh"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"62459f4e225e2f4f196c9d42f4ad7111","ChargeDeviceRef":"20026","ChargeDeviceName":"Alexandra Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.992086","Longitude":"-1.527375","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Alexandra Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Wallsend","PostTown":null,"PostCode":"NE28 7RR","Country":"gb"},"LocationShortDescription":"Wallsend","LocationLongDescription":"Alexandra Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"aea94dc1e6d1dd330cbc2c4a480934d6","ChargeDeviceRef":"20027","ChargeDeviceName":"Alexandra Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.992186","Longitude":"-1.527375","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Alexandra Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Wallsend","PostTown":null,"PostCode":"NE28 7RR","Country":"gb"},"LocationShortDescription":"Wallsend","LocationLongDescription":"Alexandra Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"e038453073d221a4f32d0bab94ca7cee","ChargeDeviceRef":"SCOT73","ChargeDeviceName":"Alison Drive","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.819900","Longitude":"-4.167400","Address":{"SubBuildingName":null,"BuildingName":"Cambuslang Gate","BuildingNumber":null,"Thoroughfare":null,"Street":"Alison Drive","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Cambuslang","PostCode":"G72 7EX","Country":"gb"},"LocationShortDescription":"Alison Drive, Cambuslang","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"7aa685b3b1dc1d6780bf36f7340078c9","ChargeDeviceRef":"20022","ChargeDeviceName":"Alwinton Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.350917","Longitude":"-2.128361","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Alwinton Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Alwinton","PostTown":"Northumberland","PostCode":"NE65 7BQ","Country":"gb"},"LocationShortDescription":"Alwinton","LocationLongDescription":"Alwinton Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"fa6c94460e902005a0b660266190c8ba","ChargeDeviceRef":"PP-12295","ChargeDeviceName":"Ancaster ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.411173","Longitude":"-0.055369","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"61 Croydon Road, SE20 7TF","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"SE20 7TF","Country":"gb"},"LocationShortDescription":"Penge, London SE20 ","LocationLongDescription":"61 Croydon RoadPengeLondon"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f0bf4a2da952528910047c31b6c2e951","ChargeDeviceRef":"30055","ChargeDeviceName":"Argyle St Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.973972","Longitude":"-1.603339","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Argyle St Carpark","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 6PF","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Argyle St Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8fc983a91396319d8c394084e2d749d7","ChargeDeviceRef":"100_10103","ChargeDeviceName":"Asda Colindale","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.593928","Longitude":"-0.261296","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Capitol Way","DoubleDependantLocality":"Colindale","DependantLocality":"Brent","PostTown":"London","PostCode":"NW9 0AS","Country":"gb"},"LocationShortDescription":"Capitol Way, Brent","LocationLongDescription":"Capitol Way, Brent, London, NW9 0AS"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"41bcfd9ab658ebaac1661f58080aad6b","ChargeDeviceRef":"100_10105","ChargeDeviceName":"Asda Dagenham","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.530281","Longitude":"0.142508","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Merrielands Crescent","DoubleDependantLocality":"Dagenham","DependantLocality":"Barking & Dagenham","PostTown":"London","PostCode":"RM9 6SJ","Country":"gb"},"LocationShortDescription":"Merrielands Crescent, Barking & Dagenham","LocationLongDescription":"Merrielands Crescent, Barking & Dagenham, London, RM9 6SJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"086af6e4641abb18caafc151b9aa95c8","ChargeDeviceRef":"100_10101","ChargeDeviceName":"Asda Kingston on Thames","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.411134","Longitude":"-0.289664","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"142 London Road","DoubleDependantLocality":null,"DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT2 6QL","Country":"gb"},"LocationShortDescription":"142 London Road, Kingston upon Thames","LocationLongDescription":"142 London Road, Kingston upon Thames, London, KT2 6QL"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"03593ce517feac573fdaafa6dcedef61","ChargeDeviceRef":"100_10104","ChargeDeviceName":"Asda Roehampton","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.439364","Longitude":"-0.246006","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"31 Roehampton Vale","DoubleDependantLocality":"Rohampton","DependantLocality":"Wandsworth","PostTown":"London","PostCode":"SW15 3DT","Country":"gb"},"LocationShortDescription":"31 Roehampton Vale, Wandsworth","LocationLongDescription":"31 Roehampton Vale, Wandsworth, London, SW15 3DT"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"096d3a817a272647f4ada2d6d733a8fb","ChargeDeviceRef":"100_10102","ChargeDeviceName":"Asda Wembley","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.564219","Longitude":"-0.275443","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Forty Lane","DoubleDependantLocality":"Wembley ","DependantLocality":"Brent","PostTown":"London","PostCode":"HA9 9EX","Country":"gb"},"LocationShortDescription":"Forty Lane, Brent","LocationLongDescription":"Forty Lane, Brent, London, HA9 9EX"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b994697479c5716eda77e8e9713e5f0f","ChargeDeviceRef":"PP-12429","ChargeDeviceName":"Ashton Hayes","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"53.215998","Longitude":"-2.744855","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CH3 8AA","Country":"gb"},"LocationShortDescription":"Ashton Hayes","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"933670f1ac8ba969f32989c312faba75","ChargeDeviceRef":"20086","ChargeDeviceName":"Aston Hotel","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.583591","Longitude":"-1.563372","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Aston Hotel","Street":null,"DoubleDependantLocality":"Newton Park","DependantLocality":"Coatham Mundeville","PostTown":"Darlington","PostCode":"DL1 3NL","Country":"gb"},"LocationShortDescription":"Coatham Mundeville","LocationLongDescription":"Aston Hotel"},"Connector":[{"ConnectorId":"0","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":"415","RatedOutputCurrent":"125","ChargeMethod":"Single Phase AC","ChargeMode":null,"ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"2d199f9abd28ea425d262558bde5cf22","ChargeDeviceRef":"SCOT55","ChargeDeviceName":"Atholl House car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.763300","Longitude":"-4.171800","Address":{"SubBuildingName":null,"BuildingName":"Atholl House car park","BuildingNumber":null,"Thoroughfare":null,"Street":"Whitemoss Avenue","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"East Kilbride","PostCode":"G74 1LU","Country":"gb"},"LocationShortDescription":"Atholl House","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"8b5c8441a8ff8e151b191c53c1842a38","ChargeDeviceRef":"SCOT56","ChargeDeviceName":"Atholl House car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.763300","Longitude":"-4.171800","Address":{"SubBuildingName":null,"BuildingName":"Atholl House car park","BuildingNumber":null,"Thoroughfare":null,"Street":"Whitemoss Avenue","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"East Kilbride","PostCode":"G74 1LU","Country":"gb"},"LocationShortDescription":"Atholl House","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"645e6bfdd05d1a69c5e47b20f0a91d46","ChargeDeviceRef":"SC05","ChargeDeviceName":"Bagenal's Castle ","ChargeDeviceText":"Newry & Mourne Museum\r\nCar Park, Bagenal's Castle \r\n","ChargeDeviceLocation":{"Latitude":"54.173287","Longitude":"-6.335203","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Castle Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Newry","PostCode":"BT34 2DA","Country":"gb"},"LocationShortDescription":"Bagenal's Castle ","LocationLongDescription":"Newry & Mourne Museum\r\nCar Park, Bagenal's Castle \r\n"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Newry & Mourne Museum","Website":"http:\/\/www.bagenalscastle.com","TelephoneNo":"028 3031 3182","ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5eb13cb69b6e20dd7a42030f5936a9dc","ChargeDeviceRef":"SCOT47","ChargeDeviceName":"Balivanich Council Office","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"57.472580","Longitude":"-7.376670","Address":{"SubBuildingName":null,"BuildingName":"Council Office","BuildingNumber":null,"Thoroughfare":null,"Street":"Balivanich","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Isle of Benbecula ","PostCode":"HS7 5LA","Country":"gb"},"LocationShortDescription":"Balivanich","LocationLongDescription":"Public access by arrangement. Contact 08456007090"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Public access by arrangement. Contact 08456007090","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c79ec57a8e72a87d8a69d2c6b8a2a8d4","ChargeDeviceRef":"SCOT27","ChargeDeviceName":"Ballerup Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.762160","Longitude":"-4.174400","Address":{"SubBuildingName":null,"BuildingName":"Ballerup Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"East Kilbride","PostCode":"G74 1AB","Country":"gb"},"LocationShortDescription":"Ballerup Car Park, East Kilbride","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"92fde850d824c2ba9b563cb6fa4078c3","ChargeDeviceRef":"SCOT29","ChargeDeviceName":"Ballerup Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.762180","Longitude":"-4.174400","Address":{"SubBuildingName":null,"BuildingName":"Ballerup Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"East Kilbride","PostCode":"G74 1AB","Country":"gb"},"LocationShortDescription":"Ballerup Car Park, East Kilbride","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b986700c627db479a4d9460b75de7222","ChargeDeviceRef":"SCOT26","ChargeDeviceName":"Ballerup Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.762150","Longitude":"-4.174400","Address":{"SubBuildingName":null,"BuildingName":"Ballerup Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"East Kilbride","PostCode":"G74 1AB","Country":"gb"},"LocationShortDescription":"Ballerup Car Park, East Kilbride","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6098ed616e715171f0dabad60a8e5197","ChargeDeviceRef":"SCOT28","ChargeDeviceName":"Ballerup Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.762170","Longitude":"-4.174400","Address":{"SubBuildingName":null,"BuildingName":"Ballerup Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"East Kilbride","PostCode":"G74 1AB","Country":"gb"},"LocationShortDescription":"Ballerup Car Park, East Kilbride","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3713bdda7149579475f3734e8bd0e14a","ChargeDeviceRef":"40003","ChargeDeviceName":"Barnes Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.821938","Longitude":"-1.450834","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Barnes Street Car Park","Street":null,"DoubleDependantLocality":"Barnes Street","DependantLocality":"Hetton Le Hole","PostTown":null,"PostCode":"DH5 9ZZ","Country":"gb"},"LocationShortDescription":"Hetton Le Hole","LocationLongDescription":"Barnes Street Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f3a3a63a79eb1831b0a2776bfd20d838","ChargeDeviceRef":"CM-1320","ChargeDeviceName":"Barnsdale Lodge Hotel","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.674034","Longitude":"-0.658059","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"The Avenue
Exton
Oakham
(Northshore)","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"LE15 8AH","Country":"gb"},"LocationShortDescription":"Public access to staff and visitors
Please report to reception","LocationLongDescription":"One charging point, two sockets

One three pin BS1363 socket
rated at 3kW (mode 2; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Chargemaster","Website":"www.chargemasterplc.com","TelephoneNo":"01582 400 331","ContactName":"Neil Sharpe"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"980a875ff6ef9c2d75e74307cbf5d205","ChargeDeviceRef":"SC10","ChargeDeviceName":"Basin Walk Car Park","ChargeDeviceText":"Basin Walk Car Park","ChargeDeviceLocation":{"Latitude":"54.179137","Longitude":"-6.335229","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Basin Walk Car Park","LocationLongDescription":"Basin Walk Car Park"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"2cfa8f9e50e0f510ede9d12338a5f564","ChargeDeviceRef":"20029","ChargeDeviceName":"Battlesteads Hotel","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.086023","Longitude":"-2.221058","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Battlesteads Hotel","Street":null,"DoubleDependantLocality":"Hexham Road","DependantLocality":"Wark","PostTown":"Northumberland","PostCode":"NE48 3LS","Country":"gb"},"LocationShortDescription":"Wark","LocationLongDescription":"Battlesteads Hotel"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"bdbca288fee7f92f2bfa9f7012727740","ChargeDeviceRef":"300_10174","ChargeDeviceName":"Baynard House Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.511987","Longitude":"-0.100500","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"133 Queen Victoria Street","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC4V 4BQ","Country":"gb"},"LocationShortDescription":"133 Queen Victoria Street, City of London","LocationLongDescription":"133 Queen Victoria Street, City of London, London, EC4V 4BQ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b4aa00bc1c59b9d1cdd07479070e355e","ChargeDeviceRef":"300_10175","ChargeDeviceName":"Baynard House Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.511987","Longitude":"-0.100500","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"133 Queen Victoria Street","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC4V 4BQ","Country":"gb"},"LocationShortDescription":"133 Queen Victoria Street, City of London","LocationLongDescription":"133 Queen Victoria Street, City of London, London, EC4V 4BQ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"9dee60d3205c5eda2a74f342f26bc6e0","ChargeDeviceRef":"300_10173","ChargeDeviceName":"Baynard House Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.511987","Longitude":"-0.100500","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"133 Queen Victoria Street","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC4V 4BQ","Country":"gb"},"LocationShortDescription":"133 Queen Victoria Street, City of London","LocationLongDescription":"133 Queen Victoria Street, City of London, London, EC4V 4BQ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f016f25df05b5b1bc2b8ec0f72d5120c","ChargeDeviceRef":"300_10176","ChargeDeviceName":"Baynard House Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.511987","Longitude":"-0.100500","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"133 Queen Victoria Street","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC4V 4BQ","Country":"gb"},"LocationShortDescription":"133 Queen Victoria Street, City of London","LocationLongDescription":"133 Queen Victoria Street, City of London, London, EC4V 4BQ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"402b0702500cd47ff36e689465afd783","ChargeDeviceRef":"300_10172","ChargeDeviceName":"Baynard House Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.511987","Longitude":"-0.100500","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"133 Queen Victoria Street","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC4V 4BQ","Country":"gb"},"LocationShortDescription":"133 Queen Victoria Street, City of London","LocationLongDescription":"133 Queen Victoria Street, City of London, London, EC4V 4BQ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"eb1848290d5a7de9c9ccabc67fefa211","ChargeDeviceRef":"PP-12290","ChargeDeviceName":"Beadles Nissan Ltd ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.451127","Longitude":"0.050619","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"43-45 High Street, SE9 1DH","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"SE9 1DH","Country":"gb"},"LocationShortDescription":"Eltham","LocationLongDescription":"43-45 High StreetElthamLondon"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a68259547f3d25ab3c0a5c0adb4e3498","ChargeDeviceRef":"10018","ChargeDeviceName":"Bede Sixth Form College","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.616520","Longitude":"-1.282068","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Bede Sixth Form College","Street":null,"DoubleDependantLocality":"Marsh House Avenue","DependantLocality":"Billingham","PostTown":null,"PostCode":"TS23 3HB","Country":"gb"},"LocationShortDescription":"Billingham","LocationLongDescription":"Bede Sixth Form College"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"d91caca74114d81fdfc578fca82f8d72","ChargeDeviceRef":"10019","ChargeDeviceName":"Bede Sixth Form College","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.616540","Longitude":"-1.282060","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Bede Sixth Form College","Street":null,"DoubleDependantLocality":"Marsh House Avenue","DependantLocality":"Billingham","PostTown":null,"PostCode":"TS23 3HB","Country":"gb"},"LocationShortDescription":"Billingham","LocationLongDescription":"Bede Sixth Form College"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"d403137434343677b98efc88cbd5493d","ChargeDeviceRef":"10098","ChargeDeviceName":"Bedlington Police Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.133332","Longitude":"-1.594031","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Bedlington Police Station","Street":null,"DoubleDependantLocality":"Schalksmuhle Road","DependantLocality":"Bedlington","PostTown":null,"PostCode":"NE22 7LA","Country":"gb"},"LocationShortDescription":"Bedlington","LocationLongDescription":"Bedlington Police Station"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f5e647292cc4e1064968ca62bebe7e47","ChargeDeviceRef":"30074","ChargeDeviceName":"Belmont Park and Ride","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.795058","Longitude":"-1.524871","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Belmont Park and Ride","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Carrville","PostTown":null,"PostCode":"DH1 1SR","Country":"gb"},"LocationShortDescription":"Carrville","LocationLongDescription":"Belmont Park and Ride"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking at this site is subject to use of the Park and Ride Bus (for which there is a fee) Users parking without using the Park and Ride will be fined.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"9ac5a6d86e8924182271bd820acbce0e","ChargeDeviceRef":"30075","ChargeDeviceName":"Belmont Park and Ride","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.795052","Longitude":"-1.524971","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Belmont Park and Ride","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Carrville","PostTown":null,"PostCode":"DH1 1SR","Country":"gb"},"LocationShortDescription":"Carrville","LocationLongDescription":"Belmont Park and Ride"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking at this site is subject to use of the Park and Ride Bus (for which there is a fee) Users parking without using the Park and Ride will be fined.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"20cf775fa6b5dfe621ade096f5d85d52","ChargeDeviceRef":"20085","ChargeDeviceName":"Belmont Park and Ride","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.795058","Longitude":"-1.525771","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Belmont Park and Ride","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Carrville","PostTown":null,"PostCode":"DH1 1SR","Country":"gb"},"LocationShortDescription":"Carrville","LocationLongDescription":"Belmont Park and Ride"},"Connector":[{"ConnectorId":"0","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":"415","RatedOutputCurrent":"125","ChargeMethod":"Single Phase AC","ChargeMode":null,"ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"3ce3bd7d63a2c9c81983cc8e9bd02ae5","ChargeDeviceRef":"300_10169","ChargeDeviceName":"Belsize Place","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.549692","Longitude":"-0.171206","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Belsize Place","DoubleDependantLocality":"North of Belsize Lane","DependantLocality":"Camden","PostTown":"London","PostCode":"NW3 5AJ","Country":"gb"},"LocationShortDescription":"Belsize Place, Camden","LocationLongDescription":"Belsize Place, Camden, London, NW3 5AJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"91e50fe1e39af2869d3336eaaeebdb43","ChargeDeviceRef":"PP-12292","ChargeDeviceName":"Benfield Motors","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.978947","Longitude":"-1.599306","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Portland Road, Newcastle Upon Tyne, Tyne & Wear, NE2 1AR ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"NE2 1AR","Country":"gb"},"LocationShortDescription":"Benfield Motors, Newcastle","LocationLongDescription":"Portland RoadNewcastle Upon TyneTyne & Wear07525 205238David Garr"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"2120606d6a751a93e392b46d945bba9d","ChargeDeviceRef":"300_10128","ChargeDeviceName":"Bentley Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545689","Longitude":"-0.077203","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Bentley Road","DoubleDependantLocality":null,"DependantLocality":"Hackney","PostTown":"London","PostCode":"N1 4BY","Country":"gb"},"LocationShortDescription":"Bentley Road, Hackney","LocationLongDescription":"Bentley Road, Hackney, London, N1 4BY"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"19485224d128528da1602ca47383f078","ChargeDeviceRef":"200_10314","ChargeDeviceName":"Bernard Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.523415","Longitude":"-0.123334","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"21 Bernard Street","DoubleDependantLocality":null,"DependantLocality":"Camden","PostTown":"London","PostCode":"WC1N 1LN","Country":"gb"},"LocationShortDescription":"21 Bernard Street, Camden","LocationLongDescription":"21 Bernard Street, Camden, London, WC1N 1LN"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b837305e43f7e535a1506fc263eee3ed","ChargeDeviceRef":"SCOT63","ChargeDeviceName":"Bernards Wynd","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.672900","Longitude":"-3.777900","Address":{"SubBuildingName":null,"BuildingName":"Bernards Wynd Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Bernards Wynd","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Lanark","PostCode":"ML11 7JX","Country":"gb"},"LocationShortDescription":"Bernards Wynd, Lanark","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3c565485bbd2c54bb0ebe05c7ec741fc","ChargeDeviceRef":"20028","ChargeDeviceName":"Berwick Garden Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.757053","Longitude":"-2.039186","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Berwick Garden Centre","Street":null,"DoubleDependantLocality":"East Ord","DependantLocality":"Berwick upon Tweed","PostTown":null,"PostCode":"TD15 2NS","Country":"gb"},"LocationShortDescription":"Berwick upon Tweed","LocationLongDescription":"Berwick Garden Centre"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"0e57098d0318a954d1443e2974a38fac","ChargeDeviceRef":"PP-12221","ChargeDeviceName":"Best Buy Aintree","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"53.480000","Longitude":"-2.950000","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"L9 5AN","Country":"gb"},"LocationShortDescription":"Best Buy Aintree","LocationLongDescription":"Best Buy Aintree"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c04c19c2c2474dbf5f7ac4372c5b9af1","ChargeDeviceRef":"PP-12224","ChargeDeviceName":"Best Buy Aintree","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"53.481000","Longitude":"-2.950000","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"L9 5AN","Country":"gb"},"LocationShortDescription":"Best Buy Aintree","LocationLongDescription":"Best Buy Aintree"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"67974233917cea0e42a49a2fb7eb4cf4","ChargeDeviceRef":"PP-12237","ChargeDeviceName":"Best Buy Croydon","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.377058","Longitude":"-0.119348","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"CR9 4PB","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CR9 4PB","Country":"gb"},"LocationShortDescription":"Located in Best Buy Croydon Car Park.","LocationLongDescription":"Located in the Best Buy Croydon car park"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"bca382c81484983f2d437f97d1e141f3","ChargeDeviceRef":"PP-12236","ChargeDeviceName":"Best Buy Croydon","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.377278","Longitude":"-0.118971","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"CR9 4PB","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CR9 4PB","Country":"gb"},"LocationShortDescription":"Located in Best Buy Croydon Car Park.","LocationLongDescription":"Located in the Best Buy Croydon car park."},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a292f1c5874b2be8395ffd75f313937f","ChargeDeviceRef":"PP-12243","ChargeDeviceName":"Best Buy Derby","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.920237","Longitude":"-1.504397","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"DE22 3FA","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"DE22 3FA","Country":"gb"},"LocationShortDescription":"Best Buy Derby Car Park","LocationLongDescription":"Located in the Best Buy Derby car park"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c24fe9f765a44048868b5a620f05678e","ChargeDeviceRef":"PP-12242","ChargeDeviceName":"Best Buy Derby","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.919946","Longitude":"-1.505106","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"DE22 3FA","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"DE22 3FA","Country":"gb"},"LocationShortDescription":"Best Buy Derby car park","LocationLongDescription":"Located in the Best Buy Derby car park"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"46d3f6029f6170ebccb28945964d09bf","ChargeDeviceRef":"PP-12178","ChargeDeviceName":"Best Buy Dudley","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.482000","Longitude":"-2.110000","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"DY5 1QX","Country":"gb"},"LocationShortDescription":"Best Buy Dudley","LocationLongDescription":"Best Buy Dudley - Merry Hill Shopping Centre"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"b5b8c484824d8a06f4f3d570bc420313","ChargeDeviceRef":"PP-12209","ChargeDeviceName":"Best Buy Dudley","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.482000","Longitude":"-2.110000","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"DY5 1QX","Country":"gb"},"LocationShortDescription":"Best Buy Dudley","LocationLongDescription":"Best Buy Dudley - Merry Hill Shopping Centre"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"b7d0858d41a6c29b873e4aba411e6d04","ChargeDeviceRef":"PP-12188","ChargeDeviceName":"Best Buy Southampton A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"50.916834","Longitude":"-1.313565","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"SO30 4RT","Country":"gb"},"LocationShortDescription":"Best Buy Southampton car park","LocationLongDescription":"Loacated in the Best Buy car park on the right hand side of the building as you face it."},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"fcde14913c766cf307c75059e0e89af5","ChargeDeviceRef":"PP-12187","ChargeDeviceName":"Best Buy Southampton B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"50.916773","Longitude":"-1.313539","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"SO30 4RT","Country":"gb"},"LocationShortDescription":"Best Buy Southampton car park","LocationLongDescription":"Loacated in the Best Buy car park on the right hand side of the building as you face it."},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"cac8e13055d2e4f62b6322254203b293","ChargeDeviceRef":"PP-12185","ChargeDeviceName":"Best Buy Thurrock","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.486354","Longitude":"0.271912","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"RM20 3LP","Country":"gb"},"LocationShortDescription":"Best Buy Thurrock","LocationLongDescription":"Best Buy Thurrock."},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"ea9268cb43f55d1d12380fb6ea5bf572","ChargeDeviceRef":"PP-12184","ChargeDeviceName":"Best Buy Thurrock","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.486000","Longitude":"0.272000","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"RM20 3LP","Country":"gb"},"LocationShortDescription":"Best Buy Thurrock","LocationLongDescription":"Located in the car park of Best Buy Thurrock."},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"02b5b45ce743bc3f285ec4d39b5968c3","ChargeDeviceRef":"40019","ChargeDeviceName":"Bigg Market","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.971011","Longitude":"-1.613778","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Bigg Market","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 1UG","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Bigg Market"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a9c397afa342c368ba24e7620ee41a94","ChargeDeviceRef":"40018","ChargeDeviceName":"Bigg Market","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.971011","Longitude":"-1.613678","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Bigg Market","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 1UG","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Bigg Market"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"945e01e4dfc83449d9edc77e001e2c0c","ChargeDeviceRef":"30034","ChargeDeviceName":"Bill Quay Farm","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.958069","Longitude":"-1.540813","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Bill Quay Farm","Street":null,"DoubleDependantLocality":"Hainingwood Terrace","DependantLocality":"Gateshead","PostTown":null,"PostCode":"NE10 0TE","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Bill Quay Farm"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"cf040fc71060367913e81ac1eb050aea","ChargeDeviceRef":"30029","ChargeDeviceName":"Billingham Forum","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.607444","Longitude":"-1.288512","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Billingham Forum","Street":null,"DoubleDependantLocality":"The Causeway","DependantLocality":"Billingham","PostTown":null,"PostCode":"TS23 2LJ","Country":"gb"},"LocationShortDescription":"Billingham","LocationLongDescription":"Billingham Forum"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"fb09f481d40c4d3c0861a46bd2dc52c0","ChargeDeviceRef":"30030","ChargeDeviceName":"Billingham Forum","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.607444","Longitude":"-1.288612","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Billingham Forum","Street":null,"DoubleDependantLocality":"The Causeway","DependantLocality":"Billingham","PostTown":null,"PostCode":"TS23 2LJ","Country":"gb"},"LocationShortDescription":"Billingham","LocationLongDescription":"Billingham Forum"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"350a3797caea1668d227c8cbe52c793e","ChargeDeviceRef":"PP - 12661","ChargeDeviceName":"Birstall Park and Ride 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.688104","Longitude":"-1.123993","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Loughborough Road
Birstall","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"LE4 4NP","Country":"gb"},"LocationShortDescription":"Public access
Parking fees may apply","LocationLongDescription":"One charging point, two sockets

One three pin BS1363 socket
rated at 3kW (modes 1 and 2; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"23755432da68528f115c9633c0d7834f","ChargeDeviceRef":"PP - 12543","ChargeDeviceName":"Birstall Park and Ride 2","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.688104","Longitude":"-1.123893","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Loughborough Road
Birstall","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"LE4 4NP","Country":"gb"},"LocationShortDescription":"Public access
Parking fees may apply","LocationLongDescription":"One charging point, two sockets

One three pin BS1363 socket
rated at 3kW (modes 1 and 2; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"27669f3f141da48bfe5e6b7aa37c38f9","ChargeDeviceRef":"PP - 12656","ChargeDeviceName":"Birstall Park and Ride 3","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.688104","Longitude":"-1.123793","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Loughborough Road
Birstall","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"LE4 4NP","Country":"gb"},"LocationShortDescription":"Public access
Parking fees may apply","LocationLongDescription":"One charging point, two sockets

One three pin BS1363 socket
rated at 3kW (modes 1 and 2; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"0f9cafd014db7a619ddb4276af0d692c","ChargeDeviceRef":"PP - 12662","ChargeDeviceName":"Birstall Park and Ride 4","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.688104","Longitude":"-1.123693","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Loughborough Road
Birstall","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"LE4 4NP","Country":"gb"},"LocationShortDescription":"Public access
Parking fees may apply","LocationLongDescription":"One charging point, two sockets

One three pin BS1363 socket
rated at 3kW (modes 1 and 2; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"77bdfcff53815626ecab7f6a1454f007","ChargeDeviceRef":"30100","ChargeDeviceName":"Birtley Leisure Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.886825","Longitude":"-1.577077","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Birtley Leisure Centre","Street":null,"DoubleDependantLocality":"Durham Road","DependantLocality":"Birtley","PostTown":"Gateshead","PostCode":"DH3 2TB","Country":"gb"},"LocationShortDescription":"Birtley","LocationLongDescription":"Birtley Leisure Centre"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"702cafa3bb4c9c86e4a3b6834b45aedd","ChargeDeviceRef":"200_10320","ChargeDeviceName":"Bisham Gardens","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.570353","Longitude":"-0.146337","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Bisham Gardens","DoubleDependantLocality":null,"DependantLocality":"Camden","PostTown":"London","PostCode":"N6 6DD","Country":"gb"},"LocationShortDescription":"Bisham Gardens, Camden","LocationLongDescription":"Bisham Gardens, Camden, London, N6 6DD"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"fa84632d742f2729dc32ce8cb5d49733","ChargeDeviceRef":"SC39","ChargeDeviceName":"Bishop Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.994629","Longitude":"-7.323503","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":null,"LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3d8e03e8b133b16f13a586f0c01b6866","ChargeDeviceRef":"300_10135","ChargeDeviceName":"Blackheath Grove","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.466401","Longitude":"0.009719","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Blackheath","DoubleDependantLocality":null,"DependantLocality":"Lewisham ","PostTown":"London","PostCode":"SE3 0DG","Country":"gb"},"LocationShortDescription":"Blackheath, Lewisham ","LocationLongDescription":"Blackheath, Lewisham , London, SE3 0DG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"bd470ca955d9497bbcb808e59952fffc","ChargeDeviceRef":"200_20280","ChargeDeviceName":"Blagdon Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.400213","Longitude":"-0.253973","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"New Malden","DoubleDependantLocality":null,"DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT3 4AH","Country":"gb"},"LocationShortDescription":"New Malden, Kingston upon Thames","LocationLongDescription":"New Malden, Kingston upon Thames, London, KT3 4AH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0307fec2cef6aec340b8426490977ef0","ChargeDeviceRef":"200_20235","ChargeDeviceName":"Blagdon Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.400249","Longitude":"-0.254001","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"New Malden","DoubleDependantLocality":null,"DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT3 4AH","Country":"gb"},"LocationShortDescription":"New Malden, Kingston upon Thames","LocationLongDescription":"New Malden, Kingston upon Thames, London, KT3 4AH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ae87a54e183c075c494c4d397d126a66","ChargeDeviceRef":"200_20239","ChargeDeviceName":"Blagdon Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.400231","Longitude":"-0.253987","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"New Malden","DoubleDependantLocality":null,"DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT3 4AH","Country":"gb"},"LocationShortDescription":"New Malden, Kingston upon Thames","LocationLongDescription":"New Malden, Kingston upon Thames, London, KT3 4AH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b71155d90aef3bc38cb92db5a9afe4ce","ChargeDeviceRef":"40013","ChargeDeviceName":"Blandford Square","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.968816","Longitude":"-1.624017","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Blandford Square","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 4JA","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Blandford Square"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"aa108f56a10e75c1f20f27723ecac85f","ChargeDeviceRef":"40012","ChargeDeviceName":"Blandford Square","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.968842","Longitude":"-1.624004","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Blandford Square","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 4JA","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Blandford Square"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c793b3be8f18731f2a4c627fb3c6c63d","ChargeDeviceRef":"200_20217","ChargeDeviceName":"Blissett Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.475109","Longitude":"-0.011585","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Blissett Street","DoubleDependantLocality":null,"DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 8UP","Country":"gb"},"LocationShortDescription":"Blissett Street, Greenwich","LocationLongDescription":"Blissett Street, Greenwich, London, SE10 8UP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d1f44e2f09dc172978a4d3151d11d63e","ChargeDeviceRef":"200_20208","ChargeDeviceName":"Blissett Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.475092","Longitude":"-0.011614","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Blissett Street","DoubleDependantLocality":null,"DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 8UP","Country":"gb"},"LocationShortDescription":"Blissett Street, Greenwich","LocationLongDescription":"Blissett Street, Greenwich, London, SE10 8UP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"2fe5a27cde066c0b65acb8f2c1717464","ChargeDeviceRef":"10082","ChargeDeviceName":"Border House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.980117","Longitude":"-2.082132","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Border House","Street":null,"DoubleDependantLocality":"Beaufront Park. Anick Road","DependantLocality":"Hexham","PostTown":null,"PostCode":"NE464TY","Country":"gb"},"LocationShortDescription":"Hexham","LocationLongDescription":"Border House"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"606c90a06173d69682feb83037a68fec","ChargeDeviceRef":"10081","ChargeDeviceName":"Border House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.980117","Longitude":"-2.082049","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Border House","Street":null,"DoubleDependantLocality":"Beaufront Park. Anick Road","DependantLocality":"Hexham","PostTown":null,"PostCode":"NE464TY","Country":"gb"},"LocationShortDescription":"Hexham","LocationLongDescription":"Border House"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8ce1a43fb75e779c6b794ba4d255cf6d","ChargeDeviceRef":"SCOT78","ChargeDeviceName":"Bothwell Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.780800","Longitude":"-4.052300","Address":{"SubBuildingName":null,"BuildingName":"Bothwell Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Bothwell Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 0BS","Country":"gb"},"LocationShortDescription":"Bothwell Street car park, Hamilton","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1bd36c9ae813f304363ae6ac7f48068e","ChargeDeviceRef":"SCOT77","ChargeDeviceName":"Bothwell Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.780800","Longitude":"-4.052300","Address":{"SubBuildingName":null,"BuildingName":"Bothwell Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Bothwell Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 0BS","Country":"gb"},"LocationShortDescription":"Bothwell Street car park, Hamilton","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ea96efc03b9a050d895110db8c4af057","ChargeDeviceRef":"100_10125","ChargeDeviceName":"Botwell Green Sports and Leisure Complex","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509272","Longitude":"-0.420715","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"East Avenue","DoubleDependantLocality":"Hayes ","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"UB3 2HW","Country":"gb"},"LocationShortDescription":"East Avenue, Hillingdon","LocationLongDescription":"East Avenue, Hillingdon, London, UB3 2HW"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c348616cd8a86ee661c7c98800678fad","ChargeDeviceRef":"30022","ChargeDeviceName":"Boughton Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.902586","Longitude":"-1.388344","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Boughton Street Car Park","Street":null,"DoubleDependantLocality":"Tunstall Road","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR1 3ZZ","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Boughton Street Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c6ede20e6f597abf4b3f6bb30cee16c7","ChargeDeviceRef":"30021","ChargeDeviceName":"Boughton Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.902156","Longitude":"-1.386644","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Boughton Street Car Park","Street":null,"DoubleDependantLocality":"Tunstall Road","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR1 3ZZ","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Boughton Street Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c133fb1bb634af68c5088f3438848bfd","ChargeDeviceRef":"30067","ChargeDeviceName":"Bournemouth Gardens","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.049481","Longitude":"-1.450662","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Bournemouth Gardens","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Whitley Bay","PostTown":null,"PostCode":"NE26 1QF","Country":"gb"},"LocationShortDescription":"Whitley Bay","LocationLongDescription":"Bournemouth Gardens"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"1f2b325dcdaf12a68ed498273206d263","ChargeDeviceRef":"30068","ChargeDeviceName":"Bournemouth Gardens","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.049504","Longitude":"-1.450762","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Bournemouth Gardens","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Whitley Bay","PostTown":null,"PostCode":"NE26 1QF","Country":"gb"},"LocationShortDescription":"Whitley Bay","LocationLongDescription":"Bournemouth Gardens"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"2130eb640e0a272898a51da41363542d","ChargeDeviceRef":"SCOT79","ChargeDeviceName":"Braehead Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.558000","Longitude":"-3.844700","Address":{"SubBuildingName":null,"BuildingName":"Braehead Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Braehead","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Douglas","PostCode":"ML11 0QW","Country":"gb"},"LocationShortDescription":null,"LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e243aa93e6b6e031797f86d0858f5e40","ChargeDeviceRef":"100_10130","ChargeDeviceName":"Brandville Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.507453","Longitude":"-0.471413","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Brandville Road","DoubleDependantLocality":"West Drayton","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"UB7 7LT","Country":"gb"},"LocationShortDescription":"Brandville Road, Hillingdon","LocationLongDescription":"Brandville Road, Hillingdon, London, UB7 7LT"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6cf821bc98b2d343170185bb3de84cc4","ChargeDeviceRef":"100_10215","ChargeDeviceName":"Brentford Fountain Leisure Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.490385","Longitude":"-0.285361","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"658 Chiswick High Road","DoubleDependantLocality":"Brentford","DependantLocality":"Hounslow","PostTown":"London","PostCode":"TW8 0HJ","Country":"gb"},"LocationShortDescription":"658 Chiswick High Road, Hounslow","LocationLongDescription":"658 Chiswick High Road, Hounslow, London, TW8 0HJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"aa36c88c27650af3b9868b723ae15dfc","ChargeDeviceRef":"100_10403","ChargeDeviceName":"Bridge Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.363738","Longitude":"-0.299173","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Bridge Road","DoubleDependantLocality":"East of North Parade","DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT9 2RT","Country":"gb"},"LocationShortDescription":"Bridge Road, Kingston upon Thames","LocationLongDescription":"Bridge Road, Kingston upon Thames, London, KT9 2RT"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3a30be93eb45566a90f4e95ee72a089a","ChargeDeviceRef":"SC28","ChargeDeviceName":"Bridge Street, Newry","ChargeDeviceText":"Bridge Street Car Park, Newry","ChargeDeviceLocation":{"Latitude":"54.170394","Longitude":"-6.340450","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Newry","PostCode":null,"Country":"gb"},"LocationShortDescription":"Bridge Street Car Park, Newry","LocationLongDescription":"Bridge Street Car Park, Newry"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"9d740bd0f36aaa312c8d504e28c42163","ChargeDeviceRef":"200_20226","ChargeDeviceName":"Brighton Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.357023","Longitude":"-0.191845","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Brighton Road","DoubleDependantLocality":null,"DependantLocality":"Sutton","PostTown":"London","PostCode":"SM2 5BN","Country":"gb"},"LocationShortDescription":"Brighton Road, Sutton","LocationLongDescription":"Brighton Road, Sutton, London, SM2 5BN"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"Out of service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"2bf5e202fc973a02f417dc9af000177b","ChargeDeviceRef":"300_10119","ChargeDeviceName":"Britannia Leisure Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.535850","Longitude":"-0.083689","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Hyde Road","DoubleDependantLocality":null,"DependantLocality":"Hackney","PostTown":"London","PostCode":"N1 5JU","Country":"gb"},"LocationShortDescription":"Hyde Road, Hackney","LocationLongDescription":"Hyde Road, Hackney, London, N1 5JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1da546f25222c1ee710cf7e2f7a3ff0c","ChargeDeviceRef":"300_10190","ChargeDeviceName":"Burghley Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.557055","Longitude":"-0.139044","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Burghley Road","DoubleDependantLocality":"Tuffnel Park","DependantLocality":"Camden","PostTown":"London","PostCode":"NW5 1AL","Country":"gb"},"LocationShortDescription":"Burghley Road, Camden","LocationLongDescription":"Burghley Road, Camden, London, NW5 1AL"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"dc2208f9bbd11486d5dbbb9218e03017","ChargeDeviceRef":"200_10353","ChargeDeviceName":"Bury Road Car Park Level 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.593120","Longitude":"-0.105664","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Bury Road","DoubleDependantLocality":"Wood Green","DependantLocality":"Haringey","PostTown":"London","PostCode":"N22 6JA","Country":"gb"},"LocationShortDescription":"Bury Road, Haringey","LocationLongDescription":"Bury Road, Haringey, London, N22 6JA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3bcf6eecb2611212e088d0d91f2ade9c","ChargeDeviceRef":"200_20308","ChargeDeviceName":"Bury Road Car Park Level 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.593120","Longitude":"-0.105664","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Bury Road","DoubleDependantLocality":"Wood Green","DependantLocality":"Haringey","PostTown":"London","PostCode":"N22 6JA","Country":"gb"},"LocationShortDescription":"Bury Road, Haringey","LocationLongDescription":"Bury Road, Haringey, London, N22 6JA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6c35083f355f10ab32ebed269a58169e","ChargeDeviceRef":"20084","ChargeDeviceName":"CableCom Training","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.548730","Longitude":"-1.319870","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"1 Wylam Court","Street":null,"DoubleDependantLocality":"Westland Way","DependantLocality":"Preston Park Industrial Estate","PostTown":"Stockton On Tees","PostCode":"TS18 3FB","Country":"gb"},"LocationShortDescription":"Preston Park Industrial Estate","LocationLongDescription":"1 Wylam Court"},"Connector":[{"ConnectorId":"0","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":"415","RatedOutputCurrent":"125","ChargeMethod":"Single Phase AC","ChargeMode":null,"ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"65a99bb7a3115fdede20da98b08a370f","ChargeDeviceRef":"300_10131","ChargeDeviceName":"Cadogan Road East","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.494312","Longitude":"0.074407","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Cadogan Road","DoubleDependantLocality":null,"DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE18 6LA","Country":"gb"},"LocationShortDescription":"Cadogan Road, Greenwich","LocationLongDescription":"Cadogan Road, Greenwich, London, SE18 6LA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"fc8fdb29501a6289b7bc8b0bdd8155df","ChargeDeviceRef":"300_10134","ChargeDeviceName":"Cadogan Road West","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.494028","Longitude":"0.072636","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Cadogan Road","DoubleDependantLocality":null,"DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE18 6SN","Country":"gb"},"LocationShortDescription":"Cadogan Road, Greenwich","LocationLongDescription":"Cadogan Road, Greenwich, London, SE18 6SN"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b2330fc4531de135266de49078c270dd","ChargeDeviceRef":"SCOT39","ChargeDeviceName":"Cadogan Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.860070","Longitude":"-4.260700","Address":{"SubBuildingName":null,"BuildingName":"Cadogan Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Cadogan Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G2 7HF","Country":"gb"},"LocationShortDescription":"Cadogan Street Car Park, Glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a4d8e2a7e0d0c102339f97716d2fdfb6","ChargeDeviceRef":"SCOT38","ChargeDeviceName":"Cadogan Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.860080","Longitude":"-4.260700","Address":{"SubBuildingName":null,"BuildingName":"Cadogan Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Cadogan Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G2 7HF","Country":"gb"},"LocationShortDescription":"Cadogan Street Car Park, Glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0314c9b108b8c39f1cf878ed93fdd5ae","ChargeDeviceRef":"SCOT37","ChargeDeviceName":"Cadogan Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.860090","Longitude":"-4.260700","Address":{"SubBuildingName":null,"BuildingName":"Cadogan Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Cadogan Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G2 7HF","Country":"gb"},"LocationShortDescription":"Cadogan Street Car Park, Glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a495eebbfa243b79c5b9b224c482d0c2","ChargeDeviceRef":"SC35","ChargeDeviceName":"Cairns Hill Park and Ride","ChargeDeviceText":"Cairns Hill Park and Ride Car Park","ChargeDeviceLocation":{"Latitude":"54.589600","Longitude":"-5.904296","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Belfast","PostCode":null,"Country":"gb"},"LocationShortDescription":"Cairns Hill Park and Ride DRD Car Park","LocationLongDescription":"Cairns Hill Park and Ride DRD Car Park - link to Park and Ride service to Belfast City Centre"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3e3aa687770f55c704ca997c3be81634","ChargeDeviceRef":"SCOT64","ChargeDeviceName":"Caledonia Avenue","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.828900","Longitude":"-4.208200","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Caledonia Avenue","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Rutherglen","PostCode":"G73 1DJ","Country":"gb"},"LocationShortDescription":"Caledonia Avenue, Rutherglen","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ecf5631507a8aedcae34cef231aa7348","ChargeDeviceRef":"SCOT65","ChargeDeviceName":"Caledonia Avenue","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.828900","Longitude":"-4.208200","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Caledonia Avenue","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Rutherglen","PostCode":"G73 1DJ","Country":"gb"},"LocationShortDescription":"Caledonia Avenue, Rutherglen","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"65ae450c5536606c266f49f1c08321f2","ChargeDeviceRef":"SCOT72","ChargeDeviceName":"Caledonia Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.739500","Longitude":"-3.975300","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Caledonia Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Larkhall","PostCode":"ML9 1EP","Country":"gb"},"LocationShortDescription":"Caledonia Road, Larkhall","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"7dc3338d429a3114842ca29dbbfccfef","ChargeDeviceRef":"SCOT30","ChargeDeviceName":"Cambridge Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.866890","Longitude":"-4.259400","Address":{"SubBuildingName":null,"BuildingName":"Cambridge Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Cambridge Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G3 6RU","Country":"gb"},"LocationShortDescription":"Cambridge Street Car Park, Glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"84f74ce4511e0c9531af1182fb636f0f","ChargeDeviceRef":"SCOT32","ChargeDeviceName":"Cambridge Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.866870","Longitude":"-4.259400","Address":{"SubBuildingName":null,"BuildingName":"Cambridge Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Cambridge Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G3 6RU","Country":"gb"},"LocationShortDescription":"Cambridge Street Car Park, Glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5bf8aaef51c6e0d363cbe554acaf3f20","ChargeDeviceRef":"SCOT31","ChargeDeviceName":"Cambridge Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.866880","Longitude":"-4.259400","Address":{"SubBuildingName":null,"BuildingName":"Cambridge Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Cambridge Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G3 6RU","Country":"gb"},"LocationShortDescription":"Cambridge Street Car Park, Glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ca8a2d76a5bcc212226417361a5f0740","ChargeDeviceRef":"SCOT33","ChargeDeviceName":"Cambridge Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.866860","Longitude":"-4.259400","Address":{"SubBuildingName":null,"BuildingName":"Cambridge Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Cambridge Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G3 6RU","Country":"gb"},"LocationShortDescription":"Cambridge Street Car Park, Glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"cfcce0621b49c983991ead4c3d4d3b6b","ChargeDeviceRef":"SC37","ChargeDeviceName":"Canal Court Hotel","ChargeDeviceText":"Canal Court Hotel Car Park","ChargeDeviceLocation":{"Latitude":"54.176301","Longitude":"-6.340184","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Merchant's Quay","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Newry","PostCode":"BT35 8HF","Country":"gb"},"LocationShortDescription":"Canal Court Hotel Car Park","LocationLongDescription":"Canal Court Hotel Car Park"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Canal Court Hotel","Website":"www.canalcourthotel.com","TelephoneNo":"028 3025 1234 ","ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"8164d892d7aea8f1875df07f4d82ffd0","ChargeDeviceRef":"21056","ChargeDeviceName":"Captain Cook Carpark Ground Floor","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.575484","Longitude":"-1.239919","Address":{"SubBuildingName":null,"BuildingName":"Captain Cook Carpark","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Middlesbrough","PostCode":"TS15UB","Country":"gb"},"LocationShortDescription":"Middlesbrough","LocationLongDescription":"Captain Cook Carpark Ground Floor"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"0b081776bae790b4ee7c059c23b96b3a","ChargeDeviceRef":"30092","ChargeDeviceName":"Cargofleet Lane","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.572642","Longitude":"-1.203266","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Cargofleet Lane","Street":null,"DoubleDependantLocality":"Central Depot. Erimus House","DependantLocality":"Middlesbrough","PostTown":null,"PostCode":"TS1 9FW","Country":"gb"},"LocationShortDescription":"Middlesbrough","LocationLongDescription":"Cargofleet Lane"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8217bb4e7fa0541e0f5e04fea764ab91","ChargeDeviceRef":"SC25","ChargeDeviceName":"Carlisle Road","ChargeDeviceText":"Carlisle Road on-street","ChargeDeviceLocation":{"Latitude":"54.993250","Longitude":"-7.319705","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":null,"LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"DRD","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"adc8ca1b15e20915c3ea6008fc2f52ed","ChargeDeviceRef":"SCOT76","ChargeDeviceName":"Carluke Lifestyles Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.733700","Longitude":"-3.833600","Address":{"SubBuildingName":null,"BuildingName":"Carluke Lifestyles Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Carnwarth Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Carluke","PostCode":"ML8 4DF","Country":"gb"},"LocationShortDescription":null,"LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6195f47dcff14b8f242aa333cdb2703e","ChargeDeviceRef":"SCOT49","ChargeDeviceName":"Castlebay Council Office","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"56.955060","Longitude":"-7.487170","Address":{"SubBuildingName":null,"BuildingName":"Council Office","BuildingNumber":null,"Thoroughfare":null,"Street":"Castlebay","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Isle of Barra","PostCode":"HS9 5XD","Country":"gb"},"LocationShortDescription":"Isle of Barra","LocationLongDescription":"Public access by arrangement. Contact 08456007090"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Public access by arrangement. Contact 08456007090","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"9ddb9dd5d8aee9a76bf217a2a3c54833","ChargeDeviceRef":"SC40","ChargeDeviceName":"Cathedral Road Recreation Centre","ChargeDeviceText":"Cathedral Road Recreation Centre Car Park","ChargeDeviceLocation":{"Latitude":"54.351073","Longitude":"-6.659115","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Cathedral Road Recreation Centre Car Park","LocationLongDescription":"Cathedral Road Recreation Centre Car Park. Usual parking restrictions apply"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Armagh and District Council","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"12ced2db6f0193dda91ba86224ea1cd8","ChargeDeviceRef":"200_20288","ChargeDeviceName":"Cattle Market Car Park (basement)","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.409984","Longitude":"-0.298953","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Fairfield North","DoubleDependantLocality":null,"DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT1 2PW","Country":"gb"},"LocationShortDescription":"Fairfield North, Kingston upon Thames","LocationLongDescription":"Fairfield North, Kingston upon Thames, London, KT1 2PW"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0b846c55b4bde6baae8c12a2e53ae8c7","ChargeDeviceRef":"20017","ChargeDeviceName":"Cawfields Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.992739","Longitude":"-2.450545","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Cawfields Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Haltwhistle","PostTown":"Northumberland","PostCode":"NE49 9PJ","Country":"gb"},"LocationShortDescription":"Haltwhistle","LocationLongDescription":"Cawfields Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"5516adb142fcb18a017c72602abbdb6d","ChargeDeviceRef":"21123","ChargeDeviceName":"Cawledge Business Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.397904","Longitude":"-1.692986","Address":{"SubBuildingName":null,"BuildingName":"Cawledge Business Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Alnwick","PostCode":"NE66 2GB","Country":"gb"},"LocationShortDescription":"Alnwick","LocationLongDescription":"Cawledge Business Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"037a595e6f4f0576a9efe43154d71c18","ChargeDeviceRef":"21122","ChargeDeviceName":"Cawledge Business Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.397904","Longitude":"-1.692786","Address":{"SubBuildingName":null,"BuildingName":"Cawledge Business Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Alnwick","PostCode":"NE66 2GB","Country":"gb"},"LocationShortDescription":"Alnwick","LocationLongDescription":"Cawledge Business Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"d71f5142463efcf6dc7be216cf4644b5","ChargeDeviceRef":"100_10129","ChargeDeviceName":"Cedars Car Park - Uxbridge Shopping Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.547778","Longitude":"-0.481456","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Oxford Road","DoubleDependantLocality":"Uxbridge","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"UB8 1ND","Country":"gb"},"LocationShortDescription":"Oxford Road, Hillingdon","LocationLongDescription":"Oxford Road, Hillingdon, London, UB8 1ND"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"cf63547fadc1aa6e897a62291e0cb124","ChargeDeviceRef":"10029","ChargeDeviceName":"Central Square South","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.967003","Longitude":"-1.613909","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Central Square South","Street":null,"DoubleDependantLocality":"Orchard Street","DependantLocality":"Newcastle Upon Tyne","PostTown":"Tyne and Wear","PostCode":"NE1 3XX","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Central Square South"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"For Eversheds employees and visitors only.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"60a70bb05b08d6cd95deb3bdb750dce8","ChargeDeviceRef":"SC09","ChargeDeviceName":"Central Station","ChargeDeviceText":"Central Station Car Park","ChargeDeviceLocation":{"Latitude":"54.595384","Longitude":"-5.915776","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Central Station Car Park","LocationLongDescription":"Translink Central Station Car Park. Usual car paking charges apply"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Translink","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4f05d4821fe9967817dea5a20c4e7b35","ChargeDeviceRef":"SCOT46","ChargeDeviceName":"Charing Cross Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.864520","Longitude":"-4.269200","Address":{"SubBuildingName":null,"BuildingName":"Charing Cross Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G2 4PR","Country":"gb"},"LocationShortDescription":"Charing Cross Car Park, Glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"440924c5948e05070663f88e69e8242b","ChargeDeviceRef":"SCOT45","ChargeDeviceName":"Charing Cross Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.864530","Longitude":"-4.269200","Address":{"SubBuildingName":null,"BuildingName":"Charing Cross Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G2 4PR","Country":"gb"},"LocationShortDescription":"Charing Cross Car Park, Glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"88479e328a8633f54e9c667651832fbc","ChargeDeviceRef":"SCOT44","ChargeDeviceName":"Charing Cross Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.864540","Longitude":"-4.269200","Address":{"SubBuildingName":null,"BuildingName":"Charing Cross Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G2 4PR","Country":"gb"},"LocationShortDescription":"Charing Cross Car Park, Glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"83451e7ef8755c2a8f464093c808f529","ChargeDeviceRef":"200_20204","ChargeDeviceName":"Charing Cross Hospital","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.486559","Longitude":"-0.220502","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Fulham Palace Road","DoubleDependantLocality":"Hammersmith","DependantLocality":"Hammersmith & Fulham","PostTown":"London","PostCode":"W6 9NT","Country":"gb"},"LocationShortDescription":"Fulham Palace Road, Hammersmith & Fulham","LocationLongDescription":"Fulham Palace Road, Hammersmith & Fulham, London, W6 9NT"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b4df9f494056d51f86c7f1a89850c467","ChargeDeviceRef":"200_20231","ChargeDeviceName":"Charing Cross Hospital","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.486604","Longitude":"-0.220529","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Fulham Palace Road","DoubleDependantLocality":"Hammersmith","DependantLocality":"Hammersmith & Fulham","PostTown":"London","PostCode":"W6 9NT","Country":"gb"},"LocationShortDescription":"Fulham Palace Road, Hammersmith & Fulham","LocationLongDescription":"Fulham Palace Road, Hammersmith & Fulham, London, W6 9NT"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a4d41b834ea903526373a9a1ae2ac66e","ChargeDeviceRef":"200_10301","ChargeDeviceName":"Charlotte Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.519285","Longitude":"-0.135539","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"40 Charlotte Street","DoubleDependantLocality":null,"DependantLocality":"Camden","PostTown":"London","PostCode":"W1T 2NH","Country":"gb"},"LocationShortDescription":"40 Charlotte Street, Camden","LocationLongDescription":"40 Charlotte Street, Camden, London, W1T 2NH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a1c3ae6c49a89d92aef2d423dadb477f","ChargeDeviceRef":"11150","ChargeDeviceName":"Cherry Blossom Way","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.918382","Longitude":"-1.486737","Address":{"SubBuildingName":null,"BuildingName":"Cherry Blossom Way","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NT","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Cherry Blossom Way"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"81374713d991042a0e18865aa693cc24","ChargeDeviceRef":"11152","ChargeDeviceName":"Cherry Blossom Way","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.918382","Longitude":"-1.486737","Address":{"SubBuildingName":null,"BuildingName":"Cherry Blossom Way","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NT","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Cherry Blossom Way"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4928e7510f45da6575b04a28519c09ed","ChargeDeviceRef":"11151","ChargeDeviceName":"Cherry Blossom Way","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.918382","Longitude":"-1.486737","Address":{"SubBuildingName":null,"BuildingName":"Cherry Blossom Way","BuildingNumber":null,"Thoroughfare":null,"Street":"Front Car Park","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NT","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Cherry Blossom Way"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"37f65c068b7723cd7809ee2d31d7861c","ChargeDeviceRef":"11149","ChargeDeviceName":"Cherry Blossom Way","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.918382","Longitude":"-1.486737","Address":{"SubBuildingName":null,"BuildingName":"Cherry Blossom Way","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NT","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Cherry Blossom Way"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c831e9b5f6c9bab6b23c26c2dab2a29c","ChargeDeviceRef":"11148","ChargeDeviceName":"Cherry Blossom Way","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.918382","Longitude":"-1.486737","Address":{"SubBuildingName":null,"BuildingName":"Cherry Blossom Way","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NT","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Cherry Blossom Way"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"060afc8a563aaccd288f98b7c8723b61","ChargeDeviceRef":"40027","ChargeDeviceName":"Chillingham Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.986955","Longitude":"-1.577002","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Chillingham Road","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle","PostTown":null,"PostCode":"NE6 5LS","Country":"gb"},"LocationShortDescription":"Newcastle","LocationLongDescription":"Chillingham Road"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"125c0e943c73bb8a0840ab524fdcbd08","ChargeDeviceRef":"300_10182","ChargeDeviceName":"Church Row","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.555523","Longitude":"-0.178979","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Church Row","DoubleDependantLocality":"West of Heath Street","DependantLocality":"Camden","PostTown":"London","PostCode":"NW3 6UR","Country":"gb"},"LocationShortDescription":"Church Row, Camden","LocationLongDescription":"Church Row, Camden, London, NW3 6UR"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"65b1e92c585fd4c2159d5f33b5030ff2","ChargeDeviceRef":"PP-12198","ChargeDeviceName":"Circus Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.533633","Longitude":"-0.172353","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"NW8 9SG","Country":"gb"},"LocationShortDescription":"Circus Road, Westminster. ","LocationLongDescription":"Circus Road, Westminster. "},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"7d97667a3e056acab9aaf653807b4a03","ChargeDeviceRef":"CPS - 400_10235","ChargeDeviceName":"City College Coventry","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.414815","Longitude":"-1.502560","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Bath Street Car Park
Service yard and multi-storey car park","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CV1 5DG","Country":"gb"},"LocationShortDescription":"Restricted access to students, staff and visitors","LocationLongDescription":"One charging point, one socket, RFID card accessed

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Point Services","Website":"www.chargepointservices.co.uk","TelephoneNo":"0207 917 6057","ContactName":"Alex Bamberg"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e9257036daf20f062a498aab563d7712","ChargeDeviceRef":"10020","ChargeDeviceName":"City Learning Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.616289","Longitude":"-1.283239","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"City Learning Centre","Street":null,"DoubleDependantLocality":"Marsh House Avenue","DependantLocality":"Billingham","PostTown":null,"PostCode":"TS23 3QJ","Country":"gb"},"LocationShortDescription":"Billingham","LocationLongDescription":"City Learning Centre"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"3e33b970f21d2fc65096871ea0d2c6e4","ChargeDeviceRef":"05130003\/12","ChargeDeviceName":"City of Stoke on Trent","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"53.022697","Longitude":"-2.175905","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"John Street multi storey car park
Hanley
Stoke on Trent","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"ST1 3DX","Country":"gb"},"LocationShortDescription":"Public access
Parking fees may apply","LocationLongDescription":"One charging point, two sockets

Two seven pin Type 2 sockets rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"APT","Website":"www.aptcontrols.co.uk","TelephoneNo":"0208 515 8556","ContactName":"Richard Frost"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"385822e359afa26d52b5b286226f2cea","ChargeDeviceRef":"05130002\/12","ChargeDeviceName":"City of Stoke on Trent","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"53.022676","Longitude":"-2.175966","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"John Street multi storey car park
Hanley
Stoke on Trent","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"ST1 3DX","Country":"gb"},"LocationShortDescription":"Public access
Parking fees may apply","LocationLongDescription":"One charging point, two sockets

Two seven pin Type 2 sockets rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"APT","Website":"www.aptcontrols.co.uk","TelephoneNo":"0208 515 8556","ContactName":"Richard Frost"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"89a4779d3836ea432f7ea074e522a17e","ChargeDeviceRef":"05130001\/12","ChargeDeviceName":"City of Stoke on Trent","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"53.022654","Longitude":"-2.176044","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"John Street multi storey car park
Hanley
Stoke on Trent","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"ST1 3DX","Country":"gb"},"LocationShortDescription":"Public access
Parking fees may apply","LocationLongDescription":"One charging point, two sockets

Two seven pin Type 2 sockets rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"APT","Website":"www.aptcontrols.co.uk","TelephoneNo":"0208 515 8556","ContactName":"Richard Frost"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"68d3743587f71fbaa5062152985aff40","ChargeDeviceRef":"40026","ChargeDeviceName":"City Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.971043","Longitude":"-1.603065","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"City Road","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 2AF","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"City Road"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"b607aa5b2fd58dd860bfb55619389982","ChargeDeviceRef":"40025","ChargeDeviceName":"City Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.971040","Longitude":"-1.602995","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"City Road","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 2AF","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"City Road"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f0837f171aae7ccf1a8909b6a0cc3559","ChargeDeviceRef":"40021","ChargeDeviceName":"Claremont Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.987447","Longitude":"-1.635938","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Claremont Road","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE2 4NL","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Claremont Road"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"1d8d70dddf147d2d92a634817f01b239","ChargeDeviceRef":"100_10405","ChargeDeviceName":"Claremont Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.394559","Longitude":"-0.304326","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Claremont Road","DoubleDependantLocality":"North of The Crescent","DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT6 4RF","Country":"gb"},"LocationShortDescription":"Claremont Road, Kingston upon Thames","LocationLongDescription":"Claremont Road, Kingston upon Thames, London, KT6 4RF"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"723dadb8c699bf14f74503dbcb6e09c1","ChargeDeviceRef":"40009","ChargeDeviceName":"Claremont Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.987447","Longitude":"-1.635838","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Claremont Road","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE2 4NL","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Claremont Road"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"1f9b616faddedc02339603f3b37d196c","ChargeDeviceRef":"300_10138","ChargeDeviceName":"Clarendon Rise\/Albion Way","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.460762","Longitude":"-0.008739","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Clarendon Rise\/Albion Way","DoubleDependantLocality":null,"DependantLocality":"Lewisham ","PostTown":"London","PostCode":"SE13 6BT","Country":"gb"},"LocationShortDescription":"Clarendon Rise\/Albion Way, Lewisham ","LocationLongDescription":"Clarendon Rise\/Albion Way, Lewisham , London, SE13 6BT"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"7a9a322cbe0d06a98667fdc5160dc6f8","ChargeDeviceRef":"30058","ChargeDeviceName":"Clayton St junction with Pink Lane","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.970146","Longitude":"-1.619392","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Clayton St junction with Pink Lane","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle upon Tyne","PostTown":null,"PostCode":"NE1 4AE","Country":"gb"},"LocationShortDescription":"Newcastle upon Tyne","LocationLongDescription":"Clayton St junction with Pink Lane"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"001ab2fa029c064a45e41f8b2644a292","ChargeDeviceRef":"30059","ChargeDeviceName":"Clayton St junction with Pink Lane","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.970146","Longitude":"-1.619300","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Clayton St junction with Pink Lane","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle upon Tyne","PostTown":null,"PostCode":"NE1 4AE","Country":"gb"},"LocationShortDescription":"Newcastle upon Tyne","LocationLongDescription":"Clayton St junction with Pink Lane"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"1770ae9e1b6bc9f5fd2841f141557ffb","ChargeDeviceRef":"30057","ChargeDeviceName":"Clayton Street opposite Falconer Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.971376","Longitude":"-1.617814","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Clayton Street opposite Falconer Street","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle upon Tyne","PostTown":null,"PostCode":"NE1 5PF ","Country":"gb"},"LocationShortDescription":"Newcastle upon Tyne","LocationLongDescription":"Clayton Street opposite Falconer Street"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"3a4496776767aaa99f9804d0905fe584","ChargeDeviceRef":"30056","ChargeDeviceName":"Clayton Street opposite Falconer Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.971360","Longitude":"-1.617820","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Clayton Street opposite Falconer Street","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle upon Tyne","PostTown":null,"PostCode":"NE1 5PF ","Country":"gb"},"LocationShortDescription":"Newcastle upon Tyne","LocationLongDescription":"Clayton Street opposite Falconer Street"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"13b919438259814cd5be8cb45877d577","ChargeDeviceRef":"SCOT83","ChargeDeviceName":"Clickimin Leisure Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"60.153700","Longitude":"-1.161100","Address":{"SubBuildingName":null,"BuildingName":"Clickimin Leisure Complex","BuildingNumber":null,"Thoroughfare":null,"Street":"Lochside","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Lerwick","PostCode":"ZE1 0PJ","Country":"gb"},"LocationShortDescription":"Clickimin Leisure Centre","LocationLongDescription":"Contact James Johnson on 01595 741000 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0bd65e799153554726820ca639514029","ChargeDeviceRef":"300_10207","ChargeDeviceName":"Clissold Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.557383","Longitude":"-0.083447","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Clissold Road","DoubleDependantLocality":"Northwest of Albion Road","DependantLocality":"Hackney","PostTown":"London","PostCode":"N16 9LD","Country":"gb"},"LocationShortDescription":"Clissold Road, Hackney","LocationLongDescription":"Clissold Road, Hackney, London, N16 9LD"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b9cfe8b6042cf759dc4c0cccb27a6737","ChargeDeviceRef":"10032","ChargeDeviceName":"Cobalt Business Exchange","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.015590","Longitude":"-1.503687","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Cobalt Business Exchange","Street":null,"DoubleDependantLocality":"Silverlink Business Park","DependantLocality":"North Tyneside","PostTown":null,"PostCode":"NE28 9NZ","Country":"gb"},"LocationShortDescription":"North Tyneside","LocationLongDescription":"Cobalt Business Exchange"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a08e32d2f9a8b78894d964ec7fd4172e","ChargeDeviceRef":"10035","ChargeDeviceName":"Cobalt Business Exchange","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.015600","Longitude":"-1.503470","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Cobalt Business Exchange","Street":null,"DoubleDependantLocality":"Silverlink Business Park","DependantLocality":"North Tyneside","PostTown":null,"PostCode":"NE28 9NZ","Country":"gb"},"LocationShortDescription":"North Tyneside","LocationLongDescription":"Cobalt Business Exchange"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"e7a425c6ece20cbc9056f98699b53c6f","ChargeDeviceRef":"40004","ChargeDeviceName":"Collingwood St","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.969980","Longitude":"-1.612600","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Collingwood St","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 1HE","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Collingwood St junction with St Nicholas Street"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"769c3bce651ce5feaa01ce3b75986420","ChargeDeviceRef":"40005","ChargeDeviceName":"Collingwood St","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.969867","Longitude":"-1.613019","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Collingwood St","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 1HE","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Collingwood St junction with St Nicholas Street"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"e46bc064f8e92ac2c404b9871b2a4ef2","ChargeDeviceRef":"SCOT74","ChargeDeviceName":"Common Green Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.676700","Longitude":"-4.065700","Address":{"SubBuildingName":null,"BuildingName":"Common Green Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Strathaven","PostCode":"ML10 6AF","Country":"gb"},"LocationShortDescription":"Common Green Car Park, Strathaven","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ce052ea95dfe35291c6fa7fcf8819492","ChargeDeviceRef":"200_10337","ChargeDeviceName":"Concert Hall Approach","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.504769","Longitude":"-0.115166","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Concert Hall Approach","DoubleDependantLocality":"Waterloo","DependantLocality":"Lambeth","PostTown":"London","PostCode":"SE1 8XU","Country":"gb"},"LocationShortDescription":"Concert Hall Approach, Lambeth","LocationLongDescription":"Concert Hall Approach, Lambeth, London, SE1 8XU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"770c0e7e2af0db73409aa2431aa8f33e","ChargeDeviceRef":"SCOT34","ChargeDeviceName":"Concert Square Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.865520","Longitude":"-4.253000","Address":{"SubBuildingName":null,"BuildingName":"Concert Square Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Cowcaddens Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G4 0LH","Country":"gb"},"LocationShortDescription":"Concert Square Car Park, glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c929f2210333206f417e3862f431776d","ChargeDeviceRef":"SCOT36","ChargeDeviceName":"Concert Square Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.865500","Longitude":"-4.253000","Address":{"SubBuildingName":null,"BuildingName":"Concert Square Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Cowcaddens Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G4 0LH","Country":"gb"},"LocationShortDescription":"Concert Square Car Park, glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"7a6a6127ff85640ec69691fb0f7cb1a2","ChargeDeviceRef":"SCOT35","ChargeDeviceName":"Concert Square Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.865510","Longitude":"-4.253000","Address":{"SubBuildingName":null,"BuildingName":"Concert Square Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Cowcaddens Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G4 0LH","Country":"gb"},"LocationShortDescription":"Concert Square Car Park, glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d01eeca8b24321cd2fe89dd85b9beb51","ChargeDeviceRef":"PP - 12651","ChargeDeviceName":"Corby Cube 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.487287","Longitude":"-0.706190","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"The Corby Cube Car Park
George Street
Corby","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"NN17 1QG","Country":"gb"},"LocationShortDescription":"Public access
Parking fees may apply","LocationLongDescription":"One charging point, two sockets, RFID card accessed

One three pin BS1363 socket
rated at 3kW (mode 1; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"e3b21256183cf7c2c7a66be163579d37","ChargeDeviceRef":"PP - 12666","ChargeDeviceName":"Corby Cube 2","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.487288","Longitude":"-0.706172","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"The Corby Cube Car Park
George Street
Corby","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"NN17 1QG","Country":"gb"},"LocationShortDescription":"Public access
Parking fees may apply","LocationLongDescription":"One charging point, two sockets, RFID card accessed

One three pin BS1363 socket
rated at 3kW (mode 1; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a3147b88259a8e5745ebd59394aee83e","ChargeDeviceRef":"PP - 12671","ChargeDeviceName":"Corby Enterprise Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.505127","Longitude":"-0.642130","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Off Gretton Road
Weldon","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"NN17 5EU","Country":"gb"},"LocationShortDescription":"Visitor access
Free parking
Access during working hours","LocationLongDescription":"One charging point, two sockets, RFID card accessed

One three pin BS1363 socket
rated at 3kW (mode 1; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"ad68473a64305626a27c32a5408552d7","ChargeDeviceRef":"PP - 12689","ChargeDeviceName":"Corby Railway Station 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.488022","Longitude":"-0.688372","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Corby","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"NN17 1UJ","Country":"gb"},"LocationShortDescription":"Public access
Parking fees may apply","LocationLongDescription":"One charging point, two sockets, RFID card accessed

One three pin BS1363 socket
rated at 3kW (mode 1; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"ec0f40c389aeef789ce03eb814facc6c","ChargeDeviceRef":"PP - 12672","ChargeDeviceName":"Corby Railway Station 2","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.488165","Longitude":"-0.688207","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Corby","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"NN17 1UJ","Country":"gb"},"LocationShortDescription":"Public access
Parking fees may apply","LocationLongDescription":"One charging point, two sockets, RFID card accessed

One three pin BS1363 socket
rated at 3kW (mode 1; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f816dc0acface7498e10496222e9db10","ChargeDeviceRef":"SCOT66","ChargeDeviceName":"Council HQ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.577600","Longitude":"-2.673900","Address":{"SubBuildingName":null,"BuildingName":"Old School Building","BuildingNumber":null,"Thoroughfare":null,"Street":"Council HQ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Newtown St Boswells","PostCode":"TD6 0SA","Country":"gb"},"LocationShortDescription":"Council HQ, Newton St Boswells","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d5036c64412973d610202be8dce2b82a","ChargeDeviceRef":"11037","ChargeDeviceName":"County Hall","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.153114","Longitude":"-1.686299","Address":{"SubBuildingName":null,"BuildingName":"County Hall","BuildingNumber":null,"Thoroughfare":null,"Street":"Finchale Road","DoubleDependantLocality":"Framwellgate Moor","DependantLocality":null,"PostTown":"Morpeth","PostCode":"NE61 2EF","Country":"gb"},"LocationShortDescription":"Morpeth","LocationLongDescription":"County Hall"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"243be2818a23c980ad664f30f48e5d19","ChargeDeviceRef":"PP-12320","ChargeDeviceName":"Covent Garden Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.293000","Longitude":"-1.538000","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CV32 5QB","Country":"gb"},"LocationShortDescription":"Covent Garden Car Park - Russell Street.","LocationLongDescription":"Warwick District Council. Covent Garden car park on Russell Street."},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"02bf86214e264535e3412283e817deaa","ChargeDeviceRef":"PP-12320","ChargeDeviceName":"Covent Garden Car Park Leamington Spa ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.293086","Longitude":"-1.537687","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Covent Garden Car Park
Leamington Spa
CV32 5","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CV32 5 ","Country":"gb"},"LocationShortDescription":"Public access
Parking fees apply.","LocationLongDescription":"One charging point, two sockets, RFID card accessed
Two three pin BS1363 sockets (mode 1; standard charge).

Fitted privately"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"75806e8a1c04cad241934a374c1359c0","ChargeDeviceRef":"CM - 1362","ChargeDeviceName":"Coventry University Enterprises 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.402980","Longitude":"-1.504942","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Technology Park
Coventry University
Puma way
Coventry","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CV1 2TT","Country":"gb"},"LocationShortDescription":"Public access to staff and visitors
Please report to reception","LocationLongDescription":"One charging point, two sockets

One three pin BS1363 socket
rated at 3kW (mode 1; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Chargemaster","Website":"www.chargemasterplc.com","TelephoneNo":"01582 400 331","ContactName":"Neil Sharpe"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4b04b0dcd2ade339a3d7ce13252a29d4","ChargeDeviceRef":"CM - 1264","ChargeDeviceName":"Coventry University Enterprises 2","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.402974","Longitude":"-1.504870","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Technology Park
Coventry University
Puma way
Coventry","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CV1 2TT","Country":"gb"},"LocationShortDescription":"Public access to staff and visitors
Please report to reception","LocationLongDescription":"One charging point, two sockets

One three pin BS1363 socket
rated at 3kW (mode 1; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Chargemaster","Website":"www.chargemasterplc.com","TelephoneNo":"01582 400 331","ContactName":"Neil Sharpe"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"9529fbba677729d3206b3b9073d1e9ca","ChargeDeviceRef":"CM - 1242","ChargeDeviceName":"Coventry University Enterprises 3","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.402970","Longitude":"-1.504821","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Technology Park
Coventry University
Puma way
Coventry","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CV1 2TT","Country":"gb"},"LocationShortDescription":"Public access to staff and visitors
Please report to reception","LocationLongDescription":"One charging point, two sockets

One three pin BS1363 socket
rated at 3kW (mode 1; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Chargemaster","Website":"www.chargemasterplc.com","TelephoneNo":"01582 400 331","ContactName":"Neil Sharpe"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1713a23c14b5033adb074b5464fb6c66","ChargeDeviceRef":"300_10192","ChargeDeviceName":"Coverton Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.428398","Longitude":"-0.173306","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Coverton Road","DoubleDependantLocality":"Tooting","DependantLocality":"Wandsworth","PostTown":"London","PostCode":"SW17 0QW","Country":"gb"},"LocationShortDescription":"Coverton Road, Wandsworth","LocationLongDescription":"Coverton Road, Wandsworth, London, SW17 0QW"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"522e1ea43810e90242942ccc0995dae1","ChargeDeviceRef":"20068","ChargeDeviceName":"Cragside Hall","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.315155","Longitude":"-1.885767","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Cragside Hall","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Rothbury","PostTown":null,"PostCode":"NE657PX","Country":"gb"},"LocationShortDescription":"Rothbury","LocationLongDescription":"Cragside Hall"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"da94cbeff56cfda50785df477941308b","ChargeDeviceRef":"300_10184","ChargeDeviceName":"Crestfield Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.529518","Longitude":"-0.122535","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Crestfield Street","DoubleDependantLocality":"North of Argyle Square","DependantLocality":"Camden","PostTown":"London","PostCode":"WC1H 8AT","Country":"gb"},"LocationShortDescription":"Crestfield Street, Camden","LocationLongDescription":"Crestfield Street, Camden, London, WC1H 8AT"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b58ac8403eb9cf17fae1dcd16df71fde","ChargeDeviceRef":"SC33","ChargeDeviceName":"Cromac Street Car Park","ChargeDeviceText":"DRD Car Park on Cromac Street, usual car parking charges apply","ChargeDeviceLocation":{"Latitude":"54.594109","Longitude":"-5.924292","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"DRD Car Park on Cromac Street","LocationLongDescription":"DRD Car Park on Cromac Street, usual car parking charges apply"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"2b7b82a7ec6de40781fd6ef338b41892","ChargeDeviceRef":"SC31","ChargeDeviceName":"Cross Street DRD Car Park","ChargeDeviceText":"Cross Street DRD Car Park","ChargeDeviceLocation":{"Latitude":"54.252651","Longitude":"-7.442562","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Cross Street DRD Car Park, Lisnaskea","LocationLongDescription":"Cross Street DRD Car Park, Lisnaskea. Usual parking charges and restrictions apply."},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"DRD","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0e4ceef65add6cf21c0f3f9da53b71c0","ChargeDeviceRef":"30073","ChargeDeviceName":"Crosskeys Lane","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.935923","Longitude":"-1.601245","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Crosskeys Lane","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Gateshead","PostTown":null,"PostCode":"NE9 6DA","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Crosskeys Lane"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"54c3d58c5efcf59ddeb7486b7061ea5a","ChargeDeviceRef":"30072","ChargeDeviceName":"Crosskeys Lane","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.935823","Longitude":"-1.601245","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Crosskeys Lane","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Gateshead","PostTown":null,"PostCode":"NE9 6DA","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Crosskeys Lane"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"60e1deb043af37db5ea4ce9ae8d2c9ea","ChargeDeviceRef":"200_20225","ChargeDeviceName":"Crouch Hall Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.579177","Longitude":"-0.124949","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Crouch Hall Road","DoubleDependantLocality":null,"DependantLocality":"Haringey","PostTown":"London","PostCode":"N8 8HJ","Country":"gb"},"LocationShortDescription":"Crouch Hall Road, Haringey","LocationLongDescription":"Crouch Hall Road, Haringey, London, N8 8HJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3bc3e78c17d35e74ecfae5e475d960d7","ChargeDeviceRef":"200_10340","ChargeDeviceName":"Cuthbert Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.615281","Longitude":"-0.064008","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Cuthbert Road","DoubleDependantLocality":"Off Fore Street","DependantLocality":"Enfield","PostTown":"London","PostCode":"N18 2QE","Country":"gb"},"LocationShortDescription":"Cuthbert Road, Enfield","LocationLongDescription":"Cuthbert Road, Enfield, London, N18 2QE"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3c8a49145944fed2bbcaade178a426c4","ChargeDeviceRef":"200_10342","ChargeDeviceName":"Cuthbert Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.615326","Longitude":"-0.064006","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Cuthbert Road","DoubleDependantLocality":"Off Fore Street","DependantLocality":"Enfield","PostTown":"London","PostCode":"N18 2QE","Country":"gb"},"LocationShortDescription":"Cuthbert Road, Enfield","LocationLongDescription":"Cuthbert Road, Enfield, London, N18 2QE"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"457ded6f20b28feb21b9bca73c498671","ChargeDeviceRef":"10051","ChargeDeviceName":"Cygnet Way","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.832433","Longitude":"-1.483291","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Cygnet Way","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Rainton","PostTown":null,"PostCode":"DH45QY","Country":"gb"},"LocationShortDescription":"Rainton","LocationLongDescription":"Cygnet Way"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"1b33d16fc562464579b7199ca3114982","ChargeDeviceRef":"10053","ChargeDeviceName":"Cygnet Way","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.831433","Longitude":"-1.483291","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Cygnet Way","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Rainton","PostTown":null,"PostCode":"DH45QY","Country":"gb"},"LocationShortDescription":"Rainton","LocationLongDescription":"Cygnet Way"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"43975bc2dfc84641a2a8c4d3fe653176","ChargeDeviceRef":"10050","ChargeDeviceName":"Cygnet Way","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.830433","Longitude":"-1.483291","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Cygnet Way","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Rainton","PostTown":null,"PostCode":"DH45QY","Country":"gb"},"LocationShortDescription":"Rainton","LocationLongDescription":"Cygnet Way"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"68abef8ee1ac9b664a90b0bbaff4f770","ChargeDeviceRef":"20073","ChargeDeviceName":"Dalton Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.815137","Longitude":"-1.375626","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Dalton Park","Street":null,"DoubleDependantLocality":"Murton","DependantLocality":"Seaham","PostTown":"County Durham ","PostCode":"SR7 9HU","Country":"gb"},"LocationShortDescription":"Seaham","LocationLongDescription":"Dalton Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":"415","RatedOutputCurrent":"125","ChargeMethod":"Single Phase AC","ChargeMode":null,"ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4a4526b1ec301744aba9526d78fcb2a6","ChargeDeviceRef":"20046","ChargeDeviceName":"Dean Street Multi Storey Carpark Ground Floor","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.970213","Longitude":"-1.609078","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Dean Street Multi Storey Carpark Ground Floor","Street":null,"DoubleDependantLocality":"Dean Street","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 1PG","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Dean Street Multi Storey Carpark Ground Floor"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a1f0cf94512f963e5ed4edd9af70e2cc","ChargeDeviceRef":"200_10303","ChargeDeviceName":"Doughty Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.524617","Longitude":"-0.117518","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"29 Doughty Street","DoubleDependantLocality":null,"DependantLocality":"Camden","PostTown":"London","PostCode":"WC1N 1DA","Country":"gb"},"LocationShortDescription":"29 Doughty Street, Camden","LocationLongDescription":"29 Doughty Street, Camden, London, WC1N 1DA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"605ac7e4c16b8a013b4779b81f883e66","ChargeDeviceRef":"SCOT50","ChargeDeviceName":"Dounby School","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"59.066000","Longitude":"-3.227900","Address":{"SubBuildingName":null,"BuildingName":"Dounby School","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Dounby","PostCode":"KW17 2JA","Country":"gb"},"LocationShortDescription":"Dounby, Orkney","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0e9d935f7e3f2b502450c049ddbc7c92","ChargeDeviceRef":"SC18","ChargeDeviceName":"Down\/Market\/Cross Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.345539","Longitude":"-7.638513","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Down\/Market\/Cross Street","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"86a2f353e1e6692c05fe83d6fc79cf9d","ChargeDeviceRef":"21134","ChargeDeviceName":"Doxford Hall Hotel and Spa","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.511180","Longitude":"-1.705701","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Doxford Hall Hotel and Spa","Street":null,"DoubleDependantLocality":"Chathill","DependantLocality":"Alnwick","PostTown":"Northumberland","PostCode":"NE67 5DN","Country":"gb"},"LocationShortDescription":"Alnwick","LocationLongDescription":"Doxford Hall Hotel and Spa"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"956685427c5cd9dcb04f784272727336","ChargeDeviceRef":"21133","ChargeDeviceName":"Doxford Hall Hotel and Spa","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.511180","Longitude":"-1.705701","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Doxford Hall Hotel and Spa","Street":null,"DoubleDependantLocality":"Chathill","DependantLocality":"Alnwick","PostTown":"Northumberland","PostCode":"NE67 5DN","Country":"gb"},"LocationShortDescription":"Alnwick","LocationLongDescription":"Doxford Hall Hotel and Spa"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"9c8661befae6dbcd08304dbf4dcaf0db","ChargeDeviceRef":"SC22","ChargeDeviceName":"DRD Little Victoria Street DRD Car Park","ChargeDeviceText":"DRD Roads Service Car Park","ChargeDeviceLocation":{"Latitude":"54.592605","Longitude":"-5.933197","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Little Victoria Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Belfast","PostCode":null,"Country":"gb"},"LocationShortDescription":"Little Victoria Street DRD Car Park","LocationLongDescription":"DRD Roads Service Car Park on Little Victoria Street"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"68897f19b106926ed889fe3f7e3d01c9","ChargeDeviceRef":"SCOT5","ChargeDeviceName":"Drumbrae Library","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.954968","Longitude":"-3.287425","Address":{"SubBuildingName":null,"BuildingName":"Drumbrae Library","BuildingNumber":null,"Thoroughfare":null,"Street":"Drumbrae Drive","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Edinburgh","PostCode":"EH4 7ES","Country":"gb"},"LocationShortDescription":"Drumbrae Library, Edinburgh","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"706608cfdbcc1886bb7eea5513f90133","ChargeDeviceRef":"SC08","ChargeDeviceName":"Dublin Road","ChargeDeviceText":"Dublin Road on-street","ChargeDeviceLocation":{"Latitude":"54.591051","Longitude":"-5.933497","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Dublin Road on-street","LocationLongDescription":"Dublin Road on-street usual parking restrictions and charges apply"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"b2b7c555125ecacf4bb7678d9dc39a21","ChargeDeviceRef":"SCOT14","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6abcc8f24321d1eb8c95855eab78ee95","ChargeDeviceRef":"SCOT7","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c1aeb6517a1c7f33514f7ff69047e74e","ChargeDeviceRef":"SCOT23","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c42f891cebbc81aa59f8f183243ac2b9","ChargeDeviceRef":"SCOT16","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5e02b868a91671f9140a41f3946f33cb","ChargeDeviceRef":"SCOT9","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1b69ebedb522700034547abc5652ffac","ChargeDeviceRef":"SCOT25","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"fdeea652a89ec3e970d22a86698ac8c4","ChargeDeviceRef":"SCOT18","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"77143919d1234297079f075357988f3b","ChargeDeviceRef":"SCOT11","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ab24cd2b811ee48a416fc7a833d736a9","ChargeDeviceRef":"SCOT20","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"2297607a5db8576d5ad6bbd83696ff60","ChargeDeviceRef":"SCOT13","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a3ec6dd8d538712a581e5b24726ce062","ChargeDeviceRef":"SCOT6","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1e8ca836c962598551882e689265c1c5","ChargeDeviceRef":"SCOT22","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6f67057b6a3671fe882f6d4f27d547be","ChargeDeviceRef":"SCOT15","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"9ca8c9b0996bbf05ae7753d34667a6fd","ChargeDeviceRef":"SCOT8","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"de3c1a733c9c51de130bc7ae775fd930","ChargeDeviceRef":"SCOT24","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"64f07f012a35c83d7c556ba0b69ef64e","ChargeDeviceRef":"SCOT17","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e910a63844df7022c9b194d39b2686bf","ChargeDeviceRef":"SCOT10","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4ee78d4122ef8503fe01cdad3e9ea4ee","ChargeDeviceRef":"SCOT19","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4ca9764c98c203d7bc747cbce9d9174f","ChargeDeviceRef":"SCOT12","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a5ff5d4b0a0d7b3e4d64147037d8c344","ChargeDeviceRef":"SCOT21","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.774304","Longitude":"-4.035695","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 7DT","Country":"gb"},"LocationShortDescription":"Duke Street Car Park, Hamilton","LocationLongDescription":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm (01698 453698 for access)"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Monday to Saturday 7:00am to 7:30pm Sunday 9:15am to 5:15pm","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"46fc943ecd56441056a560ba37d0b9e8","ChargeDeviceRef":"SCOT41","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.859630","Longitude":"-4.234790","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G4 0UW","Country":"gb"},"LocationShortDescription":"Duke Street cCar Park, Glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6734fa703f6633ab896eecbdfad8953a","ChargeDeviceRef":"SCOT43","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.856910","Longitude":"-4.234790","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G4 0UW","Country":"gb"},"LocationShortDescription":"Duke Street cCar Park, Glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a6a767bbb2e3513233f942e0ff24272c","ChargeDeviceRef":"SCOT40","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.859640","Longitude":"-4.234790","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G4 0UW","Country":"gb"},"LocationShortDescription":"Duke Street cCar Park, Glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"93da579a65ce84cd1d4c85c2cbb84fc5","ChargeDeviceRef":"SCOT42","ChargeDeviceName":"Duke Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.859620","Longitude":"-4.234790","Address":{"SubBuildingName":null,"BuildingName":"Duke Street Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Duke Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Glasgow","PostCode":"G4 0UW","Country":"gb"},"LocationShortDescription":"Duke Street cCar Park, Glasgow","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e4a86b0d7bf4c46d7d550a92b0b2fcae","ChargeDeviceRef":"20033","ChargeDeviceName":"Dunston Leisure Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.947145","Longitude":"-1.650786","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Dunston Leisure Centre","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Gateshead","PostTown":null,"PostCode":"NE11 9PY","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Dunston Leisure Centre"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"15212f24321aa2c3dc8e9acf820f3c15","ChargeDeviceRef":"11157","ChargeDeviceName":"Durham and Darlington Fire Brigade","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.792743","Longitude":"-1.587256","Address":{"SubBuildingName":null,"BuildingName":"Durham Fire Brigade","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Durham","PostCode":"DH1 5JR","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"Durham and Darlington Fire Brigade"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f5e62af885293cf4d511ceef31e61c80","ChargeDeviceRef":"10048","ChargeDeviceName":"Durham County Council Offices","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.702005","Longitude":"-1.578579","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Durham County Council Offices","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Spennymoor","PostTown":null,"PostCode":"DL16 6JQ","Country":"gb"},"LocationShortDescription":"Spennymoor","LocationLongDescription":"Durham County Council Offices"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"cf8d8c66b1212720e569b0bd67695451","ChargeDeviceRef":"10054","ChargeDeviceName":"Durham County Council Offices","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.702005","Longitude":"-1.578479","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Durham County Council Offices","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Spennymoor","PostTown":null,"PostCode":"DL16 6JQ","Country":"gb"},"LocationShortDescription":"Spennymoor","LocationLongDescription":"Durham County Council Offices"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"e7e8f8e5982b3298c8addedf6811d500","ChargeDeviceRef":"10001","ChargeDeviceName":"Durham County Hall","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.785272","Longitude":"-1.585156","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Durham County Hall","Street":null,"DoubleDependantLocality":"Framwellgate Peth","DependantLocality":"Durham","PostTown":null,"PostCode":"DH1 5UQ","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"Durham County Hall"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"76b7a3a5cf67f3c4fcde3a8b39dab7be","ChargeDeviceRef":"10039","ChargeDeviceName":"Durham County Hall","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.785400","Longitude":"-1.585170","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Durham County Hall","Street":null,"DoubleDependantLocality":"Framwellgate Peth","DependantLocality":"Durham","PostTown":null,"PostCode":"DH1 5UQ","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"Durham County Hall"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"d1942a3ab01eb59220e2b3a46e7ef09d","ChargeDeviceRef":"10025","ChargeDeviceName":"Durham University Ebsworth Building","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.562539","Longitude":"-1.296173","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Durham University Ebsworth Building","Street":null,"DoubleDependantLocality":"Queens Campus","DependantLocality":"Stockton on Tees","PostTown":null,"PostCode":"TS17 6BH","Country":"gb"},"LocationShortDescription":"Stockton on Tees","LocationLongDescription":"Durham University Ebsworth Building"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"b64a70760bb75e3ecfd1ad86d8f10c88","ChargeDeviceRef":"10024","ChargeDeviceName":"Durham University New Engineering Building","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.766500","Longitude":"-1.569746","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Durham University New Engineering Building","Street":null,"DoubleDependantLocality":"Engineer Car Park","DependantLocality":"Durham University Science Site","PostTown":null,"PostCode":"DH1 3LE","Country":"gb"},"LocationShortDescription":"Durham University Science Site","LocationLongDescription":"Durham University New Engineering Building"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4fb8a7a22a82c80f2c26fe6c1e0dcbb3","ChargeDeviceRef":"11090","ChargeDeviceName":"Durham Way South","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.599618","Longitude":"-1.569174","Address":{"SubBuildingName":null,"BuildingName":"Durham Way South","BuildingNumber":null,"Thoroughfare":null,"Street":"Durhamgate","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Newton Aycliffe","PostCode":"DL5 6AT","Country":"gb"},"LocationShortDescription":"Newton Aycliffe","LocationLongDescription":"Durham Way South"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"79e785d63f00348ff360d5a86528580b","ChargeDeviceRef":"11089","ChargeDeviceName":"Durham Way South","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.599618","Longitude":"-1.569174","Address":{"SubBuildingName":null,"BuildingName":"Durham Way South","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Newton Aycliffe","PostCode":"DL5 6AT","Country":"gb"},"LocationShortDescription":"Newton Aycliffe","LocationLongDescription":"Durham Way South"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4bbbe6cb5982b9110413c40f3cce680b","ChargeDeviceRef":"100_10117","ChargeDeviceName":"East Dulwich Grove","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.459683","Longitude":"-0.075509","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"2 East Dulwich Grove","DoubleDependantLocality":null,"DependantLocality":"Southwark","PostTown":"London","PostCode":"SE22 8EW","Country":"gb"},"LocationShortDescription":"2 East Dulwich Grove, Southwark","LocationLongDescription":"2 East Dulwich Grove, Southwark, London, SE22 8EW"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"fc76150735dde1d2d860aeb77ee2009e","ChargeDeviceRef":"PP-12496","ChargeDeviceName":"East Midlands Airport Air-side 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.826348","Longitude":"-1.332196","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Ashby Road
Near Diseworth","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"DE74 2SA","Country":"gb"},"LocationShortDescription":"Restricted access to air-side traffic","LocationLongDescription":"One charging point, two sockets, RFID card accessed

One three pin BS1363 socket rated at 3kW (mode 1; standard charge)

and one seven pin Type 2 socket rated at 7kW (mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"46123e470d3226911c48df4e9867b9db","ChargeDeviceRef":"PP-12497","ChargeDeviceName":"East Midlands Airport Air-side 2","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.826388","Longitude":"-1.332192","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Ashby Road
Near Diseworth","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"DE74 2SA","Country":"gb"},"LocationShortDescription":"Restricted access to air-side traffic","LocationLongDescription":"One charging point, two sockets, RFID card accessed

One three pin BS1363 socket rated at 3kW (mode 1; standard charge)

and one seven pin Type 2 socket rated at 7kW (mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"7c5845cea683556d813ebd657e8cca01","ChargeDeviceRef":"200_20243","ChargeDeviceName":"East Parkside","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.495857","Longitude":"0.013593","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"John Harrison Way","DoubleDependantLocality":"North East of East Parkside","DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 0BG","Country":"gb"},"LocationShortDescription":"John Harrison Way, Greenwich","LocationLongDescription":"John Harrison Way, Greenwich, London, SE10 0BG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b0a665a28efd91535abb111d656ecd04","ChargeDeviceRef":"200_20224","ChargeDeviceName":"East Parkside","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.495840","Longitude":"0.013564","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"John Harrison Way","DoubleDependantLocality":"North East of East Parkside","DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 0BG","Country":"gb"},"LocationShortDescription":"John Harrison Way, Greenwich","LocationLongDescription":"John Harrison Way, Greenwich, London, SE10 0BG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b848edae25876384476f8970b8491160","ChargeDeviceRef":"SC13","ChargeDeviceName":"Eden Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.345051","Longitude":"-7.640047","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":null,"LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"861578d797aeb0634f77aff3f488cca2","ChargeDeviceRef":"SCOT70","ChargeDeviceName":"Edinburgh Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.661000","Longitude":"-3.192800","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":"85-91","Thoroughfare":null,"Street":"Edinburgh Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Peebles","PostCode":"EH45 8ED","Country":"gb"},"LocationShortDescription":"Edinburgh Road, Peebles","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"eaae5e04a259d09af85c108fe4d7dd0c","ChargeDeviceRef":"20007","ChargeDeviceName":"Eldon Garden Multi Storey Carpark First Floor","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.976044","Longitude":"-1.616317","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Eldon Garden Multi Storey Carpark First Floor","Street":null,"DoubleDependantLocality":"Percy Street","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 7RT","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Eldon Garden Multi Storey Carpark First Floor"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"427e3427c5f38a41bb9cb26525b22fba","ChargeDeviceRef":"20008","ChargeDeviceName":"Eldon Garden Multi Storey Carpark First Floor","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.976030","Longitude":"-1.616300","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Eldon Garden Multi Storey Carpark First Floor","Street":null,"DoubleDependantLocality":"Percy Street","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 7RT","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Eldon Garden Multi Storey Carpark First Floor"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"7f2be1b45d278ac18804b79207a24c53","ChargeDeviceRef":"100_10371","ChargeDeviceName":"Epsom General Hospital","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.323932","Longitude":"-0.273635","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Dorking Road","DoubleDependantLocality":"Epsom","DependantLocality":"Surrey","PostTown":"London","PostCode":"KT18 7EG","Country":"gb"},"LocationShortDescription":"Dorking Road, Surrey","LocationLongDescription":"Dorking Road, Surrey, London, KT18 7EG"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"51a472c08e21aef54ed749806e3e6490","ChargeDeviceRef":"100_10361","ChargeDeviceName":"Epsom General Hospital","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.324566","Longitude":"-0.273927","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Dorking Road","DoubleDependantLocality":"Epsom","DependantLocality":"Surrey","PostTown":"London","PostCode":"KT18 7EG","Country":"gb"},"LocationShortDescription":"Dorking Road, Surrey","LocationLongDescription":"Dorking Road, Surrey, London, KT18 7EG"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"502cbcfede9f1df5528af4204f33e0c8","ChargeDeviceRef":"101001","ChargeDeviceName":"Etal Lane Police Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.999940","Longitude":"-1.680266","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Etal Lane Police Station","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Westerhope","PostTown":null,"PostCode":"NE5 4AW","Country":"gb"},"LocationShortDescription":"Westerhope","LocationLongDescription":"Etal Lane Police Station"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"77305c2f862ad1d353f55bf38e5a5183","ChargeDeviceRef":"100_10301","ChargeDeviceName":"Fairfield Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.409197","Longitude":"-0.299874","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Fairfield Road","DoubleDependantLocality":"East of Wheatfield Way","DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT1 2PS","Country":"gb"},"LocationShortDescription":"Fairfield Road, Kingston upon Thames","LocationLongDescription":"Fairfield Road, Kingston upon Thames, London, KT1 2PS"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3c3c139bd8467c1587a41081ad78045e","ChargeDeviceRef":"100_10128","ChargeDeviceName":"Fairfield Road Car Park ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.513899","Longitude":"-0.472034","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Fairfield Road","DoubleDependantLocality":"Yiewsley","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"UB7 8EY","Country":"gb"},"LocationShortDescription":"Fairfield Road, Hillingdon","LocationLongDescription":"Fairfield Road, Hillingdon, London, UB7 8EY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"dbc4d84bfcfe2284ba11beffb853a8c4","ChargeDeviceRef":"300_10170","ChargeDeviceName":"Fairhazel Gardens","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542167","Longitude":"-0.181170","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"13 Fairhazel Gardens","DoubleDependantLocality":"South of Goldhurst Terrace","DependantLocality":"Camden","PostTown":"London","PostCode":"NW6 3QE","Country":"gb"},"LocationShortDescription":"13 Fairhazel Gardens, Camden","LocationLongDescription":"13 Fairhazel Gardens, Camden, London, NW6 3QE"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"50d2d2262762648589b1943078712aa6","ChargeDeviceRef":"20021","ChargeDeviceName":"Falstone Tea Rooms","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.180768","Longitude":"-2.435657","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Falstone Tea Rooms","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Falstone","PostTown":"Northumberland","PostCode":"NE48 1AE","Country":"gb"},"LocationShortDescription":"Falstone","LocationLongDescription":"Falstone Tea Rooms"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"6e616e79d491ba42638558caf0364003","ChargeDeviceRef":"11146","ChargeDeviceName":"Farrell House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.706480","Longitude":"-1.567877","Address":{"SubBuildingName":null,"BuildingName":"Farrell House","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Spennymoor","PostCode":"DL16 6NL","Country":"gb"},"LocationShortDescription":"Spennymoor","LocationLongDescription":"Farrell House"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"6fd6b030c6afec018415662d0db43f9d","ChargeDeviceRef":"400_10243","ChargeDeviceName":"Featherstone Terrace Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.503257","Longitude":"-0.383158","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Featherstone Terrace ","DoubleDependantLocality":"Southall","DependantLocality":"Ealing","PostTown":"London","PostCode":"UB2 5AL","Country":"gb"},"LocationShortDescription":"Featherstone Terrace , Ealing","LocationLongDescription":"Featherstone Terrace , Ealing, London, UB2 5AL"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0887f1a5b9970ad13f46b8c1485f7900","ChargeDeviceRef":"400_10242","ChargeDeviceName":"Featherstone Terrace Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.503275","Longitude":"-0.383129","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Featherstone Terrace ","DoubleDependantLocality":"Southall","DependantLocality":"Ealing","PostTown":"London","PostCode":"UB2 5AL","Country":"gb"},"LocationShortDescription":"Featherstone Terrace , Ealing","LocationLongDescription":"Featherstone Terrace , Ealing, London, UB2 5AL"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"580796a888df897b38097bd6c1fdaa96","ChargeDeviceRef":"400_10234","ChargeDeviceName":"Featherstone Terrace Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.503302","Longitude":"-0.383128","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Featherstone Terrace ","DoubleDependantLocality":"Southall","DependantLocality":"Ealing","PostTown":"London","PostCode":"UB2 5AL","Country":"gb"},"LocationShortDescription":"Featherstone Terrace , Ealing","LocationLongDescription":"Featherstone Terrace , Ealing, London, UB2 5AL"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c64a9829fa4638ff5de86330dd227e35","ChargeDeviceRef":"11123","ChargeDeviceName":"Ferry Boat Lane","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.915217","Longitude":"-1.459393","Address":{"SubBuildingName":null,"BuildingName":"Ferry Boat Lane","BuildingNumber":null,"Thoroughfare":null,"Street":"Team Valley","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3JN","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Ferry Boat Lane"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"b98249b38337c5088bbc660d8f872d6a","ChargeDeviceRef":"RC02","ChargeDeviceName":"Fiveways","ChargeDeviceText":"Fiveways Shops and Service Station","ChargeDeviceLocation":{"Latitude":"54.191750","Longitude":"-6.350628","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":"101","Thoroughfare":null,"Street":"Armagh Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Newry","PostCode":"BT35 6PW","Country":"gb"},"LocationShortDescription":"Fiveways Shops and Service Station","LocationLongDescription":"Fiveways Shops and Service Station car park, 101 Armagh Road, Newry "},"Connector":[{"ConnectorId":"1","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":null,"RatedOutputCurrent":"100","ChargeMethod":"DC","ChargeMode":"3","ChargePointStatus":"Out of service","TetheredCable":"0","Information":"Mode 4"},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"Out of service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Fiveways Shops and Service Station","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1c66f4627f1b9679f8db47d1287d7e98","ChargeDeviceRef":"PP-12463","ChargeDeviceName":"FJ Chalke ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.050969","Longitude":"-2.419992","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Saxon Way, Wincanton Business Park, BA9 9RT","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"BA9 9RT","Country":"gb"},"LocationShortDescription":"FJ Chalke, Wincanton ","LocationLongDescription":"FJ ChalkeSaxon Way, Wincanton Business Park"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"53e19f3dbb211f20b20b45668303c1b6","ChargeDeviceRef":"200_10304","ChargeDeviceName":"Fleet Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.553553","Longitude":"-0.162224","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"102 Fleet Road","DoubleDependantLocality":null,"DependantLocality":"Camden","PostTown":"London","PostCode":"NW3 2QX ","Country":"gb"},"LocationShortDescription":"102 Fleet Road, Camden","LocationLongDescription":"102 Fleet Road, Camden, London, NW3 2QX "},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"97008ea27052082be055447be9e85612","ChargeDeviceRef":"SCOT81","ChargeDeviceName":"Fort Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"60.157300","Longitude":"-1.146900","Address":{"SubBuildingName":null,"BuildingName":"Viking Bus Station","BuildingNumber":null,"Thoroughfare":null,"Street":"Commercial Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Lerwick","PostCode":"ZE1 0LX","Country":"gb"},"LocationShortDescription":"Fort Road Car Park","LocationLongDescription":"Contact David Polson on 01595 744225 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5adaacd4531b78ff8b5cedfe3f4d5212","ChargeDeviceRef":"300_10133","ChargeDeviceName":"Frankham Street car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.477174","Longitude":"-0.024672","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Frankham Street","DoubleDependantLocality":"East of Deptford High Street","DependantLocality":"Lewisham ","PostTown":"London","PostCode":"SE8 4RH","Country":"gb"},"LocationShortDescription":"Frankham Street, Lewisham ","LocationLongDescription":"Frankham Street, Lewisham , London, SE8 4RH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6e2eec9ca19c076736d19ac5426473af","ChargeDeviceRef":"PP-12309","ChargeDeviceName":"Fred Coupe (Preston) Ltd ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"53.741788","Longitude":"-2.670642","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Fred Coupe (Preston) Ltd\tPreston\tChorley Road, Walton Le Dale\tPreston\tLancashire\tPR5 4JB ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"PR5 4JB","Country":"gb"},"LocationShortDescription":"Fred Coupe (Preston) Ltd ","LocationLongDescription":"Chorley Road, Walton Le DalePreston\tLancashire"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"aba22f748b1a6dff75bda4fd1ee9fe07","ChargeDeviceRef":"30101","ChargeDeviceName":"Front Street Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.946254","Longitude":"-1.680362","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Front Street Carpark","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Whickham","PostTown":null,"PostCode":"NE16 4AB","Country":"gb"},"LocationShortDescription":"Whickham","LocationLongDescription":"Front Street Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"ee39e503b6bedf0c98c388b7e8589aca","ChargeDeviceRef":"30102","ChargeDeviceName":"Front Street Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.946254","Longitude":"-1.680262","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Front Street Carpark","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Whickham","PostTown":null,"PostCode":"NE16 4AB","Country":"gb"},"LocationShortDescription":"Whickham","LocationLongDescription":"Front Street Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a6ade5aa93b826f8de63c663e1159bf7","ChargeDeviceRef":"PP-12398","ChargeDeviceName":"G24 Innovations","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.506864","Longitude":"-3.101256","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"CF3 2GH","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CF3 2GH","Country":"gb"},"LocationShortDescription":"G24 Innovations","LocationLongDescription":"G24 Innovations - Personalising Solar Power"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f26df67e8110ee2b44923db775e3e47f","ChargeDeviceRef":"PP-12275","ChargeDeviceName":"Galson Trust","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"58.484891","Longitude":"-6.255978","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"HS2 0TG","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"HS2 0TG","Country":"gb"},"LocationShortDescription":"Galson Trust Urras Office","LocationLongDescription":"Located at the Galson Trust Urras Office.Buth Lisa , Habost, Ness, Isle of Lewis, HS2 0TG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"6d4f95bf53bba28f148641c8561dbf98","ChargeDeviceRef":"400_10240","ChargeDeviceName":"Garnet Road car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.398027","Longitude":"-0.097404","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Thornton Heath","DoubleDependantLocality":null,"DependantLocality":"Croydon","PostTown":"London","PostCode":"CR7 8RD","Country":"gb"},"LocationShortDescription":"Thornton Heath, Croydon","LocationLongDescription":"Thornton Heath, Croydon, London, CR7 8RD"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"7230b2b03e2da37352abf1a659545b44","ChargeDeviceRef":"400_10239","ChargeDeviceName":"Garnet Road car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.398009","Longitude":"-0.097405","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Thornton Heath","DoubleDependantLocality":null,"DependantLocality":"Croydon","PostTown":"London","PostCode":"CR7 8RD","Country":"gb"},"LocationShortDescription":"Thornton Heath, Croydon","LocationLongDescription":"Thornton Heath, Croydon, London, CR7 8RD"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1f88c7c5d7d94ae08bd752aa3d82108b","ChargeDeviceRef":"300_10205","ChargeDeviceName":"Garnham Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.562491","Longitude":"-0.073018","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Garnham Street","DoubleDependantLocality":null,"DependantLocality":"Hackney","PostTown":"London","PostCode":"N16 7JB","Country":"gb"},"LocationShortDescription":"Garnham Street, Hackney","LocationLongDescription":"Garnham Street, Hackney, London, N16 7JB"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b3746c4a274181d2bcc315ab1f7aa87d","ChargeDeviceRef":"10011","ChargeDeviceName":"Gateshead Civic Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.958478","Longitude":"-1.602921","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Gateshead Civic Centre","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Gateshead","PostTown":null,"PostCode":"NE10 0PD","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Gateshead Civic Centre"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8c53d30ad023ce50140181f713059ddf","ChargeDeviceRef":"10010","ChargeDeviceName":"Gateshead Civic Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.958478","Longitude":"-1.602821","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Gateshead Civic Centre","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Gateshead","PostTown":null,"PostCode":"NE10 0PD","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Gateshead Civic Centre"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"db8419f41d890df802dca330e6284952","ChargeDeviceRef":"11052","ChargeDeviceName":"Gateshead College Autoskills Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.932910","Longitude":"-1.612619","Address":{"SubBuildingName":null,"BuildingName":"Autoskills Centre","BuildingNumber":null,"Thoroughfare":null,"Street":"Quarryfield Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Gateshead ","PostCode":"NE11 0UE","Country":"gb"},"LocationShortDescription":"Gateshead ","LocationLongDescription":"Gateshead College Autoskills Centre"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4dc3ed26a29c9c3df3ec373524377a5b","ChargeDeviceRef":"11067","ChargeDeviceName":"Gateshead College Baltic Campus","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.965666","Longitude":"-1.597420","Address":{"SubBuildingName":null,"BuildingName":"Baltic Campus","BuildingNumber":null,"Thoroughfare":null,"Street":"Washington Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Gateshead","PostCode":"NE8 3BE","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Gateshead College Baltic Campus"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8744cf92c88433f8cb04a02e6db69a0d","ChargeDeviceRef":"11049","ChargeDeviceName":"Gateshead College Nissan Site","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.922758","Longitude":"-1.470996","Address":{"SubBuildingName":null,"BuildingName":"Gateshead College Nissan Site","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Gateshead College Nissan Site"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"991327d63593b0ba2c45618bf81f6a64","ChargeDeviceRef":"20080","ChargeDeviceName":"Gateshead College Nissan Site","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.922903","Longitude":"-1.471240","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Gateshead College Nissan Site","Street":null,"DoubleDependantLocality":"Washington Road","DependantLocality":"Sunderland","PostTown":"Tyne and Wear","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Gateshead College Nissan Site"},"Connector":[{"ConnectorId":"0","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":"415","RatedOutputCurrent":"125","ChargeMethod":"Single Phase AC","ChargeMode":null,"ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"RegularOpenings":[{"Days":"Monday","Hours":{"From":"07:00","To":"22:00"}},{"Days":"Tuesday","Hours":{"From":"07:00","To":"22:00"}},{"Days":"Wednesday","Hours":{"From":"07:00","To":"22:00"}},{"Days":"Thursday","Hours":{"From":"07:00","To":"22:00"}},{"Days":"Friday","Hours":{"From":"07:00","To":"22:00"}},{"Days":"Saturday","Hours":{"From":"07:00","To":"18:00"}},{"Days":"Sunday","Hours":{"From":"07:00","To":"18:00"}}],"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"57cd30d9088b0185cf0ebca1a472ff1d","ChargeDeviceRef":"20079","ChargeDeviceName":"Gateshead International Stadium","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.960277","Longitude":"-1.580953","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Gateshead International Stadium","Street":null,"DoubleDependantLocality":"Neilson Road","DependantLocality":"Gateshead","PostTown":"Tyne and Wear","PostCode":"NE10 0EF","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Gateshead International Stadium"},"Connector":[{"ConnectorId":"0","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":"415","RatedOutputCurrent":"125","ChargeMethod":"Single Phase AC","ChargeMode":null,"ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Access: 7am to 10pm Monday to Friday. 7am to 6pm Sat + Sun.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"64a7157cf3932bf74755aa3cf586f2ec","ChargeDeviceRef":"10100","ChargeDeviceName":"Gateshead International Stadium","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.960724","Longitude":"-1.581308","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Gateshead International Stadium","Street":null,"DoubleDependantLocality":"Neilson Road","DependantLocality":"Gateshead","PostTown":"Tyne and Wear","PostCode":"NE10 0EF","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Gateshead International Stadium"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"9a3f263a5e5f63006098a05cd7491997","ChargeDeviceRef":"20062","ChargeDeviceName":"Gateshead Library","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.951863","Longitude":"-1.602898","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Gateshead Library","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Gateshead","PostTown":null,"PostCode":"NE8 4HA","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Gateshead Library"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"ec16c57ed363c5ca91a3e5e5b88fe502","ChargeDeviceRef":"20061","ChargeDeviceName":"Gateshead Library","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.951963","Longitude":"-1.602898","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Gateshead Library","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Gateshead","PostTown":null,"PostCode":"NE8 4HA","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Gateshead Library"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"fd95ec8df5dbeea25aa8e6c808bad583","ChargeDeviceRef":"300_10126","ChargeDeviceName":"Gatwick Airport North Terminal","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.160771","Longitude":"-0.175488","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Departures Road","DoubleDependantLocality":"North Terminal Short Stay Carpark","DependantLocality":"West Sussex","PostTown":"West Sussex","PostCode":"RH6 0PJ","Country":"gb"},"LocationShortDescription":"Departures Road, West Sussex","LocationLongDescription":"Departures Road, West Sussex, West Sussex, RH6 0PJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"80c94c09453dfe07681fde78e769353f","ChargeDeviceRef":"300_10125","ChargeDeviceName":"Gatwick Airport South Terminal","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.156806","Longitude":"-0.159442","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Ring Rd S","DoubleDependantLocality":"South Terminal Short Stay Carpark","DependantLocality":"West Sussex","PostTown":"West Sussex","PostCode":"RH6 0NP","Country":"gb"},"LocationShortDescription":"Ring Rd S, West Sussex","LocationLongDescription":"Ring Rd S, West Sussex, West Sussex, RH6 0NP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"9b2f00f37307f2c2f372acafe55843f3","ChargeDeviceRef":"PP-12353","ChargeDeviceName":"Gatwick North Terminal","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.160769","Longitude":"-0.175357","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"RH6 0PJ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"RH6 0PJ","Country":"gb"},"LocationShortDescription":"Gatwick Airport North Terminal Car park, Short Say Car park No.5, Level 3","LocationLongDescription":"Gatwick Airport North Terminal Short term Car Park 5, Level 2Free parking for 4 hours "},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"dfa037a53e121ecc9e0926800c3e814e","ChargeDeviceRef":"PP-12411","ChargeDeviceName":"Gatwick South Terminal","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.156951","Longitude":"-0.159455","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"RH6 0RN","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"RH6 0RN","Country":"gb"},"LocationShortDescription":"Gatwick Airport South Terminal, Short Stay,Orange Car Park level 2","LocationLongDescription":"Gatwick Airport South Terminal, Short Term Orange Car Park, Level 1.Free parking for 4 hours "},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8ab8dff7441eda91aa7bb26becb3afd3","ChargeDeviceRef":"200_10318","ChargeDeviceName":"Genotin Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.650837","Longitude":"-0.079334","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Genotin Road","DoubleDependantLocality":"East of London Road","DependantLocality":"Enfield","PostTown":"London","PostCode":"EN2 6EL","Country":"gb"},"LocationShortDescription":"Genotin Road, Enfield","LocationLongDescription":"Genotin Road, Enfield, London, EN2 6EL"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d2b15c75c0c389b49c2efbea79cdc946","ChargeDeviceRef":"200_10341","ChargeDeviceName":"Genotin Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.650810","Longitude":"-0.079336","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Genotin Road","DoubleDependantLocality":"East of London Road","DependantLocality":"Enfield","PostTown":"London","PostCode":"EN2 6EL","Country":"gb"},"LocationShortDescription":"Genotin Road, Enfield","LocationLongDescription":"Genotin Road, Enfield, London, EN2 6EL"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4e2ecebbfafe27a7c00e0462fad0873a","ChargeDeviceRef":"200_10396","ChargeDeviceName":"Gibson Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.362238","Longitude":"-0.197012","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Gibson Road","DoubleDependantLocality":null,"DependantLocality":"Sutton","PostTown":"London","PostCode":"SM1 2RF","Country":"gb"},"LocationShortDescription":"Gibson Road, Sutton","LocationLongDescription":"Gibson Road, Sutton, London, SM1 2RF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"70afbf2259b4449d8ae1429e054df1b1","ChargeDeviceRef":"200_20209","ChargeDeviceName":"Gibson Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.362237","Longitude":"-0.196998","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Gibson Road","DoubleDependantLocality":null,"DependantLocality":"Sutton","PostTown":"London","PostCode":"SM1 2RF","Country":"gb"},"LocationShortDescription":"Gibson Road, Sutton","LocationLongDescription":"Gibson Road, Sutton, London, SM1 2RF"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e9ed9cad56c92652263953755852bedb","ChargeDeviceRef":"200_20206","ChargeDeviceName":"Gibson Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.362238","Longitude":"-0.197026","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Gibson Road","DoubleDependantLocality":null,"DependantLocality":"Sutton","PostTown":"London","PostCode":"SM1 2RF","Country":"gb"},"LocationShortDescription":"Gibson Road, Sutton","LocationLongDescription":"Gibson Road, Sutton, London, SM1 2RF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"2458ab18be2a140a1cfb932dd96f25d6","ChargeDeviceRef":"10102","ChargeDeviceName":"Gilbridge Avenue Police Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.907121","Longitude":"-1.388899","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Gilbridge Avenue Police Station","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR1 3AW","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Gilbridge Avenue Police Station"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"42cd63cb189c30ed03e42ce2c069566c","ChargeDeviceRef":"RC03","ChargeDeviceName":"Glenshane Pass","ChargeDeviceText":"GLENSHANE TOURIST SERVICES LTD \r\n31 Glenshane Road, Maghera, Derry BT46 5JZ ","ChargeDeviceLocation":{"Latitude":"54.847239","Longitude":"-6.721401","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":null,"LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":null,"RatedOutputCurrent":"100","ChargeMethod":"DC","ChargeMode":"3","ChargePointStatus":"Out of service","TetheredCable":"0","Information":"Mode 4"},{"ConnectorId":"2","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"Out of service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"7da18d0326a9f46a4817e19c805819ae","ChargeDeviceRef":"PP-12306","ChargeDeviceName":"Glyn Hopkin Ltd (WA)","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.681895","Longitude":"-0.000719","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 Cartersfield Road, Waltham Abbey, Essex, EN9 1JD ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"EN9 1JD","Country":"gb"},"LocationShortDescription":"Waltham Abbey ","LocationLongDescription":"1 Cartersfield RoadWaltham AbbeyEssex"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"7fa215c9efebb3811a7ef58409907899","ChargeDeviceRef":"PP-12283","ChargeDeviceName":"Glyn Hopkin Ltd (RM)","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.574484","Longitude":"0.160184","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"279-289 London Road, RM7 9NP ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"RM7 9NP","Country":"gb"},"LocationShortDescription":"Romford ","LocationLongDescription":"279-289 London RoadRomfordEssex"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"b43a6403c17870707ca3c44984a2da22","ChargeDeviceRef":"30065","ChargeDeviceName":"Grand Parade","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.028069","Longitude":"-1.429838","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Grand Parade","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Tynemouth","PostTown":null,"PostCode":"NE30 4JF","Country":"gb"},"LocationShortDescription":"Tynemouth","LocationLongDescription":"Grand Parade"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"31bd51a7403b980bf1039518120712e0","ChargeDeviceRef":"30066","ChargeDeviceName":"Grand Parade","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.028069","Longitude":"-1.429938","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Grand Parade","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Tynemouth","PostTown":null,"PostCode":"NE30 4JF","Country":"gb"},"LocationShortDescription":"Tynemouth","LocationLongDescription":"Grand Parade"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"61bdf049525b7d4c2cf79257ec7c2c56","ChargeDeviceRef":"300_10193","ChargeDeviceName":"Grant Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.465207","Longitude":"-0.171735","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Grant Road","DoubleDependantLocality":"East of Winstanley Road","DependantLocality":"Wandsworth","PostTown":"London","PostCode":"SW11 2NU","Country":"gb"},"LocationShortDescription":"Grant Road, Wandsworth","LocationLongDescription":"Grant Road, Wandsworth, London, SW11 2NU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f69041d874533096748e2d77480c1fea","ChargeDeviceRef":"SCOT80","ChargeDeviceName":"Grantfield","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"60.157600","Longitude":"-1.156900","Address":{"SubBuildingName":null,"BuildingName":"Grantfield","BuildingNumber":null,"Thoroughfare":null,"Street":"Lerwick ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Shetland","PostCode":"ZE1 0NT","Country":"gb"},"LocationShortDescription":"Grantfield","LocationLongDescription":"Contact David Polson on 01595 744225 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e0eacd983971634327ae1819ea8b6214","ChargeDeviceRef":"200_10308","ChargeDeviceName":"Greencroft Gardens","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545506","Longitude":"-0.180157","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"4 Greencroft Gardens","DoubleDependantLocality":"Junction with Goldhurst Terrace","DependantLocality":"Camden","PostTown":"London","PostCode":"NW6 3LR","Country":"gb"},"LocationShortDescription":"4 Greencroft Gardens, Camden","LocationLongDescription":"4 Greencroft Gardens, Camden, London, NW6 3LR"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0b5e29aa1acf8bdc5d8935d7036fa4f5","ChargeDeviceRef":"300_10179","ChargeDeviceName":"Greenland Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.538454","Longitude":"-0.141029","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Greenland Street","DoubleDependantLocality":"West of Bayham Street","DependantLocality":"Camden","PostTown":"London","PostCode":"NW1 0ND","Country":"gb"},"LocationShortDescription":"Greenland Street, Camden","LocationLongDescription":"Greenland Street, Camden, London, NW1 0ND"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0ebb145bdffd37c6947bd60c251df1ba","ChargeDeviceRef":"11034","ChargeDeviceName":"Greenwell Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.620732","Longitude":"-1.572139","Address":{"SubBuildingName":null,"BuildingName":"Greenwell Road","BuildingNumber":null,"Thoroughfare":null,"Street":"Greenbank Rear Car Park. Stranton","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Newton Aycliffe","PostCode":"DL5 4DP","Country":"gb"},"LocationShortDescription":"Newton Aycliffe","LocationLongDescription":"Greenwell Road"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"be93cca187e923aabc702667ba5f0d06","ChargeDeviceRef":"CM-858","ChargeDeviceName":"Greetham Valley Golf Course","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.710907","Longitude":"-0.600861","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Wood Lane","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Greetham","PostCode":"LE15 7SN","Country":"gb"},"LocationShortDescription":"Public access to staff and visitors
Please report to reception","LocationLongDescription":"One charging point, two sockets

One three pin BS1363 socket
rated at 3kW (mode 2; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP\r\n"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 1 (SAE J1772)","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":null,"RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Chargemaster","Website":"www.chargemaster.com","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3fc0a5dc1f5757c71b88be8adbfd10e9","ChargeDeviceRef":"20059","ChargeDeviceName":"Grey Street junction with Mosely Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.970956","Longitude":"-1.610735","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Grey Street junction with Mosely Street","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 6AE","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Grey Street junction with Mosely Street"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"3e441eec3456b703a4fe741005f3981f","ChargeDeviceRef":"20074","ChargeDeviceName":"Haggerston Castle Holiday Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.687084","Longitude":"-1.934661","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Haggerston Castle Holiday Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Near Berwick Upon Tweed","PostTown":"Northumberland","PostCode":"TD15 2PA","Country":"gb"},"LocationShortDescription":"Near Berwick Upon Tweed","LocationLongDescription":"Haggerston Castle Holiday Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":"415","RatedOutputCurrent":"125","ChargeMethod":"Single Phase AC","ChargeMode":null,"ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"RegularOpenings":[{"Days":"Monday","Hours":{"From":"07:00","To":"21:00"}},{"Days":"Tuesday","Hours":{"From":"07:00","To":"07:00"}},{"Days":"Wednesday","Hours":{"From":"07:00","To":"07:00"}},{"Days":"Thursday","Hours":{"From":"07:00","To":"07:00"}},{"Days":"Friday","Hours":{"From":"07:00","To":"07:00"}},{"Days":"Saturday","Hours":{"From":"07:00","To":"07:00"}},{"Days":"Sunday","Hours":{"From":"21:00","To":"21:00"}}],"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Available for public use 07:00 - 21:00","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"db095bd14b838cbf3abf886f492c721b","ChargeDeviceRef":"20020","ChargeDeviceName":"Hareshaw Linn Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.145514","Longitude":"-2.252005","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Hareshaw Linn Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Bellingham","PostTown":"Northumberland","PostCode":"NE48 2BZ","Country":"gb"},"LocationShortDescription":"Bellingham","LocationLongDescription":"Hareshaw Linn Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f937c8fddbe66ab03c563f16d5cfa50c","ChargeDeviceRef":"200_20258","ChargeDeviceName":"Harlequin Shopping Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.655234","Longitude":"-0.392372","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"201 The Harlequin","DoubleDependantLocality":"Watford","DependantLocality":"Hertfordshire ","PostTown":"London","PostCode":"WD17 2UB","Country":"gb"},"LocationShortDescription":"201 The Harlequin, Hertfordshire ","LocationLongDescription":"201 The Harlequin, Hertfordshire , London, WD17 2UB"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"30da227c6b5b9e2482b6b221c711edfd","ChargeDeviceRef":"200_20304","ChargeDeviceName":"Harlequin Shopping Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.655216","Longitude":"-0.392358","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"201 The Harlequin","DoubleDependantLocality":"Watford","DependantLocality":"Hertfordshire ","PostTown":"London","PostCode":"WD17 2UB","Country":"gb"},"LocationShortDescription":"201 The Harlequin, Hertfordshire ","LocationLongDescription":"201 The Harlequin, Hertfordshire , London, WD17 2UB"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4e46e93a054f94c059e1fa4701f5a892","ChargeDeviceRef":"100_10172","ChargeDeviceName":"Harrow Civic Centre Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.589940","Longitude":"-0.332921","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Station Road","DoubleDependantLocality":null,"DependantLocality":"Harrow","PostTown":"London","PostCode":"HA1 2XY","Country":"gb"},"LocationShortDescription":"Station Road, Harrow","LocationLongDescription":"Station Road, Harrow, London, HA1 2XY"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"280cf18baf4311c92aa5a042336587d3","ChargeDeviceRef":"20004","ChargeDeviceName":"Hartlepool Civic Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.685975","Longitude":"-1.214915","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Hartlepool Civic Centre","Street":null,"DoubleDependantLocality":"Avenue Road","DependantLocality":"Hartlepool","PostTown":null,"PostCode":"TS24 8AY","Country":"gb"},"LocationShortDescription":"Hartlepool","LocationLongDescription":"Hartlepool Civic Centre"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"429e4a44bec547a527df987730b19aab","ChargeDeviceRef":"20092","ChargeDeviceName":"Hartlepool College","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.683798","Longitude":"-1.210712","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Hartlepool College","Street":null,"DoubleDependantLocality":"Stockton St","DependantLocality":"Hartlepool","PostTown":null,"PostCode":"TS24 7NT","Country":"gb"},"LocationShortDescription":"Hartlepool","LocationLongDescription":"Hartlepool College"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"5cbba2d075f0d1648e0851e1467ba79f","ChargeDeviceRef":"992","ChargeDeviceName":"Hartlepool Power Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.637585","Longitude":"-1.184721","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Hartlepool Power Station","Street":null,"DoubleDependantLocality":"Tees Road","DependantLocality":"Hartlepool","PostTown":null,"PostCode":"ES25 2BZ","Country":"gb"},"LocationShortDescription":"Hartlepool","LocationLongDescription":"Hartlepool Power Station"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":"Access 24 hours 7 days per week. Drivers will meet a sign saying they are entering a private road and may be considered trespassers. It is ok to proceed for the purpose of using the charge point. ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f6a4f71e72dfe084f2d4b5bf96963e02","ChargeDeviceRef":"20005","ChargeDeviceName":"Hartlepool Transport Interchange","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.686280","Longitude":"-1.209890","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"1 Church Street","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Hartlepool","PostTown":null,"PostCode":"TS24 7DS","Country":"gb"},"LocationShortDescription":"Hartlepool","LocationLongDescription":"1 Church Street"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"34186e9eb70e30487210b962e867b742","ChargeDeviceRef":"20002","ChargeDeviceName":"Hartlepool Transport Interchange","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.686280","Longitude":"-1.209997","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"1 Church Street","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Hartlepool","PostTown":null,"PostCode":"TS24 7DS","Country":"gb"},"LocationShortDescription":"Hartlepool","LocationLongDescription":"1 Church Street"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"62dad6e273d32235ae02b7d321578ee8","ChargeDeviceRef":"SC36","ChargeDeviceName":"Havelock Place, Carnlough","ChargeDeviceText":"Havelock Place, Carnlough","ChargeDeviceLocation":{"Latitude":"54.993933","Longitude":"-5.989260","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Havelock Place, Carnlough","LocationLongDescription":"Havelock Place, Carnlough"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"995f5e03890b029865f402e83a81c29d","ChargeDeviceRef":"200_10309","ChargeDeviceName":"Haverstock Hill Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.549349","Longitude":"-0.163028","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"143 Haverstock Hill Road","DoubleDependantLocality":null,"DependantLocality":"Camden","PostTown":"London","PostCode":"NW3 2AT","Country":"gb"},"LocationShortDescription":"143 Haverstock Hill Road, Camden","LocationLongDescription":"143 Haverstock Hill Road, Camden, London, NW3 2AT"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"88c040adb393832c87914347cc2afc3f","ChargeDeviceRef":"300_10110","ChargeDeviceName":"Heathrow Airport Terminal 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.472201","Longitude":"-0.452031","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Croydon Road","DoubleDependantLocality":"Terminal 1 Short Stay Carpark","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"TW6 1RU","Country":"gb"},"LocationShortDescription":"Croydon Road, Hillingdon","LocationLongDescription":"Croydon Road, Hillingdon, London, TW6 1RU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e0f120eefd76be864f36ffa8d1a1505a","ChargeDeviceRef":"300_10111","ChargeDeviceName":"Heathrow Airport Terminal 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.472290","Longitude":"-0.451999","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Croydon Road","DoubleDependantLocality":"Terminal 1 Short Stay Carpark","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"TW6 1RU","Country":"gb"},"LocationShortDescription":"Croydon Road, Hillingdon","LocationLongDescription":"Croydon Road, Hillingdon, London, TW6 1RU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a3ab4ff8fa4deed2e3bae3a5077675f0","ChargeDeviceRef":"300_10112","ChargeDeviceName":"Heathrow Airport Terminal 3","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.471398","Longitude":"-0.455269","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Canberra Road","DoubleDependantLocality":"Terminal 3 Short Stay Carpark","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"TW6 1QG","Country":"gb"},"LocationShortDescription":"Canberra Road, Hillingdon","LocationLongDescription":"Canberra Road, Hillingdon, London, TW6 1QG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0fd7e4f42a8b4b4ef33394d35212b13e","ChargeDeviceRef":"300_10113","ChargeDeviceName":"Heathrow Airport Terminal 3","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.471317","Longitude":"-0.455243","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Canberra Road","DoubleDependantLocality":"Terminal 3 Short Stay Carpark","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"TW6 1QG","Country":"gb"},"LocationShortDescription":"Canberra Road, Hillingdon","LocationLongDescription":"Canberra Road, Hillingdon, London, TW6 1QG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f8151fdd6026f82036ab63052b97505b","ChargeDeviceRef":"300_10117","ChargeDeviceName":"Heathrow Airport Terminal 4","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.459226","Longitude":"-0.445287","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Southern Perimeter Road","DoubleDependantLocality":"Terminal 4 Short Stay Carpark","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"TW6 3YD","Country":"gb"},"LocationShortDescription":"Southern Perimeter Road, Hillingdon","LocationLongDescription":"Southern Perimeter Road, Hillingdon, London, TW6 3YD"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"103303dd56a731e377d01f6a37badae3","ChargeDeviceRef":"300_10116","ChargeDeviceName":"Heathrow Airport Terminal 4","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.459189","Longitude":"-0.445259","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Southern Perimeter Road","DoubleDependantLocality":"Terminal 4 Short Stay Carpark","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"TW6 3YD","Country":"gb"},"LocationShortDescription":"Southern Perimeter Road, Hillingdon","LocationLongDescription":"Southern Perimeter Road, Hillingdon, London, TW6 3YD"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"60dcc0d0012f3056175c01d54c2e1722","ChargeDeviceRef":"300_10157","ChargeDeviceName":"Heathrow Airport Terminal 5","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.472679","Longitude":"-0.490070","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Western Perimeter Road","DoubleDependantLocality":"Terminal 5 Short Stay Carpark","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"TW6 2GA","Country":"gb"},"LocationShortDescription":"Western Perimeter Road, Hillingdon","LocationLongDescription":"Western Perimeter Road, Hillingdon, London, TW6 2GA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0e1feae55e360ff05fef58199b3fa521","ChargeDeviceRef":"300_10156","ChargeDeviceName":"Heathrow Airport Terminal 5","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.472409","Longitude":"-0.490036","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Western Perimeter Road","DoubleDependantLocality":"Terminal 5 Short Stay Carpark","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"TW6 2GA","Country":"gb"},"LocationShortDescription":"Western Perimeter Road, Hillingdon","LocationLongDescription":"Western Perimeter Road, Hillingdon, London, TW6 2GA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ab6439fa2daf0246f92eea433bca5ac4","ChargeDeviceRef":"100_10214","ChargeDeviceName":"Heston Library Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.485636","Longitude":"-0.374967","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"New Heston Road","DoubleDependantLocality":null,"DependantLocality":"Hounslow","PostTown":"London","PostCode":"TW5 0LW","Country":"gb"},"LocationShortDescription":"New Heston Road, Hounslow","LocationLongDescription":"New Heston Road, Hounslow, London, TW5 0LW"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4f164cf233807fc02da06599a1264dee","ChargeDeviceRef":"20032","ChargeDeviceName":"Heworth Leisure Centre High Lanes","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.946205","Longitude":"-1.548331","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Heworth Leisure Centre High Lanes","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Gateshead","PostTown":null,"PostCode":"NE10 0PD","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Heworth Leisure Centre High Lanes"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8cbe9ce23f42628c98f80fa0fac8b19a","ChargeDeviceRef":"20045","ChargeDeviceName":"Heworth Leisure Centre High Lanes","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.946105","Longitude":"-1.548331","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Heworth Leisure Centre High Lanes","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Gateshead","PostTown":null,"PostCode":"NE10 0PD","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Heworth Leisure Centre High Lanes"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a7f0d2b95c60161b3f3c82f764b1d1c9","ChargeDeviceRef":"SCOT71","ChargeDeviceName":"High Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.652200","Longitude":"-2.251000","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":"87","Thoroughfare":null,"Street":"High Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Coldstream","PostCode":"TD12 4AE","Country":"gb"},"LocationShortDescription":"High Street, Coldstream","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ca3ec598002d2e7662e2ef4bdd58278b","ChargeDeviceRef":"SC30","ChargeDeviceName":"Hill Street Newry","ChargeDeviceText":"Hill Street Newry on-street","ChargeDeviceLocation":{"Latitude":"54.175246","Longitude":"-6.338146","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Hill Street Newry on-street","LocationLongDescription":"Hill Street Newry on-street. Usual parking restrictions and charges apply"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d03a857a23b5285736c4d55e0bb067c8","ChargeDeviceRef":"100_10127","ChargeDeviceName":"Hillingdon Sports and Leisure Complex ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.552935","Longitude":"-0.467942","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Gatting Way","DoubleDependantLocality":"Uxbridge","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"UB8 1ES","Country":"gb"},"LocationShortDescription":"Gatting Way, Hillingdon","LocationLongDescription":"Gatting Way, Hillingdon, London, UB8 1ES"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"9eac167ec1efbe078138397fabba902e","ChargeDeviceRef":"PP-12296","ChargeDeviceName":"Hitachi Newbury - A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.408429","Longitude":"-1.307169","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"RG14 2NU","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"RG14 2NU","Country":"gb"},"LocationShortDescription":"Located in Hitachi Capital Car Park","LocationLongDescription":"Located in Hitachi Capital's private car park in Newbury"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"494c08f7a144d3cc4cfa661ed1244039","ChargeDeviceRef":"PP-12351","ChargeDeviceName":"Hitachi Trowbridge - A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.331564","Longitude":"-2.205838","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"BA14 8QU","Country":"gb"},"LocationShortDescription":"Located in Hitachi Capital Car Park","LocationLongDescription":"Located in Hitachi Capital Car Park in Trowbridge."},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c6d6445d97e06d08b60853156601cf58","ChargeDeviceRef":"PP-12432","ChargeDeviceName":"HMP Belmarsh","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.496067","Longitude":"0.093083","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"SE28 0EB","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"SE28 0EB","Country":"gb"},"LocationShortDescription":"HMP Belmarsh","LocationLongDescription":"Two POD Points located in the car parks of HMP Belmarsh. These posts are for the use of visitors and are not public access."},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"6236c78e73f52110ae39e588ba88de0b","ChargeDeviceRef":"PP-12433","ChargeDeviceName":"HMP Belmarsh","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.496764","Longitude":"0.092801","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"SE28 0EB","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"SE28 0EB","Country":"gb"},"LocationShortDescription":"HMP Belmarsh","LocationLongDescription":"Two POD Points located in the car parks of HMP Belmarsh. These posts are for the use of visitors and are not public access."},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"2d3b02917ea2900fe129741a9c0f3857","ChargeDeviceRef":"300_10120","ChargeDeviceName":"Homerton Hospital Car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.551670","Longitude":"-0.046199","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Homerton Row","DoubleDependantLocality":null,"DependantLocality":"Hackney","PostTown":"London","PostCode":"E9 6SR","Country":"gb"},"LocationShortDescription":"Homerton Row, Hackney","LocationLongDescription":"Homerton Row, Hackney, London, E9 6SR"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c89ca36e4d0430e75ca2390470a59a59","ChargeDeviceRef":"100_10402","ChargeDeviceName":"Hook Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.367870","Longitude":"-0.306289","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Hook Road","DoubleDependantLocality":"North of Elm Road","DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT9 1EJ","Country":"gb"},"LocationShortDescription":"Hook Road, Kingston upon Thames","LocationLongDescription":"Hook Road, Kingston upon Thames, London, KT9 1EJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"fd8c07a31f8a85910ad8476f5f7efb27","ChargeDeviceRef":"SC03","ChargeDeviceName":"Hope Street North Car Park","ChargeDeviceText":"DRD car park, Hope Street North, Bruce Street","ChargeDeviceLocation":{"Latitude":"54.593365","Longitude":"-5.935574","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":null,"LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"34f9a343f945196b66f807e0eb6249fd","ChargeDeviceRef":"200_20244","ChargeDeviceName":"Horseferry Place","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.482496","Longitude":"-0.013424","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Horseferry Place","DoubleDependantLocality":null,"DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 9HG","Country":"gb"},"LocationShortDescription":"Horseferry Place, Greenwich","LocationLongDescription":"Horseferry Place, Greenwich, London, SE10 9HG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6c530aae768250b8d9c3c908a13ee287","ChargeDeviceRef":"200_20207","ChargeDeviceName":"Horseferry Place","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.482478","Longitude":"-0.013425","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Horseferry Place","DoubleDependantLocality":null,"DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 9HG","Country":"gb"},"LocationShortDescription":"Horseferry Place, Greenwich","LocationLongDescription":"Horseferry Place, Greenwich, London, SE10 9HG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4ae1e2b07ecf6c799b91ed45e95278b8","ChargeDeviceRef":"10063","ChargeDeviceName":"Houghton and Hetton Depot","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.848356","Longitude":"-1.502372","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Houghton and Hetton Depot","Street":"Blackthorn Way","DoubleDependantLocality":"Sedgeletch Industrial Estate","DependantLocality":"Durham","PostTown":"County Durham","PostCode":"DH4 6JN","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"Houghton and Hetton Depot"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"60ce36723c17bbac504f2ef4c8a46995","ChargeDeviceRef":"20077","ChargeDeviceName":"Housesteads Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.009893","Longitude":"-2.323809","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Housesteads Car Park","Street":null,"DoubleDependantLocality":"Military Road","DependantLocality":"Bardon Mill","PostTown":"Northumberland","PostCode":"NE47 6NN","Country":"gb"},"LocationShortDescription":"Bardon Mill","LocationLongDescription":"Housesteads Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"87ba276ebbe553ec05d2f5b37c20125f","ChargeDeviceRef":"20018","ChargeDeviceName":"Housesteads Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.009883","Longitude":"-2.323909","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Housesteads Car Park","Street":null,"DoubleDependantLocality":"Military Road","DependantLocality":"Bardon Mill","PostTown":"Northumberland","PostCode":"NE47 6NN","Country":"gb"},"LocationShortDescription":"Bardon Mill","LocationLongDescription":"Housesteads Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"99064ba6631e279d4a74622df99657d6","ChargeDeviceRef":"11093","ChargeDeviceName":"Housing Hartlepool","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.680825","Longitude":"-1.214001","Address":{"SubBuildingName":null,"BuildingName":"Housing Hartlepool","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hartlepool","PostCode":"TS24 7QS","Country":"gb"},"LocationShortDescription":"Hartlepool","LocationLongDescription":"Housing Hartlepool"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"78e8dffe65a2898eef68a33b8db35b78","ChargeDeviceRef":"30027","ChargeDeviceName":"Howlands Park and Ride","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.760740","Longitude":"-1.581770","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Howlands Park and Ride","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Durham","PostTown":null,"PostCode":"DH1 3TQ","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"Howlands Park and Ride"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking at this site is subject to use of the Park and Ride Bus (for which there is a fee) Users parking without using the Park and Ride will be fined.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"d80b7040b773199015de6d3b4293c8ff","ChargeDeviceRef":"30104","ChargeDeviceName":"Howlands Park and Ride","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.760840","Longitude":"-1.581670","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Howlands Park and Ride","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Durham","PostTown":null,"PostCode":"DH1 3TQ","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"Howlands Park and Ride"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking at this site is subject to use of the Park and Ride Bus (for which there is a fee) Users parking without using the Park and Ride will be fined.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"cc8b6a16d74a2462a1be02e79a57fb95","ChargeDeviceRef":"300_10155","ChargeDeviceName":"Ikea Wembley","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.553277","Longitude":"-0.260278","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"2 Drury Way","DoubleDependantLocality":"North Circular Road","DependantLocality":"Brent","PostTown":"London","PostCode":"NW10 0TH","Country":"gb"},"LocationShortDescription":"2 Drury Way, Brent","LocationLongDescription":"2 Drury Way, Brent, London, NW10 0TH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4607f7fff0dce694258e1c637512aa9d","ChargeDeviceRef":"100_10122","ChargeDeviceName":"Ilford Town Hall Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.558409","Longitude":"0.074552","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Chadwick Road","DoubleDependantLocality":"Ilford","DependantLocality":"Redbridge","PostTown":"London","PostCode":"IG1 1DD","Country":"gb"},"LocationShortDescription":"Chadwick Road, Redbridge","LocationLongDescription":"Chadwick Road, Redbridge, London, IG1 1DD"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"803ef56843860e4a48fc4cdb3065e8ce","ChargeDeviceRef":"100_10213","ChargeDeviceName":"Isleworth Leisure Centre & Library","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.465714","Longitude":"-0.330498","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Twickenham Road","DoubleDependantLocality":"Isleworth","DependantLocality":"Hounslow","PostTown":"London","PostCode":"TW7 7EU","Country":"gb"},"LocationShortDescription":"Twickenham Road, Hounslow","LocationLongDescription":"Twickenham Road, Hounslow, London, TW7 7EU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a3048e47310d6efaa4b1eaf55227bc92","ChargeDeviceRef":"PP-12294","ChargeDeviceName":"JFE","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"50.705063","Longitude":"-3.528295","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Grace Road, EX2 8QA ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"EX2 8QA","Country":"gb"},"LocationShortDescription":"Exeter ","LocationLongDescription":"Grace Road, Marsh BartonExeterDevon"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"bf499a12e998d178afd964adf64a60cb","ChargeDeviceRef":"200_10321","ChargeDeviceName":"John Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.521318","Longitude":"-0.114757","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 John Street","DoubleDependantLocality":"Junction with Theobalds Road","DependantLocality":"Camden","PostTown":"London","PostCode":"WC1X 8PF","Country":"gb"},"LocationShortDescription":"1 John Street, Camden","LocationLongDescription":"1 John Street, Camden, London, WC1X 8PF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"Out of service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"60495b4e033e9f60b32a6607b587aadd","ChargeDeviceRef":"SCOT69","ChargeDeviceName":"King Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.623100","Longitude":"-2.823400","Address":{"SubBuildingName":null,"BuildingName":"Tweed Mill","BuildingNumber":null,"Thoroughfare":null,"Street":"King Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Galashiels","PostCode":"TD1 1PX","Country":"gb"},"LocationShortDescription":"Tweed Mill, Galashiels","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a4d3af69a34ee0822adcbfc50bf1ded5","ChargeDeviceRef":"200_20305","ChargeDeviceName":"Kings Mall Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.493973","Longitude":"-0.229101","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Glenthorne Road","DoubleDependantLocality":"Hammersmith","DependantLocality":"Hammersmith & Fulham","PostTown":"London","PostCode":"W6 0LJ","Country":"gb"},"LocationShortDescription":"Glenthorne Road, Hammersmith & Fulham","LocationLongDescription":"Glenthorne Road, Hammersmith & Fulham, London, W6 0LJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"14da92f2bdaec7f2218042a5b6124570","ChargeDeviceRef":"200_20303","ChargeDeviceName":"Kings Mall Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.493964","Longitude":"-0.229073","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Glenthorne Road","DoubleDependantLocality":"Hammersmith","DependantLocality":"Hammersmith & Fulham","PostTown":"London","PostCode":"W6 0LJ","Country":"gb"},"LocationShortDescription":"Glenthorne Road, Hammersmith & Fulham","LocationLongDescription":"Glenthorne Road, Hammersmith & Fulham, London, W6 0LJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c4819d06b0ca810d38506453cfaae9d8","ChargeDeviceRef":"100_10202","ChargeDeviceName":"Kingston University - Kingston Hill Campus","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.429188","Longitude":"-0.263111","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Kingston Hill Campus","DoubleDependantLocality":"Kingston Hill","DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT1 7LB","Country":"gb"},"LocationShortDescription":"Kingston Hill Campus, Kingston upon Thames","LocationLongDescription":"Kingston Hill Campus, Kingston upon Thames, London, KT1 7LB"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ef0eff6088e2ed94f6caf720239f40d5","ChargeDeviceRef":"100_10201","ChargeDeviceName":"Kingston University - Knights Park Campus","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.405445","Longitude":"-0.300373","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Knights Park Campus","DoubleDependantLocality":"Grange Road","DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT1 2QJ","Country":"gb"},"LocationShortDescription":"Knights Park Campus, Kingston upon Thames","LocationLongDescription":"Knights Park Campus, Kingston upon Thames, London, KT1 2QJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"46489c17893dfdcf028883202cefd6d1","ChargeDeviceRef":"100_10200","ChargeDeviceName":"Kingston University - Penrhyn Road Campus","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.401732","Longitude":"-0.302911","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Penrhyn Road Campus","DoubleDependantLocality":"Penrhyn Road","DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT1 2EE","Country":"gb"},"LocationShortDescription":"Penrhyn Road Campus, Kingston upon Thames","LocationLongDescription":"Penrhyn Road Campus, Kingston upon Thames, London, KT1 2EE"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a75a52f7209c01df2598a77ebc4de539","ChargeDeviceRef":"100_10203","ChargeDeviceName":"Kingston University - Roehampton Vale Campus","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.436945","Longitude":"-0.251983","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Roehampton Vale Campus","DoubleDependantLocality":"Friars Avenue","DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"SW153DU","Country":"gb"},"LocationShortDescription":"Roehampton Vale Campus, Kingston upon Thames","LocationLongDescription":"Roehampton Vale Campus, Kingston upon Thames, London, SW153DU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1216a1bca4361c39d1d77965c5d95ee3","ChargeDeviceRef":"11164","ChargeDeviceName":"Kingsway House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.607081","Longitude":"-1.294407","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Kingsway House","Street":null,"DoubleDependantLocality":"Billingham","DependantLocality":"Stockton on Tees","PostTown":null,"PostCode":"TS23 2NX","Country":"gb"},"LocationShortDescription":"Stockton on Tees","LocationLongDescription":"Kingsway House"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"0e64a7b00c83e3d22ce6b3acf2c582b6","ChargeDeviceRef":"11118","ChargeDeviceName":"Kingsway House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.607444","Longitude":"-1.289512","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Kingsway house","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Billingham","PostTown":null,"PostCode":"TS23 2NX","Country":"gb"},"LocationShortDescription":"Billingham","LocationLongDescription":"Kingsway house"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"09a8a8976abcdfdee15128b4cc02f33a","ChargeDeviceRef":"10045","ChargeDeviceName":"Kingsway House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.607081","Longitude":"-1.294407","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Kingsway House","Street":null,"DoubleDependantLocality":"Billingham","DependantLocality":"Stockton on Tees","PostTown":null,"PostCode":"TS23 2NX","Country":"gb"},"LocationShortDescription":"Stockton on Tees","LocationLongDescription":"Kingsway House"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"2192890582189ff58ddbb2b79900f246","ChargeDeviceRef":"SCOT75","ChargeDeviceName":"Kirkstyles Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.624400","Longitude":"-3.525300","Address":{"SubBuildingName":null,"BuildingName":"Kirkstyles Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Biggar","PostCode":"ML12 6DT","Country":"gb"},"LocationShortDescription":"Kirkstyles Car Park, Biggar","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"04992c5115a2c2fe6d12bdc21e16f64e","ChargeDeviceRef":"10103","ChargeDeviceName":"Komatsu UK","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.890317","Longitude":"-1.578858","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Komatsu UK","Street":null,"DoubleDependantLocality":"Durham Road","DependantLocality":"Birtley","PostTown":null,"PostCode":"DH3 2QX","Country":"gb"},"LocationShortDescription":"Birtley","LocationLongDescription":"Komatsu UK"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"438124b4c06f3a5caffab2c07863b617","ChargeDeviceRef":"200_20240","ChargeDeviceName":"Lakeside Shopping Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.489373","Longitude":"0.282164","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"West Thurrock","DoubleDependantLocality":"Grays","DependantLocality":"Essex","PostTown":"London","PostCode":"RM20 2ZP","Country":"gb"},"LocationShortDescription":"West Thurrock, Essex","LocationLongDescription":"West Thurrock, Essex, London, RM20 2ZP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"88f0bf2899c595146bff13b20342eb6a","ChargeDeviceRef":"200_20259","ChargeDeviceName":"Lakeside Shopping Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.489337","Longitude":"0.282162","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"West Thurrock","DoubleDependantLocality":"Grays","DependantLocality":"Essex","PostTown":"London","PostCode":"RM20 2ZP","Country":"gb"},"LocationShortDescription":"West Thurrock, Essex","LocationLongDescription":"West Thurrock, Essex, London, RM20 2ZP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1731592aca5fb4d789c4119c65c10b4b","ChargeDeviceRef":"300_10178","ChargeDeviceName":"Lavender Grove","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.541123","Longitude":"-0.069681","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Lavender Grove","DoubleDependantLocality":"East of Queensbridge Road","DependantLocality":"Hackney","PostTown":"London","PostCode":"E8 3AP","Country":"gb"},"LocationShortDescription":"Lavender Grove, Hackney","LocationLongDescription":"Lavender Grove, Hackney, London, E8 3AP"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"66bf858e119401396053e04633d95637","ChargeDeviceRef":"30051","ChargeDeviceName":"Leazes Village Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.976600","Longitude":"-1.618780","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Leazes Village Carpark","Street":null,"DoubleDependantLocality":"Leazes Lane","DependantLocality":"Newcastle Upon Tyne","PostTown":"Tyne and Wear","PostCode":"NE1 4DD","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Leazes Village Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"bdf3fd65c81469f9b74cedd497f2f9ce","ChargeDeviceRef":"400_10231","ChargeDeviceName":"Leeland Terrace","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509709","Longitude":"-0.321988","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Leeland Terrace","DoubleDependantLocality":"West of Tawny Close","DependantLocality":"Ealing","PostTown":"London","PostCode":"W13 9HW","Country":"gb"},"LocationShortDescription":"Leeland Terrace, Ealing","LocationLongDescription":"Leeland Terrace, Ealing, London, W13 9HW"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d84210a75448034bcc4947005695c306","ChargeDeviceRef":"400_10230","ChargeDeviceName":"Leeland Terrace","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509709","Longitude":"-0.321988","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Leeland Terrace","DoubleDependantLocality":"West of Tawny Close","DependantLocality":"Ealing","PostTown":"London","PostCode":"W13 9HW","Country":"gb"},"LocationShortDescription":"Leeland Terrace, Ealing","LocationLongDescription":"Leeland Terrace, Ealing, London, W13 9HW"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"00b76fddeaaa7d8c2c43d504b2babd8a","ChargeDeviceRef":"400_10247","ChargeDeviceName":"Leeland Terrace","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509709","Longitude":"-0.321988","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Leeland Terrace","DoubleDependantLocality":"West of Tawny Close","DependantLocality":"Ealing","PostTown":"London","PostCode":"W13 9HW","Country":"gb"},"LocationShortDescription":"Leeland Terrace, Ealing","LocationLongDescription":"Leeland Terrace, Ealing, London, W13 9HW"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"42c8938e4cf5777700700e642dc2a8cd","ChargeDeviceRef":"PP-12508","ChargeDeviceName":"Lightcliffe Nissan","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"53.716884","Longitude":"-1.857695","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Shay Syke, Halifax, West Yorkshire, HX1 2ND ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"HX1 2ND","Country":"gb"},"LocationShortDescription":"Halifax","LocationLongDescription":"Shay Syke HalifaxWest Yorkshire"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4f5a97cf06cf69028997db51d8726d28","ChargeDeviceRef":"PP-12210","ChargeDeviceName":"Lincolns Inn Fields ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.515286","Longitude":"-0.116644","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"WC2A 3PF","Country":"gb"},"LocationShortDescription":"Lincolns Inn Fields, Westminster","LocationLongDescription":"Lincoln's Inns Fields, Westminster. "},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c819904dde95535c60452b16c1c494f6","ChargeDeviceRef":"SC02","ChargeDeviceName":"Linenhall Street DRD Car Park","ChargeDeviceText":"Linenhall Street DRD Car Park","ChargeDeviceLocation":{"Latitude":"54.346710","Longitude":"-6.652213","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Armagh","PostCode":null,"Country":"gb"},"LocationShortDescription":"Linenhall Street DRD Car Park","LocationLongDescription":"Linenhall Street DRD Car Park. Usual parking restrictions and charges apply."},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6f3a770e5af1fd4cadc5f004b81e1040","ChargeDeviceRef":"400_10237","ChargeDeviceName":"Lion Green Road car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.319138","Longitude":"-0.140251","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Coulsdon","DoubleDependantLocality":null,"DependantLocality":"Croydon","PostTown":"London","PostCode":"CR5 2NL","Country":"gb"},"LocationShortDescription":"Coulsdon, Croydon","LocationLongDescription":"Coulsdon, Croydon, London, CR5 2NL"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5e51eeda0422de44a7cc260b4239d4f9","ChargeDeviceRef":"400_10233","ChargeDeviceName":"Lion Green Road car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.319156","Longitude":"-0.140250","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Coulsdon","DoubleDependantLocality":null,"DependantLocality":"Croydon","PostTown":"London","PostCode":"CR5 2NL","Country":"gb"},"LocationShortDescription":"Coulsdon, Croydon","LocationLongDescription":"Coulsdon, Croydon, London, CR5 2NL"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"52b738b303d90a884137546353e09ebb","ChargeDeviceRef":"SC23","ChargeDeviceName":"Little Donegall Street","ChargeDeviceText":"On-street charging point on Little Donegall Street, usual parking restrictions and charges apply","ChargeDeviceLocation":{"Latitude":"54.604646","Longitude":"-5.931866","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Little Donegall Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Belfast","PostCode":null,"Country":"gb"},"LocationShortDescription":"Little Donegall Street","LocationLongDescription":"On-street charging point on Little Donegall Street, usual parking restrictions and charges apply"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"02052c0f4599c2aa6bead905338f1214","ChargeDeviceRef":"31143","ChargeDeviceName":"Livingstone Road Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.907993","Longitude":"-1.387250","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Livingstone Road Carpark","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":"Tyne and Wear","PostCode":"SR1 3AW","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Livingstone Road Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"30d4e6422cd65c7913bc9ce62e078b79","ChargeDeviceRef":"31146","ChargeDeviceName":"Livingstone Road Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.907993","Longitude":"-1.387250","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Livingstone Road Carpark","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":"Tyne and Wear","PostCode":"SR1 3AW","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Livingstone Road Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"401704ef750f5f2e9fc84ed2c5db8292","ChargeDeviceRef":"31144","ChargeDeviceName":"Livingstone Road Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.907993","Longitude":"-1.387250","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Livingstone Road Carpark","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":"Tyne and Wear","PostCode":"SR1 3AW","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Livingstone Road Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"2c6a0bae0f071cbbf0bb3d5b11d90a82","ChargeDeviceRef":"31145","ChargeDeviceName":"Livingstone Road Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.907993","Longitude":"-1.387250","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Livingstone Road Carpark","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":"Tyne and Wear","PostCode":"SR1 3AW","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Livingstone Road Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f550e0ba9e1c4e8bb4a5ed0ac23a952d","ChargeDeviceRef":"PP-12173","ChargeDeviceName":"London Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.539000","Longitude":"0.079000","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"IG11 8HG","Country":"gb"},"LocationShortDescription":"London Road Car Park","LocationLongDescription":"Barking and Dagenham. London Road Car Park"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"7d6548bdc0082aacc950ed35e91fcccb","ChargeDeviceRef":"300_10196","ChargeDeviceName":"London Wall Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517667","Longitude":"-0.095277","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"23 London Wall","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC2V 5DY","Country":"gb"},"LocationShortDescription":"23 London Wall, City of London","LocationLongDescription":"23 London Wall, City of London, London, EC2V 5DY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"767b2cc82cecc0385fe6f1086dd2c748","ChargeDeviceRef":"300_10195","ChargeDeviceName":"London Wall Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517667","Longitude":"-0.095277","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"23 London Wall","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC2V 5DY","Country":"gb"},"LocationShortDescription":"23 London Wall, City of London","LocationLongDescription":"23 London Wall, City of London, London, EC2V 5DY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"124461dcd3571e6674ec4e0e140cc298","ChargeDeviceRef":"300_10199","ChargeDeviceName":"London Wall Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517667","Longitude":"-0.095277","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"23 London Wall","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC2V 5DY","Country":"gb"},"LocationShortDescription":"23 London Wall, City of London","LocationLongDescription":"23 London Wall, City of London, London, EC2V 5DY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1a15d41947a732c97943fa5624f570d7","ChargeDeviceRef":"300_10198","ChargeDeviceName":"London Wall Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517667","Longitude":"-0.095277","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"23 London Wall","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC2V 5DY","Country":"gb"},"LocationShortDescription":"23 London Wall, City of London","LocationLongDescription":"23 London Wall, City of London, London, EC2V 5DY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"09a69de15cf89bc7fe8c0642f906a4dd","ChargeDeviceRef":"300_10197","ChargeDeviceName":"London Wall Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517667","Longitude":"-0.095277","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"23 London Wall","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC2V 5DY","Country":"gb"},"LocationShortDescription":"23 London Wall, City of London","LocationLongDescription":"23 London Wall, City of London, London, EC2V 5DY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c1d0f19c3f827daf0edd3e69c3b195a9","ChargeDeviceRef":"SC15","ChargeDeviceName":"Lonsdale Street DRD Car Park","ChargeDeviceText":"Lonsdale Street DRD Car Park","ChargeDeviceLocation":{"Latitude":"54.351223","Longitude":"-6.653203","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Armagh","PostCode":null,"Country":"gb"},"LocationShortDescription":"Lonsdale Street DRD Car Park","LocationLongDescription":"Lonsdale Street DRD Car Park. Usual parking restrictions and charges apply."},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"cc9657884708170e160c8372d92f3535","ChargeDeviceRef":"SC21","ChargeDeviceName":"Lower Crescent","ChargeDeviceText":"Lower Crescent on-street","ChargeDeviceLocation":{"Latitude":"54.587893","Longitude":"-5.934377","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Lower Crescent on-street","LocationLongDescription":"Lower Crescent on-street usual parking restrictions and charges apply"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a76da37101dffabe00e5d636c01719b6","ChargeDeviceRef":"CM-752","ChargeDeviceName":"Lucy Tower Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"53.229359","Longitude":"-0.544285","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Lucy Tower Street
Lincoln","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"LN1 1XL","Country":"gb"},"LocationShortDescription":"Public access
Parking fees apply.","LocationLongDescription":"One charging point, two sockets, RFID card accessed
One three pin BS1363 socket (mode 1; standard charge)
One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge).

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Chargemaster","Website":"www.chargemasterplc.com","TelephoneNo":"01582 400 331","ContactName":"Neil Sharpe"},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"dc0439caeb74ffc2795571af07a7eab1","ChargeDeviceRef":"PP-12208","ChargeDeviceName":"Lupus Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.487717","Longitude":"-0.142074","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"SW1V 4NA","Country":"gb"},"LocationShortDescription":"Westminster. Lupus St.","LocationLongDescription":"Westminster. Lupus St."},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"582967e09f1b30ca2539968da0a174fa","ChargeDeviceRef":"PP-12348","ChargeDeviceName":"M&S Food Eco Store","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"53.372311","Longitude":"-1.486207","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"M&S Food Eco Store, 250 - 266 Ecclesall Road, Sheffield","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"S11 8JD","Country":"gb"},"LocationShortDescription":"M&S Food Eco Store","LocationLongDescription":"This post is at M&S Food Eco Store car park, in Sheffield"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"946e3ece1fc8b24bd656449d88eca941","ChargeDeviceRef":"RC01","ChargeDeviceName":"M1, Junction 15 Rapid Charger","ChargeDeviceText":"M1, Junction 15 Rapid Charger at Donnelly Group Garage","ChargeDeviceLocation":{"Latitude":"54.487161","Longitude":"-6.744146","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":"181 ","Thoroughfare":null,"Street":"Ballygawley Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Dungannon","PostCode":"BT70 1RX","Country":"gb"},"LocationShortDescription":"M1, Junction 15 Rapid Charger at Donnelly Group Garage","LocationLongDescription":"Directions from the M1 (Heading west)\r\n1. At Junction 15, Take the A29 exit to Dungannon\r\n\r\n2. At Stangmore Roundabout, take 3rd exit to Moy Road\/A29 heading to Dungannon \/Moygashel \r\n\r\n3. Travel 0.5miles and Donnelly Group Dungannon is located on your left\/ beside Forkhill Texaco Filling Station\r\n\r\n"},"Connector":[{"ConnectorId":"1","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":null,"RatedOutputCurrent":"100","ChargeMethod":"DC","ChargeMode":"3","ChargePointStatus":"Out of service","TetheredCable":"0","Information":"Mode 4"},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"Out of service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Donnelly Group","Website":"www.donnolleygroup.co.uk","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"149ef6419512be56a93169cd5e6fa8fd","ChargeDeviceRef":"100_10115","ChargeDeviceName":"Magdalen Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.503725","Longitude":"-0.081824","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Magdalen Street","DoubleDependantLocality":null,"DependantLocality":"Southwark","PostTown":"London","PostCode":"SE1 2TU","Country":"gb"},"LocationShortDescription":"Magdalen Street, Southwark","LocationLongDescription":"Magdalen Street, Southwark, London, SE1 2TU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"63c4b1baf3b4460fa9936b1a20919bec","ChargeDeviceRef":"400_10218","ChargeDeviceName":"Main Media Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.547974","Longitude":"-0.024737","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Olympic Park","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E20","Country":"gb"},"LocationShortDescription":"Olympic Park, Stratford","LocationLongDescription":"Olympic Park, Stratford, London, E20"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e2f374c3418c50bc30d67d5f7454a5b4","ChargeDeviceRef":"400_10204","ChargeDeviceName":"Main Media Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.547919","Longitude":"-0.024667","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Olympic Park","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E20","Country":"gb"},"LocationShortDescription":"Olympic Park, Stratford","LocationLongDescription":"Olympic Park, Stratford, London, E20"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"7d411dca7348327b71e894c52e76eeeb","ChargeDeviceRef":"400_10224","ChargeDeviceName":"Main Media Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.547889","Longitude":"-0.025058","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Olympic Park","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E20","Country":"gb"},"LocationShortDescription":"Olympic Park, Stratford","LocationLongDescription":"Olympic Park, Stratford, London, E20"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"573f7f25b7b1eb79a4ec6ba896debefd","ChargeDeviceRef":"400_10185","ChargeDeviceName":"Main Media Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.548221","Longitude":"-0.024437","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Olympic Park","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E20","Country":"gb"},"LocationShortDescription":"Olympic Park, Stratford","LocationLongDescription":"Olympic Park, Stratford, London, E20"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f8ea2e8463760785106490befc78c339","ChargeDeviceRef":"400_10202","ChargeDeviceName":"Main Media Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.547834","Longitude":"-0.024959","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Olympic Park","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E20","Country":"gb"},"LocationShortDescription":"Olympic Park, Stratford","LocationLongDescription":"Olympic Park, Stratford, London, E20"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"475fbefa9ebfba9233364533aafd02a3","ChargeDeviceRef":"400_10151","ChargeDeviceName":"Main Media Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.547876","Longitude":"-0.024799","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Olympic Park","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E20","Country":"gb"},"LocationShortDescription":"Olympic Park, Stratford","LocationLongDescription":"Olympic Park, Stratford, London, E20"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"21c52f533c0c585bab4f075bf08d7104","ChargeDeviceRef":"400_10226","ChargeDeviceName":"Main Media Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.548196","Longitude":"-0.024554","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Olympic Park","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E20","Country":"gb"},"LocationShortDescription":"Olympic Park, Stratford","LocationLongDescription":"Olympic Park, Stratford, London, E20"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"075b24b68eb3cb44b3fa4e331d86db89","ChargeDeviceRef":"400_10177","ChargeDeviceName":"Main Media Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.547764","Longitude":"-0.025092","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Olympic Park","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E20","Country":"gb"},"LocationShortDescription":"Olympic Park, Stratford","LocationLongDescription":"Olympic Park, Stratford, London, E20"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"bf56a1b37b94243486b2034f8479c475","ChargeDeviceRef":"400_10229","ChargeDeviceName":"Main Media Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.548051","Longitude":"-0.024502","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Olympic Park","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E20","Country":"gb"},"LocationShortDescription":"Olympic Park, Stratford","LocationLongDescription":"Olympic Park, Stratford, London, E20"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"2ff385c6e75c56b7a5a93d9fcd0c82ee","ChargeDeviceRef":"400_10203","ChargeDeviceName":"Main Media Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.548092","Longitude":"-0.024804","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Olympic Park","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E20","Country":"gb"},"LocationShortDescription":"Olympic Park, Stratford","LocationLongDescription":"Olympic Park, Stratford, London, E20"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"7109af321d970c64a0154000a60e65c8","ChargeDeviceRef":"400_10157","ChargeDeviceName":"Main Media Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.547932","Longitude":"-0.024911","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Olympic Park","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E20","Country":"gb"},"LocationShortDescription":"Olympic Park, Stratford","LocationLongDescription":"Olympic Park, Stratford, London, E20"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"989652eef28bc49eec908063ba36a854","ChargeDeviceRef":"400_10176","ChargeDeviceName":"Main Media Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.548135","Longitude":"-0.024686","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Olympic Park","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E20","Country":"gb"},"LocationShortDescription":"Olympic Park, Stratford","LocationLongDescription":"Olympic Park, Stratford, London, E20"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"69386f6bb1dfed68692a24c8686939b9","ChargeDeviceRef":"SC29","ChargeDeviceName":"Main Street DRD Car Park","ChargeDeviceText":"Main Street DRD Car Park, Irvinestown","ChargeDeviceLocation":{"Latitude":"54.472437","Longitude":"-7.630603","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Main Street DRD Car Park, Irvinestown","LocationLongDescription":"Main Street DRD Car Park, Irvinestown"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"DRD","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"bdd8817990ef209f0fb6b049f2d2ea0c","ChargeDeviceRef":"SC12","ChargeDeviceName":"Main Street DRD Car Park Belleek","ChargeDeviceText":"Main Street DRD Car Park Belleek","ChargeDeviceLocation":{"Latitude":"54.480109","Longitude":"-8.091973","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Main Street DRD Car Park Belleek","LocationLongDescription":"Main Street DRD Car Park Belleek"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"DRD","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"597c7b407a02cc0a92167e7a371eca25","ChargeDeviceRef":"200_10302","ChargeDeviceName":"Malet Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.522463","Longitude":"-0.131258","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Malet Street","DoubleDependantLocality":null,"DependantLocality":"Camden","PostTown":"London","PostCode":"WC1E 7HZ","Country":"gb"},"LocationShortDescription":"Malet Street, Camden","LocationLongDescription":"Malet Street, Camden, London, WC1E 7HZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ae31ee951b4d4bfb5518e0fcdc064a83","ChargeDeviceRef":"PP-11449","ChargeDeviceName":"Malvern Hills Science Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.104970","Longitude":"-2.311893","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Geraldine Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Great Malvern","PostCode":"WR14 3SZ","Country":"gb"},"LocationShortDescription":null,"LocationLongDescription":"One charging point, one plug

One five pin J1772 tethered plug rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP\r\n"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 1 (SAE J1772)","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"029#07 247 4114","ContactName":"Steve Large"},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a48251d4c143adf4d4b657d5d82ee0ee","ChargeDeviceRef":"30010","ChargeDeviceName":"Marine Walk","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.919024","Longitude":"-1.363372","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Marine Walk","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Roker","PostTown":null,"PostCode":"SR6 0PN","Country":"gb"},"LocationShortDescription":"Roker","LocationLongDescription":"Marine Walk"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"77d2afcb31f6493e350fca61764efb9a","ChargeDeviceRef":"30009","ChargeDeviceName":"Marine Walk","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.919024","Longitude":"-1.363472","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Marine Walk","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Roker","PostTown":null,"PostCode":"SR6 0PN","Country":"gb"},"LocationShortDescription":"Roker","LocationLongDescription":"Marine Walk"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"2f3bbb9730639e9ea48f309d9a79ff01","ChargeDeviceRef":"10069","ChargeDeviceName":"Maritime House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.978472","Longitude":"-1.448298","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Marititme House","Street":null,"DoubleDependantLocality":"Port of Tyne","DependantLocality":"South Shields","PostTown":null,"PostCode":"NE34 9PT","Country":"gb"},"LocationShortDescription":"South Shields","LocationLongDescription":"Marititme House"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"cceff8faa855336ad53b3325914caea2","ChargeDeviceRef":"41053","ChargeDeviceName":"Market Place","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.665489","Longitude":"-1.677595","Address":{"SubBuildingName":null,"BuildingName":"Market Place","BuildingNumber":null,"Thoroughfare":null,"Street":"Newcastle Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Bishop Auckland","PostCode":"DL14 7QW","Country":"gb"},"LocationShortDescription":"Bishop Auckland","LocationLongDescription":"Market Place"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"bbc92a647199b832ec90d7cf57074e9e","ChargeDeviceRef":"300_10136","ChargeDeviceName":"Marlborough Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.494910","Longitude":"0.073627","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Marlborough Road","DoubleDependantLocality":null,"DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE18 6RU","Country":"gb"},"LocationShortDescription":"Marlborough Road, Greenwich","LocationLongDescription":"Marlborough Road, Greenwich, London, SE18 6RU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a600bd172fcabd688500dac58ebda3a0","ChargeDeviceRef":"40022","ChargeDeviceName":"Melbourne Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.971808","Longitude":"-1.605260","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Melbourne Street","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 2JS","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Melbourne Street"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f1ea154c843f7cf3677db7ce922a2d17","ChargeDeviceRef":"40010","ChargeDeviceName":"Melbourne Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.971908","Longitude":"-1.605260","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Melbourne Street","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 2JS","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Melbourne Street"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"752d2c9ecfe079e5e5f3539f4d750e5c","ChargeDeviceRef":"200_20234","ChargeDeviceName":"Messeter Place","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.450070","Longitude":"0.059419","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Messeter Place","DoubleDependantLocality":"Eltham","DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE9 5DP","Country":"gb"},"LocationShortDescription":"Messeter Place, Greenwich","LocationLongDescription":"Messeter Place, Greenwich, London, SE9 5DP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"45e81409831b77407fbc22afc09f0d78","ChargeDeviceRef":"200_20246","ChargeDeviceName":"Messeter Place","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.450079","Longitude":"0.059448","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Messeter Place","DoubleDependantLocality":"Eltham","DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE9 5DP","Country":"gb"},"LocationShortDescription":"Messeter Place, Greenwich","LocationLongDescription":"Messeter Place, Greenwich, London, SE9 5DP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"33b9c7c18ec3acc3747c41e70e9bb3d6","ChargeDeviceRef":"20048","ChargeDeviceName":"Metrocentre Green Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.955212","Longitude":"-1.666375","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Metrocentre Green Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Gateshead","PostTown":"Tyne and Wear","PostCode":"NE11 9YG","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Metrocentre Green Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"RegularOpenings":[{"Days":"Monday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Tuesday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Wednesday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Thursday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Friday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Saturday","Hours":{"From":"10:30","To":"00:30"}},{"Days":"Sunday","Hours":{"From":"10:30","To":"00:30"}}],"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Available for use Mon - Sat & B\/Hols 08:30 - 00:30. Sun 10:00 - 00:30.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"e32c51ad39723ee92b285b362c916ca7","ChargeDeviceRef":"20047","ChargeDeviceName":"Metrocentre Green Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.955222","Longitude":"-1.666424","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Metrocentre Green Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Gateshead","PostTown":"Tyne and Wear","PostCode":"NE11 9YG","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Metrocentre Green Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"RegularOpenings":[{"Days":"Monday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Tuesday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Wednesday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Thursday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Friday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Saturday","Hours":{"From":"10:30","To":"00:30"}},{"Days":"Sunday","Hours":{"From":"10:30","To":"00:30"}}],"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Available for use Mon - Sat & B\/Hols 08:30 - 00:30. Sun 10:00 - 00:30","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"34adeb8e3242824038aa65460a47c29e","ChargeDeviceRef":"20064","ChargeDeviceName":"Metrocentre Green Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.955232","Longitude":"-1.666477","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Metrocentre Green Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Gateshead","PostTown":"Tyne and Wear","PostCode":"NE11 9YG","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Metrocentre Green Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":"415","RatedOutputCurrent":"125","ChargeMethod":"Single Phase AC","ChargeMode":null,"ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"RegularOpenings":[{"Days":"Monday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Tuesday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Wednesday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Thursday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Friday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Saturday","Hours":{"From":"10:30","To":"00:30"}},{"Days":"Sunday","Hours":{"From":"10:30","To":"00:30"}}],"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Available for use Mon - Sat & B\/Hols 08:30 - 00:30. Sun 10:00 - 00:30","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4fe5149039b52765bde64beb9f674940","ChargeDeviceRef":"20053","ChargeDeviceName":"Metrocentre Yellow Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.958313","Longitude":"-1.671397","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Metrocentre Yellow Car Park","Street":null,"DoubleDependantLocality":"Floor 3","DependantLocality":"Gateshead","PostTown":null,"PostCode":"NE11 9YG","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Metrocentre Yellow Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"RegularOpenings":[{"Days":"Monday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Tuesday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Wednesday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Thursday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Friday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Saturday","Hours":{"From":"10:30","To":"00:30"}},{"Days":"Sunday","Hours":{"From":"10:30","To":"00:30"}}],"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Available for use Mon - Sat & B\/Hols 08:30 - 00:30. Sun 10:00 - 00:30.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"0f2818101a7ac4b96ceeba38de4b934c","ChargeDeviceRef":"20050","ChargeDeviceName":"Metrocentre Yellow Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.958313","Longitude":"-1.671297","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Metrocentre Yellow Car Park","Street":null,"DoubleDependantLocality":"Floor 3","DependantLocality":"Gateshead","PostTown":null,"PostCode":"NE11 9YG","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Metrocentre Yellow Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"RegularOpenings":[{"Days":"Monday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Tuesday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Wednesday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Thursday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Friday","Hours":{"From":"08:30","To":"00:30"}},{"Days":"Saturday","Hours":{"From":"10:30","To":"00:30"}},{"Days":"Sunday","Hours":{"From":"10:30","To":"00:30"}}],"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Available for use Mon - Sat & B\/Hols 08:30 - 00:30. Sun 10:00 - 00:30.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"94bb077f18daa6620efa5cf6e6f178d2","ChargeDeviceRef":"10097","ChargeDeviceName":"Middle Engine Lane Police Stations","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.008656","Longitude":"-1.503996","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Middle Engine Lane Police Station","Street":null,"DoubleDependantLocality":null,"DependantLocality":"North Tyneside","PostTown":null,"PostCode":"NE28 9NT","Country":"gb"},"LocationShortDescription":"North Tyneside","LocationLongDescription":"Middle Engine Lane Police Station"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"10ff0b5e85e5b85cc3095d431d8c08b4","ChargeDeviceRef":"20003","ChargeDeviceName":"Middleton Grange Shopping Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.684182","Longitude":"-1.215038","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Middleton Grange Shopping Centre ","Street":null,"DoubleDependantLocality":"Underground car park","DependantLocality":"Hartlepool","PostTown":null,"PostCode":"TS24 7RZ","Country":"gb"},"LocationShortDescription":"Hartlepool","LocationLongDescription":"Middleton Grange Shopping Centre "},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4ffbd5c8221d7c147f8363ccdc9a2a37","ChargeDeviceRef":"30079","ChargeDeviceName":"Milldam Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.994744","Longitude":"-1.440194","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Milldam Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"South Shields","PostTown":null,"PostCode":"NE33 1ES","Country":"gb"},"LocationShortDescription":"South Shields","LocationLongDescription":"Milldam Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"9f96f36b7aae3b1ff847c26ac94c604e","ChargeDeviceRef":"30080","ChargeDeviceName":"Milldam Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.994766","Longitude":"-1.440152","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Milldam Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"South Shields","PostTown":null,"PostCode":"NE33 1ES","Country":"gb"},"LocationShortDescription":"South Shields","LocationLongDescription":"Milldam Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8396b14c5dff55d13eea57487bf8ed26","ChargeDeviceRef":"30078","ChargeDeviceName":"Milldam Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.994726","Longitude":"-1.440240","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Milldam Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"South Shields","PostTown":null,"PostCode":"NE33 1ES","Country":"gb"},"LocationShortDescription":"South Shields","LocationLongDescription":"Milldam Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8620005ac78d8257435d490058c643dd","ChargeDeviceRef":"300_10213","ChargeDeviceName":"Minories Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.510239","Longitude":"-0.073292","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Mansell Street","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC3N 4DX","Country":"gb"},"LocationShortDescription":"Mansell Street, City of London","LocationLongDescription":"Mansell Street, City of London, London, EC3N 4DX"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f110a326be6999afdeb8e7002c0ce44d","ChargeDeviceRef":"300_10208","ChargeDeviceName":"Minories Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.510492","Longitude":"-0.073368","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Mansell Street","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC3N 4DX","Country":"gb"},"LocationShortDescription":"Mansell Street, City of London","LocationLongDescription":"Mansell Street, City of London, London, EC3N 4DX"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3ec27c2cff04bc5fd2586ca36c62044e","ChargeDeviceRef":"21126","ChargeDeviceName":"Minories Sunderland ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.919283","Longitude":"-1.383822","Address":{"SubBuildingName":null,"BuildingName":"Minories Sunderland ","BuildingNumber":null,"Thoroughfare":null,"Street":"Biomedical Research Centre","DoubleDependantLocality":"Nunsmoor Road","DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 1JE","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Minories Sunderland "},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"7a430339c10c642c4b2251756fd1b484","ChargeDeviceRef":"SC32","ChargeDeviceName":"Monaghan Street","ChargeDeviceText":"Monaghan Street on-street","ChargeDeviceLocation":{"Latitude":"54.177068","Longitude":"-6.341665","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Monaghan Street on-street","LocationLongDescription":"Monaghan Street on-street"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"9f60ab2b55468f104055b16df8f69e81","ChargeDeviceRef":"SCOT57","ChargeDeviceName":"Montrose House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.777200","Longitude":"-4.048200","Address":{"SubBuildingName":null,"BuildingName":"Montrose House","BuildingNumber":null,"Thoroughfare":null,"Street":"154 Montrose Crescent","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 6LB","Country":"gb"},"LocationShortDescription":"Montrose House, Hamilton","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"26ff6f4ca1cfca4861eb91876f706746","ChargeDeviceRef":"SCOT58","ChargeDeviceName":"Montrose House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.777200","Longitude":"-4.048200","Address":{"SubBuildingName":null,"BuildingName":"Montrose House","BuildingNumber":null,"Thoroughfare":null,"Street":"154 Montrose Crescent","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hamilton","PostCode":"ML3 6LB","Country":"gb"},"LocationShortDescription":"Montrose House, Hamilton","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b9f35816f460ab999cbc168c4da26ff3","ChargeDeviceRef":"PP-12307","ChargeDeviceName":"Motorline ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.155167","Longitude":"0.284541","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Unit 9, Dowding Way, Tunbridge Wells, Kent,TN2 3UY ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"TN2 3UY","Country":"gb"},"LocationShortDescription":"Tunbridge Wells ","LocationLongDescription":"Unit 9 Dowding WayTunbridge WellsKent"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"334467d41d5cf21e234465a1530ba647","ChargeDeviceRef":"SC14","ChargeDeviceName":"Narrow Gauge Road, Larne","ChargeDeviceText":"Narrow Gauge Road, Larne","ChargeDeviceLocation":{"Latitude":"54.850413","Longitude":"-5.818398","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Narrow Gauge Road, Larne","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"37bf8bb245c5ae952fb107153f18958f","ChargeDeviceRef":"100_10126","ChargeDeviceName":"NCP Aldersgate Street - Level 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.518689","Longitude":"-0.097353","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"158-170 Aldersgate Street","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC1A 4HY","Country":"gb"},"LocationShortDescription":"158-170 Aldersgate Street, City of London","LocationLongDescription":"158-170 Aldersgate Street, City of London, London, EC1A 4HY"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"9f1f64b519d20e2ccc36e1589a8f7555","ChargeDeviceRef":"100_10150","ChargeDeviceName":"NCP Allders","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.374917","Longitude":"-0.099138","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Dingwall Avenue","DoubleDependantLocality":null,"DependantLocality":"Croydon","PostTown":"London","PostCode":"CR0 2AA","Country":"gb"},"LocationShortDescription":"Dingwall Avenue, Croydon","LocationLongDescription":"Dingwall Avenue, Croydon, London, CR0 2AA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1dfcb07c683107f038d8c886145d097e","ChargeDeviceRef":"100_10132","ChargeDeviceName":"NCP Arthur Court","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.516192","Longitude":"-0.188936","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Queensway","DoubleDependantLocality":"Bayswater","DependantLocality":"Westminster","PostTown":"London","PostCode":"W2 5HL","Country":"gb"},"LocationShortDescription":"Queensway, Westminster","LocationLongDescription":"Queensway, Westminster, London, W2 5HL"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"01259a0cb2431834302abe2df60a1327","ChargeDeviceRef":"100_10108","ChargeDeviceName":"NCP Berners Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.518018","Longitude":"-0.137883","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"45-47 Berners Street","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1T 3NE","Country":"gb"},"LocationShortDescription":"45-47 Berners Street, Westminster","LocationLongDescription":"45-47 Berners Street, Westminster, London, W1T 3NE"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"59112692262234e3fad47fa8eabf03a4","ChargeDeviceRef":"100_10360","ChargeDeviceName":"NCP Brewer Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.512404","Longitude":"-0.134898","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"2 Lexington Street","DoubleDependantLocality":"Soho","DependantLocality":"Westminster","PostTown":"London","PostCode":"W1F 0LA","Country":"gb"},"LocationShortDescription":"2 Lexington Street, Westminster","LocationLongDescription":"2 Lexington Street, Westminster, London, W1F 0LA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"9713faa264b94e2bf346a1bb52587fd8","ChargeDeviceRef":"100_10350","ChargeDeviceName":"NCP Brewer Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.512340","Longitude":"-0.134829","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"2 Lexington Street","DoubleDependantLocality":"Soho","DependantLocality":"Westminster","PostTown":"London","PostCode":"W1F 0LA","Country":"gb"},"LocationShortDescription":"2 Lexington Street, Westminster","LocationLongDescription":"2 Lexington Street, Westminster, London, W1F 0LA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"983a33a9a86796df362c1108e00f54a6","ChargeDeviceRef":"100_10220","ChargeDeviceName":"NCP Buckhold Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.451074","Longitude":"-0.190521","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Buckhold Road","DoubleDependantLocality":null,"DependantLocality":"Wandsworth","PostTown":"London","PostCode":"SW18 4BZ","Country":"gb"},"LocationShortDescription":"Buckhold Road, Wandsworth","LocationLongDescription":"Buckhold Road, Wandsworth, London, SW18 4BZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"543857f4a06c852113bcc02abf295eb5","ChargeDeviceRef":"100_10118","ChargeDeviceName":"NCP Cadogan Place","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.497429","Longitude":"-0.158604","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Cadogan Place","DoubleDependantLocality":"Knightsbridge","DependantLocality":"Kensington and Chelsea","PostTown":"London","PostCode":"SW1X 9SA","Country":"gb"},"LocationShortDescription":"Cadogan Place, Kensington and Chelsea","LocationLongDescription":"Cadogan Place, Kensington and Chelsea, London, SW1X 9SA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1d38dd921e15520709f86320185c5e1d","ChargeDeviceRef":"100_10134","ChargeDeviceName":"NCP Carrington Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.505649","Longitude":"-0.146687","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Carrington Street","DoubleDependantLocality":"Mayfair","DependantLocality":"Westminster","PostTown":"London","PostCode":"W1J 7AF","Country":"gb"},"LocationShortDescription":"Carrington Street, Westminster","LocationLongDescription":"Carrington Street, Westminster, London, W1J 7AF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"56a8da1d3bcb2e9b334a778be5b1d781","ChargeDeviceRef":"100_10137","ChargeDeviceName":"NCP Cleveland Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.520271","Longitude":"-0.137618","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"34-42 Cleveland Street","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1T 4JY","Country":"gb"},"LocationShortDescription":"34-42 Cleveland Street, Westminster","LocationLongDescription":"34-42 Cleveland Street, Westminster, London, W1T 4JY"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"72cad9e1f9ae79872b8d6ac34fc2851c","ChargeDeviceRef":"100_10178","ChargeDeviceName":"NCP Crawford Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.519367","Longitude":"-0.162404","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"43A Crawford Street","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1H 1JR","Country":"gb"},"LocationShortDescription":"43A Crawford Street, Westminster","LocationLongDescription":"43A Crawford Street, Westminster, London, W1H 1JR"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"cfbc6c5cfb8a3e10fab12aa3512153df","ChargeDeviceRef":"100_10153","ChargeDeviceName":"NCP Dingwall Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.377271","Longitude":"-0.095161","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Dingwall Road","DoubleDependantLocality":null,"DependantLocality":"Croydon","PostTown":"London","PostCode":"CR0 0XH","Country":"gb"},"LocationShortDescription":"Dingwall Road, Croydon","LocationLongDescription":"Dingwall Road, Croydon, London, CR0 0XH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"Out of service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"aee1bc7fa5da061b752d0efddbd16495","ChargeDeviceRef":"100_10152","ChargeDeviceName":"NCP Dingwall Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.377317","Longitude":"-0.095174","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Dingwall Road","DoubleDependantLocality":null,"DependantLocality":"Croydon","PostTown":"London","PostCode":"CR0 0XH","Country":"gb"},"LocationShortDescription":"Dingwall Road, Croydon","LocationLongDescription":"Dingwall Road, Croydon, London, CR0 0XH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"Out of service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"26310c700ffd1b5095454f336ae96648","ChargeDeviceRef":"100_10311","ChargeDeviceName":"NCP Docklands City Harbour","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.494884","Longitude":"-0.014773","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Selsdon Way","DoubleDependantLocality":"Isle of Dogs","DependantLocality":"Tower Hamlets","PostTown":"London","PostCode":"E14 9GL","Country":"gb"},"LocationShortDescription":"Selsdon Way, Tower Hamlets","LocationLongDescription":"Selsdon Way, Tower Hamlets, London, E14 9GL"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"79fde5402cbc75ae0615c9ae4c335b46","ChargeDeviceRef":"100_10400","ChargeDeviceName":"NCP Epsom The Ebbisham Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.334285","Longitude":"-0.265853","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Waterloo Road","DoubleDependantLocality":"Epsom","DependantLocality":"Surrey","PostTown":"London","PostCode":"KT19 8AG","Country":"gb"},"LocationShortDescription":"Waterloo Road, Surrey","LocationLongDescription":"Waterloo Road, Surrey, London, KT19 8AG"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"Out of service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"edb684859b848362ec56904286947614","ChargeDeviceRef":"100_10181","ChargeDeviceName":"NCP Fairfield","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.409843","Longitude":"-0.301000","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Lady Booth Road","DoubleDependantLocality":null,"DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT1 2PR","Country":"gb"},"LocationShortDescription":"Lady Booth Road, Kingston upon Thames","LocationLongDescription":"Lady Booth Road, Kingston upon Thames, London, KT1 2PR"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0f65caf0a7d00afd2b87c028e88fe931","ChargeDeviceRef":"100_10182","ChargeDeviceName":"NCP Fairfield","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.409815","Longitude":"-0.300958","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Lady Booth Road","DoubleDependantLocality":null,"DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT1 2PR","Country":"gb"},"LocationShortDescription":"Lady Booth Road, Kingston upon Thames","LocationLongDescription":"Lady Booth Road, Kingston upon Thames, London, KT1 2PR"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"2f3c6a4cd8af177f6456e7e51a916ff3","ChargeDeviceRef":"100_10163","ChargeDeviceName":"NCP Fairfield Halls","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.373142","Longitude":"-0.093364","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Barclay Road","DoubleDependantLocality":null,"DependantLocality":"Croydon","PostTown":"London","PostCode":"CR0 1JN","Country":"gb"},"LocationShortDescription":"Barclay Road, Croydon","LocationLongDescription":"Barclay Road, Croydon, London, CR0 1JN"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"7c33e57e3dbd8a52940fa1a963aa4a4a","ChargeDeviceRef":"100_10194","ChargeDeviceName":"NCP Fairfield Halls","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.373150","Longitude":"-0.093321","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Barclay Road","DoubleDependantLocality":null,"DependantLocality":"Croydon","PostTown":"London","PostCode":"CR0 1JN","Country":"gb"},"LocationShortDescription":"Barclay Road, Croydon","LocationLongDescription":"Barclay Road, Croydon, London, CR0 1JN"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"78f1893678afbeaa90b1fa01b9cfb860","ChargeDeviceRef":"100_10136","ChargeDeviceName":"NCP Farringdon","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.524569","Longitude":"-0.109491","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 Bowling Green Lane","DoubleDependantLocality":"Clerkenwell","DependantLocality":"Islington","PostTown":"London","PostCode":"EC1R 0BD","Country":"gb"},"LocationShortDescription":"1 Bowling Green Lane, Islington","LocationLongDescription":"1 Bowling Green Lane, Islington, London, EC1R 0BD"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"da974f5eba1948690c83e9c3b43ffd87","ChargeDeviceRef":"100_10135","ChargeDeviceName":"NCP Farringdon","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.524615","Longitude":"-0.109546","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 Bowling Green Lane","DoubleDependantLocality":"Clerkenwell","DependantLocality":"Islington","PostTown":"London","PostCode":"EC1R 0BD","Country":"gb"},"LocationShortDescription":"1 Bowling Green Lane, Islington","LocationLongDescription":"1 Bowling Green Lane, Islington, London, EC1R 0BD"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"09def3ebbc44ff3426b28fcd88c83554","ChargeDeviceRef":"100_10198","ChargeDeviceName":"NCP Finsbury Square","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.521331","Longitude":"-0.082828","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Finsbury Square","DoubleDependantLocality":null,"DependantLocality":"Islington","PostTown":"London","PostCode":"EC2A 1AD","Country":"gb"},"LocationShortDescription":"Finsbury Square, Islington","LocationLongDescription":"Finsbury Square, Islington, London, EC2A 1AD"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1f6419b1cbe79c71410cb320fc094775","ChargeDeviceRef":"100_10197","ChargeDeviceName":"NCP Finsbury Square","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.521397","Longitude":"-0.086357","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Finsbury Square","DoubleDependantLocality":null,"DependantLocality":"Islington","PostTown":"London","PostCode":"EC2A 1AD","Country":"gb"},"LocationShortDescription":"Finsbury Square, Islington","LocationLongDescription":"Finsbury Square, Islington, London, EC2A 1AD"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3910d2e3adfd0dc2e3a048f15c11eb74","ChargeDeviceRef":"100_10177","ChargeDeviceName":"NCP Flightpath (Heathrow Airport)","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.482995","Longitude":"-0.453667","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Sipson Road","DoubleDependantLocality":null,"DependantLocality":"Hillingdon","PostTown":"London","PostCode":"UB7 0DU","Country":"gb"},"LocationShortDescription":"Sipson Road, Hillingdon","LocationLongDescription":"Sipson Road, Hillingdon, London, UB7 0DU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"7a54486317b6dde9ce8fadaf3e7601f4","ChargeDeviceRef":"100_10121","ChargeDeviceName":"NCP Great Eastern Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.523795","Longitude":"-0.080086","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Great Eastern Street","DoubleDependantLocality":null,"DependantLocality":"Hackney","PostTown":"London","PostCode":"EC2A 3ER","Country":"gb"},"LocationShortDescription":"Great Eastern Street, Hackney","LocationLongDescription":"Great Eastern Street, Hackney, London, EC2A 3ER"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3eb2f1a06667bfb9daba7f7effa0284b","ChargeDeviceRef":"100_10110","ChargeDeviceName":"NCP Grosvenor Hill","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.511188","Longitude":"-0.146116","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"21 Grosvenor Hill","DoubleDependantLocality":"Mayfair","DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 3QQ","Country":"gb"},"LocationShortDescription":"21 Grosvenor Hill, Westminster","LocationLongDescription":"21 Grosvenor Hill, Westminster, London, W1K 3QQ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"62021a18331216014fee6916d6ee9584","ChargeDeviceRef":"200_10206","ChargeDeviceName":"NCP High Barnet Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.649922","Longitude":"-0.193368","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Barnet Hill","DoubleDependantLocality":null,"DependantLocality":"Barnet","PostTown":"London","PostCode":"EN5 5RP","Country":"gb"},"LocationShortDescription":"Barnet Hill, Barnet","LocationLongDescription":"Barnet Hill, Barnet, London, EN5 5RP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f8905bd3df64ace64a68e154ba72f24c","ChargeDeviceRef":"200_10211","ChargeDeviceName":"NCP High Barnet Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.649867","Longitude":"-0.193284","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Barnet Hill","DoubleDependantLocality":null,"DependantLocality":"Barnet","PostTown":"London","PostCode":"EN5 5RP","Country":"gb"},"LocationShortDescription":"Barnet Hill, Barnet","LocationLongDescription":"Barnet Hill, Barnet, London, EN5 5RP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"19eca5979ccbb752778e6c5f090dc9b6","ChargeDeviceRef":"200_10209","ChargeDeviceName":"NCP High Barnet Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.649895","Longitude":"-0.193326","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Barnet Hill","DoubleDependantLocality":null,"DependantLocality":"Barnet","PostTown":"London","PostCode":"EN5 5RP","Country":"gb"},"LocationShortDescription":"Barnet Hill, Barnet","LocationLongDescription":"Barnet Hill, Barnet, London, EN5 5RP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ccb1d57d7fa17c6bec423ffcabba9cd6","ChargeDeviceRef":"100_10221","ChargeDeviceName":"NCP High Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.333460","Longitude":"-0.269660","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"102 High Street","DoubleDependantLocality":"Epsom","DependantLocality":"Surrey","PostTown":"London","PostCode":"KT19 8EU","Country":"gb"},"LocationShortDescription":"102 High Street, Surrey","LocationLongDescription":"102 High Street, Surrey, London, KT19 8EU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e7023ba77a45f7e84c5ee8a28dd63585","ChargeDeviceRef":"100_10113","ChargeDeviceName":"NCP Hilton Hotel","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.505625","Longitude":"-0.149152","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"22 Park Lane","DoubleDependantLocality":"Mayfair","DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 1BE","Country":"gb"},"LocationShortDescription":"22 Park Lane, Westminster","LocationLongDescription":"22 Park Lane, Westminster, London, W1K 1BE"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"Out of service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"90306a0237c000d33f4dbd3f8f41ba7c","ChargeDeviceRef":"200_10200","ChargeDeviceName":"NCP Hounslow West Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.472886","Longitude":"-0.384851","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Bath Road","DoubleDependantLocality":null,"DependantLocality":"Hounslow","PostTown":"London","PostCode":"TW3 3DH","Country":"gb"},"LocationShortDescription":"Bath Road, Hounslow","LocationLongDescription":"Bath Road, Hounslow, London, TW3 3DH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3596c80a46918e6dde2f3c37290cba47","ChargeDeviceRef":"200_10202","ChargeDeviceName":"NCP Hounslow West Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.472842","Longitude":"-0.384896","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Bath Road","DoubleDependantLocality":null,"DependantLocality":"Hounslow","PostTown":"London","PostCode":"TW3 3DH","Country":"gb"},"LocationShortDescription":"Bath Road, Hounslow","LocationLongDescription":"Bath Road, Hounslow, London, TW3 3DH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6f518c31f6baa365f55c38d11cc349d1","ChargeDeviceRef":"200_10201","ChargeDeviceName":"NCP Hounslow West Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.472869","Longitude":"-0.384881","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Bath Road","DoubleDependantLocality":null,"DependantLocality":"Hounslow","PostTown":"London","PostCode":"TW3 3DH","Country":"gb"},"LocationShortDescription":"Bath Road, Hounslow","LocationLongDescription":"Bath Road, Hounslow, London, TW3 3DH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"952575f59148e0a9ceb364fdba14f8c5","ChargeDeviceRef":"100_10199","ChargeDeviceName":"NCP Lawn House Close","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.500274","Longitude":"-0.010735","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Lawn House Close","DoubleDependantLocality":null,"DependantLocality":"Tower Hamlets","PostTown":"London","PostCode":"E14 9YQ","Country":"gb"},"LocationShortDescription":"Lawn House Close, Tower Hamlets","LocationLongDescription":"Lawn House Close, Tower Hamlets, London, E14 9YQ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a5b93aaec935a59987f8a5f2280e7cd7","ChargeDeviceRef":"100_10224","ChargeDeviceName":"NCP Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.514844","Longitude":"-0.160136","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Great Cumberland Place","DoubleDependantLocality":"Greenwich","DependantLocality":"Westminster","PostTown":"London","PostCode":"W1H 7LB","Country":"gb"},"LocationShortDescription":"Great Cumberland Place, Westminster","LocationLongDescription":"Great Cumberland Place, Westminster, London, W1H 7LB"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6b050305727cf58f619ee76f40697abf","ChargeDeviceRef":"100_10109","ChargeDeviceName":"NCP Marylebone Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.522714","Longitude":"-0.159098","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"170 Marylebone Road","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"NW1 5AR","Country":"gb"},"LocationShortDescription":"170 Marylebone Road, Westminster","LocationLongDescription":"170 Marylebone Road, Westminster, London, NW1 5AR"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"cb3ce9b06932da6faaa7fc70d5b5d2f4","ChargeDeviceRef":"100_10167","ChargeDeviceName":"NCP Marylebone Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.522660","Longitude":"-0.159085","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"170 Marylebone Road","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"NW1 5AR","Country":"gb"},"LocationShortDescription":"170 Marylebone Road, Westminster","LocationLongDescription":"170 Marylebone Road, Westminster, London, NW1 5AR"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4454c95ca2b2b298057cbcb3bdcbb566","ChargeDeviceRef":"200_10207","ChargeDeviceName":"NCP North Greenwich Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.498749","Longitude":"0.003866","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"5 Millenium Way","DoubleDependantLocality":null,"DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 0PH","Country":"gb"},"LocationShortDescription":"5 Millenium Way, Greenwich","LocationLongDescription":"5 Millenium Way, Greenwich, London, SE10 0PH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"75429d136f65d2d6168b9b6c5f6ec951","ChargeDeviceRef":"200_10210","ChargeDeviceName":"NCP North Greenwich Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.498721","Longitude":"0.003922","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"5 Millenium Way","DoubleDependantLocality":null,"DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 0PH","Country":"gb"},"LocationShortDescription":"5 Millenium Way, Greenwich","LocationLongDescription":"5 Millenium Way, Greenwich, London, SE10 0PH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d74a214501c1c40b2c77e995082f3587","ChargeDeviceRef":"200_10208","ChargeDeviceName":"NCP North Greenwich Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.498704","Longitude":"0.003835","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"5 Millenium Way","DoubleDependantLocality":null,"DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 0PH","Country":"gb"},"LocationShortDescription":"5 Millenium Way, Greenwich","LocationLongDescription":"5 Millenium Way, Greenwich, London, SE10 0PH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d14388bb836687ff2b16b7bee6bab182","ChargeDeviceRef":"100_10176","ChargeDeviceName":"NCP Park Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.525931","Longitude":"-0.162384","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Rossmore Court","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"NW1 6XZ","Country":"gb"},"LocationShortDescription":"Rossmore Court, Westminster","LocationLongDescription":"Rossmore Court, Westminster, London, NW1 6XZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"861637a425ef06e6d539aaaff113d1d5","ChargeDeviceRef":"100_10100","ChargeDeviceName":"NCP Pavillion Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.499682","Longitude":"-0.160689","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"28 Pavillion Road","DoubleDependantLocality":"Knightsbridge","DependantLocality":"Kensington and Chelsea","PostTown":"London","PostCode":"SW1X 0HH","Country":"gb"},"LocationShortDescription":"28 Pavillion Road, Kensington and Chelsea","LocationLongDescription":"28 Pavillion Road, Kensington and Chelsea, London, SW1X 0HH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"bcfa8a783aaf938cdef361634d5f9289","ChargeDeviceRef":"100_10112","ChargeDeviceName":"NCP Portman Square","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.516570","Longitude":"-0.157832","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Gloucester Place","DoubleDependantLocality":"Marble Arch","DependantLocality":"Westminster","PostTown":"London","PostCode":"W1H 7BG","Country":"gb"},"LocationShortDescription":"Gloucester Place, Westminster","LocationLongDescription":"Gloucester Place, Westminster, London, W1H 7BG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6562c5c1f33db6e05a082a88cddab5ea","ChargeDeviceRef":"100_10107","ChargeDeviceName":"NCP Portman Square","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.516570","Longitude":"-0.157803","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Gloucester Place","DoubleDependantLocality":"Marble Arch","DependantLocality":"Westminster","PostTown":"London","PostCode":"W1H 7BG","Country":"gb"},"LocationShortDescription":"Gloucester Place, Westminster","LocationLongDescription":"Gloucester Place, Westminster, London, W1H 7BG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f1920129f9c75b3d604ea4874e120736","ChargeDeviceRef":"100_10123","ChargeDeviceName":"NCP Richmond Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.462537","Longitude":"-0.300930","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"The Quadrant","DoubleDependantLocality":"Kew Road","DependantLocality":"Richmond upon Thames","PostTown":"London","PostCode":"TW9 1DN","Country":"gb"},"LocationShortDescription":"The Quadrant, Richmond upon Thames","LocationLongDescription":"The Quadrant, Richmond upon Thames, London, TW9 1DN"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e9dae45ec08b498f7e1af247757c9b35","ChargeDeviceRef":"100_10114","ChargeDeviceName":"NCP Saffron Hill","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.521198","Longitude":"-0.106791","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"St Cross Street","DoubleDependantLocality":null,"DependantLocality":"Camden","PostTown":"London","PostCode":"EC1N 8XA","Country":"gb"},"LocationShortDescription":"St Cross Street, Camden","LocationLongDescription":"St Cross Street, Camden, London, EC1N 8XA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"bfd2308e9e75263970f8079115edebbd","ChargeDeviceRef":"100_10119","ChargeDeviceName":"NCP Shaftesbury","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.516387","Longitude":"-0.125237","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Museum Street","DoubleDependantLocality":"Holborn","DependantLocality":"Camden","PostTown":"London","PostCode":"WC1A 1JP","Country":"gb"},"LocationShortDescription":"Museum Street, Camden","LocationLongDescription":"Museum Street, Camden, London, WC1A 1JP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"df6c9756b2334cc5008c115486124bfe","ChargeDeviceRef":"100_10124","ChargeDeviceName":"NCP Shaftesbury","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.516402","Longitude":"-0.125092","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Museum Street","DoubleDependantLocality":"Holborn","DependantLocality":"Camden","PostTown":"London","PostCode":"WC1A 1JP","Country":"gb"},"LocationShortDescription":"Museum Street, Camden","LocationLongDescription":"Museum Street, Camden, London, WC1A 1JP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0b24d8469d6c1277a4acb549d97b8a25","ChargeDeviceRef":"100_10370","ChargeDeviceName":"NCP Sherwood Court","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.518164","Longitude":"-0.163115","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Shouldham Street","DoubleDependantLocality":"Corner of Bryanston Place","DependantLocality":"Westminster","PostTown":"London","PostCode":"W1H 5FE","Country":"gb"},"LocationShortDescription":"Shouldham Street, Westminster","LocationLongDescription":"Shouldham Street, Westminster, London, W1H 5FE"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"31784d9fc1fa0d25d04eae50ac9bf787","ChargeDeviceRef":"100_10390","ChargeDeviceName":"NCP Snowsfield","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.501335","Longitude":"-0.086895","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Kipling Street","DoubleDependantLocality":null,"DependantLocality":"Southwark","PostTown":"London","PostCode":"SE1 3RU","Country":"gb"},"LocationShortDescription":"Kipling Street, Southwark","LocationLongDescription":"Kipling Street, Southwark, London, SE1 3RU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ddac1f6f13bb372a177804adcd3b8a31","ChargeDeviceRef":"100_10111","ChargeDeviceName":"NCP Snowsfield","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.501348","Longitude":"-0.087197","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Kipling Street","DoubleDependantLocality":null,"DependantLocality":"Southwark","PostTown":"London","PostCode":"SE1 3RU","Country":"gb"},"LocationShortDescription":"Kipling Street, Southwark","LocationLongDescription":"Kipling Street, Southwark, London, SE1 3RU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f89394c979b34a25cc4ff8e11234fbfb","ChargeDeviceRef":"100_10179","ChargeDeviceName":"NCP St James Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.408170","Longitude":"-0.304139","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"St James Road","DoubleDependantLocality":null,"DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT1 2BA","Country":"gb"},"LocationShortDescription":"St James Road, Kingston upon Thames","LocationLongDescription":"St James Road, Kingston upon Thames, London, KT1 2BA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"70b8fe090143d5778c8a26ae17e21df5","ChargeDeviceRef":"100_10180","ChargeDeviceName":"NCP St James Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.408144","Longitude":"-0.304140","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"St James Road","DoubleDependantLocality":null,"DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT1 2BA","Country":"gb"},"LocationShortDescription":"St James Road, Kingston upon Thames","LocationLongDescription":"St James Road, Kingston upon Thames, London, KT1 2BA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c2890d44d06bafb6c7b4aa194857ccbc","ChargeDeviceRef":"100_10133","ChargeDeviceName":"NCP Victoria","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.491892","Longitude":"-0.150213","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Semley Place","DoubleDependantLocality":"Victoria","DependantLocality":"Westminster","PostTown":"London","PostCode":"SW1W 9QL","Country":"gb"},"LocationShortDescription":"Semley Place, Westminster","LocationLongDescription":"Semley Place, Westminster, London, SW1W 9QL"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3ac48664b7886cf4e4ab4aba7e6b6bc9","ChargeDeviceRef":"100_10184","ChargeDeviceName":"NCP Vintry Thames Exchange","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.510372","Longitude":"-0.092396","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Bell Wharf Lane","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC4R 3TB","Country":"gb"},"LocationShortDescription":"Bell Wharf Lane, City of London","LocationLongDescription":"Bell Wharf Lane, City of London, London, EC4R 3TB"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"2f3926f0a9613f3c3cc21d52a3cdb4d9","ChargeDeviceRef":"100_10183","ChargeDeviceName":"NCP Vintry Thames Exchange","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.510372","Longitude":"-0.092396","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Bell Wharf Lane","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC4R 3TB","Country":"gb"},"LocationShortDescription":"Bell Wharf Lane, City of London","LocationLongDescription":"Bell Wharf Lane, City of London, London, EC4R 3TB"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f1298750ed09618717f9c10ea8d1d3b0","ChargeDeviceRef":"100_10196","ChargeDeviceName":"NCP Water Gardens","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517559","Longitude":"-0.166959","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Burwood Place","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W2 2HN","Country":"gb"},"LocationShortDescription":"Burwood Place, Westminster","LocationLongDescription":"Burwood Place, Westminster, London, W2 2HN"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c78c347465f4775425c059ea101c131f","ChargeDeviceRef":"100_10138","ChargeDeviceName":"NCP Water Gardens","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517614","Longitude":"-0.167029","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Burwood Place","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W2 2HN","Country":"gb"},"LocationShortDescription":"Burwood Place, Westminster","LocationLongDescription":"Burwood Place, Westminster, London, W2 2HN"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"43cf3ae60279360eab2d678461a565c3","ChargeDeviceRef":"200_10205","ChargeDeviceName":"NCP Watford Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.656587","Longitude":"-0.417855","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Cassiobury Park Avenue","DoubleDependantLocality":null,"DependantLocality":"Watford","PostTown":"Watford","PostCode":"WD18","Country":"gb"},"LocationShortDescription":"Cassiobury Park Avenue, Watford","LocationLongDescription":"Cassiobury Park Avenue, Watford, Watford, WD18"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6ba1085b788407963fe0e89c699a7396","ChargeDeviceRef":"200_10204","ChargeDeviceName":"NCP Watford Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.656578","Longitude":"-0.417855","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Cassiobury Park Avenue","DoubleDependantLocality":null,"DependantLocality":"Watford","PostTown":"Watford","PostCode":"WD18","Country":"gb"},"LocationShortDescription":"Cassiobury Park Avenue, Watford","LocationLongDescription":"Cassiobury Park Avenue, Watford, Watford, WD18"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"33805671920f0d02e6d18f630985aace","ChargeDeviceRef":"200_10203","ChargeDeviceName":"NCP Watford Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.656569","Longitude":"-0.417855","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Cassiobury Park Avenue","DoubleDependantLocality":null,"DependantLocality":"Watford","PostTown":"Watford","PostCode":"WD18","Country":"gb"},"LocationShortDescription":"Cassiobury Park Avenue, Watford","LocationLongDescription":"Cassiobury Park Avenue, Watford, Watford, WD18"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e2c4a40d50b47094f571e40efead3900","ChargeDeviceRef":"100_10222","ChargeDeviceName":"NCP West 12 Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.505419","Longitude":"-0.229580","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"2 Charecroft Way","DoubleDependantLocality":"Shepherds Bush","DependantLocality":"Hammersmith & Fulham","PostTown":"London","PostCode":"W12 8PP","Country":"gb"},"LocationShortDescription":"2 Charecroft Way, Hammersmith & Fulham","LocationLongDescription":"2 Charecroft Way, Hammersmith & Fulham, London, W12 8PP"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"41c576a3bac4220845f9427b002a2a9d","ChargeDeviceRef":"100_10154","ChargeDeviceName":"NCP Whitgift","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.377710","Longitude":"-0.100043","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Wellesley Road","DoubleDependantLocality":"0","DependantLocality":"Croydon","PostTown":"London","PostCode":"CR0 1UP","Country":"gb"},"LocationShortDescription":"Wellesley Road, Croydon","LocationLongDescription":"Wellesley Road, Croydon, London, CR0 1UP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"fa131721954c3ddae16ee67620ffb2e0","ChargeDeviceRef":"100_10187","ChargeDeviceName":"NCP Whitgift","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.377765","Longitude":"-0.100069","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Wellesley Road","DoubleDependantLocality":"0","DependantLocality":"Croydon","PostTown":"London","PostCode":"CR0 1UP","Country":"gb"},"LocationShortDescription":"Wellesley Road, Croydon","LocationLongDescription":"Wellesley Road, Croydon, London, CR0 1UP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4ef1477dc99fb623fd5d06dc4b26d1aa","ChargeDeviceRef":"100_10188","ChargeDeviceName":"NCP Woburn Place","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.523922","Longitude":"-0.126340","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Coram Street","DoubleDependantLocality":"0","DependantLocality":"Camden","PostTown":"London","PostCode":"WC1H 0ND","Country":"gb"},"LocationShortDescription":"Coram Street, Camden","LocationLongDescription":"Coram Street, Camden, London, WC1H 0ND"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"cfe912f5cb3aa572bd1c9ae2a9b82207","ChargeDeviceRef":"100_10189","ChargeDeviceName":"NCP Woburn Place","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.523931","Longitude":"-0.126311","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Coram Street","DoubleDependantLocality":"0","DependantLocality":"Camden","PostTown":"London","PostCode":"WC1H 0ND","Country":"gb"},"LocationShortDescription":"Coram Street, Camden","LocationLongDescription":"Coram Street, Camden, London, WC1H 0ND"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"501627aa14e37bd1d4143159e0e9620f","ChargeDeviceRef":"100_10175","ChargeDeviceName":"NCP Young Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.501318","Longitude":"-0.189511","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"19-27 Young Street","DoubleDependantLocality":"Kensington","DependantLocality":"Kensington and Chelsea","PostTown":"London","PostCode":"W8 5EH","Country":"gb"},"LocationShortDescription":"19-27 Young Street, Kensington and Chelsea","LocationLongDescription":"19-27 Young Street, Kensington and Chelsea, London, W8 5EH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f58c9875ac84dfe1fbe91b918773d050","ChargeDeviceRef":"100_10174","ChargeDeviceName":"NCP Young Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.501282","Longitude":"-0.189484","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"19-27 Young Street","DoubleDependantLocality":"Kensington","DependantLocality":"Kensington and Chelsea","PostTown":"London","PostCode":"W8 5EH","Country":"gb"},"LocationShortDescription":"19-27 Young Street, Kensington and Chelsea","LocationLongDescription":"19-27 Young Street, Kensington and Chelsea, London, W8 5EH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"8e0384779e58ce2af40eb365b318cc32","ChargeDeviceRef":"10036","ChargeDeviceName":"Newcastle City Council Condercum Road Depot","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.973104","Longitude":"-1.661165","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Newcastle City Council Condercum Road Depot","Street":null,"DoubleDependantLocality":"Condercum Road","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE4 8XN","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Newcastle City Council Condercum Road Depot"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"124c3e4ada4a529aa0fedece80bb42ab","ChargeDeviceRef":"10055","ChargeDeviceName":"Newcastle City Council Condercum Road Depot","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.973100","Longitude":"-1.661135","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Newcastle City Council Condercum Road Depot","Street":null,"DoubleDependantLocality":"Condercum Road","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE4 8XN","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Newcastle City Council Condercum Road Depot"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"785ca71d2c85e3f3774baaf438c5c6eb","ChargeDeviceRef":"10002","ChargeDeviceName":"Newcastle Civic Centre Surface","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.978703","Longitude":"-1.610728","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Newcastle Civic Centre Surface","Street":null,"DoubleDependantLocality":"Surface Car Park","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 8PP","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Newcastle Civic Centre Surface"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"13bf4a96378f3854bcd9792d132eff9f","ChargeDeviceRef":"10005","ChargeDeviceName":"Newcastle Civic Centre Surface","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.978705","Longitude":"-1.610675","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Newcastle Civic Centre Surface","Street":null,"DoubleDependantLocality":"Surface Car Park","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 8PP","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Newcastle Civic Centre Surface"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f1ababf130ee6a25f12da7478af8f1ac","ChargeDeviceRef":"10006","ChargeDeviceName":"Newcastle Civic Centre Surface","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.978705","Longitude":"-1.610728","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Newcastle Civic Centre Surface","Street":null,"DoubleDependantLocality":"Surface Car Park","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 8PP","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Newcastle Civic Centre Surface"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"43b9787b8a0cd00a8115c14b2b7c3a27","ChargeDeviceRef":"10003","ChargeDeviceName":"Newcastle Civic Centre Surface","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.978705","Longitude":"-1.610700","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Newcastle Civic Centre Surface","Street":null,"DoubleDependantLocality":"Surface Car Park","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 8PP","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Newcastle Civic Centre Surface"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"fc146be0b230d7e0a92e66a6114b840d","ChargeDeviceRef":"10004","ChargeDeviceName":"Newcastle Civic Centre Surface","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.978701","Longitude":"-1.610728","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Newcastle Civic Centre Surface","Street":null,"DoubleDependantLocality":"Surface Car Park","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 8PP","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Newcastle Civic Centre Surface"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c457d7ae48d08a6b84bc0b1b9bd7d474","ChargeDeviceRef":"10007","ChargeDeviceName":"Newcastle Civic Centre Underground","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.978505","Longitude":"-1.610028","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Newcastle Civic Centre Underground","Street":null,"DoubleDependantLocality":"Underground Car Park","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 8PP","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Newcastle Civic Centre Underground"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"d4b5b5c16df28e61124e13181db7774c","ChargeDeviceRef":"10009","ChargeDeviceName":"Newcastle Civic Centre Underground","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.978509","Longitude":"-1.610028","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Newcastle Civic Centre Underground","Street":null,"DoubleDependantLocality":"Underground Car Park","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 8PP","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Newcastle Civic Centre Underground"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"1f8fe28e9283d7b5300af087a298f200","ChargeDeviceRef":"10008","ChargeDeviceName":"Newcastle Civic Centre Underground","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.978507","Longitude":"-1.610028","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Newcastle Civic Centre Underground","Street":null,"DoubleDependantLocality":"Underground Car Park","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 8PP","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Newcastle Civic Centre Underground"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"0e79548081b4bd0df3c77c5ba2c23289","ChargeDeviceRef":"11122","ChargeDeviceName":"Newcastle General Hospital","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.978794","Longitude":"-1.643839","Address":{"SubBuildingName":null,"BuildingName":"Newcastle General Hospital","BuildingNumber":null,"Thoroughfare":null,"Street":"5 barrack Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Newcastle Upon Tyne","PostCode":"NE4 5PL ","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Newcastle General Hospital"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"290ff0feb094e836744d3e2403d993fd","ChargeDeviceRef":"20088","ChargeDeviceName":"Newcastle Shopping Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.980094","Longitude":"-1.573052","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Newcastle Shopping Park","Street":null,"DoubleDependantLocality":"Foss Way. Byker","DependantLocality":"Newcastle","PostTown":null,"PostCode":"NE6 2US","Country":"gb"},"LocationShortDescription":"Newcastle","LocationLongDescription":"Newcastle Shopping Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"d903e9608cfbf08910611e4346a0ba44","ChargeDeviceRef":"11160","ChargeDeviceName":"Newcastle University Business School","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.974156","Longitude":"-1.622987","Address":{"SubBuildingName":null,"BuildingName":"Uni Business School","BuildingNumber":null,"Thoroughfare":null,"Street":"Devonshire Terrace","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Newcastle Upon Tyne","PostCode":"NE1 4SE","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Newcastle University Business School"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"bf40f0ab4e5e63171dd16036913ae828","ChargeDeviceRef":"11056","ChargeDeviceName":"Newcastle University Devonshire Building","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.981209","Longitude":"-1.613098","Address":{"SubBuildingName":null,"BuildingName":"Uni Devonshire Building","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Newcastle","PostCode":"NE1 7RU","Country":"gb"},"LocationShortDescription":"Newcastle","LocationLongDescription":"Newcastle University Devonshire Building"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"1fd09c5f59a8ff35d499c0ee25a1d47e","ChargeDeviceRef":"10026","ChargeDeviceName":"Newcastle University Visitors Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.979692","Longitude":"-1.613544","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Newcastle University Visitors Car Park","Street":null,"DoubleDependantLocality":"Kings Gate Lane","DependantLocality":"Newcastle","PostTown":null,"PostCode":"NE1 7RU","Country":"gb"},"LocationShortDescription":"Newcastle","LocationLongDescription":"Newcastle University Visitors Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"d5d7f5bba709f5cbbe1f74977096feb3","ChargeDeviceRef":"SC41","ChargeDeviceName":"Newry Train Station","ChargeDeviceText":"Newry Train Station car park","ChargeDeviceLocation":{"Latitude":"54.189322","Longitude":"-6.361695","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Newry Train Station Car Park","LocationLongDescription":"Newry Train Station Car Park. Usual parking restrictions and charges apply."},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Translink","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e586a4f55fb43a540c2e9dab45e00f53","ChargeDeviceRef":"40030","ChargeDeviceName":"NGP Park and Ride","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.034029","Longitude":"-1.645223","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"NGP Park and Ride","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle","PostTown":null,"PostCode":"NE13 9AA","Country":"gb"},"LocationShortDescription":"Newcastle","LocationLongDescription":"NGP Park and Ride"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"6dbbe6abe5f14af882ff977fc3f35501","ChargeDeviceRef":"40029","ChargeDeviceName":"NGP Park and Ride","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.034129","Longitude":"-1.645223","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"NGP Park and Ride","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle","PostTown":null,"PostCode":"NE13 9AA","Country":"gb"},"LocationShortDescription":"Newcastle","LocationLongDescription":"NGP Park and Ride"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"ccf8111910291ba472b385e9c5f59099","ChargeDeviceRef":"40028","ChargeDeviceName":"NGP Park and Ride","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.034059","Longitude":"-1.645223","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"NGP Park and Ride","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle","PostTown":null,"PostCode":"NE13 9AA","Country":"gb"},"LocationShortDescription":"Newcastle","LocationLongDescription":"NGP Park and Ride"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"2cbd9c540641923027adb8ab89decc05","ChargeDeviceRef":"40002","ChargeDeviceName":"Nile Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.905552","Longitude":"-1.376370","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Nile Street","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR1 1ES","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nile Street"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"54fe976ba170c19ebae453679b362263","ChargeDeviceRef":"40001","ChargeDeviceName":"Nile Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.905532","Longitude":"-1.376370","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Nile Street","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR1 1ES","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nile Street"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"6fbd841e2e4b2938351a4f9b68f12e6b","ChargeDeviceRef":"11132","ChargeDeviceName":"Nissan Battery Plant Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.923874","Longitude":"-1.463665","Address":{"SubBuildingName":null,"BuildingName":"Nissan Battery Plant Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan Battery Plant Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"69f62956429865909921fa916d61c1f8","ChargeDeviceRef":"11131","ChargeDeviceName":"Nissan Battery Plant Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.923774","Longitude":"-1.463665","Address":{"SubBuildingName":null,"BuildingName":"Nissan Battery Plant Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan Battery Plant Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"31c0b36aef265d9221af80872ceb62f9","ChargeDeviceRef":"PP-12546","ChargeDeviceName":"Nissan Blackshaws","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.399446","Longitude":"-1.690387","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"NE66 2EP","Country":"gb"},"LocationShortDescription":"Nissan Blackshaws","LocationLongDescription":"Nissan Blackshaws, Birch Close, Lionheart Enterprise Park, Alnwick, Northumberland"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"101951fe7ebe7bd8c77d14f75746b4bc","ChargeDeviceRef":"SGTE - 110200018","ChargeDeviceName":"Nissan Colliers Birmingham","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.452155","Longitude":"-1.832009","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":"884","Thoroughfare":null,"Street":"Warwick Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Tyseley","PostCode":"B11 2ES","Country":"gb"},"LocationShortDescription":"Public access
free parking
Intended for Nissan customers
Please report to reception","LocationLongDescription":"One CHAdeMO compliant charging point with one JARI level 3 connecto rated at 50kW DC (mode 4; quick charge). Fitted under Plugged-In Midlands\r\n"},"Connector":[{"ConnectorId":"0","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":null,"RatedOutputCurrent":"125","ChargeMethod":"DC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":"01273 704775","ContactName":"Terry Brightmore"},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"03b264c595403666634ac75d828439bc","ChargeDeviceRef":"10080","ChargeDeviceName":"Nissan EAST NMUK Offices","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.921369","Longitude":"-1.467766","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Nissan EAST NMUK Offices","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan EAST NMUK Offices"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"For employees and visitors use only.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"5ef99d16d1954578b0df2f38b866449b","ChargeDeviceRef":"11134","ChargeDeviceName":"Nissan EAST NMUK Offices","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.921499","Longitude":"-1.467766","Address":{"SubBuildingName":null,"BuildingName":"Nissan EAST NMUK Offices","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan EAST NMUK Offices"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"58155fc7f528a19b9fc3599b65047290","ChargeDeviceRef":"11135","ChargeDeviceName":"Nissan EAST NMUK Offices","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.921299","Longitude":"-1.467766","Address":{"SubBuildingName":null,"BuildingName":"Nissan EAST NMUK Offices","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan EAST NMUK Offices"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a35fe7f7fe8217b4369a0af4244d1fca","ChargeDeviceRef":"11083","ChargeDeviceName":"Nissan EAST NMUK Offices","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.921399","Longitude":"-1.467766","Address":{"SubBuildingName":null,"BuildingName":"Nissan EAST NMUK Offices","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan EAST NMUK Offices"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"415585bd389b69659223807d77a96791","ChargeDeviceRef":"10079","ChargeDeviceName":"Nissan EAST NMUK Offices","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.921339","Longitude":"-1.467766","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Nissan EAST NMUK Offices","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan EAST NMUK Offices"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"For employees and visitors use only.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"130ea938864f051b9a40c85b6a713306","ChargeDeviceRef":"11133","ChargeDeviceName":"Nissan EAST NMUK Offices","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.921399","Longitude":"-1.467766","Address":{"SubBuildingName":null,"BuildingName":"Nissan EAST NMUK Offices","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan EAST NMUK Offices"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"fe4b8556000d0f0cae99daa5c5c5a410","ChargeDeviceRef":"11141","ChargeDeviceName":"Nissan Hangar Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.921675","Longitude":"-1.471535","Address":{"SubBuildingName":null,"BuildingName":"Nissan Hangar Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan Hangar Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c9319967c038f9b923068dabdf60cfe3","ChargeDeviceRef":"11142","ChargeDeviceName":"Nissan Hangar Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.921675","Longitude":"-1.471535","Address":{"SubBuildingName":null,"BuildingName":"Nissan Hangar Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan Hangar Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"717729ce391c20ef3e722c3e6ef79a58","ChargeDeviceRef":"11143","ChargeDeviceName":"Nissan Hangar Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.921675","Longitude":"-1.471535","Address":{"SubBuildingName":null,"BuildingName":"Nissan Hangar Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan Hangar Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a19744e268754fb0148b017647355b7b","ChargeDeviceRef":"11140","ChargeDeviceName":"Nissan Hangar Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.921675","Longitude":"-1.471535","Address":{"SubBuildingName":null,"BuildingName":"Nissan Hangar Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan Hangar Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"d58f855fdcc76daf232aee454c4e59f7","ChargeDeviceRef":"PP-12487","ChargeDeviceName":"Nissan Holdcroft Stoke-On-Trent","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"53.024924","Longitude":"-2.154908","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"ST1 6AL","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"ST1 6AL","Country":"gb"},"LocationShortDescription":"Nissan Holdcroft Stoke-On-Trent","LocationLongDescription":"Nissan Holdcroft Stoke-On-Trent, Leek Road, Stoke-On-Trent"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4c2e5eaae9152079b9e95845750bb9ab","ChargeDeviceRef":"PP-12300","ChargeDeviceName":"Nissan HQ A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.625653","Longitude":"-0.506460","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"WD3 9YS","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"WD3 9YS","Country":"gb"},"LocationShortDescription":"Nissan HQ A","LocationLongDescription":"Located in Nissan HQ's car park in Maple Cross"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f269cb7796c3319c9aa4d146b52139e6","ChargeDeviceRef":"PP-12303","ChargeDeviceName":"Nissan HQ B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.625607","Longitude":"-0.505838","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"WD3 9YS","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"WD3 9YS","Country":"gb"},"LocationShortDescription":"Located in Nissan HQ's car park","LocationLongDescription":"Located in Nissan HQ's car park in Maple Cross"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8f1fa0193ca2b5d2fa0695827d8270e9","ChargeDeviceRef":"11139","ChargeDeviceName":"Nissan Main Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.922144","Longitude":"-1.466891","Address":{"SubBuildingName":null,"BuildingName":"Nissan Main Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan Main Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4a3050ae2c77da4f9c90e2e58e8e520f","ChargeDeviceRef":"11136","ChargeDeviceName":"Nissan Main Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.922144","Longitude":"-1.466891","Address":{"SubBuildingName":null,"BuildingName":"Nissan Main Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan Main Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"482db0ecc10b8a9984ae850c9ada9899","ChargeDeviceRef":"11137","ChargeDeviceName":"Nissan Main Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.922144","Longitude":"-1.466891","Address":{"SubBuildingName":null,"BuildingName":"Nissan Main Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan Main Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"26c0a195973b46ba52a013c89dd82315","ChargeDeviceRef":"11138","ChargeDeviceName":"Nissan Main Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.922144","Longitude":"-1.466891","Address":{"SubBuildingName":null,"BuildingName":"Nissan Main Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan Main Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"240ac9371ec2671ae99847c3ae2e6384","ChargeDeviceRef":"20010","ChargeDeviceName":"Nissan NMUK Test Track","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.909617","Longitude":"-1.468518","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Nissan NMUK Test Track","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR5 3NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan NMUK Test Track"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"For employees and visitors use only.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"50dd7100bcbd98c41b1179143a2325a4","ChargeDeviceRef":"PP-12614","ChargeDeviceName":"Nissan Wessex Bristol","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.464275","Longitude":"-2.587624","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Pennywell Road, Bristol","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"BS5 0TT","Country":"gb"},"LocationShortDescription":"Nissan Wessex Bristol","LocationLongDescription":"Nissan Wessex Bristol, Pennywell Road, Bristol"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"1d6408264d31d453d556c60fe7d0459e","ChargeDeviceRef":"10015","ChargeDeviceName":"Nissan WEST NMUK Reception","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.921977","Longitude":"-1.471437","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Nissan WEST NMUK Reception","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR53NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan WEST NMUK Reception"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"For employees and visitors use only.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"3202111cf90e7c816a472aaceb72b0df","ChargeDeviceRef":"11084","ChargeDeviceName":"Nissan WEST NMUK Reception","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.920977","Longitude":"-1.471437","Address":{"SubBuildingName":null,"BuildingName":"Nissan WEST NMUK Reception","BuildingNumber":null,"Thoroughfare":null,"Street":"Arrow Close","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR53NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan WEST NMUK Reception"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"2c27a260f16ad3098393cc529f391f4a","ChargeDeviceRef":"10014","ChargeDeviceName":"Nissan WEST NMUK Reception","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.920977","Longitude":"-1.471437","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Nissan WEST NMUK Reception","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR53NS","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Nissan WEST NMUK Reception"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"For employees and visitors use only.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"06f2e099b4f87109d52e15d7c05f0084","ChargeDeviceRef":"SGTE - 110200007\u00a0","ChargeDeviceName":"Nissan West Way Birmingham","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.577390","Longitude":"-1.883626","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":"127","Thoroughfare":null,"Street":"Chester Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Streetly","PostCode":"B74 2HE","Country":"gb"},"LocationShortDescription":"Public access
free parking
Intended for Nissan customers
Please report to reception","LocationLongDescription":"One CHAdeMO compliant charging point with one JARI level 3 connecto rated at 50kW DC (mode 4; quick charge). Fitted under Plugged-In Midlands\r\n"},"Connector":[{"ConnectorId":"0","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":null,"RatedOutputCurrent":"125","ChargeMethod":"DC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":"01273 704 775","ContactName":"Terry Brightmore"},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"77340c2e00e9e6ad1b2784dad06291ea","ChargeDeviceRef":"SGTE - 110200016","ChargeDeviceName":"Nissan West Way Stourbridge","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.473353","Longitude":"-2.139209","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Brettell Lane","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Dudley","PostCode":"DY5 3LS","Country":"gb"},"LocationShortDescription":"Public access
free parking
Intended for Nissan customers
Please report to reception","LocationLongDescription":"One CHAdeMO compliant charging point with one JARI level 3 connecto rated at 50kW DC (mode 4; quick charge). Fitted under Plugged-In Midlands\r\n"},"Connector":[{"ConnectorId":"0","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":null,"RatedOutputCurrent":"125","ChargeMethod":"DC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":"01273 704 775","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"7171e95248ff768e1ebee3edde01ea7a","ChargeDeviceRef":"PP-12489","ChargeDeviceName":"Nissan WLMG Mill Hill","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.604041","Longitude":"-0.239335","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"NW7 2QR","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"NW7 2QR","Country":"gb"},"LocationShortDescription":"NIssan WLMG Mill Hill","LocationLongDescription":"Nissan West London Motor Group, 517 Watford Way, London"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"5a5eab21ca2a8fef4af5e35709ecca15","ChargeDeviceRef":"PP-12485","ChargeDeviceName":"Nissan WLMG Reading","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.444058","Longitude":"-0.974264","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"RG2 0JZ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"RG2 0JZ","Country":"gb"},"LocationShortDescription":"Nissan WLMG Reading","LocationLongDescription":"Nissan WLMG Reading, Rose Kiln Lane, Reading, "},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"b3848d61bbbc6207c6668a8a9e2730ed","ChargeDeviceRef":"20025","ChargeDeviceName":"Norfolk Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.009919","Longitude":"-1.444305","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Norfolk Street","Street":null,"DoubleDependantLocality":null,"DependantLocality":"North Shields","PostTown":null,"PostCode":"NE30 1DB","Country":"gb"},"LocationShortDescription":"North Shields","LocationLongDescription":"Norfolk Street"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"351869bde8b9d6ad1e3090bd173f600d","ChargeDeviceRef":"20024","ChargeDeviceName":"Norfolk Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.009836","Longitude":"-1.444229","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Norfolk Street","Street":null,"DoubleDependantLocality":null,"DependantLocality":"North Shields","PostTown":null,"PostCode":"NE30 1DB","Country":"gb"},"LocationShortDescription":"North Shields","LocationLongDescription":"Norfolk Street"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"16d11e9595188dbad0418a85f0351aba","ChargeDeviceRef":"SCOT82","ChargeDeviceName":"North Ness","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"60.159000","Longitude":"-1.146200","Address":{"SubBuildingName":null,"BuildingName":"Council Headquarters","BuildingNumber":null,"Thoroughfare":null,"Street":"North Ness","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Lerwick","PostCode":"ZE1 0LZ","Country":"gb"},"LocationShortDescription":"North Ness","LocationLongDescription":"Contact David Polson on 01595 744225 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"999028872cfff7ae8ee330a33cbd3874","ChargeDeviceRef":"776","ChargeDeviceName":"North Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"50.918823","Longitude":"-0.453953","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"North Street Car Park","Street":null,"DoubleDependantLocality":"North Street","DependantLocality":"Storrington","PostTown":null,"PostCode":"RH20 4PA","Country":"gb"},"LocationShortDescription":"Storrington","LocationLongDescription":"North Street Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"e9470886ecab9743fb7ea59420c245d2","ChargeDeviceRef":"770","ChargeDeviceName":"North Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"50.918923","Longitude":"-0.453953","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"North Street Car Park","Street":null,"DoubleDependantLocality":"North Street","DependantLocality":"Storrington","PostTown":null,"PostCode":"RH20 4PA","Country":"gb"},"LocationShortDescription":"Storrington","LocationLongDescription":"North Street Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f0873a91b499e265ff6d78ff6e8985a0","ChargeDeviceRef":"20051","ChargeDeviceName":"Northumberland National Park Offices","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.966366","Longitude":"-2.098696","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Northumberland National Park Offices","Street":null,"DoubleDependantLocality":"Eastburn","DependantLocality":"South Park","PostTown":"Hexham","PostCode":"NE46 1BS","Country":"gb"},"LocationShortDescription":"South Park","LocationLongDescription":"Northumberland National Park Offices"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"0342c9a7b54450830e9727b98f8e3cb7","ChargeDeviceRef":"20019","ChargeDeviceName":"Northumberland National Park Offices","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.966366","Longitude":"-2.098796","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Northumberland National Park Offices","Street":null,"DoubleDependantLocality":"Eastburn","DependantLocality":"South Park","PostTown":"Hexham","PostCode":"NE46 1BS","Country":"gb"},"LocationShortDescription":"South Park","LocationLongDescription":"Northumberland National Park Offices"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"717d8b3d60d9eea997b35b02b6a4e867","ChargeDeviceRef":"11158","ChargeDeviceName":"Northumbria Police","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.031668","Longitude":"-1.580617","Address":{"SubBuildingName":null,"BuildingName":"Northumbria Police","BuildingNumber":null,"Thoroughfare":null,"Street":"Falconer Street","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Killingworth","PostCode":"NE12 6QN","Country":"gb"},"LocationShortDescription":"Killingworth","LocationLongDescription":"Northumbria Police"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"876e1c59023b1a0e95808168e1a8ff89","ChargeDeviceRef":"11077","ChargeDeviceName":"Northumbria University Business School","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.976439","Longitude":"-1.604224","Address":{"SubBuildingName":null,"BuildingName":"Uni Business School","BuildingNumber":null,"Thoroughfare":null,"Street":"Off A173","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Newcastle","PostCode":"NE1 8ST","Country":"gb"},"LocationShortDescription":"Newcastle","LocationLongDescription":"Northumbria University Business School"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"d2a2c1da2acde3ed27003dba9c3c1ccc","ChargeDeviceRef":"PP-12629","ChargeDeviceName":"Nuneaton Town Hall","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.521715","Longitude":"-1.467040","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Nuneaton Town Hall, Coton Road, Town Centre, Nuneaton","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CV11 5AA","Country":"gb"},"LocationShortDescription":"Nuneaton Town Hall","LocationLongDescription":"This post is in the Plugged in Midlands scheme. It is located at the rear of the car park between Riverside and town hall car parks."},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"28659414dab9eca0219dd592b8136434","ChargeDeviceRef":"200_20296","ChargeDeviceName":"O2 Arena Car Park 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.498093","Longitude":"0.004327","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"West Parkside","DoubleDependantLocality":"Car Park 1","DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 0BN","Country":"gb"},"LocationShortDescription":"West Parkside, Greenwich","LocationLongDescription":"West Parkside, Greenwich, London, SE10 0BN"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ed46558a56a4a26b96a68738a0d28273","ChargeDeviceRef":"200_20283","ChargeDeviceName":"O2 Arena Car Park 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.498198","Longitude":"0.004533","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"West Parkside","DoubleDependantLocality":"Car Park 1","DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 0BN","Country":"gb"},"LocationShortDescription":"West Parkside, Greenwich","LocationLongDescription":"West Parkside, Greenwich, London, SE10 0BN"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a613863f6a3ada47ae5bca2a558872d1","ChargeDeviceRef":"200_10351","ChargeDeviceName":"O2 Arena Car Park 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.498076","Longitude":"0.004298","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"West Parkside","DoubleDependantLocality":"Car Park 1","DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 0BN","Country":"gb"},"LocationShortDescription":"West Parkside, Greenwich","LocationLongDescription":"West Parkside, Greenwich, London, SE10 0BN"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"2f364281f619584f24f63a794a12e354","ChargeDeviceRef":"200_20216","ChargeDeviceName":"O2 Arena Car Park 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.498111","Longitude":"0.004357","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"West Parkside","DoubleDependantLocality":"Car Park 1","DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 0BN","Country":"gb"},"LocationShortDescription":"West Parkside, Greenwich","LocationLongDescription":"West Parkside, Greenwich, London, SE10 0BN"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a6197a578fe7778e8d49a95ac425bcfc","ChargeDeviceRef":"PP-12255","ChargeDeviceName":"Oaklands College","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.804528","Longitude":"-0.203676","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"AL8 6AH","Country":"gb"},"LocationShortDescription":"Oaklands College, Welwyn Garden City","LocationLongDescription":"CDA for Herts. Oaklands College, Welwyn Garden City Campus"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4424d2deec2f9468fb61e2db07ecd6b6","ChargeDeviceRef":"30025","ChargeDeviceName":"Ocean Park Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.936007","Longitude":"-1.371349","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Ocean Park Car Park","Street":null,"DoubleDependantLocality":"Lowry Road","DependantLocality":"Seaburn","PostTown":"Sunderland","PostCode":"SR6 8ZZ","Country":"gb"},"LocationShortDescription":"Seaburn","LocationLongDescription":"Ocean Park Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"e140dbab44e01e699491a59c9978b924","ChargeDeviceRef":"30024","ChargeDeviceName":"Ocean Park Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.936007","Longitude":"-1.371249","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Ocean Park Car Park","Street":null,"DoubleDependantLocality":"Lowry Road","DependantLocality":"Seaburn","PostTown":"Sunderland","PostCode":"SR6 8ZZ","Country":"gb"},"LocationShortDescription":"Seaburn","LocationLongDescription":"Ocean Park Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"747c1bcceb6109a4ef936bc70cfe67de","ChargeDeviceRef":"30023","ChargeDeviceName":"Ocean Park Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.936007","Longitude":"-1.371149","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Ocean Park Car Park","Street":null,"DoubleDependantLocality":"Lowry Road","DependantLocality":"Seaburn","PostTown":"Sunderland","PostCode":"SR6 8ZZ","Country":"gb"},"LocationShortDescription":"Seaburn","LocationLongDescription":"Ocean Park Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"aaebdb8bb6b0e73f6c3c54a0ab0c6415","ChargeDeviceRef":"300_10132","ChargeDeviceName":"Octink","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.483866","Longitude":"-0.314540","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"30 Commerce Road","DoubleDependantLocality":null,"DependantLocality":"Hounslow","PostTown":"London","PostCode":"TW8 8LE","Country":"gb"},"LocationShortDescription":"30 Commerce Road, Hounslow","LocationLongDescription":"30 Commerce Road, Hounslow, London, TW8 8LE"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a655fbe4b8d7439994aa37ddad80de56","ChargeDeviceRef":"SCOT51","ChargeDeviceName":"Old Academy","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"58.963600","Longitude":"-3.301400","Address":{"SubBuildingName":null,"BuildingName":"Old Academy","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Stromness","PostCode":"KW16 3AN","Country":"gb"},"LocationShortDescription":"Stromness, Orkney","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0af787945872196b42c9f73ead2565c8","ChargeDeviceRef":"30097","ChargeDeviceName":"Old Elvet","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.775196","Longitude":"-1.570360","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Old Elvet","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Durham","PostTown":null,"PostCode":"DN1 3HP","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"Old Elvet"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"7e3315fe390974fcf25e44a9445bd821","ChargeDeviceRef":"30096","ChargeDeviceName":"Old Elvet","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.775196","Longitude":"-1.570360","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Old Elvet","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Durham","PostTown":null,"PostCode":"DN1 3HP","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"Old Elvet"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"53fdae58e861476b182b0cd6beade809","ChargeDeviceRef":"20076","ChargeDeviceName":"Once Brewed Visitor Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.995776","Longitude":"-2.387882","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Once Brewed Visitor Centre","Street":null,"DoubleDependantLocality":"Military Road","DependantLocality":"Bardon Mill","PostTown":"Northumberland","PostCode":"NE47 7AN","Country":"gb"},"LocationShortDescription":"Bardon Mill","LocationLongDescription":"Once Brewed Visitor Centre"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"71463aaacf046fa24e7dfa4558607545","ChargeDeviceRef":"20015","ChargeDeviceName":"Once Brewed Visitor Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.995676","Longitude":"-2.387882","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Once Brewed Visitor Centre","Street":null,"DoubleDependantLocality":"Military Road","DependantLocality":"Bardon Mill","PostTown":"Northumberland","PostCode":"NE47 7AN","Country":"gb"},"LocationShortDescription":"Bardon Mill","LocationLongDescription":"Once Brewed Visitor Centre"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"2fd5d41ec6cfab47e32164d5624269b1","ChargeDeviceRef":"20035","ChargeDeviceName":"Orchard House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.856726","Longitude":"-2.357116","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Orchard House","Street":null,"DoubleDependantLocality":"Mohope","DependantLocality":"Hexham","PostTown":"Northumberland","PostCode":"NE47 8DQ","Country":"gb"},"LocationShortDescription":"Hexham","LocationLongDescription":"Orchard House"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"b28d7c6b6aec04f5525b453411ff4336","ChargeDeviceRef":"20034","ChargeDeviceName":"Orchard House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.856726","Longitude":"-2.357116","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Orchard House","Street":null,"DoubleDependantLocality":"Mohope","DependantLocality":"Hexham","PostTown":"Northumberland","PostCode":"NE47 8DQ","Country":"gb"},"LocationShortDescription":"Hexham","LocationLongDescription":"Orchard House"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"6d0c932802f6953f70eb20931645fa40","ChargeDeviceRef":"200_20298","ChargeDeviceName":"Orchard Village","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.528901","Longitude":"0.170659","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Holmeoak Ave","DoubleDependantLocality":"Rainham","DependantLocality":"Havering","PostTown":"London","PostCode":"RM138QB","Country":"gb"},"LocationShortDescription":"Holmeoak Ave, Havering","LocationLongDescription":"Holmeoak Ave, Havering, London, RM138QB"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"85e5526a360b0bcf082d8d42e7bf100b","ChargeDeviceRef":"200_20279","ChargeDeviceName":"Orchard Village","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.528936","Longitude":"0.170675","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Holmeoak Ave","DoubleDependantLocality":"Rainham","DependantLocality":"Havering","PostTown":"London","PostCode":"RM138QB","Country":"gb"},"LocationShortDescription":"Holmeoak Ave, Havering","LocationLongDescription":"Holmeoak Ave, Havering, London, RM138QB"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5c3b99e8f92532e5ad1556e53ceea00c","ChargeDeviceRef":"200_20294","ChargeDeviceName":"Orchard Village","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.528901","Longitude":"0.170659","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Holmeoak Ave","DoubleDependantLocality":"Rainham","DependantLocality":"Havering","PostTown":"London","PostCode":"RM138QB","Country":"gb"},"LocationShortDescription":"Holmeoak Ave, Havering","LocationLongDescription":"Holmeoak Ave, Havering, London, RM138QB"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f0f800c92d191d736c4411f3b3f8ef4a","ChargeDeviceRef":"200_20287","ChargeDeviceName":"Orchard Village","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.528936","Longitude":"0.170675","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Holmeoak Ave","DoubleDependantLocality":"Rainham","DependantLocality":"Havering","PostTown":"London","PostCode":"RM138QB","Country":"gb"},"LocationShortDescription":"Holmeoak Ave, Havering","LocationLongDescription":"Holmeoak Ave, Havering, London, RM138QB"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"eca89c0554ce99eaf250504971789ede","ChargeDeviceRef":"SCOT2","ChargeDeviceName":"Orchardbank Business House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"56.635227","Longitude":"-2.921634","Address":{"SubBuildingName":null,"BuildingName":"Orchardbank Business House","BuildingNumber":null,"Thoroughfare":null,"Street":"Orchardbank","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Forfar","PostCode":"DD8 1AX","Country":"gb"},"LocationShortDescription":"Orchardbank House, Forfar","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"da0b1b5bec71b468bcab872a64595541","ChargeDeviceRef":"SCOT1","ChargeDeviceName":"Orchardbank Business House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"56.635227","Longitude":"-2.921634","Address":{"SubBuildingName":null,"BuildingName":"Orchardbank Business House","BuildingNumber":null,"Thoroughfare":null,"Street":"Orchardbank","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Forfar","PostCode":"DD8 1AX","Country":"gb"},"LocationShortDescription":"Orchardbank House, Forfar","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"810dfbbebb17302018ae903e9cb7a483","ChargeDeviceRef":"SCOT54","ChargeDeviceName":"Orkney Islands Council","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"58.980900","Longitude":"-2.956400","Address":{"SubBuildingName":null,"BuildingName":"Orkney Islands Council","BuildingNumber":null,"Thoroughfare":null,"Street":"School Place","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Kirkwall","PostCode":"KW15 1NY","Country":"gb"},"LocationShortDescription":"Council, Kirkwall","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":null,"RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"533fa796b43291fc61a9e812a50c3fb6","ChargeDeviceRef":"PP-12363","ChargeDeviceName":"Orkney Islands Council","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"58.980574","Longitude":"-2.956374","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"KW15 1NY","Country":"gb"},"LocationShortDescription":"Orkney Islands Council","LocationLongDescription":"Orkney Islands Council "},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"b17c0907e67d868b4e0feb43dbbe6f11","ChargeDeviceRef":"30082","ChargeDeviceName":"Oyston Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.996443","Longitude":"-1.434304","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Oyston Street Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"South Shields","PostTown":null,"PostCode":"NE33 1AP","Country":"gb"},"LocationShortDescription":"South Shields","LocationLongDescription":"Oyston Street Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"e36258b3c74f08054a974a5fe1703f9c","ChargeDeviceRef":"30081","ChargeDeviceName":"Oyston Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.996443","Longitude":"-1.434204","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Oyston Street Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"South Shields","PostTown":null,"PostCode":"NE33 1AP","Country":"gb"},"LocationShortDescription":"South Shields","LocationLongDescription":"Oyston Street Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"72b386224056bf940cd5b01341f65e9d","ChargeDeviceRef":"SC04","ChargeDeviceName":"Palace Demense","ChargeDeviceText":"The Palace Demense car park, Armagh","ChargeDeviceLocation":{"Latitude":"54.340480","Longitude":"-6.651155","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Armagh","PostCode":"BT60 4EL","Country":"gb"},"LocationShortDescription":"Palace Demense","LocationLongDescription":"The Palace Demense car park, Armagh"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Armagh City and District Council","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"be7485be5b6eb3690efcbc9e95e8f15a","ChargeDeviceRef":"200_10356","ChargeDeviceName":"Palace Gardens Multistorey Car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.651689","Longitude":"-0.084705","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Sarnesfield Road","DoubleDependantLocality":null,"DependantLocality":"Enfield","PostTown":"London","PostCode":"EN2 6TG","Country":"gb"},"LocationShortDescription":"Sarnesfield Road, Enfield","LocationLongDescription":"Sarnesfield Road, Enfield, London, EN2 6TG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"fd00d3474e495e7b6d5f9f575b2d7ec4","ChargeDeviceRef":"200_10358","ChargeDeviceName":"Palace Gardens Multistorey Car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.651671","Longitude":"-0.084706","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Sarnesfield Road","DoubleDependantLocality":null,"DependantLocality":"Enfield","PostTown":"London","PostCode":"EN2 6TG","Country":"gb"},"LocationShortDescription":"Sarnesfield Road, Enfield","LocationLongDescription":"Sarnesfield Road, Enfield, London, EN2 6TG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d630553e32ae21fb1a6df39c702d2c5c","ChargeDeviceRef":"300_10153","ChargeDeviceName":"Parkland Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.595471","Longitude":"-0.110966","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Parkland Road","DoubleDependantLocality":"Northwest of Caxton Road","DependantLocality":"Haringey","PostTown":"London","PostCode":"N22 6TB","Country":"gb"},"LocationShortDescription":"Parkland Road, Haringey","LocationLongDescription":"Parkland Road, Haringey, London, N22 6TB"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"971eb27c6345932b82b70414028d7183","ChargeDeviceRef":"300_10129","ChargeDeviceName":"Pearcefield Avenue","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.440645","Longitude":"-0.055301","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Pearcefield Avenue","DoubleDependantLocality":"Forest Hill","DependantLocality":"Lewisham ","PostTown":"London","PostCode":"SE23 3EU","Country":"gb"},"LocationShortDescription":"Pearcefield Avenue, Lewisham ","LocationLongDescription":"Pearcefield Avenue, Lewisham , London, SE23 3EU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d62bcf67cf8ef4536d0ff0204922214b","ChargeDeviceRef":"30039","ChargeDeviceName":"Pierhead Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.002267","Longitude":"-1.419571","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Pierhead Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"South Shields","PostTown":null,"PostCode":"NE33 2LD","Country":"gb"},"LocationShortDescription":"South Shields","LocationLongDescription":"Pierhead Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f02208a057804ee16ac72ff4d3cec53b","ChargeDeviceRef":"30076","ChargeDeviceName":"Pierhead Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.002249","Longitude":"-1.419548","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Pierhead Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"South Shields","PostTown":null,"PostCode":"NE33 2LD","Country":"gb"},"LocationShortDescription":"South Shields","LocationLongDescription":"Pierhead Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"b6e584419a62da6229cf347e5ccfa166","ChargeDeviceRef":"30077","ChargeDeviceName":"Pierhead Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.002283","Longitude":"-1.419605","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Pierhead Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"South Shields","PostTown":null,"PostCode":"NE33 2LD","Country":"gb"},"LocationShortDescription":"South Shields","LocationLongDescription":"Pierhead Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"5a4be1fa34e62bb8a6ec6b91d2462f5a","ChargeDeviceRef":"31140","ChargeDeviceName":"Pinchinthorpe Visitors Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.529313","Longitude":"-1.099017","Address":{"SubBuildingName":null,"BuildingName":"Pinchinthorpe Visitors Centre","BuildingNumber":null,"Thoroughfare":null,"Street":"Wansbeck Business Park","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Guisborough","PostCode":"TS14 8HD","Country":"gb"},"LocationShortDescription":"Guisborough","LocationLongDescription":"Pinchinthorpe Visitors Centre"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c850c535b6b72487b20cee5d7434506d","ChargeDeviceRef":"300_10183","ChargeDeviceName":"Pitfield Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.529479","Longitude":"-0.083480","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Pitfield Street","DoubleDependantLocality":"South of Fanshaw Street","DependantLocality":"Hackney","PostTown":"London","PostCode":"N1 6BS","Country":"gb"},"LocationShortDescription":"Pitfield Street, Hackney","LocationLongDescription":"Pitfield Street, Hackney, London, N1 6BS"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c4d2ce3f3ebb5393a77c33c0cd95dc93","ChargeDeviceRef":"PP-12341","ChargeDeviceName":"POD Point Operations Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.516476","Longitude":"-0.068045","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"E1 1EE","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"E1 1EE","Country":"gb"},"LocationShortDescription":"Private - POD Point Head Office","LocationLongDescription":"Private - POD Point Head Office"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"853c68de7253cdd55dc37be410a45c60","ChargeDeviceRef":"11087","ChargeDeviceName":"Polar Krush","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.187139","Longitude":"-1.589170","Address":{"SubBuildingName":null,"BuildingName":"Polar Krush","BuildingNumber":null,"Thoroughfare":null,"Street":"1 Cygnet Drive","DoubleDependantLocality":"Preston Farm Industrial Estate","DependantLocality":null,"PostTown":"Ashington","PostCode":"NE63 8QW","Country":"gb"},"LocationShortDescription":"Ashington","LocationLongDescription":"Polar Krush"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"bf8dd8c68d02e161c28dc9ea139d4784","ChargeDeviceRef":"20030","ChargeDeviceName":"Preston Park Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.535014","Longitude":"-1.339474","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Preston Park Carpark","Street":null,"DoubleDependantLocality":"Yarm Road. Eaglescliffe","DependantLocality":"Stockton on Tees","PostTown":null,"PostCode":"TS18 3RH","Country":"gb"},"LocationShortDescription":"Stockton on Tees","LocationLongDescription":"Preston Park Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"ca172e964907a97d5ebd876bfdd4adbd","ChargeDeviceRef":"20031","ChargeDeviceName":"Preston Park Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.535114","Longitude":"-1.339644","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Preston Park Carpark","Street":null,"DoubleDependantLocality":"Yarm Road. Eaglescliffe","DependantLocality":"Stockton on Tees","PostTown":null,"PostCode":"TS18 3RH","Country":"gb"},"LocationShortDescription":"Stockton on Tees","LocationLongDescription":"Preston Park Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f2708856060b3b50379aeb13c54a563e","ChargeDeviceRef":"300_10149","ChargeDeviceName":"Preston Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.573458","Longitude":"-0.295412","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Preston Road","DoubleDependantLocality":"Tenterdon Sports Ground Car Park","DependantLocality":"Brent","PostTown":"London","PostCode":"HA3 0QB","Country":"gb"},"LocationShortDescription":"Preston Road, Brent","LocationLongDescription":"Preston Road, Brent, London, HA3 0QB"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3cfacd1beeeb00db3c2afc128dc13b7c","ChargeDeviceRef":"300_10115","ChargeDeviceName":"Princes Avenue","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.590627","Longitude":"-0.147201","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Princes Avenue","DoubleDependantLocality":"Northeast of Fortis Green Road","DependantLocality":"Haringey","PostTown":"London","PostCode":"N10 3LX","Country":"gb"},"LocationShortDescription":"Princes Avenue, Haringey","LocationLongDescription":"Princes Avenue, Haringey, London, N10 3LX"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4f8bc5ac1dc2b49434efe9e72f183de8","ChargeDeviceRef":"PP-12549","ChargeDeviceName":"Project Oxygen 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"50.731216","Longitude":"-3.465516","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Project Oxygen 1, Grenadier Road, Exeter Business Park, Exeter","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"EX1 3QF","Country":"gb"},"LocationShortDescription":"Project Oxygen 1","LocationLongDescription":"Four posts in front of Oxygen House, Grenadier Road, Exeter Business Park, Exeter"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"866d90e0921ac7b024b47d672445a086","ChargeDeviceRef":"PP-12554","ChargeDeviceName":"Project Oxygen 2","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"50.731230","Longitude":"-3.465344","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Project Oxygen 1, Grenadier Road, Exeter Business Park, Exeter","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"EX1 3QF","Country":"gb"},"LocationShortDescription":"Project Oxygen 2","LocationLongDescription":"Four posts in front of Oxygen House Grenadier Road, Exeter Business Park, Exete"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a9df2255ad642b923d95503b9a7958d8","ChargeDeviceRef":"PP-12551","ChargeDeviceName":"Project Oxygen 3","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"50.731162","Longitude":"-3.465580","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Project Oxygen 1, Grenadier Road, Exeter Business Park, Exeter","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"EX1 3QF","Country":"gb"},"LocationShortDescription":"Project Oxygen 3","LocationLongDescription":"Four posts in front of Oxygen House Grenadier Road, Exeter Business Park, Exeter"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8e54d6b523b279543ac12a0f7333cd3c","ChargeDeviceRef":"PP-12370","ChargeDeviceName":"Project Oxygen 4","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"50.731170","Longitude":"-3.465224","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Project Oxygen 1, Grenadier Road, Exeter Business Park, Exeter","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"EX1 3QF","Country":"gb"},"LocationShortDescription":"Project Oxygen 4","LocationLongDescription":"Four posts in front of Oxygen House Grenadier Road, Exeter Business Park, Exeter"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"e661551c8ec9308379cda7e2419348e5","ChargeDeviceRef":"200_10327","ChargeDeviceName":"Pulross Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.464324","Longitude":"-0.118748","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Pulross Road","DoubleDependantLocality":"Brixton","DependantLocality":"Lambeth","PostTown":"London","PostCode":"SW9 8AA","Country":"gb"},"LocationShortDescription":"Pulross Road, Lambeth","LocationLongDescription":"Pulross Road, Lambeth, London, SW9 8AA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"faad95253aee7437871781018bdf3309","ChargeDeviceRef":"20093","ChargeDeviceName":"Puma Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.883300","Longitude":"-1.408803","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Puma Centre","Street":null,"DoubleDependantLocality":"Off Silksworth Lane","DependantLocality":"Sunderland","PostTown":"Tyne and Wear","PostCode":"SR3","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Puma Centre"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"700a4d3e9b7edabf9e4b69008b0718d6","ChargeDeviceRef":"100_10193","ChargeDeviceName":"Pump Lane Car Park ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.506829","Longitude":"-0.415598","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Pump Lane","DoubleDependantLocality":"Hayes","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"UB3 3LJ","Country":"gb"},"LocationShortDescription":"Pump Lane, Hillingdon","LocationLongDescription":"Pump Lane, Hillingdon, London, UB3 3LJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"14f2ebeab937ca128186e7ba876faef9","ChargeDeviceRef":"300_10127","ChargeDeviceName":"Purley Rail Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.336998","Longitude":"-0.113815","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Approach Road","DoubleDependantLocality":"Purley","DependantLocality":"Croydon","PostTown":"London","PostCode":"CR8 2UD","Country":"gb"},"LocationShortDescription":"Approach Road, Croydon","LocationLongDescription":"Approach Road, Croydon, London, CR8 2UD"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"000871c1fc726f0b52dc86a4eeb027de","ChargeDeviceRef":"200_10357","ChargeDeviceName":"Putney Leisure Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.463907","Longitude":"-0.228826","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Dryburgh Road","DoubleDependantLocality":"Putney","DependantLocality":"Wandsworth","PostTown":"London","PostCode":"SW15 1BL","Country":"gb"},"LocationShortDescription":"Dryburgh Road, Wandsworth","LocationLongDescription":"Dryburgh Road, Wandsworth, London, SW15 1BL"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0ac08910b7e81371887df3d62b8940ac","ChargeDeviceRef":"100_10332","ChargeDeviceName":"Q-Park - Abingdon Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.497935","Longitude":"-0.126398","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Great College Street","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"SW1P 3RX","Country":"gb"},"LocationShortDescription":"Great College Street, Westminster","LocationLongDescription":"Great College Street, Westminster, London, SW1P 3RX"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"eeaebbffb5d29ff62799637fc51adb7b","ChargeDeviceRef":"100_10322","ChargeDeviceName":"Q-Park - Abingdon Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.497935","Longitude":"-0.126398","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Great College Street","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"SW1P 3RX","Country":"gb"},"LocationShortDescription":"Great College Street, Westminster","LocationLongDescription":"Great College Street, Westminster, London, SW1P 3RX"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"8011ecba39754a741ff861d810a7601f","ChargeDeviceRef":"100_10342","ChargeDeviceName":"Q-Park - Abingdon Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.497935","Longitude":"-0.126398","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Great College Street","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"SW1P 3RX","Country":"gb"},"LocationShortDescription":"Great College Street, Westminster","LocationLongDescription":"Great College Street, Westminster, London, SW1P 3RX"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0397758f8990c1b41b81b43ac389ab9f","ChargeDeviceRef":"100_10352","ChargeDeviceName":"Q-Park - Butlers Wharf Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.502290","Longitude":"-0.073829","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"46 - 50 Gainsford Street ","DoubleDependantLocality":null,"DependantLocality":"Southwark","PostTown":"London","PostCode":"SE1 2NE ","Country":"gb"},"LocationShortDescription":"46 - 50 Gainsford Street , Southwark","LocationLongDescription":"46 - 50 Gainsford Street , Southwark, London, SE1 2NE "},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"761e6675f9e54673cc778e7fdb2823d2","ChargeDeviceRef":"100_10362","ChargeDeviceName":"Q-Park - Butlers Wharf Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.502290","Longitude":"-0.073829","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"46 - 50 Gainsford Street ","DoubleDependantLocality":null,"DependantLocality":"Southwark","PostTown":"London","PostCode":"SE1 2NE ","Country":"gb"},"LocationShortDescription":"46 - 50 Gainsford Street , Southwark","LocationLongDescription":"46 - 50 Gainsford Street , Southwark, London, SE1 2NE "},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"9d8df73a3cfbf3c5b47bc9b50f214aff","ChargeDeviceRef":"100_10308","ChargeDeviceName":"Q-Park - Harley Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517947","Longitude":"-0.145352","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Queen Anne Mews","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1G 9HF","Country":"gb"},"LocationShortDescription":"Queen Anne Mews, Westminster","LocationLongDescription":"Queen Anne Mews, Westminster, London, W1G 9HF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d3f93e7766e8e1b7ef66dfdd9a8be93b","ChargeDeviceRef":"100_10328","ChargeDeviceName":"Q-Park - Harley Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517947","Longitude":"-0.145352","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Queen Anne Mews","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1G 9HF","Country":"gb"},"LocationShortDescription":"Queen Anne Mews, Westminster","LocationLongDescription":"Queen Anne Mews, Westminster, London, W1G 9HF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1bf2efbbe0c49b9f567c2e40f645279a","ChargeDeviceRef":"100_10304","ChargeDeviceName":"Q-Park - Harley Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517947","Longitude":"-0.145352","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Queen Anne Mews","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1G 9HF","Country":"gb"},"LocationShortDescription":"Queen Anne Mews, Westminster","LocationLongDescription":"Queen Anne Mews, Westminster, London, W1G 9HF"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"73634c1dcbe056c1f7dcf5969da406c8","ChargeDeviceRef":"100_10348","ChargeDeviceName":"Q-Park - Harley Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517947","Longitude":"-0.145352","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Queen Anne Mews","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1G 9HF","Country":"gb"},"LocationShortDescription":"Queen Anne Mews, Westminster","LocationLongDescription":"Queen Anne Mews, Westminster, London, W1G 9HF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5739fb4e82ed5366680b13441c6adeb4","ChargeDeviceRef":"100_10343","ChargeDeviceName":"Q-Park - Harley Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517947","Longitude":"-0.145352","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Queen Anne Mews","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1G 9HF","Country":"gb"},"LocationShortDescription":"Queen Anne Mews, Westminster","LocationLongDescription":"Queen Anne Mews, Westminster, London, W1G 9HF"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"83eaa6722798a773dd55e8fc7443aa09","ChargeDeviceRef":"100_10353","ChargeDeviceName":"Q-Park - Harley Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517947","Longitude":"-0.145352","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Queen Anne Mews","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1G 9HF","Country":"gb"},"LocationShortDescription":"Queen Anne Mews, Westminster","LocationLongDescription":"Queen Anne Mews, Westminster, London, W1G 9HF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1e5186bca8f75fca53960e8cb4a3b973","ChargeDeviceRef":"100_10318","ChargeDeviceName":"Q-Park - Harley Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517947","Longitude":"-0.145352","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Queen Anne Mews","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1G 9HF","Country":"gb"},"LocationShortDescription":"Queen Anne Mews, Westminster","LocationLongDescription":"Queen Anne Mews, Westminster, London, W1G 9HF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b9a8f4af85454f7c56c06f0a39e7ec23","ChargeDeviceRef":"100_10313","ChargeDeviceName":"Q-Park - Harley Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517947","Longitude":"-0.145352","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Queen Anne Mews","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1G 9HF","Country":"gb"},"LocationShortDescription":"Queen Anne Mews, Westminster","LocationLongDescription":"Queen Anne Mews, Westminster, London, W1G 9HF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0d1a9651497a38d8b1c3871c84528bd4","ChargeDeviceRef":"100_10338","ChargeDeviceName":"Q-Park - Harley Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517947","Longitude":"-0.145352","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Queen Anne Mews","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1G 9HF","Country":"gb"},"LocationShortDescription":"Queen Anne Mews, Westminster","LocationLongDescription":"Queen Anne Mews, Westminster, London, W1G 9HF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"54843973f9b6670141731bbb71a02946","ChargeDeviceRef":"100_10323","ChargeDeviceName":"Q-Park - Harley Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517947","Longitude":"-0.145352","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Queen Anne Mews","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1G 9HF","Country":"gb"},"LocationShortDescription":"Queen Anne Mews, Westminster","LocationLongDescription":"Queen Anne Mews, Westminster, London, W1G 9HF"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"bd5c5e1c04111451ed8b63079ea181e7","ChargeDeviceRef":"100_10358","ChargeDeviceName":"Q-Park - Harley Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517947","Longitude":"-0.145352","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Queen Anne Mews","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1G 9HF","Country":"gb"},"LocationShortDescription":"Queen Anne Mews, Westminster","LocationLongDescription":"Queen Anne Mews, Westminster, London, W1G 9HF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e93f31bd97b60ca8a84677546051539c","ChargeDeviceRef":"100_10333","ChargeDeviceName":"Q-Park - Harley Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.517947","Longitude":"-0.145352","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Queen Anne Mews","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1G 9HF","Country":"gb"},"LocationShortDescription":"Queen Anne Mews, Westminster","LocationLongDescription":"Queen Anne Mews, Westminster, London, W1G 9HF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"067a26d87265ea39030f5bd82408ce7c","ChargeDeviceRef":"100_10363","ChargeDeviceName":"Q-Park - Knightsbridge","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.499889","Longitude":"-0.157266","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Kinnerton Street","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"SW1X 8EA","Country":"gb"},"LocationShortDescription":"Kinnerton Street, Westminster","LocationLongDescription":"Kinnerton Street, Westminster, London, SW1X 8EA"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3b3fff6463464959dcd1b68d0320f781","ChargeDeviceRef":"100_10314","ChargeDeviceName":"Q-Park - Knightsbridge","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.499889","Longitude":"-0.157266","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Kinnerton Street","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"SW1X 8EA","Country":"gb"},"LocationShortDescription":"Kinnerton Street, Westminster","LocationLongDescription":"Kinnerton Street, Westminster, London, SW1X 8EA"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"080c993fb3b58e26c1d2265bf9da0af3","ChargeDeviceRef":"400_10228","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"55563844bcd4bba067fe86ac1f008c7e","ChargeDeviceRef":"400_10184","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"96c974552b3f2839fcc751e7f12679ce","ChargeDeviceRef":"400_10215","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"205c3608ecb984c1f5f5d2f52c934428","ChargeDeviceRef":"400_10191","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"7c0f63c15f8749d716ba1ac9121cc1a8","ChargeDeviceRef":"100_10324","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"63c17d596f401acb520efe4a2a7a01ee","ChargeDeviceRef":"400_10222","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"cd61a580392a70389e27b0bc2b439f49","ChargeDeviceRef":"400_10201","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1013c8b99e603831ad123eab4b27660f","ChargeDeviceRef":"400_10149","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a8f12d9486cbcc2fe0cfc5352011ad35","ChargeDeviceRef":"400_10214","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"fbad540b2f3b5638a9be9aa6a4d8e450","ChargeDeviceRef":"100_10344","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"30d411fdc0e6daf092a74354094359bb","ChargeDeviceRef":"400_10173","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ee0b86d2e127f776eaaa97d77e078e41","ChargeDeviceRef":"400_10200","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"fcfe9c770eb9372e6961a17f7eaffd5f","ChargeDeviceRef":"400_10182","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b151ce4935a3c2807e1dd9963eda16d8","ChargeDeviceRef":"400_10170","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ccc36675ce8d7286aff56ecccb53d0a5","ChargeDeviceRef":"100_10394","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"50f3f8c42b998a48057e9d33f4144b8b","ChargeDeviceRef":"400_10181","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f64b2463cf1dba199491c885dff932f3","ChargeDeviceRef":"100_10373","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"33b879e7ab79f56af1e88359f9314a10","ChargeDeviceRef":"400_10196","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ab3f9cab224141f869b28de5d0674580","ChargeDeviceRef":"400_10186","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"722caafb4825ef5d8670710fa29087cf","ChargeDeviceRef":"100_10374","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"159c1ffe5b61b41b3c4d8f4c2150f6c4","ChargeDeviceRef":"400_10171","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"8f4576ad85410442a74ee3a7683757b3","ChargeDeviceRef":"400_10199","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"fc452d063a72e0824cacf90a32c3e358","ChargeDeviceRef":"100_10393","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5ffaa9f5182c2a36843f438bb1fdbdea","ChargeDeviceRef":"400_10208","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ec1c59141046cd1866bbbcdfb6ae31d4","ChargeDeviceRef":"400_10174","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"18fc72d8b8aba03a4d84f66efabce82e","ChargeDeviceRef":"400_10219","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d19544ae709580379cd2523b0e72c86d","ChargeDeviceRef":"400_10192","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"9f9e8cba3700df6a947a8cf91035ab84","ChargeDeviceRef":"100_10334","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"77c67132097f9b1ff028aed0eca8d21b","ChargeDeviceRef":"400_10190","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"8685549650016d9e1d14bf972262450b","ChargeDeviceRef":"400_10158","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"50adecfc746426ca10973a067421d0bf","ChargeDeviceRef":"400_10213","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d8074a35855a7f4935e3e19222d9a9eb","ChargeDeviceRef":"400_10198","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6b9bb055c60428fa01686736b18f39fc","ChargeDeviceRef":"100_10354","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a4814fbe4abdad91842ef1795dcd465b","ChargeDeviceRef":"400_10195","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f621585df244e9596dc70a39b579efb1","ChargeDeviceRef":"400_10178","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f08b7ac8aa30a2a9ab34394e200e1a71","ChargeDeviceRef":"400_10217","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6abba5d8ab1f4f32243e174beb754661","ChargeDeviceRef":"400_10211","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d6a2be6d87d35c6d161fde16f21a5864","ChargeDeviceRef":"100_10384","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"250dd56814ad7c50971ee4020519c6f5","ChargeDeviceRef":"400_10220","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c82a7178ece03ba6ee8051cc36691bdc","ChargeDeviceRef":"100_10383","ChargeDeviceName":"Q-Park - Park Lane \/ Marble Arch","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.509355","Longitude":"-0.156495","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Park Lane","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1K 7TY","Country":"gb"},"LocationShortDescription":"Park Lane, Westminster","LocationLongDescription":"Park Lane, Westminster, London, W1K 7TY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"85203ae86f2de2662ca5b6d614fbe495","ChargeDeviceRef":"100_10302","ChargeDeviceName":"Q-Park - Pimlico Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.490122","Longitude":"-0.146352","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Cumberland Street","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"SW1V 4LR","Country":"gb"},"LocationShortDescription":"Cumberland Street, Westminster","LocationLongDescription":"Cumberland Street, Westminster, London, SW1V 4LR"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"cfd66e741860718ddecf1f6eabd05fc6","ChargeDeviceRef":"100_10312","ChargeDeviceName":"Q-Park - Pimlico Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.490122","Longitude":"-0.146352","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Cumberland Street","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"SW1V 4LR","Country":"gb"},"LocationShortDescription":"Cumberland Street, Westminster","LocationLongDescription":"Cumberland Street, Westminster, London, SW1V 4LR"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1f5795e7b93f423c397e6f7aaff80133","ChargeDeviceRef":"100_10392","ChargeDeviceName":"Q-Park - Queensway Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.510900","Longitude":"-0.186941","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Queensway","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W2 3RX","Country":"gb"},"LocationShortDescription":"Queensway, Westminster","LocationLongDescription":"Queensway, Westminster, London, W2 3RX"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6c2e49911b68d315555d5b3eb0dd45bf","ChargeDeviceRef":"100_10303","ChargeDeviceName":"Q-Park - Queensway Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.510900","Longitude":"-0.186941","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Queensway","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W2 3RX","Country":"gb"},"LocationShortDescription":"Queensway, Westminster","LocationLongDescription":"Queensway, Westminster, London, W2 3RX"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ea6979872125d5acbac6068f186a0359","ChargeDeviceRef":"100_10372","ChargeDeviceName":"Q-Park - Soho Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.514249","Longitude":"-0.137230","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Poland Street","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1F 7NQ ","Country":"gb"},"LocationShortDescription":"Poland Street, Westminster","LocationLongDescription":"Poland Street, Westminster, London, W1F 7NQ "},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"82ba9d6eee3f026be339bb287651c3d8","ChargeDeviceRef":"100_10382","ChargeDeviceName":"Q-Park - Soho Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.514249","Longitude":"-0.137230","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Poland Street","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"W1F 7NQ ","Country":"gb"},"LocationShortDescription":"Poland Street, Westminster","LocationLongDescription":"Poland Street, Westminster, London, W1F 7NQ "},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ac4d17530106c3e3c2fb5e2dad0e51b7","ChargeDeviceRef":"100_10364","ChargeDeviceName":"Q-Park - St Johns Wood","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.534281","Longitude":"-0.173064","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Kingsmill Terrace","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"NW8 6AA","Country":"gb"},"LocationShortDescription":"Kingsmill Terrace, Westminster","LocationLongDescription":"Kingsmill Terrace, Westminster, London, NW8 6AA"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"97788494d0cb9c4ad37af9a76290b361","ChargeDeviceRef":"100_10305","ChargeDeviceName":"Q-Park - St Johns Wood","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.534281","Longitude":"-0.173064","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Kingsmill Terrace","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"NW8 6AA","Country":"gb"},"LocationShortDescription":"Kingsmill Terrace, Westminster","LocationLongDescription":"Kingsmill Terrace, Westminster, London, NW8 6AA"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d26beb4d23d4930fba836087f83d9bcf","ChargeDeviceRef":"100_10325","ChargeDeviceName":"Q-Park - Trafalgar Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.506944","Longitude":"-0.129717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Spring Gardens","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"SW1A 2TS","Country":"gb"},"LocationShortDescription":"Spring Gardens, Westminster","LocationLongDescription":"Spring Gardens, Westminster, London, SW1A 2TS"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d1e96978c6935ec01d995b1b8e4d8c33","ChargeDeviceRef":"100_10345","ChargeDeviceName":"Q-Park - Trafalgar Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.506944","Longitude":"-0.129717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Spring Gardens","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"SW1A 2TS","Country":"gb"},"LocationShortDescription":"Spring Gardens, Westminster","LocationLongDescription":"Spring Gardens, Westminster, London, SW1A 2TS"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4f5c422f4d49a5a807eda27434231040","ChargeDeviceRef":"100_10315","ChargeDeviceName":"Q-Park - Trafalgar Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.506944","Longitude":"-0.129717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Spring Gardens","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"SW1A 2TS","Country":"gb"},"LocationShortDescription":"Spring Gardens, Westminster","LocationLongDescription":"Spring Gardens, Westminster, London, SW1A 2TS"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"75ebb02f92fc30a8040bbd625af999f1","ChargeDeviceRef":"100_10335","ChargeDeviceName":"Q-Park - Trafalgar Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.506944","Longitude":"-0.129717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Spring Gardens","DoubleDependantLocality":null,"DependantLocality":"Westminster","PostTown":"London","PostCode":"SW1A 2TS","Country":"gb"},"LocationShortDescription":"Spring Gardens, Westminster","LocationLongDescription":"Spring Gardens, Westminster, London, SW1A 2TS"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"16fc18d787294ad5171100e33d05d4e2","ChargeDeviceRef":"SC11","ChargeDeviceName":"Quay Lane North","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.353993","Longitude":"-7.633432","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":null,"LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a7971abb4134fc0cfcec7d589e1ebcf6","ChargeDeviceRef":"30050","ChargeDeviceName":"Quayside Multi Storey Carpark Seventh Floor","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.971185","Longitude":"-1.605302","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Quayside Multi Storey Carpark Seventh Floor","Street":null,"DoubleDependantLocality":"City Road","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 2AQ","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Quayside Multi Storey Carpark Seventh Floor"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"e327b1649d06bf74fceb4fe73f83bdba","ChargeDeviceRef":"20049","ChargeDeviceName":"Quayside Multi Storey Carpark Seventh Floor","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.971185","Longitude":"-1.605332","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Quayside Multi Storey Carpark Seventh Floor","Street":null,"DoubleDependantLocality":"City Road","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 2AQ","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Quayside Multi Storey Carpark Seventh Floor"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c4b43ae017af4001c5193d310bf00942","ChargeDeviceRef":"SC17","ChargeDeviceName":"Queen Street DRD Car Park","ChargeDeviceText":"Queen Street DRD Car Park","ChargeDeviceLocation":{"Latitude":"54.347410","Longitude":"-7.640307","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Queen Street DRD Car Park, Enniskillen","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"DRD","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"91c77393975889bd08f301c9e13a44b7","ChargeDeviceRef":"10086","ChargeDeviceName":"Quorum Business Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.020299","Longitude":"-1.579031","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Quorum Business Park","Street":null,"DoubleDependantLocality":"Q14. Benton Lane","DependantLocality":"Newcastle","PostTown":null,"PostCode":"NE12 8FB","Country":"gb"},"LocationShortDescription":"Newcastle","LocationLongDescription":"Quorum Business Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"7371364b3d72ac9a3ed8638e6f0be2c9","ChargeDeviceRef":"SC06","ChargeDeviceName":"Railway Yard","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.992770","Longitude":"-7.313558","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":null,"LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"64c53a52cb3bd1a01c03a64db985c0cc","ChargeDeviceRef":"T51-4311-048","ChargeDeviceName":"RCS Plc","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"53.335800","Longitude":"-0.959832","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Randall Park Way","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Retford","PostCode":"DN22 7WF","Country":"gb"},"LocationShortDescription":"Public access. Free parking
Please report to reception","LocationLongDescription":"One CHAdeMO compliant charger with JARI level 3 connector
rated at 50kW DC (mode 4; quick charge)

Fitted under Midlands PiP\r\n"},"Connector":[{"ConnectorId":"0","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":null,"RatedOutputCurrent":"125","ChargeMethod":"DC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"ABB","Website":"www.abb.com","TelephoneNo":"01925 741 111","ContactName":"Martin Hale"},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4aaa76178f8567e05c8e8295c96171d8","ChargeDeviceRef":"200_10322","ChargeDeviceName":"Red Lion Square","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.519424","Longitude":"-0.118943","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"26 Red Lion Square","DoubleDependantLocality":"East of Old North Street","DependantLocality":"Camden","PostTown":"London","PostCode":"WC1R 4RB","Country":"gb"},"LocationShortDescription":"26 Red Lion Square, Camden","LocationLongDescription":"26 Red Lion Square, Camden, London, WC1R 4RB"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"37588c655ca22f7ca1664a2b211188ff","ChargeDeviceRef":"SCOT59","ChargeDeviceName":"Regent Drive Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.829200","Longitude":"-4.215300","Address":{"SubBuildingName":null,"BuildingName":"Regent Drive Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Regent Drive","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Rutherglen","PostCode":"G73 1BH","Country":"gb"},"LocationShortDescription":"Rutherglen","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"bd22c2ef9e6f0fa97825c6be879f8fa4","ChargeDeviceRef":"SCOT60","ChargeDeviceName":"Regent Drive Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.829200","Longitude":"-4.215300","Address":{"SubBuildingName":null,"BuildingName":"Regent Drive Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"Regent Drive","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Rutherglen","PostCode":"G73 1BH","Country":"gb"},"LocationShortDescription":"Rutherglen","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5265d33c184af566aeb7ef8afd0b9b03","ChargeDeviceRef":"200_10305","ChargeDeviceName":"Regents Park Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.540126","Longitude":"-0.157559","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"112 Regents Park Road","DoubleDependantLocality":null,"DependantLocality":"Camden","PostTown":"London","PostCode":"NW1 8UG","Country":"gb"},"LocationShortDescription":"112 Regents Park Road, Camden","LocationLongDescription":"112 Regents Park Road, Camden, London, NW1 8UG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"2e2079d63348233d91cad1fa9b1361e9","ChargeDeviceRef":"10088","ChargeDeviceName":"Renewable Academy ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.989979","Longitude":"-1.527589","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Renewable Academy","Street":null,"DoubleDependantLocality":"Hadrian Road","DependantLocality":"Wallsend","PostTown":"Newcastle Upon Tyne","PostCode":"NE28 6HS","Country":"gb"},"LocationShortDescription":"Wallsend","LocationLongDescription":"Renewable Academy"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c46482dd5d39742f0bfd417b492d0e8e","ChargeDeviceRef":"SC01","ChargeDeviceName":"Riverdale, Larne","ChargeDeviceText":"Riverdale, Larne","ChargeDeviceLocation":{"Latitude":"54.850920","Longitude":"-5.824385","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Riverdale, Larne","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"aac933717a429f57c6ca58f32975c597","ChargeDeviceRef":"20069","ChargeDeviceName":"Riverside Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.851374","Longitude":"-1.560261","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Riverside Car Park","Street":null,"DoubleDependantLocality":"Chester Le Street","DependantLocality":"Durham","PostTown":null,"PostCode":"DH3 3SJ","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"Riverside Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c731077c04035ac9e92a3706288db18f","ChargeDeviceRef":"20063","ChargeDeviceName":"Riverside Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.851374","Longitude":"-1.560261","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Riverside Car Park","Street":null,"DoubleDependantLocality":"Chester Le Street","DependantLocality":"Durham","PostTown":null,"PostCode":"DH3 3SJ","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"Riverside Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"18a411989b47ed75a60ac69d9da05aa5","ChargeDeviceRef":"11124","ChargeDeviceName":"RMB Toyota","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.544331","Longitude":"-1.318501","Address":{"SubBuildingName":null,"BuildingName":"RMB Toyota","BuildingNumber":null,"Thoroughfare":null,"Street":"North Park","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Stockton On Tees","PostCode":"TS18 3DZ","Country":"gb"},"LocationShortDescription":"Stockton On Tees","LocationLongDescription":"RMB Toyota"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"fc152e73692bc3c934d248f639d9e963","ChargeDeviceRef":"200_20210","ChargeDeviceName":"Roan Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.479899","Longitude":"-0.013508","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Roan Street","DoubleDependantLocality":null,"DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 9JT","Country":"gb"},"LocationShortDescription":"Roan Street, Greenwich","LocationLongDescription":"Roan Street, Greenwich, London, SE10 9JT"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3b9d6e5e779c8f46c5765c194a04b59a","ChargeDeviceRef":"200_20247","ChargeDeviceName":"Roan Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.479907","Longitude":"-0.013479","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Roan Street","DoubleDependantLocality":null,"DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 9JT","Country":"gb"},"LocationShortDescription":"Roan Street, Greenwich","LocationLongDescription":"Roan Street, Greenwich, London, SE10 9JT"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"8430b32b5bac908e765df8813d4405c5","ChargeDeviceRef":"EK - 1326","ChargeDeviceName":"Robins and Day Peugeot Birmingham","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.514489","Longitude":"-1.823620","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"857 Tyburn Road
Birmingham","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"B24 9NY","Country":"gb"},"LocationShortDescription":"Public access
Free parking
Intended for Peugeot customers
Please report to reception","LocationLongDescription":"One charging point, two sockets, RFID card accessed

One three pin BS1363 socket
rated at 3kW (mode 1, standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3, fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":"01273 704775","ContactName":"Terry Brightmore"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"174f8f613332b27e9e8a5138adb7e920","ChargeDeviceRef":"SCOT67","ChargeDeviceName":"Rose Lane","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.599600","Longitude":"-2.430400","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Rose Lane","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Kelso","PostCode":"TD5 7AP","Country":"gb"},"LocationShortDescription":"Rose Lane, Kelso","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"56c51a39a7c77d8084838cc920585bd0","ChargeDeviceRef":"SCOT68","ChargeDeviceName":"Rosetta Lane","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.656200","Longitude":"-3.196900","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Rosetta Lane","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Peebles","PostCode":"EH45 8HH","Country":"gb"},"LocationShortDescription":"Rosetta Lane, Peebles","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e4acb4c86de9d2d9a41364f93951028d","ChargeDeviceRef":"200_10311","ChargeDeviceName":"Rosslyn Hill","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.554941","Longitude":"-0.173333","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"61 Rosslyn Hill","DoubleDependantLocality":null,"DependantLocality":"Camden","PostTown":"London","PostCode":"NW3 1PH","Country":"gb"},"LocationShortDescription":"61 Rosslyn Hill, Camden","LocationLongDescription":"61 Rosslyn Hill, Camden, London, NW3 1PH"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c255c05246a081654a0267cbb725f5a7","ChargeDeviceRef":"PP-12238","ChargeDeviceName":"Royal Military Academy, Woolwich","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.475068","Longitude":"0.059309","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"SE18 4JL","Country":"gb"},"LocationShortDescription":"Royal Military Academy, Woolwich","LocationLongDescription":"Royal Military Academy, Woolwich"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"2c620a8c232f32aa9e7dcbc90102b253","ChargeDeviceRef":"PP-12241","ChargeDeviceName":"Royal Military Academy, Woolwich","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.475025","Longitude":"0.058590","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"SE18 4JL","Country":"gb"},"LocationShortDescription":"Royal Military Academy, Woolwich","LocationLongDescription":"Royal Military Academy, Woolwich"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"551cb238f4895024b98d1943b708de7c","ChargeDeviceRef":"PP-12240","ChargeDeviceName":"Royal Military Academy, Woolwich","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.475048","Longitude":"0.059566","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"SE18 4JL","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"SE18 4JL","Country":"gb"},"LocationShortDescription":"Royal Military Academy, Woolwich","LocationLongDescription":"Royal Military Academy, Woolwich"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"70162fe655ec381ac6312ebf026aac54","ChargeDeviceRef":"PP-12239","ChargeDeviceName":"Royal Military Academy, Woolwich","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.475015","Longitude":"0.058258","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"SE18 4JL","Country":"gb"},"LocationShortDescription":"Royal Military Academy, Woolwich","LocationLongDescription":"Royal Military Academy, Woolwich"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"97af07a14cacba681feacf3012730892","ChargeDeviceRef":"11058","ChargeDeviceName":"Sage UK Limited","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.034320","Longitude":"-1.648391","Address":{"SubBuildingName":null,"BuildingName":"Sage UK Limited","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Newcastle Upon Tyne","PostCode":"NE139AA","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Sage UK Limited"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"700fdb2ba62d4554dc268c65add4b16e","ChargeDeviceRef":"300_10144","ChargeDeviceName":"Sainsburys Beckton","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.521279","Longitude":"0.065873","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 Claps Gate Lane","DoubleDependantLocality":"Beckton","DependantLocality":"Newham","PostTown":"London","PostCode":"E6 6JF","Country":"gb"},"LocationShortDescription":"1 Claps Gate Lane, Newham","LocationLongDescription":"1 Claps Gate Lane, Newham, London, E6 6JF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5c645cc19a53ac1dfb155840d886050c","ChargeDeviceRef":"300_10147","ChargeDeviceName":"Sainsburys Beckton","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.521279","Longitude":"0.065873","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 Claps Gate Lane","DoubleDependantLocality":"Beckton","DependantLocality":"Newham","PostTown":"London","PostCode":"E6 6JF","Country":"gb"},"LocationShortDescription":"1 Claps Gate Lane, Newham","LocationLongDescription":"1 Claps Gate Lane, Newham, London, E6 6JF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"dba1cdfcf6359389d170caadb3223ad2","ChargeDeviceRef":"300_10146","ChargeDeviceName":"Sainsburys Beckton","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.521279","Longitude":"0.065873","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 Claps Gate Lane","DoubleDependantLocality":"Beckton","DependantLocality":"Newham","PostTown":"London","PostCode":"E6 6JF","Country":"gb"},"LocationShortDescription":"1 Claps Gate Lane, Newham","LocationLongDescription":"1 Claps Gate Lane, Newham, London, E6 6JF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c80bcf42c220b8f5c41f85344242f1b0","ChargeDeviceRef":"300_10141","ChargeDeviceName":"Sainsburys Beckton","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.521279","Longitude":"0.065873","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 Claps Gate Lane","DoubleDependantLocality":"Beckton","DependantLocality":"Newham","PostTown":"London","PostCode":"E6 6JF","Country":"gb"},"LocationShortDescription":"1 Claps Gate Lane, Newham","LocationLongDescription":"1 Claps Gate Lane, Newham, London, E6 6JF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b7d35509ab19d0cd2256a219de0fe0ff","ChargeDeviceRef":"300_10145","ChargeDeviceName":"Sainsburys Beckton","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.521279","Longitude":"0.065873","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 Claps Gate Lane","DoubleDependantLocality":"Beckton","DependantLocality":"Newham","PostTown":"London","PostCode":"E6 6JF","Country":"gb"},"LocationShortDescription":"1 Claps Gate Lane, Newham","LocationLongDescription":"1 Claps Gate Lane, Newham, London, E6 6JF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0e189c35adab992d274c294586143ec9","ChargeDeviceRef":"300_10148","ChargeDeviceName":"Sainsburys Beckton","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.521279","Longitude":"0.065873","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 Claps Gate Lane","DoubleDependantLocality":"Beckton","DependantLocality":"Newham","PostTown":"London","PostCode":"E6 6JF","Country":"gb"},"LocationShortDescription":"1 Claps Gate Lane, Newham","LocationLongDescription":"1 Claps Gate Lane, Newham, London, E6 6JF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1068bceb19323fe72b2b344ccf85c254","ChargeDeviceRef":"300_10143","ChargeDeviceName":"Sainsburys Beckton","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.521279","Longitude":"0.065873","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 Claps Gate Lane","DoubleDependantLocality":"Beckton","DependantLocality":"Newham","PostTown":"London","PostCode":"E6 6JF","Country":"gb"},"LocationShortDescription":"1 Claps Gate Lane, Newham","LocationLongDescription":"1 Claps Gate Lane, Newham, London, E6 6JF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ba9fab001f67381e56e410575874d967","ChargeDeviceRef":"300_10140","ChargeDeviceName":"Sainsburys Beckton","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.521279","Longitude":"0.065873","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 Claps Gate Lane","DoubleDependantLocality":"Beckton","DependantLocality":"Newham","PostTown":"London","PostCode":"E6 6JF","Country":"gb"},"LocationShortDescription":"1 Claps Gate Lane, Newham","LocationLongDescription":"1 Claps Gate Lane, Newham, London, E6 6JF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1feb4cdda5aafe2a48cbe27544cd8e4b","ChargeDeviceRef":"300_10139","ChargeDeviceName":"Sainsburys Beckton","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.521279","Longitude":"0.065873","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 Claps Gate Lane","DoubleDependantLocality":"Beckton","DependantLocality":"Newham","PostTown":"London","PostCode":"E6 6JF","Country":"gb"},"LocationShortDescription":"1 Claps Gate Lane, Newham","LocationLongDescription":"1 Claps Gate Lane, Newham, London, E6 6JF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5034a5d62f91942d2a7aeaf527dfe111","ChargeDeviceRef":"300_10142","ChargeDeviceName":"Sainsburys Beckton","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.521279","Longitude":"0.065873","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 Claps Gate Lane","DoubleDependantLocality":"Beckton","DependantLocality":"Newham","PostTown":"London","PostCode":"E6 6JF","Country":"gb"},"LocationShortDescription":"1 Claps Gate Lane, Newham","LocationLongDescription":"1 Claps Gate Lane, Newham, London, E6 6JF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d35b05a832e2bb91f110d54e34e2da79","ChargeDeviceRef":"PP-12256","ChargeDeviceName":"Sainsburys Bishop Auckland","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.638752","Longitude":"-1.695435","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"DL14 9AE","Country":"gb"},"LocationShortDescription":"Sainsburys Bishop Auckland","LocationLongDescription":"Sainsburys Bishop Auckland. Located in the car park to the left hand side of the store."},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4772c1b987f1f6d8c9d4ef0f3b764f7a","ChargeDeviceRef":"200_20300","ChargeDeviceName":"Sainsburys Camden","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.540383","Longitude":"-0.140777","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"17-21 Camden Road ","DoubleDependantLocality":null,"DependantLocality":"Camden","PostTown":"London","PostCode":"NW1 9LJ","Country":"gb"},"LocationShortDescription":"17-21 Camden Road , Camden","LocationLongDescription":"17-21 Camden Road , Camden, London, NW1 9LJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c4414e538a5475ec0244673b7f2f7dbb","ChargeDeviceRef":"200_20245","ChargeDeviceName":"Sainsburys Camden","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.540384","Longitude":"-0.140806","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"17-21 Camden Road ","DoubleDependantLocality":null,"DependantLocality":"Camden","PostTown":"London","PostCode":"NW1 9LJ","Country":"gb"},"LocationShortDescription":"17-21 Camden Road , Camden","LocationLongDescription":"17-21 Camden Road , Camden, London, NW1 9LJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a9ad5f2808f68eea468621a04c49efe1","ChargeDeviceRef":"200_20282","ChargeDeviceName":"Sainsburys Chiswick","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.493381","Longitude":"-0.265930","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"31 Essex Place","DoubleDependantLocality":"Chiswick","DependantLocality":"Hounslow","PostTown":"London","PostCode":"W4 5UT","Country":"gb"},"LocationShortDescription":"31 Essex Place, Hounslow","LocationLongDescription":"31 Essex Place, Hounslow, London, W4 5UT"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"84fdbc3ac902561c00871c9b0c226756","ChargeDeviceRef":"200_20273","ChargeDeviceName":"Sainsburys Chiswick","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.493382","Longitude":"-0.265945","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"31 Essex Place","DoubleDependantLocality":"Chiswick","DependantLocality":"Hounslow","PostTown":"London","PostCode":"W4 5UT","Country":"gb"},"LocationShortDescription":"31 Essex Place, Hounslow","LocationLongDescription":"31 Essex Place, Hounslow, London, W4 5UT"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"db346ccb62d491029b590bbbf0f5c412","ChargeDeviceRef":"PP-12223","ChargeDeviceName":"Sainsburys Colne","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"53.859000","Longitude":"-2.168000","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"BB8 9HY","Country":"gb"},"LocationShortDescription":"Sainsburys Colne","LocationLongDescription":"Sainsburys, Colne"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"ecb47fbb07a752413640f82a945530f8","ChargeDeviceRef":"200_20272","ChargeDeviceName":"Sainsburys Cromwell Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.495058","Longitude":"-0.188275","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"158a Cromwell Road","DoubleDependantLocality":null,"DependantLocality":"Kensington and Chelsea","PostTown":"London","PostCode":"SW7 4EJ","Country":"gb"},"LocationShortDescription":"158a Cromwell Road, Kensington and Chelsea","LocationLongDescription":"158a Cromwell Road, Kensington and Chelsea, London, SW7 4EJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ac4395adcb3da3b2af3d3972d7a10221","ChargeDeviceRef":"200_20222","ChargeDeviceName":"Sainsburys Cromwell Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.495067","Longitude":"-0.188246","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"158a Cromwell Road","DoubleDependantLocality":null,"DependantLocality":"Kensington and Chelsea","PostTown":"London","PostCode":"SW7 4EJ","Country":"gb"},"LocationShortDescription":"158a Cromwell Road, Kensington and Chelsea","LocationLongDescription":"158a Cromwell Road, Kensington and Chelsea, London, SW7 4EJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"daad8d509446c856e52d79f897232876","ChargeDeviceRef":"200_20219","ChargeDeviceName":"Sainsburys Dulwich","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.452924","Longitude":"-0.069129","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"80 Dog Kennel Hill ","DoubleDependantLocality":"East Dulwich","DependantLocality":"Southwark","PostTown":"London","PostCode":"SE22 8BB","Country":"gb"},"LocationShortDescription":"80 Dog Kennel Hill , Southwark","LocationLongDescription":"80 Dog Kennel Hill , Southwark, London, SE22 8BB"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d33174c464c877fb03e77efdab4ae804","ChargeDeviceRef":"200_20238","ChargeDeviceName":"Sainsburys Dulwich","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.452924","Longitude":"-0.069158","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"80 Dog Kennel Hill ","DoubleDependantLocality":"East Dulwich","DependantLocality":"Southwark","PostTown":"London","PostCode":"SE22 8BB","Country":"gb"},"LocationShortDescription":"80 Dog Kennel Hill , Southwark","LocationLongDescription":"80 Dog Kennel Hill , Southwark, London, SE22 8BB"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"2ed80f6311c1825feb854d78fa969d34","ChargeDeviceRef":"PP-12199","ChargeDeviceName":"Sainsburys Durham","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.806000","Longitude":"-1.579000","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"DH1 5GF","Country":"gb"},"LocationShortDescription":"Sainsburys carpark, Durham. ","LocationLongDescription":"Sainsburys carpark, Durham."},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"ccc81a97c1535f9a631b9db584a264e4","ChargeDeviceRef":"PP-12190","ChargeDeviceName":"Sainsburys Dursley","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.671703","Longitude":"-2.377510","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"GL11 4BS","Country":"gb"},"LocationShortDescription":"Sainsburys Dursley","LocationLongDescription":"Located in the carpark of Sainsburys on Castle Street"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"db182d2552835bec774847e06406bfa2","ChargeDeviceRef":"200_20268","ChargeDeviceName":"Sainsburys Greenwich","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.489378","Longitude":"0.014892","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"55 Bugsbys Way","DoubleDependantLocality":"Peartree Way","DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 0QJ","Country":"gb"},"LocationShortDescription":"55 Bugsbys Way, Greenwich","LocationLongDescription":"55 Bugsbys Way, Greenwich, London, SE10 0QJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"9fd98f856d3ca2086168f264a117ed7c","ChargeDeviceRef":"200_20291","ChargeDeviceName":"Sainsburys Greenwich","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.489378","Longitude":"0.014878","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"55 Bugsbys Way","DoubleDependantLocality":"Peartree Way","DependantLocality":"Greenwich","PostTown":"London","PostCode":"SE10 0QJ","Country":"gb"},"LocationShortDescription":"55 Bugsbys Way, Greenwich","LocationLongDescription":"55 Bugsbys Way, Greenwich, London, SE10 0QJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"Out of service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a78e17c964d3593d89cde3fb678f6a14","ChargeDeviceRef":"200_20248","ChargeDeviceName":"Sainsburys Islington","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.534041","Longitude":"-0.108536","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"31- 41 Liverpool Road","DoubleDependantLocality":null,"DependantLocality":"Islington","PostTown":"London","PostCode":"N1 0RW","Country":"gb"},"LocationShortDescription":"31- 41 Liverpool Road, Islington","LocationLongDescription":"31- 41 Liverpool Road, Islington, London, N1 0RW"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"bc9c8c705927bf419147ab7491c54896","ChargeDeviceRef":"200_20270","ChargeDeviceName":"Sainsburys Islington","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.534041","Longitude":"-0.108536","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"31- 41 Liverpool Road","DoubleDependantLocality":null,"DependantLocality":"Islington","PostTown":"London","PostCode":"N1 0RW","Country":"gb"},"LocationShortDescription":"31- 41 Liverpool Road, Islington","LocationLongDescription":"31- 41 Liverpool Road, Islington, London, N1 0RW"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"bd294168a234d75851d6f26f02723ab1","ChargeDeviceRef":"200_20274","ChargeDeviceName":"Sainsburys North Cheam","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.372064","Longitude":"-0.223896","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"566 London Road","DoubleDependantLocality":"North Cheam","DependantLocality":"Sutton","PostTown":"London","PostCode":"SM3 9AA","Country":"gb"},"LocationShortDescription":"566 London Road, Sutton","LocationLongDescription":"566 London Road, Sutton, London, SM3 9AA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b52340b4de4566b804c9880aa0b4af5f","ChargeDeviceRef":"200_20236","ChargeDeviceName":"Sainsburys North Cheam","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.372055","Longitude":"-0.223910","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"566 London Road","DoubleDependantLocality":"North Cheam","DependantLocality":"Sutton","PostTown":"London","PostCode":"SM3 9AA","Country":"gb"},"LocationShortDescription":"566 London Road, Sutton","LocationLongDescription":"566 London Road, Sutton, London, SM3 9AA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"007d4a1214289aea09b9759ae1324e96","ChargeDeviceRef":"200_20212","ChargeDeviceName":"Sainsburys Sydenham","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.430501","Longitude":"-0.034253","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Southend Lane","DoubleDependantLocality":"Sydenham","DependantLocality":"Southwark","PostTown":"London","PostCode":"SE26 4PU","Country":"gb"},"LocationShortDescription":"Southend Lane, Southwark","LocationLongDescription":"Southend Lane, Southwark, London, SE26 4PU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"cb59b747f88a35e0d452377f60f7c25f","ChargeDeviceRef":"200_20281","ChargeDeviceName":"Sainsburys Sydenham","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.430492","Longitude":"-0.034253","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Southend Lane","DoubleDependantLocality":"Sydenham","DependantLocality":"Southwark","PostTown":"London","PostCode":"SE26 4PU","Country":"gb"},"LocationShortDescription":"Southend Lane, Southwark","LocationLongDescription":"Southend Lane, Southwark, London, SE26 4PU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5b0fa0e4c041548bb6289e15d865a696","ChargeDeviceRef":"200_20215","ChargeDeviceName":"Sainsburys Wandsworth","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.454382","Longitude":"-0.190995","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"45 Garratt Lane ","DoubleDependantLocality":null,"DependantLocality":"Wandsworth","PostTown":"London","PostCode":"SW18 4AD","Country":"gb"},"LocationShortDescription":"45 Garratt Lane , Wandsworth","LocationLongDescription":"45 Garratt Lane , Wandsworth, London, SW18 4AD"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"Out of service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"bc5fcb0018cecacba559dc512740091b","ChargeDeviceRef":"200_20266","ChargeDeviceName":"Sainsburys Wandsworth","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.454400","Longitude":"-0.191023","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"45 Garratt Lane ","DoubleDependantLocality":null,"DependantLocality":"Wandsworth","PostTown":"London","PostCode":"SW18 4AD","Country":"gb"},"LocationShortDescription":"45 Garratt Lane , Wandsworth","LocationLongDescription":"45 Garratt Lane , Wandsworth, London, SW18 4AD"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"Out of service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"834a3bd235bca0caa53141f2ebc30438","ChargeDeviceRef":"PP-12189","ChargeDeviceName":"Sainsburys Westhoughton","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"53.546758","Longitude":"-2.521489","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Cricketers Way Westhoughton BOLTON BL5 3ZS","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"BL5 3ZS","Country":"gb"},"LocationShortDescription":"Sainsburys Westhoughton","LocationLongDescription":"Located in the carpark of Sainsburys. Cricketers WayWesthoughtonBOLTON"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8d9a6e908ed2b731fb96151d9bb94d49","ChargeDeviceRef":"PP-12336","ChargeDeviceName":"Saint Peters Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.282967","Longitude":"-1.535168","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CV32 5EL","Country":"gb"},"LocationShortDescription":"Saint Peters Car Park - Augusta Place.","LocationLongDescription":"Warwick District Council. Saint Peters multi story car park at Augusta Place."},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"6651526b6fb8f29a00507de6a49ce30f","ChargeDeviceRef":"10028","ChargeDeviceName":"Salvus House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.788711","Longitude":"-1.585549","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Salvus House","Street":"Salvus House","DoubleDependantLocality":"Akley Heads","DependantLocality":"Durham","PostTown":"Durham","PostCode":"DH1 5TS","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"Salvus House"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Access for employees and visitors only.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"335cd1b90bfa4ee70b39d08a4ae0cf2d","ChargeDeviceRef":"10027","ChargeDeviceName":"Salvus House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.788611","Longitude":"-1.585549","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Salvus House","Street":"Salvus House","DoubleDependantLocality":"Akley Heads","DependantLocality":"Durham","PostTown":"Durham","PostCode":"DH1 5TS","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"Salvus House"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Access for employees and visitors only.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"1a344877f11195aaf947ccfe48ee9c89","ChargeDeviceRef":"400_10244","ChargeDeviceName":"Sanderstead Road car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.347884","Longitude":"-0.094657","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Sanderstead Road","DoubleDependantLocality":null,"DependantLocality":"Croydon","PostTown":"London","PostCode":"CR2 0PH","Country":"gb"},"LocationShortDescription":"Sanderstead Road, Croydon","LocationLongDescription":"Sanderstead Road, Croydon, London, CR2 0PH"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0777acff7c9ab34562699e4e1d05affb","ChargeDeviceRef":"SCOT48","ChargeDeviceName":"Sandwick Road Council Office","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"58.208970","Longitude":"-6.379160","Address":{"SubBuildingName":null,"BuildingName":"Council Office","BuildingNumber":null,"Thoroughfare":null,"Street":"Sandwick Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Stornoway","PostCode":"HS1 2BW","Country":"gb"},"LocationShortDescription":"Stornoway","LocationLongDescription":"Public access by arrangement. Contact 08456007090"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Public access by arrangement. Contact 08456007090","OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"bb181e83b9ac6be1b28b2a2b26dcd73e","ChargeDeviceRef":"200_10317","ChargeDeviceName":"Sardinia Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.515073","Longitude":"-0.118445","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Sardinia Street","DoubleDependantLocality":"East of Kingsway","DependantLocality":"Camden","PostTown":"London","PostCode":"WC2B 6TE","Country":"gb"},"LocationShortDescription":"Sardinia Street, Camden","LocationLongDescription":"Sardinia Street, Camden, London, WC2B 6TE"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"79c662560b0a5f1ae00b623ad8c775e3","ChargeDeviceRef":"40015","ChargeDeviceName":"Scotswood Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.964443","Longitude":"-1.627892","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Scotswood Road","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE4 7AP","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Scotswood Road"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c7502c55f8db540625b59d9a42638520","ChargeDeviceRef":"31031","ChargeDeviceName":"Scott Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.869062","Longitude":"-1.701196","Address":{"SubBuildingName":null,"BuildingName":"Scott Street","BuildingNumber":null,"Thoroughfare":null,"Street":"Tannery Lane","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Stanley","PostCode":"DH9 0TE","Country":"gb"},"LocationShortDescription":"Stanley","LocationLongDescription":"Scott Street"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"ba6d843eb4251a4526ce65d1807a9309","ChargeDeviceRef":"21072","ChargeDeviceName":"Simon Bailes Peugeot Northallerton","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.342907","Longitude":"-1.438608","Address":{"SubBuildingName":null,"BuildingName":"Simon Bailes Northallerton","BuildingNumber":null,"Thoroughfare":null,"Street":"Church Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Northallerton","PostCode":"DL7 8DS","Country":"gb"},"LocationShortDescription":"Northallerton","LocationLongDescription":"Simon Bailes Peugeot Northallerton"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"b6f8dc086b2d60c5856e4ff517060392","ChargeDeviceRef":"21070","ChargeDeviceName":"Simon Bailes Peugeot Stockton","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.567511","Longitude":"-1.306015","Address":{"SubBuildingName":null,"BuildingName":"Simon Bailes Stockton","BuildingNumber":null,"Thoroughfare":null,"Street":"Off North Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Stockton","PostCode":"TS18 1TH","Country":"gb"},"LocationShortDescription":"Stockton","LocationLongDescription":"Simon Bailes Peugeot Stockton"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"9854d7afce413aa13cd0a1d39d0bcec5","ChargeDeviceRef":"PP-12270","ChargeDeviceName":"Simon Bales Peugeot","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.342874","Longitude":"-1.438622","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"DL7 8DS","Country":"gb"},"LocationShortDescription":"Private charging point","LocationLongDescription":"Private charging point located in Simon Bailes Peugeot Northallerton"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"da2bd66b01e29045b235112639d02347","ChargeDeviceRef":"300_10130","ChargeDeviceName":"Slaithwaite Road \/ Clipper Way","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.458857","Longitude":"-0.011428","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Slaithwaite Road \/ Clipper Way","DoubleDependantLocality":null,"DependantLocality":"Lewisham ","PostTown":"London","PostCode":"SE13 6NA","Country":"gb"},"LocationShortDescription":"Slaithwaite Road \/ Clipper Way, Lewisham ","LocationLongDescription":"Slaithwaite Road \/ Clipper Way, Lewisham , London, SE13 6NA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d71dd235287466052f1630f31bde7932","ChargeDeviceRef":"300_10202","ChargeDeviceName":"Smithfield Market Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.518656","Longitude":"-0.100857","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"West Smithfield","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC1A 9DS","Country":"gb"},"LocationShortDescription":"West Smithfield, City of London","LocationLongDescription":"West Smithfield, City of London, London, EC1A 9DS"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c47e93742387750baba2e238558fa12d","ChargeDeviceRef":"300_10203","ChargeDeviceName":"Smithfield Market Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.518656","Longitude":"-0.100857","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"West Smithfield","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC1A 9DS","Country":"gb"},"LocationShortDescription":"West Smithfield, City of London","LocationLongDescription":"West Smithfield, City of London, London, EC1A 9DS"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"cc58f7abf0b0cf2d5ac95ab60e4f14e9","ChargeDeviceRef":"PP-12293","ChargeDeviceName":"Smiths ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.588985","Longitude":"-0.285708","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Sturrock Way, Bretton Way, Peterborough, PE3 8YL ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"PE3 8YL","Country":"gb"},"LocationShortDescription":"Peterborough ","LocationLongDescription":"Sturrock WayBretton WayPeterborough"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"996740de914ced0902e686373e319391","ChargeDeviceRef":"30103","ChargeDeviceName":"Sniperly Park and Ride","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.791883","Longitude":"-1.601537","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Sniperly Park and Ride","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Durham","PostTown":null,"PostCode":"DH1 5RA","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"Sniperly Park and Ride"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking at this site is subject to use of the Park and Ride Bus (for which there is a fee) Users parking without using the Park and Ride will be fined.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"56bd37d3a2fda0f2f41925019c81011d","ChargeDeviceRef":"30026","ChargeDeviceName":"Sniperly Park and Ride","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.791938","Longitude":"-1.601515","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Sniperly Park and Ride","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Durham","PostTown":null,"PostCode":"DH1 5RA","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"Sniperly Park and Ride"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking at this site is subject to use of the Park and Ride Bus (for which there is a fee) Users parking without using the Park and Ride will be fined.","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f1b035b71ef5f8e1e7c1d6c0c5032faa","ChargeDeviceRef":"200_10310","ChargeDeviceName":"South End Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.556025","Longitude":"-0.166726","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"71 South End Road","DoubleDependantLocality":"Junction with Keats Road","DependantLocality":"Camden","PostTown":"London","PostCode":"NW3 2RL","Country":"gb"},"LocationShortDescription":"71 South End Road, Camden","LocationLongDescription":"71 South End Road, Camden, London, NW3 2RL"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"bba6bca05fecde04c682328e44b974b7","ChargeDeviceRef":"SCOT62","ChargeDeviceName":"South Vennel","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.672900","Longitude":"-3.776500","Address":{"SubBuildingName":null,"BuildingName":"Council car park","BuildingNumber":null,"Thoroughfare":null,"Street":"South Vennel","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Lanark","PostCode":"ML11 7JT","Country":"gb"},"LocationShortDescription":"South Vennel, Lanark","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"18a9042b3fc5b02fe3d57fea87d6992f","ChargeDeviceRef":"SCOT61","ChargeDeviceName":"South Vennel","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.672900","Longitude":"-3.776500","Address":{"SubBuildingName":null,"BuildingName":"Council car park","BuildingNumber":null,"Thoroughfare":null,"Street":"South Vennel","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Lanark","PostCode":"ML11 7JT","Country":"gb"},"LocationShortDescription":"South Vennel, Lanark","LocationLongDescription":"Phone Adam Beattie on 01698 453698 for access"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"2dfe1946b3003933b7f8ddd71f24dbb1","ChargeDeviceRef":"31142","ChargeDeviceName":"South View Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.554480","Longitude":"-0.886346","Address":{"SubBuildingName":null,"BuildingName":"South View Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Loftus","PostCode":"TS13","Country":"gb"},"LocationShortDescription":"Loftus","LocationLongDescription":"South View Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8ce5d989374d216a867cdc8871484b43","ChargeDeviceRef":"SC38","ChargeDeviceName":"South West College","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.647349","Longitude":"-6.747952","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"South West College, Cookstown","LocationLongDescription":"South West College, Burn Road \r\nCookstown"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"South West College","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"8cea559c47e4fbdb73b23e0223d04e79","ChargeDeviceRef":"30070","ChargeDeviceName":"Speculation Place Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.912160","Longitude":"-1.520873","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Speculation Place Car Park","Street":null,"DoubleDependantLocality":"Vermont","DependantLocality":"Washington","PostTown":null,"PostCode":"NE37 2AS","Country":"gb"},"LocationShortDescription":"Washington","LocationLongDescription":"Speculation Place Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"1dba3025b159cd9354da65e2d0436a31","ChargeDeviceRef":"30069","ChargeDeviceName":"Speculation Place Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.912154","Longitude":"-1.520853","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Speculation Place Car Park","Street":null,"DoubleDependantLocality":"Vermont","DependantLocality":"Washington","PostTown":null,"PostCode":"NE37 2AS","Country":"gb"},"LocationShortDescription":"Washington","LocationLongDescription":"Speculation Place Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"53420bd6e6798761679772a7dd012674","ChargeDeviceRef":"300_10194","ChargeDeviceName":"Spencer Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.457340","Longitude":"-0.174684","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Spencer Park","DoubleDependantLocality":null,"DependantLocality":"Wandsworth","PostTown":"London","PostCode":"SW18 2TA","Country":"gb"},"LocationShortDescription":"Spencer Park, Wandsworth","LocationLongDescription":"Spencer Park, Wandsworth, London, SW18 2TA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"dd03de08bfdff4d8ab01117276564cc7","ChargeDeviceRef":"300_10168","ChargeDeviceName":"St Albans Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.560963","Longitude":"-0.150181","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 St Albans Road","DoubleDependantLocality":"East of Highgate Road","DependantLocality":"Camden","PostTown":"London","PostCode":"NW5 1QY","Country":"gb"},"LocationShortDescription":"1 St Albans Road, Camden","LocationLongDescription":"1 St Albans Road, Camden, London, NW5 1QY"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f9ff6540c092abd6a77908c034710a04","ChargeDeviceRef":"100_10381","ChargeDeviceName":"St Heliers Hospital","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.380319","Longitude":"-0.182837","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Wrythe Lane","DoubleDependantLocality":"Carlshalton","DependantLocality":"Surrey","PostTown":"London","PostCode":"SM5 1AA","Country":"gb"},"LocationShortDescription":"Wrythe Lane, Surrey","LocationLongDescription":"Wrythe Lane, Surrey, London, SM5 1AA"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"102b905d54a908ae26000ed4801734b0","ChargeDeviceRef":"100_10391","ChargeDeviceName":"St Heliers Hospital","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.380190","Longitude":"-0.182626","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Wrythe Lane","DoubleDependantLocality":"Carlshalton","DependantLocality":"Surrey","PostTown":"London","PostCode":"SM5 1AA","Country":"gb"},"LocationShortDescription":"Wrythe Lane, Surrey","LocationLongDescription":"Wrythe Lane, Surrey, London, SM5 1AA"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6fb52e71b837628ac16539c1ff911667","ChargeDeviceRef":"300_10191","ChargeDeviceName":"St Johns Avenue","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.459621","Longitude":"-0.217778","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"St Johns Avenue","DoubleDependantLocality":"Putney","DependantLocality":"Wandsworth","PostTown":"London","PostCode":"SW15 6AF","Country":"gb"},"LocationShortDescription":"St Johns Avenue, Wandsworth","LocationLongDescription":"St Johns Avenue, Wandsworth, London, SW15 6AF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"71f07bf95f0113eefab12552181dd832","ChargeDeviceRef":"300_10122","ChargeDeviceName":"St Johns Road carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.553774","Longitude":"-0.297230","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Wembley","DoubleDependantLocality":null,"DependantLocality":"Brent","PostTown":"London","PostCode":"HA9 7HY","Country":"gb"},"LocationShortDescription":"Wembley, Brent","LocationLongDescription":"Wembley, Brent, London, HA9 7HY"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d714d2c5a796d5814c565d78dd16188d","ChargeDeviceRef":"SCOT53","ChargeDeviceName":null,"ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"58.824800","Longitude":"-2.956100","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"South Ronaldsay","PostCode":"KW17 2SR","Country":"gb"},"LocationShortDescription":null,"LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a425170bf40e8d6ee473b271d96dae18","ChargeDeviceRef":"100_10404","ChargeDeviceName":"St Marks Hill","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.393430","Longitude":"-0.303391","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"St Mark's Hill","DoubleDependantLocality":"Northeast of Claremont Ave","DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT6 4PJ","Country":"gb"},"LocationShortDescription":"St Mark's Hill, Kingston upon Thames","LocationLongDescription":"St Mark's Hill, Kingston upon Thames, London, KT6 4PJ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"9718db12cae6be37f7349779007ee589","ChargeDeviceRef":"30012","ChargeDeviceName":"St Marys Car Park Level One","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.908310","Longitude":"-1.384184","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"St Marys Car Park Level One","Street":null,"DoubleDependantLocality":"St Marys Way","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR1 2HN","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"St Marys Car Park Level One"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c7b4bb942f0b5d4860d4319772182765","ChargeDeviceRef":"30011","ChargeDeviceName":"St Marys Car Park Level One","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.908310","Longitude":"-1.384084","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"St Marys Car Park Level One","Street":null,"DoubleDependantLocality":"St Marys Way","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR1 2HN","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"St Marys Car Park Level One"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"744878fbdd26871c594f57ca61733e09","ChargeDeviceRef":"30013","ChargeDeviceName":"St Marys Car Park Level Two","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.908410","Longitude":"-1.384084","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"St Marys Car Park Level Two","Street":null,"DoubleDependantLocality":"St Marys Way","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR1 2HN","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"St Marys Car Park Level Two"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8977ecbb8cb82d77fb091c7a7f186163","ChargeDeviceRef":"30014","ChargeDeviceName":"St Marys Car Park Level Two","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.908410","Longitude":"-1.384184","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"St Marys Car Park Level Two","Street":null,"DoubleDependantLocality":"St Marys Way","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR1 2HN","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"St Marys Car Park Level Two"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"3983e1512aa570c564fab522bdb3efa5","ChargeDeviceRef":"18950001\/12","ChargeDeviceName":"St Modwen Properties Plc 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.397141","Longitude":"-1.985728","Address":{"SubBuildingName":null,"BuildingName":"Innovation Centre","BuildingNumber":null,"Thoroughfare":null,"Street":"1 Devon Way","DoubleDependantLocality":"Longbridge Technology Park","DependantLocality":null,"PostTown":"Birmingham","PostCode":"B31 2TS","Country":"gb"},"LocationShortDescription":"Public access to staff and visitors
Please report to reception","LocationLongDescription":"One charging point, two sockets

Two seven pin Type 2 sockets rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP\r\n"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"APT","Website":"www.aptcontrols.co.uk","TelephoneNo":"0208 515 8556","ContactName":"Richard Frost"},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f7efa4f864ae9b88d43527f4b14f750f","ChargeDeviceRef":"18950002\/12","ChargeDeviceName":"St Modwen Properties Plc 2","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.397144","Longitude":"-1.985640","Address":{"SubBuildingName":null,"BuildingName":"Innovation Centre","BuildingNumber":null,"Thoroughfare":null,"Street":"1 Devon Way","DoubleDependantLocality":"Longbridge Technology Park","DependantLocality":null,"PostTown":"Birmingham","PostCode":"B31 2TS","Country":"gb"},"LocationShortDescription":"Public access to staff and visitors
Please report to reception","LocationLongDescription":"One charging point, two sockets

Two seven pin Type 2 sockets rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP\r\n"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"APT","Website":"www.aptcontrols.co.uk","TelephoneNo":"0208 515 8556","ContactName":"Richard Frost"},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4aeae10ea1c6433c926cdfa558d31134","ChargeDeviceRef":"30053","ChargeDeviceName":"St Nicholas Ave car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.004824","Longitude":"-1.619526","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"St Nicholas Ave car park","Street":null,"DoubleDependantLocality":"Gosforth High St","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE3 1HB","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"St Nicholas Ave car park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"86b48b560a92d18429bcfca2c70ee733","ChargeDeviceRef":"30054","ChargeDeviceName":"St Nicholas Ave car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.004824","Longitude":"-1.619526","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"St Nicholas Ave car park","Street":null,"DoubleDependantLocality":"Gosforth High St","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE3 1HB","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"St Nicholas Ave car park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"e1b90346c92331860b1391257a106bb1","ChargeDeviceRef":"PP-12336","ChargeDeviceName":"St Peters Car Park Leamington Spa","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.288943","Longitude":"-1.535374","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Augusta Place
Leamington Spa","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CV32 5EL","Country":"gb"},"LocationShortDescription":"Public access
Parking fees apply.","LocationLongDescription":"One charging point, two sockets, RFID card accessed
Two three pin BS1363 sockets (mode 1; standard charge).

Fitted privately"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"109f91266ef89cc3690079b28abfe9a3","ChargeDeviceRef":"SCOT52","ChargeDeviceName":"St. Rognvalds House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"58.975700","Longitude":"-2.969600","Address":{"SubBuildingName":null,"BuildingName":"St. Rognvalds House","BuildingNumber":null,"Thoroughfare":null,"Street":"Old Scapa Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Kirkwall","PostCode":"KW15 1BB","Country":"gb"},"LocationShortDescription":"Kirkwall, Orkney","LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Transport Scotland","Website":null,"TelephoneNo":"0141 272 7100 ","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":false,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"be6ad8761fe4eb9bb85934a2d21686bb","ChargeDeviceRef":"30095","ChargeDeviceName":"Station Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.844806","Longitude":"-1.473656","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Station Road Car Park","Street":null,"DoubleDependantLocality":"Station Road","DependantLocality":"Houghton Le Spring","PostTown":null,"PostCode":"DH4 5AH","Country":"gb"},"LocationShortDescription":"Houghton Le Spring","LocationLongDescription":"Station Road Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"64eec0c3fb6b12c43f51ec9e9c773fed","ChargeDeviceRef":"30094","ChargeDeviceName":"Station Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.844859","Longitude":"-1.473756","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Station Road Car Park","Street":null,"DoubleDependantLocality":"Station Road","DependantLocality":"Houghton Le Spring","PostTown":null,"PostCode":"DH4 5AH","Country":"gb"},"LocationShortDescription":"Houghton Le Spring","LocationLongDescription":"Station Road Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"2654d1a3f16bf62d0dc4f91fa3ec9377","ChargeDeviceRef":"10013","ChargeDeviceName":"Stella House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.968829","Longitude":"-1.713924","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Stella House","Street":"Goldcrest Way","DoubleDependantLocality":"Newburn Riverside","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE15 8NY","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Stella House"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"79a3308b13cd31f096d8a4a34f96b66b","ChargeDeviceRef":"10012","ChargeDeviceName":"Stella House","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.968800","Longitude":"-1.713924","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Stella House","Street":"Goldcrest Way","DoubleDependantLocality":"Newburn Riverside","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE15 8NY","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Stella House"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"7ffb4e0ece07869880d51662a2234143","ChargeDeviceRef":"21075","ChargeDeviceName":"Stephenson Terrace Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.976375","Longitude":"-1.816337","Address":{"SubBuildingName":null,"BuildingName":"Stephenson Terrace Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Wylam","PostCode":"NE41 8DU","Country":"gb"},"LocationShortDescription":"Wylam","LocationLongDescription":"Stephenson Terrace Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8d749ea54f6657b0396c204d3148da60","ChargeDeviceRef":"11165","ChargeDeviceName":"Stockton Municipal Buildings","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.566662","Longitude":"-1.310534","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Stockton Municipal Buildings","Street":null,"DoubleDependantLocality":"Church Road","DependantLocality":"Stockton","PostTown":"Stockton On Tees","PostCode":"TS18 1UE","Country":"gb"},"LocationShortDescription":"Stockton","LocationLongDescription":"Stockton Municipal Buildings"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"70117ee3c0b15a2950f1e82a215e812b","ChargeDeviceRef":"11162","ChargeDeviceName":"Stockton Municipal Buildings","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.566662","Longitude":"-1.310534","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Stockton Municipal Buildings","Street":null,"DoubleDependantLocality":"Church Road","DependantLocality":"Stockton","PostTown":"Stockton On Tees","PostCode":"TS18 1UE","Country":"gb"},"LocationShortDescription":"Stockton","LocationLongDescription":"Stockton Municipal Buildings"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"05c7ac946880ad7eed28166b478c7277","ChargeDeviceRef":"10017","ChargeDeviceName":"Stockton Riverside College","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.562163","Longitude":"-1.299710","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Stockton Riverside College","Street":null,"DoubleDependantLocality":"Harvard Avenue","DependantLocality":"Stockton on Tees","PostTown":null,"PostCode":"TS17 6FB","Country":"gb"},"LocationShortDescription":"Stockton on Tees","LocationLongDescription":"Stockton Riverside College"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f466e84e4d899dda09be2bf2d3d7ece3","ChargeDeviceRef":"10016","ChargeDeviceName":"Stockton Riverside College","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.562163","Longitude":"-1.299734","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Stockton Riverside College","Street":null,"DoubleDependantLocality":"Harvard Avenue","DependantLocality":"Stockton on Tees","PostTown":null,"PostCode":"TS17 6FB","Country":"gb"},"LocationShortDescription":"Stockton on Tees","LocationLongDescription":"Stockton Riverside College"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"096ffc299200f51751b08da6d865ae95","ChargeDeviceRef":"200_20271","ChargeDeviceName":"Stoneleigh Road Car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.591880","Longitude":"-0.069305","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Stoneleigh Road","DoubleDependantLocality":null,"DependantLocality":"Haringey","PostTown":"London","PostCode":"N17 9BQ","Country":"gb"},"LocationShortDescription":"Stoneleigh Road, Haringey","LocationLongDescription":"Stoneleigh Road, Haringey, London, N17 9BQ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"13d7dc096493e1f77fb4ccf3eaf79df1","ChargeDeviceRef":"200_20269","ChargeDeviceName":"Stoneleigh Road Car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.591793","Longitude":"-0.069468","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Stoneleigh Road","DoubleDependantLocality":null,"DependantLocality":"Haringey","PostTown":"London","PostCode":"N17 9BQ","Country":"gb"},"LocationShortDescription":"Stoneleigh Road, Haringey","LocationLongDescription":"Stoneleigh Road, Haringey, London, N17 9BQ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"fd1d83de2517a02d4e221ede9a681432","ChargeDeviceRef":"200_10316","ChargeDeviceName":"Store Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.520009","Longitude":"-0.131315","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"14 Store Street","DoubleDependantLocality":null,"DependantLocality":"Camden","PostTown":"London","PostCode":"WC1E 7PL","Country":"gb"},"LocationShortDescription":"14 Store Street, Camden","LocationLongDescription":"14 Store Street, Camden, London, WC1E 7PL"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"63bfd6e8f26d1d3537f4c5038264ef36","ChargeDeviceRef":"SC07","ChargeDeviceName":"Strand Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.001546","Longitude":"-7.322345","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":null,"LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"8df6a65941e4c9da40a4fb899de65c55","ChargeDeviceRef":"400_10180","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545431","Longitude":"-0.006227","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"91299a41773c667d2ee8cddc3f6eeb64","ChargeDeviceRef":"400_10189","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545429","Longitude":"-0.006155","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"01b6397888c09d84f3dc89d807aa1004","ChargeDeviceRef":"400_10128","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545310","Longitude":"-0.006031","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0d2b2061826a5df3221116a5085a6052","ChargeDeviceRef":"400_10183","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545431","Longitude":"-0.006227","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c2e06e9a80370952f6ec5463c77cbace","ChargeDeviceRef":"400_10114","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545429","Longitude":"-0.006155","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"84899ae725ba49884f4c85c086f1b340","ChargeDeviceRef":"400_10156","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545409","Longitude":"-0.006026","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b645e524a1512ce68947d3b9c948aa46","ChargeDeviceRef":"400_10110","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545432","Longitude":"-0.006328","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0f304eddb4ad6007a3093fd6d963a1d2","ChargeDeviceRef":"400_10205","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545427","Longitude":"-0.006026","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c678aec6e828c899b32a099c14ee882c","ChargeDeviceRef":"400_10187","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545364","Longitude":"-0.006028","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"901797aebf0b23ecbab534d61ad33bb1","ChargeDeviceRef":"400_10212","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545432","Longitude":"-0.006328","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"91665c93b72f55b2e4f1048fc8289d04","ChargeDeviceRef":"400_10225","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545422","Longitude":"-0.005737","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a0205b87490c847182672e8d371e9948","ChargeDeviceRef":"400_10142","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545364","Longitude":"-0.006028","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0bfce127947574733b19da0f30739fcd","ChargeDeviceRef":"400_10122","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545328","Longitude":"-0.006030","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a512294422de868f8474d22344636f16","ChargeDeviceRef":"400_10193","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545431","Longitude":"-0.006256","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ebad33b3c9fa1d10327bb55f9e79e2f3","ChargeDeviceRef":"400_10223","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545430","Longitude":"-0.006184","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"42778ef0b5805a96f9511e20b5611fce","ChargeDeviceRef":"400_10210","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545328","Longitude":"-0.006030","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e7d161ac8d8a76529d39d9f5b4249ccb","ChargeDeviceRef":"400_10194","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545283","Longitude":"-0.006032","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b22ed7eafe03b63112ef3ff52f0b99db","ChargeDeviceRef":"400_10206","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545430","Longitude":"-0.006184","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"dfc6aa246e88ab3e32caeaaecf433550","ChargeDeviceRef":"400_10197","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545429","Longitude":"-0.006126","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"de905148259ea27fa49e2303ef2e0017","ChargeDeviceRef":"400_10137","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545283","Longitude":"-0.006032","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ea81a3d20bf98ef2c9bef9dc24ec777a","ChargeDeviceRef":"400_10209","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545430","Longitude":"-0.006184","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f3507289cfdc8c9ae93f4098111a13f9","ChargeDeviceRef":"400_10141","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545429","Longitude":"-0.006126","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a7c628dced6a691f1fd31aebc647a0a8","ChargeDeviceRef":"400_10179","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545391","Longitude":"-0.006027","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b65f2ecd2900ba6ae49a14d9c4b16fb4","ChargeDeviceRef":"400_10188","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545432","Longitude":"-0.006299","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a5585a4d4b12277fee5cad0880611bc6","ChargeDeviceRef":"400_10221","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545391","Longitude":"-0.006027","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d80126524c1e9641333502c664fc6ca1","ChargeDeviceRef":"400_10227","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545346","Longitude":"-0.006029","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"373e4c5d8edfa8b74fd4b6791d0cf6dc","ChargeDeviceRef":"400_10207","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545432","Longitude":"-0.006299","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"39dd987a9d27f1045aa0ad3ed5995dd2","ChargeDeviceRef":"400_10216","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545431","Longitude":"-0.006227","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"db9e6eef2eb4f0d8c55ecc7beaf2d78d","ChargeDeviceRef":"400_10169","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545346","Longitude":"-0.006029","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d914a6c6d93c8df063b9099a076a488c","ChargeDeviceRef":"400_10127","ChargeDeviceName":"Stratford International Station","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545310","Longitude":"-0.006031","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park Levels Ground, 4 and 5","DoubleDependantLocality":null,"DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 1AZ","Country":"gb"},"LocationShortDescription":"Car Park Levels Ground, 4 and 5, Stratford","LocationLongDescription":"Car Park Levels Ground, 4 and 5, Stratford, London, E15 1AZ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"8133415ea4647b6345849fb38311cf32","ChargeDeviceRef":"CM - 1289","ChargeDeviceName":"Stratford Park and Ride 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.207400","Longitude":"-1.730700","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Bishopston Lane
Startford upon Avon","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CV37 9QY","Country":"gb"},"LocationShortDescription":"Public access
Parking fees may apply","LocationLongDescription":"One charging point, two sockets

One three pin BS1363 socket
rated at 3kW (mode 2; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Chargemaster","Website":"www.chargemasterplc.com","TelephoneNo":"01582 400 331","ContactName":"Neil Sharpe"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"5487e79fa0ccd0b79e5d4a4c8ced005d","ChargeDeviceRef":"CM - 1188","ChargeDeviceName":"Stratford Park and Ride 2","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.207400","Longitude":"-1.730600","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Bishopston Lane
Stratford upon Avon","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CV37 9QY","Country":"gb"},"LocationShortDescription":"Public access
Parking fees may apply","LocationLongDescription":"One charging point, two sockets

One three pin BS1363 socket
rated at 3kW (mode 2; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Chargemaster","Website":"www.chargemasterplc.com","TelephoneNo":"01582 400 331","ContactName":"Neil Sharpe"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8d6a06b2f1208b59454a9a749928b0c0","ChargeDeviceRef":"CM - 1231","ChargeDeviceName":"Stratford Park and Ride 3","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.208400","Longitude":"-1.728900","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Bishopston Lane
Startford upon Avon","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CV37 9QY","Country":"gb"},"LocationShortDescription":"Public access
Parking fees may apply","LocationLongDescription":"One charging point, two sockets

One three pin BS1363 socket
rated at 3kW (mode 2; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Chargemaster","Website":"www.chargemasterplc.com","TelephoneNo":"01582 400 331","ContactName":"Neil Sharpe"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"191c62d342811d1a0d3d0528ec35cd2d","ChargeDeviceRef":"200_20261","ChargeDeviceName":"Summerland Gardens Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.590046","Longitude":"-0.142345","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Summerland Gardens","DoubleDependantLocality":"Muswell Hill","DependantLocality":"Haringey","PostTown":"London","PostCode":"N10 3QP","Country":"gb"},"LocationShortDescription":"Summerland Gardens, Haringey","LocationLongDescription":"Summerland Gardens, Haringey, London, N10 3QP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f60f6b0d129342bb6a226305aaf842b7","ChargeDeviceRef":"200_20262","ChargeDeviceName":"Summerland Gardens Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.590010","Longitude":"-0.142303","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Summerland Gardens","DoubleDependantLocality":"Muswell Hill","DependantLocality":"Haringey","PostTown":"London","PostCode":"N10 3QP","Country":"gb"},"LocationShortDescription":"Summerland Gardens, Haringey","LocationLongDescription":"Summerland Gardens, Haringey, London, N10 3QP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ac0b236e346da355400a90fcc7e28be6","ChargeDeviceRef":"30001","ChargeDeviceName":"Sunderland Civic Centre Floor Five","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.902556","Longitude":"-1.382244","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Sunderland Civic Centre Floor Five","Street":null,"DoubleDependantLocality":"Cowan Terrace","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR2 7DN","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Sunderland Civic Centre Floor Five"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"1e747ddbea997a1b933aaf58a7953c3c","ChargeDeviceRef":"30002","ChargeDeviceName":"Sunderland Civic Centre Floor Five","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.902556","Longitude":"-1.382244","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Sunderland Civic Centre Floor Five","Street":null,"DoubleDependantLocality":"Cowan Terrace","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR2 7DN","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Sunderland Civic Centre Floor Five"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"35a0f1963430da063133ba27d695f851","ChargeDeviceRef":"30005","ChargeDeviceName":"Sunderland Civic Centre Floor Five","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.902556","Longitude":"-1.382344","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Sunderland Civic Centre Floor Five","Street":null,"DoubleDependantLocality":"Cowan Terrace","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR2 7DN","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Sunderland Civic Centre Floor Five"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"08048a9c5630ccb67789a198f35d30ec","ChargeDeviceRef":"30004","ChargeDeviceName":"Sunderland Civic Centre Floor Four","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.902356","Longitude":"-1.382244","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Sunderland Civic Centre Floor Four","Street":null,"DoubleDependantLocality":"Cowan Terrace","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR2 7DN","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Sunderland Civic Centre Floor Four"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"bdb3c278f45e6734c35733d24299d3f4","ChargeDeviceRef":"30006","ChargeDeviceName":"Sunderland Civic Centre Floor Four","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.902356","Longitude":"-1.382244","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Sunderland Civic Centre Floor Four","Street":null,"DoubleDependantLocality":"Cowan Terrace","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR2 7DN","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Sunderland Civic Centre Floor Four"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"9f4768b4bd4a205e1d3a60398ab022a2","ChargeDeviceRef":"30003","ChargeDeviceName":"Sunderland Civic Centre Floor Four","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.902356","Longitude":"-1.382444","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Sunderland Civic Centre Floor Four","Street":null,"DoubleDependantLocality":"Cowan Terrace","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR2 7DN","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Sunderland Civic Centre Floor Four"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"739cf54211aa6b75dd3001d54064e7a7","ChargeDeviceRef":"30018","ChargeDeviceName":"Sunniside Car Park Floor Four","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.908464","Longitude":"-1.379001","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Sunniside Car Park Floor Four","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR11UL","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Sunniside Car Park Floor Four"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8074856808ebec0c49403ce3589b28de","ChargeDeviceRef":"30017","ChargeDeviceName":"Sunniside Car Park Floor Four","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.908464","Longitude":"-1.379001","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Sunniside Car Park Floor Four","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR11UL","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Sunniside Car Park Floor Four"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a6e8ad49045f0bef72fb92d7c4a97fed","ChargeDeviceRef":"30015","ChargeDeviceName":"Sunniside Car Park Floor Two","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.908464","Longitude":"-1.379001","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Sunniside Car Park Floor Two","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR11UL","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Sunniside Car Park Floor Two"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"785736838d7b51f2cabb00e6b28a8969","ChargeDeviceRef":"30016","ChargeDeviceName":"Sunniside Car Park Floor Two","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.908464","Longitude":"-1.379001","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Sunniside Car Park Floor Two","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR11UL","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Sunniside Car Park Floor Two"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"cfe795a0a3c7bc1683f2efd8837dde0c","ChargeDeviceRef":"100_10351","ChargeDeviceName":"Sutton Hospital","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.346947","Longitude":"-0.193276","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Cotswold Road","DoubleDependantLocality":null,"DependantLocality":"Surrey","PostTown":"London","PostCode":"SM2 5NF","Country":"gb"},"LocationShortDescription":"Cotswold Road, Surrey","LocationLongDescription":"Cotswold Road, Surrey, London, SM2 5NF"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e1cd50f4a9880333cdad4a24ee9d550c","ChargeDeviceRef":"30008","ChargeDeviceName":"Swinburne St Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.964800","Longitude":"-1.603485","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Swinburne St Carpark","Street":null,"DoubleDependantLocality":"Swinburne Street","DependantLocality":"Gateshead","PostTown":null,"PostCode":"NE8 1AX","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Swinburne St Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4ac778418206cc85ac960d5b9134bf74","ChargeDeviceRef":"30007","ChargeDeviceName":"Swinburne St Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.964815","Longitude":"-1.603435","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Swinburne St Carpark","Street":null,"DoubleDependantLocality":"Swinburne Street","DependantLocality":"Gateshead","PostTown":null,"PostCode":"NE8 1AX","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"Swinburne St Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"23685a2431acad7789c1e3d43ea1522c","ChargeDeviceRef":"20006","ChargeDeviceName":"Swing Bridge Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.967738","Longitude":"-1.609539","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Swing Bridge Carpark ","Street":null,"DoubleDependantLocality":"The Close (or Close)","DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE1 3RQ","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Swing Bridge Carpark "},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4a64d913220fca4c33c140c6952688a8","ChargeDeviceRef":"30019","ChargeDeviceName":"Tatham Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.903026","Longitude":"-1.375103","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Tatham Street Car Park","Street":null,"DoubleDependantLocality":"Tatham Street","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR3 2QY","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Tatham Street Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"2e855f9489df0712b4bd8ea9e2848c5a","ChargeDeviceRef":"30020","ChargeDeviceName":"Tatham Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.902926","Longitude":"-1.375003","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Tatham Street Car Park","Street":null,"DoubleDependantLocality":"Tatham Street","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR3 2QY","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Tatham Street Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a4bd4d2b1cc64abf1fffb8103da2b890","ChargeDeviceRef":"10034","ChargeDeviceName":"Teesside University Clarendon Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.571584","Longitude":"-1.234692","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Teesside University Clarendon Road","Street":null,"DoubleDependantLocality":"Clarendon Road","DependantLocality":"Middlesbrough","PostTown":null,"PostCode":"TS1 3DP","Country":"gb"},"LocationShortDescription":"Middlesbrough","LocationLongDescription":"Teesside University Clarendon Road"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"e1054bf2d703bca1e8fe101d3ac5efcd","ChargeDeviceRef":"10022","ChargeDeviceName":"Teesside University Clarendon Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.571284","Longitude":"-1.234692","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Teesside University Clarendon Road","Street":null,"DoubleDependantLocality":"Clarendon Road","DependantLocality":"Middlesbrough","PostTown":null,"PostCode":"TS1 3DP","Country":"gb"},"LocationShortDescription":"Middlesbrough","LocationLongDescription":"Teesside University Clarendon Road"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"d3f06eef2ffac7faadbe3055a70682ac","ChargeDeviceRef":"10033","ChargeDeviceName":"Teesside University Clarendon Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.571484","Longitude":"-1.234692","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Teesside University Clarendon Road","Street":null,"DoubleDependantLocality":"Clarendon Road","DependantLocality":"Middlesbrough","PostTown":null,"PostCode":"TS1 3DP","Country":"gb"},"LocationShortDescription":"Middlesbrough","LocationLongDescription":"Teesside University Clarendon Road"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a01dfc715df9621113e91549c0ee7651","ChargeDeviceRef":"10023","ChargeDeviceName":"Teesside University Clarendon Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.571384","Longitude":"-1.234692","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Teesside University Clarendon Road","Street":null,"DoubleDependantLocality":"Clarendon Road","DependantLocality":"Middlesbrough","PostTown":null,"PostCode":"TS1 3DP","Country":"gb"},"LocationShortDescription":"Middlesbrough","LocationLongDescription":"Teesside University Clarendon Road"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"47e338b3c082945eff04de6d65915ade","ChargeDeviceRef":"10059","ChargeDeviceName":"Teesside University Darlington Campus","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.527155","Longitude":"-1.542441","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Teesside University Darlington Campus","Street":null,"DoubleDependantLocality":"Vicarage Road","DependantLocality":"Darlington","PostTown":"Darlington","PostCode":"DL1 1JW","Country":"gb"},"LocationShortDescription":"Darlington","LocationLongDescription":"Teesside University Darlington Campus"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"fe663a72b27bdc613873fbbb512f6f67","ChargeDeviceRef":"10061","ChargeDeviceName":"Teesside University Darlington Campus","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.528155","Longitude":"-1.542441","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Teesside University Darlington Campus","Street":null,"DoubleDependantLocality":"Vicarage Road","DependantLocality":"Darlington","PostTown":"Darlington","PostCode":"DL1 1JW","Country":"gb"},"LocationShortDescription":"Darlington","LocationLongDescription":"Teesside University Darlington Campus"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a714ec6796f638ba4d5792f78dccd134","ChargeDeviceRef":"10060","ChargeDeviceName":"Teesside University Darlington Campus","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.529155","Longitude":"-1.542441","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Teesside University Darlington Campus","Street":null,"DoubleDependantLocality":"Vicarage Road","DependantLocality":"Darlington","PostTown":"Darlington","PostCode":"DL1 1JW","Country":"gb"},"LocationShortDescription":"Darlington","LocationLongDescription":"Teesside University Darlington Campus"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f24ad6f72d6cc4cb51464f2b29ab69d3","ChargeDeviceRef":"SC26","ChargeDeviceName":"Templemore Leisure Centre","ChargeDeviceText":"Templemore Leisure Centre Car Park","ChargeDeviceLocation":{"Latitude":"55.025118","Longitude":"-7.337706","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":"Templemore Leisure Centre Car Park","LocationLongDescription":"Templemore Leisure Centre Car Park. Usual parking restrictions apply"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"City of Derry Council","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"265eceb6d4d961057f1b483a558e2885","ChargeDeviceRef":"41051","ChargeDeviceName":"Terrace Green Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.840193","Longitude":"-1.332386","Address":{"SubBuildingName":null,"BuildingName":"Terrace Green Carpark","BuildingNumber":null,"Thoroughfare":null,"Street":"Greencroft Industrial Estate","DoubleDependantLocality":"Amos Drive","DependantLocality":null,"PostTown":"Seaham","PostCode":"SR7 7EU","Country":"gb"},"LocationShortDescription":"Seaham","LocationLongDescription":"Terrace Green Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"0dd1bc593a91620daecf7723d2235624","ChargeDeviceRef":"PP-12177","ChargeDeviceName":"Tesco Head Office (Cheshunt)","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.705368","Longitude":"-0.025602","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"EN8 9SL","Country":"gb"},"LocationShortDescription":"Tesco Head Office (Cheshunt) - Private Site no public access","LocationLongDescription":"This POD Point is sited at Tesco's Head Office in Cheshunt and available to those on site conducting business with Tesco (sorry but shopping at Tesco doesn't count)"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a1c5aff9679455a233086e26b72b9a06","ChargeDeviceRef":"PP-10003","ChargeDeviceName":"Tesco Head Office (Welwyn)","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.809000","Longitude":"-0.197000","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"AL7 1AB","Country":"gb"},"LocationShortDescription":"Tesco Head Office (Welwyn) - Private Site no public access","LocationLongDescription":"This POD Point is sited at Tesco's Offices in Welwyn and available to those on site conducting business with Tesco (sorry but shopping at Tesco doesn't count)"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"df42e2244c97a0d80d565ae8176d3351","ChargeDeviceRef":"PP-10012","ChargeDeviceName":"Tesco Kennington","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.487000","Longitude":"-0.115000","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"SE11 5QY","Country":"gb"},"LocationShortDescription":"Tesco Kennington Supermarket carpark","LocationLongDescription":"Tesco Kennington."},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"51f3eb940fd73a19119534c063967bff","ChargeDeviceRef":"PP-10010","ChargeDeviceName":"Tesco Kensington","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.493000","Longitude":"-0.202000","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"W14 8PB","Country":"gb"},"LocationShortDescription":"Tesco Kensington Supermarket carpark","LocationLongDescription":"Tesco Kensington."},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"9abe36658bff8131d5a0923ebc196d0e","ChargeDeviceRef":"200_20250","ChargeDeviceName":"The Bittoms Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.406136","Longitude":"-0.305221","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Kingston Town Centre","DoubleDependantLocality":null,"DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT1 2AG","Country":"gb"},"LocationShortDescription":"Kingston Town Centre, Kingston upon Thames","LocationLongDescription":"Kingston Town Centre, Kingston upon Thames, London, KT1 2AG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1a77befc3b608d6ed363567685f70e1e","ChargeDeviceRef":"200_20295","ChargeDeviceName":"The Chimes Shopping Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545273","Longitude":"-0.474790","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Chippendale Waye ","DoubleDependantLocality":"Uxbridge","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"UB8 1LA","Country":"gb"},"LocationShortDescription":"Chippendale Waye , Hillingdon","LocationLongDescription":"Chippendale Waye , Hillingdon, London, UB8 1LA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a3f61f3a8034cbfb5ecf0d785e750fb3","ChargeDeviceRef":"200_20211","ChargeDeviceName":"The Chimes Shopping Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545245","Longitude":"-0.474733","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Chippendale Waye ","DoubleDependantLocality":"Uxbridge","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"UB8 1LA","Country":"gb"},"LocationShortDescription":"Chippendale Waye , Hillingdon","LocationLongDescription":"Chippendale Waye , Hillingdon, London, UB8 1LA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"dab10c50dc668cd8560df444ff3a4227","ChargeDeviceRef":"100_10116","ChargeDeviceName":"The Cut","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.503518","Longitude":"-0.106169","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"The Cut","DoubleDependantLocality":null,"DependantLocality":"Southwark","PostTown":"London","PostCode":"SE1 8DF","Country":"gb"},"LocationShortDescription":"The Cut, Southwark","LocationLongDescription":"The Cut, Southwark, London, SE1 8DF"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6fab6e3aa34248ec1e34a4aeedecddc8","ChargeDeviceRef":"SC34","ChargeDeviceName":"The Diamond ","ChargeDeviceText":"The Diamond on-street","ChargeDeviceLocation":{"Latitude":"54.955580","Longitude":"-7.321846","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":null,"LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"DRD","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"9ce3c52fc54362e22053399d3181c638","ChargeDeviceRef":"10072","ChargeDeviceName":"The Eco Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.984584","Longitude":"-1.505821","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"The Eco Centre","Street":null,"DoubleDependantLocality":"Windmill Way","DependantLocality":"Hebburn","PostTown":null,"PostCode":"NE31 1SR","Country":"gb"},"LocationShortDescription":"Hebburn","LocationLongDescription":"The Eco Centre"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"ab2481c9f93d0ed3033a3281d865ccb2","ChargeDeviceRef":"CM - 993","ChargeDeviceName":"The Falcon Hotel","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.588603","Longitude":"-0.722347","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"7 High Street East
Market Place
Uppingham ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"LE15 9PY","Country":"gb"},"LocationShortDescription":"Public access to staff and visitors
Please report to reception","LocationLongDescription":"One charging point, two sockets

One three pin BS1363 socket
rated at 3kW (mode 2; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Chargemaster","Website":"www.chargemasterplc.com","TelephoneNo":"01582 400 331","ContactName":"Neil Sharpe"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"dcf9082a17123c1adc46b4f19dc90e6c","ChargeDeviceRef":"200_20310","ChargeDeviceName":"The Glades Shopping Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.404058","Longitude":"0.017294","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"High Street","DoubleDependantLocality":null,"DependantLocality":"Bromley","PostTown":"London","PostCode":"BR1 1DN","Country":"gb"},"LocationShortDescription":"High Street, Bromley","LocationLongDescription":"High Street, Bromley, London, BR1 1DN"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6a571fe98a2ba453e84923b447d79cff","ChargeDeviceRef":"200_20293","ChargeDeviceName":"The Glades Shopping Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.404013","Longitude":"0.017306","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"High Street","DoubleDependantLocality":null,"DependantLocality":"Bromley","PostTown":"London","PostCode":"BR1 1DN","Country":"gb"},"LocationShortDescription":"High Street, Bromley","LocationLongDescription":"High Street, Bromley, London, BR1 1DN"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c5d736809766d46260d816d8dbc9eb44","ChargeDeviceRef":"100_10120","ChargeDeviceName":"The Grainges Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.545902","Longitude":"-0.481677","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Oxford Road","DoubleDependantLocality":"Uxbridge","DependantLocality":"Hillingdon","PostTown":"London","PostCode":"UB8 1BS","Country":"gb"},"LocationShortDescription":"Oxford Road, Hillingdon","LocationLongDescription":"Oxford Road, Hillingdon, London, UB8 1BS"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"fb642b781020b2aaeb1a7cee29acc915","ChargeDeviceRef":"11129","ChargeDeviceName":"The Greenhouse","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.850072","Longitude":"-1.742150","Address":{"SubBuildingName":null,"BuildingName":"The Greenhouse","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Stanley","PostCode":"DH9 7XN","Country":"gb"},"LocationShortDescription":"Stanley","LocationLongDescription":"The Greenhouse"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"043c2ec6c6390dd0ac5519190a57c88c","ChargeDeviceRef":"40008","ChargeDeviceName":"The Grove","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.004038","Longitude":"-1.612547","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"The Grove","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Gosforth","PostTown":null,"PostCode":"NE3 1NH","Country":"gb"},"LocationShortDescription":"Gosforth","LocationLongDescription":"The Grove"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"71e63ef5b7249cfc60852f0e0f5bf4c8","ChargeDeviceRef":"40020","ChargeDeviceName":"The Grove","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.004138","Longitude":"-1.612547","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"The Grove","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Gosforth","PostTown":null,"PostCode":"NE3 1NH","Country":"gb"},"LocationShortDescription":"Gosforth","LocationLongDescription":"The Grove"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8c5ebe834bb61a2e5ab8ef38f8d940f3","ChargeDeviceRef":"200_20284","ChargeDeviceName":"The Mall Wood Green Car Park East","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.594550","Longitude":"-0.109575","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"High Road","DoubleDependantLocality":"Wood Green","DependantLocality":"Haringey","PostTown":"London","PostCode":"N22 6DF","Country":"gb"},"LocationShortDescription":"High Road, Haringey","LocationLongDescription":"High Road, Haringey, London, N22 6DF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3eae62bba9ddf64f69d49dc48e2dd214","ChargeDeviceRef":"200_20278","ChargeDeviceName":"The Mall Wood Green Car Park East","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.594837","Longitude":"-0.109520","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"High Road","DoubleDependantLocality":"Wood Green","DependantLocality":"Haringey","PostTown":"London","PostCode":"N22 6DF","Country":"gb"},"LocationShortDescription":"High Road, Haringey","LocationLongDescription":"High Road, Haringey, London, N22 6DF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"538a50fb36b97123adc3627cbdb223bf","ChargeDeviceRef":"200_20302","ChargeDeviceName":"The Mall Wood Green Car Park East","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.594854","Longitude":"-0.109476","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"High Road","DoubleDependantLocality":"Wood Green","DependantLocality":"Haringey","PostTown":"London","PostCode":"N22 6DF","Country":"gb"},"LocationShortDescription":"High Road, Haringey","LocationLongDescription":"High Road, Haringey, London, N22 6DF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c36b1132ac829ece87dda55d77ac06a4","ChargeDeviceRef":"200_10352","ChargeDeviceName":"The Mall Wood Green Car Park West","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.594213","Longitude":"-0.109907","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"High Road","DoubleDependantLocality":"Wood Green","DependantLocality":"Haringey","PostTown":"London","PostCode":"N22 6DF","Country":"gb"},"LocationShortDescription":"High Road, Haringey","LocationLongDescription":"High Road, Haringey, London, N22 6DF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"04c6906524cd877e833fe26ddaddc62f","ChargeDeviceRef":"200_20230","ChargeDeviceName":"The Mall Wood Green Car Park West","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.594205","Longitude":"-0.109921","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"High Road","DoubleDependantLocality":"Wood Green","DependantLocality":"Haringey","PostTown":"London","PostCode":"N22 6DF","Country":"gb"},"LocationShortDescription":"High Road, Haringey","LocationLongDescription":"High Road, Haringey, London, N22 6DF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"085ccaddbd3aa270b1d72beef6bbc5ca","ChargeDeviceRef":"200_20233","ChargeDeviceName":"The Mall Wood Green Car Park West","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.594301","Longitude":"-0.109759","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"High Road","DoubleDependantLocality":"Wood Green","DependantLocality":"Haringey","PostTown":"London","PostCode":"N22 6DF","Country":"gb"},"LocationShortDescription":"High Road, Haringey","LocationLongDescription":"High Road, Haringey, London, N22 6DF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"eafc8fe9c61d6760ae284c29840bbf0b","ChargeDeviceRef":"200_20203","ChargeDeviceName":"The Rose Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.407028","Longitude":"-0.293556","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Kingston Hall Road","DoubleDependantLocality":null,"DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT1 2BQ","Country":"gb"},"LocationShortDescription":"Kingston Hall Road, Kingston upon Thames","LocationLongDescription":"Kingston Hall Road, Kingston upon Thames, London, KT1 2BQ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1e50a717c4febd75e03b348b0be851fa","ChargeDeviceRef":"200_20264","ChargeDeviceName":"The Rose Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.407234","Longitude":"-0.306518","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Kingston Hall Road","DoubleDependantLocality":null,"DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT1 2BQ","Country":"gb"},"LocationShortDescription":"Kingston Hall Road, Kingston upon Thames","LocationLongDescription":"Kingston Hall Road, Kingston upon Thames, London, KT1 2BQ"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"04fcc65450efcccdc9869442c3e36310","ChargeDeviceRef":"20014","ChargeDeviceName":"The Sage Gateshead","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.967298","Longitude":"-1.601517","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":"Gateshead","PostTown":null,"PostCode":"NE8 2JR","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":null},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"98c56bce74669e2e4e7a9fc1caa8c326","ChargeDeviceRef":"30028","ChargeDeviceName":"The Sands Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.780318","Longitude":"-1.575548","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"The Sands Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Durham","PostTown":null,"PostCode":"DH1 1SQ","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"The Sands Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"12b668a1ada1828ba795332f419d4ef7","ChargeDeviceRef":"30052","ChargeDeviceName":"The Sands Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.780318","Longitude":"-1.575448","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"The Sands Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Durham","PostTown":null,"PostCode":"DH1 1SQ","Country":"gb"},"LocationShortDescription":"Durham","LocationLongDescription":"The Sands Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"73d915c91b99b170993ea97d875a6330","ChargeDeviceRef":"30098","ChargeDeviceName":"Thompson Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.570839","Longitude":"-1.313460","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Thompson Street Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Stockton on Tees","PostTown":null,"PostCode":"TS18 2NY","Country":"gb"},"LocationShortDescription":"Stockton on Tees","LocationLongDescription":"Thompson Street Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"237168031d88451c78fd8d6d6378c0b2","ChargeDeviceRef":"30087","ChargeDeviceName":"Thompson Street Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.570889","Longitude":"-1.313460","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Thompson Street Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Stockton on Tees","PostTown":null,"PostCode":"TS18 2NY","Country":"gb"},"LocationShortDescription":"Stockton on Tees","LocationLongDescription":"Thompson Street Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a6da680bcb675843419f2ba88a7ab7b8","ChargeDeviceRef":"31121","ChargeDeviceName":"Thornhill Road Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.050700","Longitude":"-1.744099","Address":{"SubBuildingName":null,"BuildingName":"Thornhill Road Carpark","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Ponteland","PostCode":"NE20 9PZ","Country":"gb"},"LocationShortDescription":"Ponteland","LocationLongDescription":"Thornhill Road Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"19d19f93a4200dca6148155b8ccc0afd","ChargeDeviceRef":"31122","ChargeDeviceName":"Thornhill Road Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.050700","Longitude":"-1.743999","Address":{"SubBuildingName":null,"BuildingName":"Thornhill Road Carpark","BuildingNumber":null,"Thoroughfare":null,"Street":"Ferryboat Lane","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Ponteland","PostCode":"NE20 9PZ","Country":"gb"},"LocationShortDescription":"Ponteland","LocationLongDescription":"Thornhill Road Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"7a50d83a1e70e9d96c3357438aed7a44","ChargeDeviceRef":"200_20228","ChargeDeviceName":"Times Square Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.363951","Longitude":"-0.191486","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Throwley Way","DoubleDependantLocality":null,"DependantLocality":"Sutton","PostTown":"London","PostCode":"SM1 4BG","Country":"gb"},"LocationShortDescription":"Throwley Way, Sutton","LocationLongDescription":"Throwley Way, Sutton, London, SM1 4BG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a376802c0811f1b9088828288eb0d3f0","ChargeDeviceRef":"100_10204","ChargeDeviceName":"Tolworth Sports Ground","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.375681","Longitude":"-0.275209","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Old Kingston Road","DoubleDependantLocality":"Tolworth","DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT4 7QH","Country":"gb"},"LocationShortDescription":"Old Kingston Road, Kingston upon Thames","LocationLongDescription":"Old Kingston Road, Kingston upon Thames, London, KT4 7QH"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"8289889263db4a40463e3f358bb7c7a1","ChargeDeviceRef":"300_10223","ChargeDeviceName":"Tottenham Green Leisure Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.588822","Longitude":"-0.073650","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"1 Philip Lane","DoubleDependantLocality":"East of Arnold Road","DependantLocality":"Haringey","PostTown":"London","PostCode":"N15 4JA","Country":"gb"},"LocationShortDescription":"1 Philip Lane, Haringey","LocationLongDescription":"1 Philip Lane, Haringey, London, N15 4JA"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5dedb42b34e50082065a783265ce28a8","ChargeDeviceRef":"300_10162","ChargeDeviceName":"Tower Hill Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508797","Longitude":"-0.080213","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"50 Lower Thames Street","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC3R 6DT","Country":"gb"},"LocationShortDescription":"50 Lower Thames Street, City of London","LocationLongDescription":"50 Lower Thames Street, City of London, London, EC3R 6DT"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1d3b7f1f8a7625f8d5e700dcf0d9ae68","ChargeDeviceRef":"300_10164","ChargeDeviceName":"Tower Hill Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508797","Longitude":"-0.080213","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"50 Lower Thames Street","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC3R 6DT","Country":"gb"},"LocationShortDescription":"50 Lower Thames Street, City of London","LocationLongDescription":"50 Lower Thames Street, City of London, London, EC3R 6DT"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"48c00ae965e23b2869f8eaa13d2dcefa","ChargeDeviceRef":"300_10166","ChargeDeviceName":"Tower Hill Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508797","Longitude":"-0.080213","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"50 Lower Thames Street","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC3R 6DT","Country":"gb"},"LocationShortDescription":"50 Lower Thames Street, City of London","LocationLongDescription":"50 Lower Thames Street, City of London, London, EC3R 6DT"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1d0787d664c95f8c2adb1da311af3c78","ChargeDeviceRef":"300_10163","ChargeDeviceName":"Tower Hill Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508797","Longitude":"-0.080213","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"50 Lower Thames Street","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC3R 6DT","Country":"gb"},"LocationShortDescription":"50 Lower Thames Street, City of London","LocationLongDescription":"50 Lower Thames Street, City of London, London, EC3R 6DT"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c5c1bda1194f9423d744e0ef67df94ee","ChargeDeviceRef":"300_10165","ChargeDeviceName":"Tower Hill Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508797","Longitude":"-0.080213","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"50 Lower Thames Street","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC3R 6DT","Country":"gb"},"LocationShortDescription":"50 Lower Thames Street, City of London","LocationLongDescription":"50 Lower Thames Street, City of London, London, EC3R 6DT"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6adbe8b2ab3a52e619c526eff905468a","ChargeDeviceRef":"300_10167","ChargeDeviceName":"Tower Hill Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508797","Longitude":"-0.080213","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"50 Lower Thames Street","DoubleDependantLocality":null,"DependantLocality":"City of London","PostTown":"London","PostCode":"EC3R 6DT","Country":"gb"},"LocationShortDescription":"50 Lower Thames Street, City of London","LocationLongDescription":"50 Lower Thames Street, City of London, London, EC3R 6DT"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"cb8a08a240f3ea7c99b220d24f54f477","ChargeDeviceRef":"21121","ChargeDeviceName":"Town Centre Citroen","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.913964","Longitude":"-1.458730","Address":{"SubBuildingName":null,"BuildingName":"Town Centre Citroen","BuildingNumber":null,"Thoroughfare":null,"Street":"Nissan Way. Washington","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3JN","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Town Centre Citroen"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"9a02387b02ce7de2dac4b925892f68fb","ChargeDeviceRef":"200_20218","ChargeDeviceName":"Treaty Shopping Centre Car Park Level 1b","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.459526","Longitude":"-0.367502","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"High Street","DoubleDependantLocality":null,"DependantLocality":"Hounslow","PostTown":"London","PostCode":"TW3 1ES","Country":"gb"},"LocationShortDescription":"High Street, Hounslow","LocationLongDescription":"High Street, Hounslow, London, TW3 1ES"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b87517992f7dce71b674976b280257d2","ChargeDeviceRef":"200_20213","ChargeDeviceName":"Treaty Shopping Centre Car Park Level 1b","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.467616","Longitude":"-0.364665","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"High Street","DoubleDependantLocality":null,"DependantLocality":"Hounslow","PostTown":"London","PostCode":"TW3 1ES","Country":"gb"},"LocationShortDescription":"High Street, Hounslow","LocationLongDescription":"High Street, Hounslow, London, TW3 1ES"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"8452a95c40e2b232acd9b8a8712935d7","ChargeDeviceRef":"11130","ChargeDeviceName":"Tyne and Wear Fire and Rescue Service HQ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.908107","Longitude":"-1.487201","Address":{"SubBuildingName":null,"BuildingName":"Tyne and Wear Fire and Rescue","BuildingNumber":null,"Thoroughfare":null,"Street":"Building 7","DoubleDependantLocality":"Queens Park","DependantLocality":null,"PostTown":"Sunderland","PostCode":"SR5 3QY","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Tyne and Wear Fire and Rescue Service HQ"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"c6c61abda705fbc0728c076d60ed74b8","ChargeDeviceRef":"11159","ChargeDeviceName":"UK Land Estates","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.940335","Longitude":"-1.620068","Address":{"SubBuildingName":null,"BuildingName":"UK Land Estates","BuildingNumber":null,"Thoroughfare":null,"Street":"Cherry Blossom Way","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Gateshead","PostCode":"NE11 0QD","Country":"gb"},"LocationShortDescription":"Gateshead","LocationLongDescription":"UK Land Estates"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4ff3e350028d0cfcb92c3a87a57585b1","ChargeDeviceRef":"100_10406","ChargeDeviceName":"Union Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.409418","Longitude":"-0.305243","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Union Street","DoubleDependantLocality":"North of Eden Street","DependantLocality":"Kingston upon Thames","PostTown":"London","PostCode":"KT1 1JD","Country":"gb"},"LocationShortDescription":"Union Street, Kingston upon Thames","LocationLongDescription":"Union Street, Kingston upon Thames, London, KT1 1JD"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"CombiCharge 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"358f9e7be09177c17d0d17ff73584307","ChargeDeviceRef":"10046","ChargeDeviceName":"University of Sunderland City Space","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.904491","Longitude":"-1.392698","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"University of Sunderland City Space","Street":null,"DoubleDependantLocality":"Chester Road Campus","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR1 3SD","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"University of Sunderland City Space"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"197838c579c3b78927e0cd15ba4c9689","ChargeDeviceRef":"10047","ChargeDeviceName":"University of Sunderland City Space","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.904461","Longitude":"-1.392698","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"University of Sunderland City Space","Street":null,"DoubleDependantLocality":"Chester Road Campus","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR1 3SD","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"University of Sunderland City Space"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"90fd4f88f588ae64038134f1eeaa023f","ChargeDeviceRef":"10031","ChargeDeviceName":"University of Sunderland St Peters Campus","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.912317","Longitude":"-1.372204","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"University of Sunderland St Peters Campus","Street":null,"DoubleDependantLocality":"Off Liberty Way","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR6 3SD","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"University of Sunderland St Peters Campus"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"45be58330c9a2ac2bc408ec210820fab","ChargeDeviceRef":"10030","ChargeDeviceName":"University of Sunderland St Peters Campus","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.912357","Longitude":"-1.372204","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"University of Sunderland St Peters Campus","Street":null,"DoubleDependantLocality":"Off Liberty Way","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR6 3SD","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"University of Sunderland St Peters Campus"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"fa8dbbcb682699544e4e8f2212115f73","ChargeDeviceRef":"PP - 12653","ChargeDeviceName":"University of Worcester 1","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.193000","Longitude":"-2.232800","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Riverside Chequers Lane
Worcester","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"WR2 5JN","Country":"gb"},"LocationShortDescription":"Restricted access to students, staff and visitors","LocationLongDescription":"One charging point, two sockets, RFID card accessed

One three pin BS1363 socket
rated at 3kW (mode 2; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"fb4c48608ce8825b558ccf07169a3421","ChargeDeviceRef":"PP - 12650","ChargeDeviceName":"University of Worcester 2","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.197000","Longitude":"-2.245000","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Henwick Grove
Worcester","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"WR2 6AJ","Country":"gb"},"LocationShortDescription":"Restricted access to students, staff and visitors","LocationLongDescription":"One charging point, two sockets, RFID card accessed

One three pin BS1363 socket
rated at 3kW (mode 2; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"b28d8e3ccb1ff9d46fa2d9e70222c9e7","ChargeDeviceRef":"200_20220","ChargeDeviceName":"Upper Ground","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.506840","Longitude":"-0.111983","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"76 Upper Ground","DoubleDependantLocality":"Waterloo","DependantLocality":"Lambeth","PostTown":"London","PostCode":"SE1 9PP","Country":"gb"},"LocationShortDescription":"76 Upper Ground, Lambeth","LocationLongDescription":"76 Upper Ground, Lambeth, London, SE1 9PP"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3b8c6dc0b282e4aa77ac2a109dbc83c8","ChargeDeviceRef":"11144","ChargeDeviceName":"Vantec Europe","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.916991","Longitude":"-1.488580","Address":{"SubBuildingName":null,"BuildingName":"Vantec Europe","BuildingNumber":null,"Thoroughfare":null,"Street":"Next to Tourist Information","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Washington","PostCode":"SR5 3QZ","Country":"gb"},"LocationShortDescription":"Washington","LocationLongDescription":"Vantec Europe"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"7a4bf9ba2bd774068ad50351fb898076","ChargeDeviceRef":"SC27","ChargeDeviceName":"Victoria Market Car Park","ChargeDeviceText":"Victoria Market DRD Car Park, Londonderry","ChargeDeviceLocation":{"Latitude":"54.998900","Longitude":"-7.320950","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":null,"LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"18a4e1366eb78af25ed5cfc306e8f873","ChargeDeviceRef":"300_10114","ChargeDeviceName":"Waldeck Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.589808","Longitude":"-0.097154","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Waldeck Road","DoubleDependantLocality":"Southwest of Langham Road","DependantLocality":"Haringey","PostTown":"London","PostCode":"N17 6AR","Country":"gb"},"LocationShortDescription":"Waldeck Road, Haringey","LocationLongDescription":"Waldeck Road, Haringey, London, N17 6AR"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5a9542c773018268fc6271f7afeea969","ChargeDeviceRef":"20016","ChargeDeviceName":"Walltown Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.986605","Longitude":"-2.519884","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Walltown Car Park","Street":null,"DoubleDependantLocality":"Greenhead","DependantLocality":"Haltwhistle","PostTown":"Northumberland","PostCode":"CA6 7JD","Country":"gb"},"LocationShortDescription":"Haltwhistle","LocationLongDescription":"Walltown Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"f5ac21cd0ef1b88e9848571aeb53551a","ChargeDeviceRef":"20078","ChargeDeviceName":"Walltown Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.986605","Longitude":"-2.519784","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Walltown Car Park","Street":null,"DoubleDependantLocality":"Greenhead","DependantLocality":"Haltwhistle","PostTown":"Northumberland","PostCode":"CA6 7JD","Country":"gb"},"LocationShortDescription":"Haltwhistle","LocationLongDescription":"Walltown Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"adf7ee2dcf142b0e11888e72b43fcb75","ChargeDeviceRef":"200_10326","ChargeDeviceName":"Wandle Recreation Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.451558","Longitude":"-0.193294","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Mapleton Road","DoubleDependantLocality":null,"DependantLocality":"Wandsworth","PostTown":"London","PostCode":"SW18 4DN","Country":"gb"},"LocationShortDescription":"Mapleton Road, Wandsworth","LocationLongDescription":"Mapleton Road, Wandsworth, London, SW18 4DN"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"cede2d63a7c04ebd4cb55a2228c7141a","ChargeDeviceRef":"400_10238","ChargeDeviceName":"Wandle Road car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.369889","Longitude":"-0.101315","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Wandle Road","DoubleDependantLocality":"South Croydon","DependantLocality":"Croydon","PostTown":"London","PostCode":"CR0 1TQ","Country":"gb"},"LocationShortDescription":"Wandle Road, Croydon","LocationLongDescription":"Wandle Road, Croydon, London, CR0 1TQ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c96ebeee051996333b6d70b2da6191b0","ChargeDeviceRef":"400_10232","ChargeDeviceName":"Wandle Road car park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.369871","Longitude":"-0.101316","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Wandle Road","DoubleDependantLocality":"South Croydon","DependantLocality":"Croydon","PostTown":"London","PostCode":"CR0 1TQ","Country":"gb"},"LocationShortDescription":"Wandle Road, Croydon","LocationLongDescription":"Wandle Road, Croydon, London, CR0 1TQ"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d6317f80523fdf2a7375da19c9a006b8","ChargeDeviceRef":"200_10315","ChargeDeviceName":"Warren Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.523527","Longitude":"-0.142213","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"37 Warren Street","DoubleDependantLocality":"East of Cleveland Street","DependantLocality":"Camden","PostTown":"London","PostCode":"W1T 5NG","Country":"gb"},"LocationShortDescription":"37 Warren Street, Camden","LocationLongDescription":"37 Warren Street, Camden, London, W1T 5NG"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"d7aab42e6b85c49c0f1d3a115e939c74","ChargeDeviceRef":"SC16","ChargeDeviceName":"Wellington Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.343512","Longitude":"-7.637848","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":null,"Country":"gb"},"LocationShortDescription":null,"LocationLongDescription":null},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"2","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"22.00","RatedOutputVoltage":null,"RatedOutputCurrent":"32","ChargeMethod":"Three Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"NIE","Website":null,"TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6e66329891cbb9adb1966e44379cfadf","ChargeDeviceRef":"10062","ChargeDeviceName":"Wellmere Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.880820","Longitude":"-1.371616","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Wellmere Road","Street":"Leechmere Industrial Estate","DoubleDependantLocality":"Grangetown","DependantLocality":"Sunderland","PostTown":null,"PostCode":"SR2 9TE","Country":"gb"},"LocationShortDescription":"Sunderland","LocationLongDescription":"Wellmere Road"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"fecc3a370a23d13b1cf91ac3c1e1ca92","ChargeDeviceRef":"100_10216","ChargeDeviceName":"Welstead Way Car Park ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.495372","Longitude":"-0.248006","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Bath Road","DoubleDependantLocality":"Isleworth","DependantLocality":"Hounslow","PostTown":"London","PostCode":"W4 1NL","Country":"gb"},"LocationShortDescription":"Bath Road, Hounslow","LocationLongDescription":"Bath Road, Hounslow, London, W4 1NL"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0c4a4df48a930b56e7d71ec5a34b8257","ChargeDeviceRef":"300_10123","ChargeDeviceName":"Wendover Road Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.535388","Longitude":"-0.246758","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Harlesdon","DoubleDependantLocality":null,"DependantLocality":"Brent","PostTown":"London","PostCode":"NW10 4RU","Country":"gb"},"LocationShortDescription":"Harlesdon, Brent","LocationLongDescription":"Harlesdon, Brent, London, NW10 4RU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"91bc333f6967019ac47b49ca0f2fa757","ChargeDeviceRef":"31033","ChargeDeviceName":"Wentworth Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.971113","Longitude":"-2.097504","Address":{"SubBuildingName":null,"BuildingName":"Wentworth Car Park","BuildingNumber":null,"Thoroughfare":null,"Street":"The Wilton Centre","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Hexham","PostCode":"NE46 1QE","Country":"gb"},"LocationShortDescription":"Hexham","LocationLongDescription":"Wentworth Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"48f7d3043bc03e6c48a6f0ebc0f258a8","ChargeDeviceRef":"20081","ChargeDeviceName":"Wentworth Leisure Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.972593","Longitude":"-2.097190","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Wentworth Leisure Centre","Street":null,"DoubleDependantLocality":"Wentworth Place","DependantLocality":"Hexham","PostTown":null,"PostCode":"NE46 3PD","Country":"gb"},"LocationShortDescription":"Hexham","LocationLongDescription":"Wentworth Leisure Centre"},"Connector":[{"ConnectorId":"0","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":"415","RatedOutputCurrent":"125","ChargeMethod":"Single Phase AC","ChargeMode":null,"ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8dcf2420e78a64333a59674678fb283b","ChargeDeviceRef":"PP-12311","ChargeDeviceName":"Wessex Garages Cardiff ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.468083","Longitude":"-3.206283","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"289 Penarth Rd, Cardiff, CF11 8TT","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"CF11 8AQ","Country":"gb"},"LocationShortDescription":"Cardiff ","LocationLongDescription":"Hadfield Road, Leckwith, Cardiff, "},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"0c7119e3a6a2209da6a5b90e5b5b75bd","ChargeDeviceRef":"300_10181","ChargeDeviceName":"West End Lane","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.540812","Longitude":"-0.191780","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"West End Lane","DoubleDependantLocality":"West Hampstead","DependantLocality":"Camden","PostTown":"London","PostCode":"NW6 4SS","Country":"gb"},"LocationShortDescription":"West End Lane, Camden","LocationLongDescription":"West End Lane, Camden, London, NW6 4SS"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"Out of service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"311abb492a69fe7da41be858fdd2aae8","ChargeDeviceRef":"PP-12313","ChargeDeviceName":"West Way Aldershot","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.248150","Longitude":"-0.758249","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Windsor Way, Aldershot, Hampshire, GU11 1JG ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"GU11 1JG","Country":"gb"},"LocationShortDescription":"Aldershot ","LocationLongDescription":"Windsor WayAldershotHampshire"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"5db60c98209913790e4fcce4597ee37c","ChargeDeviceRef":"PP-12462","ChargeDeviceName":"West Way Oxford ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.829183","Longitude":"-1.307560","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Oxford Motor Park, Langford Lane, Kidlington, Oxford, Oxfordshire, OX5 1FJ ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"OX5 1FJ","Country":"gb"},"LocationShortDescription":"Oxford ","LocationLongDescription":"Oxford Motor ParkLangford LaneKidlington"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"9649dec6196d730c5e024f204477d8d1","ChargeDeviceRef":"PP-12304","ChargeDeviceName":"West Way Southampton ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"50.922939","Longitude":"-1.473515","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"The Causeway, SO15 0NP ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"SO15 0NP","Country":"gb"},"LocationShortDescription":"Southampton ","LocationLongDescription":"The CausewayRedbridgeSouthamptonHampshire"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"97250eb3250c1fa40a321076d5be217d","ChargeDeviceRef":"PP-12291","ChargeDeviceName":"West Way Stockport ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"53.406871","Longitude":"-2.155209","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Spring Gardens, Stockport, Cheshire, SK1 4AA ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"SK1 4AA","Country":"gb"},"LocationShortDescription":"Stockport ","LocationLongDescription":"Spring GardensStockportCheshire"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"137bdd55f159c4f5556391f53e608f2e","ChargeDeviceRef":"300_10137","ChargeDeviceName":"Westerley Crescent","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.424676","Longitude":"-0.033870","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Sydenham","DoubleDependantLocality":null,"DependantLocality":"Lewisham ","PostTown":"London","PostCode":"SE26 5AY","Country":"gb"},"LocationShortDescription":"Sydenham, Lewisham ","LocationLongDescription":"Sydenham, Lewisham , London, SE26 5AY"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-13 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a5bad363fc47f424ddf5091c8471480a","ChargeDeviceRef":"200_10334","ChargeDeviceName":"Westfield London","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508352","Longitude":"-0.221987","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Ariel Way","DoubleDependantLocality":"Shepherds Bush","DependantLocality":"Hammersmith & Fulham","PostTown":"London","PostCode":"W12 7SL","Country":"gb"},"LocationShortDescription":"Ariel Way, Hammersmith & Fulham","LocationLongDescription":"Ariel Way, Hammersmith & Fulham, London, W12 7SL"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"810bf83c7adfd8a04ac1f11508bab9e0","ChargeDeviceRef":"200_10324","ChargeDeviceName":"Westfield London","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508352","Longitude":"-0.221987","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Ariel Way","DoubleDependantLocality":"Shepherds Bush","DependantLocality":"Hammersmith & Fulham","PostTown":"London","PostCode":"W12 7SL","Country":"gb"},"LocationShortDescription":"Ariel Way, Hammersmith & Fulham","LocationLongDescription":"Ariel Way, Hammersmith & Fulham, London, W12 7SL"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"45c68484c6fc509cb25bdfca881e5cd8","ChargeDeviceRef":"200_10349","ChargeDeviceName":"Westfield London","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508352","Longitude":"-0.221987","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Ariel Way","DoubleDependantLocality":"Shepherds Bush","DependantLocality":"Hammersmith & Fulham","PostTown":"London","PostCode":"W12 7SL","Country":"gb"},"LocationShortDescription":"Ariel Way, Hammersmith & Fulham","LocationLongDescription":"Ariel Way, Hammersmith & Fulham, London, W12 7SL"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1cc8a8ea51cd0adddf5dab504a285915","ChargeDeviceRef":"200_10332","ChargeDeviceName":"Westfield London","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508352","Longitude":"-0.221987","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Ariel Way","DoubleDependantLocality":"Shepherds Bush","DependantLocality":"Hammersmith & Fulham","PostTown":"London","PostCode":"W12 7SL","Country":"gb"},"LocationShortDescription":"Ariel Way, Hammersmith & Fulham","LocationLongDescription":"Ariel Way, Hammersmith & Fulham, London, W12 7SL"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"22f2729737ae3dc9702e4cee0eb3e900","ChargeDeviceRef":"200_10343","ChargeDeviceName":"Westfield London","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508352","Longitude":"-0.221987","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Ariel Way","DoubleDependantLocality":"Shepherds Bush","DependantLocality":"Hammersmith & Fulham","PostTown":"London","PostCode":"W12 7SL","Country":"gb"},"LocationShortDescription":"Ariel Way, Hammersmith & Fulham","LocationLongDescription":"Ariel Way, Hammersmith & Fulham, London, W12 7SL"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"b112ca4087d668785e947a57493d1740","ChargeDeviceRef":"200_10328","ChargeDeviceName":"Westfield London","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508352","Longitude":"-0.221987","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Ariel Way","DoubleDependantLocality":"Shepherds Bush","DependantLocality":"Hammersmith & Fulham","PostTown":"London","PostCode":"W12 7SL","Country":"gb"},"LocationShortDescription":"Ariel Way, Hammersmith & Fulham","LocationLongDescription":"Ariel Way, Hammersmith & Fulham, London, W12 7SL"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"2912bbeedc16c67bd0529ab7d438c1ac","ChargeDeviceRef":"200_10345","ChargeDeviceName":"Westfield London","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508352","Longitude":"-0.221987","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Ariel Way","DoubleDependantLocality":"Shepherds Bush","DependantLocality":"Hammersmith & Fulham","PostTown":"London","PostCode":"W12 7SL","Country":"gb"},"LocationShortDescription":"Ariel Way, Hammersmith & Fulham","LocationLongDescription":"Ariel Way, Hammersmith & Fulham, London, W12 7SL"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"7c022d9c6dd601e087e186ee6dfe1fc7","ChargeDeviceRef":"200_10330","ChargeDeviceName":"Westfield London","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508352","Longitude":"-0.221987","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Ariel Way","DoubleDependantLocality":"Shepherds Bush","DependantLocality":"Hammersmith & Fulham","PostTown":"London","PostCode":"W12 7SL","Country":"gb"},"LocationShortDescription":"Ariel Way, Hammersmith & Fulham","LocationLongDescription":"Ariel Way, Hammersmith & Fulham, London, W12 7SL"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a821a161aa4214f5ff5b8ca372960ebb","ChargeDeviceRef":"200_10347","ChargeDeviceName":"Westfield London","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508352","Longitude":"-0.221987","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Ariel Way","DoubleDependantLocality":"Shepherds Bush","DependantLocality":"Hammersmith & Fulham","PostTown":"London","PostCode":"W12 7SL","Country":"gb"},"LocationShortDescription":"Ariel Way, Hammersmith & Fulham","LocationLongDescription":"Ariel Way, Hammersmith & Fulham, London, W12 7SL"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f7dafc45da369f8581fdf3bd599075aa","ChargeDeviceRef":"200_10323","ChargeDeviceName":"Westfield London","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.508352","Longitude":"-0.221987","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Ariel Way","DoubleDependantLocality":"Shepherds Bush","DependantLocality":"Hammersmith & Fulham","PostTown":"London","PostCode":"W12 7SL","Country":"gb"},"LocationShortDescription":"Ariel Way, Hammersmith & Fulham","LocationLongDescription":"Ariel Way, Hammersmith & Fulham, London, W12 7SL"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A and 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"cefb500a9f3d05511296a719cffb21cf","ChargeDeviceRef":"400_10123","ChargeDeviceName":"Westfield Stratford City - Car Park A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542919","Longitude":"-0.008717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park A","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park A, Stratford","LocationLongDescription":"Car Park A, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"9238b8c482371600b4448da21405865a","ChargeDeviceRef":"400_10164","ChargeDeviceName":"Westfield Stratford City - Car Park A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542919","Longitude":"-0.008717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park A","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park A, Stratford","LocationLongDescription":"Car Park A, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e88f243bf341ded9b4ced444795c3f17","ChargeDeviceRef":"400_10130","ChargeDeviceName":"Westfield Stratford City - Car Park A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542919","Longitude":"-0.008717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park A","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park A, Stratford","LocationLongDescription":"Car Park A, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5857d68cd9280bc98d079fa912fd6740","ChargeDeviceRef":"400_10166","ChargeDeviceName":"Westfield Stratford City - Car Park A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542919","Longitude":"-0.008717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park A","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park A, Stratford","LocationLongDescription":"Car Park A, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"79cc30c73507cfc25d20fe7f7bcfd91b","ChargeDeviceRef":"400_10135","ChargeDeviceName":"Westfield Stratford City - Car Park A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542919","Longitude":"-0.008717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park A","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park A, Stratford","LocationLongDescription":"Car Park A, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"187acf7982f3c169b3075132380986e4","ChargeDeviceRef":"400_10117","ChargeDeviceName":"Westfield Stratford City - Car Park A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542919","Longitude":"-0.008717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park A","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park A, Stratford","LocationLongDescription":"Car Park A, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"af8d1eb220186400c494db7091e402b0","ChargeDeviceRef":"400_10148","ChargeDeviceName":"Westfield Stratford City - Car Park A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542919","Longitude":"-0.008717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park A","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park A, Stratford","LocationLongDescription":"Car Park A, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ed519c02f134f2cdd836cba387b6a3c8","ChargeDeviceRef":"400_10120","ChargeDeviceName":"Westfield Stratford City - Car Park A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542919","Longitude":"-0.008717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park A","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park A, Stratford","LocationLongDescription":"Car Park A, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"2edfeadfe636973b42d7b6ac315b896c","ChargeDeviceRef":"400_10163","ChargeDeviceName":"Westfield Stratford City - Car Park A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542919","Longitude":"-0.008717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park A","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park A, Stratford","LocationLongDescription":"Car Park A, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"7e6ff0205749bc6025b51155e26f6ced","ChargeDeviceRef":"400_10124","ChargeDeviceName":"Westfield Stratford City - Car Park A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542919","Longitude":"-0.008717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park A","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park A, Stratford","LocationLongDescription":"Car Park A, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"a34e1ddbb4d329167f50992ba59fe45a","ChargeDeviceRef":"400_10165","ChargeDeviceName":"Westfield Stratford City - Car Park A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542919","Longitude":"-0.008717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park A","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park A, Stratford","LocationLongDescription":"Car Park A, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"30d454f09b771b9f65e3eaf6e00fa7bd","ChargeDeviceRef":"400_10131","ChargeDeviceName":"Westfield Stratford City - Car Park A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542919","Longitude":"-0.008717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park A","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park A, Stratford","LocationLongDescription":"Car Park A, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"85267d349a5e647ff0a9edcb5ffd1e02","ChargeDeviceRef":"400_10145","ChargeDeviceName":"Westfield Stratford City - Car Park A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542919","Longitude":"-0.008717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park A","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park A, Stratford","LocationLongDescription":"Car Park A, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"084afd913ab1e6ea58b8ca73f6cb41a6","ChargeDeviceRef":"400_10119","ChargeDeviceName":"Westfield Stratford City - Car Park A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542919","Longitude":"-0.008717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park A","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park A, Stratford","LocationLongDescription":"Car Park A, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0f089a3bcf38d052f7882d12b3923a82","ChargeDeviceRef":"400_10150","ChargeDeviceName":"Westfield Stratford City - Car Park A","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542919","Longitude":"-0.008717","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park A","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park A, Stratford","LocationLongDescription":"Car Park A, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"0a934ecab584f7a4cd0220a7caeccbcc","ChargeDeviceRef":"200_20221","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3e9f0fc9b2f89e043bc6233994dfcf76","ChargeDeviceRef":"400_10134","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"05ee45de8d877c3949760a94fa691533","ChargeDeviceRef":"400_10138","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"40cb228987243c91b2dd0b7c9c4a0856","ChargeDeviceRef":"200_20249","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"022400dffec5b4477f760ca0e7449d73","ChargeDeviceRef":"400_10153","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"768e78024aa8fdb9b8fe87be86f64745","ChargeDeviceRef":"200_20255","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"926ec030f29f83ce5318754fdb631a33","ChargeDeviceRef":"200_20223","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"1e8eec0db325b87b0f57b5056efd8afb","ChargeDeviceRef":"400_10168","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"bdeeecd97342dada47213d06bbd67c2c","ChargeDeviceRef":"200_20265","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"f720ec3e5486f090fd382b68e230b435","ChargeDeviceRef":"200_20232","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"038d5463327addf90d282c35be4c5eb1","ChargeDeviceRef":"400_10126","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"74249bfb363306265299ac4ec44d3cb6","ChargeDeviceRef":"400_10111","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"41071a1452b40720449779a233716395","ChargeDeviceRef":"200_20251","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"c4616f5a24a66668f11ca4fa80525dc4","ChargeDeviceRef":"400_10139","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"20546457187cf3d52ea86538403e47cc","ChargeDeviceRef":"200_20253","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"de3f712d1a02c5fb481a7a99b0da7fa3","ChargeDeviceRef":"200_20241","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"e6cc48e3a8db9b618592a86a57960164","ChargeDeviceRef":"400_10159","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"274a10ffa06e434f2a94df765cac6bf4","ChargeDeviceRef":"200_20256","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"Elektrobay 1 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"7e712eefe0de44f5509b2329b9196827","ChargeDeviceRef":"200_20229","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"ce6babd060aa46c61a5777902cca78af","ChargeDeviceRef":"400_10125","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Durastation 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Chargepoint Services","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"4b0a0290ad7df100b77e86839989a75e","ChargeDeviceRef":"200_20292","ChargeDeviceName":"Westfield Stratford City - Car Park B","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.542902","Longitude":"-0.007694","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Car Park B","DoubleDependantLocality":"Westfield Stratford City","DependantLocality":"Stratford","PostTown":"London","PostCode":"E15 2JU","Country":"gb"},"LocationShortDescription":"Car Park B, Stratford","LocationLongDescription":"Car Park B, Stratford, London, E15 2JU"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Model Name? 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"03a3655fff3e9bdea48de9f49e938e32","ChargeDeviceRef":"40023","ChargeDeviceName":"Westgate Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.971544","Longitude":"-1.628525","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Westgate Road","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE4 6AH","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Westgate Road"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"2c26f9a59b0ba61233e6fc0af8e47f14","ChargeDeviceRef":"40011","ChargeDeviceName":"Westgate Road","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.971513","Longitude":"-1.628290","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Westgate Road","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Newcastle Upon Tyne","PostTown":null,"PostCode":"NE4 6AH","Country":"gb"},"LocationShortDescription":"Newcastle Upon Tyne","LocationLongDescription":"Westgate Road"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"86098ef82c97fa789a47a8d2e8800794","ChargeDeviceRef":"PP-12298","ChargeDeviceName":"Westover Nissan ","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"50.752821","Longitude":"-1.929337","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"514 Wallisdown Road, Bournemouth, Dorset, BH11 8PT ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"BH11 8PT","Country":"gb"},"LocationShortDescription":"Bournemouth ","LocationLongDescription":"514 Wallisdown RoadBournemouthDorset"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"ec1f764517b7ffb52057af6df18142b7","ChargeDeviceRef":"300_10200","ChargeDeviceName":"Whipps Cross Hospital","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.578651","Longitude":"0.002630","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Whipps Cross Road","DoubleDependantLocality":"Leytonstone","DependantLocality":"Waltham Forest","PostTown":"London","PostCode":"E11 1NR","Country":"gb"},"LocationShortDescription":"Whipps Cross Road, Waltham Forest","LocationLongDescription":"Whipps Cross Road, Waltham Forest, London, E11 1NR"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"6a6610feab86a1f294dbbf5855c74af9","ChargeDeviceRef":"20011","ChargeDeviceName":"Whitburn Bents Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.944856","Longitude":"-1.364563","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Whitburn Bents Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Whitburn","PostTown":null,"PostCode":"SR6 7NT","Country":"gb"},"LocationShortDescription":"Whitburn","LocationLongDescription":"Whitburn Bents Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"91a4d5c9c78d0de89b38ff408f49f39c","ChargeDeviceRef":"20009","ChargeDeviceName":"Whitburn Bents Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.944856","Longitude":"-1.364463","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Whitburn Bents Car Park","Street":null,"DoubleDependantLocality":null,"DependantLocality":"Whitburn","PostTown":null,"PostCode":"SR6 7NT","Country":"gb"},"LocationShortDescription":"Whitburn","LocationLongDescription":"Whitburn Bents Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"173f0f6bb0ee97cf5098f73ee94029d4","ChargeDeviceRef":"20039","ChargeDeviceName":"Whitelee Holiday Cotages","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.339441","Longitude":"-2.454873","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Whitelee Holiday Cottages","Street":null,"DoubleDependantLocality":"Whitelee Farm","DependantLocality":"Otterburn","PostTown":"Northumberland","PostCode":"NE19 1TJ","Country":"gb"},"LocationShortDescription":"Otterburn","LocationLongDescription":"Whitelee Holiday Cottages"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4eff0720836a198b6174eecf02cbfdbf","ChargeDeviceRef":"20037","ChargeDeviceName":"Whitelee Holiday Cotages","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.339441","Longitude":"-2.454773","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Whitelee Holiday Cottages","Street":null,"DoubleDependantLocality":"Whitelee Farm","DependantLocality":"Otterburn","PostTown":"Northumberland","PostCode":"NE19 1TJ","Country":"gb"},"LocationShortDescription":"Otterburn","LocationLongDescription":"Whitelee Holiday Cottages"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"9f93557d309f655ff06f109a08dcf7c4","ChargeDeviceRef":"20036","ChargeDeviceName":"Whitelee Holiday Cotages","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.339441","Longitude":"-2.454973","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Whitelee Holiday Cottages","Street":null,"DoubleDependantLocality":"Whitelee Farm","DependantLocality":"Otterburn","PostTown":"Northumberland","PostCode":"NE19 1TJ","Country":"gb"},"LocationShortDescription":"Otterburn","LocationLongDescription":"Whitelee Holiday Cottages"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"7a0c1035bcb33b6d86942ecbedb37267","ChargeDeviceRef":"20038","ChargeDeviceName":"Whitelee Holiday Cotages","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.339441","Longitude":"-2.454873","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Whitelee Holiday Cottages","Street":null,"DoubleDependantLocality":"Whitelee Farm","DependantLocality":"Otterburn","PostTown":"Northumberland","PostCode":"NE19 1TJ","Country":"gb"},"LocationShortDescription":"Otterburn","LocationLongDescription":"Whitelee Holiday Cottages"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"549406198764950208345d143aa67c7d","ChargeDeviceRef":"100_10141","ChargeDeviceName":"Whittington Hospital Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.566843","Longitude":"-0.139914","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Magdala Avenue","DoubleDependantLocality":null,"DependantLocality":"Islington","PostTown":"London","PostCode":"N19 5NF","Country":"gb"},"LocationShortDescription":"Magdala Avenue, Islington","LocationLongDescription":"Magdala Avenue, Islington, London, N19 5NF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5cf68969fb67aa6082363a6d4e6468e2","ChargeDeviceRef":"100_10143","ChargeDeviceName":"Whittington Hospital Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.566952","Longitude":"-0.140530","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Magdala Avenue","DoubleDependantLocality":null,"DependantLocality":"Islington","PostTown":"London","PostCode":"N19 5NF","Country":"gb"},"LocationShortDescription":"Magdala Avenue, Islington","LocationLongDescription":"Magdala Avenue, Islington, London, N19 5NF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"5d40954183d62a82257835477ccad3d2","ChargeDeviceRef":"100_10142","ChargeDeviceName":"Whittington Hospital Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.566766","Longitude":"-0.140134","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Magdala Avenue","DoubleDependantLocality":null,"DependantLocality":"Islington","PostTown":"London","PostCode":"N19 5NF","Country":"gb"},"LocationShortDescription":"Magdala Avenue, Islington","LocationLongDescription":"Magdala Avenue, Islington, London, N19 5NF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"812214fb8e7066bfa6e32c626c2c688b","ChargeDeviceRef":"100_10144","ChargeDeviceName":"Whittington Hospital Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.566918","Longitude":"-0.140647","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Magdala Avenue","DoubleDependantLocality":null,"DependantLocality":"Islington","PostTown":"London","PostCode":"N19 5NF","Country":"gb"},"LocationShortDescription":"Magdala Avenue, Islington","LocationLongDescription":"Magdala Avenue, Islington, London, N19 5NF"},"Connector":[{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":"DualCharge 2 x 3kW\/13A"}],"DeviceController":{"OrganisationName":"Chargemaster","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"3f1656d9668dffcf8119e3ecff873558","ChargeDeviceRef":"20082","ChargeDeviceName":"Willowburn Sports and Leisure Centre","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.402194","Longitude":"-1.696511","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Willowburn Sports and Leisure Centre","Street":null,"DoubleDependantLocality":"Willowburn Avenue","DependantLocality":"Alnwick","PostTown":"Northumberland","PostCode":"NE66 2JH","Country":"gb"},"LocationShortDescription":"Alnwick","LocationLongDescription":"Willowburn Sports and Leisure Centre"},"Connector":[{"ConnectorId":"0","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":"415","RatedOutputCurrent":"125","ChargeMethod":"Single Phase AC","ChargeMode":null,"ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"250b164d84ea39a488422da8500786e6","ChargeDeviceRef":"11126","ChargeDeviceName":"Wilton Centre East Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.575748","Longitude":"-1.099333","Address":{"SubBuildingName":null,"BuildingName":"Wilton Centre East Carpark","BuildingNumber":null,"Thoroughfare":null,"Street":"The Wilton Centre","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Redcar","PostCode":"TS10 4RF","Country":"gb"},"LocationShortDescription":"Redcar","LocationLongDescription":"Wilton Centre East Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"9a0ee0a9e7a42d2d69b8f86b3a0756b1","ChargeDeviceRef":"11125","ChargeDeviceName":"Wilton Centre Visitors Carpark","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.575629","Longitude":"-1.103458","Address":{"SubBuildingName":null,"BuildingName":"Wilton Centre Visitors Carpark","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Redcar","PostCode":"TS10 4RF","Country":"gb"},"LocationShortDescription":"Redcar","LocationLongDescription":"Wilton Centre Visitors Carpark"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"eb30fa42eeb3bf429cb7e3a3d7061b3b","ChargeDeviceRef":"31141","ChargeDeviceName":"Windy Hill Lane","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.591627","Longitude":"-1.017940","Address":{"SubBuildingName":null,"BuildingName":"Windy Hill Lane","BuildingNumber":null,"Thoroughfare":null,"Street":"Middlehaven","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Marske By The Sea","PostCode":"TS11","Country":"gb"},"LocationShortDescription":"Marske By The Sea","LocationLongDescription":"Windy Hill Lane"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"9c22c0b51b3202246463e986c7e205df","ChargeDeviceRef":"21116","ChargeDeviceName":"Winward Way","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.578111","Longitude":"-1.227433","Address":{"SubBuildingName":null,"BuildingName":"Winward Way","BuildingNumber":null,"Thoroughfare":null,"Street":"Middlehaven","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Middlesbrough","PostCode":"TS2 1QG","Country":"gb"},"LocationShortDescription":"Middlesbrough","LocationLongDescription":"Winward Way"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"8c4f839b287d8a4d311eeaad4f8ceb97","ChargeDeviceRef":"21119","ChargeDeviceName":"Winward Way","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.577356","Longitude":"-1.226179","Address":{"SubBuildingName":null,"BuildingName":"Winward Way","BuildingNumber":null,"Thoroughfare":null,"Street":"Zetland Road","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Middlesbrough","PostCode":"TS2 1QG","Country":"gb"},"LocationShortDescription":"Middlesbrough","LocationLongDescription":"Winward Way"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"d814f4e3dcf9e6f473e213232b9ba115","ChargeDeviceRef":"21118","ChargeDeviceName":"Winward Way","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.579165","Longitude":"-1.230131","Address":{"SubBuildingName":null,"BuildingName":"Winward Way","BuildingNumber":null,"Thoroughfare":null,"Street":"Middlehaven","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Middlesbrough","PostCode":"TS2 1QG","Country":"gb"},"LocationShortDescription":"Middlesbrough","LocationLongDescription":"Winward Way"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"0c6b6f19684ed9b6ff07575fcf81c98d","ChargeDeviceRef":"300_10204","ChargeDeviceName":"Worship Street","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"51.522003","Longitude":"-0.081070","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Worship Street","DoubleDependantLocality":null,"DependantLocality":"Hackney","PostTown":"London","PostCode":"EC2A 2DG","Country":"gb"},"LocationShortDescription":"Worship Street, Hackney","LocationLongDescription":"Worship Street, Hackney, London, EC2A 2DG"},"Connector":[{"ConnectorId":"1","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":"Twin charge 13-32 1 x 3kW\/13A and 1 x 7kW\/32A"}],"DeviceController":{"OrganisationName":"Pod Point","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Source London","Website":"www.sourcelondon.net","TelephoneNo":"0845 850 0653","ContactName":null},"DeviceAccess":[],"PaymentRequiredFlag":false,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":false,"Bearing":null},{"ChargeDeviceId":"73c14008d55c730e10bb9412a5be1a16","ChargeDeviceRef":"19070001\/12","ChargeDeviceName":"Wychavon District Council","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"52.114662","Longitude":"-2.078315","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"Civic Centre
Queen Elizabeth Drive
Pershore, Worcestershire","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"WR10 1PT","Country":"gb"},"LocationShortDescription":"Public access
Please report to reception","LocationLongDescription":"One charging point, two sockets, RFID card accessed

One three pin BS1363 socket
rated at 3kW (mode 2; standard charge)

One seven pin Type 2 socket rated at 7kW
(mode 3; fast charge)

Fitted under Midlands PiP"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 2","RatedOutputkW":"7.00","RatedOutputVoltage":"230","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"APT","Website":"www.aptcontrols.co.uk","TelephoneNo":"0208 515 8556","ContactName":"Richard Frost"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"2406a0a94c80406914ff2f6c9fdd67d5","ChargeDeviceRef":"20083","ChargeDeviceName":"Wynyard Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.630848","Longitude":"-1.317894","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Wynyard Park","Street":null,"DoubleDependantLocality":"Wynyard Avenue","DependantLocality":"Wynyard","PostTown":"Tees Valley","PostCode":"TS22 5TB","Country":"gb"},"LocationShortDescription":"Wynyard","LocationLongDescription":"Wynyard Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"JEVS G 105 (CHAdeMO)","RatedOutputkW":"50.00","RatedOutputVoltage":"415","RatedOutputCurrent":"125","ChargeMethod":"Single Phase AC","ChargeMode":null,"ChargePointStatus":"In service","TetheredCable":"1","Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"9e95248d9b714a96f47fd159b4c6e911","ChargeDeviceRef":"30071","ChargeDeviceName":"Wynyard Woodlands Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.612319","Longitude":"-1.377729","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Wynyard Woodlands Park","Street":null,"DoubleDependantLocality":"Wynyard Road. Thorpe Thewles","DependantLocality":"Stockton on Tees","PostTown":null,"PostCode":"TS21 3JG","Country":"gb"},"LocationShortDescription":"Stockton on Tees","LocationLongDescription":"Wynyard Woodlands Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"d324a0cc02881779dcda44a675fdcaaa","ChargeDeviceRef":"10021","ChargeDeviceName":"Yarm Station Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.493849","Longitude":"-1.352744","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Yarm Station Car Park","Street":null,"DoubleDependantLocality":"Green Lane","DependantLocality":"Stockton on Tees","PostTown":null,"PostCode":"TS15 9EH","Country":"gb"},"LocationShortDescription":"Stockton on Tees","LocationLongDescription":"Yarm Station Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"878a0658e652765c4979dba411787e43","ChargeDeviceRef":"10038","ChargeDeviceName":"Yarm Station Car Park","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.493849","Longitude":"-1.352744","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Yarm Station Car Park","Street":null,"DoubleDependantLocality":"Green Lane","DependantLocality":"Stockton on Tees","PostTown":null,"PostCode":"TS15 9EH","Country":"gb"},"LocationShortDescription":"Stockton on Tees","LocationLongDescription":"Yarm Station Car Park"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"cbfe5681369338a48e2d1b63998099d6","ChargeDeviceRef":"PP-12308","ChargeDeviceName":"Yeomans","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"50.817215","Longitude":"-0.349588","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":null,"Street":"35 Brougham Road, BN11 2NR ","DoubleDependantLocality":null,"DependantLocality":null,"PostTown":null,"PostCode":"BN11 2NR","Country":"gb"},"LocationShortDescription":"Worthing","LocationLongDescription":"35 Brougham RoadWorthingWest Sussex"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"230","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":null,"Website":null,"TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"POD Point","Website":"www.pod-point.com","TelephoneNo":"020 7247 4114","ContactName":"Steve Large"},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":false,"PhysicalRestrictionText":null,"OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"ae0e08163d22befd4635f47bef1b6e3f","ChargeDeviceRef":"10040","ChargeDeviceName":"Your Homes Newcastle","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.009381","Longitude":"-1.599209","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Your Homes Newcastle","Street":null,"DoubleDependantLocality":"Benton Park Road","DependantLocality":"Newcastle","PostTown":null,"PostCode":"NE7 7LX","Country":"gb"},"LocationShortDescription":"Newcastle","LocationLongDescription":"Your Homes Newcastle"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"4ffb0d2ba92f664c2281970110a2e071","ChargeDeviceRef":"10041","ChargeDeviceName":"Your Homes Newcastle","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"55.009381","Longitude":"-1.599109","Address":{"SubBuildingName":null,"BuildingName":null,"BuildingNumber":null,"Thoroughfare":"Your Homes Newcastle","Street":null,"DoubleDependantLocality":"Benton Park Road","DependantLocality":"Newcastle","PostTown":null,"PostCode":"NE7 7LX","Country":"gb"},"LocationShortDescription":"Newcastle","LocationLongDescription":"Your Homes Newcastle"},"Connector":[{"ConnectorId":"0","ConnectorType":"IEC 62196-2 type 3","RatedOutputkW":"7.00","RatedOutputVoltage":"240","RatedOutputCurrent":"32","ChargeMethod":"Single Phase AC","ChargeMode":"3","ChargePointStatus":"In service","TetheredCable":null,"Information":null}],"DeviceController":{"OrganisationName":"Elektromotive","Website":"www.elektromotive.com","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":false,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null},{"ChargeDeviceId":"a5fdfa672284da6bf4f4326e2b3698bd","ChargeDeviceRef":"21054","ChargeDeviceName":"Zetland Car Park Ground Floor","ChargeDeviceText":null,"ChargeDeviceLocation":{"Latitude":"54.578798","Longitude":"-1.239281","Address":{"SubBuildingName":null,"BuildingName":"Zetland Car Park Ground Floor","BuildingNumber":null,"Thoroughfare":null,"Street":null,"DoubleDependantLocality":null,"DependantLocality":null,"PostTown":"Middlesbrough","PostCode":"TS11SR","Country":"gb"},"LocationShortDescription":"Middlesbrough","LocationLongDescription":"Zetland Car Park Ground Floor"},"Connector":[{"ConnectorId":"0","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null},{"ConnectorId":"1","ConnectorType":"Domestic plug\/socket type G (BS 1363)","RatedOutputkW":"3.00","RatedOutputVoltage":"240","RatedOutputCurrent":"13","ChargeMethod":"Single Phase AC","ChargeMode":"1","ChargePointStatus":"In service","TetheredCable":"0","Information":null}],"DeviceController":{"OrganisationName":"Pod-Point","Website":"http:\/\/www.pod-point.com\/","TelephoneNo":null,"ContactName":null},"DeviceOwner":{"OrganisationName":"Charge Your Car","Website":"www.chargeyourcar.org.uk","TelephoneNo":null,"ContactName":null},"DeviceAccess":{"Open24Hours":true},"PaymentRequiredFlag":true,"SubscriptionRequiredFlag":true,"Accessible24Hours":true,"PhysicalRestrictionFlag":true,"PhysicalRestrictionText":"Parking for employees and visitors only ","OnStreetFlag":true,"Bearing":null}]} \ No newline at end of file diff --git a/ckanext/qa/tests/data/cycle-area-list.csv.zip b/ckanext/qa/tests/data/cycle-area-list.csv.zip new file mode 100644 index 00000000..57844a15 Binary files /dev/null and b/ckanext/qa/tests/data/cycle-area-list.csv.zip differ diff --git a/ckanext/qa/tests/data/decc_local_authority_data_xlsx.xls b/ckanext/qa/tests/data/decc_local_authority_data_xlsx.xls new file mode 100644 index 00000000..a988b52f Binary files /dev/null and b/ckanext/qa/tests/data/decc_local_authority_data_xlsx.xls differ diff --git a/ckanext/qa/tests/data/directors-org-chart-march-2012.ppt b/ckanext/qa/tests/data/directors-org-chart-march-2012.ppt new file mode 100644 index 00000000..6f571054 Binary files /dev/null and b/ckanext/qa/tests/data/directors-org-chart-march-2012.ppt differ diff --git a/ckanext/qa/tests/data/elec00.csv b/ckanext/qa/tests/data/elec00.csv new file mode 100644 index 00000000..cf45dc99 --- /dev/null +++ b/ckanext/qa/tests/data/elec00.csv @@ -0,0 +1,798 @@ +Cabinet Office +Electricity - kWh +"* please see note number five in the notes section on http://www.carbonculture.net/orgs/cabinet-office/70-whitehall/","**Please note: empty cells representing half-hourly consumption mean that there is no data available for that time; numbers followed by an 'E' are unreliable numbers" + +Site Name,Utility,Unit,Date,00:00,00:30,01:00,01:30,02:00,02:30,03:00,03:30,04:00,04:30,05:00,05:30,06:00,06:30,07:00,07:30,08:00,08:30,09:00,09:30,10:00,10:30,11:00,11:30,12:00,12:30,13:00,13:30,14:00,14:30,15:00,15:30,16:00,16:30,17:00,17:30,18:00,18:30,19:00,19:30,20:00,20:30,21:00,21:30,22:00,22:30,23:00,23:30,Total +70 Whitehall,Electricity,kWh,2010-07-31,69,70,86,74,67,67,67,80,81,68,66,66,71,103,37,18,7,0,1,8,20,75,74,71,97,87,76,73,84,91,81,72,70,90,84,73,67,71,91,81,62,67,63,63,72,77,62,61,3161 +70 Whitehall,Electricity,kWh,2010-08-01,61,60,63,80,66,59,60,59,60,75,69,61,64,67,75,90,78,71,72,73,92,83,68,70,79,91,81,69,70,86,85,75,66,69,89,80,73,71,72,94,70,63,62,61,61,67,77,60,3447 +70 Whitehall,Electricity,kWh,2010-08-02,59,58,59,61,79,65,59,60,61,62,75,84,76,84,88,121,132,126,130,130,147,152,138,124,131,151,142,133,128,137,151,144,137,128,111,118,118,106,96,83,72,96,75,71,69,70,74,84,4855 +70 Whitehall,Electricity,kWh,2010-08-03,71,63,64,68,76,82,68,67,69,71,80,86,77,88,91,128,137,133,130,144,159,150,144,134,133,159,150,150,141,134,150,151,133,125,112,104,123,109,97,85,73,81,84,71,70,67,65,80,5027 +70 Whitehall,Electricity,kWh,2010-08-04,77,65,65,66,65,83,75,66,70,73,74,94,81,86,88,125,135,132,134,136,153,149,138,129,133,149,149,153,154,147,132,133,154,145,134,112,98,102,107,93,74,75,76,71,87,74,67,66,5044 +70 Whitehall,Electricity,kWh,2010-08-05,66,65,83,73,67,67,64,67,82,78,70,74,77,88,115,125,124,128,133,148,150,144,133,132,147,149,141,131,130,151,145,140,122,117,131,122,110,92,87,102,91,77,72,71,70,72,86,68,4977 +70 Whitehall,Electricity,kWh,2010-08-06,67,68,66,69,82,71,66,66,67,72,91,82,75,87,97,125,129,131,134,152,157,150,144,131,139,150,144,137,129,126,148,140,131,114,104,117,112,108,101,94,71,68,69,80,80,69,67,67,4944 +70 Whitehall,Electricity,kWh,2010-08-07,64,78,76,67,61,63,61,77,76,63,65,64,65,89,100,102,103,102,91,89,102,105,103,104,103,84,86,110,101,101,88,84,99,100,99,100,99,96,84,87,92,74,70,70,68,69,85,72,4091 +70 Whitehall,Electricity,kWh,2010-08-08,65,67,63,70,81,69,64,66,66,68,84,70,65,77,86,100,98,95,82,82,79,97,88,80,79,95,100,84,75,78,102,97,82,77,89,99,91,75,76,101,85,71,69,68,66,82,80,65,3848 +70 Whitehall,Electricity,kWh,2010-08-09,68,66,66,81,79,66,66,67,67,81,84,75,74,89,105,128,132,127,132,151,150,152,141,135,154,150,144,143,134,148,156,142,139,131,113,105,121,111,103,88,75,80,94,74,70,70,69,82,5078 +70 Whitehall,Electricity,kWh,2010-08-10,78,69,67,69,66,91,74,67,67,71,83,89,78,92,98,131,143,148,143,140,146,162,155,158,149,142,156,159,157,141,129,136,154,142,137,128,122,118,110,95,77,88,91,75,72,71,70,86,5290 +70 Whitehall,Electricity,kWh,2010-08-11,75,68,68,69,68,87,71,67,68,70,78,88,81,92,99,128,134,131,137,139,159,157,150,139,143,163,152,148,135,140,160,149,136,121,115,128,117,103,93,88,96,84,73,74,73,74,87,74,5149 +70 Whitehall,Electricity,kWh,2010-08-12,70,70,70,84,84,67,67,67,69,86,82,75,82,95,116,128,131,136,142,154,163,153,143,143,154,154,151,138,138,154,155,143,131,121,130,123,108,94,87,88,95,77,75,74,75,78,86,73,5179 +70 Whitehall,Electricity,kWh,2010-08-13,69,69,69,75,84,69,67,69,67,77,87,76,83,94,103,129,132,130,137,134,153,152,134,132,132,147,148,133,130,133,141,146,132,119,112,109,112,100,86,84,75,79,87,73,72,69,68,77,4955 +70 Whitehall,Electricity,kWh,2010-08-14,80,68,66,67,67,76,80,69,71,68,66,71,84,80,81,84,100,87,79,82,81,89,100,88,83,82,89,101,95,82,80,82,100,91,79,81,79,94,94,84,69,70,72,78,85,69,70,68,3861 +70 Whitehall,Electricity,kWh,2010-08-15,68,81,78,69,69,69,67,78,81,67,67,67,68,91,95,86,80,78,78,102,93,83,80,90,104,96,85,81,96,102,91,80,81,102,99,85,82,82,100,94,76,71,71,72,76,89,71,69,3940 +70 Whitehall,Electricity,kWh,2010-08-16,68,69,75,81,72,67,67,67,74,87,75,76,84,95,114,133,136,137,140,145,153,159,150,138,142,153,156,153,143,138,162,149,142,139,124,112,125,116,103,93,79,80,91,84,80,72,72,72,5242 +70 Whitehall,Electricity,kWh,2010-08-17,90,80,71,71,70,76,88,73,72,75,77,87,100,95,99,130,147,148,144,147,150,165,158,144,144,151,168,161,158,159,143,136,157,149,145,135,127,123,113,99,92,101,83,81,77,79,89,84,5511 +70 Whitehall,Electricity,kWh,2010-08-18,75,73,73,78,93,75,71,73,74,89,92,81,87,100,124,139,137,137,139,152,160,158,150,147,159,161,154,143,144,160,159,150,137,127,140,133,122,102,97,105,103,89,85,81,79,89,87,74,5457 +70 Whitehall,Electricity,kWh,2010-08-19,72,75,74,96,79,74,72,76,82,93,81,80,84,93,127,137,126,134,138,161,156,152,138,140,162,155,155,142,136,166,151,148,131,122,134,130,118,100,95,103,98,84,79,76,74,85,88,73,5345 +70 Whitehall,Electricity,kWh,2010-08-20,71,70,72,87,81,71,70,71,75,94,81,80,87,96,126,132,138,149,152,141,153,166,157,154,156,152,153,151,154,156,150,150,146,143,136,131,123,120,116,114,99,86,82,80,78,93,85,76,5504 +70 Whitehall,Electricity,kWh,2010-08-21,76,73,89,88,75,73,74,87,90,79,73,76,75,109,110,109,111,109,107,107,109,108,108,108,109,110,112,111,111,109,106,104,105,101,102,102,103,101,103,104,87,73,73,71,73,89,75,70,4527 +70 Whitehall,Electricity,kWh,2010-08-22,67,69,85,80,70,70,70,82,83,70,68,68,75,104,105,99,102,104,102,99,103,106,103,105,105,107,105,104,104,102,102,99,99,104,101,101,103,105,102,101,83,76,72,72,72,93,78,69,4348 +70 Whitehall,Electricity,kWh,2010-08-23,67,70,82,83,69,71,70,76,87,77,77,77,83,118,128,137,151,154,165,170,168,168,154,167,172,164,166,168,169,169,171,160,156,146,140,131,121,105,98,97,100,86,78,77,78,88,90,75,5674 +70 Whitehall,Electricity,kWh,2010-08-24,70,70,74,90,77,71,70,71,86,80,78,78,86,102,126,137,136,139,149,167,165,157,150,153,174,171,159,151,153,152,149,145,138,131,125,118,108,101,99,93,86,83,81,81,79,79,79,75,5392 +70 Whitehall,Electricity,kWh,2010-08-25,76,72,74,74,76,73,75,71,75,77,81,84,90,97,105,127,134,145,153,156,160,159,159,155,175,183,177,166,162,145,145,163,162,145,123,120,123,124,112,97,82,80,87,94,79,77,77,76,5522 +70 Whitehall,Electricity,kWh,2010-08-26,94,82,76,74,78,87,86,77,75,78,82,105,96,108,117,154,165,169,173,177,178,180,178,175,176,175,176,175,173,165,169,163,160,149,144,135,132,124,120,117,96,83,83,77,82,94,80,75,5987 +70 Whitehall,Electricity,kWh,2010-08-27,73,74,83,88,75,73,72,70,87,88,76,84,90,103,127,143,144,141,150,163,176,170,160,150,148,155,154,146,138,135,146,146,134,116,105,112,115,105,89,83,75,90,84,71,71,74,71,82,5305 +70 Whitehall,Electricity,kWh,2010-08-28,79,69,68,70,72,78,80,68,67,69,69,76,84,81,88,93,110,106,90,86,87,107,100,93,86,86,107,99,91,84,83,103,91,82,77,80,105,93,79,79,71,80,85,70,68,69,67,72,3997 +70 Whitehall,Electricity,kWh,2010-08-29,84,70,67,68,66,69,83,70,67,67,65,68,81,90,86,89,87,99,100,88,83,83,95,101,91,80,82,90,96,85,80,77,81,99,91,78,76,76,88,91,73,72,68,72,66,80,75,67,3860 +70 Whitehall,Electricity,kWh,2010-08-30,67,66,67,74,81,68,65,65,65,63,81,73,71,78,79,84,96,91,85,88,90,106,106,101,92,89,90,107,99,84,83,83,103,91,80,78,81,103,95,81,72,73,70,90,72,69,67,67,3929 +70 Whitehall,Electricity,kWh,2010-08-31,66,79,77,68,69,66,67,68,83,74,73,78,83,103,135,144,144,150,151,164,174,168,158,151,149,166,161,157,148,148,166,152,146,125,116,131,121,107,91,86,88,91,74,75,71,71,69,86,5388 +70 Whitehall,Electricity,kWh,2010-09-01,73,68,68,72,68,82,80,71,69,75,74,83,98,107,111,125,150,162,151,154,152,170,175,162,148,147,168,168,161,145,142,163,156,141,124,115,134,124,107,98,80,83,96,78,77,76,76,73,5480 +70 Whitehall,Electricity,kWh,2010-09-02,84,81,71,74,75,74,76,93,78,75,80,79,86,107,133,136,145,149,155,179,178,168,156,158,184,164,164,150,152,174,165,157,142,138,153,141,124,109,99,110,96,82,81,77,78,76,91,81,5678 +70 Whitehall,Electricity,kWh,2010-09-03,76,73,74,74,78,87,73,72,74,75,81,100,98,102,113,136,156,160,157,156,169,179,174,163,162,177,167,163,155,151,170,160,156,134,116,128,123,104,91,88,92,88,78,74,75,75,84,84,5595 +70 Whitehall,Electricity,kWh,2010-09-04,70,69,70,71,83,87,69,71,70,71,79,80,73,79,79,99,98,86,85,83,105,100,89,89,88,108,103,88,81,84,107,94,81,79,91,101,89,80,81,92,89,76,71,72,69,72,88,75,4014 +70 Whitehall,Electricity,kWh,2010-09-05,67,70,68,68,87,76,71,69,71,71,85,81,68,78,83,100,97,84,82,82,103,99,86,82,81,104,93,81,82,82,100,90,78,77,89,99,86,79,78,88,91,75,75,72,72,69,89,76,3934 +70 Whitehall,Electricity,kWh,2010-09-06,69,68,69,70,83,80,67,71,71,72,80,98,88,97,114,145,159,154,157,162,184,183,173,161,157,181,176,162,156,152,173,159,148,131,128,138,134,117,101,98,98,95,78,79,78,73,84,86,5657 +70 Whitehall,Electricity,kWh,2010-09-07,72,71,72,74,84,86,68,75,73,81,90,98,87,102,113,151,161,165,163,169,188,181,167,156,163,181,173,166,154,166,175,161,151,132,138,148,140,127,108,109,110,93,86,78,76,82,91,76,5831 +70 Whitehall,Electricity,kWh,2010-09-08,72,73,72,82,90,72,73,73,72,84,98,84,88,106,134,155,157,159,165,175,182,184,172,168,175,190,176,163,157,180,176,155,146,146,163,142,125,114,111,127,102,87,81,84,83,94,76,73,5916 +70 Whitehall,Electricity,kWh,2010-09-09,73,74,87,86,78,78,73,75,93,85,82,90,94,118,140,143,148,164,181,190,186,179,173,185,181,174,163,162,178,171,158,145,157,160,147,127,119,136,119,109,93,91,87,104,88,82,80,79,5985 +70 Whitehall,Electricity,kWh,2010-09-10,91,86,76,77,79,77,95,82,76,83,87,99,109,108,128,147,161,158,162,164,191,189,173,165,164,179,171,161,154,169,173,163,143,129,143,141,125,106,99,118,101,88,84,86,81,98,82,80,5901 +70 Whitehall,Electricity,kWh,2010-09-11,77,78,89,90,77,78,76,76,94,79,76,77,80,105,110,95,91,90,102,107,96,88,91,114,110,96,94,104,115,101,91,88,108,105,90,83,88,110,102,86,77,79,94,83,77,76,77,79,4349 +70 Whitehall,Electricity,kWh,2010-09-12,89,75,73,70,76,83,80,70,67,70,72,88,77,80,82,97,93,84,86,82,97,106,95,88,90,105,110,94,84,85,105,96,83,79,87,102,89,80,82,87,90,75,73,74,69,70,88,75,4052 +70 Whitehall,Electricity,kWh,2010-09-13,69,68,69,68,84,76,68,70,71,77,86,94,84,101,114,146,151,154,167,168,185,188,181,175,161,180,177,156,150,152,163,150,134,127,123,138,127,111,105,94,97,94,81,80,72,74,72,80,5612 +70 Whitehall,Electricity,kWh,2010-09-14,78,72,72,67,70,70,80,77,70,71,75,79,86,113,129,130,148,156,168,189,174,167,168,170,192,178,175,166,175,187,171,152,144,160,156,139,122,116,131,122,91,85,80,78,78,91,76,72,5816 +70 Whitehall,Electricity,kWh,2010-09-15,78,73,75,87,74,70,71,69,72,96,82,81,87,101,130,149,147,156,163,166,183,176,164,162,160,179,178,163,156,158,174,162,144,134,127,143,129,112,104,99,97,101,84,80,80,77,90,84,5727 +70 Whitehall,Electricity,kWh,2010-09-16,75,74,75,76,91,79,73,72,74,80,99,92,95,106,118,147,149,161,172,165,175,185,172,161,158,167,174,165,160,156,172,161,146,136,130,148,134,113,103,98,97,94,81,77,77,74,90,78,5755 +70 Whitehall,Electricity,kWh,2010-09-17,71,71,69,73,89,72,69,71,72,81,95,88,90,105,126,153,148,155,157,158,166,186,166,160,155,151,172,167,153,152,150,169,156,134,124,121,129,119,104,95,84,84,87,99,81,80,80,74,5611 +70 Whitehall,Electricity,kWh,2010-09-18,79,87,77,75,74,73,80,87,75,74,72,73,78,101,90,90,94,92,98,96,104,114,102,101,98,95,102,108,93,91,87,88,108,97,86,83,87,97,102,83,77,77,78,80,93,80,71,73,4220 +70 Whitehall,Electricity,kWh,2010-09-19,73,72,87,78,75,73,70,72,87,77,71,71,76,80,103,96,91,90,87,86,86,103,107,91,90,85,95,103,87,81,81,80,103,87,80,81,81,92,96,83,75,73,70,76,90,78,70,70,4009 +70 Whitehall,Electricity,kWh,2010-09-20,69,68,74,84,71,68,70,70,71,90,93,84,92,110,124,159,152,160,164,173,190,180,168,163,177,177,169,161,158,168,166,154,149,149,145,136,128,115,113,104,90,87,86,84,82,82,81,81,5789 +70 Whitehall,Electricity,kWh,2010-09-21,81,77,81,80,79,80,79,84,82,89,91,90,95,115,136,141,148,156,162,168,163,176,185,175,173,172,173,177,169,175,173,168,159,154,145,144,129,123,119,113,94,92,89,90,88,84,81,83,5980 +70 Whitehall,Electricity,kWh,2010-09-22,81,82,79,86,84,81,81,82,84,87,93,94,94,109,125,145,148,166,181,184,181,178,180,173,170,169,172,170,161,160,159,163,152,143,135,130,117,116,105,101,92,83,84,79,74,77,81,72,5843 +70 Whitehall,Electricity,kWh,2010-09-23,73,74,74,71,74,78,72,70,73,81,79,85,93,109,115,142,151,167,178,173,171,177,179,174,176,176,172,174,171,163,160,153,151,145,135,126,120,117,112,102,95,87,88,78,84,82,81,77,5758 +70 Whitehall,Electricity,kWh,2010-09-24,79,79,72,80,80,75,74,78,77,80,85,84,94,108,124,141,152,155,162,164,168,173,166,158,148,153,151,151,155,152,146,142,139,128,124,118,110,99,97,88,82,80,77,74,75,74,72,71,5414 +70 Whitehall,Electricity,kWh,2010-09-25,70,69,69,70,73,73,67,70,69,67,69,72,71,80,83,84,83,85,84,86,88,86,87,87,86,82,84,83,80,81,78,80,81,77,78,76,79,80,78,77,69,69,69,69,70,68,67,67,3670 +70 Whitehall,Electricity,kWh,2010-09-26,66,66,66,68,71,65,64,67,65,65,67,68,68,77,80,80,77,80,78,76,78,77,80,85,82,82,83,81,80,80,77,78,77,78,77,80,78,78,78,79,70,73,73,71,68,69,68,69,3563 +70 Whitehall,Electricity,kWh,2010-09-27,66,65,68,67,70,71,68,70,68,73,79,81,89,107,118,131,144,163,166,169,175,176,183,200,182,170,174,178,176,177,172,177,159,150,151,141,132,129,114,115,100,96,91,93,89,88,85,85,5891 +70 Whitehall,Electricity,kWh,2010-09-28,82,83,83,85,86,87,83,86,86,87,89,95,100,113,123,151,160,178,186,184,180,182,181,179,184,187,184,182,180,188,173,167,156,161,140,148,124,130,113,116,104,94,90,92,88,84,83,81,6198 +70 Whitehall,Electricity,kWh,2010-09-29,81,81,81,81,83,82,82,79,89,85,88,92,99,113,125,151,148,174,184,178,192,186,195,222,205,192,199,178,170,167,175,163,172,148,157,138,140,126,119,114,91,89,86,84,83,86,82,87,6222 +70 Whitehall,Electricity,kWh,2010-09-30,92,91,90,86,85,81,82,84,83,85,92,88,97,119,127,149,161,175,178,181,194,182,195,178,181,177,183,187,175,181,171,161,169,145,153,136,141,123,121,113,92,99,90,86,90,91,89,84,6213 +70 Whitehall,Electricity,kWh,2010-10-01,81,78,84,88,83,85,83,82,84,91,94,100,102,114,124,144,160,164,187,176,186,182,178,168,173,171,174,175,175,167,172,158,152,146,139,124,116,112,108,100,88,82,84,79,76,75,76,73,5913 +70 Whitehall,Electricity,kWh,2010-10-02,73,76,74,72,72,77,74,75,74,74,72,71,74,89,90,104,117,110,102,100,102,113,114,100,95,104,98,97,92,91,92,95,89,89,85,94,85,95,89,90,73,72,75,72,74,70,70,74,4159 +70 Whitehall,Electricity,kWh,2010-10-03,71,70,72,71,73,69,71,71,71,69,70,72,75,92,89,102,100,101,98,99,100,92,91,100,102,91,98,94,90,89,90,89,88,87,83,93,89,88,84,90,75,78,73,74,73,72,73,73,4025 +70 Whitehall,Electricity,kWh,2010-10-04,71,71,73,74,73,75,73,73,72,80,82,89,93,117,128,159,168,174,172,176,176,188,187,184,180,184,180,174,179,168,166,165,155,144,137,128,123,119,110,103,85,85,83,83,82,78,79,78,5896 +70 Whitehall,Electricity,kWh,2010-10-05,80,78,76,79,79,77,79,76,83,85,86,91,93,116,126,149,185,171,191,232,204,205,203,196,198,199,200,202,200,191,190,182,174,170,159,141,146,135,121,115,104,99,86,94,95,92,90,90,6513 +70 Whitehall,Electricity,kWh,2010-10-06,90,89,87,91,92,92,86,87,89,90,98,105,109,141,141,155,182,184,189,197,192,187,186,185,185,186,177,181,190,199,187,189,181,158,154,158,150,131,125,120,105,93,96,99,95,97,92,92,6584 +70 Whitehall,Electricity,kWh,2010-10-07,92,92,89,93,89,89,91,83,87,103,84,104,105,104,135,162,174,191,197,211,208,206,202,201,199,199,192,194,205,172,187,191,186,171,159,161,153,129,121,124,106,83,93,100,89,87,90,91,6674 +70 Whitehall,Electricity,kWh,2010-10-08,92,92,88,89,97,77,89,93,86,95,101,105,105,112,147,166,183,189,195,204,196,201,195,193,190,183,185,185,189,187,183,174,170,166,159,155,147,139,131,127,94,98,98,93,91,95,90,89,6608 +70 Whitehall,Electricity,kWh,2010-10-09,90,90,88,90,92,92,88,87,86,88,87,87,89,95,112,123,115,111,111,122,117,111,114,122,116,109,119,123,114,107,110,116,109,101,107,115,105,102,100,102,88,81,97,79,86,89,78,81,4841 +70 Whitehall,Electricity,kWh,2010-10-10,87,73,85,84,86,83,84,85,85,83,84,85,88,83,104,114,102,101,110,108,111,110,108,108,105,101,104,106,106,106,102,103,102,100,95,94,94,96,92,94,83,83,79,89,71,84,86,73,4499 +70 Whitehall,Electricity,kWh,2010-10-11,84,79,72,84,82,85,74,75,86,80,90,94,95,116,143,164,175,183,193,194,193,194,196,194,198,201,188,199,206,196,197,187,182,170,164,156,152,142,134,122,107,92,101,96,93,91,91,90,6580 +70 Whitehall,Electricity,kWh,2010-10-12,89,90,87,92,90,90,91,91,94,100,103,103,108,118,147,168,173,186,189,188,190,193,190,186,185,189,181,184,185,188,186,174,175,167,159,149,144,135,130,120,108,92,98,101,87,93,96,81,6563 +70 Whitehall,Electricity,kWh,2010-10-13,94,89,91,94,97,98,97,95,97,100,108,108,117,120,139,156,168,182,189,191,193,194,189,188,190,191,189,188,186,178,176,174,171,159,158,153,142,137,130,126,113,100,100,106,90,97,100,87,6635 +70 Whitehall,Electricity,kWh,2010-10-14,99,84,91,99,92,88,97,95,85,106,104,98,113,110,135,162,175,176,213,197,196,200,202,192,189,184,185,182,184,184,178,172,169,160,156,152,142,136,124,122,97,91,105,87,96,94,84,99,6581 +70 Whitehall,Electricity,kWh,2010-10-15,87,87,93,85,96,92,87,95,84,101,105,98,115,120,148,172,162,188,196,204,194,193,191,177,182,184,185,186,183,181,184,174,171,160,154,152,141,134,128,120,94,94,107,92,91,95,90,82,6534 +70 Whitehall,Electricity,kWh,2010-10-16,91,93,82,84,91,87,77,91,82,80,89,82,88,96,108,107,113,114,116,115,124,129,120,116,125,124,121,118,111,111,110,107,112,108,106,107,106,100,99,99,93,78,85,91,78,90,87,77,4818 +70 Whitehall,Electricity,kWh,2010-10-17,90,86,84,82,84,87,81,76,90,79,81,88,85,74,101,96,90,101,108,104,106,108,104,109,106,105,102,99,101,101,98,98,98,96,96,103,98,98,100,98,82,76,94,77,81,84,76,85,4446 +70 Whitehall,Electricity,kWh,2010-10-18,77,79,83,74,87,77,77,84,73,91,89,92,110,104,137,166,176,187,209,212,194,212,206,205,210,206,200,201,194,189,186,178,173,169,161,157,150,138,136,130,113,97,99,95,88,99,98,82,6650 +70 Whitehall,Electricity,kWh,2010-10-19,96,89,87,98,85,98,92,86,101,95,96,114,103,116,140,142,173,186,195,197,200,204,202,196,197,193,198,175,173,178,176,172,167,161,158,157,142,122,127,125,108,106,115,104,93,104,93,84,6619 +70 Whitehall,Electricity,kWh,2010-10-20,93,99,98,100,99,97,96,88,90,97,100,106,106,124,149,163,179,183,177,196,202,196,212,205,193,207,206,202,201,206,191,188,179,169,166,159,145,125,125,124,101,95,102,87,83,94,83,78,6764 +70 Whitehall,Electricity,kWh,2010-10-21,84,91,78,79,91,82,77,85,90,91,90,106,109,121,137,172,170,191,218,213,202,213,213,216,201,200,194,195,189,186,183,174,177,175,170,162,153,141,135,129,125,125,120,114,115,112,107,104,6905 +70 Whitehall,Electricity,kWh,2010-10-22,103,103,95,98,99,94,93,96,96,100,110,112,118,131,143,162,177,187,194,196,195,199,198,203,197,185,202,188,188,183,178,168,163,160,151,141,132,128,119,114,108,112,112,109,96,101,103,101,6741 +70 Whitehall,Electricity,kWh,2010-10-23,101,103,101,103,106,100,103,101,101,99,101,108,106,108,112,113,110,117,116,119,115,123,118,116,113,113,112,114,108,112,110,109,108,108,106,102,102,103,103,100,100,100,101,99,101,96,98,97,5115 +70 Whitehall,Electricity,kWh,2010-10-24,96,98,92,90,99,97,83,90,98,95,82,97,103,98,93,104,100,87,101,103,105,100,105,104,106,105,107,102,104,100,102,101,100,99,94,98,101,97,98,96,95,99,98,96,96,93,93,94,4694 +70 Whitehall,Electricity,kWh,2010-10-25,93,94,94,97,96,94,94,94,97,100,102,117,118,129,148,168,177,211,215,234,222,204,220,221,206,203,220,208,203,200,199,199,179,172,164,156,157,142,136,127,110,106,114,110,105,103,104,102,7164 +70 Whitehall,Electricity,kWh,2010-10-26,99,96,96,97,97,91,95,91,83,99,104,97,117,129,151,173,183,203,218,211,216,213,227,221,213,216,218,214,207,208,197,194,204,181,175,162,159,158,144,135,127,127,122,121,119,120,119,116,7363 +70 Whitehall,Electricity,kWh,2010-10-27,115,113,113,114,114,115,114,116,114,120,123,130,130,136,166,177,181,204,210,212,213,210,212,212,203,206,210,206,203,201,211,208,198,185,179,174,168,154,146,143,136,129,116,110,111,112,110,113,7596 +70 Whitehall,Electricity,kWh,2010-10-28,112,112,111,114,111,113,110,112,111,112,122,128,132,146,167,174,188,196,204,206,216,224,206,210,216,213,217,214,202,197,200,189,178,177,173,170,158,151,147,141,134,133,137,128,128,124,114,105,7583 +70 Whitehall,Electricity,kWh,2010-10-29,109,115,110,107,110,112,108,109,110,115,116,119,131,120,140,159,170,186,189,199,195,197,196,190,192,195,189,186,185,173,183,175,170,166,157,142,136,126,122,120,115,113,107,104,107,105,103,102,6885 +70 Whitehall,Electricity,kWh,2010-10-30,101,100,100,102,101,99,98,101,99,101,99,104,107,105,111,116,118,116,119,117,125,122,119,119,121,121,119,118,114,114,111,110,109,108,108,111,110,107,107,106,105,103,103,106,104,102,104,100,5220 +70 Whitehall,Electricity,kWh,2010-10-31,101,102,101,103,104,102,101,101,103,101,105,104,102,110,107,108,110,109,110,113,108,113,113,109,109,113,115,113,109,110,110,110,109,109,109,110,108,109,106,106,107,105,103,102,102,103,99,103,5119 +70 Whitehall,Electricity,kWh,2010-11-01,99,98,100,99,100,101,99,101,98,104,106,112,110,116,115,113,137,160,171,189,188,189,192,193,190,191,189,190,188,183,181,176,176,169,165,160,154,148,140,135,129,122,121,116,115,108,109,108,6753 +70 Whitehall,Electricity,kWh,2010-11-02,100,101,100,101,100,102,102,101,99,101,101,105,107,122,121,126,145,161,175,185,202,197,194,158,149,183,183,186,187,191,191,186,188,170,170,162,159,153,139,120,113,108,107,102,102,102,100,100,6657 +70 Whitehall,Electricity,kWh,2010-11-03,95,95,92,96,94,95,91,93,90,92,89,95,97,110,114,116,146,159,173,181,197,193,194,199,195,194,194,189,191,189,189,186,186,179,177,173,172,158,143,126,119,110,110,107,108,107,105,102,6705 +70 Whitehall,Electricity,kWh,2010-11-04,103,96,100,96,100,98,100,97,96,94,97,102,106,116,118,129,159,166,180,196,204,206,196,201,183,192,189,185,196,187,193,183,188,178,176,173,162,155,139,118,113,110,106,106,102,102,99,96,6787 +70 Whitehall,Electricity,kWh,2010-11-05,96,93,96,96,95,94,96,94,96,97,98,99,102,113,115,129,159,163,175,192,193,200,193,189,196,195,196,192,186,193,178,172,174,185,168,170,159,154,135,119,109,108,106,102,99,96,96,94,6655 +70 Whitehall,Electricity,kWh,2010-11-06,94,93,93,93,93,94,94,93,91,90,92,96,89,98,96,99,101,101,112,112,115,111,106,109,124,158,146,146,143,144,143,143,136,135,132,101,87,98,93,93,87,87,92,94,94,86,92,88,5107 +70 Whitehall,Electricity,kWh,2010-11-07,84,84,85,92,83,83,81,80,83,85,81,80,83,87,90,87,92,95,97,132,137,138,142,143,138,139,135,137,135,133,135,137,138,121,133,125,112,110,103,105,100,102,104,101,104,101,103,106,5181 +70 Whitehall,Electricity,kWh,2010-11-08,106,96,95,98,97,106,104,96,102,99,98,103,107,120,122,132,141,156,160,174,186,189,199,204,201,188,182,189,185,187,186,186,182,178,174,166,151,153,150,136,137,130,123,123,119,121,121,119,6877 +70 Whitehall,Electricity,kWh,2010-11-09,117,114,115,115,112,116,115,115,113,113,112,120,122,127,132,146,154,171,175,187,200,204,201,208,199,198,194,195,201,198,191,195,188,188,186,181,173,161,152,146,138,134,130,128,126,123,119,118,7366 +70 Whitehall,Electricity,kWh,2010-11-10,116,113,113,118,115,117,115,114,113,114,113,123,127,133,140,149,159,171,187,191,204,203,206,201,194,191,198,197,193,188,188,185,185,182,175,170,162,154,148,123,113,103,104,102,99,91,92,89,7081 +70 Whitehall,Electricity,kWh,2010-11-11,90,87,87,88,90,90,89,87,85,86,88,91,99,103,112,123,147,157,178,199,203,202,203,198,194,190,195,197,197,192,186,189,185,178,169,164,157,150,132,115,112,108,104,105,101,94,92,88,6576 +70 Whitehall,Electricity,kWh,2010-11-12,89,86,85,88,88,89,87,86,87,86,88,95,97,113,108,113,152,152,170,189,191,185,190,190,184,188,180,177,184,179,192,176,176,171,162,151,139,128,121,100,101,95,96,95,92,92,85,84,6252 +70 Whitehall,Electricity,kWh,2010-11-13,82,84,83,82,85,81,80,80,82,81,80,82,81,85,89,87,88,86,86,85,87,91,89,90,88,95,88,90,93,87,90,90,83,85,88,85,84,89,83,85,84,85,86,81,88,84,82,83,4102 +70 Whitehall,Electricity,kWh,2010-11-14,79,75,78,79,78,79,80,79,78,79,82,78,79,85,90,85,86,89,84,89,87,87,89,84,87,87,90,88,89,89,86,89,90,86,89,85,84,84,85,87,84,82,83,85,84,82,80,77,4030 +70 Whitehall,Electricity,kWh,2010-11-15,78,76,76,76,75,80,77,77,75,78,80,86,91,99,104,112,150,162,174,191,195,204,205,207,199,194,198,203,195,189,186,193,184,180,173,162,156,147,140,122,113,110,101,99,98,93,89,90,6442 +70 Whitehall,Electricity,kWh,2010-11-16,81,82,82,85,82,82,85,84,82,88,84,92,95,103,109,127,171,171,189,200,206,205,198,206,198,200,202,196,206,203,201,195,191,189,179,163,158,153,138,124,114,101,100,101,98,95,92,88,6674 +70 Whitehall,Electricity,kWh,2010-11-17,81,83,88,85,85,86,87,86,84,88,89,97,96,104,109,124,158,166,176,180,196,197,197,203,200,201,200,197,191,185,184,183,178,178,163,144,137,135,126,117,110,105,100,100,95,92,88,87,6441 +70 Whitehall,Electricity,kWh,2010-11-18,85,77,79,82,80,82,84,81,80,76,81,89,89,98,108,146,148,167,168,187,204,203,206,206,198,202,197,193,191,188,189,188,183,180,173,146,135,128,121,114,110,110,101,95,97,97,94,86,6422 +70 Whitehall,Electricity,kWh,2010-11-19,81,78,89,89,79,76,89,86,80,77,86,95,92,96,104,146,146,146,157,185,185,187,184,187,180,183,171,169,183,172,172,171,165,170,160,137,125,117,122,111,93,97,101,97,94,85,92,81,6068 +70 Whitehall,Electricity,kWh,2010-11-20,75,86,82,86,80,77,83,81,75,75,73,84,83,79,79,83,81,77,75,84,93,92,93,92,96,89,94,93,86,94,91,92,86,83,84,94,87,88,86,85,85,87,91,85,85,91,80,77,4077 +70 Whitehall,Electricity,kWh,2010-11-21,77,79,91,81,78,84,80,77,77,80,83,79,80,82,80,76,82,85,79,83,86,88,81,87,83,81,82,90,90,87,90,91,88,84,85,86,86,84,86,88,85,85,83,85,84,78,82,80,3998 +70 Whitehall,Electricity,kWh,2010-11-22,75,76,76,85,80,75,71,81,82,77,76,93,90,96,107,142,148,157,165,190,204,212,200,202,206,209,200,200,198,201,199,186,185,185,173,149,138,134,129,115,105,99,96,92,86,96,90,83,6414 +70 Whitehall,Electricity,kWh,2010-11-23,79,88,86,85,79,82,84,84,85,79,85,95,97,98,118,133,137,156,185,199,205,205,198,201,199,201,200,197,190,194,193,193,184,181,169,152,149,139,128,122,119,105,104,104,99,97,91,85,6538 +70 Whitehall,Electricity,kWh,2010-11-24,76,73,78,81,77,75,82,77,77,80,85,91,87,103,117,134,156,171,181,189,217,206,206,203,198,201,197,197,189,192,194,186,185,182,172,152,137,135,129,118,105,102,95,91,89,85,88,78,6419 +70 Whitehall,Electricity,kWh,2010-11-25,78,75,82,79,80,79,80,79,75,79,85,94,89,103,116,136,145,158,174,195,205,215,220,209,202,211,212,195,194,207,208,191,198,197,178,149,148,144,124,115,115,104,93,91,98,94,85,82,6565 +70 Whitehall,Electricity,kWh,2010-11-26,95,93,86,82,81,82,85,88,85,85,86,94,99,110,113,137,152,162,185,194,198,203,207,203,199,200,204,200,198,196,196,189,188,180,171,147,131,125,113,106,101,99,93,92,86,85,84,85,6473 +70 Whitehall,Electricity,kWh,2010-11-27,79,79,77,82,83,78,77,84,75,75,79,80,73,76,85,84,82,86,93,97,96,93,98,96,97,91,94,93,93,91,84,89,87,87,85,88,87,87,87,85,80,80,84,79,88,82,79,79,4083 +70 Whitehall,Electricity,kWh,2010-11-28,82,78,77,83,83,80,80,75,77,80,85,84,87,83,84,90,89,83,86,92,86,89,89,94,89,84,85,98,86,84,84,84,89,91,83,81,83,97,81,82,79,93,83,80,80,79,83,83,4057 +70 Whitehall,Electricity,kWh,2010-11-29,78,87,79,77,81,75,80,77,76,82,81,90,93,102,109,130,155,169,186,207,222,225,218,222,223,222,223,217,216,212,204,201,201,193,178,164,155,143,132,131,116,110,99,98,96,96,94,91,6816 +70 Whitehall,Electricity,kWh,2010-11-30,87,82,85,86,86,89,87,90,92,86,83,93,113,113,109,134,155,166,172,192,204,211,213,215,208,207,212,207,211,204,205,213,199,190,176,159,147,133,138,126,109,111,101,98,99,99,88,84,6767 +70 Whitehall,Electricity,kWh,2010-12-01,86,88,88,90,83,88,83,86,83,92,94,92,103,121,107,122,148,166,184,188,205,214,209,214,211,211,213,210,205,209,213,213,210,200,193,173,160,140,124,119,123,104,100,94,96,111,102,88,6856 +70 Whitehall,Electricity,kWh,2010-12-02,89,105,101,94,95,95,95,88,91,91,95,96,106,114,112,132,156,168,176,202,210,222,217,215,218,210,213,213,208,208,202,194,188,176,176,156,145,139,129,117,118,112,104,102,100,96,99,95,6883 +70 Whitehall,Electricity,kWh,2010-12-03,90,90,90,91,90,90,94,94,89,87,91,103,106,109,107,128,161,166,178,196,222,223,221,224,221,218,223,214,215,208,205,203,199,200,179,154,151,137,128,120,109,105,97,93,95,94,84,81,6873 +70 Whitehall,Electricity,kWh,2010-12-04,85,79,79,76,84,84,80,78,77,83,84,85,77,76,81,80,89,84,80,77,80,85,81,83,80,82,86,78,81,82,82,92,85,78,77,79,84,87,77,80,78,89,82,78,82,79,90,87,3922 +70 Whitehall,Electricity,kWh,2010-12-05,76,77,74,77,81,81,77,75,75,82,78,76,74,77,85,81,79,80,80,88,83,86,84,87,91,84,79,83,87,88,77,83,81,90,80,78,80,86,95,96,85,81,80,79,82,86,78,77,3919 +70 Whitehall,Electricity,kWh,2010-12-06,80,84,78,79,83,79,78,86,80,80,80,86,95,112,108,138,167,184,200,226,243,250,251,250,244,245,239,236,239,226,221,224,221,214,205,180,165,154,143,129,125,120,106,102,104,93,89,88,7309 +70 Whitehall,Electricity,kWh,2010-12-07,92,85,82,87,87,87,89,88,85,85,85,91,96,101,115,147,170,190,208,226,241,236,228,232,234,228,226,226,233,224,225,223,217,202,196,197,174,163,152,145,135,126,116,116,118,108,101,101,7419 +70 Whitehall,Electricity,kWh,2010-12-08,97,95,97,107,97,99,105,102,96,100,109,104,109,125,132,134,154,185,188,203,231,230,225,234,241,225,228,237,226,219,232,228,219,193,184,191,167,148,143,146,118,110,113,113,99,103,110,96,7447 +70 Whitehall,Electricity,kWh,2010-12-09,90,103,94,94,88,94,94,98,90,92,91,105,109,121,122,138,148,173,186,206,214,226,215,212,219,211,204,200,199,196,193,198,190,189,179,163,156,149,143,129,121,115,107,111,109,98,102,100,6984 +70 Whitehall,Electricity,kWh,2010-12-10,95,89,92,95,95,97,91,96,93,95,96,107,110,124,130,141,147,160,168,188,201,205,204,203,199,196,194,186,197,192,193,193,186,177,173,157,142,134,124,117,117,106,102,102,106,101,94,94,6704 +70 Whitehall,Electricity,kWh,2010-12-11,94,82,83,81,73,82,80,73,73,83,85,73,73,78,83,84,87,82,89,93,91,90,90,93,92,87,90,92,90,86,89,83,79,87,85,78,80,86,84,83,80,82,85,81,77,79,82,82,4014 +70 Whitehall,Electricity,kWh,2010-12-12,74,77,80,79,74,82,80,75,73,78,81,77,78,80,82,77,84,85,84,81,86,87,84,83,86,87,87,87,89,81,81,81,79,75,79,81,81,78,85,84,80,78,83,82,81,76,82,80,3884 +70 Whitehall,Electricity,kWh,2010-12-13,75,87,90,84,85,90,93,86,87,90,89,99,101,112,120,133,154,171,186,201,208,220,233,226,225,233,233,215,221,226,219,203,198,206,198,173,164,156,153,138,123,112,110,124,108,104,103,104,7169 +70 Whitehall,Electricity,kWh,2010-12-14,103,88,91,103,94,92,101,99,90,93,107,107,104,124,134,136,152,180,195,200,228,232,213,212,221,219,201,209,210,199,191,206,204,190,182,184,155,147,143,146,123,117,129,117,113,116,109,106,7215 +70 Whitehall,Electricity,kWh,2010-12-15,105,103,101,102,100,102,102,102,99,102,104,109,113,116,119,131,154,174,192,201,210,214,208,213,216,218,211,207,208,185,189,192,187,180,173,162,153,147,139,129,120,120,111,117,108,110,100,94,7052 +70 Whitehall,Electricity,kWh,2010-12-16,97,87,91,95,94,96,91,92,91,96,96,96,108,116,133,133,146,168,184,211,211,200,200,206,196,189,194,201,191,177,181,201,190,172,182,174,151,140,137,130,124,113,111,106,107,100,101,102,6808 +70 Whitehall,Electricity,kWh,2010-12-17,100,108,92,95,106,95,91,100,100,89,94,109,109,104,129,138,140,158,180,190,188,219,213,205,196,218,206,187,192,198,190,171,190,181,169,150,156,129,116,114,114,102,97,110,105,96,93,103,6735 +70 Whitehall,Electricity,kWh,2010-12-18,90,90,82,81,81,82,85,83,77,84,82,87,79,83,84,81,90,90,87,86,85,96,87,91,91,88,92,90,85,94,87,85,90,84,90,89,84,93,87,90,89,82,89,85,85,87,83,82,4144 +70 Whitehall,Electricity,kWh,2010-12-19,76,75,75,78,79,82,77,74,80,85,79,78,80,81,86,79,80,85,86,78,81,87,82,81,79,85,87,86,80,82,86,87,86,85,88,89,85,83,87,90,91,85,84,89,84,86,76,77,3961 +70 Whitehall,Electricity,kWh,2010-12-20,83,85,88,96,85,86,85,101,87,88,90,104,100,104,111,129,136,149,164,191,194,202,209,213,208,219,211,195,199,196,184,181,187,172,156,161,141,133,129,134,109,110,106,100,100,100,96,101,6608 +70 Whitehall,Electricity,kWh,2010-12-21,102,97,92,97,97,92,94,97,95,92,96,105,106,116,124,134,148,162,168,187,199,203,204,199,196,195,193,190,186,181,180,178,173,168,169,159,152,146,132,123,120,107,111,108,105,106,98,104,6686 +70 Whitehall,Electricity,kWh,2010-12-22,98,94,91,93,96,94,93,95,96,96,94,106,112,121,114,132,139,147,165,184,179,188,194,190,188,183,183,180,175,167,174,181,176,163,156,152,141,123,117,113,108,98,99,100,101,95,92,91,6367 +70 Whitehall,Electricity,kWh,2010-12-23,92,88,89,99,94,93,87,98,91,88,87,109,101,108,121,139,142,150,156,162,171,166,193,184,175,169,183,171,166,167,163,159,147,154,151,140,127,105,122,116,97,97,105,99,95,88,100,98,6102 +70 Whitehall,Electricity,kWh,2010-12-24,94,92,90,90,89,90,93,88,87,87,89,95,98,102,107,114,119,120,126,130,143,149,148,150,146,138,135,129,122,114,112,100,98,99,93,87,89,89,89,89,89,92,89,88,89,86,84,84,5020 +70 Whitehall,Electricity,kWh,2010-12-25,83,72,71,77,73,79,78,77,83,76,74,77,77,77,79,77,83,79,78,79,77,79,76,72,78,79,82,78,81,81,77,80,74,76,81,80,76,77,73,81,83,78,79,76,77,80,76,76,3732 +70 Whitehall,Electricity,kWh,2010-12-26,75,70,71,84,83,74,71,72,82,88,76,75,76,85,84,77,75,79,87,83,77,77,80,86,83,77,77,89,90,77,72,76,87,81,71,72,84,84,80,72,78,88,83,76,76,87,83,78,3808 +70 Whitehall,Electricity,kWh,2010-12-27,70,86,80,82,70,73,81,79,70,80,73,70,75,78,78,73,80,84,81,76,77,86,83,76,77,85,84,77,75,82,83,77,81,77,74,81,81,77,77,79,83,80,74,81,83,78,74,78,3759 +70 Whitehall,Electricity,kWh,2010-12-28,79,71,68,71,75,73,75,70,71,74,74,71,71,74,78,76,73,78,80,79,74,77,80,79,76,74,75,79,77,81,77,74,76,75,78,77,73,77,79,80,80,84,81,78,76,74,76,77,3645 +70 Whitehall,Electricity,kWh,2010-12-29,77,84,74,76,87,88,83,78,83,85,82,81,90,106,101,105,115,126,116,118,110,124,118,120,107,120,127,118,112,124,113,116,117,113,101,99,104,98,87,84,96,100,82,87,92,87,89,92,4792 +70 Whitehall,Electricity,kWh,2010-12-30,88,86,85,86,85,86,85,79,85,85,85,83,88,96,104,111,108,118,121,128,138,138,138,138,138,140,146,138,137,134,132,127,120,119,111,104,100,96,93,89,92,94,91,89,94,87,88,86,5089 +70 Whitehall,Electricity,kWh,2010-12-31,83,76,81,80,88,89,85,80,80,90,87,85,92,98,112,116,108,116,127,132,130,125,127,137,135,134,128,123,120,119,118,108,101,108,105,91,86,90,94,92,85,83,86,95,92,82,81,88,4868 +70 Whitehall,Electricity,kWh,2011-01-01,88,74,70,77,83,80,71,81,84,78,69,71,84,81,75,74,86,85,77,71,84,85,77,71,83,88,82,73,81,90,82,73,80,85,80,70,74,89,85,77,72,89,80,82,76,76,84,80,3807 +70 Whitehall,Electricity,kWh,2011-01-02,78,78,77,81,77,80,75,78,77,77,78,78,75,79,78,81,81,79,80,81,76,71,74,84,80,77,82,80,81,80,81,80,79,78,79,79,79,85,84,85,80,84,81,84,82,82,78,80,3813 +70 Whitehall,Electricity,kWh,2011-01-03,78,72,72,75,78,81,80,77,78,77,73,75,75,80,82,80,80,83,75,79,81,84,84,85,80,87,85,83,84,84,83,85,83,84,83,83,82,86,83,84,81,83,83,85,87,83,81,79,3885 +70 Whitehall,Electricity,kWh,2011-01-04,77,76,81,97,84,80,86,92,86,77,85,102,94,93,111,123,135,145,160,183,185,177,181,198,192,189,183,174,188,180,166,168,178,169,152,137,147,140,116,109,112,103,96,91,97,101,94,87,6177 +70 Whitehall,Electricity,kWh,2011-01-05,90,98,90,90,88,90,93,90,88,90,91,97,103,108,111,120,140,143,163,183,187,186,182,189,193,190,182,182,177,173,178,177,176,169,163,149,141,133,124,118,111,101,100,98,98,97,91,87,6318 +70 Whitehall,Electricity,kWh,2011-01-06,86,82,86,89,90,88,87,86,88,92,89,98,107,111,115,129,146,159,166,184,188,196,199,192,194,191,189,189,185,181,182,178,185,176,167,155,145,132,122,124,116,115,113,110,109,99,96,98,6504 +70 Whitehall,Electricity,kWh,2011-01-07,91,93,95,91,88,86,98,95,86,80,101,102,102,103,130,131,150,153,159,173,185,187,180,185,186,184,179,181,183,180,168,171,176,167,161,144,130,121,112,118,105,101,92,99,100,92,88,82,6264 +70 Whitehall,Electricity,kWh,2011-01-08,95,83,79,78,77,80,79,77,72,77,81,81,80,79,83,82,87,94,96,97,96,95,96,97,87,97,96,96,98,82,84,96,91,86,85,80,78,77,93,86,84,84,76,75,82,84,81,81,4100 +70 Whitehall,Electricity,kWh,2011-01-09,81,71,70,75,73,76,78,78,74,74,75,77,82,72,78,78,77,89,88,81,85,83,88,93,81,83,82,83,86,86,87,84,87,81,82,79,82,81,81,83,80,84,81,82,82,80,80,80,3873 +70 Whitehall,Electricity,kWh,2011-01-10,78,85,85,86,84,86,85,81,84,83,90,94,97,104,112,120,145,156,159,173,190,200,184,190,200,190,183,174,191,181,173,168,186,179,163,152,163,148,124,124,126,112,92,109,108,95,84,103,6379 +70 Whitehall,Electricity,kWh,2011-01-11,99,95,88,90,87,86,91,88,88,91,87,96,98,103,115,126,143,157,163,181,195,204,197,199,194,191,191,180,188,187,183,177,180,178,163,152,148,141,130,119,113,108,104,103,103,102,95,92,6489 +70 Whitehall,Electricity,kWh,2011-01-12,92,87,86,89,91,96,94,98,90,85,90,101,113,114,108,128,142,170,171,180,197,191,188,192,192,192,195,191,190,187,182,183,180,175,168,158,147,133,130,129,121,112,107,111,112,101,96,97,6582 +70 Whitehall,Electricity,kWh,2011-01-13,102,93,102,99,93,89,105,97,93,92,95,99,111,111,115,116,148,152,166,164,179,175,181,185,182,175,183,182,187,187,182,183,185,172,172,156,145,129,133,119,110,98,109,100,99,86,99,96,6431 +70 Whitehall,Electricity,kWh,2011-01-14,90,90,88,88,87,90,89,89,84,88,87,110,113,114,117,129,150,159,164,182,194,194,194,192,186,185,189,183,182,178,176,180,178,172,158,146,139,128,117,109,105,97,98,94,96,92,94,92,6356 +70 Whitehall,Electricity,kWh,2011-01-15,88,79,78,79,88,84,83,80,81,88,84,81,80,83,90,88,87,86,94,96,95,98,90,97,100,99,89,92,97,94,94,88,89,93,88,87,79,86,96,90,87,84,82,91,88,84,79,83,4216 +70 Whitehall,Electricity,kWh,2011-01-16,83,86,82,76,74,87,80,76,77,80,84,80,78,73,92,89,74,87,96,92,84,94,96,96,88,91,103,95,86,88,90,86,83,82,96,88,81,82,98,91,79,86,87,85,86,88,89,90,4134 +70 Whitehall,Electricity,kWh,2011-01-17,80,88,81,83,80,85,83,83,81,81,81,100,107,112,112,128,141,150,160,177,183,181,181,186,185,182,180,179,175,175,178,177,177,172,166,151,148,129,123,112,109,109,100,99,100,93,96,91,6230 +70 Whitehall,Electricity,kWh,2011-01-18,85,81,86,90,85,88,88,82,83,81,84,111,108,109,111,127,149,163,177,178,185,196,201,187,184,186,190,187,189,192,186,183,179,182,172,159,146,132,128,121,111,103,103,99,100,91,92,91,6441 +70 Whitehall,Electricity,kWh,2011-01-19,87,90,83,82,94,93,84,84,85,90,89,101,116,110,111,128,152,165,172,186,186,189,183,188,184,186,189,184,188,189,189,182,180,177,169,156,145,133,134,119,109,103,104,101,92,88,91,95,6435 +70 Whitehall,Electricity,kWh,2011-01-20,83,89,82,91,85,86,90,84,84,90,84,109,109,111,125,135,145,158,170,181,187,194,192,192,190,181,179,174,167,159,160,168,166,162,149,144,144,129,121,114,117,108,105,98,98,97,91,97,6274 +70 Whitehall,Electricity,kWh,2011-01-21,84,84,87,87,86,83,86,84,84,79,82,112,116,106,114,131,145,157,166,178,192,194,191,189,189,192,186,176,172,166,161,167,160,152,142,139,136,130,121,107,106,104,99,95,102,101,95,89,6204 +70 Whitehall,Electricity,kWh,2011-01-22,90,85,91,94,85,88,91,94,87,83,99,96,87,86,97,101,99,99,101,104,106,99,98,105,104,102,99,98,98,96,96,86,92,95,92,93,91,92,96,96,89,92,89,90,91,88,92,85,4507 +70 Whitehall,Electricity,kWh,2011-01-23,83,84,87,87,85,87,82,89,85,86,90,92,84,86,90,94,89,94,92,98,93,94,97,95,88,94,97,97,96,93,92,94,92,89,90,92,90,90,91,88,93,89,91,90,90,87,87,86,4329 +70 Whitehall,Electricity,kWh,2011-01-24,87,89,88,84,87,92,90,85,88,92,95,96,96,102,108,131,146,159,168,197,195,185,185,194,189,186,185,189,186,181,177,176,189,177,158,143,139,137,136,112,105,100,107,99,91,92,93,91,6377 +70 Whitehall,Electricity,kWh,2011-01-25,96,83,81,94,85,81,93,91,82,88,94,89,89,103,107,138,173,167,178,202,218,208,190,213,208,192,188,204,201,182,180,195,186,158,160,158,141,138,140,120,110,122,116,100,100,106,95,89,6632 +70 Whitehall,Electricity,kWh,2011-01-26,100,99,92,91,91,92,95,91,91,93,91,102,104,108,112,145,159,172,186,192,198,201,195,197,194,194,199,194,194,190,179,182,180,170,165,157,148,144,137,116,116,111,104,99,99,99,98,92,6658 +70 Whitehall,Electricity,kWh,2011-01-27,90,81,80,87,83,84,87,90,85,91,93,94,97,109,123,139,154,160,171,186,206,206,192,199,212,199,190,190,203,205,189,191,191,179,165,157,166,156,136,124,117,106,103,98,94,107,99,87,6651 +70 Whitehall,Electricity,kWh,2011-01-28,88,88,96,83,85,98,87,85,96,91,89,101,111,107,116,149,170,164,167,201,204,194,199,216,209,196,205,206,196,182,195,192,178,169,174,162,143,139,139,110,103,103,104,96,92,109,97,83,6667 +70 Whitehall,Electricity,kWh,2011-01-29,85,96,86,83,84,85,87,83,82,82,85,80,83,85,82,85,85,92,88,95,86,92,88,93,93,94,96,91,96,90,89,88,88,89,83,87,85,87,85,89,85,89,82,91,82,86,84,86,4187 +70 Whitehall,Electricity,kWh,2011-01-30,79,78,79,77,82,84,81,80,82,82,81,83,83,80,85,86,88,85,87,90,84,83,88,88,83,82,91,84,81,84,90,83,81,88,85,81,82,86,81,82,82,86,82,79,87,81,78,79,3993 +70 Whitehall,Electricity,kWh,2011-01-31,84,87,86,97,89,87,85,99,89,88,86,108,100,102,108,144,141,151,170,191,194,205,220,206,202,208,209,194,187,195,199,188,175,185,175,157,152,156,142,119,109,107,106,96,91,95,93,85,6642 +70 Whitehall,Electricity,kWh,2011-02-01,85,89,90,83,86,88,85,84,87,88,88,93,93,102,110,143,151,170,180,197,202,208,211,215,212,208,204,202,206,203,203,200,190,182,176,167,164,154,142,122,119,105,103,96,99,93,92,92,6762 +70 Whitehall,Electricity,kWh,2011-02-02,88,79,81,87,84,95,87,84,84,88,97,95,93,101,112,141,150,165,183,196,201,213,206,199,209,209,204,195,195,194,183,182,186,182,168,158,156,156,137,115,116,119,100,96,94,105,92,89,6649 +70 Whitehall,Electricity,kWh,2011-02-03,82,91,88,80,83,95,91,80,90,92,91,90,92,106,105,134,170,167,177,194,199,196,189,197,206,202,191,205,204,201,178,196,183,173,157,152,161,147,129,119,121,108,95,102,108,96,83,92,6588 +70 Whitehall,Electricity,kWh,2011-02-04,92,89,85,85,85,86,88,86,83,89,87,87,96,103,100,119,145,158,163,177,190,195,196,187,196,193,189,191,186,185,182,174,173,164,161,147,140,131,124,109,104,93,97,95,98,93,86,85,6267 +70 Whitehall,Electricity,kWh,2011-02-05,83,75,79,80,80,78,74,77,78,73,69,79,75,75,72,82,81,84,81,84,85,85,81,83,83,83,77,86,84,80,81,80,73,78,79,77,77,72,75,81,81,79,77,77,77,74,77,73,3774 +70 Whitehall,Electricity,kWh,2011-02-06,69,74,78,77,68,74,79,74,70,67,78,76,72,68,79,79,73,72,85,79,75,76,87,82,76,74,85,81,74,73,81,83,75,70,82,79,74,75,81,78,78,71,79,81,73,69,76,72,3651 +70 Whitehall,Electricity,kWh,2011-02-07,71,77,82,83,78,85,84,82,78,82,86,88,90,106,107,133,143,160,179,191,192,192,198,195,190,187,191,190,185,188,192,180,173,169,159,154,146,141,129,113,109,101,99,93,92,87,83,85,6298 +70 Whitehall,Electricity,kWh,2011-02-08,83,77,80,84,90,88,77,77,87,82,83,94,95,94,103,147,149,164,172,184,200,201,203,201,194,197,189,187,194,186,177,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4411 +70 Whitehall,Electricity,kWh,2011-02-09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +70 Whitehall,Electricity,kWh,2011-02-10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10887,194,198,197,188,186,193,189,183,176,174,175,164,160,151,148,137,130,110,106,103,99,100,95,85,80,89,14697 +70 Whitehall,Electricity,kWh,2011-02-11,84,84,86,92,85,87,83,81,86,85,83,87,94,109,114,140,150,157,174,176,186,189,194,185,185,183,189,188,185,180,180,175,176,169,161,149,139,134,126,110,100,94,93,97,85,87,82,81,6239 +70 Whitehall,Electricity,kWh,2011-02-12,89,81,80,75,78,82,70,70,82,74,68,74,80,79,73,78,89,79,78,92,86,81,83,92,87,84,82,95,90,80,79,88,84,76,77,88,80,77,79,88,87,79,79,85,84,84,77,73,3895 +70 Whitehall,Electricity,kWh,2011-02-13,84,81,83,76,76,77,72,71,71,80,80,73,77,73,78,77,77,79,81,92,90,89,88,86,87,83,93,86,86,85,79,79,77,87,82,78,80,78,84,80,77,84,77,74,80,78,80,79,3864 +70 Whitehall,Electricity,kWh,2011-02-14,77,83,81,88,86,91,94,88,88,90,86,96,100,104,107,128,148,159,162,174,186,195,189,191,189,183,191,187,183,187,185,180,173,174,168,160,152,140,128,114,114,111,106,102,98,98,100,90,6404 +70 Whitehall,Electricity,kWh,2011-02-15,87,80,95,88,83,82,94,87,88,82,87,102,95,91,111,129,152,166,181,190,195,193,184,200,195,195,193,189,192,186,179,183,177,170,166,153,156,149,143,118,107,111,100,95,89,98,93,80,6459 +70 Whitehall,Electricity,kWh,2011-02-16,79,92,86,87,83,82,84,84,81,87,86,89,97,99,101,132,158,163,172,187,194,199,194,207,194,201,200,194,187,185,181,187,176,169,164,158,143,137,133,117,108,103,100,96,86,95,92,87,6416 +70 Whitehall,Electricity,kWh,2011-02-17,86,80,83,91,87,88,82,82,90,90,88,92,98,100,103,133,153,164,183,187,204,202,196,200,198,199,197,191,186,193,187,184,183,178,167,165,159,144,130,111,114,109,96,93,92,101,93,87,6519 +70 Whitehall,Electricity,kWh,2011-02-18,86,87,88,82,78,99,94,78,82,92,90,88,93,103,108,131,170,163,169,181,187,193,199,195,194,198,198,186,190,189,183,180,173,157,146,144,139,131,120,103,105,96,90,87,85,91,85,74,6280 +70 Whitehall,Electricity,kWh,2011-02-19,81,87,87,81,75,76,74,75,73,71,69,70,83,81,75,82,82,94,91,93,93,90,90,90,93,97,92,85,88,90,82,82,86,86,80,78,80,79,82,83,80,82,79,80,84,79,77,76,3963 +70 Whitehall,Electricity,kWh,2011-02-20,80,79,74,76,78,78,75,80,77,75,77,78,79,77,81,83,84,83,79,86,91,88,87,90,92,87,88,93,87,82,82,83,81,80,78,81,78,80,83,85,83,83,82,83,79,81,83,79,3928 +70 Whitehall,Electricity,kWh,2011-02-21,77,88,94,87,88,94,93,92,86,96,94,93,99,111,114,126,163,163,162,172,198,197,188,198,208,198,188,202,203,190,174,190,188,167,152,152,154,140,122,113,115,100,87,99,96,83,83,97,6474 +70 Whitehall,Electricity,kWh,2011-02-22,92,77,88,94,85,80,93,92,85,83,94,101,91,93,115,148,162,163,175,201,200,185,188,202,198,185,185,202,197,184,184,190,177,160,156,164,148,127,130,121,105,92,107,105,86,90,101,91,6472 +70 Whitehall,Electricity,kWh,2011-02-23,76,92,92,84,83,88,85,84,84,87,87,87,91,100,108,141,155,154,165,182,184,186,196,193,188,193,186,186,192,189,189,182,174,169,158,153,148,138,134,113,106,99,99,96,96,92,88,84,6336 +70 Whitehall,Electricity,kWh,2011-02-24,84,76,76,80,85,95,78,80,88,96,82,91,95,98,106,151,165,167,169,183,193,192,197,199,197,192,193,192,193,194,191,191,172,169,173,159,155,145,137,115,106,101,102,109,96,91,87,96,6482 +70 Whitehall,Electricity,kWh,2011-02-25,90,84,82,95,89,88,80,94,89,87,85,91,106,104,103,140,175,169,181,186,199,203,205,203,185,197,198,195,190,186,189,180,181,174,162,157,152,147,138,112,94,98,107,98,100,94,91,93,6546 +70 Whitehall,Electricity,kWh,2011-02-26,91,95,89,84,84,89,85,85,83,87,85,84,83,85,88,86,96,95,99,103,105,102,101,104,99,97,104,102,99,96,93,91,93,90,90,93,90,91,89,89,87,89,85,87,91,88,83,84,4388 +70 Whitehall,Electricity,kWh,2011-02-27,81,80,88,80,82,82,83,79,80,83,75,78,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054 +70 Whitehall,Electricity,kWh,2011-02-28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4818,182,194,216,218,217,211,208,211,203,199,195,209,199,187,180,170,176,163,154,142,152,129,118,104,108,106,101,87,97,97,9751 +70 Whitehall,Electricity,kWh,2011-03-01,88,89,89,90,88,87,84,89,87,91,91,95,93,103,116,138,159,169,190,197,201,204,205,210,209,205,203,200,199,196,188,188,182,177,170,162,156,149,146,128,109,103,97,107,94,97,93,87,6698 +70 Whitehall,Electricity,kWh,2011-03-02,92,83,83,85,84,87,88,81,83,84,86,91,94,99,108,143,165,176,178,195,208,201,200,206,203,203,206,196,203,211,205,192,189,181,170,157,155,153,144,114,106,105,102,96,89,94,91,95,6660 +70 Whitehall,Electricity,kWh,2011-03-03,89,79,87,86,85,82,81,92,86,81,82,90,100,103,102,145,165,171,177,189,210,210,205,205,200,207,212,198,193,189,188,182,187,179,173,162,152,150,144,123,118,110,105,100,100,96,93,90,6653 +70 Whitehall,Electricity,kWh,2011-03-04,90,88,85,87,87,87,91,88,88,88,90,100,102,107,111,148,167,175,181,189,200,210,203,205,198,202,202,200,199,196,186,179,174,170,163,162,153,145,137,113,108,101,99,95,95,92,89,89,6614 +70 Whitehall,Electricity,kWh,2011-03-05,84,85,85,85,82,88,85,86,84,84,87,86,86,90,88,94,102,99,103,103,97,99,98,97,97,96,96,92,94,93,93,91,92,93,90,97,97,88,90,90,92,93,88,85,89,86,83,83,4365 +70 Whitehall,Electricity,kWh,2011-03-06,83,82,81,81,80,82,80,82,81,79,77,79,83,85,82,86,89,90,90,92,93,93,89,95,95,93,91,90,91,87,85,93,93,88,83,85,84,81,84,86,85,84,89,87,82,86,85,80,4121 +70 Whitehall,Electricity,kWh,2011-03-07,79,85,84,85,83,85,87,84,85,86,90,97,102,105,114,150,172,178,184,192,200,204,202,204,202,198,192,193,194,190,185,183,176,171,168,157,155,142,131,114,107,102,104,99,93,92,89,88,6562 +70 Whitehall,Electricity,kWh,2011-03-08,85,88,88,85,82,87,88,86,85,88,89,92,96,102,112,145,166,181,185,198,201,206,210,206,194,193,195,200,195,192,193,189,183,172,166,160,153,148,135,120,110,105,102,101,94,92,87,85,6615 +70 Whitehall,Electricity,kWh,2011-03-09,87,90,83,83,82,83,85,94,86,84,85,93,96,99,109,151,169,170,180,187,193,199,195,197,197,198,203,202,204,194,189,186,179,168,168,157,152,145,138,114,109,103,104,97,94,92,90,92,6555 +70 Whitehall,Electricity,kWh,2011-03-10,87,84,84,84,85,90,91,86,86,84,87,97,101,102,111,152,171,182,176,190,201,195,193,201,200,200,202,195,194,199,190,181,175,171,169,168,155,146,139,120,114,108,106,97,92,90,90,82,6603 +70 Whitehall,Electricity,kWh,2011-03-11,80,80,86,85,85,79,81,79,83,88,87,92,95,102,105,149,158,160,173,182,187,186,191,195,203,196,195,198,189,184,182,178,172,176,173,161,147,142,135,112,106,102,99,90,89,85,90,83,6375 +70 Whitehall,Electricity,kWh,2011-03-12,83,81,84,79,77,78,86,85,78,77,80,82,79,80,89,88,86,88,95,94,91,89,94,95,85,86,91,95,100,91,83,87,89,85,82,81,85,86,81,81,87,84,81,78,85,82,77,77,4077 +70 Whitehall,Electricity,kWh,2011-03-13,77,82,77,77,73,77,76,73,77,74,71,75,77,76,81,80,83,77,81,84,84,82,82,88,86,77,80,87,82,85,81,83,84,78,85,81,82,80,80,81,75,81,76,80,79,72,73,72,3804 +70 Whitehall,Electricity,kWh,2011-03-14,74,78,77,78,79,78,82,84,83,78,80,87,90,103,109,145,162,173,185,192,199,200,205,202,204,204,206,203,196,197,190,182,171,168,161,156,148,144,136,119,100,97,91,91,99,95,83,79,6443 +70 Whitehall,Electricity,kWh,2011-03-15,82,82,87,84,79,83,82,84,89,88,85,87,94,96,107,145,157,165,182,189,195,194,202,195,189,186,183,182,182,177,179,180,180,174,163,159,153,146,137,116,105,103,97,96,90,92,91,84,6377 +70 Whitehall,Electricity,kWh,2011-03-16,79,81,79,83,79,79,78,83,78,81,81,93,100,99,108,144,163,177,174,184,197,195,198,204,201,196,196,193,185,192,196,184,183,174,165,159,153,151,145,126,114,111,110,104,100,93,89,85,6522 +70 Whitehall,Electricity,kWh,2011-03-17,88,87,85,79,80,82,86,89,79,81,85,93,96,107,112,139,165,167,181,187,196,200,202,198,195,198,200,193,186,182,182,179,179,173,164,155,149,143,139,121,111,101,101,97,94,91,95,91,6483 +70 Whitehall,Electricity,kWh,2011-03-18,84,82,87,87,83,84,89,91,82,84,87,96,104,103,109,151,164,172,172,184,185,190,193,202,193,194,190,193,190,184,185,177,169,165,160,154,142,138,131,118,107,98,97,96,95,92,87,83,6403 +70 Whitehall,Electricity,kWh,2011-03-19,83,86,86,83,81,83,83,86,83,79,78,82,86,85,89,88,91,99,106,101,98,98,103,104,99,102,105,106,102,100,97,103,95,93,93,98,96,93,93,94,93,88,89,88,85,81,80,81,4395 +70 Whitehall,Electricity,kWh,2011-03-20,85,78,77,77,75,77,79,74,76,71,75,73,75,77,75,77,81,81,83,82,80,84,84,80,79,80,81,80,78,83,81,82,78,81,75,81,83,78,75,77,77,83,78,75,77,77,69,73,3757 +70 Whitehall,Electricity,kWh,2011-03-21,73,71,75,85,77,79,80,78,81,87,85,88,96,96,106,148,162,166,176,186,196,200,197,195,201,199,194,194,194,190,183,176,176,172,168,159,148,147,136,121,117,108,100,100,101,91,88,89,6435 +70 Whitehall,Electricity,kWh,2011-03-22,88,82,84,86,86,83,82,90,86,83,85,95,100,96,103,144,159,172,183,195,201,198,193,192,191,187,187,183,188,190,182,173,172,172,166,151,149,143,133,114,110,102,94,96,95,87,83,86,6400 +70 Whitehall,Electricity,kWh,2011-03-23,83,79,79,80,83,79,77,82,82,80,81,90,100,100,105,137,160,175,189,190,191,193,187,191,188,187,186,184,185,186,179,170,168,165,161,157,154,140,128,115,102,98,99,98,94,87,85,81,6290 +70 Whitehall,Electricity,kWh,2011-03-24,79,77,78,81,80,78,79,81,82,79,82,88,94,93,112,144,159,167,173,184,191.9,191.2,191.6,183.1,172.2,174.6,177.7,172.2,170.9,169.7,168.8,169.4,165.3,160.5,155.7,144.3,137,129.5,115.2,103.8,94.2,90.7,86,88.5,86.1,83.4,80.1,78.3,6021.9 +70 Whitehall,Electricity,kWh,2011-03-25,75.4,80.6,77.3,74.7,79.6,76,76.2,79.1,79.5,80.2,84.6,89.4,95.6,101.4,142.2,152.7,161.2,169.5,177.6,178.1,183.4,181.9,181.4,178.5,179,172.5,171.8,171.6,167.2,163.7,167.2,164.6,155.1,155.1,144.4,132.6,127.4,119.3,104.2,96.1,91.2,88.2,92.2,89.5,87.2,82.6,82,82.4,5943.2 +70 Whitehall,Electricity,kWh,2011-03-26,77.1,76.6,75.3,73.4,76.9,79,75.1,75.5,75.6,75.5,74.9,76.7,77.6,74.9,77.4,80.7,81.1,81.6,80.9,79.6,82.1,84.5,81.7,82.1,79.8,78.9,79.4,75.6,75.1,78.1,79.2,77.1,78.9,76.2,74,76.4,77.7,77.6,73.2,69.7,67.3,69,70.9,71.3,74.6,68.1,75.4,70.5,3669.8 +70 Whitehall,Electricity,kWh,2011-03-27,73.2,70.8,67.4,69.8,71.7,70.5,73.2,67.4,70.7,71.6,72,74.5,72.7,72.4,72.1,73,76.5,77.4,78.7,79.4,76.7,76.5,75,78,71.4,75.1,75,76.1,77.5,75.2,74.9,68.7,66.3,75.9,73.6,73.9,74,71.2,72.4,73.4,74.4,73.4,69.7,67.7,70,69.6,71.1,71.4,3503.1 +70 Whitehall,Electricity,kWh,2011-03-28,70.2,70,69.5,73.2,73.3,73.5,73.7,76.2,81.6,88.5,94.3,94.6,135.7,154.2,162.1,168.2,176.6,177.2,175.3,180,182.5,182,182.3,181.8,184.7,179.7,179.3,173.5,168,163.7,162.3,158.1,145.7,136.5,131.4,123.4,109,97,92.8,87.4,86.5,90.5,84,78.7,80.9,76.8,81.2,77.8,5945.4 +70 Whitehall,Electricity,kWh,2011-03-29,75,73.9,79,79.4,76.9,77.6,76.4,76.9,86,92,93,106.6,134.1,149.5,159.1,165.2,183.8,193.7,192.3,192.5,196.6,190.8,189.7,190.5,185.8,184.6,184.7,180.5,177.6,171.8,163.3,159.9,149.6,149,142.9,132.4,113.3,99,90.7,90.1,89.7,90.2,85.5,81.4,79.3,80.9,81.7,78.2,6172.6 +70 Whitehall,Electricity,kWh,2011-03-30,79.4,75.7,82.2,79.7,76.5,75.6,76.7,81,93.6,92.3,97.3,100.4,137.5,148.7,161.8,177.2,182.6,191.3,198.9,200.7,198.6,193.1,189.5,193.1,177.6,178.1,178.9,178.6,171.2,168.4,160.9,154.4,147,141.2,135.2,127,109.9,100.8,94.5,92,94.6,89.2,85.3,81.1,80.6,85.6,80.8,77.7,6174 +70 Whitehall,Electricity,kWh,2011-03-31,77.9,77,80.8,76.5,74.2,76.1,76.1,85.3,89,94.6,95.6,100.8,137.7,152.6,167.5,183.9,191.8,199,199.7,191.6,194.2,192.5,186.7,183.7,181.9,185.4,180.2,176.5,178.1,174.5,168.3,162.7,157.4,151.1,141.9,130.5,114.5,105.3,100,94.3,92.6,92.6,84.5,81.9,81.8,85.5,80.3,77.4,6264 +70 Whitehall,Electricity,kWh,2011-04-01,77.8,79.9,84.3,82.2,77,75,79.7,82.2,88.9,90.9,96.9,105.1,139,148.6,158.7,172.4,184.1,190.4,195.5,193.6,193.4,184.5,181.6,181.8,178.5,179.9,175.5,177.9,175.3,170.3,167.1,159.5,149.9,141.9,131.7,125.7,111.7,107.6,96.8,91.3,92.2,96.4,88.6,87.2,85.2,90.1,85,80.5,6189.3 +70 Whitehall,Electricity,kWh,2011-04-02,80.8,78.4,79.1,82.6,76.9,76.9,77.9,80.8,79.3,81.4,84.2,82.6,83.6,89.5,89.9,89.4,91.7,82.3,77.8,75.8,75.8,75,76.6,89.5,88.7,91.2,84.4,79.8,96,88.7,80.2,84.5,76.8,82.7,79.8,81.7,75.3,75.7,75.2,81.3,83.9,82.8,75.9,78.7,76.5,73,74.3,79.9,3904.8 +70 Whitehall,Electricity,kWh,2011-04-03,74.7,76.9,74.5,69.7,70.5,71.7,82.6,79.6,74.6,77.7,76.3,79.9,78.9,73.6,84.7,83.2,80.6,87.5,86.2,82.8,86.8,79.9,78.2,75.7,86.6,85,81.3,76.4,81.1,77.8,80.7,77.4,80.5,76.6,89.8,86.8,84.8,81.9,80,81.2,79.1,80.1,81.7,77.8,76.8,71.7,70.2,73,3805.1 +70 Whitehall,Electricity,kWh,2011-04-04,79.9,76,74.7,80.5,78.8,72.8,83.2,80.1,84.6,97.1,98.8,105.8,155,160.8,159.4,170.5,191,191.3,190.5,193.6,189.1,188.7,188.6,191.4,184.7,184.9,181.5,181.9,187.7,183.5,165.3,166.8,155,149.4,136.8,125.9,110.2,99.8,95.4,98.2,90.3,85.7,90.7,89.3,78.5,83.5,87.3,83.7,6278.2 +70 Whitehall,Electricity,kWh,2011-04-05,83,82.8,86.3,85.7,86.1,87.4,88.9,86.5,94.7,97,103.2,107.7,128.2,153.1,161,173,182.3,193.3,191.2,192.5,200.8,199.8,195.1,192,179.4,197.9,189.4,181.8,178.7,177.2,167.4,153.5,147.2,151.2,140,124.8,109.5,105.3,111.9,97,97,93.4,94.5,88.1,85.4,86,82.9,85.4,6376.5 +70 Whitehall,Electricity,kWh,2011-04-06,85.3,86.5,88.1,87.6,87.1,84.9,86.3,88.9,96.6,99.1,104.9,110,133,166.7,169.3,172.1,184.7,186.2,185.6,189.8,192,188.8,181.6,189.5,184.4,184.9,184.8,180.3,170.6,176.9,165.2,165.9,151.3,152.4,137.5,130.1,112.7,97.4,89.8,89,86.6,87.3,85.2,84.8,81.8,83.3,79.1,85.2,6291.1 +70 Whitehall,Electricity,kWh,2011-04-07,75.4,77.1,84.8,75.7,80.1,83.3,72.5,85.1,88.7,87.9,105.4,102.2,139.9,152.8,159,162.5,189.2,192.7,192.6,190.8,189.7,183.7,180,179.2,178.5,183.3,179.9,175.6,171.3,169.4,162.8,150.9,154.5,147.3,131,127.3,111.6,96.3,91.9,91.5,96.2,85.7,89.6,86.7,83.6,79.3,81.7,84.1,6140.3 +70 Whitehall,Electricity,kWh,2011-04-08,82.3,81,81.5,84,82.9,81.4,75.3,86.7,89.3,98.6,99.8,102.1,134.8,156.2,149.5,154.9,161,173.2,182.6,175.4,179.9,178.6,174.5,175.3,171.7,175.1,180.8,180.4,161.9,177.3,167,152.2,141.6,138.6,135.8,115,99.5,93.1,88.9,89.5,83.8,88.4,80.5,81.1,94.9,86,75.8,79.1,5978.8 +70 Whitehall,Electricity,kWh,2011-04-09,72.1,74.5,75.7,77.1,76.7,77.3,72.9,75.5,76.7,78,76.1,76.7,79.2,89.9,90.9,93.3,86.2,87.1,96.1,93.5,94.6,93.2,89.6,87.5,86.3,89.4,82.7,84.7,79.8,84.5,85.1,78.7,74.8,78,86.7,83.9,83.8,74.3,73.6,83.9,81.4,79.9,75.7,75.4,78.1,77.2,69.4,69.6,3907.3 +70 Whitehall,Electricity,kWh,2011-04-10,74.7,74.1,73.1,72.4,73,72.5,70.2,74.6,74.7,73.2,75.6,78.2,75.8,75.5,80.3,86.4,77.2,84.6,82.3,85.5,87.4,85.4,82.8,82.2,80.3,78.7,77,76.7,79.3,78.7,81.1,79.1,79.5,77.1,80.5,79.6,79.7,82.1,79.5,76.1,76.3,84.3,78.3,73.1,75.7,76,81.7,75.6,3757.7 +70 Whitehall,Electricity,kWh,2011-04-11,78.9,79,80.2,76.1,78.8,77.7,78.1,77.7,88.6,92.5,93.7,101.9,131.5,152.4,149.8,159.7,173.7,176.8,178.8,174.5,182.8,182.6,176.7,164.8,191,185.9,172.1,177,181.5,167.4,152,162.7,161.7,139.5,129.8,125.1,108.3,102,97,92.3,91.7,88.3,86.8,83.8,83.3,82.7,78.3,81.5,6029 +70 Whitehall,Electricity,kWh,2011-04-12,79.1,74.9,77.7,84.6,82.3,82.8,76.9,81.5,87.8,87.3,96,101.5,133.3,140,153.1,168.7,174.2,178.3,183.7,183.2,178.2,182.3,181.9,189.8,180.1,180.7,179.8,181.5,178.7,175.8,171,160.4,148.6,144.5,138.6,128.4,112.8,104,97.7,89.6,88.6,89,90.2,82.4,88.5,82.4,77.5,81,6110.9 +70 Whitehall,Electricity,kWh,2011-04-13,84.4,82.2,81.6,78.6,82.2,81.5,81.2,81,92.3,95,100.1,103.8,141,150.5,146.9,163.6,180.5,179.3,170.7,181.3,185.1,171.4,178.2,180.5,176.9,171.9,170.3,170.6,175.8,168,157.4,155.8,155.8,137.9,123.1,119.1,108,91.7,89.6,87.9,86.7,87.2,79.2,80.9,80.3,77.6,79,80.5,5984.1 +70 Whitehall,Electricity,kWh,2011-04-14,80.5,77.1,78.9,79.3,81.7,78.3,75.2,85.5,86.3,91.1,97.6,104.1,134.7,146.8,152.2,172.4,178.7,184.3,188,186.8,186,184,176.9,184.1,182,177.1,176,168.7,164,164.8,157.2,139.8,155.7,146.1,129.7,123,101.7,102.3,92.6,90.5,93.5,91,89.6,80.1,84.4,81.9,83.8,77.7,6043.7 +70 Whitehall,Electricity,kWh,2011-04-15,80.9,87,79.3,81.8,84.1,77.4,83.2,81.5,91.9,94.6,98.9,107.2,138.6,146.3,155.6,163.9,168.8,178.1,176.2,173.1,177.3,169.7,173.6,185.7,179.6,164.1,182,173.6,168.4,163.8,154.9,143.6,132.8,134,129.9,117.7,104,94.7,89.8,93.7,91.9,88.3,89.1,84.5,79.6,82.8,73.3,77.1,5947.9 +70 Whitehall,Electricity,kWh,2011-04-16,79.3,76,74.6,78.1,77.4,74.3,76.2,71.4,76.4,76.6,78.8,78.7,81.6,82,89.2,89.5,85.6,89.7,92.5,88.1,89.6,92.3,87.7,83.3,81.1,86.8,85.1,81.9,82,81.5,78.5,72,76.3,77.3,78.9,78.4,79.4,77.4,79.8,73.3,77.1,81.2,75.5,74,74.6,72.9,79.7,75.5,3849.1 +70 Whitehall,Electricity,kWh,2011-04-17,76,66.8,71.5,78.1,73.6,68.3,74,76.1,68.4,75.9,80.8,75.2,74.9,84.4,74.3,77.9,72.4,72.2,79.3,76.9,70.4,80.8,76.8,78.3,74.9,74.5,81.3,78.3,73.7,76.5,83,74.9,77.8,74.6,73.6,80.1,81.3,81.5,80.2,72.4,70.3,86.3,73.4,75.7,76,75,76.6,75.1,3650.3 +70 Whitehall,Electricity,kWh,2011-04-18,79,74.3,80,72.4,71.7,74.1,81.9,85.2,88,96.1,100.4,103.9,133.8,135.4,157.4,163.1,170.4,175.7,177.9,174.6,181.6,188.5,180.6,184,179,176.6,182.4,177.3,170.4,165.1,157.6,156,151.2,140.9,129.5,120,106.3,102.1,87.2,91.8,86.7,86.8,88.2,84.1,81.4,76.8,75.5,79.9,5982.8 +70 Whitehall,Electricity,kWh,2011-04-19,79,77.8,82,77.4,80.5,82.8,84,82.1,89.8,91.4,92.3,100.2,139.9,145.5,157.9,170.7,184.2,172.7,175,176.3,173.9,174.4,178.3,176.7,173.1,180.7,180.1,175.8,161.9,167.6,155.6,152.7,153.5,142.8,123.2,127.9,106.6,92.9,90.8,89.1,87.6,93.7,84,78,79.8,78.2,74.8,77.6,5972.8 +70 Whitehall,Electricity,kWh,2011-04-20,78.4,73.4,74.9,84.5,81.5,77.7,73.3,79,83,88,94.8,100.3,132,144,152.1,159.2,167.8,170.5,177,177.6,176.7,179.7,184.5,184.7,172.9,174.1,174.6,175.5,171.4,162.5,152.4,166.3,150.3,133.6,124.7,131,95.3,95.4,91.8,90.7,87.8,81.3,77.7,79.4,79.3,80.8,76.4,74.7,5894.5 +70 Whitehall,Electricity,kWh,2011-04-21,67.2,74.2,72.1,76.4,78,67.5,74.3,72.4,84.3,85.6,95.8,99.9,127.4,139.6,147.2,153.5,159.3,161.7,165.2,164.1,164.9,160.1,170.5,167.4,160.7,154,142.4,146.8,139.5,130.1,123.4,123,119.8,115,107.9,106.6,92.9,83.2,84.4,84.8,83.6,84.4,84.3,82,83.1,79.2,70.8,71.6,5382.1 +70 Whitehall,Electricity,kWh,2011-04-22,75.4,78.1,75.7,77,81.9,71.7,73.2,77.5,73.9,73.5,77.8,82.5,75.5,80.1,86.6,82.2,80.7,88.6,90.2,82.6,88,93.2,85.1,88.1,92.7,92.9,85.1,87.6,94.9,86.4,88,84.9,87.6,85.6,87.5,87,85.7,84.3,85.3,85.4,83.3,83.2,80.8,79.9,78.5,79.9,81.8,79.1,3986.5 +70 Whitehall,Electricity,kWh,2011-04-23,78.8,76.7,80.5,78.5,77.3,77.1,79.2,78.1,78.6,80.1,81.9,85,82.4,84.1,88.8,95.5,89.7,91.2,96.7,90.6,89.3,91.3,90,91.2,89.4,91,87.2,86.5,87.5,86.5,85.1,78.9,79.4,80,81.5,82.8,82.4,82,82.9,80.9,79.8,82,77.5,73.1,77.6,77.4,70.4,67,3981.4 +70 Whitehall,Electricity,kWh,2011-04-24,77.9,72.3,83.6,74.9,68.2,80,70.4,80,80,73.4,77.4,82.6,79.1,86.6,79.7,74.2,85.3,78.4,94,85.7,76.9,85.6,82,91,87,78.4,79.4,84.4,77.6,89,79.8,72.7,86.8,80,80.2,82.5,83.3,81.9,81.9,80.5,80.4,82.9,80.2,76.5,78.9,77.6,76.7,76.4,3854.2 +70 Whitehall,Electricity,kWh,2011-04-25,78.1,77.9,78.2,78.8,73.9,73.2,75.1,75.2,74.9,76.3,75.7,76.9,72.4,70.1,73.9,84.2,79.4,82.4,80.8,80.7,88.2,86.3,85.7,88.1,84.4,91.5,87.6,78.7,84.2,87,82.4,83,79.4,79.5,81.7,78.4,80.5,79.1,78.7,78.7,79.5,82,81.3,77.4,73.8,78,67.3,65.6,3806.1 +70 Whitehall,Electricity,kWh,2011-04-26,66.1,67.6,67.3,66.1,65.4,66.7,65.8,67.5,70.6,74.3,83.2,86.7,154.7,148.9,152,158.1,166.9,172.1,171.9,172.5,177.1,171.3,169.5,173.1,159.4,172.1,169.8,161.8,151.4,159.5,150.6,139.9,140.3,133,124.4,112.2,98.7,94.6,91.8,86.2,85.1,84.5,77.6,79.1,78.5,76.7,80,73.8,5616.4 +70 Whitehall,Electricity,kWh,2011-04-27,71.3,72.8,82.5,79.3,70.3,76.9,75.3,70,82.8,81.5,96,95.9,117.8,142.4,151,156,159.3,159.9,162.9,174.5,172.5,167.3,168.5,169.3,163.4,166.1,163.4,162.4,155.5,149.4,161,151.6,137,129.9,120.1,129.7,105.6,100.8,96.6,88.4,86.6,83.1,85.9,76.3,71.9,87.6,79.3,74.7,5682.3 +70 Whitehall,Electricity,kWh,2011-04-28,77.5,75.7,78.9,73.3,78.3,77.5,72.5,78.3,81.4,89.3,95.7,97.6,119.9,143.4,148.6,159.9,164.3,167.9,172.2,170.7,169.9,163.8,160.4,171.4,168.1,168.5,164.3,160.9,146.9,147.8,146.7,142.4,131.2,125.2,117.4,115.9,101.8,89.9,87.2,91.2,86.9,87.7,87.1,83.4,76.4,78.1,74.3,76.9,5644.6 +70 Whitehall,Electricity,kWh,2011-04-29,76.7,77.1,79.1,76.2,72,75.1,75.4,75.7,78.7,71.8,77.8,85.2,83.7,86.1,85.7,82.5,85,85.8,80.1,85.4,87.4,85.9,86.3,90.1,88.1,87.6,82.4,82.5,85.3,83.5,82.5,81.7,80.9,78.8,80.8,77.9,74.8,74.4,78.7,79.2,78.1,79.3,77.7,74.6,75.3,73.1,79.6,75.7,3857.3 +70 Whitehall,Electricity,kWh,2011-04-30,76.4,69.5,71.5,70.9,76.1,72.6,66.6,74.5,77.5,71.1,73.9,80.6,80.5,76.2,83.5,86.9,79.7,81.7,88.5,84.7,82.2,87.6,84.8,81.2,84.7,88.1,76.8,79,82.5,76.6,72.1,81.3,78.6,72.9,78.8,78.4,75.1,77.9,77.2,79.2,81.8,78.7,78.1,76.6,78.5,78.3,76.2,76.6,3762.7 +70 Whitehall,Electricity,kWh,2011-05-01,78.3,77.1,77.7,76.1,77,76.8,77.2,76.5,77.9,76.2,77.4,73.3,86.5,83.5,82.2,78.8,82.1,80.7,83.9,81.4,81.6,85.6,78,85.8,82.5,79.9,82.2,74.9,80.1,77.3,77.1,77.3,73,79.3,76.6,78.4,78.7,80,80.2,75.2,76.6,80.7,75.6,77.4,75.2,75,69.1,68.1,3762 +70 Whitehall,Electricity,kWh,2011-05-02,71.7,72.7,76.2,73,71,76.1,73,75.5,70.8,69.2,76.3,78.7,76.6,76,78.1,78.7,80.9,83.3,85.6,83,80.8,84.3,85.5,86.4,82.8,82.3,82.2,79.9,80,78.9,80.4,80,76.4,77.6,81.9,82.1,84.9,84.4,84.3,81.5,79.2,71.2,74.6,76.4,73.6,67.9,77.8,73.9,3757.6 +70 Whitehall,Electricity,kWh,2011-05-03,65.3,65.9,69.1,77,72,68.6,81.4,72.3,72.8,92.9,84.8,90.5,142.1,140.2,140.4,162.2,185.3,179.9,173.4,189,178.8,165.1,182.2,179.1,179.3,170.2,174.3,170.2,166.5,162.2,158.2,153.7,144,140.6,134.9,124.1,100.9,90.1,97.4,85.4,84.1,94.4,83.3,77.7,85.5,78.3,81.8,82.8,5850.2 +70 Whitehall,Electricity,kWh,2011-05-04,76.2,77.1,78,73.9,79.8,79.3,72.2,79.7,82.8,87.6,97.9,100.3,129.8,138.2,148.3,160.8,173.7,175.4,178.6,176.7,178.9,182.8,176.2,173.5,171.3,172.7,177.3,173.7,162.5,155.1,159.1,151.2,139.3,133.4,126.6,120.5,107.9,99,97,88.6,86.7,88,85.3,73.7,72.5,86.3,79.7,69.1,5854.2 +70 Whitehall,Electricity,kWh,2011-05-05,75.1,75,77.5,72.3,75.4,75.7,73.7,72.2,80.5,92.2,92.1,94,131.4,146.4,149.2,161.7,182,188.9,181,182.8,182.2,173.8,183.9,185.2,176.8,175.7,178.4,172.3,182.2,162.7,158.8,129.3,141.7,139.9,125.5,122.3,114,191,123,112,96,91,92,92,89,89,74,76,6108.8 +70 Whitehall,Electricity,kWh,2011-05-06,80,82,77,72,72,73,88,78,75,76,76,87,93,95,90,104,125,134,151,160,160,156,171,198,185,178,171,181,175,170,161,177,166,158,142,149,142,128,111,104,100,94,86,87,86,85,82,86,5777 +70 Whitehall,Electricity,kWh,2011-05-07,81,75,80,75,70,75,84,75,76,75,76,73,72,78,78,92,113,102,99,99,99,102,108,106,107,103,100,104,104,98,98,97,96,91,90,98,94,92,90,84,80,73,73,91,84,78,78,73,4239 +70 Whitehall,Electricity,kWh,2011-05-08,74,71,73,82,73,73,75,79,69,72,75,78,71,76,82,77,79,82,87,84,82,88,92,82,85,87,96,82,87,89,85,77,87,90,82,78,84,89,80,79,84,89,77,81,83,82,72,77,3878 +70 Whitehall,Electricity,kWh,2011-05-09,78,85,74,84,80,82,75,80,79,73,72,87,92,95,96,136,155,154,164,176,192,186,184,177,192,182,180,177,183,186,172,170,180,166,155,144,148,144,129,103,104,99,95,89,84,87,88,78,6091 +70 Whitehall,Electricity,kWh,2011-05-10,86,85,78,78,79,80,75,75,83,77,73,78,92,96,101,131,147,157,177,187,196,204,194,191,187,175,188,179,176,171,175,176,172,173,160,151,145,141,129,109,96,97,96,89,90,88,86,82,6151 +70 Whitehall,Electricity,kWh,2011-05-11,83,73,75,79,82,81,77,77,81,78,76,84,92,92,99,140,146,144,164,182,177,181,180,188,182,187,185,167,180,192,173,172,174,165,149,152,146,136,129,104,102,99,99,91,88,88,91,84,6066 +70 Whitehall,Electricity,kWh,2011-05-12,80,84,83,83,85,82,82,82,83,83,81,87,93,97,101,131,153,153,165,169,179,196,196,185,172,188,193,181,171,177,193,175,164,155,160,160,138,130,123,117,104,100,98,98,98,87,91,91,6177 +70 Whitehall,Electricity,kWh,2011-05-13,88,91,90,83,80,85,90,85,84,83,86,91,94,97,98,131,151,161,163,175,182,190,189,188,186,174,183,180,179,187,182,168,158,172,166,144,134,137,130,113,105,99,94,96,94,92,89,89,6206 +70 Whitehall,Electricity,kWh,2011-05-14,87,79,85,92,84,83,89,85,78,87,88,85,83,90,93,105,104,101,99,107,109,100,114,112,100,105,113,108,104,110,107,104,99,107,103,98,102,105,96,87,93,93,84,90,95,86,85,89,4602 +70 Whitehall,Electricity,kWh,2011-05-15,86,87,87,86,85,89,87,84,83,87,90,88,84,82,92,94,92,92,86,94,92,95,96,88,94,99,104,96,99,93,93,83,92,89,90,91,93,95,92,94,94,88,95,90,86,91,90,80,4337 +70 Whitehall,Electricity,kWh,2011-05-16,85.7,85.4,80.5,84,86.2,80.3,82.6,88.2,87.3,99.2,97.1,105.5,135.1,150.9,157.2,168.9,178.5,187,195.1,187.5,180.1,179.5,190.5,190,174.5,174.4,180.9,176.6,176.9,165.2,157.2,161.3,164.2,149.1,137.1,131.1,118.1,110.2,106.6,101.3,98.3,95.1,93.3,91.5,90.7,88.5,78.9,80.1,6263.4 +70 Whitehall,Electricity,kWh,2011-05-17,88,80,80,83,88,76,82,85,87,81,81,93,94,93,108,136,145,155,168,184,186,191,181,199,191,186,190,186,184,188,184,174,165,173,160,152,146,129,133,119,106,106,98,92,89,85,87,89,6256 +70 Whitehall,Electricity,kWh,2011-05-18,78,82,82,84,83,83,83,83,80,81,83,89,100,99,109,135,154,169,179,184,193,191,187,185,202,198,179,181,189,182,188,180,170,160,177,164,150,139,144,129,118,104,118,109,99,96,89,87,6428 +70 Whitehall,Electricity,kWh,2011-05-19,90,81,86,85,86,86,84,87,82,85,85,94,95,100,108,141,156,158,169,181,186,200,183,181,190,187,186,180,190,191,188,178,178,171,151,168,153,141,136,121,108,105,101,98,97,94,92,90,6383 +70 Whitehall,Electricity,kWh,2011-05-20,85,78,75,82,88,89,84,78,81,84,90,88,91,99,103,147,154,150,171,184,173,183,187,194,199,187,185,193,183,180,195,171,171,161,158,147,141,134,121,106,107,99,87,92,95,89,83,86,6208 +70 Whitehall,Electricity,kWh,2011-05-21,87,85,83,82,86,78,85,84,84,86,81,82,82,91,79,96,115,109,105,103,105,123,115,101,100,117,112,106,106,113,115,95,95,103,109,90,91,100,98,88,85,82,81,80,82,81,79,79,4514 +70 Whitehall,Electricity,kWh,2011-05-22,81,79,79,79,80,83,78,80,80,79,82,83,80,79,83,81,84,83,85,89,82,81,80,100,83,84,98,91,87,90,85,89,82,75,86,82,82,81,84,83,86,93,82,84,87,82,75,83,4004 +70 Whitehall,Electricity,kWh,2011-05-23,79,75,77,78,85,75,79,83,83,77,80,87,90,105,92,141,149,152,164,180,180,177,189,183,182,185,178,172,188,184,177,164,182,165,149,158,143,125,134,114,97,101,98,88,86,96,84,83,6093 +70 Whitehall,Electricity,kWh,2011-05-24,94,82,76,80,84,77,80,79,80,82,84,86,89,96,113,128,139,153,166,169,171,186,182,170,185,174,163,179,179,174,178,170,161,165,166,135,126,127,115,107,108,96,91,92,100,90,87,89,6003 +70 Whitehall,Electricity,kWh,2011-05-25,90,82,80,81,82,82,81,82,80,80,79,90,91,101,104,126,136,150,163,172,175,188,183,177,173,194,184,169,182,179,170,168,162,164,147,135,136,115,112,125,107,99,92,94,93,89,91,88,6023 +70 Whitehall,Electricity,kWh,2011-05-26,89,80,82,85,83,82,77,85,80,80,81,88,89,100,107,131,148,157,161,177,186,186,181,189,184,183,179,183,184,179,177,173,172,166,167,144,141,124,123,108,103,101,93,90,93,84,84,88,6127 +70 Whitehall,Electricity,kWh,2011-05-27,80,80,77,84,84,79,81,87,80,79,82,94,89,101,110,131,136,150,155,174,182,173,170,189,174,166,186,172,164,175,168,155,157,154,143,121,125,112,99,101,103,89,88,92,91,78,85,90,5835 +70 Whitehall,Electricity,kWh,2011-05-28,80,82,82,75,79,82,94,80,80,75,71,73,88,87,82,86,88,90,91,91,95,91,88,84,105,102,93,95,88,83,81,95,87,81,76,90,88,82,80,81,84,81,82,81,78,78,80,83,4068 +70 Whitehall,Electricity,kWh,2011-05-29,83,77,78,79,78,74,77,79,74,75,81,83,75,76,79,89,86,87,88,86,83,90,91,90,90,90,90,86,87,86,87,89,86,88,88,86,85,85,83,84,86,83,83,85,85,81,82,81,4014 +70 Whitehall,Electricity,kWh,2011-05-30,80,76,79,80,84,77,81,83,81,75,79,85,78,78,84,109,110,99,90,105,94,95,110,98,108,106,104,100,108,105,102,99,101,101,90,82,90,84,80,87,88,78,83,89,83,83,86,85,4332 +70 Whitehall,Electricity,kWh,2011-05-31,75,81,81,80,74,80,78,78,78,83,78,81,88,95,90,122,125,128,129,139,147,141,146,151,137,136,137,129,127,136,136,133,125,117,112,102,100,94,82,79,84,99,89,88,87,86,84,77,5024 +70 Whitehall,Electricity,kWh,2011-06-01,80,81,80,74,71,70,82,81,80,80,71,81,82,105,107,129,134,149,157,169,173,177,182,183,164,180,170,169,167,165,169,167,166,156,151,145,127,120,117,110,103,101,93,86,86,86,85,84,5845 +70 Whitehall,Electricity,kWh,2011-06-02,84,76,84,85,77,82,88,76,78,81,84,79,89,104,94,139,148,156,158,184,181,184,197,188,181,184,187,172,189,184,181,177,162,174,165,141,123,126,115,105,111,100,90,95,94,86,90,89,6117 +70 Whitehall,Electricity,kWh,2011-06-03,78,81,92,80,85,85,83,82,82,80,85,81,94,103,107,137,148,157,167,188,184,186,198,195,178,189,187,179,182,181,181,172,172,181,171,137,126,120,111,105,99,95,92,95,92,91,87,88,6169 +70 Whitehall,Electricity,kWh,2011-06-04,86,83,87,86,86,77,83,94,85,83,84,81,84,83,89,90,87,91,91,92,97,94,100,96,97,99,99,98,95,97,93,93,101,89,93,91,89,89,90,90,95,85,86,86,89,87,86,86,4312 +70 Whitehall,Electricity,kWh,2011-06-05,81,89,82,80,83,88,76,83,86,76,82,87,82,78,85,86,79,86,92,86,86,90,91,86,93,93,86,95,90,87,95,87,83,91,85,81,88,84,83,93,84,79,86,83,81,81,84,82,4094 +70 Whitehall,Electricity,kWh,2011-06-06,76,80,85,85,82,80,80,80,79,79,79,88,89,99,106,141,157,158,175,180,180,189,187,186,180,173,179,186,187,184,179,173,184,171,159,141,133,129,128,114,109,105,97,99,95,90,82,85,6182 +70 Whitehall,Electricity,kWh,2011-06-07,82,84,82,85,81,86,85,83,77,86,85,95,102,102,99,154,146,160,170,192,189,191,201,201,192,188,195,189,186,183,187,182,179,180,185,165,144,136,124,118,102,103,99,100,88,92,92,85,6412 +70 Whitehall,Electricity,kWh,2011-06-08,90,87,82,79,90,84,78,84,87,78,83,94,96,100,114,132,144,159,171,176,198,190,192,191,195,193,184,189,182,176,175,189,174,163,176,166,144,132,119,111,116,100,93,96,94,85,87,91,6309 +70 Whitehall,Electricity,kWh,2011-06-09,85,82,82,84,78,81,81,80,83,80,83,88,93,99,107,129,156,159,162,177,185,206,195,185,180,199,182,176,203,190,174,177,179,175,162,163,167,125,121,110,106,100,98,96,94,94,90,90,6291 +70 Whitehall,Electricity,kWh,2011-06-10,86,89,88,82,82,88,90,89,83,84,86,90,95,106,108,124,146,153,159,167,170,177,179,185,184,176,177,180,185,163,181,180,162,160,167,156,146,131,117,114,107,105,97,92,90,89,87,85,6137 +70 Whitehall,Electricity,kWh,2011-06-11,85,79,78,85,83,81,81,85,77,80,84,81,75,82,88,89,92,95,92,89,95,102,91,96,107,96,99,104,99,91,96,89,86,94,87,82,95,86,84,91,87,86,89,87,85,87,89,76,4237 +70 Whitehall,Electricity,kWh,2011-06-12,84,92,77,75,89,84,83,82,82,82,81,87,83,86,90,88,87,91,87,87,93,85,93,88,88,88,89,92,86,89,84,90,88,89,85,84,81,89,91,90,90,94,92,84,85,90,86,85,4165 +70 Whitehall,Electricity,kWh,2011-06-13,83,76,86,91,83,88,84,87,83,85,81,92,103,105,111,132,154,157,171,178,181,182,194,192,189,183,182,191,193,187,177,191,197,173,175,176,158,129,119,113,107,101,94,93,94,87,86,86,6360 +70 Whitehall,Electricity,kWh,2011-06-14,83,82,92,86,81,89,88,79,83,87,81,86,95,107,105,137,163,161,170,184,183,193,194,193,179,195,184,189,184,186,189,182,184,179,167,175,159,138,130,117,116,113,102,100,102,100,101,90,6463 +70 Whitehall,Electricity,kWh,2011-06-15,88,95,93,89,82,102,94,91,88,86,94,95,99,108,115,139,165,174,177,190,196,203,197,196,189,200,200,197,183,197,185,184,183,178,172,168,160,131,126,114,109,100,98,93,92,90,86,89,6580 +70 Whitehall,Electricity,kWh,2011-06-16,85,81,85,87,84,89,86,87,83,82,85,95,98,104,113,131,162,167,176,192,201,199,190,190,199,194,182,181,186,179,183,180,183,178,160,154,154,122,110,120,110,105,99,95,94,91,91,87,6389 +70 Whitehall,Electricity,kWh,2011-06-17,86,76,79,84,84,79,86,84,80,77,91,91,93,101,108,137,145,164,155,176,184,183,178,175,195,184,176,186,176,178,174,167,162,170,161,144,149,124,110,106,111,101,96,96,87,90,87,85,6111 +70 Whitehall,Electricity,kWh,2011-06-18,78,81,84,84,83,76,80,87,84,85,80,87,79,84,80,86,90,91,92,85,94,95,96,90,92,96,94,95,93,94,92,88,86,89,87,87,84,90,85,84,85,88,83,86,83,85,84,82,4163 +70 Whitehall,Electricity,kWh,2011-06-19,80,80,79,82,79,83,80,77,80,82,79,82,82,83,84,83,83,87,86,87,87,83,90,87,87,88,89,91,89,84,85,84,83,83,85,83,85,88,88,88,88,84,83,86,84,85,83,80,4038 +70 Whitehall,Electricity,kWh,2011-06-20,81,76,84,80,80,81,80,79,86,72,82,91,91,94,113,151,152,143,173,179,181,176,190,191,177,180,188,184,177,183,179,169,178,177,168,155,157,136,115,116,112,92,99,96,84,93,89,78,6188 +70 Whitehall,Electricity,kWh,2011-06-21,85,90,84,81,83,85,88,83,87,84,86,93,95,103,111,129,140,168,174,175,191,196,185,178,186,190,178,166,183,180,177,165,182,173,160,157,158,130,122,112,108,104,102,98,94,92,90,88,6269 +70 Whitehall,Electricity,kWh,2011-06-22,79,84,81,84,84,79,74,78,90,85,83,83,86,106,110,125,144,158,162,177,164,173,184,181,180,180,183,182,181,186,176,179,182,172,162,164,163,136,110,116,113,96,93,94,92,91,87,84,6156 +70 Whitehall,Electricity,kWh,2011-06-23,84,79,91,79,77,88,83,74,87,81,76,94,97,95,109,138,138,151,157,181,182,182,179,196,183,172,192,185,180,172,178,175,162,170,172,156,150,130,113,107,107,101,93,97,103,89,91,92,6168 +70 Whitehall,Electricity,kWh,2011-06-24,83,85,84,90,88,89,83,84,83,83,90,90,99,102,113,126,146,149,168,182,186,181,177,179,189,181,168,173,190,179,164,182,175,159,156,165,144,109,128,115,105,96,97,94,94,88,89,85,6165 +70 Whitehall,Electricity,kWh,2011-06-25,87,78,83,82,82,87,80,88,85,84,86,84,83,89,86,86,91,91,93,97,99,98,97,97,98,98,95,95,96,94,93,87,87,85,85,86,85,87,90,90,85,89,84,84,83,85,83,80,4237 +70 Whitehall,Electricity,kWh,2011-06-26,79,71,76,73,82,88,82,78,79,77,78,77,77,86,83,0,0,0,0,0,0,0,0,0,862,95,92,89,98,89,87,94,87,87,96,87,79,96,93,87,91,91,81,89,86,81,90,81,4094 +70 Whitehall,Electricity,kWh,2011-06-27,77,85,89,84,82,81,81,82,83,80,85,90,95,103,112,147,166,165,183,192,196,209,208,209,213,203,210,210,210,211,208,205,206,199,193,185,176,151,126,116,112,117,108,106,102,97,103,100,6851 +70 Whitehall,Electricity,kWh,2011-06-28,92,90,91,94,89,85,104,89,84,85,94,112,99,106,106,164,167,172,185,193,198,201,201,197,195,197,201,199,198,199,195,195,189,186,181,178,169,134,122,116,109,113,114,92,95,92,91,91,6749 +70 Whitehall,Electricity,kWh,2011-06-29,88,82,91,93,85,80,88,82,89,86,80,92,95,108,109,140,152,148,180,187,182,183,198,191,180,182,185,181,175,185,178,180,174,171,167,155,161,133,113,113,110,95,101,94,88,96,87,83,6296 +70 Whitehall,Electricity,kWh,2011-06-30,90,85,82,82,82,80,79,80,80,78,84,89,95,105,104,154,149,163,177,184,189,191,192,189,172,178,179,177,175,174,174,170,174,168,163,156,150,143,142,130,120,115,109,116,110,106,101,96,6381 +70 Whitehall,Electricity,kWh,2011-07-01,91,95,96,93,87,81,96,100,90,78,84,88,92,100,107,118,161,157,158,167,174,175,177,175,172,176,174,172,167,164,163,164,165,160,155,146,141,131,126,118,112,104,99,97,95,95,97,95,6128 +70 Whitehall,Electricity,kWh,2011-07-02,93,90,92,91,92,92,93,90,89,89,88,89,90,97,93,97,95,98,98,103,101,103,100,100,102,97,100,100,107,104,100,95,95,97,94,99,97,104,96,97,95,98,94,98,93,94,91,90,4600 +70 Whitehall,Electricity,kWh,2011-07-03,89,88,82,89,87,90,83,85,86,87,81,83,81,89,93,88,88,93,95,96,98,99,100,97,95,97,99,104,103,101,97,92,94,92,93,93,92,96,92,92,93,98,95,95,94,98,94,93,4439 +70 Whitehall,Electricity,kWh,2011-07-04,91,93,92,91,90,94,91,94,91,94,95,100,105,107,119,129,147,156,172,179,185,189,183,183,183,188,186,185,182,176,177,173,171,162,166,157,152,145,136,131,119,110,113,102,103,98,93,93,6471 +70 Whitehall,Electricity,kWh,2011-07-05,94,90,91,92,92,94,87,91,85,93,91,99,104,108,118,124,143,153,163,176,188,187,190,188,186,184,181,183,183,177,178,180,174,166,173,164,153,144,136,132,127,120,110,105,104,98,94,96,6489 +70 Whitehall,Electricity,kWh,2011-07-06,92,95,91,94,93,93,94,95,94,92,97,106,108,108,112,130,138,149,159,173,179,180,174,177,176,172,175,177,176,173,169,169,169,166,158,164,153,142,135,132,123,120,112,106,106,106,99,89,6390 +70 Whitehall,Electricity,kWh,2011-07-07,90,92,93,88,88,99,88,85,93,93,93,99,108,104,120,129,139,156,163,172,178,180,182,177,176,167,173,169,171,165,165,161,161,161,159,153,146,138,131,120,116,111,106,104,98,94,98,93,6245 +70 Whitehall,Electricity,kWh,2011-07-08,86,82,90,79,88,85,84,90,83,87,89,97,96,103,115,116,138,146,155,167,172,174,171,163,173,158,171,156,168,159,163,159,152,160,150,130,138,119,115,108,101,101,90,97,87,93,77,86,5867 +70 Whitehall,Electricity,kWh,2011-07-09,81,92,92,88,87,87,84,84,84,85,80,78,87,89,87,85,88,93,96,96,97,101,104,107,109,106,100,94,101,101,102,90,89,97,100,92,90,94,99,93,92,94,95,87,86,85,92,89,4429 +70 Whitehall,Electricity,kWh,2011-07-10,89,84,92,90,92,89,95,91,91,83,79,79,89,90,89,87,88,86,90,86,95,95,89,91,101,100,95,95,98,96,95,94,97,96,99,95,93,95,95,98,96,96,94,94,96,86,92,92,4417 +70 Whitehall,Electricity,kWh,2011-07-11,90,79,90,90,87,82,86,87,87,84,86,98,94,108,113,119,145,146,172,175,168,182,174,179,179,175,170,174,172,175,177,175,162,159,158,150,143,134,131,118,110,109,98,103,99,94,96,92,6174 +70 Whitehall,Electricity,kWh,2011-07-12,90,98,98,98,96,100,93,93,89,88,89,100,104,105,112,124,136,149,169,176,185,183,182,180,177,175,173,172,173,179,172,172,168,165,160,147,147,133,130,122,115,112,99,98,97,96,103,99,6321 +70 Whitehall,Electricity,kWh,2011-07-13,93,86,90,88,90,94,95,100,96,97,97,107,107,114,115,125,131,146,159,169,180,179,182,179,174,176,179,179,175,176,175,168,164,159,156,144,139,132,130,122,115,100,102,97,96,95,89,90,6251 +70 Whitehall,Electricity,kWh,2011-07-14,89,80,83,81,86,79,87,78,86,79,90,89,101,96,111,115,138,146,167,168,174,185,172,168,170,168,181,172,179,170,173,175,169,167,163,156,148,138,136,123,121,113,112,106,108,99,88,89,6172 +70 Whitehall,Electricity,kWh,2011-07-15,88,87,94,97,95,100,94,95,95,97,99,101,104,106,108,122,142,147,164,175,181,177,179,180,177,175,174,173,168,170,173,170,173,164,163,147,142,131,124,113,113,105,97,95,105,102,98,92,6271 +70 Whitehall,Electricity,kWh,2011-07-16,87,86,84,90,82,100,87,88,85,88,85,88,86,91,89,90,90,92,95,94,102,106,110,109,112,107,111,109,106,102,96,98,104,99,95,94,99,106,100,102,98,99,99,98,97,102,95,97,4629 +70 Whitehall,Electricity,kWh,2011-07-17,90,91,89,89,84,86,87,86,83,85,81,83,87,85,88,86,91,92,93,98,96,97,94,96,93,97,103,95,97,98,94,95,90,90,91,90,90,93,91,88,90,91,90,90,88,88,84,86,4339 +70 Whitehall,Electricity,kWh,2011-07-18,88,85,85,85,86,89,86,87,85,86,91,97,100,102,113,125,140,152,162,174,173,175,174,175,181,173,174,168,169,170,170,168,163,164,156,152,145,138,121,112,105,101,97,94,93,94,88,87,6098 +70 Whitehall,Electricity,kWh,2011-07-19,86,85,87,86,89,87,87,87,86,87,87,99,100,102,108,124,137,148,165,177,175,178,173,182,180,174,173,175,170,168,171,167,164,163,159,153,146,138,127,114,113,107,103,100,98,96,94,89,6164 +70 Whitehall,Electricity,kWh,2011-07-20,90,88,88,90,87,89,92,87,85,90,90,99,102,109,112,128,138,151,160,171,180,176,176,175,176,173,173,174,169,167,171,165,161,162,157,149,147,136,125,113,113,102,102,99,95,94,90,91,6157 +70 Whitehall,Electricity,kWh,2011-07-21,87,91,85,91,88,91,86,89,86,88,90,99,99,107,108,127,137,156,159,179,181,185,182,178,177,178,172,182,173,171,171,168,167,167,159,153,143,134,123,122,120,110,109,108,107,105,103,100,6291 +70 Whitehall,Electricity,kWh,2011-07-22,102,97,97,96,97,97,90,79,82,93,88,93,100,106,100,119,141,139,153,163,166,167,171,171,170,166,170,167,169,168,167,161,162,155,150,141,135,116,111,109,110,93,94,98,101,92,94,90,5996 +70 Whitehall,Electricity,kWh,2011-07-23,87,87,85,85,85,89,86,85,82,85,83,82,83,88,84,84,87,89,91,93,90,90,89,90,93,93,99,95,93,93,91,96,90,88,89,88,90,90,91,93,88,88,85,92,88,92,87,87,4258 +70 Whitehall,Electricity,kWh,2011-07-24,86,86,84,87,86,87,84,82,83,87,85,82,85,87,85,85,85,82,85,86,84,86,87,90,87,90,99,94,90,96,95,89,97,98,88,92,98,95,88,94,94,92,86,89,86,88,88,85,4244 +70 Whitehall,Electricity,kWh,2011-07-25,88,83,88,87,87,87,78,88,88,86,88,97,102,102,107,124,137,151,161,170,180,178,179,177,175,175,178,177,176,170,169,171,166,165,159,153,147,134,127,122,116,114,110,109,106,106,104,104,6246 +70 Whitehall,Electricity,kWh,2011-07-26,97,90,89,93,97,101,93,90,90,92,97,103,105,110,123,135,143,148,160,170,182,184,181,176,175,173,171,179,175,173,174,172,169,162,159,150,143,134,129,121,103,105,106,108,105,105,97,98,6335 +70 Whitehall,Electricity,kWh,2011-07-27,100,98,95,96,96,98,96,99,96,99,98,109,109,116,117,136,146,157,161,172,175,180,178,0,0,0,0,0,0,0,1385,167,163,164,159,150,144,134,128,118,116,98,96,104,108,93,88,86,6328 +70 Whitehall,Electricity,kWh,2011-07-28,98,92,89,87,91,90,87,82,74,82,95,100,96,103,103,122,130,142,160,170,176,183,179,182,180,170,179,165,175,175,168,165,164,162,157,150,144,134,134,119,114,95,95,98,95,105,101,0,6057 +70 Whitehall,Electricity,kWh,2011-07-29,91,92,99,98,88,92,93,99,100,96,98,103,106,108,114,131,139,150,166,171,172,177,170,174,170,170,168,170,172,166,166,165,159,155,150,139,131,126,122,115,111,107,97,95,93,94,98,90,6156 +70 Whitehall,Electricity,kWh,2011-07-30,91,85,80,92,83,87,82,81,78,90,87,86,84,87,90,86,91,89,89,94,95,95,97,95,94,99,96,97,100,96,93,95,93,95,93,92,89,90,93,92,90,90,90,91,86,85,86,87,4326 +70 Whitehall,Electricity,kWh,2011-07-31,85,84,83,83,82,84,80,86,83,83,81,83,84,84,89,82,86,84,84,88,90,86,89,98,89,88,89,101,99,100,94,92,98,95,97,96,96,98,95,89,88,89,91,94,86,85,84,83,4257 +70 Whitehall,Electricity,kWh,2011-08-01,85,90,93,92,94,91,84,86,93,89,87,95,93,100,114,130,135,142,156,164,173,170,173,169,169,166,165,167,169,172,170,174,164,158,159,147,148,132,124,115,110,103,106,104,102,102,96,98,6118 +70 Whitehall,Electricity,kWh,2011-08-02,95,95,93,95,95,96,93,92,92,97,100,108,108,112,119,131,139,154,168,172,178,184,179,177,183,180,177,178,182,175,182,183,183,179,169,159,157,141,136,126,122,115,114,111,109,108,105,106,6552 +70 Whitehall,Electricity,kWh,2011-08-03,102,102,100,102,100,104,103,100,103,102,106,110,108,113,120,134,145,156,166,173,179,187,190,187,188,183,188,190,183,189,188,183,181,180,171,162,161,142,138,128,125,119,119,114,111,111,104,104,6754 +70 Whitehall,Electricity,kWh,2011-08-04,101,100,100,100,100,104,100,99,103,103,106,112,110,113,120,134,143,157,169,179,182,185,182,188,179,182,179,181,178,181,178,173,178,164,162,147,150,129,123,122,114,111,111,113,109,102,104,102,6562 +70 Whitehall,Electricity,kWh,2011-08-05,98,97,97,100,96,98,99,97,99,95,103,107,108,115,117,133,139,145,163,172,176,174,173,172,174,171,171,171,174,168,175,170,164,162,158,147,142,130,122,117,112,112,108,106,109,102,102,99,6339 +70 Whitehall,Electricity,kWh,2011-08-06,100,94,90,84,95,90,90,88,88,88,90,91,90,89,89,93,93,94,94,95,98,106,96,98,102,105,94,101,97,101,96,92,91,98,93,91,93,102,93,93,93,100,91,87,89,90,93,83,4491 +70 Whitehall,Electricity,kWh,2011-08-07,86,85,83,84,83,96,87,87,84,87,87,89,90,93,88,90,88,88,91,90,92,99,101,98,99,102,98,96,101,99,98,94,95,94,97,94,96,98,100,102,97,99,98,100,98,96,98,96,4491 +70 Whitehall,Electricity,kWh,2011-08-08,93,96,95,94,93,100,93,98,94,96,98,105,104,102,109,123,134,143,155,163,171,177,166,173,169,168,167,166,165,164,166,165,159,162,156,148,141,132,124,121,116,110,104,98,108,104,97,96,6181 +70 Whitehall,Electricity,kWh,2011-08-09,96,93,96,92,94,93,91,90,93,86,91,100,101,104,116,133,143,156,175,179,181,181,177,181,173,172,175,171,176,172,169,166,164,159,155,151,145,135,128,122,115,110,108,108,108,99,97,106,6326 +70 Whitehall,Electricity,kWh,2011-08-10,104,96,93,94,95,104,94,94,97,97,99,104,104,116,121,131,143,149,169,179,190,184,185,174,178,172,171,178,183,182,176,175,171,165,162,157,146,137,125,123,115,114,113,110,109,104,97,101,6480 +70 Whitehall,Electricity,kWh,2011-08-11,95,102,103,93,94,102,100,89,92,99,103,106,108,114,117,139,140,157,172,182,182,184,187,182,176,179,182,177,180,183,173,175,174,166,163,159,150,143,134,123,120,115,112,114,111,111,108,106,6576 +70 Whitehall,Electricity,kWh,2011-08-12,107,95,94,102,103,102,97,99,103,104,98,108,114,121,121,134,150,160,164,172,176,171,185,176,174,175,174,178,177,176,173,165,171,168,161,153,148,139,132,125,125,116,114,114,116,115,110,108,6563 +70 Whitehall,Electricity,kWh,2011-08-13,111,107,108,110,107,104,98,111,107,105,105,95,107,105,110,110,111,112,116,117,118,118,119,119,120,118,118,118,117,117,123,117,117,118,120,117,117,117,115,109,108,101,108,107,110,107,98,100,5347 +70 Whitehall,Electricity,kWh,2011-08-14,104,105,102,103,104,101,98,97,95,97,99,94,96,100,99,100,106,103,106,105,103,118,111,111,111,118,117,120,115,106,112,113,111,,,,,,,,,,,,,,,,3480E +70 Whitehall,Electricity,kWh,2011-08-15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,E +70 Whitehall,Electricity,kWh,2011-08-16,,,,,,,,,,,,,,,,,,,,49179E,182,186,182,181,180,183,183,178,179,180,180,175,169,169,163,154,151,139,131,127,121,119,118,114,115,111,107,104,53460E +70 Whitehall,Electricity,kWh,2011-08-17,99,108,106,107,98,101,106,98,103,106,106,109,110,124,123,143,147,159,170,179,185,188,182,189,180,189,184,178,174,169,177,176,162,166,157,152,144,136,132,122,116,113,109,109,107,106,92,97,6593 +70 Whitehall,Electricity,kWh,2011-08-18,91,98,91,101,100,101,93,91,93,99,98,108,106,112,115,141,153,165,170,180,186,185,176,181,178,176,174,175,182,175,172,170,169,162,155,144,136,133,127,121,111,103,100,99,103,106,98,95,6398 +70 Whitehall,Electricity,kWh,2011-08-19,95,94,96,92,93,93,94,91,95,93,98,106,106,109,117,135,138,156,158,173,179,182,175,179,175,177,176,172,179,175,179,171,173,161,160,149,143,128,126,114,118,110,108,106,96,107,104,97,6351 +70 Whitehall,Electricity,kWh,2011-08-20,91,87,99,93,93,99,89,95,93,88,88,87,91,95,103,89,105,108,107,107,116,110,115,117,116,118,119,119,114,110,111,108,102,104,103,101,101,103,100,104,105,104,102,100,102,99,92,92,4894 +70 Whitehall,Electricity,kWh,2011-08-21,90,98,98,100,97,99,98,99,97,97,97,100,97,101,101,100,102,105,100,94,100,102,105,107,108,99,102,105,104,106,107,103,98,93,94,105,102,107,102,107,99,96,94,96,99,93,90,86,4779 +70 Whitehall,Electricity,kWh,2011-08-22,91,96,95,89,88,92,88,88,86,91,90,101,107,108,118,138,151,164,171,179,179,176,180,175,182,175,176,181,181,179,185,174,173,167,160,145,141,128,125,119,111,109,103,106,101,99,91,96,6348 +70 Whitehall,Electricity,kWh,2011-08-23,98,97,86,90,94,93,88,91,96,92,92,103,107,119,122,140,150,164,175,179,184,180,178,175,182,173,177,173,177,174,168,173,168,165,157,149,141,134,122,116,111,108,107,105,104,103,101,99,6380 +70 Whitehall,Electricity,kWh,2011-08-24,93,88,87,88,92,96,87,88,87,89,101,103,108,113,115,136,142,161,174,178,183,179,180,179,178,169,172,170,175,171,173,182,175,159,156,146,140,128,122,120,112,107,106,104,101,101,101,99,6314 +70 Whitehall,Electricity,kWh,2011-08-25,101,96,98,94,95,99,95,96,96,96,100,110,113,119,124,139,150,166,170,183,187,185,185,184,183,178,180,176,173,175,177,176,169,171,162,159,157,143,137,129,125,119,119,110,109,106,96,95,6605 +70 Whitehall,Electricity,kWh,2011-08-26,99,101,96,94,93,95,93,95,92,95,94,105,109,112,119,135,148,159,167,172,170,181,182,177,178,175,176,176,177,170,171,173,166,158,152,144,139,130,129,114,112,111,103,100,95,95,94,93,6314 +70 Whitehall,Electricity,kWh,2011-08-27,86,87,85,83,85,94,81,83,86,82,87,81,81,86,90,89,95,94,100,95,97,98,98,96,98,104,104,103,99,91,94,91,92,95,97,97,95,96,98,99,96,97,99,95,94,100,93,87,4453 +70 Whitehall,Electricity,kWh,2011-08-28,76,83,83,85,83,85,85,80,83,81,83,80,86,84,84,86,84,86,85,88,91,89,86,91,104,103,90,88,96,102,98,88,86,91,84,88,83,87,87,85,78,87,85,85,85,87,85,77,4156 +70 Whitehall,Electricity,kWh,2011-08-29,84,87,87,86,86,89,90,85,86,85,87,89,88,90,93,88,95,102,102,103,108,111,107,96,104,100,102,100,104,106,109,105,99,99,103,99,90,90,95,93,86,88,91,87,88,88,89,86,4525 +70 Whitehall,Electricity,kWh,2011-08-30,85,86,86,84,86,89,86,87,86,85,88,101,104,104,107,129,146,163,169,170,180,184,177,171,171,168,176,176,178,175,174,170,170,164,158,155,144,136,124,115,112,106,106,101,102,98,93,94,6219 +70 Whitehall,Electricity,kWh,2011-08-31,94,93,91,92,90,94,92,91,90,91,97,102,107,109,114,126,146,159,168,175,174,170,174,180,181,179,178,178,181,172,172,172,168,165,161,154,150,136,132,124,117,102,98,99,96,93,96,90,6313 +70 Whitehall,Electricity,kWh,2011-09-01,92,87,90,89,89,92,93,88,89,90,89,103,102,107,114,121,143,152,167,171,184,187,180,179,181,177,173,174,171,170,168,166,163,160,155,150,139,132,128,121,111,106,102,101,97,102,93,95,6233 +70 Whitehall,Electricity,kWh,2011-09-02,96,93,92,91,90,90,95,88,92,88,92,104,107,107,112,122,146,167,174,185,185,181,177,180,181,172,172,171,177,171,174,172,168,168,155,150,143,137,127,126,114,113,108,105,107,105,105,103,6378 +70 Whitehall,Electricity,kWh,2011-09-03,104,97,96,99,99,96,99,96,94,97,94,98,98,97,100,100,102,109,113,108,116,113,116,112,115,119,116,119,119,111,108,107,108,110,105,104,106,109,105,110,100,98,106,98,94,96,98,91,5005 +70 Whitehall,Electricity,kWh,2011-09-04,87,90,99,89,84,96,95,94,86,89,92,97,87,92,96,101,89,96,107,105,106,104,105,109,112,111,113,111,109,109,110,112,107,106,107,108,107,111,109,108,100,103,97,94,91,92,88,93,4803 +70 Whitehall,Electricity,kWh,2011-09-05,95,94,91,92,87,91,92,92,82,97,92,104,108,107,120,141,151,164,177,185,180,186,175,176,176,177,177,173,175,173,178,175,176,171,168,160,151,144,136,124,115,103,96,96,104,98,95,97,6417 +70 Whitehall,Electricity,kWh,2011-09-06,106,98,91,89,92,91,96,97,100,93,97,109,112,115,117,126,156,169,175,190,193,191,199,197,191,190,189,189,188,189,189,187,182,176,175,163,154,144,133,124,121,113,107,97,99,97,97,91,6684 +70 Whitehall,Electricity,kWh,2011-09-07,93,88,91,91,88,91,89,90,90,91,96,104,106,108,115,123,145,157,168,172,181,179,185,191,189,184,185,182,189,177,180,181,176,171,167,163,156,144,140,129,123,119,108,106,110,108,102,96,6517 +70 Whitehall,Electricity,kWh,2011-09-08,97,95,96,95,92,95,91,91,100,97,97,108,113,114,120,136,155,169,172,176,192,188,193,188,191,185,185,180,184,178,180,180,176,174,167,166,151,147,138,133,129,124,118,114,115,111,105,104,6705 +70 Whitehall,Electricity,kWh,2011-09-09,106,105,102,101,103,108,107,104,103,108,112,118,125,127,130,143,160,171,177,184,194,191,188,194,189,192,188,191,187,191,192,186,187,180,171,168,153,147,144,129,125,122,116,115,115,110,111,111,6981 +70 Whitehall,Electricity,kWh,2011-09-10,111,104,104,102,102,107,108,101,105,104,101,108,105,102,108,108,112,126,99,109,116,121,120,123,121,125,129,120,122,114,116,117,119,116,113,104,104,108,106,109,103,104,101,98,99,109,104,102,5269 +70 Whitehall,Electricity,kWh,2011-09-11,105,100,101,101,100,102,100,100,100,102,101,103,99,107,101,101,106,107,103,99,99,95,98,99,111,109,108,105,106,104,111,106,104,107,103,99,98,94,96,96,97,94,89,87,97,97,91,90,4828 +70 Whitehall,Electricity,kWh,2011-09-12,94,88,89,85,96,99,103,103,102,103,109,117,117,122,127,138,161,166,173,179,190,197,188,190,195,186,188,184,181,182,189,176,182,177,170,165,157,151,142,137,126,127,119,116,117,107,104,105,6819 +70 Whitehall,Electricity,kWh,2011-09-13,110,105,97,97,98,100,98,97,96,94,101,107,115,118,131,136,158,174,170,180,191,190,194,191,196,194,188,186,187,187,184,180,177,170,169,166,157,150,140,129,124,115,111,111,107,104,96,96,6772 +70 Whitehall,Electricity,kWh,2011-09-14,96,97,96,96,98,93,96,89,83,85,90,98,99,103,111,139,163,167,173,173,178,178,182,178,173,181,185,182,180,179,176,175,174,166,166,158,154,148,135,122,124,114,105,114,106,101,99,96,6474 +70 Whitehall,Electricity,kWh,2011-09-15,92,91,93,92,91,93,94,89,94,93,101,104,109,103,116,129,152,158,169,174,188,183,183,190,187,184,181,186,183,181,176,175,174,174,165,161,151,149,139,134,123,108,98,92,88,92,92,86,6460 +70 Whitehall,Electricity,kWh,2011-09-16,86,82,83,81,81,87,84,82,83,82,89,97,97,100,105,113,149,154,157,163,177,172,171,178,174,175,173,176,175,173,181,171,172,167,157,151,147,135,130,123,118,106,91,79,79,86,77,80,6049 +70 Whitehall,Electricity,kWh,2011-09-17,83,80,76,75,76,77,71,74,74,76,75,78,67,65,74,74,103,105,97,95,101,103,111,112,109,107,105,111,112,113,110,103,98,97,96,95,97,98,99,99,91,84,83,87,83,73,73,73,4318 +70 Whitehall,Electricity,kWh,2011-09-18,69,82,84,74,76,74,68,72,76,75,74,72,80,79,69,79,96,93,89,92,87,86,93,86,101,101,96,101,100,99,96,97,94,100,92,96,96,99,92,96,90,87,84,83,79,72,75,81,4132 +70 Whitehall,Electricity,kWh,2011-09-19,79,81,80,77,76,72,75,73,77,73,82,93,95,99,103,119,146,154,169,169,179,178,185,193,188,191,182,181,180,175,172,171,170,165,161,156,146,132,127,123,115,96,89,89,87,88,83,85,6079 +70 Whitehall,Electricity,kWh,2011-09-20,80,78,72,67,66,62,79,77,74,66,72,81,86,89,94,103,133,147,152,164,167,164,164,158,160,165,190,183,180,173,180,181,173,173,162,159,151,144,133,117,121,110,98,90,90,88,85,82,5883 +70 Whitehall,Electricity,kWh,2011-09-21,85,81,82,80,82,83,82,81,81,84,88,92,99,100,109,122,159,166,171,172,176,179,183,191,187,182,183,180,179,180,174,173,171,168,159,157,145,140,136,125,116,104,95,91,92,89,88,89,6231 +70 Whitehall,Electricity,kWh,2011-09-22,84,86,84,83,83,85,86,82,85,82,89,97,103,109,119,132,153,163,171,187,186,192,194,185,187,188,189,188,186,181,185,184,179,174,171,162,156,151,142,131,120,118,99,97,92,94,90,89,6473 +70 Whitehall,Electricity,kWh,2011-09-23,83,86,82,85,84,85,86,85,86,87,89,105,104,109,116,120,148,160,168,175,181,188,183,185,181,182,185,177,177,174,172,173,165,164,159,147,146,135,130,121,110,100,93,91,93,90,90,88,6223 +70 Whitehall,Electricity,kWh,2011-09-24,85,83,84,84,85,88,86,83,80,77,75,83,80,84,85,90,96,97,103,106,99,100,101,105,105,112,107,108,106,105,103,106,101,104,99,102,98,101,104,99,90,85,86,85,84,80,81,80,4470 +70 Whitehall,Electricity,kWh,2011-09-25,84,82,82,79,82,81,77,80,81,80,84,81,80,80,81,85,100,95,99,97,100,94,88,90,90,93,91,98,100,92,87,97,101,99,93,89,87,97,96,95,98,91,93,92,95,94,90,90,4310 +70 Whitehall,Electricity,kWh,2011-09-26,91,91,89,87,92,86,91,88,91,91,96,106,110,111,121,133,164,172,156,154,167,166,165,167,186,189,185,188,189,184,186,185,181,172,162,156,149,139,131,124,116,107,100,90,86,95,91,79,6355 +70 Whitehall,Electricity,kWh,2011-09-27,85,84,85,83,84,86,84,75,82,81,78,98,103,97,111,114,145,166,167,181,180,184,190,194,190,185,184,185,181,178,180,178,176,175,173,164,154,145,137,129,120,111,102,96,90,88,87,86,6331 +70 Whitehall,Electricity,kWh,2011-09-28,81,90,84,82,84,82,82,82,83,82,86,101,102,107,110,117,152,164,180,184,190,190,195,199,194,187,191,186,186,181,191,188,186,182,169,167,161,149,139,131,125,117,104,102,91,91,87,89,6503 +70 Whitehall,Electricity,kWh,2011-09-29,88,87,83,85,82,86,83,81,83,83,87,97,103,106,112,121,160,167,177,180,190,201,206,207,204,199,209,189,201,198,196,201,196,204,186,176,169,160,157,145,137,128,109,100,98,91,88,84,6780 +70 Whitehall,Electricity,kWh,2011-09-30,84,94,89,87,88,84,94,91,82,91,101,99,99,120,122,114,182,169,178,186,198,200,198,206,213,206,205,204,203,205,208,207,202,200,187,182,170,163,153,144,137,123,96,97,92,97,96,99,6945 +70 Whitehall,Electricity,kWh,2011-10-01,97,99,93,93,94,94,93,94,92,92,96,90,89,89,87,86,124,114,117,112,115,116,115,119,126,129,126,125,127,124,124,120,121,119,122,115,115,114,116,115,112,86,93,95,93,81,85,80,5073 +70 Whitehall,Electricity,kWh,2011-10-02,81,80,80,80,77,82,82,87,77,85,82,79,78,78,82,84,115,107,112,111,104,97,111,103,107,114,110,103,107,116,112,110,108,108,110,110,107,108,112,111,95,80,79,90,84,87,91,86,4599 +70 Whitehall,Electricity,kWh,2011-10-03,88,89,89,86,88,86,75,92,92,75,91,111,101,94,126,131,173,182,184,192,197,200,203,205,198,196,204,200,203,204,208,206,201,189,185,170,166,158,150,140,130,123,104,92,98,105,92,101,6873 +70 Whitehall,Electricity,kWh,2011-10-04,99,101,102,96,96,97,94,94,94,97,99,111,113,116,126,145,182,180,195,212,205,209,213,208,203,201,202,202,199,201,197,200,191,190,185,176,170,160,155,147,139,126,103,97,100,96,95,94,7113 +70 Whitehall,Electricity,kWh,2011-10-05,91,76,98,95,99,98,93,93,94,95,100,106,111,115,120,116,198,180,188,196,198,202,204,202,198,189,198,196,196,196,181,180,180,182,186,168,161,151,147,137,133,126,107,105,102,97,97,99,6880 +70 Whitehall,Electricity,kWh,2011-10-06,97,92,87,92,94,96,93,93,89,96,82,109,111,120,132,139,167,169,181,186,192,195,191,190,188,184,188,189,183,186,192,181,175,170,164,160,150,145,139,132,126,118,97,97,89,89,93,96,6624 +70 Whitehall,Electricity,kWh,2011-10-07,94,83,88,78,79,81,80,75,79,83,90,97,99,102,122,129,165,171,179,190,194,199,195,202,201,193,195,193,191,190,186,184,180,171,170,159,151,142,135,131,125,113,101,100,85,92,88,77,6507 +70 Whitehall,Electricity,kWh,2011-10-08,78,71,76,91,80,85,83,80,80,70,93,89,90,82,75,89,107,109,108,99,90,116,104,105,109,109,113,108,108,111,105,99,97,112,104,104,103,105,102,103,97,91,84,78,76,89,88,80,4525 +70 Whitehall,Electricity,kWh,2011-10-09,79,86,67,86,84,84,77,71,86,78,77,79,81,87,85,89,113,105,102,106,104,109,107,111,113,107,112,110,114,112,112,112,114,111,107,110,106,110,105,113,105,90,85,87,76,91,86,85,4626 +70 Whitehall,Electricity,kWh,2011-10-10,89,85,85,82,76,76,81,76,82,76,82,91,95,101,121,141,166,168,174,185,191,188,189,188,197,197,187,194,186,187,180,183,179,177,176,170,162,157,142,139,128,116,107,94,94,90,88,97,6515 +70 Whitehall,Electricity,kWh,2011-10-11,86,90,85,85,87,86,79,86,90,97,95,101,92,120,131,144,171,175,187,200,201,204,204,200,203,198,200,198,194,193,191,193,190,186,178,175,168,157,141,135,131,116,106,101,98,98,97,95,6838 +70 Whitehall,Electricity,kWh,2011-10-12,95,93,80,92,93,93,93,80,93,99,98,102,104,112,130,140,166,178,183,189,197,189,192,196,194,197,196,199,198,191,190,194,185,180,180,170,164,150,143,140,125,115,102,95,95,86,101,91,6768 +70 Whitehall,Electricity,kWh,2011-10-13,94,87,79,89,85,94,78,86,89,83,88,101,103,111,129,135,156,174,178,191,193,188,193,194,191,187,189,190,191,188,188,184,179,173,169,163,155,145,140,133,124,103,98,89,99,94,83,89,6542 +70 Whitehall,Electricity,kWh,2011-10-14,90,70,72,86,88,84,75,69,90,85,88,90,96,116,117,123,144,165,167,175,171,195,185,187,187,185,180,180,181,184,184,175,175,165,161,161,151,139,136,122,111,90,80,99,90,83,76,85,6208 +70 Whitehall,Electricity,kWh,2011-10-15,87,75,67,83,80,79,70,83,74,69,80,83,73,75,91,83,97,101,88,89,104,91,90,100,110,105,100,96,105,100,104,104,104,104,102,98,101,104,101,102,98,74,76,84,86,70,69,85,4294 +70 Whitehall,Electricity,kWh,2011-10-16,79,78,74,78,72,78,78,74,78,77,81,79,77,79,81,84,100,92,90,86,91,92,83,89,95,101,94,80,92,97,89,87,93,94,97,95,103,95,94,100,95,80,75,80,75,74,76,70,4101 +70 Whitehall,Electricity,kWh,2011-10-17,69,68,64,74,81,81,69,66,77,88,87,83,86,101,122,136,138,173,178,182,171,182,194,196,191,192,186,188,189,185,187,185,182,179,171,165,156,143,137,133,126,109,93,79,89,95,94,81,6301 +70 Whitehall,Electricity,kWh,2011-10-18,78,87,93,87,76,81,93,87,81,74,89,112,106,102,113,140,165,175,171,187,191,199,187,232,191,188,184,183,196,194,195,196,185,181,170,169,159,154,147,142,119,101,88,97,98,92,79,83,6597 +70 Whitehall,Electricity,kWh,2011-10-19,96,91,87,82,84,88,84,83,83,87,92,101,104,107,123,140,165,170,180,189,192,200,197,198,200,196,199,198,198,195,197,197,197,188,182,176,166,156,144,135,121,109,105,97,95,91,92,90,6747 +70 Whitehall,Electricity,kWh,2011-10-20,85,79,78,95,94,88,88,79,79,98,100,105,98,107,134,140,158,188,184,186,189,199,202,201,193,182,205,199,197,197,190,194,191,182,178,170,165,154,149,142,134,120,103,98,86,98,102,99,6782 +70 Whitehall,Electricity,kWh,2011-10-21,93,80,99,95,93,87,82,96,95,90,94,109,114,114,126,137,173,179,184,186,203,192,192,188,198,201,186,196,196,194,186,189,185,176,175,170,155,147,139,133,126,115,103,94,89,87,99,98,6738 +70 Whitehall,Electricity,kWh,2011-10-22,90,88,88,80,81,84,80,82,77,83,80,82,81,83,83,88,107,113,103,107,110,113,109,108,116,113,113,115,117,114,108,111,109,110,107,109,106,108,107,106,103,96,91,80,87,84,82,80,4672 +70 Whitehall,Electricity,kWh,2011-10-23,76,70,71,89,88,82,78,71,90,88,82,72,73,91,91,87,88,108,101,107,102,103,104,101,109,101,106,105,102,105,102,103,105,101,104,100,99,103,104,101,100,93,94,85,78,78,92,87,4470 +70 Whitehall,Electricity,kWh,2011-10-24,85,78,84,92,93,96,82,86,93,95,94,92,105,115,133,140,161,181,192,191,190,195,196,201,194,191,195,198,193,190,195,191,185,177,178,168,164,149,139,133,124,111,104,102,100,88,88,92,6719 +70 Whitehall,Electricity,kWh,2011-10-25,97,96,85,90,80,82,82,80,78,79,87,96,97,108,129,143,169,173,184,192,197,198,210,204,201,199,193,186,190,196,190,189,181,178,177,168,160,152,147,138,128,120,107,108,99,96,90,85,6714 +70 Whitehall,Electricity,kWh,2011-10-26,81,78,86,95,94,95,73,87,93,93,95,90,107,117,136,147,166,172,186,188,195,198,196,201,193,188,187,185,184,186,191,184,178,173,173,163,156,147,137,132,125,116,109,103,80,96,100,97,6652 +70 Whitehall,Electricity,kWh,2011-10-27,95,86,85,93,95,92,84,90,95,93,98,91,100,117,130,135,164,176,179,191,199,200,199,196,192,195,195,192,194,193,190,191,187,181,177,165,162,147,137,132,129,114,100,100,100,96,93,78,6723 +70 Whitehall,Electricity,kWh,2011-10-28,94,97,96,86,86,89,80,79,79,79,83,91,96,108,133,142,156,162,175,184,195,198,190,192,187,192,186,189,190,183,180,184,176,172,170,161,152,144,131,131,122,112,103,101,107,98,97,97,6535 +70 Whitehall,Electricity,kWh,2011-10-29,87,76,79,93,90,86,73,82,90,84,79,71,85,90,91,84,114,117,111,114,111,114,120,117,121,120,119,114,116,115,112,111,107,111,106,107,105,104,110,106,102,91,90,84,71,86,90,88,4744 +70 Whitehall,Electricity,kWh,2011-10-29,87,76,79,93,90,86,73,82,90,84,79,71,85,90,91,84,114,117,111,114,111,114,120,117,121,120,119,114,116,115,112,111,107,111,106,107,105,104,110,106,102,91,90,84,71,86,90,88,4744 +70 Whitehall,Electricity,kWh,2011-10-30,76,69,90,86,84,72,75,85,84,76,75,86,86,82,76,70,85,94,110,106,99,107,111,109,107,104,101,104,108,104,110,113,104,102,104,106,104,102,112,103,104,107,103,90,87,89,74,82,4517 +70 Whitehall,Electricity,kWh,2011-10-31,91,85,76,85,86,74,81,79,80,83,80,77,83,95,99,104,143,150,178,184,189,200,198,197,198,199,194,192,190,191,192,193,193,196,185,182,178,173,166,148,145,134,121,115,106,102,96,93,6679 +70 Whitehall,Electricity,kWh,2011-11-01,95,86,81,79,89,94,93,91,81,85,94,94,93,105,103,105,156,147,164,175,185,201,201,194,195,194,194,190,193,194,196,189,193,193,187,185,179,172,162,150,141,134,126,118,106,104,92,81,6759 +70 Whitehall,Electricity,kWh,2011-11-02,96,95,94,76,83,91,90,90,73,89,92,89,85,98,113,116,139,152,169,170,187,194,194,193,196,200,196,193,196,197,195,189,193,191,182,180,176,170,164,156,142,134,128,116,104,96,81,101,6744 +70 Whitehall,Electricity,kWh,2011-11-03,98,102,93,85,90,89,84,86,84,82,85,84,87,95,104,106,145,139,170,181,184,200,209,205,208,206,204,201,199,196,200,200,197,188,189,181,180,169,159,154,143,133,119,112,97,96,96,95,6809 +70 Whitehall,Electricity,kWh,2011-11-04,88,88,80,74,84,90,90,85,71,94,93,91,82,91,115,115,135,146,162,174,177,192,193,192,195,194,190,195,200,200,197,189,185,185,182,177,173,169,162,149,138,131,126,111,106,99,99,102,6656 +70 Whitehall,Electricity,kWh,2011-11-05,98,84,92,93,94,92,92,96,95,93,75,90,91,89,93,93,94,100,122,116,113,116,116,115,115,113,113,114,111,114,116,112,110,111,110,109,110,108,110,109,107,111,105,96,94,96,94,99,4939 +70 Whitehall,Electricity,kWh,2011-11-06,89,82,97,93,94,94,81,93,94,89,88,74,92,95,86,82,74,108,111,109,108,103,98,88,108,104,112,107,105,108,107,94,103,102,105,98,98,86,104,101,104,101,99,93,83,78,95,95,4612 +70 Whitehall,Electricity,kWh,2011-11-07,86,84,78,94,91,85,84,92,83,78,83,86,86,101,103,107,130,153,168,177,187,199,200,203,206,201,199,198,206,198,201,198,195,187,187,185,180,169,165,153,140,137,131,116,112,108,104,101,6815 +70 Whitehall,Electricity,kWh,2011-11-08,100,87,81,76,91,93,97,92,82,74,96,94,96,96,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354 +70 Whitehall,Electricity,kWh,2011-11-09,83,100,97,90,81,83,96,95,99,75,87,92,99,103,100,113,135,144,174,180,184,196,202,207,204,208,198,201,204,204,202,196,191,194,189,186,180,172,166,160,150,141,131,120,108,108,103,93,6924 +70 Whitehall,Electricity,kWh,2011-11-10,97,94,96,94,95,93,94,95,95,86,85,85,88,104,106,118,138,145,169,180,188,201,208,206,201,201,203,200,196,196,192,187,193,190,192,182,178,172,166,152,147,142,129,120,105,100,102,100,6906 +70 Whitehall,Electricity,kWh,2011-11-11,97,92,87,74,94,95,95,80,76,97,95,88,83,96,115,122,135,146,173,175,184,189,195,200,192,197,197,194,191,191,202,198,196,194,191,185,176,167,159,148,137,131,124,112,106,102,90,98,6761 +70 Whitehall,Electricity,kWh,2011-11-12,84,86,93,90,94,90,73,91,90,91,87,73,89,91,83,83,83,88,120,106,104,107,107,107,109,108,112,117,107,108,114,107,114,105,106,104,104,104,106,110,107,105,103,90,91,96,93,80,4710 +70 Whitehall,Electricity,kWh,2011-11-13,80,87,88,88,88,80,78,83,82,75,78,79,77,79,77,84,83,89,111,103,102,107,113,111,111,110,112,113,110,112,111,113,114,113,112,107,115,111,106,115,103,111,103,89,91,88,88,83,4663 +70 Whitehall,Electricity,kWh,2011-11-14,82,83,80,77,83,93,82,89,76,81,94,94,95,90,101,125,123,131,171,180,178,178,199,201,200,201,203,200,200,194,199,194,192,189,191,180,176,170,165,157,150,140,128,111,99,93,95,99,6712 +70 Whitehall,Electricity,kWh,2011-11-15,100,90,85,80,95,91,93,95,76,91,88,96,96,101,99,119,130,153,167,176,185,191,199,198,204,201,197,198,204,199,192,190,191,192,186,185,176,175,162,155,148,139,133,111,92,107,99,96,6826 +70 Whitehall,Electricity,kWh,2011-11-16,88,83,96,84,86,84,82,89,81,84,83,88,88,99,101,104,121,132,168,183,185,193,206,197,202,209,201,200,195,195,198,196,192,192,188,183,178,174,164,156,148,132,132,109,98,92,94,91,6724 +70 Whitehall,Electricity,kWh,2011-11-17,91,88,83,79,92,93,92,89,79,82,100,92,94,96,105,125,139,141,168,180,189,196,192,197,200,197,191,198,199,194,190,191,189,179,183,180,173,168,158,154,143,135,124,114,97,93,81,106,6719 +70 Whitehall,Electricity,kWh,2011-11-18,100,89,87,76,94,94,89,88,81,97,96,96,88,103,111,117,129,132,172,169,177,184,185,197,196,202,200,197,194,192,189,191,190,179,177,171,169,162,152,148,140,131,125,114,106,82,93,95,6646 +70 Whitehall,Electricity,kWh,2011-11-19,94,90,80,87,90,83,80,84,75,77,80,78,79,83,81,79,83,85,116,104,103,107,105,110,100,109,114,113,114,112,115,101,104,102,106,101,102,98,97,108,105,109,98,87,85,84,84,79,4560 +70 Whitehall,Electricity,kWh,2011-11-20,74,77,76,69,73,89,87,84,68,75,89,82,77,71,82,91,85,82,102,106,97,89,92,106,106,97,89,100,106,110,102,96,99,108,104,96,90,109,103,100,95,105,105,88,80,78,89,94,4372 +70 Whitehall,Electricity,kWh,2011-11-21,88,77,72,94,88,84,75,84,91,87,80,85,98,102,104,96,130,132,168,173,166,190,197,200,196,195,191,197,187,191,193,191,194,186,182,177,175,167,156,155,127,131,127,109,94,87,94,100,6563 +70 Whitehall,Electricity,kWh,2011-11-22,91,88,90,91,93,83,82,87,82,84,83,89,88,98,103,107,122,140,157,168,179,193,197,197,202,201,196,193,195,200,192,190,194,189,182,182,184,168,165,154,149,141,133,113,99,94,103,96,6707 +70 Whitehall,Electricity,kWh,2011-11-23,86,86,81,80,89,93,96,89,79,92,96,91,89,97,111,118,123,123,166,178,183,187,196,202,205,200,196,196,198,199,196,191,193,187,183,182,176,169,162,153,145,134,124,111,97,84,78,101,6691 +70 Whitehall,Electricity,kWh,2011-11-24,94,85,74,85,92,81,71,84,88,82,73,81,98,100,104,102,141,141,168,181,184,198,203,206,205,204,197,202,194,193,192,192,191,193,182,175,172,169,161,157,149,144,135,119,102,99,86,90,6719 +70 Whitehall,Electricity,kWh,2011-11-25,94,98,87,93,83,84,84,87,87,81,85,86,90,102,106,118,138,151,174,187,192,195,197,195,200,204,194,188,197,196,191,192,197,191,180,177,175,164,155,147,143,137,123,111,100,92,95,93,6736 +70 Whitehall,Electricity,kWh,2011-11-26,91,89,86,73,76,92,89,84,76,81,90,84,81,69,91,98,90,102,122,115,114,106,121,124,117,122,115,110,120,118,118,118,119,118,116,111,111,113,107,114,109,110,107,94,88,77,89,85,4850 +70 Whitehall,Electricity,kWh,2011-11-27,85,87,80,74,80,93,74,78,91,81,71,83,94,75,80,108,85,91,130,111,98,125,112,93,115,106,108,115,102,111,115,98,110,109,103,108,98,106,106,92,95,105,99,84,77,94,92,76,4603 +70 Whitehall,Electricity,kWh,2011-11-28,78,91,80,81,76,76,80,84,77,75,80,79,89,91,102,107,134,144,156,167,187,207,191,195,207,207,204,209,198,205,197,202,193,185,196,194,177,177,163,154,152,129,133,107,95,91,91,89,6682 +70 Whitehall,Electricity,kWh,2011-11-29,89,80,81,74,78,93,91,90,78,80,89,88,94,102,108,115,129,134,187,184,188,188,216,203,202,206,201,200,198,204,200,197,195,196,188,191,183,171,168,156,148,138,130,117,103,91,88,89,6819 +70 Whitehall,Electricity,kWh,2011-11-30,90,84,87,74,77,92,76,76,94,81,76,85,98,92,106,122,121,127,185,180,172,210,202,188,203,199,191,187,206,199,190,200,191,187,168,188,173,161,150,157,134,135,132,101,96,103,86,88,6620 +70 Whitehall,Electricity,kWh,2011-12-01,92,86,80,90,81,81,80,85,79,81,84,78,88,96,107,106,128,146,166,172,188,191,202,204,204,203,201,197,200,199,200,190,202,194,184,193,179,175,168,147,147,129,116,108,91,92,94,89,6693 +70 Whitehall,Electricity,kWh,2011-12-02,89,86,82,83,83,87,85,88,86,77,85,84,93,97,103,109,117,136,163,171,186,188,191,197,194,198,191,202,186,201,190,179,175,186,185,176,168,161,163,145,128,122,109,104,101,92,86,83,6491 +70 Whitehall,Electricity,kWh,2011-12-03,85,84,86,82,77,93,86,80,76,94,79,72,90,90,78,79,105,99,113,119,100,111,112,106,106,98,110,116,97,99,105,101,96,91,99,95,91,88,101,94,90,92,105,83,79,83,95,80,4490 +70 Whitehall,Electricity,kWh,2011-12-04,73,78,87,83,79,79,76,80,78,78,75,76,78,78,79,77,84,84,102,97,100,94,95,94,99,93,99,102,97,91,96,100,101,95,96,97,99,116,95,97,110,96,86,93,87,82,85,82,4298 +70 Whitehall,Electricity,kWh,2011-12-05,81,82,79,79,74,79,82,80,70,83,80,77,87,98,100,108,119,131,147,165,174,191,194,189,207,195,201,195,191,194,192,180,186,185,195,186,181,171,168,167,151,135,132,109,97,98,98,98,6561 +70 Whitehall,Electricity,kWh,2011-12-06,91,78,90,81,86,84,82,90,81,81,86,83,88,99,106,111,120,142,158,169,181,191,191,206,201,197,203,209,197,205,195,187,193,190,191,184,196,178,164,155,148,143,135,119,114,108,101,97,6785 +70 Whitehall,Electricity,kWh,2011-12-07,92,87,87,92,100,82,81,103,94,85,89,111,90,98,129,112,118,150,189,178,184,216,205,208,216,210,209,209,210,209,207,205,204,196,199,192,192,183,178,167,158,151,133,118,132,100,89,114,7161 +70 Whitehall,Electricity,kWh,2011-12-08,96,90,104,94,93,88,88,86,91,89,86,90,94,107,109,113,130,147,179,174,197,215,209,229,209,200,209,209,203,195,206,191,185,187,190,180,179,167,165,156,137,136,121,109,98,99,89,89,6907 +70 Whitehall,Electricity,kWh,2011-12-09,81,83,80,83,84,77,80,74,83,81,76,81,86,98,101,109,117,134,147,150,170,189,185,0,0,0,37,153,178,172,168,169,169,177,165,154,141,147,131,122,109,106,101,94,86,85,84,85,5282 +70 Whitehall,Electricity,kWh,2011-12-10,78,75,72,90,80,76,75,93,84,75,75,90,80,73,84,98,91,100,112,100,100,111,112,110,120,119,109,107,117,114,104,98,108,102,98,98,108,102,93,103,105,94,80,75,100,79,73,88,4528 +70 Whitehall,Electricity,kWh,2011-12-11,92,83,81,83,78,83,84,78,77,79,82,79,86,84,84,84,98,106,97,89,85,92,100,105,98,99,99,98,104,107,108,93,92,103,106,101,92,93,97,101,96,75,83,76,83,77,79,79,4328 +70 Whitehall,Electricity,kWh,2011-12-12,74,71,69,76,88,83,72,69,77,89,87,87,88,108,127,124,149,164,181,194,196,187,207,207,204,192,184,199,201,192,184,173,192,186,181,176,161,155,144,141,131,117,109,91,92,94,92,86,6551 +70 Whitehall,Electricity,kWh,2011-12-13,81,77,74,85,84,86,77,93,85,81,85,104,109,106,128,134,157,155,179,191,195,201,202,197,186,213,197,190,200,199,187,189,190,191,181,179,170,160,153,146,134,111,110,105,102,90,82,103,6734 +70 Whitehall,Electricity,kWh,2011-12-14,92,84,84,81,77,83,83,79,85,80,85,93,96,108,120,130,160,174,183,195,195,203,198,203,198,195,192,186,191,194,195,193,190,190,188,181,174,156,161,128,128,119,108,98,103,98,102,89,6728 +70 Whitehall,Electricity,kWh,2011-12-15,87,86,84,83,84,90,84,80,79,86,88,93,99,104,116,123,153,164,173,183,211,208,195,197,199,200,192,204,190,194,195,189,187,188,178,176,172,162,155,131,138,122,104,104,101,95,93,88,6707 +70 Whitehall,Electricity,kWh,2011-12-16,90,77,86,95,82,81,95,89,77,85,104,102,95,115,125,121,157,171,171,186,194,193,182,200,192,195,192,190,189,179,180,177,169,177,176,157,142,156,132,114,130,108,93,106,95,86,83,103,6494 +70 Whitehall,Electricity,kWh,2011-12-17,86,84,82,81,82,84,81,82,81,82,80,83,80,89,89,89,105,124,109,109,124,112,111,128,109,113,118,108,118,109,103,112,108,106,106,112,95,107,106,109,104,87,88,85,85,82,74,80,4681 +70 Whitehall,Electricity,kWh,2011-12-18,76,70,70,78,79,82,77,66,73,68,97,88,72,91,86,85,98,91,94,90,115,108,107,95,97,108,102,105,108,107,99,95,102,99,101,98,99,104,97,97,94,81,83,94,84,76,78,78,4342 +70 Whitehall,Electricity,kWh,2011-12-19,79,70,73,85,76,74,77,92,81,74,78,105,92,95,130,130,141,166,187,186,211,218,195,205,213,212,200,191,213,194,191,182,197,184,170,178,172,162,138,143,140,108,103,105,83,85,99,97,6680 +70 Whitehall,Electricity,kWh,2011-12-20,82,91,87,88,84,80,84,86,87,82,83,98,98,109,117,135,143,154,181,192,200,208,209,214,209,207,205,200,200,191,182,185,184,184,179,171,168,160,146,143,126,118,100,98,95,93,96,91,6723 +70 Whitehall,Electricity,kWh,2011-12-21,88,87,81,77,87,83,87,77,74,79,87,92,94,104,107,112,142,154,166,189,200,0,197,197,204,203,200,201,194,191,187,184,181,182,178,169,165,154,145,136,129,114,103,98,97,89,80,88,6333 +70 Whitehall,Electricity,kWh,2011-12-22,92,87,88,79,76,88,87,86,79,78,95,105,103,98,123,124,148,150,161,194,187,176,184,186,183,182,177,179,174,172,173,167,164,167,161,147,138,132,124,122,106,107,100,93,98,92,90,87,6209 +70 Whitehall,Electricity,kWh,2011-12-23,82,87,85,89,86,86,85,83,80,82,89,95,100,104,117,123,145,150,153,157,161,167,166,166,168,155,160,150,146,142,134,136,131,114,118,109,107,105,100,96,98,97,86,87,86,86,81,81,5511 +70 Whitehall,Electricity,kWh,2011-12-24,84,78,85,68,74,79,73,75,80,74,76,75,80,81,80,84,92,92,93,92,91,96,93,98,94,96,95,105,99,98,95,96,104,96,97,91,93,100,99,93,90,86,82,76,76,82,77,77,4190 +70 Whitehall,Electricity,kWh,2011-12-25,68,68,71,79,73,72,81,78,69,68,85,75,70,77,0,0,0,0,0,0,0,0,830,86,100,102,82,102,90,96,91,89,97,93,93,99,101,98,88,110,96,69,83,84,73,71,75,77,4109 +70 Whitehall,Electricity,kWh,2011-12-26,73,74,72,76,72,72,77,78,73,70,71,85,80,79,100,83,93,100,100,88,97,104,104,105,100,93,98,104,97,96,105,99,98,96,101,94,93,99,92,94,95,87,85,80,78,77,84,81,4252 +70 Whitehall,Electricity,kWh,2011-12-27,77,75,74,77,75,72,73,76,75,73,77,77,76,86,85,95,92,86,106,101,90,103,87,110,96,104,105,97,112,96,93,91,102,106,102,93,96,88,95,93,98,90,78,78,76,75,74,71,4227 +70 Whitehall,Electricity,kWh,2011-12-28,81,68,65,74,73,76,78,71,67,71,75,86,87,87,101,108,119,117,116,107,118,117,114,116,122,110,114,124,124,120,101,105,102,99,100,93,92,88,92,93,89,88,86,82,81,81,73,81,4532 +70 Whitehall,Electricity,kWh,2011-12-29,66,66,69,69,77,76,76,77,70,78,79,87,87,94,109,111,124,135,136,142,144,143,141,142,144,154,150,145,142,137,135,134,132,124,119,116,108,101,104,100,100,91,91,85,88,75,72,81,5126 +70 Whitehall,Electricity,kWh,2011-12-30,74,76,76,78,73,80,74,71,69,82,82,87,93,95,104,108,122,122,126,133,141,149,148,141,147,147,141,145,138,141,132,127,123,116,120,112,106,97,104,100,98,93,86,82,84,86,80,83,5092 +70 Whitehall,Electricity,kWh,2011-12-31,82,71,68,84,77,83,74,70,75,80,81,81,75,75,84,85,92,93,92,85,83,94,93,90,88,92,94,97,97,96,96,94,96,98,95,94,97,93,89,89,90,80,84,78,71,71,71,75,4092 +70 Whitehall,Electricity,kWh,2012-01-01,,149E,74,70,72,73,73,76,74,74,72,75,72,77,73,75,93,88,87,86,81,85,84,85,84,86,87,87,85,85,84,83,84,86,88,89,88,90,86,82,87,81,77,76,78,80,73,69,3863E +70 Whitehall,Electricity,kWh,2012-01-02,84,74,74,77,79,76,68,68,80,76,70,69,77,79,90,88,95,93,93,93,94,99,102,98,101,102,103,102,106,105,105,102,104,103,104,99,97,95,95,97,96,91,85,78,88,78,77,72,4281 +70 Whitehall,Electricity,kWh,2012-01-03,71,70,65,68,77,80,76,66,66,79,80,86,94,96,111,118,140,152,164,171,179,185,194,192,190,187,189,186,188,179,180,183,179,171,173,162,154,140,132,120,113,108,96,83,90,96,83,81,6143 +70 Whitehall,Electricity,kWh,2012-01-04,81,80,79,82,76,83,82,79,78,81,84,95,98,104,121,122,142,159,160,188,193,190,201,198,198,192,195,192,197,191,193,192,180,180,176,166,160,149,145,133,126,116,102,95,87,90,91,87,6489 +70 Whitehall,Electricity,kWh,2012-01-05,86,85,78,81,81,86,84,88,83,86,85,108,112,111,120,119,141,160,174,195,192,189,192,198,194,192,189,192,194,190,183,186,186,176,166,164,159,144,134,135,124,107,97,94,95,90,88,82,6495 +70 Whitehall,Electricity,kWh,2012-01-06,86,78,73,85,82,79,86,72,72,88,87,105,103,111,120,124,150,155,169,177,185,199,192,189,186,186,194,191,183,180,179,181,179,171,170,167,160,145,139,132,128,114,105,100,94,82,90,87,6410 +70 Whitehall,Electricity,kWh,2012-01-07,80,79,83,83,81,83,80,76,80,84,82,82,83,86,83,94,108,109,105,105,103,107,104,109,109,107,109,109,112,106,113,109,105,106,105,102,103,103,102,101,101,94,96,90,91,90,84,84,4600 +70 Whitehall,Electricity,kWh,2012-01-08,85,84,83,90,84,85,85,78,81,83,81,83,82,85,87,84,104,104,106,104,102,102,101,111,107,106,102,104,113,112,110,100,96,97,100,103,96,98,96,97,97,94,88,88,94,88,87,83,4530 +70 Whitehall,Electricity,kWh,2012-01-09,83,87,76,77,86,87,84,87,74,82,92,108,112,121,119,128,151,159,177,199,197,201,202,197,193,197,196,200,197,192,191,188,184,181,180,176,165,154,147,139,130,117,107,99,97,85,93,93,6687 +70 Whitehall,Electricity,kWh,2012-01-10,89,90,82,83,86,92,85,89,78,87,87,107,111,116,110,122,152,173,175,184,191,197,197,191,197,196,193,195,183,191,185,180,177,176,174,170,159,147,145,141,122,111,100,96,102,98,90,82,6584 +70 Whitehall,Electricity,kWh,2012-01-11,78,87,88,86,86,79,83,90,84,92,89,106,113,111,114,127,161,176,184,191,202,202,200,195,198,195,190,197,196,192,194,190,182,186,178,177,168,157,145,138,133,121,105,103,102,100,97,94,6762 +70 Whitehall,Electricity,kWh,2012-01-12,92,92,91,86,76,84,85,88,81,92,89,107,112,114,122,126,155,178,182,192,202,207,196,202,206,199,195,200,195,189,197,189,189,186,178,179,169,156,146,146,126,122,100,96,96,94,99,94,6797 +70 Whitehall,Electricity,kWh,2012-01-13,89,90,83,82,88,88,84,89,84,86,88,112,119,119,115,117,153,165,173,188,191,198,201,201,196,197,199,194,197,186,194,187,184,175,174,170,157,149,137,130,122,111,96,95,97,94,80,87,6611 +70 Whitehall,Electricity,kWh,2012-01-14,83,80,83,81,76,78,79,82,76,79,77,79,78,83,84,82,118,111,111,115,110,110,108,113,111,109,116,115,112,105,106,100,104,105,102,102,98,99,99,98,99,86,88,88,88,84,85,89,4564 +70 Whitehall,Electricity,kWh,2012-01-15,84,73,74,72,83,95,83,75,75,91,84,79,75,83,88,85,103,101,105,108,108,99,96,112,109,108,106,100,115,109,111,100,95,110,107,106,103,95,91,105,101,87,89,81,74,91,82,80,4486 +70 Whitehall,Electricity,kWh,2012-01-16,78,73,76,81,80,74,72,80,82,80,75,106,117,113,120,124,146,175,194,206,202,206,212,211,205,205,199,203,197,202,185,189,184,184,181,177,168,158,154,138,126,114,102,99,97,95,90,78,6713 +70 Whitehall,Electricity,kWh,2012-01-17,82,88,86,81,87,84,76,77,81,84,86,106,114,116,120,127,153,173,187,197,203,201,204,209,203,197,197,195,194,188,183,186,185,180,176,174,167,155,151,145,138,124,103,101,97,93,91,91,6736 +70 Whitehall,Electricity,kWh,2012-01-18,86,87,86,84,83,86,82,83,83,87,88,107,111,114,116,133,150,167,183,194,200,197,198,203,210,199,196,200,201,191,193,194,195,188,185,175,168,155,149,143,131,113,101,98,95,100,95,93,6776 +70 Whitehall,Electricity,kWh,2012-01-19,92,89,88,87,86,81,87,93,88,78,86,109,116,122,120,126,151,172,178,192,196,196,201,200,196,199,192,194,187,188,190,194,190,187,184,174,167,155,146,135,126,113,101,94,85,106,102,94,6733 +70 Whitehall,Electricity,kWh,2012-01-20,79,89,91,82,78,84,83,81,84,84,81,103,110,110,116,119,146,164,169,184,191,198,190,181,183,194,196,191,187,187,188,183,176,170,169,163,154,139,138,128,121,110,97,88,92,89,84,85,6409 +70 Whitehall,Electricity,kWh,2012-01-21,83,80,82,79,80,83,81,80,80,83,81,81,79,83,80,82,102,104,104,98,101,107,107,103,103,109,104,107,106,104,100,100,99,105,100,99,98,98,96,97,99,90,87,83,85,81,77,79,4429 +70 Whitehall,Electricity,kWh,2012-01-22,78,79,78,80,74,79,81,74,79,80,81,77,77,84,0,0,0,0,0,0,0,0,0,0,0,1091,95,95,103,98,97,96,95,99,94,92,96,92,93,91,92,88,83,87,83,83,78,78,4200 +70 Whitehall,Electricity,kWh,2012-01-23,77,80,77,80,78,79,74,81,80,83,86,105,107,106,113,124,153,167,182,192,201,199,198,198,201,196,204,199,192,189,189,187,179,180,180,173,162,155,145,140,132,114,99,97,94,95,91,86,6599 +70 Whitehall,Electricity,kWh,2012-01-24,87,81,80,85,82,83,87,81,81,83,84,104,107,107,109,130,156,170,179,192,202,200,201,200,201,196,198,192,196,189,191,185,184,183,176,165,163,156,149,137,131,121,104,99,97,96,89,92,6661 +70 Whitehall,Electricity,kWh,2012-01-25,84,88,84,84,84,85,89,80,82,85,86,106,108,117,113,121,153,165,173,191,197,201,198,199,190,194,193,191,193,189,183,190,180,180,173,171,160,147,145,137,123,109,106,95,94,92,84,83,6575 +70 Whitehall,Electricity,kWh,2012-01-26,86,83,81,81,84,82,83,82,82,83,86,102,110,111,111,123,150,162,174,181,198,197,191,196,192,187,183,190,193,190,181,185,185,182,178,162,160,149,141,139,121,113,100,92,90,94,91,87,6504 +70 Whitehall,Electricity,kWh,2012-01-27,87,87,82,83,84,83,91,85,86,85,87,104,110,111,110,124,156,168,183,192,197,191,183,194,191,184,191,193,190,188,192,185,177,183,182,167,158,145,136,130,124,103,94,90,86,91,86,86,6515 +70 Whitehall,Electricity,kWh,2012-01-28,83,82,81,80,81,78,82,83,83,78,77,79,85,82,82,82,95,93,95,97,95,99,98,98,99,99,100,100,97,96,93,92,95,94,92,93,95,95,93,91,90,83,85,83,83,83,83,78,4260 +70 Whitehall,Electricity,kWh,2012-01-29,77,78,74,73,75,81,81,79,76,74,78,78,78,83,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1163 +70 Whitehall,Electricity,kWh,2012-01-30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4985,201,204,208,207,203,191,198,212,203,196,191,193,186,184,176,175,163,147,141,126,116,111,106,98,98,95,89,86,9489 +70 Whitehall,Electricity,kWh,2012-01-31,84,83,84,81,81,87,80,83,75,84,85,107,110,113,117,129,160,171,192,218,211,212,210,209,204,210,206,198,204,197,199,199,190,182,177,178,172,155,148,136,132,120,103,100,92,92,91,88,6839 +70 Whitehall,Electricity,kWh,2012-02-01,84,81,79,84,85,82,82,82,82,86,86,106,113,113,119,137,149,176,186,194,203,209,206,207,209,205,206,205,202,190,194,191,193,189,184,178,168,159,151,140,131,123,106,100,99,95,94,84,6827 +70 Whitehall,Electricity,kWh,2012-02-02,88,88,84,87,82,89,80,86,86,84,85,109,114,116,117,130,159,165,192,197,201,202,203,203,200,200,201,203,200,190,193,190,188,197,184,179,171,158,146,139,134,121,106,104,102,103,100,100,6856 +70 Whitehall,Electricity,kWh,2012-02-03,98,98,91,92,95,92,93,92,92,93,93,111,117,118,121,135,159,167,184,204,206,206,202,208,203,197,197,198,199,193,192,194,186,182,172,167,162,145,136,128,127,109,93,93,91,94,89,84,6798 +70 Whitehall,Electricity,kWh,2012-02-04,83,80,81,86,83,81,76,81,81,79,78,78,85,81,85,86,98,98,99,100,98,98,102,101,97,95,99,101,97,92,97,103,94,94,96,96,91,89,93,96,91,85,86,83,91,89,81,82,4316 +70 Whitehall,Electricity,kWh,2012-02-05,78,78,82,81,75,82,77,78,77,76,79,78,76,80,82,84,94,92,88,95,93,91,89,95,95,93,90,101,98,98,89,92,93,100,96,96,96,91,91,97,94,83,82,83,82,81,83,88,4192 +70 Whitehall,Electricity,kWh,2012-02-06,75,76,80,84,73,79,80,75,73,75,88,101,100,111,124,119,149,171,181,185,196,210,215,215,207,210,203,204,205,198,193,193,189,192,184,178,176,155,150,142,131,118,100,100,99,101,92,95,6750 +70 Whitehall,Electricity,kWh,2012-02-07,87,88,84,83,80,87,89,87,84,84,85,111,112,120,122,137,167,169,190,199,204,205,208,209,209,205,201,202,209,200,196,193,192,189,190,179,171,161,154,144,132,112,102,101,98,99,100,97,6927 +70 Whitehall,Electricity,kWh,2012-02-08,98,95,88,87,85,92,89,85,85,87,91,101,114,121,121,125,157,178,190,202,210,207,210,208,211,206,209,207,206,201,202,201,201,196,186,178,168,160,149,141,128,104,104,96,100,99,91,87,6957 +70 Whitehall,Electricity,kWh,2012-02-09,90,89,87,84,79,90,84,83,87,89,85,108,116,115,121,130,166,180,195,200,211,218,213,222,212,212,205,208,206,203,204,206,195,189,187,182,170,162,154,143,139,111,102,104,97,100,92,93,7018 +70 Whitehall,Electricity,kWh,2012-02-10,94,89,87,88,89,89,83,86,87,94,87,107,120,121,117,131,167,171,182,193,201,200,206,210,205,204,202,202,201,197,194,198,192,183,176,173,163,151,137,130,128,101,95,95,88,91,92,82,6779 +70 Whitehall,Electricity,kWh,2012-02-11,83,86,84,89,88,85,88,89,88,83,87,88,87,88,88,84,101,110,114,114,115,112,111,116,120,117,115,114,116,109,103,103,105,105,104,99,101,102,102,99,98,85,91,89,85,87,85,80,4692 +70 Whitehall,Electricity,kWh,2012-02-12,83,81,78,78,82,89,90,85,84,87,85,82,89,88,89,85,96,100,94,94,96,97,92,92,97,101,97,93,101,97,92,90,98,97,92,94,95,93,91,96,97,82,88,83,88,85,83,79,4325 +70 Whitehall,Electricity,kWh,2012-02-13,79,77,74,79,81,83,77,75,80,86,81,104,110,123,118,127,164,174,185,197,208,206,205,211,205,209,212,209,209,201,206,208,202,195,187,178,165,155,150,139,128,107,101,95,96,95,92,87,6835 +70 Whitehall,Electricity,kWh,2012-02-14,84,85,83,82,82,85,79,82,77,80,80,102,111,113,122,129,155,164,192,214,207,208,201,200,200,210,204,196,206,206,200,196,189,188,182,173,167,163,152,132,126,105,104,99,101,99,93,86,6794 +70 Whitehall,Electricity,kWh,2012-02-15,87,83,86,86,87,90,79,82,85,95,90,111,111,120,121,133,157,177,196,197,205,203,205,203,196,197,206,207,207,196,200,196,198,190,186,174,168,160,147,133,124,107,104,100,95,101,96,86,6863 +70 Whitehall,Electricity,kWh,2012-02-16,83,85,84,82,83,86,82,84,79,89,87,110,115,118,124,128,169,175,185,198,201,209,206,193,200,191,193,198,194,188,191,189,190,186,176,167,160,153,146,133,125,102,99,97,96,98,88,86,6701 +70 Whitehall,Electricity,kWh,2012-02-17,84,92,78,82,80,83,85,77,82,77,80,107,109,120,118,124,153,162,171,184,192,191,195,192,194,192,193,191,193,193,190,186,182,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4813 +70 Whitehall,Electricity,kWh,2012-02-18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +70 Whitehall,Electricity,kWh,2012-02-19,0,0,0,0,0,0,0,0,0,0,0,0,0,7228,87,89,101,100,103,99,110,113,105,106,105,108,109,106,107,104,105,101,104,102,101,103,99,101,100,98,100,94,95,91,89,92,89,88,10632 +70 Whitehall,Electricity,kWh,2012-02-20,88,86,86,81,80,79,83,82,82,81,86,106,111,118,121,133,164,178,185,192,197,207,207,209,200,203,201,201,205,201,197,193,189,180,178,172,172,156,146,136,126,103,97,94,96,94,91,90,6763 +70 Whitehall,Electricity,kWh,2012-02-21,89,85,85,85,80,82,85,84,82,79,84,106,107,113,126,128,167,181,193,202,204,219,210,216,210,207,203,209,204,199,196,197,193,192,192,186,178,166,157,149,137,113,109,98,94,109,95,94,6979 +70 Whitehall,Electricity,kWh,2012-02-22,82,102,79,82,85,80,81,82,83,87,86,109,110,123,124,127,165,182,185,213,206,214,207,211,210,210,220,204,215,198,213,208,193,196,190,192,175,170,165,143,148,106,106,101,101,97,98,91,7055 +70 Whitehall,Electricity,kWh,2012-02-23,88,84,80,87,86,87,85,84,80,83,86,108,114,116,124,142,176,188,186,196,207,208,207,212,208,205,206,202,200,200,195,200,198,192,192,179,173,160,152,139,128,103,99,90,93,99,94,83,6904 +70 Whitehall,Electricity,kWh,2012-02-24,86,71,71,92,77,72,86,84,72,75,88,105,98,115,118,120,157,168,162,181,205,204,187,214,196,187,196,196,187,187,188,189,175,182,177,166,160,147,149,134,123,100,98,107,89,87,106,86,6520 +70 Whitehall,Electricity,kWh,2012-02-25,76,96,76,77,78,79,80,75,75,76,75,80,81,86,86,83,112,104,110,115,104,107,112,105,108,100,101,110,110,104,99,104,103,102,99,100,97,96,95,97,97,88,87,88,86,92,81,84,4476 +70 Whitehall,Electricity,kWh,2012-02-26,79,80,79,72,74,78,72,73,73,79,77,76,75,82,81,79,95,100,93,117,99,106,107,103,113,99,113,105,105,108,102,101,95,100,94,96,99,88,84,88,95,80,72,77,82,83,77,79,4284 +70 Whitehall,Electricity,kWh,2012-02-27,77,72,68,73,80,84,72,79,81,75,71,112,110,105,109,123,167,177,186,193,209,206,197,199,206,189,203,199,200,203,186,181,184,176,178,175,159,153,145,143,130,105,105,101,95,91,91,94,6617 +70 Whitehall,Electricity,kWh,2012-02-28,86,86,82,81,77,84,76,78,81,79,82,102,118,118,115,129,157,177,182,203,196,192,194,200,206,192,196,196,191,191,188,188,188,188,178,170,164,151,145,138,126,99,94,93,88,90,79,75,6589 +70 Whitehall,Electricity,kWh,2012-02-29,88,82,80,77,77,80,76,75,71,80,78,99,104,111,108,118,170,175,192,195,202,207,197,205,201,194,194,203,200,195,195,187,185,193,179,175,173,161,154,144,136,113,104,94,88,89,93,85,6682 +70 Whitehall,Electricity,kWh,2012-03-01,87,79,71,94,83,81,74,82,89,84,79,95,118,118,113,120,162,174,188,191,190,208,199,194,195,188,192,196,202,196,188,188,185,180,181,182,165,161,152,142,135,109,104,97,88,96,95,91,6681 +70 Whitehall,Electricity,kWh,2012-03-02,88,92,84,83,81,83,86,82,84,86,83,108,112,109,111,117,157,165,179,182,189,191,196,193,179,179,178,184,178,176,177,172,167,165,162,157,146,134,127,116,111,92,92,90,88,87,90,86,6274 +70 Whitehall,Electricity,kWh,2012-03-03,81,84,80,80,79,85,81,80,77,78,79,76,75,80,84,84,100,103,107,107,111,114,108,110,108,110,111,110,109,106,100,104,101,104,103,104,97,99,100,96,98,81,81,76,72,82,78,82,4455 +70 Whitehall,Electricity,kWh,2012-03-04,72,69,78,81,78,74,75,78,74,74,79,74,76,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1061 +70 Whitehall,Electricity,kWh,2012-03-05,78,76,76,79,74,81,74,75,76,80,77,99,99,108,113,123,156,168,191,190,198,199,193,207,204,204,193,197,202,180,195,190,193,181,186,177,164,171,157,145,123,105,114,102,99,95,101,95,6663 +70 Whitehall,Electricity,kWh,2012-03-06,83,83,84,70,82,83,81,79,73,79,82,102,112,120,122,125,149,162,185,202,206,203,198,204,189,197,191,196,195,194,191,188,183,182,181,175,166,160,153,144,128,107,103,98,96,96,91,90,6663 +70 Whitehall,Electricity,kWh,2012-03-07,82,80,78,85,86,92,88,80,86,87,82,102,113,115,113,120,155,167,175,183,195,204,200,202,196,187,187,198,198,190,183,181,181,184,175,171,160,151,143,133,127,105,98,87,100,101,95,83,6584 +70 Whitehall,Electricity,kWh,2012-03-08,74,86,82,76,75,74,77,80,78,85,85,104,106,107,110,128,150,172,183,203,196,202,203,211,199,196,197,200,192,187,190,184,182,180,181,178,161,152,149,139,125,101,102,97,99,92,91,87,6608 +70 Whitehall,Electricity,kWh,2012-03-09,81,83,73,82,79,83,81,80,82,82,88,106,112,118,115,124,149,161,174,193,199,198,195,193,187,189,188,184,183,182,186,179,173,175,176,164,159,142,138,133,123,98,93,94,92,89,95,87,6440 +70 Whitehall,Electricity,kWh,2012-03-10,82,73,75,90,82,82,75,88,84,85,77,76,92,86,88,79,112,110,95,79,77,72,72,72,70,86,99,79,80,79,79,77,80,0,0,53,105,0,0,0,58,110,102,90,88,90,88,85,3601 +70 Whitehall,Electricity,kWh,2012-03-11,80,79,81,78,76,79,77,76,78,77,75,72,69,81,79,75,90,87,89,83,90,88,86,90,89,90,89,87,94,94,92,87,95,93,86,93,91,88,88,90,92,81,77,77,77,80,81,79,4025 +70 Whitehall,Electricity,kWh,2012-03-12,80,76,74,77,70,76,73,78,73,78,76,96,104,103,103,119,144,150,171,175,183,182,188,190,189,181,184,188,178,184,182,178,175,171,176,170,159,149,143,123,117,99,95,90,90,94,89,86,6229 +70 Whitehall,Electricity,kWh,2012-03-13,81,78,81,79,79,84,76,81,79,79,80,104,108,108,110,127,144,155,168,177,186,191,185,191,191,185,182,182,175,175,174,172,169,166,159,155,154,138,132,122,114,88,89,87,97,91,85,78,6191 +70 Whitehall,Electricity,kWh,2012-03-14,75,73,72,78,75,76,78,73,75,77,79,97,101,104,104,116,145,154,173,183,186,185,178,180,181,178,178,170,173,169,170,164,163,165,158,155,154,142,129,121,114,94,90,87,91,90,92,88,6053 +70 Whitehall,Electricity,kWh,2012-03-15,82,76,76,75,73,78,75,72,74,79,76,97,99,100,108,122,136,152,168,176,187,181,183,190,181,180,184,182,179,178,172,173,177,167,170,163,156,143,133,126,116,96,91,91,88,91,82,83,6137 +70 Whitehall,Electricity,kWh,2012-03-16,84,82,77,77,76,81,78,73,77,78,80,99,102,111,109,122,142,157,167,177,185,188,184,185,180,179,178,176,178,166,170,169,170,168,164,151,143,138,132,121,107,93,88,85,89,88,87,85,6096 +70 Whitehall,Electricity,kWh,2012-03-17,79,77,76,74,75,77,83,74,78,75,79,75,77,77,84,83,101,100,101,96,95,101,96,106,102,97,95,100,96,107,95,97,91,94,100,102,98,96,94,92,94,80,78,81,80,83,81,80,4252 +70 Whitehall,Electricity,kWh,2012-03-18,79,81,76,75,72,77,76,75,72,71,75,76,75,80,82,78,91,91,95,95,96,95,96,104,102,100,95,94,92,95,95,97,92,95,95,95,93,93,92,92,93,76,81,78,81,79,80,80,4148 +70 Whitehall,Electricity,kWh,2012-03-19,77,77,73,74,76,73,75,76,75,74,73,92,99,96,103,116,140,150,161,172,190,194,187,185,187,190,184,191,182,176,177,176,174,172,165,161,159,144,135,125,121,99,93,91,89,87,88,85,6159 +70 Whitehall,Electricity,kWh,2012-03-20,85,79,76,83,77,83,80,77,75,78,82,103,107,108,105,128,143,159,171,181,188,184,188,190,185,186,190,187,183,174,178,182,178,175,173,166,159,150,148,140,132,106,100,97,96,95,97,97,6404 +70 Whitehall,Electricity,kWh,2012-03-21,91,86,84,88,84,88,86,84,85,87,89,106,112,114,117,123,153,160,176,188,187,192,190,188,181,184,188,191,186,180,176,171,177,176,176,171,161,154,146,136,122,103,101,95,98,95,94,91,6511 +70 Whitehall,Electricity,kWh,2012-03-22,84,84,81,83,83,84,78,76,78,78,76,99,105,106,107,118,149,169,170,183,186,190,190,193,193,196,192,184,183,179,177,174,176,166,164,160,160,148,140,131,123,97,95,92,91,93,87,89,6340 +70 Whitehall,Electricity,kWh,2012-03-23,84,86,79,81,81,86,78,79,80,82,79,104,102,109,109,119,145,159,170,174,180,186,181,192,188,185,182,188,183,177,179,176,170,172,166,161,157,144,133,125,110,99,90,90,84,88,85,81,6238 +70 Whitehall,Electricity,kWh,2012-03-25,71,72,74,75,71,75,72,72,75,74,71,74,80,78,102,96,89,95,93,92,90,96,93,91,93,97,94,91,95,98,96,92,96,99,92,86,89,86,88,75,79,82,78,79,75,75,73,73,4052 +70 Whitehall,Electricity,kWh,2012-03-26,71,71,71,72,76,72,74,77,74,96,98,104,112,123,148,165,178,180,188,186,181,185,180,178,190,190,187,181,176,176,174,172,171,163,156,147,150,133,123,97,89,90,91,88,91,87,84,81,6247 +70 Whitehall,Electricity,kWh,2012-03-27,79,81,79,81,81,81,79,82,85,101,103,108,111,120,149,164,171,183,193,201,191,189,190,183,180,182,184,174,176,172,174,171,168,162,160,152,142,135,129,108,101,93,91,95,93,92,92,86,6397 +70 Whitehall,Electricity,kWh,2012-03-28,83,88,88,86,86,85,85,81,84,105,104,109,109,118,153,167,171,175,184,187,182,188,188,187,186,188,189,183,189,183,186,179,175,168,164,152,147,139,126,102,97,93,90,91,90,89,89,84,6472 +70 Whitehall,Electricity,kWh,2012-03-29,81,81,76,80,85,77,80,80,82,106,106,107,112,122,155,167,176,183,186,189,192,190,185,185,183,184,181,180,180,184,175,174,177,167,159,150,147,137,129,108,99,93,93,95,100,93,87,87,6445 +70 Whitehall,Electricity,kWh,2012-03-30,83,84,80,81,79,78,79,85,84,103,108,110,111,116,153,155,166,175,179,181,179,178,184,183,177,179,180,177,174,171,168,171,171,159,151,144,138,134,124,97,88,85,87,90,86,79,80,81,6205 +70 Whitehall,Electricity,kWh,2012-03-31,78,78,83,81,80,74,77,76,76,75,74,75,76,77,96,97,96,98,96,98,97,98,100,96,96,94,99,91,92,91,96,99,94,93,97,92,93,90,91,77,73,80,77,80,79,82,79,77,4164 +70 Whitehall,Electricity,kWh,2012-04-01,76,75,75,77,76,74,75,77,81,72,75,81,78,80,97,101,95,93,96,97,98,98,98,100,99,97,101,101,95,95,99,100,95,94,99,95,93,92,97,80,78,82,83,81,81,79,78,76,4215 +70 Whitehall,Electricity,kWh,2012-04-02,74,76,77,77,76,74,76,76,78,98,101,107,104,114,144,156,162,169,182,176,180,184,183,177,179,178,183,176,179,174,171,168,166,164,156,143,127,122,114,95,92,88,88,87,94,87,87,91,6130 +70 Whitehall,Electricity,kWh,2012-04-03,85,81,80,78,82,79,79,84,81,109,105,110,113,113,148,161,164,175,184,189,183,187,180,182,184,185,189,182,174,173,172,164,164,165,157,147,140,131,117,97,97,95,94,103,92,87,88,80,6309 +70 Whitehall,Electricity,kWh,2012-04-04,78,80,79,81,80,80,79,82,81,105,107,104,108,118,146,151,164,175,185,185,185,184,181,180,178,179,176,175,173,170,170,163,161,156,147,140,130,120,111,94,95,91,90,98,93,87,88,85,6168 +70 Whitehall,Electricity,kWh,2012-04-05,80,80,82,81,85,80,79,80,83,111,107,113,105,126,147,159,162,164,168,174,181,181,175,166,158,158,150,145,130,128,130,126,115,113,115,104,105,99,101,87,84,83,82,84,82,78,77,73,5576 +70 Whitehall,Electricity,kWh,2012-04-06,75,68,70,78,77,73,72,69,70,86,85,81,89,88,89,99,104,101,95,99,98,99,97,99,96,94,100,101,105,100,100,97,103,102,95,93,96,94,94,79,78,77,80,77,75,73,74,73,4217 +70 Whitehall,Electricity,kWh,2012-04-07,71,73,69,72,72,71,71,73,66,72,70,78,75,81,89,90,91,84,95,91,93,91,100,94,91,92,88,97,93,92,93,94,91,93,95,94,89,91,90,76,77,78,77,75,73,75,71,72,3989 +70 Whitehall,Electricity,kWh,2012-04-08,72,71,67,74,74,71,68,75,76,72,68,69,75,73,86,85,88,89,90,93,91,85,92,92,94,91,91,90,90,97,94,90,92,94,90,94,92,89,91,85,80,80,80,80,76,78,75,76,3985 +70 Whitehall,Electricity,kWh,2012-04-09,74,74,71,79,75,73,76,73,78,88,85,92,90,92,97,96,98,97,98,98,99,95,96,98,99,105,102,108,101,100,103,105,99,99,97,99,96,89,91,82,80,84,79,78,79,75,73,76,4291 +70 Whitehall,Electricity,kWh,2012-04-10,73,76,74,73,69,71,74,74,75,91,97,105,104,108,144,147,152,168,174,172,170,174,168,171,171,172,169,167,166,171,163,158,152,151,144,134,128,117,108,91,93,88,86,88,88,85,82,81,5857 +70 Whitehall,Electricity,kWh,2012-04-11,77,78,74,81,80,78,79,79,79,98,102,108,113,121,145,150,161,182,175,184,186,186,184,180,181,180,177,180,175,176,179,175,167,161,156,142,138,131,117,95,89,93,91,93,96,86,86,81,6225 +70 Whitehall,Electricity,kWh,2012-04-12,82,83,82,88,83,83,83,85,83,103,108,109,116,125,151,157,173,176,185,189,186,185,178,180,182,175,176,179,176,167,167,160,161,151,147,138,132,122,111,91,88,86,87,88,87,82,85,80,6191 +70 Whitehall,Electricity,kWh,2012-04-13,77,82,76,78,80,77,77,81,80,99,102,105,106,122,140,144,158,164,174,178,175,175,172,169,173,168,170,167,164,160,163,162,152,147,138,131,119,118,104,85,86,83,80,86,80,77,76,74,5854 +70 Whitehall,Electricity,kWh,2012-04-14,73,76,69,70,77,76,73,74,77,68,71,77,78,87,101,100,50,13,82,99,103,97,97,106,98,96,99,98,96,94,97,96,96,94,92,88,94,93,92,79,75,79,81,79,76,75,76,76,4013 +70 Whitehall,Electricity,kWh,2012-04-15,72,73,76,73,72,71,75,73,68,72,74,76,80,75,100,101,95,96,97,94,98,99,101,100,97,96,100,95,97,92,99,96,96,95,101,92,96,97,96,85,80,81,79,82,76,75,73,73,4160 +70 Whitehall,Electricity,kWh,2012-04-16,72,70,73,78,70,71,71,70,78,95,99,105,105,118,153,160,169,173,195,191,195,184,189,188,186,186,186,185,183,175,177,173,169,163,154,148,138,124,117,97,93,89,89,92,86,84,79,79,6224 +70 Whitehall,Electricity,kWh,2012-04-17,77,80,72,80,80,77,78,79,85,101,105,110,109,118,153,167,175,183,186,195,200,204,194,186,185,188,180,176,176,176,178,175,175,163,152,142,139,126,120,99,93,91,92,91,89,82,78,76,6336 +70 Whitehall,Electricity,kWh,2012-04-18,82,78,77,76,78,80,77,82,84,99,100,107,112,122,148,155,170,181,176,173,182,187,186,186,191,190,185,180,176,178,177,167,166,161,154,149,138,130,122,97,90,90,89,92,92,88,86,81,6267 +70 Whitehall,Electricity,kWh,2012-04-19,79,80,79,85,83,82,80,78,83,105,107,112,117,128,156,175,184,193,191,193,194,194,190,188,187,186,184,182,177,180,173,171,166,162,159,149,140,119,113,93,92,92,84,89,90,86,85,76,6391 +70 Whitehall,Electricity,kWh,2012-04-20,79,77,81,78,73,74,76,78,79,98,99,108,111,116,146,151,169,178,179,187,182,182,184,187,182,184,174,175,174,174,169,168,159,156,149,141,132,120,112,92,86,84,82,81,85,79,76,76,6082 +70 Whitehall,Electricity,kWh,2012-04-21,75,79,73,76,75,75,73,76,76,77,78,80,81,81,99,105,102,102,100,97,100,101,99,102,101,99,107,100,101,97,98,102,101,98,98,98,97,94,93,79,88,82,81,87,84,83,79,74,4303 +70 Whitehall,Electricity,kWh,2012-04-22,77,77,76,77,75,73,80,76,75,76,74,81,76,81,90,99,97,94,95,104,102,96,95,103,101,99,105,98,102,100,103,93,95,98,95,96,103,91,98,77,80,79,84,81,75,79,75,76,4232 +70 Whitehall,Electricity,kWh,2012-04-23,76,74,75,79,71,72,78,79,80,98,103,107,105,124,144,157,166,176,185,197,185,190,195,189,186,184,188,183,183,181,176,173,170,166,155,145,141,129,117,98,93,93,92,93,93,86,82,82,6294 +70 Whitehall,Electricity,kWh,2012-04-24,79,80,77,81,81,81,76,83,84,109,110,110,111,123,162,180,192,194,197,203,201,201,201,197,193,193,191,191,189,193,189,186,177,169,163,156,145,140,131,113,105,103,99,101,97,90,86,92,6705 +70 Whitehall,Electricity,kWh,2012-04-25,86,86,88,86,85,87,88,85,87,108,112,114,115,137,160,177,190,194,203,204,203,201,193,192,190,194,193,186,184,187,191,182,183,176,170,154,153,143,133,111,104,99,99,97,101,97,88,85,6781 +70 Whitehall,Electricity,kWh,2012-04-26,85,90,86,86,89,84,87,88,87,104,109,113,118,131,163,168,179,192,193,201,194,199,198,198,200,193,188,189,190,189,186,179,171,168,162,150,138,128,121,99,94,91,87,87,89,86,87,78,6592 +70 Whitehall,Electricity,kWh,2012-04-27,80,79,81,80,80,79,78,81,80,100,106,111,109,126,149,154,168,173,176,183,180,182,185,182,181,185,179,177,179,182,175,162,160,160,145,134,129,122,117,97,85,78,75,80,78,76,68,66,6092 +70 Whitehall,Electricity,kWh,2012-04-28,70,70,66,67,70,69,66,64,73,70,68,71,72,71,93,98,97,99,106,96,103,105,104,104,105,101,98,96,96,97,93,97,94,92,94,89,89,88,85,78,75,73,68,76,77,72,69,72,4046 +70 Whitehall,Electricity,kWh,2012-04-29,65,67,68,68,68,68,67,68,70,70,71,74,76,79,86,90,86,99,95,91,86,92,86,88,89,92,87,87,86,90,89,93,93,94,91,88,87,87,92,75,77,72,71,77,74,70,71,68,3878 +70 Whitehall,Electricity,kWh,2012-04-30,63,69,69,69,70,71,71,70,76,96,101,100,104,112,144,152,164,172,185,187,188,191,185,189,184,190,187,183,179,179,175,173,168,165,160,152,148,141,134,112,101,94,92,98,99,91,83,85,6271 +70 Whitehall,Electricity,kWh,2012-05-01,83,83,87,88,87,79,87,86,87,113,113,111,115,126,160,165,175,184,190,190,190,190,184,193,190,194,188,183,180,181,178,173,171,169,163,154,147,140,130,106,96,90,93,94,92,89,85,79,6531 +70 Whitehall,Electricity,kWh,2012-05-02,80,82,84,81,82,79,83,81,84,108,107,110,114,125,149,161,175,185,190,195,192,191,189,187,198,198,183,181,180,181,181,180,173,167,162,152,146,134,125,103,97,93,92,92,94,85,82,88,6481 +70 Whitehall,Electricity,kWh,2012-05-03,81,78,81,77,85,77,80,81,86,110,108,111,109,124,155,169,170,182,189,192,189,187,186,187,182,187,182,179,177,182,175,173,165,165,157,148,139,135,129,109,98,98,95,99,96,92,89,86,6431 +70 Whitehall,Electricity,kWh,2012-05-04,83,83,84,88,88,85,85,87,87,112,111,112,116,128,156,162,172,178,184,188,181,187,182,186,181,185,181,178,182,176,170,166,162,157,148,143,133,128,117,95,94,92,88,90,93,90,83,85,6342 +70 Whitehall,Electricity,kWh,2012-05-05,83,83,79,82,83,83,81,80,76,82,81,87,88,89,111,112,110,103,106,107,105,106,106,107,104,105,103,104,103,101,99,101,98,103,99,101,105,96,92,82,81,82,82,85,82,85,78,75,4476 +70 Whitehall,Electricity,kWh,2012-05-06,74,75,75,77,79,74,72,75,76,82,74,79,80,82,88,92,92,93,93,94,94,95,92,91,91,92,90,91,85,90,92,92,90,88,90,91,94,87,85,76,80,77,76,81,85,80,77,76,4054 +70 Whitehall,Electricity,kWh,2012-05-07,74,77,72,71,80,75,73,73,74,90,91,87,90,92,94,100,106,99,97,103,103,101,97,97,99,106,95,95,102,99,99,103,100,100,100,98,101,95,93,83,83,82,82,83,84,82,79,78,4337 +70 Whitehall,Electricity,kWh,2012-05-08,78,76,76,80,79,78,77,79,80,102,102,104,107,122,142,153,166,178,182,184,183,186,179,177,175,179,173,175,177,175,169,167,168,162,154,151,149,138,125,105,95,97,93,100,89,89,81,84,6240 +70 Whitehall,Electricity,kWh,2012-05-09,81,83,76,82,79,80,80,82,84,105,107,109,111,123,144,160,170,169,182,181,182,181,178,184,187,187,181,181,181,182,179,175,171,170,161,146,141,136,125,104,92,89,91,93,92,87,83,79,6326 +70 Whitehall,Electricity,kWh,2012-05-10,78,79,78,82,80,77,79,83,82,108,113,111,107,126,152,156,170,177,187,188,187,183,182,179,183,180,180,180,179,174,172,165,167,161,155,148,141,133,125,100,98,94,89,90,90,86,81,84,6299 +70 Whitehall,Electricity,kWh,2012-05-11,81,80,78,81,80,76,78,83,80,111,104,111,108,124,158,157,166,173,178,182,179,185,184,183,181,179,175,168,170,170,167,165,159,156,157,147,134,126,117,96,88,92,89,88,85,90,80,82,6181 +70 Whitehall,Electricity,kWh,2012-05-12,76,77,74,78,77,82,76,76,76,77,76,80,85,80,102,105,109,110,113,111,106,108,111,110,107,101,101,102,102,97,91,95,102,102,97,97,96,95,92,82,83,78,81,84,84,83,78,78,4383 +70 Whitehall,Electricity,kWh,2012-05-13,77,77,75,78,78,79,77,79,76,73,82,82,81,81,102,103,97,93,104,104,105,108,104,105,99,105,104,99,106,98,98,99,96,102,101,97,97,94,98,87,82,78,84,83,88,80,81,75,4351 +70 Whitehall,Electricity,kWh,2012-05-14,77,76,74,82,81,78,76,79,80,100,101,108,108,108,156,163,168,182,182,182,178,184,184,185,182,184,181,178,180,184,175,175,164,162,157,145,140,132,123,104,98,94,92,92,93,88,84,81,6280 +70 Whitehall,Electricity,kWh,2012-05-15,82,80,81,80,77,77,81,84,83,105,107,111,109,120,159,166,176,175,182,190,188,186,182,181,180,184,181,179,186,185,180,177,171,163,155,150,144,135,125,104,102,99,94,94,95,95,88,83,6411 +70 Whitehall,Electricity,kWh,2012-05-16,86,79,80,81,78,81,78,81,83,102,105,106,105,121,152,164,172,179,184,187,189,192,193,190,187,189,186,181,180,185,181,178,175,168,164,156,148,138,134,106,96,96,100,97,90,94,89,85,6471 +70 Whitehall,Electricity,kWh,2012-05-17,83,88,87,86,84,81,84,89,89,110,111,109,113,124,154,163,174,177,184,184,183,190,191,184,185,187,184,184,181,176,174,172,171,164,163,157,147,141,131,107,93,94,99,94,92,94,82,83,6477 +70 Whitehall,Electricity,kWh,2012-05-18,80,86,77,85,80,83,82,83,83,109,104,108,108,124,147,150,159,174,183,183,184,185,180,174,178,179,182,181,178,180,177,170,169,162,157,145,139,130,118,103,97,92,91,99,93,88,83,80,6282 +70 Whitehall,Electricity,kWh,2012-05-19,82,83,79,83,84,79,77,80,81,82,83,87,86,96,105,112,114,113,117,115,115,117,116,115,114,120,122,111,111,110,106,108,108,109,106,106,109,103,97,86,83,86,84,88,92,85,77,80,4702 +70 Whitehall,Electricity,kWh,2012-05-20,77,75,75,78,78,79,78,78,79,75,77,85,81,89,100,105,97,93,96,101,101,98,100,102,92,94,96,97,96,96,97,94,93,93,96,99,92,91,92,82,81,79,85,81,85,83,82,73,4246 +70 Whitehall,Electricity,kWh,2012-05-21,76,78,77,78,79,80,77,80,86,107,100,106,107,126,152,154,165,177,177,182,187,189,191,185,192,193,189,179,179,182,178,174,172,170,168,156,148,142,132,112,102,95,96,95,91,95,92,84,6432 +70 Whitehall,Electricity,kWh,2012-05-22,85,82,84,85,85,83,87,83,88,108,110,110,116,135,151,167,175,186,187,197,194,191,192,196,193,190,190,185,186,188,178,179,171,167,166,155,149,140,125,107,100,97,88,94,96,89,85,88,6583 +70 Whitehall,Electricity,kWh,2012-05-23,83,81,86,85,81,87,81,84,91,103,109,103,109,126,153,153,165,176,186,188,190,190,191,183,183,184,182,183,184,176,178,178,175,165,157,153,147,135,122,111,87,86,83,82,81,78,75,72,6341 +70 Whitehall,Electricity,kWh,2012-05-24,75,75,74,77,76,71,73,73,81,128,133,120,118,136,147,160,165,175,191,192,188,190,191,190,187,198,187,188,204,201,193,191,188,183,177,171,154,142,142,127,109,104,103,109,105,94,95,96,6747 +70 Whitehall,Electricity,kWh,2012-05-25,98,96,96,99,90,95,93,95,96,122,128,128,134,150,164,173,187,195,197,204,196,196,194,215,208,206,206,208,203,201,199,197,196,182,178,163,150,144,137,126,105,104,102,103,102,97,98,94,7150 +70 Whitehall,Electricity,kWh,2012-05-26,98,96,96,99,96,96,94,96,101,122,116,109,107,106,123,127,132,132,135,136,134,134,128,131,130,130,122,125,120,119,120,120,114,120,120,117,115,115,113,107,96,96,98,97,92,92,82,77,5381 +70 Whitehall,Electricity,kWh,2012-05-27,101,97,90,82,86,93,94,88,82,113,110,109,107,109,107,112,113,115,116,116,116,117,116,114,118,118,117,119,114,119,114,113,115,114,113,111,113,108,110,102,95,86,90,99,93,93,92,90,5059 +70 Whitehall,Electricity,kWh,2012-05-28,95,93,93,94,93,85,90,85,98,123,117,130,134,139,164,169,188,197,205,231,215,227,213,222,213,216,208,207,216,213,213,208,203,197,192,177,174,160,153,150,141,138,134,132,133,125,117,121,7641 +70 Whitehall,Electricity,kWh,2012-05-29,121,118,113,117,120,109,114,114,107,121,126,129,130,138,171,180,189,200,206,210,209,213,203,205,214,206,210,203,206,219,206,200,199,185,179,173,165,154,142,141,130,116,116,118,118,116,112,107,7598 +70 Whitehall,Electricity,kWh,2012-05-30,112,110,112,106,115,109,105,102,101,123,125,126,133,144,165,170,196,202,205,212,213,220,214,215,214,216,208,212,209,210,205,208,198,192,184,174,172,162,155,140,142,137,131,128,129,120,128,113,7722 +70 Whitehall,Electricity,kWh,2012-05-31,118,113,109,112,113,109,108,110,109,120,125,123,129,136,163,171,175,191,195,195,205,196,200,203,202,203,204,202,202,200,195,191,187,175,166,166,154,145,141,127,126,121,116,119,115,115,113,107,7320 +70 Whitehall,Electricity,kWh,2012-06-01,110,108,108,109,107,93,103,120,106,113,125,123,118,128,168,174,177,188,193,202,203,202,199,199,197,201,200,194,199,186,188,182,174,172,159,150,150,139,128,126,119,116,108,116,108,94,100,112,7094 +70 Whitehall,Electricity,kWh,2012-06-02,102,101,102,94,107,108,93,90,106,105,100,99,97,109,113,106,111,110,109,122,119,116,115,112,125,122,114,110,116,118,118,116,113,111,116,115,110,104,114,106,105,92,103,110,98,97,90,103,5172 +70 Whitehall,Electricity,kWh,2012-06-03,99,93,102,103,91,94,94,95,100,95,91,95,105,100,102,107,103,105,109,104,109,104,108,106,113,106,104,107,104,98,101,106,110,100,103,113,100,100,111,106,99,98,103,114,103,93,93,94,4893 +70 Whitehall,Electricity,kWh,2012-06-04,94,95,94,101,120,110,99,100,98,98,99,98,100,116,105,100,99,100,100,100,97,100,100,93,99,116,101,96,103,97,98,98,96,116,128,99,97,93,91,90,91,95,97,92,119,107,96,92,4823 +70 Whitehall,Electricity,kWh,2012-06-05,111,104,95,106,111,94,95,98,113,100,98,100,113,101,101,104,111,101,98,108,107,112,102,117,120,108,103,110,116,111,111,101,106,111,101,95,104,106,101,97,98,106,92,92,103,98,92,106,4988 +70 Whitehall,Electricity,kWh,2012-06-06,105,90,89,96,99,101,97,102,101,102,102,112,107,125,145,128,144,142,147,152,153,154,155,148,151,149,154,141,145,142,145,143,142,133,130,123,122,122,122,116,119,111,115,107,107,107,107,96,5945 +70 Whitehall,Electricity,kWh,2012-06-07,97,93,93,91,92,92,92,90,94,103,100,107,111,123,152,182,182,179,189,191,193,192,188,184,183,188,182,179,178,175,170,170,167,163,158,150,140,139,134,129,127,120,107,103,101,105,100,128,6706 +70 Whitehall,Electricity,kWh,2012-06-08,106,96,101,112,99,98,104,107,92,102,119,116,115,138,156,149,159,174,181,181,184,179,183,185,184,185,180,176,183,179,175,172,169,163,158,152,146,142,135,127,120,114,107,122,113,102,106,111,6757 +70 Whitehall,Electricity,kWh,2012-06-09,108,108,111,100,110,106,98,103,107,107,99,105,107,108,109,115,112,115,113,113,122,122,114,120,115,113,113,117,119,113,118,113,116,118,122,115,115,113,122,114,112,108,115,110,111,104,96,91,5335 +70 Whitehall,Electricity,kWh,2012-06-10,95,93,92,96,91,91,115,115,98,99,94,94,95,94,96,98,97,99,102,123,135,127,121,117,113,115,117,116,119,117,116,112,113,116,117,110,111,107,110,93,91,97,91,105,125,102,90,100,5080 +70 Whitehall,Electricity,kWh,2012-06-11,109,94,98,112,107,103,93,107,109,112,108,121,128,139,142,170,183,176,196,197,197,192,184,197,200,199,198,183,191,188,181,177,175,163,146,156,149,129,119,124,120,106,102,123,105,103,101,109,6921 +70 Whitehall,Electricity,kWh,2012-06-12,104,99,103,109,107,101,103,111,98,105,114,126,124,138,151,171,179,189,193,198,199,200,183,184,194,190,184,185,180,184,186,179,166,157,150,143,129,123,118,115,115,110,97,106,100,99,100,83,6782 +70 Whitehall,Electricity,kWh,2012-06-13,89,88,84,88,93,90,86,89,105,127,109,104,107,121,141,146,154,159,167,173,208,214,199,194,192,194,199,197,193,187,186,189,178,173,167,155,145,138,132,126,120,109,96,97,91,121,106,89,6715 +70 Whitehall,Electricity,kWh,2012-06-14,94,106,88,92,99,103,92,93,96,114,106,106,118,132,137,149,172,177,186,190,193,196,184,184,186,183,190,178,176,182,181,177,170,173,158,155,156,144,130,121,111,119,114,110,102,96,91,104,6714 +70 Whitehall,Electricity,kWh,2012-06-15,99,95,101,99,92,103,100,99,102,111,99,114,121,135,151,156,169,173,185,188,191,197,186,183,190,198,193,185,186,182,180,179,167,166,162,142,135,132,124,122,117,109,111,100,111,106,97,85,6728 +70 Whitehall,Electricity,kWh,2012-06-16,91,86,87,86,113,109,96,88,85,86,85,85,93,129,113,115,118,106,102,104,106,106,107,106,109,112,110,148,130,118,112,109,107,109,108,103,103,102,92,85,88,87,88,87,88,88,93,122,4900 +70 Whitehall,Electricity,kWh,2012-06-17,107,97,91,94,101,99,93,89,99,98,95,88,91,102,102,107,109,109,110,104,109,109,114,108,109,109,106,110,105,113,108,105,109,106,108,105,103,106,103,104,103,105,105,104,91,100,99,91,4932 +70 Whitehall,Electricity,kWh,2012-06-18,103,100,100,102,90,98,97,89,101,104,103,103,122,134,137,157,176,175,181,186,192,195,187,192,190,190,190,186,184,187,184,175,173,165,156,155,141,132,130,120,118,113,107,106,109,105,93,83,6716 +70 Whitehall,Electricity,kWh,2012-06-19,84,83,81,82,89,84,113,111,97,94,101,104,108,124,137,151,159,167,171,221,203,198,192,193,192,191,190,195,188,195,187,185,176,170,160,154,142,131,128,122,115,110,114,112,110,108,104,98,6724 +70 Whitehall,Electricity,kWh,2012-06-20,102,101,102,103,100,87,104,106,101,99,115,121,123,140,153,170,183,188,202,205,204,206,198,205,203,197,198,196,193,189,192,189,187,174,165,159,151,136,130,126,122,121,116,113,111,114,108,105,7113 +70 Whitehall,Electricity,kWh,2012-06-21,106,104,101,106,108,96,97,104,104,107,117,123,122,142,154,162,175,183,197,198,204,202,202,203,200,200,204,197,194,190,189,178,178,169,166,157,147,135,129,123,114,108,111,110,100,102,104,89,7011 +70 Whitehall,Electricity,kWh,2012-06-22,91,89,87,90,86,86,87,88,91,90,97,103,107,143,170,172,166,181,188,182,166,169,164,202,188,186,187,184,182,179,173,175,168,164,160,146,138,132,126,119,106,106,107,97,92,90,88,116,6504 +70 Whitehall,Electricity,kWh,2012-06-23,104,91,99,111,97,93,98,105,96,88,98,102,91,91,104,111,110,115,121,121,125,111,127,123,119,122,119,118,116,111,113,111,108,112,110,110,112,110,116,103,110,98,93,114,109,101,104,96,5167 +70 Whitehall,Electricity,kWh,2012-06-24,102,103,97,99,102,104,95,91,95,100,98,95,99,97,100,99,107,112,112,108,109,113,114,115,113,107,112,114,112,110,108,108,110,115,112,109,112,110,110,106,110,108,101,109,107,100,93,82,5044 +70 Whitehall,Electricity,kWh,2012-06-25,85,83,82,86,84,87,84,87,123,108,109,104,113,145,148,163,174,181,193,187,188,201,198,192,186,190,192,192,182,182,187,185,177,170,166,155,145,135,129,121,119,118,115,116,113,111,106,107,6804 +70 Whitehall,Electricity,kWh,2012-06-26,111,109,101,111,106,90,104,106,109,114,115,113,126,149,154,165,178,190,198,199,203,202,203,201,199,196,197,200,197,197,195,195,188,178,181,167,158,150,146,137,133,128,121,131,122,117,113,121,7324 +70 Whitehall,Electricity,kWh,2012-06-27,111,112,113,121,111,111,119,114,122,123,131,128,140,154,155,178,188,194,201,201,211,209,202,199,211,206,206,202,198,197,198,196,175,174,171,162,153,150,138,140,124,117,127,122,114,117,115,107,7468 +70 Whitehall,Electricity,kWh,2012-06-28,112,112,113,115,111,108,112,112,122,131,130,134,137,148,171,179,188,194,206,213,208,222,221,214,219,224,218,222,216,218,211,212,203,193,186,177,161,148,149,140,125,121,128,118,115,114,104,106,7741 +70 Whitehall,Electricity,kWh,2012-06-29,108,111,108,109,114,109,103,93,116,115,121,116,113,145,156,158,173,177,0,115,82,77,71,75,77,81,80,77,83,83,75,71,70,69,67,65,61,57,51,47,49,47,46,47,47,48,45,41,4149 +70 Whitehall,Electricity,kWh,2012-06-30,46,43,41,48,40,43,44,42,47,38,41,43,45,41,45,73,112,122,119,121,111,114,116,116,116,114,113,118,113,114,118,115,109,112,107,110,108,110,106,109,106,105,100,100,106,108,101,81,4250 +70 Whitehall,Electricity,kWh,2012-07-01,89,88,87,89,87,89,85,88,88,87,117,119,98,93,91,117,107,101,100,94,91,95,95,109,126,110,102,106,93,95,121,113,103,108,113,108,105,107,109,102,103,99,89,87,117,113,95,86,4814 +70 Whitehall,Electricity,kWh,2012-07-02,110,99,90,103,103,93,93,108,100,96,113,111,116,132,139,161,170,178,180,186,186,186,178,180,182,178,181,183,184,176,171,168,167,165,167,155,146,141,116,124,122,117,113,115,119,113,111,105,6730 +70 Whitehall,Electricity,kWh,2012-07-03,106,112,101,106,114,106,107,104,111,115,122,124,120,138,158,165,176,190,193,197,194,191,194,192,193,195,191,186,186,185,180,184,177,175,169,158,151,139,139,129,121,119,120,116,116,108,106,105,7084 +70 Whitehall,Electricity,kWh,2012-07-04,110,110,107,112,108,105,108,105,112,115,117,122,126,142,158,168,180,179,188,200,195,198,200,195,195,202,199,189,199,198,194,195,188,179,169,168,167,151,147,144,134,128,134,126,120,127,117,109,7339 +70 Whitehall,Electricity,kWh,2012-07-05,115,114,115,121,118,113,110,98,113,120,120,124,124,135,139,157,174,177,183,194,193,190,191,188,193,197,187,187,195,194,187,189,183,172,170,161,158,146,137,125,119,124,114,122,122,114,107,110,7139 +70 Whitehall,Electricity,kWh,2012-07-06,110,113,109,114,110,112,110,111,116,112,126,115,122,136,156,159,172,178,187,189,182,185,186,187,181,181,182,179,185,179,170,174,170,166,151,148,147,141,126,123,123,115,114,123,109,103,102,99,6888 +70 Whitehall,Electricity,kWh,2012-07-07,109,102,92,95,122,102,104,91,106,108,101,94,92,120,116,110,119,120,111,103,122,134,123,125,122,116,119,115,110,99,120,122,112,109,109,107,104,102,105,96,89,86,112,115,105,97,89,100,5181 +70 Whitehall,Electricity,kWh,2012-07-08,102,100,99,92,111,108,103,104,100,94,103,108,105,99,104,113,116,106,98,108,112,116,117,111,111,110,112,110,115,110,122,110,109,109,113,110,109,109,96,115,108,105,102,102,108,107,97,102,5130 +70 Whitehall,Electricity,kWh,2012-07-09,97,104,95,107,98,104,105,103,100,101,111,120,126,130,149,164,175,184,176,185,182,181,183,172,174,190,184,177,171,175,174,179,165,160,155,151,139,135,127,115,120,105,110,109,106,111,96,101,6681 +70 Whitehall,Electricity,kWh,2012-07-10,90,91,116,102,95,89,87,87,101,129,113,108,108,125,166,156,152,172,195,184,181,185,167,165,166,164,181,195,186,176,180,178,176,171,166,152,148,142,134,129,124,123,115,105,103,126,99,94,6697 +70 Whitehall,Electricity,kWh,2012-07-11,97,105,97,93,111,101,92,103,109,111,105,117,124,126,144,161,166,178,176,195,189,185,188,183,185,190,187,176,183,186,181,169,167,169,162,148,140,135,131,127,114,114,107,115,120,108,94,100,6764 +70 Whitehall,Electricity,kWh,2012-07-12,97,102,94,111,102,97,89,96,100,113,105,108,109,125,150,152,158,162,175,182,179,182,189,184,181,188,188,179,180,185,179,170,162,162,159,144,136,126,112,119,116,117,107,104,115,115,100,103,6608 +70 Whitehall,Electricity,kWh,2012-07-13,102,98,101,108,103,96,98,97,106,114,112,113,122,140,141,153,155,171,178,178,179,185,191,187,188,187,186,181,182,180,182,179,168,166,161,150,145,136,128,115,116,115,104,112,113,116,98,90,6726 +70 Whitehall,Electricity,kWh,2012-07-14,99,106,105,100,99,92,119,104,98,94,107,103,102,108,99,93,107,130,116,107,100,114,129,107,100,99,123,120,112,96,94,115,121,101,97,95,96,94,96,119,120,111,103,92,85,98,112,88,5025 +70 Whitehall,Electricity,kWh,2012-07-15,84,105,90,94,98,97,91,89,99,98,93,87,98,96,88,101,106,107,105,105,96,113,105,103,101,102,112,103,109,107,104,98,115,110,101,108,104,92,113,106,100,91,100,100,97,91,102,101,4815 +70 Whitehall,Electricity,kWh,2012-07-16,100,99,82,92,95,86,87,97,102,99,110,109,114,135,142,150,164,171,177,184,181,184,180,180,175,176,180,179,176,169,164,166,168,162,158,152,146,134,132,117,116,112,116,118,109,103,105,97,6550 +70 Whitehall,Electricity,kWh,2012-07-17,97,98,94,97,99,97,97,96,98,106,106,110,118,130,147,154,161,171,184,189,187,193,190,190,187,187,186,177,180,184,175,177,170,170,160,152,142,135,124,124,123,119,120,122,120,119,112,108,6782 +70 Whitehall,Electricity,kWh,2012-07-18,114,107,107,111,108,98,98,97,103,106,111,114,124,144,145,160,177,180,189,203,194,188,185,184,184,162,177,179,180,179,181,176,173,167,159,155,146,140,133,126,124,117,111,109,119,105,104,98,6851 +70 Whitehall,Electricity,kWh,2012-07-19,101,101,98,104,105,103,104,109,109,119,112,117,121,141,152,153,165,182,189,188,189,192,187,186,193,187,183,187,182,185,182,176,170,171,160,154,149,144,135,134,127,127,130,118,106,120,114,101,6962 +70 Whitehall,Electricity,kWh,2012-07-20,104,106,103,116,116,111,107,98,99,111,114,113,121,138,148,157,167,172,182,186,186,191,189,193,186,187,184,188,186,179,178,171,168,165,161,150,143,138,136,124,121,117,118,117,115,112,109,104,6885 +70 Whitehall,Electricity,kWh,2012-07-21,109,107,105,112,106,105,108,93,108,107,108,106,113,110,106,120,113,119,128,127,117,121,125,129,128,125,119,113,124,124,125,124,121,123,124,125,123,122,123,124,114,113,118,126,120,114,106,100,5580 +70 Whitehall,Electricity,kWh,2012-07-22,111,110,108,112,110,108,105,107,109,106,112,107,112,108,113,119,123,124,124,125,127,128,131,126,125,122,127,124,125,121,124,121,124,126,120,121,122,125,125,117,122,120,128,122,121,115,109,103,5674 +70 Whitehall,Electricity,kWh,2012-07-23,114,107,106,112,111,107,109,105,111,116,122,126,133,145,156,172,185,189,196,204,203,213,205,198,202,202,200,205,206,205,197,198,193,186,184,176,165,156,149,139,135,131,128,131,127,130,120,117,7527 +70 Whitehall,Electricity,kWh,2012-07-24,120,120,120,118,123,118,113,117,116,127,132,132,139,153,165,172,185,201,209,220,210,216,209,209,215,216,213,214,213,217,217,204,215,198,196,182,172,162,157,144,144,133,141,132,138,137,123,122,7949 +70 Whitehall,Electricity,kWh,2012-07-25,127,125,125,120,126,125,122,120,124,130,134,133,138,157,171,182,196,210,221,227,229,223,220,220,215,221,215,219,217,219,214,215,207,203,198,184,173,165,150,148,146,132,137,133,134,137,130,124,8141 +70 Whitehall,Electricity,kWh,2012-07-26,131,129,125,126,127,125,122,120,125,129,133,137,141,158,167,174,189,204,217,219,219,210,212,208,211,208,212,212,212,204,206,206,198,191,179,175,171,163,154,140,138,131,135,130,130,133,126,119,7931 +70 Whitehall,Electricity,kWh,2012-07-27,129,126,122,125,127,122,117,122,126,128,134,134,137,156,168,178,190,201,208,204,206,215,212,210,213,209,210,214,209,209,203,206,199,191,183,171,161,154,148,147,147,145,138,141,141,133,123,122,7914 +70 Whitehall,Electricity,kWh,2012-07-28,122,122,116,119,123,119,118,116,115,113,118,115,119,121,120,124,125,128,127,127,135,133,130,132,131,134,133,131,131,135,131,129,129,129,131,130,123,121,131,125,119,122,121,120,120,114,116,107,5950 +70 Whitehall,Electricity,kWh,2012-07-29,113,111,100,101,102,132,112,104,96,104,119,115,105,104,101,106,134,121,124,126,129,123,120,120,121,117,122,118,128,127,121,119,116,123,121,115,119,103,109,135,122,124,124,115,114,116,97,112,5560 +70 Whitehall,Electricity,kWh,2012-07-30,117,104,104,119,112,107,101,118,109,108,117,129,119,143,161,162,166,185,188,202,197,200,191,189,194,199,196,194,195,198,194,190,182,184,167,161,153,146,132,132,126,126,125,127,123,123,119,115,7249 +70 Whitehall,Electricity,kWh,2012-07-31,115,118,116,119,124,118,119,119,112,126,127,127,135,156,157,168,181,189,192,196,195,204,198,199,201,208,206,202,196,198,197,191,193,184,178,166,154,145,140,132,131,130,136,126,130,126,121,115,7516 +70 Whitehall,Electricity,kWh,2012-08-01,122,111,118,122,109,103,130,119,115,123,127,131,135,149,165,173,183,187,204,207,217,212,202,202,204,200,199,199,202,203,202,201,193,190,178,168,156,150,141,139,133,130,128,139,130,125,120,116,7612 +70 Whitehall,Electricity,kWh,2012-08-02,126,122,117,120,122,123,119,120,123,125,127,131,134,156,158,170,178,194,205,215,214,205,203,204,205,210,205,209,210,207,208,205,202,196,191,180,167,158,145,139,141,144,136,130,133,133,122,119,7806 +70 Whitehall,Electricity,kWh,2012-08-03,128,117,121,123,123,117,115,124,114,120,129,136,131,156,162,169,175,186,197,204,207,206,198,196,202,204,198,196,201,196,194,193,186,185,172,164,158,0,0,0,0,0,0,0,0,0,0,0,6103 +70 Whitehall,Electricity,kWh,2012-08-04,123,121,119,122,122,110,120,116,119,120,118,120,119,126,122,127,122,125,135,124,128,131,134,134,136,129,129,131,132,129,131,131,126,130,133,131,125,122,126,123,124,122,128,122,121,121,107,111,5977 +70 Whitehall,Electricity,kWh,2012-08-05,114,115,116,115,119,101,116,113,116,113,112,118,104,120,120,122,120,120,120,121,126,126,121,120,122,123,122,131,137,125,121,131,126,125,131,133,122,120,120,119,119,125,119,123,118,117,117,112,5766 +70 Whitehall,Electricity,kWh,2012-08-06,119,118,120,121,120,118,118,118,121,126,128,134,140,152,164,171,185,202,201,205,205,208,209,199,197,203,198,200,205,197,196,189,181,174,178,167,160,141,134,132,125,129,130,131,125,124,113,117,7548 +70 Whitehall,Electricity,kWh,2012-08-07,113,104,121,130,115,103,100,98,124,133,114,112,114,136,148,174,180,185,191,194,189,185,190,196,190,191,190,188,194,186,186,185,176,173,168,157,146,136,132,129,127,129,126,120,116,120,116,114,7144 +70 Whitehall,Electricity,kWh,2012-08-08,117,119,118,121,122,125,116,116,119,128,129,129,135,155,162,175,181,193,200,197,205,207,208,207,209,211,209,210,208,206,203,202,196,192,186,181,171,164,152,145,140,137,133,135,136,132,129,128,7799 +70 Whitehall,Electricity,kWh,2012-08-09,128,126,124,126,130,132,122,123,126,131,129,136,138,156,162,175,186,196,215,217,218,214,210,209,211,207,204,209,205,204,197,199,192,192,181,174,166,156,151,147,145,136,131,135,141,135,126,130,7903 +70 Whitehall,Electricity,kWh,2012-08-10,132,129,119,118,128,128,126,126,122,130,135,136,142,159,175,174,181,187,197,212,206,210,208,213,204,205,203,210,207,203,198,195,190,184,178,171,165,159,153,153,146,145,136,139,132,130,131,129,7859 +70 Whitehall,Electricity,kWh,2012-08-11,128,124,127,119,124,122,120,118,123,121,123,122,122,126,122,124,130,132,135,134,139,135,136,132,138,133,134,134,135,133,137,132,133,130,124,128,128,127,124,131,123,122,132,123,119,121,123,114,6116 +70 Whitehall,Electricity,kWh,2012-08-12,119,120,123,129,119,120,118,117,116,120,117,120,120,119,117,121,118,122,127,128,125,130,137,140,140,129,133,141,144,141,142,135,138,144,140,141,134,134,137,136,132,124,128,124,117,124,118,116,6134 +70 Whitehall,Electricity,kWh,2012-08-13,120,127,118,115,115,116,112,114,116,122,123,127,131,151,153,160,181,191,193,207,201,204,200,200,202,201,202,200,200,199,194,195,186,181,175,167,155,144,136,132,130,126,128,133,126,128,123,124,7484 +70 Whitehall,Electricity,kWh,2012-08-14,121,129,121,128,131,130,126,126,132,133,135,138,140,162,165,172,181,189,198,204,209,208,208,210,205,209,206,206,201,200,199,195,198,188,178,170,162,152,148,146,137,135,135,137,133,127,126,120,7809 +70 Whitehall,Electricity,kWh,2012-08-15,130,129,121,129,132,123,119,124,131,136,133,138,143,157,169,179,187,196,203,214,215,214,215,212,211,212,216,208,209,209,200,195,181,173,168,158,151,141,138,127,129,125,124,126,122,120,115,111,7718 +70 Whitehall,Electricity,kWh,2012-08-16,120,120,118,122,121,116,118,118,120,127,128,132,133,153,160,168,179,186,203,208,206,207,200,206,203,200,199,195,205,203,201,193,192,180,176,165,150,140,125,128,131,127,123,126,134,127,114,113,7519 +70 Whitehall,Electricity,kWh,2012-08-17,123,119,119,128,121,112,114,114,125,129,125,128,137,158,157,160,171,185,196,201,199,203,202,197,204,201,202,202,204,201,204,196,192,181,177,167,166,156,147,144,141,146,133,129,134,136,124,121,7631 +70 Whitehall,Electricity,kWh,2012-08-18,130,132,132,124,129,128,125,125,125,131,125,125,122,124,117,116,115,118,126,137,134,135,135,136,135,137,137,139,137,144,146,152,144,144,150,146,145,147,146,147,139,137,142,136,139,140,130,135,6440 +70 Whitehall,Electricity,kWh,2012-08-19,138,138,129,136,135,132,132,129,134,131,132,136,134,133,126,124,133,134,140,147,142,147,149,145,151,152,149,145,151,156,151,151,148,141,152,147,143,139,148,146,137,138,129,138,130,124,124,126,6672 +70 Whitehall,Electricity,kWh,2012-08-20,128,124,123,132,118,122,115,121,123,132,125,135,141,148,159,172,178,186,210,210,205,200,205,202,203,207,201,204,198,204,196,196,193,184,174,166,158,149,142,143,140,140,133,135,133,128,123,120,7684 +70 Whitehall,Electricity,kWh,2012-08-21,128,114,118,123,123,114,117,124,118,125,132,134,137,144,165,171,181,187,195,205,207,200,201,207,202,202,200,207,202,203,197,193,190,183,180,170,161,144,140,135,135,139,132,125,122,126,121,112,7591 +70 Whitehall,Electricity,kWh,2012-08-22,122,123,115,122,117,114,115,118,118,124,129,129,134,148,162,163,172,183,189,197,206,205,199,194,198,204,206,201,197,191,198,193,191,183,178,165,150,142,137,134,127,132,125,127,121,116,111,108,7433 +70 Whitehall,Electricity,kWh,2012-08-23,119,114,115,115,121,110,114,113,120,125,128,127,132,147,156,163,173,180,197,206,204,199,206,205,204,203,204,203,200,195,193,187,183,177,170,155,149,139,125,124,125,121,124,116,123,120,118,106,7353 +70 Whitehall,Electricity,kWh,2012-08-24,118,115,105,116,107,116,104,110,118,126,119,123,121,144,150,158,162,176,184,195,200,191,194,186,184,185,194,198,183,180,182,181,172,163,155,142,133,134,127,118,117,117,120,123,117,119,112,111,7005 +70 Whitehall,Electricity,kWh,2012-08-25,118,120,111,114,119,113,113,111,115,109,113,111,116,112,117,119,115,118,113,116,119,119,117,126,117,124,121,117,117,116,114,118,117,112,113,111,111,111,113,111,109,111,112,113,111,109,107,102,5491 +70 Whitehall,Electricity,kWh,2012-08-26,115,111,110,109,95,111,114,102,97,97,119,102,102,93,121,108,104,113,110,98,119,119,110,109,113,114,113,114,114,122,119,113,111,112,119,113,112,110,111,110,110,110,109,104,103,95,88,82,5209 +70 Whitehall,Electricity,kWh,2012-08-27,105,94,87,108,96,88,107,106,93,99,99,103,94,97,103,99,89,105,104,104,92,109,105,106,102,94,108,107,104,105,104,106,104,102,106,108,102,106,108,103,104,103,105,107,109,102,99,93,4883 +70 Whitehall,Electricity,kWh,2012-08-28,105,105,85,92,90,92,90,93,106,117,114,109,113,135,141,151,157,167,183,184,185,181,183,183,187,184,186,186,189,184,180,177,168,165,157,147,141,129,123,122,119,116,120,119,113,103,99,97,6672 +70 Whitehall,Electricity,kWh,2012-08-29,103,104,100,105,102,102,103,102,106,111,117,117,121,139,156,170,181,188,196,194,198,191,189,184,192,185,188,189,189,187,182,179,174,167,161,154,149,143,136,123,113,111,114,115,114,113,110,103,6970 +70 Whitehall,Electricity,kWh,2012-08-30,114,115,113,109,101,100,104,104,106,114,114,128,132,152,157,167,174,184,192,194,193,189,189,184,187,183,186,184,180,183,178,175,167,166,159,152,146,134,122,114,112,108,115,109,102,104,104,100,6899 +70 Whitehall,Electricity,kWh,2012-08-31,108,108,106,106,107,102,100,97,102,110,116,123,124,142,151,160,165,181,182,183,177,177,174,174,175,185,179,182,172,176,172,169,164,161,157,151,143,132,122,118,112,120,110,115,106,105,102,94,6697 +70 Whitehall,Electricity,kWh,2012-09-01,109,108,103,101,105,103,101,98,104,101,103,95,98,104,101,116,111,108,109,109,109,110,115,116,122,120,119,114,116,121,121,120,117,117,121,119,119,114,116,108,99,106,105,110,101,103,98,99,5242 +70 Whitehall,Electricity,kWh,2012-09-02,105,104,98,101,99,100,102,100,99,100,101,105,101,98,108,109,104,107,106,106,106,116,114,110,106,108,112,118,122,121,122,124,117,122,123,119,121,115,120,114,115,115,113,115,113,114,111,100,5279 +70 Whitehall,Electricity,kWh,2012-09-03,116,114,109,112,104,104,106,103,105,121,120,121,124,145,160,171,181,188,196,201,197,198,197,203,210,209,208,205,205,205,200,199,198,188,187,179,172,159,146,143,133,128,129,135,125,122,117,109,7507 +70 Whitehall,Electricity,kWh,2012-09-04,125,119,115,117,116,119,114,114,117,129,125,126,134,153,165,175,181,193,201,207,206,202,210,213,211,213,209,210,203,201,198,205,203,200,186,188,186,169,157,152,149,143,138,134,130,128,117,117,7823 +70 Whitehall,Electricity,kWh,2012-09-05,120,117,112,117,119,105,117,118,113,110,132,129,124,134,168,174,175,186,191,200,204,206,208,207,205,205,214,204,203,206,199,195,192,193,184,168,160,148,142,129,127,126,125,128,118,123,110,106,7496 +70 Whitehall,Electricity,kWh,2012-09-06,114,121,104,119,114,112,113,115,117,115,119,125,133,146,143,170,182,186,190,192,199,197,187,186,199,208,217,221,203,205,212,209,197,192,182,177,169,147,145,138,129,129,125,126,118,116,110,108,7481 +70 Whitehall,Electricity,kWh,2012-09-07,115,114,111,112,115,108,112,102,103,106,132,141,124,139,156,182,179,193,200,208,209,207,214,208,207,205,212,209,206,205,202,198,197,192,182,178,170,161,152,146,142,130,126,136,129,127,116,111,7629 +70 Whitehall,Electricity,kWh,2012-09-08,117,120,116,117,118,117,114,113,113,112,111,115,108,111,104,123,122,126,125,128,131,140,139,139,135,133,136,135,139,138,132,133,137,143,134,139,125,125,130,123,124,122,123,117,118,116,113,108,5957 +70 Whitehall,Electricity,kWh,2012-09-09,117,116,,,,,,,,,,,,1354E,118,120,119,126,131,133,124,135,136,143,137,138,136,132,128,137,137,138,140,130,131,132,128,127,121,119,119,125,121,117,112,119,119,113,5928 +70 Whitehall,Electricity,kWh,2012-09-10,118,116,122,115,116,115,119,119,120,127,126,133,133,154,161,182,196,196,204,208,207,202,215,212,206,201,210,209,207,200,200,193,187,179,175,165,157,149,135,124,127,123,120,122,117,122,110,107,7561 +70 Whitehall,Electricity,kWh,2012-09-11,113,120,115,117,119,118,115,115,121,126,131,114,140,150,159,171,177,189,192,196,203,205,203,198,195,197,199,194,193,193,185,175,175,171,169,159,155,143,139,128,120,120,105,125,119,116,107,109,7298 +70 Whitehall,Electricity,kWh,2012-09-12,115,119,104,100,107,115,104,98,108,119,113,114,117,139,151,158,166,180,192,190,190,191,182,190,197,210,204,196,193,192,183,186,187,176,171,162,152,143,135,125,126,126,121,123,119,112,99,90,7090 +70 Whitehall,Electricity,kWh,2012-09-13,97,100,93,96,121,98,94,91,99,101,109,109,126,146,140,151,164,171,181,183,172,172,184,205,196,190,187,187,185,185,186,179,170,169,169,163,153,135,128,124,115,118,105,101,98,96,115,112,6769 +70 Whitehall,Electricity,kWh,2012-09-14,103,104,101,110,114,103,95,110,112,117,119,126,113,146,152,165,173,179,187,191,191,195,193,187,187,191,194,195,192,189,177,180,185,179,167,152,146,140,127,129,117,118,107,123,115,113,102,98,7009 +70 Whitehall,Electricity,kWh,2012-09-15,110,113,113,104,100,106,110,100,93,98,107,110,96,96,101,114,124,115,118,123,126,120,123,122,123,122,120,118,121,118,125,123,127,118,120,116,121,124,117,111,109,115,109,117,110,113,98,87,5424 +70 Whitehall,Electricity,kWh,2012-09-16,96,96,95,93,96,97,93,126,120,100,92,98,124,103,101,104,130,101,113,102,100,100,103,102,132,127,108,103,98,102,113,133,121,117,119,116,116,116,114,114,111,117,110,110,104,107,103,91,5187 +70 Whitehall,Electricity,kWh,2012-09-17,110,114,104,101,103,112,108,98,109,120,113,114,130,141,146,156,178,189,196,198,200,193,194,194,193,196,199,193,191,186,196,179,180,180,172,159,150,143,133,123,121,117,108,117,104,115,108,102,7086 +70 Whitehall,Electricity,kWh,2012-09-18,107,114,113,110,101,109,107,103,98,115,124,120,117,141,153,165,171,183,195,198,193,194,193,192,192,194,193,192,196,194,186,187,180,187,171,164,156,145,133,128,118,121,119,110,108,116,106,92,7104 +70 Whitehall,Electricity,kWh,2012-09-19,101,102,96,101,104,100,95,100,102,107,109,112,113,137,170,174,170,169,183,185,185,193,217,202,199,200,199,194,191,197,189,189,187,177,169,161,156,142,138,122,121,107,106,134,116,104,98,111,7034 +70 Whitehall,Electricity,kWh,2012-09-20,109,102,103,118,105,101,112,110,106,113,128,115,118,143,156,159,173,194,198,191,202,206,204,197,201,204,202,203,206,199,197,192,186,184,174,165,148,148,146,128,123,118,130,126,114,118,121,117,7313 +70 Whitehall,Electricity,kWh,2012-09-21,124,114,107,122,127,109,110,114,118,125,126,129,132,153,159,169,181,191,191,195,203,200,195,192,192,198,198,199,197,182,180,180,172,169,162,158,146,139,125,125,125,114,106,118,121,109,97,92,7190 +70 Whitehall,Electricity,kWh,2012-09-22,101,104,96,107,123,104,101,95,99,98,95,99,99,109,116,105,111,108,108,109,111,112,113,141,130,117,110,110,111,105,106,129,132,113,110,118,103,103,124,104,100,99,102,97,98,99,127,98,5209 +70 Whitehall,Electricity,kWh,2012-09-23,100,104,108,106,99,109,105,96,100,111,105,98,104,108,100,103,115,105,103,112,119,103,102,117,105,102,110,110,103,102,117,108,99,105,113,103,100,112,108,100,107,111,104,104,111,103,97,108,5074 +70 Whitehall,Electricity,kWh,2012-09-24,116,108,106,111,108,106,106,105,115,118,123,123,124,150,159,164,174,187,190,198,194,196,194,191,188,188,188,190,188,188,183,181,179,175,169,163,153,135,133,124,113,110,119,114,107,102,96,106,7058 +70 Whitehall,Electricity,kWh,2012-09-25,114,113,105,102,101,97,98,98,113,116,123,126,116,138,149,153,168,172,188,195,180,192,189,182,184,189,186,192,186,181,186,186,182,172,153,147,141,134,122,120,115,116,114,114,116,110,99,98,6871 +70 Whitehall,Electricity,kWh,2012-09-26,110,110,106,101,110,115,100,100,107,118,121,118,117,152,159,165,169,186,192,192,192,195,189,194,194,196,193,191,190,186,181,181,177,177,167,153,146,137,129,125,123,121,116,120,118,114,106,103,7062 +70 Whitehall,Electricity,kWh,2012-09-27,110,112,105,105,116,110,110,108,113,115,120,124,126,152,157,166,170,189,196,197,194,191,191,197,204,202,197,196,196,194,192,188,183,177,170,156,147,138,132,120,121,117,119,118,111,108,111,107,7178 +70 Whitehall,Electricity,kWh,2012-09-28,117,110,104,112,113,114,112,110,109,116,125,123,129,149,148,155,168,185,194,191,190,192,185,184,186,189,194,197,193,185,175,178,181,169,164,161,155,144,128,122,118,117,116,115,112,108,104,101,7047 +70 Whitehall,Electricity,kWh,2012-09-29,109,117,112,114,111,102,100,98,105,104,111,110,112,112,108,109,113,114,124,125,128,128,124,114,112,115,129,119,113,112,112,111,110,109,115,112,109,107,115,106,107,101,103,107,102,100,107,102,5339 +70 Whitehall,Electricity,kWh,2012-09-30,106,105,108,102,104,108,104,98,97,104,111,99,98,101,103,104,107,106,110,111,114,110,116,115,115,113,114,114,109,113,112,112,107,110,115,112,111,112,113,108,110,113,114,116,106,105,107,105,5207 diff --git a/ckanext/qa/tests/data/hourly_means.html b/ckanext/qa/tests/data/hourly_means.html new file mode 100644 index 00000000..abf73082 --- /dev/null +++ b/ckanext/qa/tests/data/hourly_means.html @@ -0,0 +1,354 @@ + + + + +Hourly Means inquiry form + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + +
+
+ +
+
+
+
Data
+ +
+
+
Models & Compass Variation
+ +
+ + +
+
Directional Drilling
+
+ +
+
+
+
+
+
+ + + +
+
+
Hourly Means
+
+ + Information about the observatory hourly mean data +

The hourly mean data are from the three UK observatories Eskdalemuir, + Lerwick and Hartland. Eskdalemuir data are available from 1911, + Lerwick from 1926, Hartland from 1957 and all three are available + up to yesterday's date. Values up to the end of 2003 have had final + baseline corrections applied and are the definitive absolute hourly + mean values. Data from 2004 onwards are all provisional and have + not had final baseline corrections applied. +

Values of declination (D), horizontal intensity (H) and vertical + intensity (Z) are available. The units of declination are degrees. + Declination is negative when west of true north. The units of horizontal + intensity and vertical intensity are nT. Vertical intensity is positive + in the downwards direction.

+ Values from Abinger (1926-1956) are available on + request. +

Please note : +

    +
  • Although the provisional data can sometimes be missing (denoted + by *****) when they are first made available, these gaps are usually + filled no later than one week after the end of the month and often + earlier than this. +
  • The following jumps have been applied to the data to correct + for site changes. All the jump values are given as new values + minus old values and have the units of minutes of arc for declination + and nT for horizontal and vertical intensity.
    + Eskdalemuir
    + 1990.0 - Dec. 0; Horiz. 11; Vert. 22
    + 1994.0 - Dec. 0; Horiz. -8; Vert. -23
    + Lerwick
    + 1934.0 - Dec. 0; Horiz. 0; Vert. 144
    + 1990.0 - Dec. 0; Horiz. 5; Vert. -8
    + 1996.0 - Dec. 0; Horiz. 0; Vert. 8
    + Hartland
    + 1980.0 - Dec. 0; Horiz. 0; Vert. -6
    + 1990.0 - Dec. 0; Horiz. -6; Vert. 23 +
+
+
+ Please enter your name and email address + +

+


+ Observatory code: + +

From Day of Month : + + Month (e.g. 6 for June): + + Year (e.g. 2010): + +

To Day of Month : + + Month : + + Year : + +

To submit the query, press this button: + + . +

To clear the form, press this button: + + . +

+ +
+
+
+ + + + +
+
+ + + diff --git a/ckanext/qa/tests/data/index.html b/ckanext/qa/tests/data/index.html new file mode 100644 index 00000000..309c5319 --- /dev/null +++ b/ckanext/qa/tests/data/index.html @@ -0,0 +1,82 @@ + + + + + + + + + +Directgov article ratings data archive + + + + + + + + + + + +
+ + + + + +
+ +
+ +
+ +

Directgov article ratings data archive

+ +

+ Click on the links below to download daily archives of ratings given by users to Directgov articles. The data is stored in CSV format and is available for public download. Please note, this data is released under the data.gov.uk terms and conditions and developers are subject to the data.gov.uk code of conduct. +

+ + Sep 2020
230920.csv

Jul 2020
100720.csv
080720.csv
060720.csv
050720.csv

Jul 2011
050711.csv

Feb 2011
270211.csv
260211.csv
250211.csv
240211.csv
230211.csv
220211.csv
210211.csv
200211.csv
190211.csv
180211.csv
170211.csv
160211.csv
150211.csv
140211.csv
130211.csv
120211.csv
110211.csv
100211.csv
090211.csv
080211.csv
070211.csv
060211.csv
050211.csv
040211.csv
030211.csv
020211.csv
010211.csv

Jan 2011
310111.csv
300111.csv
290111.csv
280111.csv
270111.csv
260111.csv
250111.csv
240111.csv
230111.csv
220111.csv
210111.csv
200111.csv
190111.csv
180111.csv
170111.csv
160111.csv
150111.csv
140111.csv
130111.csv
120111.csv
110111.csv
100111.csv
090111.csv
080111.csv
070111.csv
060111.csv
050111.csv
040111.csv
030111.csv
020111.csv
010111.csv

Dec 2010
311210.csv
301210.csv
291210.csv
281210.csv
271210.csv
261210.csv
251210.csv
241210.csv
231210.csv
221210.csv
211210.csv
201210.csv
191210.csv
181210.csv
171210.csv
161210.csv
151210.csv
141210.csv
131210.csv
121210.csv
111210.csv
101210.csv
091210.csv
081210.csv
071210.csv
061210.csv
051210.csv
041210.csv
031210.csv
021210.csv
011210.csv

Nov 2010
301110.csv
291110.csv
281110.csv
271110.csv
261110.csv
251110.csv
241110.csv
231110.csv
221110.csv
211110.csv
201110.csv
191110.csv
181110.csv
171110.csv
161110.csv
151110.csv
141110.csv
131110.csv
121110.csv
111110.csv
101110.csv
091110.csv
081110.csv
071110.csv
061110.csv
051110.csv
041110.csv
031110.csv
021110.csv
011110.csv

Oct 2010
311010.csv
301010.csv
291010.csv
281010.csv
271010.csv
261010.csv
251010.csv
241010.csv
231010.csv
221010.csv
211010.csv
201010.csv
191010.csv
181010.csv
171010.csv
161010.csv
151010.csv
141010.csv
131010.csv
121010.csv
111010.csv
101010.csv
091010.csv
081010.csv
061010.csv
051010.csv
041010.csv
031010.csv
021010.csv
011010.csv

Sep 2010
300910.csv
290910.csv
280910.csv
270910.csv
260910.csv
250910.csv
240910.csv
220910.csv
210910.csv
200910.csv
190910.csv
180910.csv
170910.csv
160910.csv
150910.csv
140910.csv
130910.csv
120910.csv
110910.csv
100910.csv
090910.csv
080910.csv
070910.csv
060910.csv
050910.csv
040910.csv
030910.csv
020910.csv
010910.csv

Aug 2010
310810.csv
300810.csv
290810.csv
280810.csv
270810.csv
260810.csv
250810.csv
240810.csv
230810.csv
220810.csv
210810.csv
200810.csv
190810.csv
180810.csv
170810.csv
160810.csv
150810.csv
140810.csv
130810.csv
120810.csv
110810.csv
100810.csv
090810.csv
080810.csv
070810.csv
060810.csv
050810.csv
040810.csv
030810.csv
020810.csv

Jul 2010
310710.csv
300710.csv
290710.csv
280710.csv
270710.csv
260710.csv
250710.csv
240710.csv
230710.csv
220710.csv
210710.csv
200710.csv
190710.csv
180710.csv
170710.csv
160710.csv
150710.csv
140710.csv
130710.csv
120710.csv
110710.csv
100710.csv
090710.csv
080710.csv
070710.csv
060710.csv
050710.csv
040710.csv
030710.csv
020710.csv
010710.csv

Jun 2010
300610.csv
290610.csv
280610.csv
270610.csv
260610.csv
250610.csv
240610.csv
230610.csv
220610.csv
210610.csv
200610.csv
190610.csv
180610.csv
170610.csv
160610.csv
150610.csv
140610.csv
130610.csv
120610.csv
110610.csv
100610.csv
090610.csv
080610.csv
070610.csv
060610.csv
050610.csv
040610.csv
030610.csv
020610.csv
010610.csv

May 2010
310510.csv
300510.csv
290510.csv
280510.csv
270510.csv
260510.csv
250510.csv
240510.csv
230510.csv
220510.csv
210510.csv
200510.csv
190510.csv
180510.csv
170510.csv
160510.csv
150510.csv
140510.csv
130510.csv
120510.csv
110510.csv
100510.csv
090510.csv
080510.csv
070510.csv
060510.csv
050510.csv
040510.csv
030510.csv
020510.csv
010510.csv

Apr 2010
300410.csv
290410.csv
280410.csv
270410.csv
260410.csv
250410.csv
240410.csv
230410.csv
220410.csv
210410.csv
200410.csv
190410.csv
180410.csv
170410.csv
160410.csv
150410.csv
140410.csv
130410.csv
120410.csv
110410.csv
100410.csv
090410.csv
080410.csv
070410.csv
060410.csv
050410.csv
040410.csv
030410.csv
020410.csv
010410.csv

Mar 2010
310310.csv
300310.csv
290310.csv

+ +
+ + + + + + + + + + diff --git a/ckanext/qa/tests/data/iwfg09_Phos_river_200911.csv b/ckanext/qa/tests/data/iwfg09_Phos_river_200911.csv new file mode 100644 index 00000000..10d6314c --- /dev/null +++ b/ckanext/qa/tests/data/iwfg09_Phos_river_200911.csv @@ -0,0 +1,27 @@ +Title:,Phosphate concentrations in rivers: 1995 to 2008,,,,,,,,, +Year:,1995-2008,,,,,,,,, +Geography:,"Environment Agency Regions, plus England and Wales",,,,,,,,, +Units:,Percentage of river length > 0.1mgP/l,,,,,,,,, +Source:,Environment Agency (EA),,,,,,,,, +URL:,,,,,,,,,, +Copyright:,Copyright of data and/or information presented or attached in this document may not reside solely with this Department.,,,,,,,,, +Nat. Statistic:,No,,,,,,,,, +Custodian,"Environment Statistics Service, Department for Environment, Food and Rural Affairs, Area 6E Ergon House, 17 Smith Square, London SW1P 3JR, 08459 33 55 77",,,,,,,,, +Contact:,enviro.statistics@defra.gsi.gov.uk,,,,,,,,, +Release Date:,November 2009,,,,,,,,, +Notes:,,,,,,,,,, +,,,,,,,,,, +,,,,,,,,,, +,,,,,,,,,, +Location,1995,,,,,,,,,Percentage of river length > 0.1mgP/l +Thames,80.7,2000,2001,2002,2003,2004,2005,2006,2007,2008 +South West,46.5,84.1,78,75.8,75.1,73.6,73.8,74.1,73.3,68.9 +Southern,68,41.4,42.4,43.6,44.5,43.6,43.2,40.5,39.5,37.7 +North West,34.2,64.7,63.3,61.6,61.4,61.5,62.1,59.7,57.4,55.6 +North East,43.5,33.5,33.5,33.9,32.1,34.6,35,33.6,30.3,29 +Midlands,73.7,46.3,46.3,45.8,44.5,41.9,37.4,35.5,35.1,32.3 +Anglian,85.1,78.2,78.5,78.1,78,77,74.9,71.7,67.2,65.8 +,,88.1,87.7,87.1,85.3,83.6,82.6,80.4,79,75.5 +Wales,10.2,,,,,,,,, +England,59.6,7.6,7.2,6.7,7.7,7.7,9.1,10.7,10.2,8.5 +,,62.1,61.6,61.3,60.4,59.7,58.5,56.4,54.1,51.7 diff --git a/ckanext/qa/tests/data/jncc_shapefile.shp b/ckanext/qa/tests/data/jncc_shapefile.shp new file mode 100644 index 00000000..19003842 Binary files /dev/null and b/ckanext/qa/tests/data/jncc_shapefile.shp differ diff --git a/ckanext/qa/tests/data/jobs.xml b/ckanext/qa/tests/data/jobs.xml new file mode 100644 index 00000000..083e7132 --- /dev/null +++ b/ckanext/qa/tests/data/jobs.xml @@ -0,0 +1,64 @@ + + + + Communications Officer (PO3) (Temporary Project Post) + Chief Executives Department, Corporate Communications Section + Temporary project post until 31 March 2015 + 03-OCT-12 + £31,754 - £34,549 per annum + + + Business Support Clerk (Job share) ('temporary review' post) (Scale 3) + Health and Environmental Services Department, Environmental Health Service + (There is one 'temporary review' job share post for six months, subject to review) + 24-SEP-12 + £16,054 - £17,161 per annum (pro-rata to hours worked) + + + Principal Management Accountant (PO7) (2 Posts) + Finance and Resources Department Finance and Performance Section + This is a ring fenced trawl for employees whose substantive grade is PO4 or above as at the closing date. + 26-SEP-12 + £41,616 - £44,299 per annum + + + Principal Financial Accountant (PO7) + Finance and Resources Department, Finance and Performance Section + 01-OCT-12 + £41,616 - £44,299 per annum + + + Human Resources Officer (PO2) + Health and Environmental Services Department, Directorate Support Section + 01-OCT-12 + £29,236 - £31,754 per annum + + + Principal Human Resources Advisor (PO8) (Employee Relations) (2 Posts) + Chief Executives Department, Human Resources Section + These posts are temporary cover posts for 12 months, subject to review. + 28-SEP-12 + £44,299 - £46,158 per annum + + + Business Assistant (HR/ Admin) (Temporary cover post) (Scale 6) + Parks and Leisure Department + Directorate Support + 28-SEP-12 + £22,221 - £23,708 + + + Resource Education and Promotion Officer (SO2) + Health & Environmental Services Department, Waste Management Service + This is a temporary cover post until 28 February 2013, subject to review. + 04-OCT-12 + £27,052 - £28,636 per annum + + + Assistant Print Technician (Scale 4) + Finance and Resources Department + This is a ring fenced trawl for Belfast City Council employees whose substantive grade is Scale 2 or above as at the closing date. + 05-OCT-12 + £17,161 - £19,126 per annum + + diff --git a/ckanext/qa/tests/data/manchester.gtfs b/ckanext/qa/tests/data/manchester.gtfs new file mode 100644 index 00000000..e8a523e2 Binary files /dev/null and b/ckanext/qa/tests/data/manchester.gtfs differ diff --git a/ckanext/qa/tests/data/mdr_test_lookup_tables.txt.zip b/ckanext/qa/tests/data/mdr_test_lookup_tables.txt.zip new file mode 100644 index 00000000..435f0751 Binary files /dev/null and b/ckanext/qa/tests/data/mdr_test_lookup_tables.txt.zip differ diff --git a/ckanext/qa/tests/data/news.rss b/ckanext/qa/tests/data/news.rss new file mode 100644 index 00000000..1fc00709 --- /dev/null +++ b/ckanext/qa/tests/data/news.rss @@ -0,0 +1,40 @@ + + + +Brent Council News +News on via Brent Council in the UK +en +http://www.brent.gov.uk/home.nsf/news.xml +Fri, 28 Sep 2012 +0100 +Have your say on Brents new SEN and Disability Strategyhttp://www.brent.gov.uk/home.nsf/News/LBB-1780Consultation on new SEN and Disability strategy28 Sep 2012 01:00:00 +Last Sky Ride this Sundayhttp://www.brent.gov.uk/home.nsf/News/LBB-1713Final Sky Rides in Brent28 Sep 2012 01:00:00 +Next Wembley Stadium event 29 September 2012http://www.brent.gov.uk/home.nsf/News/LBB-1779Next Wembley Stadium event - 11 September25 Sep 2012 01:00:00 +Give it a go Brent sports taster sessionshttp://www.brent.gov.uk/home.nsf/News/LBB-1778Give it a go Brent sports taster sessions20 Sep 2012 01:00:00 +Civic Centre is the greenest UK public officehttp://www.brent.gov.uk/home.nsf/News/LBB-1777Brent's Civic Centre achives outstanding rating17 Sep 2012 01:00:00 +Cricklewood job fairhttp://www.brent.gov.uk/home.nsf/News/LBB-1776Job fair in Cricklewood17 Sep 2012 01:00:00 +Apply for voluntary sector grantshttp://www.brent.gov.uk/home.nsf/News/LBB-1774Voluntary organisations in Brent have until 31 October this year to apply for the second round of funding from Brent Council's Voluntary Sector Initiative Fund. 13 Sep 2012 01:00:00 +Harlesden Town Garden community consultationhttp://www.brent.gov.uk/home.nsf/News/LBB-1775Harlesden Town Garden community consultation11 Sep 2012 01:00:00 +Kilburn Library reopens after refurbishmenthttp://www.brent.gov.uk/home.nsf/News/LBB-1773Kilburn Library reopens after refurbishment10 Sep 2012 01:00:00 +Civic Centre time capsule competitionhttp://www.brent.gov.uk/home.nsf/News/LBB-1772Civic Centre time capsule competition7 Sep 2012 01:00:00 +School transport servicehttp://www.brent.gov.uk/home.nsf/News/LBB-1771School transport service6 Sep 2012 01:00:00 +Burst water main on A406 North Circular Roadhttp://www.brent.gov.uk/home.nsf/News/LBB-1769Burst water main on A406 North Circular Road5 Sep 2012 01:00:00 +Civic Centre Consultation Arts and Culture Programmehttp://www.brent.gov.uk/home.nsf/News/LBB-1770Civic Centre Consultation - Arts and Culture Programme5 Sep 2012 01:00:00 +Next Wembley Stadium event 11 September 2012http://www.brent.gov.uk/home.nsf/News/LBB-1768Next Wembley Stadium event - 11 September4 Sep 2012 01:00:00 +Paralympic Flame dazzles Brenthttp://www.brent.gov.uk/home.nsf/News/LBB-1767Paralympic Flame dazzles Brent30 Aug 2012 01:00:00 +Have your say on NHS services in NW Londonhttp://www.brent.gov.uk/home.nsf/News/LBB-1766Have your say on NHS services in NW London29 Aug 2012 01:00:00 +Paralympic Torch updatehttp://www.brent.gov.uk/home.nsf/News/LBB-1765The Paralympic Torch Relay is running up to two hours late29 Aug 2012 01:00:00 +Young volunteers switch on older people to new technology at Brent librarieshttp://www.brent.gov.uk/home.nsf/News/LBB-1763Young volunteers switch on older people to new technology at Brent libraries28 Aug 2012 01:00:00 +Wake up and watch the paralympic torch relay in Brenthttp://www.brent.gov.uk/home.nsf/News/LBB-1757Wake up and watch the Paralympic Torch Relay in Brent24 Aug 2012 01:00:00 +Next Wembley Stadium event 25 August 2012http://www.brent.gov.uk/home.nsf/News/LBB-1762Next Wembley Stadium event - 25 August 201223 Aug 2012 01:00:00 +Kilburn Library Artist in residence opportunityhttp://www.brent.gov.uk/home.nsf/News/LBB-1761Kilburn Library Artist residence opportunity22 Aug 2012 01:00:00 +Roadworks on Wembley High Roadhttp://www.brent.gov.uk/home.nsf/News/LBB-1760Roadworks21 Aug 2012 01:00:00 +We want your London 2012 Olympic Games itemshttp://www.brent.gov.uk/home.nsf/News/LBB-1759We want your London 2012 Olympic Games items17 Aug 2012 01:00:00 +On your marks for Join In Local Sporthttp://www.brent.gov.uk/home.nsf/News/LBB-1756On your marks for Join In Local Sport15 Aug 2012 01:00:00 +Have your say on the future of Wembleyhttp://www.brent.gov.uk/home.nsf/News/LBB-1755Have your say on the future of Wembley14 Aug 2012 01:00:00 +Olympic Route Network ORN decommissioninghttp://www.brent.gov.uk/home.nsf/News/LBB-1754Olympic Route Network (ORN) decommissioning10 Aug 2012 01:00:00 +Olympic flame blazes through Brent http://www.brent.gov.uk/home.nsf/News/LBB-1753Olympic flame blazes through Brent 7 Aug 2012 01:00:00 +Calling all Brent musicianshttp://www.brent.gov.uk/home.nsf/News/LBB-1752Calling all Brent musicians6 Aug 2012 01:00:00 +Trinidad and Tobago cultural village http://www.brent.gov.uk/home.nsf/News/LBB-1751Trinidad &amp; Tobago Cultural Village3 Aug 2012 01:00:00 +Free rounders sessionshttp://www.brent.gov.uk/home.nsf/News/LBB-1750Free rounders sessions2 Aug 2012 01:00:00 + + diff --git a/ckanext/qa/tests/data/oldham_get_capabilities.wms b/ckanext/qa/tests/data/oldham_get_capabilities.wms new file mode 100644 index 00000000..ccc75c22 --- /dev/null +++ b/ckanext/qa/tests/data/oldham_get_capabilities.wms @@ -0,0 +1,3762 @@ + + + + + OGC:WMS + GeoServer Web Map Service + A compliant implementation of WMS plus most of the SLD extension (dynamic styling). Can also generate PDF, SVG, KML, GeoRSS + + WFS + WMS + GEOSERVER + + + + + Business Intelligence Service + Oldham Metropolitan Council + + + + +
Civic Centre, Level 8, West Street
+ Oldham + + OL1 1UT + UK +
+ 0161 770 3000 + + gis@oldham.gov.uk +
+ NONE + NONE +
+ + + + application/vnd.ogc.wms_xml + + + + + + + + + + + + + image/png + application/atom xml + application/atom+xml + application/openlayers + application/pdf + application/rss xml + application/rss+xml + application/vnd.google-earth.kml + application/vnd.google-earth.kml xml + application/vnd.google-earth.kml+xml + application/vnd.google-earth.kml+xml;mode=networklink + application/vnd.google-earth.kmz + application/vnd.google-earth.kmz xml + application/vnd.google-earth.kmz+xml + application/vnd.google-earth.kmz;mode=networklink + atom + image/geotiff + image/geotiff8 + image/gif + image/gif;subtype=animated + image/jpeg + image/png8 + image/png; mode=8bit + image/svg + image/svg xml + image/svg+xml + image/tiff + image/tiff8 + kml + kmz + openlayers + rss + text/html; subtype=openlayers + + + + + + + + + + text/plain + application/vnd.ogc.gml + application/vnd.ogc.gml/3.1.1 + text/html + application/json + + + + + + + + + + + + + application/vnd.ogc.wms_xml + + + + + + + + + + image/png + image/jpeg + image/gif + + + + + + + + + + application/vnd.ogc.sld+xml + + + + + + + + + + + application/vnd.ogc.se_xml + application/vnd.ogc.se_inimage + + + + GeoServer Web Map Service + A compliant implementation of WMS plus most of the SLD extension (dynamic styling). Can also generate PDF, SVG, KML, GeoRSS + + AUTO:42001 + AUTO:42002 + AUTO:42003 + AUTO:42004 + EPSG:WGS84(DD) + EPSG:2000 + EPSG:2001 + EPSG:2002 + EPSG:2003 + EPSG:2004 + EPSG:2005 + EPSG:2006 + EPSG:2007 + EPSG:2008 + EPSG:2009 + EPSG:2010 + EPSG:2011 + EPSG:2012 + EPSG:2013 + EPSG:2014 + EPSG:2015 + EPSG:2016 + EPSG:2017 + EPSG:2018 + EPSG:2019 + EPSG:2020 + EPSG:2021 + EPSG:2022 + EPSG:2023 + EPSG:2024 + EPSG:2025 + EPSG:2026 + EPSG:2027 + EPSG:2028 + EPSG:2029 + EPSG:2030 + EPSG:2031 + EPSG:2032 + EPSG:2033 + EPSG:2034 + EPSG:2035 + EPSG:2036 + EPSG:2037 + EPSG:2038 + EPSG:2039 + EPSG:2040 + EPSG:2041 + EPSG:2042 + EPSG:2043 + EPSG:2044 + EPSG:2045 + EPSG:2046 + EPSG:2047 + EPSG:2048 + EPSG:2049 + EPSG:2050 + EPSG:2051 + EPSG:2052 + EPSG:2053 + EPSG:2054 + EPSG:2055 + EPSG:2056 + EPSG:2057 + EPSG:2058 + EPSG:2059 + EPSG:2060 + EPSG:2061 + EPSG:2062 + EPSG:2063 + EPSG:2064 + EPSG:2065 + EPSG:2066 + EPSG:2067 + EPSG:2068 + EPSG:2069 + EPSG:2070 + EPSG:2071 + EPSG:2072 + EPSG:2073 + EPSG:2074 + EPSG:2075 + EPSG:2076 + EPSG:2077 + EPSG:2078 + EPSG:2079 + EPSG:2080 + EPSG:2081 + EPSG:2082 + EPSG:2083 + EPSG:2084 + EPSG:2085 + EPSG:2086 + EPSG:2087 + EPSG:2088 + EPSG:2089 + EPSG:2090 + EPSG:2091 + EPSG:2092 + EPSG:2093 + EPSG:2094 + EPSG:2095 + EPSG:2096 + EPSG:2097 + EPSG:2098 + EPSG:2099 + EPSG:2100 + EPSG:2101 + EPSG:2102 + EPSG:2103 + EPSG:2104 + EPSG:2105 + EPSG:2106 + EPSG:2107 + EPSG:2108 + EPSG:2109 + EPSG:2110 + EPSG:2111 + EPSG:2112 + EPSG:2113 + EPSG:2114 + EPSG:2115 + EPSG:2116 + EPSG:2117 + EPSG:2118 + EPSG:2119 + EPSG:2120 + EPSG:2121 + EPSG:2122 + EPSG:2123 + EPSG:2124 + EPSG:2125 + EPSG:2126 + EPSG:2127 + EPSG:2128 + EPSG:2129 + EPSG:2130 + EPSG:2131 + EPSG:2132 + EPSG:2133 + EPSG:2134 + EPSG:2135 + EPSG:2136 + EPSG:2137 + EPSG:2138 + EPSG:2139 + EPSG:2140 + EPSG:2141 + EPSG:2142 + EPSG:2143 + EPSG:2144 + EPSG:2145 + EPSG:2146 + EPSG:2147 + EPSG:2148 + EPSG:2149 + EPSG:2150 + EPSG:2151 + EPSG:2152 + EPSG:2153 + EPSG:2154 + EPSG:2155 + EPSG:2156 + EPSG:2157 + EPSG:2158 + EPSG:2159 + EPSG:2160 + EPSG:2161 + EPSG:2162 + EPSG:2163 + EPSG:2164 + EPSG:2165 + EPSG:2166 + EPSG:2167 + EPSG:2168 + EPSG:2169 + EPSG:2170 + EPSG:2171 + EPSG:2172 + EPSG:2173 + EPSG:2174 + EPSG:2175 + EPSG:2176 + EPSG:2177 + EPSG:2178 + EPSG:2179 + EPSG:2180 + EPSG:2188 + EPSG:2189 + EPSG:2190 + EPSG:2191 + EPSG:2192 + EPSG:2193 + EPSG:2194 + EPSG:2195 + EPSG:2196 + EPSG:2197 + EPSG:2198 + EPSG:2199 + EPSG:2200 + EPSG:2201 + EPSG:2202 + EPSG:2203 + EPSG:2204 + EPSG:2205 + EPSG:2206 + EPSG:2207 + EPSG:2208 + EPSG:2209 + EPSG:2210 + EPSG:2211 + EPSG:2212 + EPSG:2213 + EPSG:2214 + EPSG:2215 + EPSG:2216 + EPSG:2217 + EPSG:2218 + EPSG:2219 + EPSG:2220 + EPSG:2221 + EPSG:2222 + EPSG:2223 + EPSG:2224 + EPSG:2225 + EPSG:2226 + EPSG:2227 + EPSG:2228 + EPSG:2229 + EPSG:2230 + EPSG:2231 + EPSG:2232 + EPSG:2233 + EPSG:2234 + EPSG:2235 + EPSG:2236 + EPSG:2237 + EPSG:2238 + EPSG:2239 + EPSG:2240 + EPSG:2241 + EPSG:2242 + EPSG:2243 + EPSG:2244 + EPSG:2245 + EPSG:2246 + EPSG:2247 + EPSG:2248 + EPSG:2249 + EPSG:2250 + EPSG:2251 + EPSG:2252 + EPSG:2253 + EPSG:2254 + EPSG:2255 + EPSG:2256 + EPSG:2257 + EPSG:2258 + EPSG:2259 + EPSG:2260 + EPSG:2261 + EPSG:2262 + EPSG:2263 + EPSG:2264 + EPSG:2265 + EPSG:2266 + EPSG:2267 + EPSG:2268 + EPSG:2269 + EPSG:2270 + EPSG:2271 + EPSG:2272 + EPSG:2273 + EPSG:2274 + EPSG:2275 + EPSG:2276 + EPSG:2277 + EPSG:2278 + EPSG:2279 + EPSG:2280 + EPSG:2281 + EPSG:2282 + EPSG:2283 + EPSG:2284 + EPSG:2285 + EPSG:2286 + EPSG:2287 + EPSG:2288 + EPSG:2289 + EPSG:2290 + EPSG:2291 + EPSG:2292 + EPSG:2294 + EPSG:2295 + EPSG:2296 + EPSG:2297 + EPSG:2298 + EPSG:2299 + EPSG:2300 + EPSG:2301 + EPSG:2302 + EPSG:2303 + EPSG:2304 + EPSG:2305 + EPSG:2306 + EPSG:2307 + EPSG:2308 + EPSG:2309 + EPSG:2310 + EPSG:2311 + EPSG:2312 + EPSG:2313 + EPSG:2314 + EPSG:2315 + EPSG:2316 + EPSG:2317 + EPSG:2318 + EPSG:2319 + EPSG:2320 + EPSG:2321 + EPSG:2322 + EPSG:2323 + EPSG:2324 + EPSG:2325 + EPSG:2326 + EPSG:2327 + EPSG:2328 + EPSG:2329 + EPSG:2330 + EPSG:2331 + EPSG:2332 + EPSG:2333 + EPSG:2334 + EPSG:2335 + EPSG:2336 + EPSG:2337 + EPSG:2338 + EPSG:2339 + EPSG:2340 + EPSG:2341 + EPSG:2342 + EPSG:2343 + EPSG:2344 + EPSG:2345 + EPSG:2346 + EPSG:2347 + EPSG:2348 + EPSG:2349 + EPSG:2350 + EPSG:2351 + EPSG:2352 + EPSG:2353 + EPSG:2354 + EPSG:2355 + EPSG:2356 + EPSG:2357 + EPSG:2358 + EPSG:2359 + EPSG:2360 + EPSG:2361 + EPSG:2362 + EPSG:2363 + EPSG:2364 + EPSG:2365 + EPSG:2366 + EPSG:2367 + EPSG:2368 + EPSG:2369 + EPSG:2370 + EPSG:2371 + EPSG:2372 + EPSG:2373 + EPSG:2374 + EPSG:2375 + EPSG:2376 + EPSG:2377 + EPSG:2378 + EPSG:2379 + EPSG:2380 + EPSG:2381 + EPSG:2382 + EPSG:2383 + EPSG:2384 + EPSG:2385 + EPSG:2386 + EPSG:2387 + EPSG:2388 + EPSG:2389 + EPSG:2390 + EPSG:2391 + EPSG:2392 + EPSG:2393 + EPSG:2394 + EPSG:2395 + EPSG:2396 + EPSG:2397 + EPSG:2398 + EPSG:2399 + EPSG:2400 + EPSG:2401 + EPSG:2402 + EPSG:2403 + EPSG:2404 + EPSG:2405 + EPSG:2406 + EPSG:2407 + EPSG:2408 + EPSG:2409 + EPSG:2410 + EPSG:2411 + EPSG:2412 + EPSG:2413 + EPSG:2414 + EPSG:2415 + EPSG:2416 + EPSG:2417 + EPSG:2418 + EPSG:2419 + EPSG:2420 + EPSG:2421 + EPSG:2422 + EPSG:2423 + EPSG:2424 + EPSG:2425 + EPSG:2426 + EPSG:2427 + EPSG:2428 + EPSG:2429 + EPSG:2430 + EPSG:2431 + EPSG:2432 + EPSG:2433 + EPSG:2434 + EPSG:2435 + EPSG:2436 + EPSG:2437 + EPSG:2438 + EPSG:2439 + EPSG:2440 + EPSG:2441 + EPSG:2442 + EPSG:2443 + EPSG:2444 + EPSG:2445 + EPSG:2446 + EPSG:2447 + EPSG:2448 + EPSG:2449 + EPSG:2450 + EPSG:2451 + EPSG:2452 + EPSG:2453 + EPSG:2454 + EPSG:2455 + EPSG:2456 + EPSG:2457 + EPSG:2458 + EPSG:2459 + EPSG:2460 + EPSG:2461 + EPSG:2462 + EPSG:2463 + EPSG:2464 + EPSG:2465 + EPSG:2466 + EPSG:2467 + EPSG:2468 + EPSG:2469 + EPSG:2470 + EPSG:2471 + EPSG:2472 + EPSG:2473 + EPSG:2474 + EPSG:2475 + EPSG:2476 + EPSG:2477 + EPSG:2478 + EPSG:2479 + EPSG:2480 + EPSG:2481 + EPSG:2482 + EPSG:2483 + EPSG:2484 + EPSG:2485 + EPSG:2486 + EPSG:2487 + EPSG:2488 + EPSG:2489 + EPSG:2490 + EPSG:2491 + EPSG:2492 + EPSG:2493 + EPSG:2494 + EPSG:2495 + EPSG:2496 + EPSG:2497 + EPSG:2498 + EPSG:2499 + EPSG:2500 + EPSG:2501 + EPSG:2502 + EPSG:2503 + EPSG:2504 + EPSG:2505 + EPSG:2506 + EPSG:2507 + EPSG:2508 + EPSG:2509 + EPSG:2510 + EPSG:2511 + EPSG:2512 + EPSG:2513 + EPSG:2514 + EPSG:2515 + EPSG:2516 + EPSG:2517 + EPSG:2518 + EPSG:2519 + EPSG:2520 + EPSG:2521 + EPSG:2522 + EPSG:2523 + EPSG:2524 + EPSG:2525 + EPSG:2526 + EPSG:2527 + EPSG:2528 + EPSG:2529 + EPSG:2530 + EPSG:2531 + EPSG:2532 + EPSG:2533 + EPSG:2534 + EPSG:2535 + EPSG:2536 + EPSG:2537 + EPSG:2538 + EPSG:2539 + EPSG:2540 + EPSG:2541 + EPSG:2542 + EPSG:2543 + EPSG:2544 + EPSG:2545 + EPSG:2546 + EPSG:2547 + EPSG:2548 + EPSG:2549 + EPSG:2550 + EPSG:2551 + EPSG:2552 + EPSG:2553 + EPSG:2554 + EPSG:2555 + EPSG:2556 + EPSG:2557 + EPSG:2558 + EPSG:2559 + EPSG:2560 + EPSG:2561 + EPSG:2562 + EPSG:2563 + EPSG:2564 + EPSG:2565 + EPSG:2566 + EPSG:2567 + EPSG:2568 + EPSG:2569 + EPSG:2570 + EPSG:2571 + EPSG:2572 + EPSG:2573 + EPSG:2574 + EPSG:2575 + EPSG:2576 + EPSG:2577 + EPSG:2578 + EPSG:2579 + EPSG:2580 + EPSG:2581 + EPSG:2582 + EPSG:2583 + EPSG:2584 + EPSG:2585 + EPSG:2586 + EPSG:2587 + EPSG:2588 + EPSG:2589 + EPSG:2590 + EPSG:2591 + EPSG:2592 + EPSG:2593 + EPSG:2594 + EPSG:2595 + EPSG:2596 + EPSG:2597 + EPSG:2598 + EPSG:2599 + EPSG:2600 + EPSG:2601 + EPSG:2602 + EPSG:2603 + EPSG:2604 + EPSG:2605 + EPSG:2606 + EPSG:2607 + EPSG:2608 + EPSG:2609 + EPSG:2610 + EPSG:2611 + EPSG:2612 + EPSG:2613 + EPSG:2614 + EPSG:2615 + EPSG:2616 + EPSG:2617 + EPSG:2618 + EPSG:2619 + EPSG:2620 + EPSG:2621 + EPSG:2622 + EPSG:2623 + EPSG:2624 + EPSG:2625 + EPSG:2626 + EPSG:2627 + EPSG:2628 + EPSG:2629 + EPSG:2630 + EPSG:2631 + EPSG:2632 + EPSG:2633 + EPSG:2634 + EPSG:2635 + EPSG:2636 + EPSG:2637 + EPSG:2638 + EPSG:2639 + EPSG:2640 + EPSG:2641 + EPSG:2642 + EPSG:2643 + EPSG:2644 + EPSG:2645 + EPSG:2646 + EPSG:2647 + EPSG:2648 + EPSG:2649 + EPSG:2650 + EPSG:2651 + EPSG:2652 + EPSG:2653 + EPSG:2654 + EPSG:2655 + EPSG:2656 + EPSG:2657 + EPSG:2658 + EPSG:2659 + EPSG:2660 + EPSG:2661 + EPSG:2662 + EPSG:2663 + EPSG:2664 + EPSG:2665 + EPSG:2666 + EPSG:2667 + EPSG:2668 + EPSG:2669 + EPSG:2670 + EPSG:2671 + EPSG:2672 + EPSG:2673 + EPSG:2674 + EPSG:2675 + EPSG:2676 + EPSG:2677 + EPSG:2678 + EPSG:2679 + EPSG:2680 + EPSG:2681 + EPSG:2682 + EPSG:2683 + EPSG:2684 + EPSG:2685 + EPSG:2686 + EPSG:2687 + EPSG:2688 + EPSG:2689 + EPSG:2690 + EPSG:2691 + EPSG:2692 + EPSG:2693 + EPSG:2694 + EPSG:2695 + EPSG:2696 + EPSG:2697 + EPSG:2698 + EPSG:2699 + EPSG:2700 + EPSG:2701 + EPSG:2702 + EPSG:2703 + EPSG:2704 + EPSG:2705 + EPSG:2706 + EPSG:2707 + EPSG:2708 + EPSG:2709 + EPSG:2710 + EPSG:2711 + EPSG:2712 + EPSG:2713 + EPSG:2714 + EPSG:2715 + EPSG:2716 + EPSG:2717 + EPSG:2718 + EPSG:2719 + EPSG:2720 + EPSG:2721 + EPSG:2722 + EPSG:2723 + EPSG:2724 + EPSG:2725 + EPSG:2726 + EPSG:2727 + EPSG:2728 + EPSG:2729 + EPSG:2730 + EPSG:2731 + EPSG:2732 + EPSG:2733 + EPSG:2734 + EPSG:2735 + EPSG:2736 + EPSG:2737 + EPSG:2738 + EPSG:2739 + EPSG:2740 + EPSG:2741 + EPSG:2742 + EPSG:2743 + EPSG:2744 + EPSG:2745 + EPSG:2746 + EPSG:2747 + EPSG:2748 + EPSG:2749 + EPSG:2750 + EPSG:2751 + EPSG:2752 + EPSG:2753 + EPSG:2754 + EPSG:2755 + EPSG:2756 + EPSG:2757 + EPSG:2758 + EPSG:2759 + EPSG:2760 + EPSG:2761 + EPSG:2762 + EPSG:2763 + EPSG:2764 + EPSG:2765 + EPSG:2766 + EPSG:2767 + EPSG:2768 + EPSG:2769 + EPSG:2770 + EPSG:2771 + EPSG:2772 + EPSG:2773 + EPSG:2774 + EPSG:2775 + EPSG:2776 + EPSG:2777 + EPSG:2778 + EPSG:2779 + EPSG:2780 + EPSG:2781 + EPSG:2782 + EPSG:2783 + EPSG:2784 + EPSG:2785 + EPSG:2786 + EPSG:2787 + EPSG:2788 + EPSG:2789 + EPSG:2790 + EPSG:2791 + EPSG:2792 + EPSG:2793 + EPSG:2794 + EPSG:2795 + EPSG:2796 + EPSG:2797 + EPSG:2798 + EPSG:2799 + EPSG:2800 + EPSG:2801 + EPSG:2802 + EPSG:2803 + EPSG:2804 + EPSG:2805 + EPSG:2806 + EPSG:2807 + EPSG:2808 + EPSG:2809 + EPSG:2810 + EPSG:2811 + EPSG:2812 + EPSG:2813 + EPSG:2814 + EPSG:2815 + EPSG:2816 + EPSG:2817 + EPSG:2818 + EPSG:2819 + EPSG:2820 + EPSG:2821 + EPSG:2822 + EPSG:2823 + EPSG:2824 + EPSG:2825 + EPSG:2826 + EPSG:2827 + EPSG:2828 + EPSG:2829 + EPSG:2830 + EPSG:2831 + EPSG:2832 + EPSG:2833 + EPSG:2834 + EPSG:2835 + EPSG:2836 + EPSG:2837 + EPSG:2838 + EPSG:2839 + EPSG:2840 + EPSG:2841 + EPSG:2842 + EPSG:2843 + EPSG:2844 + EPSG:2845 + EPSG:2846 + EPSG:2847 + EPSG:2848 + EPSG:2849 + EPSG:2850 + EPSG:2851 + EPSG:2852 + EPSG:2853 + EPSG:2854 + EPSG:2855 + EPSG:2856 + EPSG:2857 + EPSG:2858 + EPSG:2859 + EPSG:2860 + EPSG:2861 + EPSG:2862 + EPSG:2863 + EPSG:2864 + EPSG:2865 + EPSG:2866 + EPSG:2867 + EPSG:2868 + EPSG:2869 + EPSG:2870 + EPSG:2871 + EPSG:2872 + EPSG:2873 + EPSG:2874 + EPSG:2875 + EPSG:2876 + EPSG:2877 + EPSG:2878 + EPSG:2879 + EPSG:2880 + EPSG:2881 + EPSG:2882 + EPSG:2883 + EPSG:2884 + EPSG:2885 + EPSG:2886 + EPSG:2887 + EPSG:2888 + EPSG:2889 + EPSG:2890 + EPSG:2891 + EPSG:2892 + EPSG:2893 + EPSG:2894 + EPSG:2895 + EPSG:2896 + EPSG:2897 + EPSG:2898 + EPSG:2899 + EPSG:2900 + EPSG:2901 + EPSG:2902 + EPSG:2903 + EPSG:2904 + EPSG:2905 + EPSG:2906 + EPSG:2907 + EPSG:2908 + EPSG:2909 + EPSG:2910 + EPSG:2911 + EPSG:2912 + EPSG:2913 + EPSG:2914 + EPSG:2915 + EPSG:2916 + EPSG:2917 + EPSG:2918 + EPSG:2919 + EPSG:2920 + EPSG:2921 + EPSG:2922 + EPSG:2923 + EPSG:2924 + EPSG:2925 + EPSG:2926 + EPSG:2927 + EPSG:2928 + EPSG:2929 + EPSG:2930 + EPSG:2931 + EPSG:2932 + EPSG:2933 + EPSG:2934 + EPSG:2935 + EPSG:2936 + EPSG:2937 + EPSG:2938 + EPSG:2939 + EPSG:2940 + EPSG:2941 + EPSG:2942 + EPSG:2943 + EPSG:2944 + EPSG:2945 + EPSG:2946 + EPSG:2947 + EPSG:2948 + EPSG:2949 + EPSG:2950 + EPSG:2951 + EPSG:2952 + EPSG:2953 + EPSG:2954 + EPSG:2955 + EPSG:2956 + EPSG:2957 + EPSG:2958 + EPSG:2959 + EPSG:2960 + EPSG:2961 + EPSG:2962 + EPSG:2963 + EPSG:2964 + EPSG:2965 + EPSG:2966 + EPSG:2967 + EPSG:2968 + EPSG:2969 + EPSG:2970 + EPSG:2971 + EPSG:2972 + EPSG:2973 + EPSG:2975 + EPSG:2976 + EPSG:2977 + EPSG:2978 + EPSG:2979 + EPSG:2980 + EPSG:2981 + EPSG:2982 + EPSG:2983 + EPSG:2984 + EPSG:2985 + EPSG:2986 + EPSG:2987 + EPSG:2988 + EPSG:2989 + EPSG:2990 + EPSG:2991 + EPSG:2992 + EPSG:2993 + EPSG:2994 + EPSG:2995 + EPSG:2996 + EPSG:2997 + EPSG:2998 + EPSG:2999 + EPSG:3000 + EPSG:3001 + EPSG:3002 + EPSG:3003 + EPSG:3004 + EPSG:3005 + EPSG:3006 + EPSG:3007 + EPSG:3008 + EPSG:3009 + EPSG:3010 + EPSG:3011 + EPSG:3012 + EPSG:3013 + EPSG:3014 + EPSG:3015 + EPSG:3016 + EPSG:3017 + EPSG:3018 + EPSG:3019 + EPSG:3020 + EPSG:3021 + EPSG:3022 + EPSG:3023 + EPSG:3024 + EPSG:3025 + EPSG:3026 + EPSG:3027 + EPSG:3028 + EPSG:3029 + EPSG:3030 + EPSG:3031 + EPSG:3032 + EPSG:3033 + EPSG:3034 + EPSG:3035 + EPSG:3036 + EPSG:3037 + EPSG:3038 + EPSG:3039 + EPSG:3040 + EPSG:3041 + EPSG:3042 + EPSG:3043 + EPSG:3044 + EPSG:3045 + EPSG:3046 + EPSG:3047 + EPSG:3048 + EPSG:3049 + EPSG:3050 + EPSG:3051 + EPSG:3052 + EPSG:3053 + EPSG:3054 + EPSG:3055 + EPSG:3056 + EPSG:3057 + EPSG:3058 + EPSG:3059 + EPSG:3060 + EPSG:3061 + EPSG:3062 + EPSG:3063 + EPSG:3064 + EPSG:3065 + EPSG:3066 + EPSG:3067 + EPSG:3068 + EPSG:3069 + EPSG:3070 + EPSG:3071 + EPSG:3072 + EPSG:3073 + EPSG:3074 + EPSG:3075 + EPSG:3076 + EPSG:3077 + EPSG:3078 + EPSG:3079 + EPSG:3080 + EPSG:3081 + EPSG:3082 + EPSG:3083 + EPSG:3084 + EPSG:3085 + EPSG:3086 + EPSG:3087 + EPSG:3088 + EPSG:3089 + EPSG:3090 + EPSG:3091 + EPSG:3092 + EPSG:3093 + EPSG:3094 + EPSG:3095 + EPSG:3096 + EPSG:3097 + EPSG:3098 + EPSG:3099 + EPSG:3100 + EPSG:3101 + EPSG:3102 + EPSG:3103 + EPSG:3104 + EPSG:3105 + EPSG:3106 + EPSG:3107 + EPSG:3108 + EPSG:3109 + EPSG:3110 + EPSG:3111 + EPSG:3112 + EPSG:3113 + EPSG:3114 + EPSG:3115 + EPSG:3116 + EPSG:3117 + EPSG:3118 + EPSG:3119 + EPSG:3120 + EPSG:3121 + EPSG:3122 + EPSG:3123 + EPSG:3124 + EPSG:3125 + EPSG:3126 + EPSG:3127 + EPSG:3128 + EPSG:3129 + EPSG:3130 + EPSG:3131 + EPSG:3132 + EPSG:3133 + EPSG:3134 + EPSG:3135 + EPSG:3136 + EPSG:3137 + EPSG:3138 + EPSG:3139 + EPSG:3140 + EPSG:3141 + EPSG:3142 + EPSG:3143 + EPSG:3144 + EPSG:3145 + EPSG:3146 + EPSG:3147 + EPSG:3148 + EPSG:3149 + EPSG:3150 + EPSG:3151 + EPSG:3152 + EPSG:3153 + EPSG:3154 + EPSG:3155 + EPSG:3156 + EPSG:3157 + EPSG:3158 + EPSG:3159 + EPSG:3160 + EPSG:3161 + EPSG:3162 + EPSG:3163 + EPSG:3164 + EPSG:3165 + EPSG:3166 + EPSG:3167 + EPSG:3168 + EPSG:3169 + EPSG:3170 + EPSG:3171 + EPSG:3172 + EPSG:3173 + EPSG:3174 + EPSG:3175 + EPSG:3176 + EPSG:3177 + EPSG:3178 + EPSG:3179 + EPSG:3180 + EPSG:3181 + EPSG:3182 + EPSG:3183 + EPSG:3184 + EPSG:3185 + EPSG:3186 + EPSG:3187 + EPSG:3188 + EPSG:3189 + EPSG:3190 + EPSG:3191 + EPSG:3192 + EPSG:3193 + EPSG:3194 + EPSG:3195 + EPSG:3196 + EPSG:3197 + EPSG:3198 + EPSG:3199 + EPSG:3200 + EPSG:3201 + EPSG:3202 + EPSG:3203 + EPSG:3204 + EPSG:3205 + EPSG:3206 + EPSG:3207 + EPSG:3208 + EPSG:3209 + EPSG:3210 + EPSG:3211 + EPSG:3212 + EPSG:3213 + EPSG:3214 + EPSG:3215 + EPSG:3216 + EPSG:3217 + EPSG:3218 + EPSG:3219 + EPSG:3220 + EPSG:3221 + EPSG:3222 + EPSG:3223 + EPSG:3224 + EPSG:3225 + EPSG:3226 + EPSG:3227 + EPSG:3228 + EPSG:3229 + EPSG:3230 + EPSG:3231 + EPSG:3232 + EPSG:3233 + EPSG:3234 + EPSG:3235 + EPSG:3236 + EPSG:3237 + EPSG:3238 + EPSG:3239 + EPSG:3240 + EPSG:3241 + EPSG:3242 + EPSG:3243 + EPSG:3244 + EPSG:3245 + EPSG:3246 + EPSG:3247 + EPSG:3248 + EPSG:3249 + EPSG:3250 + EPSG:3251 + EPSG:3252 + EPSG:3253 + EPSG:3254 + EPSG:3255 + EPSG:3256 + EPSG:3257 + EPSG:3258 + EPSG:3259 + EPSG:3260 + EPSG:3261 + EPSG:3262 + EPSG:3263 + EPSG:3264 + EPSG:3265 + EPSG:3266 + EPSG:3267 + EPSG:3268 + EPSG:3269 + EPSG:3270 + EPSG:3271 + EPSG:3272 + EPSG:3273 + EPSG:3274 + EPSG:3275 + EPSG:3276 + EPSG:3277 + EPSG:3278 + EPSG:3279 + EPSG:3280 + EPSG:3281 + EPSG:3282 + EPSG:3283 + EPSG:3284 + EPSG:3285 + EPSG:3286 + EPSG:3287 + EPSG:3288 + EPSG:3289 + EPSG:3290 + EPSG:3291 + EPSG:3292 + EPSG:3293 + EPSG:3294 + EPSG:3295 + EPSG:3296 + EPSG:3297 + EPSG:3298 + EPSG:3299 + EPSG:3300 + EPSG:3301 + EPSG:3302 + EPSG:3303 + EPSG:3304 + EPSG:3305 + EPSG:3306 + EPSG:3307 + EPSG:3308 + EPSG:3309 + EPSG:3310 + EPSG:3311 + EPSG:3312 + EPSG:3313 + EPSG:3314 + EPSG:3315 + EPSG:3316 + EPSG:3317 + EPSG:3318 + EPSG:3319 + EPSG:3320 + EPSG:3321 + EPSG:3322 + EPSG:3323 + EPSG:3324 + EPSG:3325 + EPSG:3326 + EPSG:3327 + EPSG:3328 + EPSG:3329 + EPSG:3330 + EPSG:3331 + EPSG:3332 + EPSG:3333 + EPSG:3334 + EPSG:3335 + EPSG:3336 + EPSG:3337 + EPSG:3338 + EPSG:3339 + EPSG:3340 + EPSG:3341 + EPSG:3342 + EPSG:3343 + EPSG:3344 + EPSG:3345 + EPSG:3346 + EPSG:3347 + EPSG:3348 + EPSG:3349 + EPSG:3350 + EPSG:3351 + EPSG:3352 + EPSG:3353 + EPSG:3354 + EPSG:3355 + EPSG:3356 + EPSG:3357 + EPSG:3358 + EPSG:3359 + EPSG:3360 + EPSG:3361 + EPSG:3362 + EPSG:3363 + EPSG:3364 + EPSG:3365 + EPSG:3366 + EPSG:3367 + EPSG:3368 + EPSG:3369 + EPSG:3370 + EPSG:3371 + EPSG:3372 + EPSG:3373 + EPSG:3374 + EPSG:3375 + EPSG:3376 + EPSG:3377 + EPSG:3378 + EPSG:3379 + EPSG:3380 + EPSG:3381 + EPSG:3382 + EPSG:3383 + EPSG:3384 + EPSG:3385 + EPSG:3386 + EPSG:3387 + EPSG:3388 + EPSG:3389 + EPSG:3390 + EPSG:3391 + EPSG:3392 + EPSG:3393 + EPSG:3394 + EPSG:3395 + EPSG:3396 + EPSG:3397 + EPSG:3398 + EPSG:3399 + EPSG:3400 + EPSG:3401 + EPSG:3402 + EPSG:3403 + EPSG:3404 + EPSG:3405 + EPSG:3406 + EPSG:3407 + EPSG:3408 + EPSG:3409 + EPSG:3410 + EPSG:3411 + EPSG:3412 + EPSG:3413 + EPSG:3414 + EPSG:3415 + EPSG:3416 + EPSG:3417 + EPSG:3418 + EPSG:3419 + EPSG:3420 + EPSG:3421 + EPSG:3422 + EPSG:3423 + EPSG:3424 + EPSG:3425 + EPSG:3426 + EPSG:3427 + EPSG:3428 + EPSG:3429 + EPSG:3430 + EPSG:3431 + EPSG:3432 + EPSG:3433 + EPSG:3434 + EPSG:3435 + EPSG:3436 + EPSG:3437 + EPSG:3438 + EPSG:3439 + EPSG:3440 + EPSG:3441 + EPSG:3442 + EPSG:3443 + EPSG:3444 + EPSG:3445 + EPSG:3446 + EPSG:3447 + EPSG:3448 + EPSG:3449 + EPSG:3450 + EPSG:3451 + EPSG:3452 + EPSG:3453 + EPSG:3454 + EPSG:3455 + EPSG:3456 + EPSG:3457 + EPSG:3458 + EPSG:3459 + EPSG:3460 + EPSG:3461 + EPSG:3462 + EPSG:3463 + EPSG:3464 + EPSG:3465 + EPSG:3466 + EPSG:3467 + EPSG:3468 + EPSG:3469 + EPSG:3470 + EPSG:3471 + EPSG:3472 + EPSG:3473 + EPSG:3474 + EPSG:3475 + EPSG:3476 + EPSG:3477 + EPSG:3478 + EPSG:3479 + EPSG:3480 + EPSG:3481 + EPSG:3482 + EPSG:3483 + EPSG:3484 + EPSG:3485 + EPSG:3486 + EPSG:3487 + EPSG:3488 + EPSG:3489 + EPSG:3490 + EPSG:3491 + EPSG:3492 + EPSG:3493 + EPSG:3494 + EPSG:3495 + EPSG:3496 + EPSG:3497 + EPSG:3498 + EPSG:3499 + EPSG:3500 + EPSG:3501 + EPSG:3502 + EPSG:3503 + EPSG:3504 + EPSG:3505 + EPSG:3506 + EPSG:3507 + EPSG:3508 + EPSG:3509 + EPSG:3510 + EPSG:3511 + EPSG:3512 + EPSG:3513 + EPSG:3514 + EPSG:3515 + EPSG:3516 + EPSG:3517 + EPSG:3518 + EPSG:3519 + EPSG:3520 + EPSG:3521 + EPSG:3522 + EPSG:3523 + EPSG:3524 + EPSG:3525 + EPSG:3526 + EPSG:3527 + EPSG:3528 + EPSG:3529 + EPSG:3530 + EPSG:3531 + EPSG:3532 + EPSG:3533 + EPSG:3534 + EPSG:3535 + EPSG:3536 + EPSG:3537 + EPSG:3538 + EPSG:3539 + EPSG:3540 + EPSG:3541 + EPSG:3542 + EPSG:3543 + EPSG:3544 + EPSG:3545 + EPSG:3546 + EPSG:3547 + EPSG:3548 + EPSG:3549 + EPSG:3550 + EPSG:3551 + EPSG:3552 + EPSG:3553 + EPSG:3554 + EPSG:3555 + EPSG:3556 + EPSG:3557 + EPSG:3558 + EPSG:3559 + EPSG:3560 + EPSG:3561 + EPSG:3562 + EPSG:3563 + EPSG:3564 + EPSG:3565 + EPSG:3566 + EPSG:3567 + EPSG:3568 + EPSG:3569 + EPSG:3570 + EPSG:3571 + EPSG:3572 + EPSG:3573 + EPSG:3574 + EPSG:3575 + EPSG:3576 + EPSG:3577 + EPSG:3578 + EPSG:3579 + EPSG:3580 + EPSG:3581 + EPSG:3582 + EPSG:3583 + EPSG:3584 + EPSG:3585 + EPSG:3586 + EPSG:3587 + EPSG:3588 + EPSG:3589 + EPSG:3590 + EPSG:3591 + EPSG:3592 + EPSG:3593 + EPSG:3594 + EPSG:3595 + EPSG:3596 + EPSG:3597 + EPSG:3598 + EPSG:3599 + EPSG:3600 + EPSG:3601 + EPSG:3602 + EPSG:3603 + EPSG:3604 + EPSG:3605 + EPSG:3606 + EPSG:3607 + EPSG:3608 + EPSG:3609 + EPSG:3610 + EPSG:3611 + EPSG:3612 + EPSG:3613 + EPSG:3614 + EPSG:3615 + EPSG:3616 + EPSG:3617 + EPSG:3618 + EPSG:3619 + EPSG:3620 + EPSG:3621 + EPSG:3622 + EPSG:3623 + EPSG:3624 + EPSG:3625 + EPSG:3626 + EPSG:3627 + EPSG:3628 + EPSG:3629 + EPSG:3630 + EPSG:3631 + EPSG:3632 + EPSG:3633 + EPSG:3634 + EPSG:3635 + EPSG:3636 + EPSG:3637 + EPSG:3638 + EPSG:3639 + EPSG:3640 + EPSG:3641 + EPSG:3642 + EPSG:3643 + EPSG:3644 + EPSG:3645 + EPSG:3646 + EPSG:3647 + EPSG:3648 + EPSG:3649 + EPSG:3650 + EPSG:3651 + EPSG:3652 + EPSG:3653 + EPSG:3654 + EPSG:3655 + EPSG:3656 + EPSG:3657 + EPSG:3658 + EPSG:3659 + EPSG:3660 + EPSG:3661 + EPSG:3662 + EPSG:3663 + EPSG:3664 + EPSG:3665 + EPSG:3666 + EPSG:3667 + EPSG:3668 + EPSG:3669 + EPSG:3670 + EPSG:3671 + EPSG:3672 + EPSG:3673 + EPSG:3674 + EPSG:3675 + EPSG:3676 + EPSG:3677 + EPSG:3678 + EPSG:3679 + EPSG:3680 + EPSG:3681 + EPSG:3682 + EPSG:3683 + EPSG:3684 + EPSG:3685 + EPSG:3686 + EPSG:3687 + EPSG:3688 + EPSG:3689 + EPSG:3690 + EPSG:3691 + EPSG:3692 + EPSG:3693 + EPSG:3694 + EPSG:3695 + EPSG:3696 + EPSG:3697 + EPSG:3698 + EPSG:3699 + EPSG:3700 + EPSG:3701 + EPSG:3702 + EPSG:3703 + EPSG:3704 + EPSG:3705 + EPSG:3706 + EPSG:3707 + EPSG:3708 + EPSG:3709 + EPSG:3710 + EPSG:3711 + EPSG:3712 + EPSG:3713 + EPSG:3714 + EPSG:3715 + EPSG:3716 + EPSG:3717 + EPSG:3718 + EPSG:3719 + EPSG:3720 + EPSG:3721 + EPSG:3722 + EPSG:3723 + EPSG:3724 + EPSG:3725 + EPSG:3726 + EPSG:3727 + EPSG:3728 + EPSG:3729 + EPSG:3730 + EPSG:3731 + EPSG:3732 + EPSG:3733 + EPSG:3734 + EPSG:3735 + EPSG:3736 + EPSG:3737 + EPSG:3738 + EPSG:3739 + EPSG:3740 + EPSG:3741 + EPSG:3742 + EPSG:3743 + EPSG:3744 + EPSG:3745 + EPSG:3746 + EPSG:3747 + EPSG:3748 + EPSG:3749 + EPSG:3750 + EPSG:3751 + EPSG:3752 + EPSG:3753 + EPSG:3754 + EPSG:3755 + EPSG:3756 + EPSG:3757 + EPSG:3758 + EPSG:3759 + EPSG:3760 + EPSG:3761 + EPSG:3762 + EPSG:3763 + EPSG:3764 + EPSG:3765 + EPSG:3766 + EPSG:3767 + EPSG:3768 + EPSG:3769 + EPSG:3770 + EPSG:3771 + EPSG:3772 + EPSG:3773 + EPSG:3774 + EPSG:3775 + EPSG:3776 + EPSG:3777 + EPSG:3778 + EPSG:3779 + EPSG:3780 + EPSG:3781 + EPSG:3782 + EPSG:3783 + EPSG:3784 + EPSG:3785 + EPSG:3786 + EPSG:3787 + EPSG:3788 + EPSG:3789 + EPSG:3790 + EPSG:3791 + EPSG:3793 + EPSG:3794 + EPSG:3795 + EPSG:3796 + EPSG:3797 + EPSG:3798 + EPSG:3799 + EPSG:3800 + EPSG:3801 + EPSG:3802 + EPSG:3812 + EPSG:3814 + EPSG:3815 + EPSG:3816 + EPSG:3819 + EPSG:3821 + EPSG:3822 + EPSG:3823 + EPSG:3824 + EPSG:3825 + EPSG:3826 + EPSG:3827 + EPSG:3828 + EPSG:3829 + EPSG:3832 + EPSG:3833 + EPSG:3834 + EPSG:3835 + EPSG:3836 + EPSG:3837 + EPSG:3838 + EPSG:3839 + EPSG:3840 + EPSG:3841 + EPSG:3842 + EPSG:3843 + EPSG:3844 + EPSG:3845 + EPSG:3846 + EPSG:3847 + EPSG:3848 + EPSG:3849 + EPSG:3850 + EPSG:3851 + EPSG:3852 + EPSG:3854 + EPSG:3855 + EPSG:3857 + EPSG:3873 + EPSG:3874 + EPSG:3875 + EPSG:3876 + EPSG:3877 + EPSG:3878 + EPSG:3879 + EPSG:3880 + EPSG:3881 + EPSG:3882 + EPSG:3883 + EPSG:3884 + EPSG:3885 + EPSG:3886 + EPSG:3887 + EPSG:3888 + EPSG:3889 + EPSG:3890 + EPSG:3891 + EPSG:3892 + EPSG:3893 + EPSG:3900 + EPSG:3901 + EPSG:3902 + EPSG:3903 + EPSG:3906 + EPSG:3907 + EPSG:3908 + EPSG:3909 + EPSG:3910 + EPSG:3911 + EPSG:3912 + EPSG:3920 + EPSG:3942 + EPSG:3943 + EPSG:3944 + EPSG:3945 + EPSG:3946 + EPSG:3947 + EPSG:3948 + EPSG:3949 + EPSG:3950 + EPSG:3968 + EPSG:3969 + EPSG:3970 + EPSG:3973 + EPSG:3974 + EPSG:3975 + EPSG:3976 + EPSG:3978 + EPSG:3979 + EPSG:3985 + EPSG:3986 + EPSG:3987 + EPSG:3988 + EPSG:3989 + EPSG:3991 + EPSG:3992 + EPSG:3993 + EPSG:3994 + EPSG:3995 + EPSG:3996 + EPSG:3997 + EPSG:4000 + EPSG:4001 + EPSG:4002 + EPSG:4003 + EPSG:4004 + EPSG:4005 + EPSG:4006 + EPSG:4007 + EPSG:4008 + EPSG:4009 + EPSG:4010 + EPSG:4011 + EPSG:4012 + EPSG:4013 + EPSG:4014 + EPSG:4015 + EPSG:4016 + EPSG:4017 + EPSG:4018 + EPSG:4019 + EPSG:4020 + EPSG:4021 + EPSG:4022 + EPSG:4023 + EPSG:4024 + EPSG:4025 + EPSG:4026 + EPSG:4027 + EPSG:4028 + EPSG:4029 + EPSG:4030 + EPSG:4031 + EPSG:4032 + EPSG:4033 + EPSG:4034 + EPSG:4035 + EPSG:4036 + EPSG:4037 + EPSG:4038 + EPSG:4039 + EPSG:4040 + EPSG:4041 + EPSG:4042 + EPSG:4043 + EPSG:4044 + EPSG:4045 + EPSG:4046 + EPSG:4047 + EPSG:4048 + EPSG:4049 + EPSG:4050 + EPSG:4051 + EPSG:4052 + EPSG:4053 + EPSG:4054 + EPSG:4055 + EPSG:4056 + EPSG:4057 + EPSG:4058 + EPSG:4059 + EPSG:4060 + EPSG:4061 + EPSG:4062 + EPSG:4063 + EPSG:4071 + EPSG:4073 + EPSG:4074 + EPSG:4075 + EPSG:4079 + EPSG:4080 + EPSG:4081 + EPSG:4082 + EPSG:4083 + EPSG:4087 + EPSG:4088 + EPSG:4093 + EPSG:4094 + EPSG:4095 + EPSG:4096 + EPSG:4097 + EPSG:4098 + EPSG:4099 + EPSG:4100 + EPSG:4120 + EPSG:4121 + EPSG:4122 + EPSG:4123 + EPSG:4124 + EPSG:4125 + EPSG:4126 + EPSG:4127 + EPSG:4128 + EPSG:4129 + EPSG:4130 + EPSG:4131 + EPSG:4132 + EPSG:4133 + EPSG:4134 + EPSG:4135 + EPSG:4136 + EPSG:4137 + EPSG:4138 + EPSG:4139 + EPSG:4140 + EPSG:4141 + EPSG:4142 + EPSG:4143 + EPSG:4144 + EPSG:4145 + EPSG:4146 + EPSG:4147 + EPSG:4148 + EPSG:4149 + EPSG:4150 + EPSG:4151 + EPSG:4152 + EPSG:4153 + EPSG:4154 + EPSG:4155 + EPSG:4156 + EPSG:4157 + EPSG:4158 + EPSG:4159 + EPSG:4160 + EPSG:4161 + EPSG:4162 + EPSG:4163 + EPSG:4164 + EPSG:4165 + EPSG:4166 + EPSG:4167 + EPSG:4168 + EPSG:4169 + EPSG:4170 + EPSG:4171 + EPSG:4172 + EPSG:4173 + EPSG:4174 + EPSG:4175 + EPSG:4176 + EPSG:4178 + EPSG:4179 + EPSG:4180 + EPSG:4181 + EPSG:4182 + EPSG:4183 + EPSG:4184 + EPSG:4185 + EPSG:4188 + EPSG:4189 + EPSG:4190 + EPSG:4191 + EPSG:4192 + EPSG:4193 + EPSG:4194 + EPSG:4195 + EPSG:4196 + EPSG:4197 + EPSG:4198 + EPSG:4199 + EPSG:4200 + EPSG:4201 + EPSG:4202 + EPSG:4203 + EPSG:4204 + EPSG:4205 + EPSG:4206 + EPSG:4207 + EPSG:4208 + EPSG:4209 + EPSG:4210 + EPSG:4211 + EPSG:4212 + EPSG:4213 + EPSG:4214 + EPSG:4215 + EPSG:4216 + EPSG:4217 + EPSG:4218 + EPSG:4219 + EPSG:4220 + EPSG:4221 + EPSG:4222 + EPSG:4223 + EPSG:4224 + EPSG:4225 + EPSG:4226 + EPSG:4227 + EPSG:4228 + EPSG:4229 + EPSG:4230 + EPSG:4231 + EPSG:4232 + EPSG:4233 + EPSG:4234 + EPSG:4235 + EPSG:4236 + EPSG:4237 + EPSG:4238 + EPSG:4239 + EPSG:4240 + EPSG:4241 + EPSG:4242 + EPSG:4243 + EPSG:4244 + EPSG:4245 + EPSG:4246 + EPSG:4247 + EPSG:4248 + EPSG:4249 + EPSG:4250 + EPSG:4251 + EPSG:4252 + EPSG:4253 + EPSG:4254 + EPSG:4255 + EPSG:4256 + EPSG:4257 + EPSG:4258 + EPSG:4259 + EPSG:4260 + EPSG:4261 + EPSG:4262 + EPSG:4263 + EPSG:4264 + EPSG:4265 + EPSG:4266 + EPSG:4267 + EPSG:4268 + EPSG:4269 + EPSG:4270 + EPSG:4271 + EPSG:4272 + EPSG:4273 + EPSG:4274 + EPSG:4275 + EPSG:4276 + EPSG:4277 + EPSG:4278 + EPSG:4279 + EPSG:4280 + EPSG:4281 + EPSG:4282 + EPSG:4283 + EPSG:4284 + EPSG:4285 + EPSG:4286 + EPSG:4287 + EPSG:4288 + EPSG:4289 + EPSG:4291 + EPSG:4292 + EPSG:4293 + EPSG:4294 + EPSG:4295 + EPSG:4296 + EPSG:4297 + EPSG:4298 + EPSG:4299 + EPSG:4300 + EPSG:4301 + EPSG:4302 + EPSG:4303 + EPSG:4304 + EPSG:4306 + EPSG:4307 + EPSG:4308 + EPSG:4309 + EPSG:4310 + EPSG:4311 + EPSG:4312 + EPSG:4313 + EPSG:4314 + EPSG:4315 + EPSG:4316 + EPSG:4317 + EPSG:4318 + EPSG:4319 + EPSG:4322 + EPSG:4324 + EPSG:4326 + EPSG:4327 + EPSG:4328 + EPSG:4329 + EPSG:4330 + EPSG:4331 + EPSG:4332 + EPSG:4333 + EPSG:4334 + EPSG:4335 + EPSG:4336 + EPSG:4337 + EPSG:4338 + EPSG:4339 + EPSG:4340 + EPSG:4341 + EPSG:4342 + EPSG:4343 + EPSG:4344 + EPSG:4345 + EPSG:4346 + EPSG:4347 + EPSG:4348 + EPSG:4349 + EPSG:4350 + EPSG:4351 + EPSG:4352 + EPSG:4353 + EPSG:4354 + EPSG:4355 + EPSG:4356 + EPSG:4357 + EPSG:4358 + EPSG:4359 + EPSG:4360 + EPSG:4361 + EPSG:4362 + EPSG:4363 + EPSG:4364 + EPSG:4365 + EPSG:4366 + EPSG:4367 + EPSG:4368 + EPSG:4369 + EPSG:4370 + EPSG:4371 + EPSG:4372 + EPSG:4373 + EPSG:4374 + EPSG:4375 + EPSG:4376 + EPSG:4377 + EPSG:4378 + EPSG:4379 + EPSG:4380 + EPSG:4381 + EPSG:4382 + EPSG:4383 + EPSG:4384 + EPSG:4385 + EPSG:4386 + EPSG:4387 + EPSG:4388 + EPSG:4389 + EPSG:4399 + EPSG:4400 + EPSG:4401 + EPSG:4402 + EPSG:4403 + EPSG:4404 + EPSG:4405 + EPSG:4406 + EPSG:4407 + EPSG:4408 + EPSG:4409 + EPSG:4410 + EPSG:4411 + EPSG:4412 + EPSG:4413 + EPSG:4414 + EPSG:4415 + EPSG:4417 + EPSG:4418 + EPSG:4419 + EPSG:4420 + EPSG:4421 + EPSG:4422 + EPSG:4423 + EPSG:4424 + EPSG:4425 + EPSG:4426 + EPSG:4427 + EPSG:4428 + EPSG:4429 + EPSG:4430 + EPSG:4431 + EPSG:4432 + EPSG:4433 + EPSG:4434 + EPSG:4437 + EPSG:4438 + EPSG:4439 + EPSG:4440 + EPSG:4455 + EPSG:4456 + EPSG:4457 + EPSG:4458 + EPSG:4462 + EPSG:4463 + EPSG:4465 + EPSG:4466 + EPSG:4467 + EPSG:4468 + EPSG:4469 + EPSG:4470 + EPSG:4471 + EPSG:4472 + EPSG:4473 + EPSG:4474 + EPSG:4475 + EPSG:4479 + EPSG:4480 + EPSG:4481 + EPSG:4482 + EPSG:4483 + EPSG:4484 + EPSG:4485 + EPSG:4486 + EPSG:4487 + EPSG:4488 + EPSG:4489 + EPSG:4490 + EPSG:4491 + EPSG:4492 + EPSG:4493 + EPSG:4494 + EPSG:4495 + EPSG:4496 + EPSG:4497 + EPSG:4498 + EPSG:4499 + EPSG:4500 + EPSG:4501 + EPSG:4502 + EPSG:4503 + EPSG:4504 + EPSG:4505 + EPSG:4506 + EPSG:4507 + EPSG:4508 + EPSG:4509 + EPSG:4510 + EPSG:4511 + EPSG:4512 + EPSG:4513 + EPSG:4514 + EPSG:4515 + EPSG:4516 + EPSG:4517 + EPSG:4518 + EPSG:4519 + EPSG:4520 + EPSG:4521 + EPSG:4522 + EPSG:4523 + EPSG:4524 + EPSG:4525 + EPSG:4526 + EPSG:4527 + EPSG:4528 + EPSG:4529 + EPSG:4530 + EPSG:4531 + EPSG:4532 + EPSG:4533 + EPSG:4534 + EPSG:4535 + EPSG:4536 + EPSG:4537 + EPSG:4538 + EPSG:4539 + EPSG:4540 + EPSG:4541 + EPSG:4542 + EPSG:4543 + EPSG:4544 + EPSG:4545 + EPSG:4546 + EPSG:4547 + EPSG:4548 + EPSG:4549 + EPSG:4550 + EPSG:4551 + EPSG:4552 + EPSG:4553 + EPSG:4554 + EPSG:4555 + EPSG:4556 + EPSG:4557 + EPSG:4558 + EPSG:4559 + EPSG:4568 + EPSG:4569 + EPSG:4570 + EPSG:4571 + EPSG:4572 + EPSG:4573 + EPSG:4574 + EPSG:4575 + EPSG:4576 + EPSG:4577 + EPSG:4578 + EPSG:4579 + EPSG:4580 + EPSG:4581 + EPSG:4582 + EPSG:4583 + EPSG:4584 + EPSG:4585 + EPSG:4586 + EPSG:4587 + EPSG:4588 + EPSG:4589 + EPSG:4600 + EPSG:4601 + EPSG:4602 + EPSG:4603 + EPSG:4604 + EPSG:4605 + EPSG:4606 + EPSG:4607 + EPSG:4608 + EPSG:4609 + EPSG:4610 + EPSG:4611 + EPSG:4612 + EPSG:4613 + EPSG:4614 + EPSG:4615 + EPSG:4616 + EPSG:4617 + EPSG:4618 + EPSG:4619 + EPSG:4620 + EPSG:4621 + EPSG:4622 + EPSG:4623 + EPSG:4624 + EPSG:4625 + EPSG:4626 + EPSG:4627 + EPSG:4628 + EPSG:4629 + EPSG:4630 + EPSG:4631 + EPSG:4632 + EPSG:4633 + EPSG:4634 + EPSG:4635 + EPSG:4636 + EPSG:4637 + EPSG:4638 + EPSG:4639 + EPSG:4640 + EPSG:4641 + EPSG:4642 + EPSG:4643 + EPSG:4644 + EPSG:4645 + EPSG:4646 + EPSG:4647 + EPSG:4652 + EPSG:4653 + EPSG:4654 + EPSG:4655 + EPSG:4656 + EPSG:4657 + EPSG:4658 + EPSG:4659 + EPSG:4660 + EPSG:4661 + EPSG:4662 + EPSG:4663 + EPSG:4664 + EPSG:4665 + EPSG:4666 + EPSG:4667 + EPSG:4668 + EPSG:4669 + EPSG:4670 + EPSG:4671 + EPSG:4672 + EPSG:4673 + EPSG:4674 + EPSG:4675 + EPSG:4676 + EPSG:4677 + EPSG:4678 + EPSG:4679 + EPSG:4680 + EPSG:4681 + EPSG:4682 + EPSG:4683 + EPSG:4684 + EPSG:4685 + EPSG:4686 + EPSG:4687 + EPSG:4688 + EPSG:4689 + EPSG:4690 + EPSG:4691 + EPSG:4692 + EPSG:4693 + EPSG:4694 + EPSG:4695 + EPSG:4696 + EPSG:4697 + EPSG:4698 + EPSG:4699 + EPSG:4700 + EPSG:4701 + EPSG:4702 + EPSG:4703 + EPSG:4704 + EPSG:4705 + EPSG:4706 + EPSG:4707 + EPSG:4708 + EPSG:4709 + EPSG:4710 + EPSG:4711 + EPSG:4712 + EPSG:4713 + EPSG:4714 + EPSG:4715 + EPSG:4716 + EPSG:4717 + EPSG:4718 + EPSG:4719 + EPSG:4720 + EPSG:4721 + EPSG:4722 + EPSG:4723 + EPSG:4724 + EPSG:4725 + EPSG:4726 + EPSG:4727 + EPSG:4728 + EPSG:4729 + EPSG:4730 + EPSG:4731 + EPSG:4732 + EPSG:4733 + EPSG:4734 + EPSG:4735 + EPSG:4736 + EPSG:4737 + EPSG:4738 + EPSG:4739 + EPSG:4740 + EPSG:4741 + EPSG:4742 + EPSG:4743 + EPSG:4744 + EPSG:4745 + EPSG:4746 + EPSG:4747 + EPSG:4748 + EPSG:4749 + EPSG:4750 + EPSG:4751 + EPSG:4752 + EPSG:4753 + EPSG:4754 + EPSG:4755 + EPSG:4756 + EPSG:4757 + EPSG:4758 + EPSG:4759 + EPSG:4760 + EPSG:4761 + EPSG:4762 + EPSG:4763 + EPSG:4764 + EPSG:4765 + EPSG:4766 + EPSG:4767 + EPSG:4768 + EPSG:4769 + EPSG:4770 + EPSG:4771 + EPSG:4772 + EPSG:4773 + EPSG:4774 + EPSG:4775 + EPSG:4776 + EPSG:4777 + EPSG:4778 + EPSG:4779 + EPSG:4780 + EPSG:4781 + EPSG:4782 + EPSG:4783 + EPSG:4784 + EPSG:4785 + EPSG:4786 + EPSG:4787 + EPSG:4788 + EPSG:4789 + EPSG:4790 + EPSG:4791 + EPSG:4792 + EPSG:4793 + EPSG:4794 + EPSG:4795 + EPSG:4796 + EPSG:4797 + EPSG:4798 + EPSG:4799 + EPSG:4800 + EPSG:4801 + EPSG:4802 + EPSG:4803 + EPSG:4804 + EPSG:4805 + EPSG:4806 + EPSG:4807 + EPSG:4808 + EPSG:4809 + EPSG:4810 + EPSG:4811 + EPSG:4812 + EPSG:4813 + EPSG:4814 + EPSG:4815 + EPSG:4816 + EPSG:4817 + EPSG:4818 + EPSG:4819 + EPSG:4820 + EPSG:4821 + EPSG:4822 + EPSG:4823 + EPSG:4824 + EPSG:4826 + EPSG:4839 + EPSG:4855 + EPSG:4856 + EPSG:4857 + EPSG:4858 + EPSG:4859 + EPSG:4860 + EPSG:4861 + EPSG:4862 + EPSG:4863 + EPSG:4864 + EPSG:4865 + EPSG:4866 + EPSG:4867 + EPSG:4868 + EPSG:4869 + EPSG:4870 + EPSG:4871 + EPSG:4872 + EPSG:4873 + EPSG:4874 + EPSG:4875 + EPSG:4876 + EPSG:4877 + EPSG:4878 + EPSG:4879 + EPSG:4880 + EPSG:4882 + EPSG:4883 + EPSG:4884 + EPSG:4885 + EPSG:4886 + EPSG:4887 + EPSG:4888 + EPSG:4889 + EPSG:4890 + EPSG:4891 + EPSG:4892 + EPSG:4893 + EPSG:4894 + EPSG:4895 + EPSG:4896 + EPSG:4897 + EPSG:4898 + EPSG:4899 + EPSG:4900 + EPSG:4901 + EPSG:4902 + EPSG:4903 + EPSG:4904 + EPSG:4906 + EPSG:4907 + EPSG:4908 + EPSG:4909 + EPSG:4910 + EPSG:4911 + EPSG:4912 + EPSG:4913 + EPSG:4914 + EPSG:4915 + EPSG:4916 + EPSG:4917 + EPSG:4918 + EPSG:4919 + EPSG:4920 + EPSG:4921 + EPSG:4922 + EPSG:4923 + EPSG:4924 + EPSG:4925 + EPSG:4926 + EPSG:4927 + EPSG:4928 + EPSG:4929 + EPSG:4930 + EPSG:4931 + EPSG:4932 + EPSG:4933 + EPSG:4934 + EPSG:4935 + EPSG:4936 + EPSG:4937 + EPSG:4938 + EPSG:4939 + EPSG:4940 + EPSG:4941 + EPSG:4942 + EPSG:4943 + EPSG:4944 + EPSG:4945 + EPSG:4946 + EPSG:4947 + EPSG:4948 + EPSG:4949 + EPSG:4950 + EPSG:4951 + EPSG:4952 + EPSG:4953 + EPSG:4954 + EPSG:4955 + EPSG:4956 + EPSG:4957 + EPSG:4958 + EPSG:4959 + EPSG:4960 + EPSG:4961 + EPSG:4962 + EPSG:4963 + EPSG:4964 + EPSG:4965 + EPSG:4966 + EPSG:4967 + EPSG:4968 + EPSG:4969 + EPSG:4970 + EPSG:4971 + EPSG:4972 + EPSG:4973 + EPSG:4974 + EPSG:4975 + EPSG:4976 + EPSG:4977 + EPSG:4978 + EPSG:4979 + EPSG:4980 + EPSG:4981 + EPSG:4982 + EPSG:4983 + EPSG:4984 + EPSG:4985 + EPSG:4986 + EPSG:4987 + EPSG:4988 + EPSG:4989 + EPSG:4990 + EPSG:4991 + EPSG:4992 + EPSG:4993 + EPSG:4994 + EPSG:4995 + EPSG:4996 + EPSG:4997 + EPSG:4998 + EPSG:4999 + EPSG:5011 + EPSG:5012 + EPSG:5013 + EPSG:5014 + EPSG:5015 + EPSG:5016 + EPSG:5017 + EPSG:5018 + EPSG:5041 + EPSG:5042 + EPSG:5048 + EPSG:5069 + EPSG:5070 + EPSG:5071 + EPSG:5072 + EPSG:5105 + EPSG:5106 + EPSG:5107 + EPSG:5108 + EPSG:5109 + EPSG:5110 + EPSG:5111 + EPSG:5112 + EPSG:5113 + EPSG:5114 + EPSG:5115 + EPSG:5116 + EPSG:5117 + EPSG:5118 + EPSG:5119 + EPSG:5120 + EPSG:5121 + EPSG:5122 + EPSG:5123 + EPSG:5124 + EPSG:5125 + EPSG:5126 + EPSG:5127 + EPSG:5128 + EPSG:5129 + EPSG:5130 + EPSG:5132 + EPSG:5167 + EPSG:5168 + EPSG:5169 + EPSG:5170 + EPSG:5171 + EPSG:5172 + EPSG:5173 + EPSG:5174 + EPSG:5175 + EPSG:5176 + EPSG:5177 + EPSG:5178 + EPSG:5179 + EPSG:5180 + EPSG:5181 + EPSG:5182 + EPSG:5183 + EPSG:5184 + EPSG:5185 + EPSG:5186 + EPSG:5187 + EPSG:5188 + EPSG:5193 + EPSG:5195 + EPSG:5214 + EPSG:5221 + EPSG:5223 + EPSG:5224 + EPSG:5225 + EPSG:5228 + EPSG:5229 + EPSG:5233 + EPSG:5234 + EPSG:5235 + EPSG:5237 + EPSG:5243 + EPSG:5244 + EPSG:5245 + EPSG:5246 + EPSG:5247 + EPSG:5250 + EPSG:5251 + EPSG:5252 + EPSG:5253 + EPSG:5254 + EPSG:5255 + EPSG:5256 + EPSG:5257 + EPSG:5258 + EPSG:5259 + EPSG:5262 + EPSG:5263 + EPSG:5264 + EPSG:5266 + EPSG:5269 + EPSG:5270 + EPSG:5271 + EPSG:5272 + EPSG:5273 + EPSG:5274 + EPSG:5275 + EPSG:5292 + EPSG:5293 + EPSG:5294 + EPSG:5295 + EPSG:5296 + EPSG:5297 + EPSG:5298 + EPSG:5299 + EPSG:5300 + EPSG:5301 + EPSG:5302 + EPSG:5303 + EPSG:5304 + EPSG:5305 + EPSG:5306 + EPSG:5307 + EPSG:5308 + EPSG:5309 + EPSG:5310 + EPSG:5311 + EPSG:5316 + EPSG:5317 + EPSG:5318 + EPSG:5320 + EPSG:5321 + EPSG:5322 + EPSG:5323 + EPSG:5324 + EPSG:5325 + EPSG:5329 + EPSG:5330 + EPSG:5331 + EPSG:5332 + EPSG:5336 + EPSG:5337 + EPSG:5340 + EPSG:5341 + EPSG:5342 + EPSG:5343 + EPSG:5344 + EPSG:5345 + EPSG:5346 + EPSG:5347 + EPSG:5348 + EPSG:5349 + EPSG:5352 + EPSG:5353 + EPSG:5354 + EPSG:5355 + EPSG:5356 + EPSG:5357 + EPSG:5358 + EPSG:5359 + EPSG:5360 + EPSG:5361 + EPSG:5362 + EPSG:5363 + EPSG:5364 + EPSG:5365 + EPSG:5367 + EPSG:5368 + EPSG:5369 + EPSG:5370 + EPSG:5371 + EPSG:5372 + EPSG:5373 + EPSG:5379 + EPSG:5380 + EPSG:5381 + EPSG:5382 + EPSG:5383 + EPSG:5387 + EPSG:5388 + EPSG:5389 + EPSG:5391 + EPSG:5392 + EPSG:5393 + EPSG:5396 + EPSG:5451 + EPSG:5456 + EPSG:5457 + EPSG:5458 + EPSG:5459 + EPSG:5460 + EPSG:5461 + EPSG:5462 + EPSG:5463 + EPSG:5464 + EPSG:5466 + EPSG:5467 + EPSG:5469 + EPSG:5472 + EPSG:5479 + EPSG:5480 + EPSG:5481 + EPSG:5482 + EPSG:5487 + EPSG:5488 + EPSG:5489 + EPSG:5490 + EPSG:5498 + EPSG:5499 + EPSG:5500 + EPSG:5513 + EPSG:5514 + EPSG:5515 + EPSG:5516 + EPSG:5518 + EPSG:5519 + EPSG:5520 + EPSG:5523 + EPSG:5524 + EPSG:5527 + EPSG:5530 + EPSG:5531 + EPSG:5532 + EPSG:5533 + EPSG:5534 + EPSG:5535 + EPSG:5536 + EPSG:5537 + EPSG:5538 + EPSG:5539 + EPSG:5544 + EPSG:5545 + EPSG:5546 + EPSG:5550 + EPSG:5551 + EPSG:5552 + EPSG:5554 + EPSG:5555 + EPSG:5556 + EPSG:5559 + EPSG:5600 + EPSG:5601 + EPSG:5602 + EPSG:5603 + EPSG:5604 + EPSG:5605 + EPSG:5606 + EPSG:5607 + EPSG:5608 + EPSG:5609 + EPSG:5610 + EPSG:5611 + EPSG:5612 + EPSG:5613 + EPSG:5614 + EPSG:5615 + EPSG:5616 + EPSG:5617 + EPSG:5618 + EPSG:5619 + EPSG:5620 + EPSG:5621 + EPSG:5701 + EPSG:5702 + EPSG:5703 + EPSG:5704 + EPSG:5705 + EPSG:5706 + EPSG:5709 + EPSG:5710 + EPSG:5711 + EPSG:5712 + EPSG:5713 + EPSG:5714 + EPSG:5715 + EPSG:5716 + EPSG:5717 + EPSG:5718 + EPSG:5719 + EPSG:5720 + EPSG:5721 + EPSG:5722 + EPSG:5723 + EPSG:5724 + EPSG:5725 + EPSG:5726 + EPSG:5727 + EPSG:5728 + EPSG:5729 + EPSG:5730 + EPSG:5731 + EPSG:5732 + EPSG:5733 + EPSG:5734 + EPSG:5735 + EPSG:5736 + EPSG:5737 + EPSG:5738 + EPSG:5739 + EPSG:5740 + EPSG:5741 + EPSG:5742 + EPSG:5743 + EPSG:5744 + EPSG:5745 + EPSG:5746 + EPSG:5747 + EPSG:5748 + EPSG:5749 + EPSG:5750 + EPSG:5751 + EPSG:5752 + EPSG:5753 + EPSG:5754 + EPSG:5755 + EPSG:5756 + EPSG:5757 + EPSG:5758 + EPSG:5759 + EPSG:5760 + EPSG:5761 + EPSG:5762 + EPSG:5763 + EPSG:5764 + EPSG:5765 + EPSG:5766 + EPSG:5767 + EPSG:5768 + EPSG:5769 + EPSG:5770 + EPSG:5771 + EPSG:5772 + EPSG:5773 + EPSG:5774 + EPSG:5775 + EPSG:5776 + EPSG:5777 + EPSG:5778 + EPSG:5779 + EPSG:5780 + EPSG:5781 + EPSG:5782 + EPSG:5783 + EPSG:5784 + EPSG:5785 + EPSG:5786 + EPSG:5787 + EPSG:5788 + EPSG:5789 + EPSG:5790 + EPSG:5791 + EPSG:5792 + EPSG:5793 + EPSG:5794 + EPSG:5795 + EPSG:5796 + EPSG:5797 + EPSG:5798 + EPSG:5799 + EPSG:5800 + EPSG:5801 + EPSG:5802 + EPSG:5803 + EPSG:5804 + EPSG:5805 + EPSG:5806 + EPSG:5807 + EPSG:5808 + EPSG:5809 + EPSG:5810 + EPSG:5811 + EPSG:5812 + EPSG:5813 + EPSG:5814 + EPSG:5815 + EPSG:5816 + EPSG:5817 + EPSG:5818 + EPSG:5819 + EPSG:5820 + EPSG:5821 + EPSG:7400 + EPSG:7401 + EPSG:7402 + EPSG:7403 + EPSG:7404 + EPSG:7405 + EPSG:7406 + EPSG:7407 + EPSG:7408 + EPSG:7409 + EPSG:7410 + EPSG:7411 + EPSG:7412 + EPSG:7413 + EPSG:7414 + EPSG:7415 + EPSG:7416 + EPSG:7417 + EPSG:7418 + EPSG:7419 + EPSG:7420 + EPSG:7421 + EPSG:7422 + EPSG:7423 + EPSG:102113 + EPSG:42302 + EPSG:42301 + EPSG:54009 + EPSG:900913 + EPSG:45556 + EPSG:45555 + EPSG:54004 + EPSG:41001 + EPSG:42311 + EPSG:42310 + EPSG:18001 + EPSG:54012 + EPSG:53029 + EPSG:54029 + EPSG:100003 + EPSG:42106 + EPSG:100002 + EPSG:42105 + EPSG:100001 + EPSG:42309 + EPSG:42104 + EPSG:42308 + EPSG:42103 + EPSG:42307 + EPSG:42102 + EPSG:42306 + EPSG:42101 + EPSG:42305 + EPSG:42304 + EPSG:42303 + EPSG:404000 + + + Oldham:Air_Quality_Management_Areas + Air Quality Management Areas + Declared air quality management area for Oldham + + features + Air%20Quality%20Management%20Areas + + EPSG:27700 + + + + + + + Oldham:Assets + Assets + Land and property assets in Oldham Council and First Choice Homes ownership + + features + Assets + + EPSG:27700 + + + + + + + + Oldham:Business_Employment_Areas + Business Employment Areas + Business and Employment Areas provide broad locations for a range of employment uses in Oldham (excluding Saddleworth) + + features + BEA + + EPSG:27700 + + + + + + + + Oldham:Cultural_Quarter + Cultural Quarter + Site on Union Street allocated for a new Cultural Quarter to comprise a new life long learning centre, art gallery, museum and theatre together with appropriate complementary uses which may include retail, food and drink, offices, workshops, residential and car parking + + features + Cultural_Quarter + + EPSG:27700 + + + + + + + Oldham:Green_Belt + Green Belt + Areas of Green Belt in Oldham + + features + Green%20Belt + + EPSG:27700 + + + + + + + Oldham:Local_Nature_Reserve + Local Nature Reserve + The Glodwick Lows Local Nature Reserve is a disused quarry on a steep hillside near Glodwick + + features + LNR + + EPSG:27700 + + + + + + + Oldham:Public_toilets + Public toilets + Public toilets where known in Oldham + + features + + EPSG:27700 + + + + + + + Oldham:Saddleworth_Employment_Areas + Saddleworth Employment Areas + Saddleworth Employment Areas provide broad locations for a range of employment uses + + features + SEA + + EPSG:27700 + + + + + + + Oldham:Tree_Preservation_Order + Tree Preservation Order + Location of all Tree Preservation Orders + +This dataset is currently under review and its accuracy is subject to the review + + features + Tree%20Preservation%20Order + + EPSG:27700 + + + + + + + +
+ diff --git a/ckanext/qa/tests/data/os_products.atom_feed b/ckanext/qa/tests/data/os_products.atom_feed new file mode 100644 index 00000000..dedd6809 --- /dev/null +++ b/ckanext/qa/tests/data/os_products.atom_feed @@ -0,0 +1,776 @@ + + + + + + Product Service Feed + An atom feed listing all OS products. + http://os.uk/xml/atom/LiveProductFeed.xml + No limitations + 2015-03-12T15:25:02Z + + Ordnance Survey + customerservices@os.uk + + + OS Open Map - Local + + + http://os.uk/xml/atom/OSOpenMapLocal.xml + No limitations + 2015-03-12T13:20:00Z + OS Open Map - Local launched 23 March 2015. Our most detailed open data + map. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 -8.45 + OS Open Map - Local + os.uk + + + OS Open Map Names + + + http://os.uk/xml/atom/OSOpenNames.xml + No limitations + 2015-03-24T09:39:00Z + OS Open Names launched 23 March 2015. Open data gazetteer of settlements, roads, and post codes. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 -8.45 + OS Open Names + os.uk + + + OS Open Roads + + + http://os.uk/xml/atom/OSOpenRoads.xml + No limitations + 2015-03-24T09:40:00Z + OS Open Roads launched 23 March 2015. Open data national road network. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 -8.45 + OS Open Map Roads + os.uk + + + OS Open Rivers + + + http://os.uk/xml/atom/OSOpenRivers.xml + No limitations + 2015-03-24T09:40:30Z + OS Open Water launched 23 March 2015. Open data national water network. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 -8.45 + OS Open Rivers + os.uk + + + 1:10 000 Scale Black and White Raster + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/10kBlackandWhiteRaster.xml + Use limitation please see OS licence + 2012-07-28T16:19:00Z + As one of our range of backdrop mapping products, Ordnance Survey's 1:10 000 Scale + Raster map data is the most detailed product in our raster portfolio, providing + large-scale background mapping upon which you can add or overlay information. It can be + combined with other data in a geographical information system (GIS), enabling you to + visualise a wide range of information within a geographical context. Its level of + feature detail makes 1:10 000 Scale Raster particularly useful for analysing data within + urban and rural areas. For example, overlaying your own database onto a backdrop of 1:10 + 000 Scale Raster map data gives you a visual interpretation of areas where your + customers or assets are concentrated, providing a powerful planning and marketing + tool + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + OS 1:10 000 Scale Black and White + Raster + ordnancesurvey.co.uk + + + + + 1:10 000 Scale Colour Raster + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/10kcolRas.xml + Use limitation please see OS licence + 2012-07-28T16:19:00Z + As one of our range of backdrop mapping products, Ordnance Survey's 1:10 000 Scale + Raster map data is the most detailed product in our raster portfolio, providing + large-scale background mapping upon which you can add or overlay information. It can be + combined with other data in a geographical information system (GIS), enabling you to + visualise a wide range of information within a geographical context. Its level of + feature detail makes 1:10 000 Scale Raster particularly useful for analysing data within + urban and rural areas. For example, overlaying your own database onto a backdrop of 1:10 + 000 Scale Raster map data gives you a visual interpretation of areas where your + customers or assets are concentrated, providing a powerful planning and marketing + tool. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + OS 1:10 000 Scale Colour + Raster + ordnancesurvey.co.uk + + + + 1:250 000 Scale Colour Raster + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/250colRas.xml + Use limitation please see OS licence + 2012-07-28T16:19:00Z + 1:250 000 Scale Colour Raster map base combines roads, railways and other key + features to make this the ideal cartographic backdrop for overlaying business + information + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + OS OpenData 1:250 000 Scale Colour + Raster + ordnancesurvey.co.uk + + + + 1:25 000 Scale Colour Raster + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/25kColRas.xml + Use limitation please see OS licence + 2012-07-28T16:19:00Z + As one of our range of backdrop mapping products, Ordnance Survey's 1:25 000 Scale + Colour Raster is backdrop map data of our popular OS Explorer Map series for outdoor + activities. It provides a scanned image of OS Explorer Map that can be used with other + data in a geographical information system (GIS) to visualise your own information within + a geographical context. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + OS 1:25 000 Scale Colour + Raster + ordnancesurvey.co.uk + + + + + 1:50 000 Scale Colour Raster + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/50colRas.xml + Use limitation please see OS licence + 2012-07-28T16:19:00Z + 1:50 000 Scale Colour Raster is Ordnance Survey’s definitive raster product, + providing a complete digital view of the popular Landranger® paper map series. It + comprises 815 tiles, each 20 km by 20 km, and offers clear detail on roads, footpaths, + woods, water features, important buildings and height contours. All topographic features + are joined across sheet edges, providing seamless coverage of the entire + country. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + OS 1:50 000 Scale Colour + Raster + ordnancesurvey.co.uk + + + + 1:50 000 Scale Gazetteer + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/50kGaz.xml + Use limitation please see OS licence + 2012-07-28T16:19:00Z + 1:50 000 Scale Gazetteer provides an excellent reference tool or location finder, + allowing you to locate your area of interest immediately. The gazetteer can also be used + to navigate around the map, geocode your data or create lists of places within a + specified area. 1:50 000 Scale Gazetteer contains entries for airports, farms, hills, + woodlands, commons and other places, including over 42 000 towns and settlements with + coordinates to 1 km resolution. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + 1:50 000 Scale + Gazetteer + ordnancesurvey.co.uk + + + + Address Layer 2 + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/AddressLayer2.xml + Use limitation please see OS licence + 2012-06-28T12:00:00Z + OS MasterMap Address Layer 2 builds on the success of Ordnance Survey's current + addressing products by offering significant enhancements such as: Alternative geographic + addresses – for example, 12 Old Town, London, SW4 0JY is also available as 12 Old Town, + Clapham, London, SW4 0JY. It now includes the locality or district name where this is + not normally included. This is provided in BS7666 part 3 format. Classifications – each + address is classified as either residential or commercial. These are then further + analysed where the trading or brand name provides clear details of their function, for + example, Barclays Bank – Bank, and W H Smith – Retail. Each address has up to four + classifications. Building name aliases – buildings that may be known by a name as well + as a house number. For example, Railway Cottage may also be known as 61 Station Road. + Objects without a postal address (OWPA) – buildings and other features that do not have + a postal address such as churches, community centres, depots, masts and so on. + Multi-occupancies without a postal addresses (MOWPA) – details of individual households + that currently do not have mail delivered to their own letter box, such as flats, + together with details of subdivided business premises. Welsh alternatives – for example, + 13 Mill Street, Aberystwyth, SY23 1HZ could also be 13 Dan Dre, Aberystwyth, SY23 1HZ. + Cross-reference table - provides a direct link between the themes within OS MasterMap's + Address Layer 2 and external datasets, currently, Royal Mail's Postal Delivery Points + and the Valuation Office Agency's unique address reference number from their Non + Domestic Rates file. The cross-reference table is available to order free of charge. + Please phone 02380 305520 for further information. Like ADDRESS-POINT® and Address + Layer, Address Layer 2 is based on the Royal Mail® Postcode Address File (PAF®) and + provides a spatial coordinate to a resolution of 0.1 m for each address. OS MasterMap + Address Layer will continue to run alongside Address Layer 2. For more information on + Address Layer please visit the Address Layer product pages. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + OS MasterMap Address Layer + 2 + ordnancesurvey.co.uk + + + + Address Layer + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/AddressLayer.xml + Use limitation please see OS licence + 2012-06-28T12:00:00Z + The OS MasterMap Address Layer provides precise coordinates for more than 27 + million residential and commercial properties in Great Britain – the most accurate and + up-to-date link between any property address and its location on the map. The Address + Layer originates from the Royal Mail's postcode address file (PAF®). Ordnance Survey + uses on-the-ground GPS survey, aerial imagery and various other techniques to establish + precise coordinates for each address and match this to the property on the map – + effectively joining up postal and topographic geography, creating a fixed link between + the property and its address. Addresses are subject to a high level of change from: * + the creation of a new property; * property redevelopment; and * house or street name + changes. OS MasterMap Address Layer provides a robust mechanism for professional users + to track and manage these address changes relating to the actual property on the ground, + and a continuity between a physical property (essentially unchanging) and the dynamics + describing that property (changeable) + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + OS Mastermap® Address + Layer + ordnancesurvey.co.uk + + + + AddressBase + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/AddressBase.xml + Use limitation please see OS licence + 2012-01-28T12:00:00Z + AddressBase™ contains Royal Mail PAF addresses (for England and Wales), both + commercial and residential matched to the local authority Unique Property Reference + Number (UPRN). + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + AddressBase™ + ordnancesurvey.co.uk + + + + AddressBase Plus + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/AddressBasePlus.xml + Use limitation please see OS licence + 2012-01-28T12:00:00Z + AddressBase Plus™ contains current properties and addresses sourced from local + authorities, Ordnance Survey and Royal Mail matched to the Unique Property Reference + Number. It has more records than AddressBase as it includes objects without postal + addresses, such as subdivided properties, places of worship and community + centres + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + AddressBase™ + Plus + ordnancesurvey.co.uk + + + + AddressBase Premium + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/AddressBasePremium.xml + Use limitation please see OS licence + 2012-01-28T12:00:00Z + AddressBase™ Premium provides the most detailed view of an address and its + lifecycle. It contains all the AddressBase Plus information and functionalities. But the + real benefit is that it includes a range of information relating to an address or + property from creation to retirement or demolition. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + AddressBase™ + Premium + ordnancesurvey.co.uk + + + + Boundary-Line + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/BoundaryLine.xml + Use limitation please see OS licence + 2012-01-28T12:00:00Z + Boundary-Line is a specialist 1:10 000 scale boundaries dataset. It contains all + levels of electoral and administrative boundaries, from district, wards and civil + parishes (or communities) up to parliamentary, assembly and European constituencies. The + information is represented as vector digital data. The boundary information is updated + twice a year, in May and October. The May release contains the boundaries that have + become live in the first week of May, in the year of release. The October release + contains the May boundaries plus additional information. Customers can choose either May + or October releases. * County - The named county, district, district ward, civil parish, + county electoral division (ED). * European constituencies - The named European region. * + Greater London Authority - The Greater London Authority, Greater London Authority + Assembly constituency, London borough, London borough ward. * Metropolitan districts - + The named metropolitan district, metropolitan district ward, civil parish where + appropriate. * Scottish parliamentary electoral region - The named Scottish + Parliamentary electoral region, Scottish parliamentary constituency. * Unitary + authorities- The named unitary authority, unitary authority ward or unitary authority ED + as appropriate, civil parish where appropriate, together with community in Wales. * + Welsh Assembly Electoral Region - The named Welsh Assembly electoral region, Welsh + assembly constituency. * Westminster constituencies - The named Westminster + constituency. * Extent of the realm - Low water mark or seaward boundary extension. * + High water mark * Unique identifiers - For administrative areas, polygons and links. * + Area measurements * Definitive names * Census codes + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + Boundary-Line™ + ordnancesurvey.co.uk + + + + Code-Point + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/CodePoint.xml + Use limitation please see OS licence + 2012-07-28T16:19:00Z + Code-Point provides a precise geographical location for each postcode unit in the + United Kingdom. It also contains additional information, for example, PO boxes and the + total number of addresses, both domestic and non-domestic, in each postcode unit. + Code-Point includes Gridlink® data. Gridlink is a consortium initiative involving a + number of government agencies that have cooperated to improve the consistency and + quality of spatially referenced, postcode-based data. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + Code-Point® + ordnancesurvey.co.uk + + + + Code-Point Open + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/CodePointOpen.xml + Use limitation please see OS licence + 2012-07-28T16:19:00Z + Code-Point Open is a dataset that contains postcode units, each of which have a + precise geographical location. There are approximately 1.7 million postcode units in + England, Scotland and Wales. Each postcode unit, such as KY12 8UP or PO14 2RS, contains + an average of fifteen adjoining addresses. Northern Ireland postcodes are not available + with Code-Point Open. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + Code-Point® + Open + ordnancesurvey.co.uk + + + + Code-Point with Polygons + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/CodePointwithPolygons.xml + Use limitation please see OS licence + 2012-07-28T16:19:00Z + Code-Point® with polygons contains postcode boundaries for Great Britain. These + show the extent of each postcode unit, enabling you to analyse information by postcode. + Ideal for activities such as sales targeting or market profiling, as well as any + statistical work + + 49.9553 -8.17167, 49.9553 1.74944, 60.8433 1.74944, 60.8433 -8.17167, + 49.9553 -8.17167 + Code-Point® with + polygons + ordnancesurvey.co.uk + + + + OS MasterMap Imagery Layer + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/ImageryLayer.xml + Use limitation please see OS licence + 2012-01-28T12:00:00Z + The OS MasterMap Imagery Layer is a maintained seamless digital dataset of + high-quality 24-bit colour orthorectified aerial photography of Great Britain. It + provides vital information that cannot be gained from mapping alone, allowing + identification and monitoring of features such as road markings, trees, pipe networks, + paths and land surface. The imagery is colour balanced and fully orthorectified, meaning + that it accurately reflects the position of features at ground level without distortion. + This also ensures accurate alignment with all the other layers in the OS MasterMap + family and customer data. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + OS MasterMap® Imagery + Layer + ordnancesurvey.co.uk + + + + OS MasterMap Integrated Transport Network Layer + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/ITN.xml + Use limitation please see OS licence + 2012-01-28T12:00:00Z + The ITN Layer provides a detailed overview of Great Britain transport + infrastructures. The first themes to be released are the Roads Network, Road Routing + Information (RRI) and Urban Paths . The Roads Network provides a network for those who + require increasingly sophisticated geographical data to support their applications. RRI + extends the functionality of the data by giving details of height and vehicle + restrictions, traffic calming, one-way roads and other information along any given + route. Paths complements ITN’s road information by adding path networks in all urban + areas larger than 5 Km2. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + OS MasterMap® Integrated Transport Network + Layer + ordnancesurvey.co.uk + + + + Meridian 2 + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/Meridian2.xml + Use limitation please see OS licence + 2012-01-28T12:00:00Z + MeridianTM 2 is a mid-scale digital representation of Great Britain that allows + considerable customisation of its Communication and Topographic themes, which means that + the user can create functional geographic solutions for their business needs. All of the + geographical features are extracted from existing Ordnance Survey databases and are + fully maintained in order to deliver an 6 monthly product update. When used in + conjunction with users own compatible data the resulting application is a truly useful + GIS asset. The product is typically viewed at 1:50,000 and at this scale the + generalisation of its features maintain geometric integrity and accuracy. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + Meridian™ + 2 + ordnancesurvey.co.uk + + + + OS Locator + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/OSLocator.xml + Use limitation please see OS licence + 2012-01-28T12:00:00Z + OS Locator is a fully searchable national gazetteer of road names. It enables users + to identify and find specific locations by a number of criteria including locality, + settlement, local authority and county. It has been created to complement Ordnance + Survey's range of mid-scales raster map data products, such as OS Street View®. As a + point-based gazetteer of road names OS Locator does not contain any road geometry + although it does contain coordinates to create a minimum bounding rectangle encompassing + the extent of the road referenced in the gazetteer.Results of searches can be easily + visualised using the gazetteer in conjunction with other products available in the OS + OpenData Catalogue such as OS VectorMap™ District and OS Street View. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + OS + Locator™ + ordnancesurvey.co.uk + + + + OS StreetView + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/OSSVras.xml + Use limitation please see OS licence + 2012-01-28T12:00:00Z + As one of our range of backdrop mapping products, Ordnance Survey's OS Street View + is street-level, backdrop map data that is specifically designed for online + applications, as it can be downloaded quickly from both the Internet and Intranet. It + provides a scanned image of street-level mapping that can be combined with other data in + a geographical information system (GIS), enabling you to clearly visualise a wide range + of information in a geographical context. The street-level detail of OS Street View + makes it particularly useful for displaying specific localities. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + OS OpenData OS Street + View® + ordnancesurvey.co.uk + + + + Land-form PANORAMA Contours + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/PanoramaContours.xml + Use limitation please see OS licence + 2012-01-28T12:00:00Z + Land-Form PANORAMA is a mid-scale product representing the physical + three-dimensional shape of the surface of the ground. The contours dataset consists of a + set of contours, spot heights, breaklines, coastlines, lakes, ridges and formlines in + vector form. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + Land-Form PANORAMA® + Contours + ordnancesurvey.co.uk + + + + Land-Form PANORAMA DTM + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/PanoramaDTM.xml + Use limitation please see OS licence + 2012-01-28T12:00:00Z + Land-Form PANORAMA is a mid-scale product representing the physical + three-dimensional shape of the surface of the ground. The DTM dataset consists of a + gridded digital terrain model with a 50 metre post spacing. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + Land-Form PANORAMA® + DTM + ordnancesurvey.co.uk + + + + Land-Form Profile Contours + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/ProfileContours.xml + Use limitation please see OS licence + 2012-07-28T16:19:00Z + Ordnance Survey’s Land-Form PROFILE Contours is a dataset representing the physical + shape of the real world. The dataset includes contours, air heights, spot heights, and + high and low water marks. The contour data and selected air heights are captured from + Ordnance Survey’s 1:10 000 scale mapping; this is supplemented by spot heights, and high + and low water marks from Ordnance Survey large-scales digital data. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + Land-Form PROFILE® + Contours + ordnancesurvey.co.uk + + + + Land-Form Profile DTM + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/ProfileDTM.xml + Use limitation please see OS licence + 2012-07-28T16:19:00Z + Ordnance Survey’s Land-Form PROFILE DTM is a dataset representing the physical + shape of the real world. The dataset consists of a 10 metre spaced grid of heighted + points derived from the Land-Form PROFILE® Contours product. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + Land-Form PROFILE® + DTM + ordnancesurvey.co.uk + + + + Strategi + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/Strategi.xml + Use limitation please see OS licence + 2012-01-28T12:00:00Z + Strategi is detailed digital map data, ideal for applications requiring an overview + of geographical information on England, Scotland and Wales. It is derived from the + Ordnance Survey 1:250 000 scale topographic database and provides mapping for + applications requiring a regional overview. Geographical features within Strategi are + represented as vector (point and line) data, enabling you to link your business + information to relevant features on the map for planning purposes and statistical + analysis. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + Strategi® + ordnancesurvey.co.uk + + + + OS MasterMap Topography Layer + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/Topo.xml + Use limitation please see OS licence + 2012-01-28T12:00:00Z + The OS MasterMap Topography Layer is a large-scale digital database of the detailed + surface features on the landscape, with relative positions and elevations of every town, + manor, parish, or tract of land mapped to minute detail. This highly accurate, flexible + resource covers some 400 million man-made and natural features, from fields to pillar + boxes, each with its own unique identifier or TOID for easy reference. It is broken down + into nine themes to make it easier to access the data; roads, tracks and paths; land; + buildings; water; rail; height; heritage; structures; and administrative boundaries. + There is the choice of a single theme, a combination of themes or all of the above. When + overlaid with other OS MasterMap layers or the customer's own data, it will provide a + clear picture of what's on the ground. The Topography Layer helps in the planning and + management of land and property by enabling users to visualise the context of any + feature or site, to pinpoint individual properties and precise sites when a high level + of detail is required, and to assess the impact of a proposed development effectively + and efficiently. It is data association that makes OS MasterMap intelligent. It enables + organisations to link their own data to that of the digital map. By associating their + data to the OS MasterMap features, organisations are then able to analyse a richer + database, and can search and query using their own data fields as well as the attributes + provided by OS MasterMap. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + OS MasterMap® Topography + Layer + ordnancesurvey.co.uk + + + + OS VectorMap District + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/VMD.xml + Use limitation please see OS licence + 2012-01-28T12:00:00Z + OS VectorMap District is a simple vector dataset with a nominal scale of 1:25000 + covering the whole of Great Britain that has been designed for creating graphical + mapping. The product can be used as mapping in its own right or can be used to provide a + flexible geographic context reference for customers’ overlay information. As well as the + vector dataset, a number of output styles are suggested. The main characteristics of the + dataset is represention of real world features (e.g. roads, railways, buildings blocks, + vegetation and boundaries) as points, lines, polygons, and text. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + OS VectorMap + District + ordnancesurvey.co.uk + + + + OS VectorMap Local + + + http://www.ordnancesurvey.co.uk/oswebsite/xml/atom/VectorMapLocal.xml + Use limitation please see OS licence + 2012-01-28T12:00:00Z + OS VectorMap Local is a simple vector dataset at a nominal scale of 1:10000 + covering the whole of Great Britain that has been designed for creating graphical + mapping. The product can be used as mapping in its own right or can be used to provide a + flexible geographic context reference for customers’ overlay information. As well as the + vector dataset, a number of output styles are suggested. The main characteristics of the + dataset is representation of real world features (e.g. roads, railways, buildings, + vegetation, boundaries and urban extents) as points, lines, polygons, and + text. + + 49.86 -8.45, 49.86 1.78, 60.86 1.78, 60.86 -8.45, 49.86 + -8.45 + OS VectorMap + Local + ordnancesurvey.co.uk + + + diff --git a/ckanext/qa/tests/data/rainfall.txt b/ckanext/qa/tests/data/rainfall.txt new file mode 100644 index 00000000..0cf1db2b --- /dev/null +++ b/ckanext/qa/tests/data/rainfall.txt @@ -0,0 +1,111 @@ +UK Rainfall (mm) +Areal series, starting from 1910 +Allowances have been made for topographic, coastal and urban effects where relationships are found to exist. +Seasons: Winter=Dec-Feb, Spring=Mar-May, Summer=June-Aug, Autumn=Sept-Nov. (Winter: Year refers to Jan/Feb). +Values are ranked and displayed to 1 dp. Where values are equal, rankings are based in order of year descending. +Data are provisional from March 2012 & Spring 2012. Last updated 03/09/2012 + +Year JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC WIN SPR SUM AUT ANN +1910 111.4 126.1 49.9 95.3 71.8 70.2 97.1 140.2 27.0 89.4 128.4 142.2 --- 217.0 307.5 244.8 1148.9 +1911 59.2 99.7 62.1 69.0 52.2 77.0 43.3 69.3 69.4 91.5 141.3 188.4 301.0 183.4 189.6 302.2 1022.4 +1912 111.7 79.5 128.2 36.1 58.2 124.5 92.3 167.6 57.1 116.2 106.9 163.7 379.6 222.5 384.4 280.3 1242.0 +1913 123.4 57.1 131.2 102.9 81.5 63.8 33.7 44.5 73.7 103.0 125.9 86.6 344.2 315.6 142.1 302.6 1027.4 +1914 78.8 114.9 124.3 52.3 59.6 52.5 94.4 80.1 57.2 61.8 139.3 203.3 280.3 236.3 227.0 258.3 1118.6 +1915 118.7 141.1 55.0 65.9 53.2 37.7 124.7 81.6 54.9 74.5 84.7 183.8 463.1 174.0 244.0 214.0 1075.6 +1916 108.9 140.3 88.3 70.2 93.0 71.4 73.3 92.0 54.8 173.5 129.6 107.1 433.0 251.5 236.7 358.0 1202.6 +1917 73.6 33.8 74.2 63.6 69.2 73.5 61.0 166.7 76.0 168.0 121.4 61.5 214.4 207.0 301.2 365.4 1042.4 +1918 105.2 106.3 42.9 49.6 65.0 42.4 120.4 84.4 182.2 106.6 97.6 134.4 272.9 157.5 247.1 386.4 1136.9 +1919 120.1 59.8 118.4 80.9 29.8 64.9 50.1 90.3 82.4 70.4 100.9 166.5 314.3 229.2 205.2 253.7 1034.5 +1920 139.7 96.1 109.6 106.1 94.4 58.7 123.5 70.4 78.9 75.7 82.2 104.6 402.3 310.0 252.6 236.8 1139.8 +1921 149.3 24.1 103.9 38.9 62.8 17.7 59.6 109.7 53.5 82.5 72.7 130.6 278.1 205.7 187.0 208.7 905.4 +1922 124.1 114.7 72.4 86.1 63.4 52.4 117.6 99.5 79.9 46.9 66.5 127.3 369.4 221.9 269.5 193.4 1050.8 +1923 104.5 152.6 51.1 79.1 78.4 35.7 91.5 128.5 112.6 157.8 112.8 115.5 384.4 208.6 255.6 383.1 1220.0 +1924 103.9 39.0 37.3 75.7 121.6 71.9 122.6 113.0 133.3 122.8 83.2 153.6 258.3 234.6 307.4 339.2 1177.7 +1925 100.5 136.4 50.9 92.4 120.3 14.2 73.0 85.7 103.5 111.5 64.9 109.1 390.5 263.6 172.9 279.8 1062.2 +1926 137.0 94.4 60.0 71.2 74.2 77.1 78.5 86.2 81.1 117.1 165.1 52.5 340.4 205.4 241.8 363.3 1094.5 +1927 128.8 76.5 91.9 80.8 51.3 106.8 97.4 132.9 157.2 111.1 117.0 65.5 257.8 224.0 337.1 385.3 1217.2 +1928 205.1 104.9 94.3 48.2 40.7 109.9 70.9 109.6 63.2 159.3 145.9 106.5 375.4 183.2 290.4 368.5 1258.5 +1929 48.5 37.9 17.0 40.9 70.2 61.3 81.6 106.5 46.8 152.0 188.0 213.0 192.9 128.0 249.4 386.9 1063.7 +1930 153.0 23.7 71.9 68.0 60.0 54.6 102.6 138.1 113.8 136.7 143.0 114.9 389.8 199.9 295.3 393.5 1180.4 +1931 107.5 100.3 28.1 87.2 97.3 112.0 117.3 98.4 65.0 64.2 154.8 82.9 322.7 212.7 327.6 284.0 1114.9 +1932 138.9 8.8 70.8 99.9 107.9 35.5 110.6 59.6 109.9 171.5 91.5 100.1 230.6 278.7 205.7 372.9 1105.1 +1933 96.2 105.4 73.3 55.5 54.9 61.1 77.6 57.0 46.9 119.6 55.6 32.4 301.7 183.7 195.6 222.1 835.4 +1934 114.1 21.5 80.4 96.8 64.3 50.0 66.7 101.8 99.2 127.3 56.9 177.1 168.0 241.5 218.5 283.4 1056.1 +1935 63.8 122.4 43.4 100.6 33.7 101.6 39.5 74.1 152.8 173.4 144.5 93.5 363.3 177.7 215.2 470.7 1143.3 +1936 126.3 74.9 64.6 48.1 37.8 81.0 143.0 52.4 101.3 94.4 106.8 132.7 294.7 150.6 276.4 302.5 1063.4 +1937 153.2 137.9 79.8 69.3 67.4 55.4 85.8 64.2 76.0 84.9 47.1 93.5 423.8 216.6 205.5 208.0 1014.7 +1938 147.7 58.0 57.2 14.1 82.3 94.0 108.6 85.5 80.7 172.2 164.2 119.4 299.1 153.7 288.1 417.0 1183.9 +1939 147.3 96.9 79.4 66.2 33.2 63.4 144.9 69.7 47.3 104.3 173.2 71.9 363.6 178.8 277.9 324.8 1097.7 +1940 68.5 71.6 93.5 71.5 44.0 27.8 134.6 38.6 73.0 125.5 190.4 108.3 212.1 209.0 201.0 389.0 1047.5 +1941 74.2 106.6 82.2 49.6 64.2 31.4 83.1 131.7 33.3 108.7 104.6 75.1 289.1 196.0 246.3 246.6 944.8 +1942 125.7 46.7 68.0 50.0 95.7 31.1 89.4 107.6 103.9 127.2 44.9 136.8 247.4 213.7 228.0 276.0 1026.9 +1943 147.2 83.1 45.6 65.8 92.9 76.7 67.4 116.5 97.7 128.5 86.1 64.3 367.1 204.3 260.6 312.4 1071.9 +1944 116.2 52.7 28.3 65.7 61.4 82.0 74.2 82.6 118.6 131.3 165.2 106.3 233.2 155.4 238.8 415.1 1084.5 +1945 100.4 110.8 54.2 50.9 96.4 94.0 77.7 72.2 92.0 118.8 22.1 118.7 317.5 201.5 243.9 232.8 1008.1 +1946 114.5 96.2 50.4 49.1 61.0 93.6 101.3 132.0 147.0 31.6 162.8 112.7 329.5 160.5 326.8 341.5 1152.2 +1947 99.1 44.1 141.1 117.1 73.5 81.7 83.8 10.3 86.5 40.0 129.2 82.1 255.9 331.7 175.8 255.7 988.5 +1948 180.2 78.2 64.2 68.4 66.4 107.4 68.4 138.0 109.7 108.3 77.6 140.9 340.4 199.1 313.9 295.6 1207.9 +1949 91.1 77.7 58.4 92.8 68.8 27.8 59.0 87.7 58.6 158.2 125.2 147.9 309.7 219.9 174.5 342.0 1053.1 +1950 67.1 140.7 62.5 95.6 50.6 62.2 114.9 132.5 180.0 77.8 139.6 79.0 355.7 208.7 309.6 397.4 1202.4 +1951 114.9 109.9 105.8 87.7 65.1 44.1 73.3 134.9 86.8 41.1 193.6 141.0 303.8 258.6 252.3 321.5 1198.3 +1952 107.2 39.9 81.6 61.0 66.1 68.9 51.5 116.5 90.6 120.5 95.0 110.7 288.1 208.7 236.9 306.1 1009.6 +1953 50.6 62.2 34.0 81.6 70.1 62.6 119.2 95.4 104.5 79.2 118.3 75.3 223.5 185.7 277.2 302.0 952.9 +1954 88.1 93.7 85.6 29.4 93.7 94.0 95.9 117.7 119.2 171.6 182.2 138.0 257.0 208.6 307.6 473.1 1309.1 +1955 88.1 76.1 53.3 49.7 99.0 82.2 30.6 31.6 80.4 96.8 64.5 147.6 302.3 201.9 144.4 241.7 899.8 +1956 120.5 42.5 45.3 48.3 44.8 76.4 122.4 160.4 105.7 82.4 58.5 140.5 310.5 138.4 359.2 246.6 1047.7 +1957 120.5 99.4 92.4 27.6 51.7 57.4 123.1 121.1 120.4 102.6 65.6 119.6 360.5 171.7 301.5 288.6 1101.3 +1958 113.9 117.9 51.3 43.6 94.6 100.1 106.6 110.4 119.4 102.3 55.3 120.3 351.4 189.5 317.2 277.1 1135.9 +1959 102.8 25.3 74.5 91.2 34.8 62.4 92.9 44.1 23.8 119.1 144.6 177.7 248.5 200.5 199.3 287.5 993.2 +1960 125.2 98.5 51.4 68.5 46.4 59.2 110.8 117.8 101.9 146.3 147.4 125.5 401.5 166.2 287.8 395.6 1198.8 +1961 115.7 92.8 42.5 96.7 45.9 51.0 81.7 104.5 102.3 142.3 78.8 100.2 334.0 185.1 237.2 323.4 1054.3 +1962 148.6 70.0 50.5 69.1 72.6 41.5 62.5 136.8 119.8 53.6 77.1 102.4 318.8 192.2 240.8 250.5 1004.6 +1963 32.2 34.1 118.0 79.4 74.9 84.8 61.9 109.8 86.7 90.8 164.3 38.7 168.7 272.2 256.6 341.8 975.6 +1964 43.5 37.3 79.3 74.8 73.0 75.6 66.4 84.2 72.7 78.7 84.7 125.3 119.5 227.1 226.1 236.2 895.5 +1965 120.5 24.1 74.9 77.5 69.2 87.1 98.0 86.5 138.4 69.7 104.8 160.8 270.0 221.6 271.5 312.9 1111.5 +1966 64.4 122.9 73.9 88.9 83.9 101.3 70.8 97.2 73.3 122.6 104.8 155.8 348.1 246.6 269.2 300.8 1159.8 +1967 82.6 105.4 103.7 54.4 128.3 49.2 76.1 81.0 113.7 192.5 91.2 96.4 343.9 286.4 206.3 397.4 1174.5 +1968 102.9 52.5 90.4 64.9 81.8 77.4 94.5 65.7 132.5 129.3 74.2 79.6 251.8 237.1 237.5 335.9 1045.6 +1969 110.1 70.5 58.8 62.2 105.6 65.3 68.7 74.0 68.7 58.5 140.9 96.8 260.2 226.6 208.0 268.1 980.0 +1970 107.3 104.1 76.9 90.0 40.4 52.3 95.2 91.7 95.2 109.7 170.7 61.6 308.2 207.2 239.2 375.6 1095.0 +1971 111.0 57.0 74.6 52.9 56.2 86.9 55.3 102.9 36.3 100.9 111.6 67.2 229.7 183.7 245.1 248.8 912.9 +1972 114.7 79.2 75.9 85.5 86.7 89.5 56.2 51.1 35.4 47.5 123.5 116.1 261.0 248.0 196.8 206.4 961.2 +1973 68.7 66.8 41.6 69.7 83.1 66.7 83.8 79.6 84.7 61.0 95.1 104.3 251.6 194.4 230.1 240.8 905.2 +1974 169.3 109.5 51.7 14.4 53.8 63.1 85.5 89.9 141.5 93.6 144.9 135.9 383.1 119.8 238.5 380.1 1153.1 +1975 164.9 35.4 69.3 78.2 40.6 34.5 77.5 59.0 125.4 52.7 94.4 67.5 336.1 188.2 171.0 272.5 899.4 +1976 109.5 60.2 75.5 34.6 81.8 37.5 43.3 23.7 137.9 159.7 96.7 91.1 237.2 191.9 104.6 394.2 951.5 +1977 102.2 129.5 92.5 77.4 54.5 75.2 37.8 94.1 79.0 104.9 139.9 92.1 322.7 224.4 207.1 323.8 1079.0 +1978 125.1 82.8 111.5 46.5 37.9 60.5 82.7 74.5 100.0 52.4 111.7 154.1 300.0 195.9 217.7 264.1 1039.7 +1979 93.3 52.6 140.0 73.3 104.4 49.4 56.0 103.5 72.5 99.6 133.7 166.5 300.0 317.6 208.9 305.9 1144.8 +1980 89.2 91.7 100.2 17.8 27.8 121.3 81.8 100.2 107.9 145.5 117.3 128.4 347.4 145.7 303.3 370.7 1129.0 +1981 96.3 67.8 150.3 48.0 87.1 64.7 64.6 44.9 168.8 154.1 123.5 86.2 292.6 285.4 174.2 446.4 1156.4 +1982 100.2 71.2 117.4 29.7 58.8 96.9 38.5 106.3 117.2 138.1 157.9 138.0 257.7 206.0 241.8 413.1 1170.3 +1983 147.2 45.6 97.4 87.2 102.5 49.3 37.5 37.3 120.1 138.4 50.4 148.7 330.8 287.1 124.2 309.0 1061.8 +1984 167.2 75.6 72.1 27.6 44.7 50.4 35.8 54.9 128.6 135.0 166.9 107.5 391.5 144.3 141.0 430.4 1066.0 +1985 75.3 34.5 75.5 81.4 66.8 88.0 102.3 152.8 97.8 58.4 97.0 144.4 217.3 223.7 343.2 253.2 1074.3 +1986 142.9 17.0 108.4 82.1 114.6 47.8 65.0 116.4 35.2 116.1 155.6 184.1 304.2 305.0 229.1 306.8 1185.0 +1987 44.3 67.3 109.8 62.6 53.3 100.3 82.9 84.5 92.0 161.0 89.8 88.6 295.7 225.7 267.7 342.8 1036.3 +1988 166.6 88.8 123.9 50.7 56.8 36.2 145.3 112.9 91.5 116.3 64.2 79.8 344.0 231.4 294.4 272.0 1133.0 +1989 95.8 133.8 121.7 76.9 31.0 61.0 41.0 98.7 58.1 126.4 59.5 116.8 309.4 229.6 200.7 244.0 1020.7 +1990 166.1 187.9 92.9 57.9 34.4 90.7 47.9 70.7 81.1 140.1 77.7 127.5 470.9 185.3 209.3 298.9 1175.0 +1991 109.1 68.6 92.1 87.6 22.0 100.2 74.1 42.1 82.4 104.8 135.5 81.2 305.2 201.7 216.4 322.7 999.7 +1992 77.4 87.5 125.0 88.0 57.3 38.6 84.2 157.3 115.5 94.5 158.5 105.0 246.1 270.3 280.1 368.5 1188.8 +1993 171.2 32.6 57.8 99.2 95.8 67.0 91.8 60.3 97.5 91.9 72.4 184.8 308.8 252.8 219.2 261.8 1122.5 +1994 151.5 86.5 142.5 90.7 48.6 60.6 52.8 79.8 101.1 96.9 105.7 169.6 422.9 281.9 193.2 303.7 1186.6 +1995 176.6 138.9 92.3 39.1 57.9 29.0 56.2 17.8 132.0 115.3 97.9 72.1 485.1 189.4 103.0 345.2 1025.2 +1996 73.5 99.8 48.2 70.6 64.1 41.5 53.8 76.5 43.9 134.7 145.4 65.9 245.4 182.9 171.9 324.0 918.0 +1997 29.0 163.7 65.5 41.9 85.0 112.6 62.3 81.5 60.7 71.7 120.8 130.8 258.7 192.4 256.5 253.2 1025.6 +1998 131.0 79.8 103.5 116.6 40.4 118.8 90.1 76.8 90.9 183.5 116.2 119.5 341.5 260.6 285.6 390.6 1267.1 +1999 160.3 81.2 87.1 85.9 73.6 90.8 44.9 89.6 137.1 91.7 106.7 190.3 360.9 246.7 225.2 335.5 1239.1 +2000 99.7 127.7 66.5 120.3 75.7 56.8 57.5 82.6 130.4 194.8 172.7 152.6 417.7 262.4 197.0 497.8 1337.3 +2001 79.4 97.1 85.7 89.6 43.3 58.2 81.8 96.9 89.1 165.8 95.5 70.4 329.1 218.6 236.9 350.4 1052.8 +2002 135.1 175.6 75.7 68.2 101.7 86.9 98.5 73.9 40.9 154.3 163.8 109.2 381.1 245.6 259.3 358.9 1283.7 +2003 114.6 48.6 54.0 50.6 98.0 71.1 78.2 27.1 54.3 64.5 121.0 122.2 272.5 202.5 176.5 239.8 904.2 +2004 152.2 74.5 70.4 93.1 51.1 85.0 70.7 159.8 103.9 165.8 75.4 111.6 348.9 214.6 315.6 345.1 1213.6 +2005 127.6 70.3 73.3 91.2 72.9 72.0 59.6 85.6 93.1 142.8 116.9 81.0 309.5 237.3 217.2 352.7 1086.2 +2006 60.1 65.3 110.9 67.8 112.5 42.4 53.5 92.5 102.7 143.8 154.0 173.7 206.5 291.2 188.3 400.6 1179.2 +2007 153.8 110.4 88.9 27.0 114.1 136.2 135.2 86.5 67.1 65.2 101.5 114.4 437.9 230.0 357.8 233.8 1200.3 +2008 189.6 82.3 122.5 76.2 47.9 78.5 108.1 133.6 106.3 155.7 106.4 87.9 386.3 246.6 320.2 368.4 1295.0 +2009 119.8 60.3 79.5 60.2 82.0 62.1 145.6 115.3 64.2 107.8 215.7 100.9 268.0 221.7 323.0 387.7 1213.3 +2010 79.7 74.8 79.4 48.0 39.0 38.6 107.6 97.6 114.0 101.1 123.2 47.5 255.4 166.4 243.8 338.3 950.5 +2011 102.8 114.5 49.7 36.7 101.8 85.1 76.1 105.8 108.5 122.8 100.6 168.1 264.9 188.2 266.9 331.9 1172.5 +2012 110.9 60.0 36.4 126.5 66.8 145.3 115.9 109.5 339.0 229.7 370.7 diff --git a/ckanext/qa/tests/data/spendover25kdownloadSep.csv b/ckanext/qa/tests/data/spendover25kdownloadSep.csv new file mode 100644 index 00000000..1008d80c --- /dev/null +++ b/ckanext/qa/tests/data/spendover25kdownloadSep.csv @@ -0,0 +1,190 @@ +Department,Entity,Date of Payment,Expense Type,Expense Area,Supplier,Transaction No, Amount in Sterling +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Appleby Health Centre,Exeter 23/09/2011," 27,275.25 " +Department of Health,Cumbria PCT,06-Sep-11,MH-Dementia/Challenging Behav,Commissioning,BARCHESTER HEALTHCARE,0081135561," 57,200.00 " +Department of Health,Cumbria PCT,20-Sep-11,Continuing Care,Commissioning,BARCHESTER HEALTHCARE,0081135675," 102,809.15 " +Department of Health,Cumbria PCT,20-Sep-11,Independent Sector,Commissioning,BARCHESTER HEALTHCARE,0081136222," 51,757.81 " +Department of Health,Cumbria PCT,27-Sep-11,Independent Sector,Commissioning,BARCHESTER HEALTHCARE,0081136546," 65,406.04 " +Department of Health,Cumbria PCT,23-Sep-11,APMS - Essential Services,Primary Care,Beech House Group Practice,Exeter 23/09/2011," 167,539.60 " +Department of Health,Cumbria PCT,23-Sep-11,APMS - Enhanced Services,Primary Care,Beech House Group Practice,Exeter 23/09/2011," 69,967.26 " +Department of Health,Cumbria PCT,23-Sep-11,APMS - QOF,Primary Care,Beech House Group Practice,Exeter 23/09/2011," 26,008.33 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Beechwood Group Practice,Exeter 23/09/2011," 36,432.94 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Birbeck Medcial Group,Exeter 23/09/2011," 83,896.99 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Birket I J & Ptrs,Exeter 23/09/2011," 28,650.27 " +Department of Health,Cumbria PCT,06-Sep-11,Other Healthcare,Commissioning,BLACKPOOL TEACHING HOSPITALS NHSFT,0081134796," 45,521.00 " +Department of Health,Cumbria PCT,13-Sep-11,Lucentis Drugs,Commissioning,BLACKPOOL TEACHING HOSPITALS NHSFT,0081135653," 38,381.00 " +Department of Health,Cumbria PCT,20-Sep-11,Independent Sector,Commissioning,BMI HEALTHCARE COLLECTIONS - LANCASTER,0081136323," 37,713.41 " +Department of Health,Cumbria PCT,06-Sep-11,Independent Sector,Commissioning,BMI HEALTHCARE LTD(LANCASTER HOSPITAL),0081135565," 39,063.32 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Cost of Drugs,Primary Care,Brampton Medical Practice,Exeter 01/09/2011," 122,695.68 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Brampton Medical Practice,Exeter 23/09/2011," 82,972.41 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing Drugs Advances,Primary Care,Brampton Medical Practice,Exeter 01/09/2011," 66,965.28 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Professional Fees etc,Primary Care,Brampton Medical Practice,Exeter 01/09/2011," 42,058.00 " +Department of Health,Cumbria PCT,20-Sep-11,Continuing Care,Commissioning,BRANCASTER CARE HOMES LIMITED,0081135362," 46,522.81 " +Department of Health,Cumbria PCT,20-Sep-11,Continuing Care,Commissioning,BRANCASTER CARE HOMES LIMITED,0081136333," 45,680.14 " +Department of Health,Cumbria PCT,27-Sep-11,Continuing Care,Commissioning,BRANCASTER CARE HOMES LIMITED,0081135361," 39,641.94 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Brennan M J & Ptrs,Exeter 23/09/2011," 42,453.73 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Brunswick House Medical Group,Exeter 23/09/2011," 78,459.15 " +Department of Health,Cumbria PCT,13-Sep-11,Private Circuits,Headquarters,BT BILLING,0081136043," 28,072.97 " +Department of Health,Cumbria PCT,20-Sep-11,Continuing Care,Commissioning,BUPA CARE HOMES,0081136335," 29,774.58 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Burns P& Ptrs,Exeter 23/09/2011," 34,510.11 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Cost of Drugs,Primary Care,Caldbeck Surgery,Exeter 01/09/2011," 35,816.23 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing Drugs Advances,Primary Care,Caldbeck Surgery,Exeter 01/09/2011," 35,226.66 " +Department of Health,Cumbria PCT,20-Sep-11,Caring for Carers,Primary Care Contractors,CARLISLE CARERS ASSOCIATION,0081136375," 34,000.00 " +Department of Health,Cumbria PCT,13-Sep-11,"sight tests, glasses",Opthalmic,Carlisle Vision Plus Ltd,0089513520," 129,300.39 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Castlehead Medcial Centre,Exeter 23/09/2011," 35,766.28 " +Department of Health,Cumbria PCT,20-Sep-11,Prof Fees & Consultancy Servs,Headquarters,CASTLERIGG CONSULTING LTD,0081136320," 22,000.00 " +Department of Health,Cumbria PCT,13-Sep-11,Contract: PbR,Commissioning,CENTRAL MANCHESTER UNIV HOSP NHS FOUNDAT,0081135648," 157,205.00 " +Department of Health,Cumbria PCT,06-Sep-11,Child & Adolescent,Commissioning,CHEADLE ROYAL HEALTHCARE,0081135644," 81,869.76 " +Department of Health,Cumbria PCT,13-Sep-11,Contract: PbR,Commissioning,CITY HOSPITALS SUNDERLAND FOUNDATION NHS,0081135751," 34,833.00 " +Department of Health,Cumbria PCT,13-Sep-11,Continuing Care,Commissioning,COMMUNICARE (GB) LTD,0081135714," 49,734.86 " +Department of Health,Cumbria PCT,13-Sep-11,"sight tests, glasses",Opthalmic,Conlon & Sons (L'Pool) Ltd,0089513483," 40,571.94 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing Drugs Advances,Primary Care,Court Thorn Surgery,Exeter 01/09/2011," 33,539.55 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Cost of Drugs,Primary Care,Court Thorn Surgery,Exeter 01/09/2011," 31,338.96 " +Department of Health,Cumbria PCT,04-Oct-11,MH-Slow Stream Rehab/CC,Commissioning,CRAEGMOOR HEALTHCARE CO LTD,0081135382," 38,222.61 " +Department of Health,Cumbria PCT,06-Sep-11,Drug Intervention Programme,Commissioning,CRI,0081135576," 62,383.75 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Crosby P & Partners,Exeter 23/09/2011," 29,047.02 " +Department of Health,Cumbria PCT,13-Sep-11,RNCC -NHS Funded Nursing Care,Commissioning,CUMBRIA COUNTY COUNCIL,0081125336," 33,714.11 " +Department of Health,Cumbria PCT,13-Sep-11,RNCC -NHS Funded Nursing Care,Commissioning,CUMBRIA COUNTY COUNCIL,0081126172," 56,724.41 " +Department of Health,Cumbria PCT,13-Sep-11,RNCC -NHS Funded Nursing Care,Commissioning,CUMBRIA COUNTY COUNCIL,0081134836," 35,471.12 " +Department of Health,Cumbria PCT,20-Sep-11,RNCC -NHS Funded Nursing Care,Commissioning,CUMBRIA COUNTY COUNCIL,0081134835," 51,418.40 " +Department of Health,Cumbria PCT,20-Sep-11,RNCC -NHS Funded Nursing Care,Commissioning,CUMBRIA COUNTY COUNCIL,0081134840," 51,263.11 " +Department of Health,Cumbria PCT,20-Sep-11,RNCC -NHS Funded Nursing Care,Commissioning,CUMBRIA COUNTY COUNCIL,0081134841," 40,177.09 " +Department of Health,Cumbria PCT,20-Sep-11,RNCC -NHS Funded Nursing Care,Commissioning,CUMBRIA COUNTY COUNCIL,0081135556," 46,229.74 " +Department of Health,Cumbria PCT,04-Oct-11,RNCC -NHS Funded Nursing Care,Commissioning,CUMBRIA COUNTY COUNCIL,0081131707," 39,498.40 " +Department of Health,Cumbria PCT,04-Oct-11,RNCC -NHS Funded Nursing Care,Commissioning,CUMBRIA COUNTY COUNCIL,0081131708," 39,345.85 " +Department of Health,Cumbria PCT,04-Oct-11,RNCC -NHS Funded Nursing Care,Commissioning,CUMBRIA COUNTY COUNCIL,0081133659," 44,488.09 " +Department of Health,Cumbria PCT,04-Oct-11,RNCC -NHS Funded Nursing Care,Commissioning,CUMBRIA COUNTY COUNCIL,0081135521," 58,518.87 " +Department of Health,Cumbria PCT,04-Oct-11,RNCC -NHS Funded Nursing Care,Commissioning,CUMBRIA COUNTY COUNCIL,0081136056," 40,430.35 " +Department of Health,Cumbria PCT,04-Oct-11,RNCC -NHS Funded Nursing Care,Commissioning,CUMBRIA COUNTY COUNCIL,0081136059," 35,234.65 " +Department of Health,Cumbria PCT,04-Oct-11,RNCC -NHS Funded Nursing Care,Commissioning,CUMBRIA COUNTY COUNCIL,0081136314," 46,492.22 " +Department of Health,Cumbria PCT,04-Oct-11,LD Pooled Fund,Commissioning,CUMBRIA COUNTY COUNCIL,0081136744," 680,256.00 " +Department of Health,Cumbria PCT,04-Oct-11,LD Pooled Fund,Commissioning,CUMBRIA COUNTY COUNCIL,0081136745," 680,256.00 " +Department of Health,Cumbria PCT,27-Sep-11,Out Of Hours,Commissioning,CUMBRIA HEALTH ON CALL (CHOC),0081136383," 1,878,021.00 " +Department of Health,Cumbria PCT,13-Sep-11,Contract: Community Services,Commissioning,CUMBRIA PARTNERSHIP NHS TRUST,0081135701," 7,589,000.00 " +Department of Health,Cumbria PCT,13-Sep-11,Contract: Mental Health,Commissioning,CUMBRIA PARTNERSHIP NHS TRUST,0081135702," 5,278,774.86 " +Department of Health,Cumbria PCT,04-Oct-11,Recharges From Other NHS Units,Headquarters,CUMBRIA PARTNERSHIP NHS TRUST,0081136135," 55,000.00 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing Drugs Advances,Primary Care,Dalston Medcial Group,Exeter 01/09/2011," 52,237.07 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Cost of Drugs,Primary Care,Dalston Medcial Group,Exeter 01/09/2011," 44,253.46 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Dalston Medcial Group,Exeter 23/09/2011," 28,637.22 " +Department of Health,Cumbria PCT,27-Sep-11,Continuing Care,Commissioning,DALTON COURT PRIORY,0081135383," 31,800.00 " +Department of Health,Cumbria PCT,04-Oct-11,Prof Fees & Consultancy Servs,Headquarters,DELOITTE MCS LIMITED,0081136782," 131,770.00 " +Department of Health,Cumbria PCT,04-Oct-11,Non Contract Activity - Other,Commissioning,DEPARTMENT OF HEALTH,0081135937," 859,267.91 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Derwent House Surgery,Exeter 23/09/2011," 34,823.18 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Cost of Drugs,Primary Care,Derwent House Surgery,Exeter 01/09/2011," 31,586.43 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing Drugs Advances,Primary Care,Derwent House Surgery,Exeter 01/09/2011," 29,298.56 " +Department of Health,Cumbria PCT,04-Oct-11,Continuing Care,Commissioning,DISABILITY ASSOCIATION CARLISLE & EDEN,0081136238," 44,078.12 " +Department of Health,Cumbria PCT,04-Oct-11,Continuing Care,Commissioning,DISABILITY ASSOCIATION CARLISLE & EDEN,0081136241," 44,078.12 " +Department of Health,Cumbria PCT,27-Sep-11,Contract: PbR,Commissioning,EAST LANCASHIRE HOSP NHS TST,0081136145," 29,401.00 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Eden Medcial Group,Exeter 23/09/2011," 75,521.86 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Elliott M & Ptrs,Exeter 23/09/2011," 58,177.63 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Cost of Drugs,Primary Care,Elliott M & Ptrs,Exeter 01/09/2011," 27,455.40 " +Department of Health,Cumbria PCT,27-Sep-11,Premises,Primary Care Contractors,Fusehill Medical Practice,0089513587," 40,060.33 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Fusehill Street Medical Practice,Exeter 23/09/2011," 44,082.74 " +Department of Health,Cumbria PCT,13-Sep-11,Contract: PbR,Commissioning,GATESHEAD HEALTH NHS FOUNDATION TRUST,0081135873," 57,290.00 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Gorrigan J H & Ptrs,Exeter 23/09/2011," 39,431.48 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing Drugs Advances,Primary Care,Gorrigan J H & Ptrs,Exeter 01/09/2011," 35,569.50 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Cost of Drugs,Primary Care,Gorrigan J H & Ptrs,Exeter 01/09/2011," 33,814.85 " +Department of Health,Cumbria PCT,13-Sep-11,Prof Fees & Consultancy Servs,Headquarters,GRAHAM SHIPP (CONSULTANCY),0081136030," 73,407.50 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Green C j & Ptrs,Exeter 23/09/2011," 28,125.97 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing Drugs Advances,Primary Care,Hall N L & Ptrs,Exeter 01/09/2011," 42,237.88 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Cost of Drugs,Primary Care,Hall N L & Ptrs,Exeter 01/09/2011," 36,143.27 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing Drugs Advances,Primary Care,Hall P J I & Ptrs,Exeter 01/09/2011," 41,022.32 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Cost of Drugs,Primary Care,Hall P J I & Ptrs,Exeter 01/09/2011," 39,550.10 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Hall P J I & Ptrs,Exeter 23/09/2011," 35,658.44 " +Department of Health,Cumbria PCT,13-Sep-11,Continuing Care,Commissioning,HAVEN CARE CENTRES LTD,0081135325," 31,443.61 " +Department of Health,Cumbria PCT,27-Sep-11,Continuing Care,Commissioning,HAVEN CARE CENTRES LTD,0081136507," 30,429.30 " +Department of Health,Cumbria PCT,13-Sep-11,Continuing Care,Commissioning,HEMINGWAY GROUP LTD,0081135688," 50,737.77 " +Department of Health,Cumbria PCT,13-Sep-11,Continuing Care,Commissioning,HERON HILL CARE HOME,0081135387," 83,198.27 " +Department of Health,Cumbria PCT,27-Sep-11,Continuing Care,Commissioning,HILLCROFT (LANCASTER) NURSING HOMES,0081135711," 31,860.00 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing Drugs Advances,Primary Care,Hinnings Road Surggery,Exeter 01/09/2011," 42,865.80 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Cost of Drugs,Primary Care,Hinnings Road Surggery,Exeter 01/09/2011," 31,289.20 " +Department of Health,Cumbria PCT,04-Oct-11,Child & Adolescent,Commissioning,HUNTERCOMBE MAIDENHEAD (FOUR SEASONS HC),0081136294," 28,665.00 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Irving J A& Ptrs,Exeter 23/09/2011," 33,307.58 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Irwin J E & Ptrs,Exeter 23/09/2011," 28,176.38 " +Department of Health,Cumbria PCT,13-Sep-11,Provisions RSPT,Balance Sheet,IRWIN MITCHELL SOLICITORS,0081135996," 93,993.75 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,James Street Group Practice,Exeter 23/09/2011," 52,215.83 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Jeelani G,Exeter 23/09/2011," 25,335.38 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Johnson R N & Ptrs,Exeter 23/09/2011," 41,928.56 " +Department of Health,Cumbria PCT,31-Aug-11,Financial Services,Headquarters,LANCASHIRE & SOUTH CUMBRIA AGENCY,0081135254," 37,300.00 " +Department of Health,Cumbria PCT,06-Sep-11,Contract: PbR,Commissioning,Lancashire Teaching Hosp NHS Foundation,0081134100," 693,210.00 " +Department of Health,Cumbria PCT,13-Sep-11,Contract: PbR,Commissioning,Lancashire Teaching Hosp NHS Foundation,0081135683," 484,735.00 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Lowther Medcial Group,Exeter 23/09/2011," 60,511.11 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing Drugs Advances,Primary Care,MacKenzie A G & Ptrs,Exeter 01/09/2011," 39,390.20 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Cost of Drugs,Primary Care,MacKenzie A G & Ptrs,Exeter 01/09/2011," 38,261.50 " +Department of Health,Cumbria PCT,23-Sep-11,Premises - PMS,Primary Care,MacKenzie A G & Ptrs,Exeter 23/09/2011," 27,291.67 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Mansion House Surgery,Exeter 23/09/2011," 34,287.60 " +Department of Health,Cumbria PCT,27-Sep-11,health Services,Primary Care Contractors,MARYPORT HEALTH SERVICES,0081136500," 30,500.00 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Murray G R & Ptrs,Exeter 23/09/2011," 57,662.06 " +Department of Health,Cumbria PCT,13-Sep-11,Contract: Mental Health,Commissioning,NATIONAL OFFENDER MANGMNT SERVICE,0081129915," 50,391.71 " +Department of Health,Cumbria PCT,27-Sep-11,MH-Acquired Brain Injury,Commissioning,NEURO PARTNERS LTD,0081136581," 78,569.48 " +Department of Health,Cumbria PCT,06-Sep-11,Contract: HART,Commissioning,NHS BLACKPOOL,0081135619," 34,431.00 " +Department of Health,Cumbria PCT,06-Sep-11,Contract: PES,Commissioning,NHS BLACKPOOL,0081135621," 1,534,502.00 " +Department of Health,Cumbria PCT,06-Sep-11,Contract: PTS,Commissioning,NHS BLACKPOOL,0081135622," 371,378.00 " +Department of Health,Cumbria PCT,01-Sep-11,Contract: PbR,Commissioning,NORTH CUMBRIA UNIVERSITY HOSP NHS TRUST,0081134801," 15,000,000.00 " +Department of Health,Cumbria PCT,01-Sep-11,Contract: PbR,Commissioning,NORTH CUMBRIA UNIVERSITY HOSP NHS TRUST,0081135049," 15,000,000.00 " +Department of Health,Cumbria PCT,01-Sep-11,Contract: PbR,Commissioning,NORTH CUMBRIA UNIVERSITY HOSP NHS TRUST,0081135051," 5,000,000.00 " +Department of Health,Cumbria PCT,01-Sep-11,Contract: PbR,Commissioning,NORTH CUMBRIA UNIVERSITY HOSP NHS TRUST,0081135052," 5,000,000.00 " +Department of Health,Cumbria PCT,06-Sep-11,Recharges From Other NHS Units,Provider,NORTH CUMBRIA UNIVERSITY HOSP NHS TRUST,0081123774," 58,558.00 " +Department of Health,Cumbria PCT,06-Sep-11,Recharges From Other NHS Units,Provider,NORTH CUMBRIA UNIVERSITY HOSP NHS TRUST,0081123775," 78,364.00 " +Department of Health,Cumbria PCT,06-Sep-11,NPfIT,Headquarters,NORTH CUMBRIA UNIVERSITY HOSP NHS TRUST,0081124868," 289,726.00 " +Department of Health,Cumbria PCT,06-Sep-11,Estates,Headquarters,NORTH CUMBRIA UNIVERSITY HOSP NHS TRUST,0081124939," 63,500.00 " +Department of Health,Cumbria PCT,06-Sep-11,Estates,Provider,NORTH CUMBRIA UNIVERSITY HOSP NHS TRUST,0081124939," 29,000.00 " +Department of Health,Cumbria PCT,13-Sep-11,serv recghs,Provider,NORTH CUMBRIA UNIVERSITY HOSP NHS TRUST,0081121173," 86,590.00 " +Department of Health,Cumbria PCT,13-Sep-11,serv recghs,Provider,NORTH CUMBRIA UNIVERSITY HOSP NHS TRUST,0081123871," 86,589.00 " +Department of Health,Cumbria PCT,13-Sep-11,Medical Staff Agency,Provider,NORTH CUMBRIA UNIVERSITY HOSP NHS TRUST,0081124351," 25,719.43 " +Department of Health,Cumbria PCT,13-Sep-11,IT/Computer Services,Headquarters,NORTH CUMBRIA UNIVERSITY HOSP NHS TRUST,0081127494," 39,481.36 " +Department of Health,Cumbria PCT,13-Sep-11,Payroll Bureau Service,Headquarters,NORTH CUMBRIA UNIVERSITY HOSP NHS TRUST,0081132170," 82,321.00 " +Department of Health,Cumbria PCT,30-Sep-11,Information for Health,Headquarters,NORTH CUMBRIA UNIVERSITY HOSP NHS TRUST,0081136132," 44,646.00 " +Department of Health,Cumbria PCT,01-Sep-11,Contract: PbR,Commissioning,NORTH WEST SPECIALISED SERVICES COMMISS,0081135068," 3,487,353.00 " +Department of Health,Cumbria PCT,06-Sep-11,Contract: Mental Health,Commissioning,NORTHUMBERLAND TYNE & WEAR NHS TST,0081135512," 137,413.00 " +Department of Health,Cumbria PCT,20-Sep-11,Contract: PbR,Commissioning,NORTHUMBRIA HEALTHCARE NHS FOUNDATION TS,0081136094," 120,587.00 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Nugent J J & Ptrs,Exeter 23/09/2011," 36,707.57 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Oxford Street Surgery,Exeter 23/09/2011," 39,326.34 " +Department of Health,Cumbria PCT,20-Sep-11,Continuing Care,Commissioning,RISEDALE ESTATES LTD,0081135758," 152,881.23 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Rogerson S H & Ptrs,Exeter 23/09/2011," 68,181.18 " +Department of Health,Cumbria PCT,13-Sep-11,"sight tests, glasses",Opthalmic,Rowe S C H Ltd,0089513507," 28,763.15 " +Department of Health,Cumbria PCT,06-Sep-11,Contract: PbR,Commissioning,ROYAL LIVERPOOL & BROADGREEN UNI HOSP,0081135059," 32,245.00 " +Department of Health,Cumbria PCT,23-Sep-11,GMS Other,Primary Care Contractors,Seascale Health Centre,0081136431," 30,000.00 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing Drugs Advances,Primary Care,Seascale Health Centre,Exeter 01/09/2011," 47,959.14 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Cost of Drugs,Primary Care,Seascale Health Centre,Exeter 01/09/2011," 46,121.46 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Seascale Health Centre,Exeter 23/09/2011," 37,192.73 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Cost of Drugs,Primary Care,Shap Surgery,Exeter 01/09/2011," 27,011.21 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Silloth Group Medcial Practice,Exeter 23/09/2011," 28,075.61 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,South Street Surgery,Exeter 23/09/2011," 38,405.61 " +Department of Health,Cumbria PCT,06-Sep-11,Contract: PbR,Commissioning,SOUTH TEES HOSPITALS NHS TRUST,0081135085," 295,622.00 " +Department of Health,Cumbria PCT,06-Sep-11,Contract: PbR,Commissioning,SOUTH TEES HOSPITALS NHS TRUST,0081135219," 161,757.00 " +Department of Health,Cumbria PCT,04-Oct-11,Continuing Care,Commissioning,SOUTHERN CROSS HEALTHCARE,0081136645," 33,379.47 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Spencer Street Surgery,Exeter 23/09/2011," 61,456.23 " +Department of Health,Cumbria PCT,27-Sep-11,Health & Social Care Teams,Primary Care Contractors,ST MARY'S HOSPICE,0081134656," 115,000.00 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Stanwix Medcial Practice,Exeter 23/09/2011," 33,391.06 " +Department of Health,Cumbria PCT,20-Sep-11,Other Healthcare,Commissioning,TEES ESK & WEAR VALLEYS NHS TST,0081124779," 25,083.03 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Cost of Drugs,Primary Care,Temple Sowerby Practice,Exeter 01/09/2011," 38,525.57 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing Drugs Advances,Primary Care,Temple Sowerby Practice,Exeter 01/09/2011," 38,172.48 " +Department of Health,Cumbria PCT,30-Aug-11,Contract: PbR,Commissioning,THE CHRISTIE HOSPITAL NHST,0081135074," 38,787.00 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,The Lakes Medical Centre,Exeter 23/09/2011," 50,890.85 " +Department of Health,Cumbria PCT,04-Oct-11,Non Contract Activity - Other,Commissioning,THE LEEDS TEACHING HOSP NHS TST,0081135229," 37,856.26 " +Department of Health,Cumbria PCT,06-Sep-11,Contract: Screening,Commissioning,THE NEWCASTLE UPON TYNE HOSPITALS,0081134447," 432,422.00 " +Department of Health,Cumbria PCT,06-Sep-11,PPH Drugs,Commissioning,THE NEWCASTLE UPON TYNE HOSPITALS,0081135080," 30,881.99 " +Department of Health,Cumbria PCT,13-Sep-11,Contract: PbR,Commissioning,THE NEWCASTLE UPON TYNE HOSPITALS,0081135650," 1,573,466.67 " +Department of Health,Cumbria PCT,04-Oct-11,Other Drugs,Commissioning,THE NEWCASTLE UPON TYNE HOSPITALS,0081136077," 59,348.02 " +Department of Health,Cumbria PCT,04-Oct-11,Other Drugs,Commissioning,THE NEWCASTLE UPON TYNE HOSPITALS,0081136125," 27,318.11 " +Department of Health,Cumbria PCT,04-Oct-11,Other Drugs,Commissioning,THE NEWCASTLE UPON TYNE HOSPITALS,0081136126," 38,984.30 " +Department of Health,Cumbria PCT,13-Sep-11,Contract: PbR,Commissioning,UNIV HOSP OF MORECAMBE BAY NHS TRUST,0081135452," 9,639,333.00 " +Department of Health,Cumbria PCT,27-Sep-11,Invoiced Medical Staff,Provider,UNIV HOSP OF MORECAMBE BAY NHS TRUST,0081101169," 26,207.68 " +Department of Health,Cumbria PCT,27-Sep-11,Invoiced Medical Staff,Provider,UNIV HOSP OF MORECAMBE BAY NHS TRUST,0081109114," 26,281.24 " +Department of Health,Cumbria PCT,27-Sep-11,Invoiced Medical Staff,Provider,UNIV HOSP OF MORECAMBE BAY NHS TRUST,0081118309," 26,364.98 " +Department of Health,Cumbria PCT,30-Sep-11,Invoiced Medical Staff,Provider,UNIV HOSP OF MORECAMBE BAY NHS TRUST,0081136577," 26,206.39 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing Drugs Advances,Primary Care,Upper Eden Medical Practice,Exeter 01/09/2011," 53,090.39 " +Department of Health,Cumbria PCT,01-Sep-11,Pharmaceutical: Dispensing GPs: Cost of Drugs,Primary Care,Upper Eden Medical Practice,Exeter 01/09/2011," 48,317.35 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Upper Eden Medical Practice,Exeter 23/09/2011," 40,222.60 " +Department of Health,Cumbria PCT,27-Sep-11,Mobile Telephones,Headquarters,VODAFONE,0081136048," 29,627.67 " +Department of Health,Cumbria PCT,13-Sep-11,PFI Scheme Charges,Miscellaneous,VULCANS LANE ESTATES LTD,0081135142," 96,850.54 " +Department of Health,Cumbria PCT,27-Sep-11,PFI Scheme Charges,Miscellaneous,VULCANS LANE ESTATES LTD,0081136398," 93,726.33 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Waind D P & Ptrs,Exeter 23/09/2011," 50,518.49 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Warwick Road Surgery,Exeter 23/09/2011," 32,193.90 " +Department of Health,Cumbria PCT,20-Sep-11,Premises,Primary Care Contractors,West Street Practice,0089513559," 27,977.40 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,West Street Practice,Exeter 23/09/2011," 44,666.30 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Westcroft House Surgery,Exeter 23/09/2011," 26,913.99 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Wiejak A P & Ptr,Exeter 23/09/2011," 27,846.08 " +Department of Health,Cumbria PCT,06-Sep-11,Premises,Primary Care Contractors,Wigton Group Medcial Practice,0089513454," 49,046.06 " +Department of Health,Cumbria PCT,23-Sep-11,Global Sum,Primary Care,Wigton Group Medical Practice ,Exeter 23/09/2011," 42,768.87 " +Department of Health,Cumbria PCT,06-Sep-11,Contract: PbR,Commissioning,WRIGHTINGTON WIGAN & LEIGH NHS TST,0081135067," 194,918.00 " diff --git a/ckanext/qa/tests/data/telephone-network-data.xls.zip b/ckanext/qa/tests/data/telephone-network-data.xls.zip new file mode 100644 index 00000000..4c9ad72a Binary files /dev/null and b/ckanext/qa/tests/data/telephone-network-data.xls.zip differ diff --git a/ckanext/qa/tests/data/terrible_csv.txt b/ckanext/qa/tests/data/terrible_csv.txt new file mode 100644 index 00000000..f937373d Binary files /dev/null and b/ckanext/qa/tests/data/terrible_csv.txt differ diff --git a/ckanext/qa/tests/data/turtle-homelessness-acceptances-per-1000.ttl b/ckanext/qa/tests/data/turtle-homelessness-acceptances-per-1000.ttl new file mode 100644 index 00000000..16076cd0 --- /dev/null +++ b/ckanext/qa/tests/data/turtle-homelessness-acceptances-per-1000.ttl @@ -0,0 +1,51 @@ + + + ; + + ; + + ; + + "For each local authority, the number of households accepted as homeless, per 1000 households." ; + + "Homelessness acceptances per 1000 households" ; + + ; + + ; + + """The term \"Homelessness\" is often considered to apply only to people \"sleeping rough\". However, most of our statistics on homelessness relate to the statutorily homeless i.e. those households which meet specific criteria of priority need set out in legislation, and to whom a homelessness duty has been accepted by a local authority. + +Such households are rarely homeless in the literal sense of being without a roof over their heads, but are more likely to be threatened with the loss of, or are unable to continue with, their current accommodation. + +A detailed explanation of the responsibilities of local authorities in this area is available from the DCLG website, [here](http://www.communities.gov.uk/housing/housingresearch/housingstatistics/housingstatisticsby/homelessnessstatistics/notesdefinitions/). + +A \"main homelessness duty\" is owed where the authority is satisfied that the applicant is eligible for assistance, unintentionally homeless and falls within a specified priority need group. Such statutorily homeless households are referred to as \"acceptances\". + +This dataset provides statistics on the numbers of households accepted as statutorily homeless and presented in terms of acceptances per 1000 households in each local authority area. The total number of acceptances is broken down further according to ethnicity in the related dataset, [Homelessness Acceptances](http://opendatacommunities.org/datasets/homelessness-acceptances). + +At present, data is provided for the third quarter of 2011 (July to September). Data for other time periods will be added in due course. + +The numbers are presented in terms of households, not individuals. A household is defined as: one person living alone, or a group of people living at the same address who share common housekeeping or a living room. + +This data was derived from Table 784a, available for download as an [Excel spreadsheet](http://www.communities.gov.uk/documents/statistics/xls/2102108.xls).""" ; + + "2012-03-21T11:39:06Z"^^ ; + + ; + + "2012-03-21T11:42:19Z"^^ ; + + ; + + ; + + ; + + "Homelessness acceptances per 1000 households" ; + + ; + + ; + + . diff --git a/ckanext/qa/tests/data/turtle-imd-education-score-2010.ttl b/ckanext/qa/tests/data/turtle-imd-education-score-2010.ttl new file mode 100644 index 00000000..fd2bbd68 --- /dev/null +++ b/ckanext/qa/tests/data/turtle-imd-education-score-2010.ttl @@ -0,0 +1,83 @@ + + + ; + + "2010 IMD education score, Congleton 006D" ; + + 5.82 ; + + ; + + ; + + . + + + + ; + + "2010 IMD education score, Hillingdon 001D" ; + + 5.08 ; + + ; + + ; + + . + + + + ; + + "Local authorities ranked by average 2010 IMD employment rank, Luton" ; + + 112 ; + + ; + + ; + + . + + + + ; + + "Local authorities ranked by average 2010 IMD employment rank, Charnwood" ; + + 242 ; + + ; + + ; + + . + + + + ; + + "Local authorities ranked by average 2010 IMD employment rank, Barking and Dagenham" ; + + 29 ; + + ; + + ; + + . + + + + ; + + "Local authorities ranked by average 2010 IMD employment rank, South Cambridgeshire" ; + + 316 ; + + ; + + ; + + . diff --git a/ckanext/qa/tests/data/turtle.ttl b/ckanext/qa/tests/data/turtle.ttl new file mode 100644 index 00000000..2057e119 --- /dev/null +++ b/ckanext/qa/tests/data/turtle.ttl @@ -0,0 +1,11 @@ +# Turtle example from w3.org +@base . +@prefix rdf: . +@prefix rdfs: . +@prefix foaf: . +@prefix rel: . + +<#green-goblin> + rel:enemyOf <#spiderman> ; + a foaf:Person ; # in the context of the Marvel universe + foaf:name "Green Goblin" . \ No newline at end of file diff --git a/ckanext/qa/tests/data/ukho_bathymetry.wcs b/ckanext/qa/tests/data/ukho_bathymetry.wcs new file mode 100644 index 00000000..9cff9245 --- /dev/null +++ b/ckanext/qa/tests/data/ukho_bathymetry.wcs @@ -0,0 +1,69 @@ + + + + 2009 HI1257 The Isles of Eigg and Muck Blk4 8m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + dac.02002926 + + + + -6.481534197037303 56.762691595929375 + -6.2877479017068225 56.8433204509721 + + + 653927.9999957525 6294239.999932948 + 665447.9999953448 6302783.9999329625 + + + 0.0 0.0 + 1441.0 1069.0 + + + urn:ogc:def:crs:EPSG::32629 + urn:ogc:def:method:WCS:1.1:2dSimpleGrid + 653927.9999957525 6302783.9999329625 + 8.0 -8.0 + + + + + + Elevation + + + + + nearest + linear + cubic + nearest + + + + Uncertainty + + + + + nearest + linear + cubic + nearest + + + + urn:ogc:def:crs:EPSG::32629 + urn:ogc:def:crs:EPSG::4258 + urn:ogc:def:crs:EPSG::4326 + image/tiff; subtype=geotiff + application/x-bag + image/png + image/jpeg + text/csv + + diff --git a/ckanext/qa/tests/data/ukho_bathymetry.wmts b/ckanext/qa/tests/data/ukho_bathymetry.wmts new file mode 100644 index 00000000..02ebb71e --- /dev/null +++ b/ckanext/qa/tests/data/ukho_bathymetry.wmts @@ -0,0 +1,335 @@ + + + + Bathymetry Web Map Tile Service + This Web Map Tile Service displays bathymetry that is part of the MEDIN Bathymetry Data Archiving Service. + + Elevation + + WMTS + 1.0.0 + Not applicable + These data are not suitable for use in marine navigation. Acknowledgement of Originator/Owner as source is required. + + + United Kingdom Hydrographic Office + + + External Relations Manager (Technical) + Point of Contact + + + +44 (0)1823 337900 + +44 (0)1823 284077 + + + Admiralty Way + Taunton + Somerset + TA1 2DN + United Kingdom + nationalrelations@ukho.gov.uk + + + 0900 - 1700 GMT + e-mail + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Survey_Coverage + + -12.6026287 45.9070913 + 3.2137292 61.0855783 + + Survey_Coverage + + + image/png + application/gml+xml; version=3.1 + + GoogleMapsCompatible + + + + + + Bathymetry_Mosaic_Depth + + -20.00007225 39.999963625 + 20.00007225 70.000072 + + Bathymetry_Mosaic_Depth + + + image/png + application/gml+xml; version=3.1 + + GoogleMapsCompatible + + + + + + Bathymetry_Mosaic_Elevation + + -20.00007225 39.999963625 + 20.00007225 70.000072 + + Bathymetry_Mosaic_Elevation + + + image/png + application/gml+xml; version=3.1 + + GoogleMapsCompatible + + + + + + GEBCO + + -180.0 -76.21422969153359 + 179.36375596314934 90.0 + + GEBCO + + + image/png + application/gml+xml; version=3.1 + + GoogleMapsCompatible + + + + + + GoogleMapsCompatible + urn:ogc:def:crs:EPSG:6.18.3:3857 + urn:ogc:def:wkss:OGC:1.0:GoogleMapsCompatible + + 0 + 5.590822640287178E8 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 1 + 1 + + + 1 + 2.795411320143589E8 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 2 + 2 + + + 2 + 1.397705660071794E8 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 4 + 4 + + + 3 + 6.988528300358972E7 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 8 + 8 + + + 4 + 3.494264150179486E7 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 16 + 16 + + + 5 + 1.747132075089743E7 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 32 + 32 + + + 6 + 8735660.375448715 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 64 + 64 + + + 7 + 4367830.187724357 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 128 + 128 + + + 8 + 2183915.093862179 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 256 + 256 + + + 9 + 1091957.546931089 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 512 + 512 + + + 10 + 545978.7734655447 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 1024 + 1024 + + + 11 + 272989.3867327723 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 2048 + 2048 + + + 12 + 136494.6933663862 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 4096 + 4096 + + + 13 + 68247.34668319309 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 8192 + 8192 + + + 14 + 34123.67334159654 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 16384 + 16384 + + + 15 + 17061.83667079827 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 32768 + 32768 + + + 16 + 8530.918335399136 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 65536 + 65536 + + + 17 + 4265.459167699568 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 131072 + 131072 + + + 18 + 2132.729583849784 + -2.0037508342789244E7 2.0037508342789244E7 + 256 + 256 + 262144 + 262144 + + + + + + Bathymetry + Bathymetry + Bathymetry_Mosaic_Depth + Bathymetry_Mosaic_Elevation + + + + diff --git a/ckanext/qa/tests/data/ukho_bathymetry2.wcs b/ckanext/qa/tests/data/ukho_bathymetry2.wcs new file mode 100644 index 00000000..beaea3e3 --- /dev/null +++ b/ckanext/qa/tests/data/ukho_bathymetry2.wcs @@ -0,0 +1,37806 @@ + + + + Bathymetry Web Coverage Service + This Web Coverage Service provides access to bathymetry that is available as part of the MEDIN Bathymetry Data Archiving Service. + + Elevation + + WCS + 1.1.0 + 1.0.0 + Not applicable + These data are not suitable for use in marine navigation. Acknowledgement of Originator/Owner as source is required. + + + United Kingdom Hydrographic Office + + + External Relations Manager (Technical) + Point of Contact + + + +44 (0)1823 337900 + +44 (0)1823 284077 + + + Admiralty Way + Taunton + Somerset + TA1 2DN + United Kingdom + nationalrelations@ukho.gov.uk + + + 0900 - 1700 GMT + e-mail + + + + + + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1997 2006-291125 Larne Harbour + Owned by Larne Harbour Authority + + + -5.8001141 54.8377957 + -5.7792991 54.8615452 + + dac.02000001 + + + 1997 2006-357850 Dover Harbour + + + 1.3090233 51.1111704 + 1.3445048 51.1273317 + + dac.02000002 + + + 1998 2006-357899 Dover Harbour + + + 1.3090294 51.1108642 + 1.3446992 51.1273432 + + dac.02000003 + + + 1998 2006-357918 Firth of Clyde Rhu Narrows + + + -4.8052849 55.9824428 + -4.7502132 56.0245963 + + dac.02000004 + + + 1999 2006-35857 Lymington River Horn Reach to Railway Bridge + + + -1.5375145 50.7546373 + -1.5278617 50.7639101 + + dac.02000005 + + + 1999 2006-358358 Lymington River Short Reach to Horn Reach + + + -1.5306817 50.7496547 + -1.5178025 50.7566577 + + dac.02000006 + + + 1999 2006-358359 Lymington River Long Reach to Short Reach + + + -1.5261314 50.7405574 + -1.5088525 50.7526089 + + dac.02000007 + + + 1999 2006-358360 Lymington River + + + -1.5261314 50.7405399 + -1.5088525 50.7514285 + + dac.02000008 + + + 1999 2006-358361 The Solent Approaches to Lymington River + + + -1.5169864 50.7376645 + -1.5049024 50.7453292 + + dac.02000009 + + + 1999 2006-358396 Approaches to Cairnryan and Stranraer Loch Ryan + + + -5.0750461 54.9073148 + -5.01871 55.0013739 + + dac.02000010 + + + 2000 2006-358920 Approaches to Littlehampton Harbour + + + -0.5434769 50.7942148 + -0.5369708 50.8029735 + + dac.02000011 + + + 2000 2006-363223 Dover Harbour Approaches + + + 1.2897957 51.0928452 + 1.3712533 51.1300459 + + dac.02000012 + + + 2000 2006-363745 Dover Harbour + + + 1.3092885 51.1109203 + 1.3449277 51.1273948 + + dac.02000013 + + + 2000 M3437 Firth of Clyde Kyles of Bute + + + -5.1778665 55.9276429 + -5.1705328 55.9310664 + + dac.02000014 + + + 2000 2006-290689 Firth of Clyde Isle of Mull Craignure + + + -5.7082885 56.4696161 + -5.6987224 56.473633 + + dac.02000015 + + + 2000 2006-359220 River Tyne Entrance Reach + + + -1.4262984 55.0079674 + -1.4024827 55.013724 + + dac.02000016 + + + 2000 2006-359221 River Tyne Entrance Reach to Shields Harbour Reach + + + -1.4446937 55.0024778 + -1.4228792 55.0104463 + + dac.02000017 + + + 2000 2006-359222 River Tyne Shields Harbour Reach + + + -1.4529594 54.9896731 + -1.440869 55.0033068 + + dac.02000018 + + + 2000 2006-359223 River Tyne Shields Harbour Reach to Long Reach + + + -1.473546 54.984328 + -1.4464852 54.992495 + + dac.02000019 + + + 2000 2006-359224 River Tyne Long Reach - Northumberland Dock to Morston Quays + + + -1.4921537 54.9860666 + -1.4686692 54.989053 + + dac.02000020 + + + 2000 2006-359225 River Tyne Long Reach - Morston Quays to Jarrow Staith Jetty + + + -1.5017334 54.9863223 + -1.4905258 54.9885171 + + dac.02000021 + + + 2000 2006-359226 River Tyne Jarrow Staith Quay to Neptune Quays + + + -1.5322515 54.9821405 + -1.5123211 54.9881846 + + dac.02000022 + + + 2000 2006-359227 River Tyne Bill Reach + + + -1.5357828 54.9705499 + -1.5265058 54.9841926 + + dac.02000023 + + + 2000 2006-359228 River Tyne Bill Reach to Saint Anthony's Reach + + + -1.5455736 54.9604267 + -1.53322 54.9724827 + + dac.02000024 + + + 2000 2006-359229 River Tyne Saint Anthony's Reach to Felling Reach + + + -1.560153 54.9583935 + -1.5421879 54.962456 + + dac.02000025 + + + 2000 2006-359230 River Tyne Felling Reach to Saint Peter's Reach + + + -1.5877726 54.9628317 + -1.5641008 54.9703409 + + dac.02000026 + + + 2000 2006-359231 River Tyne Saint Peter's Reach to Millennium Bridge + + + -1.6032157 54.9669296 + -1.584219 54.9714008 + + dac.02000027 + + + 2001 2006-359342 Larne Harbour + Owned by Larne Harbour Authority + + + -5.7998759 54.8396845 + -5.7810621 54.8622983 + + dac.02000028 + + + 2001 2006-359431 River Tyne Shields Harbour Reach to Long Reach + + + -1.4514769 54.9855216 + -1.4483858 54.9871025 + + dac.02000029 + + + 2001 2006-359432 River Tyne Shields Harbour Reach to Long Reach + + + -1.4528906 54.9816914 + -1.4490241 54.9861215 + + dac.02000030 + + + 2001 2006-359433 River Tyne Entrance Reach - Little Haven Beach + + + -1.4201345 55.0069345 + -1.4156128 55.009205 + + dac.02000031 + + + 2001 2006-359434 River Tyne Entrance Reach + + + -1.4445912 55.0024672 + -1.4228822 55.0104573 + + dac.02000032 + + + 2001 2006-359435 River Tyne Shields Harbour Reach + + + -1.4527935 54.9896701 + -1.440677 55.003311 + + dac.02000033 + + + 2001 2006-359436 River Tyne Shields Harbour Reach to Long Reach + + + -1.4734866 54.9843752 + -1.4464182 54.9925364 + + dac.02000034 + + + 2001 2006-359437 River Tyne Long Reach + + + -1.4921702 54.9860737 + -1.4684941 54.9890601 + + dac.02000035 + + + 2001 2006-359438 River Tyne Long Reach Morston Quays to Jarrow Staith Jetty + + + -1.5140781 54.9859631 + -1.4903214 54.988644 + + dac.02000036 + + + 2001 2006-359439 River Tyne Long Reach Jarrow Staith Jetty to Neptune Quays + + + -1.5323378 54.98213 + -1.5122979 54.9881164 + + dac.02000037 + + + 2001 2006-359440 River Tyne Bill Reach + + + -1.5358933 54.9705384 + -1.5264755 54.9841916 + + dac.02000038 + + + 2001 2006-359441 River Tyne Bill Reach to Saint Anthonys Reach + + + -1.5455478 54.9603944 + -1.5331405 54.9724507 + + dac.02000039 + + + 2001 2006-359442 River Tyne Saint Anthonys Reach to Felling Reach + + + -1.5659624 54.9582576 + -1.5422425 54.9644643 + + dac.02000040 + + + 2001 2006-359443 River Tyne Saint Peters Reach + + + -1.5986628 54.96706 + -1.5844103 54.9711911 + + dac.02000041 + + + 2001 2006-359444 River Tyne Shields Harbour Reach + + + -1.4462403 54.9982632 + -1.4434104 55.0045022 + + dac.02000042 + + + 2001 2006-359445 River Tyne Shield Harbour Reach to Long Reach + + + -1.4594664 54.9850952 + -1.4499591 54.9874399 + + dac.02000043 + + + 2001 2006-359446 River Tyne Shield Harbour Reach to Long Reach + + + -1.4628411 54.9844655 + -1.4588768 54.9855811 + + dac.02000044 + + + 2001 2006-359888 River Tyne Hillgate Quay + + + -1.6045853 54.9680049 + -1.6028617 54.9688611 + + dac.02000045 + + + 2001 2006-359889 River Tyne Long Reach Tanker and Coaster Berths + + + -1.4722019 54.9878055 + -1.4589812 54.9890182 + + dac.02000046 + + + 2001 2006-359893 Approaches to Russells Lake Langstone & Broom Channels + + + -1.0313299 50.8015276 + -1.0198533 50.8123304 + + dac.02000047 + + + 2001 2006-297682 Inverness Firth River Ness + + + -4.2393019 57.4843435 + -4.2298793 57.4961939 + + dac.02000048 + + + 2001 2006-297682 Inverness Firth Kessock Road + + + -4.2658567 57.496377 + -4.246336 57.4999796 + + dac.02000049 + + + 2001 2006-359919 Hayling Bay Langstone Harbour & Chichester Harbour + + + -1.0327528 50.757512 + -0.84748 50.8126018 + + dac.02000050 + + + 2001 2006-359920 River Tyne Jarrow + + + -1.4812582 54.985819 + -1.4749158 54.9873632 + + dac.02000051 + + + 2002 2006-359921 River Tyne Entrance Reach + + + -1.4262969 55.0079582 + -1.4015541 55.013757 + + dac.02000052 + + + 2002 2006-359947 River Tyne Shields Harbour Reach - Corporate Quay + + + -1.4463319 54.9913569 + -1.4423492 54.9951224 + + dac.02000053 + + + 2002 2006-359969 River Tyne Shields Harbour Reach to Long Reach + + + -1.4595381 54.9851477 + -1.4499041 54.987476 + + dac.02000054 + + + 2002 2006-359974 River Tyne Shields Harbour Reach to Long Reach + + + -1.4513688 54.9864344 + -1.4476811 54.989381 + + dac.02000055 + + + 2002 2006-359975 River Tyne Shields Harbour Reach to Long Reach + + + -1.4629818 54.984488 + -1.4586714 54.9856553 + + dac.02000056 + + + 2002 2006-359982 River Tyne Long Reach to Bill Reach + + + -1.5264835 54.9836157 + -1.52527 54.9843752 + + dac.02000057 + + + 2002 2006-360003 River Tyne Entrance Reach + + + -1.4263056 55.007974 + -1.401554 55.0137047 + + dac.02000058 + + + 2002 2006-360004 River Tyne Shields Harbour Reach to Long Reach + + + -1.457383 54.9879059 + -1.454 54.9892112 + + dac.02000059 + + + 2002 2006-360004 River Tyne Long Reach Amec Hadrian Yard West and Adjacent River Channel + + + -1.5145883 54.9862026 + -1.5017621 54.9887025 + + dac.02000060 + + + 2002 2006-360027 River Tyne Saint Peters Reach + + + -1.5887252 54.968403 + -1.5859816 54.9698177 + + dac.02000061 + + + 2002 2006-360063 Dover Harbour + + + 1.3093066 51.1108786 + 1.3448315 51.127366 + + dac.02000062 + + + 2002 2006-360085 River Tyne Long Reach Bede Quay - Hebburn + + + -1.5190559 54.9852325 + -1.5134987 54.9867293 + + dac.02000063 + + + 2002 2006-360174 Langstone Harbour Broom Channel + + + -1.0417994 50.8058236 + -1.0256932 50.8260827 + + dac.02000064 + + + 2002 2006-297706 Littlehampton River Arun Entrance + + + -0.554096 50.7940082 + -0.5361512 50.8116657 + + dac.02000065 + + + 2002 2006-360192 River Tyne Shields Harbour Reach to Long Reach + + + -1.4595407 54.9851468 + -1.4506755 54.9872668 + + dac.02000066 + + + 2002 2002-360222 River Foyle Lisahally + + + -7.2688654 55.0393869 + -7.2549466 55.0467756 + + dac.02000067 + + + 2002 2006-360223 River Foyle Rosses Bay + + + -7.3208232 54.996989 + -7.2914721 55.0165126 + + dac.02000068 + + + 2002 2006-360224 Lough Foyle West Channel + + + -7.2032688 55.1057665 + -7.1651353 55.1309127 + + dac.02000069 + + + 2002 2006-360225 Lough Foyle Approaches to Londonderry + + + -7.2268977 55.0766387 + -7.2009861 55.1069958 + + dac.02000070 + + + 2002 2006-360226 Lough Foyle Approaches to Londonderry Black Brae + + + -7.2528818 55.0451807 + -7.2244534 55.0774687 + + dac.02000071 + + + 2002 2006-360227 Lough Foyle Approaches to Londonderry North Middle Bank + + + -7.1013746 55.1578794 + -7.053876 55.1795433 + + dac.02000072 + + + 2002 2006-360228 Lough Foyle Approaches to Londonderry Redcastle - West Channel + + + -7.124179 55.1456663 + -7.0991912 55.1592114 + + dac.02000073 + + + 2002 2006-360229 Lough Foyle Approaches to Londonderry West Channel - Great Bank + + + -7.167356 55.1293709 + -7.1226536 55.1473019 + + dac.02000074 + + + 2002 2006-360230 Lough Foyle Approaches to Londonderry McKinneys Bank to Maglligan Point + + + -7.0573165 55.1703221 + -6.9621268 55.2051973 + + dac.02000075 + + + 2002 2006-350532 Dover Harbour + + + 1.3092386 51.1108885 + 1.3448177 51.1273725 + + dac.02000076 + + + 2002 2006-360372 River Tyne Entrance Reach to Shields Harbour Reach S2 + + + -1.4447634 55.002495 + -1.4228189 55.010481 + + dac.02000077 + + + 2002 2006-360373 River Tyne Shields Harbour Reach S3 + + + -1.4530176 54.989707 + -1.4408747 55.0033427 + + dac.02000078 + + + 2002 2006-360374 River Tyne Long Reach S5 + + + -1.4921709 54.9860647 + -1.4685034 54.9890838 + + dac.02000079 + + + 2002 2006-360375 River Tyne Shields Harbour Reach Entrance to Royal Quays Marina + + + -1.4507166 54.9958489 + -1.4450235 54.9975037 + + dac.02000080 + + + 2003 2006-360376 River Tyne Shields Harbour Reach to Long Reach + + + -1.4595157 54.9851171 + -1.4497204 54.9876479 + + dac.02000081 + + + 2002 2006-360384 River Tyne Bill Reach to Saint Anthonys Reach + + + -1.5372401 54.9643707 + -1.5350808 54.9707702 + + dac.02000082 + + + 2003 2006-360407 River Tyne Shields Harbour Reach Ferry Landing to Royal Quays Marina + + + -1.4468884 54.9972849 + -1.4436054 55.0039331 + + dac.02000083 + + + 2003 2006-360408 River Tyne Newcastle Quayside + + + -1.6055666 54.9666641 + -1.5822547 54.9714264 + + dac.02000084 + + + 2003 2006-360419 River Tyne Shields Harbour Reach to Long Reach Whitehill Point + + + -1.4579906 54.9879139 + -1.4539365 54.9894235 + + dac.02000085 + + + 2003 2006-360426 River Tyne Long Reach Howdon Jetty + + + -1.4793518 54.9877049 + -1.4747243 54.9886448 + + dac.02000086 + + + 2003 2006-360436 River Tyne Shields Harbour Reach Northumbrian Quay + + + -1.4493123 54.9921558 + -1.4463648 54.9962593 + + dac.02000087 + + + 2003 2006-360448 Ramsgate New Port + + + 1.4141599 51.3231314 + 1.4344523 51.3285821 + + dac.02000088 + + + 2003 2006-360455 River Tyne Shields Harbour Reach Corporation Quay and McNulty Offshore Services + + + -1.4468771 54.9909171 + -1.4435911 54.9940505 + + dac.02000089 + + + 2003 2006-360456 River Tyne Shields Harbour Reach to Long Reach McNulty Offshore Services + + + -1.4505289 54.9868023 + -1.4452672 54.9921829 + + dac.02000090 + + + 2003 2006-360515 River Tyne Long Reach Bede Quay + + + -1.5180732 54.985649 + -1.5133454 54.9867366 + + dac.02000091 + + + 2003 2006-360516 River Tyne Shields Harbour Reach to Long Reach McNulty Offshore Services Quay + + + -1.4513926 54.9867452 + -1.4484486 54.9885178 + + dac.02000092 + + + 2003 2006-360517 River Tyne Entrance Reach + + + -1.4263056 55.0080355 + -1.401554 55.0137571 + + dac.02000093 + + + 2003 2006-360538 River Tyne Shields Harbour Reach to Long Reach Riverside Quay + + + -1.4595482 54.9850945 + -1.4497199 54.9874997 + + dac.02000094 + + + 2003 2006-360593 Dover Harbour + + + 1.3095889 51.1173639 + 1.3111578 51.1191478 + + dac.02000095 + + + 2003 2006-360594 Dover Harbour + + + 1.3153815 51.1114365 + 1.3282268 51.1162552 + + dac.02000096 + + + 2003 2006-360595 Dover Harbour + + + 1.3138455 51.1138488 + 1.3164662 51.1150179 + + dac.02000097 + + + 2003 2006-351016 Dover Harbour + + + 1.3146662 51.1107062 + 1.3450355 51.1257738 + + dac.02000098 + + + 2003 2006-351017 Dover Harbour + + + 1.3102163 51.1146185 + 1.317619 51.1207498 + + dac.02000099 + + + 2003 2006-360598 Dover Harbour + + + 1.3099595 51.1196628 + 1.3130072 51.1224105 + + dac.02000100 + + + 2003 2006-360599 Dover Harbour + + + 1.333653 51.121303 + 1.3431786 51.127152 + + dac.02000101 + + + 2003 2006-360600 River Tyne Long Reach Jarrow Staith Jetty + + + -1.5112116 54.9863324 + -1.503511 54.9884097 + + dac.02000102 + + + 2003 2006-360637 River Tyne Shields Harbour Reach Ferry Landing to Royal Quays Marina + + + -1.446922 54.9970648 + -1.4431659 55.0039712 + + dac.02000103 + + + 2003 2006-360765 River Tyne Long Reach Ocean Tanker Berth + + + -1.4696665 54.9882252 + -1.4645 54.9889223 + + dac.02000104 + + + 2003 2006-360768 Firth of Clyde Isle of Jura Craighouse Pier + + + -5.9456609 55.832248 + -5.9418982 55.8342895 + + dac.02000105 + + + 2003 M4018 Firth of Clyde Oban Harbour + + + -5.478221 56.4134984 + -5.4729791 56.4168497 + + dac.02000106 + + + 2003 M4013 Firth of Clyde Rothesay Harbour + + + -5.0615684 55.8376959 + -5.046982 55.841709 + + dac.02000107 + + + 2003 M4011 Firth of Clyde Isle of Islay Bruichladdich Pier + + + -6.3607123 55.7619854 + -6.3552152 55.7657217 + + dac.02000108 + + + 2003 M4009 Firth of Clyde Isle of Mull Craignure Pier + + + -5.7081265 56.4700501 + -5.6997895 56.4736209 + + dac.02000109 + + + 2003 M4012 Firth of Clyde Helensburgh Pier Vessel Approach Route + + + -4.7508807 55.9851417 + -4.7352291 56.0014117 + + dac.02000110 + + + 2003 M4010 Firth of Clyde Dunoon Vessel Approach Route + + + -4.9230456 55.9411177 + -4.9167928 55.9483489 + + dac.02000111 + + + 2002 2006-360778 Jersey Saint Helier Marina + Collectd by Jersey Harbours + + + -2.1208701 49.1727149 + -2.1098106 49.1828812 + + dac.02000112 + + + 2004 2006-361210 River Tyne Bill Reach + + + -1.5371119 54.9644745 + -1.5351994 54.9707531 + + dac.02000113 + + + 2004 2006-361217 River Tyne Entrance Reach Harbour Entrance + + + -1.4391062 55.0054546 + -1.4012791 55.014925 + + dac.02000114 + + + 2004 2006-361402 Dover Harbour + + + 1.3092021 51.1106588 + 1.3449912 51.1273862 + + dac.02000115 + + + 2004 M4174 Lough Foyle Culmore Bay to the Tuns + + + -7.2549927 55.0427771 + -6.8912108 55.2389061 + + dac.02000116 + + + 2004 2006-338111 Smeaton Pass to Drake Channel + + + -4.1620965 50.3485774 + -4.1285794 50.3632534 + + dac.02000117 + + + 2005 2006-353156 Dover Harbour + + + 1.3137353 51.1067037 + 1.344843 51.127363 + + dac.02000118 + + + 2004 HI1086 Sound of Harris + + + -7.2230388 57.6356207 + -6.9607652 57.7858025 + + dac.02000119 + + + 2005 2008-24184 Lymington River Horn Reach + + + -1.5282668 50.7513859 + -1.5232049 50.7545094 + + dac.02000120 + + + 2006 2008-026208 Firth of Clyde Cambeltown Harbour + + + -5.580142 55.4159534 + -5.5769096 55.4180496 + + dac.02000121 + + + 2006 2008-26253 Firth of Clyde Carradale Pier + + + -5.4643288 55.5922186 + -5.4610704 55.5937346 + + dac.02000122 + + + 2006 2006-347146 Larne Lough And Approaches + Owned by Larne Harbour Authority + + + -5.7997814 54.8435087 + -5.7950238 54.8509066 + + dac.02000123 + + + 2006 2006-380573 Jenny Cliff Bay + + + -4.1399226 50.3358087 + -4.1242996 50.3593778 + + dac.02000124 + + + 2006 2006-380573 Approaches to Plymouth Sound + + + -4.173421 50.3056725 + -4.170214 50.3080264 + + dac.02000125 + + + 2006 2006-396435 Harwich Deep Water Channel + + + 1.3050313 51.9197083 + 1.4572684 51.939103 + + dac.02000126 + + + 2002 2006-397467 Lough Foyle Approaches to Londonderry West Channel + + + -7.2543648 55.0438512 + -7.0850168 55.1684445 + + dac.02000127 + + + 2005 2008-27280 Inverness Firth Approaches to River Ness + + + -4.2394948 57.4843803 + -4.2288779 57.5001464 + + dac.02000128 + + + 2005 2008-27576 Cromarty Firth Invergordon + + + -4.2825734 57.6565909 + -4.130335 57.6895765 + + dac.02000129 + + + 2003 2008-28273 River Tyne Entrance Reach to Tyne Bridge + + + -1.6085037 54.9577696 + -1.3999443 55.0145015 + + dac.02000130 + + + 2006 2008-28306 River Tyne Tyne Bridge to Elswick Reach and Westwards + + + -1.7292693 54.9576188 + -1.6080022 54.9763881 + + dac.02000131 + + + 2007 2007-2023 Aberdeen Harbour + + + -2.0792623 57.1566939 + -2.0757791 57.1621752 + + dac.02000132 + + + 2006 2007-5223 Tor Bay - Torquay Harbour + + + -3.5320006 50.4565329 + -3.5239022 50.4613508 + + dac.02000133 + + + 2007 HI1219 Approaches to Lowestoft + Primary Navigation: The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + 1.7511096 52.4342698 + 1.8058616 52.4840607 + + dac.02000134 + + + 2008 2008-37329 Dover Harbour + + + 1.3092226 51.1105809 + 1.3450079 51.1273856 + + dac.02000135 + + + 2008 2008-48175 River Tyne Long Reach Bede West Quay + + + -1.5240953 54.9844891 + -1.512283 54.9869488 + + dac.02000136 + + + 2008 2008-48175 River Tyne Long Reach Tyne Car Terminal + + + -1.4734203 54.9843961 + -1.4615628 54.987497 + + dac.02000137 + + + 2008 2008-48175 River Tyne Entrance Reach to Bill Reach + + + -1.5398611 54.961017 + -1.393145 55.0154787 + + dac.02000138 + + + 2008 2008-48175 River Tyne Long Reach to Bill Reach Neptune Quay + + + -1.5351588 54.9765201 + -1.5318203 54.9824552 + + dac.02000139 + + + 2008 2008-48175 River Tyne North Shields Western Quay + + + -1.4404025 55.0066163 + -1.4316477 55.0092583 + + dac.02000140 + + + 2008 2008-48175 River Tyne Shields Harbour Reach Northumbrian Quay + + + -1.450723 54.9922675 + -1.4454589 54.9977128 + + dac.02000141 + + + 2008 2008-48175 River Tyne Bill Reach + + + -1.5370879 54.9644219 + -1.5349045 54.9714128 + + dac.02000142 + + + 2008 2008-48175 River Tyne Bill Reach + + + -1.5372845 54.9639453 + -1.53516 54.9711678 + + dac.02000143 + + + 2008 2008-48175 River Tyne Shields Harbour Reach to Long Reach Riverside Quay + + + -1.4636688 54.9842795 + -1.4493275 54.9880302 + + dac.02000144 + + + 2008 2008-48175 River Tyne Shields Harbour Reach to Long Reach Ferry Terminal 3 + + + -1.4523841 54.9897828 + -1.4483542 54.9924395 + + dac.02000145 + + + 2008 2008-48175 River Tyne Shields Harbour Reach to Long Reach Ferry Terminal 4 + + + -1.4583411 54.9872632 + -1.4500338 54.9910652 + + dac.02000146 + + + 2008 2008-48175 River Tyne Long Reach Ocean Tanker Berth + + + -1.4725402 54.9873195 + -1.4588663 54.9890014 + + dac.02000147 + + + 2008 2008-57198 Lymington Harbour Lymington Spit to Railway Bridge + + + -1.5369113 50.7295142 + -1.4942699 50.7600982 + + dac.02000148 + + + 2008 2008-71330 River Tyne Long Reach A & P No2 Tyne Dock + + + -1.5205846 54.9851734 + -1.5164991 54.9863888 + + dac.02000149 + + + 2008 2008-72688 River Tyne Shields Harbour Reach Northumbrian Quay + + + -1.4489251 54.9926435 + -1.4461458 54.9964086 + + dac.02000150 + + + 2008 2008-72671 River Tyne Shields Harbour Reach to Long Reach Tidal Basin + + + -1.4528676 54.9819421 + -1.4490141 54.9853179 + + dac.02000151 + + + 2008 2008-72806 River Tyne Long Reach to Bill Reach Wallsend + + + -1.5350084 54.977417 + -1.5218394 54.9870995 + + dac.02000152 + + + 2008 2008-089278 Truro River Tidal Barrier + + + -5.0415017 50.2485071 + -5.0343702 50.2525468 + + dac.02000153 + + + 2008 2008-89910 Approaches to Littlehampton + + + -0.5455065 50.7940182 + -0.5370886 50.8075627 + + dac.02000154 + + + 2008 2008-90396 Dover Harbour + + + 1.3092674 51.1105468 + 1.3449593 51.1273163 + + dac.02000155 + + + 2008 2008-89310 River Tyne Shields Harbour Reach to Long Reach Riverside Quay + + + -1.4637953 54.9843714 + -1.4511748 54.9871713 + + dac.02000156 + + + 2008 2008-92117 River Tyne Shields Harbour Reach Northumbrian Quay to Roro 3 + + + -1.4522233 54.9899754 + -1.4458961 54.9965928 + + dac.02000157 + + + 2008 2008-93659 River Tyne Shields Harbour Reach to Long Reach Northumbrian Dock + + + -1.4723204 54.9873074 + -1.452599 54.9896662 + + dac.02000158 + + + 2008 2008-94309 River Tyne Long Reach Cemex Quay - Jarrow + + + -1.4807951 54.9859137 + -1.473447 54.9870834 + + dac.02000159 + + + 2008 2008-97317 River Tyne Shields Harbour Reach to Long Reach Roro 4 and Whitehill Point + + + -1.458491 54.9873989 + -1.4498509 54.9910876 + + dac.02000160 + + + 2008 2008-99077 River Tyne Long Reach Amec Hadrian West + + + -1.5195323 54.9869127 + -1.5016488 54.9886233 + + dac.02000161 + + + 2008 2009-6183 Blyth Approaches to Blyth + + + -1.4966583 55.1160503 + -1.48702 55.1247511 + + dac.02000162 + + + 2009 2009-6183 Blyth South Harbour + + + -1.4985495 55.1181329 + -1.4946284 55.123717 + + dac.02000163 + + + 2009 2009-8845 River Tyne Long Reach Hadrian West + + + -1.5190298 54.9869575 + -1.5013709 54.9887359 + + dac.02000164 + + + 2009 2009-24753 Blyth Harbour Dun Cow Quay to Tidal Basin + + + -1.5226407 55.1293597 + -1.5038607 55.1436891 + + dac.02000165 + + + 2009 2009-126422 River Tyne Entrance Reach to Tyne Bridge + + + -1.6111804 54.9578162 + -1.3956902 55.0191326 + + dac.02000166 + + + 2009 2009-150486 Ramsgate New and Royal Harbours + + + 1.4145202 51.3242542 + 1.425646 51.3299883 + + dac.02000167 + + + 2009 2009-164762 Dover Harbour + + + 1.3092371 51.1106725 + 1.3449786 51.1273669 + + dac.02000168 + + + 2010 2010-13431 Ramsgate Harbour + + + 1.4141957 51.3229407 + 1.4328862 51.3284656 + + dac.02000169 + + + 1996 2006-356743 River Mersey Crosby Channel + + + -3.1132824 53.4931622 + -3.0863324 53.5164748 + + dac.02000170 + + + 1996 2006-356810 River Mersey New Brighton to Garston + + + -3.0392885 53.3217881 + -2.9014669 53.4508002 + + dac.02000171 + + + 1997 2006-357613 Harwich Haven Shotley Spit to Parkeston Quay + + + 1.2624703 51.9455196 + 1.295612 51.9630282 + + dac.02000172 + + + 1997 2006-357614 Harwich Haven Medusa Channel + + + 1.2452168 51.8471195 + 1.3597879 51.9372521 + + dac.02000173 + + + 1997 2006-357615 Harwich Rough Tower Sunk Inner + + + 1.4545277 51.8402587 + 1.5276094 51.8882119 + + dac.02000174 + + + 1997 2006-357616 River Stour Sutton Ness to Mistley + + + 1.0940887 51.9402067 + 1.1354164 51.956383 + + dac.02000175 + + + 1997 2006-357721 Harwich Deep Water Channel to River Deben + + + 1.3136201 51.9241407 + 1.4303419 51.9992695 + + dac.02000176 + + + 1997 2006-357722 Harwich Pennyhole Bay + + + 1.23083 51.8816555 + 1.2578155 51.8914338 + + dac.02000177 + + + 1996 2006-357723 Harwich Haven Parkeston Quay + + + 1.2347325 51.9473132 + 1.2635192 51.952849 + + dac.02000178 + + + 1997 2006-291082 Shetland Islands Symbister Harbour + + + -1.0350386 60.3405133 + -1.0245614 60.3465133 + + dac.02000179 + + + 1998 2006-357845 River Mersey New Brighton to Alfred Dock Entrance + + + -3.0425962 53.4099312 + -3.0030539 53.4503688 + + dac.02000180 + + + 1998 2006-357846 River Mersey Wallasey to New Ferry + + + -3.0177461 53.363776 + -2.966688 53.4162285 + + dac.02000181 + + + 1998 2006-357847 River Mersey Middle Deep to Eastham Sands + + + -2.9919592 53.3345902 + -2.9178526 53.3758446 + + dac.02000182 + + + 1998 2006-357848 River Mersey Eastham Sands to Poole Hall Rocks + + + -2.9602294 53.3076886 + -2.8865831 53.3555388 + + dac.02000183 + + + 1997 2006-357854 Harwich Deep Water Channel South Shipwash Buoy to Harwich Channel No.1 Buoy + + + 1.4521122 51.8742328 + 1.574074 51.948173 + + dac.02000184 + + + 1997 2006-357855 Harwich Deep Water Channel Harwich Channel No.1 Buoy to South Shelf Buoy + + + 1.3024594 51.9147456 + 1.4629628 51.948388 + + dac.02000185 + + + 1997 2006-357856 Harwich Haven Mistley Quay Baltic Wharf + + + 1.080314 51.9443051 + 1.0939212 51.9481286 + + dac.02000186 + + + 1997 2006-357857 Harwich Haven Shotley Spit to Parkeston Quay + + + 1.2621819 51.9451347 + 1.2970708 51.9636852 + + dac.02000187 + + + 1997 2006-357858 Harwich Haven River Stour Manningtree and Mistley to Buoy No.12 + + + 1.0560591 51.9435898 + 1.0995582 51.9584362 + + dac.02000188 + + + 1997 2006-357861 Bristol King Road + + + -2.7769047 51.4977056 + -2.7474148 51.5090349 + + dac.02000189 + + + 1998 2006-357862 River Mersey Devils Bank Garston Channel and Eastham Channel + + + -2.9903814 53.321914 + -2.9042393 53.3828495 + + dac.02000190 + + + 1998 2006-357863 River Mersey Crosby Channel Askew Spit + + + -3.17517 53.5108811 + -3.11044 53.5372661 + + dac.02000191 + + + 1998 2006-357868 River Mersey Bromborough Wall + + + -2.9903135 53.352475 + -2.9687505 53.3671638 + + dac.02000192 + + + 1998 2006-357869 River Mersey Crosby Channel and Shoal + + + -3.1148332 53.4921125 + -3.0866521 53.5173961 + + dac.02000193 + + + 1998 2006-357870 River Mersey New Brighton Shoal + + + -3.0382787 53.4340211 + -3.0165646 53.4491254 + + dac.02000194 + + + 1998 2006-357871 River Mersey Queens Channel East + + + -3.229211 53.5135917 + -3.1727188 53.5305675 + + dac.02000195 + + + 1998 2006-357872 River Mersey Queens Channel West + + + -3.2687615 53.5134724 + -3.220699 53.5279604 + + dac.02000196 + + + 1998 2006-357873 River Mersey Cammell Lairds Wall + + + -3.0079859 53.3854327 + -3.0041706 53.3898294 + + dac.02000197 + + + 1998 2006-291040 River Mersey Upper Reaches Eastham Sands to Warrington + + + -2.9496303 53.2839209 + -2.5880818 53.3897582 + + dac.02000198 + + + 1998 2006-357875 River Mersey Alfred Dock Entrance + + + -3.0161967 53.4031597 + -3.0117526 53.4064959 + + dac.02000199 + + + 1998 2006-357876 River Mersey Crosby Channel Shoal and Margins + + + -3.1304566 53.4763699 + -3.063603 53.5265097 + + dac.02000200 + + + 1998 2006-357877 River Mersey Gladstone Dock Entrance + + + -3.0202964 53.4448844 + -3.0142419 53.4495816 + + dac.02000201 + + + 1998 2006-357878 River Mersey Langton Dock Entrance + + + -3.0124195 53.4337649 + -3.0074803 53.4392275 + + dac.02000202 + + + 1998 2006-357879 River Mersey Liverpool Landing Stages North + + + -3.0029999 53.4029063 + -2.9976445 53.4069722 + + dac.02000203 + + + 1998 2006-357880 River Mersey Liverpool Landing Stages South + + + -3.0020782 53.3972691 + -2.9934455 53.403992 + + dac.02000204 + + + 1998 2006-357881 River Mersey Queens Channel East + + + -3.2282684 53.513685 + -3.1743039 53.5306009 + + dac.02000205 + + + 1998 2006-357882 River Mersey Seacombe Ferry Stage + + + -3.0165872 53.4080539 + -3.0114115 53.4122503 + + dac.02000206 + + + 1998 2006-357883 River Mersey Tranmere Oil Stages + + + -3.0031087 53.3751995 + -2.9949611 53.3837211 + + dac.02000207 + + + 1998 2006-363726 River Mersey Middle Deep to Eastham Sands + + + -2.9845833 53.3448293 + -2.9532247 53.3685946 + + dac.02000208 + + + 1998 2006-363727 River Mersey Entrance to Garston Channel + + + -2.9892888 53.3625967 + -2.9549989 53.3824352 + + dac.02000209 + + + 1998 2006-363728 River Mersey Garston Channel + + + -2.9897818 53.3443278 + -2.9066115 53.3829282 + + dac.02000210 + + + 1998 2006-357894 River Mersey Langton Dock Entrance + + + -3.0120886 53.4345175 + -3.0076876 53.4392012 + + dac.02000211 + + + 1998 2006-290999 Shetland Islands Sullom Voe + + + -1.3251262 60.4469066 + -1.2763998 60.4974211 + + dac.02000212 + + + 1998 2006-357895 River Mersey Alfred Dock Entrance + + + -3.0162855 53.4030839 + -3.0114681 53.4066052 + + dac.02000213 + + + 1998 2006-357896 River Mersey Gladstone Dock Entrance + + + -3.0203095 53.4446984 + -3.014177 53.4496326 + + dac.02000214 + + + 1998 2006-357897 River Mersey Langton Dock Entrance + + + -3.0121467 53.434509 + -3.0076506 53.4392279 + + dac.02000215 + + + 1998 2006-357898 River Mersey Queens Channel East Liverpool Approaches + + + -3.2288374 53.5136136 + -3.1745752 53.5304205 + + dac.02000216 + + + 1998 2006-357900 River Mersey Alfred Dock Entrance + + + -3.0162002 53.4031716 + -3.0114665 53.4065296 + + dac.02000217 + + + 1998 2006-357901 River Mersey Crosby Channel and Shoal + + + -3.1141072 53.4933633 + -3.0875948 53.516941 + + dac.02000218 + + + 1998 2006-357902 River Mersey New Brighton Shoal + + + -3.0380522 53.434383 + -3.0160996 53.4492781 + + dac.02000219 + + + 1998 2006-357903 River Mersey Puckington Bank + + + -3.0058995 53.3701296 + -2.9685154 53.4041977 + + dac.02000220 + + + 1998 2006-357913 River Mersey Alfred Dock Entrance + + + -3.0162362 53.4031957 + -3.0114216 53.4065173 + + dac.02000221 + + + 1998 2006-357915 River Mersey Gladstone Dock Entrance + + + -3.0202659 53.4449756 + -3.0142741 53.4496746 + + dac.02000222 + + + 1998 2006-357916 River Mersey Langton Dock Entrance + + + -3.0120357 53.4345042 + -3.0077678 53.4392362 + + dac.02000223 + + + 1998 2006-357917 River Mersey Queens Channel East + + + -3.2284904 53.5136799 + -3.1745521 53.529819 + + dac.02000224 + + + 1998 2006-357949 River Mersey Crosby Channel and Shoal + + + -3.1133832 53.4932922 + -3.0862511 53.5173496 + + dac.02000225 + + + 1998 2006-357950 River Mersey Garston Channel Entrance and Bar + + + -2.9898141 53.3646304 + -2.9585781 53.3822594 + + dac.02000226 + + + 1998 2006-357951 Liverpool Bay Approaches to River Mersey Jordans Spit + + + -3.3084474 53.5142484 + -3.2720529 53.5767982 + + dac.02000227 + + + 1998 2006-357952 River Mersey Liverpool Landing Stage + + + -3.0030501 53.4028527 + -2.9977175 53.4069415 + + dac.02000228 + + + 1998 2006-357953 River Mersey Queens Channel East + + + -3.2290849 53.5131628 + -3.1723551 53.530349 + + dac.02000229 + + + 1998 2006-290955 Milford Haven + + + -5.1880968 51.662556 + -4.9309103 51.7173571 + + dac.02000230 + + + 1998 2006-357960 River Mersey Alfred Dock Entrance + + + -3.0161901 53.403161 + -3.0114574 53.4065252 + + dac.02000231 + + + 1998 2006-357961 River Mersey Crosby Channel Askew Spit + + + -3.1518624 53.5157361 + -3.117501 53.5291833 + + dac.02000232 + + + 1998 2006-357962 River Mersey Cammel Lairds Dock No4 + + + -3.0079969 53.3876215 + -3.0052987 53.3896712 + + dac.02000233 + + + 1998 2006-357963 River Mersey Crosby Channel and Shoal + + + -3.1149429 53.493255 + -3.0861168 53.5171334 + + dac.02000234 + + + 1998 2006-357964 River Mersey Crosby Channel to New Brighton + + + -3.1036636 53.4470555 + -3.0241989 53.501095 + + dac.02000235 + + + 1998 2006-357965 River Mersey Langton Dock Entrance + + + -3.0124499 53.4333251 + -3.0073138 53.4393119 + + dac.02000236 + + + 1998 2006-357966 River Mersey Queens Channel East + + + -3.2283253 53.513608 + -3.1739135 53.5306145 + + dac.02000237 + + + 1998 2006-357967 River Mersey Queens Channel West + + + -3.2717545 53.5140619 + -3.2176299 53.5263797 + + dac.02000238 + + + 1998 2006-357968 River Mersey Tranmere Oil Stages + + + -3.0029242 53.3755476 + -2.9951526 53.3833309 + + dac.02000239 + + + 1998 2006-357975 Milford Haven + + + -4.985103 51.6831069 + -4.9787722 51.6872784 + + dac.02000240 + + + 1998 2006-357977 Milford Haven + + + -5.0636444 51.6981876 + -5.0571378 51.7004584 + + dac.02000241 + + + 1998 2006-357978 Milford Haven + + + -5.0375117 51.6976934 + -5.0304913 51.6995783 + + dac.02000242 + + + 1998 2006-357979 Milford Haven + + + -5.0319507 51.6977764 + -5.021287 51.7000312 + + dac.02000243 + + + 1998 2006-357980 Milford Haven + + + -5.0281666 51.6955693 + -5.0181402 51.6993899 + + dac.02000244 + + + 1998 2006-357981 Milford Haven + + + -5.0447142 51.6973017 + -5.037279 51.6991881 + + dac.02000245 + + + 1998 2006-357986 Milford Haven + + + -5.1880968 51.6624017 + -4.930605 51.717428 + + dac.02000246 + + + 1998 2006-357988 River Mersey Alfred Dock Entrance + + + -3.0162494 53.4030915 + -3.0114556 53.4066993 + + dac.02000247 + + + 1998 2006-357989 River Mersey Gladstone Dock Entrance + + + -3.0210514 53.4435643 + -3.0129226 53.449617 + + dac.02000248 + + + 1998 2006-357990 River Mersey Langton Dock Entrance + + + -3.0121116 53.4344566 + -3.0077141 53.4391833 + + dac.02000249 + + + 1998 2006-357991 River Mersey Liverpool Stages South Approach + + + -3.0014971 53.3971914 + -2.9931341 53.4039804 + + dac.02000250 + + + 1998 2006-357999 River Mersey Cammell Lairds Wall Dock No6 + + + -3.0078748 53.3864918 + -3.0046548 53.3876831 + + dac.02000251 + + + 1998 2006-358000 River Mersey Langton Dock Entrance + + + -3.0121313 53.434451 + -3.007764 53.439219 + + dac.02000252 + + + 1998 2006-358001 River Mersey Gladstone Dock Entrance + + + -3.0203091 53.4447675 + -3.0140784 53.4496686 + + dac.02000253 + + + 1998 2006-358002 River Mersey Queens Channel East + + + -3.2307524 53.5128126 + -3.1725334 53.5309641 + + dac.02000254 + + + 1998 2006-358003 River Mersey Crosby Channel and Shoal + + + -3.113936 53.4927338 + -3.0855698 53.5178305 + + dac.02000255 + + + 1998 2006-347556 River Mersey Alfred Dock Entrance + + + -3.0162739 53.4031518 + -3.0112912 53.4065995 + + dac.02000256 + + + 1998 2006-358005 Approaches to Cairnryan and Stranraer Loch Ryan + + + -5.0590958 54.9073693 + -5.0187367 54.9946681 + + dac.02000257 + + + 1999 2006-290932 Approach Channel to Newhaven Harbour + + + 0.0555876 50.7748682 + 0.0636735 50.7830227 + + dac.02000258 + + + 1999 2006-358304 River Mersey Alfred Dock Entrance + + + -3.0162298 53.4031381 + -3.0114323 53.4065385 + + dac.02000259 + + + 1999 2006-358305 River Mersey Crosby Channel and Shoal + + + -3.1130911 53.4935418 + -3.0878938 53.5168244 + + dac.02000260 + + + 1999 2006-358306 River Mersey Garston Bar and Channel Entrance + + + -2.989676 53.3648412 + -2.9587308 53.3823271 + + dac.02000261 + + + 1999 2006-358307 River Mersey Gladstone Dock Entrance and South Bank + + + -3.0207825 53.4380496 + -3.0095528 53.4496668 + + dac.02000262 + + + 1999 2006-358308 River Mersey Langton Dock Entrance + + + -3.012218 53.4341587 + -3.0075868 53.4392498 + + dac.02000263 + + + 1999 2006-358309 River Mersey Queens Channel East + + + -3.2296082 53.5133206 + -3.1714923 53.5304449 + + dac.02000264 + + + 1999 2006-358310 River Mersey Tranmere Oil Stages + + + -3.003003 53.3755607 + -2.9951597 53.3831945 + + dac.02000265 + + + 1999 2006-358311 River Mersey Liverpool Landing Stages and South Approach + + + -3.0054794 53.397178 + -2.9933284 53.4106569 + + dac.02000266 + + + 1999 2006-290939 Shetland Islands Baltasound Pier + + + -0.8404309 60.7568501 + -0.8357251 60.7596161 + + dac.02000267 + + + 1999 2006-358315 Christchurch Bay Shingles Bank and Dredging Area 406 + + + -1.6286411 50.6564376 + -1.5524452 50.7151195 + + dac.02000268 + + + 1998 2006-358316 The Wash Boston Port + + + 0.0875049 52.9335163 + 0.0964788 52.9406697 + + dac.02000269 + + + 1998 2006-358317 The Wash Boston Port Tabs Head to No 9 Buoy + + + 0.0958293 52.9310827 + 0.1374779 52.9592323 + + dac.02000270 + + + 1997 2006-358318 The Wash Boston Port Approaches Lower Road - Ech Buoy + + + 0.1360538 52.9565895 + 0.1645408 52.9794479 + + dac.02000271 + + + 1997 2006-358319 The Wash Boston Port Approaches Freeman Channel + + + 0.1631682 52.9583749 + 0.2546417 52.9836953 + + dac.02000272 + + + 1998 2006-358320 The Wash Boston Port Approaches No9 Buoy + + + 0.1330685 52.9436333 + 0.144102 52.9600008 + + dac.02000273 + + + 1998 2006-358321 The Wash Boston Port Wainfleet Road and North of Outer Knock + + + 0.3512423 53.1104684 + 0.4065388 53.1324338 + + dac.02000274 + + + 1996 2006-358322 The Wash Skegness Middle and Wainfleet Road + + + 0.3502848 53.1104546 + 0.4064899 53.1459846 + + dac.02000275 + + + 1998 2006-358323 The Wash Boston Port Approaches Parlour Channel + + + 0.3197862 53.0164158 + 0.3762672 53.0348233 + + dac.02000276 + + + 1999 2006-290944 Portsmouth Harbour Whale Island - Fountain Lake + + + -1.1009249 50.8085524 + -1.0905708 50.8155688 + + dac.02000277 + + + 1998 2006-358334 Harwich Deep Water Channel Area Harwich Channel No 1 Buoy to South Shelf Buoy + + + 1.3008405 51.9114303 + 1.460679 51.9683002 + + dac.02000278 + + + 1999 2006-358338 Milford Haven + + + -5.1862537 51.6655029 + -5.1488558 51.683784 + + dac.02000279 + + + 1999 2006-358339 Milford Haven + + + -5.1530656 51.6665528 + -5.1217704 51.6843795 + + dac.02000280 + + + 1999 2006-358340 Milford Haven + + + -5.1650909 51.6819483 + -5.1228916 51.7005872 + + dac.02000281 + + + 1999 2006-358341 Milford Haven + + + -5.1597984 51.6980891 + -5.1209365 51.7139127 + + dac.02000282 + + + 1999 2006-358342 Milford Haven + + + -5.1266865 51.6843817 + -5.0832744 51.7020547 + + dac.02000283 + + + 1999 2006-358343 Milford Haven + + + -5.1241237 51.6995424 + -5.0879455 51.7154869 + + dac.02000284 + + + 1999 2006-358344 Milford Haven + + + -5.0862529 51.6894739 + -5.0436545 51.7077533 + + dac.02000285 + + + 1999 2006-358345 Milford Haven + + + -5.0472601 51.6946627 + -5.0040967 51.7107095 + + dac.02000286 + + + 1999 2006-358346 Milford Haven + + + -5.0118817 51.6862207 + -4.9688054 51.7032966 + + dac.02000287 + + + 1999 2006-358347 Milford Haven + + + -4.9728071 51.6932849 + -4.9326904 51.7088277 + + dac.02000288 + + + 1998 2006-358348 Milford Haven + + + -5.0453327 51.7027483 + -5.0281081 51.7101463 + + dac.02000289 + + + 1999 2006-358351 River Mersey Bromborough Wall + + + -2.9907187 53.3526272 + -2.968303 53.3673415 + + dac.02000290 + + + 1999 2006-358352 River Mersey Crosby Channel and Shoal + + + -3.1142216 53.4935403 + -3.0871672 53.5173432 + + dac.02000291 + + + 1999 2006-358353 River Mersey Gladstone Dock Entrance + + + -3.0203257 53.4443625 + -3.0138039 53.4497006 + + dac.02000292 + + + 1999 2006-358354 River Mersey Langton Dock Entrance + + + -3.0128514 53.4335376 + -3.0074492 53.4391866 + + dac.02000293 + + + 1999 2006-358355 River Mersey Queens Channel East + + + -3.2300503 53.5127739 + -3.172506 53.5307444 + + dac.02000294 + + + 1999 2006-358362 River Mersey Alfred Dock Entrance + + + -3.0162301 53.4031656 + -3.0114437 53.4066342 + + dac.02000295 + + + 1999 2006-358363 River Mersey New Brighton Shoal + + + -3.0459111 53.4336289 + -3.0155529 53.4521164 + + dac.02000296 + + + 1999 2006-358364 River Mersey Swamped Moorings Off Dukes Buoy + + + -3.0032473 53.3948605 + -2.9950228 53.4017056 + + dac.02000297 + + + 1999 2006-358367 Harwich Haven Shotely Spit to Parkeston Quay + + + 1.2613894 51.9441558 + 1.2954514 51.9645181 + + dac.02000298 + + + 1999 2006-358368 Harwich Haven Harwich International Port + + + 1.2303689 51.9456839 + 1.2652594 51.9598533 + + dac.02000299 + + + 1999 2006-358373 River Mersey Crosby Channel Askew Spit + + + -3.1481973 53.5197449 + -3.1256805 53.5298354 + + dac.02000300 + + + 1999 2006-358374 River Mersey Langton Dock Entrance + + + -3.0121882 53.4343693 + -3.0076676 53.4392001 + + dac.02000301 + + + 1999 2006-358375 River Mersey Tranmere Oil Stages + + + -3.0029733 53.3754992 + -2.9951997 53.3832572 + + dac.02000302 + + + 1999 2006-358376 River Mersey Garston Bar and Channel Entrance + + + -2.9897829 53.3648747 + -2.9587053 53.3821953 + + dac.02000303 + + + 1999 2006-358382 The Wash Boston Port Approaches Tabs Head to No 9 Buoy + + + 0.1022549 52.9318363 + 0.1373011 52.9589996 + + dac.02000304 + + + 1999 2006-358383 The Wash Boston Port Tabs Head to No 9 Buoy + + + 0.0850618 52.9325992 + 0.1324603 52.9581171 + + dac.02000305 + + + 1999 2006-358386 River Mersey Alfred Dock Entrance + + + -3.0161259 53.4030881 + -3.0114282 53.4066784 + + dac.02000306 + + + 1999 2006-358387 River Mersey Crosby Channel and Shoal + + + -3.1139546 53.4932592 + -3.0862132 53.5169682 + + dac.02000307 + + + 1999 2006-358388 River Mersey Garston Bar and Channel Entrance + + + -2.9897829 53.3648747 + -2.9587053 53.3821953 + + dac.02000308 + + + 1999 2006-358389 River Mersey Gladstone Dock Entrance + + + -3.0203318 53.4448664 + -3.0141515 53.4496541 + + dac.02000309 + + + 1999 2006-358390 River Mersey Langton Dock Entrance + + + -3.0122132 53.4341692 + -3.0075619 53.4391784 + + dac.02000310 + + + 1999 2006-358391 River Mersey Liverpool Landing Stages + + + -3.002945 53.4023935 + -2.9974275 53.4068085 + + dac.02000311 + + + 1999 2006-358392 River Mersey Queens Channel East + + + -3.2287144 53.5136273 + -3.1744575 53.5296003 + + dac.02000312 + + + 1999 2006-358393 River Mersey Liverpool Stages South Approach + + + -3.0016289 53.3969326 + -2.9932229 53.4039719 + + dac.02000313 + + + 1999 2006-358394 Christchurch Bay Hurst Spit Stabilisation Scheme + + + -1.6108812 50.6670448 + -1.5522296 50.7005565 + + dac.02000314 + + + 1999 2006-348015 Holyhead + + + -4.6341588 53.3096159 + -4.601592 53.3303731 + + dac.02000315 + + + 1999 2006-358403 River Mersey Cammel Lairds Dock No7 + + + -3.0079102 53.3855459 + -3.0043107 53.3894766 + + dac.02000316 + + + 1999 2006-358404 River Mersey Belfast & Dublin Ferry Terminal + + + -3.0161883 53.397628 + -3.0052485 53.4067408 + + dac.02000317 + + + 1999 2006-358405 River Mersey Queens Channel West + + + -3.2688757 53.5142651 + -3.2214099 53.5267711 + + dac.02000318 + + + 1999 2006-358406 River Mersey Gladstone Seaworth Wall + + + -3.0312521 53.4472293 + -3.0180655 53.4560749 + + dac.02000319 + + + 1999 2006-358407 River Mersey Tranmere Oil Stages + + + -3.0028905 53.3755651 + -2.9952404 53.3831992 + + dac.02000320 + + + 1999 2006-358408 River Mersey Queens Channel East + + + -3.2298105 53.5133568 + -3.1734476 53.5288441 + + dac.02000321 + + + 1999 2006-358409 River Mersey Albert Dock Entrance + + + -3.0161428 53.403163 + -3.0115631 53.4066258 + + dac.02000322 + + + 1999 2006-358410 River Mersey New Brighton Shoal + + + -3.0411588 53.43427 + -3.0160823 53.4503834 + + dac.02000323 + + + 1999 2006-358413 The Wash Wainfleet Road and Outer Dogs Head + + + 0.2811459 53.0585357 + 0.4059796 53.1259522 + + dac.02000324 + + + 1999 2006-358414 The Wash Skegness Middle Wainfleet Road and Outer Dogs Head + + + 0.2914854 53.0578474 + 0.3996234 53.1410449 + + dac.02000325 + + + 1999 2006-358422 The Wash Boston Port Approaches Freeman Channel + + + 0.1358982 52.9561037 + 0.2559979 52.9841505 + + dac.02000326 + + + 1999 2006-358423 River Mersey Crosby Channel Askew Pit + + + -3.1749993 53.5185357 + -3.1262939 53.5310897 + + dac.02000327 + + + 1999 2006-358424 River Mersey Crosby Channel and Shoal + + + -3.116092 53.4909329 + -3.0861861 53.5179877 + + dac.02000328 + + + 1999 2006-358425 River Mersey Gladstone Dock Entrance + + + -3.0203003 53.4448927 + -3.0141151 53.4496806 + + dac.02000329 + + + 1999 2006-358426 River Mersey Jordans Spit to Queens Channel + + + -3.306795 53.5139003 + -3.2689106 53.6115934 + + dac.02000330 + + + 1999 2006-358427 River Mersey Langton Dock Entrance + + + -3.012151 53.4345124 + -3.0076695 53.4392099 + + dac.02000331 + + + 1999 2006-358428 River Mersey Queens Channel East + + + -3.2292281 53.5136346 + -3.1742519 53.5295745 + + dac.02000332 + + + 1999 2006-358432 Workington + + + -3.5812773 54.6519743 + -3.5761973 54.6547765 + + dac.02000333 + + + 1999 2006-358433 Workington + + + -3.5728432 54.6495384 + -3.5673516 54.6513566 + + dac.02000334 + + + 1999 2006-358434 Workington + + + -3.5770304 54.6500593 + -3.572006 54.6526283 + + dac.02000335 + + + 1999 2006-358443 Christchurch Bay Hurst Spit Stabilisation Scheme Shingles + + + -1.6100694 50.6693503 + -1.564609 50.6968573 + + dac.02000336 + + + 1999 2006-358444 Christchurch Bay Shingles Bank + + + -1.6284255 50.6617818 + -1.552926 50.7150199 + + dac.02000337 + + + 1999 2006-358445 Christchurch Bay Shingles + + + -1.615062 50.6699788 + -1.5529945 50.7026593 + + dac.02000338 + + + 1999 2006-358446 Annat Bank Approaches to Montrose Harbour + + + -2.4571054 56.7033303 + -2.4490397 56.7080419 + + dac.02000339 + + + 1999 2006-358447 River Mersey Crosby Channel and Shoal + + + -3.1148506 53.4932158 + -3.0860825 53.517406 + + dac.02000340 + + + 1999 2006-358448 River Mersey Crosby Channel South + + + -3.1021258 53.4644388 + -3.0514756 53.500189 + + dac.02000341 + + + 1999 2006-358449 River Mersey Garston Bar and Channel Entrance + + + -2.9897043 53.3646971 + -2.9587932 53.3825832 + + dac.02000342 + + + 1999 2006-358450 River Mersey Garston Channel + + + -2.9850821 53.3322027 + -2.902141 53.3790827 + + dac.02000343 + + + 1999 2006-358451 River Mersey Gladstone Dock Entrance + + + -3.0205086 53.4446253 + -3.0138034 53.4496077 + + dac.02000344 + + + 1999 2006-358452 River Mersey Jordans Spit to Queens Channel + + + -3.3251323 53.511461 + -3.2144368 53.6153548 + + dac.02000345 + + + 1999 2006-358453 River Mersey Langton Dock Entrance + + + -3.0121608 53.4341754 + -3.0079358 53.4392275 + + dac.02000346 + + + 1999 2006-358454 River Mersey Queens Channel East + + + -3.2293431 53.5135259 + -3.1742563 53.5301239 + + dac.02000347 + + + 1999 2006358455 The Wash Boston Port Apporaches Parlour Channel + + + 0.3159062 53.0072283 + 0.3849947 53.0433526 + + dac.02000348 + + + 1999 2006-358456 The Wash Boston Port Approaches Toft and Gat Sand + + + 0.1192964 52.9056999 + 0.2317768 52.9500917 + + dac.02000349 + + + 1999 2006-290840 Shetland Islands Scalloway Harbour + + + -1.2986021 60.1265943 + -1.2671265 60.1377003 + + dac.02000350 + + + 1999 2006-290841 Shetland Islands Papa Stour Housa Voe + + + -1.6755431 60.3263335 + -1.6547901 60.33566 + + dac.02000351 + + + 1999 2006-358490 River Mersey Alfred Dock Entrance + + + -3.0162058 53.4031261 + -3.011398 53.4066648 + + dac.02000352 + + + 1999 2006-358491 River Mersey Brazil Elbow + + + -3.0670407 53.4474188 + -3.0250533 53.4742079 + + dac.02000353 + + + 1999 2006-358492 River Mersey Crosby Channel and Shoal + + + -3.1179091 53.4923683 + -3.0856575 53.5184848 + + dac.02000354 + + + 1999 2006-358493 River Mersey Gladstone Dock Entrance + + + -3.0202831 53.4446281 + -3.013876 53.449696 + + dac.02000355 + + + 1999 2006-358494 River Mersey Langton Dock Entrance + + + -3.0122931 53.4338863 + -3.007441 53.4391834 + + dac.02000356 + + + 1999 2006-358495 River Mersey New Brighton Shoal + + + -3.0403853 53.4324698 + -3.0145389 53.4500418 + + dac.02000357 + + + 1999 2006-358496 River Mersey Queens Channel East + + + -3.2276877 53.5140695 + -3.1742981 53.5285815 + + dac.02000358 + + + 1999 2006-358497 River Mersey Queens Channel West + + + -3.2719567 53.5140605 + -3.2187974 53.5263784 + + dac.02000359 + + + 1999 2006-358509 Workington + + + -3.5814023 54.650153 + -3.5666113 54.654548 + + dac.02000360 + + + 1999 2006-358510 Workington + + + -3.5726537 54.6496243 + -3.5674288 54.6513865 + + dac.02000361 + + + 1999 2006-358511 Workington + + + -3.5776286 54.6500159 + -3.5718597 54.6529904 + + dac.02000362 + + + 1999 2006-290827 Shetland Islands Hammars Ness Fetlar + + + -0.9371336 60.6270713 + -0.9227537 60.6342097 + + dac.02000363 + + + 2000 2006-358787 River Mersey Alfred Dock Entrance + + + -3.0162606 53.4031451 + -3.0114691 53.4066111 + + dac.02000364 + + + 2000 2006-358788 River Mersey Crosby Channel and Shoal + + + -3.1146885 53.4930795 + -3.0860072 53.5175122 + + dac.02000365 + + + 2000 2006-358789 River Mersey Garston Bar and Channel Entrance + + + -2.9902861 53.3647471 + -2.9583357 53.3824914 + + dac.02000366 + + + 2000 2006-358790 River Mersey Gladstone Dock Entrance + + + -3.0202837 53.4458282 + -3.0146458 53.4496692 + + dac.02000367 + + + 2000 2006-358791 River Mersey Langton Dock Entrance + + + -3.0121883 53.4342087 + -3.0076376 53.439205 + + dac.02000368 + + + 2000 2006-358792 River Mersey Liverpool Stages South Approach + + + -3.0015757 53.397072 + -2.9931647 53.40397 + + dac.02000369 + + + 2000 2006-358793 River Mersey Pluckington Bank + + + -3.0082634 53.3727683 + -2.9692721 53.4042277 + + dac.02000370 + + + 2000 2006-358794 River Mersey Queens Channel East + + + -3.2300029 53.5132466 + -3.1729554 53.5302361 + + dac.02000371 + + + 2000 2006-358795 River Mersey Tranmere Oil Stages + + + -3.0028769 53.3755214 + -2.994979 53.3832321 + + dac.02000372 + + + 1999 2006-358797 Milford Haven + + + -4.9850874 51.6827591 + -4.9787839 51.6870239 + + dac.02000373 + + + 2000 2006-290818 Pembroke Dock + + + -4.95165 51.6957191 + -4.9473361 51.6983833 + + dac.02000374 + + + 1999 2006-348512 J021 Weymouth Harbour + + + -2.4598755 50.6062979 + -2.43882 50.6136684 + + dac.02000375 + + + 2000 2006-358803 Christchurch Bay Hurst Spit Stabilisation Scheme Shingles + + + -1.6109183 50.6699362 + -1.5519261 50.7002891 + + dac.02000376 + + + 2000 2006-358804 Orkney Islands Graemsay Clestrain Sound + + + -3.2542073 58.9277136 + -3.2338069 58.936023 + + dac.02000377 + + + 2000 2006-358805 Orkney Islands Scapa Bay + + + -2.9816919 58.9531488 + -2.970602 58.9594226 + + dac.02000378 + + + 2000 2006-358806 Orkney Islands Scapa Bay + + + -3.1363842 58.8077328 + -3.0112167 58.9317455 + + dac.02000379 + + + 2000 2006-358807 Orkney Islands Stromess Harbour + + + -3.2993743 58.9523705 + -3.2897584 58.9653789 + + dac.02000380 + + + 2000 2006-358832 River Mersey Alfred Dock Entrance + + + -3.0162015 53.4031522 + -3.0113585 53.4066255 + + dac.02000381 + + + 2000 2006-358833 River Mersey Crosby Channel and Shoal + + + -3.1148577 53.4933386 + -3.0861419 53.5174114 + + dac.02000382 + + + 2000 2006-358834 River Mersey Garston Bar and Channel Entrance + + + -2.9896458 53.3647607 + -2.9586696 53.3826247 + + dac.02000383 + + + 2000 2006-358835 River Mersey Gladstone Dock Entrance + + + -3.0203921 53.4449499 + -3.0140348 53.4496828 + + dac.02000384 + + + 2000 2006-358836 River Mersey Langton Dock Entrance + + + -3.0122072 53.4341605 + -3.007614 53.4391777 + + dac.02000385 + + + 2000 2006-358837 River Mersey Liverpool Landing Stages + + + -3.0029082 53.4028767 + -2.9975424 53.4070882 + + dac.02000386 + + + 2000 2006-358838 River Mersey New Brighton Shoal + + + -3.0402337 53.4336848 + -3.0165033 53.4503858 + + dac.02000387 + + + 2000 2006-358839 River Mersey Queens Channel East + + + -3.2292155 53.5140757 + -3.1740899 53.5296216 + + dac.02000388 + + + 2000 2006-358840 River Mersey Liverpool Stages South Approach + + + -3.0015547 53.3972702 + -2.9933358 53.4039526 + + dac.02000389 + + + 2000 2006-358841 River Mersey Tranmere Oil Stages + + + -3.0029323 53.3755574 + -2.9952953 53.3831986 + + dac.02000390 + + + 2000 2006-358842 River Mersey Woodside Ferry Stage + + + -3.0086066 53.3951102 + -3.0053119 53.3969978 + + dac.02000391 + + + 2000 2006-358844 Christchurch Bay Shingles Bank + + + -1.610357 50.6699948 + -1.5636039 50.6974252 + + dac.02000392 + + + 2000 2006-358845 Christchurch Bay Shingles Bank + + + -1.6288422 50.6564006 + -1.5521929 50.715122 + + dac.02000393 + + + 2000 2006-358904 Tor Bay Brixham Harbour + + + -3.5186277 50.3959999 + -3.5053182 50.4061898 + + dac.02000394 + + + 2000 2006-358909 River Mersey Alfred Dock Entrance + + + -3.0162509 53.4031214 + -3.0114439 53.4065942 + + dac.02000395 + + + 2000 2006-358910 River Mersey Cammel Lairds Dock No5 + + + -3.0079909 53.3854371 + -3.0040921 53.3900455 + + dac.02000396 + + + 2000 2006-358911 River Mersey Crosby Channel and Shoal + + + -3.1149846 53.4931342 + -3.085954 53.5174876 + + dac.02000397 + + + 2000 2006-358912 River Mersey Middle Deep to Eastham Channel + + + -2.9853698 53.3447361 + -2.9547846 53.3693868 + + dac.02000398 + + + 2000 2006-358913 River Mersey Langton Dock Entrance + + + -3.0122331 53.4339224 + -3.0074582 53.439215 + + dac.02000399 + + + 2000 2006-358914 River Mersey Liverpool Landing Stages + + + -3.0029238 53.4028949 + -2.9976194 53.4068176 + + dac.02000400 + + + 2000 2006-358915 River Mersey Morpeth River Entrance + + + -3.0118372 53.3967009 + -3.0077728 53.3987077 + + dac.02000401 + + + 2000 2006-358916 River Mersey New Brighton Shoal + + + -3.038544 53.4339922 + -3.0158822 53.4495338 + + dac.02000402 + + + 2000 2006-358917 River Mersey Queens Channel East + + + -3.2296528 53.513488 + -3.1736971 53.5301129 + + dac.02000403 + + + 2000 2006-358918 River Mersey Queens Channel West + + + -3.2733449 53.5140809 + -3.2177321 53.5274468 + + dac.02000404 + + + 2000 2006-358934 River Mersey Alfred Dock Entrance + + + -3.0161399 53.4031298 + -3.0115828 53.4065795 + + dac.02000405 + + + 2000 2006-358935 River Mersey Crosby Channel Askew Spit + + + -3.1747941 53.5146929 + -3.1173793 53.5298484 + + dac.02000406 + + + 2000 2006-358936 River Mersey Cammell Lairds Approach to Tranmere Basin + + + -3.0080205 53.382528 + -3.0018289 53.3900767 + + dac.02000407 + + + 2000 2006-358937 River Mersey Crosby Channel and Shoal + + + -3.1158981 53.4928254 + -3.0862008 53.5174831 + + dac.02000408 + + + 2000 2006-358938 River Mersey Garston Bar and Channel Entrance + + + -2.9895099 53.364746 + -2.9586301 53.382578 + + dac.02000409 + + + 2000 2006-358939 River Mersey Gladstone Dock Entrance + + + -3.0202935 53.4446244 + -3.0139291 53.4496184 + + dac.02000410 + + + 2000 2006-358940 River Mersey Langton Dock Entrance + + + -3.0127674 53.4330438 + -3.0074289 53.4392197 + + dac.02000411 + + + 2000 2006-358941 River Mersey Twelve Quays RoRo Terminal + + + -3.0161788 53.3962095 + -3.0048246 53.4066697 + + dac.02000412 + + + 2000 2006-358942 River Mersey Queens Channel East + + + -3.2293881 53.5135945 + -3.1737092 53.5305519 + + dac.02000413 + + + 2000 2006-358943 River Mersey Tranmere Oil Stages + + + -3.0029119 53.3755222 + -2.9951682 53.3832161 + + dac.02000414 + + + 2000 2006-358957 River Mersey Alfred Dock Entrance + + + -3.0162359 53.4031801 + -3.0114365 53.4065862 + + dac.02000415 + + + 2000 2006-358958 River Mersey Crosby Channel and Shoal + + + -3.1157271 53.4918953 + -3.0837542 53.5168874 + + dac.02000416 + + + 2000 2006-358959 River Mersey Crosby Channel South + + + -3.0980613 53.4639869 + -3.0512502 53.4974762 + + dac.02000417 + + + 2000 2006-358960 River Mersey Garston Channel + + + -2.9906 53.3312967 + -2.9026801 53.3829839 + + dac.02000418 + + + 2000 2006-358961 River Mersey Jordans Spit + + + -3.3118778 53.5168021 + -3.2691012 53.5816623 + + dac.02000419 + + + 2000 2006-358962 River Mersey Langton Dock Entrance + + + -3.0121972 53.4344086 + -3.0077257 53.439277 + + dac.02000420 + + + 2000 2006-358963 River Mersey Liverpool Landing Stages + + + -3.002889 53.4028414 + -2.9977462 53.4068086 + + dac.02000421 + + + 2000 2006-358964 River Mersey New Brighton Shoal + + + -3.0382117 53.4345326 + -3.0164148 53.4492663 + + dac.02000422 + + + 2000 2006-358965 River Mersey Queens Channel West + + + -3.2716168 53.5141161 + -3.2182016 53.527486 + + dac.02000423 + + + 2000 2006-358966 River Mersey Queens Channel East + + + -3.2303199 53.5134704 + -3.1726249 53.5299687 + + dac.02000424 + + + 2000 2006-358967 River Mersey Liverpool Stages South Approach + + + -3.0017429 53.397345 + -2.9933994 53.4039556 + + dac.02000425 + + + 2000 2006-358969 River Mersey Eastham Channel + + + -2.9654128 53.3224135 + -2.921975 53.351378 + + dac.02000426 + + + 2000 2006-358970 River Mersey Gladstone Dock Entrance + + + -3.0203561 53.4441246 + -3.0135637 53.4496375 + + dac.02000427 + + + 2000 2006-358971 River Mersey Pluckington Bank + + + -3.0118973 53.3630174 + -2.9699083 53.4043283 + + dac.02000428 + + + 2000 2006-358972 River Mersey Queens Channel East + + + -3.2302647 53.513803 + -3.17282 53.5304799 + + dac.02000429 + + + 2000 2006- 358973 The Solent Approaches to Yarmouth Harbour + + + -1.5050526 50.7070466 + -1.4985946 50.7099027 + + dac.02000430 + + + 2000 2006-358978 Christchurch Bay Shingles Bank + + + -1.6114564 50.6698235 + -1.5525184 50.7028378 + + dac.02000431 + + + 2000 2006-358996 River Mersey Alfred Dock Entrance + + + -3.0162462 53.4031314 + -3.0114419 53.4066438 + + dac.02000432 + + + 2000 2006-358997 River Mersey Crosby Channel to New Brighton + + + -3.0710577 53.4442686 + -3.0240528 53.4754898 + + dac.02000433 + + + 2000 2006-358998 River Mersey Crosby Channel and Shoal + + + -3.1153995 53.472726 + -3.0726903 53.5188363 + + dac.02000434 + + + 2000 2006-358999 River Mersey Garston Bar and Channel Entrance + + + -2.9901333 53.364735 + -2.9584655 53.3826101 + + dac.02000435 + + + 2000 2006-359000 River Mersey Gladstone Dock Entrance + + + -3.0202467 53.4444465 + -3.0136135 53.4496131 + + dac.02000436 + + + 2000 2006-359001 River Mersey Langton Dock Entrance + + + -3.0129132 53.4330901 + -3.0074451 53.4392437 + + dac.02000437 + + + 2000 2006-359002 River Mersey Liverpool Landings Stages + + + -3.0029168 53.4028606 + -2.9976999 53.4068414 + + dac.02000438 + + + 2000 2006-359003 River Mersey Liverpool Stages South Approach + + + -3.0016867 53.3972564 + -2.9933813 53.4040471 + + dac.02000439 + + + 2000 2006-359004 River Mersey New Brighton Shoal + + + -3.0508113 53.4317997 + -3.014443 53.4559811 + + dac.02000440 + + + 2000 2006-359005 River Mersey Queens Channel Margins + + + -3.2370093 53.5107434 + -3.1727728 53.5351881 + + dac.02000441 + + + 2000 2006-359006 River Mersey Seaforth Gladstone Dock Wall + + + -3.0306836 53.4469465 + -3.0176094 53.4560339 + + dac.02000442 + + + 2000 2006-359007 River Mersey Tranmere Oil Stages + + + -3.003023 53.3756056 + -2.9951345 53.3831653 + + dac.02000443 + + + 2000 2006-359010 Shetland Islands North Channel Out Skerries + + + -0.751515 60.4211982 + -0.7457434 60.4226343 + + dac.02000444 + + + 2000 2006-348802 Weymouth Harbour and Bay + + + -2.4598059 50.6063086 + -2.4391505 50.6134668 + + dac.02000445 + + + 2000 2006-359019 Harwich Haven Rough Tower Spoil Ground + + + 1.453242 51.8401689 + 1.5163092 51.8728982 + + dac.02000446 + + + 2001 2006-359164 River Mersey Alfred Dock Entrance + + + -3.0162303 53.4031061 + -3.0114184 53.4066157 + + dac.02000447 + + + 2001 2006-359165 River Mersey Cammell Lairds Dock No5 + + + -3.0079035 53.3882776 + -3.0053054 53.3890744 + + dac.02000448 + + + 2001 2006-359166 River Mersey Crosby Channel and Shoal + + + -3.115059 53.4934004 + -3.0863627 53.5174388 + + dac.02000449 + + + 2001 2006-359167 River Mersey Garston Bar and Channel + + + -2.9897967 53.364784 + -2.9586886 53.3827111 + + dac.02000450 + + + 2001 2006-359168 River Mersey Langton Dock Entrance + + + -3.0124121 53.4342184 + -3.0075742 53.4391475 + + dac.02000451 + + + 2001 2006-359169 River Mersey Liverpool Stages South Approach + + + -3.0018345 53.3968329 + -2.993231 53.4039873 + + dac.02000452 + + + 2001 2006-359170 River Mersey New Brighton Shoal + + + -3.0395122 53.4337729 + -3.0163607 53.4491806 + + dac.02000453 + + + 2001 2006-359171 River Mersey Pluckington Bank + + + -3.0112308 53.3712633 + -2.9722216 53.4041521 + + dac.02000454 + + + 2001 2006-359172 River Mersey Queens Channel East + + + -3.2294414 53.5135669 + -3.1742634 53.5300089 + + dac.02000455 + + + 2001 2006-359173 River Mersey Tranmere Oil Stages + + + -3.0030361 53.3754639 + -2.9949365 53.3832663 + + dac.02000456 + + + 2001 2006-359188 River Mersey Alfred Dock Entrance + + + -3.0162081 53.4031187 + -3.011364 53.4065814 + + dac.02000457 + + + 2001 2006-359189 River Mersey Crosby Channel + + + -3.1749844 53.5143653 + -3.1180041 53.530079 + + dac.02000458 + + + 2001 2006-359190 River Mersey Cammell Lairds Wall Dock No7 + + + -3.0075925 53.3855759 + -3.0038598 53.3876472 + + dac.02000459 + + + 2001 2006-359191 River Mersey Crosby Channel and Shoal + + + -3.1148917 53.4931556 + -3.0860017 53.5172591 + + dac.02000460 + + + 2001 2006-359192 River Mersey Gladstone Dock Entrance + + + -3.0205036 53.443861 + -3.0129081 53.4496662 + + dac.02000461 + + + 2001 2006-359193 River Mersey Langton Dock Entrance + + + -3.0127794 53.4342477 + -3.0077218 53.439146 + + dac.02000462 + + + 2001 2006-359194 River Mersey Liverpool Landing Stages + + + -3.0031495 53.4028569 + -2.997723 53.40686 + + dac.02000463 + + + 2001 2006-359195 River Mersey Queens Channel East + + + -3.2296919 53.5137127 + -3.1739267 53.5307178 + + dac.02000464 + + + 2001 2006-359196 River Mersey Queens Channel West + + + -3.2710828 53.5140542 + -3.218066 53.5274876 + + dac.02000465 + + + 2001 2006-290688 Isle of Islay Bruichladdich Harbour + + + -6.362115 55.7619998 + -6.3564987 55.7658699 + + dac.02000466 + + + 2000 2006-359200 Southampton Water Entrance to River Hamble + + + -1.3188871 50.8373642 + -1.3035374 50.8647688 + + dac.02000467 + + + 2001 2006-359205 River Mersey Great Burbo Bank to Eastham Banks + + + -3.0723299 53.321143 + -2.9018547 53.4767242 + + dac.02000468 + + + 2001 2006-359206 River Mersey Crosby Channel and Shoal + + + -3.1150166 53.4931753 + -3.0867824 53.5172583 + + dac.02000469 + + + 2001 2006-359207 River Mersey Middle Deep to Eastham Channel + + + -2.9857003 53.3448043 + -2.9577331 53.3719196 + + dac.02000470 + + + 2001 2006-359208 Liverpool Bay - Chester Flats Inner Passage to South Hoyle Channel + + + -3.5853332 53.3515316 + -3.3630952 53.3794508 + + dac.02000471 + + + 2001 2006-359209 Liverpool Bay - Chester Flats Inner Passage to South Hoyle Channel + + + -3.5873401 53.3476884 + -3.361834 53.382743 + + dac.02000472 + + + 2001 2006-359211 River Mersey Alfred Dock Entrance + + + -3.0162405 53.4031171 + -3.0114462 53.4066197 + + dac.02000473 + + + 2001 2006-359212 River Mersey Garston Bar and Channel Entrance + + + -2.9898765 53.3647409 + -2.9583433 53.3823891 + + dac.02000474 + + + 2001 2006-359213 River Mersey Gladstone Dock Entrance + + + -3.0205661 53.4443061 + -3.0139763 53.4496848 + + dac.02000475 + + + 2001 2006-359214 River Mersey Langton Dock Entrance + + + -3.012298 53.4335992 + -3.0074667 53.4392145 + + dac.02000476 + + + 2001 2006-359215 River Mersey Liverpool Landing Stage + + + -3.0030554 53.4024781 + -2.9974659 53.4068649 + + dac.02000477 + + + 2001 2006-359216 River Mersey Liverpool Stages South Approach + + + -3.0017618 53.3970542 + -2.9931777 53.4039988 + + dac.02000478 + + + 2001 2006-359217 River Mersey Queens Channel East + + + -3.2292075 53.5139855 + -3.1742728 53.5295924 + + dac.02000479 + + + 2001 2006-359218 River Mersey Queens Channel West + + + -3.2690705 53.5138026 + -3.2211775 53.5278508 + + dac.02000480 + + + 2001 2006-359219 River Mersey Tranmere Oil Stages + + + -3.002965 53.3755184 + -2.9952738 53.383208 + + dac.02000481 + + + 2000 2006-359232 Harwich Haven River Orwell Levington to Woolverstone + + + 1.1890797 51.9894452 + 1.2596405 52.0153338 + + dac.02000482 + + + 2001 2006-359233 Harwich Haven River Orwell Woolverstone to Cliff Quay + + + 1.1542366 52.0065674 + 1.1977129 52.046627 + + dac.02000483 + + + 2000 2006-359234 Harwich Haven River Stour and Waiftfleet Reach + + + 1.0799287 51.9442279 + 1.1009671 51.9500459 + + dac.02000484 + + + 2001 2006-359235 Harwich Haven Shotley Spit to Parkeston Quay + + + 1.2624516 51.9450206 + 1.299461 51.9631874 + + dac.02000485 + + + 2001 2006-359236 Harwich Haven Harwich International Port + + + 1.2335184 51.9472672 + 1.2636449 51.9574706 + + dac.02000486 + + + 2001 2006-359265 River Mersey Alfred Dock Entrance + + + -3.016258 53.403147 + -3.0112138 53.4066582 + + dac.02000487 + + + 2001 2006-359266 River Mersey Garston Channel + + + -2.9904436 53.3314146 + -2.9021713 53.3829563 + + dac.02000488 + + + 2001 2006-359267 River Mersey Gladstone Dock Entrance + + + -3.0204273 53.4446017 + -3.0140219 53.4496142 + + dac.02000489 + + + 2001 2006-359268 River Mersey Langton Dock Entrance + + + -3.0126912 53.4331345 + -3.0073967 53.4391691 + + dac.02000490 + + + 2001 2006-359269 River Mersey New Brighton Shoal + + + -3.0389209 53.4343004 + -3.0153736 53.4495132 + + dac.02000491 + + + 2001 2006-359270 River Mersey Queens Channel East + + + -3.2304776 53.5132154 + -3.1720302 53.5303163 + + dac.02000492 + + + 2001 2006-359271 River Mersey Tranmere Oil Stages + + + -3.0029852 53.3754791 + -2.9952021 53.3831869 + + dac.02000493 + + + 2001 2006-359286 Pegwell + + + 1.4328598 51.3072169 + 1.4467834 51.316939 + + dac.02000494 + + + 2001 2006-359287 Weymouth Bay + + + -2.4526339 50.6049452 + -2.4022975 50.6367278 + + dac.02000495 + + + 2001 2006-359309 River Mersey Crosby Channel Askew Spit + + + -3.1567323 53.518739 + -3.1275947 53.531029 + + dac.02000496 + + + 2001 2006-359310 River Mersey Crosby Channel and Shoal + + + -3.1154838 53.4926725 + -3.0848028 53.5179866 + + dac.02000497 + + + 2001 2006-359311 River Mersey Garston Channel Entrance + + + -2.9899343 53.3646338 + -2.9592191 53.3823489 + + dac.02000498 + + + 2001 2006-359312 River Mersey Gladstone Dock Entrance + + + -3.0204564 53.4445494 + -3.0139084 53.4496644 + + dac.02000499 + + + 2001 2006-359313 River Mersey Langton Dock Entrance + + + -3.0127361 53.4331105 + -3.0074013 53.4392596 + + dac.02000500 + + + 2001 2006-359314 River Mersey Liverpool Landing Stage + + + -3.0031693 53.4026882 + -2.997694 53.4069324 + + dac.02000501 + + + 2001 2006-359315 River Mersey Queens Channel West + + + -3.2688216 53.513662 + -3.2208564 53.5278352 + + dac.02000502 + + + 2001 2006-359316 River Mersey Queens Channel East + + + -3.2293292 53.5135641 + -3.1736596 53.5295911 + + dac.02000503 + + + 2001 2006-359317 River Mersey Tranmere Oil Stages + + + -3.002957 53.3755097 + -2.9951986 53.3831818 + + dac.02000504 + + + 2001 2006-359331 Morecambe Bay Approaches to Heysham + + + -2.9744289 53.9993031 + -2.9262749 54.0370546 + + dac.02000505 + + + 2001 2006-359333 Christchurch Bay Shingles Bank + + + -1.6297189 50.6558118 + -1.5510106 50.7150568 + + dac.02000506 + + + 2001 2006-359334 Christchurch Bay Shingles Bank + + + -1.6289015 50.6563995 + -1.5519345 50.7150181 + + dac.02000507 + + + 2001 2006-359335 Christchurch Bay Shingles Bank + + + -1.6102562 50.6700015 + -1.5514443 50.7026569 + + dac.02000508 + + + 2001 2006-359336 Christchurch Bay Shingles Bank + + + -1.6108736 50.6694204 + -1.5519504 50.7028343 + + dac.02000509 + + + 2001 2006-359337 Christchurch Bay Shingles Dredging Area 406 + + + -1.6103995 50.6682119 + -1.5532145 50.7028466 + + dac.02000510 + + + 2001 2006-290663 Loch Ryan Cairnryan Ferry Terminal + + + -5.0215151 54.9594195 + -5.0140851 54.9647356 + + dac.02000511 + + + 2001 2006-359354 River Mersey Alfred Dock Entrance + + + -3.0162097 53.403092 + -3.0114155 53.4065868 + + dac.02000512 + + + 2001 2006-359355 River Mersey Crosby Channel and Shoal + + + -3.1150615 53.4931544 + -3.0859995 53.5171399 + + dac.02000513 + + + 2001 2006-359356 River Mersey Crosby Channel South + + + -3.096726 53.4649261 + -3.051918 53.4974411 + + dac.02000514 + + + 2001 2006-359357 River Mersey Gladstone Dock Entrance + + + -3.0209351 53.4438084 + -3.0133158 53.4496104 + + dac.02000515 + + + 2001 2006-359358 River Mersey Langton Dock Entrance + + + -3.0122778 53.4339176 + -3.0075003 53.4392377 + + dac.02000516 + + + 2001 2006-359359 River Mersey Liverpool Landing Stage + + + -3.003103 53.4023565 + -2.9973411 53.4069219 + + dac.02000517 + + + 2001 2006-359360 River Mersey New Brighton Shoal + + + -3.0410639 53.4340733 + -3.0163107 53.4510219 + + dac.02000518 + + + 2001 2006-359361 River Mersey Queens Channel East + + + -3.2314805 53.5126846 + -3.1719163 53.5304566 + + dac.02000519 + + + 2001 M3634 Newhaven Harbour and Approaches + + + 0.0525613 50.7748141 + 0.0641116 50.7898847 + + dac.02000520 + + + 2001 2006-300533 Workington Outer Channel + + + -3.5818797 54.65198 + -3.5758612 54.6547656 + + dac.02000521 + + + 2001 2006-300533 Workington Turning Basin + + + -3.5729749 54.6495061 + -3.5674134 54.6513265 + + dac.02000522 + + + 2001 2006-300533 Workington Inner Channel + + + -3.575955 54.6500941 + -3.5718913 54.6521475 + + dac.02000523 + + + 2001 2006-300533 Workington Mid Channel + + + -3.5776016 54.6513486 + -3.5743158 54.6530256 + + dac.02000524 + + + 2001 2006-300533 Workington Prince of Wales Dock + + + -3.5670422 54.6488632 + -3.5628848 54.6509688 + + dac.02000525 + + + 2001 2006-300533 Workington Spoil Ground + + + -3.6217091 54.6631054 + -3.5913702 54.6805963 + + dac.02000526 + + + 2001 2006-307120 Isle of Bute Burnt Islands and Colintraive Point + + + -5.1823382 55.9224133 + -5.1529938 55.9323727 + + dac.02000527 + + + 2001 2006-359391 River Hamble Hamble Point Marina & Port Hamble Marina + + + -1.3138533 50.8513536 + -1.2980534 50.8797788 + + dac.02000528 + + + 2001 2006-359402 J079 Weymouth Harbour + + + -2.4597547 50.6063145 + -2.439253 50.6136573 + + dac.02000529 + + + 2001 2006-359403 Holyhead + + + -4.6477881 53.3096011 + -4.5973026 53.3361048 + + dac.02000530 + + + 2001 2006-359410 River Mersey Alfred Dock Entrance + + + -3.0162581 53.403127 + -3.011492 53.4063593 + + dac.02000531 + + + 2001 2006-359411 River Mersey Crosby Channel Askew Spit + + + -3.1751289 53.5145731 + -3.1183427 53.5308929 + + dac.02000532 + + + 2001 2006-359412 River Mersey Crosby Channel and Shoal + + + -3.1150614 53.4920522 + -3.0824357 53.518493 + + dac.02000533 + + + 2001 2006-359413 River Mersey Garston Bar and Channel Entrance + + + -2.9897152 53.3645029 + -2.9555849 53.3824263 + + dac.02000534 + + + 2001 2006-359414 River Mersey Gladstone Dock Entrance + + + -3.0209772 53.4436182 + -3.0131268 53.4496331 + + dac.02000535 + + + 2001 2006-359415 Morecambe Bay Heysham Channel + + + -2.9757263 53.9963366 + -2.9388922 54.0220837 + + dac.02000536 + + + 2001 2006-359416 River Mersey Langton Dock Entrance + + + -3.0124068 53.4339107 + -3.0074486 53.4392197 + + dac.02000537 + + + 2001 2006-359417 River Mersey New Brighton Shoal + + + -3.0402659 53.4346149 + -3.0160006 53.4488307 + + dac.02000538 + + + 2001 2006-359418 River Mersey Queens Channel East + + + -3.2297842 53.5136431 + -3.1738194 53.5306415 + + dac.02000539 + + + 2001 2006-359421 River Tay Deil Bank to Mugdrum Island + + + -3.2851743 56.3515635 + -3.1567966 56.3831069 + + dac.02000540 + + + 2001 2006-359422 River Tay Mugdrum Island to Perth Harbour + + + -3.4285789 56.3504794 + -3.2439949 56.3901851 + + dac.02000541 + + + 2001 2006-359423 River Tay Mugdrum Island to Perth Harbour + + + -3.4298262 56.3504694 + -3.2431182 56.3898208 + + dac.02000542 + + + 2001 2006-359430 The Solent Approaches Inner Harbour and River Yar + + + -1.5063823 50.6971394 + -1.4968152 50.7101669 + + dac.02000543 + + + 2002 2006-359895 Newhaven Harbour and Approaches + + + 0.0525107 50.7748207 + 0.0636697 50.7898985 + + dac.02000544 + + + 2002 2006-300271 Portsmouth Harbour Old Mans Land Fort to Fareham Lake + + + -1.150661 50.7522621 + -1.0822636 50.8358767 + + dac.02000545 + + + 2002 2006-359908 River Mersey Alfred Dock Entrance + + + -3.0162052 53.4033779 + -3.0115032 53.406616 + + dac.02000546 + + + 2002 2006-359909 River Mersey Brazil Elbow + + + -3.0672929 53.4449925 + -3.0248403 53.4744971 + + dac.02000547 + + + 2002 2006-359910 River Mersey Crosby Channel and Shoal + + + -3.1150871 53.4932554 + -3.0859706 53.5172011 + + dac.02000548 + + + 2002 2006-359911 River Mersey Gladstone Dock Entrance + + + -3.0209969 53.4445257 + -3.0137687 53.4496169 + + dac.02000549 + + + 2002 2006-359912 River Mersey Formby Spit to Queens Channel Jordans Spit + + + -3.3617603 53.5063229 + -3.2132025 53.6137208 + + dac.02000550 + + + 2002 2006-359913 River Mersey Langton Dock Entrance + + + -3.0123793 53.4338847 + -3.0075838 53.4392047 + + dac.02000551 + + + 2002 2006-359914 River Mersey Queens Channel East + + + -3.2296637 53.5135914 + -3.1739108 53.5306866 + + dac.02000552 + + + 2002 2006-359915 River Mersey Queens Channel West + + + -3.2690796 53.5148191 + -3.2210365 53.5278615 + + dac.02000553 + + + 2002 2006-359959 River Mersey 12 Quays River Berth + + + -3.0163016 53.3977218 + -3.0050789 53.4067086 + + dac.02000554 + + + 2002 2006-359960 River Mersey Alfred Dock Entrance + + + -3.0162381 53.4030971 + -3.0113128 53.4066454 + + dac.02000555 + + + 2002 2006-359961 Morecambe Bay Heysham Channel + + + -2.9705055 53.9959277 + -2.9371037 54.0254711 + + dac.02000556 + + + 2002 2006-359962 River Mersey Langton Dock Entrance + + + -3.0122711 53.4338995 + -3.0075662 53.4391781 + + dac.02000557 + + + 2002 2006-360015 The Solent Yarmouth Harbour Postdredge + + + -1.5044197 50.7048044 + -1.5000585 50.7077165 + + dac.02000558 + + + 2002 2006-360026 The Wash Boston Port Approaches No 9 Buoy and River Entrance + + + 0.0955518 52.9319476 + 0.1373186 52.9590045 + + dac.02000559 + + + 2002 2006-350168 Holyhead + + + -4.6342522 53.314479 + -4.6260044 53.3191786 + + dac.02000560 + + + 2002 2006-360032 River Mersey Alfred Dock Entrance + + + -3.0162467 53.4031395 + -3.0114586 53.406618 + + dac.02000561 + + + 2002 2006-360033 River Mersey Crosby Channel Askew Spit + + + -3.1754055 53.5147737 + -3.1177538 53.5301193 + + dac.02000562 + + + 2002 2006-360034 River Mersey Crosby Channel and Shoal + + + -3.1152727 53.4932121 + -3.0862533 53.517311 + + dac.02000563 + + + 2002 2006-360035 River Mersey Garston Bar and Channel Entrance + + + -2.9903467 53.3647043 + -2.959087 53.382028 + + dac.02000564 + + + 2002 2006-360036 River Mersey Gladstone Dock Entrance + + + -3.0214275 53.4437483 + -3.0137472 53.4496598 + + dac.02000565 + + + 2002 2006-360037 Morecambe Bay Heysham Approach Channel + + + -2.959407 54.0107339 + -2.9265368 54.0369172 + + dac.02000566 + + + 2002 2006-360038 River Mersey Langton Dock Entrance + + + -3.0128384 53.4340133 + -3.0075261 53.4392188 + + dac.02000567 + + + 2002 2006-360039 River Mersey Liverpool Landing Stage + + + -3.0031081 53.4025961 + -2.9976064 53.406834 + + dac.02000568 + + + 2002 2006-360040 River Mersey Liverpool Stages South Approach + + + -3.0016477 53.3971376 + -2.9932309 53.4039587 + + dac.02000569 + + + 2002 2006-360041 River Mersey New Brighton Shoal + + + -3.0397552 53.4343438 + -3.0166796 53.4508226 + + dac.02000570 + + + 2002 2006-360042 River Mersey Queens Channel East + + + -3.2297428 53.5134442 + -3.1737855 53.5306421 + + dac.02000571 + + + 2002 2006-360043 River Mersey Queens Channel West + + + -3.2692588 53.5147958 + -3.2211594 53.5278706 + + dac.02000572 + + + 2002 2006-360044 River Mersey Tranmere Oil Stages + + + -3.0029081 53.3755245 + -2.9949133 53.3832229 + + dac.02000573 + + + 2002 2006-360056 Portsmouth Harbour Approaches to Ferry Terminal + + + -1.1162359 50.7932164 + -1.1082004 50.7980727 + + dac.02000574 + + + 2002 2006-360059 Pegwell Bay + + + 1.4305746 51.307139 + 1.4491374 51.3181174 + + dac.02000575 + + + 2002 2006-360084 Ramsgate Harbour + + + 1.4151907 51.3247574 + 1.4215232 51.3276105 + + dac.02000576 + + + 2002 2006-360088 River Mersey Twelve Quays and Alfred Dock Entrance + + + -3.0163355 53.3977455 + -3.0059015 53.4088644 + + dac.02000577 + + + 2002 2006-360089 River Mersey Cammel Lairds Dock No5 + + + -3.0080189 53.385583 + -3.0035969 53.3897273 + + dac.02000578 + + + 2002 2006-360090 River Mersey Eastham Channel and Bar + + + -2.965508 53.3226822 + -2.9362594 53.3493974 + + dac.02000579 + + + 2002 2006-360091 River Mersey Garston Bar and Channel Entrance + + + -2.9901478 53.3647562 + -2.9584345 53.3826361 + + dac.02000580 + + + 2002 2006-360092 River Mersey Gladstone Dock Entrance + + + -3.021085 53.4436744 + -3.0137231 53.4496755 + + dac.02000581 + + + 2002 2006-360093 River Mersey Garston Dock Entrance + + + -2.9190747 53.3451188 + -2.907054 53.3514836 + + dac.02000582 + + + 2002 2006-360094 River Mersey Langton Dock Entrance + + + -3.0124815 53.4341132 + -3.0075496 53.4391825 + + dac.02000583 + + + 2002 2006-360095 River Mersey New Brighton Shoal + + + -3.0405265 53.4343293 + -3.0163121 53.4507785 + + dac.02000584 + + + 2002 2006-360096 River Mersey Queens Channel East + + + -3.2305971 53.5125872 + -3.1724483 53.5304636 + + dac.02000585 + + + 2002 2006-360097 River Mersey Seacombe Stage + + + -3.0161355 53.4080617 + -3.0115437 53.4116097 + + dac.02000586 + + + 2002 2006-360098 River Mersey Tranmere Oil Stages + + + -3.0029278 53.3753126 + -2.9949334 53.3834241 + + dac.02000587 + + + 2002 2006-360135 Tor Bay Brixham Harbour + + + -3.5187432 50.3958326 + -3.5053247 50.406507 + + dac.02000588 + + + 2002 2006-360154 River Mersey Cammell Lairds Approach to Tranmere Basin + + + -3.0075843 53.3855832 + -3.0039605 53.3875442 + + dac.02000589 + + + 2002 2006-360155 River Mersey Crosby Channel and Shoal + + + -3.1179137 53.4925253 + -3.0852301 53.5176795 + + dac.02000590 + + + 2002 2006-360156 River Mersey Garston Channel and Bar + + + -2.9906985 53.3367411 + -2.9022908 53.3829912 + + dac.02000591 + + + 2002 2006-360157 River Mersey Gladstone Dock Entrance + + + -3.0203768 53.4446117 + -3.0138825 53.4495499 + + dac.02000592 + + + 2002 2006-360158 Morecambe Bay Heysham Lake + + + -2.9916397 53.9890763 + -2.9446411 54.0152351 + + dac.02000593 + + + 2002 2006-360159 River Mersey Langton Dock Entrance + + + -3.012476 53.4340272 + -3.0073755 53.4391852 + + dac.02000594 + + + 2002 2006-360160 River Mersey Liverpool Stages + + + -3.0030455 53.4026598 + -2.9975009 53.4069253 + + dac.02000595 + + + 2002 2006-360161 River Mersey New Brighton Shoal + + + -3.0399376 53.4342543 + -3.0164382 53.4507489 + + dac.02000596 + + + 2002 2006-360162 River Mersey Queens Channel East + + + -3.2295801 53.5134698 + -3.1739688 53.5306616 + + dac.02000597 + + + 2002 2006-360163 River Mersey Queens Channel West + + + -3.2690752 53.5136784 + -3.2210265 53.5278822 + + dac.02000598 + + + 2002 2006-360164 River Mersey Crosby Channel Shoal + + + -3.0966581 53.4648561 + -3.0519856 53.4976594 + + dac.02000599 + + + 2002 2006-360165 River Mersey Seaforth - Gladstone Dock Wall + + + -3.0325764 53.4474836 + -3.0180625 53.4560238 + + dac.02000600 + + + 2002 2006-360166 River Mersey Liverpool Stages South Approach + + + -3.0018848 53.3970311 + -2.9930546 53.4038938 + + dac.02000601 + + + 2002 2006-360183 Newhaven Fishmarket Quay + + + 0.0526741 50.789165 + 0.0542658 50.7910709 + + dac.02000602 + + + 2002 2006-360187 River Dee Mostyn Channel + + + -3.2876942 53.3202052 + -3.2565556 53.3561209 + + dac.02000603 + + + 2002 2006-360188 Approaches to River Dee Mid Hoyle Channel + + + -3.3278802 53.3661461 + -3.312064 53.3823963 + + dac.02000604 + + + 2002 2006-360195 River Mersey Crosby Channel Askew Spit + + + -3.1757562 53.5030133 + -3.0995806 53.537127 + + dac.02000605 + + + 2002 2006-360196 River Mersey Crosby Channel to New Brighton + + + -3.0692332 53.4437044 + -3.0228955 53.4757586 + + dac.02000606 + + + 2002 2006-360197 River Mersey Crosby Channel and Shoal + + + -3.1150103 53.4934323 + -3.0862029 53.5172277 + + dac.02000607 + + + 2002 2006-360198 River Mersey Jordans Spit + + + -3.3059342 53.5115953 + -3.2690461 53.5864157 + + dac.02000608 + + + 2002 2006-360199 River Mersey Langton Dock Entrance + + + -3.012417 53.4341145 + -3.0074699 53.439249 + + dac.02000609 + + + 2002 2006-360200 River Mersey New Brighton Shoal + + + -3.0425419 53.4341623 + -3.0162572 53.4516786 + + dac.02000610 + + + 2002 2006-360201 River Mersey Pluckington Bank + + + -3.0096842 53.3732576 + -2.9713755 53.4042088 + + dac.02000611 + + + 2002 2006-360202 River Mersey Queens Channel East + + + -3.2308032 53.5135048 + -3.1711121 53.5303752 + + dac.02000612 + + + 2002 2006-360203 River Mersey Tranmere Oil Stages + + + -3.0029598 53.3755392 + -2.9949337 53.3833712 + + dac.02000613 + + + 2002 2006-360204 River Mersey Liverpool Landing Stages + + + -3.0048748 53.402517 + -2.9973997 53.4128559 + + dac.02000614 + + + 2002 2006-360219 Holyhead + + + -4.6349777 53.3097201 + -4.6002085 53.3318966 + + dac.02000615 + + + 2002 2006-360235 River Mersey Alfred Dock Entrance + + + -3.0163023 53.403168 + -3.0112078 53.406523 + + dac.02000616 + + + 2002 2006-360236 River Mersey Crosby Channel and Shoal + + + -3.1174976 53.4929864 + -3.0848753 53.517594 + + dac.02000617 + + + 2002 2006-360237 River Mersey Garston Channel and Bar + + + -2.9901672 53.3647566 + -2.9587356 53.3823836 + + dac.02000618 + + + 2002 2006-360238 River Mersey Gladstone Dock Entrance + + + -3.020419 53.4446887 + -3.0141152 53.4496632 + + dac.02000619 + + + 2002 2006-360239 Morecambe Bay Heysham Channel No 3 to No 5 Buoy + + + -2.9763027 54.000761 + -2.9415829 54.0208629 + + dac.02000620 + + + 2002 2006-360240 Morecambe Bay Heysham Channel No 5 to No 7 Buoy + + + -2.9554414 54.0108949 + -2.938143 54.0236017 + + dac.02000621 + + + 2002 2006-360241 River Mersey Langton Dock Entrance + + + -3.0122932 53.4343069 + -3.007644 53.4391334 + + dac.02000622 + + + 2002 2006-360242 River Mersey Liverpool Stages + + + -3.0030619 53.4026193 + -2.997495 53.4069499 + + dac.02000623 + + + 2002 2006-360243 River Mersey New Brighton Shoal + + + -3.0420908 53.4323611 + -3.0142509 53.4513057 + + dac.02000624 + + + 2002 2006-360253 Morecambe Bay Heysham Channel + + + -2.9764379 54.0006258 + -2.9281956 54.0379902 + + dac.02000625 + + + 2002 2006-360254 Morecambe Bay Heysham Harbour and Entrance + + + -2.9307671 54.0312782 + -2.9130116 54.0355843 + + dac.02000626 + + + 2002 M3852 River Clyde Rhu Narrows + + + -4.8053139 55.9824416 + -4.7501443 56.0248642 + + dac.02000627 + + + 2002 2006-350533 J122 Weymouth Harbour + + + -2.4597893 50.6063584 + -2.4392615 50.613758 + + dac.02000628 + + + 2001 2006-360268 Belfast Victoria Channel + + + -5.891078 54.6234359 + -5.7872103 54.6901312 + + dac.02000629 + + + 2003 M3874 Portsmouth Harbour Outer & Inner Camber + + + -1.1081583 50.7904675 + -1.1052795 50.7925873 + + dac.02000630 + + + 2003 2006-360385 River Mersey Alfred Dock Entrance + + + -3.0165151 53.4030952 + -3.0114116 53.4066415 + + dac.02000631 + + + 2003 2006-360386 River Mersey North Approach to Alfred Dock Entrance + + + -3.0151666 53.4061625 + -3.0110639 53.4098353 + + dac.02000632 + + + 2003 2006-360387 River Mersey Crosby Channel Askew Spit + + + -3.1747495 53.5159703 + -3.118589 53.5304393 + + dac.02000633 + + + 2003 2006-360388 River Mersey Cammell Lairds + + + -3.0077658 53.3858806 + -3.0045607 53.3878632 + + dac.02000634 + + + 2003 2006-360389 River Mersey Crosby Channel and Shoal + + + -3.1157756 53.4929786 + -3.0859978 53.5172292 + + dac.02000635 + + + 2003 2006-360390 River Mersey Garston Channel and Bar + + + -2.989753 53.3645718 + -2.9586088 53.3822889 + + dac.02000636 + + + 2003 2006-360391 River Mersey Gladstone Dock Entrance + + + -3.020431 53.4447567 + -3.0138632 53.44967 + + dac.02000637 + + + 2003 2006-360392 Morecambe Bay Heysham Channel No2 to No5 Buoy + + + -3.0245582 53.9743585 + -2.9413642 54.022841 + + dac.02000638 + + + 2003 2006-360393 Morecambe Bay Heysham Harbour and Entrance + + + -2.9302066 54.0311405 + -2.9127714 54.0354395 + + dac.02000639 + + + 2003 2006-360394 River Mersey Langton Dock Entrance + + + -3.013029 53.4332929 + -3.0074789 53.43932 + + dac.02000640 + + + 2003 2006-360395 River Mersey Liverpool Stages + + + -3.003153 53.402821 + -2.9976819 53.4068499 + + dac.02000641 + + + 2003 2006-360396 River Mersey Liverpool Landing Stages South Approach + + + -3.0018315 53.3968737 + -2.9933953 53.4039586 + + dac.02000642 + + + 2003 2006-360397 River Mersey New Brighton Shoal + + + -3.0412597 53.4340011 + -3.0162621 53.4508331 + + dac.02000643 + + + 2003 2006-360398 River Mersey Queens Channel East + + + -3.2293822 53.5135842 + -3.1738349 53.5307007 + + dac.02000644 + + + 2001 2006-360400 Harwich Green The Shelf + + + 1.2900809 51.9341817 + 1.3002357 51.952033 + + dac.02000645 + + + 2001 2006-360401 Harwich Green The Shelf + + + 1.2905308 51.9360202 + 1.2965212 51.9519068 + + dac.02000646 + + + 2001 2006-360402 Harwich Green The Shelf + + + 1.2926534 51.9336511 + 1.310833 51.9527202 + + dac.02000647 + + + 2003 2006-360404 Harwich Haven Cork Sand + + + 1.3448373 51.841161 + 1.443874 51.9244302 + + dac.02000648 + + + 2003 2006-360412 River Mersey Alfred Dock Entrance + + + -3.016197 53.4031376 + -3.0113424 53.4065947 + + dac.02000649 + + + 2003 2006-360413 River Mersey Cammel Lairds Wall to Woodside Stage + + + -3.0087789 53.3825913 + -3.0017504 53.3958334 + + dac.02000650 + + + 2003 2006-360414 River Mersey Garston Channel and Bar + + + -2.9908655 53.3646121 + -2.9544525 53.3822873 + + dac.02000651 + + + 2003 2006-360415 Morecambe Bay Heysham Channel No3 to No8 Buoy Heysham + + + -2.9662794 53.9988427 + -2.9322558 54.038629 + + dac.02000652 + + + 2003 2006-360416 Morecambe Bay Heysham Harbour and Entrance Heysham + + + -2.9307615 54.0311561 + -2.9125262 54.0356242 + + dac.02000653 + + + 2003 2006-360417 River Mersey Liverpool Landing Stage South Approach + + + -3.0017312 53.3967652 + -2.9931014 53.4039333 + + dac.02000654 + + + 2003 2006-360418 River Mersey Tranmere Oil Stages + + + -3.0029759 53.3743578 + -2.9928483 53.3833301 + + dac.02000655 + + + 2003 2006-360429 Bristol King Road + + + -2.7890694 51.4870449 + -2.6992126 51.5317052 + + dac.02000656 + + + 2003 2006-360430 Avonmouth Royal Portbury Dock + + + -2.7265073 51.4975466 + -2.720205 51.5011169 + + dac.02000657 + + + 2003 2006-360457 River Mersey Alfred Dock Entrance + + + -3.0162906 53.4031369 + -3.0113491 53.4065396 + + dac.02000658 + + + 2003 2006-360458 River Mersey Crosby Channel and Shoal + + + -3.1157568 53.4929173 + -3.0861298 53.5173658 + + dac.02000659 + + + 2003 2006-360459 River Mersey Eastham Bar and Eastham Channel + + + -2.985865 53.3447531 + -2.9500026 53.371132 + + dac.02000660 + + + 2003 2006-360460 River Mersey Garston Channel and Bar + + + -2.9905186 53.364747 + -2.9588466 53.3825318 + + dac.02000661 + + + 2003 2006-360461 River Mersey Garston Channel + + + -2.9844612 53.3382357 + -2.9063726 53.378657 + + dac.02000662 + + + 2003 2006-360462 River Mersey Gladstone Dock Entrance + + + -3.0205065 53.4443968 + -3.0138132 53.4496473 + + dac.02000663 + + + 2003 2006-360463 Morecambe Bay Heysham Channel + + + -2.974762 54.0016411 + -2.9455364 54.0178131 + + dac.02000664 + + + 2003 2006-360464 Morecambe Bay Heysham Channel + + + -2.9734598 54.0005903 + -2.934574 54.0269238 + + dac.02000665 + + + 2003 2006-360465 Morecambe Bay Heysham Harbour Entrance + + + -2.9303414 54.0312369 + -2.9202119 54.0345685 + + dac.02000666 + + + 2003 2006-360466 Morecambe Channel Heysham Harbour Entrance + + + -2.9304065 54.0312483 + -2.9202088 54.034521 + + dac.02000667 + + + 2003 2006-360467 River Mersey Langton Dock Entrance + + + -3.0131538 53.4332942 + -3.0075376 53.4392024 + + dac.02000668 + + + 2003 2006-360468 River Mersey Liverpool Landing Stages + + + -3.0032399 53.4023695 + -2.9975234 53.4070197 + + dac.02000669 + + + 2003 2006-360469 River Mersey Liverpool Landing Stages South Approach + + + -3.001771 53.3971017 + -2.9933265 53.4039748 + + dac.02000670 + + + 2003 2006-360470 River Mersey Queens Channel East + + + -3.2308579 53.5132747 + -3.1723841 53.5303275 + + dac.02000671 + + + 2003 2006-360471 River Mersey Queens Channel West + + + -3.2708528 53.5139863 + -3.2180342 53.5262784 + + dac.02000672 + + + 2003 2006-360472 River Mersey Swamped Moorings Off Dukes Buoy + + + -3.0036579 53.3947184 + -2.995011 53.4019499 + + dac.02000673 + + + 2003 2006-360488 The Wash Boston Port Approaches No 9 Buoy and River Entrance + + + 0.0850948 52.9319252 + 0.1373947 52.959438 + + dac.02000674 + + + 2003 2006-350843 Holyhead + + + -4.6314976 53.3096182 + -4.6005621 53.3178411 + + dac.02000675 + + + 2003 2006-360501 Approaches to the Dee Estuary South Hoyle Channel + + + -3.4915539 53.3514544 + -3.362464 53.3681213 + + dac.02000676 + + + 2003 2006-360520 River Mersey Twelve Quays River Berth + + + -3.014188 53.3977576 + -3.0069962 53.4075558 + + dac.02000677 + + + 2003 2006-360521 River Mersey Crosby Channel and Shoal + + + -3.1152358 53.4930561 + -3.0860263 53.5172062 + + dac.02000678 + + + 2003 2006-360522 River Mersey Gladstone Dock Entrance + + + -3.0204597 53.4442685 + -3.0141098 53.4497044 + + dac.02000679 + + + 2003 2006-360523 Morecambe Bay Heysham Channel + + + -2.9763992 53.9950952 + -2.9379609 54.0208014 + + dac.02000680 + + + 2003 2006-360524 Morecambe Bay Heysham Harbour and Entrance + + + -2.9307832 54.0311818 + -2.9127577 54.0354386 + + dac.02000681 + + + 2003 2006-360525 River Mersey Langton Dock Entrance + + + -3.0130633 53.4332942 + -3.0074589 53.4392831 + + dac.02000682 + + + 2003 2006-360526 River Mersey Liverpool Landing Stage South Approach + + + -3.0010151 53.401554 + -2.996618 53.4042942 + + dac.02000683 + + + 2003 2006-360527 River Mersey Garston Channel + + + -2.9203952 53.3468234 + -2.9053528 53.3528698 + + dac.02000684 + + + 2000 2006-360531 Thurso Bay Scrabster Road + + + -3.550103 58.6021203 + -3.522873 58.6196799 + + dac.02000685 + + + 2003 2006-360539 River Mersey Askew Spit + + + -3.1747607 53.5154524 + -3.1194466 53.5307647 + + dac.02000686 + + + 2003 2006-360540 River Mersey Gladstone Dock Entrance + + + -3.0205725 53.4446472 + -3.0140164 53.4496601 + + dac.02000687 + + + 2003 2006-360541 Morecambe Bay Heysham Channel + + + -2.9722828 54.0012078 + -2.929017 54.0386622 + + dac.02000688 + + + 2003 2006-360542 Morecambe Bay Heysham Harbour Entrance + + + -2.9297045 54.0313182 + -2.9202919 54.034315 + + dac.02000689 + + + 2003 2006-360543 Morecambe Bay Heysham Harbour and Entrance + + + -2.9305583 54.0311834 + -2.9127811 54.0354917 + + dac.02000690 + + + 2003 2006-360544 River Mersey Langton Dock Entrance + + + -3.0124075 53.4341681 + -3.0079335 53.4392415 + + dac.02000691 + + + 2003 2006-360545 River Mersey Liverpool Stages + + + -3.003226 53.4027924 + -2.9977747 53.406994 + + dac.02000692 + + + 2003 2006-360546 River Mersey New Brighton Shoal + + + -3.0459779 53.433003 + -3.0152273 53.4534289 + + dac.02000693 + + + 2003 2006-360547 River Mersey Queens Channel East + + + -3.2306251 53.513491 + -3.1726255 53.5304258 + + dac.02000694 + + + 2003 2006-360548 River Mersey Tranmere Oil Stages + + + -3.0030094 53.3754697 + -2.9947606 53.3833182 + + dac.02000695 + + + 2003 2006-360549 River Mersey Crosby Channel and Shoal + + + -3.1171322 53.4913147 + -3.0832994 53.5183527 + + dac.02000696 + + + 2003 2006-360550 Morecambe Bay Heysham Channel + + + -2.9847383 53.9961343 + -2.9413258 54.0198093 + + dac.02000697 + + + 2003 2006-319978 Approach Channel and Montrose Harbour + + + -2.4727035 56.70142 + -2.4281656 56.7066413 + + dac.02000698 + + + 2003 2006-360561 River Mersey Langton Dock Entrance + + + -3.0122303 53.4343612 + -3.0077656 53.4392277 + + dac.02000699 + + + 2003 2006-319981 Thurso Bay Scrabster Harbour + + + -3.5450373 58.6091768 + -3.5396962 58.613807 + + dac.02000700 + + + 2003 2006-360564 River Mersey Garston Channel + + + -2.9203154 53.3467806 + -2.9054143 53.3528533 + + dac.02000701 + + + 2003 2006-360301 Severn Estuary Bristol Deep + + + -2.9338384 51.4422885 + -2.8525547 51.4882679 + + dac.02000702 + + + 2003 2006-360611 River Dee Mostyn Dock + + + -3.2627847 53.3215494 + -3.257804 53.3249945 + + dac.02000703 + + + 2003 2006-360612 River Dee Mostyn Channel + + + -3.2771887 53.3221895 + -3.2538238 53.3503961 + + dac.02000704 + + + 2003 2006-360613 River Dee Mostyn Dock + + + -3.2626339 53.3167664 + -3.2540503 53.3279439 + + dac.02000705 + + + 2003 2006-360614 River Dee Welsh Channel to Mostyn Deep + + + -3.3167167 53.3476537 + -3.2696566 53.3704321 + + dac.02000706 + + + 2003 2006-360617 River Mersey Alfred Dock Entrance + + + -3.0162852 53.4045412 + -3.0120193 53.4054812 + + dac.02000707 + + + 2003 2006-360618 River Mersey Alfred Dock Entrance + + + -3.0162609 53.4031516 + -3.011333 53.406561 + + dac.02000708 + + + 2003 2006-360619 River Mersey Crosby Channel and Shoal + + + -3.0977691 53.4646645 + -3.0520653 53.4977629 + + dac.02000709 + + + 2003 2006-360620 River Mersey Crosby Channel South + + + -3.1161286 53.4927901 + -3.0860301 53.5170606 + + dac.02000710 + + + 2003 2006-360621 River Mersey Eastham Channel and Bar + + + -2.9831636 53.3450373 + -2.9503124 53.3699645 + + dac.02000711 + + + 2003 2006-360622 River Mersey Garston Channel + + + -2.9726984 53.3419989 + -2.9058427 53.3741683 + + dac.02000712 + + + 2003 2006-360623 River Mersey Garston Dock Entrance + + + -2.923151 53.3424989 + -2.9056652 53.3538333 + + dac.02000713 + + + 2003 2006-360624 River Mersey Garston Channel and Bar + + + -2.9906322 53.3646682 + -2.9583909 53.3826418 + + dac.02000714 + + + 2003 2006-360625 River Mersey Gladstone Dock Entrance + + + -3.0213458 53.4446979 + -3.0141299 53.4498137 + + dac.02000715 + + + 2003 2006-360626 Morecambe Bay Heysham Channel + + + -2.9706441 53.9996025 + -2.9276833 54.0382934 + + dac.02000716 + + + 2003 2006-360627 Morecambe Bay Heysham Harbour Entrance + + + -2.9300528 54.0312676 + -2.920162 54.0345222 + + dac.02000717 + + + 2003 2006-360628 Morecambe Bay Lancaster Sound + + + -3.0590248 53.9966405 + -3.0464441 54.0066515 + + dac.02000718 + + + 2003 2006-360629 River Mersey Langton Dock Entrance + + + -3.0130766 53.4360446 + -3.0081994 53.439294 + + dac.02000719 + + + 2003 2006-360630 River Mersey Liverpool Landing Stages + + + -3.0031633 53.4014843 + -2.9963974 53.4069231 + + dac.02000720 + + + 2003 2006-360631 River Mersey Queens Channel East + + + -3.2296775 53.5134351 + -3.1741452 53.5296079 + + dac.02000721 + + + 2003 2006-360632 River Mersey Queens Channel West + + + -3.2764647 53.513965 + -3.2181581 53.5266003 + + dac.02000722 + + + 2003 2006-360633 River Mersey Tranmere Oil Stages + + + -3.0031329 53.3749879 + -2.9948359 53.3834179 + + dac.02000723 + + + 2003 2006-363749 Morecambe Bay Heysham Channel + + + -2.9723783 53.9988335 + -2.9273943 54.0390594 + + dac.02000724 + + + 2003 2006-360649 Morecambe Bay Heysham Harbour Entrance + + + -2.9301443 54.0314392 + -2.920241 54.0343711 + + dac.02000725 + + + 2003 2006-360650 Morecambe Bay Lancaster Sound + + + -3.0590248 53.9966405 + -3.0464441 54.0066515 + + dac.02000726 + + + 2003 2006-360651 River Mersey Langstone Dock Entrance + + + -3.0132881 53.4365693 + -3.0084137 53.4388991 + + dac.02000727 + + + 2003 2006-360652 River Mersey New Brighton Shoal + + + -3.041574 53.4326683 + -3.0149715 53.4520078 + + dac.02000728 + + + 2003 2006-360653 River Mersey Queens Channel East + + + -3.2294987 53.5135569 + -3.1741936 53.5300708 + + dac.02000729 + + + 2000 M3972 Approaches to Peterhead + + + -1.782716 57.4702128 + -1.7321905 57.5009765 + + dac.02000730 + + + 2003 2006-360674 The Wash Boston Port Approaches No 9 Buoy and River Entrance + + + 0.0850759 52.9311707 + 0.1374891 52.9599273 + + dac.02000731 + + + 2003 2006-360689 River Mersey Crosby Channel to New Brighton + + + -3.0692325 53.4440648 + -3.0220043 53.476347 + + dac.02000732 + + + 2003 2006-360690 River Mersey Cammell Lairds Wall + + + -3.0078338 53.3855504 + -3.0040888 53.3884589 + + dac.02000733 + + + 2003 2006-360691 River Mersey Crosby Channel and Shoal + + + -3.1156305 53.4932236 + -3.0860604 53.5172162 + + dac.02000734 + + + 2003 2006-360692 River Mersey Garston Channel and Bar + + + -2.9899838 53.3645708 + -2.958474 53.3826832 + + dac.02000735 + + + 2003 2006-360693 Morecambe Bay Heysham Channel + + + -3.0238184 53.973679 + -2.9377277 54.0239833 + + dac.02000736 + + + 2003 2006-360694 Morecambe Bay Heysham Entrance and Harbour + + + -2.9315144 54.0314706 + -2.9124479 54.0356152 + + dac.02000737 + + + 2003 2006-360695 River Mersey Jordans Spit + + + -3.3086935 53.5142608 + -3.2719055 53.5829076 + + dac.02000738 + + + 2003 2006-360696 River Mersey Langton Dock Entrance + + + -3.0122767 53.4341644 + -3.007534 53.4392637 + + dac.02000739 + + + 2003 2006-360697 River Mersey Liverpool Stages South Approach + + + -3.0016726 53.396856 + -2.9934258 53.4039126 + + dac.02000740 + + + 2003 2006-360731 River Mersey Alfred Dock Entrance + + + -3.0162951 53.4031361 + -3.0113872 53.4066271 + + dac.02000741 + + + 2003 2006-360732 River Mersey Crosby Channel and Shoal + + + -3.1159195 53.4930854 + -3.086153 53.516959 + + dac.02000742 + + + 2003 2006-360733 River Mersey Gladstone Dock Entrance + + + -3.020353 53.4445972 + -3.0140727 53.4496901 + + dac.02000743 + + + 2003 2006-360734 Morecambe Bay Heysham Channel + + + -2.9712651 53.9995908 + -2.9271071 54.0395745 + + dac.02000744 + + + 2003 2006-360735 Morecambe Bay Heysham Harbour Entrance + + + -2.9312406 54.0314858 + -2.9201024 54.0346088 + + dac.02000745 + + + 2003 2006-360736 River Mersey Liverpool Landing Stages + + + -3.0030762 53.4024213 + -2.9962566 53.4068677 + + dac.02000746 + + + 2003 2006-360737 River Mersey Liverpool Stages South Approach + + + -3.0017158 53.3970506 + -2.9932582 53.4039899 + + dac.02000747 + + + 2003 2006-360738 River Mersey New Brighton Shoal + + + -3.0403126 53.433644 + -3.0158179 53.450324 + + dac.02000748 + + + 2003 2006-360739 River Mersey Tranmere Oil Stages + + + -3.0029417 53.375474 + -2.9948343 53.3832202 + + dac.02000749 + + + 2003 2006-360740 River Mersey Langton Dock Entrance + + + -3.0121876 53.4344685 + -3.0076225 53.4392112 + + dac.02000750 + + + 2003 2006-360759 Shoreham Harbour Eastern Arm + + + -0.2517494 50.8217188 + -0.2384932 50.830805 + + dac.02000751 + + + 2003 2006-360760 Shoreham Harbour Western Arm + + + -0.2521273 50.8294468 + -0.2491085 50.8310006 + + dac.02000752 + + + 2003 2006-360761 Shoreham Harbour Western Arm + + + -0.2688507 50.8304126 + -0.2516858 50.8319504 + + dac.02000753 + + + 2003 2006-360780 River Orwell Shotley Point to Collimer Point + + + 1.2708573 51.9576629 + 1.2872549 51.9847419 + + dac.02000754 + + + 2003 2006-360781 River Orwell Shotley and Trimley + + + 1.2750334 51.9559025 + 1.2824743 51.9805393 + + dac.02000755 + + + 2001 2006-360816 Peterhead North Breakwater and North Base Jetty + + + -1.7736043 57.4963946 + -1.769231 57.5003085 + + dac.02000756 + + + 2001 2006-360817 Peterhead South Breakwater and Tanker Jetty + + + -1.7824861 57.4914326 + -1.7731857 57.4976827 + + dac.02000757 + + + 1999 2006-360818 Loch Etive Rubha na Greige to Gualachulain + + + -5.2093942 56.4478483 + -5.0742384 56.5555919 + + dac.02000758 + + + 2004 2006-361186 Morecambe Bay Heysham Channel + + + -2.972617 53.9993993 + -2.9272808 54.0425642 + + dac.02000759 + + + 2004 2006-361187 Morecambe Bay Heysham Entrance + + + -2.931426 54.0312742 + -2.9202403 54.0345782 + + dac.02000760 + + + 2003 2006-361194 Holyhead + + + -4.6313074 53.3097869 + -4.6002103 53.3299043 + + dac.02000761 + + + 2003 2006-361207 Harwich Haven Parkestone Quay and Anchorage + + + 1.2336163 51.9471836 + 1.2637829 51.9562615 + + dac.02000762 + + + 2003 2006-361208 Harwich Haven River Stour and Waiftfleet Reach + + + 1.0793494 51.9442222 + 1.1009978 51.9501507 + + dac.02000763 + + + 2004 2006-361220 River Hamble Entrance and Swanwick Marina + + + -1.3181968 50.8373054 + -1.2905092 50.8926508 + + dac.02000764 + + + 2003 2006-361221 Southampton Water Hamble Point Marina to Port Hamble Marina + + + -1.3136788 50.8462499 + -1.3037404 50.8660978 + + dac.02000765 + + + 2004 2006-361222 River Mersey Twelve Quays Berth + + + -3.0139465 53.3978949 + -3.0058472 53.4068639 + + dac.02000766 + + + 2004 2006-361223 River Mersey Alfred Dock Entrance + + + -3.0181496 53.4032223 + -3.0112319 53.4064261 + + dac.02000767 + + + 2004 2006-361224 River Mersey Crosby Channel Askew Spit + + + -3.1567908 53.5148255 + -3.1204156 53.5326641 + + dac.02000768 + + + 2004 2006-361225 River Mersey Crosby Channel Askew Spit + + + -3.1518181 53.519083 + -3.1340363 53.5316735 + + dac.02000769 + + + 2004 2006-361226 River Mersey Crosby Channel and Shoal + + + -3.1166777 53.4889695 + -3.0831753 53.5206396 + + dac.02000770 + + + 2004 2006-361227 River Mersey Gladstone Dock Entrance + + + -3.0206578 53.4448337 + -3.0138416 53.4523504 + + dac.02000771 + + + 2004 2006-361228 Morecambe Bay Heysham Channel + + + -2.9735786 53.9972819 + -2.9259708 54.0390413 + + dac.02000772 + + + 2004 2006-361229 Morecambe Bay Heysham Harbour Entrance + + + -2.9300516 54.0315346 + -2.92009 54.034431 + + dac.02000773 + + + 2004 2006-361230 River Mersey Langton Dock Entrance + + + -3.0123948 53.4343096 + -3.0077896 53.439159 + + dac.02000774 + + + 2004 2006-361231 River Mersey Liverpool Landing Stages + + + -3.003198 53.4027967 + -2.9977989 53.4069963 + + dac.02000775 + + + 2004 2006-361232 River Mersey Liverpool Landing Stages South Approach + + + -3.0019675 53.39702 + -2.9932601 53.4039681 + + dac.02000776 + + + 2004 2006-361233 Liverpool Bay River Mersey Brazil Bank to Rock Gut + + + -3.1941626 53.4261528 + -3.0873093 53.4781851 + + dac.02000777 + + + 2004 2006-361234 River Mersey Brazil Bank + + + -3.1228212 53.435316 + -3.0350423 53.4759893 + + dac.02000778 + + + 2004 2006-361235 River Mersey New Brighton Shoal + + + -3.0406201 53.4340155 + -3.0160215 53.4504399 + + dac.02000779 + + + 2004 2006-361237 River Mersey Queens Channel East + + + -3.2298206 53.5134836 + -3.1732205 53.5306193 + + dac.02000780 + + + 2004 2006-361238 River Mersey Tranmere Oil Stages + + + -3.0030172 53.3754626 + -2.9946602 53.3833212 + + dac.02000781 + + + 2004 2006-361239 River Mersey Garston Channel and Bar + + + -2.9896433 53.3646105 + -2.9587737 53.3823563 + + dac.02000782 + + + 2004 2006-361247 The Wash Boston Port Approaches Feeman Channel to Lower Road + + + 0.1371277 52.9560844 + 0.2717042 52.9836893 + + dac.02000783 + + + 2004 2006-361253 River Mersey Alfred Dock Entrance + + + -3.018179 53.4031087 + -3.0113381 53.4066049 + + dac.02000784 + + + 2004 2006-361254 River Mersey Cammell Lairds Wall + + + -3.0079885 53.3855575 + -3.0036403 53.3897082 + + dac.02000785 + + + 2004 2006-361255 River Mersey Cammel Lairds Wall + + + -3.0087484 53.3859237 + -3.0047165 53.3880936 + + dac.02000786 + + + 2004 2006-361256 River Mersey Crosby Channel and Shoal + + + -3.1175092 53.4911554 + -3.083711 53.519806 + + dac.02000787 + + + 2004 2006-361257 River Mersey Gladstone Dock Entrance + + + -3.0206472 53.444756 + -3.0139683 53.4499592 + + dac.02000788 + + + 2004 2006-361258 Morecambe Bay Heysham Harbour and Entrance + + + -2.9305046 54.0311555 + -2.9126217 54.0355079 + + dac.02000789 + + + 2004 2006-361259 River Mersey Langton Dock Entrance + + + -3.0124592 53.4342445 + -3.0078378 53.439265 + + dac.02000790 + + + 2004 2006-361260 River Mersey Liverpool Landing Stages + + + -3.0030915 53.4027787 + -2.997837 53.4068985 + + dac.02000791 + + + 2004 2006-361261 River Mersey Pluckington Bank + + + -3.0081112 53.3741173 + -2.9728925 53.4041874 + + dac.02000792 + + + 2004 2006-361262 River Mersey Tranmere Oil Stages + + + -3.0038014 53.3752965 + -2.994555 53.3837896 + + dac.02000793 + + + 2004 2006-361263 Bristol King Road + + + -2.7910064 51.4874737 + -2.6911004 51.532238 + + dac.02000794 + + + 2003 2006-338028 J161 Weymouth Harbour + + + -2.4597546 50.6063549 + -2.4402955 50.6130562 + + dac.02000795 + + + 2004 2006-361269 Holyhead + + + -4.6345697 53.3098178 + -4.6005946 53.3317331 + + dac.02000796 + + + 2004 M4078 Newhaven Harbour and Apporaches + + + 0.0535655 50.7745733 + 0.062118 50.7896003 + + dac.02000797 + + + 2004 M4078 Newhaven Marina + + + 0.053137 50.7846769 + 0.0568557 50.7885552 + + dac.02000798 + + + 2004 2006-361272 River Mersey Alfred Dock Entrance + + + -3.0182005 53.4031075 + -3.0113587 53.4065807 + + dac.02000799 + + + 2004 2006-361273 River Mersey Cammell Lairds Wall + + + -3.0079885 53.3855617 + -3.0038423 53.3896597 + + dac.02000800 + + + 2004 2006-361274 River Mersey Crosby Channel to New Brighton + + + -3.1007351 53.4479142 + -3.0413153 53.4924044 + + dac.02000801 + + + 2004 2006-361275 River Mersey Crosby Channel South + + + -3.0952414 53.4798935 + -3.0647976 53.5013371 + + dac.02000802 + + + 2004 2006-361276 River Mersey Crosby Channel and New Brighton + + + -3.1181414 53.4444759 + -3.0344234 53.5131143 + + dac.02000803 + + + 2004 2006-361277 River Mersey Gladstone Dock Entrance + + + -3.0204124 53.4443003 + -3.0136918 53.4496861 + + dac.02000804 + + + 2004 2006-361278 Morecambe Bay Heysham Harbour Entrance + + + -2.9306972 54.0312737 + -2.9202257 54.0345135 + + dac.02000805 + + + 2004 2006-361279 River Mersey Langton Dock Entrance + + + -3.0123547 53.4341848 + -3.0077558 53.4392353 + + dac.02000806 + + + 2004 2006-361280 River Mersey New Brighton Shoal + + + -3.0514764 53.4333539 + -3.0147145 53.4585543 + + dac.02000807 + + + 2004 2006-361281 River Mersey Queens Channel East + + + -3.2306455 53.5133016 + -3.1725423 53.5302225 + + dac.02000808 + + + 2004 2006-361282 River Mersey Seacombe Stage + + + -3.0156872 53.4079886 + -3.011766 53.4117908 + + dac.02000809 + + + 2004 2006-361283 River Mersey Woodside Stage + + + -3.0098486 53.3941472 + -3.0044304 53.3984946 + + dac.02000810 + + + 2004 2006-361290 Severn Estuary The Bridge + + + -3.0091114 51.4383338 + -2.9765986 51.4583323 + + dac.02000811 + + + 2004 2006-361304 River Mersey New Brighton to Warrington + + + -3.0462495 53.2822446 + -2.5865072 53.4544346 + + dac.02000812 + + + 2004 2006-361305 River Dee Mostyn Channel + + + -3.2751624 53.3249835 + -3.2576408 53.3506391 + + dac.02000813 + + + 2004 2006-361315 The Wash Boston Port Approaches No 9 Buoy and Tabs Head River End + + + 0.0851266 52.9311599 + 0.1374353 52.95926 + + dac.02000814 + + + 2004 2006-651804 Ramsgate Harbour + + + 1.4142753 51.3237582 + 1.4247489 51.3289482 + + dac.02000815 + + + 2004 2006-361318 River Mersey Alfred Dock Entrance + + + -3.0182324 53.4031341 + -3.0113693 53.4065514 + + dac.02000816 + + + 2004 2006-361319 River Mersey Cammell Lairds Wall + + + -3.0080604 53.3858506 + -3.0038249 53.3892526 + + dac.02000817 + + + 2004 2006-361320 River Mersey Garston Channel Bar + + + -2.9897878 53.3646434 + -2.9582989 53.382735 + + dac.02000818 + + + 2004 2006-361321 River Mersey Gladstone Dock Entrance + + + -3.0204942 53.4446786 + -3.014228 53.4496177 + + dac.02000819 + + + 2004 2006-361322 Morecambe Bay Heysham Channel + + + -2.9548383 54.0062408 + -2.9282727 54.0373116 + + dac.02000820 + + + 2004 2006-361323 Morecambe Bay Heysham Harbour Entrance + + + -2.9311154 54.0314212 + -2.9202339 54.0345122 + + dac.02000821 + + + 2004 2006-361324 Morecambe Bay Heysham Entrance and Harbour + + + -2.9321077 54.0313577 + -2.9126145 54.0354851 + + dac.02000822 + + + 2004 2006-361325 River Mersey Langton Dock Entrance + + + -3.0123616 53.4341326 + -3.0079331 53.4392429 + + dac.02000823 + + + 2004 2006-361326 River Mersey Liverpool Landing Stages + + + -3.0030964 53.4028259 + -2.9975111 53.4069769 + + dac.02000824 + + + 2004 2006-361327 River Mersey Liverpool Landing Stages South Approach + + + -3.0017692 53.3970388 + -2.9931726 53.4039598 + + dac.02000825 + + + 2004 2006-361328 River Mersey Queens Channel East + + + -3.2297795 53.5135293 + -3.1739829 53.5305836 + + dac.02000826 + + + 2004 2006-361329 River Mersey Queens Channel West + + + -3.2717638 53.5140812 + -3.2181761 53.5264659 + + dac.02000827 + + + 2004 2006-338090 Loch Ryan Cairnryan Ferry Terminal + + + -5.0213234 54.9572575 + -5.0100896 54.9647929 + + dac.02000828 + + + 2004 2006-361359 Pegwell Bay + + + 1.4323647 51.3069387 + 1.4472179 51.3175735 + + dac.02000829 + + + 2004 2006-361379 River Mersey Alfred Dock Entrance + + + -3.0182608 53.4031121 + -3.0113444 53.406652 + + dac.02000830 + + + 2004 2006-361380 River Mersey Askew Spit Margins + + + -3.1754915 53.5076197 + -3.1010064 53.536889 + + dac.02000831 + + + 2004 2006-361381 River Mersey Crosby Channel to New Brighton + + + -3.1178261 53.432697 + -3.0140401 53.5164323 + + dac.02000832 + + + 2004 2006-361382 River Mersey Crosby Channel and Shoal + + + -3.1168504 53.4918172 + -3.0849388 53.5182421 + + dac.02000833 + + + 2004 2006-361383 Morecambe Bay Heysham Channel + + + -2.9732882 53.9977346 + -2.9267045 54.0387662 + + dac.02000834 + + + 2004 2006-361384 Morecambe Bay Heysham Harbour Entrance + + + -2.9301879 54.0312852 + -2.9200615 54.0345305 + + dac.02000835 + + + 2004 2006-361385 River Mersey Langton Dock Entrance + + + -3.0133064 53.4336647 + -3.0074732 53.4395197 + + dac.02000836 + + + 2004 2006-361386 River Mersey Liverpool Landing Stages + + + -3.0031175 53.402581 + -2.9975656 53.4070073 + + dac.02000837 + + + 2004 2006-361387 River Mersey Queens Channel East + + + -3.2291794 53.5140556 + -3.1736403 53.5295691 + + dac.02000838 + + + 2004 2006-361388 River Mersey Tranmere Oil Stages + + + -3.0031117 53.3752924 + -2.9946179 53.383721 + + dac.02000839 + + + 2004 2006000361390 Shetland Islands Fetlar Ferry Terminal + + + -0.9386769 60.626627 + -0.9116757 60.6366184 + + dac.02000840 + + + 2004 2006-338053 River Dee Mostyn Deep + + + -3.2880476 53.3523082 + -3.2840469 53.3543374 + + dac.02000841 + + + 2004 2006-361418 Newharbour + + + 1.4142143 51.3228854 + 1.4332358 51.3309849 + + dac.02000842 + + + 2004 2006-361423 River Mersey Twelve Quays + + + -3.0139196 53.398004 + -3.0061489 53.4072359 + + dac.02000843 + + + 2004 2006-361424 River Mersey Alfred Dock Entrance + + + -3.0162463 53.4031571 + -3.0113287 53.4066602 + + dac.02000844 + + + 2004 2006-361425 River Mersey Crosby Channel to New Brighton + + + -3.0684425 53.4438832 + -3.0230515 53.4754714 + + dac.02000845 + + + 2004 2006-361426 River Mersey Crosby Channel + + + -3.1267277 53.4977483 + -3.0834454 53.5345927 + + dac.02000846 + + + 2004 2006-361427 River Mersey Crosby Channel and Shoal + + + -3.1157831 53.4928948 + -3.0860823 53.5171079 + + dac.02000847 + + + 2004 2006-361428 River Mersey Garston Channel and Bar + + + -2.9933008 53.3645548 + -2.9547766 53.3829534 + + dac.02000848 + + + 2004 2006-361429 River Mersey Gladstone Dock Entrance + + + -3.020742 53.4437189 + -3.0131059 53.4497593 + + dac.02000849 + + + 2004 2006-361430 Morcambe Bay Heysham Channel + + + -2.9725405 53.9982414 + -2.9270864 54.0383333 + + dac.02000850 + + + 2004 2006-361431 Morecambe Bay Heysham Harbour and Entrance + + + -2.9299855 54.0313638 + -2.912431 54.035612 + + dac.02000851 + + + 2004 2006-361432 River Mersey Langton Dock Entrance + + + -3.0128272 53.433895 + -3.0075642 53.4393709 + + dac.02000852 + + + 2004 2006-361433 River Mersey Liverpool Landing Stages + + + -3.0031619 53.4025378 + -2.9973455 53.4069964 + + dac.02000853 + + + 2004 2006-361434 River Mersey Liverpool Landing Stages South Approaches + + + -3.0025034 53.3968716 + -2.9930798 53.4040734 + + dac.02000854 + + + 2004 2006-361435 River Mersey New Brighton Shoal + + + -3.0444201 53.4316267 + -3.0140821 53.4517991 + + dac.02000855 + + + 2004 2006-361436 River Mersey Tranmere Oil Stages + + + -3.0028699 53.3751444 + -2.9945058 53.3821376 + + dac.02000856 + + + 2004 2006-361465 River Mersey Garston Channel + + + -2.9711264 53.3421192 + -2.906814 53.3742647 + + dac.02000857 + + + 2004 2006-361466 Morecambe Bay Heysham Channel + + + -2.9733113 53.9970269 + -2.92686 54.0389495 + + dac.02000858 + + + 2004 2006-361467 Morecambe Bay Heysham Harbour Entrance + + + -2.929968 54.0315079 + -2.9202184 54.0344685 + + dac.02000859 + + + 2004 2006-361468 Morecambe Bay Lancastr Sound + + + -3.0589736 53.9965577 + -3.0465618 54.0072684 + + dac.02000860 + + + 2004 2006-361469 River Mersey Langton Dock Entrance + + + -3.0123364 53.4343147 + -3.0076235 53.4392314 + + dac.02000861 + + + 2004 2006-361470 River Mersey Tranmere Oil Stage + + + -3.0029851 53.3754631 + -2.9946659 53.383289 + + dac.02000862 + + + 2004 2006-361484 Ramsgate New and Royal Harbours + + + 1.4142582 51.3230167 + 1.4326055 51.33131 + + dac.02000863 + + + 2004 2006-352001 J209 Weymouth Harbour + + + -2.4597968 50.6063737 + -2.4394929 50.613732 + + dac.02000864 + + + 2004 2006-361487 Holyhead + + + -4.6313686 53.309826 + -4.6003289 53.3259691 + + dac.02000865 + + + 2004 M4210 Shoreham Harbour + + + -0.2529927 50.8217504 + -0.2425075 50.8266535 + + dac.02000866 + + + 2004 M4210 Shoreham Harbour The Canal + + + -0.2371533 50.8267534 + -0.2010327 50.8317729 + + dac.02000867 + + + 2004 M4210 Shoreham Harbour Eastern Arm + + + -0.2489863 50.8249703 + -0.239825 50.8307714 + + dac.02000868 + + + 2004 M4210 Shoreham Harbour Western Arm + + + -0.2521827 50.8285445 + -0.2478585 50.8309863 + + dac.02000869 + + + 2003 2006-361500 Orkney Islands Golta Peninsula Flotta + + + -3.1166823 58.842671 + -3.0565803 58.8606929 + + dac.02000870 + + + 2005 2006-361984 Seaham North Dock + + + -1.3294628 54.8373816 + -1.3257228 54.838338 + + dac.02000871 + + + 2005 2006-361985 Seaham South Dock + + + -1.329009 54.8333114 + -1.3256601 54.8372378 + + dac.02000872 + + + 2005 2006-361986 Seaham Outer Harbour + + + -1.326995 54.8361841 + -1.3187221 54.8384004 + + dac.02000873 + + + 2005 2006-361988 River Mersey Alfred Dock Entrance + + + -3.0162703 53.4031344 + -3.0112314 53.4065626 + + dac.02000874 + + + 2005 2006-361989 River Mersey Crosby Channel and Shoal + + + -3.117125 53.4887331 + -3.0844422 53.5193139 + + dac.02000875 + + + 2005 2006-361990 River Mersey Crosby Channel South + + + -3.0964515 53.4648739 + -3.0530745 53.4967017 + + dac.02000876 + + + 2005 2006-361991 River Mersey Gladstone Dock Entrance + + + -3.0207694 53.4436567 + -3.0133142 53.4497154 + + dac.02000877 + + + 2005 2006-361992 Morecambe Bay Heysham Channel + + + -3.0041751 53.9868437 + -2.9392414 54.0227354 + + dac.02000878 + + + 2005 2006-361993 Morecambe Bay Heysham Harbour Entrance + + + -2.9307349 54.0312671 + -2.9201127 54.0344934 + + dac.02000879 + + + 2005 2006-361994 River Mersey Langton Dock Entrance + + + -3.0123952 53.4343147 + -3.0076002 53.4392289 + + dac.02000880 + + + 2005 2006-361995 River Mersey Liverpool Landing Stages + + + -3.003091 53.4026517 + -2.9976474 53.4070611 + + dac.02000881 + + + 2005 2006-361996 River Mersey Queens Channel East + + + -3.2309051 53.5133887 + -3.172754 53.5300956 + + dac.02000882 + + + 2005 2006-362011 Portsmouth Harbour Outer and Inner Cambers + + + -1.1081634 50.7903773 + -1.1052663 50.7925819 + + dac.02000883 + + + 2005 2006-362012 Portsmouth Harbour Gunwharf Quays + + + -1.1092504 50.7934615 + -1.10737 50.7953675 + + dac.02000884 + + + 2005 2006-362033 Harwich Haven Navyard Wharf + + + 1.2831291 51.9468933 + 1.2967205 51.9513657 + + dac.02000885 + + + 2005 2006-362036 Portsmouth Harbour Fountain Lake - Flathouse North and Albert Johnson Quays + + + -1.0971833 50.8084924 + -1.0904433 50.8149549 + + dac.02000886 + + + 2005 2006-362055 Harwich Deep Water Channel Harwich Channel No 1 Buoy to South Shelf Buoy + + + 1.3015267 51.9152425 + 1.4589896 51.9675913 + + dac.02000887 + + + 2005 2006-362056 Harwich Haven Shotley Spit to Parkstone Quay + + + 1.2614409 51.9457561 + 1.2983417 51.9629949 + + dac.02000888 + + + 2005 2006-362118 River Mersey Alfred Dock Entrance + + + -3.018195 53.4031023 + -3.0109028 53.4066145 + + dac.02000889 + + + 2005 2006-362119 River Mersey Crosby Channel and Shoal + + + -3.1157263 53.4927988 + -3.086131 53.5171372 + + dac.02000890 + + + 2005 2006-362120 River Mersey Eastham Bar and Channel + + + -2.9850119 53.344864 + -2.9541221 53.3689676 + + dac.02000891 + + + 2005 2006-362121 River Mersey Garston Channel + + + -2.9935787 53.3343306 + -2.9035233 53.3832816 + + dac.02000892 + + + 2005 2006-362122 River Mersey Gladstone Dock Entrance + + + -3.0212448 53.4436601 + -3.0132671 53.4498295 + + dac.02000893 + + + 2005 2006-362123 River Mersey Heysham Harbour and Entrance + + + -2.9305105 54.0312561 + -2.9124404 54.0355983 + + dac.02000894 + + + 2005 2006-362124 River Mersey Langton Dock Entrance + + + -3.0123148 53.4341986 + -3.0075534 53.4392429 + + dac.02000895 + + + 2005 2006-362125 River Mersey Liverpool Landing Stages + + + -3.0030928 53.402489 + -2.9975716 53.4068872 + + dac.02000896 + + + 2005 2006-362126 River Mersey Liverpool Stages South Approach + + + -3.0017213 53.3970256 + -2.993102 53.4040271 + + dac.02000897 + + + 2005 2006-362127 River Mersey New Brighton Shoal + + + -3.0388513 53.4341125 + -3.0167034 53.4479819 + + dac.02000898 + + + 2005 2006-362128 River Mersey Queens Channel East + + + -3.2294674 53.5140893 + -3.1743601 53.5294626 + + dac.02000899 + + + 2005 2006-362152 Ramsgate New and Royal Harbours + + + 1.4143622 51.3224899 + 1.4330033 51.3305533 + + dac.02000900 + + + 2005 2006-362184 Shoreham Harbour Eastern Arm + + + -0.2516382 50.8217214 + -0.2386198 50.8307747 + + dac.02000901 + + + 2005 2006-362185 Shoreham Harbour Western Arm + + + -0.2521675 50.8285101 + -0.2478943 50.8310113 + + dac.02000902 + + + 2005 2006-362186 Shoreham Harbour Western Arm + + + -0.2674818 50.8303883 + -0.2516698 50.8319372 + + dac.02000903 + + + 2005 2006-362187 Holyhead + + + -4.6313645 53.3097653 + -4.6001904 53.3178008 + + dac.02000904 + + + 2005 2006-362189 Tor Bay Brixham Harbour + + + -3.518405 50.3964521 + -3.5053658 50.406415 + + dac.02000905 + + + 2005 2006-362192 River Mersey Alfred Dock Entrance + + + -3.0182182 53.403122 + -3.0114926 53.4066074 + + dac.02000906 + + + 2005 2006-362193 River Mersey Alfred Dock Entrance + + + -3.0162531 53.4031552 + -3.0113345 53.4066201 + + dac.02000907 + + + 2005 2006-362194 River Mersey Crosby Channel Askew Spit + + + -3.1655366 53.5153307 + -3.1198753 53.5356018 + + dac.02000908 + + + 2005 2006-362195 River Mersey Crosby North Channel to New Brighton + + + -3.1763734 53.4321109 + -3.013454 53.5375536 + + dac.02000909 + + + 2005 2006-362196 River Mersey Crosby Channel and Shoal + + + -3.1172465 53.4911387 + -3.083397 53.5194089 + + dac.02000910 + + + 2005 2006-362197 River Mersey Garston Bar and Channel + + + -2.9906886 53.3316192 + -2.9034789 53.3829455 + + dac.02000911 + + + 2005 2006-362198 River Mersey Gladstone Dock Entrance + + + -3.0217602 53.4437078 + -3.0132918 53.4498036 + + dac.02000912 + + + 2005 2006-362199 River Mersey Gladstone and Seaforth Wall + + + -3.0317554 53.4466717 + -3.0176502 53.4561235 + + dac.02000913 + + + 2005 2006-362200 Morecambe Bay Heysham Channel + + + -2.973231 53.9974659 + -2.9271343 54.0379707 + + dac.02000914 + + + 2005 2006-362201 Morecambe Bay Heysham Harbour and Entrance + + + -2.9298523 54.0311767 + -2.9131324 54.0354753 + + dac.02000915 + + + 2005 2006-362202 River Mersey Langton Dock Entrance + + + -3.0129087 53.4337224 + -3.0074399 53.4394478 + + dac.02000916 + + + 2005 2006-362203 River Mersey New Brighton Shoal + + + -3.0403955 53.4340232 + -3.0164794 53.4485247 + + dac.02000917 + + + 2005 2006-362204 River Mersey Queens Channel East + + + -3.2290533 53.5140934 + -3.1744649 53.529531 + + dac.02000918 + + + 2005 2006-362205 River Mersey Queens Channel West + + + -3.2687982 53.5142124 + -3.2215488 53.5262213 + + dac.02000919 + + + 2005 2006-362206 River Mersey Tranmere Oil Stages + + + -3.0030431 53.3754924 + -2.9948732 53.3832136 + + dac.02000920 + + + 2005 2006-362207 River Mersey Liverpool Stages South Approaches + + + -3.0016688 53.3969823 + -2.993198 53.4039885 + + dac.02000921 + + + 2005 2006-362234 Ramsgate New and Royal Harbour Approaches + + + 1.4140807 51.3223493 + 1.4573731 51.3289414 + + dac.02000922 + + + 2005 2006-362238 The Wash Boston Port Approaches No9 Buoy to Tabs Head + + + 0.0873664 52.9322478 + 0.1374127 52.9592488 + + dac.02000923 + + + 2005 2008-024450 River Mersey Pluckington Bank + + + -3.0095439 53.3735737 + -2.9729592 53.4042923 + + dac.02000924 + + + 2005 2006-362378 River Mersey Alfred Dock Entrance + + + -3.0162609 53.4031119 + -3.0113831 53.4066099 + + dac.02000925 + + + 2005 2006-362379 River Mersey Crosby Channel and Shoal + + + -3.115744 53.4934959 + -3.0860578 53.517083 + + dac.02000926 + + + 2005 2006-362380 River Mersey Garston Channel and Bar + + + -2.9926373 53.3638375 + -2.9517054 53.3824986 + + dac.02000927 + + + 2005 2006-362381 Morecambe Bay Heysham Channel + + + -2.9733555 53.9983936 + -2.9279301 54.0353208 + + dac.02000928 + + + 2005 2006-362382 Morecambe Bay Heysham Harbour Entrance + + + -2.9302562 54.0313907 + -2.9201624 54.0343856 + + dac.02000929 + + + 2005 2006-362383 River Mersey Langton Dock Entrance + + + -3.0123018 53.4339136 + -3.00747 53.4391373 + + dac.02000930 + + + 2005 2006-362384 River Mersey Queens Channel East + + + -3.2294262 53.5135336 + -3.1740905 53.530616 + + dac.02000931 + + + 2005 2006-362385 River Mersey Twelve Quays Berth + + + -3.0163272 53.3973932 + -3.0048193 53.4066762 + + dac.02000932 + + + 2005 2006-362389 Elbow Revised Positions + + + 0.2062304 52.8300887 + 0.2270645 52.8509784 + + dac.02000933 + + + 2005 2006-362410 Morecambe Bay Heysham Channel + + + -2.9982438 53.9855795 + -2.9276787 54.0355722 + + dac.02000934 + + + 2005 2006-362411 Morecambe Bay Heysham Harbour Entrance + + + -2.9302237 54.0314514 + -2.9201339 54.0343724 + + dac.02000935 + + + 2005 2006-362412 River Mersey Liverpool Landing Stage + + + -3.0031711 53.4024093 + -2.9974981 53.4067907 + + dac.02000936 + + + 2005 2006-362413 River Mersey Liverpool Stages South Approach + + + -3.0017874 53.3971755 + -2.9931592 53.4039929 + + dac.02000937 + + + 2005 2006-362414 River Mersey Queens Channel East + + + -3.2310548 53.5133823 + -3.1705617 53.5304239 + + dac.02000938 + + + 2005 M4302 Newhaven Harbour and Approaches + + + 0.0539051 50.7759533 + 0.0614443 50.7886448 + + dac.02000939 + + + 2005 2006-362453 Ramsgate East of Pegwell Bay + + + 1.4298169 51.3067761 + 1.4484608 51.3172618 + + dac.02000940 + + + 2005 2006-362473 River Mersey Garston Channel and Bar + + + -2.994009 53.3318021 + -2.9034987 53.3837371 + + dac.02000941 + + + 2005 2006-362474 Morecambe Bay Heysham Harbour Entrance + + + -2.9298744 54.0312513 + -2.9202125 54.0343076 + + dac.02000942 + + + 2005 2006-362475 River Mersey Queens Channel East + + + -3.2330973 53.5131687 + -3.1724422 53.5299349 + + dac.02000943 + + + 2005 2006-362537 River Mersey Alfred Dock Entrance + + + -3.018322 53.4031258 + -3.0106327 53.4067957 + + dac.02000944 + + + 2005 2006-362538 River Mersey Alfred Dock Entrance + + + -3.0165063 53.4045994 + -3.0108417 53.4056173 + + dac.02000945 + + + 2005 2006-362539 River Mersey Crosby Channel to New Brighton + + + -3.06925 53.4440121 + -3.0232424 53.4752839 + + dac.02000946 + + + 2005 2006-362540 River Mersey Crosby Channel and Shoal + + + -3.1159449 53.4929996 + -3.085965 53.5173257 + + dac.02000947 + + + 2005 2006-362541 River Mersey Eastham Channel + + + -2.9662289 53.3226703 + -2.9356483 53.3507667 + + dac.02000948 + + + 2005 2006-362542 River Mersey Garston Channel and Bar + + + -2.9943182 53.3642998 + -2.9560792 53.3832032 + + dac.02000949 + + + 2005 2006-362543 Morecambe Bay Heysham Channel + + + -2.9719608 53.9985871 + -2.9271749 54.0377763 + + dac.02000950 + + + 2005 2006-362544 Morecambe Bay Heysham Harbour Entrance + + + -2.9302684 54.03121 + -2.9198098 54.0347956 + + dac.02000951 + + + 2005 2006-362545 Morecambe Bay Heysham Harbour + + + -2.9242404 54.0317437 + -2.9131677 54.0353712 + + dac.02000952 + + + 2005 2006-362546 River Mersey Langton Dock Entrance + + + -3.0124489 53.4344267 + -3.0077853 53.4392187 + + dac.02000953 + + + 2005 2006-362547 River Mersey Liverpool Landing Stage + + + -3.0031387 53.4024449 + -2.9974767 53.4069621 + + dac.02000954 + + + 2005 2006-362548 River Mersey New Brighton Shoal + + + -3.0433117 53.4316406 + -3.0133309 53.4517942 + + dac.02000955 + + + 2005 2006-362549 Morecambe Bay Clark Wharf + + + -2.9298672 54.0368885 + -2.9246965 54.0433844 + + dac.02000956 + + + 2005 2006-362550 River Mersey Tranmere Oil Stages + + + -3.0031372 53.3749501 + -2.9942977 53.3834271 + + dac.02000957 + + + 2005 2006-353154 Weymouth Harbour and Approaches + + + -2.4599984 50.6047945 + -2.4039571 50.6366286 + + dac.02000958 + + + 2005 2006-362579 Shoreham Harbour The Canal + + + -0.236558 50.8267642 + -0.2010481 50.8316019 + + dac.02000959 + + + 2005 2006-362580 Shoreham Harbour Eastern Arm + + + -0.2516209 50.8217244 + -0.2384985 50.8307719 + + dac.02000960 + + + 2005 2006-362581 Shoreham Harbour Western Arm + + + -0.2521972 50.8285042 + -0.2479209 50.8310268 + + dac.02000961 + + + 2005 2006-362582 Shoreham Harbour Western Arm + + + -0.2679817 50.830308 + -0.2516805 50.8319688 + + dac.02000962 + + + 2004 2006-362244 Severn Estuary The Bridge + + + -3.0108112 51.4379794 + -2.9776474 51.4578175 + + dac.02000963 + + + 2004 2006-362245 Severn Estuary The Bridge + + + -3.0102316 51.4379856 + -2.9776473 51.4578061 + + dac.02000964 + + + 2004 2006-362246 Severn Estuary The Bridge + + + -3.0103759 51.4379235 + -2.9774262 51.4578306 + + dac.02000965 + + + 2005 2006-353210 Severn Estuary Walton Bay + + + -2.8656934 51.4619562 + -2.7876832 51.5076784 + + dac.02000966 + + + 2005 2006-362612 Severn Estuary The Bridge + + + -3.0299128 51.4232565 + -2.9477796 51.4667669 + + dac.02000967 + + + 2005 2006-362613 Severn Estuary Bristol Deep + + + -2.9514549 51.4478573 + -2.8618707 51.4822736 + + dac.02000968 + + + 2005 2006-362622 Avonmouth Nelson Point + + + -2.7140997 51.4950997 + -2.705409 51.5032009 + + dac.02000969 + + + 2005 2006-362623 Avonmouth Swash Channel + + + -2.7218031 51.4969097 + -2.7097013 51.5068981 + + dac.02000970 + + + 2006 2006-362675 River Mersey Crosby Channel and Shoal + + + -3.1157864 53.4930088 + -3.0863287 53.5171025 + + dac.02000971 + + + 2006 2006-362676 River Mersey Crosby Channel South + + + -3.1019803 53.4628495 + -3.0484949 53.5027293 + + dac.02000972 + + + 2006 2006-362677 River Mersey Garston Channel and Bar + + + -2.9903334 53.3645129 + -2.9572492 53.382322 + + dac.02000973 + + + 2006 2006-362678 River Mersey Gladston Dock Entrance + + + -3.0204515 53.4448379 + -3.0142641 53.4495776 + + dac.02000974 + + + 2006 2006-362679 Morecambe Bay Heysham Channel + + + -2.9746215 53.9988362 + -2.9280704 54.03383 + + dac.02000975 + + + 2006 2006-362680 Morecambe Bay Heysham Harbour Entrance + + + -2.9305973 54.0313415 + -2.9201799 54.0343159 + + dac.02000976 + + + 2006 2006-362681 River Mersey Langton Dock Entrance + + + -3.0123598 53.4333218 + -3.0075274 53.4391882 + + dac.02000977 + + + 2006 2006-362682 River Mersey Queens Channel East + + + -3.2322572 53.5131226 + -3.1707714 53.5301689 + + dac.02000978 + + + 2006 2006-362683 River Mersey Tranmere Oil Stages + + + -3.0030562 53.3754904 + -2.9947257 53.3832446 + + dac.02000979 + + + 2006 2008-023702 River Dee Mostyn Channel + + + -3.2769565 53.3248357 + -3.2576871 53.3504272 + + dac.02000980 + + + 2006 2008-024084 River Dee Mostyn Dock + + + -3.2627065 53.3198271 + -3.2554135 53.3269423 + + dac.02000981 + + + 2006 2008-024093 Ramsgate New Harbour + + + 1.4143389 51.3227711 + 1.4325236 51.3286852 + + dac.02000982 + + + 2006 2008-024271 River Mersey Garston Channel and Bar + + + -2.9903479 53.3645806 + -2.9586983 53.3824002 + + dac.02000983 + + + 2006 2008-024273 Morecambe Bay Heysham Channel + + + -2.9734688 53.9970923 + -2.9272023 54.0372316 + + dac.02000984 + + + 2006 2008-024276 Morecambe Bay Heysham Entrance and Harbour + + + -2.9298237 54.0312321 + -2.9131832 54.0352831 + + dac.02000985 + + + 2006 2008-024492 River Mersey Liverpool Landing Stage + + + -3.0031129 53.4026174 + -2.9976075 53.407101 + + dac.02000986 + + + 2006 2008-024472 River Mersey Liverpool Landing Stage South Approach + + + -3.0017817 53.3971237 + -2.993385 53.4037698 + + dac.02000987 + + + 2006 2008-024526 River Mersey New Brighton Shoal + + + -3.04074 53.4341613 + -3.016081 53.4500304 + + dac.02000988 + + + 2006 2008-024545 River Mersey Queens Channel West + + + -3.2687879 53.5137075 + -3.2214155 53.5267249 + + dac.02000989 + + + 2006 2008-024600 River Mersey Queens Channel East + + + -3.2296065 53.5135386 + -3.1742321 53.5306408 + + dac.02000990 + + + 2006 2008-024602 River Mersey Alfred Dock Entrance + + + -3.0162519 53.403115 + -3.0113534 53.4066255 + + dac.02000991 + + + 2006 2008-024608 Alfred Dock Entrance and Twelve Quays + + + -3.01828 53.3967256 + -3.004334 53.4068685 + + dac.02000992 + + + 2005 2008-25631 Warrenpoint Harbour + + + -6.2672776 54.0704091 + -6.205834 54.1029194 + + dac.02000993 + + + 2005 2008-25745 Warrenpoint Harbour + + + -6.2691451 54.0960893 + -6.2535981 54.1031618 + + dac.02000994 + + + 2006 2008-025772 River Mersey Alfred Dock Entrance + + + -3.018304 53.4031069 + -3.0094289 53.4066202 + + dac.02000995 + + + 2006 2008-025773 River Mersey Crosby Channel and Shoal + + + -3.1149422 53.4933203 + -3.0861553 53.5171349 + + dac.02000996 + + + 2006 2008-025797 River Mersey Gladstone Dock Entrance + + + -3.0212427 53.4435166 + -3.0132928 53.4496454 + + dac.02000997 + + + 2006 2008-025830 River Mersey Langton Dock Entrance + + + -3.0134364 53.4335617 + -3.0075884 53.4392153 + + dac.02000998 + + + 2006 2008-025834 River Mersey Liverpool Landing Stage North Approach + + + -3.0054924 53.4025124 + -2.9973201 53.4108738 + + dac.02000999 + + + 2006 2008-025837 River Mersey Liverpool Landing Stage + + + -3.0031329 53.4025744 + -2.9975569 53.4069928 + + dac.02001000 + + + 2006 2008-025838 River Mersey Queens Channel East + + + -3.2291186 53.5146294 + -3.175002 53.5296438 + + dac.02001001 + + + 2006 2008-025936 River Mersey Alfred Dock to Eastham Lock and Garston + + + -3.010584 53.321613 + -2.9019295 53.4046394 + + dac.02001002 + + + 2006 2008-025938 River Mersey Tranmere Oil Stages + + + -3.0029662 53.3754706 + -2.9946448 53.3832234 + + dac.02001003 + + + 2006 2008-26332 River Cleddau + + + -4.9682853 51.6907409 + -4.8073409 51.8027172 + + dac.02001004 + + + 2006 2008-026381 River Mersey Alfred Dock Entrance + + + -3.0182717 53.4030976 + -3.0106272 53.4066635 + + dac.02001005 + + + 2006 2008-026383 River Mersey Crosby Channel Askew Spit + + + -3.1748966 53.514533 + -3.1187173 53.5314486 + + dac.02001006 + + + 2006 2008-026394 River Mersey Crosby Channel and Shoal + + + -3.1158359 53.4910656 + -3.0827366 53.5193268 + + dac.02001007 + + + 2006 2008-026399 River Mersey Gladstone Dock Entrance + + + -3.0204146 53.4448639 + -3.0138807 53.4497184 + + dac.02001008 + + + 2006 2008-026403 Morecambe Bay Heysham Harbour and Entrance + + + -2.9300442 54.0311836 + -2.9129227 54.035548 + + dac.02001009 + + + 2006 2008-026417 River Mersey Jordans Spit + + + -3.3117529 53.526224 + -3.2695278 53.5870157 + + dac.02001010 + + + 2006 2008-026419 River Mersey Langton Dock Entrance + + + -3.0132976 53.4329753 + -3.0075816 53.4392502 + + dac.02001011 + + + 2006 2008-026587 River Mersey New Brighton Shoal + + + -3.0404787 53.4343306 + -3.0159675 53.4497038 + + dac.02001012 + + + 2006 2008-026452 River Mersey Queens Channel East + + + -3.2333778 53.5130383 + -3.1703058 53.5305665 + + dac.02001013 + + + 2006 2008-026857 River Mersey Seacombe Stage + + + -3.0159019 53.4081068 + -3.0108529 53.41188 + + dac.02001014 + + + 2006 2008-026867 River Mersey Woodside Stage + + + -3.0085208 53.3951792 + -3.0042546 53.3971719 + + dac.02001015 + + + 2006 2006-366479 Holyhead + + + -4.6475416 53.3097823 + -4.6001097 53.3366125 + + dac.02001016 + + + 2006 2006-369095 River Mersey Alfred Dock Entrance + + + -3.0181858 53.4029877 + -3.0108154 53.4066873 + + dac.02001017 + + + 2006 2006-369095 River Mersey Cammell Lairds Wall + + + -3.0079774 53.3828758 + -3.0014222 53.3901164 + + dac.02001018 + + + 2006 2006-369095 River Mersey Crosby Channel and Shoal + + + -3.1164176 53.4922873 + -3.0857659 53.5180802 + + dac.02001019 + + + 2006 2006-369095 River Mersey Gladstone Dock Entrance + + + -3.0205854 53.4447627 + -3.0142968 53.4497255 + + dac.02001020 + + + 2006 2006-371498 Morecambe Bay Heysham Harbour Entrance May + + + -2.9294705 54.031161 + -2.9204517 54.0340912 + + dac.02001021 + + + 2006 2006-369095 River Mersey Langton Dock Entrance + + + -3.0125371 53.4343508 + -3.0080245 53.4394688 + + dac.02001022 + + + 2006 2006-369095 River Mersey Liverpool Stages South Approach + + + -3.0019323 53.3970692 + -2.9934526 53.4036521 + + dac.02001023 + + + 2006 2006-369095 River Mersey New Brighton Shoal + + + -3.0389083 53.4336574 + -3.015041 53.4493502 + + dac.02001024 + + + 2006 2006-369095 River Mersey Queens Channel East and West + + + -3.271334 53.5131378 + -3.1708081 53.5311205 + + dac.02001025 + + + 2006 2006-369095 River Mersey Tranmere Oil Stages + + + -3.0036175 53.3753449 + -2.9944835 53.3837747 + + dac.02001026 + + + 2006 2006-371068 Harwich Haven Parkeston Quay + + + 1.2335388 51.9464919 + 1.2635517 51.9570548 + + dac.02001027 + + + 2005 2006-371491 River Hamble - Universal Marina to Swanwick Marina + + + -1.3120425 50.8731158 + -1.2965136 50.8864576 + + dac.02001028 + + + 2006 2006-371498 River Mersey Alfred Dock Entrance + + + -3.018254 53.4031397 + -3.0102559 53.4069284 + + dac.02001029 + + + 2006 2006-371498 River Mersey Crosby Channel and Shoal + + + -3.119135 53.4915692 + -3.0854652 53.5189534 + + dac.02001030 + + + 2006 2006-371498 Morecambe Bay Heysham Channel + + + -2.9775386 54.0012391 + -2.9296054 54.0351286 + + dac.02001031 + + + 2006 2006-371498 Morecambe Bay Heysham Harbour Entrance June + + + -2.9302286 54.0312661 + -2.9200697 54.0341141 + + dac.02001032 + + + 2006 2006-371498 River Mersey Langton Dock Entrance + + + -3.014111 53.4337961 + -3.0076844 53.439339 + + dac.02001033 + + + 2006 2006-371498 River Mersey Queens Channel East + + + -3.2317864 53.5127601 + -3.1723415 53.5308983 + + dac.02001034 + + + 2006 2006-373562 River Mersey Eastham Bar and Channel + + + -2.9755008 53.3453828 + -2.9563093 53.3603878 + + dac.02001035 + + + 2006 2006-373562 Morecambe Bay Heysham Harbour Entrance + + + -2.9299194 54.0313011 + -2.9204138 54.0342325 + + dac.02001036 + + + 2006 2006-373562 Morecambe Bay Heysham Harbour + + + -2.9296306 54.0314243 + -2.913268 54.0354868 + + dac.02001037 + + + 2006 2006-373562 Morecambe Bay Lancaster Sound + + + -3.0592586 53.9959434 + -3.0454233 54.0078425 + + dac.02001038 + + + 2006 2006-373562 River Mersey Tranmere Oil Stage + + + -3.0032022 53.3754524 + -2.9947178 53.3834872 + + dac.02001039 + + + 2006 2006-376492 River Mersey Eastham Channel + + + -2.9728034 53.3228835 + -2.945528 53.3587721 + + dac.02001040 + + + 2006 2006-378972 River Mersey Alfred Dock Entrance + + + -3.018046 53.4031179 + -3.0105071 53.4067312 + + dac.02001041 + + + 2006 2006-378972 River Mersey Eastham Bar and Channel + + + -2.9744669 53.3453773 + -2.9609346 53.3605942 + + dac.02001042 + + + 2006 2006-378972 Morecambe Bay Heysham Channel + + + -2.9784283 54.0013368 + -2.9257884 54.037261 + + dac.02001043 + + + 2006 2006-378972 Morecambe Bay Heysham Harbour and Entrance + + + -2.9299915 54.0311541 + -2.9123548 54.0356507 + + dac.02001044 + + + 2006 2006-378972 River Mersey Queens Channel East + + + -3.230071 53.5139273 + -3.1737214 53.5297593 + + dac.02001045 + + + 2006 2006-400250 Morecambe Bay Heysham Harbour and Entrance + + + -2.9297999 54.0311578 + -2.9126656 54.0355983 + + dac.02001046 + + + 2006 2006-400251 River Mersey Liverpool Landing Stage + + + -3.0033912 53.4027427 + -2.9981771 53.4069882 + + dac.02001047 + + + 2006 2006-400252 River Mersey Queens Channel East + + + -3.2289301 53.5139311 + -3.1744526 53.5285263 + + dac.02001048 + + + 2006 2006-400253 Morecambe Bay Heysham Harbour + + + -2.9231562 54.0317392 + -2.9123242 54.0355318 + + dac.02001049 + + + 2006 2006-400255 River Mersey Crosby Channel to New Brighton + + + -3.0682516 53.4443747 + -3.0237567 53.4752363 + + dac.02001050 + + + 2006 2006-400257 River Mersey Langton Dock Entrance + + + -3.0134189 53.4329256 + -3.0077319 53.4393518 + + dac.02001051 + + + 2006 2006-400261 River Mersey New Brighton Shoal + + + -3.0389058 53.4319176 + -3.0140122 53.4497809 + + dac.02001052 + + + 2006 2006-400263 River Mersey Tranmere Oil Stages + + + -3.003104 53.3754484 + -2.9947932 53.3834496 + + dac.02001053 + + + 2006 2006-400268 River Mersey Garston Bar and Channel + + + -2.9917591 53.332045 + -2.9038839 53.3829307 + + dac.02001054 + + + 2006 2006-400274 River Mersey Alfred Dock Entrance and Twelve Quays + + + -3.0182543 53.3972982 + -3.0048508 53.4069311 + + dac.02001055 + + + 2006 2006-400276 River Mersey Eastham Bar and Channel + + + -2.9836247 53.3447313 + -2.9493864 53.3690638 + + dac.02001056 + + + 2006 2006-400279 River Mersey Eastham Channel + + + -2.9664445 53.3222643 + -2.9241223 53.3517372 + + dac.02001057 + + + 2006 2006-400742 Harwich Haven River Stour and Waiftfleet Reach + + + 1.0864446 51.9453857 + 1.1050165 51.9512005 + + dac.02001058 + + + 2005 2008-27164 Orkney Islands Hoy Sound Houton Jetty Approach + + + -3.1897325 58.9097265 + -3.1803814 58.9175881 + + dac.02001059 + + + 2005 2008-27254 Orkney Islands Scapa Flow Flotta Terminal Approaches + + + -3.1588492 58.8287424 + -3.1044241 58.8550493 + + dac.02001060 + + + 2005 M4424 Orkney Islands Stromess Cairston Roads Anchorage + + + -3.2836028 58.9485519 + -3.263078 58.9612719 + + dac.02001061 + + + 2006 2008-028318 Harwich Haven Rivers Stour and Orwell + + + 1.052819 51.886219 + 1.3423022 52.042917 + + dac.02001062 + + + 2006 2006-399240 Harwich Haven Shotley Spit to Parkeston Quay + + + 1.2615379 51.945285 + 1.2977348 51.9630277 + + dac.02001063 + + + 2006 2006-403791 Pennyhole Bay Hamford Water and Sunken Pye Blk1 + + + 1.1928551 51.8591468 + 1.2946179 51.9192314 + + dac.02001064 + + + 2006 2006-403791 Pennyhole Bay Hamford Water and Sunken Pye Blk2 + + + 1.1923282 51.8591479 + 1.2946168 51.9192303 + + dac.02001065 + + + 2006 2006-403791 Pennyhole Bay Hamford Water + + + 1.2126379 51.8609555 + 1.2738546 51.9032896 + + dac.02001066 + + + 2004 2007-004895 Harwich Haven Erwarton Bay + + + 1.2193804 51.9504323 + 1.2359657 51.9578734 + + dac.02001067 + + + 2004 2007-004895 Harwich Haven Erwarton Bay West + + + 1.2357457 51.9511847 + 1.2697406 51.9606302 + + dac.02001068 + + + 2007 2007-5274 Orkney Islands Approaches to Lyness + + + -3.1989751 58.7845901 + -3.0701214 58.8778806 + + dac.02001069 + + + 2007 2007-008088 River Mersey Eastham Channel and Lock Approach Blk1 + + + -2.9527896 53.3226479 + -2.9474029 53.3277403 + + dac.02001070 + + + 2007 2007-008088 River Mersey Eastham Channel Approach Blk1 + + + -2.9726174 53.3476331 + -2.9618234 53.3585746 + + dac.02001071 + + + 2007 2007-008088 River Mersey Eastham Channel Approach Blk2 + + + -2.9726425 53.3475913 + -2.9620091 53.358702 + + dac.02001072 + + + 2007 2007-008088 River Mersey Eastham Channel and Lock Approach Blk2 + + + -2.9595272 53.3258605 + -2.9465051 53.3365856 + + dac.02001073 + + + 2007 2007-012451 River Mersey Crosby Channel Askew Spit + + + -3.1745752 53.5088266 + -3.1114294 53.531133 + + dac.02001074 + + + 2007 2007-012451 River Mersey Cammell Lairds Wall + + + -3.0079711 53.3828692 + -3.001609 53.3917673 + + dac.02001075 + + + 2007 2007-012451 River Mersey Crosby Channel and Shoal + + + -3.116113 53.4932742 + -3.0868097 53.5181153 + + dac.02001076 + + + 2007 2007-012451 River Mersey Garston Channel and Bar + + + -2.9912696 53.3644953 + -2.9577374 53.3831894 + + dac.02001077 + + + 2007 2007-012451 River Mersey Gladstone Dock Entrance + + + -3.0212655 53.4437494 + -3.0130054 53.4496143 + + dac.02001078 + + + 2007 2007-012451 Morecambe Bay Heysham Channel + + + -3.0074388 53.9916918 + -2.9252788 54.0379095 + + dac.02001079 + + + 2007 2007-012451 Morecambe Bay Heysham Harbour and Entrance + + + -2.9300952 54.0311933 + -2.9125076 54.0354302 + + dac.02001080 + + + 2007 2007-012451 Morecambe Bay Lancaster Sound + + + -3.059181 53.9955369 + -3.0464636 54.009879 + + dac.02001081 + + + 2007 2007-012451 River Mersey Langton Dock Entrance + + + -3.0133295 53.4337257 + -3.0075052 53.4391504 + + dac.02001082 + + + 2007 2007-012451 River Mersey Liverpool Landing Stages + + + -3.0031116 53.4028307 + -2.9980797 53.4068975 + + dac.02001083 + + + 2007 2007-012451 River Mersey Queens Channel East + + + -3.2337993 53.5124621 + -3.1552134 53.5309273 + + dac.02001084 + + + 2007 2007-012451 River Mersey Tranmere Oil Stage + + + -3.0030623 53.3755024 + -2.9948315 53.3833339 + + dac.02001085 + + + 2007 2007-012451 River Mersey Alfred Dock Entrance + + + -3.0181959 53.4031665 + -3.0112448 53.4066647 + + dac.02001086 + + + 2007 2009-14858 Weymouth Harbour + + + -2.4598258 50.6048745 + -2.4144813 50.6306166 + + dac.02001087 + + + 2007 2007-25059 The Wash Boston Port Approaches No9 Buoy to Nabs Head + + + 0.0859006 52.9317144 + 0.136642 52.9593547 + + dac.02001088 + + + 2007 2007-28134 Isle of Wight - Approaches Inner Harbour and River Yar + + + -1.5054751 50.6982345 + -1.4967668 50.7104714 + + dac.02001089 + + + 2007 2007-28134 Isle of Wight - Yarmouth Road to Inner Harbour + + + -1.5060212 50.7045601 + -1.4989688 50.7090778 + + dac.02001090 + + + 2007 2007-36059 Shoreham Harbour Eastern Arm + + + -0.2489843 50.8217207 + -0.238504 50.8307043 + + dac.02001091 + + + 2007 2007-36059 Shoreham Harbour Soldiers Point + + + -0.2525461 50.8284755 + -0.2478772 50.8310033 + + dac.02001092 + + + 2007 2007-36059 Shoreham Harbour Western Arm + + + -0.268076 50.8304611 + -0.251678 50.831891 + + dac.02001093 + + + 2007 2007-044135 Morecambe Bay Heysham Channel + + + -3.0266375 53.9723269 + -2.9563275 54.0141382 + + dac.02001094 + + + 2007 2007-044135 Morecambe Bay Heysham Harbour and Entrance + + + -2.9302929 54.0311801 + -2.9122533 54.0354876 + + dac.02001095 + + + 2007 2007-44135 Heysham Spoil Ground + + + -3.059181 53.9955369 + -3.0464636 54.009879 + + dac.02001096 + + + 2007 2007-044149 River Mersey Liverpool Landing Stage + + + -3.0030523 53.4028725 + -2.9983054 53.4068142 + + dac.02001097 + + + 2007 2007-044149 River Mersey New Brighton Shoal + + + -3.0393764 53.4336608 + -3.0163872 53.4484164 + + dac.02001098 + + + 2007 2007-044149 River Mersey Twelve Quays + + + -3.0140956 53.3975615 + -3.0051883 53.406607 + + dac.02001099 + + + 2007 2007-044149 River Mersey Tranmere Oil Stage + + + -3.0031186 53.3754491 + -2.9948386 53.3833833 + + dac.02001100 + + + 2007 2007-044151 River Mersey Cammell Laird Wall + + + -3.0079711 53.3828692 + -3.001609 53.3917673 + + dac.02001101 + + + 2007 2007-044151 River Mersey Crosby Channel and Shoal + + + -3.1151755 53.4932944 + -3.0859441 53.5174923 + + dac.02001102 + + + 2007 2007-044151 River Mersey Eastham Bar and Channel + + + -2.9738024 53.3365747 + -2.9566764 53.3620409 + + dac.02001103 + + + 2007 2007-044151 River Mersey Eastham Channel + + + -2.9835651 53.3211125 + -2.9300501 53.3680977 + + dac.02001104 + + + 2007 2007-044151 River Mersey Garston Channel and Bar + + + -2.990256 53.3644722 + -2.9570307 53.3823354 + + dac.02001105 + + + 2007 2007-044151 River Mersey Garston Channel + + + -2.989421 53.3342303 + -2.9047451 53.3825873 + + dac.02001106 + + + 2007 2007-044154 River Mersey Gladstone Dock Entrance + + + -3.0203978 53.4448447 + -3.0139983 53.4499198 + + dac.02001107 + + + 2007 2007-044154 River Mersey Alfred Dock Entrance + + + -3.0181064 53.4031067 + -3.0112222 53.4065874 + + dac.02001108 + + + 2007 2007-044151 River Mersey Eastham Bar and Channel + + + -2.9835651 53.3211125 + -2.9300501 53.3680977 + + dac.02001109 + + + 2007 2007-044154 River Mersey Langton Dock Entrance + + + -3.0123776 53.434353 + -3.0075521 53.4393695 + + dac.02001110 + + + 2007 2007-044154 River Mersey Queens Channel East + + + -3.2310914 53.5131865 + -3.1717051 53.5303529 + + dac.02001111 + + + 2007 2007-044154 River Mersey Gladstone Dock + + + -3.0182392 53.4483959 + -3.014702 53.4531568 + + dac.02001112 + + + 2007 2007-044151 River Mersey Crosby Channel Askew Pit + + + -3.1745752 53.5088266 + -3.1114294 53.531133 + + dac.02001113 + + + 2007 2007-048278 Harwich Haven River Stour Parkeston Quay and Mistley to Manningtree + + + 1.0540165 51.9426094 + 1.2542132 51.9597957 + + dac.02001114 + + + 2007 2007-047938 Harwich Deep Water Channel Harwich Channel No1 Buoy to South Shelf Buoy + + + 1.3048979 51.9187532 + 1.4570211 51.9387841 + + dac.02001115 + + + 2007 2007-049920 River Mersey Alfred Dock Entrance + + + -3.0182386 53.4031268 + -3.0112284 53.4066814 + + dac.02001116 + + + 2007 2007-049920 River Mersey Langston Dock Entrance + + + -3.0122596 53.434424 + -3.0075698 53.4392981 + + dac.02001117 + + + 2007 2007-049920 River Mersey Liverpool Landing Stage South Approaches + + + -3.0017248 53.3972719 + -2.9934218 53.4038909 + + dac.02001118 + + + 2007 2007-049920 River Mersey Tranmere Oil Stages + + + -3.0030646 53.3754264 + -2.9946968 53.3832957 + + dac.02001119 + + + 2007 2007-049920 River Mersey Woodside and Seacombe Stages + + + -3.0166273 53.3950668 + -3.004974 53.4121024 + + dac.02001120 + + + 2007 2007-053328 River Stour Mistley to Manningtree + + + 1.0556882 51.9442811 + 1.0887178 51.958124 + + dac.02001121 + + + 2007 2007-055967 River Mersey Langton Dock Entrance + + + -3.0123324 53.434398 + -3.0076658 53.4392063 + + dac.02001122 + + + 2007 2007-058038 Woodbridge Haven River Deben + + + 1.3124387 51.9912224 + 1.3965575 52.0852695 + + dac.02001123 + + + 2007 2007-058086 River Mersey Crosby Channel and Shoal + + + -3.1157956 53.4933777 + -3.0870209 53.5170824 + + dac.02001124 + + + 2007 2007-058086 River Mersey Liverpool Landing Stage North Approaches + + + -3.0051032 53.4058773 + -2.9991436 53.4101557 + + dac.02001125 + + + 2007 2007-058086 River Mersey Queens Channel East + + + -3.2298986 53.5130249 + -3.1736366 53.5306456 + + dac.02001126 + + + 2007 2007-058086 River Mersey Queens Channel West + + + -3.2690635 53.5136834 + -3.2208244 53.5262962 + + dac.02001127 + + + 2007 2007-61346 Holyhead + + + -4.6474163 53.3095126 + -4.6000067 53.3320974 + + dac.02001128 + + + 2007 2007-061820 River Mersey Garston Channel and Bar + + + -2.991387 53.3645574 + -2.9567559 53.3830685 + + dac.02001129 + + + 2007 2007-061820 River Mersey Gladstone Dock Entrance + + + -3.0204085 53.4448298 + -3.0136208 53.4499624 + + dac.02001130 + + + 2007 2007-061820 River Mersey Liverpool Landing Stage + + + -3.0031184 53.4028273 + -2.9978182 53.4069367 + + dac.02001131 + + + 2007 2007-061820 River Mersey Pluckington Bank + + + -3.0096252 53.3712561 + -2.9722458 53.4047412 + + dac.02001132 + + + 2007 2007-076012 River Mersey Alfred Dock Entrance + + + -3.0182419 53.4031237 + -3.0111666 53.4066033 + + dac.02001133 + + + 2007 2007-076012 River Mersey Cammell Lairds Wall + + + -3.0078373 53.386199 + -3.0054189 53.3884334 + + dac.02001134 + + + 2007 2007-076012 River Mersey Crosby Channel and Shoal + + + -3.1162398 53.4927129 + -3.0861852 53.5176985 + + dac.02001135 + + + 2007 2007-076012 River Mersey Langton Dock Entrance + + + -3.0122834 53.4331133 + -3.0079359 53.4394399 + + dac.02001136 + + + 2007 2007-076012 River Mersey New Brighton Shoal + + + -3.038301 53.4340031 + -3.0167216 53.4493344 + + dac.02001137 + + + 2007 2007-076012 River Mersey Queens Channel East Blk1 + + + -3.2296355 53.512987 + -3.1737998 53.5306229 + + dac.02001138 + + + 2007 2007-076012 River Mersey Queens Channel East Blk2 + + + -3.2267841 53.5148652 + -3.1762682 53.5268618 + + dac.02001139 + + + 2007 2007-076012 River Mersey Tranmere Oil Stages + + + -3.0032374 53.3755282 + -2.9951417 53.383219 + + dac.02001140 + + + 2007 2007-082828 River Stour Waiftfleet Reach to Baltic Wharf + + + 1.0795792 51.9442049 + 1.1033884 51.9509365 + + dac.02001141 + + + 2007 2007-87546 Holyhead + + + -4.631262 53.3097849 + -4.5996196 53.3310973 + + dac.02001142 + + + 2007 2007-87543 Isle of Wight - Approaches to Yarmouth Inner Harbour to River Yar + + + -1.5092904 50.698224 + -1.4924961 50.709881 + + dac.02001143 + + + 2007 2007-088463 River Mersey Albert Dock Entrance + + + -3.0182805 53.4029622 + -3.0102456 53.406798 + + dac.02001144 + + + 2007 2007-088463 River Mersey Crosby Channel South to New Brighton + + + -3.0544907 53.4457082 + -3.0279723 53.4644036 + + dac.02001145 + + + 2007 2007-088463 River Mersey Cammell Laird Wall + + + -3.0083125 53.3815537 + -3.0008079 53.392505 + + dac.02001146 + + + 2007 2007-088463 River Mersey Liverpool Landing Stage + + + -3.0053047 53.4024546 + -2.9976272 53.4102976 + + dac.02001147 + + + 2007 2007-088463 River Mersey Tranmere Oil Stage + + + -3.0029981 53.3740019 + -2.9924708 53.3832724 + + dac.02001148 + + + 2007 2007-089620 River Mersey Gladstone Dock Entrance + + + -3.0208454 53.4445441 + -3.0143423 53.4525204 + + dac.02001149 + + + 2007 2007-089620 River Mersey Langton Dock Entrance + + + -3.0128862 53.433166 + -3.0075346 53.4416305 + + dac.02001150 + + + 2007 2007-091053 River Stour Copperas Bay to Mistley + + + 1.0865107 51.9394536 + 1.1995797 51.9712875 + + dac.02001151 + + + 2007 2007-091889 River Mersey New Brighton Shoal + + + -3.0413404 53.4328849 + -3.0168541 53.452064 + + dac.02001152 + + + 2007 2007-093148 River Mersey Eastham Channel and Lock Approaches + + + -2.9528197 53.3225527 + -2.9473288 53.3278034 + + dac.02001153 + + + 2007 2007-093148 River Mersey Eastham Channel + + + -2.9728167 53.3253468 + -2.9454506 53.3588261 + + dac.02001154 + + + 2007 2008-000512 River Mersey Alfred Dock Entrance + + + -3.0180505 53.4029293 + -3.0100798 53.4070228 + + dac.02001155 + + + 2007 2008-000512 River Mersey Crosby Channel and Shoal + + + -3.1157742 53.4932898 + -3.0868708 53.5175535 + + dac.02001156 + + + 2007 2008-000512 River Mersey Gladstone Dock Entrance + + + -3.0215583 53.4429153 + -3.0130675 53.4525716 + + dac.02001157 + + + 2007 2008-000512 River Mersey Queens Channel East + + + -3.2289599 53.5141516 + -3.1747155 53.5268299 + + dac.02001158 + + + 2007 2008-000512 River Mersey Langton Dock Entrance + + + -3.0126177 53.433441 + -3.0079498 53.4416111 + + dac.02001159 + + + 2007 2008-000512 River Mersey Liverpool Landing South Approach + + + -3.0020543 53.395509 + -2.9922386 53.4051693 + + dac.02001160 + + + 2007 2008-000512 River Mersey New Brighton Shoal + + + -3.0413404 53.4328849 + -3.0168541 53.452064 + + dac.02001161 + + + 2007 2008-000512 River Mersey Tranmere Oil Stage + + + -3.0029819 53.374857 + -2.9932981 53.3835537 + + dac.02001162 + + + 2007 2008-000512 River Mersey Twelve Quays + + + -3.0118137 53.3979325 + -3.0042996 53.4068878 + + dac.02001163 + + + 2001 2008-829 The Solent - Approaches to Yarmouth Inner Harbour to River Yar + + + -1.5053761 50.6983408 + -1.4995273 50.7077266 + + dac.02001164 + + + 2008 2008-005095 Harwich Deep Water Channel HA Bouy to Harwich Channel No4 Buoy + + + 1.4474486 51.9215743 + 1.5152129 51.950526 + + dac.02001165 + + + 2008 2008-005095 Harwich Deep Water Channel Buoys No1 to No7 + + + 1.3748961 51.9222832 + 1.4534439 51.9438293 + + dac.02001166 + + + 2008 2008-5095 Harwich Channel No7 Buoy to Platters Buoy + + + 1.3488183 51.9233196 + 1.3791785 51.9376719 + + dac.02001167 + + + 2008 2008-5095 Harwich Parkeston Quay to Copperas Bay + + + 1.1970402 51.9413778 + 1.2361914 51.9580991 + + dac.02001168 + + + 2008 2008-009815 River Mersey Eastham Bar and Channel + + + -2.9718832 53.3426103 + -2.9579672 53.3589947 + + dac.02001169 + + + 2008 2008-009815 River Mersey Eastham Channel + + + -2.9631388 53.3226136 + -2.9469268 53.344438 + + dac.02001170 + + + 2008 2008-009815 River Mersey New Brighton Shoal + + + -3.0401469 53.4340967 + -3.0195493 53.4500618 + + dac.02001171 + + + 2008 2008-02113 Blyth Harbour + + + -1.5170053 55.1069985 + -1.4758197 55.1363809 + + dac.02001172 + + + 2008 2008-21832 Harwich South Shipwash Buoy to Harwich No1 Buoy + + + 1.4496652 51.8753399 + 1.5740872 51.948665 + + dac.02001173 + + + 2008 2008-024042 River Mersey Cammel Laird Wall + + + -3.0076941 53.386084 + -3.0041798 53.3881172 + + dac.02001174 + + + 2008 2008-024042 River Mersey Eastham Bar and Channel + + + -2.9733809 53.3412345 + -2.9572484 53.3606105 + + dac.02001175 + + + 2008 2008-024042 River Mersey Eastham Channel + + + -2.9624936 53.321632 + -2.9466995 53.343448 + + dac.02001176 + + + 2008 2008-024042 River Mersey Gladstone Dock Entrance + + + -3.0217977 53.4436367 + -3.0137647 53.4502163 + + dac.02001177 + + + 2008 2008-024042 River Mersey Langton Dock Entrance + + + -3.0138845 53.4332734 + -3.0074718 53.4416105 + + dac.02001178 + + + 2008 2008-024042 River Mersey Liverpool Landing Stage + + + -3.0054136 53.4019773 + -2.9971203 53.4101981 + + dac.02001179 + + + 2008 2008-024042 River Mersey Queens Channel East + + + -3.2288695 53.5142816 + -3.1879671 53.5277473 + + dac.02001180 + + + 2008 2008-25509 Harwich Haven The Shelf + + + 1.2907864 51.9329907 + 1.3107576 51.9529435 + + dac.02001181 + + + 2008 2008-22336 Harwich Haven Harwich Channel No1 Buoy to South Shelf Buoy + + + 1.3058928 51.9199607 + 1.4572542 51.9389856 + + dac.02001182 + + + 2008 2008-27147 Harwich Haven Harwich Navy Yard + + + 1.2812451 51.9466482 + 1.2960217 51.9517636 + + dac.02001183 + + + 2008 2008-029596 Morecambe Bay Heysham Channel + + + -2.9549086 54.0224158 + -2.9120995 54.035622 + + dac.02001184 + + + 2008 2008-029596 Morecambe Bay Heysham Harbour and Entrance + + + -2.9402981 54.0288029 + -2.9124113 54.0354723 + + dac.02001185 + + + 2008 2008-022527 Harwich Haven River Orwell Feston Reach to Cliff Reach + + + 1.1545998 52.0242091 + 1.1675839 52.0463391 + + dac.02001186 + + + 2008 2008-043356 Harwich Haven River Orwell Collimer Point to Orwell Bridge + + + 1.1642642 51.9824957 + 1.2811299 52.0260261 + + dac.02001187 + + + 2008 2008-045201 River Mersey Crosby Channel Askew Spit + + + -3.1753005 53.5165825 + -3.1247436 53.5312579 + + dac.02001188 + + + 2008 2008-045201 River Mersey Cammell Laird + + + -3.008025 53.3875816 + -3.0051424 53.3896164 + + dac.02001189 + + + 2008 2008-045201 River Mersey Crosby Channel and Shoal + + + -3.1156553 53.4940362 + -3.0869602 53.5168687 + + dac.02001190 + + + 2008 2008-045201 River Mersey Eastham Channel + + + -2.9629097 53.3214363 + -2.9468011 53.3436273 + + dac.02001191 + + + 2008 2008-045201 River Mersey Liverpool Landing Stage North Approaches + + + -3.0055965 53.4020017 + -2.9969545 53.4104242 + + dac.02001192 + + + 2008 2008-045201 River Mersey Liverpool Landing Stage South Approaches + + + -3.0020874 53.3955101 + -2.9920886 53.4051438 + + dac.02001193 + + + 2008 2008-046028 River Mersey Eastham Channel + + + -2.9728998 53.3223821 + -2.9465992 53.3591354 + + dac.02001194 + + + 2008 2008-047744 River Mersey Middle Deep + + + -2.9521064 53.3363219 + -2.93753 53.3464773 + + dac.02001195 + + + 2008 2008-053038 River Mersey Crosby Channel and Shoal + + + -3.1261277 53.493298 + -3.0856514 53.5247273 + + dac.02001196 + + + 2008 2008-053038 River Mersey Garston Bar and Channel + + + -2.9903783 53.3641308 + -2.958463 53.3823253 + + dac.02001197 + + + 2008 2008-053038 River Mersey New Brighton Shoal + + + -3.0413394 53.4329606 + -3.0161899 53.4516946 + + dac.02001198 + + + 2008 2008-53436 Newport and Royal Harbour + + + 1.4345691 51.3071665 + 1.4487973 51.3162094 + + dac.02001199 + + + 2007 2008-53436 Ramsgate Channel + + + 1.4345691 51.3071665 + 1.4487973 51.3162094 + + dac.02001200 + + + 2008 2008-048876 River Mersey Eastham Bar and Channel + + + -2.9728593 53.340584 + -2.9453411 53.3613508 + + dac.02001201 + + + 2008 2008-40632 Bristol King Road + + + -2.79157 51.4880628 + -2.6925393 51.5351664 + + dac.02001202 + + + 2008 2008-54349 Holyhead + + + -4.6474978 53.3096664 + -4.5998809 53.3315358 + + dac.02001203 + + + 2008 2008-54779 Shoreham Harbour Eastern Arm + + + -0.2499063 50.8217205 + -0.2388245 50.8307149 + + dac.02001204 + + + 2008 2008-057419 River Mersey Eastham Channel and Lock Approaches + + + -2.9527989 53.3215765 + -2.9470295 53.3278537 + + dac.02001205 + + + 2008 2008-057419 River Mersey Eastham Channel + + + -2.9729825 53.3255655 + -2.9470612 53.3589265 + + dac.02001206 + + + 2008 2008-61794 Bristol Denny Shoal + + + -2.7723104 51.4978443 + -2.730552 51.5115596 + + dac.02001207 + + + 2008 2008-72056 The Wash Boston Port Approaches No9 to Nabs Head + + + 0.0810384 52.9317311 + 0.1322124 52.959661 + + dac.02001208 + + + 2008 2008-072709 River Mersey Alfred Dock Entrance and Twelve Quays + + + -3.0183853 53.3972463 + -3.0038797 53.40781 + + dac.02001209 + + + 2008 2008-072709 River Mersey Crosby Channel and Shoal South + + + -3.0947483 53.4742699 + -3.0638701 53.4984267 + + dac.02001210 + + + 2008 2008-072709 River Mersey Eastham Channel and Lock + + + -2.9526662 53.3215255 + -2.9467522 53.3271196 + + dac.02001211 + + + 2008 2008-072709 River Mersey Liverpool Landing Stage + + + -3.0069884 53.3945949 + -2.9915931 53.4114952 + + dac.02001212 + + + 2008 2008-072709 River Mersey Tranmere Oil Stage + + + -3.0031098 53.3728804 + -2.9905238 53.3834638 + + dac.02001213 + + + 2008 2008-072709 River Mersey Crosby Channel to New Brighton + + + -3.0788218 53.4449163 + -3.0254461 53.484047 + + dac.02001214 + + + 2008 2008-072709 River Mersey Crosby Channel and Shoal Mid + + + -3.116618 53.4927079 + -3.0858692 53.518119 + + dac.02001215 + + + 2008 2008-072709 River Mersey Crosby Channel and Shoal North + + + -3.1286446 53.5055945 + -3.1011224 53.5238069 + + dac.02001216 + + + 2008 2008-072709 River Mersey Eastham Channel + + + -2.9725727 53.3409727 + -2.9582287 53.3601302 + + dac.02001217 + + + 2008 2008-072709 River Mersey Garston Channel + + + -2.9693408 53.3467851 + -2.9063639 53.3745866 + + dac.02001218 + + + 2008 2008-072709 River Mersey New Brighton Shoal + + + -3.0415007 53.4330949 + -3.0144144 53.4521439 + + dac.02001219 + + + 2008 2008-072709 River Mersey Queens Channel + + + -3.2823938 53.5123363 + -3.1703711 53.5314866 + + dac.02001220 + + + 2008 2008-086204 Morecambe Bay Heysham Harbour Approaches + + + -2.9546509 54.0214458 + -2.9126844 54.0354968 + + dac.02001221 + + + 2008 2008-84899 Bristol Denny Shoal + + + -2.7721489 51.4978807 + -2.7396885 51.5113702 + + dac.02001222 + + + 2008 2008-72709 Ramsgate Channel + + + 1.4331487 51.3237039 + 1.4536989 51.3267141 + + dac.02001223 + + + 2008 2008-080913 River Mersey Eastham Bar and Channel + + + -2.9727004 53.34189 + -2.958253 53.3591107 + + dac.02001224 + + + 2008 2008-080913 River Mersey Eastham Channel and Lock Approaches + + + -2.9527827 53.3217906 + -2.9466991 53.3278548 + + dac.02001225 + + + 2008 2008-080193 River Mersey Eastham Channel + + + -2.9622062 53.3255616 + -2.9467976 53.3430153 + + dac.02001226 + + + 2008 2008-081086 River Mersey Pluckington Bank + + + -3.0073683 53.3709796 + -2.9720294 53.4053248 + + dac.02001227 + + + 2008 2008-081087 River Mersey Queens Channel East + + + -3.2327607 53.5125895 + -3.1673753 53.5313181 + + dac.02001228 + + + 2008 2008-081088 River Mersey Alfred Dock Entrance + + + -3.0163919 53.4031321 + -3.0113789 53.4058404 + + dac.02001229 + + + 2008 2008-081090 River Mersey New Brighton Shoal + + + -3.0398178 53.4334296 + -3.0162314 53.448956 + + dac.02001230 + + + 2008 2008-081099 River Mersey Tranmere Oil Stages + + + -3.0028604 53.3738005 + -2.9917914 53.3831046 + + dac.02001231 + + + 2008 2008-081098 River Mersey Langton Dock Entrance + + + -3.0127357 53.4336331 + -3.0074205 53.4397307 + + dac.02001232 + + + 2008 2008-081099 River Mersey Gladstone Dock Entrance + + + -3.0215376 53.4441765 + -3.013702 53.4503018 + + dac.02001233 + + + 2008 2008-88000 Harwich Haven Waiftfleet Reach to Baltic Wharf + + + 1.0795179 51.9441881 + 1.1044828 51.9512233 + + dac.02001234 + + + 2008 2008-84701 Shoreham Harbour The Canal + + + -0.2371824 50.8269441 + -0.201159 50.8315523 + + dac.02001235 + + + 2008 2008-091168 River Mersey Crosby Channel and Shoal + + + -3.1302346 53.4898679 + -3.0841389 53.5239509 + + dac.02001236 + + + 2008 2008-091168 River Mersey Eastham Bar and Channel + + + -2.9733473 53.3436656 + -2.9595259 53.3611044 + + dac.02001237 + + + 2008 2008-091168 River Mersey Garston Channel and Bar + + + -2.9901517 53.3643395 + -2.9574283 53.3824057 + + dac.02001238 + + + 2008 2008-091168 River Mersey Liverpool Landing Stage + + + -3.002263 53.3961141 + -2.9928413 53.404962 + + dac.02001239 + + + 2008 2008-091168 River Mersey New Brighton Shoal + + + -3.041685 53.4325797 + -3.0136167 53.4522923 + + dac.02001240 + + + 2008 2008-091168 River Mersey Sandon Dock to Salisbury Dock River Wall + + + -3.0120412 53.4157864 + -3.0041694 53.4307544 + + dac.02001241 + + + 2008 2008-93308 Avonmouth Swash Channel + + + -2.7218623 51.4950222 + -2.7053938 51.5069026 + + dac.02001242 + + + 2008 2008-83317 Milford Haven Milford Docks Channel + + + -5.0389222 51.7024876 + -5.0323307 51.7101782 + + dac.02001243 + + + 2008 2008-83317 Pembroke Dock + + + -4.954104 51.6967674 + -4.9464372 51.6991121 + + dac.02001244 + + + 2008 2008-83317 Milford Haven Valero Teminal + + + -5.0283039 51.696953 + -5.0262259 51.6975559 + + dac.02001245 + + + 2008 2008-83317 Milford Haven SemLogistics Terminal + + + -4.994988 51.6980945 + -4.9930014 51.699574 + + dac.02001246 + + + 2008 2008-96065 Milford Haven Approaches to Milford Docks + + + -5.0415678 51.7009552 + -5.0277377 51.7108518 + + dac.02001247 + + + 2008 2008-96065 Pembroke Dock Ferry Berth + + + -4.9582523 51.6958491 + -4.9478632 51.6995618 + + dac.02001248 + + + 2008 2008-96065 Milford Haven Approaches + + + -5.1765463 51.6656995 + -5.1600335 51.6729009 + + dac.02001249 + + + 2008 2008-96065 River Cleddau + + + -4.8828799 51.7170235 + -4.8748361 51.7189163 + + dac.02001250 + + + 2008 2008-96065 Pembroke Dock + + + -4.9632042 51.6953211 + -4.9461659 51.7019298 + + dac.02001251 + + + 2008 2008-96065 Milford Haven South Hook + + + -5.1050619 51.6926716 + -5.0794904 51.7014435 + + dac.02001252 + + + 2008 2008-96066 River Cleddau + + + -4.9683066 51.6906482 + -4.8073474 51.8027974 + + dac.02001253 + + + 2008 2008-96066 Milford Haven Pennar Gut + + + -4.9899905 51.6727975 + -4.9216461 51.6956841 + + dac.02001254 + + + 2008 2008-96155 Orkney Islands South Ronaldsay St Margarets Hope + + + -2.9638829 58.827204 + -2.9438558 58.8387857 + + dac.02001255 + + + 2008 2008-098160 Tor Bay - Brixham Harbour + + + -3.5181016 50.3961045 + -3.505417 50.4060354 + + dac.02001256 + + + 2008 2008-101294 River Mersey Alfred Dock Entrance to Twelve Quays + + + -3.0182392 53.3972407 + -3.0046422 53.4073426 + + dac.02001257 + + + 2008 2008-101294 River Mersey Crosby Channel Askew Spit + + + -3.1753643 53.5155315 + -3.1202036 53.5315321 + + dac.02001258 + + + 2008 2008-101294 River Mersey Cammell Lairds Dock No5 + + + -3.0080253 53.3875949 + -3.0052615 53.3895891 + + dac.02001259 + + + 2008 2008-101294 River Mersey Cammell Lairds Dock No7 + + + -3.0077864 53.3862058 + -3.0051649 53.3875166 + + dac.02001260 + + + 2008 2008-101294 River Mersey Crosby Channel and Shoal + + + -3.1100885 53.490379 + -3.0840124 53.5140477 + + dac.02001261 + + + 2008 2008-101294 River Mersey Eastham Bar and Channel + + + -2.9726763 53.3442846 + -2.9598497 53.3605977 + + dac.02001262 + + + 2008 2008-101294 River Mersey Gladstone Dock Entrance + + + -3.0214453 53.4443196 + -3.0145672 53.4500293 + + dac.02001263 + + + 2008 2008-101294 River Mersey Langton Dock Entrance + + + -3.0130688 53.4337937 + -3.0079691 53.4415628 + + dac.02001264 + + + 2008 2008-101294 River Mersey Queens Channel East + + + -3.2334417 53.5123396 + -3.170264 53.5314622 + + dac.02001265 + + + 2008 2008-101294 River Mersey Tranmere Oil Stages + + + -3.0034615 53.3729799 + -2.9905243 53.3839751 + + dac.02001266 + + + 2008 2008-100709 Holyhead + + + -4.6459146 53.3097225 + -4.5996756 53.3354515 + + dac.02001267 + + + 2008 2008-100836 Bristol Denny Shoal + + + -2.7721822 51.4977518 + -2.730846 51.5115678 + + dac.02001268 + + + 2009 2009-003819 River Mersey Eastham Channel and Lock Approaches + + + -2.9528196 53.3215765 + -2.9467183 53.3278719 + + dac.02001269 + + + 2009 2009-003819 River Mersey Eastham Channel North + + + -2.9727676 53.3418684 + -2.9583259 53.3589116 + + dac.02001270 + + + 2009 2009-003819 River Mersey Eastham Channel South + + + -2.9621918 53.3255652 + -2.9467216 53.3428705 + + dac.02001271 + + + 2008 2009-04539 Blyth Harbour Inner Gabbard + + + -1.4950499 55.1159326 + -1.4854301 55.1246794 + + dac.02001272 + + + 2008 2009-04539 Blyth Inner Gabbard East Spoil Grounds + + + -1.4969417 55.1180604 + -1.4930199 55.1236453 + + dac.02001273 + + + 2009 2009-6164 Pembroke Dock + + + -4.946597 51.6982933 + -4.9426529 51.7004851 + + dac.02001274 + + + 2009 2009-6164 Milford Haven + + + -5.1495372 51.690577 + -5.1473499 51.6919963 + + dac.02001275 + + + 2009 2009-006675 River Mersey Alfred Dock Entrance to Twelve Quays + + + -3.0183992 53.3969674 + -3.0038016 53.4080102 + + dac.02001276 + + + 2009 2009-006675 River Mersey Crosby Channel North of Askew Spit + + + -3.1476728 53.5262118 + -3.1384466 53.5309355 + + dac.02001277 + + + 2009 2009-006675 River Mersey Crosby Channel and Shoal + + + -3.1264812 53.4900556 + -3.0852198 53.5243437 + + dac.02001278 + + + 2009 2009-006675 River Mersey Garston Bar and Channel + + + -2.9904514 53.3645571 + -2.9583452 53.3823535 + + dac.02001279 + + + 2009 2009-006675 River Mersey Gladstone Dock Entrance + + + -3.0211886 53.4447613 + -3.0143028 53.4525166 + + dac.02001280 + + + 2009 2009-006675 River Mersey Langton Dock Entrance + + + -3.0129333 53.433455 + -3.0078265 53.4396402 + + dac.02001281 + + + 2009 2009-008871 Tor Bay - Torquay Roads + + + -3.5344953 50.4329882 + -3.5128154 50.4587558 + + dac.02001282 + + + 2009 2009-008257 River Mersey Crosby Channel Taylors Training Bank + + + -3.150932 53.5166735 + -3.0986393 53.5346142 + + dac.02001283 + + + 2009 2009-084253 River Mersey Crosby Channel East Training Bank + + + -3.0914848 53.4858866 + -3.0705303 53.5165877 + + dac.02001284 + + + 2009 2009-012642 River Mersey Crosby Channel North of Askew Spit + + + -3.1490044 53.5260778 + -3.1380215 53.531227 + + dac.02001285 + + + 2009 2009-012642 Liverpool Bay Jordans Spit + + + -3.3091386 53.5231756 + -3.2661556 53.5883836 + + dac.02001286 + + + 2009 2009-012642 River Mersey Langton Dock Entrance + + + -3.0129703 53.4325002 + -3.0075535 53.4396476 + + dac.02001287 + + + 2009 2009-012642 River Mersey New Brighton Shoal + + + -3.0405139 53.4330603 + -3.0144804 53.4512949 + + dac.02001288 + + + 2009 2009-13981 Newhaven Harbour and Approaches + + + 0.0532293 50.7744414 + 0.0625658 50.7898578 + + dac.02001289 + + + 2009 2009-13981 Newhaven Spoil Ground + + + 0.0441647 50.7526908 + 0.0656858 50.767126 + + dac.02001290 + + + 2009 2009-024753 Blyth + + + -1.5226407 55.1293422 + -1.5038607 55.1436891 + + dac.02001291 + + + 2009 2009-021871 River Mersey Alfred Dock Entrance to Twelve Quays + + + -3.0183185 53.3964025 + -3.0043318 53.4084036 + + dac.02001292 + + + 2009 2009-021871 River Mersey Garston Channel and Bar + + + -2.9902215 53.3641868 + -2.9574992 53.3824492 + + dac.02001293 + + + 2009 2009-021871 River Mersey Gladstone Dock Entrance + + + -3.0214594 53.4441242 + -3.0140752 53.4500367 + + dac.02001294 + + + 2009 2009-021871 River Mersey Langton Dock Entrance + + + -3.0128492 53.4337288 + -3.0074694 53.4397269 + + dac.02001295 + + + 2009 2009-021871 River Mersey Liverpool Landing Stage + + + -3.0025183 53.3962798 + -2.9926313 53.4050269 + + dac.02001296 + + + 2009 2009-021871 River Mersey New Brighton Shoal Blk1 + + + -3.0309402 53.4439757 + -3.0257321 53.4470962 + + dac.02001297 + + + 2009 2009-021871 River Mersey New Brighton Shoal Blk2 + + + -3.0412042 53.4334534 + -3.0157814 53.451899 + + dac.02001298 + + + 2009 2009-021871 River Mersey Queens Channel West + + + -3.2790467 53.5135447 + -3.2228704 53.5271506 + + dac.02001299 + + + 2009 2009-22254 Weymouth Harbour + + + -2.459737 50.6063968 + -2.4393916 50.6136172 + + dac.02001300 + + + 2009 2009-29606 Severn Estuary The Bridge + + + -3.0106611 51.4374634 + -2.9768126 51.4581832 + + dac.02001301 + + + 2009 2009-23942 Bristol Denny Shoal + + + -2.7723097 51.4978675 + -2.7307589 51.5115399 + + dac.02001302 + + + 2009 2009-20637 Bristol King Road + + + -2.7882739 51.4883881 + -2.7012139 51.5315425 + + dac.02001303 + + + 2009 2009-028702 River Mersey Crosby Channel Askew Spit + + + -3.1740255 53.5171335 + -3.1184572 53.5325017 + + dac.02001304 + + + 2009 2009-028702 River Mersey Crosby Channel and Shoal + + + -3.1263158 53.4898368 + -3.0835865 53.5247441 + + dac.02001305 + + + 2009 2009-028702 River Mersey Gladstone Dock Entrance + + + -3.0227954 53.4435707 + -3.0142342 53.4500045 + + dac.02001306 + + + 2009 2009-028702 River Mersey Langton Dock Entrance + + + -3.0135221 53.4337212 + -3.0080135 53.4406609 + + dac.02001307 + + + 2009 2009-028702 River Mersey Queens Channel East + + + -3.2277633 53.5139758 + -3.1710767 53.5311556 + + dac.02001308 + + + 2009 2009-028807 The Solent - Yarmouth Harbour + + + -1.5054248 50.701804 + -1.4995846 50.7074851 + + dac.02001309 + + + 2009 2009-35108 Bristol King Road + + + -2.7719655 51.4977368 + -2.7401165 51.5114849 + + dac.02001310 + + + 2009 2009-036517 River Mersey Alfred Dock Entrance to Twelve Quays + + + -3.0183733 53.3965955 + -3.0046449 53.4086099 + + dac.02001311 + + + 2009 2009-036517 River Mersey Crosby Channel and Shoal + + + -3.1269294 53.4898184 + -3.0826201 53.5249736 + + dac.02001312 + + + 2009 2009-036517 River Mersey Garston Channel and Bar + + + -2.9908111 53.3642172 + -2.9576995 53.3825223 + + dac.02001313 + + + 2009 2009-036517 River Mersey Gladstone Dock Entrance + + + -3.0221584 53.4435954 + -3.0137335 53.4524554 + + dac.02001314 + + + 2009 2009-036517 River Mersey Liverpool Landing Stage + + + -3.0030906 53.3960801 + -2.9927169 53.4049505 + + dac.02001315 + + + 2009 2009-036517 River Mersey Liverpool Landing Stage Approaches + + + -3.0069361 53.4016814 + -2.99723 53.4106403 + + dac.02001316 + + + 2009 2009-036517 River Mersey Langton Dock Entrance + + + -3.0137686 53.432982 + -3.0074883 53.4416118 + + dac.02001317 + + + 2009 2009-036517 River Mersey New Brighton Shoal + + + -3.0419254 53.4329228 + -3.0144917 53.4524065 + + dac.02001318 + + + 2009 2009-33299 Milford Haven + + + -4.9865574 51.6829324 + -4.9778759 51.6865485 + + dac.02001319 + + + 2009 2009-39119 Harwich Blackmans Head to Medusa Channel + + + 1.2465642 51.850359 + 1.359484 51.9370821 + + dac.02001320 + + + 2009 2009-45699 Newhaven Harbour and Approaches + + + 0.0525356 50.7743943 + 0.0627791 50.7921583 + + dac.02001321 + + + 2009 2009-45852 Harwich Deep Water Channel + + + 1.3049676 51.9198614 + 1.4571537 51.9387752 + + dac.02001322 + + + 2009 2009-53190 Newhaven Spoil Area + + + 0.0431145 50.7533005 + 0.0642315 50.7675731 + + dac.02001323 + + + 2009 2009-89756 Bristol Denny Shoal + + + -2.7718685 51.4978719 + -2.7307676 51.5115328 + + dac.02001324 + + + 2009 2009-89766 Bristol King Road + + + -2.7892304 51.4887365 + -2.7872885 51.5063598 + + dac.02001325 + + + 2009 2009-89766 Severn Estuary Walton Bay + + + -2.8654199 51.4600939 + -2.7876347 51.50695 + + dac.02001326 + + + 2009 2009-106632 Portsmouth Harbour - The Camber and Approaches + + + -1.1099191 50.7919326 + -1.1056032 50.7946239 + + dac.02001327 + + + 2009 2009-100053 River Mersey Alfred Dock Entrance to Twelve Quays + + + -3.018401 53.3975434 + -3.0052301 53.4074628 + + dac.02001328 + + + 2009 2009-100053 River Mersey Crosby Channel to New Brighton + + + -3.0772979 53.4449705 + -3.0261287 53.4812537 + + dac.02001329 + + + 2009 2009-100053 River Mersey Cammell Lairds Dock No6 to No7 + + + -3.0080957 53.3858058 + -3.0042582 53.3889235 + + dac.02001330 + + + 2009 2009-100053 River Mersey Crosby Channel and Shoal + + + -3.1165674 53.4902427 + -3.0828967 53.5177556 + + dac.02001331 + + + 2009 2009-100053 River Mersey Crosby Channel South + + + -3.1028656 53.4664263 + -3.0543308 53.5012531 + + dac.02001332 + + + 2009 2009-100053 River Mersey Gladstone Dock Entrance + + + -3.0222325 53.4436744 + -3.0141722 53.449988 + + dac.02001333 + + + 2009 2009-100053 River Mersey Langton Dock Entrance + + + -3.0132464 53.4334761 + -3.0075916 53.4398412 + + dac.02001334 + + + 2009 2009-100053 River Mersey Liverpool Landing Stage + + + -3.0030962 53.3958754 + -2.9927327 53.4050584 + + dac.02001335 + + + 2009 2009-100053 River Mersey Liverpool Landing Stage South Approaches + + + -3.0067436 53.401807 + -2.9970812 53.4109269 + + dac.02001336 + + + 2009 2009-100053 River Mersey Tranmere Oil Stage + + + -3.0032616 53.3751839 + -2.9935376 53.3841865 + + dac.02001337 + + + 2009 2009-117264 River Mersey Crosby Channel to New Brighton + + + -3.0553124 53.4530729 + -3.0383356 53.4637463 + + dac.02001338 + + + 2009 2009-124334 River Mersey Crosby Channel Askew Spit + + + -3.1753743 53.5169236 + -3.1193226 53.5325646 + + dac.02001339 + + + 2009 2009-124334 River Mersey Crosby Channel to New Brighton + + + -3.0553124 53.4530729 + -3.0383356 53.4637463 + + dac.02001340 + + + 2009 2009-124334 River Mersey Crosby Channel and Shoal + + + -3.1161166 53.4899751 + -3.0836992 53.5179476 + + dac.02001341 + + + 2009 2009-124334 River Mersey Approaches Jordans Spit + + + -3.3054868 53.5569692 + -3.2734843 53.5793037 + + dac.02001342 + + + 2009 2009-124334 River Mersey Liverpool Landing Stage Approaches + + + -3.0070476 53.4020033 + -2.9972012 53.4108915 + + dac.02001343 + + + 2009 2009-124334 River Mersey New Brighton Shoal + + + -3.0310166 53.4435463 + -3.0254528 53.4466352 + + dac.02001344 + + + 2009 2009-124334 River Mersey Queens Channel East + + + -3.2258036 53.515571 + -3.185213 53.5246404 + + dac.02001345 + + + 2009 2009-124334 River Mersey Queens Channel West + + + -3.2811124 53.5137525 + -3.2213242 53.5268261 + + dac.02001346 + + + 2009 2009-124334 River Mersey Tranmere Oil Stages + + + -3.0032605 53.3743297 + -2.9898174 53.3845175 + + dac.02001347 + + + 2009 2009-118095 Holyhead + + + -4.6312817 53.3098171 + -4.608698 53.3310196 + + dac.02001348 + + + 2009 2009-118245 Holyhead + + + -4.6342523 53.3181104 + -4.6109243 53.331005 + + dac.02001349 + + + 2009 2009-120192 The Solent - Yarmouth Road + + + -1.5064037 50.6982926 + -1.4968546 50.7094414 + + dac.02001350 + + + 2009 2009-125483 Severn Estuary Bridge Patch + + + -3.0105896 51.4360448 + -2.9749382 51.458404 + + dac.02001351 + + + 2009 2009-150613 River Mersey Alfred Dock Entrance to Twelve Quays + + + -3.0183205 53.3979096 + -3.0055931 53.40695 + + dac.02001352 + + + 2009 2009-150613 River Mersey Cammell Lairds Wall + + + -3.008082 53.3858574 + -3.0038363 53.3900356 + + dac.02001353 + + + 2009 2009-150613 River Mersey Garston Channel Entrance + + + -2.9906867 53.364311 + -2.9576807 53.3825223 + + dac.02001354 + + + 2009 2009-150613 River Mersey Gladstone Dock Entrance + + + -3.0220859 53.4434646 + -3.01429 53.4496895 + + dac.02001355 + + + 2009 2009-150613 River Mersey Approaches Jordans Spit + + + -3.3063272 53.5530377 + -3.2732774 53.5806209 + + dac.02001356 + + + 2009 2009-150613 River Mersey Liverpool Landing Stage + + + -3.0070476 53.4020033 + -2.9972012 53.4108915 + + dac.02001357 + + + 2009 2009-150613 River Mersey Langton River Entrance + + + -3.0128783 53.4329428 + -3.0075952 53.4399235 + + dac.02001358 + + + 2009 2009-150613 River Mersey New Brigton Shoal and Brazil Elbow + + + -3.0537304 53.4326842 + -3.0150823 53.4615742 + + dac.02001359 + + + 2009 2009-150613 River Mersey Queens Channel East + + + -3.2344878 53.5134651 + -3.1709359 53.5315136 + + dac.02001360 + + + 2009 2009-150613 River Mersey Seacombe Stage + + + -3.0153345 53.4088928 + -3.0120961 53.4115019 + + dac.02001361 + + + 2009 2009159964 Newhaven Approaches Fishmarket Quays + + + 0.0531892 50.7744025 + 0.0625283 50.7901461 + + dac.02001362 + + + 2009 2009-156114 Avonmouth Swash Channel + + + -2.7212436 51.4942565 + -2.7019556 51.5066391 + + dac.02001363 + + + 2009 2009-171995 River Mersey New Brighton Shoal + + + -3.0308117 53.4439401 + -3.0257992 53.4467322 + + dac.02001364 + + + 2009 2009-184941 Bristol Denny Shoal + + + -2.7720356 51.4978423 + -2.7296205 51.5115321 + + dac.02001365 + + + 2009 2009-182981 River Mersey Queens Channel East + + + -3.2291078 53.5141837 + -3.1716846 53.5309046 + + dac.02001366 + + + 2009 2009-182981 River Mersey Alfred Dock Entrance and Twelve Quays + + + -3.0184011 53.3976786 + -3.0052655 53.4075802 + + dac.02001367 + + + 2009 2009-182981 River Mersey Crosby Channel Askew Spit + + + -3.1753149 53.5152791 + -3.1193321 53.5321043 + + dac.02001368 + + + 2009 2009-182981 River Mersey Crosby Channel to New Brighton + + + -3.0556225 53.4524575 + -3.0375068 53.4640066 + + dac.02001369 + + + 2009 2009-182981 River Mersey Crosby Channel and Shoal + + + -3.1231163 53.4948903 + -3.0858941 53.5222783 + + dac.02001370 + + + 2009 2009-182981 River Mersey Eastham Bar and Channel + + + -2.9720518 53.343433 + -2.9593514 53.3589337 + + dac.02001371 + + + 2009 2009-182981 River Mersey Eastham Channel + + + -2.9640194 53.3213291 + -2.94604 53.3458147 + + dac.02001372 + + + 2009 2009-182981 River Mersey Gladstone Dock Entrance + + + -3.0221674 53.4437688 + -3.0144159 53.4525459 + + dac.02001373 + + + 2009 2009-182981 River Mersey Langton Dock Entrance + + + -3.0133541 53.4335403 + -3.0079664 53.4403617 + + dac.02001374 + + + 2009 2009-182981 River Mersey Queens Channel West + + + -3.2806517 53.5135305 + -3.2212774 53.5276781 + + dac.02001375 + + + 2009 2009-182981 River Mersey Tranmere Oil Stages + + + -3.0026666 53.3743441 + -2.9906603 53.3844109 + + dac.02001376 + + + 2009 2010-732 Weymouth Harbour + + + -2.4597616 50.6063806 + -2.4393021 50.6136636 + + dac.02001377 + + + 2010 2010-13413 Newhaven Harbour and Approaches + + + 0.0519582 50.7743759 + 0.06274 50.7948294 + + dac.02001378 + + + 2010 2010-37015 Holyhead + + + -4.631389 53.3097716 + -4.5881629 53.3356417 + + dac.02001379 + + + 2010 2010-037017 Isle of Wight - Yarmouth Harbour + + + -1.5062543 50.7045697 + -1.5000575 50.7073586 + + dac.02001380 + + + 2010 2010-046266 River Mersey Crosby Channel to New Brighton + + + -3.0523824 53.4561421 + -3.0411888 53.4626993 + + dac.02001381 + + + 2010 2010-046266 River Mersey Crosby Channel and Shoal + + + -3.1264876 53.4900954 + -3.0837554 53.5250879 + + dac.02001382 + + + 2010 2010-046266 River Mersey Eastham Channel and Lock Approaches + + + -2.9534794 53.3226945 + -2.9469296 53.3286511 + + dac.02001383 + + + 2010 2010-046266 River Mersey Queens Channel East + + + -3.2315412 53.5136512 + -3.1716236 53.531399 + + dac.02001384 + + + 2010 2010-046266 River Mersey Alfred River Entrance and Twelve Quays + + + -3.0184023 53.3978126 + -3.0050561 53.4071755 + + dac.02001385 + + + 2010 2010-046266 River Mersey Tranmere Oil Stages + + + -3.0025775 53.3755025 + -2.9918485 53.38395 + + dac.02001386 + + + 2010 2010-046266 River Mersey Gladstone Dock Entrance + + + -3.02257 53.4439127 + -3.0142851 53.4525363 + + dac.02001387 + + + 2010 2010-046266 River Mersey Langton Dock Entrance + + + -3.0132485 53.4335305 + -3.0080754 53.4415995 + + dac.02001388 + + + 2010 2010-046266 River Mersey Eastham Bar and Channel + + + -2.972018 53.3429641 + -2.9587894 53.3591566 + + dac.02001389 + + + 2010 2010-046266 River Mersey New Brighton Shoal + + + -3.0412947 53.4333462 + -3.0152285 53.4519748 + + dac.02001390 + + + 2010 2010-49178 Bristol Denny Shoal + + + -2.7861194 51.522931 + -2.776882 51.5287655 + + dac.02001391 + + + 2010 2010-49178 Bristol King Road + + + -2.7887338 51.4878413 + -2.7012095 51.531563 + + dac.02001392 + + + 2010 2010-49178 Bristol King Road + + + -2.7885623 51.4861598 + -2.698861 51.5221722 + + dac.02001393 + + + 2008 2008-37991 Fishguard + + + -4.9933004 52.0012439 + -4.9695843 52.0146398 + + dac.02001394 + + + 2008 2008-37992 Folkestone Harbour and Approaches + + + 1.1856546 51.0756673 + 1.1979475 51.0808003 + + dac.02001395 + + + 2008 2008-46795 Isle of Wight - Kingston Quay + + + -1.2919014 50.743903 + -1.2877811 50.760939 + + dac.02001396 + + + 2008 2008-046909 Plymouth Cattewater Harbour + + + -4.1345555 50.358626 + -4.1092233 50.3671798 + + dac.02001397 + + + 2008 2008-056978 Dundee Lady Shoal + + + -2.7867285 56.4508827 + -2.7699373 56.4586226 + + dac.02001398 + + + 2008 2008-056978 Dundee Approaches to River Tay + + + -2.6862022 56.4490975 + -2.628343 56.478073 + + dac.02001399 + + + 2007 2008-056978 Dundee Tay Rail Bridge to Kirkton + + + -3.048477 56.4183368 + -2.9856371 56.4429472 + + dac.02001400 + + + 2008 2008-056978 Dundee Prince Charles Wharf + + + -2.9282941 56.461664 + -2.9160337 56.4656489 + + dac.02001401 + + + 2008 2008-056978 Dundee Queen Elizabeth Wharf + + + -2.9561958 56.4576992 + -2.9370095 56.4650062 + + dac.02001402 + + + 2008 2008-049302 Forth Grangemouth Roads + + + -3.6983931 56.0298119 + -3.6329182 56.0509815 + + dac.02001403 + + + 2008 2008-090803 Forth Kirkcaldy Bay - Royal Archer + + + -3.0049844 56.1062438 + -3.0007106 56.1083794 + + dac.02001404 + + + 2008 2008-090803 Forth Kirkcaldy Bay - Salvestria + + + -3.0856057 56.0670434 + -3.0752004 56.0689346 + + dac.02001405 + + + 2008 2008-090803 Forth Kirkcaldy Bay Shoal 3 + + + -3.1092542 56.1035893 + -3.0986198 56.1049824 + + dac.02001406 + + + 2008 2008-090803 Forth Kirkcaldy Bay Shoal 124 + + + -3.1277244 56.0575345 + -3.1090419 56.0727711 + + dac.02001407 + + + 2008 2008-097480 River Fowey Fowey Harbour + + + -4.6451143 50.3264526 + -4.6246278 50.3518741 + + dac.02001408 + + + 2007 Cape Cornwall Bank + + + -6.0514131 50.0161581 + -5.606921 50.3706647 + + dac.02001409 + + + 2007 Southwest Coast Lizard Peninsula 1 + + + -5.3867578 49.8624113 + -5.110722 50.0301237 + + dac.02001410 + + + 2007 Southwest Coast Lizard Peninsula 2 + + + -5.3500742 49.8621573 + -5.1346805 50.0417432 + + dac.02001411 + + + 2009 2009-004404 Forth Boness Spoil Ground + + + -3.6373731 56.0180867 + -3.5485479 56.0449755 + + dac.02001412 + + + 2009 2009-015715 Forth Forth Aberlady Anchorages + + + -3.0358122 55.9965145 + -2.8823677 56.0722513 + + dac.02001413 + + + 2009 2009-28788 Cattewater Harbour + + + -4.1360224 50.3582316 + -4.1079318 50.368921 + + dac.02001414 + + + 2009 2009-033049 Chichester Harbour + + + -0.9368163 50.7760136 + -0.9026599 50.7948871 + + dac.02001415 + + + 2009 2009-40671 Cromarty Firth Nigg Area + + + -4.0373283 57.691226 + -4.0233038 57.6947954 + + dac.02001416 + + + 2009 2009-40671 Cromarty Firth Queens Dock + + + -4.1792599 57.683237 + -4.1659421 57.6869559 + + dac.02001417 + + + 2009 2009-093662 Chichester Harbour + + + -0.9579885 50.7907243 + -0.8943921 50.8345025 + + dac.02001418 + + + 2009 2009-099713 River Tay Dundee Docks + + + -2.9563455 56.457486 + -2.9159646 56.4661236 + + dac.02001419 + + + 2009 2009-099713 River Tay Lady Shoal + + + -2.8391453 56.4501107 + -2.7676559 56.4592553 + + dac.02001420 + + + 2009 2009-099713 Approaches to River Tay + + + -2.6860689 56.4493257 + -2.6283121 56.4782627 + + dac.02001421 + + + 2009 2009-099713 River Tay Spoil Ground + + + -3.0122482 56.4273557 + -2.9860351 56.4425371 + + dac.02001422 + + + 2009 2009-099713 River Tay Dundee Harbour to Spoil Ground + + + -2.9542346 56.4519348 + -2.9130449 56.4654047 + + dac.02001423 + + + 2009 2009-152570 Forth Approaches to Mussleburgh + + + -3.1704506 55.9495588 + -2.989421 56.0042136 + + dac.02001424 + + + 2009 2009-176078 Cromarty Firth Highland Berth Deephaven + + + -4.2789392 57.6642501 + -4.2763774 57.6655189 + + dac.02001425 + + + 2008 2009-42221 Cromarty Firth Saltburn Pier + + + -4.1603484 57.6762073 + -4.068366 57.6958591 + + dac.02001426 + + + 2009 2009-108915 Cromarty Firth Area 1 and Berths + + + -4.2833961 57.6517837 + -4.1546835 57.6883082 + + dac.02001427 + + + 2009 2009-135926 Firth of Clyde Loch Fyne + + + -5.3627189 56.0039816 + -5.3382022 56.0158228 + + dac.02001428 + + + 2009 2009-136277 Firth of Clyde Kyles Of Bute + + + -5.1861104 55.9221393 + -5.1639368 55.9322412 + + dac.02001429 + + + 2009 2010-10104 Chichester Approaches + + + -0.9441419 50.7563747 + -0.9320913 50.7778606 + + dac.02001430 + + + 2009 2010-000012 Forth Forth Leith Roads Approaches + + + -3.169508 55.9987293 + -3.0955699 56.0181247 + + dac.02001431 + + + 2010 2010-28860 Cattewater Harbour + + + -4.1359792 50.3582433 + -4.1078972 50.3691019 + + dac.02001432 + + + 2010 2010-035704 Chichester Harbour + + + -0.9265894 50.7885898 + -0.9032313 50.7953291 + + dac.02001433 + + + 2010 2010-038659 River Fowey Fowey Harbour + + + -4.6447618 50.3266382 + -4.6247576 50.351735 + + dac.02001434 + + + 2010 2010-49496 Forth Deep Water Channel + + + -3.3867419 55.9955486 + -3.3113911 56.0274838 + + dac.02001435 + + + 2010 2010-49496 Forth Mortimers Deep + + + -3.3353442 56.0191774 + -3.2445716 56.0568546 + + dac.02001436 + + + 1999 2006-358314 Chichester Entrance + + + -0.9380096 50.7830537 + -0.9021425 50.7978467 + + dac.02001437 + + + 1996 2006-358415 Falmouth Harbour Moorings + + + -5.06995 50.1532708 + -5.0603402 50.159091 + + dac.02001438 + + + 1999 2006-358416 Falmouth Harbour Visitors Yacht Haven + + + -5.0658248 50.1538253 + -5.0644728 50.1543184 + + dac.02001439 + + + 1996 2006-358417 Falmouth Harbour Duchy Wharf + + + -5.0623844 50.1518757 + -5.0570322 50.156659 + + dac.02001440 + + + 1997 2006-358418 Falmouth Harbour Docks Basin + + + -5.0597172 50.1496058 + -5.0352863 50.1597559 + + dac.02001441 + + + 1995 2006-358419 Falmouth Harbour Inner Harbour + + + -5.0656741 50.1527732 + -5.05194 50.1596471 + + dac.02001442 + + + 1996 2006-358420 Falmouth Harbour Inner Harbour + + + -5.0810068 50.161937 + -5.0715848 50.1664403 + + dac.02001443 + + + 1997 2006-358421 Falmouth Harbour Moorings + + + -5.0736957 50.1565442 + -5.0644339 50.1629667 + + dac.02001444 + + + 1999 2006-358441 Falmouth Harbour Approach Channel + + + -5.050414 50.1550175 + -5.0382335 50.1580791 + + dac.02001445 + + + 2000 2006-358907 Chichester Bar + Collected by Chichester Harbour Authority + + + -0.9456285 50.7572357 + -0.9315648 50.7715839 + + dac.02001446 + + + 2000 2006-358908 Cattewater Millbay Docks + Collected by Cattewater Harbour + + + -4.1568751 50.3614248 + -4.1516933 50.366121 + + dac.02001447 + + + 2000 2006-358919 Approaches to Chichester Harbour + + + -0.965466 50.7463703 + -0.888195 50.8097029 + + dac.02001448 + + + 2000 M3395 Forth Grangemouth Roads + + + -3.6968132 56.0306598 + -3.6329216 56.0505193 + + dac.02001449 + + + 2000 M3473 Forth Bo Ness Spoil Ground + + + -3.6365304 56.0200478 + -3.5496446 56.0424809 + + dac.02001450 + + + 2000 2006-290699 Truro River Lighterage Quay to Sunny Corner + + + -5.0397902 50.247967 + -5.0334648 50.2504822 + + dac.02001452 + + + 2000 2006-359187 Firth of Clyde Ardrossan Harbour + + + -4.8292843 55.6400562 + -4.8196603 55.6449 + + dac.02001453 + + + 2001 2006-359197 Isle of Wight River Medina Kingston Point to Folly Point + + + -1.2900949 50.7330711 + -1.2814176 50.7451002 + + dac.02001454 + + + 2001 2006-359272 Cattewater Harbour Wharves + + + -4.1204342 50.360536 + -4.1142371 50.361998 + + dac.02001455 + + + 2000 2006-349273 Cattewater Harbour + + + -4.1360193 50.3580036 + -4.107282 50.3692514 + + dac.02001456 + + + 2001 2006-349139 Cattewater Harbour + + + -4.1360387 50.3582142 + -4.1064025 50.369239 + + dac.02001457 + + + 2001 2006-359275 Falmouth Harbour Docks Channel + + + -5.0506133 50.1539439 + -5.0370547 50.1582693 + + dac.02001458 + + + 2001 2006-359284 Fishguard + + + -4.9878709 52.0005734 + -4.9690596 52.0147602 + + dac.02001459 + + + 2001 2006-290678 Isle of Wight Fishbourne Channel Ferry Port + + + -1.2148772 50.7339958 + -1.1997446 50.7432907 + + dac.02001460 + + + 2001 2006-359326 Falmouth Harbour St. Mawes + + + -5.0375938 50.1345688 + -5.0121047 50.1473598 + + dac.02001461 + + + 2001 2006-359327 Falmouth Harbour Carrick Roads + + + -5.0420524 50.1342397 + -5.0076333 50.15908 + + dac.02001462 + + + 2001 M3610 Dundee Princess Alexandra Wharf to Prince Charles Wharf + + + -2.9410609 56.4599945 + -2.9216044 56.4660301 + + dac.02001463 + + + 2001 M3608 Dundee Caledon East Wharf to Prince Charles Wharf + + + -2.9283164 56.4616516 + -2.9161777 56.4656816 + + dac.02001464 + + + 2001 M3612 Dundee Queen Elizabeth Wharf to Princess Alexandra Wharf + + + -2.9563569 56.457715 + -2.937034 56.4649994 + + dac.02001465 + + + 2001 M3611 River Tay Lady Shoal + + + -2.8392522 56.4503383 + -2.7677589 56.4592576 + + dac.02001466 + + + 2001 M3613 Approaches to River Tay + + + -2.6863157 56.4490426 + -2.6345877 56.4829129 + + dac.02001467 + + + 2001 M3614 River Tay Tay Rail Bridge to Kirkton + + + -3.0455707 56.4184133 + -2.9858502 56.4429119 + + dac.02001468 + + + 2001 M3609 River Tay Dundee Harbour to Spoil Ground + + + -2.9545482 56.4527542 + -2.9135796 56.4653022 + + dac.02001469 + + + 2001 2006-359419 Chichester Bar + + + -0.9448152 50.7597974 + -0.9346395 50.7698298 + + dac.02001470 + + + 2001 2006-359427 Forth Methil + + + -3.0187976 56.1686369 + -2.9977242 56.1779439 + + dac.02001471 + + + 2001 2006-359449 Falmouth Harbour Carrick Roads + + + -5.0488123 50.1509771 + -5.0202641 50.1812989 + + dac.02001472 + + + 2001 2006-359894 Cowes Harbour Cowes Chain Ferry + + + -1.2923017 50.757372 + -1.2907521 50.7580792 + + dac.02001473 + + + 2001 2006-297841 Firth of Clyde Kyles of Bute - Colintraive + + + -5.1545499 55.9225921 + -5.1531307 55.9234494 + + dac.02001474 + + + 2002 2006-359986 Cattewater Harbour + + + -4.135947 50.3581178 + -4.1072175 50.3692302 + + dac.02001475 + + + 2002 M3731 Forth Bo Ness Spoil Ground + + + -3.6364919 56.0213952 + -3.5495634 56.0434192 + + dac.02001476 + + + 2002 2006-360055 Isle of Wight Fishbourne Wootton Creek + + + -1.2220047 50.7299424 + -1.2126936 50.7357274 + + dac.02001477 + + + 2002 2006-360133 Firth of Clyde Loch Fyne Otter Spit + + + -5.3547344 56.0031724 + -5.3213907 56.0116852 + + dac.02001478 + + + 2002 2006-360134 Firth of Clyde Loch Fyne Minnard the Lady + + + -5.2564802 56.1008156 + -5.245979 56.1089939 + + dac.02001479 + + + 2002 2006-297879 Forth Narrow Deep Spoil Ground + + + -3.1270683 56.0048007 + -3.0935747 56.0229445 + + dac.02001480 + + + 2002 2006-360177 River Fal to Truro River Creeks + + + -5.0645588 50.1891422 + -5.0205307 50.2633743 + + dac.02001481 + + + 2002 2006-360181 Fishguard + + + -4.9886432 52.0007163 + -4.9683189 52.0147847 + + dac.02001482 + + + 2002 2006-360210 Folkstone Harbour + + + 1.1856644 51.0757535 + 1.1963335 51.0807612 + + dac.02001483 + + + 2002 2006-360231 Firth of Clyde Tidal Weir to Broomielaw + + + -4.2648143 55.8517487 + -4.245423 55.8567053 + + dac.02001484 + + + 2002 2006-297680 Sound of Harris Grocis + + + -7.0263453 57.7272411 + -7.0188065 57.7375798 + + dac.02001485 + + + 2002 2006-319969 Isle of Barra Ardveenish Approach Channel + + + -7.4062751 56.9972452 + -7.3916252 57.0027041 + + dac.02001486 + + + 2002 2006-297681 Forth Proposed Longannet Coal Jetty + + + -3.7164158 56.0365527 + -3.6758777 56.0540661 + + dac.02001487 + + + 2003 2006-297655 Forth Kincardine to Alloa + + + -3.8072995 56.0458703 + -3.7035382 56.1107048 + + dac.02001488 + + + 2003 2006-360487 Cattewater Harbour + + + -4.1359835 50.3580766 + -4.1072644 50.3692352 + + dac.02001489 + + + 2003 2006-360535 Cattewater Harbour Wharves + + + -4.1200791 50.3607871 + -4.114989 50.3620104 + + dac.02001490 + + + 2003 2006-360648 Great Yarmouth River Yare Entrance + + + 1.7322656 52.5718686 + 1.7365461 52.5756849 + + dac.02001491 + + + 2003 2006-360662 Great Yarmouth River Yare + + + 1.7313743 52.5753321 + 1.7336956 52.5803216 + + dac.02001492 + + + 2003 2006-360663 Great Yarmouth River Yare + + + 1.7295068 52.5796762 + 1.732728 52.5846354 + + dac.02001493 + + + 2003 2006-360664 Great Yarmouth River Yare + + + 1.7282099 52.5842922 + 1.7301981 52.5890208 + + dac.02001494 + + + 2003 2006-360665 Great Yarmouth River Yare + + + 1.7254943 52.5882951 + 1.7292604 52.5932825 + + dac.02001495 + + + 2003 2006-360666 Great Yarmouth River Yare + + + 1.7254891 52.5928761 + 1.727332 52.5978558 + + dac.02001496 + + + 2003 2006-360667 Great Yarmouth River Yare + + + 1.7254217 52.5973064 + 1.7273049 52.6019068 + + dac.02001497 + + + 2003 2006-360668 Great Yarmouth River Yare + + + 1.7227867 52.60144 + 1.7265237 52.6066487 + + dac.02001498 + + + 2003 2006-360704 River Truro King Harry Ferry + + + -5.0280656 50.215074 + -5.0267784 50.2164499 + + dac.02001499 + + + 2003 2006-360705 River Truro Lighterage Quay to Malpas Point + + + -5.0413953 50.2405952 + -5.0201749 50.2523769 + + dac.02001500 + + + 2003 2006-360706 Falmouth Carrick Roads Mylor Creek + + + -5.0750711 50.1773361 + -5.052577 50.1835554 + + dac.02001501 + + + 2003 2006-360707 Falmouth River Penryn and Harbour + + + -5.1003166 50.1628511 + -5.0799662 50.1695209 + + dac.02001502 + + + 2003 2006-360755 Acairseid Mhor and Approaches + + + -7.2985986 57.058518 + -7.2721347 57.069532 + + dac.02001503 + + + 2003 2006-360763 River Fowey Wisemans Reach to Harbour Limit + + + -4.6431404 50.3275777 + -4.624687 50.351601 + + dac.02001504 + + + 2004 2006-361199 River Fowey Fowey Harbour + + + -4.6493078 50.3214903 + -4.6297401 50.3463514 + + dac.02001505 + + + 2004 2006-351718 Approaches to Bembridge Harbour + Collected by National Oceanography Centre + + + -1.1029546 50.7012403 + -1.0818627 50.7160834 + + dac.02001506 + + + 2003 2015-361314 Lynn of Morvern Glensanda Harbour + + + -5.5405997 56.56267 + -5.5273783 56.5709109 + + dac.02001507 + + + 2004 2006-338091 Firth of Clyde Broomielaw Pontoon + + + -4.2725429 55.8551326 + -4.2598865 55.8566782 + + dac.02001508 + + + 2004 2006-338096 River Tay Balmerino to Birkhill + + + -3.0976767 56.3968059 + -3.0344095 56.4279651 + + dac.02001509 + + + 2004 2006-338096 River Tay Tidal Basin + + + -2.9346863 56.4649336 + -2.932392 56.4658031 + + dac.02001510 + + + 2004 2006-338096 Dundee Princess Alexandra Wharf to Prince Charles Wharf + + + -2.9410795 56.4599856 + -2.9215882 56.4659656 + + dac.02001511 + + + 2004 2006-338096 Dundee Caledon East Wharf to Prince Charles Wharf + + + -2.9283123 56.461648 + -2.9160716 56.4657133 + + dac.02001512 + + + 2004 2006-338096 Dundee Queen Elizabeth Wharf to Princess Aleandra Wharf + + + -2.9559416 56.4577974 + -2.9370478 56.4649976 + + dac.02001513 + + + 2004 2006-338096 River Tay Birkhill to Flisk Point + + + -3.1277573 56.3918475 + -3.0846576 56.4049867 + + dac.02001514 + + + 2004 2006-338096 River Tay Lady Shoal + + + -2.8392248 56.4503592 + -2.7676342 56.4594321 + + dac.02001515 + + + 2004 2006-338096 Approaches to River Tay + + + -2.6867642 56.4490933 + -2.6316939 56.4829605 + + dac.02001516 + + + 2004 2006-338096 River Tay Tay Rail Bridge to Balmerino + + + -3.0451522 56.4182616 + -2.9857941 56.4430113 + + dac.02001517 + + + 2004 2006-338096 River Tay Dundee Harbour to Spoil Ground + + + -2.9544736 56.4523452 + -2.9137057 56.4653987 + + dac.02001518 + + + 2004 2006-338052 Forth Grangemouth Roads + + + -3.6960502 56.0297826 + -3.6329725 56.0501497 + + dac.02001519 + + + 2004 2006-361399 Thames Estuary Gore Channel + + + 0.9685327 51.3457917 + 1.24626 51.4325094 + + dac.02001520 + + + 2004 2006-338054 Forth Bo Ness Spoil Ground + + + -3.636529 56.019898 + -3.5480145 56.0444323 + + dac.02001521 + + + 2004 2006-361405 Isle of Wight + + + -1.5959881 50.5662464 + -1.0523796 50.7787801 + + dac.02001522 + + + 2004 2006-361442 Chichester Harbour + + + -0.9577271 50.7759365 + -0.929637 50.8003079 + + dac.02001523 + + + 2004 2006-338105 Forth Mortimers Deep + + + -3.3309357 56.0198029 + -3.2448829 56.0540855 + + dac.02001524 + + + 2003 2006-338057 Isle of Wight River Medina + + + -1.3015111 50.7438885 + -1.2878068 50.7695693 + + dac.02001525 + + + 2004 2006-361485 River Fowey & Par Sands + + + -4.7074815 50.3266173 + -4.6247893 50.3484696 + + dac.02001526 + + + 2005 2006-338138 Forth Bridgeness to Blackness + + + -3.561099 56.0053883 + -3.4822476 56.0374141 + + dac.02001527 + + + 2004 2006-362032 Lee on Solent & Selsey Bill + + + -1.3946481 50.7110449 + -0.7384588 50.8901208 + + dac.02001528 + + + 2005 2006-362047 Portsmouth Harbour + + + -1.1759502 50.7901485 + -1.0895702 50.8454256 + + dac.02001529 + + + 2004 2006-362050 Chichester Harbour + + + -0.9778137 50.7793046 + -0.8105757 50.8450041 + + dac.02001530 + + + 2005 2006-362051 Langstone Harbour + + + -1.0421699 50.7922678 + -0.9916623 50.8449799 + + dac.02001531 + + + 2004 2006-362058 River Fowey & Par Sands + + + -4.7074551 50.3266174 + -4.6247764 50.3485777 + + dac.02001532 + + + 2005 2006-362059 River Fowey Fowey Harbour + + + -4.6431301 50.3268797 + -4.629779 50.351583 + + dac.02001533 + + + 2005 2006-362190 Forth Deep Water Channel + + + -3.3859683 55.9959502 + -3.3155786 56.0273625 + + dac.02001534 + + + 2005 2006-362191 Forth Spoil Ground + + + -3.296135 56.0129617 + -3.2334479 56.0232575 + + dac.02001535 + + + 2005 2006-362403 Dundee Queen Elizabeth Wharf to Princess Alexandra Wharf + + + -2.9410788 56.4599939 + -2.9215798 56.4659088 + + dac.02001536 + + + 2005 2006-362404 Dundee Caledon East Wharf to Prince Charles Wharf + + + -2.9283104 56.4616636 + -2.9164716 56.4657077 + + dac.02001537 + + + 2005 2006-362405 Dundee Queen Elizabeth Wharf to Princess Alexandra Wharf + + + -2.9559312 56.4577804 + -2.9370322 56.4649801 + + dac.02001538 + + + 2005 2006-362406 Dundee Lady Shoal to Gaa Sand + + + -2.8401651 56.4481312 + -2.6658587 56.4676799 + + dac.02001539 + + + 2005 2006-362407 Approaches to River Tay + + + -2.6860602 56.4491663 + -2.6293239 56.4777347 + + dac.02001540 + + + 2005 2006-362408 Dundee Main Channel - Rail Bridge to Road Bridge + + + -2.9905867 56.4323554 + -2.9375187 56.4543014 + + dac.02001541 + + + 2005 2006-362409 Dundee Dundee Harbour to Spoil Ground + + + -2.9543893 56.4524454 + -2.9137866 56.4654319 + + dac.02001542 + + + 2005 2006-362435 Cattewater Millbay Docks + + + -4.1555027 50.3635419 + -4.1519018 50.3650909 + + dac.02001543 + + + 2005 2006-362449 Forth North Channel + + + -3.1035602 56.0454427 + -3.057644 56.0572845 + + dac.02001544 + + + 2005 2006-362494 Cowes Harbour Shepards Wharf + + + -1.2940665 50.7589725 + -1.2912639 50.7610511 + + dac.02001545 + + + 2005 2006-362691 Great Yarmouth River Yare + + + 1.7293763 52.5797808 + 1.7326456 52.5845083 + + dac.02001546 + + + 2005 2006-362692 Great Yarmouth River Yare + + + 1.7281428 52.5841804 + 1.7304882 52.5891058 + + dac.02001547 + + + 2005 2006-362693 Great Yarmouth River Yare + + + 1.7254839 52.5883273 + 1.7292896 52.5933194 + + dac.02001548 + + + 2005 2006-362694 Great Yarmouth River Yare + + + 1.7253577 52.592782 + 1.7272184 52.5978286 + + dac.02001549 + + + 2005 2006-362695 Great Yarmouth River Yare + + + 1.7258223 52.5973486 + 1.7272403 52.6019118 + + dac.02001550 + + + 2005 2006-362696 Great Yarmouth River Yare + + + 1.7253438 52.5973805 + 1.7264895 52.6017948 + + dac.02001551 + + + 2005 2006-362697 Great Yarmouth River Yare + + + 1.7235382 52.601544 + 1.7264555 52.6063793 + + dac.02001552 + + + 2005 2006-362698 Forth Limekilns to Rosyth + + + -3.4955894 55.9983959 + -3.4182743 56.0277938 + + dac.02001553 + + + 2005 2006-362699 Great Yarmouth River Yare Entrance + + + 1.7335452 52.5711262 + 1.7416341 52.5735202 + + dac.02001554 + + + 2005 2006-362700 Great Yarmouth River Yare + + + 1.7321924 52.5718117 + 1.7343654 52.5757202 + + dac.02001555 + + + 2005 2006-362701 Great Yarmouth River Yare + + + 1.7325361 52.5755985 + 1.733616 52.5802599 + + dac.02001556 + + + 2005 2006-362702 Great Yarmouth River Yare + + + 1.731297 52.5753632 + 1.7335955 52.580311 + + dac.02001557 + + + 2006 2008-024616 Cattewater Harbour + + + -4.1361337 50.3580584 + -4.107487 50.369248 + + dac.02001558 + + + 2006 2008-025614 Falmouth Harbour Dock Basin + + + -5.0560906 50.1523199 + -5.042601 50.1625719 + + dac.02001559 + + + 2006 2008-26134 Folkstone Harbour and Approaches + + + 1.1875616 51.0760116 + 1.1963164 51.0801445 + + dac.02001560 + + + 2006 2008-026156 Cattewater Harbour + + + -4.1335529 50.3598297 + -4.1091968 50.3672265 + + dac.02001561 + + + 2006 2008-026258 River Fowey Fowey Harbour + + + -4.6455188 50.3266728 + -4.6251036 50.3513248 + + dac.02001562 + + + 2006 2008-026267 River Fowey Fowey Harbour + + + -4.6437715 50.3269393 + -4.6297227 50.3464125 + + dac.02001563 + + + 2006 2006-374240 Falmouth Harbour North of the Docks Basin + + + -5.0548669 50.1558996 + -5.0510735 50.1608354 + + dac.02001564 + + + 2006 2006-376524 Approaches to Great Yarmouth and River Yare Blk1 + + + 1.7224812 52.5528071 + 1.807658 52.6097171 + + dac.02001565 + + + 2006 2006-337313 Falmouth Harbour North of the Docks Basin + + + -5.0548784 50.1558997 + -5.0501065 50.1608288 + + dac.02001566 + + + 2006 2006-376357 River Tay Lady Shoal + + + -2.8391063 56.4504704 + -2.7675992 56.4591135 + + dac.02001567 + + + 2006 2006-376357 River Tay Tay Bridge to Old Channel + + + -3.043548 56.4191389 + -2.9850148 56.4429136 + + dac.02001568 + + + 2006 2006-356357 Approaches to River Tay + + + -2.6859025 56.4492192 + -2.6321203 56.4766525 + + dac.02001569 + + + 2006 2006-376357 Dundee Princess Alexandra Wharf to Prince Charles Wharf + + + -2.9410795 56.4599849 + -2.9216014 56.4657937 + + dac.02001570 + + + 2006 2006-376357 Dundee Caledon East Wharf to Prince Charles Wharf + + + -2.9283145 56.4616555 + -2.9164837 56.4657177 + + dac.02001571 + + + 2006 2006-376357 Dundee Tay Bridge to Eastern Wharf + + + -2.9559901 56.4577626 + -2.9370424 56.4649944 + + dac.02001572 + + + 2006 2006-376357 Dundee Dundee Harbour to Spoil Ground + + + -2.95423 56.4525167 + -2.9136849 56.4653441 + + dac.02001573 + + + 2006 2006-376524 Approaches to Great Yarmouth and River Yare + + + 1.7224013 52.5528558 + 1.8076492 52.6097454 + + dac.02001574 + + + 2006 2006-402262 Forth Bo Ness Spoil Ground + + + -3.636586 56.0181992 + -3.5478863 56.0441452 + + dac.02001575 + + + 2006 2006-406781 Forth Deep Water Channel + + + -3.2465808 56.0225062 + -3.1709604 56.056959 + + dac.02001576 + + + 2006 2007-14854 Fishguard + + + -4.988597 52.0013223 + -4.9695877 52.0147733 + + dac.02001577 + + + 2007 2007-014853 River Fowey Fowey Harbour + + + -4.6437079 50.3269164 + -4.6245674 50.3514783 + + dac.02001578 + + + 2007 2007-16470 Forth Deep Water Channel + + + -3.1883595 56.0383382 + -3.128205 56.0809947 + + dac.02001579 + + + 2007 2007-028134 River Fowey Fowey Harbour + + + -4.6438985 50.327045 + -4.6247871 50.3516103 + + dac.02001580 + + + 2007 2007-002936 Isle of Wight - River Medina + + + -1.3085855 50.7326368 + -1.2757401 50.7687252 + + dac.02001581 + + + 2007 2007-029367 Isle of Wight - River Medina + + + -1.2923566 50.7015945 + -1.2784168 50.7333551 + + dac.02001582 + + + 2007 2007-42489 Cattewater Harbour + + + -4.1354101 50.3580592 + -4.1073033 50.3689885 + + dac.02001583 + + + 2007 2007-051856 Falmouth Harbour Yacht Haven + + + -5.0650814 50.1530766 + -5.0629092 50.1547288 + + dac.02001584 + + + 2007 2007-059499 Great Yarmouth River Yare Entrance + + + 1.7337336 52.5713152 + 1.741448 52.5733769 + + dac.02001585 + + + 2007 2007-059499 Approaches to Great Yarmouth + + + 1.7355649 52.5709703 + 1.7704842 52.5848347 + + dac.02001586 + + + 2007 2007-059499 Approaches to Great Yarmouth West of Corton Sand + + + 1.7722704 52.568185 + 1.7990825 52.5925773 + + dac.02001587 + + + 2007 2007-059499 Great Yarmouth Holm Channel Blk1 + + + 1.7722524 52.5564807 + 1.8070605 52.5687842 + + dac.02001588 + + + 2007 2007-059499 Great Yarmouth Holm Channel Blk2 + + + 1.7726031 52.546378 + 1.8071122 52.5517274 + + dac.02001589 + + + 2007 2007-059499 Great Yarmouth Holm Channel South + + + 1.7728633 52.544457 + 1.8069652 52.5543648 + + dac.02001590 + + + 2007 2007-059499 Great Yarmouth Holm Channel Blk3 + + + 1.7713518 52.5512996 + 1.8071995 52.5568091 + + dac.02001591 + + + 2007 2007-059499 Great Yarmouth West of Corton Sand Blk1 + + + 1.7658617 52.5613477 + 1.7757688 52.5846273 + + dac.02001592 + + + 2007 2007-059499 Great Yarmouth Northwest of Corton Sand + + + 1.7537118 52.5845696 + 1.789501 52.5954501 + + dac.02001593 + + + 2007 2007-059499 Great Yarmouth West of Corton Sand Blk2 + + + 1.7656836 52.5514984 + 1.7892984 52.593286 + + dac.02001594 + + + 2007 2007-059499 Great Yarmouth South of Wellington Pier + + + 1.7392697 52.5935086 + 1.7556593 52.5956235 + + dac.02001595 + + + 2007 2007-059499 Great Yarmouth Gorleston Road Blk1 + + + 1.7532274 52.5549355 + 1.7763626 52.5614214 + + dac.02001596 + + + 2007 2007-059499 Great Yarmouth Gorleston Road Blk2 + + + 1.7537715 52.5481434 + 1.7763905 52.5551397 + + dac.02001597 + + + 2007 2007-059499 Great Yarmouth North of Great Yarmouth Outer Harbour + + + 1.7375257 52.5844285 + 1.7712108 52.5937551 + + dac.02001598 + + + 2007 2007-059499 Great Yarmouth South of River Yare Entrance + + + 1.7333554 52.5613824 + 1.7695604 52.5713698 + + dac.02001599 + + + 2007 2007-059499 South of Great Yarmouth White Swan + + + 1.733765 52.54919 + 1.7592293 52.5637923 + + dac.02001600 + + + 2007 2007-061352 Approaches to Chichester + + + -0.9546977 50.7457762 + -0.910697 50.7781082 + + dac.02001601 + + + 2007 2007-061346 Fowey Harbour + + + -4.6438374 50.3269878 + -4.6295081 50.3463345 + + dac.02001602 + + + 2007 2007-63437 Forth Oxcar Spoil Ground + + + -3.2962406 56.0128642 + -3.2334422 56.0233222 + + dac.02001603 + + + 2007 2007-059746 Great Yarmouth River Yare + + + 1.7227635 52.5715254 + 1.7345578 52.6066832 + + dac.02001604 + + + 2007 2007-75136 Cromarty Firth Cromarty Harbour Area 3 + + + -4.0711644 57.6778936 + -3.9828173 57.6960469 + + dac.02001605 + + + 2007 2007-75136 Cromarty Firth Cromarty Harbour Area 4 + + + -3.9983055 57.6585338 + -3.9011456 57.6940622 + + dac.02001606 + + + 2007 2007-75136 Cromarty Firth Cromarty Harbour Nigg Pier + + + -4.0568731 57.6899241 + -4.030173 57.6945345 + + dac.02001607 + + + 2007 2007-75136 Cromarty Firth Invergordon Queens Dock + + + -4.1783303 57.6838237 + -4.1752469 57.6866069 + + dac.02001608 + + + 2007 2007-75136 Cromarty Firth Invergordon + + + -4.1818257 57.6822629 + -4.1542666 57.6873439 + + dac.02001609 + + + 2007 2007-75136 Cromarty Firth Cromarty Harbour Saltburn Pier Feb + + + -4.1437538 57.6869445 + -4.1312047 57.6887139 + + dac.02001610 + + + 2007 2007-75136 Cromarty Firth Cromarty Harbour Saltburn Pier June + + + -4.1473592 57.6860658 + -4.1283066 57.690343 + + dac.02001611 + + + 2007 2007-75136 Cromarty Firth Cromarty Harbour + + + -4.1706302 57.6843965 + -4.1667026 57.6858732 + + dac.02001612 + + + 2007 2007-079297 Great Yarmouth River Yare Brush Bend + + + 1.7321816 52.5718241 + 1.7342088 52.5757896 + + dac.02001613 + + + 2007 2007-83064 Firth of Clyde Clydeport + + + -4.337526 55.8514226 + -4.2451869 55.8698592 + + dac.02001614 + + + 2007 2007-87548 Folkstone Harbour + + + 1.1856958 51.0758722 + 1.1963041 51.0807682 + + dac.02001615 + + + 1986 HI321 Outer Silver Pit + + + 0.9764193 53.8225499 + 1.6047231 54.5453498 + + dac.02001616 + + + 1989 HI465 Western Approaches to the English Channel + + + -7.0927904 49.4909285 + -5.7244767 50.0778272 + + dac.02001617 + + + 1990 HI487 Cockle Shoal and Caister Road + + + 1.7045161 52.6134214 + 1.8164149 52.7127456 + + dac.02001618 + + + 1992 HI544 Cockle Shoal + + + 1.7196076 52.6863948 + 1.7895281 52.715093 + + dac.02001619 + + + 1994 HI622 Cockle Shoal + + + 1.7177771 52.6851382 + 1.7933146 52.7163305 + + dac.02001620 + + + 1995 HI660 Cockle Shoal + + + 1.7195073 52.6859874 + 1.7922446 52.715488 + + dac.02001621 + + + 1996 HI686 Cockle Shoal and Caister Road + + + 1.7195587 52.6464021 + 1.8219411 52.7155288 + + dac.02001622 + + + 1997 HI736 Goodwin Sands Gull Stream + Side scan sonar 3000 (type 2053) was used for HI 736. + + + 1.4406109 51.2490931 + 1.5118927 51.3069847 + + dac.02001623 + + + 1997 HI738 Goodwin Sands Gull Stream 100m + Ultra Side Scan Sonar 3000 (Type 2053) was used during the survey. + + + 1.4279351 51.1606613 + 1.5953161 51.2718162 + + dac.02001624 + + + 1997 HI741 Goodwin Sands North Head of South Calliper + + + 1.5565496 51.2459112 + 1.5962683 51.2681728 + + dac.02001625 + + + 1997 HI738 Goodwin Sands Gull Stream 75m + Side scan sonar 3000 (type 2053) was used for HI 738. + + + 1.4775047 51.2637489 + 1.5984408 51.361226 + + dac.02001626 + + + 1997 HI737 South Sand Head + Ultra Side scan sonar 3000 (type 2053) was used during this survey. + + + 1.4590295 51.1310045 + 1.5289758 51.1750711 + + dac.02001627 + + + 1994 HI631 South West Sandettie + Ultra side scan sonar 3000 (type 2053) was used for HI 631. + + + 1.7229083 51.1494437 + 1.7971416 51.1853726 + + dac.02001628 + + + 1997 HI744 South West Sandettie + + + 1.7240139 51.1496504 + 1.7951622 51.1850637 + + dac.02001629 + + + 1996 HI692 Deep Water Route + + + 1.8049292 51.2017918 + 1.8963243 51.2658725 + + dac.02001630 + + + 1997 HI746 Deep Water Route + + + 1.805491 51.201901 + 1.89625 51.2657153 + + dac.02001631 + + + 1997 HI699 Southern Approaches to the Needles Channel + + + -1.6488826 50.6431988 + -1.5976684 50.671915 + + dac.02001632 + + + 1995 HI652-HI655-HI659 Long Sand Head and Black Deep + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 1.4775834 51.7379073 + 1.6676372 51.8338254 + + dac.02001633 + + + 1997 HI743 Long Sand Head and Black Deep + + + 1.4782846 51.7371139 + 1.6489055 51.8326619 + + dac.02001634 + + + 1997 HI730 Flamborough Head Ground to Whitby Ground Blk2 + Survey vessels MV STM Vega & MV Skomer were used to collect data. +GeoAcoustics 159D dual channel side scan sonar was used for offshore work. EG & G 272 side scan sonar was used for the inshore work. +A Van Veen grab was used for obtaining samples. + + + -0.148134 54.1067271 + 0.3039396 54.5945701 + + dac.02001635 + + + 1997 HI756 South West Bound Deep Water Route + + + 1.7820256 51.2670089 + 1.875108 51.3332068 + + dac.02001636 + + + 1997 HI728 Duddon Sands to Mull of Galloway Area 1 + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. +Atlas Deso 25 Echo sounder was used to ascertain depths. + + + -4.4092008 54.1459009 + -3.8888557 54.351464 + + dac.02001637 + + + 1994 HI658 Shingles Bank + + + -1.6693433 50.6522253 + -1.5368568 50.7194182 + + dac.02001638 + + + 1997 HI728 Duddon Sands to Mull of Galloway Area 2 + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. +Atlas Deso 25 Echo sounder was used to ascertain depths. + + + -3.9114956 54.1455824 + -3.4460401 54.3509886 + + dac.02001639 + + + 1997 HI733 Corton Sand and Holm Channel + + + 1.77237 52.4968749 + 1.8706084 52.5867076 + + dac.02001640 + + + 1997 HI734 The Roads + + + 1.7331207 52.4705784 + 1.8411708 52.5884663 + + dac.02001641 + + + 1997 HI735 Approaches to Lowestoft + + + 1.7317602 52.4387961 + 1.815532 52.4863817 + + dac.02001642 + + + 1998 HI742 South Ship Head + + + 1.5391311 51.8403065 + 1.6441517 51.8989273 + + dac.02001643 + + + 1997 H693 Kentish Knock + + + 1.4460613 51.5366695 + 1.6874799 51.7260079 + + dac.02001644 + + + 1996 HI706 Point of Ayre to Barrow + E.G & G 260Th side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + -4.8960283 53.9579134 + -3.2817607 54.180367 + + dac.02001645 + + + 1996 HI705 Isle of Man to Liverpool Bay Blk1 + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + + -4.8205089 53.7929686 + -3.9467759 53.9534963 + + dac.02001646 + + + 1998 HI765 Cockle Shoal and Caister Road + + + 1.7142495 52.6859532 + 1.7918446 52.7150362 + + dac.02001647 + + + 1998 HI766 Corton Sand and Holm Channel + + + 1.7720438 52.4782876 + 1.8610985 52.6011335 + + dac.02001648 + + + 1998 HI767 Approaches to Lowestoft + + + 1.731852 52.439212 + 1.8160303 52.4869527 + + dac.02001649 + + + 1998 HI768 South Ship Head + + + 1.5383951 51.8405422 + 1.6441588 51.8988578 + + dac.02001650 + + + 1998 HI769 Long Sand Head to Black Deep + + + 1.4784298 51.7377907 + 1.6488965 51.8335467 + + dac.02001651 + + + 1998 HI823 Sunk Anchorage + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 1.6452739 51.8805478 + 1.6932515 51.9109576 + + dac.02001652 + + + 1998 HI774 Deep Water Route + Ultra side scan sonar 3000 (Type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.8620529 51.241512 + 1.9575392 51.3238034 + + dac.02001653 + + + 1998 HI771 North West Sandettie and Deep Water Route + Ultra side scan sonar 3000 (type 2053) was used to interpret the seabed and a shipex grab was used to obtain samples. + + + 1.9175763 51.3103069 + 2.0554249 51.4249802 + + dac.02001654 + + + 1988 HI423 Kentish Knock + Waverley 3000 side scan sonar was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.4412482 51.5347798 + 1.6796057 51.7276139 + + dac.02001655 + + + 1998 HI425 Goodwin Sands Gull Stream + Waverley 3000 side scan sonar was used for HI 425. + + + 1.4416023 51.2506028 + 1.5118075 51.3070873 + + dac.02001656 + + + 1998 HI511 Goodwin Sands and Gull Stream + Waverly 3000 side sacn sonar was used during this survey. + + + 1.4576514 51.1613429 + 1.5787153 51.2403602 + + dac.02001657 + + + 1994 HI629 Goodwin Sands Gull Stream + + + 1.440597 51.2492671 + 1.5126445 51.3075678 + + dac.02001658 + + + 1994 HI630 Goodwin Sands South Sand Head + + + 1.4582242 51.1315425 + 1.5300239 51.1757484 + + dac.02001659 + + + 1998 HI756 South West Bound Deep Water Route + Ultra side san sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.7986162 51.251887 + 1.9617802 51.3790604 + + dac.02001660 + + + 1998 HI772 Tail of the Falls + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 1.6700931 51.1442124 + 1.7284604 51.1988872 + + dac.02001661 + + + 1998 HI770 Margate Road to Margate Hook Blk1 + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 1.4268559 51.3554287 + 1.600348 51.4544613 + + dac.02001662 + + + 1998 HI770 Margate Road to Margate Hook Blk2 + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.1556803 51.3822798 + 1.439175 51.4485117 + + dac.02001663 + + + 1998 HI820 Goodwin Sands North Head of South Calliper + Side scan sonar 3000 (type 2053) was used for HI 820. + + + 1.5545485 51.239206 + 1.5964396 51.2695074 + + dac.02001664 + + + 1996 HI690 Shipwash to Black Deep Blk2 + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.5174471 51.8064028 + 1.6395708 51.9334572 + + dac.02001665 + + + 1997 HI745 Tail of the Falls + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.6400304 51.1236521 + 1.7504513 51.2371594 + + dac.02001666 + + + 1998 HI758 Approaches to the River Ribble Blk2 + Side scan sonar type 2034 was used to interpret the seafloor and shipex grab was used to obtain samples. + + + -3.4495148 53.8554781 + -3.2183327 53.960793 + + dac.02001667 + + + 1989 HI459 Sandettie to South Falls Gap + + + 1.6393575 51.1148954 + 1.7284064 51.1999654 + + dac.02001668 + + + 1990 HI491 Tail of the Falls + + + 1.6438269 51.1256484 + 1.7292773 51.2010845 + + dac.02001669 + + + 1991 HI518 Tail of the Falls + + + 1.6429262 51.1259029 + 1.7420748 51.2403269 + + dac.02001670 + + + 1992 HI551 Tail of the Falls + Dowty side scan sonar 3000 (sonar 2053) was used for HI 551. + + + 1.6710622 51.1438994 + 1.7285767 51.1991783 + + dac.02001671 + + + 1993 HI577 Tail of the Falls + + + 1.6715522 51.1433354 + 1.7292265 51.1988759 + + dac.02001672 + + + 1994 HI632 Tail of the Falls + + + 1.6418036 51.1220571 + 1.7421839 51.2411645 + + dac.02001673 + + + 1995 HI648 Tail of the Falls + + + 1.6709975 51.1428159 + 1.7285383 51.1989243 + + dac.02001674 + + + 1996 HI691 Tail of the Falls + + + 1.6691819 51.1435294 + 1.7293399 51.1991809 + + dac.02001675 + + + 1998 HI801 Flamborough Head Ground + GeoAcoustics 159D dual channel side scan sonar was used for offshore work. +Van Veen grab was used for obtaining samples. + + + 0.2790117 54.1131561 + 0.6014439 54.5393522 + + dac.02001676 + + + 1998 HI758 Approaches to the River Ribble Blk3 + + + -3.443537 53.7845873 + -3.1971806 53.8624837 + + dac.02001677 + + + 1998 HI758 Approaches to the River Ribble Blk4 + + + -3.3381244 53.6981401 + -3.1735398 53.7911049 + + dac.02001678 + + + 1998 HI728 Duddon Sands to Mull of Galloway Area 5 + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. +Atlas Deso 25 Echo sounder was used to ascertain depths. + + + -4.3912267 54.5800634 + -3.7106605 54.7578442 + + dac.02001679 + + + 1996 HI707 Drillstone to South Falls + E.G & G 260th side scan sonar was used to interpret seabed. Van Veen shipex grab was used to obtain samples. + + + 1.6250405 51.3402721 + 1.9300463 51.4574631 + + dac.02001680 + + + 1994 HI647 South Foreland to Ramsgate Blk3 + + + 1.3782174 51.2940434 + 1.5472084 51.3445843 + + dac.02001681 + + + 1998 HI758 Approaches to the River Ribble Blk5 + + + -3.3383018 53.6066879 + -3.1585609 53.7028237 + + dac.02001682 + + + 1991 HI513 Eastern Approaches to Great Yarmouth + Dowty side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.7322739 52.4969059 + 1.8685336 52.6207005 + + dac.02001683 + + + 1993 HI569 Middle Scroby to Winterton Ness + Dowty side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.6613471 52.5767948 + 1.9045148 52.7594537 + + dac.02001684 + + + 1995 HI661-HI672 Winterton Shoal and Newarp Banks + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.7428841 52.71392 + 1.9606293 52.7965617 + + dac.02001685 + + + 1988 HI419-HI420 Long Sand Head and Black Deep + Waverley 3000 side scan sonar was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.4799194 51.7153133 + 1.6677099 51.8264757 + + dac.02001686 + + + 1994 HI575 Rough Shoals + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 1.3891201 51.813405 + 1.5326382 51.9202511 + + dac.02001687 + + + 1999 HI685 Approaches to Folkestone + + + 0.9560972 50.8923931 + 1.334992 51.1133159 + + dac.02001688 + + + 1992 HI555 Deep Water Route + Dowty side scan sonar 3000 was used for HI 555. + + + 1.8369856 51.2223513 + 2.0592496 51.4267319 + + dac.02001689 + + + 1995 HI645 - 650 North West Sandettie and Deep Water Route + + + 1.9193562 51.3096528 + 2.0568286 51.4252487 + + dac.02001690 + + + 1999 HI844 Cockle Gatway to Caister Shoal + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.6809943 52.6465694 + 1.8204374 52.7621215 + + dac.02001691 + + + 1996 HI694 Herne Bay + Ultra side scan sonar 3000 (tYPE 2053) was used for HI 694. + + + 0.9426068 51.3492024 + 1.169403 51.4321952 + + dac.02001692 + + + 1988 HI424 The Swale Estuary + Waverley 3000 side scan sonar was used for HI 424. + + + 0.9034058 51.3487224 + 1.176681 51.4349856 + + dac.02001693 + + + 1999 HI845 Newarp Banks + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.8434019 52.7146113 + 1.9601559 52.795634 + + dac.02001694 + + + 1999 HI846 Caister Road to Yarmouth Road + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.7353377 52.5797264 + 1.8211187 52.6537261 + + dac.02001695 + + + 1999 HI847 Cross Sands + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.767593 52.5804632 + 1.9028827 52.7576575 + + dac.02001696 + + + 1999 HI848 The Roads and Holm Channel + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.7330945 52.4805092 + 1.8635104 52.5871973 + + dac.02001697 + + + 1996 HI689 North Shipway + + + 1.5906158 52.0101891 + 1.6687118 52.0569751 + + dac.02001698 + + + 1996 HI690 Shipwash to Black Deep Blk1 + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.3616597 51.5967931 + 1.6876476 51.835336 + + dac.02001699 + + + 1999 HI849 Approaches to Lowestoft and Pakefield Road + + + 1.7327719 52.4392519 + 1.817037 52.4867634 + + dac.02001700 + + + 1999 HI850 North Shipway + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.5910802 52.0102675 + 1.6672528 52.0575528 + + dac.02001701 + + + 1999 HI851 South Ship Head + + + 1.537741 51.8222728 + 1.6441572 51.9344491 + + dac.02001702 + + + 1999 HI852 Long Sand Head to Black Deep Blk1 + + + 1.4773906 51.7374126 + 1.6673873 51.847332 + + dac.02001703 + + + 1999 HI856 Tail of the Varne to Bullock Bank + + + 1.1075008 50.780483 + 1.2891054 50.9260732 + + dac.02001704 + + + 1999 HI799 Approaches to Bristol Channel Blk A1 + SBES = +Atlas Deso 25 Sidesccan = Widescan type 3050 + + + -5.0922015 50.9969423 + -4.7823695 51.261395 + + dac.02001705 + + + 1999 HI855 North Head of Le Colbart + Side scan sonar 3000(Type 2053) was used for HI 855. + + + 1.3510415 50.9319849 + 1.4344862 50.9964319 + + dac.02001706 + + + 1999 HI853 Tail of the Falls + + + 1.6694913 51.1440427 + 1.7310867 51.2074005 + + dac.02001707 + + + 1999 HI857 Dover Strait SW Bound TSS + + + 0.9201643 50.7294424 + 1.0004083 50.7892084 + + dac.02001708 + + + 1999 HI858 Shingles Bank + + + -1.6492712 50.6431613 + -1.5978009 50.6732508 + + dac.02001709 + + + 1988 HI427 North West Sandettie + + + 1.9147137 51.2489397 + 2.0601836 51.4070954 + + dac.02001710 + + + 1989 HI460 Sandettie Deep Water Route + Waverley 3000 side scan sonar was used for HI 460. + + + 1.8568009 51.2638658 + 2.0668824 51.4310241 + + dac.02001711 + + + 1999 HI798 Barnstaple Bay and Approaches Blk2 + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab used to obtain samples. + + + -4.6893196 51.1995463 + -4.491013 51.2586348 + + dac.02001712 + + + 1999 HI854 Noord Hinder South TSS + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 2.2309279 51.6129053 + 2.3694376 51.7068631 + + dac.02001713 + + + 1999 HI843 Blyth to Berwick-upon-Tweed Blk1 + + + -1.2876509 55.2703297 + -0.9621964 55.4131425 + + dac.02001714 + + + 1999 HI852 Long Sand Head to Black Deep Blk2 + + + 1.4773314 51.7375521 + 1.6684531 51.8482732 + + dac.02001715 + + + 1999 HI843 Blyth to Berwick-upon-Tweed Blk2 + + + -1.7829334 55.1527666 + -0.8596639 55.6498223 + + dac.02001716 + + + 2000 HI882 Cockle Shoal + GeoAcoustics side scan sonar 2094 was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.7163847 52.6853339 + 1.7921417 52.7145826 + + dac.02001717 + + + 2000 HI883 Holm Channel + GeoAcoustics side scan sonar 2094 was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.7708861 52.4810017 + 1.8624951 52.6025219 + + dac.02001718 + + + 1993 HI572 North Shipwash to Shipway + Dowty side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.5034412 51.9682341 + 1.6679789 52.0598121 + + dac.02001719 + + + 2000 HI883 Approaches to Lowestoft + + + 1.7330679 52.4390139 + 1.8166992 52.4874094 + + dac.02001720 + + + 2000 HI887 Kings Channel + + + 1.3355416 51.6675179 + 1.5526312 51.8668258 + + dac.02001721 + + + 1988 HI422 Kings Channel + + + 1.337494 51.6715512 + 1.5652796 51.8466442 + + dac.02001722 + + + 1994 HI628 Kings Channel + + + 1.3357406 51.6651906 + 1.5259995 51.8459455 + + dac.02001723 + + + 2000 HI885 South Ship Head + + + 1.5366543 51.837793 + 1.6443324 51.9008688 + + dac.02001724 + + + 2000 HI895 Noord Hinder South TSS + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 2.2292234 51.6122587 + 2.3695197 51.7061633 + + dac.02001725 + + + 2000 HI886 Long Sand to Black Deep + + + 1.4777101 51.7369284 + 1.6484825 51.8470881 + + dac.02001726 + + + 2000 HI894 Shingles Bank + + + -1.6501301 50.6425413 + -1.5975987 50.6734311 + + dac.02001727 + + + 2000 HI911 English Grounds + + + -3.1177112 51.3654705 + -3.0077755 51.4452844 + + dac.02001728 + + + 2000 HI911 Barry Roads + + + -3.2549183 51.3367404 + -3.1240721 51.3917486 + + dac.02001729 + + + 1992 HI550 Margate Hook + Dowty side scan sonar 3000 (sonar 2053) was used for HI 550. + + + 1.1871589 51.3954475 + 1.2282797 51.4100515 + + dac.02001730 + + + 1995 HI656-657 Outer Tongue and Approaches to Queens Channel + + + 1.4029838 51.4276292 + 1.5011154 51.5434108 + + dac.02001731 + + + 1989 HI458 Outer Tongue and Approaches to Queens Channel + Waverley 3000 side scan sonar was used for HI 458. + + + 1.4001872 51.4235667 + 1.6016815 51.5463588 + + dac.02001732 + + + 2000 HI911 Culver Sands + + + -3.3403079 51.2701007 + -3.2183994 51.3143505 + + dac.02001733 + + + 2000 HI889 Tail of the Falls + + + 1.6413807 51.1227642 + 1.7519099 51.2379936 + + dac.02001734 + + + 2000 HI888 South West Sandettie + + + 1.722487 51.149837 + 1.7955774 51.1849145 + + dac.02001735 + + + 2000 HI891 Southern North Sea Deep Water Route + + + 1.8051849 51.201532 + 1.8967511 51.2665458 + + dac.02001736 + + + 2000 HI892 Goodwin Sands Gull Stream + + + 1.4262569 51.2206349 + 1.5707895 51.3531645 + + dac.02001737 + + + 2000 HI897 North Head of Le Colbart + + + 1.3494258 50.9324681 + 1.4353146 50.994503 + + dac.02001738 + + + 2000 HI898 Tail of the Varne to Bullock Bank + + + 1.113822 50.7839657 + 1.2894561 50.9221216 + + dac.02001739 + + + 2000 HI899 Dover Strait SW Bound TSS Route + + + 0.9211809 50.7332462 + 1.0016261 50.7870558 + + dac.02001740 + + + 2000 HI893 South Sand Head + + + 1.4556031 51.132231 + 1.5222842 51.1729024 + + dac.02001741 + + + 2000 HI890 North East and South West Varne + + + 1.269874 50.9195091 + 1.4147007 51.0310439 + + dac.02001742 + + + 2000 HI633 North East Varne + + + 1.3473405 50.9837868 + 1.4126038 51.0292651 + + dac.02001743 + + + 2000 HI634 South West Varne + + + 1.2704062 50.920573 + 1.3240795 50.9521006 + + dac.02001744 + + + 1996 HI705 Isle of Man to Liverpool Bay Blk2 + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + + -3.9873856 53.6302345 + -3.406 53.773246 + + dac.02001745 + + + 2000 HI922 South West TSS + GeoAcoustics side scan sonar (type 2094) was used to interpret the seafloor. + + + 1.8177853 51.3698645 + 1.9159159 51.4136661 + + dac.02001746 + + + 1986 HI314 North Foreland to Drillstone + + + 1.4221201 51.323646 + 1.5983026 51.4563424 + + dac.02001747 + + + 1986 HI195 & HI259 Margate Hook to Margate Road + + + 1.1617315 51.3739863 + 1.4394976 51.4354116 + + dac.02001748 + + + 2000 HI799 Approaches to Bristol Channel Blk B5 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.8520094 50.3180547 + -5.4099102 50.5709299 + + dac.02001749 + + + 2000 HI912 Western Approaches to Casquets TSS Blk1 + MV Granuaile II was used to obtain survey data. +GeoAcoustics Model 159D was used to interpret the seafloor. + + + -3.5943418 49.9324887 + -2.7503026 50.2309863 + + dac.02001750 + + + 1995 HI656-649 North West Sandettie and West Sandettie + + + 1.913607 51.2527094 + 2.0608721 51.371184 + + dac.02001751 + + + 2001 HI940 Cockle Shoal + + + 1.7135396 52.6849625 + 1.7914949 52.7161799 + + dac.02001752 + + + 2001 HI935 South Ship Head + + + 1.5350842 51.8391449 + 1.6445356 51.9018298 + + dac.02001753 + + + 2001 HI941 Approaches to Lowestoft + + + 1.7332751 52.4381472 + 1.8175504 52.487752 + + dac.02001754 + + + 2001 H942 The Roads and Holm Channel + + + 1.7687532 52.4783543 + 1.8628852 52.6224435 + + dac.02001755 + + + 2001 HI936 Long Sand Head to Black Deep + + + 1.4760667 51.7365179 + 1.6491886 51.84862 + + dac.02001756 + + + 2001 HI933 Tail of the Falls + + + 1.670787 51.1432254 + 1.7308788 51.1996535 + + dac.02001757 + + + 2001 HI932-934 North West and West Sandettie + GeoAcoustics side scan sonar (type 2094) was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 1.9123244 51.2507657 + 2.0622329 51.3722545 + + dac.02001758 + + + 2001 HI943 Shingles Bank + + + -1.6361005 50.6492795 + -1.5976016 50.6741119 + + dac.02001759 + + + 2001 HI938-939 Outer Tongue and Approaches to Queens Channel + GeoAcoustics side scan sonar (type 2094) was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 1.40076 51.4279827 + 1.5063866 51.5441041 + + dac.02001760 + + + 1996 HI705 Isle of Man to Liverpool Bay Blk3 + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + + -4.795613 53.4254902 + -3.9465585 53.8410058 + + dac.02001761 + + + 2001 HI944 Nab Tower to Newhaven Area A + GeoAcoustics type 2094 side scan sonar was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 0.0557611 50.7226482 + 0.1880268 50.7793208 + + dac.02001762 + + + 1989 HI461 Well Bank Flat to Indefatigable Banks + SBES = Atlas Deso 25 Side scan = Waverley type 3000 + + + 1.5949855 53.7141131 + 2.1474188 53.9528898 + + dac.02001763 + + + 1993 HI581 Celtic Sea + Dowty Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + -7.2965726 50.7418684 + -6.8869451 50.922853 + + dac.02001764 + + + 1992 HI564 South Eastern Approaches to Southwold + + + 1.7395774 52.1628913 + 1.8525214 52.3528816 + + dac.02001765 + + + 1993 HI606 Approaches to Dover Blk1 + Dowty side scan sonar (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.3184352 51.0868902 + 1.5547101 51.145635 + + dac.02001766 + + + 1991 HI520 Indefatagable Banks to Jim Howe Bank Blk1 + Seabed interpreted from type 3000 side scan sonar and a shipex grab used to obtain samples. + + + 2.2367479 52.9916337 + 2.6705946 53.1927534 + + dac.02001767 + + + 2001 HI799 Approaches to Bristol Channel Blk B6 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.4379091 50.3230954 + -5.15649 50.566691 + + dac.02001768 + + + 1993 HI603 Eastern Gas Fields to Noord Hinder TSS Blk1-2 + Dowty 3000 side scan sonar was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 2.7142254 52.7106912 + 3.010322 53.0090776 + + dac.02001769 + + + 1990 HI496 Casquets Traffic Separation Scheme Blk1 + Seabed interpreted from a Type 3000 side scan sonar and a shipex grab used to obtain samples. + + + -2.8823924 49.7597508 + -2.0320076 50.104665 + + dac.02001770 + + + 1990 HI496 Casquets Traffic Separation Scheme Blk2 + Seabed interpreted from a Type 3000 side scan sonar and a shipex grab used to obtain samples. + + + -3.2829638 49.7080705 + -2.8560908 50.0821533 + + dac.02001771 + + + 2001 HI944 Nab Tower to Newhaven Area D + GeoAcoustics type 2094 side scan sonar was used to interpret the seafloor and a shipex grab used to obtain samples. + + + -0.5093261 50.6869303 + -0.3252258 50.8177363 + + dac.02001772 + + + 2001 HI944 Nab Tower to Newhaven Area F + + + -0.6762578 50.7149051 + -0.4906492 50.8088209 + + dac.02001773 + + + 1994 HI606 Approaches to Dover Blk2 + Side scan sonar 3000 (type 2053) was used for HI 606. + + + 1.3179282 51.0091814 + 1.4797946 51.0980696 + + dac.02001774 + + + 2001 HI799 Approaches to Bristol Channel Blk B2 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -4.9018274 50.7726621 + -4.5899734 51.0125208 + + dac.02001775 + + + 1993 HI571 Approaches to Lowestoft + + + 1.7312747 52.4020153 + 1.7913889 52.4846347 + + dac.02001776 + + + 1989 HI481 Knock Deep Blk1 + Waverley 3000 side scan sonar was used to interpret the seafloor and a shipex grab was used to obtain bottom samples. + + + 1.3778108 51.5066545 + 1.5403018 51.6529488 + + dac.02001777 + + + 1992 HI549 Long Sand Head and Black Deep + Dowty side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.4673052 51.7242514 + 1.6871336 51.8348798 + + dac.02001778 + + + 1995 HI654 Sunk Inner Precautionary Area + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 1.6289635 51.8275499 + 1.6857113 51.8687918 + + dac.02001779 + + + 1994 HI624 Approaches to Lowestoft + + + 1.7314252 52.4022149 + 1.7939956 52.4858161 + + dac.02001780 + + + 1995 HI663-HI664 Approaches to Lowestoft + + + 1.729202 52.4026198 + 1.8218608 52.504583 + + dac.02001781 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A007 + Survey vessels MV Betelgeuze & STM Vega were used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 2.0076025 52.6634087 + 2.2529134 52.7709186 + + dac.02001782 + + + 1989 HI481 Knock Deep Blk2 + Waverley 3000 side scan sonar was used to interpret the seafloor and a shipex grab was used to obtain bottom samples. + + + 1.4395792 51.5968331 + 1.6845087 51.7994477 + + dac.02001783 + + + 1991 HI514 Approaches to Lowestoft + + + 1.7314573 52.4032979 + 1.7905637 52.4839528 + + dac.02001784 + + + 2002 HI986 Cockle Shoal + + + 1.720098 52.6855644 + 1.7915437 52.7157455 + + dac.02001785 + + + 2002 HI987 Caister Shoal + + + 1.7271563 52.6462989 + 1.8217633 52.6936233 + + dac.02001786 + + + 1992 HI560 Haddock Bank Blk2 + + + 1.3926753 53.1568805 + 1.671329 53.2862552 + + dac.02001787 + + + 1992 HI560 Haddock Bank Blk1 + + + 1.3934 53.3832068 + 1.4960618 53.4987264 + + dac.02001788 + + + 2002 HI999 Approaches to Lowestoft + + + 1.7318829 52.4378374 + 1.8164844 52.4874876 + + dac.02001789 + + + 2002 HI992 North Shipwash + + + 1.5911855 52.0095465 + 1.6694821 52.0579821 + + dac.02001790 + + + 2002 HI2988 Caister Road + + + 1.7376906 52.6170038 + 1.820837 52.6511036 + + dac.02001791 + + + 1984 HI165 Gareloch + + + -4.8416704 56.0259902 + -4.7903372 56.0791301 + + dac.02001792 + + + 1997 HI750 Passage de la Deroute + + + -1.9307338 49.0579055 + -1.8034006 49.2563267 + + dac.02001793 + + + 1981 HI16 Plymouth Exercise Area Blk1 + + + -4.4534436 50.1648474 + -4.2320987 50.2545915 + + dac.02001794 + + + 1981 HI16 Plymouth Exercise Area Blk2 + + + -4.2457317 50.1647862 + -3.9984722 50.2550291 + + dac.02001795 + + + 1992 HI554 Whitby Fine Ground to Inner Bank Blk1 + Dowty side scan sonar type 2053 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + -0.5353157 54.5126962 + 0.3372628 54.815537 + + dac.02001796 + + + 2002 HI994 Black Deep + + + 1.3620681 51.600096 + 1.620965 51.7808807 + + dac.02001797 + + + 2002 HI991 Tail of the Falls + + + 1.6721052 51.1438989 + 1.7300844 51.1985845 + + dac.02001798 + + + 2002 HI989 Holm Channel + GeoAcoustics 2094 side scan sonar was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 1.7685498 52.4752136 + 1.8633196 52.6231938 + + dac.02001799 + + + 1987 HI363 Sea of the Hebrides East + + + -6.7428301 57.0642908 + -6.5222466 57.2563952 + + dac.02001800 + + + 1993 HI605 Firth of Forth + Surveyed by Oceonics (UK) Ltd, surveying vessels MV Antares and MV Hydrotech were used to obtain survey data. + +EG & G 260 side scan sonar was used to interpret the seafloor and a Van Veeb grab used to obtain samples. + + + -2.8783583 56.0259695 + -2.4893666 56.1722505 + + dac.02001801 + + + 2002 HI990 Needles Channel + + + -1.6378815 50.6481729 + -1.5880835 50.674391 + + dac.02001802 + + + 2002 HI1002 Bognor Regis to Worthing BlkC + GeoAcoustics type 2094 side scan sonar was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + -0.5094103 50.5799148 + -0.3223653 50.7235476 + + dac.02001803 + + + 2002 HI1002 Bognor Regis to Worthing BlkA + GeoAcoustics type 2094 side scan sonar was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + -0.6788416 50.5507502 + -0.4910953 50.6974923 + + dac.02001804 + + + 1991 HI543 Cromer to North Haisborough + Dowty side scan sonar type 2053 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 1.3689022 52.8776918 + 1.5376235 53.0177808 + + dac.02001805 + + + 1992 HI546 Approaches to Lowestoft + owty side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.7287048 52.4026251 + 1.8221473 52.5051373 + + dac.02001806 + + + 1988 HI421 Gunfleet Sand to the Naze + Waverley 3000 side scan sonar was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.229495 51.731782 + 1.4501862 51.8809477 + + dac.02001807 + + + 2002 HI1002 Bognor Regis to Worthing BlkB + GeoAcoustics type 2094 side scan sonar was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + -0.6775238 50.6592473 + -0.4914489 50.7476625 + + dac.02001808 + + + 2002 HI995 Knock Deep + + + 1.4203394 51.5756245 + 1.6897058 51.7988554 + + dac.02001809 + + + 2002 HI996 Knock Deep + GeoAcoustics 2094 side scan sonar was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 1.5692248 51.6955694 + 1.6526072 51.7367035 + + dac.02001810 + + + 2002 HI997 Fishermans Gat + + + 1.3749356 51.510801 + 1.5071489 51.6441048 + + dac.02001811 + + + 1985 HI197 Approaches to the Rivers Blackwater and Couch + + + 0.9682023 51.6248045 + 1.2844365 51.819288 + + dac.02001812 + + + 1996 HI647 South Foreland to Ramsgate + + + 1.356601 51.0962088 + 1.4282502 51.1873844 + + dac.02001813 + + + 1996 HI687 Corton Sand and Foul Holm Channel + + + 1.7694092 52.4968873 + 1.8703062 52.5865968 + + dac.02001814 + + + 1996 HI688 Approaches to Lowestoft + + + 1.7328485 52.4392486 + 1.8147412 52.4865776 + + dac.02001815 + + + 1995 HI674 Smiths Knoll to Sandettie + + + 2.251725 51.7139279 + 2.6226722 52.6918693 + + dac.02001816 + + + 1993 HI576 South West Sandettie + + + 1.7254889 51.1495254 + 1.797787 51.1844771 + + dac.02001817 + + + 1994 HI625 South Ship Head + + + 1.5539962 51.8463209 + 1.6320125 51.899592 + + dac.02001818 + + + 2003 HI1019 Cockle Shoal + + + 1.7320902 52.6739864 + 1.8057982 52.7127145 + + dac.02001819 + + + 2003 HI1020 Holm Channel + + + 1.7675062 52.4800025 + 1.8616404 52.6220977 + + dac.02001820 + + + 1979 K8670 Western Approaches to the Solent + + + -1.849412 50.6217539 + -1.5668257 50.7397769 + + dac.02001821 + + + 2003 HI1021 Approaches to Lowestoft + + + 1.7493779 52.4299498 + 1.8158767 52.4880255 + + dac.02001822 + + + 1990 HI493 North Shipwash + Waverley 3000 side scan sonar was used to interpret the seafloor and a shipex grab was used to obtaind samples. + + + 1.5940621 52.0158207 + 1.6666986 52.0564598 + + dac.02001823 + + + 2003 HI1023 South Ship Head to Black Deep + + + 1.4806849 51.736804 + 1.6508964 51.9004362 + + dac.02001824 + + + 2003 HI1025 Dover Strait Deep Water Route + + + 1.8049009 51.2006759 + 1.8971103 51.266362 + + dac.02001825 + + + 2003 HI799 Approaches to Bristol Channel Blk C3 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.6197857 50.986723 + -5.0412955 51.1798186 + + dac.02001826 + + + 2003 HI1024 Tail of the Falls + GeoAcoustics side scan sonar (type 2094) was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 1.6407654 51.1223608 + 1.7524561 51.2385097 + + dac.02001827 + + + 2002 M3922 Bristol Channel Blk1 + + + -4.5006837 51.163233 + -4.3378775 51.2541059 + + dac.02001828 + + + 2003 HI1026 South West Sandettie + GeoAcoustics 2094 side scan sonar was used during this survey. + + + 1.7229697 51.1492385 + 1.7963653 51.1852214 + + dac.02001829 + + + 2003 HI1027 Goodwin Sands South Sand Head + GeoAcoustic 2094 side scan sonar was used during this survey. + + + 1.4530819 51.1313662 + 1.5857249 51.2439382 + + dac.02001830 + + + 2003 HI1029 Goodwin Sands North Head of South Caliper + GeoAcoustics 2094 side scan sonar was used during this survey. + + + 1.549368 51.2387174 + 1.5958225 51.2788231 + + dac.02001831 + + + 2003 HI1028 Goodwin Sands Gull Stream + GeoAcoustics 2094 side scan sonar was used during this survey. + + + 1.4272113 51.2304676 + 1.5565164 51.3454527 + + dac.02001832 + + + 2003 HI1003 Selsey Bill to Hooe Bank BlkA + + + -0.8468765 50.5238939 + -0.6586244 50.6900673 + + dac.02001833 + + + 2003 HI1004 Medmery Bank + + + -0.9228323 50.6673401 + -0.8277794 50.747789 + + dac.02001834 + + + 2003 HI961 Start Bay to Portland Bill Blk1 + + + -3.2581693 50.237914 + -2.9951613 50.3499137 + + dac.02001835 + + + 2003 HI961 Start Bay to Portland Bill Blk2 + + + -3.0427143 50.320769 + -2.7953996 50.4558698 + + dac.02001836 + + + 2003 HI961 Start Bay to Portland Bill Blk3 + + + -2.8044717 50.3210394 + -2.5620283 50.4561467 + + dac.02001837 + + + 2003 HI961 Start Bay to Portland Bill Blk4 + + + -2.5711964 50.354687 + -2.3268425 50.4762297 + + dac.02001838 + + + 2003 HI961 Start Bay to Portland Bill Blk5 + + + -3.2582723 50.1630833 + -2.9952861 50.2452223 + + dac.02001839 + + + 2003 HI961 Start Bay to Portland Bill Blk6 + + + -3.0043215 50.1796952 + -2.7957785 50.3284187 + + dac.02001840 + + + 2003 HI961 Start Bay to Portland Bill Blk7 + + + -2.8044602 50.2046398 + -2.5620592 50.3286658 + + dac.02001841 + + + 2003 HI961 Start Bay to Portland Bill Blk8 + + + -2.5712181 50.2378208 + -2.3269875 50.3620098 + + dac.02001842 + + + 2003 HI961 Start Bay to Portland Bill Blk9 + + + -2.766036 50.0889334 + -2.5624362 50.2111916 + + dac.02001843 + + + 2003 HI961 Start Bay to Portland Bill Blk10 + + + -2.5711924 50.1202826 + -2.3269493 50.2453285 + + dac.02001844 + + + 2003 HI1005 Southern Approaches to Nab Tower + + + -1.0140067 50.4956722 + -0.8223729 50.6511108 + + dac.02001845 + + + 2003 HI1047 Fast Castle to Great Carr + + + -2.6408984 55.928255 + -2.1735075 56.0796356 + + dac.02001846 + + + 2002 M3922 Bristol Channel Blk2 + + + -4.5066363 51.1618307 + -4.3461657 51.2549483 + + dac.02001847 + + + 2003 HI1051 Southern Approaches to Firth of Forth + + + -2.5183935 55.9223822 + -1.5989182 56.1812312 + + dac.02001848 + + + 2003 HI1061 North Carr to Prail Castle Blk2 + + + -2.7190334 56.4255959 + -2.4823535 56.6043703 + + dac.02001849 + + + 2003 HI1061 North Carr to Prail Castle + + + -2.8087825 56.2803986 + -2.560429 56.4410265 + + dac.02001850 + + + 1990 HI496 Casquets Traffic Separation Scheme Blk3 + Seabed interpreted from a Type 3000 side scan sonar and a shipex grab used to obtain samples. + + + -2.886274 49.9189884 + -2.6090082 50.1222498 + + dac.02001851 + + + 1990 HI496 Casquets Traffic Separation Scheme Blk4 + Seabed interpreted from a Type 3000 side scan sonar and a shipex grab used to obtain samples. + + + -2.6858917 49.9519569 + -2.3994023 50.1571399 + + dac.02001852 + + + 1990 HI496 Casquets Traffic Separation Scheme Blk5 + Seabed interpreted from a Type 3000 side scan sonar and a shipex grab used to obtain samples. + + + -2.4772927 49.986188 + -2.2043134 50.1879614 + + dac.02001853 + + + 1990 HI496 Casquets Traffic Separation Scheme Blk6 + Seabed interpreted from a Type 3000 side scan sonar and a shipex grab used to obtain samples. + + + -2.2681835 50.0209996 + -2.0954867 50.1975131 + + dac.02001854 + + + 2004 H1077 Pakefield Road Blk2 + + + 1.7291964 52.400935 + 1.7966184 52.4441142 + + dac.02001855 + + + 2003 HI1085 Gunna Sound + + + -6.681901 56.533264 + -6.657306 56.606023 + + dac.02001856 + + + 2004 HI1073 Cockle Shoal + + + 1.7327155 52.6743419 + 1.8047542 52.7106396 + + dac.02001857 + + + 2004 HI960 Newhaven Outer Harbour + + + 0.0271684 50.7494514 + 0.089153 50.7817909 + + dac.02001858 + + + 2004 HI1082 Wreck UC78 + + + 1.347934 50.9558706 + 1.3719527 50.9711823 + + dac.02001859 + + + 2004 HI1082 Rye Wreck + + + 0.7681175 50.7116619 + 0.7808038 50.7194855 + + dac.02001860 + + + 2003 2006-361515 The Manacles + + + -5.0416254 50.0258605 + -4.980349 50.0856265 + + dac.02001861 + + + 2004 HI1075 Holm Channel + + + 1.768317 52.4905729 + 1.8386052 52.5928975 + + dac.02001862 + + + 2004 HI1074 Cross Sands Wind Farm Blk2 + + + 1.8252209 52.5784962 + 1.9059614 52.7591697 + + dac.02001863 + + + 2004 HI1074 Cross Sands Wind Farm Blk1 + + + 1.7691167 52.5772992 + 1.8260676 52.6829018 + + dac.02001864 + + + 2004 H1077 Pakefield Road Blk1 + + + 1.7302624 52.3912628 + 1.793418 52.4487145 + + dac.02001865 + + + 2004 HI1079 Tail of the Falls + + + 1.6733674 51.1435513 + 1.7301938 51.199638 + + dac.02001866 + + + 2004 HI1080 North West Sandettie + + + 1.9176314 51.3092106 + 2.0589646 51.4264097 + + dac.02001867 + + + 2004 HI1106 Barnstaple Bay + + + -4.9377165 50.5408321 + -4.9237814 50.5703299 + + dac.02001868 + + + 2004 HI1076 Approaches to Lowestoft + + + 1.7487551 52.4319953 + 1.7931665 52.487453 + + dac.02001869 + + + 2004 HI1081 South West Bound TSS + + + 1.8355455 51.2507797 + 1.9446217 51.376277 + + dac.02001870 + + + 1974 K7102 Exmouth Harbour + + + -3.4608978 50.5750403 + -3.34579 50.6073751 + + dac.02001871 + + + 1982 K9023 Gasker to Flannan Isles Blk1 + + + -7.7940832 57.9960634 + -7.4981812 58.1277661 + + dac.02001872 + + + 1982 K9023 Gasker to Flannan Isles Blk2 + + + -7.650224 58.1218928 + -7.364468 58.2524711 + + dac.02001873 + + + 1984 HI203 Hebrides to Islay + + + -8.1713965 56.8467179 + -7.9135529 57.0065779 + + dac.02001874 + + + 2005 M4347-1 Forth Inchcolm to Oxcar Bank + + + -3.3246952 56.0146132 + -3.2679939 56.0351772 + + dac.02001875 + + + 2005 M4347-2 Forth Oxcars Bank to Eastern Mortimers Deep + + + -3.3099699 56.0192667 + -3.2268391 56.0436083 + + dac.02001876 + + + 2004 2006-362583 Cope Passage Bar + + + -7.1725425 57.7161075 + -7.1116235 57.7649595 + + dac.02001877 + + + 1984 HI202 Lyme Bay + + + -2.8559 50.5808973 + -2.6633266 50.7213956 + + dac.02001878 + + + 2004 HI1078 South Ship Head to Black Deep + + + 1.5026914 51.7468878 + 1.648675 51.8879325 + + dac.02001879 + + + 2004 HI1059 Western Approaches to the English Channel Blk1 + + + -4.6798408 49.5163738 + -3.4185829 49.8511925 + + dac.02001880 + + + 2004 HI1059 Western Approaches to the English Channel Blk2 + + + -5.7566397 49.8012196 + -3.41192 49.9712741 + + dac.02001881 + + + 2005 H1110 Caister Shoal and Caister Road + + + 1.7344613 52.6142171 + 1.8188272 52.6846088 + + dac.02001882 + + + 2005 HI1113 Hemsby Hole + + + 1.6802516 52.6421537 + 1.744585 52.744953 + + dac.02001883 + + + 2005 HI1112 Approaches to Lowestoft + + + 1.7515642 52.4328651 + 1.797792 52.4867618 + + dac.02001884 + + + 2005 HI1120 Tail of the Falls + + + 1.6728215 51.144815 + 1.7292367 51.199607 + + dac.02001885 + + + 2004 HI1059 Western Approaches to the English Channel Blk3 + + + -5.7596862 49.9004971 + -3.4122994 50.2339955 + + dac.02001886 + + + 2003 2006-362601 Coronation Bay + + + -4.2072156 50.3052334 + -4.1952711 50.3153713 + + dac.02001887 + + + 2003 2006-362602 Plymouth + + + -4.1542794 50.3147926 + -4.1518106 50.3294578 + + dac.02001888 + + + 2003 2006-362603 Plymouth + + + -4.1570379 50.3132583 + -4.1516621 50.3295288 + + dac.02001889 + + + 2003 2006-362604 Wembury Bay + + + -4.096118 50.3006846 + -4.0887976 50.3079607 + + dac.02001890 + + + 2005 HI1111 The Roads and Holm Channel + + + 1.732771 52.4800922 + 1.861807 52.621299 + + dac.02001891 + + + 2005 HI1118 Black Deep + + + 1.4871453 51.7331426 + 1.5714255 51.7881508 + + dac.02001892 + + + 2005 HI1114 North Shipwash + + + 1.5926593 52.0104323 + 1.6683039 52.057052 + + dac.02001893 + + + 2005 HI1119 Fishermans Gat and Foulgers Gat + + + 1.3740559 51.5415206 + 1.4722325 51.6641151 + + dac.02001894 + + + 2005 HI1117 Long Sand Head + + + 1.6322744 51.7888811 + 1.6680286 51.8197267 + + dac.02001895 + + + 2005 HI1115 South Ship Head + + + 1.5633548 51.8664196 + 1.6125509 51.9348452 + + dac.02001896 + + + 2005 HI1059 Western Approaches to the English Channel Blk5 + + + -4.6910155 49.4904168 + -3.7055304 49.8437013 + + dac.02001897 + + + 2005 HI1059 Western Approaches to the English Channel Blk6 + + + -5.9248482 49.1303155 + -4.0821496 49.5263867 + + dac.02001898 + + + 2005 HI1116 Sunk and Long Sand Head Blk2 + + + 1.5402768 51.8397791 + 1.6377458 51.8872855 + + dac.02001899 + + + 2005 HI1116 Sunk and Long Sand Head Blk1 + + + 1.5154537 51.7655857 + 1.655542 51.8470719 + + dac.02001900 + + + 2005 HI1072 Solan Bank to Fair Isle Channel Blk1 + + + -3.7906909 59.0193871 + -2.6556953 59.6233787 + + dac.02001901 + + + 2005 HI1072 Solan Bank to Fair Isle Channel Blk2 + + + -5.5252893 58.9811776 + -3.7520048 59.4513601 + + dac.02001902 + + + 2006 HI1161 Cockle Shoal + MV Trian & MV Ping were the survey vessels used to collect data. +The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + 1.7479381 52.6751684 + 1.7943923 52.7018387 + + dac.02001903 + + + 2006 HI1164 Approaches to Lowestoft + MV Trian & MV Ping were the survey vessels used to collect data. +The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + 1.7483318 52.4329032 + 1.8152283 52.4870493 + + dac.02001904 + + + 2006 HI1162 Cross Sand + MV Triad & MV Ping were the survey vessels used to obtain data. + + + 1.8252393 52.5797619 + 1.9023764 52.7584539 + + dac.02001905 + + + 2003 2006-395249 Approaches to Wester Sound + + + -1.7028659 60.1759509 + -1.6757166 60.1899555 + + dac.02001906 + + + 2006 HI1163 Holm Channel + MV Trian & MV Ping were the survey vessels used to collect data. +The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + 1.769228 52.4957292 + 1.8364821 52.5888737 + + dac.02001907 + + + 2006 HI1137 Eastern Approaches to Sanday and Stronsay Blk1 + + + -2.38006 58.9789056 + -1.8335054 59.2771042 + + dac.02001908 + + + 2006 HI1168 Goodwin Sands South Sand Head + + + 1.4559212 51.1309022 + 1.5286473 51.17253 + + dac.02001909 + + + 2006 HI1165 Sunk Inner + The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system. + + + 1.5472666 51.8418988 + 1.6415583 51.8989437 + + dac.02001910 + + + 2006 HI1169 Goodwin Sands Gull Stream + + + 1.4351153 51.2338507 + 1.5144996 51.3064417 + + dac.02001911 + + + 2006 HI1167 Margate Inner Road + + + 1.2969201 51.3884997 + 1.4358577 51.4398638 + + dac.02001912 + + + 2007 HI1223 Long Sand Head + Primary Navigation: POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + 1.5295152 51.767315 + 1.6262878 51.8445273 + + dac.02001913 + + + 2007 HI1222 Sunk Inner + Primary Navigation: Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system. + + + 1.5630029 51.8522552 + 1.6344133 51.8674717 + + dac.02001914 + + + 2007 HI1201 Tremadog Bay + + + -4.4958167 52.7317306 + -4.1351815 52.9160614 + + dac.02001915 + + + 2008 HI1201 Tremadog Bay + + + -4.3590602 52.8674253 + -4.3530524 52.871386 + + dac.02001916 + + + 2008 HI1261 Approaches to Lowestoft + MV Trian & MV Ping were the survey vessels used to collect data. +The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + 1.7545603 52.4342214 + 1.7950037 52.4887806 + + dac.02001917 + + + 2008 HI1254 Stanton Channel + + + -7.2035931 57.6963949 + -6.9687545 57.8382441 + + dac.02001918 + + + 2007 HI1220 Holm Channel + MV Trian & MV Ping were the survey vessels used to collect data. +The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + 1.7545269 52.4969529 + 1.8356625 52.618059 + + dac.02001919 + + + 2008 HI1258 Cockle Shoal + MV Trian & MV Ping were the survey vessels used to collect data. +The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + 1.752624 52.677732 + 1.7910231 52.7013326 + + dac.02001920 + + + 2008 HI1260 Holm Channel + MV Trian & MV Ping were the survey vessels used to collect data. +The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + 1.7544633 52.481713 + 1.8585724 52.6182599 + + dac.02001921 + + + 2008 HI 1241 Inishowen Head to Fanad Head + Part of the Joint Irish Bathymetric Survey (JIBS) + + + -7.8268028 55.0914774 + -6.8006126 55.4385764 + + dac.02001922 + + + 2008 HI1272 Cross Sands + MV Trian & MV Ping were the survey vessels used to collect data. +The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + 1.8263108 52.5799621 + 1.9040797 52.7582251 + + dac.02001923 + + + 2008 HI1263 South Ship Head + + + 1.5630659 51.8811718 + 1.6027511 51.9203851 + + dac.02001924 + + + 2008 HI1264 Sunk Inner + + + 1.5477165 51.8404207 + 1.6353749 51.8865563 + + dac.02001925 + + + 2008 HI1267 Black Deep + + + 1.4866476 51.7367275 + 1.5733492 51.7886801 + + dac.02001926 + + + 2008 HI1268 Fishermans Gat + + + 1.3873631 51.5611611 + 1.431172 51.578964 + + dac.02001927 + + + 2008 HI1269 Outer Tongue + + + 1.4266465 51.4854857 + 1.5235095 51.5434449 + + dac.02001928 + + + 2008 HI1270 Tail of The Falls + + + 1.6746019 51.1441563 + 1.7273855 51.1987838 + + dac.02001929 + + + 2008 HI1283 Waternish Peninsula Minch + MV Seabeam was the surveying vessel used to collect data. + +Positioning equipment used is Applanix POSMV, with CNAV integration + + + -6.694667 57.5836896 + -6.6545428 57.60783 + + dac.02001930 + + + 2008 HI1266 Black Deep + + + 1.3628448 51.6140167 + 1.5413321 51.7611608 + + dac.02001931 + + + 2008 HI1240 Runabay Head to Tuns + Part of the Joint Irish Bathymetric Survey (JIBS). +Additional vessels:- MV Jetstream -Kongsberg EM3002D; MV Victor Henson - Kongsberg EM710. + + + -6.9701102 55.1564289 + -5.9879517 55.3823754 + + dac.02001932 + + + 2009 HI1293 Sunk Inner Blk1 + Primary Navigation: Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system + + + 1.5641865 51.8526281 + 1.6315977 51.8709937 + + dac.02001933 + + + 2009 HI1293 Sunk Inner Blk2 + Primary Navigation: Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system + + + 1.5800482 51.7779818 + 1.6228283 51.7968489 + + dac.02001934 + + + 2009 HI1293 Sunk Inner Blk3 + Primary Navigation: Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system + + + 1.5515922 51.8101176 + 1.5903489 51.8447807 + + dac.02001935 + + + 2009 HI1293 Sunk Inner Blk4 + Primary Navigation: Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system + + + 1.5880029 51.8006072 + 1.6257494 51.8276096 + + dac.02001936 + + + 2007 HI1224 Outer Tongue + + + 1.4042505 51.4863954 + 1.44905 51.541304 + + dac.02001937 + + + 2007 HI1225 Approaches to Queens Channel + Primary Navigation: Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + 1.4101697 51.4234707 + 1.4984159 51.4894243 + + dac.02001938 + + + 1997 HI745 Tail of the Falls Blk1 + + + 1.6952145 51.1786777 + 1.7218806 51.1990155 + + dac.02001939 + + + 1997 HI745 Tail of the Falls Blk2 + + + 1.6963702 51.1787331 + 1.7187208 51.19968 + + dac.02001940 + + + 1997 HI745 Tail of the Falls Blk3 + + + 1.6972525 51.1788829 + 1.7204693 51.1998843 + + dac.02001941 + + + 1997 HI745 Tail of the Falls Blk4 + + + 1.6972043 51.1782304 + 1.7190851 51.1989013 + + dac.02001942 + + + 1997 HI745 Tail of the Falls Blk5 + + + 1.6968468 51.1790962 + 1.720153 51.1986928 + + dac.02001943 + + + 1995 HI677 Inner Sound and Kyle of Lochalsh Blk14 + + + -5.8975236 57.3434134 + -5.820652 57.3849816 + + dac.02001944 + + + 1995 HI677 Inner Sound and Kyle of Lochalsh BLk12 + + + -5.9566193 57.3197329 + -5.8797692 57.360873 + + dac.02001945 + + + 1996 HI677 Inner Sound and Kyle of Lochalsh Blk11 + + + -5.9846316 57.3181491 + -5.920663 57.3544055 + + dac.02001946 + + + 1996 HI677 Inner Sound and Kyle of Lochalsh Blk10 + + + -6.0216636 57.3199656 + -5.9612005 57.3511328 + + dac.02001947 + + + 1996 HI677 Inner Sound and Kyle of Lochalsh Blk13 + + + -6.0187365 57.3430617 + -5.9652291 57.3973793 + + dac.02001948 + + + 1996 HI677 Inner Sound and Kyle of Lochalsh Blk15 + + + -5.8896479 57.4348594 + -5.8507011 57.4644711 + + dac.02001949 + + + 1997 HI730 Flamborough Head Ground to Whitby Ground Blk1 + Survey vessels MV STM Vega & MV Skomer were used to collect data. +GeoAcoustics 159D dual channel side scan sonar was used for offshore work. EG & G 272 side scan sonar was used for the inshore work. +A Van Veen grab was used for obtaining samples. + + + -0.4748841 54.1373159 + -0.1352881 54.5933091 + + dac.02001950 + + + 1997 HI777 Northern Approaches to the Minches Blk2 + + + -6.1504305 59.4060873 + -5.7866894 59.5595599 + + dac.02001951 + + + 1997 HI759 Approaches to the River Dee Blk1 + + + -3.9329573 53.28531 + -3.3397389 53.462115 + + dac.02001952 + + + 1996 HI683 Western Approaches to the English Channel Blk1 + + + -6.2766 48.9983752 + -6.0979555 49.1381767 + + dac.02001953 + + + 1998 HI728 Duddon Sands to Mull of Galloway Area 3 + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. +Atlas Deso 25 Echo sounder was used to ascertain depths. + + + -4.3870821 54.3307908 + -3.5523483 54.4791494 + + dac.02001954 + + + 1991 HI511 Goodwin Sands Gull Stream Blk1 + + + 1.4281822 51.2079294 + 1.5972476 51.3614989 + + dac.02001955 + + + 1991 HI511 Goodwin Sands Gull Stream Blk2 + + + 1.4599574 51.130937 + 1.5276235 51.1756944 + + dac.02001956 + + + 1998 HI728 Duddon Sands to Mull of Galloway Area 4 + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. +Atlas Deso 25 Echo sounder was used to ascertain depths. + + + -4.3961761 54.4546061 + -3.6557324 54.6034134 + + dac.02001957 + + + 1998 HI777 Northern Approaches to the Minches Blk4 + + + -6.1499206 59.4921809 + -5.7842105 59.6368386 + + dac.02001958 + + + 1998 HI777 Northern Approaches to the Minches Blk5 + + + -6.1417972 59.57378 + -5.7954661 59.7201129 + + dac.02001959 + + + 1998 HI796 Farne Island to Seaham + + + -1.5227228 54.7552855 + -1.0811188 55.1771367 + + dac.02001960 + + + 1998 HI777 Northern Approaches to the Minches Blk3 + + + -6.1551106 59.4471881 + -5.6178711 59.7741774 + + dac.02001961 + + + 1998 HI842 Devonport Blk1 + + + -4.214175 50.3377288 + -4.129955 50.4022813 + + dac.02001962 + + + 1998 2006-290994 Weymouth Bay Weymouth Harbour + + + -2.4598156 50.606292 + -2.4411662 50.610921 + + dac.02001963 + + + 1998 HI806 Deep Water Route via DR1 Buoy Blk2 + + + 2.6556006 53.1646764 + 2.8646599 53.2956864 + + dac.02001964 + + + 1998 HI806 Outer Silver Pit + + + 2.499385 53.7446187 + 2.6648474 53.8469103 + + dac.02001965 + + + 1999 2006-291028 River Fal - Carrick Roads + + + -5.0561477 50.173234 + -5.0233242 50.1922255 + + dac.02001966 + + + 1999 2006-290901 Newhaven North Quay + + + 0.0471255 50.7952249 + 0.0520539 50.8027915 + + dac.02001967 + + + 1999 2006-290901 Newhaven Harbour and Approaches + + + 0.0536661 50.7741054 + 0.0621513 50.7895367 + + dac.02001968 + + + 1995 HI638 Approaches to Falmouth Blk1 + + + -5.0696317 50.0780788 + -4.9118287 50.1774731 + + dac.02001969 + + + 1999 HI677 Inner Sound and Kyle of Lochalsh Blk4 + + + -5.8827814 57.2483522 + -5.7534554 57.2913707 + + dac.02001970 + + + 1999 HI859 Barry Roads + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + -3.2559378 51.3355562 + -3.1243045 51.3925402 + + dac.02001971 + + + 1999 HI859 English Grounds + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + -3.1170123 51.3649268 + -3.0092793 51.4440394 + + dac.02001972 + + + 1999 HI859 Culver Sands + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + -3.3394457 51.2668549 + -3.2179894 51.3182081 + + dac.02001973 + + + 1999 2006-290825 Workington + + + -3.5788389 54.6520326 + -3.5765226 54.6534231 + + dac.02001974 + + + 1999 HI798 Barnstaple Bay and Approaches Blk3 + + + -4.8109711 51.1131 + -4.564711 51.2639932 + + dac.02001975 + + + 1999 HI798 Barnstaple Bay and Approaches Blk4 + + + -4.6097375 51.1973335 + -4.3340574 51.2603871 + + dac.02001976 + + + 2000 2006-348662 Workington Harbour + + + -3.5815809 54.6492543 + -3.5672591 54.6549004 + + dac.02001977 + + + 2000 2006-290791 Workington Spoil Ground + + + -3.621841 54.6629342 + -3.591312 54.6808167 + + dac.02001978 + + + 2000 HI842 Devonport Blk4 + + + -4.2134925 50.3821333 + -4.1876486 50.4012157 + + dac.02001979 + + + 2000 HI842 Devonport Blk5 + + + -4.1538547 50.3386648 + -4.1306897 50.3641685 + + dac.02001980 + + + 2000 2006-290963 Dundee Princess Alexandra Wharf to Prince Charles Wharf + + + -2.9410633 56.4599923 + -2.9215852 56.4659705 + + dac.02001981 + + + 2000 2006-290963 Dundee Caledon East Wharf to Prince Charles Wharf + + + -2.9282896 56.4616566 + -2.9165803 56.4656902 + + dac.02001982 + + + 2000 2006-290963 Dundee Queen Elizabeth Wharf to Princess Alexandra Wharf + + + -2.9559149 56.4578047 + -2.9370452 56.4649978 + + dac.02001983 + + + 2000 2006-290963 Dundee Tidal Basin + + + -2.9346938 56.4648875 + -2.93237 56.4657906 + + dac.02001984 + + + 2000 2006-290963 River Tay Lady Shoal + + + -2.8392381 56.4504511 + -2.7677972 56.4591602 + + dac.02001985 + + + 2000 2006-290963 Approaches to River Tay + + + -2.6857674 56.4489697 + -2.6357129 56.4826649 + + dac.02001986 + + + 2000 2006-290963 River Tay Tay Bridge to Old Channel Bank + + + -3.0099701 56.4312122 + -2.9866015 56.4409048 + + dac.02001987 + + + 2000 HI759 Approaches to the River Dee Blk3 + + + -3.5871143 53.361943 + -3.337186 53.4289386 + + dac.02001988 + + + 2000 HI798 Barnstaple Bay and Approaches Blk5 + + + -4.8103825 50.998201 + -4.7007959 51.154177 + + dac.02001989 + + + 2000 HI798 Barnstaple Bay and Approaches Blk6 + + + -4.4960954 51.1338109 + -4.3230237 51.2574349 + + dac.02001990 + + + 2001 HI912 Western Approaches to Casquets TSS Blk2 + GeoAcoustics Model 159D was used to interpret the seafloor. + + + -3.3541288 49.9379101 + -3.0722545 50.0622538 + + dac.02001991 + + + 2001 HI912 Western Approaches to Casquets TSS Blk3 + GeoAcoustics Model 159D was used to interpret the seafloor. + + + -3.4590589 49.7889578 + -3.3132939 49.9444339 + + dac.02001992 + + + 2001 HI912 Western Approaches to Casquets TSS Blk4 + GeoAcoustics Model 159D was used to interpret the seafloor. + + + -3.3197708 49.7889209 + -3.1741598 49.9442902 + + dac.02001993 + + + 2001 HI912 Western Approaches to Casquets TSS Blk5 + GeoAcoustics Model 159D was used to interpret the seafloor. + + + -3.4678238 49.6714234 + -3.2294929 49.7954377 + + dac.02001994 + + + 2001 HI912 Western Approaches to Casquets TSS Blk6 + GeoAcoustics Model 159D was used to interpret the seafloor. + + + -3.2375814 49.6709575 + -2.9457603 49.795662 + + dac.02001995 + + + 2001 HI912 Western Approaches to Casquets TSS Blk7 + GeoAcoustics Model 159D was used to interpret the seafloor. + + + -2.953545 49.6717383 + -2.7461827 49.7915784 + + dac.02001996 + + + 2001 HI912 Western Approaches to Casquets TSS Blk8 + GeoAcoustics Model 159D was used to interpret the seafloor. + + + -2.7536769 49.6719453 + -2.5460481 49.825538 + + dac.02001997 + + + 2001 HI912 Western Approaches to Casquets TSS Blk9 + GeoAcoustics Model 159D was used to interpret the seafloor. + + + -2.5534935 49.698287 + -2.3528315 49.8579407 + + dac.02001998 + + + 2001 HI912 Western Approaches to Casquets TSS Blk10 + GeoAcoustics Model 159D was used to interpret the seafloor. + + + -3.4466736 49.5550486 + -3.2295708 49.6783819 + + dac.02001999 + + + 2001 HI912 Western Approaches to Casquets TSS Blk11 + GeoAcoustics Model 159D was used to interpret the seafloor. + + + -3.2370002 49.554897 + -3.0298582 49.6782224 + + dac.02002000 + + + 2001 HI912 Western Approaches to Casquets TSS Blk12 + GeoAcoustics Model 159D was used to interpret the seafloor. + + + -3.0371099 49.5551651 + -2.8295317 49.6783072 + + dac.02002001 + + + 2001 HI912 Western Approaches to Casquets TSS Blk13 + GeoAcoustics Model 159D was used to interpret the seafloor. + + + -2.8377058 49.5547192 + -2.5790636 49.6790142 + + dac.02002002 + + + 2001 HI912 Western Approaches to Casquets TSS Blk14 + GeoAcoustics Model 159D was used to interpret the seafloor. + + + -3.4466703 49.4415047 + -3.2128409 49.5618286 + + dac.02002003 + + + 2001 HI912 Western Approaches to Casquets TSS Blk15 + GeoAcoustics Model 159D was used to interpret the seafloor. + + + -3.2204873 49.4459488 + -2.9959794 49.5618123 + + dac.02002004 + + + 2001 HI912 Western Approaches to Casquets TSS Blk16 + GeoAcoustics Model 159D was used to interpret the seafloor. + + + -3.0041915 49.4391085 + -2.7254779 49.5623943 + + dac.02002005 + + + 2002 2006-297839 Loch Ryan Channel Port and Cairnryan P & O Ferry Terminal + + + -5.0552387 54.9597762 + -5.0112737 54.9891531 + + dac.02002006 + + + 1994 HI612 Fair Isle Channel Blk10 + + + -2.2626921 59.1291647 + -1.1771225 59.5818009 + + dac.02002007 + + + 1995 HI673 Brown Ridge TSS to North Hinder TSS Blk1 + + + 2.7169327 52.608943 + 3.0047871 52.7275169 + + dac.02002008 + + + 1995 HI673 Brown Ridge TSS to North Hinder TSS Blk2 + + + 2.7208863 52.5092141 + 2.9801342 52.6315514 + + dac.02002009 + + + 1995 HI673 Brown Ridge TSS to North Hinder TSS Blk3 + + + 2.7209862 52.3501548 + 2.8920051 52.5227499 + + dac.02002010 + + + 1995 HI673 Brown Ridge TSS to North Hinder TSS Blk4 + + + 2.8596102 52.3216452 + 3.005283 52.4862184 + + dac.02002011 + + + 1995 HI673 Brown Ridge TSS to North Hinder TSS Blk5 + + + 2.7652218 52.2083825 + 3.0056918 52.3392249 + + dac.02002012 + + + 1995 HI673 Brown Ridge TSS to North Hinder TSS Blk6 + + + 2.7060264 52.10205 + 2.9267355 52.2288147 + + dac.02002013 + + + 1990 HI527 Eastern Celtic Sea + Type 3000 side scan sonar was used to interpret the seafloor. + + + -6.7255671 50.0106017 + -6.1093768 50.6497913 + + dac.02002014 + + + 2002 2006-297875 Dundee Princess Alexandra to Prince Charles Wharf + + + -2.9410639 56.4599871 + -2.9215853 56.4660446 + + dac.02002015 + + + 2002 2006-297875 Dundee Caledon East Wharf to Prince Charles Wharf + + + -2.9283079 56.4616616 + -2.9165898 56.4657019 + + dac.02002016 + + + 2002 2006-297875 Dundee Queen Elizabeth to Princess Alexandra Wharf + + + -2.9560935 56.4577747 + -2.9370433 56.4649881 + + dac.02002017 + + + 2002 2006-297875 River Tay Lady Shoal + + + -2.8391714 56.4503227 + -2.7676777 56.4591707 + + dac.02002018 + + + 2002 2006-297875 Approaches to River Tay + + + -2.6867199 56.4490807 + -2.6333405 56.482962 + + dac.02002019 + + + 2002 2006-297875 River Tay Tay Rail Bridge to Kirkton + + + -3.0452473 56.4184636 + -2.9856883 56.4428099 + + dac.02002020 + + + 2002 2006-297875 Dundee Dundee Harbour to Spoil Ground + + + -2.9547055 56.4523916 + -2.9136495 56.4653746 + + dac.02002021 + + + 2002 2006-337773 Fowey Estuary + + + -4.6490162 50.3218608 + -4.6247701 50.3508283 + + dac.02002022 + + + 2002 2006-337773 Par Sands Par Harbour + + + -4.7067142 50.3389604 + -4.6946562 50.3454869 + + dac.02002023 + + + 2002 2006-297700 Firth of Clyde Hunterston Jetty + + + -4.8827467 55.7511312 + -4.8748952 55.7562912 + + dac.02002024 + + + 2002 2006-297700 Firth of Clyde Hunterston Forward Working Area + + + -4.8802429 55.7490111 + -4.8719579 55.7531806 + + dac.02002025 + + + 2002 2006-297700 Firth of Clyde Hunterston Platform Yard Jetty and Approach Channel + + + -4.8929091 55.7386649 + -4.8862304 55.742498 + + dac.02002026 + + + 2002 2006-297828 River Dee East of Mostyn Channel + + + -3.2708182 53.3281186 + -3.2565502 53.3511614 + + dac.02002027 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A001 + Survey vessels MV Betelgeuze & STM Vega were used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 1.8909596 52.8809929 + 2.1179876 52.9871619 + + dac.02002028 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A004 + Survey vessels MV Betelgeuze & STM Vega were used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 1.8907054 52.7633479 + 2.1177183 52.8865904 + + dac.02002029 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A009 + Survey vessels MV Betelgeuze & STM Vega were used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 1.9915231 52.5641359 + 2.2191115 52.670179 + + dac.02002030 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A011 + Survey vessels MV Betelgeuze & STM Vega were used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 1.9909183 52.4721185 + 2.2188166 52.5699466 + + dac.02002031 + + + 1993 HI592 Excalibur Gas Fields Blk2 + Surveyed by Oceonics (UK) Ltd. +Survey vessels MV Albratros & MV Deneb were used to collect data. +Klein type 595 side scan sonar was used to interpret the seafloor. + + + 1.1801598 53.3659953 + 1.4237028 53.514259 + + dac.02002032 + + + 1993 HI592 Excalibur Gas Fields Blk1 + Surveyed by Oceonics (UK) Ltd. +Survey vessels MV Albratros & MV Deneb were used to collect data. +Klein type 595 side scan sonar was used to interpret the seafloor. + + + 1.4067626 53.3757936 + 1.6628714 53.5128688 + + dac.02002033 + + + 2001 HI985 Penlee Point to Weston Mill Lake Blk1 + + + -4.1797277 50.3031419 + -4.1671575 50.3269876 + + dac.02002034 + + + 2001 HI985 Penlee Point to Weston Mill Lake Blk2 + + + -4.1798341 50.3251707 + -4.1636689 50.3382693 + + dac.02002035 + + + 2001 HI985 Penlee Point to Weston Mill Lake Blk3 + + + -4.166341 50.3335085 + -4.1363363 50.3449274 + + dac.02002036 + + + 2001 HI985 Penlee Point to Weston Mill Lake Blk4 + + + -4.1453191 50.3409628 + -4.1321003 50.362019 + + dac.02002037 + + + 2001 HI985 Penlee Point to Weston Mill Lake Blk5 + + + -4.1411281 50.3578675 + -4.1310978 50.3641305 + + dac.02002038 + + + 2001 HI985 Penlee Point to Weston Mill Lake Blk6 + + + -4.1782056 50.3547427 + -4.1657718 50.3652003 + + dac.02002039 + + + 2001 HI985 Penlee Point to Weston Mill Lake Blk7 + + + -4.194055 50.359856 + -4.1741047 50.3773016 + + dac.02002040 + + + 2001 HI985 Penlee Point to Weston Mill Lake Blk8 + + + -4.2006515 50.3748307 + -4.1861107 50.3913516 + + dac.02002041 + + + 2001 HI985 Penlee Point to Weston Mill Lake Blk9 + + + -4.2133947 50.3883367 + -4.2003436 50.4012839 + + dac.02002042 + + + 2001 HI985 Penlee Point to Weston Mill Lake Blk10 + + + -4.1711541 50.3514758 + -4.142291 50.3621251 + + dac.02002043 + + + 2003 2006-297666 Milford Haven + + + -5.1881956 51.6632778 + -4.9298751 51.7237013 + + dac.02002044 + + + 2003 2006-297667 Shoreham Harbour Eastern Arm + + + -0.2518096 50.821736 + -0.2386028 50.8307997 + + dac.02002045 + + + 2003 2006-297667 Shoreham Harbour Soldiers Point + + + -0.2521375 50.8285225 + -0.2479034 50.8310034 + + dac.02002046 + + + 2003 2006-297667 Shoreham Harbour Western Arm + + + -0.2682292 50.830426 + -0.2516782 50.8319586 + + dac.02002047 + + + 2003 2006-297668 Portsmouth Harbour Fountain Lake S + + + -1.0931592 50.8104598 + -1.0908431 50.8116033 + + dac.02002048 + + + 2003 2006-297668 Portsmouth Harbour Fountain Lake N + + + -1.1001376 50.8114635 + -1.0913951 50.8149361 + + dac.02002049 + + + 2003 2006-319980 Dundee Tidal Basin + + + -2.9346889 56.464935 + -2.9327207 56.465777 + + dac.02002050 + + + 2003 2006-319980 River Tay Princess Alexandra to Prince Charles Wharf + + + -2.9410733 56.4599953 + -2.921585 56.4659419 + + dac.02002051 + + + 2003 2006-319980 River Tay Caledon East to Prince Charles Wharf + + + -2.9283033 56.4616572 + -2.9165154 56.4657229 + + dac.02002052 + + + 2003 2006-319980 River Tay Queen Elizabeth to Princess Alexandra Wharf + + + -2.9558628 56.4578409 + -2.9370496 56.4650025 + + dac.02002053 + + + 2003 2006-319980 River Tay Lady Shoal + + + -2.8391819 56.4504428 + -2.7678493 56.4590757 + + dac.02002054 + + + 2003 2006-319980 River Tay Approaches to River Tay + + + -2.6864818 56.4492739 + -2.6331505 56.4829856 + + dac.02002055 + + + 2003 2006-319980 River Tay Tay Rail Bridge to Kirkton + + + -3.0449688 56.4186734 + -2.9858872 56.4427557 + + dac.02002056 + + + 2003 2006-319980 River Tay Dundee Harbour to Spoil Ground + + + -2.9540947 56.4530092 + -2.9137527 56.4652914 + + dac.02002057 + + + 2006 2006-368748 Crossapol Bay + + + -6.6770212 56.5361803 + -6.6543548 56.5741862 + + dac.02002058 + + + 2005 HI1122 Sanday Sound to Westray Firth Blk1 + + + -2.7967548 59.1053311 + -2.6790161 59.2667663 + + dac.02002059 + + + 2005 HI1122 Sanday Sound to Westray Firth Blk2 + + + -2.6822521 59.1059212 + -2.548432 59.2664124 + + dac.02002060 + + + 2006 2006-378845 Plymouth Sound + + + -4.1616993 50.3148882 + -4.1348032 50.3361361 + + dac.02002061 + + + 2006 2006-378845 Smeaton Pass to the Narrows + + + -4.1751769 50.3508634 + -4.1319608 50.366118 + + dac.02002062 + + + 2006 HI1166 Long Sand + The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system. + + + 1.5289386 51.7655698 + 1.6229294 51.8470146 + + dac.02002063 + + + 2007 HI1218 Approaches to the Orkney Islands Blk 1 + + + -2.9411781 58.5732771 + -2.0898974 58.8138043 + + dac.02002064 + + + 2007 HI1200 Plymouth Hamoaze + + + -4.2041317 50.369588 + -4.1840502 50.3936135 + + dac.02002065 + + + 2007 HI1200 Plymouth Sound + + + -4.1745651 50.3304616 + -4.1279753 50.3615075 + + dac.02002066 + + + 2007 HI1218 Approaches to the Orkney Islands Blk4 + Superseded by DIBON ID 20097029 (full supply of Block 4) + + + -3.7994716 59.0022963 + -3.2737075 59.2591093 + + dac.02002067 + + + 2007 HI1218 Approaches to the Orkney Islands Blk2 + + + -2.9788825 59.22464 + -2.0552878 59.5220762 + + dac.02002068 + + + 2007 HI1151 Approaches to the Firth of Forth Blk4 + + + -1.5087375 56.4622303 + -0.8211822 56.8441986 + + dac.02002069 + + + 2007 HI1151 Approaches to the Firth of Forth Blk1 + + + -1.510663 56.1580969 + -0.821864 56.4890854 + + dac.02002070 + + + 2007 HI1151 Approaches to the Firth of Forth Blk2 + + + -1.5085585 56.4389316 + -0.824362 56.8456422 + + dac.02002071 + + + 2007 HI1151 Approaches to the Firth of Forth Blk3 + + + -1.5098786 56.1561843 + -0.8217549 56.4631082 + + dac.02002072 + + + 2007 HI1218 Approaches to the Orkney Islands Blk3 + + + -3.2932073 59.141445 + -2.8793643 59.3683813 + + dac.02002073 + + + 2007 HI1211 Islay + + + -7.0051249 55.6008757 + -5.9545069 56.0736388 + + dac.02002074 + + + 2007 HI1186 Salcombe to St Anthonys + + + -3.9629937 50.1322184 + -3.7482771 50.1897888 + + dac.02002075 + + + 2008 HI1227 Morecambe Bay + The Primary Reference Position was provided by an Applanix POS MV system, supplied with GPS data from a Real Time Kinematic (RTK). + + + -3.3281225 53.8185233 + -2.8423288 54.151778 + + dac.02002076 + + + 2008 HI1259 Caister Road + The Primary Reference Position was provided by an Applanix POS MV system, supplied with GPS data from a Real Time Kinematic (RTK) solution. +MV Ping was also used to collect survey data. + + + 1.7432421 52.6157211 + 1.7829416 52.6792124 + + dac.02002077 + + + 2008 HI1218 Approaches to the Orkney Islands Blk4 + Supersedes M4708 (partial supply of Block 4) + + + -3.8452194 58.8672469 + -3.2723045 59.2581617 + + dac.02002078 + + + 2010 2010-004206 River Mersey Alfred River Entrance to Twelve Quays + + + -3.0183516 53.3979301 + -3.0057013 53.4069133 + + dac.02002079 + + + 2010 2010-004206 River Mersey Crosby Channel Askew Spit + + + -3.1754904 53.5169829 + -3.1144211 53.5321984 + + dac.02002080 + + + 2010 2010-004206 River Mersey Crosby Channel and Shoal + + + -3.1249387 53.4896653 + -3.0832271 53.5249758 + + dac.02002081 + + + 2010 2010-004206 River Mersey Eastham Channel + + + -2.9724493 53.3212217 + -2.9465665 53.3599737 + + dac.02002082 + + + 2010 2010-004206 River Mersey Garston Channel and Bar + + + -2.990522 53.3643861 + -2.957948 53.3824658 + + dac.02002083 + + + 2010 2010-004206 River Mersey Gladstone Dock Entrance + + + -3.0223202 53.4437559 + -3.013808 53.4525094 + + dac.02002084 + + + 2010 2010-004206 River Mersey Langton Dock Entrance + + + -3.0137003 53.4330083 + -3.0074246 53.4415945 + + dac.02002085 + + + 2010 2010-004206 River Mersey Liverpool Landing Stage + + + -3.0072944 53.4016615 + -2.9975599 53.4106943 + + dac.02002086 + + + 2010 2010-004206 River Mersey Queens Channel East + + + -3.2291078 53.5142059 + -3.17176 53.5309046 + + dac.02002087 + + + 2010 2010-004206 River Mersey Tranmere Oil Stage + + + -3.0026053 53.3743536 + -2.9907003 53.3862979 + + dac.02002088 + + + 2010 2010-020970 River Mersey Cammell Lairds Wall + + + -3.0080983 53.3855758 + -3.0044623 53.3904517 + + dac.02002089 + + + 2010 2010-020970 River Mersey Eastham Channel and Lock Approaches + + + -2.9534928 53.3227623 + -2.946918 53.328404 + + dac.02002090 + + + 2010 2010-020970 River Mersey Eastham Bar and Channel + + + -2.972173 53.3425644 + -2.9592753 53.3589091 + + dac.02002091 + + + 2010 2010-020970 River Mersey Langton Dock Entrance + + + -3.0126442 53.4334482 + -3.008089 53.4416366 + + dac.02002092 + + + 2010 2010-020970 River Mersey New Brighton Shoal + + + -3.0405239 53.43402 + -3.0160421 53.4510673 + + dac.02002093 + + + 2010 2010-026872 River Mersey Eastham Channel + + + -2.9641674 53.3240679 + -2.9483051 53.3465611 + + dac.02002094 + + + 2010 2010-26872 River Mersey Queens Channel East + + + -3.2328231 53.5131883 + -3.1711476 53.5288794 + + dac.02002095 + + + 2007 2010-028873 North Channel Southern Part Beauforts Dyke + AFBI in association with Environmental Science Research Institute (ESRI) + + + -5.4563294 54.5214902 + -4.9059265 54.9732218 + + dac.02002096 + + + 2007 2010-28873 Beauforts Dyke + AFBI in association with Environmental Science Research Institute (ESRI) + + + -5.2566332 54.3878987 + -5.105363 54.4990565 + + dac.02002097 + + + 2007 2010-28873 Pisces Reef + AFBI in association with Environmental Science Research Institute (ESRI) + + + -5.2843479 54.142904 + -5.1544944 54.2092285 + + dac.02002098 + + + 2007 2010-28873 Skull + AFBI in association with Environmental Science Research Institute (ESRI) + + + -5.4484885 54.5056638 + -5.404593 54.5872709 + + dac.02002099 + + + 2007 2010-28873 Spoil Ground West of Carlingford Lough + Jointly commissioned and owned by Environmental Science Research Institute (ESRI) + + + -5.9977824 53.9160027 + -5.8805545 54.0008774 + + dac.02002100 + + + 2007 2008-22953 South Cross Sands Areas 436 & 202 + Surveyed by Gardline Lankelma on behalf of HANSON AGGREGATES MARINE LTD. +MV Sea Otter was used to collect the survey data. +Type Edgetech 4200-FS side scan sonar was used. + + + 1.8255536 52.5634586 + 1.8873404 52.6415274 + + dac.02002101 + + + 2009 HI1158 Barnstaple Bay Infill Data + Starfix receiver using HP and XP corrections as a primary positioning system. + + + -4.2327815 51.1789 + -4.22474 51.1840913 + + dac.02002102 + + + 2009 2009-100044 Lymington Harbour - Long Reach to Short Reach + + + -1.5250482 50.7440856 + -1.5135031 50.753115 + + dac.02002103 + + + 1997 HI677 Inner Sound and Kyle of Lochalsh Blk16 + + + -5.9055145 57.4584886 + -5.8629114 57.5058608 + + dac.02002104 + + + 1997 HI777 Northern Approaches to the Minches Blk1 + + + -6.1531998 59.3793523 + -5.7882559 59.5471578 + + dac.02002105 + + + 1997 HI677 Inner Sound and Kyle of Lochalsh Blk17 + + + -5.9042435 57.500531 + -5.8547018 57.5370777 + + dac.02002106 + + + 1997 HI677 Inner Sound and Kyle of Lochalsh Blk18 + + + -5.8978104 57.5310254 + -5.8498067 57.5771138 + + dac.02002107 + + + 1997 M2940 Gareloch + + + -4.822129 56.0542872 + -4.8204039 56.0598013 + + dac.02002108 + + + 1997 HI778 Ardmore Channel to Greenock Bank + + + -4.7713545 55.9526292 + -4.7252247 55.9892011 + + dac.02002109 + + + 1991 HI466 Isle of Walney to Calf of Man Blk3 + + + -4.8551015 53.9028591 + -3.2087959 54.0515445 + + dac.02002110 + + + 1996 HI704 Liverpool Bay + + + -3.6798793 53.4117233 + -3.4035157 53.5290922 + + dac.02002111 + + + 1998 HI798 Barnstaple Bay and Approaches Blk1 + Side scan sonar type 2053 was used to interpret the seafloor and a mud snapper grab used to obtain samples. + + + -4.3378905 51.0407037 + -4.1942506 51.128159 + + dac.02002112 + + + 1997 HI758 Approaches to the River Ribble Blk1 + Side scan sonar type 2034 was used to interpret the seafloor and shipex grab was used to obtain samples. + + + -3.4428851 53.5678327 + -3.3190254 53.7938825 + + dac.02002113 + + + 1995 HI682 North Foreland to South Falls 90m SB + Sidescan sonar type 2053 was used during this survey. + + + 1.585908 51.3451678 + 1.6574681 51.4537901 + + dac.02002114 + + + 1994 HI608 South Falls to Sandettie 110m SB + + + 1.7221124 51.1975818 + 1.9614942 51.3888685 + + dac.02002115 + + + 1998 HI802 Wolf Rock to Dodman Point Blk1 + + + -5.0523369 50.0721196 + -4.8103042 50.2113741 + + dac.02002116 + + + 1999 HI806 Deep Water Route via DR1 Buoy Blk1 + + + 2.5898769 52.8717795 + 2.7515035 53.0102318 + + dac.02002117 + + + 1999 HI821 Mull of Galloway to Calf of Man Blk1 + + + -5.2697495 54.4716348 + -4.980243 54.617275 + + dac.02002118 + + + 1999 HI821 Mull of Galloway to Calf of Man Blk2 + + + -5.0645759 54.3616933 + -4.7092869 54.5113423 + + dac.02002119 + + + 1999 HI842 Devonport Blk2 + + + -4.2143904 50.3813621 + -4.1877494 50.4018109 + + dac.02002120 + + + 1999 HI842 Devonport Blk3 + + + -4.153915 50.3383879 + -4.1299706 50.3642302 + + dac.02002121 + + + 1999 HI802 Wolf Rock to Dodman Point Blk2 + + + -5.5473078 50.0482422 + -5.4343026 50.0793666 + + dac.02002122 + + + 1999 HI821 Mull of Galloway to Calf of Man Blk3 + + + -5.2370739 54.3713165 + -4.9928793 54.5028777 + + dac.02002123 + + + 2000 HI758 Approaches to the River Ribble Blk6 + Side scan sonar type 2094 was used to interpret the seafloor and a Mudsnapper grab used to obtain samples. + + + -3.3394087 53.5965128 + -3.2110142 53.6401969 + + dac.02002124 + + + 1983 HI124 Eastern Approaches to Queens Channel + + + 1.4147182 51.4266904 + 1.5042497 51.4910228 + + dac.02002125 + + + 2000 HI874 Cromarty Firth HMS Natal + + + -4.0914836 57.6867442 + -4.0860392 57.6884763 + + dac.02002126 + + + 2000 HI875 Cromarty Deep Water Anchorage + + + -3.9338258 57.6175185 + -3.8235769 57.6752629 + + dac.02002127 + + + 2000 2006-359021 Plymouth Sound + + + -4.1537751 50.3391355 + -4.1310863 50.364141 + + dac.02002128 + + + 1978 2006-359155 Knock Deep + + + 1.4035435 51.5577015 + 1.6785903 51.7968126 + + dac.02002129 + + + 1999 HI759 Approaches to the River Dee Blk2 + + + -3.5806569 53.3648743 + -3.4203912 53.4236854 + + dac.02002130 + + + 2000 HI877 Campbeltown Loch Blk1 + + + -5.5756517 55.415986 + -5.5682037 55.419711 + + dac.02002131 + + + 2001 HI877 Campbeltown Loch Blk2 + + + -5.5879195 55.4134795 + -5.5597989 55.4264152 + + dac.02002132 + + + 1996 HI695 The Swashway Portsmouth + + + -1.1375224 50.7650795 + -1.0975002 50.7906396 + + dac.02002133 + + + 1988 HI366 Nab Tower to Old Castle Point Blk1 + + + -0.9538105 50.612017 + -0.7899985 50.6871193 + + dac.02002134 + + + 1990 HI366 Nab Tower to Old Castle Point Blk5 + + + -1.2681959 50.741227 + -1.0903124 50.8182612 + + dac.02002135 + + + 1989 HI366 Nab Tower to Old Castle Point Blk2 + + + -1.2776632 50.7260397 + -1.0916351 50.7875838 + + dac.02002136 + + + 1989 HI366 Nab Tower to Old Castle Point Blk3 + + + -1.0550376 50.6593239 + -0.9022896 50.7453105 + + dac.02002137 + + + 1989 HI366 Nab Tower to Old Castle Point Blk4 + + + -1.133491 50.5966567 + -0.9976214 50.7603614 + + dac.02002138 + + + 2001 HI821 Mull of Galloway to Calf of Man Blk4 + + + -5.3763735 54.3621492 + -5.1513055 54.573792 + + dac.02002139 + + + 2001 HI821 Mull of Galloway to Calf of Man Blk5 + + + -5.0211383 54.2948027 + -4.7221969 54.3968488 + + dac.02002140 + + + 1996 HI637 Western Approaches to the English Channel + + + -5.9974968 49.2168844 + -5.7703168 49.3855056 + + dac.02002141 + + + 1996 HI638 Approaches to Falmouth Blk2 + + + -4.9698108 50.1466408 + -4.8901226 50.1787626 + + dac.02002142 + + + 1994 HI594 South Eastern Approaches to Plymouth Blk2 + + + -4.0160112 50.1648344 + -3.8304941 50.2999605 + + dac.02002143 + + + 1990 HI367 Bill of Portland to Lulworth Banks Blk1 + + + -2.3934045 50.5186031 + -2.2853516 50.6191823 + + dac.02002144 + + + 1992 HI1580 Worbarrow Bay + + + -2.2273433 50.6101304 + -2.1833743 50.6233081 + + dac.02002145 + + + 1993 HI597 Rosneath Point + + + -4.8813207 55.9503288 + -4.7433526 55.9913004 + + dac.02002146 + + + 1993 HI594 South Eastern Approaches to Plymouth Blk1 + + + -4.1941105 50.3154883 + -4.1216383 50.3468845 + + dac.02002147 + + + 2000 HI838 Mounts Bay Blk1 + + + -5.4908454 50.0899711 + -5.4606756 50.1130596 + + dac.02002148 + + + 2000 HI838 Mounts Bay Blk2 + + + -5.49052 50.0738105 + -5.4600989 50.0938562 + + dac.02002149 + + + 2000 HI838 Mounts Bay Blk3 + + + -5.4898326 50.0899867 + -5.4612957 50.1132447 + + dac.02002150 + + + 2000 HI838 Mounts Bay Blk4 + + + -5.4901551 50.0738546 + -5.4605928 50.0937741 + + dac.02002151 + + + 2000 HI838 Mounts Bay Blk5 + + + -5.4902756 50.0624047 + -5.4604692 50.0793227 + + dac.02002152 + + + 2000 HI838 Mounts Bay Blk6 + + + -5.4661902 50.0563954 + -5.4358945 50.0779074 + + dac.02002153 + + + 2001 HI842 Devonport Blk6 + + + -4.2013867 50.3820631 + -4.1877134 50.3925871 + + dac.02002154 + + + 2001 HI842 Devonport Blk7 + + + -4.1433826 50.3556056 + -4.1301695 50.3645161 + + dac.02002155 + + + 2001 HI842 Devonport Blk8 + + + -4.1540081 50.3374391 + -4.130168 50.3590608 + + dac.02002156 + + + 2001 HI762 Loch Long and Approaches to Loch Finnart Blk1 + + + -4.8830896 56.0711535 + -4.8550077 56.0909973 + + dac.02002157 + + + 2001 HI762 Loch Long and Approaches to Loch Finnart Blk2 + + + -4.8789922 56.0901069 + -4.8463677 56.1038529 + + dac.02002158 + + + 2001 HI762 Loch Long and Approaches to Loch Finnart Blk3 + + + -4.9093404 56.047815 + -4.877092 56.0621783 + + dac.02002159 + + + 2001 HI762 Loch Long and Approaches to Loch Finnart Blk4 + + + -4.8943091 56.0613327 + -4.8662993 56.0774771 + + dac.02002160 + + + 2001 HI762 Loch Long and Approaches to Loch Finnart Blk5 + + + -4.8601891 56.0989785 + -4.8400565 56.1121553 + + dac.02002161 + + + 2001 HI762 Loch Long and Approaches to Loch Finnart Blk6 + + + -4.8535539 56.1115257 + -4.8252986 56.1242775 + + dac.02002162 + + + 2001 HI762 Loch Long and Approaches to Loch Finnart Blk7 + + + -4.8352041 56.1192055 + -4.815377 56.1367761 + + dac.02002163 + + + 2001 HI762 Loch Long and Approaches to Loch Finnart Blk8 + + + -4.827421 56.1361932 + -4.8050851 56.1508893 + + dac.02002164 + + + 1994 HI594 South Eastern Approaches to Plymouth Blk3 + + + -4.2337682 50.2894144 + -4.055299 50.3279801 + + dac.02002165 + + + 1994 2006-291493 Plymouth Sound + + + -4.1525389 50.3390947 + -4.1366137 50.3466488 + + dac.02002166 + + + 2001 2006-300270 West Loch Roag of Lewis + + + -7.0127076 58.2320905 + -6.8926643 58.2810707 + + dac.02002167 + + + 1992 HI560 Haddock Bank + + + 1.3888846 53.259585 + 1.6695135 53.4283761 + + dac.02002168 + + + 1990 HI366 Nab Tower to Old Castle Point Blk6 + + + -1.151571 50.7496314 + -1.1324659 50.7558586 + + dac.02002169 + + + 1994 HI594 South Eastern Approaches to Plymouth Blk4 + + + -4.2965985 50.2435462 + -3.9918698 50.3609096 + + dac.02002170 + + + 1987 HI365 The Needles to Egypt Point Blk1 + + + -1.5524381 50.7003454 + -1.505674 50.750998 + + dac.02002171 + + + 1987 HI365 The Needles to Egypt Point Blk2 + + + -1.5090547 50.7046411 + -1.3116079 50.7889221 + + dac.02002172 + + + 1987 HI357 Skerries to the River Dee Sheet 1 + + + -4.0367475 53.3316453 + -3.824158 53.418905 + + dac.02002173 + + + 1987 HI357 Skerries to the River Dee Sheet 2 + + + -3.8358137 53.2883883 + -3.5653632 53.4195802 + + dac.02002174 + + + 1995 HI558 Southern Approaches to East Solent + + + -1.1357287 50.5979208 + -1.1164963 50.6518603 + + dac.02002175 + + + 1985 HI166 Sea of the Hebrides + + + -6.8197308 57.2388405 + -6.4878989 57.4310649 + + dac.02002176 + + + 1980 2006-360062 Plymouth Exercise Area A Blk1 + + + -4.5039977 50.2490059 + -4.2426157 50.3649026 + + dac.02002177 + + + 1980 2006-360064 Plymouth Exercise Area A Blk2 + + + -4.6818557 50.2349066 + -4.499294 50.33307 + + dac.02002178 + + + 1980 2006-360065 Plymouth Exercise Area B + + + -4.6340457 50.1649579 + -4.446717 50.2532068 + + dac.02002179 + + + 1994 HI594 South Eastern Approaches to Plymouth Blk5 + + + -4.0136766 50.197834 + -3.8016152 50.3048403 + + dac.02002180 + + + 2002 2006-360205 Portsmouth Sailing Centre + + + -1.1029576 50.8114631 + -1.094006 50.8147439 + + dac.02002181 + + + 2001 HI677 Inner Sound and Kyle of Lochalsh Blk3 + + + -5.7766484 57.2801836 + -5.7367172 57.3070279 + + dac.02002182 + + + 2001 HI677 Inner Sound and Kyle of Lochalsh Blk1 + + + -5.7443724 57.2715396 + -5.7018617 57.2795045 + + dac.02002183 + + + 2001 HI677 Inner Sound and Kyle of Lochalsh Blk2 + + + -5.7650966 57.2742934 + -5.740955 57.2858635 + + dac.02002184 + + + 1998 HI839 Southwest Approaches Blk1 + + + -12.2683776 47.2621524 + -9.4192424 48.5663576 + + dac.02002185 + + + 1999 HI839 Southwest Approaches Blk2 + + + -12.6026287 45.9070913 + -9.4295513 46.5925787 + + dac.02002186 + + + 2000 HI839 Southwest Approaches Blk4 + + + -11.1423313 47.3242887 + -9.4420287 47.9257113 + + dac.02002187 + + + 2000 HI839 Southwest Approaches Blk5 + + + -11.9285409 46.5141491 + -9.4397691 47.3852909 + + dac.02002188 + + + 2002 2006-360290 Crossapol Bay + + + -6.6808446 56.5451363 + -6.6542766 56.5616689 + + dac.02002189 + + + 2002 HI799 Inner Sound and Kyle of Lochalsh + + + -5.974722 57.2971328 + -5.9127961 57.3254953 + + dac.02002190 + + + 2002 HI677 Inner Sound and Kyle of Lochalsh Blk9 + + + -5.9215803 57.2964805 + -5.8888235 57.3248399 + + dac.02002191 + + + 2002 HI677 Inner Sound and Kyle of Lochalsh Blk8 + + + -5.9020252 57.2949186 + -5.8492539 57.3260152 + + dac.02002192 + + + 2002 HI677 Inner Sound and Kyle of Lochalsh Blk7 + + + -5.9192518 57.2808087 + -5.8796 57.3024299 + + dac.02002193 + + + 1984 HI191 Sunk Deep Water Anchorage + + + 1.6077665 51.828268 + 1.6869478 51.8689981 + + dac.02002194 + + + 1996 HI751 SS Castilian + + + -4.6044238 53.4114686 + -4.5916682 53.4196789 + + dac.02002195 + + + 1992 HI530 Adamant Shoal to Lulworth Cove + + + -2.3149717 50.4687954 + -2.2492178 50.6265985 + + dac.02002196 + + + 1992 HI530 Adamant Shoal + + + -2.3201489 50.542896 + -2.2924426 50.5532136 + + dac.02002197 + + + 1992 2006-291863 MV Flag Theofano + + + -1.0025344 50.7134491 + -0.981251 50.7234168 + + dac.02002198 + + + 1995 HI610 Goodwin Sands to South Falls 150m SB + Sidescan sonar type 2053 was used dring this survey. + + + 1.5450733 51.2575763 + 1.8128927 51.3718377 + + dac.02002199 + + + 1998 HI363 Sea of the Hebrides South + + + -7.5098033 56.5304958 + -6.9220124 56.9083797 + + dac.02002200 + + + 2003 HI541 Celtic Sea Nymphe Bank + + + -8.6383386 51.2908994 + -7.5561294 51.6499426 + + dac.02002201 + + + 1988 HI363 Barra Head + + + -7.6954543 56.7301538 + -7.6095382 56.7851202 + + dac.02002202 + + + 1990 HI363 Sea of the Hebrides Tiree + + + -7.4568959 56.278248 + -7.0335494 56.556425 + + dac.02002203 + + + 1991 HI529 Southern Stanton Banks + + + -8.1583775 55.9940671 + -7.7175957 56.0881296 + + dac.02002204 + + + 1998 HI436 Sgor Sgaileach to Mallaig + + + -6.125715 56.936436 + -6.0009579 57.0025126 + + dac.02002205 + + + 1991 HI523 Point of Sleat to Arisaig + + + -6.0070857 56.8773912 + -5.8547371 57.0347424 + + dac.02002206 + + + 1988 HI410 Approaches to Ru Na Lachan + + + -5.904819 57.4635664 + -5.8697858 57.4863531 + + dac.02002207 + + + 1988 HI409 Port Henderson + + + -5.7852182 57.6978264 + -5.7612545 57.7129231 + + dac.02002208 + + + 1990 HI466 Isle of Walney to Calf of Man Blk2 + + + -4.2953478 53.9238117 + -3.7421779 54.0211679 + + dac.02002209 + + + 1992 HI429 Celtic Sea Blk1 + + + -6.7368774 50.5961918 + -6.5313253 50.765994 + + dac.02002210 + + + 1992 HI429 Celtic Sea Blk2 + + + -6.9275558 50.5974889 + -6.7242206 50.7656315 + + dac.02002211 + + + 1992 HI429 Celtic Sea Blk3 + + + -6.5554812 50.5975817 + -6.342578 50.7652197 + + dac.02002212 + + + 1992 HI429 Celtic Sea Blk4 + + + -6.3568182 50.5982817 + -6.1574585 50.7648313 + + dac.02002213 + + + 1998 HI408 Eilean Flodigarry to Bearreraig Bay Sound of Raasay + + + -6.2493722 57.4919693 + -5.9532829 57.6835911 + + dac.02002214 + + + 1989 HI466 Isle of Walney to Calf of Man Blk1 + + + -3.5016773 53.9516433 + -3.24056 54.0328779 + + dac.02002215 + + + 1985 HI142 Eastney to Hayling Shoal Portsmouth + + + -1.0905836 50.7154728 + -0.9114895 50.7873416 + + dac.02002216 + + + 2003 HI1046 Luce Bay Blk1 + + + -4.8562202 54.7711018 + -4.7117137 54.8286095 + + dac.02002217 + + + 1981 2006-360799 Isle of Wight to Swanage Bay + + + -1.9376464 50.435665 + -1.3618882 50.6456988 + + dac.02002218 + + + 2002 HI1009 Ernesettle Pier to Bull Point + + + -4.213325 50.3961615 + -4.2008157 50.4142467 + + dac.02002219 + + + 2002 HI677 Inner Sound and Kyle of Lochalsh Blk6 + + + -5.8892826 57.2802198 + -5.8472445 57.3073172 + + dac.02002220 + + + 2002 HI677 Inner Sound and Kyle of Lochalsh Blk5 + + + -5.8576973 57.2716325 + -5.8143204 57.301353 + + dac.02002221 + + + 2002 HI1016 Southern Approaches to North Channel + + + -5.0172599 53.9890161 + -4.7561414 54.318527 + + dac.02002222 + + + 2004 HI1053 Southern Approaches to North Channel + + + -5.0282086 54.4776429 + -4.8060316 54.6262865 + + dac.02002223 + + + 2003 HI779 Lamlash Bay + + + -5.1251135 55.5101115 + -5.0497225 55.551775 + + dac.02002224 + + + 2003 HI1060 Approaches to Portsmouth Blk1 + + + -1.1117844 50.7825981 + -1.1036989 50.7906829 + + dac.02002225 + + + 2003 HI1060 Approaches to Portsmouth Blk2 + + + -1.1080814 50.7678919 + -1.0868711 50.7850781 + + dac.02002226 + + + 2003 HI1060 Approaches to Portsmouth Blk3 + + + -1.093341 50.7533608 + -1.0868463 50.7696648 + + dac.02002227 + + + 2003 HI1060 Approaches to Portsmouth Blk4 + + + -1.1115216 50.7550026 + -1.0912872 50.7694564 + + dac.02002228 + + + 2003 HI1060 Approaches to Portsmouth Blk5 + + + -1.1117637 50.7680117 + -1.091971 50.7763351 + + dac.02002229 + + + 2003 HI1060 Approaches to Portsmouth Blk6 + + + -1.1141354 50.77423 + -1.0986769 50.782926 + + dac.02002230 + + + 2003 HI1060 Approaches to Portsmouth Blk7 + + + -1.1121121 50.7821428 + -1.1063343 50.7899286 + + dac.02002231 + + + 2004 2006-361503 Plymouth + + + -4.5950739 50.2168061 + -4.4739571 50.2987259 + + dac.02002232 + + + 1977 2006-362037 Newquay Bay + + + -5.1115529 50.4134153 + -5.0558676 50.4373078 + + dac.02002233 + + + 1970 2006-362046 Little Minch + + + -6.7638812 57.6408003 + -6.3059525 57.849213 + + dac.02002234 + + + 1977 2006-362160 Lands End to Longships + + + -5.7525873 50.0564306 + -5.7086274 50.0851207 + + dac.02002235 + + + 1978 2006-362161 South Bishop to St Davids Head + + + -5.4395564 51.8211969 + -5.3400957 51.8952059 + + dac.02002236 + + + 1982 2006-362164 Gasker to Flannan Isles Blk4 + + + -7.5040668 57.996863 + -7.2006782 58.1275827 + + dac.02002237 + + + 1981 HI3 Bardsey Island to Lambay Deep Blk1 + + + -5.338621 52.8517668 + -4.7472662 53.2170825 + + dac.02002238 + + + 1981 HI3 Bardsey Island to Lambay Deep Blk2 + + + -5.3353692 52.4536535 + -4.8559884 52.8731146 + + dac.02002239 + + + 1986 HI243 Ramsay Bay to King Williams Banks + + + -4.4379928 54.290657 + -3.993243 54.4650219 + + dac.02002240 + + + 1982 2006-362169 Gasker to Flannan Isles Blk3 + + + -7.3706642 58.1216573 + -7.0566252 58.2530731 + + dac.02002241 + + + 1972 2006-362483 North Channel to the Calf of Man + + + -5.5058007 54.91122 + -4.9351643 55.2174695 + + dac.02002242 + + + 1991 HI367 Bill of Portland to Lulworth Banks Blk2 + + + -2.4349684 50.6069368 + -2.3023621 50.6337734 + + dac.02002243 + + + 1992 HI533 Poole Bay + + + -1.9043168 50.6248804 + -1.8338559 50.6512554 + + dac.02002244 + + + 1989 HI385 Stanton Banks + + + -8.1367623 56.2461039 + -7.729117 56.3556646 + + dac.02002245 + + + 1977 2006-362497 Milford Haven to Ilfracombe + + + -5.0972717 51.2412103 + -4.3222577 51.5098461 + + dac.02002246 + + + 1970 2006-362511 Approaches to Loch Boisdale + + + -7.2517044 57.0945386 + -7.1678499 57.1891579 + + dac.02002247 + + + 1980 2006-362512 Approaches to Salcombe + + + -3.7720912 50.1817911 + -3.6156897 50.2242595 + + dac.02002248 + + + 1981 HI42 River Dart to Berry Head + + + -3.5204879 50.3332461 + -3.4594662 50.3895786 + + dac.02002249 + + + 1985 HI165 Islay to Sanda Island + + + -6.0154215 55.1933138 + -5.5660514 55.5603012 + + dac.02002250 + + + 1987 2006-362515 Bann Shoal to Seven Stones + + + -5.8847375 50.258004 + -5.7876085 50.3293145 + + dac.02002251 + + + 1969 2006-362517 Stanton Banks to Tiree + + + -8.0196392 55.9946815 + -7.4670954 56.4223997 + + dac.02002252 + + + 1980 2006-362589 South Bishop to Strumble Head + + + -5.5363818 51.8267922 + -5.0742991 52.0559847 + + dac.02002253 + + + 2004 HI1088 Falmouth Outer Approaches + + + -5.0384233 50.1228885 + -5.0167075 50.1473093 + + dac.02002254 + + + 2005 2006-353200 Isle of Ewe + + + -5.600756 57.8283177 + -5.5965691 57.830065 + + dac.02002255 + + + 2005 2006-362600 Slaggen Bay + + + -5.6527408 57.8827988 + -5.646555 57.8860356 + + dac.02002256 + + + 2003 2006-362605 Plymouth + + + -4.1606609 50.2983747 + -4.0960464 50.3297528 + + dac.02002257 + + + 2003 2006-362606 Plymouth + + + -4.1461631 50.3180927 + -4.1296487 50.3422894 + + dac.02002258 + + + 2003 HI1043 Crossapol Bay + + + -6.6945043 56.5487493 + -6.6577204 56.5675975 + + dac.02002259 + + + 2005 H-N19-05 Island of Mull + + + -6.4183213 56.3476572 + -6.0282527 56.5118822 + + dac.02002260 + + + 2007 2007-033756 Filey Bay + + + -0.2496075 54.185083 + -0.213819 54.2329176 + + dac.02002261 + + + 2007 2007-088855 Eddystone + + + -4.3577917 50.1801333 + -4.2812234 50.2551648 + + dac.02002262 + + + 2007 2007-037016 Whitby Bay + + + -0.6552323 54.5139724 + -0.6361084 54.5218305 + + dac.02002263 + + + 2009 HI1290 Plymouth + + + -4.4343137 50.299671 + -4.3701125 50.3243973 + + dac.02002264 + + + 2009 2009-087929 HMS Victory + + + -3.7558454 49.6624088 + -3.7069565 49.690107 + + dac.02002265 + + + 2001 HI922 South West TSS Blk5 + + + 1.8083294 51.3540937 + 2.1522275 51.4785071 + + dac.02002266 + + + 2001 HI922 South West TSS Blk4 + + + 1.9431342 51.4676611 + 2.3086134 51.5965941 + + dac.02002267 + + + 2001 HI922 South West TSS Blk3 + + + 2.1049148 51.5860381 + 2.4527494 51.7138192 + + dac.02002268 + + + 2001 HI922 South West TSS Blk2 + + + 2.2368179 51.7044128 + 2.5274333 51.8238372 + + dac.02002269 + + + 2001 HI922 South West TSS Blk1 + + + 2.3308024 51.8161923 + 2.5164154 51.9136326 + + dac.02002270 + + + 1993 HI588 English Channel Central Part Blk1 + Dowty Electronics side scan sonar type 3000 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + -1.2037785 50.1315726 + -0.9819357 50.2562046 + + dac.02002271 + + + 1993 HI588 English Channel Central Part Blk2 + Dowty Electronics side scan sonar type 3000 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + -1.3928513 50.1219294 + -1.1605733 50.294557 + + dac.02002272 + + + 1993 HI588 English Channel Central Part Blk3 + Dowty Electronics side scan sonar type 3000 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + -1.5985515 50.1228762 + -1.3551576 50.292065 + + dac.02002273 + + + 1993 HI588 English Channel Central Part Blk4 + Dowty Electronics side scan sonar type 3000 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + -1.7780089 50.1156806 + -1.5352081 50.2802617 + + dac.02002274 + + + 1993 HI588 English Channel Central Part Blk5 + Dowty Electronics side scan sonar type 3000 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + -1.9883698 50.1603811 + -1.71363 50.2727121 + + dac.02002275 + + + 1993 HI588 English Channel Central Part Blk6 + Dowty Electronics side scan sonar type 3000 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + -1.984843 50.0671253 + -1.7229305 50.1852486 + + dac.02002276 + + + 1993 HI588 English Channel Central Part Blk7 + Dowty Electronics side scan sonar type 3000 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + -1.985365 49.9775868 + -1.8014706 50.0897976 + + dac.02002277 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A002 + + + 2.1106364 52.8802815 + 2.3523047 53.0055467 + + dac.02002278 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A003 + Survey vessels MV Betelgeuze & STM Vega were used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 2.3440881 52.8804818 + 2.5709595 53.005464 + + dac.02002279 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A005 + Survey vessels MV Betelgeuze & STM Vega were used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 2.1106277 52.7636245 + 2.3523201 52.8872975 + + dac.02002280 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A006 + Survey vessels MV Betelgeuze & STM Vega were used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 2.3445101 52.7643048 + 2.5288792 52.8867155 + + dac.02002281 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A008 + Survey vessels MV Betelgeuze & STM Vega were used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 2.2449847 52.6636442 + 2.4879997 52.7706155 + + dac.02002282 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A010 + Survey vessels MV Betelgeuze & STM Vega were used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 2.2113247 52.5636163 + 2.4531659 52.670643 + + dac.02002283 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A012 + Survey vessels MV Betelgeuze & STM Vega were used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 2.2119946 52.4723498 + 2.4184773 52.5702815 + + dac.02002284 + + + 1995 HI667 Orfordness to North Foreland Blk1 + Surveyed by Oceonics(UK) Ltd; MV Antares, THV Siren & MV Angeline were the survey vessels. + + + 1.5907515 51.9477875 + 1.81221 52.0920884 + + dac.02002285 + + + 1995 HI667 Orfordness to North Foreland Blk2 + Surveyed by Oceonics(UK) Ltd; MV Antares, THV Siren & MV Angeline were the survey vessels. + + + 1.7975525 51.9475499 + 2.0424418 52.0923989 + + dac.02002286 + + + 1995 HI667 Orfordness to North Foreland Blk3 + Surveyed by Oceonics(UK) Ltd; MV Antares, THV Siren & MV Angeline were the survey vessels. + + + 2.0075068 51.9474907 + 2.2575493 52.0923549 + + dac.02002287 + + + 1995 HI667 Orfordness to North Foreland Blk4 + Surveyed by Oceonics(UK) Ltd; MV Antares, THV Siren & MV Angeline were the survey vessels. + + + 1.5794244 51.8178612 + 1.7921383 51.9621393 + + dac.02002288 + + + 1995 HI667 Orfordness to North Foreland Blk5 + Surveyed by Oceonics(UK) Ltd; MV Antares, THV Siren & MV Angeline were the survey vessels. + + + 1.7776462 51.8176531 + 2.0122637 51.9623288 + + dac.02002289 + + + 1995 HI667 Orfordness to North Foreland Blk6 + Surveyed by Oceonics(UK) Ltd; MV Antares, THV Siren & MV Angeline were the survey vessels. + + + 1.9978173 51.8178361 + 2.2164683 51.9621807 + + dac.02002290 + + + 1995 HI667 Orfordness to North Foreland Blk7 + Surveyed by Oceonics(UK) Ltd; MV Antares, THV Siren & MV Angeline were the survey vessels. + + + 1.66805 51.6874602 + 1.922532 51.8325345 + + dac.02002291 + + + 1995 HI667 Orfordness to North Foreland Blk8 + Surveyed by Oceonics(UK) Ltd; MV Antares, THV Siren & MV Angeline were the survey vessels. + + + 1.9073844 51.6873695 + 2.1698644 51.8326233 + + dac.02002292 + + + 1995 HI667 Orfordness to North Foreland Blk9 + Surveyed by Oceonics(UK) Ltd; MV Antares, THV Siren & MV Angeline were the survey vessels. + + + 1.5943078 51.5470275 + 1.8929851 51.7029883 + + dac.02002293 + + + 1995 HI667 Orfordness to North Foreland Blk10 + Surveyed by Oceonics(UK) Ltd; MV Antares, THV Siren & MV Angeline were the survey vessels. + + + 1.8775176 51.5475126 + 2.1266649 51.7024828 + + dac.02002294 + + + 1995 HI667 Orfordness to North Foreland Blk11 + Surveyed by Oceonics(UK) Ltd; MV Antares, THV Siren & MV Angeline were the survey vessels. + + + 1.412006 51.441034 + 1.6423 51.5522623 + + dac.02002295 + + + 1995 HI667 Orfordness to North Foreland Blk12 + Surveyed by Oceonics(UK) Ltd; MV Antares, THV Siren & MV Angeline were the survey vessels. + + + 1.6277674 51.4402295 + 1.8522248 51.5522373 + + dac.02002296 + + + 1995 HI667 Orfordness to North Foreland Blk13 + Surveyed by Oceonics(UK) Ltd; MV Antares, THV Siren & MV Angeline were the survey vessels. + + + 1.8377036 51.4391511 + 2.0683546 51.5523146 + + dac.02002297 + + + 2002 HI962 Anvil Point to Nab Tower Blk1 + MV Ocean Seeker and MV Elinor deployed a GeoAcoustics Model 159D dual channel side scan sonar. +MV Titan Surveyor deployed an Edgetech 2721 dual channel side scan sonar. + + + -1.974194 50.372931 + -1.8125699 50.5028912 + + dac.02002298 + + + 2002 HI962 Anvil Point to Nab Tower Blk2 + MV Ocean Seeker and MV Elinor deployed a GeoAcoustics Model 159D dual channel side scan sonar. +MV Titan Surveyor deployed an Edgetech 2721 dual channel side scan sonar. + + + -1.9735992 50.2505675 + -1.8126591 50.3781659 + + dac.02002299 + + + 2002 HI962 Anvil Point to Nab Tower Blk3 + MV Ocean Seeker and MV Elinor deployed a GeoAcoustics Model 159D dual channel side scan sonar. +MV Titan Surveyor deployed an Edgetech 2721 dual channel side scan sonar. + + + -1.7945177 50.4551295 + -1.5786767 50.5562733 + + dac.02002300 + + + 2002 HI962 Anvil Point to Nab Tower Blk4 + MV Ocean Seeker and MV Elinor deployed a GeoAcoustics Model 159D dual channel side scan sonar. +MV Titan Surveyor deployed an Edgetech 2721 dual channel side scan sonar. + + + -1.8213762 50.3381071 + -1.5785266 50.4624651 + + dac.02002301 + + + 2002 HI962 Anvil Point to Nab Tower Blk5 + MV Ocean Seeker and MV Elinor deployed a GeoAcoustics Model 159D dual channel side scan sonar. +MV Titan Surveyor deployed an Edgetech 2721 dual channel side scan sonar. + + + -1.8213016 50.2586456 + -1.5785234 50.3453128 + + dac.02002302 + + + 2002 HI962 Anvil Point to Nab Tower Blk6 + MV Ocean Seeker and MV Elinor deployed a GeoAcoustics Model 159D dual channel side scan sonar. +MV Titan Surveyor deployed an Edgetech 2721 dual channel side scan sonar. + + + -1.5883248 50.4872169 + -1.3115058 50.6065386 + + dac.02002303 + + + 2002 HI962 Anvil Point to Nab Tower Blk7 + MV Ocean Seeker and MV Elinor deployed a GeoAcoustics Model 159D dual channel side scan sonar. +MV Titan Surveyor deployed an Edgetech 2721 dual channel side scan sonar. + + + -1.587713 50.3709286 + -1.3787898 50.4951325 + + dac.02002304 + + + 2002 HI962 Anvil Point to Nab Tower Blk8 + MV Ocean Seeker and MV Elinor deployed a GeoAcoustics Model 159D dual channel side scan sonar. +MV Titan Surveyor deployed an Edgetech 2721 dual channel side scan sonar. + + + -1.5877681 50.2721346 + -1.379293 50.3785126 + + dac.02002305 + + + 2002 HI962 Anvil Point to Nab Tower Blk9 + MV Ocean Seeker and MV Elinor deployed a GeoAcoustics Model 159D dual channel side scan sonar. +MV Titan Surveyor deployed an Edgetech 2721 dual channel side scan sonar. + + + -1.3206418 50.4891777 + -1.1457999 50.6566584 + + dac.02002306 + + + 2002 HI962 Anvil Point to Nab Tower Blk10 + MV Ocean Seeker and MV Elinor deployed a GeoAcoustics Model 159D dual channel side scan sonar. +MV Titan Surveyor deployed an Edgetech 2721 dual channel side scan sonar. + + + -1.3875772 50.3545978 + -1.1789811 50.4952577 + + dac.02002307 + + + 2002 HI962 Anvil Point to Nab Tower Blk11 + MV Ocean Seeker and MV Elinor deployed a GeoAcoustics Model 159D dual channel side scan sonar. +MV Titan Surveyor deployed an Edgetech 2721 dual channel side scan sonar. + + + -1.388619 50.2453448 + -1.178656 50.3627413 + + dac.02002308 + + + 2002 HI962 Anvil Point to Nab Tower Blk12 + MV Ocean Seeker and MV Elinor deployed a GeoAcoustics Model 159D dual channel side scan sonar. +MV Titan Surveyor deployed an Edgetech 2721 dual channel side scan sonar. + + + -1.1544082 50.4882946 + -0.9918474 50.6670721 + + dac.02002309 + + + 2002 HI962 Anvil Point to Nab Tower Blk13 + MV Ocean Seeker and MV Elinor deployed a GeoAcoustics Model 159D dual channel side scan sonar. +MV Titan Surveyor deployed an Edgetech 2721 dual channel side scan sonar. + + + -1.187528 50.3543247 + -0.9918997 50.4955753 + + dac.02002310 + + + 2002 HI962 Anvil Point to Nab Tower Blk14 + MV Ocean Seeker and MV Elinor deployed a GeoAcoustics Model 159D dual channel side scan sonar. +MV Titan Surveyor deployed an Edgetech 2721 dual channel side scan sonar. + + + -1.1877808 50.2000109 + -0.9922998 50.3615975 + + dac.02002311 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A013 + Survey vessels MV Resolution & STM Vega were also used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty Widescan & EG & G type 259 scan side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 1.9880644 52.3722549 + 2.2020345 52.4786932 + + dac.02002312 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A014 + Survey vessels MV Resolution MV Betelgeuze & STM Vega were also used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty Widescan & EG & G type 259 scan side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 2.1944808 52.3725057 + 2.3864313 52.4784866 + + dac.02002313 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A015 + An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty Widescan recorder and EG & G type 259 side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 1.8341934 52.2633816 + 2.1026235 52.3792294 + + dac.02002314 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A016 + Survey vessel MV Resolutionwas also used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan recorder and EG & G type 259 side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 2.0938188 52.2635416 + 2.3521741 52.3791457 + + dac.02002315 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A017 + An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan recorder and EG & G type 259 side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 1.775496 52.1650002 + 2.0527001 52.2710098 + + dac.02002316 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A018 + Survey vessels MV Resolution was also used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan recorder and EG & G type 259 side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 2.0437217 52.1650662 + 2.3149876 52.270978 + + dac.02002317 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A019 + Survey vessels MV Betelgeuze & STM Vega & MV Resolution were also used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan recorder and EG & G type 259 side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 1.7322934 52.0700004 + 2.0194814 52.1728267 + + dac.02002318 + + + 1994 HI616 Smiths Knoll to Orford Ness Blk A020 + Survey vessels MV Resolution & STM Vega were also used to collect the data. +An Atlas Deso 20 echo sounder was used to obtain depths. +A Dowty widescan recorder and EG & G type 259 side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 2.0104199 52.0697764 + 2.282027 52.1726236 + + dac.02002319 + + + 2003 HI952 Western Approaches to the Dover Strait Blk1 + + + -1.0052352 50.4206593 + -0.7285898 50.5503352 + + dac.02002320 + + + 2003 HI952 Western Approaches to the Dover Strait Blk2 + + + -0.7380353 50.4380174 + -0.5289452 50.5839492 + + dac.02002321 + + + 2003 HI952 Western Approaches to the Dover Strait Blk3 + + + -0.5376288 50.4717906 + -0.3270045 50.6182927 + + dac.02002322 + + + 2003 HI952 Western Approaches to the Dover Strait Blk4 + + + -1.0045429 50.2884043 + -0.7788738 50.4282512 + + dac.02002323 + + + 2003 HI952 Western Approaches to the Dover Strait Blk5 + + + -0.7880876 50.3052457 + -0.5454902 50.4453404 + + dac.02002324 + + + 2003 HI952 Western Approaches to the Dover Strait Blk6 + + + -0.554262 50.3379825 + -0.3269602 50.478562 + + dac.02002325 + + + 2003 HI952 Western Approaches to the Dover Strait Blk7 + + + -1.004402 50.1604896 + -0.7789202 50.2946937 + + dac.02002326 + + + 2003 HI952 Western Approaches to the Dover Strait Blk8 + + + -0.7879151 50.1843321 + -0.545296 50.3122318 + + dac.02002327 + + + 2003 HI952 Western Approaches to the Dover Strait Blk9 + + + -0.5544896 50.209291 + -0.3269743 50.3455229 + + dac.02002328 + + + 2007 HI1159 Dover Strait Blk7 + MV Victor Henson & MV Meridian used for 24hr operations. +MV Jetstream & MV Geniusbank used for 12hr operations (overnight in Port). + + + 1.2633501 50.903942 + 1.4225405 51.0351485 + + dac.02002329 + + + 2009 2009-124334 River Mersey Liverpool Landing Stage + + + -3.0025012 53.396297 + -2.9927851 53.4050068 + + dac.02002330 + + + 1992 HI554 Whitby Fine Ground to Inner Bank Blk4 + Dowty side scan sonar type 2053 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 0.2793653 54.577575 + 0.5546898 54.7673568 + + dac.02002331 + + + 1992 HI554 Whitby Fine Ground to Inner Bank Blk5 + Dowty side scan sonar type 2053 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 0.2952241 54.3656528 + 0.5584051 54.6029892 + + dac.02002332 + + + 1991 HI524-HI525-HI531 Broken Bank to North Haisborough Blk1 + + + 1.6336716 53.3597319 + 1.949612 53.5092884 + + dac.02002333 + + + 1991 HI524-HI525-HI531 Broken Bank to North Haisborough Blk10 + + + 2.0693335 52.9736931 + 2.3354738 53.1140279 + + dac.02002334 + + + 1991 HI524-HI525-HI531 Broken Bank to North Haisborough Blk13 + + + 1.2752377 53.1174339 + 1.5693036 53.1785691 + + dac.02002335 + + + 1991 HI524-HI525-HI531 Broken Bank to North Haisborough Blk2 + + + 1.8539997 53.3593852 + 2.153932 53.5110063 + + dac.02002336 + + + 1991 HI524-HI525-HI531 Broken Bank to North Haisborough Blk3 + + + 1.6356192 53.2184265 + 1.9508734 53.4121328 + + dac.02002337 + + + 1991 HI524-HI525-HI531 Broken Bank to North Haisborough Blk4 + + + 1.9155064 53.2182218 + 2.2209391 53.3906818 + + dac.02002338 + + + 1991 HI524-HI525-HI531 Broken Bank to North Haisborough Blk5 + + + 1.6335901 53.0887097 + 1.8740757 53.2523093 + + dac.02002339 + + + 1991 HI524-HI525-HI531 Broken Bank to North Haisborough Blk6 + + + 1.8365287 53.0863069 + 2.1139108 53.2570841 + + dac.02002340 + + + 1991 HI524-HI525-HI531 Broken Bank to North Haisborough Blk7 + + + 2.0682245 53.0881075 + 2.2912533 53.2610446 + + dac.02002341 + + + 1991 HI524-HI525-HI531 Broken Bank to North Haisborough Blk8 + + + 1.632523 52.9488631 + 1.909295 53.1166845 + + dac.02002342 + + + 1991 HI524-HI525-HI531 Broken Bank to North Haisborough Blk9 + + + 1.8456546 52.9543773 + 2.1175451 53.1183099 + + dac.02002343 + + + 1991 HI524-HI525-HI531 Broken Bank to North Haisborough Blk12 + + + 1.3263728 52.9766762 + 1.5642652 53.1299742 + + dac.02002344 + + + 1991 HI524-HI525-HI531 Broken Bank to North Haisborough Blk11 + + + 1.4988606 52.978082 + 1.6719125 53.1831645 + + dac.02002345 + + + 1991 HI520 Indefatagable Banks to Jim Howe Bank Blk7 + Seabed interpreted from type 3000 side scan sonar and a shipex grab used to obtain samples. + + + 2.2786906 53.3177837 + 2.547947 53.5117204 + + dac.02002346 + + + 1991 HI520 Indefatagable Banks to Jim Howe Bank Blk2 + Seabed interpreted from type 3000 side scan sonar and a shipex grab used to obtain samples. + + + 2.3210959 53.1638409 + 2.5821312 53.3524475 + + dac.02002347 + + + 1991 HI520 Indefatagable Banks to Jim Howe Bank Blk6 + Seabed interpreted from type 3000 side scan sonar and a shipex grab used to obtain samples. + + + 2.4877542 53.1646249 + 2.7360935 53.395757 + + dac.02002348 + + + 2001 HI915 Farne Islands to Dunbar Blk1 + + + -2.3397696 55.8370193 + -1.9942026 55.9440446 + + dac.02002349 + + + 2001 HI915 Farne Islands to Dunbar Blk2 + + + -2.0051495 55.8380005 + -1.7285866 55.9656051 + + dac.02002350 + + + 2001 HI915 Farne Islands to Dunbar Blk3 + + + -1.7390947 55.8372692 + -1.3807386 55.9441169 + + dac.02002351 + + + 2001 HI915 Farne Islands to Dunbar Blk4 + + + -2.0654683 55.7374317 + -1.7444706 55.8458711 + + dac.02002352 + + + 2001 HI915 Farne Islands to Dunbar Blk5 + + + -1.7551417 55.7377888 + -1.4618083 55.8454834 + + dac.02002353 + + + 2001 HI915 Farne Islands to Dunbar Blk6 + + + -1.4720635 55.7373282 + -1.1237865 55.8458801 + + dac.02002354 + + + 2001 HI915 Farne Islands to Dunbar Blk7 + + + -1.9707329 55.6323199 + -1.6447171 55.7462051 + + dac.02002355 + + + 2001 HI915 Farne Islands to Dunbar Blk8 + + + -1.6547328 55.6329449 + -1.4123477 55.7449856 + + dac.02002356 + + + 2001 HI915 Farne Islands to Dunbar Blk9 + + + -1.4211522 55.6333395 + -1.1789951 55.7450772 + + dac.02002357 + + + 2001 HI915 Farne Islands to Dunbar Blk10 + + + -1.1888323 55.6323843 + -0.856501 55.7457101 + + dac.02002358 + + + 1994 HI612 Fair Isle Channel Blk1 + + + -1.5258973 59.5347234 + -1.0822091 59.6806822 + + dac.02002359 + + + 1994 HI612 Fair Isle Channel Blk2 + + + -1.383209 59.6480704 + -1.1084729 59.8085279 + + dac.02002360 + + + 1994 HI612 Fair Isle Channel Blk3 + + + -1.1901396 59.657375 + -0.9908007 59.8081895 + + dac.02002361 + + + 1994 HI612 Fair Isle Channel Blk4 + + + -1.719411 59.6594579 + -1.4983889 59.7753288 + + dac.02002362 + + + 1994 HI612 Fair Isle Channel Blk5 + + + -2.0666627 59.6600985 + -1.6928115 59.78111 + + dac.02002363 + + + 1994 HI612 Fair Isle Channel Blk6 + + + -1.9476781 59.5344722 + -1.4930613 59.6798796 + + dac.02002364 + + + 1994 HI612 Fair Isle Channel Blk7 + + + -2.5978268 59.4013347 + -2.2365772 59.5367683 + + dac.02002365 + + + 1994 HI612 Fair Isle Channel Blk8 + + + -2.6056723 59.5105928 + -2.2675144 59.6343017 + + dac.02002366 + + + 1994 HI612 Fair Isle Channel Blk9 + + + -2.8248542 59.4319741 + -2.5727199 59.632118 + + dac.02002367 + + + 1991 HI520 Indefatagable Banks to Jim Howe Bank Blk5 + Seabed interpreted from type 3000 side scan sonar and a shipex grab used to obtain samples. + + + 2.0710268 53.3531192 + 2.3338063 53.5450791 + + dac.02002368 + + + 1991 HI520 Indefatagable Banks to Jim Howe Bank Blk4 + Seabed interpreted from type 3000 side scan sonar and a shipex grab used to obtain samples. + + + 2.1377878 53.159132 + 2.3446487 53.3818851 + + dac.02002369 + + + 1991 HI520 Indefatagable Banks to Jim Howe Bank Blk3 + Seabed interpreted from type 3000 side scan sonar and a shipex grab used to obtain samples. + + + 2.2845961 53.1607768 + 2.5415933 53.3853779 + + dac.02002370 + + + 1993 HI593 Race Bank to Silver Pit Blk1 + Surveyed by Oceonics (UK) Ltd . +MV Deneb & MV Skomer were also used for collecting data. +Klein 595 & EG & G 260 side scan sonars were used to interpret the seafloor. +A Van Veen Grab was used to obtain samples. + + + 0.6284934 53.4472364 + 0.9382706 53.5881117 + + dac.02002371 + + + 1993 HI593 Race Bank to Silver Pit Blk2 + Surveyed by Oceonics (UK) Ltd . +MV Deneb & MV Skomer were also used for collecting data. +Klein 595 & EG & G 260 side scan sonars were used to interpret the seafloor. +A Van Veen Grab was used to obtain samples. + + + 1.0962505 53.0622222 + 1.2945076 53.1873457 + + dac.02002372 + + + 1993 HI593 Race Bank to Silver Pit Blk3 + Surveyed by Oceonics (UK) Ltd . +MV Deneb & MV Skomer were also used for collecting data. +Klein 595 & EG & G 260 side scan sonars were used to interpret the seafloor. +A Van Veen Grab was used to obtain samples. + + + 0.9046072 53.0376029 + 1.1035482 53.1873576 + + dac.02002373 + + + 1993 HI593 Race Bank to Silver Pit Blk4 + Surveyed by Oceonics (UK) Ltd . +MV Deneb & MV Skomer were also used for collecting data. +Klein 595 & EG & G 260 side scan sonars were used to interpret the seafloor. +A Van Veen Grab was used to obtain samples. + + + 0.7472279 53.1052078 + 0.9115511 53.1870129 + + dac.02002374 + + + 1993 HI593 Race Bank to Silver Pit Blk5 + Surveyed by Oceonics (UK) Ltd . +MV Deneb & MV Skomer were also used for collecting data. +Klein 595 & EG & G 260 side scan sonars were used to interpret the seafloor. +A Van Veen Grab was used to obtain samples. + + + 0.4464098 53.448437 + 0.636816 53.5871842 + + dac.02002375 + + + 1993 HI593 Race Bank to Silver Pit Blk10 + Surveyed by Oceonics (UK) Ltd . +MV Deneb & MV Skomer were also used for collecting data. +Klein 595 & EG & G 260 side scan sonars were used to interpret the seafloor. +A Van Veen Grab was used to obtain samples. + + + 0.1645633 53.4474507 + 0.4545246 53.5880939 + + dac.02002376 + + + 1993 HI593 Race Bank to Silver Pit Blk6 + Surveyed by Oceonics (UK) Ltd . +MV Deneb & MV Skomer were also used for collecting data. +Klein 595 & EG & G 260 side scan sonars were used to interpret the seafloor. +A Van Veen Grab was used to obtain samples. + + + 0.7446932 53.3134457 + 1.102722 53.4555865 + + dac.02002377 + + + 1993 HI593 Race Bank to Silver Pit Blk7 + Surveyed by Oceonics (UK) Ltd . +MV Deneb & MV Skomer were also used for collecting data. +Klein 595 & EG & G 260 side scan sonars were used to interpret the seafloor. +A Van Veen Grab was used to obtain samples. + + + 0.5125443 53.3146151 + 0.7539544 53.4544042 + + dac.02002378 + + + 1993 HI593 Race Bank to Silver Pit Blk8 + Surveyed by Oceonics (UK) Ltd . +MV Deneb & MV Skomer were also used for collecting data. +Klein 595 & EG & G 260 side scan sonars were used to interpret the seafloor. +A Van Veen Grab was used to obtain samples. + + + 0.1918715 53.3137274 + 0.5215756 53.4553003 + + dac.02002379 + + + 1993 HI593 Race Bank to Silver Pit Blk9 + Surveyed by Oceonics (UK) Ltd . +MV Deneb & MV Skomer were also used for collecting data. +Klein 595 & EG & G 260 side scan sonars were used to interpret the seafloor. +A Van Veen Grab was used to obtain samples. + + + 0.9786771 53.1808223 + 1.2672614 53.3215809 + + dac.02002380 + + + 1993 HI593 Race Bank to Silver Pit Blk12 + Surveyed by Oceonics (UK) Ltd . +MV Deneb & MV Skomer were also used for collecting data. +Klein 595 & EG & G 260 side scan sonars were used to interpret the seafloor. +A Van Veen Grab was used to obtain samples. + + + 0.7458794 53.1813393 + 0.9872996 53.3211005 + + dac.02002381 + + + 1993 HI593 Race Bank to Silver Pit Blk11 + Surveyed by Oceonics (UK) Ltd . +MV Deneb & MV Skomer were also used for collecting data. +Klein 595 & EG & G 260 side scan sonars were used to interpret the seafloor. +A Van Veen Grab was used to obtain samples. + + + 0.4647917 53.1816681 + 0.7544691 53.3215776 + + dac.02002382 + + + 1992 HI554 Whitby Fine Ground to Inner Bank Blk2 + Dowty side scan sonar type 2053 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 0.7307281 54.462662 + 1.0214477 54.7049088 + + dac.02002383 + + + 1992 HI554 Whitby Fine Ground to Inner Bank Blk3 + Dowty side scan sonar type 2053 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 0.5186481 54.5294694 + 0.7946642 54.7334736 + + dac.02002384 + + + 1992 HI554 Whitby Fine Ground to Inner Bank Blk4 + Dowty side scan sonar type 2053 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 0.5184459 54.3283082 + 0.7869863 54.5508758 + + dac.02002385 + + + 2006 HI1137 Eastern Approaches to Sanday and Stronsay Blk2 + + + -1.8474959 58.9928912 + -1.4080332 59.2981363 + + dac.02002386 + + + 2006 HI1137 Eastern Approaches to Sanday and Stronsay Blk3 + + + -2.984245 58.7887566 + -2.0856573 59.0837954 + + dac.02002387 + + + 2006 HI1137 Eastern Approaches to Sanday and Stronsay Blk3 Addendum + + + -1.5300325 58.9951788 + -1.4102653 59.2996588 + + dac.02002388 + + + 2008 HI1137 Eastern Approaches to Sanday and Stronsay Blk4 + + + -2.1095469 58.7881082 + -1.4060152 59.00881 + + dac.02002389 + + + 2008 HI1137 Eastern Approaches to Sanday and Stronsay Blk5 + + + -2.8388936 58.567658 + -1.8304286 58.8138031 + + dac.02002390 + + + 2006 HI1137 Eastern Approaches to Sanday and Stronsay Blk6 + + + -2.5661854 58.9722874 + -1.8234997 59.3604196 + + dac.02002391 + + + 1999 HI799 Approaches to Bristol Channel Blk B1 Sheet 3 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.2456925 50.8956604 + -4.873063 51.0145613 + + dac.02002392 + + + 1999 HI799 Approaches to Bristol Channel Blk B1 Sheet 4 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.4204176 50.7727256 + -5.1484194 50.9076296 + + dac.02002393 + + + 1999 HI799 Approaches to Bristol Channel Blk B1 Sheet 5 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.1641416 50.7717553 + -4.8722373 50.9128795 + + dac.02002394 + + + 2000 HI799 Approaches to Bristol Channel Blk B3 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.7588695 50.5467304 + -5.1483423 50.7896375 + + dac.02002395 + + + 1982 2006-290765 Kings Channel + + + 1.3426343 51.6688534 + 1.5543301 51.8930373 + + dac.02002396 + + + 2000 2006-290765 River Mersey Crosby Channel and Shoal + + + -3.1147262 53.4928058 + -3.0857125 53.5170573 + + dac.02002397 + + + 2000 2006-290765 River Mersey Eastham Bar and Channel + + + -2.9861598 53.3447709 + -2.9511072 53.3702085 + + dac.02002398 + + + 2002 HI799 Approaches to Bristol Channel Blk C1 Sheet 20 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.7368728 50.6033237 + -5.4880266 50.7355812 + + dac.02002399 + + + 2002 HI799 Approaches to Bristol Channel Blk C1 Sheet 21 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.9638658 50.5978056 + -5.7184955 50.7371896 + + dac.02002400 + + + 2002 HI799 Approaches to Bristol Channel Blk C1 Sheet 22 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -6.1870461 50.5934818 + -5.9448125 50.735744 + + dac.02002401 + + + 2002 HI799 Approaches to Bristol Channel Blk C1 Sheet 23 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -6.1316873 50.4859523 + -5.8811715 50.6083575 + + dac.02002402 + + + 2002 HI799 Approaches to Bristol Channel Blk C1 Sheet 24 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.8989049 50.4876536 + -5.6638699 50.6136204 + + dac.02002403 + + + 2002 HI799 Approaches to Bristol Channel Blk C2 Sheet 25 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.609396 50.7132322 + -5.3871818 50.7970068 + + dac.02002404 + + + 2002 HI799 Approaches to Bristol Channel Blk C2 Sheet 26 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.6055138 50.78406 + -5.3997718 50.9090513 + + dac.02002405 + + + 2002 HI799 Approaches to Bristol Channel Blk C2 Sheet 27 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.4161197 50.7883037 + -5.2098951 50.9128121 + + dac.02002406 + + + 2002 HI799 Approaches to Bristol Channel Blk C2 Sheet 28 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.603828 50.8969698 + -5.4375691 51.0080395 + + dac.02002407 + + + 2002 HI799 Approaches to Bristol Channel Blk C2 Sheet 29 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.4531913 50.9002829 + -5.2636267 51.0099287 + + dac.02002408 + + + 2002 HI799 Approaches to Bristol Channel Blk C2 Sheet 30 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.2792578 50.9034007 + -5.0664938 51.0101598 + + dac.02002409 + + + 2003 HI799 Approaches to Bristol Channel Blk C4 Sheet 37 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.614519 51.1616252 + -5.4298871 51.251901 + + dac.02002410 + + + 2003 HI799 Approaches to Bristol Channel Blk C4 Sheet 38 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.4450306 51.1595105 + -5.2298235 51.255878 + + dac.02002411 + + + 2003 HI799 Approaches to Bristol Channel Blk C4 Sheet 39 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.2440084 51.1606491 + -5.0631455 51.258682 + + dac.02002412 + + + 2003 HI799 Approaches to Bristol Channel Blk C4 Sheet 40 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.6038876 51.241351 + -5.434233 51.3387336 + + dac.02002413 + + + 2003 HI799 Approaches to Bristol Channel Blk C4 Sheet 41 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.4495341 51.2445067 + -5.2334347 51.3405047 + + dac.02002414 + + + 2003 HI799 Approaches to Bristol Channel Blk C4 Sheet 42 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.2483028 51.248218 + -5.0661527 51.3382901 + + dac.02002415 + + + 2003 HI799 Approaches to Bristol Channel Blk C5 Sheet 43 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.6040893 51.3259571 + -5.4040519 51.4137559 + + dac.02002416 + + + 2003 HI799 Approaches to Bristol Channel Blk C5 Sheet 44 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.4174591 51.3313074 + -5.2486728 51.4167505 + + dac.02002417 + + + 2003 HI799 Approaches to Bristol Channel Blk C5 Sheet 45 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.2616811 51.3308498 + -5.0625237 51.4202217 + + dac.02002418 + + + 2003 HI799 Approaches to Bristol Channel Blk C5 Sheet 46 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.6063099 51.4025689 + -5.4079841 51.4938361 + + dac.02002419 + + + 2003 HI799 Approaches to Bristol Channel Blk C5 Sheet 47 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.4210417 51.4065685 + -5.2527637 51.4938206 + + dac.02002420 + + + 2003 HI799 Approaches to Bristol Channel Blk C5 Sheet 48 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.2654561 51.4085848 + -5.063505 51.4901153 + + dac.02002421 + + + 1999 2006-290871 North Sea Fraserburg Harbour + + + -2.0005336 57.6901785 + -1.9915998 57.6930676 + + dac.02002422 + + + 1999 2006-290876 Scalloway Harbour + + + -1.2858977 60.1307881 + -1.2760537 60.1347677 + + dac.02002423 + + + 2000 2006-291510 Approaches to Cairnryan and Stranraer Loch Ryan + + + -5.0756283 54.9878157 + -5.0456614 55.0098325 + + dac.02002424 + + + 2001 HI799 Approaches to Bristol Channel Blk B4 Sheet 18 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.1764119 50.6570599 + -4.8768044 50.7870949 + + dac.02002425 + + + 2001 HI799 Approaches to Bristol Channel Blk B4 Sheet 19 + SBES = Atlas Deso 25 Side scan = GeoAcoustics type 2094 + + + -5.1942151 50.5546726 + -5.0237572 50.6661416 + + dac.02002426 + + + 2008 2010-10126 North of Greater Gabbard Area 222 + + + 1.9165798 52.0147956 + 1.9452548 52.0465114 + + dac.02002427 + + + 1997 HI705 Isle of Man to Liverpool Bay Blk4 + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + + -3.9806272 53.8402864 + -3.6919949 53.9556868 + + dac.02002428 + + + 1997 HI705 Isle of Man to Liverpool Bay Blk5 + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + + -3.7063271 53.84957 + -3.4204162 53.9655348 + + dac.02002429 + + + 1997 HI705 Isle of Man to Liverpool Bay Blk6 + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + + -3.9788858 53.7415258 + -3.6858522 53.8612234 + + dac.02002430 + + + 1997 HI705 Isle of Man to Liverpool Bay Blk7 + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. + + + + -3.7174074 53.7478676 + -3.4164671 53.8670459 + + dac.02002431 + + + 1997 HI732 Cockle Shoal and Caister Road Blk1 + + + 1.7128148 52.6861435 + 1.7910127 52.715016 + + dac.02002432 + + + 1997 HI732 Cockle Shoal and Caister Road Blk2 + + + 1.7027831 52.6154107 + 1.8213241 52.717151 + + dac.02002433 + + + 1998 HI728 Duddon Sands to Mull of Galloway Area 7a + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. +Atlas Deso 25 Echo sounder was used to ascertain depths. + + + -4.946953 54.5357004 + -4.5930835 54.6637998 + + dac.02002434 + + + 1998 HI728 Duddon Sands to Mull of Galloway Area 7b + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. +Atlas Deso 25 Echo sounder was used to ascertain depths. + + + -4.6213461 54.5371533 + -4.361895 54.6775587 + + dac.02002435 + + + 1999 2006-290892 River Fal - Carrick Roads + + + -5.0587923 50.190093 + -5.0285068 50.2067316 + + dac.02002436 + + + 1999 2006-290892 River Fal Turnaware Point to King Harry Passage + + + -5.0380467 50.2042909 + -5.0257314 50.2103908 + + dac.02002437 + + + 1999 HI728 Duddon Sands to Mull of Galloway Area 6a + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. +Atlas Deso 25 Echo sounder was used to ascertain depths. + + + -4.8809489 54.4288109 + -4.5929879 54.5494361 + + dac.02002438 + + + 1999 HI728 Duddon Sands to Mull of Galloway Area 6b + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. +Atlas Deso 25 Echo sounder was used to ascertain depths. + + + -4.6254567 54.4267701 + -4.3587374 54.5478364 + + dac.02002439 + + + 1999 HI728 Duddon Sands to Mull of Galloway Area 6c + Widescan side scan sonar type 3050 was used to interpret the seafloor and a shipex grab used to obtain samples. +Atlas Deso 25 Echo sounder was used to ascertain depths. + + + -4.7848982 54.3163644 + -4.4047659 54.4469353 + + dac.02002440 + + + 2000 HI910 North Sea Deep Water Blk2 + + + 2.5922666 52.7724444 + 2.737789 52.8894473 + + dac.02002441 + + + 2000 HI910 North Sea Deep Water Blk1 + + + 2.5590238 52.0098738 + 2.9538846 52.7837123 + + dac.02002442 + + + 2001 2006-290677 Portsmouth Harbour Outer Camber + + + -1.1101071 50.7919619 + -1.1052347 50.7941524 + + dac.02002443 + + + 2001 2006-290677 Portsmouth Harbour Swashway Channel + + + -1.1179261 50.7701582 + -1.0996924 50.7835223 + + dac.02002444 + + + 2001 HI944 Nab Tower to Newhaven Area B + GeoAcoustics type 2094 side scan sonar was used to interpret the seafloor and a shipex grab used to obtain samples. + + + -0.1586961 50.7585536 + 0.0410228 50.8220464 + + dac.02002445 + + + 2001 HI944 Nab Tower to Newhaven Area C + GeoAcoustics type 2094 side scan sonar was used to interpret the seafloor and a shipex grab used to obtain samples. + + + -0.338227 50.7742307 + -0.1437454 50.8307695 + + dac.02002446 + + + 1995 HI684 Dungeness to Dover Blk1 + + + 1.1438669 50.9205518 + 1.3359948 51.0968875 + + dac.02002447 + + + 1995 HI684 Dungeness to Dover Blk2 + Side scan sonar type 3050 was used for HI 684. + + + 0.9752624 50.8398305 + 1.1783619 51.059879 + + dac.02002448 + + + 2001 2006-291166 Christchurch Bay Hurst Spit Stabilisation Scheme Shingles Blk1 + + + -1.6292581 50.6557475 + -1.5525228 50.7150245 + + dac.02002449 + + + 2001 2006-291166 Christchurch Bay Hurst Spit Stabilisation Scheme Shingles Blk2 + + + -1.6107302 50.6688212 + -1.5525452 50.7043363 + + dac.02002450 + + + 2001 2006-291166 Christchurch Bay Hurst Spit Stabilisation Scheme Shingles Blk4 + + + -1.6106564 50.669965 + -1.5524189 50.7022776 + + dac.02002451 + + + 1995 HI647 South Foreland to Ramsgate Blk2 + + + 1.3936082 51.1807069 + 1.4641478 51.3106317 + + dac.02002452 + + + 1995 HI647 South Foreland to Ramsgate Blk1 + + + 1.395198 51.0953989 + 1.503824 51.2262689 + + dac.02002453 + + + 1989 HI413 Sole Pit to Indefatigable Banks Blk1 + Waverley type 3000 side scan sonar was used to interpret the seafloor. + + + 1.4108546 53.4959648 + 1.6188087 53.6187645 + + dac.02002454 + + + 1989 HI413 Sole Pit to Indefatigable Banks Blk2 + SBES = Atlas Deso 25 Side scan = Waverley type 3000 + + + 1.2743584 53.6006819 + 1.566611 53.7300652 + + dac.02002455 + + + 1989 HI413 Sole Pit to Indefatigable Banks Blk3 + SBES = Atlas Deso 25 Side scan = Waverley type 3000 + + + 1.3613473 53.7153136 + 1.6208509 53.8438866 + + dac.02002456 + + + 1989 HI413 Sole Pit to Indefatigable Banks Blk4 + SBES = Atlas Deso 25 Side scan = Waverley type 3000 + + + 1.2763149 53.7190163 + 1.5476583 53.8393082 + + dac.02002457 + + + 1989 HI413 Sole Pit to Indefatigable Banks Blk5 + SBES = Atlas Deso 25 Side scan = Waverley type 3000 + + + 1.4745131 53.8300461 + 1.6217181 53.9708862 + + dac.02002458 + + + 1996 HI698 Long Sand Head to South Knock Blk2 + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.6546703 51.6049119 + 1.6858091 51.7796337 + + dac.02002459 + + + 1996 HI698 Long Sand Head to South Knock Blk1 + Ultra side scan sonar 3000 (type 2053) was used to interpret the seafloor and a shipex grab was used to obtain samples. + + + 1.4845741 51.5321731 + 1.6856965 51.6128263 + + dac.02002460 + + + 1993 HI604 Haisborough Sand to Smiths Knoll East Coast Blk1 + Surveyed by Oceonics (UK) Ltd. +Survey vessels MV Skomer was also used to collect data. +A Klein 531 & EG & G 260 side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 1.5576328 52.8373819 + 1.7703097 53.0060661 + + dac.02002461 + + + 1993 HI604 Haisborough Sand to Smiths Knoll East Coast Blk2 + Surveyed by Oceonics (UK) Ltd. +Survey vessels MV Skomer was also used to collect data. +A Klein 531 & EG & G 260 side scan sonar was used to interpret the seafloor and a Van Veen grab used to obtain samples. + + + 1.7630548 52.78956 + 1.9070566 52.9694223 + + dac.02002462 + + + 2003 M3874 Portsmouth Harbour Outer Camber + + + -1.1095694 50.791632 + -1.1052634 50.7939941 + + dac.02002463 + + + 2003 2006-319971 Thurso Bay Scrabster Harbour Fish Dock + + + -3.5489893 58.6095841 + -3.5470096 58.6110701 + + dac.02002464 + + + 2003 2006-319971 Thurso Bay Scrabster Harbour Inner + + + -3.5504287 58.6104837 + -3.5487029 58.6113955 + + dac.02002465 + + + 2003 2006-319971 Thurso Bay Scrabster Harbour + + + -3.5470754 58.6098167 + -3.5431989 58.611967 + + dac.02002466 + + + 2003 2006-319971 Thurso Bay Scrabster Harbour Outer + + + -3.5490635 58.610927 + -3.5468817 58.6121165 + + dac.02002467 + + + 2005 2006-338130 Aberdeen Harbour and Approaches + + + -2.0968586 57.1095155 + -1.9840874 57.1799326 + + dac.02002468 + + + 2005 2006-338130 Aberdeen Harbour Navigation Channel + + + -2.0692347 57.1415726 + -2.0558763 57.1482325 + + dac.02002469 + + + 2005 2006-338134 Portsmouth Harbour Outer Camber and Layby Berth + + + -1.1097691 50.7916333 + -1.1052552 50.7937753 + + dac.02002470 + + + 2007 HI1221 Cockle Shoal + + + 1.7492095 52.6776865 + 1.790675 52.7006964 + + dac.02002471 + + + 2006 HI1152 Wee Bankie to Gourdon Blk1 + + + -1.9522722 56.1487737 + -1.4874707 56.8551461 + + dac.02002472 + + + 2008 HI1255 Approaches to Stornoway Blk1 + The Primary Reference Position was provided by an Applanix POS MV, supplied with GPS data from a Real Time Kinematic (RTK) solution, using GPS carrier phase measurements observed at an installed Geodetic Control Station in Stornoway. + + + -6.3905088 58.0734409 + -6.2091064 58.2034974 + + dac.02002473 + + + 2006 HI1152 Wee Bankie to Gourdon Blk2 + + + -2.6165988 56.1573611 + -1.8723475 56.8663156 + + dac.02002474 + + + 2006 2008-66958 Scapa Flow Blk1 + + + -3.2147988 58.8730011 + -3.1200584 58.9109762 + + dac.02002475 + + + 2006 2008-66958 Scapa Flow Blk2 + + + -3.2147155 58.8530756 + -3.0702581 58.9022636 + + dac.02002476 + + + 2008 HI1255 Approaches to Stornoway Blk2 + The Primary Reference Position was provided by an Applanix POS MV, supplied with GPS data from a Real Time Kinematic (RTK) solution, using GPS carrier phase measurements observed at an installed Geodetic Control Station in Stornoway. + + + -6.3805409 58.0986108 + -6.3592143 58.1271627 + + dac.02002477 + + + 2005 HI1059 Western Approaches to the English Channel Blk4 + + + -5.5090962 49.8522418 + -4.5350317 49.993121 + + dac.02002478 + + + 2010 2010-59251 River Avon Tongue Head + + + -2.6280873 51.4468308 + -2.6233895 51.453895 + + dac.02002479 + + + 2010 2010-65329 Bristol Denny Shoal + + + -2.7719388 51.4979436 + -2.7400811 51.5114308 + + dac.02002480 + + + 2009 2006-62514 Keyhaven + + + -1.5728402 50.7065748 + -1.5498759 50.722831 + + dac.02002481 + + + 2010 2010-62468 Folkstone Harbour and Approaches + + + 1.1856893 51.0758561 + 1.1962814 51.0806826 + + dac.02002482 + + + 2010 2010-067434 River Mersey Crosby Channel and Shoal + + + -3.1251594 53.4894664 + -3.083741 53.5247413 + + dac.02002483 + + + 2010 2010-067434 River Mersey Eastham Channel + + + -2.972053 53.3224602 + -2.9470785 53.3588575 + + dac.02002484 + + + 2010 2010-067434 River Mersey Garston Channel and Bar + + + -2.9905153 53.3641195 + -2.9585386 53.3824407 + + dac.02002485 + + + 2010 2010-067434 River Mersey Queens Channel East + + + -3.2276777 53.5139272 + -3.1714649 53.5275382 + + dac.02002486 + + + 2010 2010-70828 Shoreham Harbour + + + -0.2692355 50.8202057 + -0.2010993 50.8320261 + + dac.02002487 + + + 2010 2010-62498 Milford Haven + + + -4.9854468 51.6839239 + -4.9780768 51.6856934 + + dac.02002488 + + + 2009 2010-67437 Approaches to Pembroke Dock + + + -5.1836341 51.6701687 + -4.9249058 51.7237489 + + dac.02002489 + + + 2010 2010-073232 Aberdeen Harbour + + + -2.0964996 57.1263765 + -1.9973092 57.2064597 + + dac.02002490 + + + 2008 2010-41623 Beaulieu River 1 + + + -1.4703287 50.7615509 + -1.3978555 50.8304421 + + dac.02002491 + + + 2008 2010-41623 Beaulieu River 2 + + + -1.5910779 50.7056238 + -1.369153 50.82103 + + dac.02002492 + + + 2009 2010-67437 Milford Haven + + + -5.1874044 51.6602762 + -4.9151558 51.7157173 + + dac.02002493 + + + 2003 2006-338109 Yealm Head to Cawsand Bay Lidar + + + -4.2502845 50.2905389 + -4.0657996 50.3514255 + + dac.02002494 + + + 2008 2009-59524 Cawsand Bay to Hamoaze and Devonport 2m + + + -4.2067664 50.3189942 + -4.1365019 50.3946695 + + dac.02002495 + + + 1987 HI363 Sea of the Hebrides West + + + -6.9037268 57.0571098 + -6.6580738 57.2593187 + + dac.02002496 + + + 1998 2006-358335 Harwich Deep Water Channel + + + 1.4319469 51.8335814 + 1.6244656 51.9899722 + + dac.02002497 + + + 2002 HI993 South Ship Head Long Sand Head and Black Deep + GeoAcoustics side scan sonar was used to interpret the seafloor and a shipex grab used to obtain samples. + + + 1.4790473 51.7361505 + 1.6688182 51.9358736 + + dac.02002498 + + + 2006 2008-26913 Harwich River Orwell + + + 1.1533602 51.9605568 + 1.2854749 52.047326 + + dac.02002499 + + + 2005 HI1122 Sanday Sound to Westray Firth Blk3 + + + -2.8962713 59.1127362 + -2.793556 59.2672104 + + dac.02002500 + + + 2004 2007-2953 Felixstowe Landguard Point to Woodbridge Haven + + + 1.3169868 51.9248168 + 1.4273432 52.0001764 + + dac.02002501 + + + 2007 2007-29648 River Tay Castle Bank to Inchyra + + + -3.3254413 56.3499941 + -3.1789318 56.3791012 + + dac.02002502 + + + 2007 2007-29648 River Tay Inchyra to Perth Harbour + + + -3.4299608 56.3629182 + -3.3234795 56.3900013 + + dac.02002503 + + + 2007 2007-78979 Forth North and South Channel + + + -3.1491822 56.0078796 + -2.9859861 56.0661879 + + dac.02002504 + + + 2008 2008-56978 Dundee Necome Shoal to Horse Shoe + + + -2.9192679 56.4494512 + -2.8303751 56.4668792 + + dac.02002505 + + + 2008 2008-56978 Dundee Dundee Harbour to Spoil Ground + + + -2.9542874 56.4498515 + -2.9102614 56.4654254 + + dac.02002506 + + + 2008 2008-66736 Harwich Haven Approaches + + + 1.3456867 51.8333014 + 1.4457857 51.9261521 + + dac.02002507 + + + 2008 2008-90803 Forth Kirkcaldy Bay + + + -3.1552262 56.0542865 + -2.9995416 56.1098605 + + dac.02002508 + + + 2010 2010-89563 Dover Harbour + + + 1.3092459 51.1106596 + 1.344994 51.1273383 + + dac.02002509 + + + 2010 2010-092953 River Mersey Alfred Dock Entrance + + + -3.018384 53.3977371 + -3.0055172 53.4074209 + + dac.02002510 + + + 2010 2010-092953 River Mersey Crosby Channel South + + + -3.1008915 53.467923 + -3.0557388 53.5020039 + + dac.02002511 + + + 2010 2010-092953 River Mersey Eastham Bar and Approaches Channel + + + -2.9718269 53.3224746 + -2.9471039 53.358627 + + dac.02002512 + + + 2010 2010-092953 River Mersey Garston Channel + + + -2.9617218 53.3468011 + -2.9067313 53.372233 + + dac.02002513 + + + 2010 2010-092953 River Mersey Gladstone Dock Entrance + + + -3.0217208 53.4432875 + -3.0141195 53.4525343 + + dac.02002514 + + + 2010 2010-092953 River Mersey Heysham Approaches and Harbour + + + -2.9557408 54.0214507 + -2.9129679 54.035807 + + dac.02002515 + + + 2010 2010-092953 River Mersey Jordans Spit + + + -3.3057569 53.5547084 + -3.273444 53.5810774 + + dac.02002516 + + + 2010 2010-092953 River Mersey Langton Dock Entrance + + + -3.0135236 53.433186 + -3.0074723 53.4402678 + + dac.02002517 + + + 2010 2010-092953 River Mersey Liverpool Landing Stage + + + -3.0094198 53.4005371 + -2.9965056 53.4108003 + + dac.02002518 + + + 2010 2010-092953 River Mersey New Brighton Shoal + + + -3.0401336 53.4337548 + -3.0141364 53.4524016 + + dac.02002519 + + + 2010 2010-085110 Penzance Bay Penzance Harbour + comorg & iprow=Cornwall County Council + + + -5.5333012 50.1153545 + -5.5244387 50.1200917 + + dac.02002520 + + + 2010 2010-84539 Forth Forth Deep Water Channel + Colorg - Forth Ports + + + -3.3261523 56.013938 + -3.2267946 56.0439001 + + dac.02002521 + + + 2010 2010-084854 Lymington Harbour + + + -1.537176 50.7298013 + -1.4943538 50.7599935 + + dac.02002522 + + + 2010 2010-67424 Ramsgate New Harbour + + + 1.4142544 51.3229084 + 1.432916 51.3285288 + + dac.02002523 + + + 2006 HI111 Chichester Harbour + + + -0.9800808 50.7392043 + -0.8101488 50.8412947 + + dac.02002524 + + + 2002 HI1003 Selsey Bill to Hooe Bank BlkB + + + -0.8437347 50.6472454 + -0.651574 50.7838279 + + dac.02002525 + + + 2007 HI1242 Bill of Portland to Petit Tor Blk1 + Owned by Teignbridge District Council. Work carried out as part of the Southwest Regional Coastal Monitoring Programme. The Primary Reference Position was provided by Applanix POS MV systems. + + + -3.5270596 50.4576884 + -3.4477705 50.5841268 + + dac.02002526 + + + 2009 HI1291 Workington Bank to Silloth + + + -3.8051137 54.6001436 + -3.3764072 54.8918923 + + dac.02002527 + + + 2010 2010-97974 Bristol Denny Shoal + + + -2.7719655 51.4980065 + -2.7401165 51.511485 + + dac.02002528 + + + 2010 2010-97980 Milford Haven + + + -4.9864637 51.6835645 + -4.9784147 51.6864028 + + dac.02002529 + + + 2010 2010-126260 Holyhead + + + -4.6474319 53.309729 + -4.5996789 53.3355123 + + dac.02002530 + + + 2010 2010-127537 Isle of Wight - Cowes Harbour + + + -1.3084227 50.7318651 + -1.280004 50.7686095 + + dac.02002531 + + + 2010 2010-126261 Ramsgate Harbour + + + 1.4142464 51.3231055 + 1.429698 51.3313403 + + dac.02002532 + + + 2010 2010-126264 Ramsgate Approaches and Spoil Ground + + + 1.4186853 51.3073599 + 1.4550406 51.3301233 + + dac.02002533 + + + 2010 2010-126258 Fishguard + + + -4.9883379 52.0014896 + -4.9699722 52.0147012 + + dac.02002534 + + + 2010 2010-139285 Langstone Harbour + + + -1.031777 50.8021287 + -1.0252636 50.8099788 + + dac.02002535 + + + 2010 2010-130171 River Mersey Tranmere Oil Stages + + + -3.0037091 53.3748687 + -2.990828 53.3854587 + + dac.02002536 + + + 2010 2010-130171 River Mersey Queens Channel East + + + -3.2259145 53.5160501 + -3.1982865 53.5233118 + + dac.02002537 + + + 2010 2010-130171 River Mersey Eastham Bar and Channel + + + -2.9724682 53.3429473 + -2.9594327 53.3590502 + + dac.02002538 + + + 2010 2010-130171 River Mersey Eastham Channel + + + -2.9721266 53.3225023 + -2.946199 53.3586514 + + dac.02002539 + + + 2010 2010-136196 River Mersey Garston Channel and Bar + + + -2.9923372 53.3643026 + -2.9583833 53.3837784 + + dac.02002540 + + + 2010 2010-136196 River Mersey Queens Channel East + + + -3.2300895 53.5139032 + -3.1715741 53.5308464 + + dac.02002541 + + + 2010 2010-130171 River Mersey Crosby Channel North of Askew Spit + + + -3.1624826 53.524278 + -3.1350198 53.5299342 + + dac.02002542 + + + 2010 2010-130171 River Mersey Crosby Channel and Shoal + + + -3.125156 53.4899324 + -3.0827992 53.5251929 + + dac.02002543 + + + 2010 2010-130171 River Mersey Liverpool Landing Stages + + + -3.0080838 53.3961955 + -2.9926349 53.4106194 + + dac.02002544 + + + 2010 2010-130171 River Mersey Langton Dock Entrance + + + -3.0132605 53.4325538 + -3.007422 53.4415926 + + dac.02002545 + + + 2010 2010-130171 River Mersey New Brighton Shoal + + + -3.0321451 53.4427678 + -3.0238435 53.4476314 + + dac.02002546 + + + 2010 2010-124694 River Tay Approaches to River Tay + colorg = Forth Ports Authority + + + -2.6861997 56.4490419 + -2.6280384 56.478027 + + dac.02002547 + + + 2010 2010-124694 River Tay Tay Bridge to Kirkton + colorg = Forth Ports Authority + + + -3.0459225 56.4183307 + -2.9858568 56.4427013 + + dac.02002548 + + + 2010 2010-124694 Dundee Dundee Harbour to Spoil Ground + colorg = Forth Ports Authority + + + -2.9541948 56.4481907 + -2.9129824 56.4653248 + + dac.02002549 + + + 2010 2010-124694 River Tay Princess Alexandra to Prince Charles Wharf + colorg = Forth Ports Authority + + + -2.9410794 56.4599934 + -2.9215487 56.4659134 + + dac.02002550 + + + 2010 2010-124694 River Tay Caledon East Wharf to Princes Charles Wharf + colorg = Forth Ports Authority + + + -2.9283071 56.4616661 + -2.9164735 56.4657056 + + dac.02002551 + + + 2010 2010-124694 River Tay Tay Bridge to Princess Alexandra Wharf + colorg = Forth Ports Authority + + + -2.9560216 56.4577246 + -2.9369844 56.4649984 + + dac.02002552 + + + 2010 2010-124694 River Tay Lady Shoal + colorg = Forth Ports Authority + + + -2.8392148 56.4503171 + -2.7677976 56.4592833 + + dac.02002553 + + + 2010 2010-146722 Bristol Denny Shoal + + + -2.7720637 51.4976386 + -2.7305147 51.5115832 + + dac.02002554 + + + 2010 2010-141958 River Clyde Clyde Place Quay + + + -4.2726418 55.8551218 + -4.2599391 55.8567006 + + dac.02002555 + + + 2010 2010-141958 River Clyde Renfrew Ferry + + + -4.2858824 55.8551899 + -4.2706208 55.8582563 + + dac.02002556 + + + 2010 2010-141958 River Clyde New Channel + + + -4.2994791 55.8563215 + -4.2807008 55.8619763 + + dac.02002557 + + + 2010 2010-141958 River Clyde Yorkhill Catchment + + + -4.3148247 55.8595979 + -4.295858 55.8669765 + + dac.02002558 + + + 2010 2010-141958 River Clyde Govan Yard + + + -4.327668 55.8644467 + -4.3094606 55.8693381 + + dac.02002559 + + + 2009 2010-141958 River Clyde + + + -4.338462 55.8677284 + -4.322626 55.8697331 + + dac.02002560 + + + 2010 2010-142283 Cromarty Firth Area 3 + Vessel unknown + + + -4.0762751 57.6768002 + -3.9776341 57.6960575 + + dac.02002561 + + + 2010 2010-142283 Cromarty Firth Saltburn Jetty + Vessel unknown + + + -4.1428922 57.6863071 + -4.1345922 57.6887075 + + dac.02002562 + + + 2010 2010-142283 Cromarty Firth Invergordon Berth + Vessel unknown + + + -4.1803343 57.6830141 + -4.1653136 57.68688 + + dac.02002563 + + + 2010 2010-150659 Avonmouth Swash Channel + + + -2.721299 51.494359 + -2.7036164 51.5066224 + + dac.02002564 + + + 2010 2010-164939 Forth Middle Bank + + + -3.2390566 56.0111265 + -3.1103296 56.0499942 + + dac.02002565 + + + 2010 2010-161248 Dover Harbour + Collected by Dover Harbour Board + + + 1.3090515 51.1108767 + 1.3456981 51.1276069 + + dac.02002566 + + + 2010 2010-166280 River Mersey Crosby Channel and Shoal + vessel unknown + + + -3.1256502 53.4901105 + -3.0836681 53.5248457 + + dac.02002567 + + + 2010 2010-166280 Liverpool Alfred Dock Entrance + Vessel Unknown + + + -3.0163125 53.3978735 + -3.0054753 53.4069945 + + dac.02002568 + + + 2010 2010-166280 Liverpool Cammell Lairds Wall + Vessel Unknown + + + -3.0080833 53.3855046 + -3.0033833 53.390376 + + dac.02002569 + + + 2010 2010-166280 Liverpool Garston Bar + Vessel Unknown + + + -2.9903189 53.3642526 + -2.9584538 53.3824636 + + dac.02002570 + + + 2010 2010-166280 Liverpool Eastham Bar & Channel + Vessel Unknown + + + -2.9716558 53.3431368 + -2.9599144 53.3587103 + + dac.02002571 + + + 2010 2010-170471 Liverpool Queens Channel West + Vessel Unknown + + + -3.2810903 53.5143508 + -3.2228142 53.5267539 + + dac.02002572 + + + 2010 2010-170471 Liverpool Eastham Channel + Vessel Unknown + + + -2.971914 53.3224875 + -2.9470759 53.3588512 + + dac.02002573 + + + 2010 2010-170471 Liverpool Landing Stages + Vessel Unknown + + + -3.0086051 53.4006573 + -2.9964981 53.4106758 + + dac.02002574 + + + 2010 2010-171707 Ramsgate New and Royal Harbours + + + 1.4143212 51.3235916 + 1.4330139 51.3313587 + + dac.02002575 + + + 2010 2010-171724 River Mersey Queens Channel East + Vessel Unknown + + + -3.2292866 53.5138473 + -3.172963 53.5305829 + + dac.02002576 + + + 2010 2010-171724 Liverpool Alfred Dock Entrance + Vessel Unknown + + + -3.0163904 53.4042996 + -3.0127297 53.4058587 + + dac.02002577 + + + 2010 2010-171724 Liverpool Garston Channel + Vessel Unknown + + + -2.9620594 53.3466745 + -2.9068202 53.3724796 + + dac.02002578 + + + 2010 2010-171724 Liverpool Gladstone River Entrance + Vessel Unknown + + + -3.0211389 53.4439707 + -3.0142235 53.449833 + + dac.02002579 + + + 2010 2010-171724 Liverpool Langton Dock Entrance + Vessel Unknown + + + -3.0129242 53.4331139 + -3.0079484 53.4396543 + + dac.02002580 + + + 2010 2010-171724 Liverpool Landing Stage South Approach + Vessel Unknown + + + -3.0029609 53.3961817 + -2.9926565 53.4051774 + + dac.02002581 + + + 2010 2010-171724 Liverpool New Brighton Shoal + Vessel Unknown + + + -3.0390671 53.4348824 + -3.0161175 53.4510198 + + dac.02002582 + + + 2010 2010-171724 Liverpool Tranmere Oil Stages + Vessel unknown + + + -3.0033719 53.3754558 + -2.990803 53.3842384 + + dac.02002583 + + + 2010 2010-171724 Liverpool Eastham Lock Approaches + Vessel unknown + + + -2.9533179 53.3215031 + -2.9466332 53.3283989 + + dac.02002584 + + + 2010 2010-173668 Isle of Wight Yarmouth + + + -1.5061015 50.6983241 + -1.4967829 50.7094462 + + dac.02002585 + + + 2010 2010-188454 Dover Harbour + Collected by Dover Harbour Board + + + 1.3092274 51.110573 + 1.3449952 51.1273119 + + dac.02002586 + + + 2010 2010-195841 Forth Bridgeness to Blackness + Collected by Forth Ports + + + -3.5617525 56.0034885 + -3.4807511 56.0380957 + + dac.02002587 + + + 2010 2010-208201 Severn Estuary Bristol Deep + + + -2.952368 51.4475167 + -2.862217 51.4857564 + + dac.02002588 + + + 2010 2010-209526 Bristol Denny Shoal + + + -2.7723943 51.497734 + -2.7401153 51.5114906 + + dac.02002589 + + + 2010 2011-14707 Great Yarmouth River Yare Nov + Surveyed by East Port on Compass + + + 1.7149439 52.5716263 + 1.7406962 52.6123962 + + dac.02002590 + + + 2010 2011-14707 Great Yarmouth River Yare April + Surveyed by East Port UK on Compass + + + 1.7149937 52.5716441 + 1.7406699 52.6122725 + + dac.02002591 + + + 2010 2011-14707 Great Yarmouth Outer Harbour June + Surveyed by East Port UK on Compass + + + 1.7383977 52.5738675 + 1.7480816 52.580645 + + dac.02002592 + + + 2010 2011-14707 Great Yarmouth Outer Harbour Dec + Surveyed by East Port on Compass + + + 1.7384821 52.5741673 + 1.7480042 52.5803185 + + dac.02002593 + + + 2010 2011-14707 Great Yarmouth Approaches + Surveyed by EastPort UK on Compass + + + 1.730135 52.5480326 + 1.7906427 52.5973944 + + dac.02002594 + + + 2011 2011-19396 Newhaven Harbour and Approaches + Collected by Newhaven Port Authority + + + 0.053125 50.7744517 + 0.062571 50.7902138 + + dac.02002595 + + + 2010 2011-24905 Whitstable Harbour + + + 1.0232681 51.3626265 + 1.0282829 51.3649356 + + dac.02002596 + + + 2010 2011-38621 Milford Haven Approach Channel A5 + Surveyed by A D Bates Partnership LLP + + + -5.0389086 51.7033495 + -5.032858 51.7099531 + + dac.02002597 + + + 2010 2011-38621 Milford Haven Chevron Terminal E3 + Surveyed by A D Bates Patnership LLP + + + -5.0282595 51.6953266 + -5.0174333 51.7000419 + + dac.02002598 + + + 2010 2011-38621 Milford Haven Pembroke Dock E6 + Surveyed by A D Bates Partnership LLP + + + -4.9535498 51.695711 + -4.9464278 51.6992731 + + dac.02002599 + + + 2010 2011-38621 Milford Haven South Hook E1 + Surveyed by A D Bates Partnership LLP + + + -5.0878467 51.6966504 + -5.0693418 51.6997536 + + dac.02002600 + + + 2010 2011-38621 Milford Haven Mill Bay + Surveyed by A D Bates Partneship LLP + + + -5.1624465 51.680488 + -5.150852 51.6890887 + + dac.02002601 + + + 2010 2011-38621 Milford Haven Thorn Island + Surveyed by A D Bates Partnership LLP + + + -5.1203174 51.6938919 + -5.0975296 51.6962081 + + dac.02002602 + + + 2011 2011-48508 Fowey J603 + + + -4.6449808 50.3269296 + -4.6246136 50.3518657 + + dac.02002603 + + + 2011 2011-48509 J586 Weymouth Harbour + + + -2.4554075 50.6063865 + -2.4395032 50.61357 + + dac.02002604 + + + 1998 HI414 Approaches to Teesport + + + -1.2922361 54.7008781 + -0.4729671 55.541263 + + dac.02002605 + + + 2010 HI1336 Riff Bank 2m SB + Vessel Seabeam + + + -4.099 57.57425 + -3.95 57.64925 + + dac.02002606 + + + 2007 2007-033954 Dundee Balmerino to Deil Bank + Vessel unknown + + + -3.1794665 56.3755016 + -3.0281205 56.4255355 + + dac.02002607 + + + 2011 2011-78262 Bristol King Road + + + -2.7913024 51.4871382 + -2.6903971 51.5325633 + + dac.02002608 + + + 2011 2011-78264 Plymouth Cattewater Harbour + + + -4.1359729 50.358108 + -4.107477 50.3692359 + + dac.02002609 + + + 2010 2010-130171 River Mersey Gladstone Dock Entrance + Vessel unknown + + + -3.0214459 53.4436676 + -3.0132408 53.4524919 + + dac.02002610 + + + 2010 2010-136196 River Mersey Brazil Elbow + Vessel unknown + + + -3.0787349 53.4451556 + -3.0247443 53.482829 + + dac.02002611 + + + 2011 2011-77360 Bristol Dock Entrance WGS84 + Surveyed by the Bristol Port Company + + + -2.6279751 51.4470461 + -2.6237767 51.4539681 + + dac.02002612 + + + 2009 2009-50486 Ramsgate Harbour + + + 1.4142371 51.3237348 + 1.4332261 51.3311687 + + dac.02002613 + + + 2002 2006-361360 Ramsgate Harbour and Approaches + Owned by Port of Ramsgate + + + 1.4140018 51.3232697 + 1.4561868 51.3317295 + + dac.02002614 + + + 2002 2006-360025 Ramsgate Harbour and Approaches + Owned by Port of Ramsgate + + + 1.4140373 51.3233033 + 1.4563889 51.3315402 + + dac.02002615 + + + 2002 2006-360185 Ramsgate Harbour + + + 1.4141775 51.3232605 + 1.4330036 51.3315364 + + dac.02002616 + + + 2005 2006-362452 Ramsgate Harbour + + + 1.4138439 51.323047 + 1.4323578 51.3312093 + + dac.02002617 + + + 2002 2006-320000 Guernsey Saint Sampson Lougue Hougue Moorings + + + -2.5160335 49.4762476 + -2.5075143 49.4826384 + + dac.02002618 + + + 2011 2011-97452 Dover Harbour + Collected by Dover Harbour Board + + + 1.309227 51.1106705 + 1.3450355 51.127309 + + dac.02002619 + + + 2011 2011-100164 Ramsgate Harbour J631 + + + 1.4144173 51.326514 + 1.4164283 51.3274776 + + dac.02002620 + + + 2011 2011-100164 Ramsgate Harbour J601 + + + 1.414264 51.3236421 + 1.4329182 51.3282383 + + dac.02002621 + + + 2011 2011-100174 Port of Larne + Owned by Larne Harbour Authority + + + -5.7998333 54.8408321 + -5.7909603 54.8514677 + + dac.02002622 + + + 2011 2011-100174 Port of Larne WGS84 + Owned by Larne Harbour Authority + + + -5.7997685 54.843184 + -5.7932251 54.8512836 + + dac.02002623 + + + 2011 2011-100837 Fishguard Harbour J633 + + + -4.9883339 52.0014047 + -4.9700418 52.0146191 + + dac.02002624 + + + 2011 2011-109449 Bristol Denny Shoal + + + -2.7719667 51.4980053 + -2.7401153 51.5114862 + + dac.02002625 + + + 2011 2011-116222 Cowes J605 + + + -1.2971495 50.7474583 + -1.2916393 50.7631068 + + dac.02002626 + + + 2011 2011-118517 River Mersey Alfred Dock Entrance to Twelve Quays + Vessel unknown + + + -3.0183226 53.3978621 + -3.0055635 53.4073352 + + dac.02002627 + + + 2011 2011-118517 River Mersey Askew Spit + Vessel unknown + + + -3.175418 53.5165893 + -3.1197307 53.5315679 + + dac.02002628 + + + 2011 2011-118517 River Mersey Brazil Elbow + Vessel unknown + + + -3.0794617 53.4449041 + -3.0250362 53.4828898 + + dac.02002629 + + + 2011 2011-118517 River Mersey Cammell Lairds Wall Blk1 + Vessel unknown + + + -3.0078879 53.3861516 + -3.0039319 53.3881706 + + dac.02002630 + + + 2011 2011-118517 River Mersey Cammell Lairds Wall Dock No4 to Tranmere Basin + Vessel unknown + + + -3.0080865 53.3845289 + -3.0023684 53.3910683 + + dac.02002631 + + + 2011 2011-118517 River Mersey Crosby Channel North + Vessel unknown + + + -3.1260981 53.5111421 + -3.1041405 53.5245851 + + dac.02002632 + + + 2011 2011-118517 River Mersey Crosby Channel South + Vessel unknown + + + -3.0975955 53.4750194 + -3.0661065 53.4977098 + + dac.02002633 + + + 2011 2011-118517 River Mersey Crosby Channel + Vessel unknown + + + -3.1169093 53.4899722 + -3.082832 53.517976 + + dac.02002634 + + + 2011 2011-118517 River Mersey Eastham Lock Approaches + Vessel unknown + + + -2.9530326 53.3215147 + -2.9468876 53.3285592 + + dac.02002635 + + + 2011 2011-118517 River Mersey Eastham Bar and Channel + Vessel unknown + + + -2.9722501 53.3425814 + -2.9555779 53.3597932 + + dac.02002636 + + + 2011 2011-118517 River Mersey Eastham Channel South + Vessel unknown + + + -2.9633537 53.3275124 + -2.9495599 53.3441542 + + dac.02002637 + + + 2011 2011-118517 River Mersey Garston Channel Garston Bar + Vessel unknown + + + -2.9860482 53.3694718 + -2.9592885 53.3792754 + + dac.02002638 + + + 2011 2011-118517 River Mersey Garston Channel + Vessel unknown + + + -2.9624431 53.3468054 + -2.9066376 53.3723857 + + dac.02002639 + + + 2011 2011-118517 River Mersey Gladstone Dock Entrance with Lock + Vessel unknown + + + -3.0223137 53.4437027 + -3.0134581 53.4525015 + + dac.02002640 + + + 2011 2011-118517 River Mersey Jordan Spit + Vessel unknown + + + -3.3057978 53.5545114 + -3.2733653 53.5811682 + + dac.02002641 + + + 2011 2011-118517 River Mersey Liverpool Landing Stage + Vessel unknown + + + -3.0086238 53.4009565 + -2.9961598 53.4105716 + + dac.02002642 + + + 2011 2011-118517 River Mersey Langton Dock Entrance with Lock + Vessel unknown + + + -3.0142319 53.4329058 + -3.0075868 53.4416167 + + dac.02002643 + + + 2011 2011-118517 River Mersey New Brighton Shoal + Vessel unknown + + + -3.042452 53.4323323 + -3.0141929 53.4529784 + + dac.02002644 + + + 2011 2011-118517 River Mersey Pluckington Bank + Vessel unknown + + + -3.0107712 53.3720239 + -2.974628 53.405517 + + dac.02002645 + + + 2011 2011-118517 River Mersey Queens Channel East + Vessel unknown + + + -3.2268231 53.5143911 + -3.1706495 53.5306306 + + dac.02002646 + + + 2011 2011-118517 River Mersey Tower Groyne to Seacombe Stage + Vessel unknown + + + -3.0254182 53.4078635 + -3.0021164 53.4374669 + + dac.02002647 + + + 2011 2011-118517 River Mersey The Sloyne + Vessel unknown + + + -3.0038717 53.3755125 + -2.9917484 53.3847809 + + dac.02002648 + + + 2011 2011-118517 River Mersey Cammell Lairds Tranmere Basin + Vessel unknown + + + -3.0118614 53.3845402 + -3.0047252 53.3876217 + + dac.02002649 + + + 2011 2011-118517 River Mersey Woodside Stage + Vessel unknown + + + -3.0087999 53.3952206 + -3.0044901 53.3973751 + + dac.02002650 + + + 2011 2011-118517 Liverpool Heysham Channel + Vessel unknown + + + -2.9536188 54.022679 + -2.9261569 54.0350913 + + dac.02002651 + + + 2010 2011-118517 Heysham Harbour & Entrance + Vessel unknown + + + -2.9292499 54.0308043 + -2.9128891 54.0355728 + + dac.02002652 + + + 2011 2011-118517 River Mersey Langton Dock Entrance + Vessel unknown + + + -3.0138655 53.4321514 + -3.0074129 53.4401495 + + dac.02002653 + + + 2011 2011-118517 River Mersey Cammell Lairds Wall Blk2 + Vessel unknown + + + -3.0080865 53.3845289 + -3.0023684 53.3910683 + + dac.02002654 + + + 2011 2011-126769 River Mersey Alfred Dock Entrance + Vessel unknown + + + -3.0182779 53.4038825 + -3.0114783 53.4060805 + + dac.02002655 + + + 2011 2011-126769 River Mersey Brazil Elbow + Vessel unknown + + + -3.0793869 53.4450186 + -3.02445 53.483303 + + dac.02002656 + + + 2011 2011-126769 River Mersey Garston Channel Entrance + Vessel unknown + + + -2.9873901 53.369194 + -2.9584378 53.3791891 + + dac.02002657 + + + 2011 2011-126769 Heysham Harbour + Vessel unknown + + + -2.9297139 54.0311364 + -2.9125388 54.0355914 + + dac.02002658 + + + 2011 2011-126769 Liverpool Heysham Channel + Vessel unknown + + + -2.9560022 54.0214754 + -2.9282904 54.0347084 + + dac.02002659 + + + 2011 HI1316 WP10 N Wight 2m SB + + + -1.6019667 50.6629687 + -1.0538263 50.7768922 + + dac.02002660 + + + 2011 2011-126980 Bristol Severn Bar + + + -2.744186 51.5056008 + -2.7112152 51.5277598 + + dac.02002661 + + + 2011 2011-137490 Ramsgate Harbour & Approaches + + + 1.4140631 51.3232926 + 1.4554709 51.3316831 + + dac.02002662 + + + 2011 HI1157 Hartland Point to Lands End Blk1 2m SB + + + -5.0173551 50.5952656 + -4.5347892 51.0053483 + + dac.02002663 + + + 2011 2011-142854 Newhaven West Beach + Collected by Newhaven Port Authority + + + 0.0523142 50.7757738 + 0.0595551 50.7816866 + + dac.02002664 + + + 2011 2011-146999 Dundee Lady Shoal + Collected by Forth Ports - Vessel unknown + + + -2.8391437 56.450345 + -2.7678323 56.4592864 + + dac.02002665 + + + 2011 2011-146999 Dundee Approaches to River Tay + Collected by Forth Ports - Vessel unknown + + + -2.6865515 56.4492362 + -2.6283714 56.4781624 + + dac.02002666 + + + 2011 2011-146999 Dundee Tay Dump + Collected by Forth Ports - Vessel unknown + + + -2.9555992 56.4507342 + -2.9142335 56.4654051 + + dac.02002667 + + + 2011 2011-146999 Dundee Docks + Collected by Forth Ports - Vessel unknown + + + -2.956602 56.4574811 + -2.9159513 56.4661139 + + dac.02002668 + + + 2011 2011-149431 Ramsgate Harbour J643 + + + 1.4142738 51.324791 + 1.4245457 51.3304034 + + dac.02002669 + + + 2011 2011-149758 Bristol Denny Shoal + + + -2.7725002 51.4976297 + -2.7300694 51.5115947 + + dac.02002670 + + + 2011 2011-150028 Bristol Severn Bar + + + -2.7437539 51.5042547 + -2.7108414 51.52776 + + dac.02002671 + + + 2011 2011-159821 Shoreham Canal + Collected by Shoreham Port Authority + + + -0.2364391 50.8269629 + -0.2011508 50.8314834 + + dac.02002672 + + + 2011 2011-149436 Heysham Channel WGS84 + Vessel unknown + + + -2.9560022 54.0214754 + -2.9282904 54.0347084 + + dac.02002673 + + + 2011 2011-149436 Heysham Harbour WGS84 + Vessel unknown + + + -2.9294294 54.0308798 + -2.9126994 54.0356109 + + dac.02002674 + + + 2011 2011-149436 River Mersey Brazil Elbow + Vessel unknown + + + -3.0808405 53.4456493 + -3.0259032 53.4839322 + + dac.02002675 + + + 2011 2011-149436 River Mersey Bromborough Wall + Vessel unknown + + + -2.9787124 53.3519478 + -2.9670974 53.3598935 + + dac.02002676 + + + 2011 2011-149436 River Mersey Eastham Channel Lock Approaches + Vessel unknown + + + -2.9531475 53.321531 + -2.9467109 53.3283614 + + dac.02002677 + + + 2011 2011-149436 River Mersey Eastham Bar and Channel + Vessel unknown + + + -2.9722069 53.342519 + -2.9573035 53.3594243 + + dac.02002678 + + + 2011 2011-149436 River Mersey Gladstone Dock Entrance with Lock + Vessel unknown + + + -3.0228612 53.442874 + -3.0138357 53.4525283 + + dac.02002679 + + + 2011 2011-149436 River Mersey Queens Channel West + Vessel unknown + + + -3.2816393 53.5143526 + -3.2209073 53.5274901 + + dac.02002680 + + + 2011 2011-149436 River Mersey Seacombe Stage to Woodside Stage + Vessel unknown + + + -3.0150962 53.3916777 + -2.9959437 53.412141 + + dac.02002681 + + + 2011 2011-149436 River Mersey Tranmere Oil Stage to Middle Deep + Vessel unknown + + + -2.9962115 53.3574474 + -2.9645018 53.3795568 + + dac.02002682 + + + 2011 2011-149436 River Mersey Tranmere Oil Stages + Vessel unknown + + + -3.0041172 53.3755013 + -2.9916226 53.3850077 + + dac.02002683 + + + 2011 2011-149436 River Mersey Alfred Dock Entrance and Twelve Quays + Vessel unknown + + + -3.0184105 53.3973234 + -3.0045802 53.4076637 + + dac.02002684 + + + 2011 2011-149436 River Mersey Woodside Stage to Tranmere Oil Stage + Vessel unknown + + + -3.005855 53.3758122 + -2.9856977 53.3955376 + + dac.02002685 + + + 2011 2011-149436 River Mersey Liverpool Landing Stage + Vessel unknown + + + -3.0093566 53.4004652 + -2.9957619 53.4108865 + + dac.02002686 + + + 2011 2011-149436 River Mersey Cammell Lairds Wall Dock No6 + Vessel unknown + + + -3.0081502 53.3846581 + -3.0021019 53.391397 + + dac.02002687 + + + 2011 2011-149436 River Mersey Langton Dock Entrance + Vessel unknown + + + -3.0137716 53.4332706 + -3.0075429 53.4399505 + + dac.02002688 + + + 2011 2011-149436 River Mersey Garston Channel Entrance Garston Bar + Vessel unknown + + + -2.9873901 53.369194 + -2.9584378 53.3791891 + + dac.02002689 + + + 2011 2011-154899 River Mersey Langton Dock Entrance with Lock + Vessel unknown + + + -3.0140741 53.4328476 + -3.007535 53.4416081 + + dac.02002690 + + + 2011 2011-154899 River Mersey Alfred Dock Entrance to Twelve Quays + Vessel unknown + + + -3.0183903 53.3976477 + -3.0052504 53.4074913 + + dac.02002691 + + + 2011 2011-154899 River Mersey Crosby Channel and Shoal + Vessel unknown + + + -3.1158689 53.4900379 + -3.0825297 53.5180808 + + dac.02002692 + + + 2011 2011-154899 River Mersey Eastham Channel Lock Approaches + Vessel unknown + + + -2.9531569 53.3215158 + -2.9469019 53.328091 + + dac.02002693 + + + 2011 2011-154899 River Mersey Eastham Bar and Channel + Vessel unknown + + + -2.9720076 53.3427312 + -2.9582149 53.3591494 + + dac.02002694 + + + 2011 2011-154899 River Mersey Langton Dock Entrance + Vessel unknown + + + -3.0217963 53.4435302 + -3.0132298 53.4504222 + + dac.02002695 + + + 2011 2011-167271 River Mersey Queens Channel East + Vessel unknown + + + -3.2279965 53.5143074 + -3.1704967 53.5309426 + + dac.02002696 + + + 2011 2011-167271 River Mersey Eastham Channel Lock Approaches + Vessel unknown + + + -2.9531484 53.3227518 + -2.9474068 53.328135 + + dac.02002697 + + + 2011 2011-167271 River Mersey Garston Bar and Channel Entrance + Vessel unknown + + + -2.987562 53.3657332 + -2.9593706 53.3790951 + + dac.02002698 + + + 2011 2011-171146 J612 Milford Haven + + + -4.9865718 51.6798105 + -4.9602681 51.6883164 + + dac.02002699 + + + 2011 2011-172013 Bristol Severn Bar + + + -2.7446227 51.5053222 + -2.7107824 51.5277687 + + dac.02002700 + + + 2011 HI1358 Spurn Point to Flamborough Head Blk1 + Northeast Regional Coastal Monitoring Programme + + + -0.2249093 54.043002 + 0.0015401 54.1792849 + + dac.02002701 + + + 2011 HI1358 Spurn Point to Flamborough Head Blk2 + Northeast Regional Coastal Monitoring Programme + + + -0.2097785 53.5504085 + 0.1818735 54.0983009 + + dac.02002702 + + + 2011 2011-192399 Bristol Severn Bar + + + -2.7437448 51.5056025 + -2.7112869 51.5274856 + + dac.02002703 + + + 2011 2011-195768 Heysham Channel 16-9 WGS84 + Vessel unknown + + + -2.9559957 54.0213241 + -2.9263884 54.035547 + + dac.02002704 + + + 2011 2011-195768 Liverpool Heysham Channel W + Vessel unknown + + + -2.9338985 54.0316293 + -2.9206492 54.0397473 + + dac.02002705 + + + 2011 2011-195768 Heysham Channel 29-9 WGS84 + Vessel unknown + + + -2.9874785 53.9980135 + -2.9335587 54.0270435 + + dac.02002706 + + + 2011 2011-195768 Heysham Harbour Entrance WGS84 + Vessel unknown + + + -2.9295719 54.0308346 + -2.9126689 54.035531 + + dac.02002707 + + + 2011 2011-195768 River Mersey Liverpool Landing Stage South Approach + Vessel unknown + + + -3.0042335 53.3955481 + -2.9925613 53.4059776 + + dac.02002708 + + + 2011 2011-195768 River Mersey Tranmere Oil Stages + Vessel unknown + + + -3.0038832 53.3753332 + -2.991268 53.385137 + + dac.02002709 + + + 2011 2011-195768 River Mersey Eastham Bar and Channel + Vessel unknown + + + -2.9717747 53.3425776 + -2.9584011 53.3592136 + + dac.02002710 + + + 2011 2011-195768 River Mersey Eastham Channel Lock Approaches + Vessel unknown + + + -2.953204 53.3215237 + -2.9469461 53.328222 + + dac.02002711 + + + 2011 2011-195768 River Mersey Eastham Channel + Vessel unknown + + + -2.9633728 53.3272852 + -2.9493849 53.3439238 + + dac.02002712 + + + 2011 2011-195768 River Mersey Queens Channel East + Vessel unknown + + + -3.2280837 53.513829 + -3.1720468 53.5311622 + + dac.02002713 + + + 2011 2011-195768 River Mersey Langton Dock Entrance + Vessel unknown + + + -3.0140773 53.4327391 + -3.0079406 53.4416137 + + dac.02002714 + + + 2011 2011-195768 River Mersey Gladstone Dock Entrance + Vessel unknown + + + -3.0216264 53.4432584 + -3.0132659 53.4525269 + + dac.02002715 + + + 2011 2011-195768 River Mersey Alfred Dock Entrance to Twelve Quays + Vessel unknown + + + -3.0183401 53.3978167 + -3.0054455 53.4072298 + + dac.02002716 + + + 2011 2011-195768 River Mersey Crosby Channel Askew Spit + Vessel unknown + + + -3.1751284 53.5174553 + -3.1163624 53.53201 + + dac.02002717 + + + 2011 2011-195768 River Mersey Liverpool Landing Stage + Vessel unknown + + + -3.0081109 53.4001623 + -2.9969738 53.4106571 + + dac.02002718 + + + 2011 2011-195768 River Mersey Cammell Lairds Tranmere Basin + Vessel unknown + + + -3.0118088 53.3846269 + -3.0067604 53.3869398 + + dac.02002719 + + + 2011 2011-195768 River Mersey Cammell Lairds Wall Dock No5 + Vessel unknown + + + -3.0080603 53.384387 + -3.0016705 53.3896432 + + dac.02002720 + + + 2011 2011-196659 Littlehampton Harbour + + + -0.5595857 50.7940656 + -0.5369721 50.8122769 + + dac.02002721 + + + 2011 2011-199827 Avonmouth Swash Channel + + + -2.7212225 51.4945816 + -2.7040773 51.5066177 + + dac.02002722 + + + 2010 2011-147367 Isle of Lewis West Coast + Blocks 3a 4a 4b unusable 4c duplicate, Owners Scottish Government + + + -6.9784305 58.288486 + -6.2077432 58.5720006 + + dac.02002723 + + + 2011 2011-205438 Bristol Denny Shoal + + + -2.7723942 51.4977312 + -2.7401109 51.5112263 + + dac.02002724 + + + 2011 2011-206769 Liverpool Heysham Harbour + Vessel unknown + + + -2.9294187 54.0308523 + -2.9129907 54.0356105 + + dac.02002725 + + + 2011 2011-206769 River Mersey Crosby Channel and Shoal + Vessel unknown + + + -3.1137236 53.4900175 + -3.0823479 53.5173092 + + dac.02002726 + + + 2011 2011-206769 River Mersey Eastham Channel Lock Approaches + Vessel unknown + + + -2.9531956 53.3227311 + -2.9470828 53.3284865 + + dac.02002727 + + + 2011 2011-206769 River Mersey Gladstone Dock Entrance + Vessel unknown + + + -3.0221406 53.4437599 + -3.0141852 53.4525161 + + dac.02002728 + + + 2011 2011-206769 River Mersey Langton Dock Entrance + Vessel unknown + + + -3.0137594 53.4332903 + -3.0075848 53.4401886 + + dac.02002729 + + + 2011 2011-206769 River Mersey New Brighton Shoal + Vessel unknown + + + -3.0416061 53.4333269 + -3.0151 53.4521846 + + dac.02002730 + + + 2011 2011-170860 Dartmouth + + + -3.6008922 50.3774925 + -3.5788677 50.3950398 + + dac.02002731 + + + 2011 HI1333 Hesker Island to Gallan Head 2m SB + Re-archived due to file size + + + -7.75034 57.558845 + -7.0282889 58.2604985 + + dac.02002732 + + + 2011 HI1328 Approaches to Milford Haven 2m SB + Starfix receiver using HP and XP correction as a primary positioning system + + + -5.460783 51.5046283 + -4.9164953 51.7469915 + + dac.02002733 + + + 2011 HI1328 Approaches to Milford Haven 4m SB + Starfix receiver using HP and XP correction as a primary positioning system + + + -5.6938568 51.4836993 + -4.9155938 51.7484108 + + dac.02002734 + + + 2011 2011-225133 Bristol Severn Bar + + + -2.7441816 51.5055927 + -2.7112152 51.5274927 + + dac.02002735 + + + 2011 2011-220672 Severn Estuary The Bridge + + + -3.0108634 51.4355027 + -2.9479975 51.4660316 + + dac.02002736 + + + 2011 2011-226245 Bristol Denny Shoal + + + -2.7729324 51.4978967 + -2.7304974 51.5115947 + + dac.02002737 + + + 2011 HI1367 Newarp Banks 1m CUBE + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. +MV Seabeam was also used to collect survey data. + + + 1.8455505 52.7260849 + 1.961924 52.7965279 + + dac.02002738 + + + 2011 HI1367 Middle Cross Sands 1m CUBE + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. +MV Seabeam was also used to collect survey data. + + + 1.8439065 52.59943 + 1.8657567 52.627645 + + dac.02002739 + + + 2011 HI1367 Cross Sands Blk1 1m CUBE + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. +MV Seabeam was also used to collect survey data. + + + 1.8706321 52.6325479 + 1.8935677 52.678194 + + dac.02002740 + + + 2011 HI1367 Cross Sands Blk2 1m CUBE + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. +MV Seabeam was also used to collect survey data. + + + 1.8360065 52.684128 + 1.8486974 52.704813 + + dac.02002741 + + + 2011 HI1367 Cockle Gatway 1m CUBE + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. +MV Seabeam was also used to collect survey data. + + + 1.6998684 52.6549231 + 1.8054836 52.7903472 + + dac.02002742 + + + 2011 HI1367 Entrance to Stanford Channel 1m CUBE + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. +MV Seabeam was also used to collect survey data. + + + 1.7743686 52.433922 + 1.7960186 52.457321 + + dac.02002743 + + + 2011 HI1367 Hemsby Hole 1m CUBE + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. +MV Seabeam was also used to collect survey data. + + + 1.6835548 52.6247481 + 1.7520902 52.7425975 + + dac.02002744 + + + 2011 HI1157 Hartland Point to Lands End Blk2 2m SB + Starfix receiver using HP and XP correction as a primary positioning system. + + + -5.4178965 50.2431964 + -4.8507085 50.6820492 + + dac.02002745 + + + 2011 2011-228023 Chichester Harbour + Survey Vessel name: Shoreline +Needs adding to the vessel list. + + + -0.9441443 50.7562944 + -0.9051813 50.7940317 + + dac.02002746 + + + 2011 2011-171982 Holyhead Harbour J637 WGS84 + + + -4.6480851 53.3095103 + -4.5994595 53.3313504 + + dac.02002747 + + + 2011 2011-229257 River Mersey Alfred Dock Entrance to Twelve Quays + Vessel unknown + + + -3.0183549 53.3978403 + -3.0052422 53.4073447 + + dac.02002748 + + + 2011 2011-229257 River Mersey Gladstone Dock Entrance + Vessel unknown + + + -3.0225986 53.4433286 + -3.0136282 53.4497571 + + dac.02002749 + + + 2011 2011-229257 River Mersey Jordans Spit + Vessel unknown + + + -3.3059674 53.5542419 + -3.2703262 53.5818624 + + dac.02002750 + + + 2011 2011-229257 River Mersey Langton Dock Entrance and Lock + Vessel unknown + + + -3.0140456 53.4331034 + -3.0079688 53.4415789 + + dac.02002751 + + + 2011 2011-229257 River Mersey Liverpool Landing Stage + Vessel unknown + + + -3.0095342 53.4003921 + -2.9957404 53.411273 + + dac.02002752 + + + 2011 2011-229257 River Mersey Monks Ferry to Woodside Stage + Vessel unknown + + + -3.0098755 53.3912869 + -3.0049009 53.3981512 + + dac.02002753 + + + 2011 2011-229257 River Mersey Seacombe Stage + Vessel unknown + + + -3.015298 53.4088196 + -3.0121185 53.4115243 + + dac.02002754 + + + 2011 2011-230360 Dover Harbour + Collected by Dover Harbour Board + + + 1.3092222 51.1106418 + 1.3450176 51.1273709 + + dac.02002755 + + + 2011 2012-3633 J672 Weymouth Harbour + + + -2.4597408 50.606485 + -2.4394123 50.6134709 + + dac.02002756 + + + 2011 2011-239341 Forth Forth Deep Water Channel + Collected by Forth Ports - Vessel unknown + + + -3.2473224 56.0224203 + -3.1705375 56.059635 + + dac.02002757 + + + 2011 2011-220966 Padstow Doom Bar + + + -4.9489404 50.534442 + -4.9101698 50.5715676 + + dac.02002758 + + + 2011 2011-239346 River Mersey Alfred Dock Entrance to Twelve Quays + Vessel unknown + + + -3.0184104 53.3979153 + -3.005427 53.4072429 + + dac.02002759 + + + 2011 2011-239346 River Mersey Eastham Bar and Channel + Vessel unknown + + + -2.9728649 53.3224291 + -2.9466136 53.3604147 + + dac.02002760 + + + 2011 2011-239346 Liverpool Queens Channel East + Vessel unknown + + + -3.2287484 53.5143989 + -3.1713979 53.5307176 + + dac.02002761 + + + 2011 2011-239346 River Mersey Tranmere Oil Stages + Vessel unknown + + + -3.0039038 53.3755196 + -2.9914581 53.3850708 + + dac.02002762 + + + 2012 2012-3631 River Dee Mostyn Channel and Harbour Area + Collected by Port of Mostyn + + + -3.2850891 53.3099587 + -3.2399874 53.35184 + + dac.02002763 + + + 2012 2012-003631 Dee Estuary Hilbre Island and Welsh Channel to Salisbury Bank + Collected by Port of Mostyn + + + -3.3162151 53.3063332 + -3.1839 53.3857421 + + dac.02002764 + + + 2012 2012-003631 Approaches to River Dee Mid Hoyle to Wild Road + Collected by Port of Mostyn + + + -3.3257496 53.3588293 + -3.2991539 53.3820306 + + dac.02002765 + + + 2011 HI1352 North Minch Blk 1 2m SB + + + -6.3850748 57.8686414 + -5.6728612 58.0808809 + + dac.02002766 + + + 2011 HI1352 North Minch Blk 1 4m SB + + + -6.3836834 57.8728361 + -5.5410091 58.10257 + + dac.02002767 + + + 2011 HI1352 North Minch Blk 1 8m SB + + + -6.3807337 57.8717099 + -5.5467853 58.1410588 + + dac.02002768 + + + 2011 2012-17170 Milford Haven Channel WGS84 + Survey by A D Bates Partnership + + + -5.152158 51.681078 + -4.933566 51.70815 + + dac.02002769 + + + 2011 2012-17170 Milford Docks Channel WGS84 + Surveyed by A D Bates Partnership + + + -5.039755 51.702901 + -5.0314627 51.7105811 + + dac.02002770 + + + 2011 2012-17170 Milford Haven South Hook Terminal WGS84 + Surveyed by A D Bates Partnership + + + -5.0886625 51.6963028 + -5.0684527 51.6998229 + + dac.02002771 + + + 2011 2012-17170 Milford Haven Murco Terminal WGS84 + Surveyed by A D Bates Partnership + + + -5.066277 51.6975031 + -5.0494645 51.7036968 + + dac.02002772 + + + 2011 2012-17170 Milford Haven Chevron Terminal WGS84 + Surveyed by A D Bates Partnership + + + -5.0549456 51.695065 + -5.0175468 51.7000693 + + dac.02002773 + + + 2011 2012-17170 Milford Haven Dragon Terminal WGS84 + Surveyed by A D Bates Partnership + + + -5.0058292 51.6983802 + -4.9976363 51.7009601 + + dac.02002774 + + + 2011 2012-17170 Milford Haven Semlogistics Terminal WGS84 + Surveyed by A D Bates Partnership + + + -4.9988957 51.6953893 + -4.9874031 51.700305 + + dac.02002775 + + + 2011 2012-17170 Pembroke Dock WGS84 + Surveyed by A D Bates Partnership + + + -4.9532228 51.695708 + -4.946646 51.6988935 + + dac.02002776 + + + 2011 2012-17170 Milford Haven Pennar Gut WGS84 + Surveyed by A D Bates Partnership + + + -4.9974989 51.6833877 + -4.9776906 51.6925233 + + dac.02002777 + + + 2011 2012-17170 Milford Haven West Channel WGS84 + Surveyed by A D Bates Partnership + + + -5.1644548 51.6787778 + -5.1491193 51.6901345 + + dac.02002778 + + + 2011 2012-17170 Milford Haven Main Channel WGS84 + Surveyed by A D Bates Partnership + + + -5.1214824 51.6937666 + -5.0965641 51.6967001 + + dac.02002779 + + + 2011 2012-17170 Milford Haven Swing Area WGS84 + Surveyed by A D Bates Partnership + + + -5.0489657 51.7010627 + -5.0225127 51.7042104 + + dac.02002780 + + + 2011 2012-17170 Milford Haven South Channel WGS84 + Surveyed by A D Bates Partnership + + + -5.0893966 51.6929163 + -5.0722935 51.6966259 + + dac.02002781 + + + 2008 HI1158 Barnstaple Bay Part 2 2m SB + Starfix receiver using HP and XP corrections as a primary positioning system. +Part1 Parent No RSDRA2007000002067 + + + -4.7532829 50.9900599 + -4.1619536 51.2679886 + + dac.02002782 + + + 2008 HI1246 Lizard Point to Lands End Main Survey 2m SB + Owned by Teignbridge District Council. Work carried out as part of the Southwest Regional Coastal Monitoring Programme. + + + -5.7319125 49.9478664 + -5.1883619 50.1287394 + + dac.02002783 + + + 2010 HI1323 South Wight 2m SB + + + -1.6177498 50.552716 + -0.9508287 50.7152471 + + dac.02002784 + + + 2010 HI1341 Dungeness to Ramsgate Blk4 2m SB + Survey Ship MV Xplorer + + + 0.9718107 50.9718375 + 1.1900283 51.0761546 + + dac.02002785 + + + 2005 HI1121 Needles Channel 2m SB + + + -1.6339375 50.6511418 + -1.5916101 50.6756811 + + dac.02002786 + + + 2007 HI1158 Barnstaple Bay Part 1 2m SB + Starfix receiver using HP and XP corrections as a primary positioning system. +Part 2 Parent No RSDRA2009000024823. + + + -4.7525048 51.0319508 + -4.2891352 51.2684724 + + dac.02002787 + + + 2008 HI1246 Lizard Point to Lands End Infill Survey 2m SB + Owned by Teignbridge District Council. Work carried out as part of the Southwest Regional Coastal Monitoring Programme. + + + -5.4430273 50.0698276 + -5.3522876 50.103588 + + dac.02002788 + + + 2009 HI1154 Chesil Beach to Handfast Point 2m SB + DORIS (Dorset Integrated Seabed Survey), a collaborative project involving Dorset Wildlife Trust, MCA, CCO and the Royal Navy. Other partners include Natural England, Dorset Strategic Partnership, NOC and the University of Southampton + + + -2.2820847 50.4823641 + -1.9015482 50.6436185 + + dac.02002789 + + + 2010 HI1343 Lyme Bay 2m SB + NB SURFACE TO BE REPLACED - Created using World Mercator projection. Second Vessel = +MV Icebeam + + + -3.1485746 50.5970026 + -2.6144493 50.7220106 + + dac.02002790 + + + 2010 HI1341 Dungeness to Ramsgate Blk1 2m SB + Survey Ship MV Xplorer + + + 1.376522 51.1781535 + 1.4373299 51.3266029 + + dac.02002791 + + + 2010 HI1341 Dungeness to Ramsgate Blk2 2m SB + Survey Ship MV Xplorer + + + 1.2863406 51.0840111 + 1.4518705 51.1804968 + + dac.02002792 + + + 2010 HI1341 Dungeness to Ramsgate Blk3 2m SB + Survey Ship MV Xplorer + + + 1.1656046 51.0310518 + 1.3296311 51.1139402 + + dac.02002793 + + + 2005 HI1109 Cockle Gatway and Cockle Shoal 2m SB + + + 1.7001939 52.6737717 + 1.8046544 52.7643293 + + dac.02002794 + + + 2005 HI1143 Western Solent and Approaches 2m SB + + + -1.6102453 50.662307 + -1.4325775 50.7574322 + + dac.02002795 + + + 2006 HI1156 Hampstead Ledge to Stansore Point 2m SB + + + -1.4508096 50.7258232 + -1.3133016 50.786077 + + dac.02002796 + + + 2010 HI1317 Hurst Spit 2m SB + + + -1.7488376 50.6965147 + -1.5407706 50.7367015 + + dac.02002797 + + + 2010 HI1304 St Kilda to Flannan Is 4m SB + Vessels MV Vigilant and MV Dunstanburgh + + + -8.5247848 57.7486915 + -7.5702941 58.3031969 + + dac.02002798 + + + 2010 HI1304 St Kilda to Flannan Is 8m SB + Vessels MV Vigilant and MV Dunstanburgh + + + -8.5868643 57.7439276 + -7.6802575 58.3160316 + + dac.02002799 + + + 2010 HI1304 St Kilda to Flannan Is 2m SB + Vessels MV Vigilant and MV Dunstanburgh + + + -8.5149587 57.7898601 + -7.5938299 58.2798287 + + dac.02002800 + + + 2011 HI1356 Plymouth Sound to Start Point 2m SB + The Primary Reference Position (online) onboard was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -4.1632585 50.1924092 + -3.6169123 50.3088862 + + dac.02002801 + + + 2010 HI1329 Sound of Islay Blk1 2m SB + + + -6.080096 55.7576953 + -5.9463344 55.8079137 + + dac.02002802 + + + 2010 HI1329 Sound of Islay Blk2 2m SB + The Primary Reference Position (online) onboard both vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.1287703 55.7819653 + -6.0387649 55.9451735 + + dac.02002803 + + + 2010 HI1329 Sound of Islay Blk3 2m SB + + + -6.2062786 55.9247893 + -5.9471944 55.9812275 + + dac.02002804 + + + 2011 HI1357 Torbay 2m SB + Second Vessel = Seabeam + + + -3.5558187 50.3935206 + -3.4532331 50.4663818 + + dac.02002805 + + + 2010 HI1339 Thames Estuary and Dover Strait Blk2 2m SB + Primary Navigation: Applanix POS/MV 320 with RTG corrections from CNAV. + + + 1.1594 51.3869173 + 1.3866771 51.4375291 + + dac.02002806 + + + 2010 HI1339 Thames Estuary and Dover Strait Blk1 2m SB + Primary Navigation: Applanix POS/MV 320 with RTG corrections from CNAV. + + + 1.021722 51.3864889 + 1.1656448 51.4298589 + + dac.02002807 + + + 2010 HI1339 Thames Estuary and Dover Strait Blk3 2m SB + Primary navigational aid is POSMV Cnav. + + + 1.6747368 51.1445736 + 1.7270826 51.1981845 + + dac.02002808 + + + 2010 HI1339 Thames Estuary and Dover Strait Blk4 2m SB + Primary Navigation: Applanix POS/MV 320 with RTG corrections from CNAV. + + + 1.5470357 51.787274 + 1.636466 51.8841837 + + dac.02002809 + + + 2010 HI1330 Loch Snizort 2m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Auxillery Lane RTK for most of the survey + + + -6.6299753 57.5043507 + -6.3567277 57.6486712 + + dac.02002810 + + + 2010 HI1330 Loch Snizort 4m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Auxillery Lane RTK for most of the survey + + + -6.6315206 57.5049669 + -6.3696223 57.6483956 + + dac.02002811 + + + 2010 HI1330 Loch Snizort 8m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Auxillery Lane RTK for most of the survey + + + -6.6301632 57.5108211 + -6.4027726 57.6387218 + + dac.02002812 + + + 2010 HI1297 Western App to Small Isles Blk4 Addendum 2m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.87208 56.578221 + -6.7465734 56.6478854 + + dac.02002813 + + + 2010 HI1297 Western App to Small Isles Blk4 Addendum 4m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.7872134 56.621985 + -6.5782926 56.7477131 + + dac.02002814 + + + 2011 HI1340 Ramsgate to Minnis Bay 2m SB + Principle vessels Imogen and Elliann Batins Unknown + + + 1.2652791 51.3205071 + 1.4648315 51.4036211 + + dac.02002815 + + + 2010 HI1331 Little Minch 2m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Auxillery Lane RTK for most of the survey. + + + -7.049665 57.5557529 + -6.2862444 57.7536259 + + dac.02002816 + + + 2010 HI1331 Little Minch 4m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Auxillery Lane RTK for most of the survey. + + + -7.0536453 57.4279773 + -6.2829636 57.7559483 + + dac.02002817 + + + 2010 HI1331 Little Minch 8m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Auxillery Lane RTK for most of the survey. + + + -7.0544418 57.4223838 + -6.2863973 57.7554114 + + dac.02002818 + + + 2010 HI1331 Little Minch 12m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Auxillery Lane RTK for most of the survey. + + + -7.0387096 57.4319803 + -6.5459705 57.7560485 + + dac.02002819 + + + 2010 HI1338 EA3 Caister Shoal to Cockle Shoal 2m SB + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system +MV Seabeam was also used to collect data. + + + 1.7550813 52.6761389 + 1.7798555 52.7004066 + + dac.02002820 + + + 2010 HI1338 EA9 Holm Sand to South Scroby 2m SB + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system +MV Seabeam was also used to collect data. + + + 1.757872 52.4970243 + 1.8371 52.6175396 + + dac.02002821 + + + 2010 HI1338 EA10 Approaches to Lowestoft 2m SB + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system +MV Seabeam was also used to collect data. + + + 1.7539963 52.433823 + 1.7985061 52.4936111 + + dac.02002822 + + + 2008 HI1257 The Isles of Eigg and Muck Blk1 & 2 2m SB + MV GeoExplorer & MV Triad used a Konsberg 3002D MBES. +MV Franklin used a Konsberg EM710 MBES. + +The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + -6.305195 56.7693927 + -6.0252953 56.9398516 + + dac.02002823 + + + 2008 HI1257 The Isles of Eigg and Muck Blk1 & 2 4m SB + MV GeoExplorer & MV Triad used a Konsberg 3002D MBES. +MV Franklin used a Konsberg EM710 MBES. + +The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + -6.3065428 56.7695656 + -5.9943978 56.9406668 + + dac.02002824 + + + 2008 HI1257 The Isles of Eigg and Muck Blk1 & 2 8m SB + MV GeoExplorer & MV Triad used a Konsberg 3002D MBES. +MV Franklin used a Konsberg EM710 MBES. + +The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + -6.2824267 56.7687487 + -6.0234644 56.9040714 + + dac.02002825 + + + 2008 HI1257 The Isles of Eigg and Muck Blk1 & 2 12m SB + MV GeoExplorer & MV Triad used a Konsberg 3002D MBES. +MV Franklin used a Konsberg EM710 MBES. + +The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + -6.2788512 56.7691866 + -6.069902 56.8888713 + + dac.02002826 + + + 2009 HI1257 The Isles of Eigg and Muck Blk1 & 2 20m SB + MV GeoExplorer & MV Triad used a Konsberg 3002D MBES. +MV Franklin used a Konsberg EM710 MBES. + +The Primary Reference Position was provided by Applanix POS MV systems, supplied with GPS data from a Real Time Kinematic (RTK) system + + + -6.2375548 56.7826322 + -6.1683609 56.8038409 + + dac.02002827 + + + 2012 2012-022727 River Mersey Queens Channel West + Vessel unknown + + + -3.2816288 53.5143396 + -3.2218921 53.5270791 + + dac.02002828 + + + 2012 2012-22727 River Mersey Alfred Dock Entrance to Twelve Quays + Vessel unknown + + + -3.0183229 53.3978523 + -3.0054559 53.4072966 + + dac.02002829 + + + 2012 2012-22727 River Mersey Brazil Elbow + Vessel unknown + + + -3.0789269 53.4450172 + -3.0243742 53.4830998 + + dac.02002830 + + + 2012 2012-22727 River Mersey Crosby Channel and Shoal + + + -3.1151805 53.4904095 + -3.0831404 53.5174103 + + dac.02002831 + + + 2012 2012-022727 River Mersey Eastham Channel and Lock Approaches + Vessel unknown + + + -2.9530787 53.3226951 + -2.9471872 53.3282461 + + dac.02002832 + + + 2012 2012-022727 River Mersey Eastham Bar and Channel + Vessel unknown + + + -2.9720153 53.3423192 + -2.9572562 53.3595053 + + dac.02002833 + + + 2012 2012-022727 River Mersey Garston Channel Entrance and Bar + Vessel unknown + + + -2.9884564 53.3693102 + -2.9586347 53.3796045 + + dac.02002834 + + + 2012 2012-22727 River Mersey Gladstone Dock Entrance + Vessel unknown + + + -3.0227027 53.4433763 + -3.0138044 53.4525123 + + dac.02002835 + + + 2012 2012-22727 River Mersey Langton Dock Entrance + Vessel unknown + + + -3.0135653 53.4329754 + -3.007504 53.439947 + + dac.02002836 + + + 2012 2012-22727 River Mersey Liverpool Landing Stage + Vessel unknown + + + -3.0091722 53.4004508 + -2.9958287 53.4106866 + + dac.02002837 + + + 2012 2012-022727 River Mersey New Brighton Shoal + Vessel unknown + + + -3.0408736 53.4316921 + -3.0126178 53.4521933 + + dac.02002838 + + + 2012 2012-022727 River Mersey Queens Channel East + Vessel unknown + + + -3.2276959 53.5144526 + -3.1689774 53.5312571 + + dac.02002839 + + + 2012 2012-035262 Liverpool Bay South Hoyle Channel + + + -3.4626348 53.3437573 + -3.3643763 53.3669232 + + dac.02002840 + + + 2011 2012-30816 Falmouth Harbour + Surveyed by Coastline Surveys Limited + + + -5.0844141 50.1391449 + -5.0052264 50.1844446 + + dac.02002841 + + + 2010 HI1335 West Coast of Unst Blk 1 2m SB + + + -0.8629189 60.6957052 + -0.7501728 60.8173828 + + dac.02002842 + + + 2010 HI1335 West Coast of Unst Blk 1 4m SB + + + -0.827797 60.6944725 + -0.743802 60.8165553 + + dac.02002843 + + + 2010 HI1335 West Coast of Unst Blk 1 8m SB + + + -0.7795757 60.693837 + -0.7432245 60.8094234 + + dac.02002844 + + + 2012 2012-39987 Heysham Harbour 1m WGS84 + Vessel unknown + + + -2.9302411 54.0311106 + -2.9127656 54.0355335 + + dac.02002845 + + + 2012 2012-39987 River Mersey Crosby Channel North + Vessel unknown + + + -3.1256646 53.5086596 + -3.1000003 53.5245058 + + dac.02002846 + + + 2012 2012-39987 River Mersey Tranmere Oil Stages + Vessel unknown + + + -3.0037224 53.3755483 + -2.9917061 53.3849521 + + dac.02002847 + + + 2012 2012-39987 River Mersey Alfred Dock Entrance + Vessel unknown + + + -3.0182792 53.4018672 + -3.0103726 53.4068719 + + dac.02002848 + + + 2012 2012-39987 River Mersey Cammell Lairds Wall Dock No6 + Vessel unknown + + + -3.0080233 53.3835493 + -3.0028515 53.3897198 + + dac.02002849 + + + 2012 2012-39987 River Mersey Eastham Channel and Lock Approaches + Vessel unknown + + + -2.9531584 53.3215508 + -2.9469326 53.3282379 + + dac.02002850 + + + 2012 2012-39987 River Mersey Eastham Channel + Vessel unknown + + + -2.9632175 53.327299 + -2.9493355 53.3440879 + + dac.02002851 + + + 2012 2012-39987 River Mersey Garston Channel + Vessel unknown + + + -2.9619588 53.3502135 + -2.9179656 53.3723709 + + dac.02002852 + + + 2011 HI1325 Flat Holm to Middle Grounds 2m SB + MV Seabeam was the survey vessel used to collect survey data. +The Primary Reference Position (online) onboard was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -3.1170632 51.3398222 + -2.9053537 51.5263308 + + dac.02002853 + + + 2011 HI1327 Scarweather Sands to Culver Sand 2m SB + + + -3.911768 51.2715646 + -3.2990891 51.4520238 + + dac.02002854 + + + 2009 HI1155 Todhead Point to Bosies Bank Blk1 2m SB + Vessel MV Vigilant + + + -1.8558591 57.4221171 + -1.734119 57.7572251 + + dac.02002855 + + + 2009 HI1155 Todhead Point to Bosies Bank Blk4 4m SB + Vessel MV Vigilant + + + -2.2202521 57.4119923 + -0.9136803 58.0065025 + + dac.02002856 + + + 2009 HI1155 Todhead Point to Bosies Bank Blk6 8m SB + Vessel MV Vigilant + + + -2.2098558 57.4102948 + -0.9082349 58.0068774 + + dac.02002857 + + + 2009 HI1155 Todhead Point to Bosies Bank Blk2 2m SB + Vessel MV Vigilant + + + -2.2029466 56.8309275 + -1.7748311 57.4151633 + + dac.02002858 + + + 2011 HI1368 Tail of The Falls 1m CUBE + MV Seabeam was the survey vessel used by NetSurvey. +Primary Navigation was Applanix POS/MV supplied with GPS data from a C & C Technologies C-Nav 2-50 system. + + + 1.6755883 51.145209 + 1.7259195 51.1978206 + + dac.02002859 + + + 2011 HI1368 Sunk Inner Blk1 1m CUBE + MV Seabeam was the survey vessel used by NetSurvey. +Primary Navigation was Applanix POS/MV supplied with GPS data from a C & C Technologies C-Nav 2-50 system. + + + 1.5641904 51.847542 + 1.6306534 51.8703725 + + dac.02002860 + + + 2011 HI1368 Black Deep Blk2 1m CUBE + MV Seabeam was the survey vessel used by NetSurvey. +Primary Navigation was Applanix POS/MV supplied with GPS data from a C & C Technologies C-Nav 2-50 system. + + + 1.5099256 51.7519161 + 1.5275782 51.762976 + + dac.02002861 + + + 2011 HI1368 Black Deep Blk1 1m CUBE + MV Seabeam was the survey vessel used by NetSurvey. +Primary Navigation was Applanix POS/MV supplied with GPS data from a C & C Technologies C-Nav 2-50 system. + + + 1.5308435 51.7377938 + 1.5735695 51.7700981 + + dac.02002862 + + + 2012 2012-55393 Heysham Harbour 1m WGS84 + Vessel unknown + + + -2.9302405 54.0311091 + -2.9127603 54.0355229 + + dac.02002863 + + + 2011 HI1368 Sunk Inner Blk2 1m CUBE + MV Seabeam was the survey vessel used by NetSurvey. +Primary Navigation was Applanix POS/MV supplied with GPS data from a C & C Technologies C-Nav 2-50 system. + + + 1.5519602 51.8100487 + 1.5900713 51.8442029 + + dac.02002864 + + + 2012 2012-055393 River Mersey Woodside Stage to Tranmere Oil Stage + Vessel unknown + + + -3.0075807 53.3798882 + -2.9874623 53.3972054 + + dac.02002865 + + + 2012 2012-055393 River Mersey Crosby Channel Askew Spit + Vessel unknown + + + -3.1750244 53.5135954 + -3.1188088 53.5319321 + + dac.02002866 + + + 2011 HI1368 Black Deep Blk3 1m CUBE + MV Seabeam was the survey vessel used by NetSurvey. +Primary Navigation was Applanix POS/MV supplied with GPS data from a C & C Technologies C-Nav 2-50 system. + + + 1.5883594 51.7866543 + 1.6356375 51.8247041 + + dac.02002867 + + + 2012 2012-055393 River Mersey Bromborough Wall + Vessel unknown + + + -2.978768 53.3519305 + -2.9669892 53.3598945 + + dac.02002868 + + + 2012 2012-055393 River Mersey Crosby Channel North + Vessel unknown + + + -3.1256193 53.5086494 + -3.0999713 53.5245238 + + dac.02002869 + + + 2012 2012-055393 River Mersey Crosby Channel and Shoal + Vessel unknown + + + -3.1146836 53.4907867 + -3.0829162 53.5172632 + + dac.02002870 + + + 2012 2012-055393 River Mersey Cammell Lairds Wall Tranmere Basin + Vessel unknown + + + -3.0080388 53.3835526 + -3.0028467 53.3897062 + + dac.02002871 + + + 2012 2012-055393 River Mersey Eastham Channel and Lock Approaches + Vessel unknown + + + -2.9531865 53.3226693 + -2.9471275 53.3283694 + + dac.02002872 + + + 2011 HI1368 Wallet Spitway 1m CUBE + MV Seabeam was the survey vessel used by NetSurvey. +Primary Navigation was Applanix POS/MV supplied with GPS data from a C & C Technologies C-Nav 2-50 system. + + + 1.1086065 51.6939265 + 1.1664472 51.7228326 + + dac.02002873 + + + 2012 2012-055393 River Mersey Eastham Bar and Channel + Vessel unknown + + + -2.9723707 53.342499 + -2.9579198 53.3593708 + + dac.02002874 + + + 2012 2012-055393 River Mersey Eastham Channel + Vessel unknown + + + -2.9632175 53.3273266 + -2.9493356 53.3440967 + + dac.02002875 + + + 2012 2012-055393 River Mersey Garston Channel Entrance and Bar + Vessel unknown + + + -2.9871667 53.3696511 + -2.9587225 53.3791603 + + dac.02002876 + + + 2012 2012-055393 River Mersey Garston Channel + Vessel unknown + + + -2.961951 53.3502118 + -2.9179934 53.3723709 + + dac.02002877 + + + 2012 2012-055393 River Mersey Gladstone Dock Entrance + Vessel unknown + + + -3.0212286 53.443772 + -3.0134819 53.4524638 + + dac.02002878 + + + 2012 2012-55393 River Mersey Liverpool Landing Stages + Vessel unknown + + + -3.0032281 53.3957286 + -2.9925651 53.405266 + + dac.02002879 + + + 2012 2012-055393 River Mersey Langton Dock Entrance + Vessel unknown + + + -3.0136576 53.432965 + -3.0079101 53.4399923 + + dac.02002880 + + + 2012 2012-055393 River Mersey New Brighton Shoal + Vessel unknown + + + -3.040913 53.4335721 + -3.015228 53.4518469 + + dac.02002881 + + + 2012 2012-055393 River Mersey Seacombe Stage to Woodside Stage + Vessel unknown + + + -3.0152121 53.393985 + -2.9957725 53.4131717 + + dac.02002882 + + + 2012 2012-055953 River Mersey Queens Channel East + Vessel unknown + + + -3.227094 53.5146066 + -3.1718249 53.5306906 + + dac.02002883 + + + 2012 2012-055393 River Mersey Tower Buoy to Seacombe Stage + Vessel unknown + + + -3.0250889 53.4089882 + -3.0061653 53.4368648 + + dac.02002884 + + + 2012 2012-055393 River Mersey Tranmere Oil Stages + Vessel unknown + + + -3.0037231 53.3755481 + -2.9916449 53.3849611 + + dac.02002885 + + + 2012 2012-055393 River Mersey Alfred Dock Entrance + Vessel unknown + + + -3.0182825 53.4018672 + -3.0103726 53.4068883 + + dac.02002886 + + + 2011 HI1367 Lowestoft Final Harbour Approach 1m CUBE + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. +MV Seabeam was also used to collect survey data. + + + 1.7550134 52.4660279 + 1.770915 52.4771769 + + dac.02002887 + + + 2011 HI1367 Caister Shoal to Cockle Shoal 1m CUBE + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. +MV Seabeam was also used to collect data. + + + 1.7530154 52.6772569 + 1.7906853 52.7011178 + + dac.02002888 + + + 2011 HI1367 Caister Road 1m CUBE + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. +MV Seabeam was also used to collect data. + + + 1.7438533 52.6159961 + 1.7624177 52.6794611 + + dac.02002889 + + + 2011 HI1367 Middle Scroby 1m CUBE + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. +MV Seabeam was also used to collect data. + + + 1.7681391 52.6138467 + 1.7838552 52.6803129 + + dac.02002890 + + + 2011 HI1367 East Scroby Sands 1m CUBE + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. +MV Seabeam was also used to collect data. + + + 1.7825237 52.5812687 + 1.8238597 52.6807623 + + dac.02002891 + + + 2011 HI1367 Yarmouth Road 1m CUBE + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. +MV Seabeam was also used to collect data. + + + 1.7414395 52.5884836 + 1.7689944 52.6184116 + + dac.02002892 + + + 2011 HI1367 Holm Channel CUBE + The Primary Reference Position (online) onboard the vessels was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. +MV Seabeam was also used to collect data. + + + 1.7555881 52.4817106 + 1.8569559 52.6183573 + + dac.02002893 + + + 2010 HI1335 West Coast of Unst Blk 2 2m SB + + + -0.8841625 60.5987493 + -0.7483614 60.6983067 + + dac.02002894 + + + 2012 HI1364 Sound of Mull 8m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES. +MV Icebeam used a Konsberg 2040D MBES. + +The Primary Reference Position (online) aboard was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system + + + -6.1310715 56.4992897 + -5.7035555 56.6775976 + + dac.02002895 + + + 2012 HI1364 Sound of Mull 4m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES. +MV Icebeam used a Konsberg 2040D MBES. + +The Primary Reference Position (online) aboard was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system + + + -6.1248259 56.4982053 + -5.7030873 56.6866527 + + dac.02002896 + + + 2012 HI1364 Sound of Mull 2m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES. +MV Icebeam used a Konsberg 2040D MBES. + +The Primary Reference Position (online) aboard was provided by an Applanix POS/MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system + + + -6.1266317 56.4842605 + -5.696054 56.6933714 + + dac.02002897 + + + 2012 2012-64635 Bristol King Road + + + -2.7915941 51.487427 + -2.6930179 51.5331667 + + dac.02002898 + + + 2012 2012-71163 Bristol Apps to City Docks + + + -2.6277949 51.4469779 + -2.6237779 51.4536409 + + dac.02002899 + + + 2012 2012-071169 Yarmouth Harbour + + + -1.5095167 50.6982589 + -1.4967797 50.710017 + + dac.02002900 + + + 2012 2012-071170 Yarmouth Harbour Interim + + + -1.5046371 50.7051806 + -1.5007081 50.7073213 + + dac.02002901 + + + 2012 2012-071171 Yarmouth J693 Post Dredge + + + -1.5045595 50.7030089 + -1.5007435 50.7080027 + + dac.02002902 + + + 2012 2012-71164 Fishguard J698 WGS84 + + + -4.988363 52.0014021 + -4.9701045 52.0147012 + + dac.02002903 + + + 2012 2012-71167 Ramsgate J695 PostDredge + + + 1.41593 51.3259042 + 1.4236649 51.330913 + + dac.02002904 + + + 2012 2012-71166_Ramsgate Harbour + + + 1.4141988 51.3236082 + 1.4335203 51.3314161 + + dac.02002905 + + + 2012 2012-79622 Folkestone Harbour + + + 1.1857661 51.0758471 + 1.1962912 51.0807566 + + dac.02002906 + + + 2012 2012-81451 J707 Lymington WGS84 + + + -1.536769 50.7298433 + -1.4943269 50.7600484 + + dac.02002907 + + + 2011 2012-085589 Tor Bay Brixham Harbour + + + -3.5183854 50.3959785 + -3.5053653 50.4058466 + + dac.02002908 + + + 2010 2010-130171 River Mersey Alfred Dock Entrance to Twelve Quays + + + -3.0182745 53.3979087 + -3.005532 53.406996 + + dac.02002909 + + + 2005 HI1071 Cape Wrath to Solan Bank + + + -5.6795353 58.5981925 + -4.6120972 59.13672 + + dac.02002910 + + + 2006 2010-104194 Bristol Channel + + + -3.4291306 51.2232687 + -3.0541336 51.4098682 + + dac.02002911 + + + 2009 HI1155 Todhead Point to Bosies Bank Blk3 4m SB + Vessel MV Vigilant + + + -2.2019429 56.8283059 + -0.9078459 57.4229334 + + dac.02002912 + + + 2009 HI1155 Todhead Point to Bosies Bank Blk5 8m SB + Vessel MV Vigilant + + + -1.931106 56.8297841 + -0.9359597 57.4234291 + + dac.02002913 + + + 2012 2012-85976 Bristol Severn Bar + + + -2.743211 51.5059242 + -2.7113478 51.5252703 + + dac.02002914 + + + 2012 2012-87774 Fowey Harbour + + + -4.6505779 50.3197864 + -4.6246308 50.3519359 + + dac.02002915 + + + 2012 2012-94469 Cattewater + + + -4.1359795 50.3580778 + -4.1075172 50.3692534 + + dac.02002916 + + + 2012 2012-93763 Forth Boness Spoil Ground + Collecting Organisation - Forth Ports + + + -3.6370528 56.017944 + -3.5475853 56.0457198 + + dac.02002917 + + + 2010 HI1335 East Coast of Unst Blk 3 2m SB + + + -0.9998179 60.6090196 + -0.8623804 60.6902064 + + dac.02002918 + + + 2010 HI1335 East Coast of Unst Blk 3 4m SB + + + -0.9890799 60.6297565 + -0.8682542 60.6886624 + + dac.02002919 + + + 2009 HI1257 The Isles of Eigg and Muck Blk3 2m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.1020634 56.9010527 + -5.9097872 56.983868 + + dac.02002920 + + + 2009 HI1257 The Isles of Eigg and Muck Blk3 4m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.102233 56.8852099 + -5.906053 56.9859117 + + dac.02002921 + + + 2009 HI1257 The Isles of Eigg and Muck Blk3 8m SB + MV Seabeam was used to collect survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.0428596 56.8900641 + -5.9142327 56.9852383 + + dac.02002922 + + + 2009 HI1257 The Isles of Eigg and Muck Blk3 12m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.0283765 56.959781 + -5.9684145 56.984249 + + dac.02002923 + + + 2009 HI1257 The Isles of Eigg and Muck Blk4 2m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.449548 56.7695439 + -6.297694 56.8348373 + + dac.02002924 + + + 2009 HI1257 The Isles of Eigg and Muck Blk4 4m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.4707757 56.7694372 + -6.2975656 56.8358406 + + dac.02002925 + + + 2009 HI1257 The Isles of Eigg and Muck Blk4 8m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.4728035 56.7694019 + -6.3546942 56.8355847 + + dac.02002926 + + + 2009 HI1257 The Isles of Eigg and Muck Blk4 12m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.4717449 56.7696996 + -6.3723943 56.8356351 + + dac.02002927 + + + 2009 HI1257 The Isles of Eigg and Muck Blk4 20m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.4651886 56.7987582 + -6.3769901 56.8135295 + + dac.02002928 + + + 2012 2012-98457 Heysham 1m WGS84 + Vessel unknown + + + -2.9302683 54.0307654 + -2.9128039 54.0356252 + + dac.02002929 + + + 2012 2012-098457 River Mersey Queens Channel West + Vessel unknown + + + -3.2815656 53.5135642 + -3.222232 53.5274999 + + dac.02002930 + + + 2012 2012-098457 River Mersey Queens Channel East + Vessel unknown + + + -3.2298615 53.5143506 + -3.1712104 53.5310313 + + dac.02002931 + + + 2012 2012-098457 River Mersey Crosby East Training Bank + Vessel unknown + + + -3.1015291 53.4725362 + -3.0566554 53.5160328 + + dac.02002932 + + + 2012 2012-098457 River Mersey Crosby Channel and Shoal + Vessel unknown + + + -3.1143548 53.4893001 + -3.0832802 53.5178843 + + dac.02002933 + + + 2012 2012-098457 River Mersey Gladstone Dock Entrance + Vessel unknown + + + -3.0225516 53.4434209 + -3.013519 53.4502047 + + dac.02002934 + + + 2012 2012-098457 River Mersey New Brighton Shoal + Vessel unknown + + + -3.041089 53.4326108 + -3.0169714 53.4522641 + + dac.02002935 + + + 2012 2012-098457 River Mersey Langton Dock Entrance + Vessel unknown + + + -3.0144179 53.4326296 + -3.0074372 53.4415758 + + dac.02002936 + + + 2012 2012-098457 River Mersey Liverpool Landing Stages + Vessel unknown + + + -3.0088139 53.4003333 + -2.9959208 53.4107509 + + dac.02002937 + + + 2012 2012-098457 River Mersey Alfred Dock Entrance to Twelve Quays + Vessel unknown + + + -3.0182027 53.3978307 + -3.0053069 53.4071438 + + dac.02002938 + + + 2012 2012-098457 River Mersey Tranmere Oil Stages + Vessel unknown + + + -3.0036936 53.3755496 + -2.9916288 53.3849413 + + dac.02002939 + + + 2012 2012-098457 River Mersey Eastham Bar and Channel + Vessel unknown + + + -2.9726113 53.3425467 + -2.9572727 53.3592591 + + dac.02002940 + + + 2012 2012-098457 River Mersey Eastham Channel and Lock Approaches + Vessel unknown + + + -2.9532181 53.3215226 + -2.9469158 53.3283787 + + dac.02002941 + + + 2011 HI1315 WP09 A-D Isle of Wight 2m SB + + + -1.2519695 50.5712809 + -1.0789229 50.668362 + + dac.02002942 + + + 2009 HI1257 The Isles of Eigg and Muck Blk5 2m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.3048265 56.8319867 + -6.1589796 56.9417801 + + dac.02002943 + + + 2009 HI1257 The Isles of Eigg and Muck Blk5 4m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.3047623 56.8322862 + -6.1640173 56.9410267 + + dac.02002944 + + + 2009 HI1257 The Isles of Eigg and Muck Blk5 8m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.3029144 56.8479393 + -6.1814148 56.9404476 + + dac.02002945 + + + 2009 HI1257 The Isles of Eigg and Muck Blk5 12m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.3015764 56.8678431 + -6.1975559 56.9404476 + + dac.02002946 + + + 2009 HI1257 The Isles of Eigg and Muck Blk5 20m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.2751562 56.9126343 + -6.2304133 56.9312867 + + dac.02002947 + + + 2011 HI1315 WP09 E-G Isle of Wight 2m SB + + + -1.3961065 50.5649756 + -1.2294675 50.6262122 + + dac.02002948 + + + 2011 HI1315 WP09 H-L Isle of Wight 2m SB + + + -1.6017089 50.6102016 + -1.3807287 50.6700673 + + dac.02002949 + + + 2011 HI1157 Hartland Point to Lands End Blk1 Annex 4m SB + Starfix receiver using HP and XP correction as a primary positioning system. + + + -4.8112622 50.9973731 + -4.7469498 51.0261085 + + dac.02002950 + + + 2008 HI1158 Barnstaple Bay Part 2 4m SB + Starfix receiver using HP and XP corrections as a primary positioning system. +Part1 Parent No RSDRA2007000002067 + + + -4.7540392 50.9991634 + -4.1639327 51.2694342 + + dac.02002951 + + + 2012 HI1363 Inner Approaches to Firth of Lorne Blk A 2m SB + MV Triad & MV Seabeam (Kongsberg 3002D) +MV Icebeam (EM2040D) + + + -6.3978465 56.193581 + -5.8523998 56.3533012 + + dac.02002952 + + + 2012 HI1363 Inner Approaches to Firth of Lorne Blk A 4m SB + MV Triad & MV Seabeam (Kongsberg 3002D) +MV Icebeam (EM2040D) + + + -6.3926727 56.1624517 + -5.8509974 56.3320707 + + dac.02002953 + + + 2012 HI1363 Inner Approaches to Firth of Lorne Blk A 8m SB + MV Triad & MV Seabeam (Kongsberg 3002D) +MV Icebeam (EM2040D) + + + -6.2665434 56.1822342 + -5.8498357 56.3282285 + + dac.02002954 + + + 2012 HI1363 Inner Approaches to Firth of Lorne Blk A 12m SB + MV Triad & MV Seabeam (Kongsberg 3002D) +MV Icebeam (EM2040D) + + + -5.9633787 56.2528544 + -5.847542 56.3239212 + + dac.02002955 + + + 2012 HI1363 Inner Approaches to Firth of Lorne Blk B 2m SB + MV Triad & MV Seabeam (Kongsberg 3002D) +MV Icebeam (EM2040D) + + + -6.2757941 56.0766074 + -5.7662867 56.2560537 + + dac.02002956 + + + 2012 HI1363 Inner Approaches to Firth of Lorne Blk B 4m SB + MV Triad & MV Seabeam (Kongsberg 3002D) +MV Icebeam (EM2040D) + + + -6.3198614 56.0940474 + -5.7693825 56.2521371 + + dac.02002957 + + + 2012 HI1363 Inner Approaches to Firth of Lorne Blk B 8m SB + MV Triad & MV Seabeam (Kongsberg 3002D) +MV Icebeam (EM2040D) + + + -6.2781333 56.1201858 + -5.7758707 56.2575869 + + dac.02002958 + + + 2012 HI1363 Inner Approaches to Firth of Lorne Blk B 12m SB + MV Triad & MV Seabeam (Kongsberg 3002D) +MV Icebeam (EM2040D) + + + -6.0190506 56.1213546 + -5.7792801 56.2572304 + + dac.02002959 + + + 2012 HI1363 Inner Approaches to Firth of Lorne Blk C 2m SB + MV Triad & MV Seabeam (Kongsberg 3002D) +MV Icebeam (EM2040D) + + + -6.224608 55.977432 + -5.7780219 56.1344164 + + dac.02002960 + + + 2012 HI1363 Inner Approaches to Firth of Lorne Blk C 4m SB + MV Triad & MV Seabeam (Kongsberg 3002D) +MV Icebeam (EM2040D) + + + -6.2132736 55.9781236 + -5.7775215 56.1328627 + + dac.02002961 + + + 2012 HI1363 Inner Approaches to Firth of Lorne Blk C 12m SB + MV Triad & MV Seabeam (Kongsberg 3002D) +MV Icebeam (EM2040D) + + + -5.9690789 56.0812639 + -5.7970825 56.1275035 + + dac.02002962 + + + 2007 HI1158 Barnstaple Bay Part 1 4m SB + Starfix receiver using HP and XP corrections as a primary positioning system. +Part 2 Parent No RSDRA2009000024823. + + + -4.7544435 51.0318614 + -4.2892756 51.2681836 + + dac.02002963 + + + 2009 2011-147366 Isle of Stroma Pentland-Firth + + + -3.3379058 58.6395389 + -2.8856354 58.7900969 + + dac.02002964 + + + 2009 2010-27833 Scapa Flow Main Burra 4m SB + Survey vessel Imogen + + + -3.2650548 58.9014024 + -3.2198032 58.912171 + + dac.02002965 + + + 2009 2010-27833 Scapa Flow Main Burra 2m SB + Survey Vessel Imogen + + + -3.3579249 58.8999025 + -3.2024908 58.971213 + + dac.02002966 + + + 2009 2010-27833 Scapa Flow Area2a 4m SB + Survey Vessel Imogen + + + -3.2621049 58.8112031 + -2.9832992 58.9353579 + + dac.02002967 + + + 2009 2010-27833 Scapa Flow Area2a 2m SB + Vesel unknown + + + -3.2690309 58.8113459 + -2.8958344 58.9596419 + + dac.02002968 + + + 2009 2010-27833 Papa Stour 2m SB + Survey Vessel Imogen + + + -2.9089607 59.3184653 + -2.8816754 59.3303121 + + dac.02002969 + + + 2009 2010-27833 North Ronaldsay 2m SB + Survey Vessel Imogen + + + -2.4588518 59.3447581 + -2.414528 59.3590864 + + dac.02002970 + + + 2009 2010-27833 Longhope 2m SB + Survey Vessel Imogen + + + -3.211381 58.7995413 + -3.1522848 58.8176059 + + dac.02002971 + + + 2009 2010-27833 Kirkwall Bay Orkneys SB + Survey Vessel Imogen + + + -3.0619625 58.9624658 + -2.8018402 59.047267 + + dac.02002972 + + + 2009 HI1257 The Isles of Eigg and Muck Blk6 2m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.2943733 56.925119 + -6.054495 56.983714 + + dac.02002973 + + + 2009 HI1257 The Isles of Eigg and Muck Blk6 4m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.2840136 56.9281574 + -6.0338692 56.9843812 + + dac.02002974 + + + 2009 HI1257 The Isles of Eigg and Muck Blk6 8m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.2717105 56.935862 + -5.9913357 56.9838276 + + dac.02002975 + + + 2009 HI1257 The Isles of Eigg and Muck Blk6 12m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.2707781 56.9361432 + -5.9914694 56.9837154 + + dac.02002976 + + + 2009 HI1257 The Isles of Eigg and Muck Blk7 2m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.3439728 56.6969651 + -6.1838887 56.7728147 + + dac.02002977 + + + 2009 HI1257 The Isles of Eigg and Muck Blk7 8m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.3452208 56.6979378 + -6.2082326 56.7724652 + + dac.02002978 + + + 2009 HI1257 The Isles of Eigg and Muck Blk7 12m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.3098689 56.7226581 + -6.2127652 56.7723556 + + dac.02002979 + + + 2009 HI1257 The Isles of Eigg and Muck Blk7 4m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.3463014 56.6973167 + -6.2049071 56.7728229 + + dac.02002980 + + + 2009 HI1257 The Isles of Eigg and Muck Blk8 2m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.2087272 56.7532379 + -6.0121136 56.8108567 + + dac.02002981 + + + 2009 HI1257 The Isles of Eigg and Muck Blk8 4m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.2114405 56.7654945 + -6.0141785 56.8251806 + + dac.02002982 + + + 2009 HI1257 The Isles of Eigg and Muck Blk8 8m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.2130908 56.7672912 + -6.0310778 56.8162132 + + dac.02002983 + + + 2009 HI1257 The Isles of Eigg and Muck Blk8 12m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.2090833 56.7739348 + -6.044345 56.7962799 + + dac.02002984 + + + 2009 HI1257 The Isles of Eigg and Muck Blk9 2m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.0162399 56.7689218 + -5.9119889 56.8869255 + + dac.02002985 + + + 2009 HI1257 The Isles of Eigg and Muck Blk9 4m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.0411895 56.7749497 + -5.916247 56.8874294 + + dac.02002986 + + + 2009 HI1257 The Isles of Eigg and Muck Blk9 8m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.0167987 56.8002481 + -5.9522748 56.8868894 + + dac.02002987 + + + 2011 2012-93249 Dartmouth Harbour + + + -3.5886103 50.3313952 + -3.5544788 50.3805627 + + dac.02002988 + + + 2012 2012-122869 Bristol Denny Shoal + + + -2.7719517 51.4993615 + -2.7410251 51.5114758 + + dac.02002989 + + + 2009 HI1257 The Isles of Eigg and Muck Blk11 2m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -5.9658026 56.7525429 + -5.8429781 56.8351388 + + dac.02002990 + + + 2009 HI1257 The Isles of Eigg and Muck Blk11 4m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -5.9581311 56.7700613 + -5.8714264 56.8407241 + + dac.02002991 + + + 2009 HI1257 The Isles of Eigg and Muck Blk11 8m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -5.932879 56.8358922 + -5.9252912 56.8400377 + + dac.02002992 + + + 2009 HI1257 The Isles of Eigg and Muck Blk10 2m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.4704106 56.8990474 + -6.2944331 56.9844199 + + dac.02002993 + + + 2009 HI1257 The Isles of Eigg and Muck Blk10 4m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.4724176 56.8980557 + -6.2945279 56.9839772 + + dac.02002994 + + + 2009 HI1257 The Isles of Eigg and Muck Blk10 8m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.4728459 56.898306 + -6.2927371 56.9712344 + + dac.02002995 + + + 2009 HI1257 The Isles of Eigg and Muck Blk10 12m SB + MV Seabeam was used to collect the survey data. +The Primary Reference Position was provided by a Applanix POS MV system, supplied with GPS data from a C&C Technologies C-Nav 2050M system. + + + -6.3142627 56.8990807 + -6.2931228 56.9185165 + + dac.02002996 + + + 2010 HI1322 Approaches to Scalloway Blk 5 2m SB + + + -1.2987002 60.1267863 + -1.2675077 60.1371451 + + dac.02002997 + + + 2010 HI1322 Approaches to Scalloway Blk 1 2m SB + + + -1.3823245 60.123808 + -1.2896523 60.180057 + + dac.02002998 + + + 2010 HI1322 Approaches to Scalloway Blk 1 4m SB + + + -1.3830276 60.1242253 + -1.3096679 60.1683354 + + dac.02002999 + + + 2010 HI1322 Approaches to Scalloway Blk 1 8m SB + + + -1.3829754 60.1419038 + -1.3755986 60.1511035 + + dac.02003000 + + + 2010 HI1322 Approaches to Scalloway Blk 2 2m SB + + + -1.4621284 60.1047523 + -1.3731105 60.1660264 + + dac.02003001 + + + 2010 HI1322 Approaches to Scalloway Blk 2 4m SB + + + -1.4668835 60.0870173 + -1.3737984 60.1642732 + + dac.02003002 + + + 2010 HI1322 Approaches to Scalloway Blk 2 8m SB + + + -1.4193126 60.0883222 + -1.3755956 60.1589636 + + dac.02003003 + + + 2010 HI1322 Approaches to Scalloway Blk 3 2m SB + + + -1.3863922 60.0395016 + -1.2972643 60.1325597 + + dac.02003004 + + + 2010 HI1322 Approaches to Scalloway Blk 3 4m SB + + + -1.3881582 60.0394355 + -1.3201895 60.1298698 + + dac.02003005 + + + 2010 HI1322 Approaches to Scalloway Blk 3 8m SB + + + -1.3862632 60.0882889 + -1.3755361 60.1042869 + + dac.02003006 + + + 2010 HI1322 Approaches to Scalloway Blk 4 2m SB + + + -1.4200712 60.1543021 + -1.3002773 60.2372495 + + dac.02003007 + + + 2010 HI1322 Approaches to Scalloway Blk 4 4m SB + + + -1.4155316 60.1548829 + -1.3265514 60.2099721 + + dac.02003008 + + + 2010 HI1322 Approaches to Scalloway Blk 4 8m SB + + + -1.3933063 60.155419 + -1.3871399 60.1614943 + + dac.02003009 + + + 2012 2012-133968 Harwich Stone Point + Surveyed by Harwich Haven Authority + + + 1.254289 51.8822556 + 1.2626339 51.8899196 + + dac.02003010 + + + 2012 2012-128469 River Mersey Crosby Channel and Shoal + Vessel unknown + + + -3.1157841 53.4904658 + -3.0836315 53.5181635 + + dac.02003011 + + + 2012 2012-128469 River Mersey Crosby Channel Askew Spit + Vessel unknown + + + -3.1764994 53.5164676 + -3.1121684 53.5325534 + + dac.02003012 + + + 2012 2012-128469 River Mersey Crosby Channel North + Vessel unknown + + + -3.1290534 53.5085208 + -3.1002856 53.5262059 + + dac.02003013 + + + 2012 2012-128469 River Mersey Crosby Channel South + Vessel unknown + + + -3.1008106 53.4673102 + -3.0558788 53.5014624 + + dac.02003014 + + + 2012 2012-128469 River Mersey Eastham Lock Approaches + Vessel unknown + + + -2.9532095 53.3215124 + -2.9466929 53.3285334 + + dac.02003015 + + + 2012 2012-128469 River Mersey Eastham Bar and Channel + Vessel unknown + + + -2.9723385 53.3423655 + -2.9585793 53.3590956 + + dac.02003016 + + + 2012 2012-128469 River Mersey Garston Channel Entrance + Vessel unknown + + + -2.9887507 53.3688751 + -2.9579896 53.379819 + + dac.02003017 + + + 2012 2012-128469 River Mersey Gladstone Dock Entrance + Vessel unknown + + + -3.0218682 53.443457 + -3.0132739 53.4503346 + + dac.02003018 + + + 2012 2012-128469 River Mersey Langton Dock Entrance + Vessel unknown + + + -3.0134106 53.4337008 + -3.0081484 53.4395282 + + dac.02003019 + + + 2012 2012-128469 River Mersey New Brighton Shoal + Vessel unknown + + + -3.040987 53.4334015 + -3.0151708 53.451581 + + dac.02003020 + + + 2012 2012-128469 River Mersey Queens Channel East + Vessel unknown + + + -3.2305659 53.5144338 + -3.1719506 53.5311672 + + dac.02003021 + + + 2012 2012-128469 River Mersey Tranmere Oil Stages + Vessel unknown + + + -3.0041383 53.3743664 + -2.9901346 53.385325 + + dac.02003022 + + + 2012 2012-128469 Liverpool Heysham Harbour + Vessel unknown + + + -2.931366 54.0308099 + -2.9127308 54.0356232 + + dac.02003023 + + + 2012 2012-128469 River Mersey Alfred Dock Entrance + Vessel unknown + + + -3.016225 53.3978709 + -3.0059595 53.4079069 + + dac.02003024 + + + 2012 2012-143387 Harwich Platters Anchorage + + + 1.3389747 51.9130114 + 1.3585531 51.9253532 + + dac.02003025 + + + 2012 2012-140404 River Mersey Pluckington Bank + +Vessel Royal Charter + + + -3.0099934 53.3710436 + -2.9717579 53.4039889 + + dac.02003026 + + + 2012 2012-140404 River Mersey Alfred Dock Entrance and Twelve Quays + +Vessel Royal Charter + + + -3.0183031 53.3978979 + -3.0057076 53.4071864 + + dac.02003027 + + + 2012 2012-140404 River Mersey Crosby Channel Askew Spit + +Vessel Royal Charter + + + -3.2241545 53.5076672 + -3.1097553 53.5269221 + + dac.02003028 + + + 2012 2012-140404 River Mersey Crosby Channel and Shoal + +Vessel Royal Charter + + + -3.1142046 53.4904082 + -3.0840537 53.5173652 + + dac.02003029 + + + 2012 2012-140404 River Mersey Eastham Lock Approaches + +Vessel Royal Charter + + + -2.9532054 53.3226737 + -2.947074 53.3283749 + + dac.02003030 + + + 2012 2012-140404 River Mersey Gladstone Dock Entrance + +Vessel Royal Charter + + + -3.0217604 53.4436385 + -3.0132765 53.4500133 + + dac.02003031 + + + 2012 2012-140404 Liverpool Langton Dock Entrance + +Vessel Royal Charter + + + -3.0140472 53.4325698 + -3.0075088 53.4401436 + + dac.02003032 + + + 2012 2012-140404 River Mersey Middle Deep Deposit Site + +Vessel Royal Charter + + + -2.9534819 53.339076 + -2.9366343 53.3493325 + + dac.02003033 + + + 2012 2012-149787 Forth Kirkcaldy + Collected by Forth Ports - Vessel unknown + + + -3.1517686 56.1112317 + -3.146248 56.1167325 + + dac.02003034 + + + 2012 2012-151229 Shoreham Canal + Collected by Shorehm Port Authority + + + -0.2370374 50.8269559 + -0.2013155 50.8314695 + + dac.02003035 + + + 2012 2012-154653 Newhaven Harbour + Collected by Newhaven Port and Properties + + + 0.0531961 50.7744338 + 0.0626953 50.7901031 + + dac.02003036 + + + 2012 2012-156596 Loch Ryan + + + -5.0576321 54.9834136 + -5.0357129 54.9994922 + + dac.02003037 + + + 2012 2012-162246 Bristol Severn Bar + + + -2.7436914 51.5056604 + -2.7164909 51.5233476 + + dac.02003038 + + + 2012 2012-162089 Heysham Harbour + + + -2.9300219 54.0311479 + -2.9128479 54.0355883 + + dac.02003039 + + + 2012 2012-162089 River Mersey Queens Channel East + + + -3.2314571 53.5141702 + -3.1720625 53.5305512 + + dac.02003040 + + + 2012 2012-162089 River Mersey New Brighton Shoal + + + -3.0394591 53.4332401 + -3.0173848 53.4510439 + + dac.02003041 + + + 2012 2012-162089 River Mersey Langton Dock Entrance + + + -3.0143236 53.4325748 + -3.0073993 53.4416072 + + dac.02003042 + + + 2012 2012-162089 River Mersey Gladstone Dock Entrance + + + -3.0231158 53.4434134 + -3.0139532 53.4500752 + + dac.02003043 + + + 2012 2012-162089 River Mersey Alfred River Entrance + + + -3.0182943 53.3979168 + -3.0056884 53.4072063 + + dac.02003044 + + + 2012 2012-162089 River Mersey Crosby Shoal + + + -3.1139677 53.4908619 + -3.0841824 53.5171948 + + dac.02003045 + + + 2012 2012-149787 Forth Rosyth SBC + Collected by Forth Ports Authority + + + -3.4485452 56.0140295 + -3.4374657 56.0184948 + + dac.02003046 + + + 2011 2011-24875 Newhaven North Quay + Collected by Newhaven Ports and Properties + + + 0.0472154 50.7945826 + 0.0523612 50.8020386 + + dac.02003047 + + + 2012 2012-170377 Bristol Denny Shoal + + + -2.7719609 51.4980066 + -2.7401166 51.5112152 + + dac.02003048 + + + 2012 2012-182150 Liverpool Heysham Channel + Vessel unknown + + + -2.9508263 54.0235649 + -2.9260066 54.0353674 + + dac.02003049 + + + 2012 2012-182150 River Mersey Queens Channel East + Vessel unknown + + + -3.2304419 53.5144421 + -3.1717911 53.5310177 + + dac.02003050 + + + 2012 2012-182150 River Mersey Queens Channel West + Vessel unknown + + + -3.2805534 53.514456 + -3.2226927 53.526312 + + dac.02003051 + + + 2012 2012-182150 River Mersey Tranmere Oil Stages + Vessel unknown + + + -3.0038277 53.3755671 + -2.9917039 53.3849069 + + dac.02003052 + + + 2012 2012-182150 River Mersey Alfred Dock Entrance + Vessel unknown + + + -3.0183404 53.4039447 + -3.0111446 53.4072836 + + dac.02003053 + + + 2012 2012-182150 River Mersey Eastham Bar and Channel + Vessel unknown + + + -2.9718028 53.3426281 + -2.9580435 53.3592746 + + dac.02003054 + + + 2012 2012-182150 River Mersey Langton Dock Entrance + Vessel unknown + + + -3.0135378 53.4329703 + -3.0076233 53.439967 + + dac.02003055 + + + 2012 2012-182150 River Mersey Gladstone Dock Entrance + Vessel unknown + + + -3.0212224 53.4437824 + -3.0138763 53.44991 + + dac.02003056 + + + 2012 2012-182150 River Mersey Eastham Channel and Lock Approaches Blk1 + Vessel unknown + + + -2.9531607 53.3215128 + -2.9469303 53.3284077 + + dac.02003057 + + + 2012 2012-182150 River Mersey Eastham Channel and Lock Approaches Blk2 + Vessel unknown + + + -2.9532034 53.322812 + -2.9468757 53.3283576 + + dac.02003058 + + + 2012 2012-160752 River Lynher + + + -4.234288 50.3902802 + -4.2088413 50.39881 + + dac.02003059 + + + 2012 2012-185519 J744 Holyhead WGS84 + + + -4.6490794 53.3094871 + -4.59946 53.3317578 + + dac.02003060 + + + 2012 2012-183583 J739 Ramsgate East of Pegwell Bay - Spoil Ground + + + 1.4141669 51.3073133 + 1.4550442 51.33089 + + dac.02003061 + + + 2012 2012-197502 Thurso Bay Scrabster Harbour and Approaches + Vessel unknown + + + -3.5508019 58.6074703 + -3.5396434 58.6123357 + + dac.02003062 + + + 2012 HI1373 Loch Linnhe Blk A 2m SB + + + -5.2546364 56.7131683 + -5.1106902 56.8419933 + + dac.02003063 + + + 2012 HI1373 Loch Linnhe Blk A 4m SB + + + -5.2480484 56.7134306 + -5.1159629 56.8249763 + + dac.02003064 + + + 2012 HI1373 Loch Linnhe Blk A 8m SB + + + -5.2418754 56.7326854 + -5.123995 56.8158122 + + dac.02003065 + + + 2012 HI1373 Loch Linnhe Blk B 2m SB + + + -5.5204708 56.5761404 + -5.23678 56.7183728 + + dac.02003066 + + + 2012 HI1373 Loch Linnhe Blk B 4m SB + + + -5.5197784 56.5764382 + -5.2373871 56.7145726 + + dac.02003067 + + + 2012 HI1373 Loch Linnhe Blk B 8m SB + + + -5.5154411 56.5766714 + -5.306487 56.6666376 + + dac.02003068 + + + 2012 HI1373 Loch Linnhe Blk C 2m SB + + + -5.6410107 56.4509497 + -5.3941223 56.5839367 + + dac.02003069 + + + 2012 HI1373 Loch Linnhe Blk C 4m SB + + + -5.6401804 56.4531516 + -5.4028619 56.5836794 + + dac.02003070 + + + 2012 HI1373 Loch Linnhe Blk C 8m SB + + + -5.6397134 56.4952558 + -5.4404357 56.5831968 + + dac.02003071 + + + 2012 HI1373 Loch Linnhe Blk C 12m SB + + + -5.6397222 56.4929553 + -5.4843262 56.5597688 + + dac.02003072 + + + 2012 HI1373 Loch Linnhe Blk A 12m SB + + + -5.2317378 56.7391883 + -5.1497735 56.7984751 + + dac.02003073 + + + 2012 2012-188449 Harwich Mistley Quay + + + 1.0795995 51.9441688 + 1.103664 51.9510534 + + dac.02003074 + + + 2005 2012-188449 Harwich Mistley Lidar + + + 1.0799125 51.9447423 + 1.0867766 51.9462509 + + dac.02003075 + + + 2012 HI1372 Moray Firth Block1 2m SB + Vessels: MV IceBeam MV Ocean Star + + + -2.8399387 57.9966572 + -2.3306188 58.228028 + + dac.02003076 + + + 2012 HI1372 Moray Firth Block2 2m SB + Vessels: MV IceBeam MV Ocean Star + + + -2.342221 57.9987741 + -1.8890074 58.2283609 + + dac.02003077 + + + 2012 HI1372 Moray Firth Block3 2m SB + Vessels: MV IceBeam MV Ocean Star + + + -1.9098713 57.998521 + -1.2088064 58.2219228 + + dac.02003078 + + + 2012 HI1372 Moray Firth Blk4 2m SB + Vessels: MV IceBeam MV Ocean Star + + + -2.5109298 58.2191929 + -1.8119059 58.4005009 + + dac.02003079 + + + 2012 HI1372 Moray Firth Blk5 2m SB + Vessels: MV IceBeam MV Ocean Star + + + -2.3345469 58.3929758 + -1.8069291 58.5937812 + + dac.02003080 + + + 2012 HI1372 Moray Firth Blk6 2m SB + Vessels: MV IceBeam MV Ocean Star + + + -2.8184408 58.3429921 + -2.3253004 58.5926251 + + dac.02003081 + + + 2012 HI1297 Pt 2 Inner App to Small Isles Blk2 2m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -6.5883874 56.6498322 + -6.4274662 56.7168839 + + dac.02003082 + + + 2012 HI1297 Pt 2 Inner App to Small Isles Blk2 4m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -6.5273874 56.682526 + -6.425591 56.7177708 + + dac.02003083 + + + 2012 HI1297 Pt 2 Inner App to Small Isles Blk2 8m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -6.45754 56.6993764 + -6.4220032 56.7188724 + + dac.02003084 + + + 2012 HI1297 Pt 2 Inner App to Small Isles Blk2 12m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -6.4249293 56.7161127 + -6.4219694 56.7179638 + + dac.02003085 + + + 2012 HI1297 Pt 2 Inner App to Small Isles Blk4 2m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -6.8746354 56.5294073 + -6.5753498 56.789086 + + dac.02003086 + + + 2012 HI1297 Pt 2 Inner App to Small Isles Blk4 4m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -6.87196 56.6209547 + -6.5731546 56.788765 + + dac.02003087 + + + 2012 HI1297 Pt 2 Inner App to Small Isles Blk4 8m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -6.9122207 56.6694849 + -6.5797993 56.7901953 + + dac.02003088 + + + 2012 HI1297 Pt 2 Inner App to Small Isles Blk4 12m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -6.9190367 56.7188962 + -6.5821383 56.7856262 + + dac.02003089 + + + 2012 HI1297 Pt 2 Inner App to Small Isles Blk5 2m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -6.549733 56.980103 + -6.4110862 57.0525896 + + dac.02003090 + + + 2012 HI1297 Inner App to Small Isles Blk5 4m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -6.5499707 57.0000386 + -6.4559769 57.0481612 + + dac.02003091 + + + 2012 HI1297 Pt 2 Inner App to Small Isles Blk5 8m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -6.5043611 57.0096595 + -6.4590806 57.048451 + + dac.02003092 + + + 2012 HI1297 Pt 2 Inner App to Small Isles Blk5 12m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -6.473178 57.0380423 + -6.4586951 57.0479457 + + dac.02003093 + + + 2012 HI1297 Inner App to Small Isles Blk6 2m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -7.1732406 56.489367 + -6.8613892 56.6209976 + + dac.02003094 + + + 2012 HI1297 Inner App to Small Isles Blk6 4m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -7.1233101 56.533981 + -6.8616818 56.7157039 + + dac.02003095 + + + 2012 HI1297 Inner App to Small Isles Blk6 8m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -7.0486131 56.6147434 + -6.8621214 56.7501464 + + dac.02003096 + + + 2012 HI1297 Inner App to Small Isles Blk6 12m SB + MV Seabeam & MV Triad used a Konsberg 3002D MBES + + + -6.9581249 56.7039369 + -6.8640219 56.7872104 + + dac.02003097 + + + 2012 2012-198321 Bristol Channel Walton Bay + + + -2.865435 51.4506457 + -2.7871977 51.5134311 + + dac.02003098 + + + 2012 2012-198321 Bristol Severn Bar + + + -2.7437096 51.5059119 + -2.7146884 51.5212027 + + dac.02003099 + + + 2012 2012-198321 Avonmouth Swash Channel + + + -2.7212157 51.4949849 + -2.7046581 51.506612 + + dac.02003100 + + + 2012 2012-197499 River Tay Broughty Deep + Collected by Forth Ports - Vessel unknown + + + -2.873242 56.4519864 + -2.8461493 56.4600564 + + dac.02003101 + + + 2012 2012-197499 River Tay Dundee Wharves + Collected by Forth Ports - Vessel unknown + + + -2.9561906 56.4575279 + -2.9157445 56.4661588 + + dac.02003102 + + + 2012 2012-197499 River Tay Spoil Ground + Collected by Forth Ports - Vessel unknown + + + -2.9555405 56.4498232 + -2.9139462 56.4653888 + + dac.02003103 + + + 2012 2012-197499 River Tay Tay Bar + Collected by Forth Ports - Vessel unknown + + + -2.6875206 56.449057 + -2.6279985 56.4780315 + + dac.02003104 + + + 2012 2012-197499 River Tay Tay Bridge to Kirkton + Collected by Forth Ports - Vessel unknown + + + -3.0449759 56.4184269 + -2.9857993 56.4428901 + + dac.02003105 + + + 2012 2012-197499 River Tay Rail Bridge to Road Bridge + Collected by Forth Ports - Vessel unknown + + + -2.9891287 56.428721 + -2.9400234 56.4536926 + + dac.02003106 + + + 2012 2012-149787 Forth Kinghorn DWC + Collected by Forth Ports - Vessel unknown + + + -3.1902849 56.0381687 + -3.1281219 56.08181 + + dac.02003107 + + + 2012 2012-197497 Heysham Harbour WGS84 + Vessel unknown + + + -2.9301847 54.0310785 + -2.9125646 54.0355344 + + dac.02003108 + + + 2012 2012-197497 River Mersey Tranmere Oil Stage + Vessel unknown + + + -3.0038157 53.375482 + -2.9915263 53.3850202 + + dac.02003109 + + + 2012 2012-197497 River Mersey Alfred Dock Entrance Twelve Quays + Vessel unknown + + + -3.0183058 53.3978339 + -3.0052719 53.4072481 + + dac.02003110 + + + 2012 2012-197497 River Mersey Cammell Lairds Wall Tranmere Basin + Vessel unknown + + + -3.0078043 53.3849991 + -3.0031265 53.3886646 + + dac.02003111 + + + 2012 2012-197497 River Mersey Crosby Channel and Shoal + Vessel unknown + + + -3.1287414 53.4902772 + -3.0834864 53.5258692 + + dac.02003112 + + + 2012 2012-197497 River Mersey Garston Channel Entrance + Vessel unknown + + + -2.9855774 53.3663373 + -2.9583468 53.3793464 + + dac.02003113 + + + 2012 2012-201438 Truro Penryn Harbour + commissioned by Truro and Penryn Harbours - owned by Cornwall County Council + + + -5.0863914 50.1634354 + -5.0203246 50.252699 + + dac.02003114 + + + 2012 HI1392 Approaches to Inner Sound 12m SB + Vessels MV Seabeam and MV Ocean Star + + + -6.103934 57.5939849 + -5.8643376 57.8423708 + + dac.02003115 + + + 2012 HI1392 Approaches to Inner Sound 8m SB + Vessels MV Seabeam and MV Ocean Star + + + -6.1595268 57.5965125 + -5.8538327 57.8563425 + + dac.02003116 + + + 2012 HI1392 Approaches to Inner Sound 4m SB + Vessels MV Seabeam and MV Ocean Star + + + -6.1591176 57.5964174 + -5.8231266 57.8655132 + + dac.02003117 + + + 2012 HI1392 Approaches to Inner Sound 2m SB + Vessels MV Seabeam and MV Ocean Star + + + -6.1483645 57.5959337 + -5.8066016 57.8715571 + + dac.02003118 + + + 2012 2012-208119 Dover Harbour + Collected by Dover Harbour Board + + + 1.3092289 51.1106213 + 1.3448338 51.1273865 + + dac.02003119 + + + 2012 2012-209574 Parkeston Anchorage + + + 1.2349642 51.9507402 + 1.2474507 51.9540155 + + dac.02003120 + + + 2012 2012-209605 Approaches to Yarmouth Harbour and River Yar + + + -1.50956 50.6981286 + -1.4967924 50.7094902 + + dac.02003121 + + + 2012 2012-212702 Scilly Isles + St Marys Harbour is owned and managed by the Duchy of Cornwall + + + -6.3503115 49.8949967 + -6.2768179 49.9586713 + + dac.02003122 + + + 2012 2012-217318 Shoreham Harbour Eastern Arm + + + -0.2488125 50.821289 + -0.2387079 50.8307517 + + dac.02003123 + + + 2012 2012-217637 Bristol Denny Shoal + + + -2.7720581 51.4976471 + -2.7309483 51.5115803 + + dac.02003124 + + + 2012 HI1408 Blackpool 2m SB WGS84 + Data commissioned and owned by Sefton Borough Council as part of the Regional Coastal Monitoring Programme. Vessel MV Sunbeam + + + -3.1193124 53.7770574 + -3.0571652 53.9295454 + + dac.02003125 + + + 2012 2012-222025 Belfast Lough WGS84 + + + -5.8899974 54.6260568 + -5.6193468 54.7419346 + + dac.02003126 + + + 2012 2012-222084 Shoreham Western Arm + + + -0.2750123 50.8283869 + -0.247871 50.8319617 + + dac.02003127 + + + 2012 2012-222081 Thames Estuary Long Sand Head + vessel Verifier + + + 1.5332893 51.6838958 + 1.7134093 51.8507596 + + dac.02003128 + + + 2012 2012-227271 J761 Ramsgate Harbour + + + 1.4142366 51.3236579 + 1.4335592 51.3314618 + + dac.02003129 + + + 2008 HI1238 Whale Rk to Flannan Island 2m SB + + + -7.6736526 58.259211 + -7.5409178 58.3118381 + + dac.02003130 + + + 2008 HI1238 Whale Rk to Flannan Island 4m SB + Vessel unknown + + + -7.8889551 57.9171019 + -7.2271844 58.5077836 + + dac.02003131 + + + 2008 HI1238 Whale Rk to Flannan Island 8m SB + + + -7.9691378 57.9096177 + -7.1669045 58.5739071 + + dac.02003132 + + + 2009 HI1299 Canna to Sleat 2m SB + + + -6.5372597 56.9821325 + -5.9972071 57.3130955 + + dac.02003133 + + + 2009 HI1299 Canna to Sleat 4m SB + + + -6.5442824 56.9810087 + -5.9974716 57.3132082 + + dac.02003134 + + + 2009 HI1299 Canna to Sleat 8m SB + + + -6.5385679 56.9805996 + -5.9908353 57.2239648 + + dac.02003135 + + + 2009 HI1299 Canna to Sleat 12m SB + + + -6.5383137 56.9802041 + -6.013732 57.1812793 + + dac.02003136 + + + 2012 HI1366 Poole Bay Blk1 to 3 2m SB + + + -1.9263483 50.4515052 + -1.4404126 50.5904608 + + dac.02003137 + + + 2012 HI1366 Poole Bay Blk4 to 6 2m SB + + + -1.9068552 50.560106 + -1.3761267 50.6119603 + + dac.02003138 + + + 2012 HI1366 Poole Bay Blk7 to 10 2m SB + + + -1.9228416 50.6065008 + -1.4649752 50.6607429 + + dac.02003139 + + + 2012 HI1366 Poole Bay Blk14 to 17 2m SB + + + -1.948741 50.6416068 + -1.5446872 50.7277324 + + dac.02003140 + + + 2012 HI1366 Poole Bay Blk11 2m SB + + + -1.9235113 50.6551248 + -1.6082001 50.6846838 + + dac.02003141 + + + 2012 HI1366 Poole Bay Blk12 2m SB + + + -1.9231441 50.6819618 + -1.7061993 50.7130419 + + dac.02003142 + + + 2012 HI1366 Poole Bay Blk13 2m SB + + + -1.7243247 50.6813037 + -1.58934 50.7279499 + + dac.02003143 + + + 2012 2012-232213 Forth Leith Roads + Colorg - Forth Ports + + + -3.247057 55.9814218 + -3.1661655 56.0143603 + + dac.02003144 + + + 2009 HI1300 Outer Approaches to Ullapool 2m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -5.8266824 57.86051 + -5.2261228 58.0055773 + + dac.02003145 + + + 2009 HI1300 Outer Approaches to Ullapool 4m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -5.7694876 57.8818777 + -5.2231783 58.0082049 + + dac.02003146 + + + 2009 HI1300 Outer Approaches to Ullapool 8m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -5.6387014 57.9010588 + -5.2295455 58.0020662 + + dac.02003147 + + + 2009 HI1300 Outer Approaches to Ullapool 12m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -5.6149204 57.9162336 + -5.3173705 57.9734164 + + dac.02003148 + + + 2012 2012-231969 Chichester Harbour + + + -0.9450188 50.755851 + -0.9032965 50.795271 + + dac.02003149 + + + 2012 2012-240344 River Mersey Queens Channel East + Vessel unknown + + + -3.2266615 53.5149996 + -3.1715655 53.5304081 + + dac.02003150 + + + 2012 2012-240344 River Mersey Bromborough Wall + Vessel unknown + + + -2.978504 53.3516356 + -2.9667363 53.3599085 + + dac.02003151 + + + 2012 2012-240344 River Mersey Crosby Shoal + Vessel unknown + + + -3.1155113 53.4907077 + -3.0841211 53.5175513 + + dac.02003152 + + + 2012 2012-240344 River Mersey Eastham Approaches + Vessel unknown + + + -2.9532826 53.3215125 + -2.9469137 53.328424 + + dac.02003153 + + + 2012 2012-240344 River Mersey Langton Dock Entrance + Vessel unknown + + + -3.0135392 53.4329955 + -3.0076607 53.4399366 + + dac.02003154 + + + 2012 2012-240344 River Mersey New Brighton Shoal + Vessel unknown + + + -3.0403346 53.4333401 + -3.0170875 53.4504459 + + dac.02003155 + + + 2012 2012-243489 Severn Estuary Bridge Patch + + + -3.0105882 51.435778 + -2.9744965 51.4581424 + + dac.02003156 + + + 2012 2012-248291 Bristol Severn Bar + + + -2.7437481 51.5056064 + -2.7108767 51.5272174 + + dac.02003157 + + + 2012 2012-244902 Severn Estuary North Elbow + + + -3.0066872 51.4282552 + -2.9398435 51.4491002 + + dac.02003158 + + + 2012 HI1397 EA3a 1m FMCUBE + Vessel: MV Seabeam + + + 1.7551042 52.677624 + 1.7627352 52.6944811 + + dac.02003159 + + + 2012 HI1397 EA3b 1m FMCUBE + Vessel: MV Seabeam + + + 1.7633313 52.6867716 + 1.7795758 52.6991478 + + dac.02003160 + + + 2012 HI1397 EA9 1m FMCUBE + Vessel: MV Seabeam + + + 1.7714765 52.497428 + 1.8347021 52.6179037 + + dac.02003161 + + + 2012 HI1397 EA12 1m CUBE + Vessel: MV Seabeam + + + 1.7350181 52.4462233 + 1.7640082 52.4670796 + + dac.02003162 + + + 2008 HI1274 Papa Stour to Fethaland Blk1 2m SB + + + -1.8595235 60.2373165 + -1.660263 60.3809535 + + dac.02003163 + + + 2008 HI1274 Papa Stour to Fethaland Blk1 4m SB + + + -1.8577819 60.2315737 + -1.6601328 60.3960605 + + dac.02003164 + + + 2008 HI1274 Papa Stour to Fethaland Blk1 8m SB + + + -1.8628728 60.238579 + -1.6599246 60.4087711 + + dac.02003165 + + + 2008 HI1274 Papa Stour to Fethaland Blk2 2m SB + + + -1.6581265 60.3082573 + -1.4656186 60.3760788 + + dac.02003166 + + + 2008 HI1274 Papa Stour to Fethaland Blk2 4m SB + + + -1.6736232 60.3082356 + -1.4625413 60.3953471 + + dac.02003167 + + + 2008 HI1274 Papa Stour to Fethaland Blk2 8m SB + + + -1.6748798 60.3178104 + -1.4838589 60.4092017 + + dac.02003168 + + + 2008 HI1274 Papa Stour to Fethaland Blk3 2m SB + + + -1.6202368 60.3767479 + -1.431186 60.480581 + + dac.02003169 + + + 2008 HI1274 Papa Stour to Fethaland Blk3 4m SB + + + -1.6466103 60.3741048 + -1.4236916 60.4774631 + + dac.02003170 + + + 2008 HI1274 Papa Stour to Fethaland Blk3 8m SB + + + -1.67131 60.3750064 + -1.439466 60.4691801 + + dac.02003171 + + + 2008 HI1274 Papa Stour to Fethaland Blk4 4m SB + + + -1.7552883 60.40829 + -1.6330152 60.4826125 + + dac.02003172 + + + 2008 HI1274 Papa Stour to Fethaland Blk4 8m SB + + + -1.8600423 60.4034088 + -1.6345238 60.5196441 + + dac.02003173 + + + 2008 HI1274 Papa Stour to Fethaland Blk5 2m SB + + + -1.6443879 60.4811431 + -1.4810409 60.5665035 + + dac.02003174 + + + 2008 HI1274 Papa Stour to Fethaland Blk5 4m SB + + + -1.6634449 60.4722417 + -1.4823416 60.5843567 + + dac.02003175 + + + 2008 HI1274 Papa Stour to Fethaland Blk5 8m SB + + + -1.7656084 60.4780689 + -1.5248212 60.6131022 + + dac.02003176 + + + 2008 HI1274 Papa Stour to Fethaland Blk6 2m SB + Vessel unknown + + + -1.4906664 60.5614576 + -1.3196285 60.6615085 + + dac.02003177 + + + 2008 HI1274 Papa Stour to Fethaland Blk6 4m SB + Vessel unknown + + + -1.5348634 60.5618688 + -1.3165091 60.6700013 + + dac.02003178 + + + 2008 HI1274 Papa Stour to Fethaland Blk6 8m SB + Vessel unknown + + + -1.6001086 60.5811014 + -1.3293657 60.6699239 + + dac.02003179 + + + 2007 HI1153 Baymanshole to Dunbar Blk1 4m SB + Tridens1 was equipped with a Kongsberg Seatex Seapath 200 system, whilst MV Vigilant used an Applanix PosMV system. + + + -0.8391213 55.6410511 + 0.0043987 56.0048048 + + dac.02003180 + + + 2007 HI1153 Baymanshole to Dunbar Blk1 8m SB + Tridens1 was equipped with a Kongsberg Seatex Seapath 200 system, whilst MV Vigilant used an Applanix PosMV system. + + + -0.8408909 55.6436865 + 0.0065041 56.0049096 + + dac.02003181 + + + 2007 HI1153 Baymanshole to Dunbar Blk2 4m SB + Tridens1 was equipped with a Kongsberg Seatex Seapath 200 system, whilst MV Vigilant used an Applanix PosMV system. + + + -1.0012358 55.3957115 + 0.0062902 55.7075504 + + dac.02003182 + + + 2007 HI1153 Baymanshole to Dunbar Blk2 8m SB + Tridens1 was equipped with a Kongsberg Seatex Seapath 200 system, whilst MV Vigilant used an Applanix PosMV system. + + + -1.0012165 55.3961742 + 0.0085565 55.7080554 + + dac.02003183 + + + 2007 HI1153 Baymanshole to Dunbar Blk3 4m SB + Tridens1 was equipped with a Kongsberg Seatex Seapath 200 system, whilst MV Vigilant used an Applanix PosMV system. + + + -0.7105487 54.7889676 + 0.0044397 55.4073854 + + dac.02003184 + + + 2007 HI1153 Baymanshole to Dunbar Blk3 8m SB + Tridens1 was equipped with a Kongsberg Seatex Seapath 200 system, whilst MV Vigilant used an Applanix PosMV system. + + + -0.7785212 54.7940602 + 0.0031802 55.4079012 + + dac.02003185 + + + 2012 2012-260590 Milford Haven + Collected by Milford Haven Port Authority + + + -5.1773559 51.6652617 + -4.9181527 51.7109636 + + dac.02003186 + + + 2012 2012-260592 Milford Haven Post Dredge + Collected by Milford Haven Port Authority + + + -5.0548673 51.6951981 + -4.9873628 51.7112706 + + dac.02003187 + + + 2012 2013-2 Heysham Harbour + Vessel unknown + + + -2.9294913 54.0308283 + -2.9127323 54.0355941 + + dac.02003188 + + + 2012 2013-2 River Mersey Queens Channel West + Vessel unknown + + + -3.2802271 53.5144568 + -3.2219272 53.5264122 + + dac.02003189 + + + 2012 2013-2 River Mersey Queens Channel East + Vessel unknown + + + -3.2306092 53.514042 + -3.1707731 53.5308988 + + dac.02003190 + + + 2012 2013-2 River Mersey Askew Spit + Vessel unknown + + + -3.1767716 53.5194757 + -3.1200961 53.5322427 + + dac.02003191 + + + 2012 2013-2 River Mersey Gladstone Dock Entrance + Vessel unknown + + + -3.0226275 53.4436777 + -3.0140496 53.449928 + + dac.02003192 + + + 2012 2013-2 River Mersey Langton Lock + Vessel unknown + + + -3.0092978 53.4392576 + -3.0085769 53.4415325 + + dac.02003193 + + + 2012 2013-2 River Mersey Alfred Dock Entrance & 12 Quays + Vessel unknown + + + -3.0182552 53.3979631 + -3.0055535 53.4072428 + + dac.02003194 + + + 2012 2013-2 River Mersey Liverpool Landing Stages + Vessel unknown + + + -3.0091299 53.4006704 + -2.9959579 53.4106202 + + dac.02003195 + + + 2012 2013-2 River Mersey Cammell Lairds Wall + Vessel unknown + + + -3.0080982 53.3828225 + -3.0024376 53.3904284 + + dac.02003196 + + + 2012 2013-2 River Mersey Garston Channel + Vessel unknown + + + -2.961304 53.3508433 + -2.9172664 53.371275 + + dac.02003197 + + + 2012 2013-2 River Mersey Eastham Bar + Vessel unknown + + + -2.9718107 53.3431319 + -2.9576687 53.3591764 + + dac.02003198 + + + 2012 2013-2 River Mersey Eastham Approaches + Vessel unknown + + + -2.9531167 53.3215311 + -2.9469298 53.3284164 + + dac.02003199 + + + 2012 HI1397 EA10 1m CUBE + Survey Vessel MV Sunbeam + + + 1.7496733 52.4344427 + 1.8161338 52.5005541 + + dac.02003200 + + + 2012 2013-4305 Shetland Scalloway + Collected by Landsverk - Vessel unknown + + + -1.3013547 60.1273535 + -1.2775132 60.1340674 + + dac.02003201 + + + 2012 2013-014209 J775 Yarmouth Post-Dredge + + + -1.5052671 50.6984053 + -1.499402 50.707583 + + dac.02003202 + + + 2009 HI1297 Western App to Small Isles Blk1 2m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.573119 56.7853559 + -6.2960882 56.900998 + + dac.02003203 + + + 2009 HI1297 Western App to Small Isles Blk1 4m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.5883521 56.78463 + -6.2934856 56.9101033 + + dac.02003204 + + + 2009 HI1297 Western App to Small Isles Blk1 8m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.5903934 56.7848972 + -6.296225 56.9425674 + + dac.02003205 + + + 2009 HI1297 Western App to Small Isles Blk1 12m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.5877076 56.7850539 + -6.3006002 56.9014353 + + dac.02003206 + + + 2009 HI1297 Western App to Small Isles Blk2 2m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.587313 56.6584672 + -6.3762608 56.7861619 + + dac.02003207 + + + 2009 HI1297 Western App to Small Isles Blk2 4m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.5884349 56.6692429 + -6.3406059 56.7874519 + + dac.02003208 + + + 2009 HI1297 Western App to Small Isles Blk2 8m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.5883442 56.6923571 + -6.3411688 56.7884949 + + dac.02003209 + + + 2012 HI1365 St Brides Bay Blk 1-2 2m SB + Vessels Ceejay, FPV Morven Silver Spray, EMU Surveyor + + + -5.4827761 51.7393641 + -5.4030334 51.8811417 + + dac.02003210 + + + 2012 HI1365 St Brides Bay Blk 1-2 4m SB + Vessels Ceejay, FPV Morven Silver Spray, EMU Surveyor + + + -5.660322 51.7387829 + -5.3219339 51.9119597 + + dac.02003211 + + + 2012 HI1365 St Brides Bay Blk 4a 2m SB + Vessels Ceejay, FPV Morven Silver Spray, EMU Surveyor + + + -5.2967325 51.804829 + -5.1572169 51.8620998 + + dac.02003212 + + + 2012 HI1365 St Brides Bay Blk 4a 4m SB + Vessels Ceejay, FPV Morven Silver Spray, EMU Surveyor + + + -5.2931589 51.8047461 + -5.2684095 51.8455541 + + dac.02003213 + + + 2012 HI1365 St Brides Bay Blk 4b 2m SB + Vessels Ceejay, FPV Morven Silver Spray, EMU Surveyor + + + -5.2800888 51.7452256 + -5.1483237 51.814401 + + dac.02003214 + + + 2012 HI1365 St Brides Bay Blk 4b 4m SB + Vessels Ceejay, FPV Morven Silver Spray, EMU Surveyor + + + -5.2800608 51.747734 + -5.248229 51.8121686 + + dac.02003215 + + + 2012 HI1365 St Brides Bay Blk 7 2m SB + Vessels Ceejay, FPV Morven Silver Spray, EMU Surveyor + + + -5.3056912 51.7348472 + -5.1192476 51.7853708 + + dac.02003216 + + + 2012 HI1365 St Brides Bay Blk 7 4m SB + Vessels Ceejay, FPV Morven Silver Spray, EMU Surveyor + + + -5.325132 51.7388918 + -5.2482148 51.7562752 + + dac.02003217 + + + 2009 HI1297 Western App to Small Isles Blk3 2m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.7961849 56.7856628 + -6.5927091 56.9419868 + + dac.02003218 + + + 2009 HI1297 Western App to Small Isles Blk3 4m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.8046848 56.7838044 + -6.5797138 56.9422253 + + dac.02003219 + + + 2009 HI1297 Western App to Small Isles Blk3 8m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.8017051 56.7825926 + -6.57717 56.9448049 + + dac.02003220 + + + 2009 HI1297 Western App to Small Isles Blk3 12m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.8684962 56.7822409 + -6.5805134 56.9266909 + + dac.02003221 + + + 2009 HI1297 Western App to Small Isles Blk4 2m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.8724176 56.5780022 + -6.5907602 56.7662694 + + dac.02003222 + + + 2009 HI1297 Western App to Small Isles Blk4 4m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.8709925 56.6095595 + -6.577999 56.7877123 + + dac.02003223 + + + 2009 HI1297 Western App to Small Isles Blk4 8m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.8727231 56.6680792 + -6.578694 56.7900151 + + dac.02003224 + + + 2009 HI1297 Western App to Small Isles Blk5 2m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.7183632 56.9373366 + -6.441726 57.0443841 + + dac.02003225 + + + 2009 HI1297 Western App to Small Isles Blk5 4m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.6858143 56.9363658 + -6.4547821 57.0469725 + + dac.02003226 + + + 2009 HI1297 Western App to Small Isles Blk5 8m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.6797439 56.9370923 + -6.4564384 57.0457282 + + dac.02003227 + + + 2009 HI1297 Western App to Small Isles Blk5 12m SB + The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was fed a Fugro XP position via the POS MV auxiliary port. The positioning proved to be very stable throughout the periods of survey and was indicated as Narrow Lane RTK for most of the survey. + + + -6.6333921 56.9788415 + -6.4544481 57.0479497 + + dac.02003228 + + + 2009 HI1292 Cockle Shoal Blk1 2m SB + MV Sunbeam was also used to collect survey data. The Primary Reference Position was provided by an Applanix POS/MV system, supplied with GPS data from A C & C Technologies C-Nav 2050m system. + + + 1.7552739 52.6776881 + 1.7623246 52.6945535 + + dac.02003229 + + + 2009 HI1292 Cockle Shoal Blk2 2m SB + MV Sunbeam was also used to collect survey data. The Primary Reference Position was provided by an Applanix POS/MV system, supplied with GPS data from A C & C Technologies C-Nav 2050m system. + + + 1.7637067 52.6868072 + 1.7797387 52.6993459 + + dac.02003230 + + + 2009 HI1292 Holm Channel 2m SB + MV Sunbeam was also used to collect survey data. The Primary Reference Position was provided by an Applanix POS/MV system, supplied with GPS data from A C & C Technologies C-Nav 2050m system. + + + 1.7651815 52.4971249 + 1.8365216 52.6171443 + + dac.02003231 + + + 2009 HI1292 Stanford Channel 2m SB + MV Sunbeam was also used to collect survey data. The Primary Reference Position was provided by an Applanix POS/MV system, supplied with GPS data from A C & C Technologies C-Nav 2050m system. + + + 1.7310807 52.4331356 + 1.8157248 52.4894202 + + dac.02003232 + + + 2013 2013-019538 River Mersey Queens Channel East + Vessel unknown + + + -3.2266602 53.5146646 + -3.1715351 53.5306602 + + dac.02003233 + + + 2013 2013-019538 River Mersey Crosby Channel + Vessel unknown + + + -3.129428 53.4908731 + -3.0833314 53.5264228 + + dac.02003234 + + + 2013 2013-019538 River Mersey Gladstone Dock Entrance + Vessel unknown + + + -3.0224926 53.4437345 + -3.0143946 53.4497586 + + dac.02003235 + + + 2013 2013-019538 River Mersey Langton Dock Entrance + Vessel unknown + + + -3.0135884 53.4330317 + -3.0077283 53.4398903 + + dac.02003236 + + + 2013 2013-019538 River Mersey Eastham Channel + Vessel unknown + + + -2.9727439 53.3211961 + -2.9465837 53.3592758 + + dac.02003237 + + + 2013 2013-22875 J780 Weymouth Harbour + + + -2.4597736 50.6063748 + -2.4392613 50.613687 + + dac.02003238 + + + 2012 2013-24799 Gt Yarmouth Port Approaches + Collected by Great Yarmouth Port Co + + + 1.7328424 52.5492631 + 1.7891262 52.5968624 + + dac.02003239 + + + 2012 2013-24799 Great Yarmouth Outer Harbour + Collected by Great Yarmouth Port Co + + + 1.7298906 52.5742547 + 1.7479259 52.5833277 + + dac.02003240 + + + 2012 2013-24799 Great Yarmouth River Port + Collected by Great Yarmouth Port Co + + + 1.7187861 52.5716294 + 1.7420928 52.6099866 + + dac.02003241 + + + 2008 HI1265 Long Sand Head 2m SB + + + 1.5166806 51.7654073 + 1.667572 51.8449513 + + dac.02003242 + + + 2008 HI1262 North Shipwash 2m SB + + + 1.5934151 52.009641 + 1.6690976 52.0589858 + + dac.02003243 + + + 2007 HI1159 Dover Strait Blk5 + MV Victor Henson & MV Meridian used for 24hr operations. +MV Jetstream & MV Geniusbank used for 12hr operations (overnight in Port). + + + 0.8574465 50.7091548 + 1.197168 50.9142897 + + dac.02003244 + + + 2007 HI1159 Dover Strait Blk6 + MV Victor Henson & MV Meridian used for 24hr operations. +MV Jetstream & MV Geniusbank used for 12hr operations (overnight in Port). + + + 1.0761379 50.7946711 + 1.3536879 50.993689 + + dac.02003245 + + + 2007 HI1159 Dover Strait Blk8 + MV Victor Henson & MV Meridian used for 24hr operations. +MV Jetstream & MV Geniusbank used for 12hr operations (overnight in Port). + + + 1.3460597 50.9645716 + 1.5986104 51.1302484 + + dac.02003246 + + + 2007 HI1159 Dover Strait Blk9 + MV Victor Henson & MV Meridian used for 24hr operations. +MV Jetstream & MV Geniusbank used for 12hr operations (overnight in Port). + + + 1.5254723 51.0709512 + 1.6691948 51.1616097 + + dac.02003247 + + + 2007 HI1159 Dover Strait Blk 10-15 2m SB + MV Victor Henson & MV Meridian used for 24hr operations. Dibon Bathy Identifier 20077042-47 inclusive. + + + 1.5908515 51.1105674 + 2.5696198 51.8582823 + + dac.02003248 + + + 2007 HI1159 Dover Strait Blk4 + MV Victor Henson & MV Meridian used for 24hr operations. +MV Jetstream & MV Geniusbank used for 12hr operations (overnight in Port). + + + 0.6670635 50.6303386 + 1.0103514 50.8345465 + + dac.02003249 + + + 2007 HI1159 Dover Strait Blk3 + MV Victor Henson & MV Meridian used for 24hr operations. +MV Jetstream & MV Geniusbank used for 12hr operations (overnight in Port). + + + 0.5236818 50.5537419 + 0.8191363 50.7329053 + + dac.02003250 + + + 2007 HI1159 Dover Strait Blk2 + MV Victor Henson & MV Meridian used for 24hr operations. +MV Jetstream & MV Geniusbank used for 12hr operations (overnight in Port). + + + 0.2455148 50.4934397 + 0.634784 50.6559807 + + dac.02003251 + + + 2007 HI1159 Dover Strait Blk1 + MV Victor Henson & MV Meridian used for 24hr operations. +MV Jetstream & MV Geniusbank used for 12hr operations (overnight in Port). + + + 0.0397423 50.4573604 + 0.3177558 50.6120698 + + dac.02003252 + + + 2012 HI1365 St Brides Bay Blk 3 2m SB + Vessels Ceejay, FPV Morven Silver Spray, EMU Surveyor + + + -5.4248009 51.7494038 + -5.2542397 51.855264 + + dac.02003253 + + + 2012 HI1365 St Brides Bay Blk 3 4m SB + Vessels Ceejay, FPV Morven Silver Spray, EMU Surveyor + + + -5.4297877 51.7463474 + -5.2600153 51.8534948 + + dac.02003254 + + + 2012 HI1365 St Brides Bay Blk 6a 2m SB + Vessels Ceejay, FPV Morven Silver Spray, EMU Surveyor + + + -5.3051234 51.8485008 + -5.1312167 51.8724962 + + dac.02003255 + + + 2012 HI1365 St Brides Bay Blk 6b 2m SB + Vessels Ceejay, FPV Morven Silver Spray, EMU Surveyor + + + -5.1771665 51.774011 + -5.1105901 51.8520657 + + dac.02003256 + + + 2012 HI1298 Passage of Tiree Blk A 2m SB + Vessels: MV Seabeam MV Triad MV Icebeam MV Ocean Star MTS Xplorer + + + -6.5808086 56.4375063 + -6.0932815 56.7036995 + + dac.02003257 + + + 2012 HI1298 Passage of Tiree Blk A 4m SB + Vessels: MV Seabeam MV Triad MV Icebeam MV Ocean Star MTS Xplorer + + + -6.590805 56.4340448 + -6.0942276 56.7056251 + + dac.02003258 + + + 2012 HI1298 Passage of Tiree Blk A 8m SB + Vessels: MV Seabeam MV Triad MV Icebeam MV Ocean Star MTS Xplorer + + + -6.5936017 56.4141911 + -6.1122176 56.7057957 + + dac.02003259 + + + 2012 HI1298 Passage of Tiree Blk A 12m SB + Vessels: MV Seabeam MV Triad MV Icebeam MV Ocean Star MTS Xplorer + + + -6.6040125 56.4337432 + -6.1140277 56.6790887 + + dac.02003260 + + + 2012 HI1298 Passage of Tiree Blk B 2m SB + Vessels: MV Seabeam MV Triad MV Icebeam MV Ocean Star MTS Xplorer + + + -6.828947 56.3124272 + -6.5693164 56.5855642 + + dac.02003261 + + + 2012 HI1298 Passage of Tiree Blk B 4m SB + + + -6.8382152 56.3111404 + -6.537178 56.580141 + + dac.02003262 + + + 2012 HI1298 Passage of Tiree Blk B 8m SB + Vessels: MV Seabeam MV Triad MV Icebeam MV Ocean Star MTS Xplorer + + + -6.7816519 56.3125394 + -6.5229207 56.5761878 + + dac.02003263 + + + 2012 HI1298 Passage of Tiree Blk B 12m SB + Vessels: MV Seabeam MV Triad MV Icebeam MV Ocean Star MTS Xplorer + + + -6.6744519 56.4307271 + -6.5233588 56.5812076 + + dac.02003264 + + + 2013 2013-35060 J776 Penzance Harbour + Commissioned and owned by Cornwall County Council + + + -5.5333163 50.1153179 + -5.5244025 50.1200779 + + dac.02003265 + + + 2013 2013-35241 Newhaven Outer Port + Collected by Newhaven Port & Properties + + + 0.056879 50.7744951 + 0.0625744 50.7827294 + + dac.02003266 + + + 2009 HI1297 Western App to Small Isles Blk1 INFILL SB + + + -6.5850956 56.7996963 + -6.4626088 56.8197528 + + dac.02003267 + + + 2012 HI1399 DoverStrait DWRC1 1m FMCUBE + Vessel MV Seabeam + + + 1.6747064 51.1448365 + 1.7263823 51.1977384 + + dac.02003268 + + + 2012 HI1399 Dover Strait DWRC2 1m FMCUBE + Vessel MV Seabeam + + + 1.6613528 51.13363 + 1.6884006 51.1508478 + + dac.02003269 + + + 2012 HI1399 Dover Strait DWRC3 1m FMCUBE + Vessel MV Seabeam + + + 1.6967324 51.1832299 + 1.7474303 51.2349999 + + dac.02003270 + + + 2012 HI1399 Goodwin Sands GS4 1m FMCUBE + Vessel MV Seabeam +This is a Category B survey + + + 1.4737448 51.1518669 + 1.5850304 51.2429238 + + dac.02003271 + + + 2012 HI1399 Goodwin Sands GS1 1m FMCUBE + Vessel MV Seabeam + + + 1.4619883 51.1355794 + 1.5101869 51.1617021 + + dac.02003272 + + + 2012 HI1399 Goodwin Sands GS2a 1m FMCUBE + Vessel MV Seabeam + + + 1.4294506 51.2335994 + 1.5205381 51.3065196 + + dac.02003273 + + + 2012 HI1399 Goodwin Sands GS2b 1m FMCUBE + Vessel MV Seabeam + + + 1.5352544 51.3189418 + 1.5541503 51.3338622 + + dac.02003274 + + + 2013 2013-41013 Heysham Harbour & Approaches + Vessel unknown + + + -2.9513782 54.0233568 + -2.9126159 54.0356321 + + dac.02003275 + + + 2013 2013-041013 River Mersey Queens Channel East + Vessel unknown + + + -3.228856 53.5147935 + -3.1717881 53.5306155 + + dac.02003276 + + + 2013 2013-41013 River Mersey Crosby Shoal + Vessel unknown + + + -3.1165809 53.4899679 + -3.0830465 53.5175681 + + dac.02003277 + + + 2013 2013-041013 River Mersey Brazil Elbow + Vessel unknown + + + -3.0791346 53.4458077 + -3.0253218 53.4822505 + + dac.02003278 + + + 2013 2013-041013 River Mersey New Brighton Shoal + Vessel unknown + + + -3.0419248 53.4331477 + -3.0152244 53.4521332 + + dac.02003279 + + + 2013 2013-041013 River Mersey Gladstone Dock Entrance + Vessel unknown + + + -3.0212361 53.4437515 + -3.0136345 53.4499417 + + dac.02003280 + + + 2013 2013-41013 River Mersey Langton Dock Entrance + Vessel unknown + + + -3.013527 53.4329929 + -3.0076045 53.4399356 + + dac.02003281 + + + 2013 2013-41013 River Mersey Alfred Dock Entrance + Vessel unknown + + + -3.0182276 53.3979002 + -3.0055213 53.4071946 + + dac.02003282 + + + 2013 2013-41013 River Mersey Liverpool Landing Stages + Vessel unknown + + + -3.0085652 53.4007651 + -2.995992 53.41057 + + dac.02003283 + + + 2013 2013-41013 River Mersey Tranmere Oil Stages + Vessel unknown + + + -3.0030714 53.375589 + -2.9917382 53.384768 + + dac.02003284 + + + 2013 2013-41013 River Mersey Eastham Approaches + Vessel unknown + + + -2.9532067 53.3215411 + -2.946886 53.328293 + + dac.02003285 + + + 2013 HI 1403 Dodman Point to Falmouth 2m SB + Commissioned and owned by Teignbridge District Council +Surveyed by EGS International liasing with Channel Coastal Observatory as part of the Southwest Regional Coastal Monitoring Programme + + + -5.0581973 50.1276532 + -4.7993757 50.2346922 + + dac.02003287 + + + 2013 2013-42556 Bristol King Road Channel + + + -2.7887475 51.4881067 + -2.700781 51.53157 + + dac.02003288 + + + 1983 HI74 Outer Humber Approaches + Environment Agency digitised fair sheet. + + + 0.6525877 53.4884077 + 1.1029819 53.8469959 + + dac.02003289 + + + 1996 HI709 Scotland West Coast Loch Long + EA digitised fair sheet. + + + -4.911972 55.9601974 + -4.8510083 56.0560705 + + dac.02003290 + + + 1993 HI541 Celtic Sea Nymphe Bank Sheet 10 + EA digitised fair sheet + + + -8.1606121 51.2978312 + -7.948096 51.4142836 + + dac.02003291 + + + 1993 HI541 Celtic Sea Nymphe Bank Sheet 11 + EA digitised fair sheet + + + -7.9537667 51.2979727 + -7.7566128 51.4745853 + + dac.02003292 + + + 1993 HI541 Celtic Sea Nymphe Bank Sheet 12 + EA digitised fair sheet. + + + -7.7646755 51.3618997 + -7.5643967 51.538103 + + dac.02003293 + + + 1993 HI541 Celtic Sea Nymphe Bank Sheet 13 + EA digitised fair sheet + + + -7.7639747 51.2979394 + -7.5648885 51.4268276 + + dac.02003294 + + + 1993 HI598 Celtic Sea Southern Nymphe Bank Sheet 12 + EA digitised fair sheet + + + -8.4480984 51.2343251 + -8.2580818 51.3079397 + + dac.02003295 + + + 1993 HI598 Celtic Sea Southern Nymphe Bank Sheet 13 + EA digitised fair sheet + + + -8.6359168 51.1536472 + -8.4318165 51.3020397 + + dac.02003296 + + + 1993 HI598 Celtic Sea Southern Nymphe Bank Sheet 14 + EA digitised fair sheet + + + -8.6358079 51.0812655 + -8.4315892 51.2273082 + + dac.02003297 + + + 1994 HI533 NE Casquets to St Albans Ledge Sheet 7 + EA digitised fair sheet + + + -2.34572 50.3717704 + -2.1293896 50.4909473 + + dac.02003298 + + + 1994 HI533 NE Casquets to St Albans Ledge Sheet 8 + EA digitised fair sheet + + + -2.1598904 50.354772 + -1.9549929 50.4900469 + + dac.02003299 + + + 1993 HI522 Approaches to Porthcawl + EA digitised fair sheet + + + -3.7760403 51.4020701 + -3.5982877 51.5003326 + + dac.02003300 + + + 1993 HI533 NE Casquets to St Albans Ledge Sheet 4 + EA digitsed fair sheet + + + -2.4075971 50.1487464 + -2.1882637 50.2426339 + + dac.02003301 + + + 1993 H533 NE Casquets to St Albans Ledge Sheet 5 + EA digitised fair sheet + + + -2.3371747 50.235508 + -2.1449598 50.3796106 + + dac.02003302 + + + 1992 HI541 Celtic Sea Nymphe Bank Sheet 8 + EA digitised fair sheet + + + -7.5704688 51.2955955 + -7.2302522 51.4129684 + + dac.02003303 + + + 1992 HI541 Celtic Sea Nymphe Bank Sheet 9 + Country Ireland. EA digitised fair sheet. + + + -7.2374307 51.295535 + -6.8970222 51.4128792 + + dac.02003304 + + + 2012 HI1398 North Shipwash TE2A 1m FMCUBE + Vessel - MV Seabeam Primary bathymetric instrument - Kongsberg EM 3002D + + + 1.5933521 52.0115302 + 1.6680802 52.059176 + + dac.02003305 + + + 1992 HI565 Cromer Knoll Sheet 2 + EA digitised fair sheet + + + 1.1457247 53.1609511 + 1.4091964 53.2698182 + + dac.02003306 + + + 1992 HI579 Outer Dowsing Channel Sheet 1 + Vessels: M.V. Betelgeuze & M.V. Vega & British Enterprise 5. EA digitised fair sheet. + + + 0.8431729 53.421057 + 1.2023783 53.5129974 + + dac.02003307 + + + 2012 HI1398 Long Sand Head TE5A 1m FMCUBE + Vessel - MV Seabeam Primary bathy instrument - Kongsberg EM 3002D + + + 1.5172637 51.7660686 + 1.6664205 51.8441798 + + dac.02003308 + + + 2012 HI1398 Sunk Inner Area TE3A 1m FMCUBE + Vessel - MV Seabeam Primary bathy instrument - Kongsberg EM 3002D + + + 1.5479863 51.8422616 + 1.6342742 51.8845035 + + dac.02003309 + + + 1992 HI559 Southern North Sea Gas Fields Sheet 3 + Vessel: M.V. Betelgeuze. EA digitised fair sheet. + + + 2.7279788 52.9971753 + 3.001212 53.1287002 + + dac.02003310 + + + 2012 HI1398 Kings Channel TE7 1m FMCUBE + Vessel - MV Seabeam Primary Bathy Instrument - Kongsberg EM 3002D + + + 1.3419482 51.6520418 + 1.5740155 51.8644813 + + dac.02003311 + + + 1992 HI541 Celtic Sea Nymphe Bank Sheet 6 + EA digitised fair sheet. consub=Ireland + + + -7.5696949 51.5971683 + -7.2974993 51.7347717 + + dac.02003312 + + + 1992 HI531 Celtic Sea Nymphe Bank Sheet 7 + consub=Ireland. EA digitised fair sheet. + + + -7.3025308 51.5976974 + -7.0813163 51.8016196 + + dac.02003313 + + + 1992 HI560 NE Casquets to St Albans Ledge Sheet 6 + EA digitise fair sheet. + + + -2.1522143 50.2352565 + -1.9633289 50.3641423 + + dac.02003314 + + + 1991 HI533 NE Casquets to St Albans Ledge Sheet 1 + EA digitised fair sheet + + + -2.1121597 49.9042344 + -1.9634652 50.0615367 + + dac.02003315 + + + 1991 HI533 NE Casquets to St Albans Ledge Sheet 2 + EA digitised fair sheet. + + + -2.1606933 50.0545904 + -1.9632165 50.1702032 + + dac.02003316 + + + 1991 HI533 NE Casquets to St Albans Ledge Sheet 3 + EA digitised fair sheet. + + + -2.195873 50.1625527 + -1.9627367 50.2431579 + + dac.02003317 + + + 1990 HI466 Isle of Walney to Calf of Man Blk4 + EA digitised fair sheet + + + -3.7552095 53.9429784 + -3.4933203 54.0268176 + + dac.02003318 + + + 1989 HI464 Bristol Channel Lynmouth to Newport Sheet 1 + Vessels: M.V. Angeline & M.V. Lady Gail. EA digitised fair sheet. + + + -3.9043582 51.222199 + -3.6482092 51.2985316 + + dac.02003319 + + + 1989 HI464 Bristol Channel Lynmouth to Newport Sheet 2 + Vessels: M.V. Angeline & M.V. Lady Gail. EA digitised sheet. + + + -3.6543336 51.1834828 + -3.3479266 51.3090256 + + dac.02003320 + + + 1989 HI464 Bristol Channel Lynmouth to Newport Sheet 3 + EA digitised fair sheet. + + + -3.3543445 51.182473 + -3.0619259 51.3120002 + + dac.02003321 + + + 1989 HI464 Bristol Channel Lynmouth to Newport Sheet 4 + Vessels: M.V. Angeline & M.V. Lady Gail. EA digitised fair sheet. + + + -3.323282 51.3058204 + -3.0115314 51.4288651 + + dac.02003322 + + + 1989 HI463 Bristol Channel Port Talbot to Nash Point Sheet 1 + EA digitised fair sheet + + + -3.9111572 51.3720269 + -3.6967512 51.5885932 + + dac.02003323 + + + 1989 HI463 Bristol Channel Port Talbot to Nash Point Sheet 2 + EA digitised fair sheet + + + -3.7058201 51.3726546 + -3.5296914 51.4511735 + + dac.02003324 + + + 1989 HI429 Celtic Sea Celtic Deep Area 6 + EA digitised fair sheet + + + -6.9192689 51.1318157 + -6.6646963 51.285645 + + dac.02003325 + + + 1988 2006-292412 Liverpool Bay East & West Hoyle Bank + Vessel unknown + + + -3.4041327 53.3576135 + -3.0361521 53.5042658 + + dac.02003326 + + + 1988 HI414 Approaches to Teesport Sheet 1 + Vessel: MV Dawn Sky MV Antares. EA digitised fair sheet + + + -1.1230418 54.5710724 + -0.8911144 54.752205 + + dac.02003327 + + + 1988 HI414 Approaches to Teesport Sheet 2 + planam=MV Dawn Sky MV Antares. EA digitised fair sheet + + + -0.8973544 54.4704555 + -0.556706 54.6122046 + + dac.02003328 + + + 1988 HI414 Approaches to Teesport Sheet 3 + planam=MV Dawn Sky MV Antares. EA digitised fair sheet. + + + -0.5628232 54.3890247 + -0.3325326 54.6108633 + + dac.02003329 + + + 1988 HI414 Approaches to Teesport Sheet 4 + planam=MV Dawn Sky MV Antares. EA digitised fair sheet. + + + -1.0641051 54.7460473 + -0.6983241 54.8954139 + + dac.02003330 + + + 1988 HI414 Approaches to Teesport Sheet 5 + planam=MV Dawn Sky MV Antares. EA digitised fair sheet. + + + -0.8962529 54.606281 + -0.6079485 54.752303 + + dac.02003331 + + + 1988 HI414 Approaches to Teesport Sheet 6 + planam=MV Dawn Sky MV Antares. EA digitised fair sheet. + + + -0.6138015 54.6048819 + -0.2675148 54.7536947 + + dac.02003332 + + + 1988 HI414 Approaches to Teesport Sheet 7 + planam=MV Dawn Sky MV Antares. EA digitised fair sheet + + + -0.3373285 54.4489572 + -0.1120171 54.6106785 + + dac.02003333 + + + 1988 HI414 Approaches to Teesport Sheet 8 + planan=MV Dawn Sky MV Antares. EA digitised fair sheet. + + + -0.8653263 54.8886631 + -0.4986494 55.0363986 + + dac.02003334 + + + 1988 HI414 Approaches to Teesport Sheet 9 + planam=MV Dawn Sky MV Antares. Ea digitised fair sheet + + + -0.7043263 54.747883 + -0.4295523 54.8938941 + + dac.02003335 + + + 1988 HI414 Approaches to Teesport Sheet 10 + planam=MV Dawn Sky MV Antares. EA digitised fair sheet + + + -0.6711684 55.0295263 + -0.3098799 55.1722404 + + dac.02003336 + + + 1988 HI414 Approaches to Teesport Sheet 11 + planam=MV Dawn Sky MV Antares. EA digitised fair sheet + + + -0.5046563 54.8887718 + -0.1379 55.0363789 + + dac.02003337 + + + 1988 HI414 Approaches to Teesport Sheet 12 + planam=MV Dawn Sky MV Antares. EA digitised fair sheet. + + + -0.4353174 54.7467569 + -0.0326526 54.8949465 + + dac.02003338 + + + 1988 HI412 North Sea Deep Water Route Sheet 1 + planam=RV Bon Esprit. EA digitised fair sheet + + + 2.6380886 53.1401027 + 2.8313811 53.293726 + + dac.02003339 + + + 1988 HI412 North Sea Deep Water Route Sheet 2 + planam=RV Bon Esprit. EA digitised fair sheet + + + 2.5939502 52.9973048 + 2.7807682 53.150823 + + dac.02003340 + + + 1988 HI359 Outer Approaches to the Bristol Channel Blks 3 & 5 + EA digitised fair sheet + + + -4.4186065 51.3772686 + -4.1628458 51.5672097 + + dac.02003341 + + + 1988 HI359 Outer Approaches to the Bristol Channel Blks 4 & 6 + EA digitised fair sheet + + + -4.1719649 51.3800729 + -3.8918257 51.5712685 + + dac.02003342 + + + 1988 HI359 Outer Approaches to the Bristol Channel Blk 1 + EA digitised fair sheet + + + -4.1218963 51.2061166 + -3.8947323 51.386596 + + dac.02003343 + + + 1988 HI359 Outer Approaches to the Bristol Channel Blk 2 + EA digitised fair sheet + + + -4.3380198 51.1977191 + -4.1153596 51.386177 + + dac.02003344 + + + 1987 HI357 Skerries to the River Dee Sheet 11 + + + -3.9694851 53.5607631 + -3.6581369 53.6536698 + + dac.02003345 + + + 1987 HI357 Skerries to the River Dee Sheet 16 + EA digitised fair sheet + + + -3.6713979 53.517917 + -3.3660532 53.6492812 + + dac.02003346 + + + 1987 HI356 Indefatigable Banks Sheet 1 + EA digitised fair sheet + + + 2.4914691 53.5173313 + 2.9534189 53.6985072 + + dac.02003347 + + + 1987 HI356 Indefatigable Banks Sheet 2 + Vessel: RV Bon Esprit. EA digitied fair sheet + + + 2.7244088 53.2240392 + 3.0174149 53.5290025 + + dac.02003348 + + + 1987 HI357 Skerries to the River Dee Sheet 12 + EA digitised fair sheet + + + -3.9554873 53.4133522 + -3.6638507 53.5704004 + + dac.02003349 + + + 1987 HI357 Skerries to the River Dee Sheet 4 + EA digitised fair sheet + + + -4.5128435 53.5752603 + -4.231921 53.6455562 + + dac.02003350 + + + 1987 HI357 Skerries to the River Dee Sheet 9 + EA digitised fair sheet + + + -4.2888011 53.3301591 + -4.0315185 53.4195294 + + dac.02003351 + + + 1987 HI354 Smiths Knoll to South Falls Sheet 1 + Vessel: RV Bon Esprit. EA digitised fair sheet + + + 2.5418967 52.9315568 + 2.6085093 53.1118203 + + dac.02003352 + + + 1987 HI354 Smiths Knoll to South Falls Sheet 2 + Vessel: RV Bon Esprit. EA digitised fair sheet + + + 2.4667435 52.7231804 + 2.6094078 52.944336 + + dac.02003353 + + + 1987 HI354 Smiths Knoll to South Falls Sheet 3 + Vessel: RV Bon Esprit. EA digitised fair sheet. + + + 2.3990802 52.5283975 + 2.6125253 52.7467401 + + dac.02003354 + + + 1987 HI354 Smiths Knoll to South Falls Sheet 4 + Vessel: RV Bon Esprit. EA digitised fair sheet + + + 2.3290196 52.328273 + 2.5524193 52.547817 + + dac.02003355 + + + 1987 HI354 Smiths Knoll to South Falls Sheet 5 + Vessel: RV Bon Esprit. EA digitised fair sheet + + + 2.2594891 52.1265391 + 2.4805992 52.3478906 + + dac.02003356 + + + 1987 HI354 Smiths Knoll to South Falls Sheet 6 + Vessel: RV Bon Esprit. EA digitised fair sheet + + + 2.1928704 51.9298332 + 2.4123354 52.1477682 + + dac.02003357 + + + 1987 HI354 Smiths Knoll to South Falls Sheet 7 + Vessel: RV Bon Esprit. EA digitised fair sheet + + + 2.1246414 51.7280988 + 2.342891 51.9445779 + + dac.02003358 + + + 2012 2013-62678 Gourock + Commissioned and owned by Caledonian Maritime Assets Ltd + + + -4.8229515 55.957285 + -4.8098068 55.9652653 + + dac.02003359 + + + 2012 2013-62678 Largs + Commissioned and owned by Caledonian Maritime Assets Ltd. Echosounder - R2Sonic 2024 + + + -4.8832769 55.7853395 + -4.8635016 55.8041019 + + dac.02003360 + + + 2012 2013-62678 Kennacraig + Commissioned and owned by Caledonian Maritime Assets Ltd. Echosounder - R2Sonic 2022 + + + -5.4949325 55.8012587 + -5.4778003 55.8141123 + + dac.02003361 + + + 2012 2013-62678 Castlebay + Commissioned and owned by Caledonian Maritime Assets Ltd. Vessel unknown Echosounder - R2Sonic 2022 + + + -7.4935408 56.9506962 + -7.4832426 56.9557375 + + dac.02003362 + + + 2012 2013-62678 Armadale + Commissioned and owned by Caledonian Maritime Assets Ltd. Vessel unknown Echosounder - R2Sonic 2022 + + + -5.8986232 57.0629819 + -5.887341 57.0676105 + + dac.02003363 + + + 2012 2013-62678 Brodick + Commissioned and owned by Caledonian Maritime Assets Ltd. Echosounder - R2Sonic 2024 + + + -5.1430394 55.576167 + -5.1340773 55.5794048 + + dac.02003364 + + + 2012 2013-62678 Wemyss Bay + Commissioned and owned by Caledonian Maritime Assets Ltd. Echosounder - R2Sonic 2024 + + + -4.8946565 55.8739411 + -4.8888792 55.8780392 + + dac.02003365 + + + 2012 2013-62678 Lochranza + Commissioned and owned by Caledonian Maritime Assets Ltd. Echosounder - R2Sonic 2022 + + + -5.3049545 55.7071764 + -5.2985145 55.7102432 + + dac.02003366 + + + 2012 2013-62678 Colintraive to Rhubodach + Commissioned and owned by Caledonian Maritime Assets. Echosounder R2Sonic 2024 + + + -5.1604467 55.9197723 + -5.1527563 55.9243751 + + dac.02003367 + + + 2012 2013-62678 Tobermory + Commissioned and owned by Caledonian Maritime Assets.Vessel unknown Echosounder - R2Sonic 2022 + + + -6.0662125 56.6212794 + -6.0587234 56.6252226 + + dac.02003368 + + + 2012 2013-62678 Fishnish + Commissioned and owned by Caledonian Maritime Assets Ltd. Vessel unknown Echosounder - R2Sonic 2022 + + + -5.8135533 56.5143814 + -5.8072181 56.5172331 + + dac.02003369 + + + 2012 2013-62678 Lochaline + Commissioned and owned by Caledonian Maritime Assets Ltd. Vessel unknown Echosounder - R2Sonic 2022 + + + -5.7761191 56.5349981 + -5.7715016 56.538559 + + dac.02003370 + + + 2012 2013-62678 Kilchoan + Commissioned and owned by Caledonian Maritime Assets Ltd. Vessel unknown Echosounder - R2Sonic 2022 + + + -6.0957655 56.6874978 + -6.0909053 56.6901767 + + dac.02003371 + + + 1992 HI565 Cromer Knoll Sheet 1 + Vessels: M.V. Betelgeuze & M.V. Vega + + + 1.0609298 53.2629544 + 1.4103832 53.3824436 + + dac.02003372 + + + 2012 2013-62678 Portavadie + Commissioned and owned by Caledonian Maritime Assets Ltd. Echosounder - R2Sonic 2024 + + + -5.3203341 55.8752802 + -5.3150802 55.8777493 + + dac.02003373 + + + 2012 2013-62678 Cumbrae + Commissioned and owned by Caledonian Maritime Assets Ltd. Echosounder - R2Sonic 2024 + + + -4.8985409 55.7861297 + -4.8951153 55.7876223 + + dac.02003374 + + + 2012 2013-62678 Claonaig + Commissioned and owned by Caledonian Maritime Assets Ltd. Echosounder - R2Sonic 2024 + + + -5.3893082 55.7492771 + -5.386545 55.7511862 + + dac.02003375 + + + 1992 HI579 Outer Dowsing Channel Sheet 2 + Vessels: M.V. Betelgeuze & M.V. Vega & British Enterprise 5. EA digitised fair sheet. + + + 0.9476983 53.330948 + 1.2019511 53.428626 + + dac.02003376 + + + 1992 HI559 Southern North Sea Gas Fields Sheet 1 + Vessels:M.V. Betelgeuze. EA digitised fair sheet + + + 2.8479931 53.2478161 + 3.0008352 53.4758226 + + dac.02003377 + + + 1992 HI559 Southern North Sea Gas Fields Sheet 2 + Vessel: M.V. Betelgeuze. EA digitised fair sheet + + + 2.7687195 53.1226674 + 3.0005869 53.252735 + + dac.02003378 + + + 1989 HI413 Sole Pit to Indefatigable Banks Sheet 3 + Vessel: MV British Enterprise Four. EA digitised fair sheet. + + + 1.375646 53.6097172 + 1.6187349 53.7275157 + + dac.02003379 + + + 1988 HI413 Sole Pit Sheet 1 + Vessel: RV Bon Esprit. EA digitised fair sheet. + + + 1.2740201 53.4949815 + 1.5785444 53.6178144 + + dac.02003380 + + + 1988 HI356 Indefatigable Banks Sheet 3 + Vessel: RV Bon Esprit. EA digitised fair sheet. + + + 2.537314 53.5248079 + 2.8512581 53.6795457 + + dac.02003381 + + + 1988 HI356 Indefatigable Banks Sheet 4 + Vessel: RV Bon Esprit. EA digitised fair sheet. + + + 2.522694 53.3958363 + 2.8424361 53.540414 + + dac.02003382 + + + 1988 HI356 Indefatigable Banks Sheet 5 + Vessel: RV Bon Esprit. EA digitised fair sheet. + + + 2.5213822 53.2614784 + 2.8086517 53.4147095 + + dac.02003383 + + + 1988 HI356 Indefatigable Banks Sheet 6 + Vessel: RV Bon Esprit. EA digitised fair sheet. + + + 2.242936 53.6490872 + 2.5602833 53.7954258 + + dac.02003384 + + + 1988 HI356 Indefatigable Banks Sheet 7 + Vessel: RV Bon Esprit. EA digitised fair sheet. + + + 2.2339097 53.5276482 + 2.5570857 53.6685543 + + dac.02003385 + + + 1988 HI356 Indefatigable Banks Sheet 8 + Vessel: RV Bon Esprit. EA digitised fair sheet. + + + 2.243065 53.3986138 + 2.5449383 53.5468087 + + dac.02003386 + + + 1994 HI610 East Coast Goodwin Sands to South Falls + EA digitised fair sheet. + + + 1.4681442 51.1218925 + 1.7572241 51.2766325 + + dac.02003387 + + + 1992 HI561 Cromer to Sheringham Shoal Sheet 1 + Vessels: M.V. Betelgeuze & M.V. Vega. EA digitised fair sheet. + + + 1.03371 53.0373305 + 1.444204 53.1763624 + + dac.02003388 + + + 1987 HI354 Smiths Knoll to South Falls Sheet 8 + EA digitised fair sheet. + + + 2.0655409 51.5510119 + 2.2767556 51.7464722 + + dac.02003389 + + + 1987 HI357 Skerries to the River Dee Sheet 5 + EA digitised fair sheet. + + + -4.5157924 53.4074265 + -4.2271117 53.5811861 + + dac.02003390 + + + 1986 HI246 Moray Firth Area 21 + EA digitised fair sheet. + + + -2.8384928 57.8249235 + -2.5973864 57.8355188 + + dac.02003391 + + + 1987 HI381 West Sole Sheet 1 + Vessel:M.V. Dawn Sky. EA digitised fair sheet. + + + 1.0591426 53.7563215 + 1.2856445 53.8408328 + + dac.02003392 + + + 1987 HI381 West Sole Sheet 2 + Vessel:M.V. Dawn Sky. EA digitised fair sheet + + + 1.0602066 53.6646958 + 1.2849274 53.7691828 + + dac.02003393 + + + 1987 HI381 West Sole Sheet 4 + Vessel: M.V. Dawn Sky. EA digitised fair sheet. + + + 1.0589786 53.4920123 + 1.2867807 53.5817937 + + dac.02003394 + + + 1987 HI355A Outer Silver Pit Area A Sheet 6 + Vessels: M.V. Antares & M.V. Kommandor Surveyor. EA digitised fair sheet + + + 1.779648 54.1143867 + 2.0009546 54.3483108 + + dac.02003395 + + + 1987 HI355A Outer Silver Pit Area A Sheet 1 + Vessels:M.V. Antares & M.V. Kommandor Surveyor. EA digitised fair sheet + + + 1.4850785 54.4424306 + 1.6627644 54.5440691 + + dac.02003396 + + + 1987 HI355A Outer Silver Pit Area A Sheet 2 + Vessels:M.V. Antares & M.V. Kommandor Surveyor. EA digitised fair sheet + + + 1.4847974 54.3143673 + 1.8346453 54.4499053 + + dac.02003397 + + + 1987 HI355A Outer Silver Pit Area A Sheet 3 + Vessels:M.V. Antares & M.V. Kommandor Surveyor. EA digitised fair sheet + + + 1.4855883 54.1849241 + 1.7892058 54.322575 + + dac.02003398 + + + 1987 HI355A Outer Silver Pit Area A Sheet 7 + Vessels:M.V. Antares & M.V. Kommandor Surveyor. EA digitised fair sheet. + + + 1.89343 54.1147767 + 2.2830002 54.2525095 + + dac.02003399 + + + 1986 HI246 Moray Firth Area 20 + EA digitised fair sheet. + + + -2.9213467 57.8302018 + -2.6650274 58.002347 + + dac.02003400 + + + 1986 HI246 Moray Firth Area 23 + EA digitised fair sheet + + + -2.670845 57.8302556 + -2.4161793 58.002282 + + dac.02003401 + + + 1986 HI246 Moray Firth Sheet 17 + EA digitised fair sheet. + + + -3.1715793 57.8302921 + -2.9150654 58.0028234 + + dac.02003402 + + + 1986 HI246 Moray Firth Sheet 18 + EA digitised fair sheet + + + -3.0881797 57.6632391 + -2.8319511 57.8364568 + + dac.02003403 + + + 1986 HI261 Northwest Approaches to Rona + EA digitised fair sheet. + + + -6.5584274 59.1254728 + -5.8085298 59.4857884 + + dac.02003404 + + + 1986 HI246 Moray Firth Sheet 24 + EA digitised fair sheet + + + -2.6030161 57.6632645 + -2.321971 57.8377951 + + dac.02003405 + + + 1986 HI246 Moray Firth Sheet 26 + EA digitised fair sheet + + + -2.4413236 57.8289153 + -2.1446684 58.0053022 + + dac.02003406 + + + 1986 HI246 Moray Firth Sheet 27 + EA digitised fair sheet + + + -2.3379649 57.6706255 + -2.0819028 57.8401482 + + dac.02003407 + + + 1986 HI322 Firth of Clyde Toward Point to Greenock + EA digitised fair sheet + + + -4.9797173 55.8599923 + -4.8464588 55.9842324 + + dac.02003408 + + + 1986 HI246 Moray Firth Sheet 29 + EA digitised fair sheet + + + -2.0884217 57.6618352 + -1.8169657 57.8382588 + + dac.02003409 + + + 1985 HI245 Outer Silver Pit Sheet 1 + Vessel:RV Bon Esprit. EA digitised fair sheet + + + 0.7968721 54.5050479 + 1.1349919 54.6699489 + + dac.02003410 + + + 1985 HI245 Outer Silver Pit Sheet 2 + Vessel:RV Bon Esprit. EA digitised fair sheet + + + 1.1258168 54.5035111 + 1.5269991 54.6355874 + + dac.02003411 + + + 1985 HI245 Outer Silver Pit Sheet 3 + Vessel:RV Bon Esprit. EA digitised fair sheet + + + 0.6847527 54.3794597 + 1.0601828 54.512012 + + dac.02003412 + + + 1985 HI245 Outer Silver Pit Sheet 4 + Vessel: RV Bon Esprit. EA digitised fair sheet + + + 1.0519067 54.378805 + 1.4986774 54.5128842 + + dac.02003413 + + + 1985 HI165B Sanda Island to Bute Sheet 5 + EA digitised fair sheet + + + -5.5047974 55.5147678 + -5.343332 55.6769724 + + dac.02003414 + + + 1985 HI165B Sanda Island to Bute Sheet 6 + EA digitised fair sheet + + + -5.4622851 55.6698766 + -5.0225351 55.8536904 + + dac.02003415 + + + 1985 HI165C Little Cumbrae Island to Toward Point Sheet 1 + EA digitised fair sheet + + + -5.0326753 55.6966516 + -4.8549759 55.800201 + + dac.02003416 + + + 1985 HI165C Little Cumbrae Island to Toward Point Sheet 2 + EA digitised fair sheet + + + -5.0277642 55.7955532 + -4.86736 55.8735577 + + dac.02003417 + + + 1985 HI244 Shetlands Out Skerries to Sumburgh Head Sheet 4 + Vessel:RV Bon Esprit. EA digitised fair sheet + + + -0.729282 60.0446326 + -0.3088293 60.2290569 + + dac.02003418 + + + 1984 HI196 Orford Ness to Southwold Northern Sheet + EA digitised fair sheet + + + 1.6220539 52.2007701 + 1.8391987 52.3610779 + + dac.02003419 + + + 1984 HI196 Orford Ness to Southwold Southern Sheet + EA digitised fair sheet + + + 1.5870067 52.0432999 + 1.8364637 52.2061748 + + dac.02003420 + + + 1984 HI193 HI194 Thames Estuary Areas 1 and 2 Sledway and Shipway + Vessel:HMS Egeria. EA digitised fair sheet + + + 1.3789245 51.9450255 + 1.6667877 52.0795836 + + dac.02003421 + + + 1984 HI165B Firth of Clyde + EA digitised fair sheet + + + -5.171211 55.5539115 + -4.7239808 55.7282946 + + dac.02003422 + + + 1984 HI144 Shetlands Balta to Yell Sound + EA digitised fair sheet + + + -0.8577663 60.3861021 + -0.3027737 60.5718974 + + dac.02003423 + + + 1984 HI204 Pentland Firth and Approaches Sheet 15 + Vessel:M.V. British Enterprise One. colorg=BUE SubSea Ltd. EA digitised fair sheet + + + -2.9817809 58.4455429 + -2.5986654 58.6216093 + + dac.02003424 + + + 1984 HI204 Pentland Firth and Approaches Sheet 1 + Vessels:M.V. Pensurveyor & M.V. British Enterprise One. col;org=BUE SubSea Ltd + + + -4.6483501 59.0278196 + -4.2967897 59.1533513 + + dac.02003425 + + + 1984 HI204 Pentland Firth and Approaches Sheet 5 + Vessels:M.V. Pensurveyor & M.V. British Enterprise One. colorg=BUE SubSea Ltd. EA digitised fair sheet + + + -4.3066392 59.0277744 + -3.9521994 59.1447898 + + dac.02003426 + + + 1984 HI144 Shetlands Yell Sound to Muckle Flugga Sheet 1 + Vessel:RV Bon Esprit. EA digitised fair sheet + + + -1.4954274 60.6433199 + -1.028706 60.8384492 + + dac.02003427 + + + 1984 HI144 Shetlands Yell Sound to Muckle Flugga Sheet 2 + Vessel: RV Bon Esprit. EA digitised fair sheet + + + -1.2909081 60.7854901 + -0.8304955 60.9784607 + + dac.02003428 + + + 1984 HI144 Shetlands Yell Sound to Muckle Flugga Sheet 3 + Vessel:RV Bon Esprit. EA digitised fair sheet + + + -0.8404046 60.8780606 + -0.4585532 61.0855783 + + dac.02003429 + + + 1984 HI144 Shetlands Yell Sound to Muckle Flugga Sheet 4 + Vessel:RV Bon Esprit. EA digitised fair sheet + + + -0.8409816 60.7266712 + -0.3112949 60.8876562 + + dac.02003430 + + + 1983 HI3 Irish Sea Bardsey Island to Lambay Deep Northeast + EA digitised fair sheet + + + -5.3893162 53.0162033 + -4.722978 53.4544878 + + dac.02003431 + + + 1983 HI95 Irish Sea Rockabill to Holyhead Eastern Sheet + EA digitised fair sheet + + + -5.3841899 53.4286467 + -4.8373017 53.7622014 + + dac.02003432 + + + 1983 HI95 Irish Sea Rockabill to Holyhead Western Sheet + EA digitised fair sheet + + + -5.9970346 53.4296909 + -5.3632515 53.7614505 + + dac.02003433 + + + 1983 HI144 Shetlands Foula to Yell Sound Sheet 1 + Vessel:M.V. Sperus. EA digtised fair sheet + + + -2.4727129 60.094271 + -2.0408969 60.2536682 + + dac.02003434 + + + 1983 HI144 Shetlands Foula to Yell Sound Sheet 2 + Vessel:M.V. Sperus. EA digitised fair sheet + + + -2.3281794 60.2133073 + -1.8486524 60.4023294 + + dac.02003435 + + + 1983 HI144 Shetlands Foula to Yell Sound Sheet 3 + Vessel:M.V. Sperus. EA digtised fair sheet + + + -2.2069373 60.393826 + -1.6740284 60.5604484 + + dac.02003436 + + + 1983 HI126 Newarp to East Cross Sand + EA digitised fair sheet + + + 1.8874743 52.6390078 + 2.0180103 52.7919363 + + dac.02003437 + + + 1983 HI3 Irish Sea Bardsey Island to Lambay Deep Northwest + EA digitised fair sheet + + + -5.8562828 52.9839829 + -5.3134074 53.4542014 + + dac.02003438 + + + 1983 HI3a Irish Sea Holyhead Deep to the Skerries + EA digitised fair sheet + + + -4.7566802 53.3870543 + -4.5208588 53.5618545 + + dac.02003439 + + + 1981 HI3 Irish Sea Bardsey Island to Lambay Deep Southwest + EA digitised fair sheet + + + -5.9820769 52.651855 + -5.3125891 53.0240536 + + dac.02003440 + + + 1981 HI17 Saint Bees Head to Solway Firth Sheet 1 + EA digitised fair sheet + + + -3.7204607 54.5165451 + -3.5710429 54.6537471 + + dac.02003441 + + + 1980 2006-293229 Western Approaches to Orkneys and Shetlands Area G + EA digitised fair sheet + + + -7.3035438 58.9304772 + -6.3466683 59.1489157 + + dac.02003442 + + + 1980 2006-293229 Western Approaches to Orkneys and Shetlands Area H + EA digitised fair sheet + + + -6.3802008 58.7843163 + -5.4669408 59.1486804 + + dac.02003443 + + + 1980 2006-293232 Spurn Head to Flamborough Head + EA digitised fair sheet + + + -0.2166483 53.8224959 + 0.428546 54.1398568 + + dac.02003444 + + + 1980 2006-293240 Swansea Bay + EA digitised fair sheet + + + -4.0004125 51.5405479 + -3.7994471 51.6265854 + + dac.02003445 + + + 1979 2006-293336 Bridlington Bay Blk 1 + EA digitised fair sheet + + + -0.1280223 54.0372887 + -0.0478187 54.1205678 + + dac.02003446 + + + 1979 2006-293336 Bridlington Bay Blk 2 + EA digitised fair sheet + + + -0.2172422 54.0046843 + -0.020919 54.1219562 + + dac.02003447 + + + 1978 2006-293424 Celtic Sea Saint Georges Channel Sheet 2 + EA digitised fair sheet + + + -6.5921447 51.7023375 + -5.9918538 51.8048956 + + dac.02003448 + + + 1977 2006-293544 Spurn Head to Flamborough Head + EA digitised fair sheet + + + -0.0423641 53.5624757 + 0.6731886 53.8748014 + + dac.02003449 + + + 1977 2006-293560 Southern Approaches to St Kilda + EA digitised fari sheets. SDRA meta data unclassifiied - confidential struck through on fair sheets. + + + -8.6830749 57.452528 + -8.0654787 57.5851021 + + dac.02003450 + + + 1976 2006-293625 Irish Sea Rockabill to Holyhead + EA digitised fair sheet + + + -5.2580858 53.4292832 + -4.5322963 53.7640145 + + dac.02003451 + + + 1976 2006-293630 Celtic Sea Southwest Approaches + EA digitised fair sheet. Hydrographic Instruction 20/76 + + + -6.1797048 51.2210035 + -5.8304698 51.4035911 + + dac.02003452 + + + 1976 2006-293736 Moray Firth Tarbat Ness to Burghead Blk1 + EA digitised fair sheet + + + -3.921949 57.736565 + -3.496366 57.8804239 + + dac.02003453 + + + 1975 2006-293736 Moray Firth Tarbat Ness to Burghead Blk2 + EA digitised fair sheet + + + -3.9301179 57.5850261 + -3.4964383 57.7474712 + + dac.02003454 + + + 1975 2006-293750 Rona to Fair Isle Area 4 + EA digitised fair sheet + + + -4.9362318 59.4155391 + -3.7742388 59.9405773 + + dac.02003455 + + + 1975 2006-293750 Rona to Fair Isle Area 5 + EA digitised fair sheet + + + -3.8022108 59.8036626 + -2.4050974 60.149666 + + dac.02003456 + + + 2013 2013-73200 Harwich Mistley Quay + Collected by Harwich Haven Authority + + + 1.0798662 51.944177 + 1.1033962 51.9508693 + + dac.02003457 + + + 2013 2013-073938 Cattewater Harbour + + + -4.1359956 50.3580681 + -4.1075885 50.369292 + + dac.02003458 + + + 2013 2013-86694 Dover Harbour + Collected by Dover Harbour Board + + + 1.3094492 51.1107963 + 1.3455849 51.1272156 + + dac.02003459 + + + 1975 2006-293753 Moray Firth Fort George to Karakan Hill + EA digitised fair sheet. + + + -4.1088738 57.5841733 + -3.8970932 57.7365469 + + dac.02003460 + + + 1975 2006-293758 Shoreham to Beachy Head Sheet 1 + EA digitised fair sheet + + + -0.3387407 50.7387099 + -0.0482053 50.8310036 + + dac.02003461 + + + 1975 2006-293758 Shoreham to Beachy Head Sheet 2 + EA digitised fair sheet. + + + -0.0565956 50.6657062 + 0.1686516 50.8014768 + + dac.02003462 + + + 1975 2006-293758 Shoreham to Beachy Head Sheet 3 + EA digitised fair sheet. + + + -0.3417393 50.4885467 + 0.1811905 50.7641158 + + dac.02003463 + + + 1975 2006-293758 Shoreham to Beachy Head Sheet 4 + EA digitised fair sheet. + + + -0.3468993 50.2233579 + 0.176109 50.5049671 + + dac.02003464 + + + 1975 2006-293804 Calf of Man to Carmel Head Northeastern Sheet + EA digitised fair sheet. + + + -5.3243432 53.7439908 + -4.7293391 54.0894658 + + dac.02003465 + + + 1975 2006-293804 Calf of Man to Carmel Head Northwestern Sheet + EA digitised fair sheet. + + + -5.9922706 53.7445157 + -5.3133801 54.0884079 + + dac.02003466 + + + 1975 2006-293816 Approaches to Holyhead Southern Sheet + EA digitised fair sheet + + + -4.7468519 53.3045322 + -4.5557112 53.4009144 + + dac.02003467 + + + 1981 2006-293873 Celtic Sea Nymphe Bank Sheet 2 + EA digitised fair sheet. Possibly HI515 80 + + + -7.1052717 51.3956103 + -6.5791107 51.6976291 + + dac.02003468 + + + 2012 HI1362 Outer Approaches to Firth of Lorne Blk B 2m SB + Additional vessels - MV Seabeam, MV Icebeam, MV Xplorer, MV Oceanstar, using Kongsberg 3002D, EM2040D & Reson 7125 + + + -6.5723509 56.1484468 + -6.341544 56.350925 + + dac.02003469 + + + 1981 2006-293873 Celtic Sea Nymphe Bank Sheet 3 + consub=Ireland. EA digitised fair sheet. Posibbly HI 515/80 + + + -7.5894762 51.3950045 + -7.0955013 51.6163302 + + dac.02003470 + + + 2012 HI1362 Outer Approaches to Firth Of Lorne Blk B 4m SB + Additional vessels - MV Seabeam, MV Icebeam, MV Xplorer, MV Oceanstar, using Kongsberg 3002D, EM2040D & Reson 7125 + + + -6.5917603 56.1226235 + -6.2886333 56.3167395 + + dac.02003471 + + + 1976 2006-293923 Firth of Clyde Ayr to Ardrossan + EA digitised fair sheet + + + -4.8620344 55.4268446 + -4.6607472 55.5957257 + + dac.02003472 + + + 1976 2006-293927 Milford Haven to Tuskar Rock Sheet 1 + EA digitised fair sheet + + + -6.6184566 51.9881155 + -5.9936841 52.2249571 + + dac.02003473 + + + 1977 2006-293941 Celtic Sea South West Approaches + EA digitised fair sheet + + + -6.0068886 51.6941133 + -5.4165388 52.006262 + + dac.02003474 + + + 2012 HI1365 St Brides Bay Infill 1 2m SB + Vessels - Ceejay, FPV Morven, Silver Spray, EMU Surveyor + + + -5.2950887 51.856167 + -5.2937848 51.8570829 + + dac.02003475 + + + 2012 HI1365 St Brides Bay Infill 2 2m SB + Vessels - Ceejay, FPV Morven, Silver Spray, EMU Surveyor + + + -5.3177718 51.8897027 + -5.3159388 51.8927775 + + dac.02003476 + + + 1974 2006-294025 North Channel to Calf of Man Northern Sheet + Other Vessel HMS Bulldog. EA digitised fair sheet + + + -5.5338941 54.1731703 + -4.579863 54.5218196 + + dac.02003477 + + + 1974 2006-294025 North Channel to Calf of Man Southern Sheet + Other vessel HMS Bulldog. + + + -5.6628994 53.9911997 + -4.7684311 54.242691 + + dac.02003478 + + + 1974 2006-294048 Shoreham to Dungeness Sheet 1 + EA digitised fair sheet. + + + 0.6584906 50.4940359 + 1.2996492 50.9316156 + + dac.02003479 + + + 1974 2006-294048 Shoreham to Dungeness Sheet 2 + EA digitised fair sheet + + + 0.1516666 50.5764996 + 0.6807838 50.8731537 + + dac.02003480 + + + 1974 2006-294048 Shoreham to Dungeness Sheet 3 + EA digitised fair sheet + + + 0.1553962 50.2758337 + 0.8556536 50.5920872 + + dac.02003481 + + + 2012 HI1363 Inner Approaches to Firth of Lorne Blk C 8m SB + MV Triad & MV Seabeam (Kongsberg 3002D) +MV Icebeam (EM2040D) + + + -6.1975258 56.0101767 + -5.7890979 56.1285972 + + dac.02003482 + + + 1976 2006-294266 Celtic Sea Nymphe Bank Sheet 1 + EA digitised fair sheet. + + + -6.5915317 51.3918247 + -5.827803 51.5913077 + + dac.02003483 + + + 1979 2006-294267 Spurn Head to Flamborough Head + EA digitised fair sheet. + + + -0.0598767 53.8394057 + 0.3364499 54.1398469 + + dac.02003484 + + + 2011 HI1352 North Minch Blk 1 Infills 2m SB + MV Seabeam was used to obtain survey data. + +The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was a CNAV RTG position via the POS MV auxiliary port. This uses GPS data logged online and RINEX data from the Ordnance Survey Active Station Network. + + + + -6.1582993 57.893548 + -6.0819302 57.91136 + + dac.02003485 + + + 2011 HI1352 North Minch Blk 2 2m SB + MV Seabeam was used to obtain survey data. + +The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was a CNAV RTG position via the POS MV auxiliary port. This uses GPS data logged online and RINEX data from the Ordnance Survey Active Station Network. + + + + -5.8507143 57.8580187 + -5.815655 57.8757651 + + dac.02003486 + + + 2011 HI1352 North Minch Blk 2 4m SB + MV Seabeam was used to obtain survey data. + +The primary positioning of the vessel was a tightly coupled differential navigation solution. The IMU inertial positioning was a CNAV RTG position via the POS MV auxiliary port. This uses GPS data logged online and RINEX data from the Ordnance Survey Active Station Network. + + + + -6.1289468 57.808921 + -5.8158332 57.9457653 + + dac.02003487 + + + 1971 2006-294411 Severn Estuary Sand Point to Walton Bay + + + -3.0309702 51.3914681 + -2.8330769 51.5089967 + + dac.02003488 + + + 1971 2006-294462 Scotland West Coast Sea of the Hebrides Sheet 1 + EA digitised fair sheet + + + -7.3510469 56.5129318 + -6.7418317 56.7686725 + + dac.02003489 + + + 1970 2006-294571 Port Cardigan to Strumble Head + EA digitised fair sheet + + + -5.0971703 52.037407 + -4.7128548 52.2918622 + + dac.02003490 + + + 1969 2006-294723 Approaches to the River Dee + EA digitised fair sheet + + + -3.6832266 53.2879615 + -3.3819512 53.4493312 + + dac.02003491 + + + 1983 HI144 Shetlands Fair Isle Channel Sheet 1 + Vessel: MV Sperus. EA digitised fair sheet. + + + -2.317169 59.4147003 + -1.997051 59.6277804 + + dac.02003492 + + + 1983 HI144 Shetlands Fair Isle Channel Sheet 2 + Vessel: MV Sperus. EA digitised + + + -2.0058464 59.4552761 + -1.732602 59.6773688 + + dac.02003493 + + + 1983 HI144 Shetlands Fair Isle Channel Sheet 3 + Vessel: MV Sperus. EA digitised fair sheet. + + + -2.3667129 59.6196532 + -1.9376838 59.7749075 + + dac.02003494 + + + 1983 HI144 Shetlands Fair Isle Channel Sheet 4 + Vessel: MV Sperus. EA digitised fair sheet. + + + -2.4132085 59.7623067 + -1.9963247 59.9469515 + + dac.02003495 + + + 1983 HI144 Shetlands Fair Isle Channel Sheet 5 + Vessel: MV Sperus. EA digitised fair sheet. + + + -2.0050355 59.763036 + -1.6978888 59.9585288 + + dac.02003496 + + + 1983 HI144 Shetlands Fair Isle Channel Sheet 6 + EA digitised fair sheet + + + -1.705465 59.7618931 + -1.317864 59.9339962 + + dac.02003497 + + + 1983 HI144 Shetlands Fair Isle Channel Sheet 7 + Vessel: MV Sperus. EA digitised fair sheet + + + -2.4717934 59.9143342 + -2.1661434 60.1175363 + + dac.02003498 + + + 1983 HI144 Shetlands Fair Isle Channel Sheet 8 + Vessel: MV Sperus. EA digitised fair sheet. + + + -2.1833969 59.9379177 + -1.7450015 60.1203195 + + dac.02003499 + + + 1982 HI11 Southwold to Cross Sand Sheet 1 + EA digitised fair sheet + + + 1.8105147 52.4809665 + 1.9997482 52.65357 + + dac.02003500 + + + 1982 HI11 Southwold to Cross Sand Sheet 2 + EA digitised fair sheet + + + 1.6994395 52.3135731 + 2.0010911 52.4873952 + + dac.02003501 + + + 1986 HI321A Outer Silver Pit Area A Sheet 1 + colorg=U.D.I. Group Ltd. Other Vessel: MV Pensurveyor. EA digitised fair sheet. + + + 0.6027499 54.2805406 + 0.8097919 54.4799332 + + dac.02003502 + + + 1986 HI321A Outer Silver Pit Area A Sheet 2 + colorg=U.D.I. Group Ltd. Other Vessel: MV Pensurveyor. EA digitised fair sheet. + + + 0.8029337 54.2390151 + 1.0012079 54.4515988 + + dac.02003503 + + + 1986 HI321A Outer Silver Pit Area A Sheet 3 + colorg=U.D.I. Group Ltd. EA digitised fair sheet. + + + 0.3859471 54.1805834 + 0.6098839 54.3633948 + + dac.02003504 + + + 1986 HI321A Outer Silver Pit Area A Sheet 4 + colorg=U.D.I. Group Ltd. Other Vessel: MV Pensurveyor. EA digitised fair sheet. + + + 0.5610608 54.1595484 + 0.8100182 54.2866761 + + dac.02003505 + + + 1986 HI321A Outer Silver Pit Area A Sheet 5 + colorg=U.D.I. Group Ltd. Other Vessel: MV Pensurveyor. EA digitised fair sheet. + + + 0.8030315 54.0683494 + 1.0009248 54.2444256 + + dac.02003506 + + + 1986 HI321A Outer Silver Pit Area A Sheet 6 + colorg=U.D.I. Group Ltd. Other Vessel: MV Pensurveyor. EA digitised fair sheet. + + + 0.5357179 54.0342681 + 0.8101943 54.1662101 + + dac.02003507 + + + 1986 HI321A Outer Silver Pit Area A Sheet 7 + colorg=U.D.I. Group Ltd. Other Vessel: MV Pensurveyor. EA digitised fair sheet. + + + 0.3277371 54.0636907 + 0.5681947 54.1865592 + + dac.02003508 + + + 1986 HI321A Outer Silver Pit Area A Sheet 8 + colorg=U.D.I. Group Ltd. Other Vessel: MV Pensurveyor. EA digitised fair sheet. + + + 0.3289048 53.8645909 + 0.5426843 54.0689005 + + dac.02003509 + + + 1986 HI321A Outer Silver Pit Area A Sheet 9 + colorg=U.D.I. Group Ltd. Other Vessel: MV Pensurveyor. EA digitised fair sheet. + + + 0.5374227 53.8640852 + 0.7522567 54.0408949 + + dac.02003510 + + + 1986 HI321A Outer Silver Pit Area A Sheet 10 + colorg=U.D.I. Group Ltd. Other Vessel: MV Pensurveyor. EA digitised fair sheet. + + + 0.7441921 53.9468638 + 1.0019224 54.0743247 + + dac.02003511 + + + 1986 HI321A Outer Silver Pit Area A Sheet 11 + colorg=U.D.I. Group Ltd. Other Vessel: MV Pensurveyor. EA digitised fair sheet. + + + 0.7444946 53.8257406 + 1.0013331 53.9521467 + + dac.02003512 + + + 1986 HI321A Outer Silver Pit Area A Sheet 12 + colorg=U.D.I. Group Ltd. Other Vessel: MV Pensurveyor. EA digitised fair sheet. + + + 0.4184144 53.7472172 + 0.7511983 53.8699553 + + dac.02003513 + + + 1987 HI357 Skerries to the River Dee Sheet 7 + EA digitised fair sheet + + + -4.2392943 53.5633358 + -3.9477569 53.7041592 + + dac.02003514 + + + 1987 HI357 Skerries to the River Dee Sheet 8 + EA digitised fair sheet + + + -4.2382718 53.4138789 + -3.9485816 53.5691387 + + dac.02003515 + + + 2012 HI1324 Sound of Barra Blk 1 2m SB + Vessels - RV Discovery, EMU Surveyor + + + -7.5277928 57.0134602 + -7.4365426 57.1371088 + + dac.02003516 + + + 2012 HI1324 Sound of Barra Blk 2 2m SB + Vessels - RV Discovery, EMU Surveyor + + + -7.44986 57.0599726 + -7.3650904 57.136096 + + dac.02003517 + + + 2012 HI1324 Sound of Barra Blk 3 2m SB + Vessels - RV Discovery, EMU Surveyor + + + -7.3829372 57.0168467 + -7.2854196 57.0786274 + + dac.02003518 + + + 2012 HI1324 Sound of Barra Blk 4 2m SB + Vessels - RV Discovery, EMU Surveyor + + + -7.4200933 56.9900455 + -7.3268632 57.0528881 + + dac.02003519 + + + 2012 HI1324 Sound of Barra Blk 5 2m SB + Vessels - RV Discovery, EMU Surveyor + + + -7.3251923 57.015788 + -7.2155925 57.1016078 + + dac.02003520 + + + 2012 HI1324 Sound of Barra Blk 5 4m SB + Vessels - RV Discovery, EMU Surveyor + + + -7.289823 57.0145041 + -7.2188412 57.0807078 + + dac.02003521 + + + 2012 HI1324 Sound of Barra Blk 5 8m SB + Vessels - RV Discovery, EMU Surveyor + + + -7.2877629 57.0143488 + -7.216206 57.0793951 + + dac.02003522 + + + 2012 HI1324 Sound of Barra Blk 6 2m SB + Vessels - RV Discovery, EMU Surveyor + + + -7.4311767 56.9519657 + -7.2860308 57.023758 + + dac.02003523 + + + 2012 HI1324 Sound of Barra Blk 6 4m SB + Vessels - RV Discovery, EMU Surveyor + + + -7.3642928 56.951458 + -7.2749488 57.0241686 + + dac.02003524 + + + 2012 HI1324 Sound of Barra Blk 6 8m SB + Vessels - RV Discovery, EMU Surveyor + + + -7.3626058 56.9515281 + -7.2740368 57.0238318 + + dac.02003525 + + + 1969 2006-294706 Cardigan Bay + EA digitised fair sheet + + + -4.7424037 52.1925183 + -4.2126106 52.4829554 + + dac.02003526 + + + 1956 2006-295994 The Wash Skegness to Blakeney + Vessel: HMS Shackleton. EA digitised fair sheet + + + 0.2753968 52.9624911 + 1.040112 53.1903959 + + dac.02003527 + + + 1990 HI506 Well Hole Sheet 2 + Vessel: MV Betelgeuze. EA digitised fair sheet + + + 2.0788992 53.5317035 + 2.2500182 53.7273012 + + dac.02003528 + + + 2013 HI1406 Lizard Point to Dodman Point SB 2m + + + -5.1726031 49.9644337 + -4.8119526 50.2258944 + + dac.02003529 + + + 2013 HI1406 Lizard Point to Dodman Point SB 5m + + + -5.0618925 50.0168841 + -4.8105515 50.1874925 + + dac.02003530 + + + 2013 2013-99475 Newhaven Spoil Ground + colorg - Newhaven Port + + + 0.0428226 50.7536087 + 0.064584 50.7671895 + + dac.02003531 + + + 2013 2013-99505 Loch Ryan + + + -5.0570695 54.9833253 + -5.0357459 54.9993931 + + dac.02003532 + + + 2013 2013-101507 J757 Isles of Scilly + Owned and commissioned by the Duchy of Cornwall Harbour Authority + + + -6.3501703 49.8981826 + -6.304027 49.9173044 + + dac.02003533 + + + 2013 HI1369 Approaches to Torbay 2m SB + MV Ocean Star & MV Franklin, using Kongsberg EM2040D & EM3002D + + + -3.5332556 50.2720415 + -3.2314979 50.4665568 + + dac.02003534 + + + 2013 HI1369 Approaches to Torbay 4m SB + MV Ocean Star & MV Franklin, using Kongsberg EM2040D & EM3002D + + + -3.5820377 50.1637413 + -3.0363638 50.4613486 + + dac.02003535 + + + 2006 HI1150 Tarbat Ness to Sarclet Head 2m SB + RV Triton & MV Confidante, using Kongsberg EM710 and EM3002D + + + -3.8819226 57.8227743 + -2.7439948 58.3505645 + + dac.02003536 + + + 2006 HI1150 Tarbat Ness to Sarclet Head 4m SB + RV Triton & MV Confidante, using Kongsberg EM710 & EM3002D + + + -3.7628058 57.8182525 + -2.2837702 58.3930605 + + dac.02003537 + + + 2013 2013-102780 J788 Fowey Harbour + + + -4.6451312 50.3266579 + -4.6242242 50.3518662 + + dac.02003538 + + + 2013 2013-107522 J787 Folkstone Harbours + + + 1.1857266 51.0757621 + 1.1963001 51.0807697 + + dac.02003539 + + + 2012 HI1361 Barra Head to Castle Bay Blk 1-4 2m SB + Vessels - RV Discovery & EMU Surveyor + + + -7.6758746 56.7706238 + -7.5200056 56.9334377 + + dac.02003540 + + + 2012 HI1361 Barra Head to Castle Bay Blk 5-8 2m SB + Vessels - RV Discovery & EMU Surveyor + + + -7.5332262 56.8397526 + -7.361311 56.9570661 + + dac.02003541 + + + 2012 HI1361 Barra Head to Castle Bay Blk 7-8 4m SB + Vessels - RV Discovery & EMU Surveyor + + + -7.4576218 56.8756098 + -7.3591366 56.9551893 + + dac.02003542 + + + 2004 HI1083 Eastern Approaches to Firth of Forth 4m SB + + + -1.9481667 55.6197952 + -0.8203538 56.1747115 + + dac.02003543 + + + 2004 HI1083 Eastern Approaches to Firth of Forth Blk8 2m SB WGS84 + + + -2.4640836 56.0098741 + -2.2638145 56.0436878 + + dac.02003544 + + + 2004 HI1083 Eastern Approaches to Firth of Forth Blk8 4m SB WGS84 + + + -2.4304893 56.0134854 + -2.1032745 56.0682993 + + dac.02003545 + + + 2009 HI1257 The Isles of Eigg and Muck Blk12 2m SB + Vessel = MV Seabeam + + + -5.9285153 56.8307491 + -5.7456094 56.8924011 + + dac.02003546 + + + 2009 HI1257 The Isles of Eigg and Muck Blk12 4m SB + Vessel = MV Seabeam + + + -5.9366566 56.8330681 + -5.7566966 56.8865277 + + dac.02003547 + + + 1987 HI381 West Sole Sheet 3 + Vessel - MV Dawn Sky. EA digitised fairsheet + + + 1.0604142 53.5688753 + 1.2854712 53.6775844 + + dac.02003548 + + + 2009 HI1154 Part 2 Chesil Beach to Handfast Point 2m SB + DORIS (Dorset Integrated Seabed Survey), a collaborative project involving Dorset Wildlife Trust, MCA, CCO and the Royal Navy. Other partners include Natural England, Dorset Strategic Partnership, NOC and the University of Southampton + + + -2.6337589 50.4645979 + -2.2639463 50.6558671 + + dac.02003549 + + + 2009 HI1154 Part 2 Chesil Beach to Handfast Point 4m SB + DORIS (Dorset Integrated Seabed Survey), a collaborative project involving Dorset Wildlife Trust, MCA, CCO and the Royal Navy. Other partners include Natural England, Dorset Strategic Partnership, NOC and the University of Southampton + + + -2.6320937 50.4486233 + -2.2659636 50.542531 + + dac.02003550 + + + 2009 HI1242 Portland Bill to Petit Tor Point Blk2 to 8 2m SB + Owned by Teignbridge District Council. Work carried out as part of the Southwest Regional Coastal Monitoring Programme. + + + -3.4690653 50.5547259 + -2.5251976 50.7340459 + + dac.02003551 + + + 2009 HI1242 Portland Bill to Petit Tor Point Blk9 2m SB + Owned by Teignbridge District Council. Work carried out as part of the Southwest Regional Coastal Monitoring Programme. + + + -2.5406351 50.5037341 + -2.4479938 50.610534 + + dac.02003552 + + + 2009 HI1242 Portland Bill to Petit Tor Point Blk9 4m SB + Owned by Teignbridge District Council. Work carried out as part of the Southwest Regional Coastal Monitoring Programme. + + + -2.4782211 50.5053194 + -2.4649064 50.5369315 + + dac.02003553 + + + 2008 HI1279 Eastern Approaches to Nab Channel 2m SB + + + -1.006286 50.5750605 + -0.7615725 50.6695675 + + dac.02003554 + + + 2012 HI1289 Approaches to Plymouth Sound 1m SB + Vessel - FHMU SMB Nesbitt + + + -4.1869562 50.3119386 + -4.1221865 50.335826 + + dac.02003555 + + + 2012 2013-118503 North St Georges Channel SB 4m + Vessels - RV Prince Madog & SV Bibby Tethra + + + -5.3402389 53.1650804 + -4.6219435 53.6856685 + + dac.02003556 + + + 2013 2013-118841 Forth Grangemouth Roads + + + -3.6959958 56.0288836 + -3.6328563 56.0501856 + + dac.02003557 + + + 2013 2013-116184 Forth Narrow Deep + + + -3.1274017 56.0046984 + -3.0928105 56.0232698 + + dac.02003558 + + + 1975 2006-293750 Rona to Fair Isle Area 3 + EA Digitised Fair Sheet + + + -5.9063394 58.7787777 + -4.8202189 59.4998009 + + dac.02003559 + + + 2013 2013-125318 Bristol Denny Shoal + + + -2.7719655 51.4980065 + -2.7401165 51.5114877 + + dac.02003560 + + + 2012 2013-62678 Loch Boisdale + Owned and Commissioned by Caledonian Maritime Assets Ltd Vessel unknown + + + -7.309401 57.1408474 + -7.2587021 57.1560345 + + dac.02003561 + + + 2013 HI1374 Bolt Head to Berry Head Blk1 to 6 2m SB + Collected by Fugro EMU Ltd Vessels - RV Discovery EMU Surveyor + + + -3.7906057 50.1753972 + -3.4764571 50.3877217 + + dac.02003562 + + + 2013 2013-62678 Gott Bay Scarinish Isle of Tiree + Owned and Commissioned by Caledonian Maritime Assets Ltd Vessel unknown + + + -6.8089141 56.504183 + -6.7855659 56.5175678 + + dac.02003563 + + + 2013 2013-62678 Scalasaig Colonsay + Owned and Commissioned by Caledonian Maritime Assets Ltd + + + -6.1882534 56.0625704 + -6.1717047 56.0740865 + + dac.02003564 + + + 2013 2013-62678 Tarbert Isle of Harris + Owned and Commissioned by Caledonian Maritime Assets Ltd Vessel unknown + + + -6.803372 57.8882936 + -6.7788403 57.8979 + + dac.02003565 + + + 2013 HI1371 Sound of Jura 4m SB + Vessels - MV Ocean Star (Kongsberg EM2040D) & MV Xplorer (Reson 7125) + + + -5.9558119 55.7529173 + -5.5460636 56.1397281 + + dac.02003566 + + + 2013 HI1371 Sound of Jura 2m SB + Vessels - MV Ocean Star (Kongsberg 7125) & MV Xplorer (Reson 7125) + + + -5.9571759 55.7574054 + -5.5444149 56.1390665 + + dac.02003567 + + + 2012 2013-62678 Port Ellen + Owned and Commissioned by Caledonian Maritime Assets Ltd + + + -6.2204782 55.6187761 + -6.1832377 55.6335076 + + dac.02003568 + + + 2013 2013-131569 J806 Cowes Harbour + + + -1.3084908 50.7322046 + -1.2810537 50.7686665 + + dac.02003569 + + + 2013 HI1413 DWR DR1 to DR2 1m FMCUBE + Vessels = MV Ocean Star, MV Icebeam, using Kongsberg EM2040D + + + 2.5666333 53.0642301 + 2.9360632 53.372613 + + dac.02003570 + + + 2013 2013-136982 Forth Dundee Docks + Collected by Forth Ports Vessel unknown + + + -2.9562494 56.4575081 + -2.9160775 56.4661234 + + dac.02003571 + + + 2013 2013-136982 Forth Lady Shoal to Gaa Sand + Collected by Forth Ports Vessel unknown + + + -2.8400549 56.4482625 + -2.6773638 56.4621398 + + dac.02003572 + + + 2013 2013-136982 Forth Tay Bar + Collected by Forth Ports Vessel unknown + + + -2.6861118 56.4492904 + -2.6299933 56.476752 + + dac.02003573 + + + 2013 2013-136982 Forth Tay Dump + Collected by Forth Ports Vessel unknown + + + -2.9543289 56.4497176 + -2.9142249 56.4653866 + + dac.02003574 + + + 2013 2013-141106 J835 Chichester Harbour + + + -0.9441699 50.7559377 + -0.904434 50.7940765 + + dac.02003575 + + + 2013 2013-141108 Shoreham Harbour and Approaches + + + -0.2691832 50.8216615 + -0.2386641 50.8319715 + + dac.02003576 + + + 2013 HI1355 Kintyre Extension 2m SB + Vessel - MV Pole Star. + + + -5.8243884 55.3866748 + -5.7485951 55.5049838 + + dac.02003577 + + + 2013 2013-62678 Arinagour Isle of Coll + Owned and commissioned by Caledonian Maritime Assets Ltd Vessel unknown + + + -6.5236373 56.6066934 + -6.5048567 56.6226439 + + dac.02003578 + + + 2012 HI1362 Outer Approaches to Firth of Lorne Blk A 2m SB + Additional vessels - MV Seabeam, MV Icebeam, MV Xplorer, MV Oceanstar, using Kongsberg 3002D, EM2040D & Reson 7125 + + + -6.7930857 56.1242273 + -6.5683464 56.315801 + + dac.02003579 + + + 2012 HI1362 Outer Approaches to Firth of Lorne Blk A 4m SB + Additional vessels - MV Seabeam, MV Icebeam, MV Xplorer, MV Oceanstar, using Kongsberg 3002D, EM2040D & Reson 7125 + + + -6.8285905 56.1228629 + -6.5629756 56.3188242 + + dac.02003580 + + + 2012 HI1362 Outer Approaches to Firth of Lorne Blk A 8m SB + Additional vessels - MV Seabeam, MV Icebeam, MV Xplorer, MV Oceanstar, using Kongsberg 3002D, EM2040D & Reson 7125 + + + -6.796076 56.1226393 + -6.5795724 56.3172188 + + dac.02003581 + + + 2012 HI1362 Outer Approaches to Firth of Lorne Blk C 2m SB + Additional vessels - MV Seabeam, MV Icebeam, MV Xplorer, MV Oceanstar, using Kongsberg 3002D, EM2040D & Reson 7125 + + + -6.798461 55.9198999 + -6.5268645 56.126587 + + dac.02003582 + + + 2012 HI1362 Outer Approaches to Firth of Lorne Blk C 4m SB + Additional vessels - MV Seabeam, MV Icebeam, MV Xplorer, MV Oceanstar, using Kongsberg 3002D, EM2040D & Reson 7125 + + + -6.8226689 55.9199341 + -6.5129553 56.1297166 + + dac.02003583 + + + 2012 HI1362 Outer Approaches to Firth of Lorne Blk D 2m SB + Additional vessels - MV Seabeam, MV Icebeam, MV Xplorer, MV Oceanstar, using Kongsberg 3002D, EM2040D & Reson 7125 + + + -6.5009241 55.9216386 + -6.1943426 56.0941283 + + dac.02003584 + + + 2012 HI1362 Outer Approaches to Firth of Lorne Blk D 4m SB + Additional vessels - MV Seabeam, MV Icebeam, MV Xplorer, MV Oceanstar, using Kongsberg 3002D, EM2040D & Reson 7125 + + + -6.5244038 55.9233263 + -6.1948336 56.12616 + + dac.02003585 + + + 2012 HI1362 Outer Approaches to Firth of Lorne Blk E 2m SB + Additional vessels - MV Seabeam, MV Icebeam, MV Xplorer, MV Oceanstar, using Kongsberg 3002D, EM2040D & Reson 7125 + + + -6.6287064 55.6799302 + -6.2039195 55.9271889 + + dac.02003586 + + + 2012 HI1362 Outer Approaches to Firth of Lorne Blk E 4m SB + Additional vessels - MV Seabeam, MV Icebeam, MV Xplorer, MV Oceanstar, using Kongsberg 3002D, EM2040D & Reson 7125 + + + -6.7113135 55.7002846 + -6.2633368 55.9274745 + + dac.02003587 + + + 2012 HI1355 Kintyre 2m SB + Vessel = MV Pole Star + + + -5.9468284 55.27496 + -5.7212784 55.4390595 + + dac.02003588 + + + 2013 2013-171163 J757 St Marys Roads Scilly + + + -6.3361543 49.9019404 + -6.3210563 49.9100148 + + dac.02003589 + + + 2013 2013-171164 J832 St Marys Roads to Crow Sound + + + -6.333795 49.9311441 + -6.2834244 49.9405253 + + dac.02003590 + + + 2013 2013-171160 Shoreham Canal + CD in Canal = Local Datum (3.99m below Ordnance Datum Newlyn) Collected by Shoreham Port + + + -0.2370794 50.8269941 + -0.2012968 50.831442 + + dac.02003591 + + + 2013 2013-163623 Severn Bar 30m + + + -2.7432554 51.505651 + -2.7151169 51.5225373 + + dac.02003592 + + + 2012 2013-166387 Shetland 4m SB + Vessel Polestar - Data coverage to SW of Mainland and E of Yell + + + -1.5521953 59.9365901 + -0.528138 60.7148848 + + dac.02003593 + + + 2012 2013-166387 Shetland 2m SB + Vessel Polestar - Data coverage to SW of Mainland and E of Yell + + + -1.3849965 60.0066993 + -0.9253504 60.6376537 + + dac.02003594 + + + 2013 HI1414 Botney Ground DWR FMCUBE 1m + Second vessel - MV Icebeam. Multibeam system - Kongsberg EM2040D + + + 2.7544033 53.3281889 + 3.00065 53.6693385 + + dac.02003595 + + + 2013 HI1417 Western Approaches to North Hinder FMCUBE 1m + Multibeam - Kongsberg 2040D + + + 2.4762298 51.8383818 + 2.808562 52.1804948 + + dac.02003596 + + + 2012 2013-166386 SW Approaches to Tiree 2m SB + Vessel - NLV Polestar, using Kongsberg EM3002D + + + -7.2539695 56.2196589 + -5.8703774 56.487966 + + dac.02003597 + + + 2012 2013-166386 SW Approaches to Tiree 4m SB + Vessel - NLV Polestar, using Kongsberg EM3002D + + + -7.256953 56.1340553 + -5.816621 56.4792465 + + dac.02003598 + + + 2012 2013-166386 SW Approaches to Tiree 8m SB + Vessel - NLV Polestar using Kongsberg EM3002D + + + -6.7641136 56.1646732 + -5.8078014 56.4612156 + + dac.02003599 + + + 2007 HI1202 Westray Firth to Stronsay Firth 2m SB + Echosounder = Kongsberg 3002D Vessel unknown + + + -3.0307301 58.9094208 + -2.5535567 59.2386818 + + dac.02003600 + + + 2009 HI1294 Goodwin Sands Blk1 2m SB + MV Seabeam and MV Triad using Kongsberg EM3002D + + + 1.4293841 51.132357 + 1.5901924 51.3428033 + + dac.02003601 + + + 2009 HI1294 Goodwin Sands Blk2 2m SB + MV Seabeam and MV Triad using Kongsberg EM3002D + + + 1.6614853 51.1333341 + 1.7486185 51.2347181 + + dac.02003602 + + + 2009 HI1294 Goodwin Sands Blk3 2m SB + MV Seabeam and MV Triad using Kongsberg EM3002D + + + 1.8204236 51.2022158 + 1.8829675 51.2649355 + + dac.02003603 + + + 2011 HI1157 Hartland Point to Lands End Blk 3 2m SB + Additional vessels - MV Fugro Gauss, MV Meridian, MV Jetstream, MV Fugro Mercator + + + -5.83884 50.0581154 + -5.3332086 50.3392186 + + dac.02003604 + + + 2012 HI1365 St Brides Bay Blk 5 2m SB + Vessels = Ceejay, FVP Morven. Silver Spray, EMU Surveyor + + + -5.4298425 51.8362528 + -5.2920773 51.9110895 + + dac.02003605 + + + 2012 HI1365 St Brides Bay Blk 5 4m SB + Vessels = Ceejay, FPV Morven, Silver Spray, EMU Surveyor + + + -5.436249 51.8355125 + -5.3124466 51.9128883 + + dac.02003606 + + + 2012 2013-180354 Hythe Bay 2m SB + + + 1.0231809 51.0020817 + 1.1479401 51.0629154 + + dac.02003607 + + + 2012 HI1298 Passage of Tiree Blk C 2m SB + Additional vessels = MV Triad, MV Icebeam, MV Ocean Star, MTS Xplorer + + + -6.5885097 56.3121149 + -6.1495031 56.5445598 + + dac.02003608 + + + 2012 HI1298 Passage of Tiree Blk C 4m SB + Additional Vessels = MV Triad, MV Icebeam, MV Ocean Star, MTS Xplorer + + + -6.5925756 56.3124641 + -6.1532908 56.5315469 + + dac.02003609 + + + 2012 HI1298 Passage of Tiree Blk C 8m SB + Additional Vessels = MV Triad, MV Icebeam, MV Ocean Star, MTS Xplorer + + + -6.58549 56.3492074 + -6.1610833 56.5037311 + + dac.02003610 + + + 2012 HI1298 Passage of Tiree Blk C 12m SB + Additional Vessels = MV Triad, MV Icebeam, MV Ocean Star, MTS Xplorer + + + -6.5630574 56.3737288 + -6.3301006 56.5000887 + + dac.02003611 + + + 2013 2013-189293 Inverkeithing Bay + Collected by Forth Ports + + + -3.3897029 56.0081736 + -3.3262715 56.0343825 + + dac.02003612 + + + 2013 2013-189293 Forth North Channel + Collected by Forth Ports Vessel unknown + + + -3.1102718 56.0448792 + -3.0564881 56.0584687 + + dac.02003613 + + + 2013 2013-189664 Bristol Denny Shoal + + + -2.772499 51.497631 + -2.7300707 51.5115935 + + dac.02003614 + + + 2013 2013-189354 H102 05-13 Loch Eynort 2m SB + Echosounder - Kongsberg EM710 SMB Sapphire using Kongsberg EM2040 + + + -7.3365242 57.2113825 + -7.194297 57.2342029 + + dac.02003615 + + + 2013 2013-189356 H102 03-13 Ardmore Channel Gareloch 2m SB + Echosounder - Kongsberg EM710 + + + -4.9349473 55.8671461 + -4.7514517 56.0566469 + + dac.02003616 + + + 2013 2013-189355 H102 06-13 Loch Nevis 2m SB + SMB Sapphire using Kongsberg EM2040 + + + -5.6306913 56.9761968 + -5.5792153 56.9920504 + + dac.02003617 + + + 2013 HI1401 Approaches to Humber Blk1 2m SB + MV Seabeam using Kongsberg EM3002D: MV Xplorer using Reson 7125: MV Ocean Star using EM2040D + + + 0.2146406 53.4632187 + 0.6147382 53.7424774 + + dac.02003618 + + + 2013 HI1401 Approaches to Humber Blk3 2m SB + MV Seabeam using Kongsberg EM3002D: MV Xplorer using Reson 7125: MV Ocean Star using EM2040D + + + 0.0627022 53.5701201 + 0.332384 53.74199 + + dac.02003619 + + + 2013 HI1418 DWR Off Brown Ridge 1m CUBE + Vessels = MV Ocean Star using Kongsberg EM2040D and MV Franklin using EM3002D and EM710 + + + 2.798007 52.348315 + 3.2137292 52.875207 + + dac.02003620 + + + 2013 HI1275 Port of Larne 1m + HMS Echo and SMB Sapphire, using Kongsberg EM710 and EM2040 + + + -5.7978694 54.8410439 + -5.7177316 54.8886308 + + dac.02003621 + + + 2013 HI1412 Luce Bay 2m SB + + + -4.9966277 54.5452545 + -4.7311371 54.6582683 + + dac.02003622 + + + 2013 HI1412 Luce Bay 4m SB + + + -5.0475082 54.5439117 + -4.6854493 54.681166 + + dac.02003623 + + + 2013 HI1412 Luce Bay 8m SB + + + -5.0876453 54.542701 + -4.8557588 54.6809071 + + dac.02003624 + + + 2013 HI1412 Luce Bay 12m SB + + + -5.1230955 54.5426125 + -4.891018 54.6675111 + + dac.02003625 + + + 2012 HI1394 Eddrachillis Bay 2m SB WGS84 + Echosounders used - Kongsberg EM3002D and EM2040D (infills) + + + -5.3780365 58.2490819 + -5.108787 58.3749513 + + dac.02003626 + + + 2012 HI1394 Eddrachillis Bay 4m SB WGS84 + Echosounders used - Kongsberg EM3002D and EM2040D (infills) + + + -5.3639156 58.2497322 + -5.108663 58.3738186 + + dac.02003627 + + + 2012 HI1394 Eddrachillis Bay 8m SB WGS84 + Echosounders used - Kongsberg EM3002D and EM2040D (infills) + + + -5.3447523 58.2651378 + -5.162971 58.3631888 + + dac.02003628 + + + 2012 HI1394 Eddrachillis Bay 12m SB WGS84 + Echosounders used - Kongsberg EM3002D and EM2040D (infills) + + + -5.3389661 58.2904001 + -5.2321553 58.3346457 + + dac.02003629 + + + 2013 HI1376 Liverpool Bay 2m SB + Vessel - MV Ocean Dawn - using Kongsberg EM2040 + + + -3.7717769 53.4927896 + -3.4141484 53.5859934 + + dac.02003630 + + + 2013 HI1393 Approaches to Loch Inver 2m + + + -5.5065342 58.0587057 + -5.2456156 58.238156 + + dac.02003631 + + + 2013 HI1393 Approaches to Loch Inver 8m + + + -5.503907 58.0593335 + -5.3153696 58.2021273 + + dac.02003632 + + + 2013 HI1393 Approaches to Loch Inver 12m + + + -5.4757289 58.1166108 + -5.3616224 58.181804 + + dac.02003633 + + + 2013 HI1393 Approaches to Loch Inver 4m + + + -5.5094198 58.0571355 + -5.2805271 58.2151543 + + dac.02003634 + + + 2013 2013-220249 Avonmouth Swash Channel + + + -2.7210328 51.4951416 + -2.7053104 51.5069314 + + dac.02003635 + + + 2013 2011-19097 SNT 06-13 Aberdeen Harbour Infill 1m + Vessel SMB Shackleton + + + -2.0629728 57.1412568 + -2.0421315 57.1575331 + + dac.02003636 + + + 2012 2013-234066 Barrow BAE Slipways + Collected and owned by ABP Barrow + + + -3.2402062 54.098242 + -3.2329287 54.1031346 + + dac.02003637 + + + 2013 HI1377 Belfast Lough to St Johns Point 2m WGS84 + Vessels - RV Discovery, EMU Surveyor, Ocean Dawn. Ocean Dawn used Kongsberg 2040 + + + -5.6561539 54.1879235 + -5.3566314 54.7257395 + + dac.02003638 + + + 2013 HI1370 Approaches to Sound of Jura 2m SB + MV Ocean Star & MV Seabeam - Kongsberg EM2040D: MTS Xplorer - Reson 7125 + + + -6.2707081 55.4256616 + -5.5857178 55.7640407 + + dac.02003639 + + + 2013 HI1370 Approaches to Sound of Jura 4m SB + MV Ocean Star & MV Seabeam - Kongsberg EM2040D: MTS Xplorer - Reson 7125 + + + -6.0403363 55.5282959 + -5.737226 55.7640094 + + dac.02003640 + + + 2013 HI1437 Lymington 1m FMCUBE + + + -1.5298698 50.7399575 + -1.509454 50.7569161 + + dac.02003641 + + + 2013 HI1437 Selsey Bill to Lee-on-Solent 1m FMCUBE + + + -1.3122799 50.7052481 + -0.798174 50.8207031 + + dac.02003642 + + + 2013 2013-238951 Severn Estuary Bridge Patch + + + -3.0101595 51.4355031 + -2.973187 51.4581513 + + dac.02003643 + + + 2013 HI1438 The Swale to Minnis Bay 1m FMCUBE + Southeast Regional Coastal Monitoring Programme MBES = Kongsberg EM3002D + + + 0.9359283 51.3537743 + 1.2680032 51.4021166 + + dac.02003644 + + + 2013 2013-243538 Dover Harbour + Collected by Dover Harbour Board + + + 1.3093183 51.1106434 + 1.3458031 51.1272904 + + dac.02003645 + + + 2013 2013-250002 J867 Fishguard Harbour + + + -4.9860585 52.0091725 + -4.9813017 52.0140235 + + dac.02003646 + + + 2013 2013-249884 J833 Holyhead Harbour + + + -4.6474128 53.3098684 + -4.595023 53.3355272 + + dac.02003647 + + + 2013 2013-249098 Bristol Denny Shoal + + + -2.7723976 51.4977324 + -2.7401077 51.5112224 + + dac.02003648 + + + 2013 2013-254054 Loch Ryan + + + -5.0598178 54.9833648 + -5.035654 55.0010147 + + dac.02003649 + + + 2013 2013-244611 Severn Bar + + + -2.7437527 51.5056035 + -2.7108639 51.5264058 + + dac.02003650 + + + 2013 2013-259847 J868 Yarmouth Harbour Pre-dredge + + + -1.5095439 50.6982978 + -1.4967745 50.7094832 + + dac.02003651 + + + 2013 2013-259847 J869 Yarmouth Harbour Post-dredge + + + -1.5052052 50.6992756 + -1.4998218 50.7079689 + + dac.02003652 + + + 2006 HI1174 Sledway to Blakeney Overfalls + Problems creating gridded surface - data archived as thinned point cloud. Second Vessel = MV Ping + + + 0.5125616 52.9956013 + 0.9063129 53.0690649 + + dac.02003653 + + + 2013 2013-259846 J874 Chichester Itchenor Reach + + + -0.8793829 50.8008631 + -0.8250361 50.8120728 + + dac.02003654 + + + 2013 2013-268366 H102 07-13 Luce Bay SB 2m WGS84 + + + -4.8766135 54.6385091 + -4.856417 54.659072 + + dac.02003655 + + + 2006 2006-387808 Falmouth Penryn Harbour + Archived Vertical Datum = ACD at Penryn (Received = ACD at Truro) + + + -5.1003125 50.1631442 + -5.0791458 50.1696114 + + dac.02003656 + + + 2013 2013-254069 Chichester Harbour Approaches + Collected by Eastern Solent Coastal Partnership + + + -0.9463026 50.7555923 + -0.9282387 50.7802874 + + dac.02003657 + + + 2012 2013-274072 Mid St Georges Channel 5m SB + Vessel = SV Bibby Tethra + + + -5.4716422 52.5293844 + -5.0102683 52.8231937 + + dac.02003658 + + + 2013 2013-269677 J872 St Ives + Commissioned and owned by Cornwall County Council + + + -5.4797048 50.2093893 + -5.4717066 50.2149825 + + dac.02003659 + + + 2013 2013-269677 J871 Newquay + Commissioned and owned by Cornwall County Council + + + -5.0880415 50.4169583 + -5.0829098 50.4207913 + + dac.02003660 + + + 2013 2013-269728 J873 Penzance Harbour and Approaches + Commissioned and owned by Cornwall County Council + + + -5.5332502 50.1150875 + -5.5244572 50.1200718 + + dac.02003661 + + + 2013 2013-269765 J876 Weymouth Harbour and Approaches + + + -2.4597755 50.6063845 + -2.4393713 50.6137261 + + dac.02003662 + + + 2013 2013-101514 Truro River VORF-CD + Reduced to CD using VORF Owned by Truro Harbour Authority + + + -5.0415447 50.2414573 + -5.0200413 50.2525892 + + dac.02003663 + + + 2013 2014-1651 J839 Torquay Harbour + + + -3.5320805 50.456227 + -3.5238971 50.4613585 + + dac.02003664 + + + 2013 2014-4041 Glasgow 2m UTM30N + Collected by Clydeport - Vessel = HSL Newark + + + -4.2723323 55.8552259 + -4.2597439 55.8566199 + + dac.02003665 + + + 2013 HI1416 Dover TSS 2m WGS84 + Vessel - MV Vigilant MBES - Kongsberg EM2040 + + + -0.0073544 50.2300929 + 1.0477411 50.58746 + + dac.02003666 + + + 2013 2014-18049 Mid Hoyle Channel + Collected by Port of Mostyn + + + -3.3261277 53.3596959 + -3.3017177 53.3823143 + + dac.02003667 + + + 2014 2014-18049 Mostyn Channel & Harbour + Collected by Port of Mostyn + + + -3.2765698 53.3186131 + -3.2546525 53.349821 + + dac.02003668 + + + 2013 2014-18049 Mostyn Channel Flanks + Colllected by Port of Mostyn + + + -3.2791104 53.3275647 + -3.2547532 53.3469743 + + dac.02003669 + + + 2013 2014-18049 Mostyn & Dee Estuary + Collected by Port of Mostyn + + + -3.3276913 53.3063555 + -3.1848201 53.3870725 + + dac.02003670 + + + 2013 2014-18049 Mostyn Deep + Collected by Port of Mostyn + + + -3.3089083 53.3449651 + -3.2626293 53.3665693 + + dac.02003671 + + + 2004 HI1088 Falmouth Carrick Roads and Inner Harbour 2m SB + + + -5.0633552 50.1230493 + -5.0169336 50.1604972 + + dac.02003672 + + + 2013 2014-23419 Great Yarmouth Port Approaches + Collected by EastPort + + + 1.7328071 52.5488905 + 1.7896287 52.596768 + + dac.02003673 + + + 2013 2014-23419 Great Yarmouth Outer Harbour + Collected by EastPort + + + 1.7383178 52.5742537 + 1.7480095 52.5801326 + + dac.02003674 + + + 2013 2014-23419 Great Yarmouth River Port + Collected by EastPort + + + 1.7226364 52.5718391 + 1.7413784 52.6066795 + + dac.02003675 + + + 2014 2014-28582 Dover Harbour + Collected by Dover Harbour Board + + + 1.3094713 51.1109539 + 1.3455394 51.1270343 + + dac.02003676 + + + 2012 2013-277732 Plymouth to Start Point 1 + Collected by CEFAS + + + -3.996793 50.157903 + -3.6560458 50.2330562 + + dac.02003677 + + + 2012 2013-277732 Plymouth to Start Point 2 + Collected by CEFAS + + + -4.1360414 50.1566737 + -3.6139465 50.2489994 + + dac.02003678 + + + 2013 HI1404 Falmouth to Lizard 2m SB + Commissioned and owned by Teignbridge District Council. Surveyed by EGS International liaising with Channel Coastal Observatory as part of the Southwest Regional Coastal Monitoring Programme + + + -5.200325 49.9503271 + -5.0365444 50.1475987 + + dac.02003679 + + + 2013 HI1422 Milford Haven 1m SDTP + Bathymetry fully releasable. + + + -5.1929133 51.6488901 + -5.0017241 51.7027781 + + dac.02003680 + + + 2012 2014-41882 Shetland Grutness Voe + Colllected By Landswerk + + + -1.2834451 59.8736149 + -1.2744552 59.8786155 + + dac.02003681 + + + 2014 2014-43075 Bristol King Road + + + -2.7920597 51.4874201 + -2.6908347 51.5318744 + + dac.02003682 + + + 2011 HI1332 Shiant Islands Blk 1 2m SB + + + -6.6394762 57.8454373 + -6.3147035 58.0028736 + + dac.02003683 + + + 2011 HI1332 Shiant Islands Blk 1 4m SB + + + -6.6399838 57.8413517 + -6.2972985 58.0038255 + + dac.02003684 + + + 2011 HI1332 Shiant Islands Blk 1 8m SB + + + -6.6321525 57.8402878 + -6.239774 58.0032136 + + dac.02003685 + + + 2011 HI1332 Shiant Islands Blk 1a 2m SB + + + -6.9247735 57.7502231 + -6.4832602 57.8579825 + + dac.02003686 + + + 2011 HI1332 Shiant Islands Blk 1a 4m SB + + + -6.9223458 57.7484081 + -6.4252198 57.8597005 + + dac.02003687 + + + 2011 HI1332 Shiant Islands Blk 1a 8m SB + + + -6.913513 57.7475457 + -6.4405719 57.8590795 + + dac.02003688 + + + 2011 HI1332 Shiant Islands Blk 2 2m SB + + + -6.5331442 57.7508641 + -6.1694203 57.8986118 + + dac.02003689 + + + 2011 HI1332 Shiant Islands Blk 2 4m SB + + + -6.613835 57.7495256 + -6.1490208 57.914486 + + dac.02003690 + + + 2011 HI1332 Shiant Islands Blk 2 8m SB + + + -6.5920073 57.7490975 + -6.094868 57.9329324 + + dac.02003691 + + + 2011 HI1332 Shiant Islands Blk 3 2m SB + + + -6.295606 57.6883003 + -6.0892598 57.7859731 + + dac.02003692 + + + 2011 HI1332 Shiant Islands Blk 3 4m SB + + + -6.2964216 57.6863129 + -6.0603096 57.8154278 + + dac.02003693 + + + 2011 HI1332 Shiant Islands Blk 3 8m SB + + + -6.2956454 57.6852416 + -5.9999604 57.8613433 + + dac.02003694 + + + 2013 HI1312 Newhaven to Dungeness Blk 1 2m SB WGS84 + Collected by EGS (International) Ltd - SW Strategic Regional Coastal Monitoring Programme + + + 0.0525559 50.7241088 + 0.4032593 50.8256573 + + dac.02003695 + + + 2013 HI1312 Newhaven to Dungeness Blk 2 2m SB WGS84 + Collected by EGS (International) Ltd - SW Strategic Regional Coastal Monitoring Programme + + + 0.3371422 50.7888302 + 0.7373456 50.9147034 + + dac.02003696 + + + 2013 HI1312 Newhaven to Dungeness Blk 3 2m SB WGS84 + Collected by EGS (International) Ltd - SW Strategic Regional Coastal Monitoring Programme + + + 0.6743677 50.8700519 + 0.9977563 50.9764955 + + dac.02003697 + + + 2013 HI1415 Lands End TSS Blk 2 2m SB + MV Triad (Kongsberg 2040D) MTS Xplorer (Reson 7125) + + + -6.1041548 50.0780092 + -5.8300839 50.3011535 + + dac.02003698 + + + 2013 HI1415 Lands End TSS Blk 1 2m SB + MV Triad (Kongsberg 2040D) MTS Xplorer (Reson 7125) + + + -6.1006144 50.2961316 + -5.7167535 50.5045724 + + dac.02003699 + + + 2013 HI1415 Lands End TSS Blk 3 2m SB + MV Triad (Kongsberg 2040D) MTS Xplorer (Reson 7125) + + + -6.0967034 49.8824987 + -5.7218026 50.0966708 + + dac.02003700 + + + 2013 HI1433 Thames Estuary TE14 1m CUBE + Collected by EGS (International) Ltd using MV Wessex Explorer and FPV Morven + + + 1.434641 51.4290106 + 1.4888611 51.47914 + + dac.02003701 + + + 2013 HI1433 Thames Estuary TE19 1m CUBE + Collected by EGS (International) Ltd using MV Wessex Explorer & FPV Morven + + + 1.3878331 51.5622279 + 1.4303022 51.5786629 + + dac.02003702 + + + 2013 HI1433 Thames Estuary TE5A 1m CUBE + Collected by EGS (International) Ltd using MV Wessex Explorer & FPV Morven + + + 1.5511544 51.789288 + 1.6356174 51.8453746 + + dac.02003703 + + + 2013 HI1433 Thames Estuary TE3A 1m CUBE + Collected by EGS (International) Ltd using MV Wessex Explorer & FPV Morven + + + 1.562869 51.847462 + 1.6309852 51.8759093 + + dac.02003704 + + + 2013 HI1433 Thames Estuary Long Sand 2m SB + Collected by EGS (International) Ltd usint MV Wessex Explorer & FPV Morven + + + 1.5352886 51.7212593 + 1.6616799 51.8006062 + + dac.02003705 + + + 2013 HI1434 Dover Strait DWR C1 1m CUBE + Collected by EGS (International) Ltd using FPV Morven + + + 1.6739728 51.1447786 + 1.7261418 51.1974054 + + dac.02003706 + + + 2013 HI1434 Dover Strait DWR A 1m CUBE + Collected by EGS (International) Ltd using FPV Morven + + + 1.7258224 51.1513467 + 1.7942769 51.1831772 + + dac.02003707 + + + 2013 HI1434 Dover Strait DWR R2 1m CUBE + Collected by EGS (International) Ltd using FPV Morven + + + 1.9559273 51.3441054 + 2.0122457 51.3806468 + + dac.02003708 + + + 2013 HI1434 Dover Strait DS4 B 1m CUBE + Collected by EGS (International) Ltd using FPV Morven + + + 1.0067996 50.7641016 + 1.0455604 50.7875963 + + dac.02003709 + + + 2013 HI1434 Dover Strait DS4 A 1m CUBE + Collected by EGS (International) Ltd using FPV Morven + + + 0.9481861 50.7414276 + 0.9967891 50.7821228 + + dac.02003710 + + + 2013 HI1434 Dover Strait DS1 1m CUBE + Collected by EGS (International) Ltd using FPV Morven + + + 1.3748149 50.9605984 + 1.4261734 50.9947061 + + dac.02003711 + + + 2013 HI1434 Dover Strait DWR R3 1m CUBE + Collected by EGS (International) Ltd using FPV Morven + + + 2.0264931 51.4040768 + 2.0534885 51.4237765 + + dac.02003712 + + + 2013 HI1434 Dover Strait DWR R1 1m CUBE + Collected by EGS (International) Ltd using FPV Morven + + + 1.9306608 51.3365406 + 1.9580575 51.3487269 + + dac.02003713 + + + 2013 HI1434 Dover Strait DWR B2 1m CUBE + Collected by EGS (International) Ltd using FPV Morven + + + 1.9493695 51.3074443 + 2.054793 51.3699489 + + dac.02003714 + + + 2013 HI1434 Dover Strait DWR T 1m CUBE + Collected by EGS (International) Ltd using FPV Morven + + + 1.8200067 51.2031575 + 1.8824297 51.2644205 + + dac.02003715 + + + 2013 HI1434 Dover Strait DWR H 1m CUBE + Collected by EGS (International) Ltd using FPV Morven + + + 1.9155454 51.2529882 + 2.0148538 51.3102084 + + dac.02003716 + + + 2014 2014-56770 Cattewater Harbour + + + -4.1360134 50.3580774 + -4.1071619 50.3692938 + + dac.02003717 + + + 2013 HI1354 Firth of Lorn South 2m SB 30N + Vessels - RV Calanus (Reson 7125) RV White Ribbon & MV Pole Star (Kongsberg EM3002) + + + -5.8799994 56.1177404 + -5.4901438 56.3062378 + + dac.02003718 + + + 2013 HI1354 Firth of Lorn South 4m SB 30N + Vessels - RV Calanus (Reson 7125) RV White Ribbon & MV Pole Star (Kongsberg EM3002) + + + -5.8753485 56.1202436 + -5.632356 56.3066132 + + dac.02003719 + + + 2013 HI1354 Firth of Lorn South 8m SB 30N + Vessels - RV Calanus (Reson 7125) RV White Ribbon & MV Pole Star (Kongsberg EM3002) + + + -5.8703771 56.1468502 + -5.6572771 56.3063148 + + dac.02003720 + + + 2013 HI1354 Firth of Lorn North 2m SB 30N + Vessels - RV Calanus (Reson 7125) RV White Ribbon & MV Pole Star (Kongsberg EM3002) + + + -5.8896408 56.299835 + -5.4322739 56.5147857 + + dac.02003721 + + + 2013 HI1354 Firth of Lorn North 4m SB 30N + Vessels - RV Calanus (Reson 7125) RV White Ribbon & MV Pole Star (Kongsberg EM3002) + + + -5.8283707 56.3010073 + -5.5608443 56.5087586 + + dac.02003722 + + + 2013 HI1354 Firth of Lorn North 8m SB 30N + Vessels - RV Calanus (Reson 7125) RV White Ribbon & MV Pole Star (Kongsberg EM3002) + + + -5.7898598 56.3023099 + -5.5774616 56.5152899 + + dac.02003723 + + + 2014 2014-64914 Bristol Docks + Echosounder - Reson 7101 + + + -2.6280333 51.4469031 + -2.6224138 51.4539304 + + dac.02003724 + + + 2014 2014-63043 H102 02-14 Oban NLB Jetty 1m + Collected by Fleet HM Unit using BGS vessel White Ribbon + + + -5.4836177 56.4114163 + -5.4790048 56.4133837 + + dac.02003725 + + + 2013 HI1420 Off Skerries TSS Blk A-C 4m SB + MBES = Kongsberg EM2040D + + + -5.0439996 53.3040875 + -4.4986297 53.6276646 + + dac.02003726 + + + 2013 HI1420 Off Skerries TSS Blk D-E 2m SB + MBES = Kongsberg EM2040D + + + -4.853787 53.3060239 + -4.4866149 53.4882561 + + dac.02003727 + + + 2014 2014-60148 Shoreham Harbour Eastern Arm + Collected by Shoreham Port. NB Data contains significant noise and should be used with extreme caution + + + -0.2524365 50.821744 + -0.238688 50.8310675 + + dac.02003728 + + + 2013 HI1432 East Anglia RRS EA3A 1m CUBE + Collected by EGS(International) Ltd using MV Wessex Explorer, FPV Morven (Kongsberg EM3002D) and MV Echo (SBES) + + + 1.7551864 52.677415 + 1.7641409 52.6957644 + + dac.02003729 + + + 2013 HI1432 East Anglia RRS EA3B 1m CUBE + Collected by EGS(International) Ltd using MV Wessex Explorer, FPV Morven (Kongsberg EM3002D) and MV Echo (SBES) + + + 1.7635398 52.6867075 + 1.7798094 52.6998771 + + dac.02003730 + + + 2013 HI1432 East Anglia RRS EA9 1m CUBE + Collected by EGS(International) Ltd using MV Wessex Explorer, FPV Morven (Kongsberg EM3002D) and MV Echo (SBES) + + + 1.7711012 52.496891 + 1.8355618 52.6181738 + + dac.02003731 + + + 2013 HI1432 East Anglia RRS EA10A 1m CUBE + Collected by EGS(International) Ltd using MV Wessex Explorer, FPV Morven (Kongsberg EM3002D) and MV Echo (SBES) + + + 1.7740706 52.4336584 + 1.798515 52.4578355 + + dac.02003732 + + + 2013 HI1432 East Anglia RRS EA10B 1m CUBE + Collected by EGS(International) Ltd using MV Wessex Explorer, FPV Morven (Kongsberg EM3002D) and MV Echo (SBES) + + + 1.7540113 52.4656509 + 1.7728195 52.4776082 + + dac.02003733 + + + 2013 HI1432 East Anglia RRS Scroby & Holm Sands 1m CUBE + Single beam lines collected by EGS(International) Ltd using MV Wessex Explorer (Kongsberg EM3002D) and MV Echo (SBES) + + + 1.771206 52.4817612 + 1.8296688 52.6872396 + + dac.02003734 + + + 2013 HI1432 East Anglia RRS Scroby & Holm Sands 2m SDTP + Single beam lines collected by EGS(International) Ltd using MV Wessex Explorer (Kongsberg EM3002D) and MV Echo (SBES) + + + 1.7716054 52.4943385 + 1.8303333 52.6890693 + + dac.02003735 + + + 2014 2014-67316 Dover Harbour + Collected by Dover Harbour Board + + + 1.3094857 51.1109124 + 1.3454791 51.1269953 + + dac.02003736 + + + 2013 2014-85601 Harwich + Collected by Harwich Haven Authority + + + 1.4504416 51.9606357 + 1.4690599 51.9731189 + + dac.02003737 + + + 2011 HI1326 Culver Sands to Flat Holm 2m SDTP + Shoal biased surface archived 25/04/14 to replace incorrect version + + + -3.3037532 51.2950539 + -3.1125701 51.4035296 + + dac.02003738 + + + 2014 HI1435 Dover Strait TSS 2m SDTP + Vessels - MV Seabeam (Kongsberg EM2040Q) & MV Triad (EM2040D) + + + -0.3366477 50.394304 + 0.0958164 50.6060769 + + dac.02003739 + + + 2014 2014-87157 River Avon + + + -2.70819 51.4503 + -2.62503 51.49692 + + dac.02003740 + + + 2014 HI1436 Dover Strait Bassurelle and Bullock Banks 2m SB + Vessel = MV Vigilant using Kongsberg EM2040D + + + 0.5942764 50.4813044 + 1.2702097 50.8403555 + + dac.02003741 + + + 2014 2014-101043 Bristol Denny Shoal + + + -2.7724068 51.4969186 + -2.7396709 51.511227 + + dac.02003742 + + + 2014 2014-94859 Liverpool Garston Channel 2m SB + + + -2.9617045 53.3510312 + -2.9176118 53.3716899 + + dac.02003743 + + + 2014 2014-94859 Liverpool Alfred River Entrance 2m SB + + + -3.0182757 53.3979346 + -3.0056098 53.407265 + + dac.02003744 + + + 2014 2014-94859 Liverpool Eastham Approaches 2m SB + + + -2.9531992 53.3215537 + -2.9469303 53.3282966 + + dac.02003745 + + + 2014 2014-94859 Liverpool Garston Bar 2m SB + + + -2.9859903 53.3699643 + -2.9598996 53.3787787 + + dac.02003746 + + + 2013 2014-94859 Liverpool Egg Buoy to Seacombe Stage 2m SB + + + -3.0217299 53.408478 + -3.0023468 53.4254492 + + dac.02003747 + + + 2014 2014-94859 Liverpool Eastham Channel 2m SB + + + -2.9632008 53.3274799 + -2.94976 53.3438419 + + dac.02003748 + + + 2014 2014-94859 Liverpool Eastham Bar 2m SB + + + -2.9724134 53.3426027 + -2.9578227 53.3592505 + + dac.02003749 + + + 2013 2014-94859 Liverpool Mid River Dredging Disposal Site 2m SB + + + -3.0250956 53.4313529 + -3.0110929 53.4403255 + + dac.02003750 + + + 2014 2014-94859 Liverpool Langton River Entrance 2m SB + + + -3.0130518 53.4336739 + -3.0080834 53.4396066 + + dac.02003751 + + + 2014 2014-94859 Liverpool Brazil Elbow 2m SB + + + -3.0745217 53.4471427 + -3.0277374 53.4796323 + + dac.02003752 + + + 2014 2014-94859 Liverpool Landing Stages 2m SB + + + -3.009011 53.4006495 + -2.995984 53.4106271 + + dac.02003753 + + + 2014 2014-94859 Liverpool New Brighton Shoal 2m SB + + + -3.0413781 53.4327994 + -3.0191488 53.4521786 + + dac.02003754 + + + 2013 2014-94859 Liverpool Seacombe Stage 2m SB + + + -3.0152999 53.4088465 + -3.0118091 53.4115434 + + dac.02003755 + + + 2013 2014-94859 Liverpool Cammell Lairds Wall 2m SB + + + -3.008135 53.3837865 + -3.0028716 53.3914989 + + dac.02003756 + + + 2014 2014-94859 Liverpool Gladstone River Entrance SB + + + -3.0220557 53.443868 + -3.0144475 53.4525096 + + dac.02003757 + + + 2014 2014-94859 Liverpool Pluckington Bank 2m SB + + + -3.0048132 53.3714425 + -2.9668112 53.4046676 + + dac.02003758 + + + 2014 2014-94859 Liverpool Bromborough Wall 2m SB + + + -2.9789493 53.3516929 + -2.9659708 53.3604125 + + dac.02003759 + + + 2014 2014-94859 Liverpool Tranmere Oil Stages 2m SB + + + -3.0031422 53.3755707 + -2.991597 53.3849371 + + dac.02003760 + + + 2014 HI1442 Dover Strait TSS Central 2m SB + Vessel = MV Vigilant MBES = Kongsberg 2040D + + + 0.0888179 50.3872436 + 0.631525 50.5478327 + + dac.02003761 + + + 2014 2014-101035 Severn Estuary Bridge Patch + + + -3.0087916 51.437411 + -2.9767411 51.4570377 + + dac.02003762 + + + 2013 2014-106994 Brixham Harbour + Echosounder Reson 215 + + + -3.5183243 50.3959765 + -3.5052983 50.4058816 + + dac.02003763 + + + 2014 HI1443 Dover Strait TSS West 2m CUBE + Second vessel = MV Icebeam. MBES = Kongsberg EM2040D + + + -0.3335173 50.3139653 + 0.1200824 50.4638136 + + dac.02003764 + + + 2013 2014-106996 Chichester Harbour + + + -0.8793829 50.8008631 + -0.8250361 50.8120728 + + dac.02003765 + + + 2014 2014-106995 Chichester Bar + + + -0.9505058 50.7558214 + -0.9306658 50.7848252 + + dac.02003766 + + + 2014 2014-116690 Bristol Severn Bar + + + -2.7442082 51.5053181 + -2.7103861 51.5277521 + + dac.02003767 + + + 2012 2014-60377 Ardrossan Harbour 2m SB + Collected by Clydeport plc + + + -4.8333717 55.636511 + -4.8164948 55.645837 + + dac.02003768 + + + 2012 2014-60377 Kyles of Bute 2m SB + Collected by Clydeport plc + + + -5.1864702 55.9222203 + -5.1656678 55.9333157 + + dac.02003769 + + + 2008 2014-60377 Hunterston Construction Yard 2m SB + Collected by Clydeport plc + + + -4.9004135 55.7352419 + -4.8864264 55.7445893 + + dac.02003770 + + + 2013 2014-60377 Hunterston Platform Yard 2m SB + Collected by Clydeport plc + + + -4.896451 55.7378711 + -4.886349 55.745027 + + dac.02003771 + + + 2014 2014-60377 Hunterston Platform Yard 2m SB + Collected by Clydeport plc + + + -4.8954943 55.7376901 + -4.8864969 55.7449455 + + dac.02003772 + + + 2011 2014-60377 Hunterston Forward Working Area 2m SB + Collected by Clydeport plc + + + -4.8844306 55.7489957 + -4.8711064 55.7572916 + + dac.02003773 + + + 2012 2014-60377 Hunterston Coal Jetty 2m SB + Collected by Clydeport plc + + + -4.8849893 55.749598 + -4.8721764 55.7566911 + + dac.02003774 + + + 2014 2014-60377 Hunterston Coal Jetty 2m SB + Collected by Clydeport plc + + + -4.8837429 55.7502562 + -4.8734021 55.7564338 + + dac.02003775 + + + 2014 2014-60377 River Clyde 2m SB + Collected by Clydeport plc + + + -4.7724448 55.8517958 + -4.245576 55.9635372 + + dac.02003776 + + + 2014 HI1447 Blakeney Overfalls 1m CUBE + MBES = Kongsberg 2040Q + + + 0.8842412 52.9697935 + 1.2159268 53.0565151 + + dac.02003777 + + + 2014 2014-119655 Folkestone + + + 1.1857314 51.0757638 + 1.1962766 51.0807384 + + dac.02003778 + + + 2014 HI1430 Western Apps to Dover TSS Blk1 2m SB + MBES - Kongsberg 2040D + + + -1.2076963 50.1213082 + -0.3249367 50.245912 + + dac.02003779 + + + 2014 HI1430 Western Apps to Dover TSS Blk2 2m SB + MBES - Kongsberg 2040D + + + -0.3369916 50.1891454 + 0.0037566 50.3669792 + + dac.02003780 + + + 2014 2014-124976 Bristol King Road Upper + + + -2.7562307 51.5221519 + -2.6766073 51.5495504 + + dac.02003781 + + + 2014 2014-106996 J923 Chichester Harbour + + + -0.9393223 50.7859533 + -0.9021429 50.7951031 + + dac.02003782 + + + 2014 2014-140879 J903 Weymouth Bay + + + -2.4524836 50.6086599 + -2.4231703 50.6335475 + + dac.02003783 + + + 2014 HI1424 DWR North Hinder to Brown Ridge 2m CUBE + Echosounder - Kongsberg 2040D + + + 2.4904862 52.017184 + 2.9903114 52.4312535 + + dac.02003784 + + + 2014 HI1419 Approaches to the Humber Blk2 1m CUBE + Vessels:- MVConfidante (Kongsberg EM3002D), MV Titan Endeavour (Reson 7125), MV Vigilant (Kongsberg EM2040D) + + + 0.3763318 53.309263 + 0.6882838 53.6609488 + + dac.02003785 + + + 2014 HI1419 Approaches to the Humber Blk4 1m CUBE + Vessels:- MV Confidante (Kongsberg EM3002D), MV Titan Endeavour (Reson 7125), MV Vigilant (Kongsberg EM2040D) + + + 0.1817674 53.3066942 + 0.4445641 53.5412212 + + dac.02003786 + + + 2011 2014-101116 Menai Strait Plas Newydd SB 10m + Commissioned, collected and owned by SEACAMS, Bangor University. Vessel = Macoma MBES = Reson 7101 + + + -4.217535 53.185725 + -4.203675 53.210655 + + dac.02003787 + + + 2014 2014-169253 Shoreham Harbour Western Arm + Collected by Shoreham Port + + + -0.2691125 50.8304256 + -0.2515978 50.8319091 + + dac.02003788 + + + 2014 2014-169253 Shoreham Harbour Soldiers Point + Collected by Shoreham Port + + + -0.2523881 50.828572 + -0.2479278 50.8310325 + + dac.02003789 + + + 2014 2014-169253 Shoreham Harbour Eastern Arm + Collected by Shoreham Port + + + -0.2489174 50.8217243 + -0.238584 50.8307829 + + dac.02003790 + + + 2014 2014-169253 Shoreham Harbour Canal + Collected by Shoreham Port + + + -0.2363748 50.8270603 + -0.2013201 50.8314113 + + dac.02003791 + + + 2014 2014-169417 Bristol Denny Shoal + + + -2.7724066 51.497728 + -2.7396755 51.5117635 + + dac.02003792 + + + 2014 2014-169265 Bristol Severn Bar + + + -2.7441857 51.5050573 + -2.7103464 51.5274942 + + dac.02003793 + + + 2012 HI1353 Carlingford Lough 2m SB + Vessels - RV Corystes & FPV Banrion Uladh + + + -6.2612453 53.9317111 + -5.6410757 54.2464368 + + dac.02003794 + + + 2014 HI1460 Dover Strait DWR C1 1m CUBE + Collected by EGS (International) Ltd using vessel EGS Pioneer + + + 1.6746834 51.1452294 + 1.7258889 51.2024112 + + dac.02003795 + + + 2014 2014-185756 J928 Holyhead + + + -4.6345865 53.3096714 + -4.5997123 53.3312329 + + dac.02003796 + + + 2014 HI1426 DWR Via DR1 South Blk1&2 2m CUBE + Vessels - MV Icebeam (Kongsberg EM2040D) MV Franklin & THV Alert (EM3002D) + + + 2.5679451 52.1697818 + 2.7607346 52.7416748 + + dac.02003797 + + + 2014 HI1425 DWR via DR1 Welland Field 1m CUBE + Vessels - MV Franklin & THV Alert + + + 2.5623198 52.7367239 + 2.761005 53.0858019 + + dac.02003798 + + + 2014 2014-201364 Bristol Bridge Patch + + + -3.0096758 51.4374093 + -2.9767205 51.4575825 + + dac.02003799 + + + 2014 HI1454 Eddystone Rocks to Bolt Hd 2m SDTP + + + -4.4033301 50.0741718 + -3.7816963 50.1887817 + + dac.02003800 + + + 2014 2014-209037 Bristol Swash Channel + + + -2.7211049 51.4949171 + -2.7052348 51.5069324 + + dac.02003801 + + + 2014 2014-217064 Lymington + + + -1.5368583 50.7297669 + -1.4945725 50.7599888 + + dac.02003802 + + + 2014 2014-217370 Dover Harbour + Collected by Dover Harbour Board - Vessel unknown + + + 1.3094467 51.1106176 + 1.3456535 51.1271262 + + dac.02003803 + + + 2014 2014-221727 Severn Estuary Bristol Deep + Vessel Unknown + + + -2.9514328 51.4469835 + -2.8617899 51.492329 + + dac.02003804 + + + 2014 HI1421 Approaches to The Wash 1m CUBE + Vessels - MV Vigilant (Kongsberg EM2040D) & MV Titan Endeavour (Reson 7125) + + + 0.408416 52.9959855 + 0.7372768 53.3258505 + + dac.02003805 + + + 2013 HI1375 Carmarthen Bay 2m SB + Vessels - Ocean Dawn, Valkyrie, Shogun & EMU Surveyor. Secondary MBES - Reson 7125 + + + -4.925263 51.4805983 + -4.3017336 51.7311356 + + dac.02003806 + + + 2014 2014-227555 Harwich Cork Sand + Collected by Harwich Haven Authority - charted wrecks and obstructions surveyed with Reson7125 MBES + + + 1.3440813 51.8324347 + 1.445497 51.9285078 + + dac.02003807 + + + 2014 HI1429 Dover TSS Extension 1m CUBE + + + 1.8242925 51.3765507 + 2.4791701 51.858926 + + dac.02003808 + + + 2014 HI1459 TE5 Long Sand Head 1m CUBE + Collected by EGS. Vessels - EGS Pioneer (Kongsberg EM2040D) Wessex Explorer (EM3002D) + + + 1.6166514 51.8094366 + 1.6580295 51.8442001 + + dac.02003809 + + + 2014 HI1459 TE5A Trinity DW & Long Sand Head 1m CUBE + Collected by EGS. Vessels - EGS Pioneer (Kongsberg EM2040D) Wessex Explorer (EM3002D) + + + 1.5883415 51.7879039 + 1.6662434 51.8260279 + + dac.02003810 + + + 2014 HI1459 TE6 Black Deep 1m SDTP + Collected by EGS + + + 1.3652714 51.6174104 + 1.5416335 51.7592739 + + dac.02003811 + + + 2014 HI1459 Thames Estuary Long Sand 2m SDTP + Collected by EGS + + + 1.4804089 51.6818714 + 1.5852599 51.7469472 + + dac.02003812 + + + 2014 HI1459 TE3 South Ship Head 1m CUBE + Collected by EGS. Vessels - EGS Pioneer (Kongsberg EM2040D) Wessex Explorer (EM3002D) + + + 1.5617255 51.8817973 + 1.5900526 51.9042028 + + dac.02003813 + + + 2014 HI1459 TE3A Sunk 1m CUBE + Collected by EGS. Vessels - EGS Pioneer (Kongsberg EM2040D) Wessex Explorer (EM3002D + + + 1.5442971 51.8414255 + 1.6373584 51.8845951 + + dac.02003814 + + + 2014 HI1459 TE5A Sunk DW 1m CUBE + Collected by EGS. Vessels - EGS Pioneer (Kongsberg EM2040D) Wessex Explorer (EM3002D) + + + 1.545938 51.8079675 + 1.5833165 51.8445435 + + dac.02003815 + + + 2014 2014-238889 Lymington + + + -1.529296 50.7444928 + -1.5014895 50.7566616 + + dac.02003818 + + + 2014 2014-249544 Bristol Denny Shoal & Severn Bar + Vessel Unknown + + + -2.7727052 51.4976963 + -2.7101303 51.5277843 + + dac.02003819 + + + 2013 HI1351 Dundalk Bay and Approaches 2m SDTP + Data recleaned and rearchived 2014. Collected by GSI & Marine Institute Ireland (INFOMAR project). Vessels - Celtic Voyager, Keary (EM3002D), Geo (SEA Swath Plus) & Cosantoir Bradan (Reson 7101) + + + -6.3895022 53.7938139 + -5.8583528 54.016231 + + dac.02003820 + + + 2014 2014-255292 Warrenpoint + Collected by ADBP - Vessel unknown + + + -6.2626899 54.098805 + -6.2586146 54.1010378 + + dac.02003821 + + + 2012 2014-255292 Warrenpoint and Approach + Collected by DEEP - Vessel unknown + + + -6.2677377 54.0717077 + -6.2067669 54.1023487 + + dac.02003822 + + + 2005 2006-362557 Thames Estuary Princess Bar and Shivering Sands + This data may be obtained at higher density from the Port of London Authority + + + 1.0621181 51.4607284 + 1.2784476 51.5284365 + + dac.02003823 + + + 2014 HI1458 East Anglia RRS EA3 1m CUBE + Collected by EGS. Vessels - EGS Pioneer (Kongberg EM2040D) Wessex Explorer (EM3002D & Echo (SBES) + + + 1.753704 52.6759232 + 1.7904057 52.7019071 + + dac.02003824 + + + 2014 HI1458 East Anglia RRS EA4a 1m CUBE + Collected by EGS. Vessels - EGS Pioneer (Kongberg EM2040D) Wessex Explorer (EM3002D & Echo (SBES) + + + 1.7439923 52.6142578 + 1.7631213 52.6793819 + + dac.02003825 + + + 2014 HI1458 East Anglia RRS EA4 1m CUBE + Collected by EGS. Vessels - EGS Pioneer (Kongberg EM2040D) Wessex Explorer (EM3002D & Echo (SBES) + + + 1.7699121 52.6159933 + 1.7818153 52.6787566 + + dac.02003826 + + + 2014 HI1458 East Anglia RRS EA7 1m CUBE + Collected by EGS. Vessels - EGS Pioneer (Kongberg EM2040D) Wessex Explorer (EM3002D & Echo (SBES) + + + 1.8255257 52.5804324 + 1.9070128 52.741238 + + dac.02003827 + + + 2014 HI1458 East Anglia RRS EA7a 1m CUBE + Collected by EGS. Vessels - EGS Pioneer (Kongberg EM2040D) Wessex Explorer (EM3002D & Echo (SBES) + + + 1.837612 52.6107451 + 1.8707552 52.6315393 + + dac.02003828 + + + 2014 HI1458 East Anglia RRS EA7b 1m CUBE + Collected by EGS. Vessels - EGS Pioneer (Kongberg EM2040D) Wessex Explorer (EM3002D & Echo (SBES) + + + 1.8815861 52.6411576 + 1.8983017 52.6737503 + + dac.02003829 + + + 2014 HI1458 East Anglia RRS EA7c 1m CUBE + Collected by EGS. Vessels - EGS Pioneer (Kongberg EM2040D) Wessex Explorer (EM3002D & Echo (SBES) + + + 1.8372295 52.6819568 + 1.849901 52.701148 + + dac.02003830 + + + 2014 HI1458 East Anglia RRS EA9 1m CUBE + Collected by EGS. Vessels - EGS Pioneer (Kongberg EM2040D) Wessex Explorer (EM3002D & Echo (SBES) + + + 1.7572956 52.4819351 + 1.8576374 52.6176862 + + dac.02003831 + + + 2014 HI1458 East Anglia RRS EA10a 1m CUBE + Collected by EGS. Vessels - EGS Pioneer (Kongberg EM2040D) Wessex Explorer (EM3002D & Echo (SBES) + + + 1.7733225 52.4338207 + 1.7958859 52.4575776 + + dac.02003832 + + + 2014 HI1458 East Anglia RRS EA10b 1m CUBE + Collected by EGS. Vessels - EGS Pioneer (Kongberg EM2040D) Wessex Explorer (EM3002D & Echo (SBES) + + + 1.7531591 52.4659752 + 1.7684425 52.4770413 + + dac.02003833 + + + 2014 HI1458 East Anglia RRS EA12 2m SDTP + Collected by EGS. Vessels - EGS Pioneer (Kongberg EM2040D) Wessex Explorer (EM3002D & Echo (SBES) + + + 1.7237826 52.3842749 + 1.7896316 52.4675348 + + dac.02003834 + + + 2014 2014-267072 Liverpool Brazil Elbow 2m + Vessel Unknown + + + -3.079746 53.445852 + -3.026034 53.479548 + + dac.02003835 + + + 2014 2014-267072 Liverpool Queens Channel West + Vessel unknown + + + -3.28041 53.514504 + -3.222522 53.524944 + + dac.02003836 + + + 2014 2014-267072 Liverpool Queens Channel East + Vessel unknown + + + -3.2321209 53.5137058 + -3.1720462 53.5305147 + + dac.02003837 + + + 2014 2014-267072 Liverpool Crosby Shoal and Askew Spit + Vessel unknown + + + -3.173832 53.515152 + -3.123144 53.531856 + + dac.02003838 + + + 2014 2014-267072 Liverpool Crosby Channel South + Vessel unknown + + + -3.101184 53.467938 + -3.057552 53.501058 + + dac.02003843 + + + 2014 2014-267072 Liverpool Brazil Elbow + Vessel unknown + + + -3.079746 53.445852 + -3.026034 53.479548 + + dac.02003844 + + + 2014 2014-267072 Liverpool New Brighton Shoal + Vessel unknown + + + -3.041766 53.433306 + -3.014982 53.451954 + + dac.02003845 + + + 2014 2014-267072 Liverpool Gladstone River Entrance + Vessel unknown + + + -3.021219 53.443791 + -3.013839 53.452449 + + dac.02003846 + + + 2014 2014-267072 Liverpool Langton River Entrance + Vessel unknown + + + -3.013497 53.433045 + -3.007719 53.441541 + + dac.02003847 + + + 2014 2014-272149 Warrenpoint Approach Channel + Collected by Warrenpoint Harbour Authority - vessel unknown + + + -6.255761 54.0690752 + -6.2015589 54.0964571 + + dac.02003848 + + + 2014 2014-272149 Warrenpoint Harbour + Collected by Warrenpoint Harbour Authority - vessel unknown + + + -6.2626899 54.098805 + -6.2586146 54.1010378 + + dac.02003849 + + + 2014 2014-272910 Weymouth Harbour + + + -2.459664 50.6064537 + -2.4393151 50.6135918 + + dac.02003850 + + + 2014 2015-240 Chichester Harbour + + + -0.9440367 50.7563944 + -0.9054688 50.7943086 + + dac.02003851 + + + 2014 HI1455 Eddystone Rocks to Lizard Point Blk1 2m SDTP + MBES - Kongsberg EM2040Q + + + -4.4870596 50.1735245 + -4.4811344 50.1768175 + + dac.02003852 + + + 2014 HI1455 Eddystone Rocks to Lizard Point Blk1 4m SDTP + MBES - Kongsberg EM2040Q + + + -4.7419439 50.0145213 + -4.397138 50.242345 + + dac.02003853 + + + 2014 HI1455 Eddystone Rocks to Lizard Point Blk2 2m SDTP + MBES - Kongsberg EM2040Q + + + -5.2000792 49.9405798 + -5.0516973 50.0164222 + + dac.02003854 + + + 2014 HI1455 Eddystone Rocks to Lizard Point Blk2 4m SDTP + MBES - Kongsberg EM2040Q + + + -5.2013039 49.9354451 + -4.7295589 50.1989569 + + dac.02003855 + + + 2014 2015-248 Isles of Scilly St Marys Harbour + + + -6.3173554 49.9152961 + -6.308326 49.9236297 + + dac.02003856 + + + 2014 2015-5296 Isle of Wight Yarmouth Harbour + + + -1.5117367 50.6994311 + -1.495127 50.7101072 + + dac.02003857 + + + 2014 2015-5294 Isle of Wight Yarmouth Harbour + + + -1.5095725 50.6982412 + -1.4966995 50.7094604 + + dac.02003858 + + + 2014 HI1452 Orwell Field S1 1m CUBE + Vessel - MV Vigilant using Kongsberg EM2040D + + + 2.9877527 52.7768924 + 3.1798789 52.9432081 + + dac.02003859 + + + 2014 HI1452 Orwell Field S2 1m CUBE + Vessel - MV Vigilant using Kongsberg EM2040D + + + 2.9884342 52.646286 + 3.1022635 52.7787608 + + dac.02003860 + + + 2014 HI1452 Orwell Field C1 1m CUBE + Vessel - MV Vigilant using Kongsberg EM2040D + + + 2.991279 53.1469618 + 3.103248 53.3579972 + + dac.02003861 + + + 2014 HI1452 Orwell Field C2 1m CUBE + Vessel - MV Vigilant using Kongsberg EM2040D + + + 2.9876337 52.9409509 + 3.161691 53.1480311 + + dac.02003862 + + + 2014 HI1452 Orwell Field N 1m CUBE + Vessel - MV Vigilant using Kongsberg EM2040D + + + 2.9898433 53.3570544 + 3.0445695 53.5620056 + + dac.02003863 + + + 2012 2015-10434 Harwich North Channel + Collected by Harwich Haven Authority Vessel unknown + + + 1.4467017 51.9343612 + 1.5265332 51.955599 + + dac.02003864 + + + 2012 2015-10434 Harwich South Channel West + Collected by Harwich Haven Authority Vessel Unknown + + + 1.3483542 51.9219525 + 1.4587603 51.9332512 + + dac.02003865 + + + 2012 2015-10434 Harwich South Channel East + Collected by Harwich Haven Authority. Vessel Unknown + + + 1.4472975 51.9186583 + 1.518667 51.9381447 + + dac.02003866 + + + 2014 HI1428 Newarp Banks to Cross Sands 1m CUBE + Vessel - MV Vigilant using Kongsberg 2040D + + + 1.6845993 52.5715988 + 2.2317632 52.8199977 + + dac.02003867 + + + 2014 HI1448 Dover Harbour 50cm SDTP + + + 1.3103426 51.0943772 + 1.3472107 51.1271708 + + dac.02003868 + + + 2015 2015-15460 Lymington + + + -1.5307173 50.744381 + -1.501817 50.7586444 + + dac.02003869 + + + 2012 2015-20762 Harwich Approach + Collected by Harwich Haven Authority - vessel unknown + + + 1.3484041 51.9256501 + 1.4567228 51.9654183 + + dac.02003870 + + + 2014 2015-20771 Firth of Tay Taybar + Collected by Forth Ports Ltd - vessel unknown + + + -2.6865694 56.4480219 + -2.6270926 56.4781651 + + dac.02003871 + + + 2014 2015-20771 Firth of Tay Lady Shoal + Collected by Forth Ports Ltd Vessel uknown + + + -2.8392812 56.4502038 + -2.7685696 56.4596538 + + dac.02003872 + + + 2015 2015-20771 Dundee Queen Elizabeth Wharf to Princess Alexandra Wharf + Collected by Forth Ports Ltd - vessel unknown + + + -2.9560973 56.4577186 + -2.9370186 56.4650123 + + dac.02003873 + + + 2015 2015-20771 Dundee Harbour to Spoil Ground + Collected by Forth Ports Ltd - vessel unknown + + + -2.9563435 56.4495313 + -2.912631 56.4660241 + + dac.02003874 + + + 2015 2015-20771 Dundee Caledon East Wharf to Prince Charles Wharf + Collected by Forth Ports Lts - vessel unknown + + + -2.9283078 56.461652 + -2.9161158 56.4657099 + + dac.02003875 + + + 2015 2015-20771 Princes Alexandra Wharf to Prince Charles Wharf + Collected by Forth Ports Ltd - vessel unknown + + + -2.9410656 56.4599895 + -2.9215758 56.4657829 + + dac.02003876 + + + 2015 2015-25519 River Fal - Greatwood Rock + Commissioned and owned by Truro & Penryn Harbours, Cornwall Council + + + -5.0535719 50.1873238 + -5.0524632 50.1883184 + + dac.02003877 + + + 2013 2015-37434 Stromness Harbour + Commissioned by BAM Nuttal Ltd. Vessel - Marine Sensor using R2Sonic 2024 MBES + + + -3.2952027 58.9596084 + -3.2920739 58.9630576 + + dac.02003878 + + + 2015 2015-25519 Truro River + Owned by Cornwall County Council + + + -5.0221434 50.2341002 + -5.0123019 50.2448079 + + dac.02003879 + + + 2015 2015-42482 Harwich Wreck Sites + Collected By Harwich Haven Authority - Vessel unknown + + + 1.3861163 51.9373559 + 1.4060538 51.9436133 + + dac.02003880 + + + 2013 2015-19425 Isles of Scilly Bristows to the Stones rMCZ 2m SDTP + CATZOC polygon attached. Collected by Cefas & JNCC in partnership with Natural England. Vessel - Cefas Endeavour + + + -6.2279116 49.9732715 + -6.1381247 50.0423817 + + dac.02003881 + + + 2013 2015-59771 Isle of May 2m SDTP + Vessel - BGS White Ribbon CATZOC Polygon attached + + + -2.7691191 56.10408 + -2.5144326 56.2500552 + + dac.02003882 + + + 2014 HI1441 Loch Etive 2m SDTP + Vessel - MV White Ribbon + + + -5.4184813 56.4385625 + -5.068587 56.560017 + + dac.02003883 + + + 2014 HI1441 Loch Etive 4m SDTP + Vessel - MV White Ribbon + + + -5.4102426 56.441247 + -5.0929529 56.5356446 + + dac.02003884 + + + 2014 HI1441 Loch Etive 8m SDTP + Vessel - MV White Ribbon + + + -5.2134003 56.4468982 + -5.1344715 56.4991711 + + dac.02003885 + + + 2014 HI1450 Approaches to Cardigan Bay Blk 1 4m SDTP + Kongsberg EM2040Q + + + -5.1235949 52.4803458 + -4.8365294 52.6747968 + + dac.02003886 + + + 2014 HI1450 Approaches to Cardigan Bay Blk 2 2m SDTP + Kongsberg EM2040Q + + + -4.8830771 52.6089325 + -4.6064234 52.7935568 + + dac.02003887 + + + 2014 HI1450 Approaches to Cardigan Bay Blk 3 2m SDTP + Kongsberg EM2040Q + + + -4.8761072 52.4416847 + -4.6058721 52.611776 + + dac.02003888 + + + 2014 HI1450 Approaches to Cardigan Bay Blk 4 2m SDTP + Kongsberg EM2040Q + + + -4.8398067 52.2710676 + -4.606333 52.4444304 + + dac.02003889 + + + 2015 2015-63046 Port of Boston Approaches + Collected by Port of Boston - Vessel PV Lyn Ellis + + + 0.0888109 52.9295775 + 0.1415758 52.961407 + + dac.02003890 + + + 2014 2015-70691 RMCZ Silver Pit 2m SDTP + CATZOC & Pipeline hobs attached + + + 0.6270851 53.378753 + 0.8541083 53.79467 + + dac.02003891 + + + 2014 2015-19426 Kentish Knock 2m WGS84 SB + CATZOC polygons attached. Vessel - Cefas Endeavour - Joint partnership between Cefas & Natural England + + + 1.7055784 51.5907594 + 1.8801712 51.7260595 + + dac.02003892 + + + 2012 2014-249146 South West Islay 2m SB + Data gathered for Scottish Government for planning location and deployment of marine renewable energy devices. Vessel - MRV Scotia + + + -6.6780114 55.5225281 + -6.249195 55.7094179 + + dac.02003893 + + + 2014 2014-267072 Liverpool Crosby Shoal + Vessel unknown + + + -3.11499 53.49168 + -3.084174 53.518032 + + dac.02003895 + + + 2014 2014-267072 Liverpool Crosby Channel North + Vessel unknown + + + -3.128364 53.509536 + -3.099996 53.526384 + + dac.02003896 + + + 2009 2009-158507 Thames Estuary Black Deep + This data may be obtained at higher density from the Port of London Authority + + + 1.2635326 51.5803486 + 1.3827612 51.6593713 + + dac.02003897 + + + 2009 2009-158510 Thames Estuary Kings Channel to East Swin + This data may be obtained at higher density from the Port of London Authority + + + 1.2003933 51.6711085 + 1.3638052 51.7714749 + + dac.02003898 + + + 2010 2015-74073 Thames Estuary Four Fathoms Channel + This data may be obtained at higher density from the Port of London Authority + + + 0.8805958 51.4123888 + 1.0686094 51.471384 + + dac.02003899 + + + 2010 2015-74074 Thames Estuary Kentish Flats + This data may be obtained at higher density from the Port of London Authority + + + 1.0571748 51.4214573 + 1.2214554 51.4733605 + + dac.02003900 + + + 2011 2011-220961 Barrow Deep West + This data may be obtained at higher density from the Port of London Authority + + + 1.0294841 51.5326734 + 1.1791386 51.5909783 + + dac.02003901 + + + 2012 2013-131570 Thames Estuary Barrow Deep + This data may be obtained at higher density from the Port of London Authority + + + 1.1531388 51.5723086 + 1.2842304 51.6655923 + + dac.02003902 + + + 2013 2014-262444 Thames Estuary Middle Deep to West Swin + This data may be obtained at higher density from the Port of London Authority + + + 1.0161303 51.5427856 + 1.1775554 51.6493182 + + dac.02003903 + + + 1997 2006-357744 Edinburgh Channels + This data may be obtained at higher density from the Port of London Authority + + + 1.1741272 51.4887814 + 1.3766416 51.5782099 + + dac.02003904 + + + 2000 2006-358816 Thames Estuary Black Deep and Fishermans Gat + This data may be obtained at higher density from the Port of London Authority + + + 1.2915653 51.5104263 + 1.4292318 51.6094023 + + dac.02003905 + + + 2002 2006-360087 Thames Estuary Queens Channel + This data may be obtained at higher density from the Port of London Authority + + + 1.1981159 51.4295522 + 1.4237811 51.4852288 + + dac.02003906 + + + 2003 2006-360498 Thames Estuary Barrow Deep + This data may be obtained at higher density from the Port of London Authority + + + 1.1328736 51.5652372 + 1.3059495 51.6720351 + + dac.02003907 + + + 2003 2006-360654 Thames Estuary Black and Barrow Deeps to Oaze Deep + This data may be obtained at higher density from the Port of London Authority + + + 1.0241945 51.4932076 + 1.2052807 51.6087398 + + dac.02003908 + + + 2003 2015-74071 Thames Estuary Sunk + This data may be obtained at higher density from the Port of London Authority + + + 1.2441018 51.6232702 + 1.3823234 51.716537 + + dac.02003909 + + + 2005 2006-362557 Thames Estuary Princess Bar and Shivering Sands + This data may be obtained at higher density from the Port of London Authority + + + 1.0569739 51.460647 + 1.2789937 51.5286337 + + dac.02003910 + + + 2006 2006-407351 Thames Estuary Princes Channel East + This data may be obtained at higher density from the Port of London Authority + + + 1.2463372 51.4653399 + 1.4164917 51.5236148 + + dac.02003911 + + + 2007 2007-075341 Thames Estuary Fishermans Gat to Knock John Channel + This data may be obtained at higher density from the Port of London Authority + + + 1.1764662 51.5203687 + 1.3071134 51.6126009 + + dac.02003912 + + + 2009 2009-158485 Thames Estuary East Swin to Barrow + This data may be obtained at higher density from the Port of London Authority + + + 1.0583223 51.6153271 + 1.2508655 51.7177325 + + dac.02003913 + + + 2015 2015-65503 Montrose Harbour + Post-dredge survey showing more extreme and consistent deepening than might be expected. BGIC recommends refer to Montrose Port for confirmation of sounding accuracy. + + + -2.4745968 56.7015235 + -2.4284021 56.7069706 + + dac.02003926 + + + 2015 HI1429 Dover TSS Wreck 15767 SDTP 2m + Wreck identified at edge of original dataset. Contractors requested to return for full investigation. + + + 2.1788172 51.6605156 + 2.1838698 51.6635192 + + dac.02003927 + + + 2014 HI1423 Docking Shoal to Blakeney Overfalls Area1 1m CUBE + Vessel - MV Titan Endeavour + + + 0.6565199 53.1610985 + 0.806714 53.1988277 + + dac.02003928 + + + 2014 HI1423 Docking Shoal to Blakeney Overfalls Area2 1m CUBE + Vesse - MV Titan Endeavour + + + 0.6107869 53.1178692 + 0.7419453 53.1661243 + + dac.02003929 + + + 2014 HI1423 Docking Shoal to Blakeney Overfalls Area3 1m CUBE + Vessel - MV Titan Endeavour + + + 0.7324594 53.1205398 + 0.8883565 53.167324 + + dac.02003930 + + + 2014 HI1423 Docking Shoal to Blakeney Overfalls Area4 1m CUBE + Vessel - MV Titan Endeavour + + + 0.5716906 53.0701035 + 0.6916567 53.122739 + + dac.02003931 + + + 2014 HI1423 Docking Shoal to Blakeney Overfalls Area5 1m CUBE + Vessel - MV Tital Endeavour + + + 0.6772558 53.0625122 + 0.8022673 53.1247573 + + dac.02003932 + + + 2014 HI1423 Docking Shoal to Blakeney Overfalls Area6 1m CUBE + Vessel - MV Titan Endeavour + + + 0.7892301 53.054229 + 0.9175243 53.1273857 + + dac.02003933 + + + 2014 HI1423 Docking Shoal to Blakeney Overfalls Area7 1m CUBE + Vessel - MV Titan Endeavour + + + 0.9022798 53.0463073 + 1.0403229 53.117367 + + dac.02003934 + + + 2015 2015-78833 Bristol King Road + Vessel unknown + + + -2.7924751 51.4871375 + -2.6908347 51.5328384 + + dac.02003935 + + + 2009 2009-158510 Thames Estuary Kings Channel to East Swin + This data may be obtained at higher density from the Port of London Authority + + + 1.2003933 51.6711085 + 1.3638052 51.7714749 + + dac.02003936 + + + 2009 2009-158507 Thames Estuary Black Deep + This data may be obtained at higher density from the Port of London Authority + + + 1.2635326 51.5803486 + 1.3827612 51.6593713 + + dac.02003937 + + + 2009 2009-158510 Thames Estuary Kings Channel to East Swin + This data may be obtained at higher density from the Port of London Authority + + + 1.2003933 51.6711085 + 1.3638052 51.7714749 + + dac.02003938 + + + 2010 2015-74073 Thames Estuary Four Fathoms Channel + This data may be obtained at higher density from the Port of London Authority + + + 0.8805958 51.4123888 + 1.0686094 51.471384 + + dac.02003939 + + + 2010 2015-74074 Thames Estuary Kentish Flats + This data may be obtained at higher density from the Port of London Authority + + + 1.0571748 51.4214573 + 1.2214554 51.4733605 + + dac.02003940 + + + 2011 2011-220961 Barrow Deep West + This data may be obtained at higher density from the Port of London Authority + + + 1.0294841 51.5326734 + 1.1791386 51.5909783 + + dac.02003941 + + + 2012 2013-131570 Thames Estuary Barrow Deep + This data may be obtained at higher density from the Port of London Authority + + + 1.1531388 51.5723086 + 1.2842304 51.6655923 + + dac.02003942 + + + 2013 2014-262444 Thames Estuary Middle Deep to West Swin + This data may be obtained at higher density from the Port of London Authority + + + 1.0161303 51.5427856 + 1.1775554 51.6493182 + + dac.02003943 + + + 1997 2006-357744 Edinburgh Channels + This data may be obtained at higher density from the Port of London Authority + + + 1.1741272 51.4887814 + 1.3766416 51.5782099 + + dac.02003944 + + + 2000 2006-358816 Thames Estuary Black Deep and Fishermans Gat + This data may be obtained at higher density from the Port of London Authority + + + 1.2915653 51.5104263 + 1.4292318 51.6094023 + + dac.02003945 + + + 2002 2006-360087 Thames Estuary Queens Channel + This data may be obtained at higher density from the Port of London Authority + + + 1.1981159 51.4295522 + 1.4237811 51.4852288 + + dac.02003946 + + + 2003 2006-360498 Thames Estuary Barrow Deep + This data may be obtained at higher density from the Port of London Authority + + + 1.1328736 51.5652372 + 1.3059495 51.6720351 + + dac.02003947 + + + 2003 2006-360654 Thames Estuary Black and Barrow Deeps to Oaze Deep + This data may be obtained at higher density from the Port of London Authority + + + 1.0241945 51.4932076 + 1.2052807 51.6087398 + + dac.02003948 + + + 2003 2015-74071 Thames Estuary Sunk + This data may be obtained at higher density from the Port of London Authority + + + 1.2441018 51.6232702 + 1.3823234 51.716537 + + dac.02003949 + + + 2005 2006-362557 Thames Estuary Princess Bar and Shivering Sands + This data may be obtained at higher density from the Port of London Authority + + + 1.0569739 51.460647 + 1.2789937 51.5286337 + + dac.02003950 + + + 2006 2006-407351 Thames Estuary Princes Channel East + This data may be obtained at higher density from the Port of London Authority + + + 1.2463372 51.4653399 + 1.4164917 51.5236148 + + dac.02003951 + + + 2007 2007-075341 Thames Estuary Fishermans Gat to Knock John Channel + This data may be obtained at higher density from the Port of London Authority + + + 1.1764662 51.5203687 + 1.3071134 51.6126009 + + dac.02003952 + + + 2009 2009-158485 Thames Estuary East Swin to Barrow + This data may be obtained at higher density from the Port of London Authority + + + 1.0583223 51.6153271 + 1.2508655 51.7177325 + + dac.02003953 + + + 2014 2015-19375 Beachy Head East 1m CUBE + Vessels - EGS Pioneer & Wessex Explorer. CATZOC & pipeline hobs attached + + + 0.2427461 50.718293 + 0.5682779 50.8495297 + + dac.02003954 + + + 2015 2015-89777 Newhaven West Breakwater + Collected by Newhaven Port & Properties - vessel unknown + + + 0.0481513 50.7735556 + 0.0594549 50.7803284 + + dac.02003955 + + + 2015 2015-89865 Bristol Bridge Patch + Vessel unknown + + + -3.01014 51.435779 + -2.9745126 51.4578753 + + dac.02003956 + + + 2013 2015-95128 Runswick Bay 2m SDTP + CATZOC hob file attached + + + -0.7929711 54.5140656 + -0.6182463 54.617567 + + dac.02003957 + + + 2015 2015-89856 Dover 2m + Collected by Dover Harbour Board + + + 1.309446 51.11055 + 1.344726 51.130278 + + dac.02003958 + + + 2012 2015-101247 Cromer Shoal 2m SDTP + Vessel - Titan Endeavour CATZOC hob attached + + + 1.1169536 52.9334752 + 1.3256445 52.9632673 + + dac.02003959 + + + 2013 2015-101950 Loch Alsh - Loch Duich - Loch Long - Kyle Rhea 2m SDTP + Owned under joint MoU by Marine Scotland and BGS - Vessel White Ribbon. CATZOC hobs attached + + + -5.7586969 57.2177304 + -5.4046163 57.3128483 + + dac.02003960 + + + 2013 2015-101950 Loch Alsh - Loch Duich - Loch Long - Kyle Rhea 4m SDTP + Owned under joint MoU by Marine Scotland & BGS - Vessel White Ribbon. CATZOC hobs attached + + + -5.7140955 57.2210924 + -5.4175866 57.3091604 + + dac.02003961 + + + 2013 2015-101950 Loch Alsh - Loch Duich - Loch Long - Kyle Rhea 8m SDTP + Owned under joint MoU by Marine Scotland & BGS - Vessel White Ribbon. CATZOC hobs attached + + + -5.7013631 57.2270551 + -5.4397536 57.2760821 + + dac.02003962 + + + 2015 2015-95550 Newhaven North Quay + Collected by Newhaven Port & Properties - vessel unknown + + + 0.0472338 50.7949486 + 0.0521926 50.801985 + + dac.02003963 + + + 2015 2015-95550 Newhaven Inner Port + Collected by Newhaven Port & Properties - vessel unknown + + + 0.0519226 50.7824658 + 0.0579849 50.7949614 + + dac.02003964 + + + 2015 2015-95550 Newhaven Western Bight + Collected by Newhaven Port & Properties - vessel unknown + + + 0.0523408 50.7760372 + 0.0596258 50.7816917 + + dac.02003965 + + + 2015 2015-95562 Mostyn Mid Hoyle Channel + Collected by Mostyn Port - vessel unknown + + + -3.327365 53.3654853 + -3.3044811 53.3835171 + + dac.02003966 + + + 2015 2015-95562 Mostyn Channel + Collected by Mostyn Port - vessel unknown + + + -3.2789531 53.3275905 + -3.2548245 53.3467811 + + dac.02003967 + + + 2015 2015-95562 Mostyn Channel 10m + Collected by Mostyn Port - vessel unknown + + + -3.277939 53.3186892 + -3.2546747 53.3510254 + + dac.02003968 + + + 2015 2015-95562 Mostyn Deep + Collected by Mostyn Port - vessel unknown + + + -3.3093746 53.3448754 + -3.2626193 53.3664891 + + dac.02003969 + + + 2015 2015-95562 South Hoyle Channel + Collected by Mostyn Port - vessel unknown + + + -3.4506263 53.3513715 + -3.368414 53.366158 + + dac.02003970 + + + 2015 2015-105302 Bristol Denny Shoal + Vessel Unknown + + + -2.7724065 51.4979978 + -2.7396799 51.5114965 + + dac.02003971 + + + 2015 2015-105301 Severn Bar Bristol + Vessel Unknown + + + -2.7445916 51.5050737 + -2.7129455 51.5225617 + + dac.02003972 + + + 2014 2015-101247 Cromer Shoal Chalk Beds 2m SDTP + Combined data from 2013 & 2014 - See attached reports and CATZOC files for full information + + + 1.1145567 52.824712 + 1.5652301 53.0467625 + + dac.02003973 + + + 2015 HI1427 The Would Centre 1m CUBE + Vessels - MV Titan Endeavour (Reson 7125) & MV Vigilant (Kongsberg EM2040D) + + + 1.3633148 52.8649056 + 1.7962404 52.9424254 + + dac.02003974 + + + 2015 HI1427 The Would North 1m CUBE + Vessels - MV Titan Endeavour (Reson 7125) & MV Vigilant (Kongsberg EM2040D) + + + 1.3236925 52.9366815 + 1.6632813 53.0272015 + + dac.02003975 + + + 2015 HI1427 The Would South 1m CUBE + Vessels - MV Titan Endeavour (Reson 7125) & MV Vigilant (Kongsberg EM2040D) + + + 1.5474048 52.8063596 + 1.9181389 52.8700307 + + dac.02003976 + + + 2015 2015-122413 Heysham Harbour 2m + Collected by Peel Ports. Owned by Heysham Port Ltd + + + -2.929311 54.030987 + -2.912751 54.035469 + + dac.02003977 + + + 2015 2015-122413 Heysham Channel + Collected by Peel Ports. Owned by Heysham Port Ltd. + + + -2.9510417 54.0201371 + -2.9249775 54.0382443 + + dac.02003978 + + + 2015 2015-123827 Leith Anchorages 10m + Collected by Forth Ports. Vessel unknown + + + -3.194325 55.999665 + -3.149775 56.011995 + + dac.02003979 + + + 2015 2015-122417 Newhaven Harbour 1m + Vessel unknown + + + -3.1988025 55.9808415 + -3.1953645 55.9837035 + + dac.02003980 + + + 2015 2015-139106 Invergordon Berth 4 2m + Vessel - Marine Sensor using R2Sonic 2024 MBES + + + -4.174299 57.682773 + -4.166901 57.685221 + + dac.02003981 + + + 2015 2015-139109 Invergordon Admiralty Pier 2m + Vessel - Marine Sensor MBES - R2Sonic 2024 + + + -4.167567 57.683979 + -4.156047 57.686571 + + dac.02003982 + + + 2015 2015-139109 Invergordon Admiralty Pier Post Dredge 2m + Vessel - Coastal Sensor MBES R2Sonic 2024 + + + -4.167567 57.684051 + -4.163373 57.685923 + + dac.02003983 + + + 2014 2015-139117 Invergordon Queens Dock 2m + Vessel - Coastal Sensor MBES - R2Sonic 2022 + + + -4.182903 57.682557 + -4.168233 57.686841 + + dac.02003984 + + + 2015 2015-139112 Cromarty Firth Area 1 2m + Collected by ESG - Vessel unknown + + + -4.2815607 57.656907 + -4.1336017 57.6888972 + + dac.02003985 + + + 2012 2015-139114 Cromarty Firth Main Channel Area 2 2m + Collected by ESG - vessel unknown + + + -4.1591959 57.6761639 + -4.069068 57.6948217 + + dac.02003986 + + + 2014 2015-139115 Cromarty Firth Main Channel Area 3 2m + Collected by ESG - vessel unknown + + + -4.0728598 57.6784819 + -3.983095 57.6953598 + + dac.02003987 + + + 2015 2015-146580 Dover Harbour + Collected by Dover Harbour Board - vessel unknown + + + 1.3110775 51.1107091 + 1.3455566 51.1269883 + + dac.02003988 + + + 2015 2015-157156 Dee Estuary + Collected by Port of Mostyn Vessel unknown + + + -3.3282127 53.3045048 + -3.1837822 53.385993 + + dac.02003989 + + + 2015 HI1453 Lyme Bay Blk1 N 1m CUBE + Vessels - MV Seabeam, MV Icebeam + + + -3.4841019 50.5335483 + -3.273691 50.6385489 + + dac.02003990 + + + 2015 HI1453 Lyme Bay Blk1 S 1m CUBE + Vessels - MV Seabeam, MV Icebeam + + + -3.4944303 50.4601172 + -3.2721973 50.5343673 + + dac.02003991 + + + 2015 HI1453 Lyme Bay Blk2 1m CUBE + Vessels - MV Seabeam MV Icebeam + + + -3.2762741 50.4503392 + -3.0372937 50.5999852 + + dac.02003992 + + + 2015 HI1453 Lyme Bay Blk3 1m CUBE + Vessels - MV Seabeam, MV Icebeam + + + -3.0452794 50.4504934 + -2.8230891 50.6177705 + + dac.02003993 + + + 2015 HI1453 Lyme Bay Blk4 1m CUBE + Vessels - MV Seabeam MV Icebeam + + + -2.8247453 50.4496975 + -2.6165328 50.639456 + + dac.02003994 + + + 2015 HI1453 Lyme Bay Blk5 1m CUBE + Vessels - MV Seabeam MV Icebeam + + + -3.2765386 50.5814147 + -3.0434474 50.6786641 + + dac.02003995 + + + 2015 HI1453 Lyme Bay Blk6 1m CUBE + Vessels - MV Seabeam MV Icebeam + + + -3.0867636 50.6420299 + -2.6160186 50.7249323 + + dac.02003996 + + + 2015 2015-156922 Bristol Denny Shoal + Vessel unknown + + + -2.7723976 51.4974627 + -2.7401077 51.5112224 + + dac.02003997 + + + 2015 2015-163740 Clydeport Workshop Light to Govan Wharf + Vessel unknown + + + -4.3137362 55.8597046 + -4.2961694 55.8664665 + + dac.02003998 + + + 2015 2015-163740 Clydeport Shieldhall Reach + Vessel unknown + + + -4.3479082 55.86838 + -4.3348333 55.8729379 + + dac.02003999 + + + 2015 2015-163740 Clydeport King George V Dock + Vessel unknown + + + -4.357648 55.8653228 + -4.3444368 55.8754717 + + dac.02004000 + + + 2015 2015-163740 Clydeport Braehead Reach + Vessel unknown + + + -4.3666731 55.8743115 + -4.3547469 55.8794956 + + dac.02004001 + + + 2015 2015-163740 Clydeport Elderslie + Vessel unknown + + + -4.375277 55.8779437 + -4.3641753 55.8835637 + + dac.02004002 + + + 2015 2015-163740 Clydeport Renfrew Reach + Vessel unknown + + + -4.3842091 55.8821132 + -4.372541 55.8873827 + + dac.02004003 + + + 2015 2015-163740 Clydeport Yoker Light to Lobnitz Basin + Vessel unknown + + + -4.3945328 55.8860493 + -4.3819424 55.8898408 + + dac.02004004 + + + 2015 2015-163740 Clydeport Rothesay Dock + Vessel unknown + + + -4.4093073 55.8886797 + -4.391755 55.8956833 + + dac.02004005 + + + 2015 2015-163740 Clydeport Longhaugh Reach + Vessel unknown + + + -4.5292115 55.9272059 + -4.4973907 55.9305717 + + dac.02004006 + + + 2015 2015-163740 Clydeport Cardross Reach + Vessel unknown + + + -4.6574343 55.9359159 + -4.6107922 55.9408114 + + dac.02004007 + + + 2015 2015-163740 Clydeport Greenock + Vessel unknown + + + -4.766669 55.9543392 + -4.7571408 55.9614194 + + dac.02004008 + + + 2015 2015-128793 Wisbech + Collected & owned by Port of Wisbech. Vessel unknown + + + 0.2054389 52.8272763 + 0.2575621 52.9044816 + + dac.02004009 + + + 2015 2015-172454 Bristol Tongue Head + Vessel unknown + + + -2.6279798 51.4469691 + -2.6234516 51.4538305 + + dac.02004010 + + + 2015 HI1449 Hurlstone Point to Hinkley Point 2m SDTP + Vessels - MV Confidante (Kongsberg EM3002D) & MV Titan Endeavour (Reson 7125) CATZOC Polygon attached + + + -3.5878572 51.1868991 + -3.0360518 51.3409363 + + dac.02004011 + + + 2015 2015-172840 Ramsgate + Owned by Royal Harbour Ramsgate + + + 1.4141439 51.3235047 + 1.4550556 51.3323878 + + dac.02004012 + + + 2013 2015-167061 South Dorset 2m SDTP + Collected by EGS - vessel MV Morven. CATZOC polygon attached + + + -2.4125177 50.3521672 + -2.0084335 50.4197485 + + dac.02004013 + + + 2015 2015-178493 Bristol Severn Bar + Vessel unknown + + + -2.7446089 51.5055898 + -2.7103549 51.5250471 + + dac.02004014 + + + 2015 2015-122418 Mersey Pluckington Bank + Vessel - Royal Charter + + + -3.0055747 53.3720415 + -2.9686615 53.4051312 + + dac.02004015 + + + 2012 HI1402 Menabilly to Dodman Point 2m SDTP + Commissioned and owned by Teignbridge District Council Surveyed by EGS International liasing with Channel Coastal Observatory as part of the Southwest Regional Coastal Monitoring Programme. Edited surface archived 08/09/15 + + + -4.8033775 50.2088589 + -4.6691061 50.3452884 + + dac.02004016 + + + 2013 2015-178837 North Celtic Deep 4m SDTP + Also MV Vigilant + + + -5.9543735 51.9120169 + -5.3214755 52.2710764 + + dac.02004017 + + + 2015 2015-204843 Newhaven + Vessel unknown + + + 0.0472338 50.7949486 + 0.0521926 50.801985 + + dac.02004018 + + + 2015 HI1469 Devonport Plymouth Sound 2m SDTP + + + -4.1687717 50.332931 + -4.1139028 50.3663522 + + dac.02004019 + + + 2015 HI1469 Devonport Hamoaze & Tamar 2m SDTP + + + -4.2141888 50.3516057 + -4.1622127 50.4006939 + + dac.02004020 + + + diff --git a/ckanext/qa/tests/data/ukk1202-36000.rdf b/ckanext/qa/tests/data/ukk1202-36000.rdf new file mode 100644 index 00000000..ea32b788 --- /dev/null +++ b/ckanext/qa/tests/data/ukk1202-36000.rdf @@ -0,0 +1,122 @@ + + + + + + + + + Minimum + + + + + + + + + Higher + + + + + + + + England + England + + + + + + Map bounds for Clevedon Beach + + + + + + + Bathing waters monitored by the Environment Agency for England and Wales. + + + + + South West + + + + + + + The District of North Somerset + + + Clevedon Beach + ukk1202-36000 + + true + + + Zone of influence at Clevedon Beach + + + + + Sampling point at Clevedon Beach + 171322 + 51.44 + 339914 + -2.87 + + + + + + + + diff --git a/ckanext/qa/tests/data/ukti-admin-spend-nov-2011.xls b/ckanext/qa/tests/data/ukti-admin-spend-nov-2011.xls new file mode 100644 index 00000000..88697e45 Binary files /dev/null and b/ckanext/qa/tests/data/ukti-admin-spend-nov-2011.xls differ diff --git a/ckanext/qa/tests/data/written_complains.csv.zip b/ckanext/qa/tests/data/written_complains.csv.zip new file mode 100644 index 00000000..9e2c2fe8 Binary files /dev/null and b/ckanext/qa/tests/data/written_complains.csv.zip differ diff --git a/ckanext/qa/tests/fake_ckan.py b/ckanext/qa/tests/fake_ckan.py new file mode 100644 index 00000000..c91d568d --- /dev/null +++ b/ckanext/qa/tests/fake_ckan.py @@ -0,0 +1,92 @@ +from flask import Flask, request, jsonify, make_response +import json +app = Flask(__name__) + +TASK_STATUS_ARCHIVER_OK = json.dumps( + {'success': True, + 'result': {'value': 'Archived successfully', + 'error': json.dumps({ + 'reason': '', + 'last_success': '2008-10-01', + 'first_failure': '', + 'failure_count': 0, + }), + 'stack': '', + 'last_updated': '2008-10-10T19:30:37.536836', + } + } + ) + +request_store = [] +task_status = {'archiver': TASK_STATUS_ARCHIVER_OK, + 'qa': None} + +# These methods work like CKAN's ones: + +@app.route("/api/action/task_status_update_many", methods=['GET', 'POST']) +def task_status_update_many(): + request_store.append({ + "data": request.json, + "headers": dict(request.headers) + }) + return 'ok' + +@app.route("/api/action/task_status_update", methods=['GET', 'POST']) +def task_status_update(): + request_store.append({ + "data": request.json, + "headers": dict(request.headers) + }) + return 'ok' + +@app.route("/api/action/task_status_show", methods=['GET', 'POST']) +def task_status_show(): + request_store.append({ + "data": request.json, + "headers": dict(request.headers) + }) + try: + status = task_status[request.json['task_type']] + if status: + return status + except KeyError: + pass + resp = make_response('{"success": false}', 404) # JSON + return resp + +@app.route("/api/action/resource_update", methods=['GET', 'POST']) +def resource_update(): + request_store.append({ + "data": request.json, + "headers": dict(request.headers) + }) + return 'ok' + +# These methods are for test purposes only: + +@app.route("/last_request", methods=['GET', 'POST']) +def last_request(): + return jsonify(request_store.pop()) + +@app.route("/set_task_status//", methods=['GET']) +def set_task_status(task_type, task_status_str): + task_status[task_type] = task_status_str + return 'ok' + +@app.route("/set_archiver_task_status_ok", methods=['GET']) +def set_archiver_task_status_ok(): + task_status['archiver'] = TASK_STATUS_ARCHIVER_OK + return 'ok' + +@app.route("/unset_task_status/", methods=['GET']) +def unset_task_status(task_type): + task_status[task_type] = None + return 'ok' + +@app.route("/", methods=['GET', 'POST']) +def ok(): + return 'ok' + +if __name__ == "__main__": + app.run(port=50001) + diff --git a/tests/mock_remote_server.py b/ckanext/qa/tests/mock_remote_server.py similarity index 100% rename from tests/mock_remote_server.py rename to ckanext/qa/tests/mock_remote_server.py diff --git a/ckanext/qa/tests/test_link_checker.py b/ckanext/qa/tests/test_link_checker.py new file mode 100644 index 00000000..1d266373 --- /dev/null +++ b/ckanext/qa/tests/test_link_checker.py @@ -0,0 +1,138 @@ +import logging +from functools import wraps +import json +from urllib import urlencode +try: + from ckan.tests.helpers import reset_db, assert_in + from ckan.tests import factories as ckan_factories + from ckan.tests.legacy import BaseCase, url_for, CreateTestData + from ckan.tests.legacy import TestController as ControllerTestCase +except ImportError: + from ckan.new_tests.helpers import reset_db + from ckan.new_tests import factories as ckan_factories + from ckan.tests import BaseCase, url_for, CreateTestData, assert_in + from ckan.tests import TestController as ControllerTestCase +from nose.tools import assert_raises, assert_equal + +from ckanext.archiver.tasks import (update_package, + download, + ArchiverError, + DownloadError, + ChooseNotToDownload, + LinkCheckerError, + CkanError, + ) + +from mock_remote_server import MockEchoTestServer + +# enable celery logging for when you run nosetests -s +log = logging.getLogger('ckanext.archiver.tasks') +def get_logger(): + return log +update_package.get_logger = get_logger + +def with_mock_url(url=''): + """ + Start a MockEchoTestServer call the decorated function with the server's address prepended to ``url``. + """ + def decorator(func): + @wraps(func) + def decorated(*args, **kwargs): + with MockEchoTestServer().serve() as serveraddr: + return func(*(args + ('%s/%s' % (serveraddr, url),)), **kwargs) + return decorated + return decorator + + +class TestLinkChecker(ControllerTestCase): + """ + Tests for link checker task + """ + def check_link(self, url): + result = self.app.get('/qa/link_checker?%s' % urlencode({'url': url})) + return json.loads(result.body)[0] + + @with_mock_url('?status=200') + def test_url_working_but_formatless(self, url): + result = self.check_link(url) + assert_equal(result['format'], None) + + @with_mock_url('file.csv') + def test_format_by_url_extension(self, url): + result = self.check_link(url) + assert_equal(result['format'], 'CSV') + + @with_mock_url('file.csv.zip') + def test_format_by_url_extension_zipped(self, url): + result = self.check_link(url) + assert_equal(result['format'], 'CSV / ZIP') + + @with_mock_url('file.f1.f2') + def test_format_by_url_extension_unknown(self, url): + result = self.check_link(url) + assert_equal(result['format'], 'F1 / F2') + + def test_encoded_url(self): + # This is not actually a URL, and the encoded letters get + # interpreted as being in the hostname. But should not cause + # an exception. + url = 'Over+\xc2\xa325,000+expenditure+report+April-13' + result = self.check_link(url) + assert_equal(result['format'], '') + + @with_mock_url('?status=200;content-type=text/plain') + def test_format_by_mimetype_txt(self, url): + result = self.check_link(url) + assert_equal(result['format'], 'TXT') + + @with_mock_url('?status=200;content-type=text/csv') + def test_format_by_mimetype_csv(self, url): + result = self.check_link(url) + assert_equal(result['format'], 'CSV') + + def test_file_url(self): + url = u'file:///home/root/test.txt' + result = self.check_link(url) + assert_in(u'Invalid url scheme. Please use one of: ftp http https', + result['url_errors']) + #assert_raises(LinkCheckerError, link_checker, context, data) + + def test_empty_url(self): + url = u'' + result = self.check_link(url) + assert_in("URL parsing failure - did not find a host name", result['url_errors']) + + @with_mock_url('?status=503') + def test_url_with_503(self, url): + result = self.check_link(url) + assert_in('Server returned HTTP error status: 503 Service Unavailable', result['url_errors']) + + @with_mock_url('?status=404') + def test_url_with_404(self, url): + result = self.check_link(url) + assert_in('Server returned HTTP error status: 404 Not Found', result['url_errors']) + + # Disabled as doesn't work + #@with_mock_url('') + #def test_url_with_30x_follows_redirect(self, url): + # redirect_url = url + u'?status=200&content=test&content-type=text/csv' + # url += u'?status=301&location=%s' % quote_plus(redirect_url) + # result = self.check_link(url) + # # The redirect works and the CSV is picked up + # assert_equal(result['format'], 'CSV') + + # e.g. "http://www.dasa.mod.uk/applications/newWeb/www/index.php?page=48&thiscontent=180&date=2011-05-26&pubType=1&PublishTime=09:30:00&from=home&tabOption=1" + @with_mock_url('?time=09:30&status=200') + def test_colon_in_query_string(self, url): + # accept, because browsers accept this + # see discussion: http://trac.ckan.org/ticket/318 + result = self.check_link(url) + print result + assert_equal(result['url_errors'], []) + + @with_mock_url('?status=200 ') + def test_trailing_whitespace(self, url): + # accept, because browsers accept this + result = self.check_link(url) + print result + assert_equal(result['url_errors'], []) diff --git a/ckanext/qa/tests/test_sniff_format.py b/ckanext/qa/tests/test_sniff_format.py new file mode 100644 index 00000000..ad8bf46a --- /dev/null +++ b/ckanext/qa/tests/test_sniff_format.py @@ -0,0 +1,233 @@ +import os +import logging + +from nose.tools import assert_equal + +from ckanext.qa.sniff_format import sniff_file_format, is_json, is_ttl, turtle_regex + +logging.basicConfig(level=logging.INFO) +log = logging.getLogger('ckan.sniff') + + +class TestSniffFormat: + @classmethod + def setup_class(cls): + # Assemble a list of the test fixture data files. + # They MUST have a file extension equal to the format they will be correctly + # sniffed as. e.g. .xls or .xls.zip + cls.fixture_files = [] # (format_extension, filepath) + fixture_data_dir = os.path.join(os.path.dirname(__file__), 'data') + for filename in os.listdir(fixture_data_dir): + format_extension = '.'.join(filename.split('.')[1:]).replace('_', ' ') + filepath = os.path.join(fixture_data_dir, filename) + cls.fixture_files.append((format_extension, filepath)) + + @classmethod + def assert_file_has_format_sniffed_correctly(cls, format_extension, filepath): + '''Given a filepath, checks the sniffed format matches the format_extension.''' + expected_format = format_extension + sniffed_format = sniff_file_format(filepath, log) + assert sniffed_format, expected_format + expected_format_without_zip = expected_format.replace('.zip', '') + assert_equal(sniffed_format['format'].lower(), expected_format_without_zip) + + expected_container = None + if expected_format.endswith('.zip'): + expected_container = 'ZIP' + elif expected_format.endswith('.gzip'): + expected_container = 'ZIP' # lumped together with zip for simplicity now + assert_equal(sniffed_format.get('container'), expected_container) + + #def test_all(self): + # for format_extension, filepath in self.fixture_files: + # self.assert_file_has_format_sniffed_correctly(format_extension, filepath) + + @classmethod + def check_format(cls, format, filename=None): + for format_extension, filepath in cls.fixture_files: + if format_extension == format: + if filename: + if filename in filepath: + break + else: + continue + else: + break + else: + assert 0, format #Could not find fixture for format + cls.assert_file_has_format_sniffed_correctly(format_extension, filepath) + + def test_xls(self): + self.check_format('xls', '10-p108-data-results') + def test_xls1(self): + self.check_format('xls', 'August-2010.xls') + def test_xls2(self): + self.check_format('xls', 'ukti-admin-spend-nov-2011.xls') + def test_xls3(self): + self.check_format('xls', 'decc_local_authority_data_xlsx.xls') + def test_xls_zip(self): + self.check_format('xls.zip', 'telephone-network-data.xls.zip') + def test_rdf(self): + self.check_format('rdf', '300911---EH---organogram---ver1.rdf') + def test_rdf2(self): + self.check_format('rdf', 'ukk1202-36000.rdf') + def test_pdf(self): + self.check_format('pdf') + def test_kml(self): + self.check_format('kml') + def test_rdfa(self): + self.check_format('rdfa') + def test_doc(self): + self.check_format('doc') + def test_json(self): + self.check_format('json') + def test_ods(self): + self.check_format('ods') + def test_odt(self): + self.check_format('odt') + def test_odp(self): + self.check_format('odp') + def test_ppt(self): + self.check_format('ppt') + def test_csv(self): + self.check_format('csv', 'elec00.csv') + def test_csv1(self): + self.check_format('csv', 'spendover25kdownloadSep.csv') + def test_csv2(self): + self.check_format('csv', '311011.csv') + def test_csv3(self): + self.check_format('csv', 'FCOServices_TransparencySpend_May2011.csv') + def test_csv4(self): + self.check_format('csv', 'iwfg09_Phos_river_200911.csv') + def test_csv5(self): + self.check_format('csv', '9_sus_fisheries_201003.csv') + def test_csv6(self): + self.check_format('csv', 'Inpatients_MHA_Machine_readable_dataset_1011.csv') + def test_shp(self): + self.check_format('shp', 'HS2-ARP-00-GI-RW-00434_RCL_V4.shp') + def test_shp2(self): + self.check_format('shp', 'jncc_shapefile.shp') + def test_gtfs(self): + self.check_format('gtfs', 'manchester.gtfs') + def test_html(self): + self.check_format('html', 'index.html') + def test_html1(self): + self.check_format('html', '6a7baac6-d363-4a9d-8e9d-e584f38c05c3.html') + def test_html2(self): + self.check_format('html', 'hourly_means.html') + def test_xml(self): + self.check_format('xml', 'jobs.xml') + def test_xml1(self): + self.check_format('xml', '082010CreditorInvoicesover500.xml') + def test_xml2(self): + self.check_format('xml', 'DfidProjects-trunc.xml') + def test_iati(self): + self.check_format('iati') + def test_rss(self): + self.check_format('rss') + def test_txt(self): + self.check_format('txt') + def test_txt_2(self): + self.check_format('txt', 'terrible_csv.txt') + def test_csv_zip(self): + self.check_format('csv.zip', 'written_complains.csv.zip') + def test_csv_zip1(self): + self.check_format('csv.zip', 'cycle-area-list.csv.zip') + def test_txt_zip(self): + self.check_format('txt.zip') + def test_xml_zip(self): + self.check_format('xml.zip', 'FHRS501en-GB.xml.zip') + #def test_torrent(self): + # self.check_format('torrent') + def test_psv(self): + self.check_format('psv') + def test_wms_1_3(self): + self.check_format('wms', 'afbi_get_capabilities.wms') + def test_wms_1_1_1(self): + self.check_format('wms', 'oldham_get_capabilities.wms') + def test_wfs_1_0(self): + self.check_format('wfs', 'blaby_get_capabilities_1_0.wfs') + def test_wfs_1_1(self): + self.check_format('wfs', 'blaby_get_capabilities_1_1.wfs') + def test_wfs_2_0(self): + self.check_format('wfs', 'blaby_get_capabilities_2_0.wfs') + def test_wmts(self): + self.check_format('wmts', 'ukho_bathymetry.wmts') + def test_wcs(self): + self.check_format('wcs', 'ukho_bathymetry.wcs') + def test_wcs2(self): + self.check_format('wcs', 'ukho_bathymetry2.wcs') + #def test_ics(self): + # self.check_format('ics') + def test_ttl1(self): + self.check_format('ttl', 'turtle.ttl') + def test_ttl2(self): + self.check_format('ttl', 'turtle-imd-education-score-2010.ttl') + def test_ttl3(self): + self.check_format('ttl', 'turtle-homelessness-acceptances-per-1000.ttl') + def test_atom(self): + self.check_format('atom feed', 'os_products.atom_feed') + def test_atom1(self): + self.check_format('atom feed', 'SG_HumanHealthSafety.atom_feed') + +def test_is_json(): + assert is_json('5', log) + assert is_json('-5', log) + assert is_json('-5.4', log) + assert is_json('-5.4e5', log) + assert is_json('-5.4e-5', log) + assert not is_json('4.', log) + assert is_json('"hello"', log) + assert not is_json('hello"', log) + assert is_json('["hello"]', log) + assert not is_json('"hello"]', log) + assert is_json('[5]', log) + assert is_json('[5, 6]', log) + assert is_json('[5,6]', log) + assert is_json('["cat", 6]', log) + assert is_json('{"cat": 6}', log) + assert is_json('{"cat":6}', log) + assert is_json('{"cat": "bob"}', log) + assert is_json('{"cat": [1, 2]}', log) + assert is_json('{"cat": [1, 2], "dog": 5, "rabbit": "great"}', log) + assert not is_json('{"cat": [1, 2}]', log) + assert is_json('[{"cat": [1]}, 2]', log) + + # false positives of the algorithm: + #assert not is_json('[{"cat": [1]}2, 2]', log) + +def test_turtle_regex(): + template = ' %s .' + assert turtle_regex().search(template % '') + assert turtle_regex().search(template % '"a literal"') + assert turtle_regex().search(template % '"translation"@ru') + assert turtle_regex().search(template % '"literal type"^^') + assert turtle_regex().search(template % '"literal typed with prefix"^^xsd:string') + assert turtle_regex().search(template % "'single quotes'") + assert turtle_regex().search(template % '"""triple quotes but not multiline"""') + assert turtle_regex().search(template % "'''triple quotes but not multiline'''") + assert turtle_regex().search(template % '12') + assert turtle_regex().search(template % '1.12') + assert turtle_regex().search(template % '.12') + assert turtle_regex().search(template % '12E12') + assert turtle_regex().search(template % '-4.2E-9') + assert turtle_regex().search(template % 'false') + assert turtle_regex().search(template % '_:blank_node') + assert turtle_regex().search('

;\n

.') + assert turtle_regex().search('

;

.') + # Include triples which are part of a nest: + assert turtle_regex().search('

;') + assert turtle_regex().search('

;') + assert turtle_regex().search(' ;

.') + assert turtle_regex().search(';\n

.') + assert turtle_regex().search(';\n

;') + assert not turtle_regex().search('

. rubbish') + assert not turtle_regex().search(template % 'word') + assert not turtle_regex().search(template % 'prefix:node') + + +def test_is_ttl__num_triples(): + triple = ' ; .' + assert not is_ttl('\n'.join([triple]*2), log) + assert is_ttl('\n'.join([triple]*5), log) + diff --git a/ckanext/qa/tests/test_tasks.py b/ckanext/qa/tests/test_tasks.py new file mode 100644 index 00000000..15852708 --- /dev/null +++ b/ckanext/qa/tests/test_tasks.py @@ -0,0 +1,350 @@ +import requests +import logging +import urllib +import datetime + +from nose.tools import assert_equal +from ckan import model +from ckan.logic import get_action +import ckan.lib.helpers as ckan_helpers +try: + from ckan.tests.helpers import reset_db + from ckan.tests import factories as ckan_factories + from ckan.tests.legacy import BaseCase +except ImportError: + from ckan.new_tests.helpers import reset_db + from ckan.new_tests import factories as ckan_factories + from ckan.tests import BaseCase + +import ckanext.qa.tasks +from ckanext.qa.tasks import resource_score, extension_variants +import ckanext.archiver +import ckanext.archiver.tasks +from ckanext.qa import model as qa_model +from ckanext.archiver import model as archiver_model +from ckanext.archiver.model import Archival, Status + +log = logging.getLogger(__name__) + +# Monkey patch get_cached_resource_filepath so that it doesn't barf when +# it can't find the file +def mock_get_cached_resource_filepath(cache_url): + if not cache_url: + return None + return cache_url.replace('http://remotesite.com/', '/resources') +ckanext.qa.tasks.get_cached_resource_filepath = mock_get_cached_resource_filepath + +# Monkey patch sniff_file_format. This isolates the testing of tasks from +# actual sniffing +sniffed_format = None +def mock_sniff_file_format(filepath, log): + return sniffed_format +ckanext.qa.tasks.sniff_file_format = mock_sniff_file_format +def set_sniffed_format(format_name): + global sniffed_format + if format_name: + format_tuple = ckan_helpers.resource_formats().get(format_name.lower()) + sniffed_format = {'format': format_tuple[1]} + else: + sniffed_format = None + +TODAY = datetime.datetime(year=2008, month=10, day=10) +TODAY_STR = TODAY.isoformat() + +class TestTask(BaseCase): + + @classmethod + def setup_class(cls): + reset_db() + archiver_model.init_tables(model.meta.engine) + qa_model.init_tables(model.meta.engine) + + def test_trigger_on_archival(cls): + # create package + context = {'model': model, 'ignore_auth': True, 'session': model.Session, 'user': 'test'} + pkg = {'name': 'testpkg', 'license_id': 'uk-ogl', 'resources': [ + {'url': 'http://test.com/', 'format': 'CSV', 'description': 'Test'} + ]} + pkg = get_action('package_create')(context, pkg) + resource_dict = pkg['resources'][0] + res_id = resource_dict['id'] + # create record of archival + archival = Archival.create(res_id) + cache_filepath = __file__ # just needs to exist + archival.cache_filepath = cache_filepath + archival.updated = TODAY + model.Session.add(archival) + model.Session.commit() + # TODO show that QA hasn't run yet + + # create a send_data from ckanext-archiver, that gets picked up by + # ckanext-qa to put a task on the queue + ckanext.archiver.tasks.notify_package(pkg, 'priority') + # this is useful on its own (without any asserts) because it checks + # there are no exceptions when running it + + # TODO run celery and check it actually ran... + + +class TestResourceScore(BaseCase): + + @classmethod + def setup_class(cls): + reset_db() + archiver_model.init_tables(model.meta.engine) + qa_model.init_tables(model.meta.engine) + cls.fake_resource = { + 'id': u'fake_resource_id', + 'url': 'http://remotesite.com/filename.csv', + 'cache_url': 'http://remotesite.com/resources/filename.csv', + 'cache_filepath': __file__, # must exist + 'package': u'fake_package_id', + 'is_open': True, + 'position': 2, + } + + def _test_resource(self, url='anything', format='TXT', archived=True, cached=True, license_id='uk-ogl'): + pkg = {'license_id': license_id, + 'resources': [ + {'url': url, 'format': format, 'description': 'Test'} + ]} + pkg = ckan_factories.Dataset(**pkg) + res_id = pkg['resources'][0]['id'] + if archived: + archival = Archival.create(res_id) + archival.cache_filepath = __file__ if cached else None # just needs to exist + archival.updated = TODAY + model.Session.add(archival) + model.Session.commit() + return model.Resource.get(res_id) + + @classmethod + def _set_task_status(cls, task_type, task_status_str): + url = '%s/set_task_status/%s/%s' % (cls.fake_ckan_url, + task_type, + urllib.quote(task_status_str)) + res = requests.get(url) + assert res.status_code == 200 + + def test_by_sniff_csv(self): + set_sniffed_format('CSV') + result = resource_score(self._test_resource(), log) + assert result['openness_score'] == 3, result + assert 'Content of file appeared to be format "CSV"' in result['openness_score_reason'], result + assert result['format'] == 'CSV', result + assert result['archival_timestamp'] == TODAY_STR, result + + def test_not_archived(self): + result = resource_score(self._test_resource(archived=False, cached=False, format=None), log) + # falls back on previous QA data detailing failed attempts + assert result['openness_score'] == 1, result + assert result['format'] == None, result + assert result['archival_timestamp'] == None, result + assert 'This file had not been downloaded at the time of scoring it.' in result['openness_score_reason'], result + assert 'Could not determine a file extension in the URL.' in result['openness_score_reason'], result + assert 'Format field is blank.' in result['openness_score_reason'], result + assert 'Could not understand the file format, therefore score is 1.' in result['openness_score_reason'], result + + def test_archiver_ran_but_not_cached(self): + result = resource_score(self._test_resource(cached=False, format=None), log) + # falls back on previous QA data detailing failed attempts + assert result['openness_score'] == 1, result + assert result['format'] == None, result + assert result['archival_timestamp'] == TODAY_STR, result + assert 'This file had not been downloaded at the time of scoring it.' in result['openness_score_reason'], result + assert 'Could not determine a file extension in the URL.' in result['openness_score_reason'], result + assert 'Format field is blank.' in result['openness_score_reason'], result + assert 'Could not understand the file format, therefore score is 1.' in result['openness_score_reason'], result + + def test_by_extension(self): + set_sniffed_format(None) + result = resource_score(self._test_resource('http://site.com/filename.xls'), log) + assert result['openness_score'] == 2, result + assert result['archival_timestamp'] == TODAY_STR, result + assert_equal(result['format'], 'XLS') + assert 'not recognized from its contents' in result['openness_score_reason'], result + assert 'extension "xls" relates to format "XLS"' in result['openness_score_reason'], result + + def test_extension_not_recognized(self): + set_sniffed_format(None) + result = resource_score(self._test_resource('http://site.com/filename.zar'), log) + assert result['openness_score'] == 1, result + assert 'not recognized from its contents' in result['openness_score_reason'], result + assert 'URL extension "zar" is an unknown format' in result['openness_score_reason'], result + + def test_by_format_field(self): + set_sniffed_format(None) + result = resource_score(self._test_resource(format='XLS'), log) + assert result['openness_score'] == 2, result + assert_equal(result['format'], 'XLS') + assert 'not recognized from its contents' in result['openness_score_reason'], result + assert 'Could not determine a file extension in the URL' in result['openness_score_reason'], result + assert 'Format field "XLS"' in result['openness_score_reason'], result + + def test_by_format_field_excel(self): + set_sniffed_format(None) + result = resource_score(self._test_resource(format='Excel'), log) + assert_equal(result['format'], 'XLS') + + def test_format_field_not_recognized(self): + set_sniffed_format(None) + result = resource_score(self._test_resource(format='ZAR'), log) + assert result['openness_score'] == 1, result + assert 'not recognized from its contents' in result['openness_score_reason'], result + assert 'Could not determine a file extension in the URL' in result['openness_score_reason'], result + assert 'Format field "ZAR" does not correspond to a known format' in result['openness_score_reason'], result + + def test_no_format_clues(self): + set_sniffed_format(None) + result = resource_score(self._test_resource(format=None), log) + assert result['openness_score'] == 1, result + assert 'not recognized from its contents' in result['openness_score_reason'], result + assert 'Could not determine a file extension in the URL' in result['openness_score_reason'], result + assert 'Format field is blank' in result['openness_score_reason'], result + + def test_available_but_not_open(self): + set_sniffed_format('CSV') + result = resource_score(self._test_resource(license_id=None), log) + assert result['openness_score'] == 0, result + assert_equal(result['format'], 'CSV') + assert 'License not open' in result['openness_score_reason'], result + + def test_not_available_and_not_open(self): + res = self._test_resource(license_id=None, format=None, cached=False) + archival = Archival.get_for_resource(res.id) + archival.status_id = Status.by_text('Download error') + archival.reason = 'Server returned 500 error' + archival.last_success = None + archival.first_failure = datetime.datetime(year=2008, month=10, day=1, hour=6, minute=30) + archival.failure_count = 16 + archival.is_broken = True + model.Session.commit() + result = resource_score(res, log) + assert result['openness_score'] == 0, result + assert_equal(result['format'], None) + # in preference it should report that it is not available + assert_equal(result['openness_score_reason'], 'File could not be downloaded. Reason: Download error. Error details: Server returned 500 error. Attempted on 10/10/2008. Tried 16 times since 01/10/2008. This URL has not worked in the history of this tool.') + + def test_not_available_any_more(self): + # A cache of the data still exists from the previous run, but this + # time, the archiver found the file gave a 404. + # The record of the previous (successful) run of QA. + res = self._test_resource(license_id=None, format=None) + qa = qa_model.QA.create(res.id) + qa.format = 'CSV' + model.Session.add(qa) + model.Session.commit() + # cache still exists from the previous run, but this time, the archiver + # found the file gave a 404. + archival = Archival.get_for_resource(res.id) + archival.cache_filepath = __file__ + archival.status_id = Status.by_text('Download error') + archival.reason = 'Server returned 404 error' + archival.last_success = datetime.datetime(year=2008, month=10, day=1) + archival.first_failure = datetime.datetime(year=2008, month=10, day=2) + archival.failure_count = 1 + archival.is_broken = True + result = resource_score(res, log) + assert result['openness_score'] == 0, result + assert_equal(result['format'], 'CSV') + # in preference it should report that it is not available + assert_equal(result['openness_score_reason'], 'File could not be downloaded. Reason: Download error. Error details: Server returned 404 error. Attempted on 10/10/2008. This URL worked the previous time: 01/10/2008.') + + +class TestExtensionVariants: + def test_0_normal(self): + assert_equal(extension_variants('http://dept.gov.uk/coins-data-1996.csv'), + ['csv']) + + def test_1_multiple(self): + assert_equal(extension_variants('http://dept.gov.uk/coins.data.1996.csv.zip'), + ['csv.zip', 'zip']) + + def test_2_parameter(self): + assert_equal(extension_variants('http://dept.gov.uk/coins-data-1996.csv?callback=1'), + ['csv']) + + def test_3_none(self): + assert_equal(extension_variants('http://dept.gov.uk/coins-data-1996'), + []) + + +class TestSaveQaResult(object): + @classmethod + def setup_class(cls): + reset_db() + archiver_model.init_tables(model.meta.engine) + qa_model.init_tables(model.meta.engine) + + @classmethod + def get_qa_result(cls, **kwargs): + qa_result = { + 'openness_score': 3, + 'openness_score_reason': 'Detected as CSV which scores 3', + 'format': 'CSV', + 'archival_timestamp': datetime.datetime(2015, 12, 16), + } + qa_result.update(kwargs) + return qa_result + + def test_simple(self): + resource_dict = ckan_factories.Resource() + resource = model.Resource.get(resource_dict['id']) + qa_result = self.get_qa_result() + + qa = ckanext.qa.tasks.save_qa_result(resource, qa_result, log) + + assert_equal(qa.openness_score, qa_result['openness_score']) + assert_equal(qa.openness_score_reason, + qa_result['openness_score_reason']) + assert_equal(qa.format, qa_result['format']) + assert_equal(qa.archival_timestamp, qa_result['archival_timestamp']) + assert qa.updated, qa.updated + + +class TestUpdatePackage(object): + @classmethod + def setup_class(cls): + reset_db() + archiver_model.init_tables(model.meta.engine) + qa_model.init_tables(model.meta.engine) + + def test_simple(self): + resource = { + 'url': 'http://example.com/file.csv', + 'title': 'Some data', + 'format': '', + } + dataset = ckan_factories.Dataset(resources=[resource]) + resource = model.Resource.get(dataset['resources'][0]['id']) + + ckanext.qa.tasks.update_package_(dataset['id'], log) + + qa = qa_model.QA.get_for_resource(dataset['resources'][0]['id']) + assert qa + assert_equal(qa.openness_score, 0) + assert_equal(qa.openness_score_reason, 'License not open') + + +class TestUpdateResource(object): + @classmethod + def setup_class(cls): + reset_db() + archiver_model.init_tables(model.meta.engine) + qa_model.init_tables(model.meta.engine) + + def test_simple(self): + resource = { + 'url': 'http://example.com/file.csv', + 'title': 'Some data', + 'format': '', + } + dataset = ckan_factories.Dataset(resources=[resource]) + resource = model.Resource.get(dataset['resources'][0]['id']) + + ckanext.qa.tasks.update_resource_(dataset['resources'][0]['id'], log) + + qa = qa_model.QA.get_for_resource(dataset['resources'][0]['id']) + assert qa + assert_equal(qa.openness_score, 0) + assert_equal(qa.openness_score_reason, 'License not open') diff --git a/dev-requirements.txt b/dev-requirements.txt new file mode 100644 index 00000000..b69cda16 --- /dev/null +++ b/dev-requirements.txt @@ -0,0 +1,4 @@ +ProgressBar==2.3 +nose +mock +flask diff --git a/pip-requirements-test.txt b/pip-requirements-test.txt deleted file mode 100644 index ced855cc..00000000 --- a/pip-requirements-test.txt +++ /dev/null @@ -1,2 +0,0 @@ -nose==1.2.1 -mock diff --git a/pip-requirements.txt b/pip-requirements.txt deleted file mode 100644 index 77b3ed90..00000000 --- a/pip-requirements.txt +++ /dev/null @@ -1,6 +0,0 @@ -# TODO shouldn't these be left in ckanext-archiver if it is dependency? -celery==2.4.2 -kombu==2.1.3 -kombu-sqlalchemy==1.1.0 -SQLAlchemy>=0.6.6 -requests==2.3.0 diff --git a/qa_dataset.png b/qa_dataset.png new file mode 100644 index 00000000..f2461607 Binary files /dev/null and b/qa_dataset.png differ diff --git a/qa_report.png b/qa_report.png new file mode 100644 index 00000000..e494a935 Binary files /dev/null and b/qa_report.png differ diff --git a/qa_resource.png b/qa_resource.png new file mode 100644 index 00000000..ffc730ee Binary files /dev/null and b/qa_resource.png differ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..2179a605 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,9 @@ +celery==2.4.2 +kombu==2.1.3 +kombu-sqlalchemy==1.1.0 +SQLAlchemy>=0.6.6 +requests>=1.1.0 +xlrd>=0.8.0 +python-magic==0.4.6 +messytables>=0.8 +progressbar \ No newline at end of file diff --git a/setup.py b/setup.py index f3edd526..cbc41dc0 100644 --- a/setup.py +++ b/setup.py @@ -8,16 +8,16 @@ long_description='', classifiers=[], keywords='', - author='Open Knowledge Foundation', + author='Open Knowledge Foundation, Cabinet Office & contributors', author_email='info@okfn.org', url='http://ckan.org/wiki/Extensions', license='mit', packages=find_packages(exclude=['tests']), - namespace_packages=['ckanext', 'ckanext.qa'], + namespace_packages=['ckanext'], include_package_data=True, zip_safe=False, install_requires=[ - # requirements defined in pip-requirements.txt + # Requirements defined in requirements.txt ], tests_require=[ 'nose', diff --git a/test-core.ini b/test-core.ini new file mode 100644 index 00000000..ad68a59c --- /dev/null +++ b/test-core.ini @@ -0,0 +1,63 @@ +# +# ckan - Pylons testing environment configuration +# +# The %(here)s variable will be replaced with the parent directory of this file +# +[DEFAULT] +debug = true +# Uncomment and replace with the address which should receive any error reports +#email_to = you@yourdomain.com +smtp_server = localhost +error_email_from = paste@localhost + +[server:main] +use = egg:Paste#http +host = 0.0.0.0 +port = 5000 + + +[app:main] +use = config:../ckan/test-core.ini + +ckan.plugins = qa + +# Logging configuration +[loggers] +keys = root, ckan, ckanext, sqlalchemy + +[handlers] +keys = console + +[formatters] +keys = generic + +[logger_root] +level = WARN +handlers = console + +[logger_ckan] +qualname = ckan +handlers = console +level = INFO +propagate = 0 + +[logger_ckanext] +qualname = ckanext +handlers = console +level = DEBUG +propagate = 0 + +[logger_sqlalchemy] +handlers = +qualname = sqlalchemy.engine +level = WARN +propagate = 0 + +[handler_console] +class = StreamHandler +args = (sys.stdout,) +level = NOTSET +formatter = generic + +[formatter_generic] +format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s diff --git a/test.ini b/test.ini new file mode 100644 index 00000000..7c1094c4 --- /dev/null +++ b/test.ini @@ -0,0 +1,78 @@ +# +# ckan - Pylons testing environment configuration +# +# The %(here)s variable will be replaced with the parent directory of this file +# +[DEFAULT] +debug = true +# Uncomment and replace with the address which should receive any error reports +#email_to = you@yourdomain.com +smtp_server = localhost +error_email_from = paste@localhost + +[server:main] +use = egg:Paste#http +host = 0.0.0.0 +port = 5000 + + +[app:main] +use = config:test-core.ini +# Here we hard-code the database and a flag to make default tests +# run fast. +faster_db_test_hacks = True +sqlalchemy.url = sqlite:/// +# NB: other test configuration should go in test-core.ini, which is +# what the postgres tests use. + +# Logging configuration +[loggers] +keys = root, activity, harvest, ckan, ckanext, sqlalchemy + +[handlers] +keys = console + +[formatters] +keys = generic + +[logger_root] +level = WARN +handlers = console + +[logger_ckan] +qualname = ckan +handlers = console +level = DEBUG +propagate = 0 + +[logger_ckanext] +qualname = ckanext +handlers = console +level = DEBUG +propagate = 0 + +[logger_sqlalchemy] +handlers = console +qualname = sqlalchemy.engine +level = WARN + +[logger_harvest] +level = WARNING +handlers = console +qualname = ckanext.harvest +propagate = 0 + +[logger_activity] +level = WARNING +handlers = console +qualname = ckan.lib.activity +propagate = 0 + +[handler_console] +class = StreamHandler +args = (sys.stdout,) +level = NOTSET +formatter = generic + +[formatter_generic] +format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s diff --git a/tests/fake_ckan.py b/tests/fake_ckan.py deleted file mode 100644 index 077f9545..00000000 --- a/tests/fake_ckan.py +++ /dev/null @@ -1,46 +0,0 @@ -from flask import Flask, request, jsonify -app = Flask(__name__) - -request_store = [] - -@app.route("/api/action/task_status_update_many", methods=['GET', 'POST']) -def task_status_update_many(): - request_store.append({ - "data": request.json, - "headers": dict(request.headers) - }) - return 'ok' - -@app.route("/api/action/task_status_update", methods=['GET', 'POST']) -def task_status_update(): - request_store.append({ - "data": request.json, - "headers": dict(request.headers) - }) - return 'ok' - -@app.route("/api/action/task_status_show", methods=['GET', 'POST']) -def task_status_show(): - # resource_score in task.py is just checking for a 'openness_score_failure_count' - # key, but will default to 0 if it doesn't exist - return jsonify({'success': False}) - -@app.route("/api/action/resource_update", methods=['GET', 'POST']) -def resource_update(): - request_store.append({ - "data": request.json, - "headers": dict(request.headers) - }) - return 'ok' - -@app.route("/last_request", methods=['GET', 'POST']) -def last_request(): - return jsonify(request_store.pop()) - -@app.route("/", methods=['GET', 'POST']) -def ok(): - return 'ok' - -if __name__ == "__main__": - app.run(port=50001) - diff --git a/tests/test_extension.py b/tests/test_extension.py deleted file mode 100644 index be2e9fd5..00000000 --- a/tests/test_extension.py +++ /dev/null @@ -1,40 +0,0 @@ -from paste.deploy import appconfig -import paste.fixture - -from ckan.config.middleware import make_app -from ckan.tests import conf_dir, url_for, CreateTestData -from ckan import model -from ckan.lib.dictization.model_dictize import package_dictize - -class TestQAController: - @classmethod - def setup_class(cls): - config = appconfig('config:test.ini', relative_to=conf_dir) - config.local_conf['ckan.plugins'] = 'qa' - wsgiapp = make_app(config.global_conf, **config.local_conf) - cls.app = paste.fixture.TestApp(wsgiapp) - CreateTestData.create() - - @classmethod - def teardown_class(self): - CreateTestData.delete() - - def test_index(self): - url = url_for('qa') - response = self.app.get(url) - assert 'Quality Assurance' in response, response - - def test_packages_with_broken_resource_links(self): - url = url_for('qa_dataset_action', action='broken_resource_links') - response = self.app.get(url) - assert 'broken resource.' in response, response - - def test_package_openness_scores(self): - context = {'model': model, 'session': model.Session} - for p in model.Session.query(model.Package): - context['id'] = p.id - p = package_dictize(p, context) - url = url_for('qa_dataset_action', action='five_stars') - response = self.app.get(url) - assert 'openness scores' in response, response - diff --git a/tests/test_tasks.py b/tests/test_tasks.py deleted file mode 100644 index febddb52..00000000 --- a/tests/test_tasks.py +++ /dev/null @@ -1,212 +0,0 @@ -import os -import subprocess -import time -import requests -import json -from functools import wraps -from mock import patch, Mock -from nose.tools import raises -from ckan import model -from ckan.tests import BaseCase - -from ckanext.qa.tasks import resource_score, update -from mock_remote_server import MockEchoTestServer, MockTimeoutTestServer - -def with_mock_url(url=''): - """ - Start a MockEchoTestServer call the decorated function with the server's address prepended to ``url``. - """ - def decorator(func): - @wraps(func) - def decorated(*args, **kwargs): - with MockEchoTestServer().serve() as serveraddr: - return func(*(args + ('%s/%s' % (serveraddr, url),)), **kwargs) - return decorated - return decorator - - -class TestResultScore(BaseCase): - - @classmethod - def setup_class(cls): - fake_ckan_path = os.path.join(os.path.dirname(__file__), "fake_ckan.py") - cls.fake_ckan = subprocess.Popen(['python', fake_ckan_path]) - cls.fake_ckan_url = 'http://0.0.0.0:50001' - - #make sure services are running - for i in range(0, 12): - time.sleep(0.1) - response = requests.get(cls.fake_ckan_url) - if response: - break - else: - raise Exception('services did not start!') - - cls.fake_context = { - 'site_url': cls.fake_ckan_url, - 'apikey': u'fake_api_key' - } - cls.fake_resource = { - 'id': u'fake_resource_id', - 'url': cls.fake_ckan_url, - 'package': u'fake_package_id', - 'is_open': True, - 'position': 2, - } - - @classmethod - def teardown_class(cls): - cls.fake_ckan.kill() - - @with_mock_url('?status=200&content-type=text%2Fcsv&content=test') - def test_url_with_content(self, url): - data = self.fake_resource - data['url'] = url - result = resource_score(self.fake_context, data) - assert result['openness_score'] == 3, result - - @with_mock_url('?status=503') - def test_url_with_temporary_fetch_error_not_scored(self, url): - data = self.fake_resource - data['url'] = url - result = resource_score(self.fake_context, data) - assert result['openness_score'] == 0, result - assert result['openness_score_reason'] == 'Service unavailable' or \ - result['openness_score_reason'] == 'Server returned error: Service unavailable', result - - @with_mock_url('?status=404') - def test_url_with_permanent_fetch_error_scores_zero(self, url): - data = self.fake_resource - data['url'] = url - result = resource_score(self.fake_context, data) - assert result['openness_score'] == 0, result - assert result['openness_score_reason'] == 'URL unobtainable' or \ - result['openness_score_reason'] == 'URL unobtainable: Server returned HTTP 404', result - - @with_mock_url('?content-type=arfle%2Fbarfle-gloop') - def test_url_with_unknown_content_type_scores_one(self, url): - data = self.fake_resource - data['url'] = url - result = resource_score(self.fake_context, data) - assert result['openness_score'] == 0, result - assert result['openness_score_reason'] == 'unrecognised content type', result - - @with_mock_url('?content-type=text%2Fplain') - def test_url_pointing_to_html_page_scores_one(self, url): - data = self.fake_resource - data['url'] = url - result = resource_score(self.fake_context, data) - assert result['openness_score'] == 1, result - assert result['openness_score_reason'] == 'obtainable via web page', result - - @with_mock_url('?content-type=text%2Fplain%3B+charset=UTF-8') - def test_content_type_with_charset_still_recognized(self, url): - data = self.fake_resource - data['url'] = url - result = resource_score(self.fake_context, data) - assert result['openness_score'] == 1, result - assert result['openness_score_reason'] == 'obtainable via web page', result - - @with_mock_url('?content-type=application%2Fvnd.ms-excel') - def test_machine_readable_formats_score_two(self, url): - data = self.fake_resource - data['url'] = url - result = resource_score(self.fake_context, data) - assert result['openness_score'] == 2, result - assert result['openness_score_reason'] == 'machine readable format', result - - @with_mock_url('?content-type=text%2Fcsv') - def test_open_standard_formats_score_three(self, url): - data = self.fake_resource - data['url'] = url - result = resource_score(self.fake_context, data) - assert result['openness_score'] == 3, result - assert result['openness_score_reason'] == 'open and standardized format', result - - @with_mock_url('?content-type=application%2Frdf%2Bxml') - def test_ontological_formats_score_four(self, url): - data = self.fake_resource - data['url'] = url - result = resource_score(self.fake_context, data) - assert result['openness_score'] == 4, result - assert result['openness_score_reason'] == 'ontologically represented', result - - @with_mock_url('?status=503') - def test_temporary_failure_increments_failure_count(self, url): - data = self.fake_resource - data['url'] = url - result = resource_score(self.fake_context, data) - assert result['openness_score_failure_count'] == 1, result - - -class TestTask(BaseCase): - @classmethod - def setup_class(cls): - fake_ckan_path = os.path.join(os.path.dirname(__file__), "fake_ckan.py") - cls.fake_ckan = subprocess.Popen(['python', fake_ckan_path]) - cls.fake_ckan_url = 'http://0.0.0.0:50001' - - #make sure services are running - for i in range(0, 12): - time.sleep(0.1) - response = requests.get(cls.fake_ckan_url) - if response: - break - else: - raise Exception('services did not start!') - - cls.fake_context = { - 'site_url': cls.fake_ckan_url, - 'apikey': u'fake_api_key' - } - cls.fake_resource = { - 'id': u'fake_resource_id', - 'url': cls.fake_ckan_url, - 'package': u'fake_package_id', - 'is_open': True, - 'position': 2, - } - - @classmethod - def teardown_class(cls): - cls.fake_ckan.kill() - - @with_mock_url('?status=200&content=test&content-type=text%2Fcsv') - def test_task_updates_task_status_table(self, url): - data = self.fake_resource - data['url'] = url - context = json.dumps(self.fake_context) - data = json.dumps(data) - result = json.loads(update(context, data)) - - response = requests.get(self.fake_ckan_url + '/last_request') - headers = json.loads(response.content)['headers'] - - assert headers['Content-Type'] == 'application/json', headers - assert headers['Authorization'] == 'fake_api_key', headers - - task_data = json.loads(response.content)['data']['data'] - - score = False - score_reason = False - score_failure_count = False - - for d in task_data: - assert d['entity_id'] == 'fake_resource_id', d - assert d['entity_type'] == 'resource', d - assert d['task_type'] == 'qa', d - - if d['key'] == 'openness_score': - score = True - assert d['value'] == 3, d - elif d['key'] == 'openness_score_reason': - score_reason = True - assert d['value'] == 'open and standardized format', d - elif d['key'] == 'openness_score_failure_count': - score_failure_count = True - assert d['value'] == 0, d - - assert score - assert score_reason - assert score_failure_count -