| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
# automatically generated file, don't edit |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
# Copyright 2023 David Cantrell, derived from data from libphonenumber |
|
6
|
|
|
|
|
|
|
# http://code.google.com/p/libphonenumber/ |
|
7
|
|
|
|
|
|
|
# |
|
8
|
|
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
|
9
|
|
|
|
|
|
|
# you may not use this file except in compliance with the License. |
|
10
|
|
|
|
|
|
|
# You may obtain a copy of the License at |
|
11
|
|
|
|
|
|
|
# |
|
12
|
|
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0 |
|
13
|
|
|
|
|
|
|
# |
|
14
|
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software |
|
15
|
|
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, |
|
16
|
|
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
17
|
|
|
|
|
|
|
# See the License for the specific language governing permissions and |
|
18
|
|
|
|
|
|
|
# limitations under the License. |
|
19
|
|
|
|
|
|
|
package Number::Phone::StubCountry::IM; |
|
20
|
8
|
|
|
8
|
|
4976
|
use base qw(Number::Phone::StubCountry); |
|
|
8
|
|
|
|
|
26
|
|
|
|
8
|
|
|
|
|
953
|
|
|
21
|
|
|
|
|
|
|
|
|
22
|
8
|
|
|
8
|
|
119
|
use strict; |
|
|
8
|
|
|
|
|
24
|
|
|
|
8
|
|
|
|
|
195
|
|
|
23
|
8
|
|
|
8
|
|
49
|
use warnings; |
|
|
8
|
|
|
|
|
19
|
|
|
|
8
|
|
|
|
|
215
|
|
|
24
|
8
|
|
|
8
|
|
43
|
use utf8; |
|
|
8
|
|
|
|
|
19
|
|
|
|
8
|
|
|
|
|
57
|
|
|
25
|
|
|
|
|
|
|
our $VERSION = 1.20230903131447; |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
my $formatters = [ |
|
28
|
|
|
|
|
|
|
{ |
|
29
|
|
|
|
|
|
|
'format' => '$1 $2', |
|
30
|
|
|
|
|
|
|
'leading_digits' => '8001111', |
|
31
|
|
|
|
|
|
|
'national_rule' => '0$1', |
|
32
|
|
|
|
|
|
|
'pattern' => '(\\d{3})(\\d{4})' |
|
33
|
|
|
|
|
|
|
}, |
|
34
|
|
|
|
|
|
|
{ |
|
35
|
|
|
|
|
|
|
'format' => '$1 $2 $3', |
|
36
|
|
|
|
|
|
|
'leading_digits' => '845464', |
|
37
|
|
|
|
|
|
|
'national_rule' => '0$1', |
|
38
|
|
|
|
|
|
|
'pattern' => '(\\d{3})(\\d{2})(\\d{2})' |
|
39
|
|
|
|
|
|
|
}, |
|
40
|
|
|
|
|
|
|
{ |
|
41
|
|
|
|
|
|
|
'format' => '$1 $2', |
|
42
|
|
|
|
|
|
|
'leading_digits' => '800', |
|
43
|
|
|
|
|
|
|
'national_rule' => '0$1', |
|
44
|
|
|
|
|
|
|
'pattern' => '(\\d{3})(\\d{6})' |
|
45
|
|
|
|
|
|
|
}, |
|
46
|
|
|
|
|
|
|
{ |
|
47
|
|
|
|
|
|
|
'format' => '$1 $2', |
|
48
|
|
|
|
|
|
|
'leading_digits' => ' |
|
49
|
|
|
|
|
|
|
1(?: |
|
50
|
|
|
|
|
|
|
3873| |
|
51
|
|
|
|
|
|
|
5(?: |
|
52
|
|
|
|
|
|
|
242| |
|
53
|
|
|
|
|
|
|
39[4-6] |
|
54
|
|
|
|
|
|
|
)| |
|
55
|
|
|
|
|
|
|
(?: |
|
56
|
|
|
|
|
|
|
697| |
|
57
|
|
|
|
|
|
|
768 |
|
58
|
|
|
|
|
|
|
)[347]| |
|
59
|
|
|
|
|
|
|
9467 |
|
60
|
|
|
|
|
|
|
) |
|
61
|
|
|
|
|
|
|
', |
|
62
|
|
|
|
|
|
|
'national_rule' => '0$1', |
|
63
|
|
|
|
|
|
|
'pattern' => '(\\d{5})(\\d{4,5})' |
|
64
|
|
|
|
|
|
|
}, |
|
65
|
|
|
|
|
|
|
{ |
|
66
|
|
|
|
|
|
|
'format' => '$1 $2', |
|
67
|
|
|
|
|
|
|
'leading_digits' => ' |
|
68
|
|
|
|
|
|
|
1(?: |
|
69
|
|
|
|
|
|
|
[2-69][02-9]| |
|
70
|
|
|
|
|
|
|
[78] |
|
71
|
|
|
|
|
|
|
) |
|
72
|
|
|
|
|
|
|
', |
|
73
|
|
|
|
|
|
|
'national_rule' => '0$1', |
|
74
|
|
|
|
|
|
|
'pattern' => '(\\d{4})(\\d{5,6})' |
|
75
|
|
|
|
|
|
|
}, |
|
76
|
|
|
|
|
|
|
{ |
|
77
|
|
|
|
|
|
|
'format' => '$1 $2 $3', |
|
78
|
|
|
|
|
|
|
'leading_digits' => ' |
|
79
|
|
|
|
|
|
|
[25]| |
|
80
|
|
|
|
|
|
|
7(?: |
|
81
|
|
|
|
|
|
|
0| |
|
82
|
|
|
|
|
|
|
6(?: |
|
83
|
|
|
|
|
|
|
[03-9]| |
|
84
|
|
|
|
|
|
|
2[356] |
|
85
|
|
|
|
|
|
|
) |
|
86
|
|
|
|
|
|
|
) |
|
87
|
|
|
|
|
|
|
', |
|
88
|
|
|
|
|
|
|
'national_rule' => '0$1', |
|
89
|
|
|
|
|
|
|
'pattern' => '(\\d{2})(\\d{4})(\\d{4})' |
|
90
|
|
|
|
|
|
|
}, |
|
91
|
|
|
|
|
|
|
{ |
|
92
|
|
|
|
|
|
|
'format' => '$1 $2', |
|
93
|
|
|
|
|
|
|
'leading_digits' => '7', |
|
94
|
|
|
|
|
|
|
'national_rule' => '0$1', |
|
95
|
|
|
|
|
|
|
'pattern' => '(\\d{4})(\\d{6})' |
|
96
|
|
|
|
|
|
|
}, |
|
97
|
|
|
|
|
|
|
{ |
|
98
|
|
|
|
|
|
|
'format' => '$1 $2 $3', |
|
99
|
|
|
|
|
|
|
'leading_digits' => '[1389]', |
|
100
|
|
|
|
|
|
|
'national_rule' => '0$1', |
|
101
|
|
|
|
|
|
|
'pattern' => '(\\d{3})(\\d{3})(\\d{4})' |
|
102
|
|
|
|
|
|
|
} |
|
103
|
|
|
|
|
|
|
]; |
|
104
|
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
my $validators = { |
|
106
|
|
|
|
|
|
|
'fixed_line' => ' |
|
107
|
|
|
|
|
|
|
1624(?: |
|
108
|
|
|
|
|
|
|
230| |
|
109
|
|
|
|
|
|
|
[5-8]\\d\\d |
|
110
|
|
|
|
|
|
|
)\\d{3} |
|
111
|
|
|
|
|
|
|
', |
|
112
|
|
|
|
|
|
|
'geographic' => ' |
|
113
|
|
|
|
|
|
|
1624(?: |
|
114
|
|
|
|
|
|
|
230| |
|
115
|
|
|
|
|
|
|
[5-8]\\d\\d |
|
116
|
|
|
|
|
|
|
)\\d{3} |
|
117
|
|
|
|
|
|
|
', |
|
118
|
|
|
|
|
|
|
'mobile' => ' |
|
119
|
|
|
|
|
|
|
76245[06]\\d{4}| |
|
120
|
|
|
|
|
|
|
7(?: |
|
121
|
|
|
|
|
|
|
4576| |
|
122
|
|
|
|
|
|
|
[59]24\\d| |
|
123
|
|
|
|
|
|
|
624[0-4689] |
|
124
|
|
|
|
|
|
|
)\\d{5} |
|
125
|
|
|
|
|
|
|
', |
|
126
|
|
|
|
|
|
|
'pager' => '', |
|
127
|
|
|
|
|
|
|
'personal_number' => '70\\d{8}', |
|
128
|
|
|
|
|
|
|
'specialrate' => '( |
|
129
|
|
|
|
|
|
|
8(?: |
|
130
|
|
|
|
|
|
|
440[49]06| |
|
131
|
|
|
|
|
|
|
72299\\d |
|
132
|
|
|
|
|
|
|
)\\d{3}| |
|
133
|
|
|
|
|
|
|
(?: |
|
134
|
|
|
|
|
|
|
8(?: |
|
135
|
|
|
|
|
|
|
45| |
|
136
|
|
|
|
|
|
|
70 |
|
137
|
|
|
|
|
|
|
)| |
|
138
|
|
|
|
|
|
|
90[0167] |
|
139
|
|
|
|
|
|
|
)624\\d{4} |
|
140
|
|
|
|
|
|
|
)|( |
|
141
|
|
|
|
|
|
|
3440[49]06\\d{3}| |
|
142
|
|
|
|
|
|
|
(?: |
|
143
|
|
|
|
|
|
|
3(?: |
|
144
|
|
|
|
|
|
|
08162| |
|
145
|
|
|
|
|
|
|
3\\d{4}| |
|
146
|
|
|
|
|
|
|
45624| |
|
147
|
|
|
|
|
|
|
7(?: |
|
148
|
|
|
|
|
|
|
0624| |
|
149
|
|
|
|
|
|
|
2299 |
|
150
|
|
|
|
|
|
|
) |
|
151
|
|
|
|
|
|
|
)| |
|
152
|
|
|
|
|
|
|
55\\d{4} |
|
153
|
|
|
|
|
|
|
)\\d{4} |
|
154
|
|
|
|
|
|
|
)', |
|
155
|
|
|
|
|
|
|
'toll_free' => '808162\\d{4}', |
|
156
|
|
|
|
|
|
|
'voip' => '56\\d{8}' |
|
157
|
|
|
|
|
|
|
}; |
|
158
|
|
|
|
|
|
|
my %areanames = (); |
|
159
|
|
|
|
|
|
|
$areanames{en} = {"4413392", "Aboyne", |
|
160
|
|
|
|
|
|
|
"441494", "High\ Wycombe", |
|
161
|
|
|
|
|
|
|
"441379", "Diss", |
|
162
|
|
|
|
|
|
|
"4418909", "Ayton", |
|
163
|
|
|
|
|
|
|
"441929", "Wareham", |
|
164
|
|
|
|
|
|
|
"441919", "Durham", |
|
165
|
|
|
|
|
|
|
"4416862", "Llanidloes", |
|
166
|
|
|
|
|
|
|
"441670", "Morpeth", |
|
167
|
|
|
|
|
|
|
"441661", "Prudhoe", |
|
168
|
|
|
|
|
|
|
"441573", "Kelso", |
|
169
|
|
|
|
|
|
|
"441144", "Sheffield", |
|
170
|
|
|
|
|
|
|
"441557", "Kirkcudbright", |
|
171
|
|
|
|
|
|
|
"441565", "Knutsford", |
|
172
|
|
|
|
|
|
|
"4418477", "Tongue", |
|
173
|
|
|
|
|
|
|
"441951", "Colonsay", |
|
174
|
|
|
|
|
|
|
"441769", "South\ Molton", |
|
175
|
|
|
|
|
|
|
"441922", "Walsall", |
|
176
|
|
|
|
|
|
|
"441912", "Tyneside", |
|
177
|
|
|
|
|
|
|
"441568", "Leominster", |
|
178
|
|
|
|
|
|
|
"441354", "Chatteris", |
|
179
|
|
|
|
|
|
|
"441372", "Esher", |
|
180
|
|
|
|
|
|
|
"4412294", "Barrow\-in\-Furness", |
|
181
|
|
|
|
|
|
|
"441980", "Amesbury", |
|
182
|
|
|
|
|
|
|
"44161", "Manchester", |
|
183
|
|
|
|
|
|
|
"4412295", "Barrow\-in\-Furness", |
|
184
|
|
|
|
|
|
|
"441943", "Guiseley", |
|
185
|
|
|
|
|
|
|
"441737", "Redhill", |
|
186
|
|
|
|
|
|
|
"441992", "Lea\ Valley", |
|
187
|
|
|
|
|
|
|
"441254", "Blackburn", |
|
188
|
|
|
|
|
|
|
"441424", "Hastings", |
|
189
|
|
|
|
|
|
|
"4419750", "Alford\ \(Aberdeen\)\/Strathdon", |
|
190
|
|
|
|
|
|
|
"441279", "Bishops\ Stortford", |
|
191
|
|
|
|
|
|
|
"441784", "Staines", |
|
192
|
|
|
|
|
|
|
"441845", "Thirsk", |
|
193
|
|
|
|
|
|
|
"441707", "Welwyn\ Garden\ City", |
|
194
|
|
|
|
|
|
|
"441460", "Chard", |
|
195
|
|
|
|
|
|
|
"441471", "Isle\ of\ Skye\ \-\ Broadford", |
|
196
|
|
|
|
|
|
|
"441848", "Thornhill", |
|
197
|
|
|
|
|
|
|
"441923", "Watford", |
|
198
|
|
|
|
|
|
|
"441913", "Durham", |
|
199
|
|
|
|
|
|
|
"441357", "Strathaven", |
|
200
|
|
|
|
|
|
|
"4418472", "Thurso", |
|
201
|
|
|
|
|
|
|
"441373", "Frome", |
|
202
|
|
|
|
|
|
|
"441572", "Oakham", |
|
203
|
|
|
|
|
|
|
"441554", "Llanelli", |
|
204
|
|
|
|
|
|
|
"441368", "Dunbar", |
|
205
|
|
|
|
|
|
|
"441856", "Orkney", |
|
206
|
|
|
|
|
|
|
"441676", "Meriden", |
|
207
|
|
|
|
|
|
|
"44114701", "Sheffield", |
|
208
|
|
|
|
|
|
|
"441778", "Bourne", |
|
209
|
|
|
|
|
|
|
"4413397", "Ballater", |
|
210
|
|
|
|
|
|
|
"441579", "Liskeard", |
|
211
|
|
|
|
|
|
|
"441828", "Coupar\ Angus", |
|
212
|
|
|
|
|
|
|
"441775", "Spalding", |
|
213
|
|
|
|
|
|
|
"441444", "Haywards\ Heath", |
|
214
|
|
|
|
|
|
|
"441497", "Hay\-on\-Wye", |
|
215
|
|
|
|
|
|
|
"44281", "Northern\ Ireland", |
|
216
|
|
|
|
|
|
|
"4416867", "Llanidloes", |
|
217
|
|
|
|
|
|
|
"441763", "Royston", |
|
218
|
|
|
|
|
|
|
"441825", "Uckfield", |
|
219
|
|
|
|
|
|
|
"441704", "Southport", |
|
220
|
|
|
|
|
|
|
"441986", "Bungay", |
|
221
|
|
|
|
|
|
|
"4418901", "Coldstream\/Ayton", |
|
222
|
|
|
|
|
|
|
"4412296", "Barrow\-in\-Furness", |
|
223
|
|
|
|
|
|
|
"44114705", "Sheffield", |
|
224
|
|
|
|
|
|
|
"441427", "Gainsborough", |
|
225
|
|
|
|
|
|
|
"442311", "Southampton", |
|
226
|
|
|
|
|
|
|
"441895", "Uxbridge", |
|
227
|
|
|
|
|
|
|
"441949", "Whatton", |
|
228
|
|
|
|
|
|
|
"441787", "Sudbury", |
|
229
|
|
|
|
|
|
|
"4418908", "Coldstream", |
|
230
|
|
|
|
|
|
|
"441942", "Wigan", |
|
231
|
|
|
|
|
|
|
"442870", "Coleraine", |
|
232
|
|
|
|
|
|
|
"441993", "Witney", |
|
233
|
|
|
|
|
|
|
"441900", "Workington", |
|
234
|
|
|
|
|
|
|
"441257", "Coppull", |
|
235
|
|
|
|
|
|
|
"441273", "Brighton", |
|
236
|
|
|
|
|
|
|
"441268", "Basildon", |
|
237
|
|
|
|
|
|
|
"441466", "Huntly", |
|
238
|
|
|
|
|
|
|
"441759", "Pocklington", |
|
239
|
|
|
|
|
|
|
"4419751", "Alford\ \(Aberdeen\)\/Strathdon", |
|
240
|
|
|
|
|
|
|
"441282", "Burnley", |
|
241
|
|
|
|
|
|
|
"441558", "Llandeilo", |
|
242
|
|
|
|
|
|
|
"441364", "Ashburton", |
|
243
|
|
|
|
|
|
|
"441629", "Matlock", |
|
244
|
|
|
|
|
|
|
"442893", "Ballyclare", |
|
245
|
|
|
|
|
|
|
"4419758", "Strathdon", |
|
246
|
|
|
|
|
|
|
"441970", "Aberystwyth", |
|
247
|
|
|
|
|
|
|
"441567", "Killin", |
|
248
|
|
|
|
|
|
|
"4414346", "Hexham", |
|
249
|
|
|
|
|
|
|
"442842", "Kircubbin", |
|
250
|
|
|
|
|
|
|
"441555", "Lanark", |
|
251
|
|
|
|
|
|
|
"441320", "Fort\ Augustus", |
|
252
|
|
|
|
|
|
|
"441290", "Cumnock", |
|
253
|
|
|
|
|
|
|
"441246", "Chesterfield", |
|
254
|
|
|
|
|
|
|
"4414375", "Clynderwen\ \(Clunderwen\)", |
|
255
|
|
|
|
|
|
|
"4419644", "Patrington", |
|
256
|
|
|
|
|
|
|
"441721", "Peebles", |
|
257
|
|
|
|
|
|
|
"4414374", "Clynderwen\ \(Clunderwen\)", |
|
258
|
|
|
|
|
|
|
"4419645", "Hornsea", |
|
259
|
|
|
|
|
|
|
"441651", "Oldmeldrum", |
|
260
|
|
|
|
|
|
|
"441871", "Castlebay", |
|
261
|
|
|
|
|
|
|
"441481", "Guernsey", |
|
262
|
|
|
|
|
|
|
"442849", "Northern\ Ireland", |
|
263
|
|
|
|
|
|
|
"441289", "Berwick\-upon\-Tweed", |
|
264
|
|
|
|
|
|
|
"441824", "Ruthin", |
|
265
|
|
|
|
|
|
|
"441233", "Ashford\ \(Kent\)", |
|
266
|
|
|
|
|
|
|
"441622", "Maidstone", |
|
267
|
|
|
|
|
|
|
"441752", "Plymouth", |
|
268
|
|
|
|
|
|
|
"441526", "Martin", |
|
269
|
|
|
|
|
|
|
"441445", "Gairloch", |
|
270
|
|
|
|
|
|
|
"442886", "Cookstown", |
|
271
|
|
|
|
|
|
|
"442830", "Newry", |
|
272
|
|
|
|
|
|
|
"441346", "Fraserburgh", |
|
273
|
|
|
|
|
|
|
"441450", "Hawick", |
|
274
|
|
|
|
|
|
|
"441636", "Newark\-on\-Trent", |
|
275
|
|
|
|
|
|
|
"441680", "Isle\ of\ Mull\ \-\ Craignure", |
|
276
|
|
|
|
|
|
|
"441389", "Dumbarton", |
|
277
|
|
|
|
|
|
|
"441692", "North\ Walsham", |
|
278
|
|
|
|
|
|
|
"441333", "Peat\ Inn\ \(Leven\ \(Fife\)\)", |
|
279
|
|
|
|
|
|
|
"441509", "Loughborough", |
|
280
|
|
|
|
|
|
|
"441643", "Minehead", |
|
281
|
|
|
|
|
|
|
"441708", "Romford", |
|
282
|
|
|
|
|
|
|
"441606", "Northwich", |
|
283
|
|
|
|
|
|
|
"441540", "Kingussie", |
|
284
|
|
|
|
|
|
|
"441382", "Dundee", |
|
285
|
|
|
|
|
|
|
"4416863", "Llanidloes", |
|
286
|
|
|
|
|
|
|
"441264", "Andover", |
|
287
|
|
|
|
|
|
|
"441502", "Lowestoft", |
|
288
|
|
|
|
|
|
|
"441303", "Folkestone", |
|
289
|
|
|
|
|
|
|
"442823", "Northern\ Ireland", |
|
290
|
|
|
|
|
|
|
"441539", "Kendal", |
|
291
|
|
|
|
|
|
|
"441583", "Carradale", |
|
292
|
|
|
|
|
|
|
"441738", "Perth", |
|
293
|
|
|
|
|
|
|
"4413393", "Aboyne", |
|
294
|
|
|
|
|
|
|
"441827", "Tamworth", |
|
295
|
|
|
|
|
|
|
"441623", "Mansfield", |
|
296
|
|
|
|
|
|
|
"441753", "Slough", |
|
297
|
|
|
|
|
|
|
"441495", "Pontypool", |
|
298
|
|
|
|
|
|
|
"441777", "Retford", |
|
299
|
|
|
|
|
|
|
"4414345", "Haltwhistle", |
|
300
|
|
|
|
|
|
|
"441326", "Falmouth", |
|
301
|
|
|
|
|
|
|
"441296", "Aylesbury", |
|
302
|
|
|
|
|
|
|
"442899", "Northern\ Ireland", |
|
303
|
|
|
|
|
|
|
"4414344", "Bellingham", |
|
304
|
|
|
|
|
|
|
"441209", "Redruth", |
|
305
|
|
|
|
|
|
|
"442892", "Lisburn", |
|
306
|
|
|
|
|
|
|
"441202", "Bournemouth", |
|
307
|
|
|
|
|
|
|
"441564", "Lapworth", |
|
308
|
|
|
|
|
|
|
"441358", "Ellon", |
|
309
|
|
|
|
|
|
|
"442843", "Newcastle\ \(Co\.\ Down\)", |
|
310
|
|
|
|
|
|
|
"441431", "Helmsdale", |
|
311
|
|
|
|
|
|
|
"4414376", "Haverfordwest", |
|
312
|
|
|
|
|
|
|
"441866", "Kilchrenan", |
|
313
|
|
|
|
|
|
|
"441145", "Sheffield", |
|
314
|
|
|
|
|
|
|
"4419646", "Patrington", |
|
315
|
|
|
|
|
|
|
"4418900", "Coldstream\/Ayton", |
|
316
|
|
|
|
|
|
|
"442880", "Carrickmore", |
|
317
|
|
|
|
|
|
|
"441355", "East\ Kilbride", |
|
318
|
|
|
|
|
|
|
"441520", "Lochcarron", |
|
319
|
|
|
|
|
|
|
"441283", "Burton\-on\-Trent", |
|
320
|
|
|
|
|
|
|
"441239", "Cardigan", |
|
321
|
|
|
|
|
|
|
"441367", "Faringdon", |
|
322
|
|
|
|
|
|
|
"441302", "Doncaster", |
|
323
|
|
|
|
|
|
|
"442822", "Northern\ Ireland", |
|
324
|
|
|
|
|
|
|
"441258", "Blandford", |
|
325
|
|
|
|
|
|
|
"441582", "Luton", |
|
326
|
|
|
|
|
|
|
"441456", "Glenurquhart", |
|
327
|
|
|
|
|
|
|
"4419759", "Alford\ \(Aberdeen\)", |
|
328
|
|
|
|
|
|
|
"441340", "Craigellachie\ \(Aberlour\)", |
|
329
|
|
|
|
|
|
|
"441630", "Market\ Drayton", |
|
330
|
|
|
|
|
|
|
"441590", "Lymington", |
|
331
|
|
|
|
|
|
|
"441255", "Clacton\-on\-Sea", |
|
332
|
|
|
|
|
|
|
"441383", "Dunfermline", |
|
333
|
|
|
|
|
|
|
"441267", "Carmarthen", |
|
334
|
|
|
|
|
|
|
"441503", "Looe", |
|
335
|
|
|
|
|
|
|
"441332", "Derby", |
|
336
|
|
|
|
|
|
|
"441844", "Thame", |
|
337
|
|
|
|
|
|
|
"44241", "Coventry", |
|
338
|
|
|
|
|
|
|
"441785", "Stafford", |
|
339
|
|
|
|
|
|
|
"441642", "Middlesbrough", |
|
340
|
|
|
|
|
|
|
"441425", "Ringwood", |
|
341
|
|
|
|
|
|
|
"441600", "Monmouth", |
|
342
|
|
|
|
|
|
|
"441546", "Lochgilphead", |
|
343
|
|
|
|
|
|
|
"441226", "Barnsley", |
|
344
|
|
|
|
|
|
|
"441788", "Rugby", |
|
345
|
|
|
|
|
|
|
"4418473", "Thurso", |
|
346
|
|
|
|
|
|
|
"441309", "Forres", |
|
347
|
|
|
|
|
|
|
"442829", "Kilrea", |
|
348
|
|
|
|
|
|
|
"441428", "Haslemere", |
|
349
|
|
|
|
|
|
|
"4414304", "North\ Cave", |
|
350
|
|
|
|
|
|
|
"441675", "Coleshill", |
|
351
|
|
|
|
|
|
|
"441855", "Ballachulish", |
|
352
|
|
|
|
|
|
|
"4414305", "North\ Cave", |
|
353
|
|
|
|
|
|
|
"441663", "New\ Mills", |
|
354
|
|
|
|
|
|
|
"442837", "Armagh", |
|
355
|
|
|
|
|
|
|
"441678", "Bala", |
|
356
|
|
|
|
|
|
|
"441858", "Market\ Harborough", |
|
357
|
|
|
|
|
|
|
"441366", "Downham\ Market", |
|
358
|
|
|
|
|
|
|
"441524", "Lancaster", |
|
359
|
|
|
|
|
|
|
"441776", "Stranraer", |
|
360
|
|
|
|
|
|
|
"442884", "Northern\ Ireland", |
|
361
|
|
|
|
|
|
|
"4418470", "Thurso\/Tongue", |
|
362
|
|
|
|
|
|
|
"441244", "Chester", |
|
363
|
|
|
|
|
|
|
"441327", "Daventry", |
|
364
|
|
|
|
|
|
|
"441571", "Lochinver", |
|
365
|
|
|
|
|
|
|
"441297", "Axminster", |
|
366
|
|
|
|
|
|
|
"441953", "Wymondham", |
|
367
|
|
|
|
|
|
|
"441560", "Moscow", |
|
368
|
|
|
|
|
|
|
"441977", "Pontefract", |
|
369
|
|
|
|
|
|
|
"4414235", "Harrogate", |
|
370
|
|
|
|
|
|
|
"441896", "Galashiels", |
|
371
|
|
|
|
|
|
|
"441988", "Wigtown", |
|
372
|
|
|
|
|
|
|
"441594", "Lydney", |
|
373
|
|
|
|
|
|
|
"4414234", "Boroughbridge", |
|
374
|
|
|
|
|
|
|
"441809", "Tomdoun", |
|
375
|
|
|
|
|
|
|
"441547", "Knighton", |
|
376
|
|
|
|
|
|
|
"441832", "Clopton", |
|
377
|
|
|
|
|
|
|
"441344", "Bracknell", |
|
378
|
|
|
|
|
|
|
"441227", "Canterbury", |
|
379
|
|
|
|
|
|
|
"441634", "Medway", |
|
380
|
|
|
|
|
|
|
"441985", "Warminster", |
|
381
|
|
|
|
|
|
|
"441397", "Fort\ William", |
|
382
|
|
|
|
|
|
|
"441465", "Girvan", |
|
383
|
|
|
|
|
|
|
"4413885", "Stanhope\ \(Eastgate\)", |
|
384
|
|
|
|
|
|
|
"44118", "Reading", |
|
385
|
|
|
|
|
|
|
"441457", "Glossop", |
|
386
|
|
|
|
|
|
|
"4418903", "Coldstream", |
|
387
|
|
|
|
|
|
|
"441883", "Caterham", |
|
388
|
|
|
|
|
|
|
"441473", "Ipswich", |
|
389
|
|
|
|
|
|
|
"441687", "Mallaig", |
|
390
|
|
|
|
|
|
|
"441604", "Northampton", |
|
391
|
|
|
|
|
|
|
"441840", "Camelford", |
|
392
|
|
|
|
|
|
|
"4419757", "Strathdon", |
|
393
|
|
|
|
|
|
|
"441324", "Falkirk", |
|
394
|
|
|
|
|
|
|
"441669", "Rothbury", |
|
395
|
|
|
|
|
|
|
"441294", "Ardrossan", |
|
396
|
|
|
|
|
|
|
"441952", "Telford", |
|
397
|
|
|
|
|
|
|
"4414306", "Market\ Weighton", |
|
398
|
|
|
|
|
|
|
"441974", "Llanon", |
|
399
|
|
|
|
|
|
|
"441360", "Killearn", |
|
400
|
|
|
|
|
|
|
"441911", "Tyneside\/Durham\/Sunderland", |
|
401
|
|
|
|
|
|
|
"441371", "Great\ Dunmow", |
|
402
|
|
|
|
|
|
|
"441527", "Redditch", |
|
403
|
|
|
|
|
|
|
"442887", "Dungannon", |
|
404
|
|
|
|
|
|
|
"441770", "Isle\ of\ Arran", |
|
405
|
|
|
|
|
|
|
"4416860", "Newtown\/Llanidloes", |
|
406
|
|
|
|
|
|
|
"441761", "Temple\ Cloud", |
|
407
|
|
|
|
|
|
|
"441959", "Westerham", |
|
408
|
|
|
|
|
|
|
"441566", "Launceston", |
|
409
|
|
|
|
|
|
|
"4413390", "Aboyne\/Ballater", |
|
410
|
|
|
|
|
|
|
"441864", "Abington\ \(Crawford\)", |
|
411
|
|
|
|
|
|
|
"441803", "Torquay", |
|
412
|
|
|
|
|
|
|
"4414236", "Harrogate", |
|
413
|
|
|
|
|
|
|
"441938", "Welshpool", |
|
414
|
|
|
|
|
|
|
"441454", "Chipping\ Sodbury", |
|
415
|
|
|
|
|
|
|
"441882", "Kinloch\ Rannoch", |
|
416
|
|
|
|
|
|
|
"441472", "Grimsby", |
|
417
|
|
|
|
|
|
|
"4419752", "Alford\ \(Aberdeen\)", |
|
418
|
|
|
|
|
|
|
"441684", "Malvern", |
|
419
|
|
|
|
|
|
|
"441935", "Yeovil", |
|
420
|
|
|
|
|
|
|
"441347", "Easingwold", |
|
421
|
|
|
|
|
|
|
"441833", "Barnard\ Castle", |
|
422
|
|
|
|
|
|
|
"441889", "Rugeley", |
|
423
|
|
|
|
|
|
|
"441224", "Aberdeen", |
|
424
|
|
|
|
|
|
|
"44113", "Leeds", |
|
425
|
|
|
|
|
|
|
"441637", "Newquay", |
|
426
|
|
|
|
|
|
|
"441479", "Grantown\-on\-Spey", |
|
427
|
|
|
|
|
|
|
"441394", "Felixstowe", |
|
428
|
|
|
|
|
|
|
"441908", "Milton\ Keynes", |
|
429
|
|
|
|
|
|
|
"441260", "Congleton", |
|
430
|
|
|
|
|
|
|
"441597", "Llandrindod\ Wells", |
|
431
|
|
|
|
|
|
|
"441271", "Barnstaple", |
|
432
|
|
|
|
|
|
|
"441544", "Kington", |
|
433
|
|
|
|
|
|
|
"441905", "Worcester", |
|
434
|
|
|
|
|
|
|
"441432", "Hereford", |
|
435
|
|
|
|
|
|
|
"442891", "Bangor\ \(Co\.\ Down\)", |
|
436
|
|
|
|
|
|
|
"4416869", "Newtown", |
|
437
|
|
|
|
|
|
|
"441963", "Wincanton", |
|
438
|
|
|
|
|
|
|
"441295", "Banbury", |
|
439
|
|
|
|
|
|
|
"441325", "Darlington", |
|
440
|
|
|
|
|
|
|
"4417684", "Pooley\ Bridge", |
|
441
|
|
|
|
|
|
|
"441550", "Llandovery", |
|
442
|
|
|
|
|
|
|
"441978", "Wrexham", |
|
443
|
|
|
|
|
|
|
"44114707", "Sheffield", |
|
444
|
|
|
|
|
|
|
"4418902", "Coldstream", |
|
445
|
|
|
|
|
|
|
"4413399", "Ballater", |
|
446
|
|
|
|
|
|
|
"441496", "Port\ Ellen", |
|
447
|
|
|
|
|
|
|
"441409", "Holsworthy", |
|
448
|
|
|
|
|
|
|
"441298", "Buxton", |
|
449
|
|
|
|
|
|
|
"441328", "Fakenham", |
|
450
|
|
|
|
|
|
|
"441440", "Haverhill", |
|
451
|
|
|
|
|
|
|
"441356", "Brechin", |
|
452
|
|
|
|
|
|
|
"441723", "Scarborough", |
|
453
|
|
|
|
|
|
|
"441146", "Sheffield", |
|
454
|
|
|
|
|
|
|
"441865", "Oxford", |
|
455
|
|
|
|
|
|
|
"441857", "Sanday", |
|
456
|
|
|
|
|
|
|
"44286", "Northern\ Ireland", |
|
457
|
|
|
|
|
|
|
"441677", "Bedale", |
|
458
|
|
|
|
|
|
|
"441439", "Helmsley", |
|
459
|
|
|
|
|
|
|
"4418516", "Great\ Bernera", |
|
460
|
|
|
|
|
|
|
"442838", "Portadown", |
|
461
|
|
|
|
|
|
|
"441483", "Guildford", |
|
462
|
|
|
|
|
|
|
"441653", "Malton", |
|
463
|
|
|
|
|
|
|
"441873", "Abergavenny", |
|
464
|
|
|
|
|
|
|
"44117", "Bristol", |
|
465
|
|
|
|
|
|
|
"441641", "Strathy", |
|
466
|
|
|
|
|
|
|
"441688", "Isle\ of\ Mull\ \-\ Tobermory", |
|
467
|
|
|
|
|
|
|
"4418478", "Thurso", |
|
468
|
|
|
|
|
|
|
"4415074", "Alford\ \(Lincs\)", |
|
469
|
|
|
|
|
|
|
"441458", "Glastonbury", |
|
470
|
|
|
|
|
|
|
"441256", "Basingstoke", |
|
471
|
|
|
|
|
|
|
"4415075", "Spilsby\ \(Horncastle\)", |
|
472
|
|
|
|
|
|
|
"441934", "Weston\-super\-Mare", |
|
473
|
|
|
|
|
|
|
"441685", "Merthyr\ Tydfil", |
|
474
|
|
|
|
|
|
|
"441455", "Hinckley", |
|
475
|
|
|
|
|
|
|
"441793", "Swindon", |
|
476
|
|
|
|
|
|
|
"4418471", "Thurso\/Tongue", |
|
477
|
|
|
|
|
|
|
"441467", "Inverurie", |
|
478
|
|
|
|
|
|
|
"441700", "Rothesay", |
|
479
|
|
|
|
|
|
|
"441548", "Kingsbridge", |
|
480
|
|
|
|
|
|
|
"441581", "New\ Luce", |
|
481
|
|
|
|
|
|
|
"442821", "Martinstown", |
|
482
|
|
|
|
|
|
|
"441301", "Arrochar", |
|
483
|
|
|
|
|
|
|
"44239", "Portsmouth", |
|
484
|
|
|
|
|
|
|
"441987", "Ebbsfleet", |
|
485
|
|
|
|
|
|
|
"441395", "Budleigh\ Salterton", |
|
486
|
|
|
|
|
|
|
"441749", "Shepton\ Mallet", |
|
487
|
|
|
|
|
|
|
"441225", "Bath", |
|
488
|
|
|
|
|
|
|
"441545", "Llanarth", |
|
489
|
|
|
|
|
|
|
"441904", "York", |
|
490
|
|
|
|
|
|
|
"441398", "Dulverton", |
|
491
|
|
|
|
|
|
|
"4416974", "Raughton\ Head", |
|
492
|
|
|
|
|
|
|
"441730", "Petersfield", |
|
493
|
|
|
|
|
|
|
"441786", "Stirling", |
|
494
|
|
|
|
|
|
|
"441228", "Carlisle", |
|
495
|
|
|
|
|
|
|
"441722", "Salisbury", |
|
496
|
|
|
|
|
|
|
"441969", "Leyburn", |
|
497
|
|
|
|
|
|
|
"441556", "Castle\ Douglas", |
|
498
|
|
|
|
|
|
|
"441674", "Montrose", |
|
499
|
|
|
|
|
|
|
"441854", "Ullapool", |
|
500
|
|
|
|
|
|
|
"441482", "Kingston\-upon\-Hull", |
|
501
|
|
|
|
|
|
|
"441872", "Truro", |
|
502
|
|
|
|
|
|
|
"441652", "Brigg", |
|
503
|
|
|
|
|
|
|
"441403", "Horsham", |
|
504
|
|
|
|
|
|
|
"441621", "Maldon", |
|
505
|
|
|
|
|
|
|
"4418479", "Tongue", |
|
506
|
|
|
|
|
|
|
"441490", "Corwen", |
|
507
|
|
|
|
|
|
|
"441751", "Pickering", |
|
508
|
|
|
|
|
|
|
"441525", "Leighton\ Buzzard", |
|
509
|
|
|
|
|
|
|
"441350", "Dunkeld", |
|
510
|
|
|
|
|
|
|
"442885", "Ballygawley", |
|
511
|
|
|
|
|
|
|
"441446", "Barry", |
|
512
|
|
|
|
|
|
|
"4419753", "Strathdon", |
|
513
|
|
|
|
|
|
|
"441248", "Bangor\ \(Gwynedd\)", |
|
514
|
|
|
|
|
|
|
"442841", "Rostrevor", |
|
515
|
|
|
|
|
|
|
"442888", "Northern\ Ireland", |
|
516
|
|
|
|
|
|
|
"441433", "Hathersage", |
|
517
|
|
|
|
|
|
|
"441528", "Laggan", |
|
518
|
|
|
|
|
|
|
"441489", "Bishops\ Waltham", |
|
519
|
|
|
|
|
|
|
"441879", "Scarinish", |
|
520
|
|
|
|
|
|
|
"441659", "Sanquhar", |
|
521
|
|
|
|
|
|
|
"4418514", "Great\ Bernera", |
|
522
|
|
|
|
|
|
|
"4418907", "Ayton", |
|
523
|
|
|
|
|
|
|
"441729", "Settle", |
|
524
|
|
|
|
|
|
|
"441962", "Winchester", |
|
525
|
|
|
|
|
|
|
"441245", "Chelmsford", |
|
526
|
|
|
|
|
|
|
"441140", "Sheffield", |
|
527
|
|
|
|
|
|
|
"4418515", "Stornoway", |
|
528
|
|
|
|
|
|
|
"441250", "Blairgowrie", |
|
529
|
|
|
|
|
|
|
"441595", "Lerwick\,\ Foula\ \&\ Fair\ Isle", |
|
530
|
|
|
|
|
|
|
"442877", "Limavady", |
|
531
|
|
|
|
|
|
|
"4415076", "Louth", |
|
532
|
|
|
|
|
|
|
"441638", "Newmarket", |
|
533
|
|
|
|
|
|
|
"4413398", "Aboyne", |
|
534
|
|
|
|
|
|
|
"441501", "Harthill", |
|
535
|
|
|
|
|
|
|
"4416861", "Newtown\/Llanidloes", |
|
536
|
|
|
|
|
|
|
"441381", "Fortrose", |
|
537
|
|
|
|
|
|
|
"441348", "Fishguard", |
|
538
|
|
|
|
|
|
|
"441706", "Rochdale", |
|
539
|
|
|
|
|
|
|
"441598", "Lynton", |
|
540
|
|
|
|
|
|
|
"441635", "Newbury", |
|
541
|
|
|
|
|
|
|
"441984", "Watchet\ \(Williton\)", |
|
542
|
|
|
|
|
|
|
"441799", "Saffron\ Walden", |
|
543
|
|
|
|
|
|
|
"4413391", "Aboyne\/Ballater", |
|
544
|
|
|
|
|
|
|
"4416868", "Newtown", |
|
545
|
|
|
|
|
|
|
"441743", "Shrewsbury", |
|
546
|
|
|
|
|
|
|
"441937", "Wetherby", |
|
547
|
|
|
|
|
|
|
"441792", "Swansea", |
|
548
|
|
|
|
|
|
|
"441464", "Insch", |
|
549
|
|
|
|
|
|
|
"441531", "Ledbury", |
|
550
|
|
|
|
|
|
|
"441608", "Chipping\ Norton", |
|
551
|
|
|
|
|
|
|
"441780", "Stamford", |
|
552
|
|
|
|
|
|
|
"441736", "Penzance", |
|
553
|
|
|
|
|
|
|
"4415242", "Hornby", |
|
554
|
|
|
|
|
|
|
"441691", "Oswestry", |
|
555
|
|
|
|
|
|
|
"441420", "Alton", |
|
556
|
|
|
|
|
|
|
"441626", "Newton\ Abbot", |
|
557
|
|
|
|
|
|
|
"441968", "Penicuik", |
|
558
|
|
|
|
|
|
|
"441756", "Skipton", |
|
559
|
|
|
|
|
|
|
"441522", "Lincoln", |
|
560
|
|
|
|
|
|
|
"442882", "Omagh", |
|
561
|
|
|
|
|
|
|
"441242", "Cheltenham", |
|
562
|
|
|
|
|
|
|
"441323", "Eastbourne", |
|
563
|
|
|
|
|
|
|
"441293", "Crawley", |
|
564
|
|
|
|
|
|
|
"441200", "Clitheroe", |
|
565
|
|
|
|
|
|
|
"441957", "Mid\ Yell", |
|
566
|
|
|
|
|
|
|
"442890", "Belfast", |
|
567
|
|
|
|
|
|
|
"441875", "Tranent", |
|
568
|
|
|
|
|
|
|
"441655", "Maybole", |
|
569
|
|
|
|
|
|
|
"442846", "Northern\ Ireland", |
|
570
|
|
|
|
|
|
|
"441485", "Hunstanton", |
|
571
|
|
|
|
|
|
|
"441863", "Ardgay", |
|
572
|
|
|
|
|
|
|
"441249", "Chippenham", |
|
573
|
|
|
|
|
|
|
"44116", "Leicester", |
|
574
|
|
|
|
|
|
|
"441667", "Nairn", |
|
575
|
|
|
|
|
|
|
"441725", "Rockbourne", |
|
576
|
|
|
|
|
|
|
"44287", "Northern\ Ireland", |
|
577
|
|
|
|
|
|
|
"441878", "Lochboisdale", |
|
578
|
|
|
|
|
|
|
"441529", "Sleaford", |
|
579
|
|
|
|
|
|
|
"441488", "Hungerford", |
|
580
|
|
|
|
|
|
|
"442889", "Fivemiletown", |
|
581
|
|
|
|
|
|
|
"4414239", "Boroughbridge", |
|
582
|
|
|
|
|
|
|
"441286", "Caernarfon", |
|
583
|
|
|
|
|
|
|
"441728", "Saxmundham", |
|
584
|
|
|
|
|
|
|
"4419642", "Hornsea", |
|
585
|
|
|
|
|
|
|
"441795", "Sittingbourne", |
|
586
|
|
|
|
|
|
|
"441349", "Dingwall", |
|
587
|
|
|
|
|
|
|
"441453", "Dursley", |
|
588
|
|
|
|
|
|
|
"441887", "Aberfeldy", |
|
589
|
|
|
|
|
|
|
"441477", "Holmes\ Chapel", |
|
590
|
|
|
|
|
|
|
"441639", "Neath", |
|
591
|
|
|
|
|
|
|
"4414372", "Clynderwen\ \(Clunderwen\)", |
|
592
|
|
|
|
|
|
|
"441683", "Moffat", |
|
593
|
|
|
|
|
|
|
"441599", "Kyle", |
|
594
|
|
|
|
|
|
|
"441386", "Evesham", |
|
595
|
|
|
|
|
|
|
"4414347", "Hexham", |
|
596
|
|
|
|
|
|
|
"441330", "Banchory", |
|
597
|
|
|
|
|
|
|
"441798", "Pulborough", |
|
598
|
|
|
|
|
|
|
"441506", "Bathgate", |
|
599
|
|
|
|
|
|
|
"4412293", "Millom", |
|
600
|
|
|
|
|
|
|
"441592", "Kirkcaldy", |
|
601
|
|
|
|
|
|
|
"4418510", "Great\ Bernera\/Stornoway", |
|
602
|
|
|
|
|
|
|
"441609", "Northallerton", |
|
603
|
|
|
|
|
|
|
"441543", "Cannock", |
|
604
|
|
|
|
|
|
|
"441834", "Narberth", |
|
605
|
|
|
|
|
|
|
"441342", "East\ Grinstead", |
|
606
|
|
|
|
|
|
|
"4414309", "Market\ Weighton", |
|
607
|
|
|
|
|
|
|
"441223", "Cambridge", |
|
608
|
|
|
|
|
|
|
"441300", "Cerne\ Abbas", |
|
609
|
|
|
|
|
|
|
"441580", "Cranbrook", |
|
610
|
|
|
|
|
|
|
"441536", "Kettering", |
|
611
|
|
|
|
|
|
|
"442820", "Ballycastle", |
|
612
|
|
|
|
|
|
|
"441750", "Selkirk", |
|
613
|
|
|
|
|
|
|
"441491", "Henley\-on\-Thames", |
|
614
|
|
|
|
|
|
|
"441405", "Goole", |
|
615
|
|
|
|
|
|
|
"441620", "North\ Berwick", |
|
616
|
|
|
|
|
|
|
"442896", "Belfast", |
|
617
|
|
|
|
|
|
|
"441206", "Colchester", |
|
618
|
|
|
|
|
|
|
"441862", "Tain", |
|
619
|
|
|
|
|
|
|
"441329", "Fareham", |
|
620
|
|
|
|
|
|
|
"441664", "Melton\ Mowbray", |
|
621
|
|
|
|
|
|
|
"441408", "Golspie", |
|
622
|
|
|
|
|
|
|
"441299", "Bewdley", |
|
623
|
|
|
|
|
|
|
"4415070", "Louth\/Alford\ \(Lincs\)\/Spilsby\ \(Horncastle\)", |
|
624
|
|
|
|
|
|
|
"441243", "Chichester", |
|
625
|
|
|
|
|
|
|
"441869", "Bicester", |
|
626
|
|
|
|
|
|
|
"441141", "Sheffield", |
|
627
|
|
|
|
|
|
|
"441322", "Dartford", |
|
628
|
|
|
|
|
|
|
"441292", "Ayr", |
|
629
|
|
|
|
|
|
|
"4419467", "Gosforth", |
|
630
|
|
|
|
|
|
|
"441954", "Madingley", |
|
631
|
|
|
|
|
|
|
"4414308", "Market\ Weighton", |
|
632
|
|
|
|
|
|
|
"442840", "Banbridge", |
|
633
|
|
|
|
|
|
|
"441435", "Heathfield", |
|
634
|
|
|
|
|
|
|
"441972", "Glenborrodale", |
|
635
|
|
|
|
|
|
|
"4420", "London", |
|
636
|
|
|
|
|
|
|
"441280", "Buckingham", |
|
637
|
|
|
|
|
|
|
"441236", "Coatbridge", |
|
638
|
|
|
|
|
|
|
"4414301", "North\ Cave\/Market\ Weighton", |
|
639
|
|
|
|
|
|
|
"442883", "Northern\ Ireland", |
|
640
|
|
|
|
|
|
|
"441438", "Stevenage", |
|
641
|
|
|
|
|
|
|
"441343", "Elgin", |
|
642
|
|
|
|
|
|
|
"441837", "Okehampton", |
|
643
|
|
|
|
|
|
|
"441633", "Newport", |
|
644
|
|
|
|
|
|
|
"441689", "Orpington", |
|
645
|
|
|
|
|
|
|
"441392", "Exeter", |
|
646
|
|
|
|
|
|
|
"4413881", "Bishop\ Auckland\/Stanhope\ \(Eastgate\)", |
|
647
|
|
|
|
|
|
|
"441380", "Devizes", |
|
648
|
|
|
|
|
|
|
"441646", "Milford\ Haven", |
|
649
|
|
|
|
|
|
|
"441593", "Lybster", |
|
650
|
|
|
|
|
|
|
"442867", "Lisnaskea", |
|
651
|
|
|
|
|
|
|
"441542", "Keith", |
|
652
|
|
|
|
|
|
|
"4414238", "Harrogate", |
|
653
|
|
|
|
|
|
|
"441807", "Ballindalloch", |
|
654
|
|
|
|
|
|
|
"4419647", "Patrington", |
|
655
|
|
|
|
|
|
|
"441603", "Norwich", |
|
656
|
|
|
|
|
|
|
"441549", "Lairg", |
|
657
|
|
|
|
|
|
|
"4414377", "Haverfordwest", |
|
658
|
|
|
|
|
|
|
"441690", "Betws\-y\-Coed", |
|
659
|
|
|
|
|
|
|
"441748", "Richmond", |
|
660
|
|
|
|
|
|
|
"441306", "Dorking", |
|
661
|
|
|
|
|
|
|
"442826", "Northern\ Ireland", |
|
662
|
|
|
|
|
|
|
"4414231", "Harrogate\/Boroughbridge", |
|
663
|
|
|
|
|
|
|
"441586", "Campbeltown", |
|
664
|
|
|
|
|
|
|
"441530", "Coalville", |
|
665
|
|
|
|
|
|
|
"441452", "Gloucester", |
|
666
|
|
|
|
|
|
|
"441884", "Tiverton", |
|
667
|
|
|
|
|
|
|
"441474", "Gravesend", |
|
668
|
|
|
|
|
|
|
"4414342", "Bellingham", |
|
669
|
|
|
|
|
|
|
"441745", "Rhyl", |
|
670
|
|
|
|
|
|
|
"441404", "Honiton", |
|
671
|
|
|
|
|
|
|
"441926", "Warwick", |
|
672
|
|
|
|
|
|
|
"441668", "Bamburgh", |
|
673
|
|
|
|
|
|
|
"441916", "Tyneside", |
|
674
|
|
|
|
|
|
|
"4418511", "Great\ Bernera\/Stornoway", |
|
675
|
|
|
|
|
|
|
"441376", "Braintree", |
|
676
|
|
|
|
|
|
|
"441727", "St\ Albans", |
|
677
|
|
|
|
|
|
|
"441665", "Alnwick", |
|
678
|
|
|
|
|
|
|
"441673", "Market\ Rasen", |
|
679
|
|
|
|
|
|
|
"441487", "Warboys", |
|
680
|
|
|
|
|
|
|
"44115", "Nottingham", |
|
681
|
|
|
|
|
|
|
"441877", "Callander", |
|
682
|
|
|
|
|
|
|
"4418518", "Stornoway", |
|
683
|
|
|
|
|
|
|
"441561", "Laurencekirk", |
|
684
|
|
|
|
|
|
|
"4412292", "Barrow\-in\-Furness", |
|
685
|
|
|
|
|
|
|
"441955", "Wick", |
|
686
|
|
|
|
|
|
|
"441967", "Strontian", |
|
687
|
|
|
|
|
|
|
"441570", "Lampeter", |
|
688
|
|
|
|
|
|
|
"44114709", "Sheffield", |
|
689
|
|
|
|
|
|
|
"4414373", "Clynderwen\ \(Clunderwen\)", |
|
690
|
|
|
|
|
|
|
"4415079", "Alford\ \(Lincs\)", |
|
691
|
|
|
|
|
|
|
"441766", "Porthmadog", |
|
692
|
|
|
|
|
|
|
"4419643", "Patrington", |
|
693
|
|
|
|
|
|
|
"4415396", "Sedbergh", |
|
694
|
|
|
|
|
|
|
"441983", "Isle\ of\ Wight", |
|
695
|
|
|
|
|
|
|
"441939", "Wem", |
|
696
|
|
|
|
|
|
|
"441902", "Wolverhampton", |
|
697
|
|
|
|
|
|
|
"442879", "Magherafelt", |
|
698
|
|
|
|
|
|
|
"4413394", "Ballater", |
|
699
|
|
|
|
|
|
|
"441478", "Isle\ of\ Skye\ \-\ Portree", |
|
700
|
|
|
|
|
|
|
"441841", "Newquay\ \(Padstow\)", |
|
701
|
|
|
|
|
|
|
"441888", "Turriff", |
|
702
|
|
|
|
|
|
|
"4418476", "Tongue", |
|
703
|
|
|
|
|
|
|
"441909", "Worksop", |
|
704
|
|
|
|
|
|
|
"4413395", "Aboyne", |
|
705
|
|
|
|
|
|
|
"441276", "Camberley", |
|
706
|
|
|
|
|
|
|
"441475", "Greenock", |
|
707
|
|
|
|
|
|
|
"441932", "Weybridge", |
|
708
|
|
|
|
|
|
|
"441744", "St\ Helens", |
|
709
|
|
|
|
|
|
|
"441797", "Rye", |
|
710
|
|
|
|
|
|
|
"441885", "Pencombe", |
|
711
|
|
|
|
|
|
|
"4416864", "Llanidloes", |
|
712
|
|
|
|
|
|
|
"441463", "Inverness", |
|
713
|
|
|
|
|
|
|
"44247", "Coventry", |
|
714
|
|
|
|
|
|
|
"44151", "Liverpool", |
|
715
|
|
|
|
|
|
|
"4416865", "Newtown", |
|
716
|
|
|
|
|
|
|
"4412297", "Millom", |
|
717
|
|
|
|
|
|
|
"4414343", "Haltwhistle", |
|
718
|
|
|
|
|
|
|
"441920", "Ware", |
|
719
|
|
|
|
|
|
|
"441361", "Duns", |
|
720
|
|
|
|
|
|
|
"441910", "Tyneside\/Durham\/Sunderland", |
|
721
|
|
|
|
|
|
|
"441859", "Harris", |
|
722
|
|
|
|
|
|
|
"4414230", "Harrogate\/Boroughbridge", |
|
723
|
|
|
|
|
|
|
"441576", "Lockerbie", |
|
724
|
|
|
|
|
|
|
"441724", "Scunthorpe", |
|
725
|
|
|
|
|
|
|
"441672", "Marlborough", |
|
726
|
|
|
|
|
|
|
"441852", "Kilmelford", |
|
727
|
|
|
|
|
|
|
"441484", "Huddersfield", |
|
728
|
|
|
|
|
|
|
"441874", "Brecon", |
|
729
|
|
|
|
|
|
|
"441654", "Machynlleth", |
|
730
|
|
|
|
|
|
|
"441407", "Holyhead", |
|
731
|
|
|
|
|
|
|
"441760", "Swaffham", |
|
732
|
|
|
|
|
|
|
"44121", "Birmingham", |
|
733
|
|
|
|
|
|
|
"4413880", "Bishop\ Auckland\/Stanhope\ \(Eastgate\)", |
|
734
|
|
|
|
|
|
|
"441821", "Kinrossie", |
|
735
|
|
|
|
|
|
|
"441771", "Maud", |
|
736
|
|
|
|
|
|
|
"44114703", "Sheffield", |
|
737
|
|
|
|
|
|
|
"441989", "Ross\-on\-Wye", |
|
738
|
|
|
|
|
|
|
"441747", "Shaftesbury", |
|
739
|
|
|
|
|
|
|
"441933", "Wellingborough", |
|
740
|
|
|
|
|
|
|
"441794", "Romsey", |
|
741
|
|
|
|
|
|
|
"4415395", "Grange\-over\-Sands", |
|
742
|
|
|
|
|
|
|
"4418519", "Great\ Bernera", |
|
743
|
|
|
|
|
|
|
"441462", "Hitchin", |
|
744
|
|
|
|
|
|
|
"4415394", "Hawkshead", |
|
745
|
|
|
|
|
|
|
"441808", "Tomatin", |
|
746
|
|
|
|
|
|
|
"441946", "Whitehaven", |
|
747
|
|
|
|
|
|
|
"44280", "Northern\ Ireland", |
|
748
|
|
|
|
|
|
|
"44131", "Edinburgh", |
|
749
|
|
|
|
|
|
|
"4414300", "North\ Cave\/Market\ Weighton", |
|
750
|
|
|
|
|
|
|
"441805", "Torrington", |
|
751
|
|
|
|
|
|
|
"441903", "Worthing", |
|
752
|
|
|
|
|
|
|
"4418475", "Thurso", |
|
753
|
|
|
|
|
|
|
"441270", "Crewe", |
|
754
|
|
|
|
|
|
|
"4418474", "Thurso", |
|
755
|
|
|
|
|
|
|
"4415078", "Alford\ \(Lincs\)", |
|
756
|
|
|
|
|
|
|
"441261", "Banff", |
|
757
|
|
|
|
|
|
|
"4413396", "Ballater", |
|
758
|
|
|
|
|
|
|
"441838", "Dalmally", |
|
759
|
|
|
|
|
|
|
"441469", "Killingholme", |
|
760
|
|
|
|
|
|
|
"44283", "Northern\ Ireland", |
|
761
|
|
|
|
|
|
|
"442868", "Kesh", |
|
762
|
|
|
|
|
|
|
"441982", "Builth\ Wells", |
|
763
|
|
|
|
|
|
|
"4416866", "Newtown", |
|
764
|
|
|
|
|
|
|
"4415071", "Louth\/Alford\ \(Lincs\)\/Spilsby\ \(Horncastle\)", |
|
765
|
|
|
|
|
|
|
"441835", "St\ Boswells", |
|
766
|
|
|
|
|
|
|
"441577", "Kinross", |
|
767
|
|
|
|
|
|
|
"441291", "Chepstow", |
|
768
|
|
|
|
|
|
|
"441142", "Sheffield", |
|
769
|
|
|
|
|
|
|
"441553", "Kings\ Lynn", |
|
770
|
|
|
|
|
|
|
"441971", "Scourie", |
|
771
|
|
|
|
|
|
|
"442895", "Belfast", |
|
772
|
|
|
|
|
|
|
"441205", "Boston", |
|
773
|
|
|
|
|
|
|
"441406", "Holbeach", |
|
774
|
|
|
|
|
|
|
"441924", "Wakefield", |
|
775
|
|
|
|
|
|
|
"441914", "Tyneside", |
|
776
|
|
|
|
|
|
|
"441352", "Mold", |
|
777
|
|
|
|
|
|
|
"441208", "Bodmin", |
|
778
|
|
|
|
|
|
|
"441499", "Inveraray", |
|
779
|
|
|
|
|
|
|
"442898", "Belfast", |
|
780
|
|
|
|
|
|
|
"4414303", "North\ Cave", |
|
781
|
|
|
|
|
|
|
"4415072", "Spilsby\ \(Horncastle\)", |
|
782
|
|
|
|
|
|
|
"441359", "Pakenham", |
|
783
|
|
|
|
|
|
|
"441443", "Pontypridd", |
|
784
|
|
|
|
|
|
|
"441492", "Colwyn\ Bay", |
|
785
|
|
|
|
|
|
|
"441764", "Crieff", |
|
786
|
|
|
|
|
|
|
"441235", "Abingdon", |
|
787
|
|
|
|
|
|
|
"441480", "Huntingdon", |
|
788
|
|
|
|
|
|
|
"441436", "Helensburgh", |
|
789
|
|
|
|
|
|
|
"4412299", "Millom", |
|
790
|
|
|
|
|
|
|
"441650", "Cemmaes\ Road", |
|
791
|
|
|
|
|
|
|
"441870", "Isle\ of\ Benbecula", |
|
792
|
|
|
|
|
|
|
"441720", "Isles\ of\ Scilly", |
|
793
|
|
|
|
|
|
|
"441422", "Halifax", |
|
794
|
|
|
|
|
|
|
"4414340", "Bellingham\/Haltwhistle\/Hexham", |
|
795
|
|
|
|
|
|
|
"441259", "Alloa", |
|
796
|
|
|
|
|
|
|
"441782", "Stoke\-on\-Trent", |
|
797
|
|
|
|
|
|
|
"441335", "Ashbourne", |
|
798
|
|
|
|
|
|
|
"4414233", "Boroughbridge", |
|
799
|
|
|
|
|
|
|
"441681", "Isle\ of\ Mull\ \-\ Fionnphort", |
|
800
|
|
|
|
|
|
|
"441451", "Stow\-on\-the\-Wold", |
|
801
|
|
|
|
|
|
|
"441790", "Spilsby", |
|
802
|
|
|
|
|
|
|
"441746", "Bridgnorth", |
|
803
|
|
|
|
|
|
|
"442825", "Ballymena", |
|
804
|
|
|
|
|
|
|
"44114702", "Sheffield", |
|
805
|
|
|
|
|
|
|
"441305", "Dorchester", |
|
806
|
|
|
|
|
|
|
"441947", "Whitby", |
|
807
|
|
|
|
|
|
|
"441733", "Peterborough", |
|
808
|
|
|
|
|
|
|
"441789", "Stratford\-upon\-Avon", |
|
809
|
|
|
|
|
|
|
"441994", "St\ Clears", |
|
810
|
|
|
|
|
|
|
"4418517", "Stornoway", |
|
811
|
|
|
|
|
|
|
"4418904", "Coldstream", |
|
812
|
|
|
|
|
|
|
"441429", "Hartlepool", |
|
813
|
|
|
|
|
|
|
"441588", "Bishops\ Castle", |
|
814
|
|
|
|
|
|
|
"441252", "Aldershot", |
|
815
|
|
|
|
|
|
|
"442828", "Larne", |
|
816
|
|
|
|
|
|
|
"441308", "Bridport", |
|
817
|
|
|
|
|
|
|
"441274", "Bradford", |
|
818
|
|
|
|
|
|
|
"4418905", "Ayton", |
|
819
|
|
|
|
|
|
|
"4415077", "Louth", |
|
820
|
|
|
|
|
|
|
"441758", "Pwllheli", |
|
821
|
|
|
|
|
|
|
"441628", "Maidenhead", |
|
822
|
|
|
|
|
|
|
"441559", "Llandysul", |
|
823
|
|
|
|
|
|
|
"441442", "Hemel\ Hempstead", |
|
824
|
|
|
|
|
|
|
"441493", "Great\ Yarmouth", |
|
825
|
|
|
|
|
|
|
"441767", "Sandy", |
|
826
|
|
|
|
|
|
|
"441625", "Macclesfield", |
|
827
|
|
|
|
|
|
|
"441400", "Honington", |
|
828
|
|
|
|
|
|
|
"441285", "Cirencester", |
|
829
|
|
|
|
|
|
|
"441917", "Sunderland", |
|
830
|
|
|
|
|
|
|
"442848", "Northern\ Ireland", |
|
831
|
|
|
|
|
|
|
"442881", "Newtownstewart", |
|
832
|
|
|
|
|
|
|
"441353", "Ely", |
|
833
|
|
|
|
|
|
|
"441449", "Stowmarket", |
|
834
|
|
|
|
|
|
|
"441377", "Driffield", |
|
835
|
|
|
|
|
|
|
"441726", "St\ Austell", |
|
836
|
|
|
|
|
|
|
"441143", "Sheffield", |
|
837
|
|
|
|
|
|
|
"441288", "Bude", |
|
838
|
|
|
|
|
|
|
"441241", "Arbroath", |
|
839
|
|
|
|
|
|
|
"442845", "Northern\ Ireland", |
|
840
|
|
|
|
|
|
|
"441656", "Bridgend", |
|
841
|
|
|
|
|
|
|
"441876", "Lochmaddy", |
|
842
|
|
|
|
|
|
|
"44114704", "Sheffield", |
|
843
|
|
|
|
|
|
|
"441505", "Johnstone", |
|
844
|
|
|
|
|
|
|
"441732", "Sevenoaks", |
|
845
|
|
|
|
|
|
|
"441944", "West\ Heslerton", |
|
846
|
|
|
|
|
|
|
"441997", "Strathpeffer", |
|
847
|
|
|
|
|
|
|
"44238", "Southampton", |
|
848
|
|
|
|
|
|
|
"441253", "Blackpool", |
|
849
|
|
|
|
|
|
|
"441591", "Llanwrtyd\ Wells", |
|
850
|
|
|
|
|
|
|
"441277", "Brentwood", |
|
851
|
|
|
|
|
|
|
"4417687", "Keswick", |
|
852
|
|
|
|
|
|
|
"4418512", "Stornoway", |
|
853
|
|
|
|
|
|
|
"441508", "Brooke", |
|
854
|
|
|
|
|
|
|
"441631", "Oban", |
|
855
|
|
|
|
|
|
|
"441796", "Pitlochry", |
|
856
|
|
|
|
|
|
|
"441388", "Bishop\ Auckland", |
|
857
|
|
|
|
|
|
|
"441341", "Barmouth", |
|
858
|
|
|
|
|
|
|
"441709", "Rotherham", |
|
859
|
|
|
|
|
|
|
"441702", "Southend\-on\-Sea", |
|
860
|
|
|
|
|
|
|
"441535", "Keighley", |
|
861
|
|
|
|
|
|
|
"441740", "Sedgefield", |
|
862
|
|
|
|
|
|
|
"4412298", "Barrow\-in\-Furness", |
|
863
|
|
|
|
|
|
|
"441698", "Motherwell", |
|
864
|
|
|
|
|
|
|
"4414370", "Haverfordwest\/Clynderwen\ \(Clunderwen\)", |
|
865
|
|
|
|
|
|
|
"441538", "Ipstones", |
|
866
|
|
|
|
|
|
|
"4418906", "Ayton", |
|
867
|
|
|
|
|
|
|
"4419640", "Hornsea\/Patrington", |
|
868
|
|
|
|
|
|
|
"441695", "Skelmersdale", |
|
869
|
|
|
|
|
|
|
"4412291", "Barrow\-in\-Furness\/Millom", |
|
870
|
|
|
|
|
|
|
"4413882", "Stanhope\ \(Eastgate\)", |
|
871
|
|
|
|
|
|
|
"441671", "Newton\ Stewart", |
|
872
|
|
|
|
|
|
|
"441822", "Tavistock", |
|
873
|
|
|
|
|
|
|
"4417683", "Appleby", |
|
874
|
|
|
|
|
|
|
"441369", "Dunoon", |
|
875
|
|
|
|
|
|
|
"441237", "Bideford", |
|
876
|
|
|
|
|
|
|
"441624", "Isle\ of\ Man", |
|
877
|
|
|
|
|
|
|
"441754", "Skegness", |
|
878
|
|
|
|
|
|
|
"441772", "Preston", |
|
879
|
|
|
|
|
|
|
"441779", "Peterhead", |
|
880
|
|
|
|
|
|
|
"4414341", "Bellingham\/Haltwhistle\/Hexham", |
|
881
|
|
|
|
|
|
|
"441284", "Bury\ St\ Edmunds", |
|
882
|
|
|
|
|
|
|
"441829", "Tarporley", |
|
883
|
|
|
|
|
|
|
"441362", "Dereham", |
|
884
|
|
|
|
|
|
|
"4414232", "Harrogate", |
|
885
|
|
|
|
|
|
|
"441578", "Lauder", |
|
886
|
|
|
|
|
|
|
"44114700", "Sheffield", |
|
887
|
|
|
|
|
|
|
"4414348", "Hexham", |
|
888
|
|
|
|
|
|
|
"441950", "Sandwick", |
|
889
|
|
|
|
|
|
|
"44141", "Glasgow", |
|
890
|
|
|
|
|
|
|
"442897", "Saintfield", |
|
891
|
|
|
|
|
|
|
"441207", "Consett", |
|
892
|
|
|
|
|
|
|
"4419756", "Strathdon", |
|
893
|
|
|
|
|
|
|
"441563", "Kilmarnock", |
|
894
|
|
|
|
|
|
|
"442844", "Downpatrick", |
|
895
|
|
|
|
|
|
|
"441575", "Kirriemuir", |
|
896
|
|
|
|
|
|
|
"441806", "Shetland", |
|
897
|
|
|
|
|
|
|
"441384", "Dudley", |
|
898
|
|
|
|
|
|
|
"441262", "Bridlington", |
|
899
|
|
|
|
|
|
|
"441899", "Biggar", |
|
900
|
|
|
|
|
|
|
"441945", "Wisbech", |
|
901
|
|
|
|
|
|
|
"441307", "Forfar", |
|
902
|
|
|
|
|
|
|
"4419649", "Hornsea", |
|
903
|
|
|
|
|
|
|
"442827", "Ballymoney", |
|
904
|
|
|
|
|
|
|
"4415073", "Louth", |
|
905
|
|
|
|
|
|
|
"4414379", "Haverfordwest", |
|
906
|
|
|
|
|
|
|
"4413873", "Langholm", |
|
907
|
|
|
|
|
|
|
"441981", "Wormbridge", |
|
908
|
|
|
|
|
|
|
"441948", "Whitchurch", |
|
909
|
|
|
|
|
|
|
"441880", "Tarbert", |
|
910
|
|
|
|
|
|
|
"4416973", "Wigton", |
|
911
|
|
|
|
|
|
|
"4414302", "North\ Cave", |
|
912
|
|
|
|
|
|
|
"441470", "Isle\ of\ Skye\ \-\ Edinbane", |
|
913
|
|
|
|
|
|
|
"441534", "Jersey", |
|
914
|
|
|
|
|
|
|
"441461", "Gretna", |
|
915
|
|
|
|
|
|
|
"441694", "Church\ Stretton", |
|
916
|
|
|
|
|
|
|
"441843", "Thanet", |
|
917
|
|
|
|
|
|
|
"441269", "Ammanford", |
|
918
|
|
|
|
|
|
|
"441337", "Ladybank", |
|
919
|
|
|
|
|
|
|
"441892", "Tunbridge\ Wells", |
|
920
|
|
|
|
|
|
|
"441647", "Moretonhampstead", |
|
921
|
|
|
|
|
|
|
"442866", "Enniskillen", |
|
922
|
|
|
|
|
|
|
"442894", "Antrim", |
|
923
|
|
|
|
|
|
|
"4414378", "Haverfordwest", |
|
924
|
|
|
|
|
|
|
"441204", "Bolton", |
|
925
|
|
|
|
|
|
|
"441562", "Kidderminster", |
|
926
|
|
|
|
|
|
|
"442847", "Northern\ Ireland", |
|
927
|
|
|
|
|
|
|
"441918", "Tyneside", |
|
928
|
|
|
|
|
|
|
"4414237", "Harrogate", |
|
929
|
|
|
|
|
|
|
"4419648", "Hornsea", |
|
930
|
|
|
|
|
|
|
"441666", "Malmesbury", |
|
931
|
|
|
|
|
|
|
"441928", "Runcorn", |
|
932
|
|
|
|
|
|
|
"44292", "Cardiff", |
|
933
|
|
|
|
|
|
|
"441375", "Grays\ Thurrock", |
|
934
|
|
|
|
|
|
|
"4414371", "Haverfordwest\/Clynderwen\ \(Clunderwen\)", |
|
935
|
|
|
|
|
|
|
"44291", "Cardiff", |
|
936
|
|
|
|
|
|
|
"4412290", "Barrow\-in\-Furness\/Millom", |
|
937
|
|
|
|
|
|
|
"441287", "Guisborough", |
|
938
|
|
|
|
|
|
|
"441363", "Crediton", |
|
939
|
|
|
|
|
|
|
"441915", "Sunderland", |
|
940
|
|
|
|
|
|
|
"4419641", "Hornsea\/Patrington", |
|
941
|
|
|
|
|
|
|
"441925", "Warrington", |
|
942
|
|
|
|
|
|
|
"441823", "Taunton", |
|
943
|
|
|
|
|
|
|
"441234", "Bedford", |
|
944
|
|
|
|
|
|
|
"441765", "Ripon", |
|
945
|
|
|
|
|
|
|
"441757", "Selby", |
|
946
|
|
|
|
|
|
|
"4418513", "Stornoway", |
|
947
|
|
|
|
|
|
|
"441773", "Ripley", |
|
948
|
|
|
|
|
|
|
"4419755", "Alford\ \(Aberdeen\)", |
|
949
|
|
|
|
|
|
|
"441768", "Penrith", |
|
950
|
|
|
|
|
|
|
"4419754", "Alford\ \(Aberdeen\)", |
|
951
|
|
|
|
|
|
|
"441569", "Stonehaven", |
|
952
|
|
|
|
|
|
|
"441697", "Brampton", |
|
953
|
|
|
|
|
|
|
"4414307", "Market\ Weighton", |
|
954
|
|
|
|
|
|
|
"441334", "St\ Andrews", |
|
955
|
|
|
|
|
|
|
"441842", "Thetford", |
|
956
|
|
|
|
|
|
|
"441644", "New\ Galloway", |
|
957
|
|
|
|
|
|
|
"442310", "Portsmouth", |
|
958
|
|
|
|
|
|
|
"441931", "Shap", |
|
959
|
|
|
|
|
|
|
"441278", "Bridgwater", |
|
960
|
|
|
|
|
|
|
"441304", "Dover", |
|
961
|
|
|
|
|
|
|
"442824", "Northern\ Ireland", |
|
962
|
|
|
|
|
|
|
"441584", "Ludlow", |
|
963
|
|
|
|
|
|
|
"4414349", "Bellingham", |
|
964
|
|
|
|
|
|
|
"441830", "Kirkwhelpington", |
|
965
|
|
|
|
|
|
|
"441886", "Bromyard\ \(Knightwick\/Leigh\ Sinton\)", |
|
966
|
|
|
|
|
|
|
"441476", "Grantham", |
|
967
|
|
|
|
|
|
|
"441275", "Clevedon", |
|
968
|
|
|
|
|
|
|
"441387", "Dumfries", |
|
969
|
|
|
|
|
|
|
"441995", "Garstang", |
|
970
|
|
|
|
|
|
|
"441263", "Cromer", |
|
971
|
|
|
|
|
|
|
"442871", "Londonderry",}; |
|
972
|
|
|
|
|
|
|
|
|
973
|
|
|
|
|
|
|
sub new { |
|
974
|
118
|
|
|
118
|
1
|
319
|
my $class = shift; |
|
975
|
118
|
|
|
|
|
246
|
my $number = shift; |
|
976
|
118
|
|
|
|
|
742
|
$number =~ s/(^\+44|\D)//g; |
|
977
|
118
|
|
|
|
|
746
|
my $self = bless({ country_code => '44', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class); |
|
978
|
118
|
100
|
|
|
|
602
|
return $self if ($self->is_valid()); |
|
979
|
100
|
|
|
|
|
497
|
$number =~ s/^(?:([25-8]\d{5})$|0)//; |
|
980
|
100
|
|
|
|
|
1021
|
$self = bless({ country_code => '44', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class); |
|
981
|
100
|
100
|
|
|
|
387
|
return $self->is_valid() ? $self : undef; |
|
982
|
|
|
|
|
|
|
} |
|
983
|
|
|
|
|
|
|
1; |