1package Geo::Postcodes::NO;
2
3#################################################################################
4#                                                                               #
5#           This file is written by Arne Sommer - perl@bbop.org                 #
6#                                                                               #
7#################################################################################
8
9use Geo::Postcodes 0.31;
10use base qw(Geo::Postcodes);
11
12use strict;
13use warnings;
14
15our $VERSION = '0.31';
16
17## Which fields are available ##################################################
18
19my @valid_fields = qw(postcode location borough borough_number county type type_verbose);
20  # Used by the 'get_fields' procedure.
21
22my %valid_fields; # Used by the 'is_field' procedure/method.
23
24foreach (@valid_fields)
25{
26  $valid_fields{$_} = 1;
27}
28
29## Private Variables ############################################################
30
31my(%location, %borough_number, %borough, %type);
32
33my @counties = (undef,      # 00
34  "�STFOLD",                # 01
35  "AKERSHUS",               # 02
36  "OSLO",                   # 03
37  "HEDMARK",                # 04
38  "OPPLAND",                # 05
39  "BUSKERUD",               # 06
40  "VESTFOLD",               # 07
41  "TELEMARK",               # 08
42  "AUST-AGDER",             # 09
43  "VEST-AGDER",             # 10
44  "ROGALAND",               # 11
45  "HORDALAND",              # 12
46  undef,                    # 13
47  "SOGN OG FJORDANE",       # 14
48  "M�RE OG ROMSDAL",        # 15
49  "S�R-TR�NDELAG",          # 16
50  "NORD-TR�NDELAG",         # 17
51  "NORDLAND",               # 18
52  "TROMS",                  # 19
53  "FINNMARK",               # 20
54  "SVALBARD",               # 21
55  "JAN MAYEN",              # 22
56  "KONTINENTALSOKKELEN"  ); # 23
57
58## Type Description #############################################################
59
60my %typedesc;
61
62$typedesc{BX}   = "Postboks";
63$typedesc{ST}   = "Gateadresse";
64$typedesc{SX}   = "Serviceboks";
65$typedesc{IO}   = "Kunde med eget postnummer";
66$typedesc{STBX} = "B�de gateadresse og postboks";
67$typedesc{MU}   = "Flere bruksomr�der (felles)";
68
69## OO Methods ###################################################################
70
71my %borough_number_of;
72
73sub new
74{
75  my $class    = shift;
76  my $postcode = shift;
77
78  return unless valid($postcode);
79
80  my $self = bless \(my $dummy), $class;
81
82  $Geo::Postcodes::postcode_of  {$self} = $postcode;
83  $Geo::Postcodes::location_of  {$self} = location_of($postcode);
84  $Geo::Postcodes::borough_of   {$self} = borough_of ($postcode);
85  $Geo::Postcodes::county_of    {$self} = county_of  ($postcode);
86  $Geo::Postcodes::type_of      {$self} = type_of    ($postcode);
87  $borough_number_of            {$self} = borough_number_of($postcode);
88    # Local addition
89
90  return $self;
91}
92
93sub DESTROY
94{
95  my $object_id = $_[0];
96
97  delete $Geo::Postcodes::postcode_of  {$object_id};
98  delete $Geo::Postcodes::location_of  {$object_id};
99  delete $Geo::Postcodes::borough_of   {$object_id};
100  delete $Geo::Postcodes::county_of    {$object_id};
101  delete $Geo::Postcodes::type_of      {$object_id};
102  delete $borough_number_of            {$object_id};
103}
104
105sub borough_number
106{
107  my $self = shift;
108  return $borough_number_of{$self};
109}
110
111sub get_fields
112{
113  return @valid_fields;
114}
115
116sub is_field
117{
118  my $field = shift;
119  $field    = shift if $field =~ /Geo::Postcodes/; # Called on an object.
120
121  return 1 if $valid_fields{$field};
122  return 0;
123}
124
125sub type_verbose # Override the one in the base class.
126{
127  my $self = shift;
128  return unless $self;
129  return unless $Geo::Postcodes::type_of{$self};
130  return unless $typedesc{$Geo::Postcodes::type_of{$self}};
131  return $typedesc{$Geo::Postcodes::type_of{$self}};
132}
133
134## Global Procedures ############################################################
135
136sub legal # Is it a legal code, i.e. something that follows the syntax rule.
137{
138  my $postcode = shift;
139  return 0 unless $postcode;
140  return 0 unless $postcode =~ /^\d\d\d\d$/;
141  return 1;
142}
143
144sub valid # Is the code in actual use.
145{
146  my $postcode = shift;
147  return 0 unless legal($postcode);
148
149  return 1 if $location{$postcode};
150  return 0;
151}
152
153sub postcode_of # So that 'selection' does not choke.
154{
155  my $postcode = shift;
156  return $postcode;
157}
158
159sub location_of
160{
161  my $postcode = shift;
162  return unless $postcode;
163
164  return $location{$postcode} if $location{$postcode};
165  return;
166}
167
168sub borough_number_of
169{
170  my $postcode = shift;
171  return unless $postcode;
172
173  exists $borough_number{$postcode} ? $borough_number{$postcode} : undef;
174}
175
176sub borough_number2borough
177{
178  my $borough_number = shift;
179  return unless $borough_number;
180
181  exists $borough{$borough_number} ? $borough{$borough_number} : undef;
182}
183
184sub borough_of
185{
186  my $postcode  = shift;
187  return unless $postcode;
188
189  my $borough_number = borough_number_of($postcode);
190  return unless $borough_number; # Illegal borough number
191
192  return borough_number2borough($borough_number);
193}
194
195sub county_of
196{
197  my $postcode  = shift;
198  return unless $postcode;
199
200  my $borough_number = borough_number_of($postcode);
201  return unless $borough_number; # Illegal borough number
202
203  return borough_number2county($borough_number);
204}
205
206sub borough_number2county
207{
208  my $borough_number = shift;
209  return unless $borough_number;
210  return unless $borough{$borough_number};
211
212  $borough_number =~ /(\d\d)/; # The county is defined by the first two digits
213  my $county_number = $1;
214
215  $counties[$county_number] ? $counties[$county_number] : undef;
216}
217
218sub type_of
219{
220  my $postcode    = shift;
221  return unless $postcode;
222  return unless $type{$postcode};
223
224  return $type{$postcode};
225}
226
227sub type_verbose_of
228{
229  my $postcode = shift;
230  return unless $postcode;
231
232  my $type = type_of($postcode);
233  return unless $type;
234
235  return type2verbose($type);
236}
237
238sub type2verbose
239{
240  my $type = shift;
241  return unless $type;
242  return unless $typedesc{$type};
243  return $typedesc{$type};
244}
245
246sub get_postcodes
247{
248  return keys %location;
249}
250
251## Returns a list of postcodes if called as a procedure; Geo::Postcodes::NO::selection(xx => 'yy')
252## Returns a list of objects if called as a method;      Geo::Postcodes::NO->selection(xx => 'yy')
253
254sub verify_selectionlist
255{
256  return Geo::Postcodes::_verify_selectionlist('Geo::Postcodes::NO', @_);
257}
258
259sub selection
260{
261  return Geo::Postcodes::_selection('Geo::Postcodes::NO', @_);
262    # Black magic.
263}
264
265sub selection_loop
266{
267  return Geo::Postcodes::_selection_loop('Geo::Postcodes::NO', @_);
268    # Black magic.
269}
270
271## misc/update begin
272## This data structure was auto generated on Fri Sep 15 22:04:54 2006. Do NOT edit it!
273
274$borough_number{'0001'} = '0301'; $type{'0001'} = 'IO'; $location{'0001'} = 'OSLO';
275$borough_number{'0010'} = '0301'; $type{'0010'} = 'MU'; $location{'0010'} = 'OSLO';
276$borough_number{'0014'} = '0301'; $type{'0014'} = 'IO'; $location{'0014'} = 'OSLO';
277$borough_number{'0015'} = '0301'; $type{'0015'} = 'IO'; $location{'0015'} = 'OSLO';
278$borough_number{'0016'} = '0301'; $type{'0016'} = 'IO'; $location{'0016'} = 'OSLO';
279$borough_number{'0017'} = '0301'; $type{'0017'} = 'IO'; $location{'0017'} = 'OSLO';
280$borough_number{'0018'} = '0301'; $type{'0018'} = 'IO'; $location{'0018'} = 'OSLO';
281$borough_number{'0020'} = '0301'; $type{'0020'} = 'IO'; $location{'0020'} = 'OSLO';
282$borough_number{'0021'} = '0301'; $type{'0021'} = 'IO'; $location{'0021'} = 'OSLO';
283$borough_number{'0022'} = '0301'; $type{'0022'} = 'IO'; $location{'0022'} = 'OSLO';
284$borough_number{'0023'} = '0301'; $type{'0023'} = 'MU'; $location{'0023'} = 'OSLO';
285$borough_number{'0024'} = '0301'; $type{'0024'} = 'IO'; $location{'0024'} = 'OSLO';
286$borough_number{'0025'} = '0301'; $type{'0025'} = 'IO'; $location{'0025'} = 'OSLO';
287$borough_number{'0026'} = '0301'; $type{'0026'} = 'MU'; $location{'0026'} = 'OSLO';
288$borough_number{'0027'} = '0301'; $type{'0027'} = 'MU'; $location{'0027'} = 'OSLO';
289$borough_number{'0028'} = '0301'; $type{'0028'} = 'BX'; $location{'0028'} = 'OSLO';
290$borough_number{'0030'} = '0301'; $type{'0030'} = 'BX'; $location{'0030'} = 'OSLO';
291$borough_number{'0031'} = '0301'; $type{'0031'} = 'BX'; $location{'0031'} = 'OSLO';
292$borough_number{'0032'} = '0301'; $type{'0032'} = 'BX'; $location{'0032'} = 'OSLO';
293$borough_number{'0033'} = '0301'; $type{'0033'} = 'BX'; $location{'0033'} = 'OSLO';
294$borough_number{'0034'} = '0301'; $type{'0034'} = 'BX'; $location{'0034'} = 'OSLO';
295$borough_number{'0037'} = '0301'; $type{'0037'} = 'IO'; $location{'0037'} = 'OSLO';
296$borough_number{'0040'} = '0301'; $type{'0040'} = 'IO'; $location{'0040'} = 'OSLO';
297$borough_number{'0041'} = '0301'; $type{'0041'} = 'IO'; $location{'0041'} = 'OSLO';
298$borough_number{'0042'} = '0301'; $type{'0042'} = 'IO'; $location{'0042'} = 'OSLO';
299$borough_number{'0043'} = '0301'; $type{'0043'} = 'IO'; $location{'0043'} = 'OSLO';
300$borough_number{'0045'} = '0301'; $type{'0045'} = 'IO'; $location{'0045'} = 'OSLO';
301$borough_number{'0046'} = '0301'; $type{'0046'} = 'IO'; $location{'0046'} = 'OSLO';
302$borough_number{'0047'} = '0301'; $type{'0047'} = 'IO'; $location{'0047'} = 'OSLO';
303$borough_number{'0048'} = '0301'; $type{'0048'} = 'IO'; $location{'0048'} = 'OSLO';
304$borough_number{'0050'} = '0301'; $type{'0050'} = 'ST'; $location{'0050'} = 'OSLO';
305$borough_number{'0051'} = '0301'; $type{'0051'} = 'BX'; $location{'0051'} = 'OSLO';
306$borough_number{'0055'} = '0301'; $type{'0055'} = 'IO'; $location{'0055'} = 'OSLO';
307$borough_number{'0080'} = '0301'; $type{'0080'} = 'IO'; $location{'0080'} = 'OSLO';
308$borough_number{'0081'} = '0301'; $type{'0081'} = 'IO'; $location{'0081'} = 'OSLO';
309$borough_number{'0101'} = '0301'; $type{'0101'} = 'BX'; $location{'0101'} = 'OSLO';
310$borough_number{'0102'} = '0301'; $type{'0102'} = 'BX'; $location{'0102'} = 'OSLO';
311$borough_number{'0103'} = '0301'; $type{'0103'} = 'BX'; $location{'0103'} = 'OSLO';
312$borough_number{'0104'} = '0301'; $type{'0104'} = 'BX'; $location{'0104'} = 'OSLO';
313$borough_number{'0105'} = '0301'; $type{'0105'} = 'BX'; $location{'0105'} = 'OSLO';
314$borough_number{'0106'} = '0301'; $type{'0106'} = 'BX'; $location{'0106'} = 'OSLO';
315$borough_number{'0107'} = '0301'; $type{'0107'} = 'BX'; $location{'0107'} = 'OSLO';
316$borough_number{'0110'} = '0301'; $type{'0110'} = 'BX'; $location{'0110'} = 'OSLO';
317$borough_number{'0111'} = '0301'; $type{'0111'} = 'BX'; $location{'0111'} = 'OSLO';
318$borough_number{'0112'} = '0301'; $type{'0112'} = 'BX'; $location{'0112'} = 'OSLO';
319$borough_number{'0113'} = '0301'; $type{'0113'} = 'BX'; $location{'0113'} = 'OSLO';
320$borough_number{'0114'} = '0301'; $type{'0114'} = 'BX'; $location{'0114'} = 'OSLO';
321$borough_number{'0115'} = '0301'; $type{'0115'} = 'BX'; $location{'0115'} = 'OSLO';
322$borough_number{'0116'} = '0301'; $type{'0116'} = 'BX'; $location{'0116'} = 'OSLO';
323$borough_number{'0117'} = '0301'; $type{'0117'} = 'BX'; $location{'0117'} = 'OSLO';
324$borough_number{'0118'} = '0301'; $type{'0118'} = 'BX'; $location{'0118'} = 'OSLO';
325$borough_number{'0119'} = '0301'; $type{'0119'} = 'BX'; $location{'0119'} = 'OSLO';
326$borough_number{'0120'} = '0301'; $type{'0120'} = 'BX'; $location{'0120'} = 'OSLO';
327$borough_number{'0121'} = '0301'; $type{'0121'} = 'BX'; $location{'0121'} = 'OSLO';
328$borough_number{'0122'} = '0301'; $type{'0122'} = 'BX'; $location{'0122'} = 'OSLO';
329$borough_number{'0123'} = '0301'; $type{'0123'} = 'BX'; $location{'0123'} = 'OSLO';
330$borough_number{'0124'} = '0301'; $type{'0124'} = 'BX'; $location{'0124'} = 'OSLO';
331$borough_number{'0125'} = '0301'; $type{'0125'} = 'BX'; $location{'0125'} = 'OSLO';
332$borough_number{'0128'} = '0301'; $type{'0128'} = 'IO'; $location{'0128'} = 'OSLO';
333$borough_number{'0129'} = '0301'; $type{'0129'} = 'BX'; $location{'0129'} = 'OSLO';
334$borough_number{'0130'} = '0301'; $type{'0130'} = 'BX'; $location{'0130'} = 'OSLO';
335$borough_number{'0131'} = '0301'; $type{'0131'} = 'BX'; $location{'0131'} = 'OSLO';
336$borough_number{'0133'} = '0301'; $type{'0133'} = 'BX'; $location{'0133'} = 'OSLO';
337$borough_number{'0134'} = '0301'; $type{'0134'} = 'BX'; $location{'0134'} = 'OSLO';
338$borough_number{'0135'} = '0301'; $type{'0135'} = 'BX'; $location{'0135'} = 'OSLO';
339$borough_number{'0136'} = '0301'; $type{'0136'} = 'BX'; $location{'0136'} = 'OSLO';
340$borough_number{'0137'} = '0301'; $type{'0137'} = 'BX'; $location{'0137'} = 'OSLO';
341$borough_number{'0138'} = '0301'; $type{'0138'} = 'BX'; $location{'0138'} = 'OSLO';
342$borough_number{'0139'} = '0301'; $type{'0139'} = 'ST'; $location{'0139'} = 'OSLO';
343$borough_number{'0150'} = '0301'; $type{'0150'} = 'ST'; $location{'0150'} = 'OSLO';
344$borough_number{'0151'} = '0301'; $type{'0151'} = 'ST'; $location{'0151'} = 'OSLO';
345$borough_number{'0152'} = '0301'; $type{'0152'} = 'ST'; $location{'0152'} = 'OSLO';
346$borough_number{'0153'} = '0301'; $type{'0153'} = 'ST'; $location{'0153'} = 'OSLO';
347$borough_number{'0154'} = '0301'; $type{'0154'} = 'ST'; $location{'0154'} = 'OSLO';
348$borough_number{'0155'} = '0301'; $type{'0155'} = 'ST'; $location{'0155'} = 'OSLO';
349$borough_number{'0157'} = '0301'; $type{'0157'} = 'ST'; $location{'0157'} = 'OSLO';
350$borough_number{'0158'} = '0301'; $type{'0158'} = 'ST'; $location{'0158'} = 'OSLO';
351$borough_number{'0159'} = '0301'; $type{'0159'} = 'ST'; $location{'0159'} = 'OSLO';
352$borough_number{'0160'} = '0301'; $type{'0160'} = 'ST'; $location{'0160'} = 'OSLO';
353$borough_number{'0161'} = '0301'; $type{'0161'} = 'ST'; $location{'0161'} = 'OSLO';
354$borough_number{'0162'} = '0301'; $type{'0162'} = 'ST'; $location{'0162'} = 'OSLO';
355$borough_number{'0164'} = '0301'; $type{'0164'} = 'ST'; $location{'0164'} = 'OSLO';
356$borough_number{'0165'} = '0301'; $type{'0165'} = 'ST'; $location{'0165'} = 'OSLO';
357$borough_number{'0166'} = '0301'; $type{'0166'} = 'ST'; $location{'0166'} = 'OSLO';
358$borough_number{'0167'} = '0301'; $type{'0167'} = 'ST'; $location{'0167'} = 'OSLO';
359$borough_number{'0168'} = '0301'; $type{'0168'} = 'ST'; $location{'0168'} = 'OSLO';
360$borough_number{'0169'} = '0301'; $type{'0169'} = 'ST'; $location{'0169'} = 'OSLO';
361$borough_number{'0170'} = '0301'; $type{'0170'} = 'ST'; $location{'0170'} = 'OSLO';
362$borough_number{'0171'} = '0301'; $type{'0171'} = 'ST'; $location{'0171'} = 'OSLO';
363$borough_number{'0172'} = '0301'; $type{'0172'} = 'ST'; $location{'0172'} = 'OSLO';
364$borough_number{'0173'} = '0301'; $type{'0173'} = 'ST'; $location{'0173'} = 'OSLO';
365$borough_number{'0174'} = '0301'; $type{'0174'} = 'ST'; $location{'0174'} = 'OSLO';
366$borough_number{'0175'} = '0301'; $type{'0175'} = 'ST'; $location{'0175'} = 'OSLO';
367$borough_number{'0176'} = '0301'; $type{'0176'} = 'ST'; $location{'0176'} = 'OSLO';
368$borough_number{'0177'} = '0301'; $type{'0177'} = 'ST'; $location{'0177'} = 'OSLO';
369$borough_number{'0178'} = '0301'; $type{'0178'} = 'ST'; $location{'0178'} = 'OSLO';
370$borough_number{'0179'} = '0301'; $type{'0179'} = 'ST'; $location{'0179'} = 'OSLO';
371$borough_number{'0180'} = '0301'; $type{'0180'} = 'ST'; $location{'0180'} = 'OSLO';
372$borough_number{'0181'} = '0301'; $type{'0181'} = 'ST'; $location{'0181'} = 'OSLO';
373$borough_number{'0182'} = '0301'; $type{'0182'} = 'ST'; $location{'0182'} = 'OSLO';
374$borough_number{'0183'} = '0301'; $type{'0183'} = 'ST'; $location{'0183'} = 'OSLO';
375$borough_number{'0184'} = '0301'; $type{'0184'} = 'ST'; $location{'0184'} = 'OSLO';
376$borough_number{'0185'} = '0301'; $type{'0185'} = 'ST'; $location{'0185'} = 'OSLO';
377$borough_number{'0186'} = '0301'; $type{'0186'} = 'ST'; $location{'0186'} = 'OSLO';
378$borough_number{'0187'} = '0301'; $type{'0187'} = 'ST'; $location{'0187'} = 'OSLO';
379$borough_number{'0188'} = '0301'; $type{'0188'} = 'ST'; $location{'0188'} = 'OSLO';
380$borough_number{'0190'} = '0301'; $type{'0190'} = 'ST'; $location{'0190'} = 'OSLO';
381$borough_number{'0191'} = '0301'; $type{'0191'} = 'ST'; $location{'0191'} = 'OSLO';
382$borough_number{'0192'} = '0301'; $type{'0192'} = 'ST'; $location{'0192'} = 'OSLO';
383$borough_number{'0193'} = '0301'; $type{'0193'} = 'ST'; $location{'0193'} = 'OSLO';
384$borough_number{'0196'} = '0301'; $type{'0196'} = 'ST'; $location{'0196'} = 'OSLO';
385$borough_number{'0198'} = '0301'; $type{'0198'} = 'ST'; $location{'0198'} = 'OSLO';
386$borough_number{'0201'} = '0301'; $type{'0201'} = 'BX'; $location{'0201'} = 'OSLO';
387$borough_number{'0202'} = '0301'; $type{'0202'} = 'BX'; $location{'0202'} = 'OSLO';
388$borough_number{'0203'} = '0301'; $type{'0203'} = 'BX'; $location{'0203'} = 'OSLO';
389$borough_number{'0204'} = '0301'; $type{'0204'} = 'BX'; $location{'0204'} = 'OSLO';
390$borough_number{'0207'} = '0301'; $type{'0207'} = 'BX'; $location{'0207'} = 'OSLO';
391$borough_number{'0208'} = '0301'; $type{'0208'} = 'BX'; $location{'0208'} = 'OSLO';
392$borough_number{'0211'} = '0301'; $type{'0211'} = 'BX'; $location{'0211'} = 'OSLO';
393$borough_number{'0212'} = '0301'; $type{'0212'} = 'BX'; $location{'0212'} = 'OSLO';
394$borough_number{'0213'} = '0301'; $type{'0213'} = 'BX'; $location{'0213'} = 'OSLO';
395$borough_number{'0214'} = '0301'; $type{'0214'} = 'BX'; $location{'0214'} = 'OSLO';
396$borough_number{'0215'} = '0301'; $type{'0215'} = 'BX'; $location{'0215'} = 'OSLO';
397$borough_number{'0216'} = '0301'; $type{'0216'} = 'BX'; $location{'0216'} = 'OSLO';
398$borough_number{'0218'} = '0301'; $type{'0218'} = 'BX'; $location{'0218'} = 'OSLO';
399$borough_number{'0230'} = '0301'; $type{'0230'} = 'BX'; $location{'0230'} = 'OSLO';
400$borough_number{'0240'} = '0301'; $type{'0240'} = 'IO'; $location{'0240'} = 'OSLO';
401$borough_number{'0242'} = '0301'; $type{'0242'} = 'IO'; $location{'0242'} = 'OSLO';
402$borough_number{'0244'} = '0301'; $type{'0244'} = 'IO'; $location{'0244'} = 'OSLO';
403$borough_number{'0245'} = '0301'; $type{'0245'} = 'IO'; $location{'0245'} = 'OSLO';
404$borough_number{'0246'} = '0301'; $type{'0246'} = 'IO'; $location{'0246'} = 'OSLO';
405$borough_number{'0247'} = '0301'; $type{'0247'} = 'IO'; $location{'0247'} = 'OSLO';
406$borough_number{'0250'} = '0301'; $type{'0250'} = 'ST'; $location{'0250'} = 'OSLO';
407$borough_number{'0251'} = '0301'; $type{'0251'} = 'ST'; $location{'0251'} = 'OSLO';
408$borough_number{'0253'} = '0301'; $type{'0253'} = 'ST'; $location{'0253'} = 'OSLO';
409$borough_number{'0254'} = '0301'; $type{'0254'} = 'ST'; $location{'0254'} = 'OSLO';
410$borough_number{'0255'} = '0301'; $type{'0255'} = 'ST'; $location{'0255'} = 'OSLO';
411$borough_number{'0256'} = '0301'; $type{'0256'} = 'ST'; $location{'0256'} = 'OSLO';
412$borough_number{'0257'} = '0301'; $type{'0257'} = 'ST'; $location{'0257'} = 'OSLO';
413$borough_number{'0258'} = '0301'; $type{'0258'} = 'ST'; $location{'0258'} = 'OSLO';
414$borough_number{'0259'} = '0301'; $type{'0259'} = 'ST'; $location{'0259'} = 'OSLO';
415$borough_number{'0260'} = '0301'; $type{'0260'} = 'ST'; $location{'0260'} = 'OSLO';
416$borough_number{'0262'} = '0301'; $type{'0262'} = 'ST'; $location{'0262'} = 'OSLO';
417$borough_number{'0263'} = '0301'; $type{'0263'} = 'ST'; $location{'0263'} = 'OSLO';
418$borough_number{'0264'} = '0301'; $type{'0264'} = 'ST'; $location{'0264'} = 'OSLO';
419$borough_number{'0265'} = '0301'; $type{'0265'} = 'ST'; $location{'0265'} = 'OSLO';
420$borough_number{'0266'} = '0301'; $type{'0266'} = 'ST'; $location{'0266'} = 'OSLO';
421$borough_number{'0267'} = '0301'; $type{'0267'} = 'ST'; $location{'0267'} = 'OSLO';
422$borough_number{'0268'} = '0301'; $type{'0268'} = 'ST'; $location{'0268'} = 'OSLO';
423$borough_number{'0270'} = '0301'; $type{'0270'} = 'ST'; $location{'0270'} = 'OSLO';
424$borough_number{'0271'} = '0301'; $type{'0271'} = 'ST'; $location{'0271'} = 'OSLO';
425$borough_number{'0272'} = '0301'; $type{'0272'} = 'ST'; $location{'0272'} = 'OSLO';
426$borough_number{'0273'} = '0301'; $type{'0273'} = 'ST'; $location{'0273'} = 'OSLO';
427$borough_number{'0274'} = '0301'; $type{'0274'} = 'ST'; $location{'0274'} = 'OSLO';
428$borough_number{'0275'} = '0301'; $type{'0275'} = 'ST'; $location{'0275'} = 'OSLO';
429$borough_number{'0276'} = '0301'; $type{'0276'} = 'ST'; $location{'0276'} = 'OSLO';
430$borough_number{'0277'} = '0301'; $type{'0277'} = 'ST'; $location{'0277'} = 'OSLO';
431$borough_number{'0278'} = '0301'; $type{'0278'} = 'ST'; $location{'0278'} = 'OSLO';
432$borough_number{'0279'} = '0301'; $type{'0279'} = 'ST'; $location{'0279'} = 'OSLO';
433$borough_number{'0280'} = '0301'; $type{'0280'} = 'ST'; $location{'0280'} = 'OSLO';
434$borough_number{'0281'} = '0301'; $type{'0281'} = 'ST'; $location{'0281'} = 'OSLO';
435$borough_number{'0282'} = '0301'; $type{'0282'} = 'ST'; $location{'0282'} = 'OSLO';
436$borough_number{'0283'} = '0301'; $type{'0283'} = 'ST'; $location{'0283'} = 'OSLO';
437$borough_number{'0284'} = '0301'; $type{'0284'} = 'ST'; $location{'0284'} = 'OSLO';
438$borough_number{'0286'} = '0301'; $type{'0286'} = 'ST'; $location{'0286'} = 'OSLO';
439$borough_number{'0287'} = '0301'; $type{'0287'} = 'ST'; $location{'0287'} = 'OSLO';
440$borough_number{'0301'} = '0301'; $type{'0301'} = 'BX'; $location{'0301'} = 'OSLO';
441$borough_number{'0302'} = '0301'; $type{'0302'} = 'BX'; $location{'0302'} = 'OSLO';
442$borough_number{'0303'} = '0301'; $type{'0303'} = 'BX'; $location{'0303'} = 'OSLO';
443$borough_number{'0304'} = '0301'; $type{'0304'} = 'BX'; $location{'0304'} = 'OSLO';
444$borough_number{'0305'} = '0301'; $type{'0305'} = 'BX'; $location{'0305'} = 'OSLO';
445$borough_number{'0306'} = '0301'; $type{'0306'} = 'BX'; $location{'0306'} = 'OSLO';
446$borough_number{'0307'} = '0301'; $type{'0307'} = 'BX'; $location{'0307'} = 'OSLO';
447$borough_number{'0308'} = '0301'; $type{'0308'} = 'BX'; $location{'0308'} = 'OSLO';
448$borough_number{'0309'} = '0301'; $type{'0309'} = 'BX'; $location{'0309'} = 'OSLO';
449$borough_number{'0310'} = '0301'; $type{'0310'} = 'MU'; $location{'0310'} = 'OSLO';
450$borough_number{'0311'} = '0301'; $type{'0311'} = 'BX'; $location{'0311'} = 'OSLO';
451$borough_number{'0313'} = '0301'; $type{'0313'} = 'STBX'; $location{'0313'} = 'OSLO';
452$borough_number{'0314'} = '0301'; $type{'0314'} = 'BX'; $location{'0314'} = 'OSLO';
453$borough_number{'0315'} = '0301'; $type{'0315'} = 'BX'; $location{'0315'} = 'OSLO';
454$borough_number{'0316'} = '0301'; $type{'0316'} = 'BX'; $location{'0316'} = 'OSLO';
455$borough_number{'0317'} = '0301'; $type{'0317'} = 'BX'; $location{'0317'} = 'OSLO';
456$borough_number{'0318'} = '0301'; $type{'0318'} = 'BX'; $location{'0318'} = 'OSLO';
457$borough_number{'0319'} = '0301'; $type{'0319'} = 'BX'; $location{'0319'} = 'OSLO';
458$borough_number{'0320'} = '0301'; $type{'0320'} = 'ST'; $location{'0320'} = 'OSLO';
459$borough_number{'0323'} = '0301'; $type{'0323'} = 'BX'; $location{'0323'} = 'OSLO';
460$borough_number{'0330'} = '0301'; $type{'0330'} = 'BX'; $location{'0330'} = 'OSLO';
461$borough_number{'0340'} = '0301'; $type{'0340'} = 'MU'; $location{'0340'} = 'OSLO';
462$borough_number{'0341'} = '0301'; $type{'0341'} = 'IO'; $location{'0341'} = 'OSLO';
463$borough_number{'0342'} = '0301'; $type{'0342'} = 'IO'; $location{'0342'} = 'OSLO';
464$borough_number{'0349'} = '0301'; $type{'0349'} = 'MU'; $location{'0349'} = 'OSLO';
465$borough_number{'0350'} = '0301'; $type{'0350'} = 'ST'; $location{'0350'} = 'OSLO';
466$borough_number{'0351'} = '0301'; $type{'0351'} = 'ST'; $location{'0351'} = 'OSLO';
467$borough_number{'0352'} = '0301'; $type{'0352'} = 'ST'; $location{'0352'} = 'OSLO';
468$borough_number{'0353'} = '0301'; $type{'0353'} = 'ST'; $location{'0353'} = 'OSLO';
469$borough_number{'0354'} = '0301'; $type{'0354'} = 'ST'; $location{'0354'} = 'OSLO';
470$borough_number{'0355'} = '0301'; $type{'0355'} = 'ST'; $location{'0355'} = 'OSLO';
471$borough_number{'0356'} = '0301'; $type{'0356'} = 'ST'; $location{'0356'} = 'OSLO';
472$borough_number{'0357'} = '0301'; $type{'0357'} = 'ST'; $location{'0357'} = 'OSLO';
473$borough_number{'0358'} = '0301'; $type{'0358'} = 'ST'; $location{'0358'} = 'OSLO';
474$borough_number{'0359'} = '0301'; $type{'0359'} = 'ST'; $location{'0359'} = 'OSLO';
475$borough_number{'0360'} = '0301'; $type{'0360'} = 'ST'; $location{'0360'} = 'OSLO';
476$borough_number{'0361'} = '0301'; $type{'0361'} = 'ST'; $location{'0361'} = 'OSLO';
477$borough_number{'0362'} = '0301'; $type{'0362'} = 'ST'; $location{'0362'} = 'OSLO';
478$borough_number{'0363'} = '0301'; $type{'0363'} = 'ST'; $location{'0363'} = 'OSLO';
479$borough_number{'0364'} = '0301'; $type{'0364'} = 'ST'; $location{'0364'} = 'OSLO';
480$borough_number{'0365'} = '0301'; $type{'0365'} = 'ST'; $location{'0365'} = 'OSLO';
481$borough_number{'0366'} = '0301'; $type{'0366'} = 'ST'; $location{'0366'} = 'OSLO';
482$borough_number{'0367'} = '0301'; $type{'0367'} = 'ST'; $location{'0367'} = 'OSLO';
483$borough_number{'0368'} = '0301'; $type{'0368'} = 'ST'; $location{'0368'} = 'OSLO';
484$borough_number{'0369'} = '0301'; $type{'0369'} = 'ST'; $location{'0369'} = 'OSLO';
485$borough_number{'0370'} = '0301'; $type{'0370'} = 'ST'; $location{'0370'} = 'OSLO';
486$borough_number{'0371'} = '0301'; $type{'0371'} = 'ST'; $location{'0371'} = 'OSLO';
487$borough_number{'0372'} = '0301'; $type{'0372'} = 'ST'; $location{'0372'} = 'OSLO';
488$borough_number{'0373'} = '0301'; $type{'0373'} = 'ST'; $location{'0373'} = 'OSLO';
489$borough_number{'0374'} = '0301'; $type{'0374'} = 'ST'; $location{'0374'} = 'OSLO';
490$borough_number{'0375'} = '0301'; $type{'0375'} = 'ST'; $location{'0375'} = 'OSLO';
491$borough_number{'0376'} = '0301'; $type{'0376'} = 'ST'; $location{'0376'} = 'OSLO';
492$borough_number{'0377'} = '0301'; $type{'0377'} = 'ST'; $location{'0377'} = 'OSLO';
493$borough_number{'0378'} = '0301'; $type{'0378'} = 'ST'; $location{'0378'} = 'OSLO';
494$borough_number{'0379'} = '0301'; $type{'0379'} = 'ST'; $location{'0379'} = 'OSLO';
495$borough_number{'0380'} = '0301'; $type{'0380'} = 'ST'; $location{'0380'} = 'OSLO';
496$borough_number{'0381'} = '0301'; $type{'0381'} = 'ST'; $location{'0381'} = 'OSLO';
497$borough_number{'0382'} = '0301'; $type{'0382'} = 'ST'; $location{'0382'} = 'OSLO';
498$borough_number{'0383'} = '0301'; $type{'0383'} = 'ST'; $location{'0383'} = 'OSLO';
499$borough_number{'0401'} = '0301'; $type{'0401'} = 'BX'; $location{'0401'} = 'OSLO';
500$borough_number{'0402'} = '0301'; $type{'0402'} = 'BX'; $location{'0402'} = 'OSLO';
501$borough_number{'0403'} = '0301'; $type{'0403'} = 'BX'; $location{'0403'} = 'OSLO';
502$borough_number{'0404'} = '0301'; $type{'0404'} = 'BX'; $location{'0404'} = 'OSLO';
503$borough_number{'0405'} = '0301'; $type{'0405'} = 'BX'; $location{'0405'} = 'OSLO';
504$borough_number{'0406'} = '0301'; $type{'0406'} = 'BX'; $location{'0406'} = 'OSLO';
505$borough_number{'0407'} = '0301'; $type{'0407'} = 'IO'; $location{'0407'} = 'OSLO';
506$borough_number{'0408'} = '0301'; $type{'0408'} = 'BX'; $location{'0408'} = 'OSLO';
507$borough_number{'0409'} = '0301'; $type{'0409'} = 'BX'; $location{'0409'} = 'OSLO';
508$borough_number{'0410'} = '0301'; $type{'0410'} = 'BX'; $location{'0410'} = 'OSLO';
509$borough_number{'0411'} = '0301'; $type{'0411'} = 'BX'; $location{'0411'} = 'OSLO';
510$borough_number{'0412'} = '0301'; $type{'0412'} = 'BX'; $location{'0412'} = 'OSLO';
511$borough_number{'0413'} = '0301'; $type{'0413'} = 'BX'; $location{'0413'} = 'OSLO';
512$borough_number{'0415'} = '0301'; $type{'0415'} = 'BX'; $location{'0415'} = 'OSLO';
513$borough_number{'0421'} = '0301'; $type{'0421'} = 'BX'; $location{'0421'} = 'OSLO';
514$borough_number{'0422'} = '0301'; $type{'0422'} = 'BX'; $location{'0422'} = 'OSLO';
515$borough_number{'0423'} = '0301'; $type{'0423'} = 'BX'; $location{'0423'} = 'OSLO';
516$borough_number{'0426'} = '0301'; $type{'0426'} = 'BX'; $location{'0426'} = 'OSLO';
517$borough_number{'0440'} = '0301'; $type{'0440'} = 'IO'; $location{'0440'} = 'OSLO';
518$borough_number{'0441'} = '0301'; $type{'0441'} = 'IO'; $location{'0441'} = 'OSLO';
519$borough_number{'0442'} = '0301'; $type{'0442'} = 'IO'; $location{'0442'} = 'OSLO';
520$borough_number{'0445'} = '0301'; $type{'0445'} = 'IO'; $location{'0445'} = 'OSLO';
521$borough_number{'0450'} = '0301'; $type{'0450'} = 'ST'; $location{'0450'} = 'OSLO';
522$borough_number{'0451'} = '0301'; $type{'0451'} = 'ST'; $location{'0451'} = 'OSLO';
523$borough_number{'0452'} = '0301'; $type{'0452'} = 'ST'; $location{'0452'} = 'OSLO';
524$borough_number{'0454'} = '0301'; $type{'0454'} = 'ST'; $location{'0454'} = 'OSLO';
525$borough_number{'0455'} = '0301'; $type{'0455'} = 'ST'; $location{'0455'} = 'OSLO';
526$borough_number{'0456'} = '0301'; $type{'0456'} = 'ST'; $location{'0456'} = 'OSLO';
527$borough_number{'0457'} = '0301'; $type{'0457'} = 'ST'; $location{'0457'} = 'OSLO';
528$borough_number{'0458'} = '0301'; $type{'0458'} = 'ST'; $location{'0458'} = 'OSLO';
529$borough_number{'0459'} = '0301'; $type{'0459'} = 'ST'; $location{'0459'} = 'OSLO';
530$borough_number{'0460'} = '0301'; $type{'0460'} = 'ST'; $location{'0460'} = 'OSLO';
531$borough_number{'0461'} = '0301'; $type{'0461'} = 'ST'; $location{'0461'} = 'OSLO';
532$borough_number{'0462'} = '0301'; $type{'0462'} = 'ST'; $location{'0462'} = 'OSLO';
533$borough_number{'0463'} = '0301'; $type{'0463'} = 'ST'; $location{'0463'} = 'OSLO';
534$borough_number{'0464'} = '0301'; $type{'0464'} = 'ST'; $location{'0464'} = 'OSLO';
535$borough_number{'0465'} = '0301'; $type{'0465'} = 'ST'; $location{'0465'} = 'OSLO';
536$borough_number{'0467'} = '0301'; $type{'0467'} = 'ST'; $location{'0467'} = 'OSLO';
537$borough_number{'0468'} = '0301'; $type{'0468'} = 'ST'; $location{'0468'} = 'OSLO';
538$borough_number{'0469'} = '0301'; $type{'0469'} = 'ST'; $location{'0469'} = 'OSLO';
539$borough_number{'0470'} = '0301'; $type{'0470'} = 'ST'; $location{'0470'} = 'OSLO';
540$borough_number{'0472'} = '0301'; $type{'0472'} = 'ST'; $location{'0472'} = 'OSLO';
541$borough_number{'0473'} = '0301'; $type{'0473'} = 'ST'; $location{'0473'} = 'OSLO';
542$borough_number{'0474'} = '0301'; $type{'0474'} = 'ST'; $location{'0474'} = 'OSLO';
543$borough_number{'0475'} = '0301'; $type{'0475'} = 'ST'; $location{'0475'} = 'OSLO';
544$borough_number{'0476'} = '0301'; $type{'0476'} = 'ST'; $location{'0476'} = 'OSLO';
545$borough_number{'0477'} = '0301'; $type{'0477'} = 'ST'; $location{'0477'} = 'OSLO';
546$borough_number{'0478'} = '0301'; $type{'0478'} = 'ST'; $location{'0478'} = 'OSLO';
547$borough_number{'0479'} = '0301'; $type{'0479'} = 'ST'; $location{'0479'} = 'OSLO';
548$borough_number{'0480'} = '0301'; $type{'0480'} = 'ST'; $location{'0480'} = 'OSLO';
549$borough_number{'0481'} = '0301'; $type{'0481'} = 'ST'; $location{'0481'} = 'OSLO';
550$borough_number{'0482'} = '0301'; $type{'0482'} = 'ST'; $location{'0482'} = 'OSLO';
551$borough_number{'0483'} = '0301'; $type{'0483'} = 'ST'; $location{'0483'} = 'OSLO';
552$borough_number{'0484'} = '0301'; $type{'0484'} = 'ST'; $location{'0484'} = 'OSLO';
553$borough_number{'0485'} = '0301'; $type{'0485'} = 'ST'; $location{'0485'} = 'OSLO';
554$borough_number{'0486'} = '0301'; $type{'0486'} = 'ST'; $location{'0486'} = 'OSLO';
555$borough_number{'0487'} = '0301'; $type{'0487'} = 'ST'; $location{'0487'} = 'OSLO';
556$borough_number{'0488'} = '0301'; $type{'0488'} = 'ST'; $location{'0488'} = 'OSLO';
557$borough_number{'0489'} = '0301'; $type{'0489'} = 'ST'; $location{'0489'} = 'OSLO';
558$borough_number{'0490'} = '0301'; $type{'0490'} = 'ST'; $location{'0490'} = 'OSLO';
559$borough_number{'0491'} = '0301'; $type{'0491'} = 'ST'; $location{'0491'} = 'OSLO';
560$borough_number{'0492'} = '0301'; $type{'0492'} = 'ST'; $location{'0492'} = 'OSLO';
561$borough_number{'0493'} = '0301'; $type{'0493'} = 'ST'; $location{'0493'} = 'OSLO';
562$borough_number{'0494'} = '0301'; $type{'0494'} = 'ST'; $location{'0494'} = 'OSLO';
563$borough_number{'0495'} = '0301'; $type{'0495'} = 'ST'; $location{'0495'} = 'OSLO';
564$borough_number{'0496'} = '0301'; $type{'0496'} = 'ST'; $location{'0496'} = 'OSLO';
565$borough_number{'0501'} = '0301'; $type{'0501'} = 'BX'; $location{'0501'} = 'OSLO';
566$borough_number{'0502'} = '0301'; $type{'0502'} = 'BX'; $location{'0502'} = 'OSLO';
567$borough_number{'0503'} = '0301'; $type{'0503'} = 'BX'; $location{'0503'} = 'OSLO';
568$borough_number{'0504'} = '0301'; $type{'0504'} = 'BX'; $location{'0504'} = 'OSLO';
569$borough_number{'0505'} = '0301'; $type{'0505'} = 'BX'; $location{'0505'} = 'OSLO';
570$borough_number{'0506'} = '0301'; $type{'0506'} = 'BX'; $location{'0506'} = 'OSLO';
571$borough_number{'0508'} = '0301'; $type{'0508'} = 'BX'; $location{'0508'} = 'OSLO';
572$borough_number{'0509'} = '0301'; $type{'0509'} = 'BX'; $location{'0509'} = 'OSLO';
573$borough_number{'0510'} = '0301'; $type{'0510'} = 'BX'; $location{'0510'} = 'OSLO';
574$borough_number{'0511'} = '0301'; $type{'0511'} = 'BX'; $location{'0511'} = 'OSLO';
575$borough_number{'0512'} = '0301'; $type{'0512'} = 'BX'; $location{'0512'} = 'OSLO';
576$borough_number{'0513'} = '0301'; $type{'0513'} = 'BX'; $location{'0513'} = 'OSLO';
577$borough_number{'0514'} = '0301'; $type{'0514'} = 'MU'; $location{'0514'} = 'OSLO';
578$borough_number{'0515'} = '0301'; $type{'0515'} = 'BX'; $location{'0515'} = 'OSLO';
579$borough_number{'0516'} = '0301'; $type{'0516'} = 'BX'; $location{'0516'} = 'OSLO';
580$borough_number{'0517'} = '0301'; $type{'0517'} = 'BX'; $location{'0517'} = 'OSLO';
581$borough_number{'0518'} = '0301'; $type{'0518'} = 'BX'; $location{'0518'} = 'OSLO';
582$borough_number{'0520'} = '0301'; $type{'0520'} = 'BX'; $location{'0520'} = 'OSLO';
583$borough_number{'0540'} = '0301'; $type{'0540'} = 'IO'; $location{'0540'} = 'OSLO';
584$borough_number{'0550'} = '0301'; $type{'0550'} = 'ST'; $location{'0550'} = 'OSLO';
585$borough_number{'0551'} = '0301'; $type{'0551'} = 'ST'; $location{'0551'} = 'OSLO';
586$borough_number{'0552'} = '0301'; $type{'0552'} = 'ST'; $location{'0552'} = 'OSLO';
587$borough_number{'0553'} = '0301'; $type{'0553'} = 'ST'; $location{'0553'} = 'OSLO';
588$borough_number{'0554'} = '0301'; $type{'0554'} = 'ST'; $location{'0554'} = 'OSLO';
589$borough_number{'0555'} = '0301'; $type{'0555'} = 'ST'; $location{'0555'} = 'OSLO';
590$borough_number{'0556'} = '0301'; $type{'0556'} = 'ST'; $location{'0556'} = 'OSLO';
591$borough_number{'0557'} = '0301'; $type{'0557'} = 'ST'; $location{'0557'} = 'OSLO';
592$borough_number{'0558'} = '0301'; $type{'0558'} = 'ST'; $location{'0558'} = 'OSLO';
593$borough_number{'0559'} = '0301'; $type{'0559'} = 'ST'; $location{'0559'} = 'OSLO';
594$borough_number{'0560'} = '0301'; $type{'0560'} = 'ST'; $location{'0560'} = 'OSLO';
595$borough_number{'0561'} = '0301'; $type{'0561'} = 'ST'; $location{'0561'} = 'OSLO';
596$borough_number{'0562'} = '0301'; $type{'0562'} = 'ST'; $location{'0562'} = 'OSLO';
597$borough_number{'0563'} = '0301'; $type{'0563'} = 'ST'; $location{'0563'} = 'OSLO';
598$borough_number{'0564'} = '0301'; $type{'0564'} = 'ST'; $location{'0564'} = 'OSLO';
599$borough_number{'0565'} = '0301'; $type{'0565'} = 'ST'; $location{'0565'} = 'OSLO';
600$borough_number{'0566'} = '0301'; $type{'0566'} = 'ST'; $location{'0566'} = 'OSLO';
601$borough_number{'0567'} = '0301'; $type{'0567'} = 'ST'; $location{'0567'} = 'OSLO';
602$borough_number{'0568'} = '0301'; $type{'0568'} = 'ST'; $location{'0568'} = 'OSLO';
603$borough_number{'0569'} = '0301'; $type{'0569'} = 'ST'; $location{'0569'} = 'OSLO';
604$borough_number{'0570'} = '0301'; $type{'0570'} = 'ST'; $location{'0570'} = 'OSLO';
605$borough_number{'0571'} = '0301'; $type{'0571'} = 'ST'; $location{'0571'} = 'OSLO';
606$borough_number{'0572'} = '0301'; $type{'0572'} = 'ST'; $location{'0572'} = 'OSLO';
607$borough_number{'0573'} = '0301'; $type{'0573'} = 'ST'; $location{'0573'} = 'OSLO';
608$borough_number{'0574'} = '0301'; $type{'0574'} = 'ST'; $location{'0574'} = 'OSLO';
609$borough_number{'0575'} = '0301'; $type{'0575'} = 'ST'; $location{'0575'} = 'OSLO';
610$borough_number{'0576'} = '0301'; $type{'0576'} = 'ST'; $location{'0576'} = 'OSLO';
611$borough_number{'0577'} = '0301'; $type{'0577'} = 'ST'; $location{'0577'} = 'OSLO';
612$borough_number{'0578'} = '0301'; $type{'0578'} = 'ST'; $location{'0578'} = 'OSLO';
613$borough_number{'0579'} = '0301'; $type{'0579'} = 'ST'; $location{'0579'} = 'OSLO';
614$borough_number{'0580'} = '0301'; $type{'0580'} = 'ST'; $location{'0580'} = 'OSLO';
615$borough_number{'0581'} = '0301'; $type{'0581'} = 'ST'; $location{'0581'} = 'OSLO';
616$borough_number{'0582'} = '0301'; $type{'0582'} = 'ST'; $location{'0582'} = 'OSLO';
617$borough_number{'0583'} = '0301'; $type{'0583'} = 'ST'; $location{'0583'} = 'OSLO';
618$borough_number{'0584'} = '0301'; $type{'0584'} = 'ST'; $location{'0584'} = 'OSLO';
619$borough_number{'0585'} = '0301'; $type{'0585'} = 'ST'; $location{'0585'} = 'OSLO';
620$borough_number{'0586'} = '0301'; $type{'0586'} = 'ST'; $location{'0586'} = 'OSLO';
621$borough_number{'0587'} = '0301'; $type{'0587'} = 'ST'; $location{'0587'} = 'OSLO';
622$borough_number{'0588'} = '0301'; $type{'0588'} = 'ST'; $location{'0588'} = 'OSLO';
623$borough_number{'0589'} = '0301'; $type{'0589'} = 'ST'; $location{'0589'} = 'OSLO';
624$borough_number{'0590'} = '0301'; $type{'0590'} = 'ST'; $location{'0590'} = 'OSLO';
625$borough_number{'0591'} = '0301'; $type{'0591'} = 'ST'; $location{'0591'} = 'OSLO';
626$borough_number{'0592'} = '0301'; $type{'0592'} = 'ST'; $location{'0592'} = 'OSLO';
627$borough_number{'0593'} = '0301'; $type{'0593'} = 'ST'; $location{'0593'} = 'OSLO';
628$borough_number{'0594'} = '0301'; $type{'0594'} = 'ST'; $location{'0594'} = 'OSLO';
629$borough_number{'0595'} = '0301'; $type{'0595'} = 'ST'; $location{'0595'} = 'OSLO';
630$borough_number{'0596'} = '0301'; $type{'0596'} = 'ST'; $location{'0596'} = 'OSLO';
631$borough_number{'0597'} = '0301'; $type{'0597'} = 'ST'; $location{'0597'} = 'OSLO';
632$borough_number{'0598'} = '0301'; $type{'0598'} = 'ST'; $location{'0598'} = 'OSLO';
633$borough_number{'0601'} = '0301'; $type{'0601'} = 'BX'; $location{'0601'} = 'OSLO';
634$borough_number{'0602'} = '0301'; $type{'0602'} = 'BX'; $location{'0602'} = 'OSLO';
635$borough_number{'0603'} = '0301'; $type{'0603'} = 'BX'; $location{'0603'} = 'OSLO';
636$borough_number{'0604'} = '0301'; $type{'0604'} = 'BX'; $location{'0604'} = 'OSLO';
637$borough_number{'0605'} = '0301'; $type{'0605'} = 'BX'; $location{'0605'} = 'OSLO';
638$borough_number{'0606'} = '0301'; $type{'0606'} = 'BX'; $location{'0606'} = 'OSLO';
639$borough_number{'0607'} = '0301'; $type{'0607'} = 'BX'; $location{'0607'} = 'OSLO';
640$borough_number{'0608'} = '0301'; $type{'0608'} = 'BX'; $location{'0608'} = 'OSLO';
641$borough_number{'0609'} = '0301'; $type{'0609'} = 'BX'; $location{'0609'} = 'OSLO';
642$borough_number{'0610'} = '0301'; $type{'0610'} = 'IO'; $location{'0610'} = 'OSLO';
643$borough_number{'0611'} = '0301'; $type{'0611'} = 'BX'; $location{'0611'} = 'OSLO';
644$borough_number{'0612'} = '0301'; $type{'0612'} = 'BX'; $location{'0612'} = 'OSLO';
645$borough_number{'0613'} = '0301'; $type{'0613'} = 'BX'; $location{'0613'} = 'OSLO';
646$borough_number{'0614'} = '0301'; $type{'0614'} = 'BX'; $location{'0614'} = 'OSLO';
647$borough_number{'0616'} = '0301'; $type{'0616'} = 'BX'; $location{'0616'} = 'OSLO';
648$borough_number{'0617'} = '0301'; $type{'0617'} = 'BX'; $location{'0617'} = 'OSLO';
649$borough_number{'0618'} = '0301'; $type{'0618'} = 'BX'; $location{'0618'} = 'OSLO';
650$borough_number{'0619'} = '0301'; $type{'0619'} = 'BX'; $location{'0619'} = 'OSLO';
651$borough_number{'0620'} = '0301'; $type{'0620'} = 'BX'; $location{'0620'} = 'OSLO';
652$borough_number{'0621'} = '0301'; $type{'0621'} = 'BX'; $location{'0621'} = 'OSLO';
653$borough_number{'0622'} = '0301'; $type{'0622'} = 'BX'; $location{'0622'} = 'OSLO';
654$borough_number{'0623'} = '0301'; $type{'0623'} = 'BX'; $location{'0623'} = 'OSLO';
655$borough_number{'0624'} = '0301'; $type{'0624'} = 'BX'; $location{'0624'} = 'OSLO';
656$borough_number{'0626'} = '0301'; $type{'0626'} = 'BX'; $location{'0626'} = 'OSLO';
657$borough_number{'0630'} = '0301'; $type{'0630'} = 'IO'; $location{'0630'} = 'OSLO';
658$borough_number{'0640'} = '0301'; $type{'0640'} = 'IO'; $location{'0640'} = 'OSLO';
659$borough_number{'0650'} = '0301'; $type{'0650'} = 'ST'; $location{'0650'} = 'OSLO';
660$borough_number{'0651'} = '0301'; $type{'0651'} = 'ST'; $location{'0651'} = 'OSLO';
661$borough_number{'0652'} = '0301'; $type{'0652'} = 'ST'; $location{'0652'} = 'OSLO';
662$borough_number{'0653'} = '0301'; $type{'0653'} = 'ST'; $location{'0653'} = 'OSLO';
663$borough_number{'0654'} = '0301'; $type{'0654'} = 'ST'; $location{'0654'} = 'OSLO';
664$borough_number{'0655'} = '0301'; $type{'0655'} = 'ST'; $location{'0655'} = 'OSLO';
665$borough_number{'0656'} = '0301'; $type{'0656'} = 'ST'; $location{'0656'} = 'OSLO';
666$borough_number{'0657'} = '0301'; $type{'0657'} = 'ST'; $location{'0657'} = 'OSLO';
667$borough_number{'0658'} = '0301'; $type{'0658'} = 'ST'; $location{'0658'} = 'OSLO';
668$borough_number{'0659'} = '0301'; $type{'0659'} = 'ST'; $location{'0659'} = 'OSLO';
669$borough_number{'0660'} = '0301'; $type{'0660'} = 'ST'; $location{'0660'} = 'OSLO';
670$borough_number{'0661'} = '0301'; $type{'0661'} = 'ST'; $location{'0661'} = 'OSLO';
671$borough_number{'0662'} = '0301'; $type{'0662'} = 'ST'; $location{'0662'} = 'OSLO';
672$borough_number{'0663'} = '0301'; $type{'0663'} = 'ST'; $location{'0663'} = 'OSLO';
673$borough_number{'0664'} = '0301'; $type{'0664'} = 'ST'; $location{'0664'} = 'OSLO';
674$borough_number{'0665'} = '0301'; $type{'0665'} = 'ST'; $location{'0665'} = 'OSLO';
675$borough_number{'0666'} = '0301'; $type{'0666'} = 'ST'; $location{'0666'} = 'OSLO';
676$borough_number{'0667'} = '0301'; $type{'0667'} = 'ST'; $location{'0667'} = 'OSLO';
677$borough_number{'0668'} = '0301'; $type{'0668'} = 'ST'; $location{'0668'} = 'OSLO';
678$borough_number{'0669'} = '0301'; $type{'0669'} = 'ST'; $location{'0669'} = 'OSLO';
679$borough_number{'0670'} = '0301'; $type{'0670'} = 'ST'; $location{'0670'} = 'OSLO';
680$borough_number{'0671'} = '0301'; $type{'0671'} = 'ST'; $location{'0671'} = 'OSLO';
681$borough_number{'0672'} = '0301'; $type{'0672'} = 'ST'; $location{'0672'} = 'OSLO';
682$borough_number{'0673'} = '0301'; $type{'0673'} = 'ST'; $location{'0673'} = 'OSLO';
683$borough_number{'0674'} = '0301'; $type{'0674'} = 'ST'; $location{'0674'} = 'OSLO';
684$borough_number{'0675'} = '0301'; $type{'0675'} = 'ST'; $location{'0675'} = 'OSLO';
685$borough_number{'0676'} = '0301'; $type{'0676'} = 'ST'; $location{'0676'} = 'OSLO';
686$borough_number{'0677'} = '0301'; $type{'0677'} = 'ST'; $location{'0677'} = 'OSLO';
687$borough_number{'0678'} = '0301'; $type{'0678'} = 'ST'; $location{'0678'} = 'OSLO';
688$borough_number{'0679'} = '0301'; $type{'0679'} = 'ST'; $location{'0679'} = 'OSLO';
689$borough_number{'0680'} = '0301'; $type{'0680'} = 'ST'; $location{'0680'} = 'OSLO';
690$borough_number{'0681'} = '0301'; $type{'0681'} = 'ST'; $location{'0681'} = 'OSLO';
691$borough_number{'0682'} = '0301'; $type{'0682'} = 'ST'; $location{'0682'} = 'OSLO';
692$borough_number{'0683'} = '0301'; $type{'0683'} = 'ST'; $location{'0683'} = 'OSLO';
693$borough_number{'0684'} = '0301'; $type{'0684'} = 'ST'; $location{'0684'} = 'OSLO';
694$borough_number{'0685'} = '0301'; $type{'0685'} = 'ST'; $location{'0685'} = 'OSLO';
695$borough_number{'0686'} = '0301'; $type{'0686'} = 'ST'; $location{'0686'} = 'OSLO';
696$borough_number{'0687'} = '0301'; $type{'0687'} = 'ST'; $location{'0687'} = 'OSLO';
697$borough_number{'0688'} = '0301'; $type{'0688'} = 'ST'; $location{'0688'} = 'OSLO';
698$borough_number{'0689'} = '0301'; $type{'0689'} = 'ST'; $location{'0689'} = 'OSLO';
699$borough_number{'0690'} = '0301'; $type{'0690'} = 'ST'; $location{'0690'} = 'OSLO';
700$borough_number{'0691'} = '0301'; $type{'0691'} = 'ST'; $location{'0691'} = 'OSLO';
701$borough_number{'0692'} = '0301'; $type{'0692'} = 'ST'; $location{'0692'} = 'OSLO';
702$borough_number{'0693'} = '0301'; $type{'0693'} = 'ST'; $location{'0693'} = 'OSLO';
703$borough_number{'0694'} = '0301'; $type{'0694'} = 'ST'; $location{'0694'} = 'OSLO';
704$borough_number{'0701'} = '0301'; $type{'0701'} = 'BX'; $location{'0701'} = 'OSLO';
705$borough_number{'0702'} = '0301'; $type{'0702'} = 'BX'; $location{'0702'} = 'OSLO';
706$borough_number{'0705'} = '0301'; $type{'0705'} = 'BX'; $location{'0705'} = 'OSLO';
707$borough_number{'0710'} = '0301'; $type{'0710'} = 'BX'; $location{'0710'} = 'OSLO';
708$borough_number{'0712'} = '0301'; $type{'0712'} = 'BX'; $location{'0712'} = 'OSLO';
709$borough_number{'0750'} = '0301'; $type{'0750'} = 'ST'; $location{'0750'} = 'OSLO';
710$borough_number{'0751'} = '0301'; $type{'0751'} = 'ST'; $location{'0751'} = 'OSLO';
711$borough_number{'0752'} = '0301'; $type{'0752'} = 'ST'; $location{'0752'} = 'OSLO';
712$borough_number{'0753'} = '0301'; $type{'0753'} = 'ST'; $location{'0753'} = 'OSLO';
713$borough_number{'0754'} = '0301'; $type{'0754'} = 'ST'; $location{'0754'} = 'OSLO';
714$borough_number{'0755'} = '0301'; $type{'0755'} = 'ST'; $location{'0755'} = 'OSLO';
715$borough_number{'0756'} = '0301'; $type{'0756'} = 'ST'; $location{'0756'} = 'OSLO';
716$borough_number{'0757'} = '0301'; $type{'0757'} = 'ST'; $location{'0757'} = 'OSLO';
717$borough_number{'0758'} = '0301'; $type{'0758'} = 'ST'; $location{'0758'} = 'OSLO';
718$borough_number{'0759'} = '0301'; $type{'0759'} = 'ST'; $location{'0759'} = 'OSLO';
719$borough_number{'0760'} = '0301'; $type{'0760'} = 'ST'; $location{'0760'} = 'OSLO';
720$borough_number{'0763'} = '0301'; $type{'0763'} = 'ST'; $location{'0763'} = 'OSLO';
721$borough_number{'0764'} = '0301'; $type{'0764'} = 'ST'; $location{'0764'} = 'OSLO';
722$borough_number{'0765'} = '0301'; $type{'0765'} = 'ST'; $location{'0765'} = 'OSLO';
723$borough_number{'0766'} = '0301'; $type{'0766'} = 'ST'; $location{'0766'} = 'OSLO';
724$borough_number{'0767'} = '0301'; $type{'0767'} = 'ST'; $location{'0767'} = 'OSLO';
725$borough_number{'0768'} = '0301'; $type{'0768'} = 'ST'; $location{'0768'} = 'OSLO';
726$borough_number{'0770'} = '0301'; $type{'0770'} = 'ST'; $location{'0770'} = 'OSLO';
727$borough_number{'0771'} = '0301'; $type{'0771'} = 'ST'; $location{'0771'} = 'OSLO';
728$borough_number{'0772'} = '0301'; $type{'0772'} = 'ST'; $location{'0772'} = 'OSLO';
729$borough_number{'0773'} = '0301'; $type{'0773'} = 'ST'; $location{'0773'} = 'OSLO';
730$borough_number{'0774'} = '0301'; $type{'0774'} = 'ST'; $location{'0774'} = 'OSLO';
731$borough_number{'0775'} = '0301'; $type{'0775'} = 'ST'; $location{'0775'} = 'OSLO';
732$borough_number{'0776'} = '0301'; $type{'0776'} = 'ST'; $location{'0776'} = 'OSLO';
733$borough_number{'0777'} = '0301'; $type{'0777'} = 'ST'; $location{'0777'} = 'OSLO';
734$borough_number{'0778'} = '0301'; $type{'0778'} = 'ST'; $location{'0778'} = 'OSLO';
735$borough_number{'0779'} = '0301'; $type{'0779'} = 'ST'; $location{'0779'} = 'OSLO';
736$borough_number{'0781'} = '0301'; $type{'0781'} = 'ST'; $location{'0781'} = 'OSLO';
737$borough_number{'0782'} = '0301'; $type{'0782'} = 'ST'; $location{'0782'} = 'OSLO';
738$borough_number{'0783'} = '0301'; $type{'0783'} = 'ST'; $location{'0783'} = 'OSLO';
739$borough_number{'0784'} = '0301'; $type{'0784'} = 'ST'; $location{'0784'} = 'OSLO';
740$borough_number{'0785'} = '0301'; $type{'0785'} = 'ST'; $location{'0785'} = 'OSLO';
741$borough_number{'0786'} = '0301'; $type{'0786'} = 'ST'; $location{'0786'} = 'OSLO';
742$borough_number{'0787'} = '0301'; $type{'0787'} = 'ST'; $location{'0787'} = 'OSLO';
743$borough_number{'0788'} = '0301'; $type{'0788'} = 'ST'; $location{'0788'} = 'OSLO';
744$borough_number{'0789'} = '0301'; $type{'0789'} = 'ST'; $location{'0789'} = 'OSLO';
745$borough_number{'0790'} = '0301'; $type{'0790'} = 'ST'; $location{'0790'} = 'OSLO';
746$borough_number{'0791'} = '0301'; $type{'0791'} = 'ST'; $location{'0791'} = 'OSLO';
747$borough_number{'0801'} = '0301'; $type{'0801'} = 'BX'; $location{'0801'} = 'OSLO';
748$borough_number{'0805'} = '0301'; $type{'0805'} = 'BX'; $location{'0805'} = 'OSLO';
749$borough_number{'0806'} = '0301'; $type{'0806'} = 'BX'; $location{'0806'} = 'OSLO';
750$borough_number{'0807'} = '0301'; $type{'0807'} = 'BX'; $location{'0807'} = 'OSLO';
751$borough_number{'0840'} = '0301'; $type{'0840'} = 'IO'; $location{'0840'} = 'OSLO';
752$borough_number{'0850'} = '0301'; $type{'0850'} = 'ST'; $location{'0850'} = 'OSLO';
753$borough_number{'0851'} = '0301'; $type{'0851'} = 'ST'; $location{'0851'} = 'OSLO';
754$borough_number{'0852'} = '0301'; $type{'0852'} = 'ST'; $location{'0852'} = 'OSLO';
755$borough_number{'0853'} = '0301'; $type{'0853'} = 'ST'; $location{'0853'} = 'OSLO';
756$borough_number{'0854'} = '0301'; $type{'0854'} = 'ST'; $location{'0854'} = 'OSLO';
757$borough_number{'0855'} = '0301'; $type{'0855'} = 'ST'; $location{'0855'} = 'OSLO';
758$borough_number{'0856'} = '0301'; $type{'0856'} = 'ST'; $location{'0856'} = 'OSLO';
759$borough_number{'0857'} = '0301'; $type{'0857'} = 'ST'; $location{'0857'} = 'OSLO';
760$borough_number{'0858'} = '0301'; $type{'0858'} = 'ST'; $location{'0858'} = 'OSLO';
761$borough_number{'0860'} = '0301'; $type{'0860'} = 'ST'; $location{'0860'} = 'OSLO';
762$borough_number{'0861'} = '0301'; $type{'0861'} = 'ST'; $location{'0861'} = 'OSLO';
763$borough_number{'0862'} = '0301'; $type{'0862'} = 'ST'; $location{'0862'} = 'OSLO';
764$borough_number{'0863'} = '0301'; $type{'0863'} = 'ST'; $location{'0863'} = 'OSLO';
765$borough_number{'0864'} = '0301'; $type{'0864'} = 'ST'; $location{'0864'} = 'OSLO';
766$borough_number{'0870'} = '0301'; $type{'0870'} = 'ST'; $location{'0870'} = 'OSLO';
767$borough_number{'0871'} = '0301'; $type{'0871'} = 'ST'; $location{'0871'} = 'OSLO';
768$borough_number{'0872'} = '0301'; $type{'0872'} = 'ST'; $location{'0872'} = 'OSLO';
769$borough_number{'0873'} = '0301'; $type{'0873'} = 'ST'; $location{'0873'} = 'OSLO';
770$borough_number{'0874'} = '0301'; $type{'0874'} = 'ST'; $location{'0874'} = 'OSLO';
771$borough_number{'0875'} = '0301'; $type{'0875'} = 'ST'; $location{'0875'} = 'OSLO';
772$borough_number{'0876'} = '0301'; $type{'0876'} = 'ST'; $location{'0876'} = 'OSLO';
773$borough_number{'0877'} = '0301'; $type{'0877'} = 'ST'; $location{'0877'} = 'OSLO';
774$borough_number{'0880'} = '0301'; $type{'0880'} = 'ST'; $location{'0880'} = 'OSLO';
775$borough_number{'0881'} = '0301'; $type{'0881'} = 'ST'; $location{'0881'} = 'OSLO';
776$borough_number{'0882'} = '0301'; $type{'0882'} = 'ST'; $location{'0882'} = 'OSLO';
777$borough_number{'0883'} = '0301'; $type{'0883'} = 'ST'; $location{'0883'} = 'OSLO';
778$borough_number{'0884'} = '0301'; $type{'0884'} = 'ST'; $location{'0884'} = 'OSLO';
779$borough_number{'0890'} = '0301'; $type{'0890'} = 'ST'; $location{'0890'} = 'OSLO';
780$borough_number{'0891'} = '0301'; $type{'0891'} = 'ST'; $location{'0891'} = 'OSLO';
781$borough_number{'0901'} = '0301'; $type{'0901'} = 'BX'; $location{'0901'} = 'OSLO';
782$borough_number{'0902'} = '0301'; $type{'0902'} = 'BX'; $location{'0902'} = 'OSLO';
783$borough_number{'0903'} = '0301'; $type{'0903'} = 'BX'; $location{'0903'} = 'OSLO';
784$borough_number{'0904'} = '0301'; $type{'0904'} = 'BX'; $location{'0904'} = 'OSLO';
785$borough_number{'0905'} = '0301'; $type{'0905'} = 'BX'; $location{'0905'} = 'OSLO';
786$borough_number{'0907'} = '0301'; $type{'0907'} = 'BX'; $location{'0907'} = 'OSLO';
787$borough_number{'0908'} = '0301'; $type{'0908'} = 'BX'; $location{'0908'} = 'OSLO';
788$borough_number{'0913'} = '0301'; $type{'0913'} = 'BX'; $location{'0913'} = 'OSLO';
789$borough_number{'0915'} = '0301'; $type{'0915'} = 'BX'; $location{'0915'} = 'OSLO';
790$borough_number{'0950'} = '0301'; $type{'0950'} = 'ST'; $location{'0950'} = 'OSLO';
791$borough_number{'0951'} = '0301'; $type{'0951'} = 'ST'; $location{'0951'} = 'OSLO';
792$borough_number{'0952'} = '0301'; $type{'0952'} = 'ST'; $location{'0952'} = 'OSLO';
793$borough_number{'0953'} = '0301'; $type{'0953'} = 'ST'; $location{'0953'} = 'OSLO';
794$borough_number{'0954'} = '0301'; $type{'0954'} = 'ST'; $location{'0954'} = 'OSLO';
795$borough_number{'0955'} = '0301'; $type{'0955'} = 'ST'; $location{'0955'} = 'OSLO';
796$borough_number{'0956'} = '0301'; $type{'0956'} = 'ST'; $location{'0956'} = 'OSLO';
797$borough_number{'0957'} = '0301'; $type{'0957'} = 'ST'; $location{'0957'} = 'OSLO';
798$borough_number{'0958'} = '0301'; $type{'0958'} = 'ST'; $location{'0958'} = 'OSLO';
799$borough_number{'0959'} = '0301'; $type{'0959'} = 'ST'; $location{'0959'} = 'OSLO';
800$borough_number{'0960'} = '0301'; $type{'0960'} = 'ST'; $location{'0960'} = 'OSLO';
801$borough_number{'0962'} = '0301'; $type{'0962'} = 'ST'; $location{'0962'} = 'OSLO';
802$borough_number{'0963'} = '0301'; $type{'0963'} = 'ST'; $location{'0963'} = 'OSLO';
803$borough_number{'0964'} = '0301'; $type{'0964'} = 'ST'; $location{'0964'} = 'OSLO';
804$borough_number{'0968'} = '0301'; $type{'0968'} = 'ST'; $location{'0968'} = 'OSLO';
805$borough_number{'0969'} = '0301'; $type{'0969'} = 'ST'; $location{'0969'} = 'OSLO';
806$borough_number{'0970'} = '0301'; $type{'0970'} = 'ST'; $location{'0970'} = 'OSLO';
807$borough_number{'0971'} = '0301'; $type{'0971'} = 'ST'; $location{'0971'} = 'OSLO';
808$borough_number{'0972'} = '0301'; $type{'0972'} = 'ST'; $location{'0972'} = 'OSLO';
809$borough_number{'0973'} = '0301'; $type{'0973'} = 'ST'; $location{'0973'} = 'OSLO';
810$borough_number{'0975'} = '0301'; $type{'0975'} = 'ST'; $location{'0975'} = 'OSLO';
811$borough_number{'0976'} = '0301'; $type{'0976'} = 'ST'; $location{'0976'} = 'OSLO';
812$borough_number{'0977'} = '0301'; $type{'0977'} = 'ST'; $location{'0977'} = 'OSLO';
813$borough_number{'0978'} = '0301'; $type{'0978'} = 'ST'; $location{'0978'} = 'OSLO';
814$borough_number{'0979'} = '0301'; $type{'0979'} = 'ST'; $location{'0979'} = 'OSLO';
815$borough_number{'0980'} = '0301'; $type{'0980'} = 'ST'; $location{'0980'} = 'OSLO';
816$borough_number{'0981'} = '0301'; $type{'0981'} = 'ST'; $location{'0981'} = 'OSLO';
817$borough_number{'0982'} = '0301'; $type{'0982'} = 'ST'; $location{'0982'} = 'OSLO';
818$borough_number{'0983'} = '0301'; $type{'0983'} = 'ST'; $location{'0983'} = 'OSLO';
819$borough_number{'0984'} = '0301'; $type{'0984'} = 'ST'; $location{'0984'} = 'OSLO';
820$borough_number{'0985'} = '0301'; $type{'0985'} = 'ST'; $location{'0985'} = 'OSLO';
821$borough_number{'0986'} = '0301'; $type{'0986'} = 'ST'; $location{'0986'} = 'OSLO';
822$borough_number{'0987'} = '0301'; $type{'0987'} = 'ST'; $location{'0987'} = 'OSLO';
823$borough_number{'0988'} = '0301'; $type{'0988'} = 'ST'; $location{'0988'} = 'OSLO';
824$borough_number{'1001'} = '0301'; $type{'1001'} = 'BX'; $location{'1001'} = 'OSLO';
825$borough_number{'1003'} = '0301'; $type{'1003'} = 'BX'; $location{'1003'} = 'OSLO';
826$borough_number{'1005'} = '0301'; $type{'1005'} = 'BX'; $location{'1005'} = 'OSLO';
827$borough_number{'1006'} = '0301'; $type{'1006'} = 'BX'; $location{'1006'} = 'OSLO';
828$borough_number{'1007'} = '0301'; $type{'1007'} = 'BX'; $location{'1007'} = 'OSLO';
829$borough_number{'1008'} = '0301'; $type{'1008'} = 'BX'; $location{'1008'} = 'OSLO';
830$borough_number{'1009'} = '0301'; $type{'1009'} = 'BX'; $location{'1009'} = 'OSLO';
831$borough_number{'1011'} = '0301'; $type{'1011'} = 'BX'; $location{'1011'} = 'OSLO';
832$borough_number{'1051'} = '0301'; $type{'1051'} = 'ST'; $location{'1051'} = 'OSLO';
833$borough_number{'1052'} = '0301'; $type{'1052'} = 'ST'; $location{'1052'} = 'OSLO';
834$borough_number{'1053'} = '0301'; $type{'1053'} = 'ST'; $location{'1053'} = 'OSLO';
835$borough_number{'1054'} = '0301'; $type{'1054'} = 'ST'; $location{'1054'} = 'OSLO';
836$borough_number{'1055'} = '0301'; $type{'1055'} = 'ST'; $location{'1055'} = 'OSLO';
837$borough_number{'1056'} = '0301'; $type{'1056'} = 'ST'; $location{'1056'} = 'OSLO';
838$borough_number{'1061'} = '0301'; $type{'1061'} = 'ST'; $location{'1061'} = 'OSLO';
839$borough_number{'1062'} = '0301'; $type{'1062'} = 'ST'; $location{'1062'} = 'OSLO';
840$borough_number{'1063'} = '0301'; $type{'1063'} = 'ST'; $location{'1063'} = 'OSLO';
841$borough_number{'1064'} = '0301'; $type{'1064'} = 'ST'; $location{'1064'} = 'OSLO';
842$borough_number{'1065'} = '0301'; $type{'1065'} = 'ST'; $location{'1065'} = 'OSLO';
843$borough_number{'1067'} = '0301'; $type{'1067'} = 'ST'; $location{'1067'} = 'OSLO';
844$borough_number{'1068'} = '0301'; $type{'1068'} = 'ST'; $location{'1068'} = 'OSLO';
845$borough_number{'1069'} = '0301'; $type{'1069'} = 'ST'; $location{'1069'} = 'OSLO';
846$borough_number{'1071'} = '0301'; $type{'1071'} = 'ST'; $location{'1071'} = 'OSLO';
847$borough_number{'1081'} = '0301'; $type{'1081'} = 'ST'; $location{'1081'} = 'OSLO';
848$borough_number{'1083'} = '0301'; $type{'1083'} = 'ST'; $location{'1083'} = 'OSLO';
849$borough_number{'1084'} = '0301'; $type{'1084'} = 'ST'; $location{'1084'} = 'OSLO';
850$borough_number{'1086'} = '0301'; $type{'1086'} = 'ST'; $location{'1086'} = 'OSLO';
851$borough_number{'1087'} = '0301'; $type{'1087'} = 'ST'; $location{'1087'} = 'OSLO';
852$borough_number{'1088'} = '0301'; $type{'1088'} = 'ST'; $location{'1088'} = 'OSLO';
853$borough_number{'1089'} = '0301'; $type{'1089'} = 'ST'; $location{'1089'} = 'OSLO';
854$borough_number{'1101'} = '0301'; $type{'1101'} = 'BX'; $location{'1101'} = 'OSLO';
855$borough_number{'1109'} = '0301'; $type{'1109'} = 'BX'; $location{'1109'} = 'OSLO';
856$borough_number{'1112'} = '0301'; $type{'1112'} = 'BX'; $location{'1112'} = 'OSLO';
857$borough_number{'1150'} = '0301'; $type{'1150'} = 'ST'; $location{'1150'} = 'OSLO';
858$borough_number{'1151'} = '0301'; $type{'1151'} = 'ST'; $location{'1151'} = 'OSLO';
859$borough_number{'1152'} = '0301'; $type{'1152'} = 'ST'; $location{'1152'} = 'OSLO';
860$borough_number{'1153'} = '0301'; $type{'1153'} = 'ST'; $location{'1153'} = 'OSLO';
861$borough_number{'1154'} = '0301'; $type{'1154'} = 'ST'; $location{'1154'} = 'OSLO';
862$borough_number{'1155'} = '0301'; $type{'1155'} = 'ST'; $location{'1155'} = 'OSLO';
863$borough_number{'1156'} = '0301'; $type{'1156'} = 'ST'; $location{'1156'} = 'OSLO';
864$borough_number{'1157'} = '0301'; $type{'1157'} = 'ST'; $location{'1157'} = 'OSLO';
865$borough_number{'1158'} = '0301'; $type{'1158'} = 'ST'; $location{'1158'} = 'OSLO';
866$borough_number{'1160'} = '0301'; $type{'1160'} = 'ST'; $location{'1160'} = 'OSLO';
867$borough_number{'1161'} = '0301'; $type{'1161'} = 'ST'; $location{'1161'} = 'OSLO';
868$borough_number{'1162'} = '0301'; $type{'1162'} = 'ST'; $location{'1162'} = 'OSLO';
869$borough_number{'1163'} = '0301'; $type{'1163'} = 'ST'; $location{'1163'} = 'OSLO';
870$borough_number{'1164'} = '0301'; $type{'1164'} = 'ST'; $location{'1164'} = 'OSLO';
871$borough_number{'1165'} = '0301'; $type{'1165'} = 'ST'; $location{'1165'} = 'OSLO';
872$borough_number{'1166'} = '0301'; $type{'1166'} = 'ST'; $location{'1166'} = 'OSLO';
873$borough_number{'1167'} = '0301'; $type{'1167'} = 'ST'; $location{'1167'} = 'OSLO';
874$borough_number{'1168'} = '0301'; $type{'1168'} = 'ST'; $location{'1168'} = 'OSLO';
875$borough_number{'1169'} = '0301'; $type{'1169'} = 'ST'; $location{'1169'} = 'OSLO';
876$borough_number{'1170'} = '0301'; $type{'1170'} = 'ST'; $location{'1170'} = 'OSLO';
877$borough_number{'1172'} = '0301'; $type{'1172'} = 'ST'; $location{'1172'} = 'OSLO';
878$borough_number{'1176'} = '0301'; $type{'1176'} = 'ST'; $location{'1176'} = 'OSLO';
879$borough_number{'1177'} = '0301'; $type{'1177'} = 'ST'; $location{'1177'} = 'OSLO';
880$borough_number{'1178'} = '0301'; $type{'1178'} = 'ST'; $location{'1178'} = 'OSLO';
881$borough_number{'1179'} = '0301'; $type{'1179'} = 'ST'; $location{'1179'} = 'OSLO';
882$borough_number{'1181'} = '0301'; $type{'1181'} = 'ST'; $location{'1181'} = 'OSLO';
883$borough_number{'1182'} = '0301'; $type{'1182'} = 'ST'; $location{'1182'} = 'OSLO';
884$borough_number{'1184'} = '0301'; $type{'1184'} = 'ST'; $location{'1184'} = 'OSLO';
885$borough_number{'1185'} = '0301'; $type{'1185'} = 'ST'; $location{'1185'} = 'OSLO';
886$borough_number{'1187'} = '0301'; $type{'1187'} = 'ST'; $location{'1187'} = 'OSLO';
887$borough_number{'1188'} = '0301'; $type{'1188'} = 'ST'; $location{'1188'} = 'OSLO';
888$borough_number{'1189'} = '0301'; $type{'1189'} = 'ST'; $location{'1189'} = 'OSLO';
889$borough_number{'1201'} = '0301'; $type{'1201'} = 'BX'; $location{'1201'} = 'OSLO';
890$borough_number{'1202'} = '0301'; $type{'1202'} = 'BX'; $location{'1202'} = 'OSLO';
891$borough_number{'1203'} = '0301'; $type{'1203'} = 'BX'; $location{'1203'} = 'OSLO';
892$borough_number{'1204'} = '0301'; $type{'1204'} = 'BX'; $location{'1204'} = 'OSLO';
893$borough_number{'1205'} = '0301'; $type{'1205'} = 'BX'; $location{'1205'} = 'OSLO';
894$borough_number{'1206'} = '0301'; $type{'1206'} = 'BX'; $location{'1206'} = 'OSLO';
895$borough_number{'1207'} = '0301'; $type{'1207'} = 'BX'; $location{'1207'} = 'OSLO';
896$borough_number{'1214'} = '0301'; $type{'1214'} = 'BX'; $location{'1214'} = 'OSLO';
897$borough_number{'1215'} = '0301'; $type{'1215'} = 'BX'; $location{'1215'} = 'OSLO';
898$borough_number{'1250'} = '0301'; $type{'1250'} = 'ST'; $location{'1250'} = 'OSLO';
899$borough_number{'1251'} = '0301'; $type{'1251'} = 'ST'; $location{'1251'} = 'OSLO';
900$borough_number{'1252'} = '0301'; $type{'1252'} = 'ST'; $location{'1252'} = 'OSLO';
901$borough_number{'1253'} = '0301'; $type{'1253'} = 'ST'; $location{'1253'} = 'OSLO';
902$borough_number{'1254'} = '0301'; $type{'1254'} = 'ST'; $location{'1254'} = 'OSLO';
903$borough_number{'1255'} = '0301'; $type{'1255'} = 'ST'; $location{'1255'} = 'OSLO';
904$borough_number{'1256'} = '0301'; $type{'1256'} = 'ST'; $location{'1256'} = 'OSLO';
905$borough_number{'1257'} = '0301'; $type{'1257'} = 'ST'; $location{'1257'} = 'OSLO';
906$borough_number{'1258'} = '0301'; $type{'1258'} = 'ST'; $location{'1258'} = 'OSLO';
907$borough_number{'1259'} = '0301'; $type{'1259'} = 'ST'; $location{'1259'} = 'OSLO';
908$borough_number{'1262'} = '0301'; $type{'1262'} = 'ST'; $location{'1262'} = 'OSLO';
909$borough_number{'1263'} = '0301'; $type{'1263'} = 'ST'; $location{'1263'} = 'OSLO';
910$borough_number{'1266'} = '0301'; $type{'1266'} = 'ST'; $location{'1266'} = 'OSLO';
911$borough_number{'1270'} = '0301'; $type{'1270'} = 'ST'; $location{'1270'} = 'OSLO';
912$borough_number{'1271'} = '0301'; $type{'1271'} = 'ST'; $location{'1271'} = 'OSLO';
913$borough_number{'1272'} = '0301'; $type{'1272'} = 'ST'; $location{'1272'} = 'OSLO';
914$borough_number{'1273'} = '0301'; $type{'1273'} = 'ST'; $location{'1273'} = 'OSLO';
915$borough_number{'1274'} = '0301'; $type{'1274'} = 'ST'; $location{'1274'} = 'OSLO';
916$borough_number{'1275'} = '0301'; $type{'1275'} = 'ST'; $location{'1275'} = 'OSLO';
917$borough_number{'1277'} = '0301'; $type{'1277'} = 'ST'; $location{'1277'} = 'OSLO';
918$borough_number{'1278'} = '0301'; $type{'1278'} = 'ST'; $location{'1278'} = 'OSLO';
919$borough_number{'1279'} = '0301'; $type{'1279'} = 'ST'; $location{'1279'} = 'OSLO';
920$borough_number{'1281'} = '0301'; $type{'1281'} = 'ST'; $location{'1281'} = 'OSLO';
921$borough_number{'1283'} = '0301'; $type{'1283'} = 'ST'; $location{'1283'} = 'OSLO';
922$borough_number{'1284'} = '0301'; $type{'1284'} = 'ST'; $location{'1284'} = 'OSLO';
923$borough_number{'1285'} = '0301'; $type{'1285'} = 'ST'; $location{'1285'} = 'OSLO';
924$borough_number{'1286'} = '0301'; $type{'1286'} = 'ST'; $location{'1286'} = 'OSLO';
925$borough_number{'1290'} = '0301'; $type{'1290'} = 'ST'; $location{'1290'} = 'OSLO';
926$borough_number{'1291'} = '0301'; $type{'1291'} = 'ST'; $location{'1291'} = 'OSLO';
927$borough_number{'1294'} = '0301'; $type{'1294'} = 'ST'; $location{'1294'} = 'OSLO';
928$borough_number{'1295'} = '0301'; $type{'1295'} = 'ST'; $location{'1295'} = 'OSLO';
929$borough_number{'1300'} = '0219'; $type{'1300'} = 'BX'; $location{'1300'} = 'SANDVIKA';
930$borough_number{'1301'} = '0219'; $type{'1301'} = 'BX'; $location{'1301'} = 'SANDVIKA';
931$borough_number{'1302'} = '0219'; $type{'1302'} = 'BX'; $location{'1302'} = 'SANDVIKA';
932$borough_number{'1303'} = '0219'; $type{'1303'} = 'BX'; $location{'1303'} = 'SANDVIKA';
933$borough_number{'1304'} = '0219'; $type{'1304'} = 'IO'; $location{'1304'} = 'SANDVIKA';
934$borough_number{'1305'} = '0219'; $type{'1305'} = 'BX'; $location{'1305'} = 'HASLUM';
935$borough_number{'1306'} = '0219'; $type{'1306'} = 'BX'; $location{'1306'} = 'B�RUM POSTTERMINAL';
936$borough_number{'1309'} = '0219'; $type{'1309'} = 'BX'; $location{'1309'} = 'RUD';
937$borough_number{'1311'} = '0219'; $type{'1311'} = 'IO'; $location{'1311'} = 'KUNSTSENTRET H�VIKODDEN';
938$borough_number{'1312'} = '0219'; $type{'1312'} = 'BX'; $location{'1312'} = 'SLEPENDEN';
939$borough_number{'1313'} = '0219'; $type{'1313'} = 'BX'; $location{'1313'} = 'V�YENENGA';
940$borough_number{'1314'} = '0219'; $type{'1314'} = 'BX'; $location{'1314'} = 'V�YENENGA';
941$borough_number{'1316'} = '0219'; $type{'1316'} = 'BX'; $location{'1316'} = 'EIKSMARKA';
942$borough_number{'1317'} = '0219'; $type{'1317'} = 'BX'; $location{'1317'} = 'B�RUMS VERK';
943$borough_number{'1318'} = '0219'; $type{'1318'} = 'BX'; $location{'1318'} = 'BEKKESTUA';
944$borough_number{'1319'} = '0219'; $type{'1319'} = 'BX'; $location{'1319'} = 'BEKKESTUA';
945$borough_number{'1321'} = '0219'; $type{'1321'} = 'BX'; $location{'1321'} = 'STABEKK';
946$borough_number{'1322'} = '0219'; $type{'1322'} = 'BX'; $location{'1322'} = 'H�VIK';
947$borough_number{'1323'} = '0219'; $type{'1323'} = 'BX'; $location{'1323'} = 'H�VIK';
948$borough_number{'1324'} = '0219'; $type{'1324'} = 'BX'; $location{'1324'} = 'LYSAKER';
949$borough_number{'1325'} = '0219'; $type{'1325'} = 'BX'; $location{'1325'} = 'LYSAKER';
950$borough_number{'1326'} = '0219'; $type{'1326'} = 'BX'; $location{'1326'} = 'LYSAKER';
951$borough_number{'1327'} = '0219'; $type{'1327'} = 'BX'; $location{'1327'} = 'LYSAKER';
952$borough_number{'1330'} = '0219'; $type{'1330'} = 'BX'; $location{'1330'} = 'FORNEBU';
953$borough_number{'1331'} = '0219'; $type{'1331'} = 'IO'; $location{'1331'} = 'FORNEBU';
954$borough_number{'1332'} = '0219'; $type{'1332'} = 'BX'; $location{'1332'} = '�STER�S';
955$borough_number{'1333'} = '0219'; $type{'1333'} = 'BX'; $location{'1333'} = 'KOLS�S';
956$borough_number{'1334'} = '0219'; $type{'1334'} = 'BX'; $location{'1334'} = 'RYKKINN';
957$borough_number{'1335'} = '0219'; $type{'1335'} = 'BX'; $location{'1335'} = 'SNAR�YA';
958$borough_number{'1336'} = '0219'; $type{'1336'} = 'ST'; $location{'1336'} = 'SANDVIKA';
959$borough_number{'1337'} = '0219'; $type{'1337'} = 'ST'; $location{'1337'} = 'SANDVIKA';
960$borough_number{'1338'} = '0219'; $type{'1338'} = 'ST'; $location{'1338'} = 'SANDVIKA';
961$borough_number{'1339'} = '0219'; $type{'1339'} = 'ST'; $location{'1339'} = 'V�YENENGA';
962$borough_number{'1340'} = '0219'; $type{'1340'} = 'ST'; $location{'1340'} = 'SKUI';
963$borough_number{'1341'} = '0219'; $type{'1341'} = 'ST'; $location{'1341'} = 'SLEPENDEN';
964$borough_number{'1344'} = '0219'; $type{'1344'} = 'ST'; $location{'1344'} = 'HASLUM';
965$borough_number{'1346'} = '0219'; $type{'1346'} = 'ST'; $location{'1346'} = 'GJETTUM';
966$borough_number{'1348'} = '0219'; $type{'1348'} = 'ST'; $location{'1348'} = 'RYKKINN';
967$borough_number{'1349'} = '0219'; $type{'1349'} = 'ST'; $location{'1349'} = 'RYKKINN';
968$borough_number{'1350'} = '0219'; $type{'1350'} = 'STBX'; $location{'1350'} = 'LOMMEDALEN';
969$borough_number{'1351'} = '0219'; $type{'1351'} = 'ST'; $location{'1351'} = 'RUD';
970$borough_number{'1352'} = '0219'; $type{'1352'} = 'ST'; $location{'1352'} = 'KOLS�S';
971$borough_number{'1353'} = '0219'; $type{'1353'} = 'ST'; $location{'1353'} = 'B�RUMS VERK';
972$borough_number{'1354'} = '0219'; $type{'1354'} = 'ST'; $location{'1354'} = 'B�RUMS VERK';
973$borough_number{'1356'} = '0219'; $type{'1356'} = 'ST'; $location{'1356'} = 'BEKKESTUA';
974$borough_number{'1357'} = '0219'; $type{'1357'} = 'ST'; $location{'1357'} = 'BEKKESTUA';
975$borough_number{'1358'} = '0219'; $type{'1358'} = 'ST'; $location{'1358'} = 'JAR';
976$borough_number{'1359'} = '0219'; $type{'1359'} = 'ST'; $location{'1359'} = 'EIKSMARKA';
977$borough_number{'1361'} = '0219'; $type{'1361'} = 'ST'; $location{'1361'} = '�STER�S';
978$borough_number{'1362'} = '0219'; $type{'1362'} = 'ST'; $location{'1362'} = 'HOSLE';
979$borough_number{'1363'} = '0219'; $type{'1363'} = 'ST'; $location{'1363'} = 'H�VIK';
980$borough_number{'1365'} = '0219'; $type{'1365'} = 'ST'; $location{'1365'} = 'BLOMMENHOLM';
981$borough_number{'1366'} = '0219'; $type{'1366'} = 'ST'; $location{'1366'} = 'LYSAKER';
982$borough_number{'1367'} = '0219'; $type{'1367'} = 'ST'; $location{'1367'} = 'SNAR�YA';
983$borough_number{'1368'} = '0219'; $type{'1368'} = 'ST'; $location{'1368'} = 'STABEKK';
984$borough_number{'1369'} = '0219'; $type{'1369'} = 'ST'; $location{'1369'} = 'STABEKK';
985$borough_number{'1371'} = '0220'; $type{'1371'} = 'BX'; $location{'1371'} = 'ASKER';
986$borough_number{'1372'} = '0220'; $type{'1372'} = 'BX'; $location{'1372'} = 'ASKER';
987$borough_number{'1373'} = '0220'; $type{'1373'} = 'BX'; $location{'1373'} = 'ASKER';
988$borough_number{'1375'} = '0220'; $type{'1375'} = 'BX'; $location{'1375'} = 'BILLINGSTAD';
989$borough_number{'1376'} = '0220'; $type{'1376'} = 'BX'; $location{'1376'} = 'BILLINGSTAD';
990$borough_number{'1377'} = '0220'; $type{'1377'} = 'BX'; $location{'1377'} = 'BILLINGSTAD';
991$borough_number{'1378'} = '0220'; $type{'1378'} = 'BX'; $location{'1378'} = 'NESBRU';
992$borough_number{'1379'} = '0220'; $type{'1379'} = 'BX'; $location{'1379'} = 'NESBRU';
993$borough_number{'1380'} = '0220'; $type{'1380'} = 'BX'; $location{'1380'} = 'HEGGEDAL';
994$borough_number{'1381'} = '0220'; $type{'1381'} = 'BX'; $location{'1381'} = 'VETTRE';
995$borough_number{'1383'} = '0220'; $type{'1383'} = 'ST'; $location{'1383'} = 'ASKER';
996$borough_number{'1384'} = '0220'; $type{'1384'} = 'ST'; $location{'1384'} = 'ASKER';
997$borough_number{'1385'} = '0220'; $type{'1385'} = 'ST'; $location{'1385'} = 'ASKER';
998$borough_number{'1386'} = '0220'; $type{'1386'} = 'ST'; $location{'1386'} = 'ASKER';
999$borough_number{'1387'} = '0220'; $type{'1387'} = 'ST'; $location{'1387'} = 'ASKER';
1000$borough_number{'1388'} = '0220'; $type{'1388'} = 'ST'; $location{'1388'} = 'BORGEN';
1001$borough_number{'1389'} = '0220'; $type{'1389'} = 'ST'; $location{'1389'} = 'HEGGEDAL';
1002$borough_number{'1390'} = '0220'; $type{'1390'} = 'ST'; $location{'1390'} = 'VOLLEN';
1003$borough_number{'1391'} = '0220'; $type{'1391'} = 'ST'; $location{'1391'} = 'VOLLEN';
1004$borough_number{'1392'} = '0220'; $type{'1392'} = 'ST'; $location{'1392'} = 'VETTRE';
1005$borough_number{'1393'} = '0220'; $type{'1393'} = 'BX'; $location{'1393'} = 'VOLLEN';
1006$borough_number{'1394'} = '0220'; $type{'1394'} = 'ST'; $location{'1394'} = 'NESBRU';
1007$borough_number{'1395'} = '0220'; $type{'1395'} = 'ST'; $location{'1395'} = 'HVALSTAD';
1008$borough_number{'1396'} = '0220'; $type{'1396'} = 'ST'; $location{'1396'} = 'BILLINGSTAD';
1009$borough_number{'1397'} = '0220'; $type{'1397'} = 'ST'; $location{'1397'} = 'NES�YA';
1010$borough_number{'1399'} = '0220'; $type{'1399'} = 'BX'; $location{'1399'} = 'ASKER';
1011$borough_number{'1400'} = '0213'; $type{'1400'} = 'ST'; $location{'1400'} = 'SKI';
1012$borough_number{'1401'} = '0213'; $type{'1401'} = 'BX'; $location{'1401'} = 'SKI';
1013$borough_number{'1402'} = '0213'; $type{'1402'} = 'BX'; $location{'1402'} = 'SKI';
1014$borough_number{'1403'} = '0213'; $type{'1403'} = 'BX'; $location{'1403'} = 'LANGHUS';
1015$borough_number{'1404'} = '0213'; $type{'1404'} = 'STBX'; $location{'1404'} = 'SIGGERUD';
1016$borough_number{'1405'} = '0213'; $type{'1405'} = 'ST'; $location{'1405'} = 'LANGHUS';
1017$borough_number{'1406'} = '0213'; $type{'1406'} = 'ST'; $location{'1406'} = 'SKI';
1018$borough_number{'1407'} = '0214'; $type{'1407'} = 'STBX'; $location{'1407'} = 'VINTERBRO';
1019$borough_number{'1408'} = '0213'; $type{'1408'} = 'ST'; $location{'1408'} = 'KR�KSTAD';
1020$borough_number{'1409'} = '0213'; $type{'1409'} = 'ST'; $location{'1409'} = 'SKOTBU';
1021$borough_number{'1410'} = '0217'; $type{'1410'} = 'ST'; $location{'1410'} = 'KOLBOTN';
1022$borough_number{'1411'} = '0217'; $type{'1411'} = 'BX'; $location{'1411'} = 'KOLBOTN';
1023$borough_number{'1412'} = '0217'; $type{'1412'} = 'ST'; $location{'1412'} = 'SOFIEMYR';
1024$borough_number{'1413'} = '0217'; $type{'1413'} = 'STBX'; $location{'1413'} = 'T�RN�SEN';
1025$borough_number{'1414'} = '0217'; $type{'1414'} = 'ST'; $location{'1414'} = 'TROLL�SEN';
1026$borough_number{'1415'} = '0217'; $type{'1415'} = 'ST'; $location{'1415'} = 'OPPEG�RD';
1027$borough_number{'1416'} = '0217'; $type{'1416'} = 'BX'; $location{'1416'} = 'OPPEG�RD';
1028$borough_number{'1417'} = '0217'; $type{'1417'} = 'BX'; $location{'1417'} = 'SOFIEMYR';
1029$borough_number{'1419'} = '0217'; $type{'1419'} = 'BX'; $location{'1419'} = 'OPPEG�RD';
1030$borough_number{'1420'} = '0217'; $type{'1420'} = 'ST'; $location{'1420'} = 'SVARTSKOG';
1031$borough_number{'1421'} = '0217'; $type{'1421'} = 'BX'; $location{'1421'} = 'TROLL�SEN';
1032$borough_number{'1430'} = '0214'; $type{'1430'} = 'ST'; $location{'1430'} = '�S';
1033$borough_number{'1431'} = '0214'; $type{'1431'} = 'BX'; $location{'1431'} = '�S';
1034$borough_number{'1432'} = '0214'; $type{'1432'} = 'MU'; $location{'1432'} = '�S';
1035$borough_number{'1440'} = '0215'; $type{'1440'} = 'ST'; $location{'1440'} = 'DR�BAK';
1036$borough_number{'1441'} = '0215'; $type{'1441'} = 'BX'; $location{'1441'} = 'DR�BAK';
1037$borough_number{'1442'} = '0215'; $type{'1442'} = 'BX'; $location{'1442'} = 'DR�BAK';
1038$borough_number{'1443'} = '0215'; $type{'1443'} = 'ST'; $location{'1443'} = 'OSCARSBORG';
1039$borough_number{'1444'} = '0215'; $type{'1444'} = 'IO'; $location{'1444'} = 'SKIPHELLE';
1040$borough_number{'1445'} = '0215'; $type{'1445'} = 'ST'; $location{'1445'} = 'HEER';
1041$borough_number{'1450'} = '0216'; $type{'1450'} = 'ST'; $location{'1450'} = 'NESODDTANGEN';
1042$borough_number{'1451'} = '0216'; $type{'1451'} = 'BX'; $location{'1451'} = 'NESODDTANGEN';
1043$borough_number{'1453'} = '0216'; $type{'1453'} = 'ST'; $location{'1453'} = 'BJ�RNEMYR';
1044$borough_number{'1454'} = '0216'; $type{'1454'} = 'STBX'; $location{'1454'} = 'FAGERSTRAND';
1045$borough_number{'1455'} = '0215'; $type{'1455'} = 'ST'; $location{'1455'} = 'NORDRE FROGN';
1046$borough_number{'1458'} = '0216'; $type{'1458'} = 'ST'; $location{'1458'} = 'FJELLSTRAND';
1047$borough_number{'1459'} = '0216'; $type{'1459'} = 'BX'; $location{'1459'} = 'FJELLSTRAND';
1048$borough_number{'1470'} = '0230'; $type{'1470'} = 'ST'; $location{'1470'} = 'L�RENSKOG';
1049$borough_number{'1471'} = '0230'; $type{'1471'} = 'BX'; $location{'1471'} = 'L�RENSKOG';
1050$borough_number{'1472'} = '0230'; $type{'1472'} = 'ST'; $location{'1472'} = 'FJELLHAMAR';
1051$borough_number{'1473'} = '0230'; $type{'1473'} = 'ST'; $location{'1473'} = 'L�RENSKOG';
1052$borough_number{'1474'} = '0230'; $type{'1474'} = 'ST'; $location{'1474'} = 'NORDBYHAGEN';
1053$borough_number{'1475'} = '0230'; $type{'1475'} = 'STBX'; $location{'1475'} = 'FINSTADJORDET';
1054$borough_number{'1476'} = '0230'; $type{'1476'} = 'STBX'; $location{'1476'} = 'RASTA';
1055$borough_number{'1477'} = '0230'; $type{'1477'} = 'BX'; $location{'1477'} = 'FJELLHAMAR';
1056$borough_number{'1478'} = '0230'; $type{'1478'} = 'IO'; $location{'1478'} = 'L�RENSKOG';
1057$borough_number{'1480'} = '0233'; $type{'1480'} = 'ST'; $location{'1480'} = 'SLATTUM';
1058$borough_number{'1481'} = '0233'; $type{'1481'} = 'ST'; $location{'1481'} = 'HAGAN';
1059$borough_number{'1482'} = '0233'; $type{'1482'} = 'STBX'; $location{'1482'} = 'NITTEDAL';
1060$borough_number{'1483'} = '0233'; $type{'1483'} = 'BX'; $location{'1483'} = 'SKYTTA';
1061$borough_number{'1484'} = '0233'; $type{'1484'} = 'ST'; $location{'1484'} = 'HAKADAL';
1062$borough_number{'1485'} = '0233'; $type{'1485'} = 'BX'; $location{'1485'} = 'HAKADAL';
1063$borough_number{'1487'} = '0233'; $type{'1487'} = 'STBX'; $location{'1487'} = 'HAKADAL';
1064$borough_number{'1488'} = '0233'; $type{'1488'} = 'ST'; $location{'1488'} = 'HAKADAL';
1065$borough_number{'1501'} = '0104'; $type{'1501'} = 'BX'; $location{'1501'} = 'MOSS';
1066$borough_number{'1502'} = '0104'; $type{'1502'} = 'BX'; $location{'1502'} = 'MOSS';
1067$borough_number{'1503'} = '0104'; $type{'1503'} = 'BX'; $location{'1503'} = 'MOSS';
1068$borough_number{'1506'} = '0104'; $type{'1506'} = 'BX'; $location{'1506'} = 'MOSS';
1069$borough_number{'1509'} = '0104'; $type{'1509'} = 'BX'; $location{'1509'} = 'MOSS';
1070$borough_number{'1510'} = '0104'; $type{'1510'} = 'BX'; $location{'1510'} = 'MOSS';
1071$borough_number{'1511'} = '0104'; $type{'1511'} = 'ST'; $location{'1511'} = 'MOSS';
1072$borough_number{'1512'} = '0104'; $type{'1512'} = 'ST'; $location{'1512'} = 'MOSS';
1073$borough_number{'1513'} = '0104'; $type{'1513'} = 'ST'; $location{'1513'} = 'MOSS';
1074$borough_number{'1514'} = '0104'; $type{'1514'} = 'ST'; $location{'1514'} = 'MOSS';
1075$borough_number{'1515'} = '0104'; $type{'1515'} = 'ST'; $location{'1515'} = 'MOSS';
1076$borough_number{'1516'} = '0104'; $type{'1516'} = 'ST'; $location{'1516'} = 'MOSS';
1077$borough_number{'1517'} = '0104'; $type{'1517'} = 'ST'; $location{'1517'} = 'MOSS';
1078$borough_number{'1518'} = '0104'; $type{'1518'} = 'ST'; $location{'1518'} = 'MOSS';
1079$borough_number{'1519'} = '0104'; $type{'1519'} = 'ST'; $location{'1519'} = 'MOSS';
1080$borough_number{'1520'} = '0136'; $type{'1520'} = 'BX'; $location{'1520'} = 'MOSS';
1081$borough_number{'1521'} = '0136'; $type{'1521'} = 'BX'; $location{'1521'} = 'MOSS';
1082$borough_number{'1522'} = '0136'; $type{'1522'} = 'BX'; $location{'1522'} = 'MOSS';
1083$borough_number{'1523'} = '0104'; $type{'1523'} = 'ST'; $location{'1523'} = 'MOSS';
1084$borough_number{'1524'} = '0104'; $type{'1524'} = 'ST'; $location{'1524'} = 'MOSS';
1085$borough_number{'1525'} = '0136'; $type{'1525'} = 'ST'; $location{'1525'} = 'MOSS';
1086$borough_number{'1526'} = '0136'; $type{'1526'} = 'ST'; $location{'1526'} = 'MOSS';
1087$borough_number{'1528'} = '0136'; $type{'1528'} = 'ST'; $location{'1528'} = 'MOSS';
1088$borough_number{'1529'} = '0136'; $type{'1529'} = 'ST'; $location{'1529'} = 'MOSS';
1089$borough_number{'1530'} = '0104'; $type{'1530'} = 'ST'; $location{'1530'} = 'MOSS';
1090$borough_number{'1531'} = '0104'; $type{'1531'} = 'ST'; $location{'1531'} = 'MOSS';
1091$borough_number{'1532'} = '0104'; $type{'1532'} = 'ST'; $location{'1532'} = 'MOSS';
1092$borough_number{'1533'} = '0104'; $type{'1533'} = 'ST'; $location{'1533'} = 'MOSS';
1093$borough_number{'1534'} = '0104'; $type{'1534'} = 'ST'; $location{'1534'} = 'MOSS';
1094$borough_number{'1535'} = '0104'; $type{'1535'} = 'ST'; $location{'1535'} = 'MOSS';
1095$borough_number{'1536'} = '0104'; $type{'1536'} = 'ST'; $location{'1536'} = 'MOSS';
1096$borough_number{'1537'} = '0104'; $type{'1537'} = 'ST'; $location{'1537'} = 'MOSS';
1097$borough_number{'1538'} = '0104'; $type{'1538'} = 'ST'; $location{'1538'} = 'MOSS';
1098$borough_number{'1539'} = '0104'; $type{'1539'} = 'ST'; $location{'1539'} = 'MOSS';
1099$borough_number{'1540'} = '0211'; $type{'1540'} = 'ST'; $location{'1540'} = 'VESTBY';
1100$borough_number{'1541'} = '0211'; $type{'1541'} = 'BX'; $location{'1541'} = 'VESTBY';
1101$borough_number{'1545'} = '0211'; $type{'1545'} = 'ST'; $location{'1545'} = 'HVITSTEN';
1102$borough_number{'1550'} = '0211'; $type{'1550'} = 'STBX'; $location{'1550'} = 'H�LEN';
1103$borough_number{'1555'} = '0211'; $type{'1555'} = 'ST'; $location{'1555'} = 'SON';
1104$borough_number{'1556'} = '0211'; $type{'1556'} = 'BX'; $location{'1556'} = 'SON';
1105$borough_number{'1560'} = '0136'; $type{'1560'} = 'STBX'; $location{'1560'} = 'LARKOLLEN';
1106$borough_number{'1570'} = '0136'; $type{'1570'} = 'ST'; $location{'1570'} = 'DILLING';
1107$borough_number{'1580'} = '0136'; $type{'1580'} = 'ST'; $location{'1580'} = 'RYGGE';
1108$borough_number{'1581'} = '0136'; $type{'1581'} = 'BX'; $location{'1581'} = 'RYGGE';
1109$borough_number{'1590'} = '0136'; $type{'1590'} = 'IO'; $location{'1590'} = 'RYGGE FLYSTASJON';
1110$borough_number{'1591'} = '0137'; $type{'1591'} = 'ST'; $location{'1591'} = 'SPERREBOTN';
1111$borough_number{'1592'} = '0137'; $type{'1592'} = 'STBX'; $location{'1592'} = 'V�LER I �STFOLD';
1112$borough_number{'1593'} = '0137'; $type{'1593'} = 'STBX'; $location{'1593'} = 'SVINNDAL';
1113$borough_number{'1596'} = '0104'; $type{'1596'} = 'ST'; $location{'1596'} = 'MOSS';
1114$borough_number{'1597'} = '0104'; $type{'1597'} = 'ST'; $location{'1597'} = 'MOSS';
1115$borough_number{'1598'} = '0104'; $type{'1598'} = 'ST'; $location{'1598'} = 'MOSS';
1116$borough_number{'1599'} = '0104'; $type{'1599'} = 'ST'; $location{'1599'} = 'MOSS';
1117$borough_number{'1601'} = '0106'; $type{'1601'} = 'BX'; $location{'1601'} = 'FREDRIKSTAD';
1118$borough_number{'1602'} = '0106'; $type{'1602'} = 'SX'; $location{'1602'} = 'FREDRIKSTAD';
1119$borough_number{'1603'} = '0106'; $type{'1603'} = 'IO'; $location{'1603'} = 'FREDRIKSTAD';
1120$borough_number{'1604'} = '0106'; $type{'1604'} = 'ST'; $location{'1604'} = 'FREDRIKSTAD';
1121$borough_number{'1605'} = '0106'; $type{'1605'} = 'ST'; $location{'1605'} = 'FREDRIKSTAD';
1122$borough_number{'1606'} = '0106'; $type{'1606'} = 'ST'; $location{'1606'} = 'FREDRIKSTAD';
1123$borough_number{'1607'} = '0106'; $type{'1607'} = 'ST'; $location{'1607'} = 'FREDRIKSTAD';
1124$borough_number{'1608'} = '0106'; $type{'1608'} = 'ST'; $location{'1608'} = 'FREDRIKSTAD';
1125$borough_number{'1609'} = '0106'; $type{'1609'} = 'BX'; $location{'1609'} = 'FREDRIKSTAD';
1126$borough_number{'1610'} = '0106'; $type{'1610'} = 'ST'; $location{'1610'} = 'FREDRIKSTAD';
1127$borough_number{'1612'} = '0106'; $type{'1612'} = 'BX'; $location{'1612'} = 'FREDRIKSTAD';
1128$borough_number{'1613'} = '0106'; $type{'1613'} = 'ST'; $location{'1613'} = 'FREDRIKSTAD';
1129$borough_number{'1614'} = '0106'; $type{'1614'} = 'ST'; $location{'1614'} = 'FREDRIKSTAD';
1130$borough_number{'1615'} = '0106'; $type{'1615'} = 'ST'; $location{'1615'} = 'FREDRIKSTAD';
1131$borough_number{'1616'} = '0106'; $type{'1616'} = 'BX'; $location{'1616'} = 'FREDRIKSTAD';
1132$borough_number{'1617'} = '0106'; $type{'1617'} = 'ST'; $location{'1617'} = 'FREDRIKSTAD';
1133$borough_number{'1618'} = '0106'; $type{'1618'} = 'ST'; $location{'1618'} = 'FREDRIKSTAD';
1134$borough_number{'1619'} = '0106'; $type{'1619'} = 'ST'; $location{'1619'} = 'FREDRIKSTAD';
1135$borough_number{'1620'} = '0106'; $type{'1620'} = 'BX'; $location{'1620'} = 'GRESSVIK';
1136$borough_number{'1621'} = '0106'; $type{'1621'} = 'STBX'; $location{'1621'} = 'GRESSVIK';
1137$borough_number{'1624'} = '0106'; $type{'1624'} = 'ST'; $location{'1624'} = 'GRESSVIK';
1138$borough_number{'1625'} = '0106'; $type{'1625'} = 'BX'; $location{'1625'} = 'MANSTAD';
1139$borough_number{'1626'} = '0106'; $type{'1626'} = 'ST'; $location{'1626'} = 'MANSTAD';
1140$borough_number{'1628'} = '0106'; $type{'1628'} = 'ST'; $location{'1628'} = 'ENGELSVIKEN';
1141$borough_number{'1629'} = '0106'; $type{'1629'} = 'BX'; $location{'1629'} = 'GAMLE FREDRIKSTAD';
1142$borough_number{'1630'} = '0106'; $type{'1630'} = 'ST'; $location{'1630'} = 'GAMLE FREDRIKSTAD';
1143$borough_number{'1632'} = '0106'; $type{'1632'} = 'ST'; $location{'1632'} = 'GAMLE FREDRIKSTAD';
1144$borough_number{'1633'} = '0106'; $type{'1633'} = 'ST'; $location{'1633'} = 'GAMLE FREDRIKSTAD';
1145$borough_number{'1634'} = '0106'; $type{'1634'} = 'ST'; $location{'1634'} = 'GAMLE FREDRIKSTAD';
1146$borough_number{'1636'} = '0106'; $type{'1636'} = 'ST'; $location{'1636'} = 'GAMLE FREDRIKSTAD';
1147$borough_number{'1637'} = '0106'; $type{'1637'} = 'ST'; $location{'1637'} = 'GAMLE FREDRIKSTAD';
1148$borough_number{'1638'} = '0106'; $type{'1638'} = 'BX'; $location{'1638'} = 'GAMLE FREDRIKSTAD';
1149$borough_number{'1639'} = '0106'; $type{'1639'} = 'ST'; $location{'1639'} = 'GAMLE FREDRIKSTAD';
1150$borough_number{'1640'} = '0135'; $type{'1640'} = 'ST'; $location{'1640'} = 'R�DE';
1151$borough_number{'1641'} = '0135'; $type{'1641'} = 'BX'; $location{'1641'} = 'R�DE';
1152$borough_number{'1642'} = '0135'; $type{'1642'} = 'STBX'; $location{'1642'} = 'SALTNES';
1153$borough_number{'1650'} = '0106'; $type{'1650'} = 'BX'; $location{'1650'} = 'SELLEBAKK';
1154$borough_number{'1651'} = '0106'; $type{'1651'} = 'ST'; $location{'1651'} = 'SELLEBAKK';
1155$borough_number{'1653'} = '0106'; $type{'1653'} = 'ST'; $location{'1653'} = 'SELLEBAKK';
1156$borough_number{'1654'} = '0106'; $type{'1654'} = 'ST'; $location{'1654'} = 'SELLEBAKK';
1157$borough_number{'1655'} = '0106'; $type{'1655'} = 'ST'; $location{'1655'} = 'SELLEBAKK';
1158$borough_number{'1657'} = '0106'; $type{'1657'} = 'ST'; $location{'1657'} = 'TORP';
1159$borough_number{'1658'} = '0106'; $type{'1658'} = 'ST'; $location{'1658'} = 'TORP';
1160$borough_number{'1659'} = '0106'; $type{'1659'} = 'ST'; $location{'1659'} = 'TORP';
1161$borough_number{'1661'} = '0106'; $type{'1661'} = 'ST'; $location{'1661'} = 'ROLVS�Y';
1162$borough_number{'1662'} = '0106'; $type{'1662'} = 'BX'; $location{'1662'} = 'ROLVS�Y';
1163$borough_number{'1663'} = '0106'; $type{'1663'} = 'ST'; $location{'1663'} = 'ROLVS�Y';
1164$borough_number{'1664'} = '0106'; $type{'1664'} = 'ST'; $location{'1664'} = 'ROLVS�Y';
1165$borough_number{'1665'} = '0106'; $type{'1665'} = 'ST'; $location{'1665'} = 'ROLVS�Y';
1166$borough_number{'1666'} = '0106'; $type{'1666'} = 'ST'; $location{'1666'} = 'ROLVS�Y';
1167$borough_number{'1667'} = '0106'; $type{'1667'} = 'ST'; $location{'1667'} = 'ROLVS�Y';
1168$borough_number{'1670'} = '0106'; $type{'1670'} = 'BX'; $location{'1670'} = 'KR�KER�Y';
1169$borough_number{'1671'} = '0106'; $type{'1671'} = 'ST'; $location{'1671'} = 'KR�KER�Y';
1170$borough_number{'1672'} = '0106'; $type{'1672'} = 'ST'; $location{'1672'} = 'KR�KER�Y';
1171$borough_number{'1673'} = '0106'; $type{'1673'} = 'ST'; $location{'1673'} = 'KR�KER�Y';
1172$borough_number{'1675'} = '0106'; $type{'1675'} = 'ST'; $location{'1675'} = 'KR�KER�Y';
1173$borough_number{'1676'} = '0106'; $type{'1676'} = 'ST'; $location{'1676'} = 'KR�KER�Y';
1174$borough_number{'1678'} = '0106'; $type{'1678'} = 'ST'; $location{'1678'} = 'KR�KER�Y';
1175$borough_number{'1679'} = '0106'; $type{'1679'} = 'ST'; $location{'1679'} = 'KR�KER�Y';
1176$borough_number{'1680'} = '0111'; $type{'1680'} = 'ST'; $location{'1680'} = 'SKJ�RHALLEN';
1177$borough_number{'1682'} = '0111'; $type{'1682'} = 'BX'; $location{'1682'} = 'SKJ�RHALLEN';
1178$borough_number{'1683'} = '0111'; $type{'1683'} = 'BX'; $location{'1683'} = 'VESTER�Y';
1179$borough_number{'1684'} = '0111'; $type{'1684'} = 'ST'; $location{'1684'} = 'VESTER�Y';
1180$borough_number{'1690'} = '0111'; $type{'1690'} = 'ST'; $location{'1690'} = 'HERF�L';
1181$borough_number{'1692'} = '0111'; $type{'1692'} = 'ST'; $location{'1692'} = 'NEDG�RDEN';
1182$borough_number{'1701'} = '0105'; $type{'1701'} = 'BX'; $location{'1701'} = 'SARPSBORG';
1183$borough_number{'1702'} = '0105'; $type{'1702'} = 'BX'; $location{'1702'} = 'SARPSBORG';
1184$borough_number{'1703'} = '0105'; $type{'1703'} = 'BX'; $location{'1703'} = 'SARPSBORG';
1185$borough_number{'1704'} = '0105'; $type{'1704'} = 'BX'; $location{'1704'} = 'SARPSBORG';
1186$borough_number{'1705'} = '0105'; $type{'1705'} = 'BX'; $location{'1705'} = 'SARPSBORG';
1187$borough_number{'1706'} = '0105'; $type{'1706'} = 'ST'; $location{'1706'} = 'SARPSBORG';
1188$borough_number{'1707'} = '0105'; $type{'1707'} = 'ST'; $location{'1707'} = 'SARPSBORG';
1189$borough_number{'1708'} = '0105'; $type{'1708'} = 'ST'; $location{'1708'} = 'SARPSBORG';
1190$borough_number{'1709'} = '0105'; $type{'1709'} = 'ST'; $location{'1709'} = 'SARPSBORG';
1191$borough_number{'1710'} = '0105'; $type{'1710'} = 'ST'; $location{'1710'} = 'SARPSBORG';
1192$borough_number{'1711'} = '0105'; $type{'1711'} = 'ST'; $location{'1711'} = 'SARPSBORG';
1193$borough_number{'1712'} = '0105'; $type{'1712'} = 'ST'; $location{'1712'} = 'GR�LUM';
1194$borough_number{'1713'} = '0105'; $type{'1713'} = 'BX'; $location{'1713'} = 'GR�LUM';
1195$borough_number{'1714'} = '0105'; $type{'1714'} = 'SX'; $location{'1714'} = 'SARPSBORG';
1196$borough_number{'1715'} = '0105'; $type{'1715'} = 'ST'; $location{'1715'} = 'YVEN';
1197$borough_number{'1718'} = '0105'; $type{'1718'} = 'ST'; $location{'1718'} = 'GRE�KER';
1198$borough_number{'1719'} = '0105'; $type{'1719'} = 'ST'; $location{'1719'} = 'GRE�KER';
1199$borough_number{'1720'} = '0105'; $type{'1720'} = 'BX'; $location{'1720'} = 'GRE�KER';
1200$borough_number{'1721'} = '0105'; $type{'1721'} = 'ST'; $location{'1721'} = 'SARPSBORG';
1201$borough_number{'1722'} = '0105'; $type{'1722'} = 'ST'; $location{'1722'} = 'SARPSBORG';
1202$borough_number{'1723'} = '0105'; $type{'1723'} = 'ST'; $location{'1723'} = 'SARPSBORG';
1203$borough_number{'1724'} = '0105'; $type{'1724'} = 'ST'; $location{'1724'} = 'SARPSBORG';
1204$borough_number{'1725'} = '0105'; $type{'1725'} = 'ST'; $location{'1725'} = 'SARPSBORG';
1205$borough_number{'1726'} = '0105'; $type{'1726'} = 'ST'; $location{'1726'} = 'SARPSBORG';
1206$borough_number{'1727'} = '0105'; $type{'1727'} = 'ST'; $location{'1727'} = 'SARPSBORG';
1207$borough_number{'1730'} = '0105'; $type{'1730'} = 'STBX'; $location{'1730'} = 'ISE';
1208$borough_number{'1733'} = '0105'; $type{'1733'} = 'BX'; $location{'1733'} = 'HAFSLUNDS�Y';
1209$borough_number{'1734'} = '0105'; $type{'1734'} = 'ST'; $location{'1734'} = 'HAFSLUNDS�Y';
1210$borough_number{'1735'} = '0105'; $type{'1735'} = 'ST'; $location{'1735'} = 'VARTEIG';
1211$borough_number{'1738'} = '0105'; $type{'1738'} = 'ST'; $location{'1738'} = 'BORGENHAUGEN';
1212$borough_number{'1739'} = '0105'; $type{'1739'} = 'ST'; $location{'1739'} = 'BORGENHAUGEN';
1213$borough_number{'1740'} = '0105'; $type{'1740'} = 'BX'; $location{'1740'} = 'BORGENHAUGEN';
1214$borough_number{'1742'} = '0105'; $type{'1742'} = 'BX'; $location{'1742'} = 'KLAVESTADHAUGEN';
1215$borough_number{'1743'} = '0105'; $type{'1743'} = 'ST'; $location{'1743'} = 'KLAVESTADHAUGEN';
1216$borough_number{'1745'} = '0105'; $type{'1745'} = 'BX'; $location{'1745'} = 'SKJEBERG';
1217$borough_number{'1746'} = '0105'; $type{'1746'} = 'ST'; $location{'1746'} = 'SKJEBERG';
1218$borough_number{'1747'} = '0105'; $type{'1747'} = 'ST'; $location{'1747'} = 'SKJEBERG';
1219$borough_number{'1751'} = '0101'; $type{'1751'} = 'BX'; $location{'1751'} = 'HALDEN';
1220$borough_number{'1752'} = '0101'; $type{'1752'} = 'BX'; $location{'1752'} = 'HALDEN';
1221$borough_number{'1753'} = '0101'; $type{'1753'} = 'BX'; $location{'1753'} = 'HALDEN';
1222$borough_number{'1754'} = '0101'; $type{'1754'} = 'BX'; $location{'1754'} = 'HALDEN';
1223$borough_number{'1756'} = '0101'; $type{'1756'} = 'IO'; $location{'1756'} = 'HALDEN';
1224$borough_number{'1757'} = '0101'; $type{'1757'} = 'IO'; $location{'1757'} = 'HALDEN';
1225$borough_number{'1758'} = '0101'; $type{'1758'} = 'IO'; $location{'1758'} = 'HALDEN';
1226$borough_number{'1760'} = '0101'; $type{'1760'} = 'BX'; $location{'1760'} = 'HALDEN';
1227$borough_number{'1761'} = '0101'; $type{'1761'} = 'BX'; $location{'1761'} = 'HALDEN';
1228$borough_number{'1763'} = '0101'; $type{'1763'} = 'ST'; $location{'1763'} = 'HALDEN';
1229$borough_number{'1764'} = '0101'; $type{'1764'} = 'ST'; $location{'1764'} = 'HALDEN';
1230$borough_number{'1765'} = '0101'; $type{'1765'} = 'ST'; $location{'1765'} = 'HALDEN';
1231$borough_number{'1766'} = '0101'; $type{'1766'} = 'ST'; $location{'1766'} = 'HALDEN';
1232$borough_number{'1767'} = '0101'; $type{'1767'} = 'ST'; $location{'1767'} = 'HALDEN';
1233$borough_number{'1768'} = '0101'; $type{'1768'} = 'ST'; $location{'1768'} = 'HALDEN';
1234$borough_number{'1769'} = '0101'; $type{'1769'} = 'ST'; $location{'1769'} = 'HALDEN';
1235$borough_number{'1771'} = '0101'; $type{'1771'} = 'ST'; $location{'1771'} = 'HALDEN';
1236$borough_number{'1772'} = '0101'; $type{'1772'} = 'ST'; $location{'1772'} = 'HALDEN';
1237$borough_number{'1776'} = '0101'; $type{'1776'} = 'ST'; $location{'1776'} = 'HALDEN';
1238$borough_number{'1777'} = '0101'; $type{'1777'} = 'ST'; $location{'1777'} = 'HALDEN';
1239$borough_number{'1778'} = '0101'; $type{'1778'} = 'ST'; $location{'1778'} = 'HALDEN';
1240$borough_number{'1779'} = '0101'; $type{'1779'} = 'ST'; $location{'1779'} = 'HALDEN';
1241$borough_number{'1781'} = '0101'; $type{'1781'} = 'ST'; $location{'1781'} = 'HALDEN';
1242$borough_number{'1782'} = '0101'; $type{'1782'} = 'ST'; $location{'1782'} = 'HALDEN';
1243$borough_number{'1783'} = '0101'; $type{'1783'} = 'ST'; $location{'1783'} = 'HALDEN';
1244$borough_number{'1784'} = '0101'; $type{'1784'} = 'ST'; $location{'1784'} = 'HALDEN';
1245$borough_number{'1785'} = '0101'; $type{'1785'} = 'ST'; $location{'1785'} = 'HALDEN';
1246$borough_number{'1786'} = '0101'; $type{'1786'} = 'ST'; $location{'1786'} = 'HALDEN';
1247$borough_number{'1787'} = '0101'; $type{'1787'} = 'BX'; $location{'1787'} = 'BERG I �STFOLD';
1248$borough_number{'1788'} = '0101'; $type{'1788'} = 'ST'; $location{'1788'} = 'BERG I �STFOLD';
1249$borough_number{'1789'} = '0101'; $type{'1789'} = 'ST'; $location{'1789'} = 'BERG I �STFOLD';
1250$borough_number{'1790'} = '0101'; $type{'1790'} = 'BX'; $location{'1790'} = 'TISTEDAL';
1251$borough_number{'1791'} = '0101'; $type{'1791'} = 'ST'; $location{'1791'} = 'TISTEDAL';
1252$borough_number{'1792'} = '0101'; $type{'1792'} = 'ST'; $location{'1792'} = 'TISTEDAL';
1253$borough_number{'1793'} = '0101'; $type{'1793'} = 'ST'; $location{'1793'} = 'TISTEDAL';
1254$borough_number{'1794'} = '0101'; $type{'1794'} = 'ST'; $location{'1794'} = 'SPONVIKA';
1255$borough_number{'1796'} = '0101'; $type{'1796'} = 'ST'; $location{'1796'} = 'KORNSJ�';
1256$borough_number{'1798'} = '0118'; $type{'1798'} = 'ST'; $location{'1798'} = 'AREMARK';
1257$borough_number{'1799'} = '0118'; $type{'1799'} = 'BX'; $location{'1799'} = 'AREMARK';
1258$borough_number{'1801'} = '0124'; $type{'1801'} = 'BX'; $location{'1801'} = 'ASKIM';
1259$borough_number{'1802'} = '0124'; $type{'1802'} = 'BX'; $location{'1802'} = 'ASKIM';
1260$borough_number{'1803'} = '0124'; $type{'1803'} = 'BX'; $location{'1803'} = 'ASKIM';
1261$borough_number{'1804'} = '0123'; $type{'1804'} = 'BX'; $location{'1804'} = 'SPYDEBERG';
1262$borough_number{'1805'} = '0138'; $type{'1805'} = 'BX'; $location{'1805'} = 'TOMTER';
1263$borough_number{'1806'} = '0127'; $type{'1806'} = 'BX'; $location{'1806'} = 'SKIPTVET';
1264$borough_number{'1807'} = '0124'; $type{'1807'} = 'ST'; $location{'1807'} = 'ASKIM';
1265$borough_number{'1808'} = '0124'; $type{'1808'} = 'ST'; $location{'1808'} = 'ASKIM';
1266$borough_number{'1809'} = '0124'; $type{'1809'} = 'ST'; $location{'1809'} = 'ASKIM';
1267$borough_number{'1811'} = '0124'; $type{'1811'} = 'ST'; $location{'1811'} = 'ASKIM';
1268$borough_number{'1812'} = '0124'; $type{'1812'} = 'ST'; $location{'1812'} = 'ASKIM';
1269$borough_number{'1813'} = '0124'; $type{'1813'} = 'ST'; $location{'1813'} = 'ASKIM';
1270$borough_number{'1814'} = '0124'; $type{'1814'} = 'ST'; $location{'1814'} = 'ASKIM';
1271$borough_number{'1815'} = '0124'; $type{'1815'} = 'ST'; $location{'1815'} = 'ASKIM';
1272$borough_number{'1816'} = '0127'; $type{'1816'} = 'ST'; $location{'1816'} = 'SKIPTVET';
1273$borough_number{'1820'} = '0123'; $type{'1820'} = 'ST'; $location{'1820'} = 'SPYDEBERG';
1274$borough_number{'1823'} = '0138'; $type{'1823'} = 'ST'; $location{'1823'} = 'KNAPSTAD';
1275$borough_number{'1825'} = '0138'; $type{'1825'} = 'ST'; $location{'1825'} = 'TOMTER';
1276$borough_number{'1827'} = '0138'; $type{'1827'} = 'STBX'; $location{'1827'} = 'HOB�L';
1277$borough_number{'1830'} = '0124'; $type{'1830'} = 'ST'; $location{'1830'} = 'ASKIM';
1278$borough_number{'1831'} = '0124'; $type{'1831'} = 'ST'; $location{'1831'} = 'ASKIM';
1279$borough_number{'1832'} = '0124'; $type{'1832'} = 'ST'; $location{'1832'} = 'ASKIM';
1280$borough_number{'1850'} = '0125'; $type{'1850'} = 'ST'; $location{'1850'} = 'MYSEN';
1281$borough_number{'1851'} = '0125'; $type{'1851'} = 'BX'; $location{'1851'} = 'MYSEN';
1282$borough_number{'1859'} = '0125'; $type{'1859'} = 'ST'; $location{'1859'} = 'SLITU';
1283$borough_number{'1860'} = '0122'; $type{'1860'} = 'ST'; $location{'1860'} = 'TR�GSTAD';
1284$borough_number{'1861'} = '0122'; $type{'1861'} = 'BX'; $location{'1861'} = 'TR�GSTAD';
1285$borough_number{'1866'} = '0122'; $type{'1866'} = 'ST'; $location{'1866'} = 'B�STAD';
1286$borough_number{'1867'} = '0122'; $type{'1867'} = 'BX'; $location{'1867'} = 'B�STAD';
1287$borough_number{'1870'} = '0119'; $type{'1870'} = 'ST'; $location{'1870'} = '�RJE';
1288$borough_number{'1871'} = '0119'; $type{'1871'} = 'BX'; $location{'1871'} = '�RJE';
1289$borough_number{'1875'} = '0119'; $type{'1875'} = 'ST'; $location{'1875'} = 'OTTEID';
1290$borough_number{'1878'} = '0125'; $type{'1878'} = 'ST'; $location{'1878'} = 'H�RLAND';
1291$borough_number{'1880'} = '0125'; $type{'1880'} = 'ST'; $location{'1880'} = 'EIDSBERG';
1292$borough_number{'1890'} = '0128'; $type{'1890'} = 'ST'; $location{'1890'} = 'RAKKESTAD';
1293$borough_number{'1891'} = '0128'; $type{'1891'} = 'BX'; $location{'1891'} = 'RAKKESTAD';
1294$borough_number{'1892'} = '0128'; $type{'1892'} = 'ST'; $location{'1892'} = 'DEGERNES';
1295$borough_number{'1893'} = '0128'; $type{'1893'} = 'BX'; $location{'1893'} = 'DEGERNES';
1296$borough_number{'1900'} = '0227'; $type{'1900'} = 'ST'; $location{'1900'} = 'FETSUND';
1297$borough_number{'1901'} = '0227'; $type{'1901'} = 'BX'; $location{'1901'} = 'FETSUND';
1298$borough_number{'1903'} = '0227'; $type{'1903'} = 'ST'; $location{'1903'} = 'GAN';
1299$borough_number{'1910'} = '0227'; $type{'1910'} = 'ST'; $location{'1910'} = 'ENEBAKKNESET';
1300$borough_number{'1911'} = '0229'; $type{'1911'} = 'STBX'; $location{'1911'} = 'FLATEBY';
1301$borough_number{'1912'} = '0229'; $type{'1912'} = 'STBX'; $location{'1912'} = 'ENEBAKK';
1302$borough_number{'1914'} = '0229'; $type{'1914'} = 'STBX'; $location{'1914'} = 'YTRE ENEBAKK';
1303$borough_number{'1920'} = '0226'; $type{'1920'} = 'ST'; $location{'1920'} = 'S�RUMSAND';
1304$borough_number{'1921'} = '0226'; $type{'1921'} = 'BX'; $location{'1921'} = 'S�RUMSAND';
1305$borough_number{'1923'} = '0226'; $type{'1923'} = 'STBX'; $location{'1923'} = 'S�RUM';
1306$borough_number{'1925'} = '0226'; $type{'1925'} = 'ST'; $location{'1925'} = 'BLAKER';
1307$borough_number{'1927'} = '0226'; $type{'1927'} = 'ST'; $location{'1927'} = 'R�N�SFOSS';
1308$borough_number{'1929'} = '0236'; $type{'1929'} = 'STBX'; $location{'1929'} = 'AULI';
1309$borough_number{'1930'} = '0221'; $type{'1930'} = 'STBX'; $location{'1930'} = 'AURSKOG';
1310$borough_number{'1940'} = '0221'; $type{'1940'} = 'ST'; $location{'1940'} = 'BJ�RKELANGEN';
1311$borough_number{'1941'} = '0221'; $type{'1941'} = 'BX'; $location{'1941'} = 'BJ�RKELANGEN';
1312$borough_number{'1950'} = '0121'; $type{'1950'} = 'ST'; $location{'1950'} = 'R�MSKOG';
1313$borough_number{'1954'} = '0221'; $type{'1954'} = 'ST'; $location{'1954'} = 'SETSKOG';
1314$borough_number{'1960'} = '0221'; $type{'1960'} = 'STBX'; $location{'1960'} = 'L�KEN';
1315$borough_number{'1963'} = '0221'; $type{'1963'} = 'ST'; $location{'1963'} = 'FOSSER';
1316$borough_number{'1970'} = '0221'; $type{'1970'} = 'STBX'; $location{'1970'} = 'HEMNES';
1317$borough_number{'2000'} = '0231'; $type{'2000'} = 'ST'; $location{'2000'} = 'LILLESTR�M';
1318$borough_number{'2001'} = '0231'; $type{'2001'} = 'BX'; $location{'2001'} = 'LILLESTR�M';
1319$borough_number{'2003'} = '0231'; $type{'2003'} = 'ST'; $location{'2003'} = 'LILLESTR�M';
1320$borough_number{'2004'} = '0231'; $type{'2004'} = 'ST'; $location{'2004'} = 'LILLESTR�M';
1321$borough_number{'2005'} = '0228'; $type{'2005'} = 'STBX'; $location{'2005'} = 'R�LINGEN';
1322$borough_number{'2006'} = '0228'; $type{'2006'} = 'STBX'; $location{'2006'} = 'L�VENSTAD';
1323$borough_number{'2007'} = '0231'; $type{'2007'} = 'ST'; $location{'2007'} = 'KJELLER';
1324$borough_number{'2008'} = '0228'; $type{'2008'} = 'ST'; $location{'2008'} = 'FJERDINGBY';
1325$borough_number{'2009'} = '0228'; $type{'2009'} = 'ST'; $location{'2009'} = 'NORDBY';
1326$borough_number{'2010'} = '0231'; $type{'2010'} = 'ST'; $location{'2010'} = 'STR�MMEN';
1327$borough_number{'2011'} = '0231'; $type{'2011'} = 'BX'; $location{'2011'} = 'STR�MMEN';
1328$borough_number{'2012'} = '0231'; $type{'2012'} = 'BX'; $location{'2012'} = 'LILLESTR�M';
1329$borough_number{'2013'} = '0231'; $type{'2013'} = 'ST'; $location{'2013'} = 'SKJETTEN';
1330$borough_number{'2014'} = '0228'; $type{'2014'} = 'ST'; $location{'2014'} = 'BLYSTADLIA';
1331$borough_number{'2015'} = '0231'; $type{'2015'} = 'ST'; $location{'2015'} = 'LEIRSUND';
1332$borough_number{'2016'} = '0226'; $type{'2016'} = 'STBX'; $location{'2016'} = 'FROGNER';
1333$borough_number{'2019'} = '0231'; $type{'2019'} = 'ST'; $location{'2019'} = 'SKEDSMOKORSET';
1334$borough_number{'2020'} = '0231'; $type{'2020'} = 'ST'; $location{'2020'} = 'SKEDSMOKORSET';
1335$borough_number{'2021'} = '0231'; $type{'2021'} = 'BX'; $location{'2021'} = 'SKEDSMOKORSET';
1336$borough_number{'2022'} = '0234'; $type{'2022'} = 'ST'; $location{'2022'} = 'GJERDRUM';
1337$borough_number{'2024'} = '0234'; $type{'2024'} = 'BX'; $location{'2024'} = 'GJERDRUM';
1338$borough_number{'2025'} = '0228'; $type{'2025'} = 'BX'; $location{'2025'} = 'FJERDINGBY';
1339$borough_number{'2026'} = '0231'; $type{'2026'} = 'BX'; $location{'2026'} = 'SKJETTEN';
1340$borough_number{'2027'} = '0231'; $type{'2027'} = 'BX'; $location{'2027'} = 'KJELLER';
1341$borough_number{'2030'} = '0238'; $type{'2030'} = 'ST'; $location{'2030'} = 'NANNESTAD';
1342$borough_number{'2031'} = '0238'; $type{'2031'} = 'BX'; $location{'2031'} = 'NANNESTAD';
1343$borough_number{'2032'} = '0238'; $type{'2032'} = 'STBX'; $location{'2032'} = 'MAURA';
1344$borough_number{'2033'} = '0238'; $type{'2033'} = 'ST'; $location{'2033'} = '�SGREINA';
1345$borough_number{'2034'} = '0238'; $type{'2034'} = 'STBX'; $location{'2034'} = 'HOLTER';
1346$borough_number{'2040'} = '0235'; $type{'2040'} = 'ST'; $location{'2040'} = 'KL�FTA';
1347$borough_number{'2041'} = '0235'; $type{'2041'} = 'BX'; $location{'2041'} = 'KL�FTA';
1348$borough_number{'2050'} = '0235'; $type{'2050'} = 'ST'; $location{'2050'} = 'JESSHEIM';
1349$borough_number{'2051'} = '0235'; $type{'2051'} = 'BX'; $location{'2051'} = 'JESSHEIM';
1350$borough_number{'2052'} = '0235'; $type{'2052'} = 'ST'; $location{'2052'} = 'JESSHEIM';
1351$borough_number{'2054'} = '0235'; $type{'2054'} = 'ST'; $location{'2054'} = 'MOGREINA';
1352$borough_number{'2055'} = '0235'; $type{'2055'} = 'ST'; $location{'2055'} = 'NORDKISA';
1353$borough_number{'2056'} = '0235'; $type{'2056'} = 'ST'; $location{'2056'} = 'ALGARHEIM';
1354$borough_number{'2057'} = '0235'; $type{'2057'} = 'BX'; $location{'2057'} = 'JESSHEIM';
1355$borough_number{'2058'} = '0235'; $type{'2058'} = 'IO'; $location{'2058'} = 'SESSVOLLMOEN';
1356$borough_number{'2059'} = '0235'; $type{'2059'} = 'IO'; $location{'2059'} = 'TRANDUM';
1357$borough_number{'2060'} = '0235'; $type{'2060'} = 'ST'; $location{'2060'} = 'GARDERMOEN';
1358$borough_number{'2061'} = '0235'; $type{'2061'} = 'BX'; $location{'2061'} = 'GARDERMOEN';
1359$borough_number{'2065'} = '0235'; $type{'2065'} = 'BX'; $location{'2065'} = 'GARDERMOEN';
1360$borough_number{'2070'} = '0237'; $type{'2070'} = 'ST'; $location{'2070'} = 'R�HOLT';
1361$borough_number{'2071'} = '0237'; $type{'2071'} = 'BX'; $location{'2071'} = 'R�HOLT';
1362$borough_number{'2072'} = '0237'; $type{'2072'} = 'ST'; $location{'2072'} = 'DAL';
1363$borough_number{'2073'} = '0237'; $type{'2073'} = 'ST'; $location{'2073'} = 'B�N';
1364$borough_number{'2074'} = '0237'; $type{'2074'} = 'ST'; $location{'2074'} = 'EIDSVOLL VERK';
1365$borough_number{'2076'} = '0237'; $type{'2076'} = 'BX'; $location{'2076'} = 'DAL';
1366$borough_number{'2080'} = '0237'; $type{'2080'} = 'ST'; $location{'2080'} = 'EIDSVOLL';
1367$borough_number{'2081'} = '0237'; $type{'2081'} = 'BX'; $location{'2081'} = 'EIDSVOLL';
1368$borough_number{'2090'} = '0239'; $type{'2090'} = 'ST'; $location{'2090'} = 'HURDAL';
1369$borough_number{'2091'} = '0239'; $type{'2091'} = 'BX'; $location{'2091'} = 'HURDAL';
1370$borough_number{'2092'} = '0237'; $type{'2092'} = 'STBX'; $location{'2092'} = 'MINNESUND';
1371$borough_number{'2093'} = '0237'; $type{'2093'} = 'ST'; $location{'2093'} = 'FEIRING';
1372$borough_number{'2100'} = '0419'; $type{'2100'} = 'ST'; $location{'2100'} = 'SKARNES';
1373$borough_number{'2101'} = '0419'; $type{'2101'} = 'BX'; $location{'2101'} = 'SKARNES';
1374$borough_number{'2110'} = '0419'; $type{'2110'} = 'ST'; $location{'2110'} = 'SL�STAD';
1375$borough_number{'2114'} = '0419'; $type{'2114'} = 'ST'; $location{'2114'} = 'DISEN�';
1376$borough_number{'2116'} = '0419'; $type{'2116'} = 'ST'; $location{'2116'} = 'SANDER';
1377$borough_number{'2120'} = '0418'; $type{'2120'} = 'STBX'; $location{'2120'} = 'SAGSTUA';
1378$borough_number{'2123'} = '0418'; $type{'2123'} = 'ST'; $location{'2123'} = 'BRUVOLL';
1379$borough_number{'2130'} = '0418'; $type{'2130'} = 'STBX'; $location{'2130'} = 'KNAPPER';
1380$borough_number{'2133'} = '0418'; $type{'2133'} = 'STBX'; $location{'2133'} = 'GARDVIK';
1381$borough_number{'2134'} = '0418'; $type{'2134'} = 'ST'; $location{'2134'} = 'AUSTVATN';
1382$borough_number{'2150'} = '0236'; $type{'2150'} = 'ST'; $location{'2150'} = '�RNES';
1383$borough_number{'2151'} = '0236'; $type{'2151'} = 'BX'; $location{'2151'} = '�RNES';
1384$borough_number{'2160'} = '0236'; $type{'2160'} = 'STBX'; $location{'2160'} = 'VORMSUND';
1385$borough_number{'2162'} = '0236'; $type{'2162'} = 'ST'; $location{'2162'} = 'BR�RUD';
1386$borough_number{'2164'} = '0236'; $type{'2164'} = 'STBX'; $location{'2164'} = 'SKOGBYGDA';
1387$borough_number{'2165'} = '0236'; $type{'2165'} = 'STBX'; $location{'2165'} = 'HVAM';
1388$borough_number{'2166'} = '0236'; $type{'2166'} = 'ST'; $location{'2166'} = 'OPPAKER';
1389$borough_number{'2170'} = '0236'; $type{'2170'} = 'STBX'; $location{'2170'} = 'FENSTAD';
1390$borough_number{'2201'} = '0402'; $type{'2201'} = 'BX'; $location{'2201'} = 'KONGSVINGER';
1391$borough_number{'2202'} = '0402'; $type{'2202'} = 'BX'; $location{'2202'} = 'KONGSVINGER';
1392$borough_number{'2203'} = '0402'; $type{'2203'} = 'BX'; $location{'2203'} = 'KONGSVINGER';
1393$borough_number{'2204'} = '0402'; $type{'2204'} = 'BX'; $location{'2204'} = 'KONGSVINGER';
1394$borough_number{'2205'} = '0402'; $type{'2205'} = 'BX'; $location{'2205'} = 'KONGSVINGER';
1395$borough_number{'2206'} = '0402'; $type{'2206'} = 'BX'; $location{'2206'} = 'KONGSVINGER';
1396$borough_number{'2208'} = '0402'; $type{'2208'} = 'ST'; $location{'2208'} = 'KONGSVINGER';
1397$borough_number{'2209'} = '0402'; $type{'2209'} = 'ST'; $location{'2209'} = 'KONGSVINGER';
1398$borough_number{'2210'} = '0402'; $type{'2210'} = 'ST'; $location{'2210'} = 'GRANLI';
1399$borough_number{'2211'} = '0402'; $type{'2211'} = 'ST'; $location{'2211'} = 'KONGSVINGER';
1400$borough_number{'2212'} = '0402'; $type{'2212'} = 'ST'; $location{'2212'} = 'KONGSVINGER';
1401$borough_number{'2213'} = '0402'; $type{'2213'} = 'ST'; $location{'2213'} = 'KONGSVINGER';
1402$borough_number{'2214'} = '0402'; $type{'2214'} = 'ST'; $location{'2214'} = 'KONGSVINGER';
1403$borough_number{'2216'} = '0402'; $type{'2216'} = 'STBX'; $location{'2216'} = 'ROVERUD';
1404$borough_number{'2217'} = '0402'; $type{'2217'} = 'ST'; $location{'2217'} = 'HOKK�SEN';
1405$borough_number{'2218'} = '0402'; $type{'2218'} = 'ST'; $location{'2218'} = 'LUNDERS�TER';
1406$borough_number{'2219'} = '0402'; $type{'2219'} = 'ST'; $location{'2219'} = 'BRANDVAL';
1407$borough_number{'2220'} = '0420'; $type{'2220'} = 'ST'; $location{'2220'} = '�BOGEN';
1408$borough_number{'2223'} = '0419'; $type{'2223'} = 'ST'; $location{'2223'} = 'GALTERUD';
1409$borough_number{'2224'} = '0402'; $type{'2224'} = 'STBX'; $location{'2224'} = 'AUSTMARKA';
1410$borough_number{'2225'} = '0402'; $type{'2225'} = 'IO'; $location{'2225'} = 'KONGSVINGER';
1411$borough_number{'2226'} = '0402'; $type{'2226'} = 'SX'; $location{'2226'} = 'KONGSVINGER';
1412$borough_number{'2230'} = '0420'; $type{'2230'} = 'STBX'; $location{'2230'} = 'SKOTTERUD';
1413$borough_number{'2232'} = '0420'; $type{'2232'} = 'ST'; $location{'2232'} = 'TOB�L';
1414$borough_number{'2233'} = '0420'; $type{'2233'} = 'ST'; $location{'2233'} = 'VESTMARKA';
1415$borough_number{'2235'} = '0420'; $type{'2235'} = 'ST'; $location{'2235'} = 'MATRAND';
1416$borough_number{'2240'} = '0420'; $type{'2240'} = 'STBX'; $location{'2240'} = 'MAGNOR';
1417$borough_number{'2242'} = '0420'; $type{'2242'} = 'ST'; $location{'2242'} = 'MOROKULIEN';
1418$borough_number{'2256'} = '0423'; $type{'2256'} = 'STBX'; $location{'2256'} = 'GRUE FINNSKOG';
1419$borough_number{'2260'} = '0423'; $type{'2260'} = 'ST'; $location{'2260'} = 'KIRKEN�R';
1420$borough_number{'2261'} = '0423'; $type{'2261'} = 'BX'; $location{'2261'} = 'KIRKEN�R';
1421$borough_number{'2264'} = '0423'; $type{'2264'} = 'ST'; $location{'2264'} = 'GRINDER';
1422$borough_number{'2265'} = '0423'; $type{'2265'} = 'ST'; $location{'2265'} = 'NAMN�';
1423$borough_number{'2266'} = '0425'; $type{'2266'} = 'ST'; $location{'2266'} = 'ARNEBERG';
1424$borough_number{'2270'} = '0425'; $type{'2270'} = 'ST'; $location{'2270'} = 'FLISA';
1425$borough_number{'2271'} = '0425'; $type{'2271'} = 'BX'; $location{'2271'} = 'FLISA';
1426$borough_number{'2280'} = '0425'; $type{'2280'} = 'ST'; $location{'2280'} = 'GJES�SEN';
1427$borough_number{'2283'} = '0425'; $type{'2283'} = 'ST'; $location{'2283'} = '�SNES FINNSKOG';
1428$borough_number{'2301'} = '0403'; $type{'2301'} = 'BX'; $location{'2301'} = 'HAMAR';
1429$borough_number{'2302'} = '0403'; $type{'2302'} = 'BX'; $location{'2302'} = 'HAMAR';
1430$borough_number{'2303'} = '0403'; $type{'2303'} = 'BX'; $location{'2303'} = 'HAMAR';
1431$borough_number{'2304'} = '0403'; $type{'2304'} = 'BX'; $location{'2304'} = 'HAMAR';
1432$borough_number{'2305'} = '0403'; $type{'2305'} = 'BX'; $location{'2305'} = 'HAMAR';
1433$borough_number{'2306'} = '0403'; $type{'2306'} = 'BX'; $location{'2306'} = 'HAMAR';
1434$borough_number{'2307'} = '0403'; $type{'2307'} = 'BX'; $location{'2307'} = 'HAMAR';
1435$borough_number{'2308'} = '0403'; $type{'2308'} = 'BX'; $location{'2308'} = 'HAMAR';
1436$borough_number{'2309'} = '0403'; $type{'2309'} = 'BX'; $location{'2309'} = 'HAMAR';
1437$borough_number{'2312'} = '0417'; $type{'2312'} = 'STBX'; $location{'2312'} = 'OTTESTAD';
1438$borough_number{'2315'} = '0403'; $type{'2315'} = 'ST'; $location{'2315'} = 'HAMAR';
1439$borough_number{'2316'} = '0403'; $type{'2316'} = 'ST'; $location{'2316'} = 'HAMAR';
1440$borough_number{'2317'} = '0403'; $type{'2317'} = 'ST'; $location{'2317'} = 'HAMAR';
1441$borough_number{'2318'} = '0403'; $type{'2318'} = 'STBX'; $location{'2318'} = 'HAMAR';
1442$borough_number{'2319'} = '0403'; $type{'2319'} = 'ST'; $location{'2319'} = 'HAMAR';
1443$borough_number{'2320'} = '0412'; $type{'2320'} = 'STBX'; $location{'2320'} = 'FURNES';
1444$borough_number{'2321'} = '0403'; $type{'2321'} = 'ST'; $location{'2321'} = 'HAMAR';
1445$borough_number{'2322'} = '0403'; $type{'2322'} = 'STBX'; $location{'2322'} = 'RIDABU';
1446$borough_number{'2323'} = '0403'; $type{'2323'} = 'ST'; $location{'2323'} = 'INGEBERG';
1447$borough_number{'2324'} = '0403'; $type{'2324'} = 'STBX'; $location{'2324'} = 'VANG P� HEDMARK';
1448$borough_number{'2325'} = '0403'; $type{'2325'} = 'IO'; $location{'2325'} = 'HAMAR';
1449$borough_number{'2326'} = '0403'; $type{'2326'} = 'SX'; $location{'2326'} = 'HAMAR';
1450$borough_number{'2330'} = '0417'; $type{'2330'} = 'STBX'; $location{'2330'} = 'VALLSET';
1451$borough_number{'2332'} = '0417'; $type{'2332'} = 'ST'; $location{'2332'} = '�SVANG';
1452$borough_number{'2334'} = '0417'; $type{'2334'} = 'STBX'; $location{'2334'} = 'ROMEDAL';
1453$borough_number{'2335'} = '0417'; $type{'2335'} = 'ST'; $location{'2335'} = 'STANGE';
1454$borough_number{'2336'} = '0417'; $type{'2336'} = 'BX'; $location{'2336'} = 'STANGE';
1455$borough_number{'2337'} = '0417'; $type{'2337'} = 'STBX'; $location{'2337'} = 'TANGEN';
1456$borough_number{'2338'} = '0417'; $type{'2338'} = 'ST'; $location{'2338'} = 'ESPA';
1457$borough_number{'2340'} = '0415'; $type{'2340'} = 'ST'; $location{'2340'} = 'L�TEN';
1458$borough_number{'2341'} = '0415'; $type{'2341'} = 'BX'; $location{'2341'} = 'L�TEN';
1459$borough_number{'2344'} = '0417'; $type{'2344'} = 'STBX'; $location{'2344'} = 'ILSENG';
1460$borough_number{'2345'} = '0415'; $type{'2345'} = 'ST'; $location{'2345'} = '�DALSBRUK';
1461$borough_number{'2350'} = '0412'; $type{'2350'} = 'STBX'; $location{'2350'} = 'NES P� HEDMARK';
1462$borough_number{'2353'} = '0412'; $type{'2353'} = 'STBX'; $location{'2353'} = 'STAVSJ�';
1463$borough_number{'2355'} = '0412'; $type{'2355'} = 'ST'; $location{'2355'} = 'GAUPEN';
1464$borough_number{'2360'} = '0412'; $type{'2360'} = 'STBX'; $location{'2360'} = 'RUDSH�GDA';
1465$borough_number{'2364'} = '0412'; $type{'2364'} = 'ST'; $location{'2364'} = 'N�ROSET';
1466$borough_number{'2365'} = '0412'; $type{'2365'} = 'ST'; $location{'2365'} = '�SMARKA';
1467$borough_number{'2372'} = '0412'; $type{'2372'} = 'STBX'; $location{'2372'} = 'BR�TTUM';
1468$borough_number{'2380'} = '0412'; $type{'2380'} = 'ST'; $location{'2380'} = 'BRUMUNDDAL';
1469$borough_number{'2381'} = '0412'; $type{'2381'} = 'BX'; $location{'2381'} = 'BRUMUNDDAL';
1470$borough_number{'2390'} = '0412'; $type{'2390'} = 'ST'; $location{'2390'} = 'MOELV';
1471$borough_number{'2391'} = '0412'; $type{'2391'} = 'BX'; $location{'2391'} = 'MOELV';
1472$borough_number{'2401'} = '0427'; $type{'2401'} = 'BX'; $location{'2401'} = 'ELVERUM';
1473$borough_number{'2402'} = '0427'; $type{'2402'} = 'BX'; $location{'2402'} = 'ELVERUM';
1474$borough_number{'2403'} = '0427'; $type{'2403'} = 'BX'; $location{'2403'} = 'ELVERUM';
1475$borough_number{'2405'} = '0427'; $type{'2405'} = 'BX'; $location{'2405'} = 'ELVERUM';
1476$borough_number{'2406'} = '0427'; $type{'2406'} = 'ST'; $location{'2406'} = 'ELVERUM';
1477$borough_number{'2407'} = '0427'; $type{'2407'} = 'STBX'; $location{'2407'} = 'ELVERUM';
1478$borough_number{'2408'} = '0427'; $type{'2408'} = 'ST'; $location{'2408'} = 'ELVERUM';
1479$borough_number{'2409'} = '0427'; $type{'2409'} = 'STBX'; $location{'2409'} = 'ELVERUM';
1480$borough_number{'2410'} = '0427'; $type{'2410'} = 'STBX'; $location{'2410'} = 'HERNES';
1481$borough_number{'2411'} = '0427'; $type{'2411'} = 'ST'; $location{'2411'} = 'ELVERUM';
1482$borough_number{'2412'} = '0427'; $type{'2412'} = 'ST'; $location{'2412'} = 'S�RSKOGBYGDA';
1483$borough_number{'2415'} = '0427'; $type{'2415'} = 'STBX'; $location{'2415'} = 'HERADSBYGD';
1484$borough_number{'2416'} = '0427'; $type{'2416'} = 'ST'; $location{'2416'} = 'J�MNA';
1485$borough_number{'2418'} = '0427'; $type{'2418'} = 'SX'; $location{'2418'} = 'ELVERUM';
1486$borough_number{'2420'} = '0428'; $type{'2420'} = 'ST'; $location{'2420'} = 'TRYSIL';
1487$borough_number{'2421'} = '0428'; $type{'2421'} = 'BX'; $location{'2421'} = 'TRYSIL';
1488$borough_number{'2422'} = '0428'; $type{'2422'} = 'STBX'; $location{'2422'} = 'NYBERGSUND';
1489$borough_number{'2423'} = '0428'; $type{'2423'} = 'STBX'; $location{'2423'} = '�STBY';
1490$borough_number{'2425'} = '0428'; $type{'2425'} = 'STBX'; $location{'2425'} = 'LJ�RDALEN';
1491$borough_number{'2427'} = '0428'; $type{'2427'} = 'ST'; $location{'2427'} = 'PLASSEN';
1492$borough_number{'2428'} = '0428'; $type{'2428'} = 'STBX'; $location{'2428'} = 'S�RE OSEN';
1493$borough_number{'2429'} = '0428'; $type{'2429'} = 'ST'; $location{'2429'} = 'T�RBERGET';
1494$borough_number{'2430'} = '0428'; $type{'2430'} = 'STBX'; $location{'2430'} = 'JORDET';
1495$borough_number{'2432'} = '0428'; $type{'2432'} = 'ST'; $location{'2432'} = 'SLETT�S';
1496$borough_number{'2435'} = '0426'; $type{'2435'} = 'STBX'; $location{'2435'} = 'BRASKEREIDFOSS';
1497$borough_number{'2436'} = '0426'; $type{'2436'} = 'STBX'; $location{'2436'} = 'V�LER I SOL�R';
1498$borough_number{'2437'} = '0426'; $type{'2437'} = 'IO'; $location{'2437'} = 'HASLEMOEN';
1499$borough_number{'2438'} = '0426'; $type{'2438'} = 'ST'; $location{'2438'} = 'GRAVBERGET';
1500$borough_number{'2440'} = '0434'; $type{'2440'} = 'STBX'; $location{'2440'} = 'ENGERDAL';
1501$borough_number{'2443'} = '0434'; $type{'2443'} = 'STBX'; $location{'2443'} = 'DREVSJ�';
1502$borough_number{'2446'} = '0434'; $type{'2446'} = 'ST'; $location{'2446'} = 'ELG�';
1503$borough_number{'2448'} = '0434'; $type{'2448'} = 'ST'; $location{'2448'} = 'S�M�DALEN';
1504$borough_number{'2450'} = '0429'; $type{'2450'} = 'ST'; $location{'2450'} = 'RENA';
1505$borough_number{'2451'} = '0429'; $type{'2451'} = 'BX'; $location{'2451'} = 'RENA';
1506$borough_number{'2460'} = '0429'; $type{'2460'} = 'STBX'; $location{'2460'} = 'OSEN';
1507$borough_number{'2476'} = '0430'; $type{'2476'} = 'ST'; $location{'2476'} = 'ATNA';
1508$borough_number{'2477'} = '0430'; $type{'2477'} = 'ST'; $location{'2477'} = 'SOLLIA';
1509$borough_number{'2478'} = '0432'; $type{'2478'} = 'ST'; $location{'2478'} = 'HANESTAD';
1510$borough_number{'2480'} = '0430'; $type{'2480'} = 'ST'; $location{'2480'} = 'KOPPANG';
1511$borough_number{'2481'} = '0430'; $type{'2481'} = 'BX'; $location{'2481'} = 'KOPPANG';
1512$borough_number{'2485'} = '0432'; $type{'2485'} = 'STBX'; $location{'2485'} = 'RENDALEN';
1513$borough_number{'2500'} = '0437'; $type{'2500'} = 'ST'; $location{'2500'} = 'TYNSET';
1514$borough_number{'2501'} = '0437'; $type{'2501'} = 'BX'; $location{'2501'} = 'TYNSET';
1515$borough_number{'2510'} = '0437'; $type{'2510'} = 'ST'; $location{'2510'} = 'TYLLDALEN';
1516$borough_number{'2512'} = '0437'; $type{'2512'} = 'STBX'; $location{'2512'} = 'KVIKNE';
1517$borough_number{'2540'} = '0436'; $type{'2540'} = 'STBX'; $location{'2540'} = 'TOLGA';
1518$borough_number{'2542'} = '0436'; $type{'2542'} = 'ST'; $location{'2542'} = 'VINGELEN';
1519$borough_number{'2544'} = '0436'; $type{'2544'} = 'ST'; $location{'2544'} = '�VERSJ�DALEN';
1520$borough_number{'2550'} = '0441'; $type{'2550'} = 'STBX'; $location{'2550'} = 'OS I �STERDALEN';
1521$borough_number{'2552'} = '0441'; $type{'2552'} = 'ST'; $location{'2552'} = 'DALSBYGDA';
1522$borough_number{'2555'} = '0441'; $type{'2555'} = 'ST'; $location{'2555'} = 'TUFSINGDALEN';
1523$borough_number{'2560'} = '0438'; $type{'2560'} = 'ST'; $location{'2560'} = 'ALVDAL';
1524$borough_number{'2561'} = '0438'; $type{'2561'} = 'BX'; $location{'2561'} = 'ALVDAL';
1525$borough_number{'2580'} = '0439'; $type{'2580'} = 'ST'; $location{'2580'} = 'FOLLDAL';
1526$borough_number{'2581'} = '0439'; $type{'2581'} = 'BX'; $location{'2581'} = 'FOLLDAL';
1527$borough_number{'2582'} = '0439'; $type{'2582'} = 'ST'; $location{'2582'} = 'GRIMSBU';
1528$borough_number{'2584'} = '0439'; $type{'2584'} = 'ST'; $location{'2584'} = 'DALHOLEN';
1529$borough_number{'2601'} = '0501'; $type{'2601'} = 'BX'; $location{'2601'} = 'LILLEHAMMER';
1530$borough_number{'2602'} = '0501'; $type{'2602'} = 'BX'; $location{'2602'} = 'LILLEHAMMER';
1531$borough_number{'2603'} = '0501'; $type{'2603'} = 'BX'; $location{'2603'} = 'LILLEHAMMER';
1532$borough_number{'2604'} = '0501'; $type{'2604'} = 'BX'; $location{'2604'} = 'LILLEHAMMER';
1533$borough_number{'2605'} = '0501'; $type{'2605'} = 'BX'; $location{'2605'} = 'LILLEHAMMER';
1534$borough_number{'2606'} = '0501'; $type{'2606'} = 'BX'; $location{'2606'} = 'LILLEHAMMER';
1535$borough_number{'2607'} = '0501'; $type{'2607'} = 'STBX'; $location{'2607'} = 'VINGROM';
1536$borough_number{'2608'} = '0501'; $type{'2608'} = 'STBX'; $location{'2608'} = 'LILLEHAMMER';
1537$borough_number{'2609'} = '0501'; $type{'2609'} = 'STBX'; $location{'2609'} = 'LILLEHAMMER';
1538$borough_number{'2610'} = '0412'; $type{'2610'} = 'STBX'; $location{'2610'} = 'MESNALI';
1539$borough_number{'2611'} = '0501'; $type{'2611'} = 'STBX'; $location{'2611'} = 'LILLEHAMMER';
1540$borough_number{'2612'} = '0412'; $type{'2612'} = 'STBX'; $location{'2612'} = 'SJUSJ�EN';
1541$borough_number{'2613'} = '0501'; $type{'2613'} = 'ST'; $location{'2613'} = 'LILLEHAMMER';
1542$borough_number{'2614'} = '0501'; $type{'2614'} = 'ST'; $location{'2614'} = 'LILLEHAMMER';
1543$borough_number{'2615'} = '0501'; $type{'2615'} = 'ST'; $location{'2615'} = 'LILLEHAMMER';
1544$borough_number{'2616'} = '0412'; $type{'2616'} = 'ST'; $location{'2616'} = 'LISMARKA';
1545$borough_number{'2617'} = '0501'; $type{'2617'} = 'IO'; $location{'2617'} = 'LILLEHAMMER';
1546$borough_number{'2618'} = '0501'; $type{'2618'} = 'ST'; $location{'2618'} = 'LILLEHAMMER';
1547$borough_number{'2619'} = '0501'; $type{'2619'} = 'ST'; $location{'2619'} = 'LILLEHAMMER';
1548$borough_number{'2624'} = '0501'; $type{'2624'} = 'STBX'; $location{'2624'} = 'LILLEHAMMER';
1549$borough_number{'2625'} = '0501'; $type{'2625'} = 'STBX'; $location{'2625'} = 'F�BERG';
1550$borough_number{'2626'} = '0501'; $type{'2626'} = 'SX'; $location{'2626'} = 'LILLEHAMMER';
1551$borough_number{'2629'} = '0501'; $type{'2629'} = 'IO'; $location{'2629'} = 'LILLEHAMMER';
1552$borough_number{'2630'} = '0520'; $type{'2630'} = 'ST'; $location{'2630'} = 'RINGEBU';
1553$borough_number{'2631'} = '0520'; $type{'2631'} = 'BX'; $location{'2631'} = 'RINGEBU';
1554$borough_number{'2632'} = '0520'; $type{'2632'} = 'ST'; $location{'2632'} = 'VENABYGD';
1555$borough_number{'2633'} = '0520'; $type{'2633'} = 'BX'; $location{'2633'} = 'F�VANG';
1556$borough_number{'2634'} = '0520'; $type{'2634'} = 'ST'; $location{'2634'} = 'F�VANG';
1557$borough_number{'2635'} = '0521'; $type{'2635'} = 'STBX'; $location{'2635'} = 'TRETTEN';
1558$borough_number{'2636'} = '0521'; $type{'2636'} = 'ST'; $location{'2636'} = '�YER';
1559$borough_number{'2637'} = '0521'; $type{'2637'} = 'BX'; $location{'2637'} = '�YER';
1560$borough_number{'2639'} = '0516'; $type{'2639'} = 'BX'; $location{'2639'} = 'VINSTRA';
1561$borough_number{'2640'} = '0516'; $type{'2640'} = 'ST'; $location{'2640'} = 'VINSTRA';
1562$borough_number{'2642'} = '0516'; $type{'2642'} = 'STBX'; $location{'2642'} = 'KVAM';
1563$borough_number{'2643'} = '0516'; $type{'2643'} = 'STBX'; $location{'2643'} = 'SK�BU';
1564$borough_number{'2645'} = '0519'; $type{'2645'} = 'BX'; $location{'2645'} = 'S�R-FRON';
1565$borough_number{'2646'} = '0519'; $type{'2646'} = 'ST'; $location{'2646'} = 'G�L�';
1566$borough_number{'2647'} = '0519'; $type{'2647'} = 'ST'; $location{'2647'} = 'S�R-FRON';
1567$borough_number{'2648'} = '0519'; $type{'2648'} = 'BX'; $location{'2648'} = 'S�R-FRON';
1568$borough_number{'2649'} = '0522'; $type{'2649'} = 'BX'; $location{'2649'} = '�STRE GAUSDAL';
1569$borough_number{'2651'} = '0522'; $type{'2651'} = 'ST'; $location{'2651'} = '�STRE GAUSDAL';
1570$borough_number{'2652'} = '0522'; $type{'2652'} = 'ST'; $location{'2652'} = 'SVINGVOLL';
1571$borough_number{'2653'} = '0522'; $type{'2653'} = 'STBX'; $location{'2653'} = 'VESTRE GAUSDAL';
1572$borough_number{'2656'} = '0522'; $type{'2656'} = 'STBX'; $location{'2656'} = 'FOLLEBU';
1573$borough_number{'2657'} = '0522'; $type{'2657'} = 'ST'; $location{'2657'} = 'SVATSUM';
1574$borough_number{'2658'} = '0519'; $type{'2658'} = 'ST'; $location{'2658'} = 'ESPEDALEN';
1575$borough_number{'2659'} = '0511'; $type{'2659'} = 'BX'; $location{'2659'} = 'DOMB�S';
1576$borough_number{'2660'} = '0511'; $type{'2660'} = 'ST'; $location{'2660'} = 'DOMB�S';
1577$borough_number{'2661'} = '0511'; $type{'2661'} = 'ST'; $location{'2661'} = 'HJERKINN';
1578$borough_number{'2662'} = '0511'; $type{'2662'} = 'ST'; $location{'2662'} = 'DOVRE';
1579$borough_number{'2663'} = '0511'; $type{'2663'} = 'ST'; $location{'2663'} = 'DOVRESKOGEN';
1580$borough_number{'2664'} = '0511'; $type{'2664'} = 'BX'; $location{'2664'} = 'DOVRE';
1581$borough_number{'2665'} = '0512'; $type{'2665'} = 'STBX'; $location{'2665'} = 'LESJA';
1582$borough_number{'2666'} = '0512'; $type{'2666'} = 'ST'; $location{'2666'} = 'LORA';
1583$borough_number{'2667'} = '0512'; $type{'2667'} = 'ST'; $location{'2667'} = 'LESJAVERK';
1584$borough_number{'2668'} = '0512'; $type{'2668'} = 'ST'; $location{'2668'} = 'LESJASKOG';
1585$borough_number{'2669'} = '0512'; $type{'2669'} = 'ST'; $location{'2669'} = 'BJORLI';
1586$borough_number{'2670'} = '0517'; $type{'2670'} = 'ST'; $location{'2670'} = 'OTTA';
1587$borough_number{'2672'} = '0517'; $type{'2672'} = 'STBX'; $location{'2672'} = 'SEL';
1588$borough_number{'2673'} = '0517'; $type{'2673'} = 'ST'; $location{'2673'} = 'H�VRINGEN';
1589$borough_number{'2674'} = '0517'; $type{'2674'} = 'ST'; $location{'2674'} = 'MYSUS�TER';
1590$borough_number{'2675'} = '0517'; $type{'2675'} = 'BX'; $location{'2675'} = 'OTTA';
1591$borough_number{'2676'} = '0517'; $type{'2676'} = 'STBX'; $location{'2676'} = 'HEIDAL';
1592$borough_number{'2677'} = '0517'; $type{'2677'} = 'ST'; $location{'2677'} = 'NEDRE HEIDAL';
1593$borough_number{'2680'} = '0515'; $type{'2680'} = 'ST'; $location{'2680'} = 'V�G�';
1594$borough_number{'2682'} = '0515'; $type{'2682'} = 'STBX'; $location{'2682'} = 'LALM';
1595$borough_number{'2683'} = '0515'; $type{'2683'} = 'ST'; $location{'2683'} = 'TESSANDEN';
1596$borough_number{'2684'} = '0515'; $type{'2684'} = 'BX'; $location{'2684'} = 'V�G�';
1597$borough_number{'2685'} = '0514'; $type{'2685'} = 'ST'; $location{'2685'} = 'GARMO';
1598$borough_number{'2686'} = '0514'; $type{'2686'} = 'ST'; $location{'2686'} = 'LOM';
1599$borough_number{'2687'} = '0514'; $type{'2687'} = 'ST'; $location{'2687'} = 'B�VERDALEN';
1600$borough_number{'2688'} = '0514'; $type{'2688'} = 'BX'; $location{'2688'} = 'LOM';
1601$borough_number{'2690'} = '0513'; $type{'2690'} = 'ST'; $location{'2690'} = 'SKJ�K';
1602$borough_number{'2693'} = '0513'; $type{'2693'} = 'ST'; $location{'2693'} = 'NORDBERG';
1603$borough_number{'2694'} = '0513'; $type{'2694'} = 'BX'; $location{'2694'} = 'SKJ�K';
1604$borough_number{'2695'} = '0513'; $type{'2695'} = 'ST'; $location{'2695'} = 'GROTLI';
1605$borough_number{'2711'} = '0534'; $type{'2711'} = 'BX'; $location{'2711'} = 'GRAN';
1606$borough_number{'2712'} = '0534'; $type{'2712'} = 'BX'; $location{'2712'} = 'BRANDBU';
1607$borough_number{'2713'} = '0533'; $type{'2713'} = 'BX'; $location{'2713'} = 'ROA';
1608$borough_number{'2714'} = '0534'; $type{'2714'} = 'BX'; $location{'2714'} = 'JAREN';
1609$borough_number{'2715'} = '0533'; $type{'2715'} = 'BX'; $location{'2715'} = 'LUNNER';
1610$borough_number{'2716'} = '0533'; $type{'2716'} = 'BX'; $location{'2716'} = 'HARESTUA';
1611$borough_number{'2717'} = '0533'; $type{'2717'} = 'BX'; $location{'2717'} = 'GRUA';
1612$borough_number{'2718'} = '0534'; $type{'2718'} = 'BX'; $location{'2718'} = 'BRANDBU';
1613$borough_number{'2720'} = '0533'; $type{'2720'} = 'ST'; $location{'2720'} = 'GRINDVOLL';
1614$borough_number{'2730'} = '0533'; $type{'2730'} = 'ST'; $location{'2730'} = 'LUNNER';
1615$borough_number{'2740'} = '0533'; $type{'2740'} = 'ST'; $location{'2740'} = 'ROA';
1616$borough_number{'2742'} = '0533'; $type{'2742'} = 'ST'; $location{'2742'} = 'GRUA';
1617$borough_number{'2743'} = '0533'; $type{'2743'} = 'ST'; $location{'2743'} = 'HARESTUA';
1618$borough_number{'2750'} = '0534'; $type{'2750'} = 'ST'; $location{'2750'} = 'GRAN';
1619$borough_number{'2760'} = '0534'; $type{'2760'} = 'ST'; $location{'2760'} = 'BRANDBU';
1620$borough_number{'2770'} = '0534'; $type{'2770'} = 'ST'; $location{'2770'} = 'JAREN';
1621$borough_number{'2801'} = '0502'; $type{'2801'} = 'BX'; $location{'2801'} = 'GJ�VIK';
1622$borough_number{'2802'} = '0502'; $type{'2802'} = 'BX'; $location{'2802'} = 'GJ�VIK';
1623$borough_number{'2803'} = '0502'; $type{'2803'} = 'BX'; $location{'2803'} = 'GJ�VIK';
1624$borough_number{'2804'} = '0502'; $type{'2804'} = 'BX'; $location{'2804'} = 'GJ�VIK';
1625$borough_number{'2805'} = '0502'; $type{'2805'} = 'BX'; $location{'2805'} = 'GJ�VIK';
1626$borough_number{'2806'} = '0502'; $type{'2806'} = 'BX'; $location{'2806'} = 'GJ�VIK';
1627$borough_number{'2807'} = '0502'; $type{'2807'} = 'BX'; $location{'2807'} = 'HUNNDALEN';
1628$borough_number{'2808'} = '0502'; $type{'2808'} = 'SX'; $location{'2808'} = 'GJ�VIK';
1629$borough_number{'2809'} = '0502'; $type{'2809'} = 'SX'; $location{'2809'} = 'GJ�VIK';
1630$borough_number{'2810'} = '0502'; $type{'2810'} = 'SX'; $location{'2810'} = 'GJ�VIK';
1631$borough_number{'2811'} = '0502'; $type{'2811'} = 'BX'; $location{'2811'} = 'HUNNDALEN';
1632$borough_number{'2815'} = '0502'; $type{'2815'} = 'ST'; $location{'2815'} = 'GJ�VIK';
1633$borough_number{'2816'} = '0502'; $type{'2816'} = 'ST'; $location{'2816'} = 'GJ�VIK';
1634$borough_number{'2817'} = '0502'; $type{'2817'} = 'ST'; $location{'2817'} = 'GJ�VIK';
1635$borough_number{'2818'} = '0502'; $type{'2818'} = 'ST'; $location{'2818'} = 'GJ�VIK';
1636$borough_number{'2819'} = '0502'; $type{'2819'} = 'STBX'; $location{'2819'} = 'GJ�VIK';
1637$borough_number{'2821'} = '0502'; $type{'2821'} = 'ST'; $location{'2821'} = 'GJ�VIK';
1638$borough_number{'2822'} = '0502'; $type{'2822'} = 'ST'; $location{'2822'} = 'BYBRUA';
1639$borough_number{'2825'} = '0502'; $type{'2825'} = 'ST'; $location{'2825'} = 'GJ�VIK';
1640$borough_number{'2827'} = '0502'; $type{'2827'} = 'ST'; $location{'2827'} = 'HUNNDALEN';
1641$borough_number{'2830'} = '0529'; $type{'2830'} = 'ST'; $location{'2830'} = 'RAUFOSS';
1642$borough_number{'2831'} = '0529'; $type{'2831'} = 'BX'; $location{'2831'} = 'RAUFOSS';
1643$borough_number{'2832'} = '0502'; $type{'2832'} = 'BX'; $location{'2832'} = 'BIRI';
1644$borough_number{'2836'} = '0502'; $type{'2836'} = 'STBX'; $location{'2836'} = 'BIRI';
1645$borough_number{'2837'} = '0502'; $type{'2837'} = 'ST'; $location{'2837'} = 'BIRISTRAND';
1646$borough_number{'2838'} = '0502'; $type{'2838'} = 'STBX'; $location{'2838'} = 'SNERTINGDAL';
1647$borough_number{'2839'} = '0502'; $type{'2839'} = 'ST'; $location{'2839'} = '�VRE SNERTINGDAL';
1648$borough_number{'2840'} = '0529'; $type{'2840'} = 'ST'; $location{'2840'} = 'REINSVOLL';
1649$borough_number{'2843'} = '0529'; $type{'2843'} = 'ST'; $location{'2843'} = 'EINA';
1650$borough_number{'2846'} = '0529'; $type{'2846'} = 'STBX'; $location{'2846'} = 'B�VERBRU';
1651$borough_number{'2847'} = '0528'; $type{'2847'} = 'STBX'; $location{'2847'} = 'KOLBU';
1652$borough_number{'2848'} = '0528'; $type{'2848'} = 'ST'; $location{'2848'} = 'SKREIA';
1653$borough_number{'2849'} = '0528'; $type{'2849'} = 'ST'; $location{'2849'} = 'KAPP';
1654$borough_number{'2850'} = '0528'; $type{'2850'} = 'ST'; $location{'2850'} = 'LENA';
1655$borough_number{'2851'} = '0528'; $type{'2851'} = 'BX'; $location{'2851'} = 'LENA';
1656$borough_number{'2853'} = '0529'; $type{'2853'} = 'BX'; $location{'2853'} = 'REINSVOLL';
1657$borough_number{'2854'} = '0529'; $type{'2854'} = 'BX'; $location{'2854'} = 'EINA';
1658$borough_number{'2857'} = '0528'; $type{'2857'} = 'BX'; $location{'2857'} = 'SKREIA';
1659$borough_number{'2858'} = '0528'; $type{'2858'} = 'BX'; $location{'2858'} = 'KAPP';
1660$borough_number{'2860'} = '0536'; $type{'2860'} = 'ST'; $location{'2860'} = 'HOV';
1661$borough_number{'2861'} = '0536'; $type{'2861'} = 'ST'; $location{'2861'} = 'LAND�SBYGDA';
1662$borough_number{'2862'} = '0536'; $type{'2862'} = 'ST'; $location{'2862'} = 'FLUBERG';
1663$borough_number{'2864'} = '0536'; $type{'2864'} = 'ST'; $location{'2864'} = 'FALL';
1664$borough_number{'2866'} = '0536'; $type{'2866'} = 'ST'; $location{'2866'} = 'ENGER';
1665$borough_number{'2867'} = '0536'; $type{'2867'} = 'BX'; $location{'2867'} = 'HOV';
1666$borough_number{'2870'} = '0538'; $type{'2870'} = 'ST'; $location{'2870'} = 'DOKKA';
1667$borough_number{'2879'} = '0536'; $type{'2879'} = 'ST'; $location{'2879'} = 'ODNES';
1668$borough_number{'2880'} = '0538'; $type{'2880'} = 'STBX'; $location{'2880'} = 'NORD-TORPA';
1669$borough_number{'2881'} = '0538'; $type{'2881'} = 'ST'; $location{'2881'} = 'AUST-TORPA';
1670$borough_number{'2882'} = '0538'; $type{'2882'} = 'BX'; $location{'2882'} = 'DOKKA';
1671$borough_number{'2890'} = '0541'; $type{'2890'} = 'ST'; $location{'2890'} = 'ETNEDAL';
1672$borough_number{'2893'} = '0541'; $type{'2893'} = 'BX'; $location{'2893'} = 'ETNEDAL';
1673$borough_number{'2900'} = '0542'; $type{'2900'} = 'ST'; $location{'2900'} = 'FAGERNES';
1674$borough_number{'2901'} = '0542'; $type{'2901'} = 'BX'; $location{'2901'} = 'FAGERNES';
1675$borough_number{'2907'} = '0542'; $type{'2907'} = 'BX'; $location{'2907'} = 'LEIRA I VALDRES';
1676$borough_number{'2910'} = '0542'; $type{'2910'} = 'STBX'; $location{'2910'} = 'AURDAL';
1677$borough_number{'2917'} = '0542'; $type{'2917'} = 'ST'; $location{'2917'} = 'SKRAUTV�L';
1678$borough_number{'2918'} = '0542'; $type{'2918'} = 'ST'; $location{'2918'} = 'ULNES';
1679$borough_number{'2920'} = '0542'; $type{'2920'} = 'ST'; $location{'2920'} = 'LEIRA I VALDRES';
1680$borough_number{'2923'} = '0542'; $type{'2923'} = 'ST'; $location{'2923'} = 'TISLEIDALEN';
1681$borough_number{'2929'} = '0540'; $type{'2929'} = 'BX'; $location{'2929'} = 'BAGN';
1682$borough_number{'2930'} = '0540'; $type{'2930'} = 'ST'; $location{'2930'} = 'BAGN';
1683$borough_number{'2933'} = '0540'; $type{'2933'} = 'ST'; $location{'2933'} = 'REINLI';
1684$borough_number{'2936'} = '0540'; $type{'2936'} = 'ST'; $location{'2936'} = 'BEGNADALEN';
1685$borough_number{'2937'} = '0540'; $type{'2937'} = 'ST'; $location{'2937'} = 'BEGNA';
1686$borough_number{'2939'} = '0544'; $type{'2939'} = 'BX'; $location{'2939'} = 'HEGGENES';
1687$borough_number{'2940'} = '0544'; $type{'2940'} = 'ST'; $location{'2940'} = 'HEGGENES';
1688$borough_number{'2943'} = '0544'; $type{'2943'} = 'ST'; $location{'2943'} = 'ROGNE';
1689$borough_number{'2950'} = '0544'; $type{'2950'} = 'ST'; $location{'2950'} = 'SKAMMESTEIN';
1690$borough_number{'2952'} = '0544'; $type{'2952'} = 'ST'; $location{'2952'} = 'BEITO';
1691$borough_number{'2953'} = '0544'; $type{'2953'} = 'STBX'; $location{'2953'} = 'BEITOST�LEN';
1692$borough_number{'2959'} = '0543'; $type{'2959'} = 'BX'; $location{'2959'} = 'R�N';
1693$borough_number{'2960'} = '0543'; $type{'2960'} = 'ST'; $location{'2960'} = 'R�N';
1694$borough_number{'2966'} = '0543'; $type{'2966'} = 'STBX'; $location{'2966'} = 'SLIDRE';
1695$borough_number{'2967'} = '0543'; $type{'2967'} = 'ST'; $location{'2967'} = 'LOMEN';
1696$borough_number{'2973'} = '0545'; $type{'2973'} = 'STBX'; $location{'2973'} = 'RYFOSS';
1697$borough_number{'2974'} = '0545'; $type{'2974'} = 'BX'; $location{'2974'} = 'VANG I VALDRES';
1698$borough_number{'2975'} = '0545'; $type{'2975'} = 'ST'; $location{'2975'} = 'VANG I VALDRES';
1699$borough_number{'2977'} = '0545'; $type{'2977'} = 'ST'; $location{'2977'} = '�YE';
1700$borough_number{'2985'} = '0545'; $type{'2985'} = 'ST'; $location{'2985'} = 'TYINKRYSSET';
1701$borough_number{'3001'} = '0602'; $type{'3001'} = 'BX'; $location{'3001'} = 'DRAMMEN';
1702$borough_number{'3002'} = '0602'; $type{'3002'} = 'BX'; $location{'3002'} = 'DRAMMEN';
1703$borough_number{'3003'} = '0602'; $type{'3003'} = 'BX'; $location{'3003'} = 'DRAMMEN';
1704$borough_number{'3004'} = '0602'; $type{'3004'} = 'MU'; $location{'3004'} = 'DRAMMEN';
1705$borough_number{'3005'} = '0602'; $type{'3005'} = 'BX'; $location{'3005'} = 'DRAMMEN';
1706$borough_number{'3006'} = '0602'; $type{'3006'} = 'BX'; $location{'3006'} = 'DRAMMEN';
1707$borough_number{'3007'} = '0602'; $type{'3007'} = 'BX'; $location{'3007'} = 'DRAMMEN';
1708$borough_number{'3008'} = '0602'; $type{'3008'} = 'MU'; $location{'3008'} = 'DRAMMEN';
1709$borough_number{'3011'} = '0602'; $type{'3011'} = 'ST'; $location{'3011'} = 'DRAMMEN';
1710$borough_number{'3012'} = '0602'; $type{'3012'} = 'ST'; $location{'3012'} = 'DRAMMEN';
1711$borough_number{'3013'} = '0602'; $type{'3013'} = 'ST'; $location{'3013'} = 'DRAMMEN';
1712$borough_number{'3014'} = '0602'; $type{'3014'} = 'ST'; $location{'3014'} = 'DRAMMEN';
1713$borough_number{'3015'} = '0602'; $type{'3015'} = 'ST'; $location{'3015'} = 'DRAMMEN';
1714$borough_number{'3016'} = '0602'; $type{'3016'} = 'ST'; $location{'3016'} = 'DRAMMEN';
1715$borough_number{'3017'} = '0602'; $type{'3017'} = 'ST'; $location{'3017'} = 'DRAMMEN';
1716$borough_number{'3018'} = '0602'; $type{'3018'} = 'ST'; $location{'3018'} = 'DRAMMEN';
1717$borough_number{'3019'} = '0602'; $type{'3019'} = 'ST'; $location{'3019'} = 'DRAMMEN';
1718$borough_number{'3020'} = '0602'; $type{'3020'} = 'IO'; $location{'3020'} = 'DRAMMEN';
1719$borough_number{'3021'} = '0602'; $type{'3021'} = 'ST'; $location{'3021'} = 'DRAMMEN';
1720$borough_number{'3022'} = '0602'; $type{'3022'} = 'ST'; $location{'3022'} = 'DRAMMEN';
1721$borough_number{'3023'} = '0602'; $type{'3023'} = 'STBX'; $location{'3023'} = 'DRAMMEN';
1722$borough_number{'3024'} = '0602'; $type{'3024'} = 'STBX'; $location{'3024'} = 'DRAMMEN';
1723$borough_number{'3025'} = '0602'; $type{'3025'} = 'ST'; $location{'3025'} = 'DRAMMEN';
1724$borough_number{'3026'} = '0602'; $type{'3026'} = 'ST'; $location{'3026'} = 'DRAMMEN';
1725$borough_number{'3027'} = '0602'; $type{'3027'} = 'ST'; $location{'3027'} = 'DRAMMEN';
1726$borough_number{'3028'} = '0602'; $type{'3028'} = 'STBX'; $location{'3028'} = 'DRAMMEN';
1727$borough_number{'3029'} = '0602'; $type{'3029'} = 'ST'; $location{'3029'} = 'DRAMMEN';
1728$borough_number{'3030'} = '0602'; $type{'3030'} = 'ST'; $location{'3030'} = 'DRAMMEN';
1729$borough_number{'3031'} = '0602'; $type{'3031'} = 'ST'; $location{'3031'} = 'DRAMMEN';
1730$borough_number{'3032'} = '0602'; $type{'3032'} = 'ST'; $location{'3032'} = 'DRAMMEN';
1731$borough_number{'3033'} = '0602'; $type{'3033'} = 'ST'; $location{'3033'} = 'DRAMMEN';
1732$borough_number{'3034'} = '0602'; $type{'3034'} = 'STBX'; $location{'3034'} = 'DRAMMEN';
1733$borough_number{'3035'} = '0602'; $type{'3035'} = 'ST'; $location{'3035'} = 'DRAMMEN';
1734$borough_number{'3036'} = '0602'; $type{'3036'} = 'ST'; $location{'3036'} = 'DRAMMEN';
1735$borough_number{'3037'} = '0602'; $type{'3037'} = 'ST'; $location{'3037'} = 'DRAMMEN';
1736$borough_number{'3038'} = '0602'; $type{'3038'} = 'STBX'; $location{'3038'} = 'DRAMMEN';
1737$borough_number{'3039'} = '0602'; $type{'3039'} = 'ST'; $location{'3039'} = 'DRAMMEN';
1738$borough_number{'3040'} = '0602'; $type{'3040'} = 'ST'; $location{'3040'} = 'DRAMMEN';
1739$borough_number{'3041'} = '0602'; $type{'3041'} = 'ST'; $location{'3041'} = 'DRAMMEN';
1740$borough_number{'3042'} = '0602'; $type{'3042'} = 'ST'; $location{'3042'} = 'DRAMMEN';
1741$borough_number{'3043'} = '0602'; $type{'3043'} = 'ST'; $location{'3043'} = 'DRAMMEN';
1742$borough_number{'3044'} = '0602'; $type{'3044'} = 'ST'; $location{'3044'} = 'DRAMMEN';
1743$borough_number{'3045'} = '0602'; $type{'3045'} = 'ST'; $location{'3045'} = 'DRAMMEN';
1744$borough_number{'3046'} = '0602'; $type{'3046'} = 'ST'; $location{'3046'} = 'DRAMMEN';
1745$borough_number{'3047'} = '0602'; $type{'3047'} = 'ST'; $location{'3047'} = 'DRAMMEN';
1746$borough_number{'3048'} = '0602'; $type{'3048'} = 'ST'; $location{'3048'} = 'DRAMMEN';
1747$borough_number{'3050'} = '0625'; $type{'3050'} = 'ST'; $location{'3050'} = 'MJ�NDALEN';
1748$borough_number{'3051'} = '0625'; $type{'3051'} = 'BX'; $location{'3051'} = 'MJ�NDALEN';
1749$borough_number{'3053'} = '0625'; $type{'3053'} = 'ST'; $location{'3053'} = 'STEINBERG';
1750$borough_number{'3054'} = '0625'; $type{'3054'} = 'BX'; $location{'3054'} = 'KROKSTADELVA';
1751$borough_number{'3055'} = '0625'; $type{'3055'} = 'ST'; $location{'3055'} = 'KROKSTADELVA';
1752$borough_number{'3056'} = '0625'; $type{'3056'} = 'BX'; $location{'3056'} = 'SOLBERGELVA';
1753$borough_number{'3057'} = '0625'; $type{'3057'} = 'ST'; $location{'3057'} = 'SOLBERGELVA';
1754$borough_number{'3058'} = '0625'; $type{'3058'} = 'ST'; $location{'3058'} = 'SOLBERGMOEN';
1755$borough_number{'3060'} = '0711'; $type{'3060'} = 'ST'; $location{'3060'} = 'SVELVIK';
1756$borough_number{'3061'} = '0711'; $type{'3061'} = 'BX'; $location{'3061'} = 'SVELVIK';
1757$borough_number{'3070'} = '0713'; $type{'3070'} = 'ST'; $location{'3070'} = 'SANDE I VESTFOLD';
1758$borough_number{'3071'} = '0713'; $type{'3071'} = 'BX'; $location{'3071'} = 'SANDE I VESTFOLD';
1759$borough_number{'3075'} = '0711'; $type{'3075'} = 'ST'; $location{'3075'} = 'BERGER';
1760$borough_number{'3080'} = '0702'; $type{'3080'} = 'ST'; $location{'3080'} = 'HOLMESTRAND';
1761$borough_number{'3081'} = '0702'; $type{'3081'} = 'BX'; $location{'3081'} = 'HOLMESTRAND';
1762$borough_number{'3087'} = '0702'; $type{'3087'} = 'BX'; $location{'3087'} = 'BOTNE';
1763$borough_number{'3088'} = '0702'; $type{'3088'} = 'BX'; $location{'3088'} = 'BOTNE';
1764$borough_number{'3090'} = '0714'; $type{'3090'} = 'STBX'; $location{'3090'} = 'HOF';
1765$borough_number{'3092'} = '0714'; $type{'3092'} = 'ST'; $location{'3092'} = 'SUNDBYFOSS';
1766$borough_number{'3095'} = '0714'; $type{'3095'} = 'STBX'; $location{'3095'} = 'EIDSFOSS';
1767$borough_number{'3101'} = '0704'; $type{'3101'} = 'BX'; $location{'3101'} = 'T�NSBERG';
1768$borough_number{'3103'} = '0704'; $type{'3103'} = 'BX'; $location{'3103'} = 'T�NSBERG';
1769$borough_number{'3104'} = '0704'; $type{'3104'} = 'BX'; $location{'3104'} = 'T�NSBERG';
1770$borough_number{'3105'} = '0704'; $type{'3105'} = 'BX'; $location{'3105'} = 'T�NSBERG';
1771$borough_number{'3106'} = '0722'; $type{'3106'} = 'BX'; $location{'3106'} = 'T�NSBERG';
1772$borough_number{'3107'} = '0704'; $type{'3107'} = 'BX'; $location{'3107'} = 'SEM';
1773$borough_number{'3108'} = '0720'; $type{'3108'} = 'BX'; $location{'3108'} = 'VEAR';
1774$borough_number{'3109'} = '0704'; $type{'3109'} = 'BX'; $location{'3109'} = 'T�NSBERG';
1775$borough_number{'3110'} = '0704'; $type{'3110'} = 'ST'; $location{'3110'} = 'T�NSBERG';
1776$borough_number{'3111'} = '0704'; $type{'3111'} = 'ST'; $location{'3111'} = 'T�NSBERG';
1777$borough_number{'3112'} = '0704'; $type{'3112'} = 'ST'; $location{'3112'} = 'T�NSBERG';
1778$borough_number{'3113'} = '0704'; $type{'3113'} = 'STBX'; $location{'3113'} = 'T�NSBERG';
1779$borough_number{'3114'} = '0704'; $type{'3114'} = 'ST'; $location{'3114'} = 'T�NSBERG';
1780$borough_number{'3115'} = '0722'; $type{'3115'} = 'ST'; $location{'3115'} = 'T�NSBERG';
1781$borough_number{'3116'} = '0704'; $type{'3116'} = 'ST'; $location{'3116'} = 'T�NSBERG';
1782$borough_number{'3117'} = '0704'; $type{'3117'} = 'ST'; $location{'3117'} = 'T�NSBERG';
1783$borough_number{'3118'} = '0704'; $type{'3118'} = 'ST'; $location{'3118'} = 'T�NSBERG';
1784$borough_number{'3119'} = '0704'; $type{'3119'} = 'BX'; $location{'3119'} = 'T�NSBERG';
1785$borough_number{'3120'} = '0722'; $type{'3120'} = 'ST'; $location{'3120'} = 'T�NSBERG';
1786$borough_number{'3121'} = '0722'; $type{'3121'} = 'ST'; $location{'3121'} = 'T�NSBERG';
1787$borough_number{'3122'} = '0704'; $type{'3122'} = 'ST'; $location{'3122'} = 'T�NSBERG';
1788$borough_number{'3123'} = '0704'; $type{'3123'} = 'ST'; $location{'3123'} = 'T�NSBERG';
1789$borough_number{'3124'} = '0704'; $type{'3124'} = 'ST'; $location{'3124'} = 'T�NSBERG';
1790$borough_number{'3125'} = '0704'; $type{'3125'} = 'ST'; $location{'3125'} = 'T�NSBERG';
1791$borough_number{'3126'} = '0704'; $type{'3126'} = 'ST'; $location{'3126'} = 'T�NSBERG';
1792$borough_number{'3131'} = '0722'; $type{'3131'} = 'BX'; $location{'3131'} = 'HUS�YSUND';
1793$borough_number{'3132'} = '0722'; $type{'3132'} = 'ST'; $location{'3132'} = 'HUS�YSUND';
1794$borough_number{'3133'} = '0722'; $type{'3133'} = 'ST'; $location{'3133'} = 'DUKEN';
1795$borough_number{'3135'} = '0722'; $type{'3135'} = 'ST'; $location{'3135'} = 'TOR�D';
1796$borough_number{'3137'} = '0722'; $type{'3137'} = 'BX'; $location{'3137'} = 'TOR�D';
1797$borough_number{'3138'} = '0722'; $type{'3138'} = 'STBX'; $location{'3138'} = 'SKALLESTAD';
1798$borough_number{'3140'} = '0722'; $type{'3140'} = 'ST'; $location{'3140'} = 'BORGHEIM';
1799$borough_number{'3141'} = '0722'; $type{'3141'} = 'BX'; $location{'3141'} = 'KJ�PMANNSKJ�R';
1800$borough_number{'3142'} = '0722'; $type{'3142'} = 'ST'; $location{'3142'} = 'VESTSKOGEN';
1801$borough_number{'3143'} = '0722'; $type{'3143'} = 'ST'; $location{'3143'} = 'KJ�PMANNSKJ�R';
1802$borough_number{'3144'} = '0722'; $type{'3144'} = 'STBX'; $location{'3144'} = 'VEIERLAND';
1803$borough_number{'3145'} = '0723'; $type{'3145'} = 'ST'; $location{'3145'} = 'TJ�ME';
1804$borough_number{'3147'} = '0723'; $type{'3147'} = 'ST'; $location{'3147'} = 'VERDENS ENDE';
1805$borough_number{'3148'} = '0723'; $type{'3148'} = 'ST'; $location{'3148'} = 'HVASSER';
1806$borough_number{'3150'} = '0704'; $type{'3150'} = 'ST'; $location{'3150'} = 'TOLVSR�D';
1807$borough_number{'3151'} = '0704'; $type{'3151'} = 'ST'; $location{'3151'} = 'TOLVSR�D';
1808$borough_number{'3152'} = '0704'; $type{'3152'} = 'ST'; $location{'3152'} = 'TOLVSR�D';
1809$borough_number{'3153'} = '0704'; $type{'3153'} = 'ST'; $location{'3153'} = 'TOLVSR�D';
1810$borough_number{'3154'} = '0704'; $type{'3154'} = 'ST'; $location{'3154'} = 'TOLVSR�D';
1811$borough_number{'3157'} = '0704'; $type{'3157'} = 'ST'; $location{'3157'} = 'BARK�KER';
1812$borough_number{'3158'} = '0719'; $type{'3158'} = 'ST'; $location{'3158'} = 'ANDEBU';
1813$borough_number{'3159'} = '0720'; $type{'3159'} = 'STBX'; $location{'3159'} = 'MELSOMVIK';
1814$borough_number{'3160'} = '0720'; $type{'3160'} = 'ST'; $location{'3160'} = 'STOKKE';
1815$borough_number{'3161'} = '0720'; $type{'3161'} = 'BX'; $location{'3161'} = 'STOKKE';
1816$borough_number{'3162'} = '0719'; $type{'3162'} = 'BX'; $location{'3162'} = 'ANDEBU';
1817$borough_number{'3163'} = '0722'; $type{'3163'} = 'BX'; $location{'3163'} = 'BORGHEIM';
1818$borough_number{'3164'} = '0716'; $type{'3164'} = 'BX'; $location{'3164'} = 'REVETAL';
1819$borough_number{'3165'} = '0723'; $type{'3165'} = 'BX'; $location{'3165'} = 'TJ�ME';
1820$borough_number{'3166'} = '0704'; $type{'3166'} = 'BX'; $location{'3166'} = 'TOLVSR�D';
1821$borough_number{'3167'} = '0701'; $type{'3167'} = 'BX'; $location{'3167'} = '�SG�RDSTRAND';
1822$borough_number{'3168'} = '0720'; $type{'3168'} = 'BX'; $location{'3168'} = 'MELSOMVIK';
1823$borough_number{'3169'} = '0720'; $type{'3169'} = 'IO'; $location{'3169'} = 'STOKKE';
1824$borough_number{'3170'} = '0704'; $type{'3170'} = 'ST'; $location{'3170'} = 'SEM';
1825$borough_number{'3171'} = '0704'; $type{'3171'} = 'ST'; $location{'3171'} = 'SEM';
1826$borough_number{'3172'} = '0704'; $type{'3172'} = 'ST'; $location{'3172'} = 'VEAR';
1827$borough_number{'3173'} = '0720'; $type{'3173'} = 'ST'; $location{'3173'} = 'VEAR';
1828$borough_number{'3174'} = '0716'; $type{'3174'} = 'ST'; $location{'3174'} = 'REVETAL';
1829$borough_number{'3175'} = '0716'; $type{'3175'} = 'ST'; $location{'3175'} = 'RAMNES';
1830$borough_number{'3177'} = '0716'; $type{'3177'} = 'BX'; $location{'3177'} = 'V�LE';
1831$borough_number{'3178'} = '0716'; $type{'3178'} = 'ST'; $location{'3178'} = 'V�LE';
1832$borough_number{'3179'} = '0701'; $type{'3179'} = 'ST'; $location{'3179'} = '�SG�RDSTRAND';
1833$borough_number{'3180'} = '0701'; $type{'3180'} = 'STBX'; $location{'3180'} = 'NYKIRKE';
1834$borough_number{'3181'} = '0701'; $type{'3181'} = 'ST'; $location{'3181'} = 'HORTEN';
1835$borough_number{'3182'} = '0701'; $type{'3182'} = 'ST'; $location{'3182'} = 'HORTEN';
1836$borough_number{'3183'} = '0701'; $type{'3183'} = 'ST'; $location{'3183'} = 'HORTEN';
1837$borough_number{'3184'} = '0701'; $type{'3184'} = 'STBX'; $location{'3184'} = 'BORRE';
1838$borough_number{'3185'} = '0701'; $type{'3185'} = 'ST'; $location{'3185'} = 'SKOPPUM';
1839$borough_number{'3186'} = '0701'; $type{'3186'} = 'ST'; $location{'3186'} = 'HORTEN';
1840$borough_number{'3187'} = '0701'; $type{'3187'} = 'ST'; $location{'3187'} = 'HORTEN';
1841$borough_number{'3188'} = '0701'; $type{'3188'} = 'ST'; $location{'3188'} = 'HORTEN';
1842$borough_number{'3189'} = '0701'; $type{'3189'} = 'ST'; $location{'3189'} = 'HORTEN';
1843$borough_number{'3191'} = '0701'; $type{'3191'} = 'BX'; $location{'3191'} = 'HORTEN';
1844$borough_number{'3192'} = '0701'; $type{'3192'} = 'BX'; $location{'3192'} = 'HORTEN';
1845$borough_number{'3193'} = '0701'; $type{'3193'} = 'BX'; $location{'3193'} = 'HORTEN';
1846$borough_number{'3194'} = '0701'; $type{'3194'} = 'BX'; $location{'3194'} = 'HORTEN';
1847$borough_number{'3195'} = '0701'; $type{'3195'} = 'BX'; $location{'3195'} = 'SKOPPUM';
1848$borough_number{'3196'} = '0701'; $type{'3196'} = 'BX'; $location{'3196'} = 'HORTEN';
1849$borough_number{'3197'} = '0701'; $type{'3197'} = 'IO'; $location{'3197'} = 'HORTEN';
1850$borough_number{'3201'} = '0706'; $type{'3201'} = 'BX'; $location{'3201'} = 'SANDEFJORD';
1851$borough_number{'3202'} = '0706'; $type{'3202'} = 'BX'; $location{'3202'} = 'SANDEFJORD';
1852$borough_number{'3203'} = '0706'; $type{'3203'} = 'BX'; $location{'3203'} = 'SANDEFJORD';
1853$borough_number{'3204'} = '0706'; $type{'3204'} = 'BX'; $location{'3204'} = 'SANDEFJORD';
1854$borough_number{'3205'} = '0706'; $type{'3205'} = 'BX'; $location{'3205'} = 'SANDEFJORD';
1855$borough_number{'3206'} = '0706'; $type{'3206'} = 'BX'; $location{'3206'} = 'SANDEFJORD';
1856$borough_number{'3207'} = '0706'; $type{'3207'} = 'BX'; $location{'3207'} = 'SANDEFJORD';
1857$borough_number{'3208'} = '0706'; $type{'3208'} = 'ST'; $location{'3208'} = 'SANDEFJORD';
1858$borough_number{'3209'} = '0706'; $type{'3209'} = 'STBX'; $location{'3209'} = 'SANDEFJORD';
1859$borough_number{'3210'} = '0706'; $type{'3210'} = 'ST'; $location{'3210'} = 'SANDEFJORD';
1860$borough_number{'3211'} = '0706'; $type{'3211'} = 'ST'; $location{'3211'} = 'SANDEFJORD';
1861$borough_number{'3212'} = '0706'; $type{'3212'} = 'ST'; $location{'3212'} = 'SANDEFJORD';
1862$borough_number{'3213'} = '0706'; $type{'3213'} = 'ST'; $location{'3213'} = 'SANDEFJORD';
1863$borough_number{'3214'} = '0706'; $type{'3214'} = 'ST'; $location{'3214'} = 'SANDEFJORD';
1864$borough_number{'3215'} = '0706'; $type{'3215'} = 'ST'; $location{'3215'} = 'SANDEFJORD';
1865$borough_number{'3216'} = '0706'; $type{'3216'} = 'ST'; $location{'3216'} = 'SANDEFJORD';
1866$borough_number{'3217'} = '0706'; $type{'3217'} = 'ST'; $location{'3217'} = 'SANDEFJORD';
1867$borough_number{'3218'} = '0706'; $type{'3218'} = 'ST'; $location{'3218'} = 'SANDEFJORD';
1868$borough_number{'3219'} = '0706'; $type{'3219'} = 'ST'; $location{'3219'} = 'SANDEFJORD';
1869$borough_number{'3220'} = '0706'; $type{'3220'} = 'ST'; $location{'3220'} = 'SANDEFJORD';
1870$borough_number{'3221'} = '0706'; $type{'3221'} = 'ST'; $location{'3221'} = 'SANDEFJORD';
1871$borough_number{'3222'} = '0706'; $type{'3222'} = 'ST'; $location{'3222'} = 'SANDEFJORD';
1872$borough_number{'3223'} = '0706'; $type{'3223'} = 'ST'; $location{'3223'} = 'SANDEFJORD';
1873$borough_number{'3224'} = '0706'; $type{'3224'} = 'ST'; $location{'3224'} = 'SANDEFJORD';
1874$borough_number{'3225'} = '0706'; $type{'3225'} = 'ST'; $location{'3225'} = 'SANDEFJORD';
1875$borough_number{'3226'} = '0706'; $type{'3226'} = 'STBX'; $location{'3226'} = 'SANDEFJORD';
1876$borough_number{'3227'} = '0706'; $type{'3227'} = 'ST'; $location{'3227'} = 'SANDEFJORD';
1877$borough_number{'3228'} = '0706'; $type{'3228'} = 'ST'; $location{'3228'} = 'SANDEFJORD';
1878$borough_number{'3229'} = '0706'; $type{'3229'} = 'ST'; $location{'3229'} = 'SANDEFJORD';
1879$borough_number{'3230'} = '0706'; $type{'3230'} = 'ST'; $location{'3230'} = 'SANDEFJORD';
1880$borough_number{'3231'} = '0706'; $type{'3231'} = 'ST'; $location{'3231'} = 'SANDEFJORD';
1881$borough_number{'3232'} = '0706'; $type{'3232'} = 'ST'; $location{'3232'} = 'SANDEFJORD';
1882$borough_number{'3233'} = '0706'; $type{'3233'} = 'ST'; $location{'3233'} = 'SANDEFJORD';
1883$borough_number{'3234'} = '0706'; $type{'3234'} = 'ST'; $location{'3234'} = 'SANDEFJORD';
1884$borough_number{'3235'} = '0706'; $type{'3235'} = 'ST'; $location{'3235'} = 'SANDEFJORD';
1885$borough_number{'3236'} = '0706'; $type{'3236'} = 'ST'; $location{'3236'} = 'SANDEFJORD';
1886$borough_number{'3237'} = '0706'; $type{'3237'} = 'ST'; $location{'3237'} = 'SANDEFJORD';
1887$borough_number{'3238'} = '0706'; $type{'3238'} = 'ST'; $location{'3238'} = 'SANDEFJORD';
1888$borough_number{'3239'} = '0706'; $type{'3239'} = 'ST'; $location{'3239'} = 'SANDEFJORD';
1889$borough_number{'3240'} = '0706'; $type{'3240'} = 'BX'; $location{'3240'} = 'SANDEFJORD';
1890$borough_number{'3241'} = '0706'; $type{'3241'} = 'ST'; $location{'3241'} = 'SANDEFJORD';
1891$borough_number{'3242'} = '0706'; $type{'3242'} = 'ST'; $location{'3242'} = 'SANDEFJORD';
1892$borough_number{'3243'} = '0719'; $type{'3243'} = 'ST'; $location{'3243'} = 'KODAL';
1893$borough_number{'3244'} = '0706'; $type{'3244'} = 'ST'; $location{'3244'} = 'SANDEFJORD';
1894$borough_number{'3245'} = '0719'; $type{'3245'} = 'BX'; $location{'3245'} = 'KODAL';
1895$borough_number{'3246'} = '0706'; $type{'3246'} = 'BX'; $location{'3246'} = 'SANDEFJORD';
1896$borough_number{'3247'} = '0706'; $type{'3247'} = 'IO'; $location{'3247'} = 'SANDEFJORD';
1897$borough_number{'3248'} = '0706'; $type{'3248'} = 'IO'; $location{'3248'} = 'SANDEFJORD';
1898$borough_number{'3251'} = '0709'; $type{'3251'} = 'BX'; $location{'3251'} = 'LARVIK';
1899$borough_number{'3252'} = '0709'; $type{'3252'} = 'BX'; $location{'3252'} = 'LARVIK';
1900$borough_number{'3253'} = '0709'; $type{'3253'} = 'BX'; $location{'3253'} = 'LARVIK';
1901$borough_number{'3254'} = '0709'; $type{'3254'} = 'BX'; $location{'3254'} = 'LARVIK';
1902$borough_number{'3255'} = '0709'; $type{'3255'} = 'BX'; $location{'3255'} = 'LARVIK';
1903$borough_number{'3256'} = '0709'; $type{'3256'} = 'ST'; $location{'3256'} = 'LARVIK';
1904$borough_number{'3257'} = '0709'; $type{'3257'} = 'ST'; $location{'3257'} = 'LARVIK';
1905$borough_number{'3258'} = '0709'; $type{'3258'} = 'ST'; $location{'3258'} = 'LARVIK';
1906$borough_number{'3259'} = '0709'; $type{'3259'} = 'ST'; $location{'3259'} = 'LARVIK';
1907$borough_number{'3260'} = '0709'; $type{'3260'} = 'ST'; $location{'3260'} = 'LARVIK';
1908$borough_number{'3261'} = '0709'; $type{'3261'} = 'ST'; $location{'3261'} = 'LARVIK';
1909$borough_number{'3262'} = '0709'; $type{'3262'} = 'ST'; $location{'3262'} = 'LARVIK';
1910$borough_number{'3263'} = '0709'; $type{'3263'} = 'ST'; $location{'3263'} = 'LARVIK';
1911$borough_number{'3264'} = '0709'; $type{'3264'} = 'ST'; $location{'3264'} = 'LARVIK';
1912$borough_number{'3265'} = '0709'; $type{'3265'} = 'ST'; $location{'3265'} = 'LARVIK';
1913$borough_number{'3267'} = '0709'; $type{'3267'} = 'ST'; $location{'3267'} = 'LARVIK';
1914$borough_number{'3268'} = '0709'; $type{'3268'} = 'ST'; $location{'3268'} = 'LARVIK';
1915$borough_number{'3269'} = '0709'; $type{'3269'} = 'ST'; $location{'3269'} = 'LARVIK';
1916$borough_number{'3270'} = '0709'; $type{'3270'} = 'ST'; $location{'3270'} = 'LARVIK';
1917$borough_number{'3271'} = '0709'; $type{'3271'} = 'ST'; $location{'3271'} = 'LARVIK';
1918$borough_number{'3274'} = '0709'; $type{'3274'} = 'ST'; $location{'3274'} = 'LARVIK';
1919$borough_number{'3275'} = '0728'; $type{'3275'} = 'ST'; $location{'3275'} = 'SVARSTAD';
1920$borough_number{'3276'} = '0728'; $type{'3276'} = 'BX'; $location{'3276'} = 'SVARSTAD';
1921$borough_number{'3277'} = '0728'; $type{'3277'} = 'ST'; $location{'3277'} = 'STEINSHOLT';
1922$borough_number{'3280'} = '0709'; $type{'3280'} = 'ST'; $location{'3280'} = 'TJODALYNG';
1923$borough_number{'3281'} = '0709'; $type{'3281'} = 'BX'; $location{'3281'} = 'TJODALYNG';
1924$borough_number{'3282'} = '0709'; $type{'3282'} = 'ST'; $location{'3282'} = 'KVELDE';
1925$borough_number{'3284'} = '0709'; $type{'3284'} = 'BX'; $location{'3284'} = 'KVELDE';
1926$borough_number{'3285'} = '0709'; $type{'3285'} = 'BX'; $location{'3285'} = 'LARVIK';
1927$borough_number{'3290'} = '0709'; $type{'3290'} = 'ST'; $location{'3290'} = 'STAVERN';
1928$borough_number{'3291'} = '0709'; $type{'3291'} = 'BX'; $location{'3291'} = 'STAVERN';
1929$borough_number{'3292'} = '0709'; $type{'3292'} = 'ST'; $location{'3292'} = 'STAVERN';
1930$borough_number{'3294'} = '0709'; $type{'3294'} = 'ST'; $location{'3294'} = 'STAVERN';
1931$borough_number{'3295'} = '0709'; $type{'3295'} = 'ST'; $location{'3295'} = 'HELGEROA';
1932$borough_number{'3296'} = '0709'; $type{'3296'} = 'ST'; $location{'3296'} = 'NEVLUNGHAMN';
1933$borough_number{'3297'} = '0709'; $type{'3297'} = 'BX'; $location{'3297'} = 'HELGEROA';
1934$borough_number{'3300'} = '0624'; $type{'3300'} = 'ST'; $location{'3300'} = 'HOKKSUND';
1935$borough_number{'3301'} = '0624'; $type{'3301'} = 'BX'; $location{'3301'} = 'HOKKSUND';
1936$borough_number{'3320'} = '0624'; $type{'3320'} = 'ST'; $location{'3320'} = 'VESTFOSSEN';
1937$borough_number{'3321'} = '0624'; $type{'3321'} = 'BX'; $location{'3321'} = 'VESTFOSSEN';
1938$borough_number{'3322'} = '0624'; $type{'3322'} = 'ST'; $location{'3322'} = 'DARBU';
1939$borough_number{'3330'} = '0624'; $type{'3330'} = 'ST'; $location{'3330'} = 'SKOTSELV';
1940$borough_number{'3331'} = '0624'; $type{'3331'} = 'BX'; $location{'3331'} = 'SKOTSELV';
1941$borough_number{'3340'} = '0623'; $type{'3340'} = 'ST'; $location{'3340'} = '�MOT';
1942$borough_number{'3341'} = '0623'; $type{'3341'} = 'BX'; $location{'3341'} = '�MOT';
1943$borough_number{'3342'} = '0623'; $type{'3342'} = 'BX'; $location{'3342'} = '�MOT';
1944$borough_number{'3350'} = '0621'; $type{'3350'} = 'ST'; $location{'3350'} = 'PRESTFOSS';
1945$borough_number{'3351'} = '0621'; $type{'3351'} = 'BX'; $location{'3351'} = 'PRESTFOSS';
1946$borough_number{'3355'} = '0621'; $type{'3355'} = 'ST'; $location{'3355'} = 'SOLUMSMOEN';
1947$borough_number{'3358'} = '0621'; $type{'3358'} = 'ST'; $location{'3358'} = 'NEDRE EGGEDAL';
1948$borough_number{'3359'} = '0621'; $type{'3359'} = 'STBX'; $location{'3359'} = 'EGGEDAL';
1949$borough_number{'3360'} = '0623'; $type{'3360'} = 'ST'; $location{'3360'} = 'GEITHUS';
1950$borough_number{'3361'} = '0623'; $type{'3361'} = 'BX'; $location{'3361'} = 'GEITHUS';
1951$borough_number{'3370'} = '0623'; $type{'3370'} = 'ST'; $location{'3370'} = 'VIKERSUND';
1952$borough_number{'3371'} = '0623'; $type{'3371'} = 'BX'; $location{'3371'} = 'VIKERSUND';
1953$borough_number{'3387'} = '0623'; $type{'3387'} = 'ST'; $location{'3387'} = 'SNARUM';
1954$borough_number{'3400'} = '0626'; $type{'3400'} = 'ST'; $location{'3400'} = 'LIER';
1955$borough_number{'3401'} = '0626'; $type{'3401'} = 'BX'; $location{'3401'} = 'LIER';
1956$borough_number{'3407'} = '0626'; $type{'3407'} = 'BX'; $location{'3407'} = 'TRANBY';
1957$borough_number{'3408'} = '0626'; $type{'3408'} = 'ST'; $location{'3408'} = 'TRANBY';
1958$borough_number{'3410'} = '0626'; $type{'3410'} = 'ST'; $location{'3410'} = 'SYLLING';
1959$borough_number{'3411'} = '0626'; $type{'3411'} = 'BX'; $location{'3411'} = 'SYLLING';
1960$borough_number{'3412'} = '0626'; $type{'3412'} = 'BX'; $location{'3412'} = 'LIERSTRANDA';
1961$borough_number{'3420'} = '0626'; $type{'3420'} = 'ST'; $location{'3420'} = 'LIERSKOGEN';
1962$borough_number{'3421'} = '0626'; $type{'3421'} = 'BX'; $location{'3421'} = 'LIERSKOGEN';
1963$borough_number{'3425'} = '0626'; $type{'3425'} = 'ST'; $location{'3425'} = 'REISTAD';
1964$borough_number{'3428'} = '0626'; $type{'3428'} = 'BX'; $location{'3428'} = 'LIER';
1965$borough_number{'3430'} = '0627'; $type{'3430'} = 'ST'; $location{'3430'} = 'SPIKKESTAD';
1966$borough_number{'3431'} = '0627'; $type{'3431'} = 'BX'; $location{'3431'} = 'SPIKKESTAD';
1967$borough_number{'3440'} = '0627'; $type{'3440'} = 'ST'; $location{'3440'} = 'R�YKEN';
1968$borough_number{'3441'} = '0627'; $type{'3441'} = 'BX'; $location{'3441'} = 'R�YKEN';
1969$borough_number{'3442'} = '0627'; $type{'3442'} = 'ST'; $location{'3442'} = 'HYGGEN';
1970$borough_number{'3470'} = '0627'; $type{'3470'} = 'ST'; $location{'3470'} = 'SLEMMESTAD';
1971$borough_number{'3471'} = '0627'; $type{'3471'} = 'BX'; $location{'3471'} = 'SLEMMESTAD';
1972$borough_number{'3472'} = '0627'; $type{'3472'} = 'ST'; $location{'3472'} = 'B�DALEN';
1973$borough_number{'3474'} = '0627'; $type{'3474'} = 'ST'; $location{'3474'} = '�ROS';
1974$borough_number{'3475'} = '0628'; $type{'3475'} = 'ST'; $location{'3475'} = 'S�TRE';
1975$borough_number{'3476'} = '0628'; $type{'3476'} = 'BX'; $location{'3476'} = 'S�TRE';
1976$borough_number{'3477'} = '0627'; $type{'3477'} = 'ST'; $location{'3477'} = 'B�TST�';
1977$borough_number{'3478'} = '0627'; $type{'3478'} = 'STBX'; $location{'3478'} = 'N�RSNES';
1978$borough_number{'3480'} = '0628'; $type{'3480'} = 'STBX'; $location{'3480'} = 'FILTVET';
1979$borough_number{'3481'} = '0628'; $type{'3481'} = 'BX'; $location{'3481'} = 'TOFTE';
1980$borough_number{'3482'} = '0628'; $type{'3482'} = 'ST'; $location{'3482'} = 'TOFTE';
1981$borough_number{'3483'} = '0628'; $type{'3483'} = 'ST'; $location{'3483'} = 'KANA';
1982$borough_number{'3484'} = '0628'; $type{'3484'} = 'ST'; $location{'3484'} = 'HOLMSBU';
1983$borough_number{'3490'} = '0628'; $type{'3490'} = 'ST'; $location{'3490'} = 'KLOKKARSTUA';
1984$borough_number{'3491'} = '0628'; $type{'3491'} = 'BX'; $location{'3491'} = 'KLOKKARSTUA';
1985$borough_number{'3501'} = '0605'; $type{'3501'} = 'BX'; $location{'3501'} = 'H�NEFOSS';
1986$borough_number{'3502'} = '0605'; $type{'3502'} = 'BX'; $location{'3502'} = 'H�NEFOSS';
1987$borough_number{'3503'} = '0605'; $type{'3503'} = 'BX'; $location{'3503'} = 'H�NEFOSS';
1988$borough_number{'3504'} = '0605'; $type{'3504'} = 'SX'; $location{'3504'} = 'H�NEFOSS';
1989$borough_number{'3505'} = '0605'; $type{'3505'} = 'IO'; $location{'3505'} = 'H�NEFOSS';
1990$borough_number{'3506'} = '0605'; $type{'3506'} = 'IO'; $location{'3506'} = 'H�NEFOSS';
1991$borough_number{'3507'} = '0605'; $type{'3507'} = 'IO'; $location{'3507'} = 'H�NEFOSS';
1992$borough_number{'3510'} = '0605'; $type{'3510'} = 'ST'; $location{'3510'} = 'H�NEFOSS';
1993$borough_number{'3511'} = '0605'; $type{'3511'} = 'ST'; $location{'3511'} = 'H�NEFOSS';
1994$borough_number{'3512'} = '0605'; $type{'3512'} = 'ST'; $location{'3512'} = 'H�NEFOSS';
1995$borough_number{'3513'} = '0605'; $type{'3513'} = 'ST'; $location{'3513'} = 'H�NEFOSS';
1996$borough_number{'3514'} = '0605'; $type{'3514'} = 'ST'; $location{'3514'} = 'H�NEFOSS';
1997$borough_number{'3515'} = '0605'; $type{'3515'} = 'ST'; $location{'3515'} = 'H�NEFOSS';
1998$borough_number{'3516'} = '0605'; $type{'3516'} = 'ST'; $location{'3516'} = 'H�NEFOSS';
1999$borough_number{'3517'} = '0605'; $type{'3517'} = 'ST'; $location{'3517'} = 'H�NEFOSS';
2000$borough_number{'3518'} = '0605'; $type{'3518'} = 'ST'; $location{'3518'} = 'H�NEFOSS';
2001$borough_number{'3519'} = '0605'; $type{'3519'} = 'ST'; $location{'3519'} = 'H�NEFOSS';
2002$borough_number{'3520'} = '0532'; $type{'3520'} = 'ST'; $location{'3520'} = 'JEVNAKER';
2003$borough_number{'3521'} = '0532'; $type{'3521'} = 'BX'; $location{'3521'} = 'JEVNAKER';
2004$borough_number{'3522'} = '0534'; $type{'3522'} = 'ST'; $location{'3522'} = 'BJONEROA';
2005$borough_number{'3523'} = '0605'; $type{'3523'} = 'BX'; $location{'3523'} = 'NES I �DAL';
2006$borough_number{'3524'} = '0605'; $type{'3524'} = 'ST'; $location{'3524'} = 'NES I �DAL';
2007$borough_number{'3525'} = '0605'; $type{'3525'} = 'ST'; $location{'3525'} = 'HALLINGBY';
2008$borough_number{'3526'} = '0605'; $type{'3526'} = 'BX'; $location{'3526'} = 'HALLINGBY';
2009$borough_number{'3528'} = '0540'; $type{'3528'} = 'ST'; $location{'3528'} = 'HEDALEN';
2010$borough_number{'3529'} = '0612'; $type{'3529'} = 'BX'; $location{'3529'} = 'R�YSE';
2011$borough_number{'3530'} = '0612'; $type{'3530'} = 'ST'; $location{'3530'} = 'R�YSE';
2012$borough_number{'3531'} = '0612'; $type{'3531'} = 'STBX'; $location{'3531'} = 'KROKKLEIVA';
2013$borough_number{'3533'} = '0605'; $type{'3533'} = 'STBX'; $location{'3533'} = 'TYRISTRAND';
2014$borough_number{'3534'} = '0605'; $type{'3534'} = 'STBX'; $location{'3534'} = 'SOKNA';
2015$borough_number{'3535'} = '0622'; $type{'3535'} = 'ST'; $location{'3535'} = 'KR�DEREN';
2016$borough_number{'3536'} = '0622'; $type{'3536'} = 'STBX'; $location{'3536'} = 'NORESUND';
2017$borough_number{'3537'} = '0622'; $type{'3537'} = 'BX'; $location{'3537'} = 'KR�DEREN';
2018$borough_number{'3538'} = '0612'; $type{'3538'} = 'ST'; $location{'3538'} = 'SOLLIH�GDA';
2019$borough_number{'3539'} = '0615'; $type{'3539'} = 'STBX'; $location{'3539'} = 'FL�';
2020$borough_number{'3540'} = '0616'; $type{'3540'} = 'ST'; $location{'3540'} = 'NESBYEN';
2021$borough_number{'3541'} = '0616'; $type{'3541'} = 'BX'; $location{'3541'} = 'NESBYEN';
2022$borough_number{'3550'} = '0617'; $type{'3550'} = 'ST'; $location{'3550'} = 'GOL';
2023$borough_number{'3551'} = '0617'; $type{'3551'} = 'BX'; $location{'3551'} = 'GOL';
2024$borough_number{'3560'} = '0618'; $type{'3560'} = 'ST'; $location{'3560'} = 'HEMSEDAL';
2025$borough_number{'3561'} = '0618'; $type{'3561'} = 'BX'; $location{'3561'} = 'HEMSEDAL';
2026$borough_number{'3570'} = '0619'; $type{'3570'} = 'ST'; $location{'3570'} = '�L';
2027$borough_number{'3571'} = '0619'; $type{'3571'} = 'BX'; $location{'3571'} = '�L';
2028$borough_number{'3575'} = '0620'; $type{'3575'} = 'BX'; $location{'3575'} = 'HOL';
2029$borough_number{'3576'} = '0620'; $type{'3576'} = 'ST'; $location{'3576'} = 'HOL';
2030$borough_number{'3577'} = '0620'; $type{'3577'} = 'ST'; $location{'3577'} = 'HOVET';
2031$borough_number{'3579'} = '0619'; $type{'3579'} = 'ST'; $location{'3579'} = 'TORPO';
2032$borough_number{'3580'} = '0620'; $type{'3580'} = 'ST'; $location{'3580'} = 'GEILO';
2033$borough_number{'3581'} = '0620'; $type{'3581'} = 'BX'; $location{'3581'} = 'GEILO';
2034$borough_number{'3593'} = '0620'; $type{'3593'} = 'STBX'; $location{'3593'} = 'USTAOSET';
2035$borough_number{'3595'} = '0620'; $type{'3595'} = 'STBX'; $location{'3595'} = 'HAUGAST�L';
2036$borough_number{'3596'} = '1232'; $type{'3596'} = 'ST'; $location{'3596'} = 'HALNE FJELLSTOVA';
2037$borough_number{'3598'} = '1232'; $type{'3598'} = 'ST'; $location{'3598'} = 'DYRANUT';
2038$borough_number{'3599'} = '1232'; $type{'3599'} = 'ST'; $location{'3599'} = 'SANDHAUG';
2039$borough_number{'3601'} = '0604'; $type{'3601'} = 'SX'; $location{'3601'} = 'KONGSBERG';
2040$borough_number{'3602'} = '0604'; $type{'3602'} = 'BX'; $location{'3602'} = 'KONGSBERG';
2041$borough_number{'3603'} = '0604'; $type{'3603'} = 'BX'; $location{'3603'} = 'KONGSBERG';
2042$borough_number{'3604'} = '0604'; $type{'3604'} = 'BX'; $location{'3604'} = 'KONGSBERG';
2043$borough_number{'3605'} = '0604'; $type{'3605'} = 'BX'; $location{'3605'} = 'KONGSBERG';
2044$borough_number{'3606'} = '0604'; $type{'3606'} = 'BX'; $location{'3606'} = 'KONGSBERG';
2045$borough_number{'3608'} = '0604'; $type{'3608'} = 'IO'; $location{'3608'} = 'HEISTADMOEN';
2046$borough_number{'3610'} = '0604'; $type{'3610'} = 'STBX'; $location{'3610'} = 'KONGSBERG';
2047$borough_number{'3611'} = '0604'; $type{'3611'} = 'ST'; $location{'3611'} = 'KONGSBERG';
2048$borough_number{'3612'} = '0604'; $type{'3612'} = 'ST'; $location{'3612'} = 'KONGSBERG';
2049$borough_number{'3613'} = '0604'; $type{'3613'} = 'ST'; $location{'3613'} = 'KONGSBERG';
2050$borough_number{'3614'} = '0604'; $type{'3614'} = 'ST'; $location{'3614'} = 'KONGSBERG';
2051$borough_number{'3615'} = '0604'; $type{'3615'} = 'ST'; $location{'3615'} = 'KONGSBERG';
2052$borough_number{'3616'} = '0604'; $type{'3616'} = 'ST'; $location{'3616'} = 'KONGSBERG';
2053$borough_number{'3617'} = '0604'; $type{'3617'} = 'ST'; $location{'3617'} = 'KONGSBERG';
2054$borough_number{'3618'} = '0604'; $type{'3618'} = 'STBX'; $location{'3618'} = 'SKOLLENBORG';
2055$borough_number{'3619'} = '0604'; $type{'3619'} = 'ST'; $location{'3619'} = 'SKOLLENBORG';
2056$borough_number{'3620'} = '0631'; $type{'3620'} = 'ST'; $location{'3620'} = 'FLESBERG';
2057$borough_number{'3621'} = '0631'; $type{'3621'} = 'BX'; $location{'3621'} = 'LAMPELAND';
2058$borough_number{'3622'} = '0631'; $type{'3622'} = 'ST'; $location{'3622'} = 'SVENE';
2059$borough_number{'3623'} = '0631'; $type{'3623'} = 'ST'; $location{'3623'} = 'LAMPELAND';
2060$borough_number{'3624'} = '0631'; $type{'3624'} = 'ST'; $location{'3624'} = 'LYNGDAL I NUMEDAL';
2061$borough_number{'3626'} = '0632'; $type{'3626'} = 'ST'; $location{'3626'} = 'ROLLAG';
2062$borough_number{'3627'} = '0632'; $type{'3627'} = 'BX'; $location{'3627'} = 'VEGGLI';
2063$borough_number{'3628'} = '0632'; $type{'3628'} = 'ST'; $location{'3628'} = 'VEGGLI';
2064$borough_number{'3629'} = '0633'; $type{'3629'} = 'STBX'; $location{'3629'} = 'NORE';
2065$borough_number{'3630'} = '0633'; $type{'3630'} = 'ST'; $location{'3630'} = 'R�DBERG';
2066$borough_number{'3631'} = '0633'; $type{'3631'} = 'BX'; $location{'3631'} = 'R�DBERG';
2067$borough_number{'3632'} = '0633'; $type{'3632'} = 'ST'; $location{'3632'} = 'UVDAL';
2068$borough_number{'3646'} = '0604'; $type{'3646'} = 'BX'; $location{'3646'} = 'HVITTINGFOSS';
2069$borough_number{'3647'} = '0604'; $type{'3647'} = 'ST'; $location{'3647'} = 'HVITTINGFOSS';
2070$borough_number{'3648'} = '0604'; $type{'3648'} = 'ST'; $location{'3648'} = 'PASSEBEKK';
2071$borough_number{'3650'} = '0826'; $type{'3650'} = 'ST'; $location{'3650'} = 'TINN AUSTBYGD';
2072$borough_number{'3652'} = '0826'; $type{'3652'} = 'ST'; $location{'3652'} = 'HOVIN I TELEMARK';
2073$borough_number{'3656'} = '0826'; $type{'3656'} = 'ST'; $location{'3656'} = 'ATR�';
2074$borough_number{'3658'} = '0826'; $type{'3658'} = 'ST'; $location{'3658'} = 'MILAND';
2075$borough_number{'3660'} = '0826'; $type{'3660'} = 'ST'; $location{'3660'} = 'RJUKAN';
2076$borough_number{'3661'} = '0826'; $type{'3661'} = 'BX'; $location{'3661'} = 'RJUKAN';
2077$borough_number{'3665'} = '0827'; $type{'3665'} = 'BX'; $location{'3665'} = 'SAULAND';
2078$borough_number{'3666'} = '0826'; $type{'3666'} = 'BX'; $location{'3666'} = 'TINN AUSTBYGD';
2079$borough_number{'3671'} = '0807'; $type{'3671'} = 'BX'; $location{'3671'} = 'NOTODDEN';
2080$borough_number{'3672'} = '0807'; $type{'3672'} = 'BX'; $location{'3672'} = 'NOTODDEN';
2081$borough_number{'3673'} = '0807'; $type{'3673'} = 'BX'; $location{'3673'} = 'NOTODDEN';
2082$borough_number{'3674'} = '0807'; $type{'3674'} = 'ST'; $location{'3674'} = 'NOTODDEN';
2083$borough_number{'3675'} = '0807'; $type{'3675'} = 'ST'; $location{'3675'} = 'NOTODDEN';
2084$borough_number{'3676'} = '0807'; $type{'3676'} = 'ST'; $location{'3676'} = 'NOTODDEN';
2085$borough_number{'3677'} = '0807'; $type{'3677'} = 'ST'; $location{'3677'} = 'NOTODDEN';
2086$borough_number{'3678'} = '0807'; $type{'3678'} = 'ST'; $location{'3678'} = 'NOTODDEN';
2087$borough_number{'3679'} = '0807'; $type{'3679'} = 'ST'; $location{'3679'} = 'NOTODDEN';
2088$borough_number{'3680'} = '0807'; $type{'3680'} = 'ST'; $location{'3680'} = 'NOTODDEN';
2089$borough_number{'3681'} = '0807'; $type{'3681'} = 'ST'; $location{'3681'} = 'NOTODDEN';
2090$borough_number{'3683'} = '0807'; $type{'3683'} = 'ST'; $location{'3683'} = 'NOTODDEN';
2091$borough_number{'3684'} = '0807'; $type{'3684'} = 'ST'; $location{'3684'} = 'NOTODDEN';
2092$borough_number{'3690'} = '0827'; $type{'3690'} = 'ST'; $location{'3690'} = 'HJARTDAL';
2093$borough_number{'3691'} = '0807'; $type{'3691'} = 'ST'; $location{'3691'} = 'GRANSHERAD';
2094$borough_number{'3692'} = '0827'; $type{'3692'} = 'ST'; $location{'3692'} = 'SAULAND';
2095$borough_number{'3697'} = '0827'; $type{'3697'} = 'ST'; $location{'3697'} = 'TUDDAL';
2096$borough_number{'3699'} = '0826'; $type{'3699'} = 'ST'; $location{'3699'} = 'GAUSTATOPPEN TURISTHYTTE';
2097$borough_number{'3701'} = '0806'; $type{'3701'} = 'BX'; $location{'3701'} = 'SKIEN';
2098$borough_number{'3702'} = '0806'; $type{'3702'} = 'BX'; $location{'3702'} = 'SKIEN';
2099$borough_number{'3703'} = '0806'; $type{'3703'} = 'BX'; $location{'3703'} = 'SKIEN';
2100$borough_number{'3704'} = '0806'; $type{'3704'} = 'BX'; $location{'3704'} = 'SKIEN';
2101$borough_number{'3705'} = '0806'; $type{'3705'} = 'BX'; $location{'3705'} = 'SKIEN';
2102$borough_number{'3706'} = '0806'; $type{'3706'} = 'IO'; $location{'3706'} = 'SKIEN';
2103$borough_number{'3707'} = '0806'; $type{'3707'} = 'BX'; $location{'3707'} = 'SKIEN';
2104$borough_number{'3708'} = '0806'; $type{'3708'} = 'IO'; $location{'3708'} = 'SKIEN';
2105$borough_number{'3709'} = '0806'; $type{'3709'} = 'IO'; $location{'3709'} = 'SKIEN';
2106$borough_number{'3710'} = '0806'; $type{'3710'} = 'MU'; $location{'3710'} = 'SKIEN';
2107$borough_number{'3711'} = '0806'; $type{'3711'} = 'ST'; $location{'3711'} = 'SKIEN';
2108$borough_number{'3712'} = '0806'; $type{'3712'} = 'ST'; $location{'3712'} = 'SKIEN';
2109$borough_number{'3713'} = '0806'; $type{'3713'} = 'ST'; $location{'3713'} = 'SKIEN';
2110$borough_number{'3714'} = '0806'; $type{'3714'} = 'ST'; $location{'3714'} = 'SKIEN';
2111$borough_number{'3715'} = '0806'; $type{'3715'} = 'ST'; $location{'3715'} = 'SKIEN';
2112$borough_number{'3716'} = '0806'; $type{'3716'} = 'ST'; $location{'3716'} = 'SKIEN';
2113$borough_number{'3717'} = '0806'; $type{'3717'} = 'ST'; $location{'3717'} = 'SKIEN';
2114$borough_number{'3718'} = '0806'; $type{'3718'} = 'ST'; $location{'3718'} = 'SKIEN';
2115$borough_number{'3719'} = '0806'; $type{'3719'} = 'ST'; $location{'3719'} = 'SKIEN';
2116$borough_number{'3720'} = '0806'; $type{'3720'} = 'ST'; $location{'3720'} = 'SKIEN';
2117$borough_number{'3721'} = '0806'; $type{'3721'} = 'ST'; $location{'3721'} = 'SKIEN';
2118$borough_number{'3722'} = '0806'; $type{'3722'} = 'ST'; $location{'3722'} = 'SKIEN';
2119$borough_number{'3723'} = '0806'; $type{'3723'} = 'ST'; $location{'3723'} = 'SKIEN';
2120$borough_number{'3724'} = '0806'; $type{'3724'} = 'ST'; $location{'3724'} = 'SKIEN';
2121$borough_number{'3725'} = '0806'; $type{'3725'} = 'ST'; $location{'3725'} = 'SKIEN';
2122$borough_number{'3726'} = '0806'; $type{'3726'} = 'ST'; $location{'3726'} = 'SKIEN';
2123$borough_number{'3727'} = '0806'; $type{'3727'} = 'ST'; $location{'3727'} = 'SKIEN';
2124$borough_number{'3728'} = '0806'; $type{'3728'} = 'ST'; $location{'3728'} = 'SKIEN';
2125$borough_number{'3729'} = '0806'; $type{'3729'} = 'ST'; $location{'3729'} = 'SKIEN';
2126$borough_number{'3730'} = '0806'; $type{'3730'} = 'ST'; $location{'3730'} = 'SKIEN';
2127$borough_number{'3731'} = '0806'; $type{'3731'} = 'ST'; $location{'3731'} = 'SKIEN';
2128$borough_number{'3732'} = '0806'; $type{'3732'} = 'ST'; $location{'3732'} = 'SKIEN';
2129$borough_number{'3733'} = '0806'; $type{'3733'} = 'ST'; $location{'3733'} = 'SKIEN';
2130$borough_number{'3734'} = '0806'; $type{'3734'} = 'ST'; $location{'3734'} = 'SKIEN';
2131$borough_number{'3735'} = '0806'; $type{'3735'} = 'ST'; $location{'3735'} = 'SKIEN';
2132$borough_number{'3736'} = '0806'; $type{'3736'} = 'ST'; $location{'3736'} = 'SKIEN';
2133$borough_number{'3737'} = '0806'; $type{'3737'} = 'ST'; $location{'3737'} = 'SKIEN';
2134$borough_number{'3738'} = '0806'; $type{'3738'} = 'ST'; $location{'3738'} = 'SKIEN';
2135$borough_number{'3739'} = '0806'; $type{'3739'} = 'ST'; $location{'3739'} = 'SKIEN';
2136$borough_number{'3740'} = '0806'; $type{'3740'} = 'ST'; $location{'3740'} = 'SKIEN';
2137$borough_number{'3741'} = '0806'; $type{'3741'} = 'ST'; $location{'3741'} = 'SKIEN';
2138$borough_number{'3742'} = '0806'; $type{'3742'} = 'ST'; $location{'3742'} = 'SKIEN';
2139$borough_number{'3743'} = '0806'; $type{'3743'} = 'ST'; $location{'3743'} = 'SKIEN';
2140$borough_number{'3744'} = '0806'; $type{'3744'} = 'ST'; $location{'3744'} = 'SKIEN';
2141$borough_number{'3746'} = '0806'; $type{'3746'} = 'ST'; $location{'3746'} = 'SKIEN';
2142$borough_number{'3747'} = '0806'; $type{'3747'} = 'ST'; $location{'3747'} = 'SKIEN';
2143$borough_number{'3748'} = '0811'; $type{'3748'} = 'ST'; $location{'3748'} = 'SILJAN';
2144$borough_number{'3749'} = '0811'; $type{'3749'} = 'BX'; $location{'3749'} = 'SILJAN';
2145$borough_number{'3750'} = '0817'; $type{'3750'} = 'ST'; $location{'3750'} = 'DRANGEDAL';
2146$borough_number{'3753'} = '0817'; $type{'3753'} = 'ST'; $location{'3753'} = 'T�RDAL';
2147$borough_number{'3760'} = '0817'; $type{'3760'} = 'ST'; $location{'3760'} = 'NESLANDSVATN';
2148$borough_number{'3766'} = '0815'; $type{'3766'} = 'ST'; $location{'3766'} = 'SANNIDAL';
2149$borough_number{'3770'} = '0815'; $type{'3770'} = 'ST'; $location{'3770'} = 'KRAGER�';
2150$borough_number{'3780'} = '0815'; $type{'3780'} = 'ST'; $location{'3780'} = 'SK�T�Y';
2151$borough_number{'3781'} = '0815'; $type{'3781'} = 'ST'; $location{'3781'} = 'JOMFRULAND';
2152$borough_number{'3782'} = '0815'; $type{'3782'} = 'ST'; $location{'3782'} = 'KRAGER� SOMMERRUTE';
2153$borough_number{'3783'} = '0815'; $type{'3783'} = 'ST'; $location{'3783'} = 'KRAGER� SKJ�RG�RDSRUTE';
2154$borough_number{'3784'} = '0815'; $type{'3784'} = 'ST'; $location{'3784'} = 'LANG�Y GRUVER';
2155$borough_number{'3785'} = '0806'; $type{'3785'} = 'BX'; $location{'3785'} = 'SKIEN';
2156$borough_number{'3786'} = '0806'; $type{'3786'} = 'BX'; $location{'3786'} = 'SKIEN';
2157$borough_number{'3787'} = '0806'; $type{'3787'} = 'BX'; $location{'3787'} = 'SKIEN';
2158$borough_number{'3788'} = '0815'; $type{'3788'} = 'ST'; $location{'3788'} = 'STABBESTAD';
2159$borough_number{'3789'} = '0815'; $type{'3789'} = 'BX'; $location{'3789'} = 'KRAGER�';
2160$borough_number{'3790'} = '0815'; $type{'3790'} = 'ST'; $location{'3790'} = 'HELLE';
2161$borough_number{'3791'} = '0815'; $type{'3791'} = 'BX'; $location{'3791'} = 'KRAGER�';
2162$borough_number{'3792'} = '0806'; $type{'3792'} = 'BX'; $location{'3792'} = 'SKIEN';
2163$borough_number{'3793'} = '0815'; $type{'3793'} = 'BX'; $location{'3793'} = 'SANNIDAL';
2164$borough_number{'3794'} = '0815'; $type{'3794'} = 'BX'; $location{'3794'} = 'HELLE';
2165$borough_number{'3795'} = '0817'; $type{'3795'} = 'BX'; $location{'3795'} = 'DRANGEDAL';
2166$borough_number{'3796'} = '0806'; $type{'3796'} = 'BX'; $location{'3796'} = 'SKIEN';
2167$borough_number{'3797'} = '0806'; $type{'3797'} = 'BX'; $location{'3797'} = 'SKIEN';
2168$borough_number{'3798'} = '0806'; $type{'3798'} = 'BX'; $location{'3798'} = 'SKIEN';
2169$borough_number{'3800'} = '0821'; $type{'3800'} = 'ST'; $location{'3800'} = 'B� I TELEMARK';
2170$borough_number{'3810'} = '0822'; $type{'3810'} = 'ST'; $location{'3810'} = 'GVARV';
2171$borough_number{'3812'} = '0822'; $type{'3812'} = 'ST'; $location{'3812'} = 'AKKERHAUGEN';
2172$borough_number{'3820'} = '0822'; $type{'3820'} = 'ST'; $location{'3820'} = 'NORDAGUTU';
2173$borough_number{'3825'} = '0819'; $type{'3825'} = 'ST'; $location{'3825'} = 'LUNDE';
2174$borough_number{'3830'} = '0819'; $type{'3830'} = 'ST'; $location{'3830'} = 'ULEFOSS';
2175$borough_number{'3831'} = '0819'; $type{'3831'} = 'BX'; $location{'3831'} = 'ULEFOSS';
2176$borough_number{'3832'} = '0819'; $type{'3832'} = 'BX'; $location{'3832'} = 'LUNDE';
2177$borough_number{'3833'} = '0821'; $type{'3833'} = 'BX'; $location{'3833'} = 'B� I TELEMARK';
2178$borough_number{'3834'} = '0822'; $type{'3834'} = 'BX'; $location{'3834'} = 'GVARV';
2179$borough_number{'3835'} = '0828'; $type{'3835'} = 'BX'; $location{'3835'} = 'SELJORD';
2180$borough_number{'3836'} = '0829'; $type{'3836'} = 'BX'; $location{'3836'} = 'KVITESEID';
2181$borough_number{'3840'} = '0828'; $type{'3840'} = 'ST'; $location{'3840'} = 'SELJORD';
2182$borough_number{'3841'} = '0828'; $type{'3841'} = 'ST'; $location{'3841'} = 'FLATDAL';
2183$borough_number{'3848'} = '0829'; $type{'3848'} = 'ST'; $location{'3848'} = 'MORGEDAL';
2184$borough_number{'3849'} = '0829'; $type{'3849'} = 'ST'; $location{'3849'} = 'VR�LIOSEN';
2185$borough_number{'3850'} = '0829'; $type{'3850'} = 'ST'; $location{'3850'} = 'KVITESEID';
2186$borough_number{'3853'} = '0829'; $type{'3853'} = 'STBX'; $location{'3853'} = 'VR�DAL';
2187$borough_number{'3854'} = '0830'; $type{'3854'} = 'ST'; $location{'3854'} = 'NISSEDAL';
2188$borough_number{'3855'} = '0830'; $type{'3855'} = 'ST'; $location{'3855'} = 'TREUNGEN';
2189$borough_number{'3864'} = '0834'; $type{'3864'} = 'ST'; $location{'3864'} = 'RAULAND';
2190$borough_number{'3870'} = '0831'; $type{'3870'} = 'ST'; $location{'3870'} = 'FYRESDAL';
2191$borough_number{'3880'} = '0833'; $type{'3880'} = 'ST'; $location{'3880'} = 'DALEN';
2192$borough_number{'3882'} = '0833'; $type{'3882'} = 'ST'; $location{'3882'} = '�MDALS VERK';
2193$borough_number{'3883'} = '0830'; $type{'3883'} = 'BX'; $location{'3883'} = 'TREUNGEN';
2194$borough_number{'3884'} = '0834'; $type{'3884'} = 'BX'; $location{'3884'} = 'RAULAND';
2195$borough_number{'3885'} = '0831'; $type{'3885'} = 'BX'; $location{'3885'} = 'FYRESDAL';
2196$borough_number{'3886'} = '0833'; $type{'3886'} = 'BX'; $location{'3886'} = 'DALEN';
2197$borough_number{'3887'} = '0834'; $type{'3887'} = 'BX'; $location{'3887'} = 'VINJE';
2198$borough_number{'3888'} = '0834'; $type{'3888'} = 'BX'; $location{'3888'} = 'EDLAND';
2199$borough_number{'3890'} = '0834'; $type{'3890'} = 'ST'; $location{'3890'} = 'VINJE';
2200$borough_number{'3891'} = '0833'; $type{'3891'} = 'ST'; $location{'3891'} = 'H�YDALSMO';
2201$borough_number{'3893'} = '0834'; $type{'3893'} = 'ST'; $location{'3893'} = 'VINJESVINGEN';
2202$borough_number{'3895'} = '0834'; $type{'3895'} = 'ST'; $location{'3895'} = 'EDLAND';
2203$borough_number{'3901'} = '0805'; $type{'3901'} = 'BX'; $location{'3901'} = 'PORSGRUNN';
2204$borough_number{'3902'} = '0805'; $type{'3902'} = 'BX'; $location{'3902'} = 'PORSGRUNN';
2205$borough_number{'3903'} = '0805'; $type{'3903'} = 'BX'; $location{'3903'} = 'PORSGRUNN';
2206$borough_number{'3904'} = '0805'; $type{'3904'} = 'BX'; $location{'3904'} = 'PORSGRUNN';
2207$borough_number{'3905'} = '0805'; $type{'3905'} = 'BX'; $location{'3905'} = 'PORSGRUNN';
2208$borough_number{'3906'} = '0805'; $type{'3906'} = 'BX'; $location{'3906'} = 'PORSGRUNN';
2209$borough_number{'3908'} = '0805'; $type{'3908'} = 'IO'; $location{'3908'} = 'PORSGRUNN';
2210$borough_number{'3910'} = '0805'; $type{'3910'} = 'ST'; $location{'3910'} = 'PORSGRUNN';
2211$borough_number{'3911'} = '0805'; $type{'3911'} = 'ST'; $location{'3911'} = 'PORSGRUNN';
2212$borough_number{'3912'} = '0805'; $type{'3912'} = 'ST'; $location{'3912'} = 'PORSGRUNN';
2213$borough_number{'3913'} = '0805'; $type{'3913'} = 'ST'; $location{'3913'} = 'PORSGRUNN';
2214$borough_number{'3914'} = '0805'; $type{'3914'} = 'ST'; $location{'3914'} = 'PORSGRUNN';
2215$borough_number{'3915'} = '0805'; $type{'3915'} = 'ST'; $location{'3915'} = 'PORSGRUNN';
2216$borough_number{'3916'} = '0805'; $type{'3916'} = 'ST'; $location{'3916'} = 'PORSGRUNN';
2217$borough_number{'3917'} = '0805'; $type{'3917'} = 'ST'; $location{'3917'} = 'PORSGRUNN';
2218$borough_number{'3918'} = '0805'; $type{'3918'} = 'ST'; $location{'3918'} = 'PORSGRUNN';
2219$borough_number{'3919'} = '0805'; $type{'3919'} = 'ST'; $location{'3919'} = 'PORSGRUNN';
2220$borough_number{'3920'} = '0805'; $type{'3920'} = 'ST'; $location{'3920'} = 'PORSGRUNN';
2221$borough_number{'3921'} = '0805'; $type{'3921'} = 'ST'; $location{'3921'} = 'PORSGRUNN';
2222$borough_number{'3922'} = '0805'; $type{'3922'} = 'ST'; $location{'3922'} = 'PORSGRUNN';
2223$borough_number{'3924'} = '0805'; $type{'3924'} = 'ST'; $location{'3924'} = 'PORSGRUNN';
2224$borough_number{'3925'} = '0805'; $type{'3925'} = 'ST'; $location{'3925'} = 'PORSGRUNN';
2225$borough_number{'3928'} = '0805'; $type{'3928'} = 'ST'; $location{'3928'} = 'PORSGRUNN';
2226$borough_number{'3929'} = '0805'; $type{'3929'} = 'ST'; $location{'3929'} = 'PORSGRUNN';
2227$borough_number{'3930'} = '0805'; $type{'3930'} = 'ST'; $location{'3930'} = 'PORSGRUNN';
2228$borough_number{'3931'} = '0805'; $type{'3931'} = 'ST'; $location{'3931'} = 'PORSGRUNN';
2229$borough_number{'3932'} = '0805'; $type{'3932'} = 'ST'; $location{'3932'} = 'PORSGRUNN';
2230$borough_number{'3933'} = '0805'; $type{'3933'} = 'ST'; $location{'3933'} = 'PORSGRUNN';
2231$borough_number{'3936'} = '0805'; $type{'3936'} = 'ST'; $location{'3936'} = 'PORSGRUNN';
2232$borough_number{'3937'} = '0805'; $type{'3937'} = 'ST'; $location{'3937'} = 'PORSGRUNN';
2233$borough_number{'3939'} = '0805'; $type{'3939'} = 'BX'; $location{'3939'} = 'PORSGRUNN';
2234$borough_number{'3940'} = '0805'; $type{'3940'} = 'ST'; $location{'3940'} = 'PORSGRUNN';
2235$borough_number{'3941'} = '0805'; $type{'3941'} = 'ST'; $location{'3941'} = 'PORSGRUNN';
2236$borough_number{'3942'} = '0805'; $type{'3942'} = 'ST'; $location{'3942'} = 'PORSGRUNN';
2237$borough_number{'3943'} = '0805'; $type{'3943'} = 'ST'; $location{'3943'} = 'PORSGRUNN';
2238$borough_number{'3944'} = '0805'; $type{'3944'} = 'ST'; $location{'3944'} = 'PORSGRUNN';
2239$borough_number{'3945'} = '0805'; $type{'3945'} = 'IO'; $location{'3945'} = 'PORSGRUNN';
2240$borough_number{'3946'} = '0805'; $type{'3946'} = 'ST'; $location{'3946'} = 'PORSGRUNN';
2241$borough_number{'3947'} = '0805'; $type{'3947'} = 'ST'; $location{'3947'} = 'LANGANGEN';
2242$borough_number{'3948'} = '0805'; $type{'3948'} = 'ST'; $location{'3948'} = 'PORSGRUNN';
2243$borough_number{'3949'} = '0805'; $type{'3949'} = 'ST'; $location{'3949'} = 'PORSGRUNN';
2244$borough_number{'3950'} = '0805'; $type{'3950'} = 'ST'; $location{'3950'} = 'BREVIK';
2245$borough_number{'3960'} = '0814'; $type{'3960'} = 'ST'; $location{'3960'} = 'STATHELLE';
2246$borough_number{'3965'} = '0814'; $type{'3965'} = 'ST'; $location{'3965'} = 'HERRE';
2247$borough_number{'3966'} = '0814'; $type{'3966'} = 'IO'; $location{'3966'} = 'STATHELLE';
2248$borough_number{'3967'} = '0814'; $type{'3967'} = 'ST'; $location{'3967'} = 'BAMBLE SOMMERRUTE';
2249$borough_number{'3970'} = '0814'; $type{'3970'} = 'ST'; $location{'3970'} = 'LANGESUND';
2250$borough_number{'3991'} = '0805'; $type{'3991'} = 'BX'; $location{'3991'} = 'BREVIK';
2251$borough_number{'3993'} = '0814'; $type{'3993'} = 'BX'; $location{'3993'} = 'LANGESUND';
2252$borough_number{'3994'} = '0814'; $type{'3994'} = 'BX'; $location{'3994'} = 'LANGESUND';
2253$borough_number{'3995'} = '0814'; $type{'3995'} = 'BX'; $location{'3995'} = 'STATHELLE';
2254$borough_number{'3996'} = '0805'; $type{'3996'} = 'BX'; $location{'3996'} = 'PORSGRUNN';
2255$borough_number{'3997'} = '0805'; $type{'3997'} = 'BX'; $location{'3997'} = 'PORSGRUNN';
2256$borough_number{'3998'} = '0805'; $type{'3998'} = 'BX'; $location{'3998'} = 'PORSGRUNN';
2257$borough_number{'3999'} = '0814'; $type{'3999'} = 'BX'; $location{'3999'} = 'HERRE';
2258$borough_number{'4001'} = '1103'; $type{'4001'} = 'BX'; $location{'4001'} = 'STAVANGER';
2259$borough_number{'4002'} = '1103'; $type{'4002'} = 'BX'; $location{'4002'} = 'STAVANGER';
2260$borough_number{'4003'} = '1103'; $type{'4003'} = 'BX'; $location{'4003'} = 'STAVANGER';
2261$borough_number{'4004'} = '1103'; $type{'4004'} = 'BX'; $location{'4004'} = 'STAVANGER';
2262$borough_number{'4005'} = '1103'; $type{'4005'} = 'ST'; $location{'4005'} = 'STAVANGER';
2263$borough_number{'4006'} = '1103'; $type{'4006'} = 'ST'; $location{'4006'} = 'STAVANGER';
2264$borough_number{'4007'} = '1103'; $type{'4007'} = 'ST'; $location{'4007'} = 'STAVANGER';
2265$borough_number{'4008'} = '1103'; $type{'4008'} = 'ST'; $location{'4008'} = 'STAVANGER';
2266$borough_number{'4009'} = '1103'; $type{'4009'} = 'ST'; $location{'4009'} = 'STAVANGER';
2267$borough_number{'4010'} = '1103'; $type{'4010'} = 'ST'; $location{'4010'} = 'STAVANGER';
2268$borough_number{'4011'} = '1103'; $type{'4011'} = 'ST'; $location{'4011'} = 'STAVANGER';
2269$borough_number{'4012'} = '1103'; $type{'4012'} = 'ST'; $location{'4012'} = 'STAVANGER';
2270$borough_number{'4013'} = '1103'; $type{'4013'} = 'ST'; $location{'4013'} = 'STAVANGER';
2271$borough_number{'4014'} = '1103'; $type{'4014'} = 'ST'; $location{'4014'} = 'STAVANGER';
2272$borough_number{'4015'} = '1103'; $type{'4015'} = 'ST'; $location{'4015'} = 'STAVANGER';
2273$borough_number{'4016'} = '1103'; $type{'4016'} = 'ST'; $location{'4016'} = 'STAVANGER';
2274$borough_number{'4017'} = '1103'; $type{'4017'} = 'ST'; $location{'4017'} = 'STAVANGER';
2275$borough_number{'4018'} = '1103'; $type{'4018'} = 'ST'; $location{'4018'} = 'STAVANGER';
2276$borough_number{'4019'} = '1103'; $type{'4019'} = 'ST'; $location{'4019'} = 'STAVANGER';
2277$borough_number{'4020'} = '1103'; $type{'4020'} = 'ST'; $location{'4020'} = 'STAVANGER';
2278$borough_number{'4021'} = '1103'; $type{'4021'} = 'ST'; $location{'4021'} = 'STAVANGER';
2279$borough_number{'4022'} = '1103'; $type{'4022'} = 'ST'; $location{'4022'} = 'STAVANGER';
2280$borough_number{'4023'} = '1103'; $type{'4023'} = 'ST'; $location{'4023'} = 'STAVANGER';
2281$borough_number{'4024'} = '1103'; $type{'4024'} = 'ST'; $location{'4024'} = 'STAVANGER';
2282$borough_number{'4025'} = '1103'; $type{'4025'} = 'ST'; $location{'4025'} = 'STAVANGER';
2283$borough_number{'4026'} = '1103'; $type{'4026'} = 'ST'; $location{'4026'} = 'STAVANGER';
2284$borough_number{'4027'} = '1103'; $type{'4027'} = 'ST'; $location{'4027'} = 'STAVANGER';
2285$borough_number{'4028'} = '1103'; $type{'4028'} = 'ST'; $location{'4028'} = 'STAVANGER';
2286$borough_number{'4029'} = '1103'; $type{'4029'} = 'ST'; $location{'4029'} = 'STAVANGER';
2287$borough_number{'4032'} = '1103'; $type{'4032'} = 'ST'; $location{'4032'} = 'STAVANGER';
2288$borough_number{'4033'} = '1103'; $type{'4033'} = 'ST'; $location{'4033'} = 'STAVANGER';
2289$borough_number{'4034'} = '1103'; $type{'4034'} = 'ST'; $location{'4034'} = 'STAVANGER';
2290$borough_number{'4035'} = '1103'; $type{'4035'} = 'IO'; $location{'4035'} = 'STAVANGER';
2291$borough_number{'4036'} = '1103'; $type{'4036'} = 'IO'; $location{'4036'} = 'STAVANGER';
2292$borough_number{'4041'} = '1103'; $type{'4041'} = 'ST'; $location{'4041'} = 'HAFRSFJORD';
2293$borough_number{'4042'} = '1103'; $type{'4042'} = 'ST'; $location{'4042'} = 'HAFRSFJORD';
2294$borough_number{'4043'} = '1103'; $type{'4043'} = 'ST'; $location{'4043'} = 'HAFRSFJORD';
2295$borough_number{'4044'} = '1103'; $type{'4044'} = 'ST'; $location{'4044'} = 'HAFRSFJORD';
2296$borough_number{'4045'} = '1103'; $type{'4045'} = 'ST'; $location{'4045'} = 'HAFRSFJORD';
2297$borough_number{'4046'} = '1103'; $type{'4046'} = 'ST'; $location{'4046'} = 'HAFRSFJORD';
2298$borough_number{'4047'} = '1103'; $type{'4047'} = 'ST'; $location{'4047'} = 'HAFRSFJORD';
2299$borough_number{'4048'} = '1103'; $type{'4048'} = 'ST'; $location{'4048'} = 'HAFRSFJORD';
2300$borough_number{'4049'} = '1103'; $type{'4049'} = 'ST'; $location{'4049'} = 'HAFRSFJORD';
2301$borough_number{'4050'} = '1124'; $type{'4050'} = 'ST'; $location{'4050'} = 'SOLA';
2302$borough_number{'4052'} = '1124'; $type{'4052'} = 'ST'; $location{'4052'} = 'R�YNEBERG';
2303$borough_number{'4053'} = '1124'; $type{'4053'} = 'ST'; $location{'4053'} = 'R�GE';
2304$borough_number{'4054'} = '1124'; $type{'4054'} = 'STBX'; $location{'4054'} = 'TJELTA';
2305$borough_number{'4055'} = '1124'; $type{'4055'} = 'STBX'; $location{'4055'} = 'STAVANGER LUFTHAVN';
2306$borough_number{'4056'} = '1124'; $type{'4056'} = 'ST'; $location{'4056'} = 'TANANGER';
2307$borough_number{'4059'} = '1124'; $type{'4059'} = 'BX'; $location{'4059'} = 'R�YNEBERG';
2308$borough_number{'4064'} = '1103'; $type{'4064'} = 'BX'; $location{'4064'} = 'STAVANGER';
2309$borough_number{'4065'} = '1103'; $type{'4065'} = 'BX'; $location{'4065'} = 'STAVANGER';
2310$borough_number{'4066'} = '1103'; $type{'4066'} = 'BX'; $location{'4066'} = 'STAVANGER';
2311$borough_number{'4067'} = '1103'; $type{'4067'} = 'BX'; $location{'4067'} = 'STAVANGER';
2312$borough_number{'4068'} = '1103'; $type{'4068'} = 'BX'; $location{'4068'} = 'STAVANGER';
2313$borough_number{'4069'} = '1103'; $type{'4069'} = 'BX'; $location{'4069'} = 'STAVANGER';
2314$borough_number{'4070'} = '1127'; $type{'4070'} = 'ST'; $location{'4070'} = 'RANDABERG';
2315$borough_number{'4076'} = '1103'; $type{'4076'} = 'STBX'; $location{'4076'} = 'VASS�Y';
2316$borough_number{'4078'} = '1103'; $type{'4078'} = 'BX'; $location{'4078'} = 'STAVANGER';
2317$borough_number{'4079'} = '1103'; $type{'4079'} = 'BX'; $location{'4079'} = 'STAVANGER';
2318$borough_number{'4081'} = '1103'; $type{'4081'} = 'BX'; $location{'4081'} = 'STAVANGER';
2319$borough_number{'4082'} = '1103'; $type{'4082'} = 'BX'; $location{'4082'} = 'STAVANGER';
2320$borough_number{'4084'} = '1103'; $type{'4084'} = 'BX'; $location{'4084'} = 'STAVANGER';
2321$borough_number{'4085'} = '1103'; $type{'4085'} = 'ST'; $location{'4085'} = 'HUNDV�G';
2322$borough_number{'4086'} = '1103'; $type{'4086'} = 'BX'; $location{'4086'} = 'HUNDV�G';
2323$borough_number{'4087'} = '1103'; $type{'4087'} = 'BX'; $location{'4087'} = 'STAVANGER';
2324$borough_number{'4088'} = '1103'; $type{'4088'} = 'BX'; $location{'4088'} = 'STAVANGER';
2325$borough_number{'4089'} = '1103'; $type{'4089'} = 'BX'; $location{'4089'} = 'HAFRSFJORD';
2326$borough_number{'4090'} = '1103'; $type{'4090'} = 'BX'; $location{'4090'} = 'HAFRSFJORD';
2327$borough_number{'4092'} = '1103'; $type{'4092'} = 'BX'; $location{'4092'} = 'STAVANGER';
2328$borough_number{'4093'} = '1103'; $type{'4093'} = 'BX'; $location{'4093'} = 'STAVANGER';
2329$borough_number{'4094'} = '1103'; $type{'4094'} = 'BX'; $location{'4094'} = 'STAVANGER';
2330$borough_number{'4095'} = '1103'; $type{'4095'} = 'BX'; $location{'4095'} = 'STAVANGER';
2331$borough_number{'4096'} = '1127'; $type{'4096'} = 'BX'; $location{'4096'} = 'RANDABERG';
2332$borough_number{'4097'} = '1124'; $type{'4097'} = 'BX'; $location{'4097'} = 'SOLA';
2333$borough_number{'4098'} = '1124'; $type{'4098'} = 'BX'; $location{'4098'} = 'TANANGER';
2334$borough_number{'4100'} = '1130'; $type{'4100'} = 'ST'; $location{'4100'} = 'J�RPELAND';
2335$borough_number{'4102'} = '1130'; $type{'4102'} = 'ST'; $location{'4102'} = 'IDSE';
2336$borough_number{'4110'} = '1129'; $type{'4110'} = 'ST'; $location{'4110'} = 'FORSAND';
2337$borough_number{'4119'} = '1129'; $type{'4119'} = 'BX'; $location{'4119'} = 'FORSAND';
2338$borough_number{'4120'} = '1130'; $type{'4120'} = 'ST'; $location{'4120'} = 'TAU';
2339$borough_number{'4122'} = '1130'; $type{'4122'} = 'ST'; $location{'4122'} = 'FISK�';
2340$borough_number{'4123'} = '1130'; $type{'4123'} = 'ST'; $location{'4123'} = 'S�R-HIDLE';
2341$borough_number{'4124'} = '1130'; $type{'4124'} = 'BX'; $location{'4124'} = 'TAU';
2342$borough_number{'4126'} = '1130'; $type{'4126'} = 'BX'; $location{'4126'} = 'J�RPELAND';
2343$borough_number{'4127'} = '1129'; $type{'4127'} = 'STBX'; $location{'4127'} = 'LYSEBOTN';
2344$borough_number{'4128'} = '1129'; $type{'4128'} = 'ST'; $location{'4128'} = 'FL�YRLI';
2345$borough_number{'4129'} = '1129'; $type{'4129'} = 'ST'; $location{'4129'} = 'SONGESAND';
2346$borough_number{'4130'} = '1133'; $type{'4130'} = 'ST'; $location{'4130'} = 'HJELMELAND';
2347$borough_number{'4134'} = '1133'; $type{'4134'} = 'ST'; $location{'4134'} = 'J�SENFJORDEN';
2348$borough_number{'4137'} = '1133'; $type{'4137'} = 'ST'; $location{'4137'} = '�RDAL I RYFYLKE';
2349$borough_number{'4139'} = '1133'; $type{'4139'} = 'ST'; $location{'4139'} = 'FISTER';
2350$borough_number{'4146'} = '1133'; $type{'4146'} = 'ST'; $location{'4146'} = 'SKIFTUN';
2351$borough_number{'4148'} = '1133'; $type{'4148'} = 'BX'; $location{'4148'} = 'HJELMELAND';
2352$borough_number{'4150'} = '1142'; $type{'4150'} = 'ST'; $location{'4150'} = 'RENNES�Y';
2353$borough_number{'4152'} = '1142'; $type{'4152'} = 'ST'; $location{'4152'} = 'VESTRE �M�Y';
2354$borough_number{'4153'} = '1142'; $type{'4153'} = 'ST'; $location{'4153'} = 'BRIMSE';
2355$borough_number{'4154'} = '1103'; $type{'4154'} = 'ST'; $location{'4154'} = 'AUSTRE �M�Y';
2356$borough_number{'4156'} = '1142'; $type{'4156'} = 'ST'; $location{'4156'} = 'MOSTER�Y';
2357$borough_number{'4158'} = '1142'; $type{'4158'} = 'ST'; $location{'4158'} = 'BRU';
2358$borough_number{'4159'} = '1142'; $type{'4159'} = 'BX'; $location{'4159'} = 'RENNES�Y';
2359$borough_number{'4160'} = '1141'; $type{'4160'} = 'ST'; $location{'4160'} = 'FINN�Y';
2360$borough_number{'4161'} = '1141'; $type{'4161'} = 'BX'; $location{'4161'} = 'FINN�Y';
2361$borough_number{'4163'} = '1141'; $type{'4163'} = 'ST'; $location{'4163'} = 'TALGJE';
2362$borough_number{'4164'} = '1141'; $type{'4164'} = 'ST'; $location{'4164'} = 'FOGN';
2363$borough_number{'4167'} = '1133'; $type{'4167'} = 'ST'; $location{'4167'} = 'HELG�Y I RYFYLKE';
2364$borough_number{'4168'} = '1141'; $type{'4168'} = 'ST'; $location{'4168'} = 'BYRE';
2365$borough_number{'4169'} = '1141'; $type{'4169'} = 'ST'; $location{'4169'} = 'S�RBOKN';
2366$borough_number{'4170'} = '1141'; $type{'4170'} = 'ST'; $location{'4170'} = 'SJERNAR�Y';
2367$borough_number{'4173'} = '1141'; $type{'4173'} = 'ST'; $location{'4173'} = 'NORD-HIDLE';
2368$borough_number{'4174'} = '1141'; $type{'4174'} = 'STBX'; $location{'4174'} = 'HELG�YSUND';
2369$borough_number{'4180'} = '1144'; $type{'4180'} = 'STBX'; $location{'4180'} = 'KVITS�Y';
2370$borough_number{'4182'} = '1141'; $type{'4182'} = 'STBX'; $location{'4182'} = 'SKARTVEIT';
2371$borough_number{'4187'} = '1141'; $type{'4187'} = 'ST'; $location{'4187'} = 'OMBO';
2372$borough_number{'4198'} = '1134'; $type{'4198'} = 'ST'; $location{'4198'} = 'FOLD�Y';
2373$borough_number{'4200'} = '1135'; $type{'4200'} = 'ST'; $location{'4200'} = 'SAUDA';
2374$borough_number{'4201'} = '1135'; $type{'4201'} = 'BX'; $location{'4201'} = 'SAUDA';
2375$borough_number{'4208'} = '1135'; $type{'4208'} = 'ST'; $location{'4208'} = 'SAUDASJ�EN';
2376$borough_number{'4209'} = '1134'; $type{'4209'} = 'ST'; $location{'4209'} = 'VANVIK';
2377$borough_number{'4230'} = '1134'; $type{'4230'} = 'ST'; $location{'4230'} = 'SAND';
2378$borough_number{'4233'} = '1134'; $type{'4233'} = 'STBX'; $location{'4233'} = 'ERFJORD';
2379$borough_number{'4234'} = '1134'; $type{'4234'} = 'ST'; $location{'4234'} = 'JELSA';
2380$borough_number{'4235'} = '1134'; $type{'4235'} = 'ST'; $location{'4235'} = 'HEBNES';
2381$borough_number{'4237'} = '1134'; $type{'4237'} = 'ST'; $location{'4237'} = 'SULDALSOSEN';
2382$borough_number{'4239'} = '1134'; $type{'4239'} = 'BX'; $location{'4239'} = 'SAND';
2383$borough_number{'4240'} = '1134'; $type{'4240'} = 'BX'; $location{'4240'} = 'SULDALSOSEN';
2384$borough_number{'4244'} = '1134'; $type{'4244'} = 'STBX'; $location{'4244'} = 'NESFLATEN';
2385$borough_number{'4250'} = '1149'; $type{'4250'} = 'ST'; $location{'4250'} = 'KOPERVIK';
2386$borough_number{'4260'} = '1149'; $type{'4260'} = 'ST'; $location{'4260'} = 'TORVASTAD';
2387$borough_number{'4262'} = '1149'; $type{'4262'} = 'ST'; $location{'4262'} = 'AVALDSNES';
2388$borough_number{'4264'} = '1149'; $type{'4264'} = 'STBX'; $location{'4264'} = 'KVALAV�G';
2389$borough_number{'4265'} = '1149'; $type{'4265'} = 'ST'; $location{'4265'} = 'H�VIK';
2390$borough_number{'4270'} = '1149'; $type{'4270'} = 'ST'; $location{'4270'} = '�KREHAMN';
2391$borough_number{'4272'} = '1149'; $type{'4272'} = 'STBX'; $location{'4272'} = 'SANDVE';
2392$borough_number{'4274'} = '1149'; $type{'4274'} = 'STBX'; $location{'4274'} = 'STOL';
2393$borough_number{'4275'} = '1149'; $type{'4275'} = 'STBX'; $location{'4275'} = 'S�VELANDSVIK';
2394$borough_number{'4276'} = '1149'; $type{'4276'} = 'ST'; $location{'4276'} = 'VEDAV�GEN';
2395$borough_number{'4280'} = '1149'; $type{'4280'} = 'ST'; $location{'4280'} = 'SKUDENESHAVN';
2396$borough_number{'4291'} = '1149'; $type{'4291'} = 'BX'; $location{'4291'} = 'KOPERVIK';
2397$borough_number{'4294'} = '1149'; $type{'4294'} = 'BX'; $location{'4294'} = 'KOPERVIK';
2398$borough_number{'4295'} = '1149'; $type{'4295'} = 'BX'; $location{'4295'} = 'VEDAV�GEN';
2399$borough_number{'4296'} = '1149'; $type{'4296'} = 'BX'; $location{'4296'} = '�KREHAMN';
2400$borough_number{'4297'} = '1149'; $type{'4297'} = 'BX'; $location{'4297'} = 'SKUDENESHAVN';
2401$borough_number{'4298'} = '1149'; $type{'4298'} = 'BX'; $location{'4298'} = 'TORVASTAD';
2402$borough_number{'4299'} = '1149'; $type{'4299'} = 'BX'; $location{'4299'} = 'AVALDSNES';
2403$borough_number{'4301'} = '1102'; $type{'4301'} = 'BX'; $location{'4301'} = 'SANDNES';
2404$borough_number{'4302'} = '1102'; $type{'4302'} = 'BX'; $location{'4302'} = 'SANDNES';
2405$borough_number{'4303'} = '1102'; $type{'4303'} = 'BX'; $location{'4303'} = 'SANDNES';
2406$borough_number{'4304'} = '1102'; $type{'4304'} = 'BX'; $location{'4304'} = 'SANDNES';
2407$borough_number{'4305'} = '1102'; $type{'4305'} = 'BX'; $location{'4305'} = 'SANDNES';
2408$borough_number{'4306'} = '1102'; $type{'4306'} = 'ST'; $location{'4306'} = 'SANDNES';
2409$borough_number{'4307'} = '1102'; $type{'4307'} = 'ST'; $location{'4307'} = 'SANDNES';
2410$borough_number{'4308'} = '1102'; $type{'4308'} = 'STBX'; $location{'4308'} = 'SANDNES';
2411$borough_number{'4309'} = '1102'; $type{'4309'} = 'ST'; $location{'4309'} = 'SANDNES';
2412$borough_number{'4310'} = '1102'; $type{'4310'} = 'ST'; $location{'4310'} = 'HOMMERS�K';
2413$borough_number{'4311'} = '1102'; $type{'4311'} = 'ST'; $location{'4311'} = 'HOMMERS�K';
2414$borough_number{'4312'} = '1102'; $type{'4312'} = 'ST'; $location{'4312'} = 'SANDNES';
2415$borough_number{'4313'} = '1102'; $type{'4313'} = 'ST'; $location{'4313'} = 'SANDNES';
2416$borough_number{'4314'} = '1102'; $type{'4314'} = 'ST'; $location{'4314'} = 'SANDNES';
2417$borough_number{'4315'} = '1102'; $type{'4315'} = 'ST'; $location{'4315'} = 'SANDNES';
2418$borough_number{'4316'} = '1102'; $type{'4316'} = 'ST'; $location{'4316'} = 'SANDNES';
2419$borough_number{'4317'} = '1102'; $type{'4317'} = 'ST'; $location{'4317'} = 'SANDNES';
2420$borough_number{'4318'} = '1102'; $type{'4318'} = 'ST'; $location{'4318'} = 'SANDNES';
2421$borough_number{'4319'} = '1102'; $type{'4319'} = 'ST'; $location{'4319'} = 'SANDNES';
2422$borough_number{'4321'} = '1102'; $type{'4321'} = 'ST'; $location{'4321'} = 'SANDNES';
2423$borough_number{'4322'} = '1102'; $type{'4322'} = 'ST'; $location{'4322'} = 'SANDNES';
2424$borough_number{'4323'} = '1102'; $type{'4323'} = 'ST'; $location{'4323'} = 'SANDNES';
2425$borough_number{'4324'} = '1102'; $type{'4324'} = 'ST'; $location{'4324'} = 'SANDNES';
2426$borough_number{'4325'} = '1102'; $type{'4325'} = 'ST'; $location{'4325'} = 'SANDNES';
2427$borough_number{'4326'} = '1102'; $type{'4326'} = 'ST'; $location{'4326'} = 'SANDNES';
2428$borough_number{'4327'} = '1102'; $type{'4327'} = 'ST'; $location{'4327'} = 'SANDNES';
2429$borough_number{'4328'} = '1102'; $type{'4328'} = 'ST'; $location{'4328'} = 'SANDNES';
2430$borough_number{'4329'} = '1102'; $type{'4329'} = 'ST'; $location{'4329'} = 'SANDNES';
2431$borough_number{'4330'} = '1122'; $type{'4330'} = 'ST'; $location{'4330'} = '�LG�RD';
2432$borough_number{'4332'} = '1102'; $type{'4332'} = 'ST'; $location{'4332'} = 'FIGGJO';
2433$borough_number{'4333'} = '1122'; $type{'4333'} = 'STBX'; $location{'4333'} = 'OLTEDAL';
2434$borough_number{'4335'} = '1122'; $type{'4335'} = 'ST'; $location{'4335'} = 'DIRDAL';
2435$borough_number{'4339'} = '1122'; $type{'4339'} = 'BX'; $location{'4339'} = '�LG�RD';
2436$borough_number{'4340'} = '1121'; $type{'4340'} = 'ST'; $location{'4340'} = 'BRYNE';
2437$borough_number{'4342'} = '1121'; $type{'4342'} = 'ST'; $location{'4342'} = 'UNDHEIM';
2438$borough_number{'4343'} = '1120'; $type{'4343'} = 'ST'; $location{'4343'} = 'ORRE';
2439$borough_number{'4348'} = '1121'; $type{'4348'} = 'BX'; $location{'4348'} = 'BRYNE';
2440$borough_number{'4349'} = '1121'; $type{'4349'} = 'BX'; $location{'4349'} = 'BRYNE';
2441$borough_number{'4352'} = '1120'; $type{'4352'} = 'ST'; $location{'4352'} = 'KLEPPE';
2442$borough_number{'4353'} = '1120'; $type{'4353'} = 'ST'; $location{'4353'} = 'KLEPP STASJON';
2443$borough_number{'4354'} = '1120'; $type{'4354'} = 'ST'; $location{'4354'} = 'VOLL';
2444$borough_number{'4355'} = '1121'; $type{'4355'} = 'ST'; $location{'4355'} = 'KVERNALAND';
2445$borough_number{'4356'} = '1121'; $type{'4356'} = 'BX'; $location{'4356'} = 'KVERNALAND';
2446$borough_number{'4357'} = '1120'; $type{'4357'} = 'BX'; $location{'4357'} = 'KLEPP STASJON';
2447$borough_number{'4358'} = '1120'; $type{'4358'} = 'BX'; $location{'4358'} = 'KLEPPE';
2448$borough_number{'4360'} = '1119'; $type{'4360'} = 'ST'; $location{'4360'} = 'VARHAUG';
2449$borough_number{'4362'} = '1119'; $type{'4362'} = 'ST'; $location{'4362'} = 'VIGRESTAD';
2450$borough_number{'4363'} = '1119'; $type{'4363'} = 'ST'; $location{'4363'} = 'BRUSAND';
2451$borough_number{'4364'} = '1119'; $type{'4364'} = 'STBX'; $location{'4364'} = 'SIREV�G';
2452$borough_number{'4365'} = '1119'; $type{'4365'} = 'ST'; $location{'4365'} = 'N�RB�';
2453$borough_number{'4367'} = '1119'; $type{'4367'} = 'BX'; $location{'4367'} = 'N�RB�';
2454$borough_number{'4368'} = '1119'; $type{'4368'} = 'BX'; $location{'4368'} = 'VARHAUG';
2455$borough_number{'4369'} = '1119'; $type{'4369'} = 'BX'; $location{'4369'} = 'VIGRESTAD';
2456$borough_number{'4370'} = '1101'; $type{'4370'} = 'STBX'; $location{'4370'} = 'EGERSUND';
2457$borough_number{'4375'} = '1101'; $type{'4375'} = 'ST'; $location{'4375'} = 'HELLVIK';
2458$borough_number{'4376'} = '1101'; $type{'4376'} = 'STBX'; $location{'4376'} = 'HELLELAND';
2459$borough_number{'4379'} = '1101'; $type{'4379'} = 'BX'; $location{'4379'} = 'EGERSUND';
2460$borough_number{'4380'} = '1111'; $type{'4380'} = 'ST'; $location{'4380'} = 'HAUGE I DALANE';
2461$borough_number{'4381'} = '1111'; $type{'4381'} = 'BX'; $location{'4381'} = 'HAUGE I DALANE';
2462$borough_number{'4387'} = '1114'; $type{'4387'} = 'ST'; $location{'4387'} = 'BJERKREIM';
2463$borough_number{'4389'} = '1114'; $type{'4389'} = 'STBX'; $location{'4389'} = 'VIKES�';
2464$borough_number{'4391'} = '1102'; $type{'4391'} = 'BX'; $location{'4391'} = 'SANDNES';
2465$borough_number{'4392'} = '1102'; $type{'4392'} = 'BX'; $location{'4392'} = 'SANDNES';
2466$borough_number{'4393'} = '1102'; $type{'4393'} = 'BX'; $location{'4393'} = 'SANDNES';
2467$borough_number{'4395'} = '1102'; $type{'4395'} = 'BX'; $location{'4395'} = 'HOMMERS�K';
2468$borough_number{'4396'} = '1102'; $type{'4396'} = 'BX'; $location{'4396'} = 'SANDNES';
2469$borough_number{'4397'} = '1102'; $type{'4397'} = 'BX'; $location{'4397'} = 'SANDNES';
2470$borough_number{'4398'} = '1102'; $type{'4398'} = 'BX'; $location{'4398'} = 'SANDNES';
2471$borough_number{'4400'} = '1004'; $type{'4400'} = 'ST'; $location{'4400'} = 'FLEKKEFJORD';
2472$borough_number{'4401'} = '1004'; $type{'4401'} = 'BX'; $location{'4401'} = 'FLEKKEFJORD';
2473$borough_number{'4402'} = '1004'; $type{'4402'} = 'BX'; $location{'4402'} = 'FLEKKEFJORD';
2474$borough_number{'4403'} = '1004'; $type{'4403'} = 'BX'; $location{'4403'} = 'FLEKKEFJORD';
2475$borough_number{'4420'} = '1004'; $type{'4420'} = 'ST'; $location{'4420'} = '�NA-SIRA';
2476$borough_number{'4432'} = '1004'; $type{'4432'} = 'ST'; $location{'4432'} = 'HIDRASUND';
2477$borough_number{'4434'} = '1004'; $type{'4434'} = 'ST'; $location{'4434'} = 'ANDABEL�Y';
2478$borough_number{'4436'} = '1004'; $type{'4436'} = 'ST'; $location{'4436'} = 'GYLAND';
2479$borough_number{'4438'} = '1004'; $type{'4438'} = 'STBX'; $location{'4438'} = 'SIRA';
2480$borough_number{'4440'} = '1046'; $type{'4440'} = 'ST'; $location{'4440'} = 'TONSTAD';
2481$borough_number{'4441'} = '1046'; $type{'4441'} = 'BX'; $location{'4441'} = 'TONSTAD';
2482$borough_number{'4443'} = '1046'; $type{'4443'} = 'ST'; $location{'4443'} = 'TJ�RHOM';
2483$borough_number{'4460'} = '1112'; $type{'4460'} = 'ST'; $location{'4460'} = 'MOI';
2484$borough_number{'4462'} = '1112'; $type{'4462'} = 'ST'; $location{'4462'} = 'HOVSHERAD';
2485$borough_number{'4463'} = '1112'; $type{'4463'} = 'ST'; $location{'4463'} = 'UALAND';
2486$borough_number{'4465'} = '1112'; $type{'4465'} = 'BX'; $location{'4465'} = 'MOI';
2487$borough_number{'4473'} = '1037'; $type{'4473'} = 'ST'; $location{'4473'} = 'KVINLOG';
2488$borough_number{'4480'} = '1037'; $type{'4480'} = 'ST'; $location{'4480'} = 'KVINESDAL';
2489$borough_number{'4484'} = '1037'; $type{'4484'} = 'ST'; $location{'4484'} = '�YESTRANDA';
2490$borough_number{'4485'} = '1037'; $type{'4485'} = 'STBX'; $location{'4485'} = 'FEDA';
2491$borough_number{'4490'} = '1037'; $type{'4490'} = 'BX'; $location{'4490'} = 'KVINESDAL';
2492$borough_number{'4491'} = '1037'; $type{'4491'} = 'BX'; $location{'4491'} = 'KVINESDAL';
2493$borough_number{'4492'} = '1037'; $type{'4492'} = 'BX'; $location{'4492'} = 'KVINESDAL';
2494$borough_number{'4501'} = '1002'; $type{'4501'} = 'BX'; $location{'4501'} = 'MANDAL';
2495$borough_number{'4502'} = '1002'; $type{'4502'} = 'BX'; $location{'4502'} = 'MANDAL';
2496$borough_number{'4503'} = '1002'; $type{'4503'} = 'BX'; $location{'4503'} = 'MANDAL';
2497$borough_number{'4504'} = '1002'; $type{'4504'} = 'BX'; $location{'4504'} = 'MANDAL';
2498$borough_number{'4505'} = '1002'; $type{'4505'} = 'BX'; $location{'4505'} = 'MANDAL';
2499$borough_number{'4506'} = '1002'; $type{'4506'} = 'BX'; $location{'4506'} = 'MANDAL';
2500$borough_number{'4509'} = '1002'; $type{'4509'} = 'SX'; $location{'4509'} = 'MANDAL';
2501$borough_number{'4512'} = '1029'; $type{'4512'} = 'ST'; $location{'4512'} = 'LINDESNES';
2502$borough_number{'4513'} = '1002'; $type{'4513'} = 'ST'; $location{'4513'} = 'MANDAL';
2503$borough_number{'4514'} = '1002'; $type{'4514'} = 'ST'; $location{'4514'} = 'MANDAL';
2504$borough_number{'4515'} = '1002'; $type{'4515'} = 'ST'; $location{'4515'} = 'MANDAL';
2505$borough_number{'4516'} = '1002'; $type{'4516'} = 'ST'; $location{'4516'} = 'MANDAL';
2506$borough_number{'4517'} = '1002'; $type{'4517'} = 'ST'; $location{'4517'} = 'MANDAL';
2507$borough_number{'4519'} = '1002'; $type{'4519'} = 'ST'; $location{'4519'} = 'HOLUM';
2508$borough_number{'4520'} = '1029'; $type{'4520'} = 'ST'; $location{'4520'} = 'S�R-AUDNEDAL';
2509$borough_number{'4521'} = '1029'; $type{'4521'} = 'STBX'; $location{'4521'} = 'SPANGEREID';
2510$borough_number{'4523'} = '1029'; $type{'4523'} = 'BX'; $location{'4523'} = 'S�R-AUDNEDAL';
2511$borough_number{'4524'} = '1029'; $type{'4524'} = 'BX'; $location{'4524'} = 'S�R-AUDNEDAL';
2512$borough_number{'4525'} = '1027'; $type{'4525'} = 'STBX'; $location{'4525'} = 'KONSMO';
2513$borough_number{'4528'} = '1027'; $type{'4528'} = 'ST'; $location{'4528'} = 'KOLLUNGTVEIT';
2514$borough_number{'4529'} = '1027'; $type{'4529'} = 'ST'; $location{'4529'} = 'BYREMO';
2515$borough_number{'4532'} = '1021'; $type{'4532'} = 'ST'; $location{'4532'} = '�YSLEB�';
2516$borough_number{'4534'} = '1021'; $type{'4534'} = 'STBX'; $location{'4534'} = 'MARNARDAL';
2517$borough_number{'4536'} = '1021'; $type{'4536'} = 'ST'; $location{'4536'} = 'BJELLAND';
2518$borough_number{'4540'} = '1026'; $type{'4540'} = 'STBX'; $location{'4540'} = '�SERAL';
2519$borough_number{'4544'} = '1026'; $type{'4544'} = 'ST'; $location{'4544'} = 'FOSSDAL';
2520$borough_number{'4550'} = '1003'; $type{'4550'} = 'ST'; $location{'4550'} = 'FARSUND';
2521$borough_number{'4551'} = '1003'; $type{'4551'} = 'BX'; $location{'4551'} = 'FARSUND';
2522$borough_number{'4552'} = '1003'; $type{'4552'} = 'BX'; $location{'4552'} = 'FARSUND';
2523$borough_number{'4553'} = '1003'; $type{'4553'} = 'BX'; $location{'4553'} = 'FARSUND';
2524$borough_number{'4554'} = '1003'; $type{'4554'} = 'BX'; $location{'4554'} = 'FARSUND';
2525$borough_number{'4557'} = '1003'; $type{'4557'} = 'BX'; $location{'4557'} = 'VANSE';
2526$borough_number{'4558'} = '1003'; $type{'4558'} = 'BX'; $location{'4558'} = 'VANSE';
2527$borough_number{'4560'} = '1003'; $type{'4560'} = 'ST'; $location{'4560'} = 'VANSE';
2528$borough_number{'4563'} = '1003'; $type{'4563'} = 'ST'; $location{'4563'} = 'BORHAUG';
2529$borough_number{'4575'} = '1032'; $type{'4575'} = 'BX'; $location{'4575'} = 'LYNGDAL';
2530$borough_number{'4576'} = '1032'; $type{'4576'} = 'BX'; $location{'4576'} = 'LYNGDAL';
2531$borough_number{'4577'} = '1032'; $type{'4577'} = 'BX'; $location{'4577'} = 'LYNGDAL';
2532$borough_number{'4579'} = '1032'; $type{'4579'} = 'BX'; $location{'4579'} = 'LYNGDAL';
2533$borough_number{'4580'} = '1032'; $type{'4580'} = 'ST'; $location{'4580'} = 'LYNGDAL';
2534$borough_number{'4586'} = '1032'; $type{'4586'} = 'ST'; $location{'4586'} = 'KORSHAMN';
2535$borough_number{'4588'} = '1032'; $type{'4588'} = 'ST'; $location{'4588'} = 'KV�S';
2536$borough_number{'4590'} = '1034'; $type{'4590'} = 'ST'; $location{'4590'} = 'SNARTEMO';
2537$borough_number{'4595'} = '1034'; $type{'4595'} = 'ST'; $location{'4595'} = 'TINGVATN';
2538$borough_number{'4596'} = '1034'; $type{'4596'} = 'STBX'; $location{'4596'} = 'EIKEN';
2539$borough_number{'4604'} = '1001'; $type{'4604'} = 'SX'; $location{'4604'} = 'KRISTIANSAND S';
2540$borough_number{'4605'} = '1001'; $type{'4605'} = 'SX'; $location{'4605'} = 'KRISTIANSAND S';
2541$borough_number{'4606'} = '1001'; $type{'4606'} = 'SX'; $location{'4606'} = 'KRISTIANSAND S';
2542$borough_number{'4609'} = '1001'; $type{'4609'} = 'ST'; $location{'4609'} = 'KARDEMOMME BY';
2543$borough_number{'4610'} = '1001'; $type{'4610'} = 'ST'; $location{'4610'} = 'KRISTIANSAND S';
2544$borough_number{'4611'} = '1001'; $type{'4611'} = 'ST'; $location{'4611'} = 'KRISTIANSAND S';
2545$borough_number{'4612'} = '1001'; $type{'4612'} = 'ST'; $location{'4612'} = 'KRISTIANSAND S';
2546$borough_number{'4613'} = '1001'; $type{'4613'} = 'ST'; $location{'4613'} = 'KRISTIANSAND S';
2547$borough_number{'4614'} = '1001'; $type{'4614'} = 'ST'; $location{'4614'} = 'KRISTIANSAND S';
2548$borough_number{'4615'} = '1001'; $type{'4615'} = 'ST'; $location{'4615'} = 'KRISTIANSAND S';
2549$borough_number{'4616'} = '1001'; $type{'4616'} = 'ST'; $location{'4616'} = 'KRISTIANSAND S';
2550$borough_number{'4617'} = '1001'; $type{'4617'} = 'ST'; $location{'4617'} = 'KRISTIANSAND S';
2551$borough_number{'4618'} = '1001'; $type{'4618'} = 'STBX'; $location{'4618'} = 'KRISTIANSAND S';
2552$borough_number{'4619'} = '1001'; $type{'4619'} = 'ST'; $location{'4619'} = 'MOSBY';
2553$borough_number{'4620'} = '1001'; $type{'4620'} = 'ST'; $location{'4620'} = 'KRISTIANSAND S';
2554$borough_number{'4621'} = '1001'; $type{'4621'} = 'ST'; $location{'4621'} = 'KRISTIANSAND S';
2555$borough_number{'4622'} = '1001'; $type{'4622'} = 'ST'; $location{'4622'} = 'KRISTIANSAND S';
2556$borough_number{'4623'} = '1001'; $type{'4623'} = 'ST'; $location{'4623'} = 'KRISTIANSAND S';
2557$borough_number{'4624'} = '1001'; $type{'4624'} = 'ST'; $location{'4624'} = 'KRISTIANSAND S';
2558$borough_number{'4625'} = '1001'; $type{'4625'} = 'ST'; $location{'4625'} = 'FLEKKER�Y';
2559$borough_number{'4626'} = '1001'; $type{'4626'} = 'STBX'; $location{'4626'} = 'KRISTIANSAND S';
2560$borough_number{'4628'} = '1001'; $type{'4628'} = 'ST'; $location{'4628'} = 'KRISTIANSAND S';
2561$borough_number{'4629'} = '1001'; $type{'4629'} = 'STBX'; $location{'4629'} = 'KRISTIANSAND S';
2562$borough_number{'4630'} = '1001'; $type{'4630'} = 'ST'; $location{'4630'} = 'KRISTIANSAND S';
2563$borough_number{'4631'} = '1001'; $type{'4631'} = 'ST'; $location{'4631'} = 'KRISTIANSAND S';
2564$borough_number{'4632'} = '1001'; $type{'4632'} = 'ST'; $location{'4632'} = 'KRISTIANSAND S';
2565$borough_number{'4633'} = '1001'; $type{'4633'} = 'ST'; $location{'4633'} = 'KRISTIANSAND S';
2566$borough_number{'4634'} = '1001'; $type{'4634'} = 'STBX'; $location{'4634'} = 'KRISTIANSAND S';
2567$borough_number{'4635'} = '1001'; $type{'4635'} = 'ST'; $location{'4635'} = 'KRISTIANSAND S';
2568$borough_number{'4636'} = '1001'; $type{'4636'} = 'ST'; $location{'4636'} = 'KRISTIANSAND S';
2569$borough_number{'4637'} = '1001'; $type{'4637'} = 'ST'; $location{'4637'} = 'KRISTIANSAND S';
2570$borough_number{'4638'} = '1001'; $type{'4638'} = 'ST'; $location{'4638'} = 'KRISTIANSAND S';
2571$borough_number{'4639'} = '1001'; $type{'4639'} = 'STBX'; $location{'4639'} = 'KRISTIANSAND S';
2572$borough_number{'4640'} = '1018'; $type{'4640'} = 'STBX'; $location{'4640'} = 'S�GNE';
2573$borough_number{'4645'} = '1017'; $type{'4645'} = 'ST'; $location{'4645'} = 'NODELAND';
2574$borough_number{'4646'} = '1017'; $type{'4646'} = 'STBX'; $location{'4646'} = 'FINSLAND';
2575$borough_number{'4647'} = '1017'; $type{'4647'} = 'STBX'; $location{'4647'} = 'BRENN�SEN';
2576$borough_number{'4651'} = '1001'; $type{'4651'} = 'BX'; $location{'4651'} = 'HAMRESANDEN';
2577$borough_number{'4656'} = '1001'; $type{'4656'} = 'ST'; $location{'4656'} = 'HAMRESANDEN';
2578$borough_number{'4657'} = '1001'; $type{'4657'} = 'ST'; $location{'4657'} = 'KJEVIK';
2579$borough_number{'4658'} = '1001'; $type{'4658'} = 'ST'; $location{'4658'} = 'TVEIT';
2580$borough_number{'4659'} = '1001'; $type{'4659'} = 'BX'; $location{'4659'} = 'KRISTIANSAND S';
2581$borough_number{'4661'} = '1001'; $type{'4661'} = 'BX'; $location{'4661'} = 'KRISTIANSAND S';
2582$borough_number{'4662'} = '1001'; $type{'4662'} = 'BX'; $location{'4662'} = 'KRISTIANSAND S';
2583$borough_number{'4663'} = '1001'; $type{'4663'} = 'BX'; $location{'4663'} = 'KRISTIANSAND S';
2584$borough_number{'4664'} = '1001'; $type{'4664'} = 'BX'; $location{'4664'} = 'KRISTIANSAND S';
2585$borough_number{'4665'} = '1001'; $type{'4665'} = 'BX'; $location{'4665'} = 'KRISTIANSAND S';
2586$borough_number{'4666'} = '1001'; $type{'4666'} = 'BX'; $location{'4666'} = 'KRISTIANSAND S';
2587$borough_number{'4671'} = '1001'; $type{'4671'} = 'BX'; $location{'4671'} = 'MOSBY';
2588$borough_number{'4672'} = '1001'; $type{'4672'} = 'BX'; $location{'4672'} = 'KRISTIANSAND S';
2589$borough_number{'4673'} = '1001'; $type{'4673'} = 'BX'; $location{'4673'} = 'KRISTIANSAND S';
2590$borough_number{'4674'} = '1001'; $type{'4674'} = 'BX'; $location{'4674'} = 'KRISTIANSAND S';
2591$borough_number{'4675'} = '1001'; $type{'4675'} = 'BX'; $location{'4675'} = 'KRISTIANSAND S';
2592$borough_number{'4676'} = '1001'; $type{'4676'} = 'BX'; $location{'4676'} = 'KRISTIANSAND S';
2593$borough_number{'4677'} = '1001'; $type{'4677'} = 'BX'; $location{'4677'} = 'KRISTIANSAND S';
2594$borough_number{'4678'} = '1001'; $type{'4678'} = 'BX'; $location{'4678'} = 'KRISTIANSAND S';
2595$borough_number{'4679'} = '1001'; $type{'4679'} = 'BX'; $location{'4679'} = 'FLEKKER�Y';
2596$borough_number{'4682'} = '1018'; $type{'4682'} = 'BX'; $location{'4682'} = 'S�GNE';
2597$borough_number{'4683'} = '1018'; $type{'4683'} = 'BX'; $location{'4683'} = 'S�GNE';
2598$borough_number{'4685'} = '1017'; $type{'4685'} = 'BX'; $location{'4685'} = 'NODELAND';
2599$borough_number{'4686'} = '1001'; $type{'4686'} = 'BX'; $location{'4686'} = 'KRISTIANSAND S';
2600$borough_number{'4687'} = '1001'; $type{'4687'} = 'BX'; $location{'4687'} = 'KRISTIANSAND S';
2601$borough_number{'4688'} = '1001'; $type{'4688'} = 'BX'; $location{'4688'} = 'KRISTIANSAND S';
2602$borough_number{'4689'} = '1001'; $type{'4689'} = 'BX'; $location{'4689'} = 'KRISTIANSAND S';
2603$borough_number{'4691'} = '1001'; $type{'4691'} = 'BX'; $location{'4691'} = 'KRISTIANSAND S';
2604$borough_number{'4693'} = '1001'; $type{'4693'} = 'BX'; $location{'4693'} = 'KRISTIANSAND S';
2605$borough_number{'4696'} = '1001'; $type{'4696'} = 'BX'; $location{'4696'} = 'KRISTIANSAND S';
2606$borough_number{'4697'} = '1001'; $type{'4697'} = 'BX'; $location{'4697'} = 'KRISTIANSAND S';
2607$borough_number{'4699'} = '1001'; $type{'4699'} = 'BX'; $location{'4699'} = 'TVEIT';
2608$borough_number{'4700'} = '1014'; $type{'4700'} = 'ST'; $location{'4700'} = 'VENNESLA';
2609$borough_number{'4701'} = '1014'; $type{'4701'} = 'BX'; $location{'4701'} = 'VENNESLA';
2610$borough_number{'4702'} = '1014'; $type{'4702'} = 'BX'; $location{'4702'} = 'VENNESLA';
2611$borough_number{'4703'} = '1014'; $type{'4703'} = 'BX'; $location{'4703'} = 'VENNESLA';
2612$borough_number{'4705'} = '1014'; $type{'4705'} = 'BX'; $location{'4705'} = '�VREB�';
2613$borough_number{'4715'} = '1014'; $type{'4715'} = 'ST'; $location{'4715'} = '�VREB�';
2614$borough_number{'4720'} = '1014'; $type{'4720'} = 'STBX'; $location{'4720'} = 'H�GELAND';
2615$borough_number{'4724'} = '0935'; $type{'4724'} = 'STBX'; $location{'4724'} = 'IVELAND';
2616$borough_number{'4730'} = '0935'; $type{'4730'} = 'ST'; $location{'4730'} = 'VATNESTR�M';
2617$borough_number{'4733'} = '0937'; $type{'4733'} = 'BX'; $location{'4733'} = 'EVJE';
2618$borough_number{'4734'} = '0937'; $type{'4734'} = 'BX'; $location{'4734'} = 'EVJE';
2619$borough_number{'4735'} = '0937'; $type{'4735'} = 'STBX'; $location{'4735'} = 'EVJE';
2620$borough_number{'4737'} = '0937'; $type{'4737'} = 'ST'; $location{'4737'} = 'HORNNES';
2621$borough_number{'4741'} = '0938'; $type{'4741'} = 'ST'; $location{'4741'} = 'BYGLANDSFJORD';
2622$borough_number{'4742'} = '0938'; $type{'4742'} = 'STBX'; $location{'4742'} = 'GRENDI';
2623$borough_number{'4745'} = '0938'; $type{'4745'} = 'STBX'; $location{'4745'} = 'BYGLAND';
2624$borough_number{'4747'} = '0940'; $type{'4747'} = 'STBX'; $location{'4747'} = 'VALLE';
2625$borough_number{'4748'} = '0940'; $type{'4748'} = 'STBX'; $location{'4748'} = 'RYSSTAD';
2626$borough_number{'4754'} = '0941'; $type{'4754'} = 'ST'; $location{'4754'} = 'BYKLE';
2627$borough_number{'4755'} = '0941'; $type{'4755'} = 'STBX'; $location{'4755'} = 'HOVDEN I SETESDAL';
2628$borough_number{'4760'} = '0928'; $type{'4760'} = 'ST'; $location{'4760'} = 'BIRKELAND';
2629$borough_number{'4766'} = '0928'; $type{'4766'} = 'ST'; $location{'4766'} = 'HEREFOSS';
2630$borough_number{'4768'} = '0928'; $type{'4768'} = 'ST'; $location{'4768'} = 'ENGESLAND';
2631$borough_number{'4770'} = '0926'; $type{'4770'} = 'STBX'; $location{'4770'} = 'H�V�G';
2632$borough_number{'4780'} = '0926'; $type{'4780'} = 'ST'; $location{'4780'} = 'BREKKEST�';
2633$borough_number{'4790'} = '0926'; $type{'4790'} = 'ST'; $location{'4790'} = 'LILLESAND';
2634$borough_number{'4791'} = '0926'; $type{'4791'} = 'BX'; $location{'4791'} = 'LILLESAND';
2635$borough_number{'4792'} = '0926'; $type{'4792'} = 'BX'; $location{'4792'} = 'LILLESAND';
2636$borough_number{'4794'} = '0926'; $type{'4794'} = 'BX'; $location{'4794'} = 'LILLESAND';
2637$borough_number{'4795'} = '0928'; $type{'4795'} = 'BX'; $location{'4795'} = 'BIRKELAND';
2638$borough_number{'4801'} = '0906'; $type{'4801'} = 'BX'; $location{'4801'} = 'ARENDAL';
2639$borough_number{'4802'} = '0906'; $type{'4802'} = 'BX'; $location{'4802'} = 'ARENDAL';
2640$borough_number{'4803'} = '0906'; $type{'4803'} = 'BX'; $location{'4803'} = 'ARENDAL';
2641$borough_number{'4804'} = '0906'; $type{'4804'} = 'BX'; $location{'4804'} = 'ARENDAL';
2642$borough_number{'4808'} = '0906'; $type{'4808'} = 'SX'; $location{'4808'} = 'ARENDAL';
2643$borough_number{'4809'} = '0906'; $type{'4809'} = 'SX'; $location{'4809'} = 'ARENDAL';
2644$borough_number{'4810'} = '0906'; $type{'4810'} = 'ST'; $location{'4810'} = 'EYDEHAVN';
2645$borough_number{'4812'} = '0906'; $type{'4812'} = 'ST'; $location{'4812'} = 'KONGSHAVN';
2646$borough_number{'4815'} = '0906'; $type{'4815'} = 'ST'; $location{'4815'} = 'SALTR�D';
2647$borough_number{'4816'} = '0906'; $type{'4816'} = 'ST'; $location{'4816'} = 'KOLBJ�RNSVIK';
2648$borough_number{'4817'} = '0906'; $type{'4817'} = 'ST'; $location{'4817'} = 'HIS';
2649$borough_number{'4818'} = '0906'; $type{'4818'} = 'ST'; $location{'4818'} = 'F�RVIK';
2650$borough_number{'4820'} = '0919'; $type{'4820'} = 'ST'; $location{'4820'} = 'FROLAND';
2651$borough_number{'4821'} = '0906'; $type{'4821'} = 'STBX'; $location{'4821'} = 'RYKENE';
2652$borough_number{'4823'} = '0906'; $type{'4823'} = 'ST'; $location{'4823'} = 'NEDENES';
2653$borough_number{'4824'} = '0906'; $type{'4824'} = 'ST'; $location{'4824'} = 'BJORBEKK';
2654$borough_number{'4825'} = '0906'; $type{'4825'} = 'ST'; $location{'4825'} = 'ARENDAL';
2655$borough_number{'4827'} = '0919'; $type{'4827'} = 'ST'; $location{'4827'} = 'FROLANDS VERK';
2656$borough_number{'4828'} = '0919'; $type{'4828'} = 'ST'; $location{'4828'} = 'MJ�VATN';
2657$borough_number{'4830'} = '0919'; $type{'4830'} = 'ST'; $location{'4830'} = 'HYNNEKLEIV';
2658$borough_number{'4832'} = '0919'; $type{'4832'} = 'ST'; $location{'4832'} = 'MYKLAND';
2659$borough_number{'4834'} = '0919'; $type{'4834'} = 'ST'; $location{'4834'} = 'RISDAL';
2660$borough_number{'4836'} = '0906'; $type{'4836'} = 'ST'; $location{'4836'} = 'ARENDAL';
2661$borough_number{'4838'} = '0906'; $type{'4838'} = 'ST'; $location{'4838'} = 'ARENDAL';
2662$borough_number{'4839'} = '0906'; $type{'4839'} = 'ST'; $location{'4839'} = 'ARENDAL';
2663$borough_number{'4841'} = '0906'; $type{'4841'} = 'ST'; $location{'4841'} = 'ARENDAL';
2664$borough_number{'4842'} = '0906'; $type{'4842'} = 'ST'; $location{'4842'} = 'ARENDAL';
2665$borough_number{'4843'} = '0906'; $type{'4843'} = 'ST'; $location{'4843'} = 'ARENDAL';
2666$borough_number{'4844'} = '0906'; $type{'4844'} = 'ST'; $location{'4844'} = 'ARENDAL';
2667$borough_number{'4846'} = '0906'; $type{'4846'} = 'ST'; $location{'4846'} = 'ARENDAL';
2668$borough_number{'4847'} = '0906'; $type{'4847'} = 'ST'; $location{'4847'} = 'ARENDAL';
2669$borough_number{'4848'} = '0906'; $type{'4848'} = 'ST'; $location{'4848'} = 'ARENDAL';
2670$borough_number{'4849'} = '0906'; $type{'4849'} = 'ST'; $location{'4849'} = 'ARENDAL';
2671$borough_number{'4851'} = '0906'; $type{'4851'} = 'BX'; $location{'4851'} = 'SALTR�D';
2672$borough_number{'4852'} = '0906'; $type{'4852'} = 'BX'; $location{'4852'} = 'F�RVIK';
2673$borough_number{'4853'} = '0906'; $type{'4853'} = 'BX'; $location{'4853'} = 'HIS';
2674$borough_number{'4854'} = '0906'; $type{'4854'} = 'BX'; $location{'4854'} = 'NEDENES';
2675$borough_number{'4855'} = '0919'; $type{'4855'} = 'BX'; $location{'4855'} = 'FROLAND';
2676$borough_number{'4856'} = '0906'; $type{'4856'} = 'BX'; $location{'4856'} = 'ARENDAL';
2677$borough_number{'4857'} = '0906'; $type{'4857'} = 'BX'; $location{'4857'} = 'ARENDAL';
2678$borough_number{'4858'} = '0906'; $type{'4858'} = 'BX'; $location{'4858'} = 'ARENDAL';
2679$borough_number{'4859'} = '0906'; $type{'4859'} = 'BX'; $location{'4859'} = 'ARENDAL';
2680$borough_number{'4861'} = '0906'; $type{'4861'} = 'BX'; $location{'4861'} = 'ARENDAL';
2681$borough_number{'4862'} = '0906'; $type{'4862'} = 'BX'; $location{'4862'} = 'EYDEHAVN';
2682$borough_number{'4863'} = '0929'; $type{'4863'} = 'STBX'; $location{'4863'} = 'NELAUG';
2683$borough_number{'4864'} = '0929'; $type{'4864'} = 'BX'; $location{'4864'} = '�MLI';
2684$borough_number{'4865'} = '0929'; $type{'4865'} = 'ST'; $location{'4865'} = '�MLI';
2685$borough_number{'4868'} = '0929'; $type{'4868'} = 'ST'; $location{'4868'} = 'SEL�SVATN';
2686$borough_number{'4869'} = '0929'; $type{'4869'} = 'ST'; $location{'4869'} = 'D�LEMO';
2687$borough_number{'4870'} = '0904'; $type{'4870'} = 'ST'; $location{'4870'} = 'FEVIK';
2688$borough_number{'4876'} = '0904'; $type{'4876'} = 'ST'; $location{'4876'} = 'GRIMSTAD';
2689$borough_number{'4877'} = '0904'; $type{'4877'} = 'ST'; $location{'4877'} = 'GRIMSTAD';
2690$borough_number{'4878'} = '0904'; $type{'4878'} = 'ST'; $location{'4878'} = 'GRIMSTAD';
2691$borough_number{'4879'} = '0904'; $type{'4879'} = 'ST'; $location{'4879'} = 'GRIMSTAD';
2692$borough_number{'4884'} = '0904'; $type{'4884'} = 'BX'; $location{'4884'} = 'GRIMSTAD';
2693$borough_number{'4885'} = '0904'; $type{'4885'} = 'ST'; $location{'4885'} = 'GRIMSTAD';
2694$borough_number{'4886'} = '0904'; $type{'4886'} = 'ST'; $location{'4886'} = 'GRIMSTAD';
2695$borough_number{'4887'} = '0904'; $type{'4887'} = 'ST'; $location{'4887'} = 'GRIMSTAD';
2696$borough_number{'4888'} = '0904'; $type{'4888'} = 'ST'; $location{'4888'} = 'HOMBORSUND';
2697$borough_number{'4889'} = '0904'; $type{'4889'} = 'BX'; $location{'4889'} = 'FEVIK';
2698$borough_number{'4891'} = '0904'; $type{'4891'} = 'BX'; $location{'4891'} = 'GRIMSTAD';
2699$borough_number{'4892'} = '0904'; $type{'4892'} = 'BX'; $location{'4892'} = 'GRIMSTAD';
2700$borough_number{'4894'} = '0904'; $type{'4894'} = 'IO'; $location{'4894'} = 'GRIMSTAD';
2701$borough_number{'4895'} = '0904'; $type{'4895'} = 'IO'; $location{'4895'} = 'GRIMSTAD';
2702$borough_number{'4896'} = '0904'; $type{'4896'} = 'IO'; $location{'4896'} = 'GRIMSTAD';
2703$borough_number{'4898'} = '0904'; $type{'4898'} = 'SX'; $location{'4898'} = 'GRIMSTAD';
2704$borough_number{'4900'} = '0914'; $type{'4900'} = 'ST'; $location{'4900'} = 'TVEDESTRAND';
2705$borough_number{'4901'} = '0914'; $type{'4901'} = 'BX'; $location{'4901'} = 'TVEDESTRAND';
2706$borough_number{'4902'} = '0914'; $type{'4902'} = 'BX'; $location{'4902'} = 'TVEDESTRAND';
2707$borough_number{'4909'} = '0914'; $type{'4909'} = 'ST'; $location{'4909'} = 'SONGE';
2708$borough_number{'4910'} = '0914'; $type{'4910'} = 'STBX'; $location{'4910'} = 'LYNG�R';
2709$borough_number{'4912'} = '0914'; $type{'4912'} = 'ST'; $location{'4912'} = 'GJEVING';
2710$borough_number{'4915'} = '0914'; $type{'4915'} = 'ST'; $location{'4915'} = 'VESTRE SAND�YA';
2711$borough_number{'4916'} = '0914'; $type{'4916'} = 'ST'; $location{'4916'} = 'BOR�Y';
2712$borough_number{'4920'} = '0906'; $type{'4920'} = 'STBX'; $location{'4920'} = 'STAUB�';
2713$borough_number{'4934'} = '0914'; $type{'4934'} = 'ST'; $location{'4934'} = 'NESGRENDA';
2714$borough_number{'4950'} = '0901'; $type{'4950'} = 'ST'; $location{'4950'} = 'RIS�R';
2715$borough_number{'4951'} = '0901'; $type{'4951'} = 'BX'; $location{'4951'} = 'RIS�R';
2716$borough_number{'4952'} = '0901'; $type{'4952'} = 'BX'; $location{'4952'} = 'RIS�R';
2717$borough_number{'4953'} = '0901'; $type{'4953'} = 'BX'; $location{'4953'} = 'RIS�R';
2718$borough_number{'4955'} = '0901'; $type{'4955'} = 'BX'; $location{'4955'} = 'RIS�R';
2719$borough_number{'4971'} = '0911'; $type{'4971'} = 'BX'; $location{'4971'} = 'SUNDEBRU';
2720$borough_number{'4972'} = '0911'; $type{'4972'} = 'BX'; $location{'4972'} = 'GJERSTAD';
2721$borough_number{'4973'} = '0912'; $type{'4973'} = 'BX'; $location{'4973'} = 'VEG�RSHEI';
2722$borough_number{'4974'} = '0901'; $type{'4974'} = 'BX'; $location{'4974'} = 'S�NDELED';
2723$borough_number{'4980'} = '0911'; $type{'4980'} = 'ST'; $location{'4980'} = 'GJERSTAD';
2724$borough_number{'4985'} = '0912'; $type{'4985'} = 'ST'; $location{'4985'} = 'VEG�RSHEI';
2725$borough_number{'4990'} = '0901'; $type{'4990'} = 'ST'; $location{'4990'} = 'S�NDELED';
2726$borough_number{'4993'} = '0911'; $type{'4993'} = 'ST'; $location{'4993'} = 'SUNDEBRU';
2727$borough_number{'4994'} = '0901'; $type{'4994'} = 'ST'; $location{'4994'} = 'AKLAND';
2728$borough_number{'5003'} = '1201'; $type{'5003'} = 'STBX'; $location{'5003'} = 'BERGEN';
2729$borough_number{'5004'} = '1201'; $type{'5004'} = 'ST'; $location{'5004'} = 'BERGEN';
2730$borough_number{'5005'} = '1201'; $type{'5005'} = 'ST'; $location{'5005'} = 'BERGEN';
2731$borough_number{'5006'} = '1201'; $type{'5006'} = 'STBX'; $location{'5006'} = 'BERGEN';
2732$borough_number{'5007'} = '1201'; $type{'5007'} = 'ST'; $location{'5007'} = 'BERGEN';
2733$borough_number{'5008'} = '1201'; $type{'5008'} = 'ST'; $location{'5008'} = 'BERGEN';
2734$borough_number{'5009'} = '1201'; $type{'5009'} = 'ST'; $location{'5009'} = 'BERGEN';
2735$borough_number{'5010'} = '1201'; $type{'5010'} = 'ST'; $location{'5010'} = 'BERGEN';
2736$borough_number{'5011'} = '1201'; $type{'5011'} = 'ST'; $location{'5011'} = 'BERGEN';
2737$borough_number{'5012'} = '1201'; $type{'5012'} = 'ST'; $location{'5012'} = 'BERGEN';
2738$borough_number{'5013'} = '1201'; $type{'5013'} = 'ST'; $location{'5013'} = 'BERGEN';
2739$borough_number{'5014'} = '1201'; $type{'5014'} = 'ST'; $location{'5014'} = 'BERGEN';
2740$borough_number{'5015'} = '1201'; $type{'5015'} = 'ST'; $location{'5015'} = 'BERGEN';
2741$borough_number{'5016'} = '1201'; $type{'5016'} = 'ST'; $location{'5016'} = 'BERGEN';
2742$borough_number{'5017'} = '1201'; $type{'5017'} = 'ST'; $location{'5017'} = 'BERGEN';
2743$borough_number{'5018'} = '1201'; $type{'5018'} = 'ST'; $location{'5018'} = 'BERGEN';
2744$borough_number{'5019'} = '1201'; $type{'5019'} = 'ST'; $location{'5019'} = 'BERGEN';
2745$borough_number{'5020'} = '1201'; $type{'5020'} = 'SX'; $location{'5020'} = 'BERGEN';
2746$borough_number{'5021'} = '1201'; $type{'5021'} = 'IO'; $location{'5021'} = 'BERGEN';
2747$borough_number{'5031'} = '1201'; $type{'5031'} = 'ST'; $location{'5031'} = 'BERGEN';
2748$borough_number{'5032'} = '1201'; $type{'5032'} = 'ST'; $location{'5032'} = 'BERGEN';
2749$borough_number{'5033'} = '1201'; $type{'5033'} = 'ST'; $location{'5033'} = 'BERGEN';
2750$borough_number{'5034'} = '1201'; $type{'5034'} = 'ST'; $location{'5034'} = 'BERGEN';
2751$borough_number{'5035'} = '1201'; $type{'5035'} = 'STBX'; $location{'5035'} = 'BERGEN';
2752$borough_number{'5036'} = '1201'; $type{'5036'} = 'ST'; $location{'5036'} = 'BERGEN';
2753$borough_number{'5037'} = '1201'; $type{'5037'} = 'ST'; $location{'5037'} = 'BERGEN';
2754$borough_number{'5038'} = '1201'; $type{'5038'} = 'ST'; $location{'5038'} = 'BERGEN';
2755$borough_number{'5039'} = '1201'; $type{'5039'} = 'ST'; $location{'5039'} = 'BERGEN';
2756$borough_number{'5041'} = '1201'; $type{'5041'} = 'MU'; $location{'5041'} = 'BERGEN';
2757$borough_number{'5042'} = '1201'; $type{'5042'} = 'ST'; $location{'5042'} = 'BERGEN';
2758$borough_number{'5043'} = '1201'; $type{'5043'} = 'ST'; $location{'5043'} = 'BERGEN';
2759$borough_number{'5045'} = '1201'; $type{'5045'} = 'MU'; $location{'5045'} = 'BERGEN';
2760$borough_number{'5052'} = '1201'; $type{'5052'} = 'ST'; $location{'5052'} = 'BERGEN';
2761$borough_number{'5053'} = '1201'; $type{'5053'} = 'ST'; $location{'5053'} = 'BERGEN';
2762$borough_number{'5054'} = '1201'; $type{'5054'} = 'ST'; $location{'5054'} = 'BERGEN';
2763$borough_number{'5055'} = '1201'; $type{'5055'} = 'ST'; $location{'5055'} = 'BERGEN';
2764$borough_number{'5056'} = '1201'; $type{'5056'} = 'ST'; $location{'5056'} = 'BERGEN';
2765$borough_number{'5057'} = '1201'; $type{'5057'} = 'ST'; $location{'5057'} = 'BERGEN';
2766$borough_number{'5058'} = '1201'; $type{'5058'} = 'ST'; $location{'5058'} = 'BERGEN';
2767$borough_number{'5059'} = '1201'; $type{'5059'} = 'ST'; $location{'5059'} = 'BERGEN';
2768$borough_number{'5063'} = '1201'; $type{'5063'} = 'ST'; $location{'5063'} = 'BERGEN';
2769$borough_number{'5067'} = '1201'; $type{'5067'} = 'ST'; $location{'5067'} = 'BERGEN';
2770$borough_number{'5068'} = '1201'; $type{'5068'} = 'ST'; $location{'5068'} = 'BERGEN';
2771$borough_number{'5072'} = '1201'; $type{'5072'} = 'ST'; $location{'5072'} = 'BERGEN';
2772$borough_number{'5073'} = '1201'; $type{'5073'} = 'ST'; $location{'5073'} = 'BERGEN';
2773$borough_number{'5075'} = '1201'; $type{'5075'} = 'MU'; $location{'5075'} = 'BERGEN';
2774$borough_number{'5081'} = '1201'; $type{'5081'} = 'ST'; $location{'5081'} = 'BERGEN';
2775$borough_number{'5089'} = '1201'; $type{'5089'} = 'ST'; $location{'5089'} = 'BERGEN';
2776$borough_number{'5093'} = '1201'; $type{'5093'} = 'ST'; $location{'5093'} = 'BERGEN';
2777$borough_number{'5094'} = '1201'; $type{'5094'} = 'ST'; $location{'5094'} = 'BERGEN';
2778$borough_number{'5096'} = '1201'; $type{'5096'} = 'ST'; $location{'5096'} = 'BERGEN';
2779$borough_number{'5097'} = '1201'; $type{'5097'} = 'ST'; $location{'5097'} = 'BERGEN';
2780$borough_number{'5098'} = '1201'; $type{'5098'} = 'ST'; $location{'5098'} = 'BERGEN';
2781$borough_number{'5099'} = '1201'; $type{'5099'} = 'ST'; $location{'5099'} = 'BERGEN';
2782$borough_number{'5101'} = '1201'; $type{'5101'} = 'ST'; $location{'5101'} = 'EIDSV�GNESET';
2783$borough_number{'5104'} = '1201'; $type{'5104'} = 'ST'; $location{'5104'} = 'EIDSV�G I �SANE';
2784$borough_number{'5105'} = '1201'; $type{'5105'} = 'ST'; $location{'5105'} = 'EIDSV�G I �SANE';
2785$borough_number{'5106'} = '1201'; $type{'5106'} = 'ST'; $location{'5106'} = '�VRE ERVIK';
2786$borough_number{'5107'} = '1201'; $type{'5107'} = 'ST'; $location{'5107'} = 'SALHUS';
2787$borough_number{'5108'} = '1201'; $type{'5108'} = 'ST'; $location{'5108'} = 'HORDVIK';
2788$borough_number{'5109'} = '1201'; $type{'5109'} = 'ST'; $location{'5109'} = 'HYLKJE';
2789$borough_number{'5111'} = '1201'; $type{'5111'} = 'ST'; $location{'5111'} = 'BREISTEIN';
2790$borough_number{'5113'} = '1201'; $type{'5113'} = 'STBX'; $location{'5113'} = 'TERTNES';
2791$borough_number{'5114'} = '1201'; $type{'5114'} = 'ST'; $location{'5114'} = 'TERTNES';
2792$borough_number{'5115'} = '1201'; $type{'5115'} = 'ST'; $location{'5115'} = 'ULSET';
2793$borough_number{'5116'} = '1201'; $type{'5116'} = 'ST'; $location{'5116'} = 'ULSET';
2794$borough_number{'5117'} = '1201'; $type{'5117'} = 'ST'; $location{'5117'} = 'ULSET';
2795$borough_number{'5118'} = '1201'; $type{'5118'} = 'ST'; $location{'5118'} = 'ULSET';
2796$borough_number{'5119'} = '1201'; $type{'5119'} = 'ST'; $location{'5119'} = 'ULSET';
2797$borough_number{'5121'} = '1201'; $type{'5121'} = 'ST'; $location{'5121'} = 'ULSET';
2798$borough_number{'5122'} = '1201'; $type{'5122'} = 'ST'; $location{'5122'} = 'MORVIK';
2799$borough_number{'5124'} = '1201'; $type{'5124'} = 'STBX'; $location{'5124'} = 'MORVIK';
2800$borough_number{'5131'} = '1201'; $type{'5131'} = 'ST'; $location{'5131'} = 'NYBORG';
2801$borough_number{'5132'} = '1201'; $type{'5132'} = 'ST'; $location{'5132'} = 'NYBORG';
2802$borough_number{'5134'} = '1201'; $type{'5134'} = 'ST'; $location{'5134'} = 'FLAKTVEIT';
2803$borough_number{'5135'} = '1201'; $type{'5135'} = 'ST'; $location{'5135'} = 'FLAKTVEIT';
2804$borough_number{'5136'} = '1201'; $type{'5136'} = 'ST'; $location{'5136'} = 'MJ�LKER�EN';
2805$borough_number{'5137'} = '1201'; $type{'5137'} = 'ST'; $location{'5137'} = 'MJ�LKER�EN';
2806$borough_number{'5141'} = '1201'; $type{'5141'} = 'STBX'; $location{'5141'} = 'FYLLINGSDALEN';
2807$borough_number{'5142'} = '1201'; $type{'5142'} = 'ST'; $location{'5142'} = 'FYLLINGSDALEN';
2808$borough_number{'5143'} = '1201'; $type{'5143'} = 'ST'; $location{'5143'} = 'FYLLINGSDALEN';
2809$borough_number{'5144'} = '1201'; $type{'5144'} = 'ST'; $location{'5144'} = 'FYLLINGSDALEN';
2810$borough_number{'5145'} = '1201'; $type{'5145'} = 'ST'; $location{'5145'} = 'FYLLINGSDALEN';
2811$borough_number{'5146'} = '1201'; $type{'5146'} = 'ST'; $location{'5146'} = 'FYLLINGSDALEN';
2812$borough_number{'5147'} = '1201'; $type{'5147'} = 'ST'; $location{'5147'} = 'FYLLINGSDALEN';
2813$borough_number{'5148'} = '1201'; $type{'5148'} = 'ST'; $location{'5148'} = 'FYLLINGSDALEN';
2814$borough_number{'5151'} = '1201'; $type{'5151'} = 'ST'; $location{'5151'} = 'STRAUMSGREND';
2815$borough_number{'5152'} = '1201'; $type{'5152'} = 'ST'; $location{'5152'} = 'B�NES';
2816$borough_number{'5155'} = '1201'; $type{'5155'} = 'ST'; $location{'5155'} = 'B�NES';
2817$borough_number{'5161'} = '1201'; $type{'5161'} = 'ST'; $location{'5161'} = 'LAKSEV�G';
2818$borough_number{'5162'} = '1201'; $type{'5162'} = 'ST'; $location{'5162'} = 'LAKSEV�G';
2819$borough_number{'5163'} = '1201'; $type{'5163'} = 'ST'; $location{'5163'} = 'LAKSEV�G';
2820$borough_number{'5164'} = '1201'; $type{'5164'} = 'ST'; $location{'5164'} = 'LAKSEV�G';
2821$borough_number{'5171'} = '1201'; $type{'5171'} = 'STBX'; $location{'5171'} = 'LODDEFJORD';
2822$borough_number{'5172'} = '1201'; $type{'5172'} = 'ST'; $location{'5172'} = 'LODDEFJORD';
2823$borough_number{'5173'} = '1201'; $type{'5173'} = 'ST'; $location{'5173'} = 'LODDEFJORD';
2824$borough_number{'5174'} = '1201'; $type{'5174'} = 'STBX'; $location{'5174'} = 'MATHOPEN';
2825$borough_number{'5177'} = '1246'; $type{'5177'} = 'ST'; $location{'5177'} = 'BJ�R�YHAMN';
2826$borough_number{'5178'} = '1201'; $type{'5178'} = 'ST'; $location{'5178'} = 'LODDEFJORD';
2827$borough_number{'5179'} = '1201'; $type{'5179'} = 'ST'; $location{'5179'} = 'GODVIK';
2828$borough_number{'5183'} = '1201'; $type{'5183'} = 'ST'; $location{'5183'} = 'OLSVIK';
2829$borough_number{'5184'} = '1201'; $type{'5184'} = 'ST'; $location{'5184'} = 'OLSVIK';
2830$borough_number{'5200'} = '1243'; $type{'5200'} = 'ST'; $location{'5200'} = 'OS';
2831$borough_number{'5201'} = '1243'; $type{'5201'} = 'BX'; $location{'5201'} = 'OS';
2832$borough_number{'5202'} = '1243'; $type{'5202'} = 'BX'; $location{'5202'} = 'OS';
2833$borough_number{'5203'} = '1243'; $type{'5203'} = 'BX'; $location{'5203'} = 'OS';
2834$borough_number{'5206'} = '1243'; $type{'5206'} = 'BX'; $location{'5206'} = 'OS';
2835$borough_number{'5207'} = '1243'; $type{'5207'} = 'BX'; $location{'5207'} = 'S�FTELAND';
2836$borough_number{'5212'} = '1243'; $type{'5212'} = 'ST'; $location{'5212'} = 'S�FTELAND';
2837$borough_number{'5215'} = '1243'; $type{'5215'} = 'STBX'; $location{'5215'} = 'LYSEKLOSTER';
2838$borough_number{'5216'} = '1243'; $type{'5216'} = 'STBX'; $location{'5216'} = 'LEPS�Y';
2839$borough_number{'5217'} = '1243'; $type{'5217'} = 'ST'; $location{'5217'} = 'HAGAVIK';
2840$borough_number{'5218'} = '1243'; $type{'5218'} = 'ST'; $location{'5218'} = 'NORDSTR�NO';
2841$borough_number{'5219'} = '1243'; $type{'5219'} = 'ST'; $location{'5219'} = 'SKORPO FERIEHEIM';
2842$borough_number{'5221'} = '1201'; $type{'5221'} = 'ST'; $location{'5221'} = 'NESTTUN';
2843$borough_number{'5222'} = '1201'; $type{'5222'} = 'ST'; $location{'5222'} = 'NESTTUN';
2844$borough_number{'5223'} = '1201'; $type{'5223'} = 'ST'; $location{'5223'} = 'NESTTUN';
2845$borough_number{'5224'} = '1201'; $type{'5224'} = 'ST'; $location{'5224'} = 'NESTTUN';
2846$borough_number{'5225'} = '1201'; $type{'5225'} = 'ST'; $location{'5225'} = 'NESTTUN';
2847$borough_number{'5226'} = '1201'; $type{'5226'} = 'ST'; $location{'5226'} = 'NESTTUN';
2848$borough_number{'5227'} = '1201'; $type{'5227'} = 'ST'; $location{'5227'} = 'NESTTUN';
2849$borough_number{'5229'} = '1201'; $type{'5229'} = 'ST'; $location{'5229'} = 'KALANDSEIDET';
2850$borough_number{'5231'} = '1201'; $type{'5231'} = 'ST'; $location{'5231'} = 'PARADIS';
2851$borough_number{'5232'} = '1201'; $type{'5232'} = 'ST'; $location{'5232'} = 'PARADIS';
2852$borough_number{'5235'} = '1201'; $type{'5235'} = 'ST'; $location{'5235'} = 'R�DAL';
2853$borough_number{'5236'} = '1201'; $type{'5236'} = 'STBX'; $location{'5236'} = 'R�DAL';
2854$borough_number{'5238'} = '1201'; $type{'5238'} = 'ST'; $location{'5238'} = 'R�DAL';
2855$borough_number{'5239'} = '1201'; $type{'5239'} = 'ST'; $location{'5239'} = 'R�DAL';
2856$borough_number{'5243'} = '1201'; $type{'5243'} = 'ST'; $location{'5243'} = 'FANA';
2857$borough_number{'5244'} = '1201'; $type{'5244'} = 'ST'; $location{'5244'} = 'FANA';
2858$borough_number{'5251'} = '1201'; $type{'5251'} = 'STBX'; $location{'5251'} = 'S�REIDGREND';
2859$borough_number{'5252'} = '1201'; $type{'5252'} = 'ST'; $location{'5252'} = 'S�REIDGREND';
2860$borough_number{'5253'} = '1201'; $type{'5253'} = 'ST'; $location{'5253'} = 'SANDSLI';
2861$borough_number{'5254'} = '1201'; $type{'5254'} = 'ST'; $location{'5254'} = 'SANDSLI';
2862$borough_number{'5257'} = '1201'; $type{'5257'} = 'ST'; $location{'5257'} = 'KOKSTAD';
2863$borough_number{'5258'} = '1201'; $type{'5258'} = 'ST'; $location{'5258'} = 'BLOMSTERDALEN';
2864$borough_number{'5259'} = '1201'; $type{'5259'} = 'STBX'; $location{'5259'} = 'HJELLESTAD';
2865$borough_number{'5260'} = '1201'; $type{'5260'} = 'ST'; $location{'5260'} = 'INDRE ARNA';
2866$borough_number{'5261'} = '1201'; $type{'5261'} = 'ST'; $location{'5261'} = 'INDRE ARNA';
2867$borough_number{'5262'} = '1201'; $type{'5262'} = 'ST'; $location{'5262'} = 'ARNATVEIT';
2868$borough_number{'5263'} = '1201'; $type{'5263'} = 'ST'; $location{'5263'} = 'TRENGEREID';
2869$borough_number{'5264'} = '1201'; $type{'5264'} = 'ST'; $location{'5264'} = 'GARNES';
2870$borough_number{'5265'} = '1201'; $type{'5265'} = 'ST'; $location{'5265'} = 'YTRE ARNA';
2871$borough_number{'5267'} = '1201'; $type{'5267'} = 'ST'; $location{'5267'} = 'ESPELAND';
2872$borough_number{'5268'} = '1201'; $type{'5268'} = 'STBX'; $location{'5268'} = 'HAUKELAND';
2873$borough_number{'5281'} = '1253'; $type{'5281'} = 'ST'; $location{'5281'} = 'VALESTRANDSFOSSEN';
2874$borough_number{'5282'} = '1253'; $type{'5282'} = 'ST'; $location{'5282'} = 'LONEV�G';
2875$borough_number{'5283'} = '1253'; $type{'5283'} = 'ST'; $location{'5283'} = 'FOTLANDSV�G';
2876$borough_number{'5284'} = '1253'; $type{'5284'} = 'ST'; $location{'5284'} = 'TYSSEBOTNEN';
2877$borough_number{'5285'} = '1253'; $type{'5285'} = 'ST'; $location{'5285'} = 'BRUVIK';
2878$borough_number{'5286'} = '1253'; $type{'5286'} = 'ST'; $location{'5286'} = 'HAUS';
2879$borough_number{'5291'} = '1253'; $type{'5291'} = 'BX'; $location{'5291'} = 'VALESTRANDSFOSSEN';
2880$borough_number{'5293'} = '1253'; $type{'5293'} = 'BX'; $location{'5293'} = 'LONEV�G';
2881$borough_number{'5299'} = '1253'; $type{'5299'} = 'BX'; $location{'5299'} = 'HAUS';
2882$borough_number{'5300'} = '1247'; $type{'5300'} = 'ST'; $location{'5300'} = 'KLEPPEST�';
2883$borough_number{'5302'} = '1247'; $type{'5302'} = 'ST'; $location{'5302'} = 'STRUSSHAMN';
2884$borough_number{'5303'} = '1247'; $type{'5303'} = 'ST'; $location{'5303'} = 'FOLLESE';
2885$borough_number{'5304'} = '1247'; $type{'5304'} = 'ST'; $location{'5304'} = 'HETLEVIK';
2886$borough_number{'5305'} = '1247'; $type{'5305'} = 'ST'; $location{'5305'} = 'FLORV�G';
2887$borough_number{'5306'} = '1247'; $type{'5306'} = 'ST'; $location{'5306'} = 'ERDAL';
2888$borough_number{'5307'} = '1247'; $type{'5307'} = 'ST'; $location{'5307'} = 'ASK';
2889$borough_number{'5310'} = '1247'; $type{'5310'} = 'ST'; $location{'5310'} = 'HAUGLANDSHELLA';
2890$borough_number{'5314'} = '1247'; $type{'5314'} = 'STBX'; $location{'5314'} = 'KJERRGARDEN';
2891$borough_number{'5315'} = '1247'; $type{'5315'} = 'ST'; $location{'5315'} = 'HERDLA';
2892$borough_number{'5318'} = '1247'; $type{'5318'} = 'BX'; $location{'5318'} = 'STRUSSHAMN';
2893$borough_number{'5319'} = '1247'; $type{'5319'} = 'BX'; $location{'5319'} = 'KLEPPEST�';
2894$borough_number{'5321'} = '1247'; $type{'5321'} = 'BX'; $location{'5321'} = 'KLEPPEST�';
2895$borough_number{'5322'} = '1247'; $type{'5322'} = 'BX'; $location{'5322'} = 'KLEPPEST�';
2896$borough_number{'5323'} = '1247'; $type{'5323'} = 'BX'; $location{'5323'} = 'KLEPPEST�';
2897$borough_number{'5325'} = '1247'; $type{'5325'} = 'BX'; $location{'5325'} = 'FOLLESE';
2898$borough_number{'5326'} = '1247'; $type{'5326'} = 'BX'; $location{'5326'} = 'ASK';
2899$borough_number{'5327'} = '1247'; $type{'5327'} = 'BX'; $location{'5327'} = 'HAUGLANDSHELLA';
2900$borough_number{'5329'} = '1247'; $type{'5329'} = 'BX'; $location{'5329'} = 'FLORV�G';
2901$borough_number{'5331'} = '1259'; $type{'5331'} = 'BX'; $location{'5331'} = 'RONG';
2902$borough_number{'5333'} = '1259'; $type{'5333'} = 'BX'; $location{'5333'} = 'TJELDST�';
2903$borough_number{'5334'} = '1259'; $type{'5334'} = 'ST'; $location{'5334'} = 'HELLES�Y';
2904$borough_number{'5335'} = '1259'; $type{'5335'} = 'STBX'; $location{'5335'} = 'HERNAR';
2905$borough_number{'5336'} = '1259'; $type{'5336'} = 'ST'; $location{'5336'} = 'TJELDST�';
2906$borough_number{'5337'} = '1259'; $type{'5337'} = 'ST'; $location{'5337'} = 'RONG';
2907$borough_number{'5341'} = '1246'; $type{'5341'} = 'BX'; $location{'5341'} = 'STRAUME';
2908$borough_number{'5342'} = '1246'; $type{'5342'} = 'BX'; $location{'5342'} = 'STRAUME';
2909$borough_number{'5343'} = '1246'; $type{'5343'} = 'BX'; $location{'5343'} = 'STRAUME';
2910$borough_number{'5345'} = '1246'; $type{'5345'} = 'BX'; $location{'5345'} = 'KNARREVIK';
2911$borough_number{'5346'} = '1246'; $type{'5346'} = 'BX'; $location{'5346'} = '�GOTNES';
2912$borough_number{'5347'} = '1246'; $type{'5347'} = 'STBX'; $location{'5347'} = 'KYSTBASEN �GOTNES';
2913$borough_number{'5350'} = '1246'; $type{'5350'} = 'ST'; $location{'5350'} = 'BRATTHOLMEN';
2914$borough_number{'5353'} = '1246'; $type{'5353'} = 'ST'; $location{'5353'} = 'STRAUME';
2915$borough_number{'5355'} = '1246'; $type{'5355'} = 'ST'; $location{'5355'} = 'KNARREVIK';
2916$borough_number{'5357'} = '1246'; $type{'5357'} = 'ST'; $location{'5357'} = 'FJELL';
2917$borough_number{'5358'} = '1246'; $type{'5358'} = 'BX'; $location{'5358'} = 'FJELL';
2918$borough_number{'5363'} = '1246'; $type{'5363'} = 'ST'; $location{'5363'} = '�GOTNES';
2919$borough_number{'5365'} = '1246'; $type{'5365'} = 'ST'; $location{'5365'} = 'TUR�Y';
2920$borough_number{'5366'} = '1246'; $type{'5366'} = 'ST'; $location{'5366'} = 'MISJE';
2921$borough_number{'5371'} = '1245'; $type{'5371'} = 'BX'; $location{'5371'} = 'SKOGSV�G';
2922$borough_number{'5373'} = '1245'; $type{'5373'} = 'BX'; $location{'5373'} = 'KLOKKARVIK';
2923$borough_number{'5374'} = '1245'; $type{'5374'} = 'BX'; $location{'5374'} = 'STEINSLAND';
2924$borough_number{'5378'} = '1245'; $type{'5378'} = 'ST'; $location{'5378'} = 'KLOKKARVIK';
2925$borough_number{'5379'} = '1245'; $type{'5379'} = 'ST'; $location{'5379'} = 'STEINSLAND';
2926$borough_number{'5380'} = '1245'; $type{'5380'} = 'ST'; $location{'5380'} = 'T�LAV�G';
2927$borough_number{'5381'} = '1245'; $type{'5381'} = 'ST'; $location{'5381'} = 'GLESV�R';
2928$borough_number{'5382'} = '1245'; $type{'5382'} = 'ST'; $location{'5382'} = 'SKOGSV�G';
2929$borough_number{'5384'} = '1244'; $type{'5384'} = 'ST'; $location{'5384'} = 'TORANGSV�G';
2930$borough_number{'5385'} = '1244'; $type{'5385'} = 'ST'; $location{'5385'} = 'BAKKASUND';
2931$borough_number{'5387'} = '1244'; $type{'5387'} = 'STBX'; $location{'5387'} = 'M�KSTER';
2932$borough_number{'5388'} = '1244'; $type{'5388'} = 'ST'; $location{'5388'} = 'LITLAKALS�Y';
2933$borough_number{'5392'} = '1244'; $type{'5392'} = 'ST'; $location{'5392'} = 'STOREB�';
2934$borough_number{'5393'} = '1244'; $type{'5393'} = 'BX'; $location{'5393'} = 'STOREB�';
2935$borough_number{'5394'} = '1244'; $type{'5394'} = 'ST'; $location{'5394'} = 'KOLBEINSVIK';
2936$borough_number{'5396'} = '1244'; $type{'5396'} = 'ST'; $location{'5396'} = 'VESTRE VINNESV�G';
2937$borough_number{'5397'} = '1244'; $type{'5397'} = 'ST'; $location{'5397'} = 'BEKKJARVIK';
2938$borough_number{'5398'} = '1244'; $type{'5398'} = 'ST'; $location{'5398'} = 'STOLMEN';
2939$borough_number{'5399'} = '1244'; $type{'5399'} = 'BX'; $location{'5399'} = 'BEKKJARVIK';
2940$borough_number{'5401'} = '1221'; $type{'5401'} = 'BX'; $location{'5401'} = 'STORD';
2941$borough_number{'5402'} = '1221'; $type{'5402'} = 'BX'; $location{'5402'} = 'STORD';
2942$borough_number{'5403'} = '1221'; $type{'5403'} = 'BX'; $location{'5403'} = 'STORD';
2943$borough_number{'5404'} = '1221'; $type{'5404'} = 'BX'; $location{'5404'} = 'STORD';
2944$borough_number{'5405'} = '1221'; $type{'5405'} = 'BX'; $location{'5405'} = 'STORD';
2945$borough_number{'5406'} = '1221'; $type{'5406'} = 'BX'; $location{'5406'} = 'STORD';
2946$borough_number{'5407'} = '1221'; $type{'5407'} = 'BX'; $location{'5407'} = 'STORD';
2947$borough_number{'5408'} = '1221'; $type{'5408'} = 'BX'; $location{'5408'} = 'SAGV�G';
2948$borough_number{'5409'} = '1221'; $type{'5409'} = 'SX'; $location{'5409'} = 'STORD';
2949$borough_number{'5410'} = '1221'; $type{'5410'} = 'ST'; $location{'5410'} = 'SAGV�G';
2950$borough_number{'5411'} = '1221'; $type{'5411'} = 'ST'; $location{'5411'} = 'STORD';
2951$borough_number{'5412'} = '1221'; $type{'5412'} = 'ST'; $location{'5412'} = 'STORD';
2952$borough_number{'5414'} = '1221'; $type{'5414'} = 'ST'; $location{'5414'} = 'STORD';
2953$borough_number{'5415'} = '1221'; $type{'5415'} = 'ST'; $location{'5415'} = 'STORD';
2954$borough_number{'5416'} = '1221'; $type{'5416'} = 'ST'; $location{'5416'} = 'STORD';
2955$borough_number{'5417'} = '1221'; $type{'5417'} = 'ST'; $location{'5417'} = 'STORD';
2956$borough_number{'5418'} = '1222'; $type{'5418'} = 'BX'; $location{'5418'} = 'FITJAR';
2957$borough_number{'5419'} = '1222'; $type{'5419'} = 'ST'; $location{'5419'} = 'FITJAR';
2958$borough_number{'5420'} = '1219'; $type{'5420'} = 'ST'; $location{'5420'} = 'RUBBESTADNESET';
2959$borough_number{'5423'} = '1219'; $type{'5423'} = 'ST'; $location{'5423'} = 'BRANDASUND';
2960$borough_number{'5427'} = '1219'; $type{'5427'} = 'ST'; $location{'5427'} = 'URANGSV�G';
2961$borough_number{'5428'} = '1219'; $type{'5428'} = 'ST'; $location{'5428'} = 'FOLDR�YHAMN';
2962$borough_number{'5430'} = '1219'; $type{'5430'} = 'ST'; $location{'5430'} = 'BREMNES';
2963$borough_number{'5437'} = '1219'; $type{'5437'} = 'ST'; $location{'5437'} = 'FINN�S';
2964$borough_number{'5440'} = '1219'; $type{'5440'} = 'ST'; $location{'5440'} = 'MOSTERHAMN';
2965$borough_number{'5443'} = '1219'; $type{'5443'} = 'ST'; $location{'5443'} = 'B�MLO';
2966$borough_number{'5444'} = '1219'; $type{'5444'} = 'STBX'; $location{'5444'} = 'ESPEV�R';
2967$borough_number{'5445'} = '1219'; $type{'5445'} = 'BX'; $location{'5445'} = 'BREMNES';
2968$borough_number{'5447'} = '1219'; $type{'5447'} = 'BX'; $location{'5447'} = 'MOSTERHAMN';
2969$borough_number{'5449'} = '1219'; $type{'5449'} = 'BX'; $location{'5449'} = 'B�MLO';
2970$borough_number{'5450'} = '1224'; $type{'5450'} = 'ST'; $location{'5450'} = 'SUNDE I SUNNHORDLAND';
2971$borough_number{'5451'} = '1224'; $type{'5451'} = 'STBX'; $location{'5451'} = 'VALEN';
2972$borough_number{'5452'} = '1224'; $type{'5452'} = 'ST'; $location{'5452'} = 'SANDVOLL';
2973$borough_number{'5453'} = '1224'; $type{'5453'} = 'ST'; $location{'5453'} = 'UT�KER';
2974$borough_number{'5454'} = '1224'; $type{'5454'} = 'ST'; $location{'5454'} = 'S�B�VIK';
2975$borough_number{'5455'} = '1224'; $type{'5455'} = 'ST'; $location{'5455'} = 'HALSN�Y KLOSTER';
2976$borough_number{'5457'} = '1224'; $type{'5457'} = 'ST'; $location{'5457'} = 'H�YLANDSBYGD';
2977$borough_number{'5458'} = '1224'; $type{'5458'} = 'ST'; $location{'5458'} = 'ARNAVIK';
2978$borough_number{'5459'} = '1224'; $type{'5459'} = 'ST'; $location{'5459'} = 'FJELBERG';
2979$borough_number{'5460'} = '1224'; $type{'5460'} = 'ST'; $location{'5460'} = 'HUSNES';
2980$borough_number{'5462'} = '1224'; $type{'5462'} = 'STBX'; $location{'5462'} = 'HER�YSUNDET';
2981$borough_number{'5463'} = '1224'; $type{'5463'} = 'ST'; $location{'5463'} = 'USKEDALEN';
2982$borough_number{'5464'} = '1224'; $type{'5464'} = 'ST'; $location{'5464'} = 'DIMMELSVIK';
2983$borough_number{'5465'} = '1224'; $type{'5465'} = 'BX'; $location{'5465'} = 'USKEDALEN';
2984$borough_number{'5470'} = '1224'; $type{'5470'} = 'ST'; $location{'5470'} = 'ROSENDAL';
2985$borough_number{'5472'} = '1224'; $type{'5472'} = 'ST'; $location{'5472'} = 'SEIMSFOSS';
2986$borough_number{'5473'} = '1224'; $type{'5473'} = 'ST'; $location{'5473'} = 'SNILSTVEIT�Y';
2987$borough_number{'5474'} = '1224'; $type{'5474'} = 'ST'; $location{'5474'} = 'L�FALLSTRAND';
2988$borough_number{'5475'} = '1224'; $type{'5475'} = 'ST'; $location{'5475'} = '�NES';
2989$borough_number{'5476'} = '1224'; $type{'5476'} = 'ST'; $location{'5476'} = 'MAURANGER';
2990$borough_number{'5480'} = '1224'; $type{'5480'} = 'BX'; $location{'5480'} = 'HUSNES';
2991$borough_number{'5484'} = '1224'; $type{'5484'} = 'BX'; $location{'5484'} = 'S�B�VIK';
2992$borough_number{'5486'} = '1224'; $type{'5486'} = 'BX'; $location{'5486'} = 'ROSENDAL';
2993$borough_number{'5497'} = '1221'; $type{'5497'} = 'ST'; $location{'5497'} = 'HUGLO';
2994$borough_number{'5498'} = '1224'; $type{'5498'} = 'ST'; $location{'5498'} = 'MATRE';
2995$borough_number{'5499'} = '1224'; $type{'5499'} = 'ST'; $location{'5499'} = '�KRA';
2996$borough_number{'5501'} = '1106'; $type{'5501'} = 'BX'; $location{'5501'} = 'HAUGESUND';
2997$borough_number{'5502'} = '1106'; $type{'5502'} = 'BX'; $location{'5502'} = 'HAUGESUND';
2998$borough_number{'5503'} = '1106'; $type{'5503'} = 'BX'; $location{'5503'} = 'HAUGESUND';
2999$borough_number{'5504'} = '1106'; $type{'5504'} = 'BX'; $location{'5504'} = 'HAUGESUND';
3000$borough_number{'5505'} = '1106'; $type{'5505'} = 'BX'; $location{'5505'} = 'HAUGESUND';
3001$borough_number{'5506'} = '1106'; $type{'5506'} = 'BX'; $location{'5506'} = 'HAUGESUND';
3002$borough_number{'5507'} = '1106'; $type{'5507'} = 'BX'; $location{'5507'} = 'HAUGESUND';
3003$borough_number{'5508'} = '1149'; $type{'5508'} = 'BX'; $location{'5508'} = 'KARMSUND';
3004$borough_number{'5509'} = '1106'; $type{'5509'} = 'BX'; $location{'5509'} = 'HAUGESUND';
3005$borough_number{'5511'} = '1106'; $type{'5511'} = 'BX'; $location{'5511'} = 'HAUGESUND';
3006$borough_number{'5514'} = '1106'; $type{'5514'} = 'ST'; $location{'5514'} = 'HAUGESUND';
3007$borough_number{'5515'} = '1106'; $type{'5515'} = 'ST'; $location{'5515'} = 'HAUGESUND';
3008$borough_number{'5516'} = '1106'; $type{'5516'} = 'ST'; $location{'5516'} = 'HAUGESUND';
3009$borough_number{'5517'} = '1106'; $type{'5517'} = 'ST'; $location{'5517'} = 'HAUGESUND';
3010$borough_number{'5518'} = '1106'; $type{'5518'} = 'STBX'; $location{'5518'} = 'HAUGESUND';
3011$borough_number{'5519'} = '1106'; $type{'5519'} = 'ST'; $location{'5519'} = 'HAUGESUND';
3012$borough_number{'5521'} = '1106'; $type{'5521'} = 'ST'; $location{'5521'} = 'HAUGESUND';
3013$borough_number{'5522'} = '1106'; $type{'5522'} = 'ST'; $location{'5522'} = 'HAUGESUND';
3014$borough_number{'5523'} = '1106'; $type{'5523'} = 'ST'; $location{'5523'} = 'HAUGESUND';
3015$borough_number{'5525'} = '1106'; $type{'5525'} = 'ST'; $location{'5525'} = 'HAUGESUND';
3016$borough_number{'5527'} = '1106'; $type{'5527'} = 'ST'; $location{'5527'} = 'HAUGESUND';
3017$borough_number{'5528'} = '1106'; $type{'5528'} = 'ST'; $location{'5528'} = 'HAUGESUND';
3018$borough_number{'5529'} = '1106'; $type{'5529'} = 'ST'; $location{'5529'} = 'HAUGESUND';
3019$borough_number{'5531'} = '1106'; $type{'5531'} = 'ST'; $location{'5531'} = 'HAUGESUND';
3020$borough_number{'5532'} = '1106'; $type{'5532'} = 'ST'; $location{'5532'} = 'HAUGESUND';
3021$borough_number{'5533'} = '1106'; $type{'5533'} = 'ST'; $location{'5533'} = 'HAUGESUND';
3022$borough_number{'5534'} = '1106'; $type{'5534'} = 'ST'; $location{'5534'} = 'HAUGESUND';
3023$borough_number{'5535'} = '1106'; $type{'5535'} = 'ST'; $location{'5535'} = 'HAUGESUND';
3024$borough_number{'5536'} = '1106'; $type{'5536'} = 'ST'; $location{'5536'} = 'HAUGESUND';
3025$borough_number{'5537'} = '1106'; $type{'5537'} = 'ST'; $location{'5537'} = 'HAUGESUND';
3026$borough_number{'5538'} = '1106'; $type{'5538'} = 'ST'; $location{'5538'} = 'HAUGESUND';
3027$borough_number{'5541'} = '1149'; $type{'5541'} = 'ST'; $location{'5541'} = 'KOLNES';
3028$borough_number{'5542'} = '1149'; $type{'5542'} = 'ST'; $location{'5542'} = 'KARMSUND';
3029$borough_number{'5544'} = '1149'; $type{'5544'} = 'BX'; $location{'5544'} = 'VORMEDAL';
3030$borough_number{'5545'} = '1149'; $type{'5545'} = 'ST'; $location{'5545'} = 'VORMEDAL';
3031$borough_number{'5546'} = '1149'; $type{'5546'} = 'ST'; $location{'5546'} = 'R�YKSUND';
3032$borough_number{'5547'} = '1151'; $type{'5547'} = 'STBX'; $location{'5547'} = 'UTSIRA';
3033$borough_number{'5548'} = '1149'; $type{'5548'} = 'STBX'; $location{'5548'} = 'FE�Y';
3034$borough_number{'5549'} = '1106'; $type{'5549'} = 'STBX'; $location{'5549'} = 'R�V�R';
3035$borough_number{'5550'} = '1216'; $type{'5550'} = 'ST'; $location{'5550'} = 'SVEIO';
3036$borough_number{'5551'} = '1216'; $type{'5551'} = 'ST'; $location{'5551'} = 'AUKLANDSHAMN';
3037$borough_number{'5554'} = '1216'; $type{'5554'} = 'STBX'; $location{'5554'} = 'VALEV�G';
3038$borough_number{'5555'} = '1216'; $type{'5555'} = 'STBX'; $location{'5555'} = 'F�RDE I HORDALAND';
3039$borough_number{'5559'} = '1216'; $type{'5559'} = 'BX'; $location{'5559'} = 'SVEIO';
3040$borough_number{'5560'} = '1146'; $type{'5560'} = 'STBX'; $location{'5560'} = 'NEDSTRAND';
3041$borough_number{'5561'} = '1145'; $type{'5561'} = 'STBX'; $location{'5561'} = 'BOKN';
3042$borough_number{'5563'} = '1146'; $type{'5563'} = 'ST'; $location{'5563'} = 'F�RRESFJORDEN';
3043$borough_number{'5565'} = '1146'; $type{'5565'} = 'ST'; $location{'5565'} = 'TYSV�RV�G';
3044$borough_number{'5566'} = '1146'; $type{'5566'} = 'ST'; $location{'5566'} = 'HERVIK';
3045$borough_number{'5567'} = '1146'; $type{'5567'} = 'STBX'; $location{'5567'} = 'SKJOLDASTRAUMEN';
3046$borough_number{'5568'} = '1160'; $type{'5568'} = 'ST'; $location{'5568'} = 'VIKEBYGD';
3047$borough_number{'5570'} = '1146'; $type{'5570'} = 'ST'; $location{'5570'} = 'AKSDAL';
3048$borough_number{'5574'} = '1160'; $type{'5574'} = 'STBX'; $location{'5574'} = 'SKJOLD';
3049$borough_number{'5575'} = '1146'; $type{'5575'} = 'BX'; $location{'5575'} = 'AKSDAL';
3050$borough_number{'5576'} = '1160'; $type{'5576'} = 'STBX'; $location{'5576'} = '�VRE VATS';
3051$borough_number{'5578'} = '1160'; $type{'5578'} = 'STBX'; $location{'5578'} = 'NEDRE VATS';
3052$borough_number{'5580'} = '1160'; $type{'5580'} = 'ST'; $location{'5580'} = '�LEN';
3053$borough_number{'5582'} = '1160'; $type{'5582'} = 'STBX'; $location{'5582'} = '�LENSV�G';
3054$borough_number{'5583'} = '1160'; $type{'5583'} = 'ST'; $location{'5583'} = 'VIKEDAL';
3055$borough_number{'5584'} = '1160'; $type{'5584'} = 'STBX'; $location{'5584'} = 'BJOA';
3056$borough_number{'5585'} = '1160'; $type{'5585'} = 'ST'; $location{'5585'} = 'SANDEID';
3057$borough_number{'5586'} = '1160'; $type{'5586'} = 'BX'; $location{'5586'} = 'VIKEDAL';
3058$borough_number{'5588'} = '1160'; $type{'5588'} = 'BX'; $location{'5588'} = '�LEN';
3059$borough_number{'5589'} = '1160'; $type{'5589'} = 'BX'; $location{'5589'} = 'SANDEID';
3060$borough_number{'5590'} = '1211'; $type{'5590'} = 'ST'; $location{'5590'} = 'ETNE';
3061$borough_number{'5591'} = '1211'; $type{'5591'} = 'BX'; $location{'5591'} = 'ETNE';
3062$borough_number{'5593'} = '1211'; $type{'5593'} = 'ST'; $location{'5593'} = 'SK�NEVIK';
3063$borough_number{'5594'} = '1211'; $type{'5594'} = 'BX'; $location{'5594'} = 'SK�NEVIK';
3064$borough_number{'5595'} = '1146'; $type{'5595'} = 'BX'; $location{'5595'} = 'F�RRESFJORDEN';
3065$borough_number{'5596'} = '1211'; $type{'5596'} = 'ST'; $location{'5596'} = 'MARKHUS';
3066$borough_number{'5598'} = '1211'; $type{'5598'} = 'ST'; $location{'5598'} = 'FJ�RA';
3067$borough_number{'5600'} = '1238'; $type{'5600'} = 'ST'; $location{'5600'} = 'NORHEIMSUND';
3068$borough_number{'5601'} = '1238'; $type{'5601'} = 'BX'; $location{'5601'} = 'NORHEIMSUND';
3069$borough_number{'5602'} = '1238'; $type{'5602'} = 'BX'; $location{'5602'} = 'NORHEIMSUND';
3070$borough_number{'5604'} = '1238'; $type{'5604'} = 'BX'; $location{'5604'} = '�YSTESE';
3071$borough_number{'5605'} = '1238'; $type{'5605'} = 'BX'; $location{'5605'} = '�LVIK';
3072$borough_number{'5610'} = '1238'; $type{'5610'} = 'ST'; $location{'5610'} = '�YSTESE';
3073$borough_number{'5612'} = '1238'; $type{'5612'} = 'ST'; $location{'5612'} = 'STEINST�';
3074$borough_number{'5614'} = '1238'; $type{'5614'} = 'ST'; $location{'5614'} = '�LVIK';
3075$borough_number{'5620'} = '1238'; $type{'5620'} = 'ST'; $location{'5620'} = 'T�RVIKBYGD';
3076$borough_number{'5626'} = '1227'; $type{'5626'} = 'ST'; $location{'5626'} = 'KYSNESSTRAND';
3077$borough_number{'5627'} = '1227'; $type{'5627'} = 'ST'; $location{'5627'} = 'JONDAL';
3078$borough_number{'5628'} = '1227'; $type{'5628'} = 'ST'; $location{'5628'} = 'HERAND';
3079$borough_number{'5629'} = '1227'; $type{'5629'} = 'BX'; $location{'5629'} = 'JONDAL';
3080$borough_number{'5630'} = '1238'; $type{'5630'} = 'STBX'; $location{'5630'} = 'STRANDEBARM';
3081$borough_number{'5632'} = '1238'; $type{'5632'} = 'STBX'; $location{'5632'} = 'OMASTRAND';
3082$borough_number{'5635'} = '1224'; $type{'5635'} = 'STBX'; $location{'5635'} = 'HATLESTRAND';
3083$borough_number{'5636'} = '1224'; $type{'5636'} = 'ST'; $location{'5636'} = 'VARALDS�Y';
3084$borough_number{'5637'} = '1224'; $type{'5637'} = 'ST'; $location{'5637'} = '�LVE';
3085$borough_number{'5640'} = '1241'; $type{'5640'} = 'ST'; $location{'5640'} = 'EIKELANDSOSEN';
3086$borough_number{'5641'} = '1241'; $type{'5641'} = 'STBX'; $location{'5641'} = 'FUSA';
3087$borough_number{'5642'} = '1241'; $type{'5642'} = 'ST'; $location{'5642'} = 'HOLMEFJORD';
3088$borough_number{'5643'} = '1241'; $type{'5643'} = 'ST'; $location{'5643'} = 'STRANDVIK';
3089$borough_number{'5645'} = '1241'; $type{'5645'} = 'STBX'; $location{'5645'} = 'S�VAREID';
3090$borough_number{'5646'} = '1241'; $type{'5646'} = 'ST'; $location{'5646'} = 'NORDTVEITGREND';
3091$borough_number{'5647'} = '1241'; $type{'5647'} = 'ST'; $location{'5647'} = 'BALDERSHEIM';
3092$borough_number{'5649'} = '1241'; $type{'5649'} = 'BX'; $location{'5649'} = 'EIKELANDSOSEN';
3093$borough_number{'5650'} = '1242'; $type{'5650'} = 'STBX'; $location{'5650'} = 'TYSSE';
3094$borough_number{'5652'} = '1242'; $type{'5652'} = 'ST'; $location{'5652'} = '�RLAND';
3095$borough_number{'5653'} = '1242'; $type{'5653'} = 'BX'; $location{'5653'} = '�RLAND';
3096$borough_number{'5680'} = '1223'; $type{'5680'} = 'ST'; $location{'5680'} = 'TYSNES';
3097$borough_number{'5682'} = '1223'; $type{'5682'} = 'ST'; $location{'5682'} = 'GOD�YSUND';
3098$borough_number{'5683'} = '1223'; $type{'5683'} = 'ST'; $location{'5683'} = 'REKSTEREN';
3099$borough_number{'5685'} = '1223'; $type{'5685'} = 'ST'; $location{'5685'} = 'UGGDAL';
3100$borough_number{'5687'} = '1223'; $type{'5687'} = 'ST'; $location{'5687'} = 'FLATR�KER';
3101$borough_number{'5690'} = '1223'; $type{'5690'} = 'ST'; $location{'5690'} = 'LUNDEGREND';
3102$borough_number{'5693'} = '1223'; $type{'5693'} = 'ST'; $location{'5693'} = '�RBAKKA';
3103$borough_number{'5694'} = '1223'; $type{'5694'} = 'ST'; $location{'5694'} = 'ONARHEIM';
3104$borough_number{'5695'} = '1223'; $type{'5695'} = 'BX'; $location{'5695'} = 'UGGDAL';
3105$borough_number{'5696'} = '1223'; $type{'5696'} = 'BX'; $location{'5696'} = 'TYSNES';
3106$borough_number{'5700'} = '1235'; $type{'5700'} = 'STBX'; $location{'5700'} = 'VOSS';
3107$borough_number{'5701'} = '1235'; $type{'5701'} = 'BX'; $location{'5701'} = 'VOSS';
3108$borough_number{'5702'} = '1235'; $type{'5702'} = 'BX'; $location{'5702'} = 'VOSS';
3109$borough_number{'5703'} = '1235'; $type{'5703'} = 'BX'; $location{'5703'} = 'VOSS';
3110$borough_number{'5707'} = '1235'; $type{'5707'} = 'ST'; $location{'5707'} = 'EVANGER';
3111$borough_number{'5710'} = '1235'; $type{'5710'} = 'STBX'; $location{'5710'} = 'SKULESTADMO';
3112$borough_number{'5712'} = '1235'; $type{'5712'} = 'BX'; $location{'5712'} = 'VOSSESTRAND';
3113$borough_number{'5713'} = '1235'; $type{'5713'} = 'ST'; $location{'5713'} = 'VOSSESTRAND';
3114$borough_number{'5715'} = '1235'; $type{'5715'} = 'ST'; $location{'5715'} = 'STALHEIM';
3115$borough_number{'5718'} = '1421'; $type{'5718'} = 'ST'; $location{'5718'} = 'MYRDAL';
3116$borough_number{'5719'} = '1233'; $type{'5719'} = 'STBX'; $location{'5719'} = 'FINSE';
3117$borough_number{'5721'} = '1251'; $type{'5721'} = 'BX'; $location{'5721'} = 'DALEKVAM';
3118$borough_number{'5722'} = '1251'; $type{'5722'} = 'ST'; $location{'5722'} = 'DALEKVAM';
3119$borough_number{'5723'} = '1235'; $type{'5723'} = 'ST'; $location{'5723'} = 'BOLSTAD�YRI';
3120$borough_number{'5724'} = '1251'; $type{'5724'} = 'STBX'; $location{'5724'} = 'STANGHELLE';
3121$borough_number{'5725'} = '1251'; $type{'5725'} = 'ST'; $location{'5725'} = 'VAKSDAL';
3122$borough_number{'5726'} = '1251'; $type{'5726'} = 'BX'; $location{'5726'} = 'VAKSDAL';
3123$borough_number{'5727'} = '1251'; $type{'5727'} = 'STBX'; $location{'5727'} = 'STAMNES';
3124$borough_number{'5728'} = '1251'; $type{'5728'} = 'ST'; $location{'5728'} = 'EIDSLANDET';
3125$borough_number{'5729'} = '1252'; $type{'5729'} = 'STBX'; $location{'5729'} = 'MODALEN';
3126$borough_number{'5730'} = '1233'; $type{'5730'} = 'ST'; $location{'5730'} = 'ULVIK';
3127$borough_number{'5731'} = '1233'; $type{'5731'} = 'BX'; $location{'5731'} = 'ULVIK';
3128$borough_number{'5733'} = '1234'; $type{'5733'} = 'BX'; $location{'5733'} = 'GRANVIN';
3129$borough_number{'5734'} = '1233'; $type{'5734'} = 'ST'; $location{'5734'} = 'VALLAVIK';
3130$borough_number{'5736'} = '1234'; $type{'5736'} = 'ST'; $location{'5736'} = 'GRANVIN';
3131$borough_number{'5741'} = '1421'; $type{'5741'} = 'BX'; $location{'5741'} = 'AURLAND';
3132$borough_number{'5742'} = '1421'; $type{'5742'} = 'BX'; $location{'5742'} = 'FL�M';
3133$borough_number{'5743'} = '1421'; $type{'5743'} = 'ST'; $location{'5743'} = 'FL�M';
3134$borough_number{'5745'} = '1421'; $type{'5745'} = 'ST'; $location{'5745'} = 'AURLAND';
3135$borough_number{'5746'} = '1421'; $type{'5746'} = 'STBX'; $location{'5746'} = 'UNDREDAL';
3136$borough_number{'5747'} = '1421'; $type{'5747'} = 'STBX'; $location{'5747'} = 'GUDVANGEN';
3137$borough_number{'5748'} = '1421'; $type{'5748'} = 'ST'; $location{'5748'} = 'STYVI';
3138$borough_number{'5749'} = '1421'; $type{'5749'} = 'ST'; $location{'5749'} = 'BAKKA';
3139$borough_number{'5750'} = '1228'; $type{'5750'} = 'ST'; $location{'5750'} = 'ODDA';
3140$borough_number{'5751'} = '1228'; $type{'5751'} = 'BX'; $location{'5751'} = 'ODDA';
3141$borough_number{'5760'} = '1228'; $type{'5760'} = 'STBX'; $location{'5760'} = 'R�LDAL';
3142$borough_number{'5763'} = '1228'; $type{'5763'} = 'ST'; $location{'5763'} = 'SKARE';
3143$borough_number{'5770'} = '1228'; $type{'5770'} = 'ST'; $location{'5770'} = 'TYSSEDAL';
3144$borough_number{'5773'} = '1231'; $type{'5773'} = 'ST'; $location{'5773'} = 'HOVLAND';
3145$borough_number{'5776'} = '1231'; $type{'5776'} = 'STBX'; $location{'5776'} = 'N�';
3146$borough_number{'5777'} = '1231'; $type{'5777'} = 'ST'; $location{'5777'} = 'GRIMO';
3147$borough_number{'5778'} = '1231'; $type{'5778'} = 'ST'; $location{'5778'} = 'UTNE';
3148$borough_number{'5779'} = '1231'; $type{'5779'} = 'BX'; $location{'5779'} = 'UTNE';
3149$borough_number{'5780'} = '1231'; $type{'5780'} = 'ST'; $location{'5780'} = 'KINSARVIK';
3150$borough_number{'5781'} = '1231'; $type{'5781'} = 'ST'; $location{'5781'} = 'LOFTHUS';
3151$borough_number{'5782'} = '1231'; $type{'5782'} = 'BX'; $location{'5782'} = 'KINSARVIK';
3152$borough_number{'5783'} = '1232'; $type{'5783'} = 'ST'; $location{'5783'} = 'EIDFJORD';
3153$borough_number{'5784'} = '1232'; $type{'5784'} = 'ST'; $location{'5784'} = '�VRE EIDFJORD';
3154$borough_number{'5785'} = '1232'; $type{'5785'} = 'ST'; $location{'5785'} = 'V�RINGSFOSS';
3155$borough_number{'5786'} = '1232'; $type{'5786'} = 'BX'; $location{'5786'} = 'EIDFJORD';
3156$borough_number{'5787'} = '1231'; $type{'5787'} = 'BX'; $location{'5787'} = 'LOFTHUS';
3157$borough_number{'5788'} = '1231'; $type{'5788'} = 'IO'; $location{'5788'} = 'KINSARVIK';
3158$borough_number{'5803'} = '1201'; $type{'5803'} = 'BX'; $location{'5803'} = 'BERGEN';
3159$borough_number{'5804'} = '1201'; $type{'5804'} = 'BX'; $location{'5804'} = 'BERGEN';
3160$borough_number{'5805'} = '1201'; $type{'5805'} = 'BX'; $location{'5805'} = 'BERGEN';
3161$borough_number{'5806'} = '1201'; $type{'5806'} = 'BX'; $location{'5806'} = 'BERGEN';
3162$borough_number{'5807'} = '1201'; $type{'5807'} = 'BX'; $location{'5807'} = 'BERGEN';
3163$borough_number{'5808'} = '1201'; $type{'5808'} = 'BX'; $location{'5808'} = 'BERGEN';
3164$borough_number{'5809'} = '1201'; $type{'5809'} = 'BX'; $location{'5809'} = 'BERGEN';
3165$borough_number{'5811'} = '1201'; $type{'5811'} = 'BX'; $location{'5811'} = 'BERGEN';
3166$borough_number{'5812'} = '1201'; $type{'5812'} = 'BX'; $location{'5812'} = 'BERGEN';
3167$borough_number{'5815'} = '1201'; $type{'5815'} = 'BX'; $location{'5815'} = 'BERGEN';
3168$borough_number{'5816'} = '1201'; $type{'5816'} = 'BX'; $location{'5816'} = 'BERGEN';
3169$borough_number{'5817'} = '1201'; $type{'5817'} = 'BX'; $location{'5817'} = 'BERGEN';
3170$borough_number{'5818'} = '1201'; $type{'5818'} = 'BX'; $location{'5818'} = 'BERGEN';
3171$borough_number{'5819'} = '1201'; $type{'5819'} = 'BX'; $location{'5819'} = 'BERGEN';
3172$borough_number{'5821'} = '1201'; $type{'5821'} = 'BX'; $location{'5821'} = 'BERGEN';
3173$borough_number{'5822'} = '1201'; $type{'5822'} = 'BX'; $location{'5822'} = 'BERGEN';
3174$borough_number{'5824'} = '1201'; $type{'5824'} = 'BX'; $location{'5824'} = 'BERGEN';
3175$borough_number{'5825'} = '1201'; $type{'5825'} = 'BX'; $location{'5825'} = 'BERGEN';
3176$borough_number{'5828'} = '1201'; $type{'5828'} = 'BX'; $location{'5828'} = 'BERGEN';
3177$borough_number{'5829'} = '1201'; $type{'5829'} = 'BX'; $location{'5829'} = 'BERGEN';
3178$borough_number{'5835'} = '1201'; $type{'5835'} = 'BX'; $location{'5835'} = 'BERGEN';
3179$borough_number{'5836'} = '1201'; $type{'5836'} = 'BX'; $location{'5836'} = 'BERGEN';
3180$borough_number{'5838'} = '1201'; $type{'5838'} = 'BX'; $location{'5838'} = 'BERGEN';
3181$borough_number{'5845'} = '1201'; $type{'5845'} = 'BX'; $location{'5845'} = 'BERGEN';
3182$borough_number{'5847'} = '1201'; $type{'5847'} = 'BX'; $location{'5847'} = 'BERGEN';
3183$borough_number{'5848'} = '1201'; $type{'5848'} = 'BX'; $location{'5848'} = 'BERGEN';
3184$borough_number{'5849'} = '1201'; $type{'5849'} = 'BX'; $location{'5849'} = 'BERGEN';
3185$borough_number{'5851'} = '1201'; $type{'5851'} = 'BX'; $location{'5851'} = 'BERGEN';
3186$borough_number{'5852'} = '1201'; $type{'5852'} = 'BX'; $location{'5852'} = 'BERGEN';
3187$borough_number{'5853'} = '1201'; $type{'5853'} = 'BX'; $location{'5853'} = 'BERGEN';
3188$borough_number{'5854'} = '1201'; $type{'5854'} = 'BX'; $location{'5854'} = 'BERGEN';
3189$borough_number{'5857'} = '1201'; $type{'5857'} = 'BX'; $location{'5857'} = 'BERGEN';
3190$borough_number{'5858'} = '1201'; $type{'5858'} = 'BX'; $location{'5858'} = 'BERGEN';
3191$borough_number{'5859'} = '1201'; $type{'5859'} = 'BX'; $location{'5859'} = 'BERGEN';
3192$borough_number{'5861'} = '1201'; $type{'5861'} = 'BX'; $location{'5861'} = 'BERGEN';
3193$borough_number{'5862'} = '1201'; $type{'5862'} = 'BX'; $location{'5862'} = 'BERGEN';
3194$borough_number{'5863'} = '1201'; $type{'5863'} = 'BX'; $location{'5863'} = 'BERGEN';
3195$borough_number{'5864'} = '1201'; $type{'5864'} = 'BX'; $location{'5864'} = 'BERGEN';
3196$borough_number{'5868'} = '1201'; $type{'5868'} = 'BX'; $location{'5868'} = 'BERGEN';
3197$borough_number{'5869'} = '1201'; $type{'5869'} = 'BX'; $location{'5869'} = 'BERGEN';
3198$borough_number{'5871'} = '1201'; $type{'5871'} = 'BX'; $location{'5871'} = 'BERGEN';
3199$borough_number{'5872'} = '1201'; $type{'5872'} = 'BX'; $location{'5872'} = 'BERGEN';
3200$borough_number{'5873'} = '1201'; $type{'5873'} = 'BX'; $location{'5873'} = 'BERGEN';
3201$borough_number{'5876'} = '1201'; $type{'5876'} = 'BX'; $location{'5876'} = 'BERGEN';
3202$borough_number{'5877'} = '1201'; $type{'5877'} = 'BX'; $location{'5877'} = 'BERGEN';
3203$borough_number{'5878'} = '1201'; $type{'5878'} = 'BX'; $location{'5878'} = 'BERGEN';
3204$borough_number{'5879'} = '1201'; $type{'5879'} = 'BX'; $location{'5879'} = 'BERGEN';
3205$borough_number{'5881'} = '1201'; $type{'5881'} = 'BX'; $location{'5881'} = 'BERGEN';
3206$borough_number{'5882'} = '1201'; $type{'5882'} = 'BX'; $location{'5882'} = 'BERGEN';
3207$borough_number{'5883'} = '1201'; $type{'5883'} = 'BX'; $location{'5883'} = 'BERGEN';
3208$borough_number{'5884'} = '1201'; $type{'5884'} = 'BX'; $location{'5884'} = 'BERGEN';
3209$borough_number{'5886'} = '1201'; $type{'5886'} = 'BX'; $location{'5886'} = 'BERGEN';
3210$borough_number{'5888'} = '1201'; $type{'5888'} = 'BX'; $location{'5888'} = 'BERGEN';
3211$borough_number{'5889'} = '1201'; $type{'5889'} = 'BX'; $location{'5889'} = 'BERGEN';
3212$borough_number{'5892'} = '1201'; $type{'5892'} = 'BX'; $location{'5892'} = 'BERGEN';
3213$borough_number{'5893'} = '1201'; $type{'5893'} = 'BX'; $location{'5893'} = 'BERGEN';
3214$borough_number{'5896'} = '1201'; $type{'5896'} = 'BX'; $location{'5896'} = 'BERGEN';
3215$borough_number{'5899'} = '1201'; $type{'5899'} = 'BX'; $location{'5899'} = 'BERGEN';
3216$borough_number{'5902'} = '1263'; $type{'5902'} = 'BX'; $location{'5902'} = 'ISDALST�';
3217$borough_number{'5903'} = '1263'; $type{'5903'} = 'BX'; $location{'5903'} = 'ISDALST�';
3218$borough_number{'5904'} = '1263'; $type{'5904'} = 'BX'; $location{'5904'} = 'ISDALST�';
3219$borough_number{'5906'} = '1256'; $type{'5906'} = 'BX'; $location{'5906'} = 'FREKHAUG';
3220$borough_number{'5907'} = '1263'; $type{'5907'} = 'BX'; $location{'5907'} = 'ALVERSUND';
3221$borough_number{'5908'} = '1263'; $type{'5908'} = 'BX'; $location{'5908'} = 'ISDALST�';
3222$borough_number{'5911'} = '1263'; $type{'5911'} = 'ST'; $location{'5911'} = 'ALVERSUND';
3223$borough_number{'5912'} = '1263'; $type{'5912'} = 'ST'; $location{'5912'} = 'SEIM';
3224$borough_number{'5913'} = '1263'; $type{'5913'} = 'ST'; $location{'5913'} = 'EIKANGERV�G';
3225$borough_number{'5914'} = '1263'; $type{'5914'} = 'ST'; $location{'5914'} = 'ISDALST�';
3226$borough_number{'5915'} = '1263'; $type{'5915'} = 'ST'; $location{'5915'} = 'HJELM�S';
3227$borough_number{'5917'} = '1256'; $type{'5917'} = 'STBX'; $location{'5917'} = 'ROSSLAND';
3228$borough_number{'5918'} = '1256'; $type{'5918'} = 'ST'; $location{'5918'} = 'FREKHAUG';
3229$borough_number{'5931'} = '1260'; $type{'5931'} = 'BX'; $location{'5931'} = 'MANGER';
3230$borough_number{'5936'} = '1260'; $type{'5936'} = 'ST'; $location{'5936'} = 'MANGER';
3231$borough_number{'5937'} = '1260'; $type{'5937'} = 'STBX'; $location{'5937'} = 'B�V�GEN';
3232$borough_number{'5938'} = '1260'; $type{'5938'} = 'STBX'; $location{'5938'} = 'S�B�V�GEN';
3233$borough_number{'5939'} = '1260'; $type{'5939'} = 'ST'; $location{'5939'} = 'SLETTA';
3234$borough_number{'5941'} = '1264'; $type{'5941'} = 'BX'; $location{'5941'} = 'AUSTRHEIM';
3235$borough_number{'5943'} = '1264'; $type{'5943'} = 'ST'; $location{'5943'} = 'AUSTRHEIM';
3236$borough_number{'5947'} = '1265'; $type{'5947'} = 'ST'; $location{'5947'} = 'FEDJE';
3237$borough_number{'5948'} = '1265'; $type{'5948'} = 'BX'; $location{'5948'} = 'FEDJE';
3238$borough_number{'5951'} = '1263'; $type{'5951'} = 'BX'; $location{'5951'} = 'LIND�S';
3239$borough_number{'5953'} = '1264'; $type{'5953'} = 'STBX'; $location{'5953'} = 'FONNES';
3240$borough_number{'5954'} = '1263'; $type{'5954'} = 'ST'; $location{'5954'} = 'MONGSTAD';
3241$borough_number{'5955'} = '1263'; $type{'5955'} = 'ST'; $location{'5955'} = 'LIND�S';
3242$borough_number{'5956'} = '1263'; $type{'5956'} = 'ST'; $location{'5956'} = 'V�GSEIDET';
3243$borough_number{'5957'} = '1263'; $type{'5957'} = 'STBX'; $location{'5957'} = 'MYKING';
3244$borough_number{'5960'} = '1411'; $type{'5960'} = 'STBX'; $location{'5960'} = 'DALS�YRA';
3245$borough_number{'5961'} = '1411'; $type{'5961'} = 'STBX'; $location{'5961'} = 'BREKKE';
3246$borough_number{'5962'} = '1416'; $type{'5962'} = 'STBX'; $location{'5962'} = 'BJORDAL';
3247$borough_number{'5966'} = '1411'; $type{'5966'} = 'ST'; $location{'5966'} = 'EIVINDVIK';
3248$borough_number{'5967'} = '1411'; $type{'5967'} = 'BX'; $location{'5967'} = 'EIVINDVIK';
3249$borough_number{'5970'} = '1411'; $type{'5970'} = 'ST'; $location{'5970'} = 'BYRKNES�Y';
3250$borough_number{'5977'} = '1411'; $type{'5977'} = 'ST'; $location{'5977'} = '�NNELAND';
3251$borough_number{'5978'} = '1411'; $type{'5978'} = 'ST'; $location{'5978'} = 'MJ�MNA';
3252$borough_number{'5979'} = '1411'; $type{'5979'} = 'BX'; $location{'5979'} = 'BYRKNES�Y';
3253$borough_number{'5981'} = '1266'; $type{'5981'} = 'ST'; $location{'5981'} = 'MASFJORDNES';
3254$borough_number{'5983'} = '1266'; $type{'5983'} = 'STBX'; $location{'5983'} = 'HAUGSV�R';
3255$borough_number{'5984'} = '1266'; $type{'5984'} = 'ST'; $location{'5984'} = 'MATREDAL';
3256$borough_number{'5986'} = '1266'; $type{'5986'} = 'ST'; $location{'5986'} = 'HOSTELAND';
3257$borough_number{'5987'} = '1266'; $type{'5987'} = 'BX'; $location{'5987'} = 'HOSTELAND';
3258$borough_number{'5991'} = '1263'; $type{'5991'} = 'BX'; $location{'5991'} = 'OSTEREIDET';
3259$borough_number{'5993'} = '1263'; $type{'5993'} = 'ST'; $location{'5993'} = 'OSTEREIDET';
3260$borough_number{'5994'} = '1263'; $type{'5994'} = 'ST'; $location{'5994'} = 'VIKANES';
3261$borough_number{'6001'} = '1504'; $type{'6001'} = 'BX'; $location{'6001'} = '�LESUND';
3262$borough_number{'6002'} = '1504'; $type{'6002'} = 'ST'; $location{'6002'} = '�LESUND';
3263$borough_number{'6003'} = '1504'; $type{'6003'} = 'ST'; $location{'6003'} = '�LESUND';
3264$borough_number{'6004'} = '1504'; $type{'6004'} = 'ST'; $location{'6004'} = '�LESUND';
3265$borough_number{'6005'} = '1504'; $type{'6005'} = 'ST'; $location{'6005'} = '�LESUND';
3266$borough_number{'6006'} = '1504'; $type{'6006'} = 'ST'; $location{'6006'} = '�LESUND';
3267$borough_number{'6007'} = '1504'; $type{'6007'} = 'ST'; $location{'6007'} = '�LESUND';
3268$borough_number{'6008'} = '1504'; $type{'6008'} = 'ST'; $location{'6008'} = '�LESUND';
3269$borough_number{'6009'} = '1504'; $type{'6009'} = 'ST'; $location{'6009'} = '�LESUND';
3270$borough_number{'6010'} = '1504'; $type{'6010'} = 'ST'; $location{'6010'} = '�LESUND';
3271$borough_number{'6011'} = '1504'; $type{'6011'} = 'ST'; $location{'6011'} = '�LESUND';
3272$borough_number{'6012'} = '1504'; $type{'6012'} = 'ST'; $location{'6012'} = '�LESUND';
3273$borough_number{'6013'} = '1504'; $type{'6013'} = 'ST'; $location{'6013'} = '�LESUND';
3274$borough_number{'6014'} = '1504'; $type{'6014'} = 'ST'; $location{'6014'} = '�LESUND';
3275$borough_number{'6015'} = '1504'; $type{'6015'} = 'ST'; $location{'6015'} = '�LESUND';
3276$borough_number{'6016'} = '1504'; $type{'6016'} = 'ST'; $location{'6016'} = '�LESUND';
3277$borough_number{'6017'} = '1504'; $type{'6017'} = 'ST'; $location{'6017'} = '�LESUND';
3278$borough_number{'6018'} = '1504'; $type{'6018'} = 'ST'; $location{'6018'} = '�LESUND';
3279$borough_number{'6019'} = '1504'; $type{'6019'} = 'ST'; $location{'6019'} = '�LESUND';
3280$borough_number{'6020'} = '1504'; $type{'6020'} = 'ST'; $location{'6020'} = '�LESUND';
3281$borough_number{'6021'} = '1504'; $type{'6021'} = 'BX'; $location{'6021'} = '�LESUND';
3282$borough_number{'6022'} = '1504'; $type{'6022'} = 'BX'; $location{'6022'} = '�LESUND';
3283$borough_number{'6023'} = '1504'; $type{'6023'} = 'BX'; $location{'6023'} = '�LESUND';
3284$borough_number{'6024'} = '1504'; $type{'6024'} = 'BX'; $location{'6024'} = '�LESUND';
3285$borough_number{'6025'} = '1504'; $type{'6025'} = 'SX'; $location{'6025'} = '�LESUND';
3286$borough_number{'6026'} = '1504'; $type{'6026'} = 'IO'; $location{'6026'} = '�LESUND';
3287$borough_number{'6028'} = '1504'; $type{'6028'} = 'BX'; $location{'6028'} = '�LESUND';
3288$borough_number{'6030'} = '1531'; $type{'6030'} = 'ST'; $location{'6030'} = 'LANGEV�G';
3289$borough_number{'6035'} = '1531'; $type{'6035'} = 'ST'; $location{'6035'} = 'FISKARSTRAND';
3290$borough_number{'6036'} = '1531'; $type{'6036'} = 'ST'; $location{'6036'} = 'MAUSEIDV�G';
3291$borough_number{'6037'} = '1531'; $type{'6037'} = 'STBX'; $location{'6037'} = 'EIDSNES';
3292$borough_number{'6038'} = '1531'; $type{'6038'} = 'BX'; $location{'6038'} = 'FISKARSTRAND';
3293$borough_number{'6039'} = '1531'; $type{'6039'} = 'BX'; $location{'6039'} = 'LANGEV�G';
3294$borough_number{'6040'} = '1532'; $type{'6040'} = 'ST'; $location{'6040'} = 'VIGRA';
3295$borough_number{'6045'} = '1504'; $type{'6045'} = 'BX'; $location{'6045'} = '�LESUND';
3296$borough_number{'6046'} = '1504'; $type{'6046'} = 'BX'; $location{'6046'} = '�LESUND';
3297$borough_number{'6050'} = '1532'; $type{'6050'} = 'ST'; $location{'6050'} = 'VALDER�YA';
3298$borough_number{'6051'} = '1532'; $type{'6051'} = 'BX'; $location{'6051'} = 'VALDER�YA';
3299$borough_number{'6052'} = '1532'; $type{'6052'} = 'ST'; $location{'6052'} = 'GISKE';
3300$borough_number{'6055'} = '1532'; $type{'6055'} = 'STBX'; $location{'6055'} = 'GOD�YA';
3301$borough_number{'6057'} = '1504'; $type{'6057'} = 'ST'; $location{'6057'} = 'ELLINGS�Y';
3302$borough_number{'6058'} = '1532'; $type{'6058'} = 'BX'; $location{'6058'} = 'VALDER�YA';
3303$borough_number{'6059'} = '1532'; $type{'6059'} = 'BX'; $location{'6059'} = 'VIGRA';
3304$borough_number{'6060'} = '1517'; $type{'6060'} = 'ST'; $location{'6060'} = 'HAREID';
3305$borough_number{'6062'} = '1517'; $type{'6062'} = 'ST'; $location{'6062'} = 'BRANDAL';
3306$borough_number{'6063'} = '1517'; $type{'6063'} = 'STBX'; $location{'6063'} = 'HJ�RUNGAV�G';
3307$borough_number{'6064'} = '1516'; $type{'6064'} = 'STBX'; $location{'6064'} = 'HADDAL';
3308$borough_number{'6065'} = '1516'; $type{'6065'} = 'ST'; $location{'6065'} = 'ULSTEINVIK';
3309$borough_number{'6067'} = '1516'; $type{'6067'} = 'BX'; $location{'6067'} = 'ULSTEINVIK';
3310$borough_number{'6069'} = '1517'; $type{'6069'} = 'BX'; $location{'6069'} = 'HAREID';
3311$borough_number{'6070'} = '1515'; $type{'6070'} = 'ST'; $location{'6070'} = 'TJ�RV�G';
3312$borough_number{'6076'} = '1515'; $type{'6076'} = 'STBX'; $location{'6076'} = 'MOLDTUSTRANDA';
3313$borough_number{'6080'} = '1515'; $type{'6080'} = 'STBX'; $location{'6080'} = 'GURSK�Y';
3314$borough_number{'6082'} = '1514'; $type{'6082'} = 'ST'; $location{'6082'} = 'GURSKEN';
3315$borough_number{'6083'} = '1514'; $type{'6083'} = 'STBX'; $location{'6083'} = 'GJERDSVIKA';
3316$borough_number{'6084'} = '1514'; $type{'6084'} = 'ST'; $location{'6084'} = 'LARSNES';
3317$borough_number{'6085'} = '1514'; $type{'6085'} = 'BX'; $location{'6085'} = 'LARSNES';
3318$borough_number{'6087'} = '1514'; $type{'6087'} = 'STBX'; $location{'6087'} = 'KVAMS�Y';
3319$borough_number{'6089'} = '1514'; $type{'6089'} = 'STBX'; $location{'6089'} = 'SANDSHAMN';
3320$borough_number{'6090'} = '1515'; $type{'6090'} = 'ST'; $location{'6090'} = 'FOSNAV�G';
3321$borough_number{'6092'} = '1515'; $type{'6092'} = 'ST'; $location{'6092'} = 'EGGESB�NES';
3322$borough_number{'6094'} = '1515'; $type{'6094'} = 'ST'; $location{'6094'} = 'LEIN�Y';
3323$borough_number{'6095'} = '1515'; $type{'6095'} = 'ST'; $location{'6095'} = 'B�LANDET';
3324$borough_number{'6096'} = '1515'; $type{'6096'} = 'ST'; $location{'6096'} = 'RUNDE';
3325$borough_number{'6098'} = '1515'; $type{'6098'} = 'ST'; $location{'6098'} = 'NERLANDS�Y';
3326$borough_number{'6099'} = '1515'; $type{'6099'} = 'BX'; $location{'6099'} = 'FOSNAV�G';
3327$borough_number{'6100'} = '1519'; $type{'6100'} = 'ST'; $location{'6100'} = 'VOLDA';
3328$borough_number{'6101'} = '1519'; $type{'6101'} = 'BX'; $location{'6101'} = 'VOLDA';
3329$borough_number{'6110'} = '1519'; $type{'6110'} = 'ST'; $location{'6110'} = 'AUSTEFJORDEN';
3330$borough_number{'6120'} = '1519'; $type{'6120'} = 'ST'; $location{'6120'} = 'FOLKESTAD';
3331$borough_number{'6133'} = '1519'; $type{'6133'} = 'STBX'; $location{'6133'} = 'LAUVSTAD';
3332$borough_number{'6139'} = '1511'; $type{'6139'} = 'BX'; $location{'6139'} = 'FISK�BYGD';
3333$borough_number{'6140'} = '1511'; $type{'6140'} = 'STBX'; $location{'6140'} = 'SYVDE';
3334$borough_number{'6141'} = '1511'; $type{'6141'} = 'ST'; $location{'6141'} = 'ROVDE';
3335$borough_number{'6142'} = '1511'; $type{'6142'} = 'ST'; $location{'6142'} = 'EIDS�';
3336$borough_number{'6143'} = '1511'; $type{'6143'} = 'ST'; $location{'6143'} = 'FISK�BYGD';
3337$borough_number{'6144'} = '1511'; $type{'6144'} = 'ST'; $location{'6144'} = 'SYLTE';
3338$borough_number{'6146'} = '1511'; $type{'6146'} = 'STBX'; $location{'6146'} = '�HEIM';
3339$borough_number{'6149'} = '1511'; $type{'6149'} = 'ST'; $location{'6149'} = '�RAM';
3340$borough_number{'6150'} = '1520'; $type{'6150'} = 'ST'; $location{'6150'} = '�RSTA';
3341$borough_number{'6151'} = '1520'; $type{'6151'} = 'BX'; $location{'6151'} = '�RSTA';
3342$borough_number{'6160'} = '1520'; $type{'6160'} = 'ST'; $location{'6160'} = 'HOVDEBYGDA';
3343$borough_number{'6161'} = '1520'; $type{'6161'} = 'BX'; $location{'6161'} = 'HOVDEBYGDA';
3344$borough_number{'6165'} = '1520'; $type{'6165'} = 'ST'; $location{'6165'} = 'S�B�';
3345$borough_number{'6166'} = '1520'; $type{'6166'} = 'BX'; $location{'6166'} = 'S�B�';
3346$borough_number{'6170'} = '1520'; $type{'6170'} = 'STBX'; $location{'6170'} = 'VARTDAL';
3347$borough_number{'6174'} = '1520'; $type{'6174'} = 'ST'; $location{'6174'} = 'BARSTADVIK';
3348$borough_number{'6183'} = '1520'; $type{'6183'} = 'ST'; $location{'6183'} = 'TRANDAL';
3349$borough_number{'6184'} = '1520'; $type{'6184'} = 'ST'; $location{'6184'} = 'STORESTANDAL';
3350$borough_number{'6190'} = '1520'; $type{'6190'} = 'ST'; $location{'6190'} = 'BJ�RKE';
3351$borough_number{'6196'} = '1520'; $type{'6196'} = 'ST'; $location{'6196'} = 'NORANGSFJORDEN';
3352$borough_number{'6200'} = '1525'; $type{'6200'} = 'ST'; $location{'6200'} = 'STRANDA';
3353$borough_number{'6201'} = '1525'; $type{'6201'} = 'BX'; $location{'6201'} = 'STRANDA';
3354$borough_number{'6210'} = '1524'; $type{'6210'} = 'STBX'; $location{'6210'} = 'VALLDAL';
3355$borough_number{'6212'} = '1525'; $type{'6212'} = 'ST'; $location{'6212'} = 'LIABYGDA';
3356$borough_number{'6213'} = '1524'; $type{'6213'} = 'ST'; $location{'6213'} = 'TAFJORD';
3357$borough_number{'6214'} = '1524'; $type{'6214'} = 'ST'; $location{'6214'} = 'NORDDAL';
3358$borough_number{'6215'} = '1524'; $type{'6215'} = 'STBX'; $location{'6215'} = 'EIDSDAL';
3359$borough_number{'6216'} = '1525'; $type{'6216'} = 'STBX'; $location{'6216'} = 'GEIRANGER';
3360$borough_number{'6218'} = '1525'; $type{'6218'} = 'STBX'; $location{'6218'} = 'HELLESYLT';
3361$borough_number{'6220'} = '1528'; $type{'6220'} = 'ST'; $location{'6220'} = 'STRAUMGJERDE';
3362$borough_number{'6222'} = '1528'; $type{'6222'} = 'STBX'; $location{'6222'} = 'IKORNNES';
3363$borough_number{'6224'} = '1528'; $type{'6224'} = 'ST'; $location{'6224'} = 'HUNDEIDVIK';
3364$borough_number{'6230'} = '1528'; $type{'6230'} = 'ST'; $location{'6230'} = 'SYKKYLVEN';
3365$borough_number{'6238'} = '1528'; $type{'6238'} = 'BX'; $location{'6238'} = 'STRAUMGJERDE';
3366$borough_number{'6239'} = '1528'; $type{'6239'} = 'BX'; $location{'6239'} = 'SYKKYLVEN';
3367$borough_number{'6240'} = '1523'; $type{'6240'} = 'ST'; $location{'6240'} = '�RSKOG';
3368$borough_number{'6249'} = '1523'; $type{'6249'} = 'BX'; $location{'6249'} = '�RSKOG';
3369$borough_number{'6250'} = '1526'; $type{'6250'} = 'ST'; $location{'6250'} = 'STORDAL';
3370$borough_number{'6259'} = '1526'; $type{'6259'} = 'BX'; $location{'6259'} = 'STORDAL';
3371$borough_number{'6260'} = '1529'; $type{'6260'} = 'ST'; $location{'6260'} = 'SKODJE';
3372$borough_number{'6263'} = '1529'; $type{'6263'} = 'BX'; $location{'6263'} = 'SKODJE';
3373$borough_number{'6264'} = '1534'; $type{'6264'} = 'ST'; $location{'6264'} = 'TENNFJORD';
3374$borough_number{'6265'} = '1534'; $type{'6265'} = 'ST'; $location{'6265'} = 'VATNE';
3375$borough_number{'6270'} = '1534'; $type{'6270'} = 'ST'; $location{'6270'} = 'BRATTV�G';
3376$borough_number{'6272'} = '1534'; $type{'6272'} = 'ST'; $location{'6272'} = 'HILDRE';
3377$borough_number{'6280'} = '1534'; $type{'6280'} = 'ST'; $location{'6280'} = 'S�VIK';
3378$borough_number{'6281'} = '1534'; $type{'6281'} = 'BX'; $location{'6281'} = 'S�VIK';
3379$borough_number{'6282'} = '1534'; $type{'6282'} = 'BX'; $location{'6282'} = 'BRATTV�G';
3380$borough_number{'6283'} = '1534'; $type{'6283'} = 'BX'; $location{'6283'} = 'VATNE';
3381$borough_number{'6285'} = '1534'; $type{'6285'} = 'ST'; $location{'6285'} = 'STOREKALV�Y';
3382$borough_number{'6290'} = '1534'; $type{'6290'} = 'STBX'; $location{'6290'} = 'HARAMS�Y';
3383$borough_number{'6292'} = '1534'; $type{'6292'} = 'ST'; $location{'6292'} = 'KJERSTAD';
3384$borough_number{'6293'} = '1534'; $type{'6293'} = 'ST'; $location{'6293'} = 'LONGVA';
3385$borough_number{'6294'} = '1534'; $type{'6294'} = 'ST'; $location{'6294'} = 'FJ�RTOFT';
3386$borough_number{'6300'} = '1539'; $type{'6300'} = 'ST'; $location{'6300'} = '�NDALSNES';
3387$borough_number{'6301'} = '1539'; $type{'6301'} = 'BX'; $location{'6301'} = '�NDALSNES';
3388$borough_number{'6310'} = '1539'; $type{'6310'} = 'ST'; $location{'6310'} = 'VEBLUNGSNES';
3389$borough_number{'6315'} = '1539'; $type{'6315'} = 'ST'; $location{'6315'} = 'INNFJORDEN';
3390$borough_number{'6320'} = '1539'; $type{'6320'} = 'ST'; $location{'6320'} = 'ISFJORDEN';
3391$borough_number{'6330'} = '1539'; $type{'6330'} = 'STBX'; $location{'6330'} = 'VERMA';
3392$borough_number{'6339'} = '1539'; $type{'6339'} = 'BX'; $location{'6339'} = 'ISFJORDEN';
3393$borough_number{'6350'} = '1539'; $type{'6350'} = 'ST'; $location{'6350'} = 'EIDSBYGDA';
3394$borough_number{'6360'} = '1539'; $type{'6360'} = 'STBX'; $location{'6360'} = '�FARNES';
3395$borough_number{'6363'} = '1539'; $type{'6363'} = 'ST'; $location{'6363'} = 'MITTET';
3396$borough_number{'6364'} = '1543'; $type{'6364'} = 'STBX'; $location{'6364'} = 'VISTDAL';
3397$borough_number{'6386'} = '1539'; $type{'6386'} = 'STBX'; $location{'6386'} = 'M�NDALEN';
3398$borough_number{'6387'} = '1539'; $type{'6387'} = 'STBX'; $location{'6387'} = 'V�GSTRANDA';
3399$borough_number{'6390'} = '1535'; $type{'6390'} = 'ST'; $location{'6390'} = 'VESTNES';
3400$borough_number{'6391'} = '1535'; $type{'6391'} = 'ST'; $location{'6391'} = 'TRESFJORD';
3401$borough_number{'6392'} = '1535'; $type{'6392'} = 'ST'; $location{'6392'} = 'VIKEBUKT';
3402$borough_number{'6393'} = '1535'; $type{'6393'} = 'ST'; $location{'6393'} = 'TOMREFJORD';
3403$borough_number{'6394'} = '1535'; $type{'6394'} = 'STBX'; $location{'6394'} = 'FIKSDAL';
3404$borough_number{'6395'} = '1535'; $type{'6395'} = 'ST'; $location{'6395'} = 'REKDAL';
3405$borough_number{'6396'} = '1535'; $type{'6396'} = 'BX'; $location{'6396'} = 'VIKEBUKT';
3406$borough_number{'6397'} = '1535'; $type{'6397'} = 'BX'; $location{'6397'} = 'TRESFJORD';
3407$borough_number{'6398'} = '1535'; $type{'6398'} = 'BX'; $location{'6398'} = 'TOMREFJORD';
3408$borough_number{'6399'} = '1535'; $type{'6399'} = 'BX'; $location{'6399'} = 'VESTNES';
3409$borough_number{'6401'} = '1502'; $type{'6401'} = 'BX'; $location{'6401'} = 'MOLDE';
3410$borough_number{'6402'} = '1502'; $type{'6402'} = 'BX'; $location{'6402'} = 'MOLDE';
3411$borough_number{'6403'} = '1502'; $type{'6403'} = 'BX'; $location{'6403'} = 'MOLDE';
3412$borough_number{'6404'} = '1502'; $type{'6404'} = 'IO'; $location{'6404'} = 'MOLDE';
3413$borough_number{'6405'} = '1502'; $type{'6405'} = 'SX'; $location{'6405'} = 'MOLDE';
3414$borough_number{'6407'} = '1502'; $type{'6407'} = 'IO'; $location{'6407'} = 'MOLDE';
3415$borough_number{'6408'} = '1548'; $type{'6408'} = 'ST'; $location{'6408'} = 'AUREOSEN';
3416$borough_number{'6409'} = '1547'; $type{'6409'} = 'ST'; $location{'6409'} = 'MOLDE';
3417$borough_number{'6410'} = '1502'; $type{'6410'} = 'BX'; $location{'6410'} = 'MOLDE';
3418$borough_number{'6411'} = '1502'; $type{'6411'} = 'ST'; $location{'6411'} = 'MOLDE';
3419$borough_number{'6412'} = '1502'; $type{'6412'} = 'ST'; $location{'6412'} = 'MOLDE';
3420$borough_number{'6413'} = '1502'; $type{'6413'} = 'ST'; $location{'6413'} = 'MOLDE';
3421$borough_number{'6414'} = '1502'; $type{'6414'} = 'ST'; $location{'6414'} = 'MOLDE';
3422$borough_number{'6415'} = '1502'; $type{'6415'} = 'ST'; $location{'6415'} = 'MOLDE';
3423$borough_number{'6416'} = '1502'; $type{'6416'} = 'ST'; $location{'6416'} = 'MOLDE';
3424$borough_number{'6418'} = '1502'; $type{'6418'} = 'ST'; $location{'6418'} = 'SEKKEN';
3425$borough_number{'6419'} = '1502'; $type{'6419'} = 'ST'; $location{'6419'} = 'MOLDE';
3426$borough_number{'6421'} = '1502'; $type{'6421'} = 'ST'; $location{'6421'} = 'MOLDE';
3427$borough_number{'6422'} = '1502'; $type{'6422'} = 'ST'; $location{'6422'} = 'MOLDE';
3428$borough_number{'6425'} = '1502'; $type{'6425'} = 'ST'; $location{'6425'} = 'MOLDE';
3429$borough_number{'6429'} = '1502'; $type{'6429'} = 'ST'; $location{'6429'} = 'MOLDE';
3430$borough_number{'6430'} = '1548'; $type{'6430'} = 'STBX'; $location{'6430'} = 'BUD';
3431$borough_number{'6433'} = '1548'; $type{'6433'} = 'STBX'; $location{'6433'} = 'HUSTAD';
3432$borough_number{'6440'} = '1548'; $type{'6440'} = 'ST'; $location{'6440'} = 'ELNESV�GEN';
3433$borough_number{'6443'} = '1548'; $type{'6443'} = 'ST'; $location{'6443'} = 'TORNES I ROMSDAL';
3434$borough_number{'6444'} = '1548'; $type{'6444'} = 'ST'; $location{'6444'} = 'FARSTAD';
3435$borough_number{'6445'} = '1548'; $type{'6445'} = 'ST'; $location{'6445'} = 'MALMEFJORDEN';
3436$borough_number{'6447'} = '1548'; $type{'6447'} = 'BX'; $location{'6447'} = 'ELNESV�GEN';
3437$borough_number{'6450'} = '1502'; $type{'6450'} = 'ST'; $location{'6450'} = 'HJELSET';
3438$borough_number{'6453'} = '1502'; $type{'6453'} = 'STBX'; $location{'6453'} = 'KLEIVE';
3439$borough_number{'6454'} = '1502'; $type{'6454'} = 'BX'; $location{'6454'} = 'HJELSET';
3440$borough_number{'6455'} = '1502'; $type{'6455'} = 'ST'; $location{'6455'} = 'KORTGARDEN';
3441$borough_number{'6456'} = '1502'; $type{'6456'} = 'STBX'; $location{'6456'} = 'SK�LA';
3442$borough_number{'6457'} = '1502'; $type{'6457'} = 'ST'; $location{'6457'} = 'BOLS�YA';
3443$borough_number{'6460'} = '1543'; $type{'6460'} = 'STBX'; $location{'6460'} = 'EIDSV�G I ROMSDAL';
3444$borough_number{'6462'} = '1543'; $type{'6462'} = 'ST'; $location{'6462'} = 'RAUDSAND';
3445$borough_number{'6470'} = '1543'; $type{'6470'} = 'STBX'; $location{'6470'} = 'ERESFJORD';
3446$borough_number{'6472'} = '1543'; $type{'6472'} = 'STBX'; $location{'6472'} = 'EIKESDAL';
3447$borough_number{'6475'} = '1545'; $type{'6475'} = 'ST'; $location{'6475'} = 'MIDSUND';
3448$borough_number{'6476'} = '1545'; $type{'6476'} = 'BX'; $location{'6476'} = 'MIDSUND';
3449$borough_number{'6480'} = '1547'; $type{'6480'} = 'ST'; $location{'6480'} = 'AUKRA';
3450$borough_number{'6481'} = '1547'; $type{'6481'} = 'BX'; $location{'6481'} = 'AUKRA';
3451$borough_number{'6483'} = '1546'; $type{'6483'} = 'STBX'; $location{'6483'} = 'ONA';
3452$borough_number{'6484'} = '1546'; $type{'6484'} = 'ST'; $location{'6484'} = 'SAND�Y';
3453$borough_number{'6486'} = '1546'; $type{'6486'} = 'STBX'; $location{'6486'} = 'ORTEN';
3454$borough_number{'6487'} = '1546'; $type{'6487'} = 'STBX'; $location{'6487'} = 'HAR�Y';
3455$borough_number{'6488'} = '1546'; $type{'6488'} = 'ST'; $location{'6488'} = 'MYKLEBOST';
3456$borough_number{'6490'} = '1551'; $type{'6490'} = 'ST'; $location{'6490'} = 'EIDE';
3457$borough_number{'6493'} = '1551'; $type{'6493'} = 'ST'; $location{'6493'} = 'LYNGSTAD';
3458$borough_number{'6494'} = '1551'; $type{'6494'} = 'ST'; $location{'6494'} = 'VEVANG';
3459$borough_number{'6499'} = '1551'; $type{'6499'} = 'BX'; $location{'6499'} = 'EIDE';
3460$borough_number{'6501'} = '1503'; $type{'6501'} = 'BX'; $location{'6501'} = 'KRISTIANSUND N';
3461$borough_number{'6502'} = '1503'; $type{'6502'} = 'BX'; $location{'6502'} = 'KRISTIANSUND N';
3462$borough_number{'6503'} = '1503'; $type{'6503'} = 'BX'; $location{'6503'} = 'KRISTIANSUND N';
3463$borough_number{'6504'} = '1503'; $type{'6504'} = 'SX'; $location{'6504'} = 'KRISTIANSUND N';
3464$borough_number{'6506'} = '1503'; $type{'6506'} = 'BX'; $location{'6506'} = 'KRISTIANSUND N';
3465$borough_number{'6507'} = '1503'; $type{'6507'} = 'ST'; $location{'6507'} = 'KRISTIANSUND N';
3466$borough_number{'6508'} = '1503'; $type{'6508'} = 'ST'; $location{'6508'} = 'KRISTIANSUND N';
3467$borough_number{'6509'} = '1503'; $type{'6509'} = 'ST'; $location{'6509'} = 'KRISTIANSUND N';
3468$borough_number{'6510'} = '1503'; $type{'6510'} = 'ST'; $location{'6510'} = 'KRISTIANSUND N';
3469$borough_number{'6511'} = '1503'; $type{'6511'} = 'ST'; $location{'6511'} = 'KRISTIANSUND N';
3470$borough_number{'6512'} = '1503'; $type{'6512'} = 'ST'; $location{'6512'} = 'KRISTIANSUND N';
3471$borough_number{'6514'} = '1503'; $type{'6514'} = 'ST'; $location{'6514'} = 'KRISTIANSUND N';
3472$borough_number{'6515'} = '1503'; $type{'6515'} = 'ST'; $location{'6515'} = 'KRISTIANSUND N';
3473$borough_number{'6516'} = '1503'; $type{'6516'} = 'ST'; $location{'6516'} = 'KRISTIANSUND N';
3474$borough_number{'6517'} = '1503'; $type{'6517'} = 'ST'; $location{'6517'} = 'KRISTIANSUND N';
3475$borough_number{'6518'} = '1503'; $type{'6518'} = 'ST'; $location{'6518'} = 'KRISTIANSUND N';
3476$borough_number{'6520'} = '1556'; $type{'6520'} = 'STBX'; $location{'6520'} = 'FREI';
3477$borough_number{'6523'} = '1556'; $type{'6523'} = 'STBX'; $location{'6523'} = 'FREI';
3478$borough_number{'6529'} = '1556'; $type{'6529'} = 'BX'; $location{'6529'} = 'FREI';
3479$borough_number{'6530'} = '1554'; $type{'6530'} = 'STBX'; $location{'6530'} = 'AVER�Y';
3480$borough_number{'6538'} = '1554'; $type{'6538'} = 'BX'; $location{'6538'} = 'AVER�Y';
3481$borough_number{'6539'} = '1554'; $type{'6539'} = 'BX'; $location{'6539'} = 'AVER�Y';
3482$borough_number{'6570'} = '1573'; $type{'6570'} = 'ST'; $location{'6570'} = 'SM�LA';
3483$borough_number{'6571'} = '1573'; $type{'6571'} = 'BX'; $location{'6571'} = 'SM�LA';
3484$borough_number{'6590'} = '1576'; $type{'6590'} = 'STBX'; $location{'6590'} = 'TUSTNA';
3485$borough_number{'6600'} = '1563'; $type{'6600'} = 'ST'; $location{'6600'} = 'SUNNDALS�RA';
3486$borough_number{'6601'} = '1563'; $type{'6601'} = 'BX'; $location{'6601'} = 'SUNNDALS�RA';
3487$borough_number{'6610'} = '1563'; $type{'6610'} = 'ST'; $location{'6610'} = '�KSENDAL';
3488$borough_number{'6611'} = '1563'; $type{'6611'} = 'ST'; $location{'6611'} = 'FURUGRENDA';
3489$borough_number{'6612'} = '1563'; $type{'6612'} = 'ST'; $location{'6612'} = 'GR�A';
3490$borough_number{'6613'} = '1563'; $type{'6613'} = 'STBX'; $location{'6613'} = 'GJ�RA';
3491$borough_number{'6620'} = '1563'; $type{'6620'} = 'STBX'; $location{'6620'} = '�LVUNDEID';
3492$borough_number{'6622'} = '1563'; $type{'6622'} = 'STBX'; $location{'6622'} = '�LVUNDFJORD';
3493$borough_number{'6628'} = '1560'; $type{'6628'} = 'STBX'; $location{'6628'} = 'MEISINGSET';
3494$borough_number{'6629'} = '1560'; $type{'6629'} = 'ST'; $location{'6629'} = 'TORJULV�GEN';
3495$borough_number{'6630'} = '1560'; $type{'6630'} = 'STBX'; $location{'6630'} = 'TINGVOLL';
3496$borough_number{'6631'} = '1557'; $type{'6631'} = 'STBX'; $location{'6631'} = 'BATNFJORDS�RA';
3497$borough_number{'6633'} = '1557'; $type{'6633'} = 'ST'; $location{'6633'} = 'GJEMNES';
3498$borough_number{'6636'} = '1557'; $type{'6636'} = 'ST'; $location{'6636'} = 'ANGVIK';
3499$borough_number{'6637'} = '1557'; $type{'6637'} = 'ST'; $location{'6637'} = 'FLEMMA';
3500$borough_number{'6638'} = '1557'; $type{'6638'} = 'ST'; $location{'6638'} = 'OSMARKA';
3501$borough_number{'6639'} = '1557'; $type{'6639'} = 'STBX'; $location{'6639'} = 'TORVIKBUKT';
3502$borough_number{'6640'} = '1566'; $type{'6640'} = 'ST'; $location{'6640'} = 'KVANNE';
3503$borough_number{'6642'} = '1566'; $type{'6642'} = 'ST'; $location{'6642'} = 'STANGVIK';
3504$borough_number{'6643'} = '1566'; $type{'6643'} = 'ST'; $location{'6643'} = 'B�FJORDEN';
3505$borough_number{'6644'} = '1566'; $type{'6644'} = 'STBX'; $location{'6644'} = 'B�VERFJORD';
3506$borough_number{'6645'} = '1566'; $type{'6645'} = 'STBX'; $location{'6645'} = 'TODALEN';
3507$borough_number{'6650'} = '1566'; $type{'6650'} = 'ST'; $location{'6650'} = 'SURNADAL';
3508$borough_number{'6652'} = '1566'; $type{'6652'} = 'ST'; $location{'6652'} = 'SURNA';
3509$borough_number{'6653'} = '1566'; $type{'6653'} = 'ST'; $location{'6653'} = '�VRE SURNADAL';
3510$borough_number{'6655'} = '1566'; $type{'6655'} = 'ST'; $location{'6655'} = 'VIND�LA';
3511$borough_number{'6656'} = '1566'; $type{'6656'} = 'BX'; $location{'6656'} = 'SURNADAL';
3512$borough_number{'6657'} = '1567'; $type{'6657'} = 'ST'; $location{'6657'} = 'RINDAL';
3513$borough_number{'6658'} = '1567'; $type{'6658'} = 'ST'; $location{'6658'} = 'RINDALSSKOGEN';
3514$borough_number{'6659'} = '1567'; $type{'6659'} = 'BX'; $location{'6659'} = 'RINDAL';
3515$borough_number{'6670'} = '1560'; $type{'6670'} = 'STBX'; $location{'6670'} = '�YDEGARD';
3516$borough_number{'6674'} = '1560'; $type{'6674'} = 'ST'; $location{'6674'} = 'KVISVIK';
3517$borough_number{'6680'} = '1571'; $type{'6680'} = 'ST'; $location{'6680'} = 'HALSANAUSTAN';
3518$borough_number{'6683'} = '1571'; $type{'6683'} = 'ST'; $location{'6683'} = 'V�GLAND';
3519$borough_number{'6686'} = '1571'; $type{'6686'} = 'ST'; $location{'6686'} = 'VALS�YBOTN';
3520$borough_number{'6687'} = '1571'; $type{'6687'} = 'ST'; $location{'6687'} = 'VALS�YFJORD';
3521$borough_number{'6688'} = '1571'; $type{'6688'} = 'BX'; $location{'6688'} = 'V�GLAND';
3522$borough_number{'6689'} = '1576'; $type{'6689'} = 'BX'; $location{'6689'} = 'AURE';
3523$borough_number{'6690'} = '1576'; $type{'6690'} = 'ST'; $location{'6690'} = 'AURE';
3524$borough_number{'6693'} = '1576'; $type{'6693'} = 'ST'; $location{'6693'} = 'MJOSUNDET';
3525$borough_number{'6694'} = '1576'; $type{'6694'} = 'ST'; $location{'6694'} = 'FOLDFJORDEN';
3526$borough_number{'6697'} = '1576'; $type{'6697'} = 'ST'; $location{'6697'} = 'VIHALS';
3527$borough_number{'6698'} = '1576'; $type{'6698'} = 'ST'; $location{'6698'} = 'LESUND';
3528$borough_number{'6699'} = '1576'; $type{'6699'} = 'ST'; $location{'6699'} = 'KJ�RSVIKBUGEN';
3529$borough_number{'6700'} = '1439'; $type{'6700'} = 'ST'; $location{'6700'} = 'M�L�Y';
3530$borough_number{'6701'} = '1439'; $type{'6701'} = 'BX'; $location{'6701'} = 'M�L�Y';
3531$borough_number{'6702'} = '1439'; $type{'6702'} = 'BX'; $location{'6702'} = 'M�L�Y';
3532$borough_number{'6703'} = '1439'; $type{'6703'} = 'BX'; $location{'6703'} = 'M�L�Y';
3533$borough_number{'6704'} = '1439'; $type{'6704'} = 'BX'; $location{'6704'} = 'DEKNEPOLLEN';
3534$borough_number{'6706'} = '1439'; $type{'6706'} = 'SX'; $location{'6706'} = 'M�L�Y';
3535$borough_number{'6707'} = '1439'; $type{'6707'} = 'BX'; $location{'6707'} = 'RAUDEBERG';
3536$borough_number{'6708'} = '1439'; $type{'6708'} = 'BX'; $location{'6708'} = 'BRYGGJA';
3537$borough_number{'6710'} = '1439'; $type{'6710'} = 'ST'; $location{'6710'} = 'RAUDEBERG';
3538$borough_number{'6711'} = '1439'; $type{'6711'} = 'ST'; $location{'6711'} = 'BRYGGJA';
3539$borough_number{'6713'} = '1439'; $type{'6713'} = 'ST'; $location{'6713'} = 'ALMENNINGEN';
3540$borough_number{'6714'} = '1439'; $type{'6714'} = 'ST'; $location{'6714'} = 'SILDA';
3541$borough_number{'6715'} = '1441'; $type{'6715'} = 'ST'; $location{'6715'} = 'BARMEN';
3542$borough_number{'6716'} = '1439'; $type{'6716'} = 'ST'; $location{'6716'} = 'HUSEV�G';
3543$borough_number{'6717'} = '1441'; $type{'6717'} = 'ST'; $location{'6717'} = 'FLATRAKET';
3544$borough_number{'6718'} = '1439'; $type{'6718'} = 'ST'; $location{'6718'} = 'DEKNEPOLLEN';
3545$borough_number{'6719'} = '1438'; $type{'6719'} = 'ST'; $location{'6719'} = 'SKATESTRAUMEN';
3546$borough_number{'6721'} = '1438'; $type{'6721'} = 'BX'; $location{'6721'} = 'SVELGEN';
3547$borough_number{'6723'} = '1438'; $type{'6723'} = 'ST'; $location{'6723'} = 'SVELGEN';
3548$borough_number{'6726'} = '1438'; $type{'6726'} = 'BX'; $location{'6726'} = 'BREMANGER';
3549$borough_number{'6727'} = '1438'; $type{'6727'} = 'ST'; $location{'6727'} = 'BREMANGER';
3550$borough_number{'6728'} = '1438'; $type{'6728'} = 'BX'; $location{'6728'} = 'KALV�G';
3551$borough_number{'6729'} = '1438'; $type{'6729'} = 'ST'; $location{'6729'} = 'KALV�G';
3552$borough_number{'6730'} = '1438'; $type{'6730'} = 'ST'; $location{'6730'} = 'DAVIK';
3553$borough_number{'6731'} = '1438'; $type{'6731'} = 'BX'; $location{'6731'} = 'DAVIK';
3554$borough_number{'6734'} = '1438'; $type{'6734'} = 'ST'; $location{'6734'} = 'RUGSUND';
3555$borough_number{'6737'} = '1438'; $type{'6737'} = 'ST'; $location{'6737'} = '�LFOTEN';
3556$borough_number{'6740'} = '1441'; $type{'6740'} = 'ST'; $location{'6740'} = 'SELJE';
3557$borough_number{'6741'} = '1441'; $type{'6741'} = 'BX'; $location{'6741'} = 'SELJE';
3558$borough_number{'6750'} = '1441'; $type{'6750'} = 'ST'; $location{'6750'} = 'STADLANDET';
3559$borough_number{'6751'} = '1441'; $type{'6751'} = 'BX'; $location{'6751'} = 'STADLANDET';
3560$borough_number{'6761'} = '1444'; $type{'6761'} = 'BX'; $location{'6761'} = 'HORNINDAL';
3561$borough_number{'6763'} = '1444'; $type{'6763'} = 'ST'; $location{'6763'} = 'HORNINDAL';
3562$borough_number{'6770'} = '1443'; $type{'6770'} = 'ST'; $location{'6770'} = 'NORDFJORDEID';
3563$borough_number{'6771'} = '1443'; $type{'6771'} = 'BX'; $location{'6771'} = 'NORDFJORDEID';
3564$borough_number{'6772'} = '1443'; $type{'6772'} = 'BX'; $location{'6772'} = 'NORDFJORDEID';
3565$borough_number{'6776'} = '1443'; $type{'6776'} = 'ST'; $location{'6776'} = 'KJ�LSDALEN';
3566$borough_number{'6777'} = '1443'; $type{'6777'} = 'ST'; $location{'6777'} = 'ST�RHEIM';
3567$borough_number{'6778'} = '1443'; $type{'6778'} = 'ST'; $location{'6778'} = 'LOTE';
3568$borough_number{'6779'} = '1443'; $type{'6779'} = 'ST'; $location{'6779'} = 'HOLM�YANE';
3569$borough_number{'6781'} = '1449'; $type{'6781'} = 'BX'; $location{'6781'} = 'STRYN';
3570$borough_number{'6782'} = '1449'; $type{'6782'} = 'BX'; $location{'6782'} = 'STRYN';
3571$borough_number{'6783'} = '1449'; $type{'6783'} = 'ST'; $location{'6783'} = 'STRYN';
3572$borough_number{'6784'} = '1449'; $type{'6784'} = 'BX'; $location{'6784'} = 'OLDEN';
3573$borough_number{'6788'} = '1449'; $type{'6788'} = 'ST'; $location{'6788'} = 'OLDEN';
3574$borough_number{'6789'} = '1449'; $type{'6789'} = 'STBX'; $location{'6789'} = 'LOEN';
3575$borough_number{'6791'} = '1449'; $type{'6791'} = 'ST'; $location{'6791'} = 'OLDEDALEN';
3576$borough_number{'6792'} = '1449'; $type{'6792'} = 'ST'; $location{'6792'} = 'BRIKSDALSBRE';
3577$borough_number{'6793'} = '1449'; $type{'6793'} = 'STBX'; $location{'6793'} = 'INNVIK';
3578$borough_number{'6795'} = '1449'; $type{'6795'} = 'ST'; $location{'6795'} = 'BLAKS�TER';
3579$borough_number{'6796'} = '1449'; $type{'6796'} = 'ST'; $location{'6796'} = 'HOPLAND';
3580$borough_number{'6797'} = '1449'; $type{'6797'} = 'ST'; $location{'6797'} = 'UTVIK';
3581$borough_number{'6798'} = '1449'; $type{'6798'} = 'ST'; $location{'6798'} = 'HJELLEDALEN';
3582$borough_number{'6799'} = '1449'; $type{'6799'} = 'ST'; $location{'6799'} = 'OPPSTRYN';
3583$borough_number{'6800'} = '1432'; $type{'6800'} = 'STBX'; $location{'6800'} = 'F�RDE';
3584$borough_number{'6801'} = '1432'; $type{'6801'} = 'BX'; $location{'6801'} = 'F�RDE';
3585$borough_number{'6802'} = '1432'; $type{'6802'} = 'BX'; $location{'6802'} = 'F�RDE';
3586$borough_number{'6803'} = '1432'; $type{'6803'} = 'BX'; $location{'6803'} = 'F�RDE';
3587$borough_number{'6804'} = '1432'; $type{'6804'} = 'BX'; $location{'6804'} = 'F�RDE';
3588$borough_number{'6805'} = '1432'; $type{'6805'} = 'BX'; $location{'6805'} = 'F�RDE';
3589$borough_number{'6806'} = '1433'; $type{'6806'} = 'BX'; $location{'6806'} = 'NAUSTDAL';
3590$borough_number{'6807'} = '1432'; $type{'6807'} = 'SX'; $location{'6807'} = 'F�RDE';
3591$borough_number{'6816'} = '1433'; $type{'6816'} = 'BX'; $location{'6816'} = 'NAUSTDAL';
3592$borough_number{'6817'} = '1433'; $type{'6817'} = 'ST'; $location{'6817'} = 'NAUSTDAL';
3593$borough_number{'6818'} = '1432'; $type{'6818'} = 'ST'; $location{'6818'} = 'HAUKEDALEN';
3594$borough_number{'6819'} = '1432'; $type{'6819'} = 'ST'; $location{'6819'} = 'HOLSEN';
3595$borough_number{'6821'} = '1445'; $type{'6821'} = 'BX'; $location{'6821'} = 'SANDANE';
3596$borough_number{'6822'} = '1445'; $type{'6822'} = 'BX'; $location{'6822'} = 'SANDANE';
3597$borough_number{'6823'} = '1445'; $type{'6823'} = 'ST'; $location{'6823'} = 'SANDANE';
3598$borough_number{'6826'} = '1445'; $type{'6826'} = 'STBX'; $location{'6826'} = 'BYRKJELO';
3599$borough_number{'6827'} = '1445'; $type{'6827'} = 'ST'; $location{'6827'} = 'BREIM';
3600$borough_number{'6828'} = '1445'; $type{'6828'} = 'ST'; $location{'6828'} = 'HESTENES�YRA';
3601$borough_number{'6829'} = '1445'; $type{'6829'} = 'STBX'; $location{'6829'} = 'HYEN';
3602$borough_number{'6841'} = '1431'; $type{'6841'} = 'BX'; $location{'6841'} = 'SKEI I J�LSTER';
3603$borough_number{'6843'} = '1431'; $type{'6843'} = 'ST'; $location{'6843'} = 'SKEI I J�LSTER';
3604$borough_number{'6847'} = '1431'; $type{'6847'} = 'STBX'; $location{'6847'} = 'VASSENDEN';
3605$borough_number{'6848'} = '1420'; $type{'6848'} = 'STBX'; $location{'6848'} = 'FJ�RLAND';
3606$borough_number{'6851'} = '1420'; $type{'6851'} = 'BX'; $location{'6851'} = 'SOGNDAL';
3607$borough_number{'6852'} = '1420'; $type{'6852'} = 'BX'; $location{'6852'} = 'SOGNDAL';
3608$borough_number{'6853'} = '1420'; $type{'6853'} = 'BX'; $location{'6853'} = 'SOGNDAL';
3609$borough_number{'6854'} = '1420'; $type{'6854'} = 'STBX'; $location{'6854'} = 'KAUPANGER';
3610$borough_number{'6855'} = '1422'; $type{'6855'} = 'ST'; $location{'6855'} = 'FR�NNINGEN';
3611$borough_number{'6856'} = '1420'; $type{'6856'} = 'ST'; $location{'6856'} = 'SOGNDAL';
3612$borough_number{'6858'} = '1420'; $type{'6858'} = 'ST'; $location{'6858'} = 'FARDAL';
3613$borough_number{'6859'} = '1420'; $type{'6859'} = 'ST'; $location{'6859'} = 'SLINDE';
3614$borough_number{'6861'} = '1419'; $type{'6861'} = 'BX'; $location{'6861'} = 'LEIKANGER';
3615$borough_number{'6863'} = '1419'; $type{'6863'} = 'ST'; $location{'6863'} = 'LEIKANGER';
3616$borough_number{'6866'} = '1426'; $type{'6866'} = 'BX'; $location{'6866'} = 'GAUPNE';
3617$borough_number{'6868'} = '1426'; $type{'6868'} = 'ST'; $location{'6868'} = 'GAUPNE';
3618$borough_number{'6869'} = '1426'; $type{'6869'} = 'STBX'; $location{'6869'} = 'HAFSLO';
3619$borough_number{'6870'} = '1426'; $type{'6870'} = 'ST'; $location{'6870'} = 'ORNES';
3620$borough_number{'6871'} = '1426'; $type{'6871'} = 'ST'; $location{'6871'} = 'JOSTEDAL';
3621$borough_number{'6872'} = '1426'; $type{'6872'} = 'STBX'; $location{'6872'} = 'LUSTER';
3622$borough_number{'6873'} = '1426'; $type{'6873'} = 'ST'; $location{'6873'} = 'MARIFJ�RA';
3623$borough_number{'6875'} = '1426'; $type{'6875'} = 'ST'; $location{'6875'} = 'H�YHEIMSVIK';
3624$borough_number{'6876'} = '1426'; $type{'6876'} = 'ST'; $location{'6876'} = 'SKJOLDEN';
3625$borough_number{'6877'} = '1426'; $type{'6877'} = 'ST'; $location{'6877'} = 'FORTUN';
3626$borough_number{'6878'} = '1426'; $type{'6878'} = 'ST'; $location{'6878'} = 'VEITASTROND';
3627$borough_number{'6879'} = '1426'; $type{'6879'} = 'ST'; $location{'6879'} = 'SOLVORN';
3628$borough_number{'6881'} = '1424'; $type{'6881'} = 'BX'; $location{'6881'} = '�RDALSTANGEN';
3629$borough_number{'6882'} = '1424'; $type{'6882'} = 'BX'; $location{'6882'} = '�VRE �RDAL';
3630$borough_number{'6884'} = '1424'; $type{'6884'} = 'ST'; $location{'6884'} = '�VRE �RDAL';
3631$borough_number{'6885'} = '1424'; $type{'6885'} = 'ST'; $location{'6885'} = '�RDALSTANGEN';
3632$borough_number{'6886'} = '1422'; $type{'6886'} = 'BX'; $location{'6886'} = 'L�RDAL';
3633$borough_number{'6887'} = '1422'; $type{'6887'} = 'ST'; $location{'6887'} = 'L�RDAL';
3634$borough_number{'6888'} = '1422'; $type{'6888'} = 'ST'; $location{'6888'} = 'STEINKLEPP';
3635$borough_number{'6891'} = '1417'; $type{'6891'} = 'BX'; $location{'6891'} = 'VIK I SOGN';
3636$borough_number{'6893'} = '1417'; $type{'6893'} = 'ST'; $location{'6893'} = 'VIK I SOGN';
3637$borough_number{'6894'} = '1417'; $type{'6894'} = 'ST'; $location{'6894'} = 'VANGSNES';
3638$borough_number{'6895'} = '1417'; $type{'6895'} = 'ST'; $location{'6895'} = 'FEIOS';
3639$borough_number{'6896'} = '1417'; $type{'6896'} = 'ST'; $location{'6896'} = 'FRESVIK';
3640$borough_number{'6898'} = '1418'; $type{'6898'} = 'BX'; $location{'6898'} = 'BALESTRAND';
3641$borough_number{'6899'} = '1418'; $type{'6899'} = 'ST'; $location{'6899'} = 'BALESTRAND';
3642$borough_number{'6900'} = '1401'; $type{'6900'} = 'ST'; $location{'6900'} = 'FLOR�';
3643$borough_number{'6901'} = '1401'; $type{'6901'} = 'BX'; $location{'6901'} = 'FLOR�';
3644$borough_number{'6902'} = '1401'; $type{'6902'} = 'BX'; $location{'6902'} = 'FLOR�';
3645$borough_number{'6903'} = '1401'; $type{'6903'} = 'BX'; $location{'6903'} = 'FLOR�';
3646$borough_number{'6909'} = '1401'; $type{'6909'} = 'BX'; $location{'6909'} = 'FLOR�';
3647$borough_number{'6912'} = '1401'; $type{'6912'} = 'ST'; $location{'6912'} = 'KINN';
3648$borough_number{'6914'} = '1401'; $type{'6914'} = 'ST'; $location{'6914'} = 'SVAN�YBUKT';
3649$borough_number{'6915'} = '1401'; $type{'6915'} = 'ST'; $location{'6915'} = 'ROGNALDSV�G';
3650$borough_number{'6916'} = '1401'; $type{'6916'} = 'ST'; $location{'6916'} = 'BAREKSTAD';
3651$borough_number{'6917'} = '1401'; $type{'6917'} = 'ST'; $location{'6917'} = 'BATALDEN';
3652$borough_number{'6918'} = '1401'; $type{'6918'} = 'ST'; $location{'6918'} = 'S�R-SKORPA';
3653$borough_number{'6919'} = '1401'; $type{'6919'} = 'ST'; $location{'6919'} = 'TANS�Y';
3654$borough_number{'6921'} = '1412'; $type{'6921'} = 'BX'; $location{'6921'} = 'HARDBAKKE';
3655$borough_number{'6924'} = '1412'; $type{'6924'} = 'ST'; $location{'6924'} = 'HARDBAKKE';
3656$borough_number{'6926'} = '1412'; $type{'6926'} = 'ST'; $location{'6926'} = 'KRAKHELLA';
3657$borough_number{'6927'} = '1412'; $type{'6927'} = 'ST'; $location{'6927'} = 'YTR�YGREND';
3658$borough_number{'6928'} = '1412'; $type{'6928'} = 'ST'; $location{'6928'} = 'KOLGROV';
3659$borough_number{'6929'} = '1412'; $type{'6929'} = 'ST'; $location{'6929'} = 'HERSVIKBYGDA';
3660$borough_number{'6939'} = '1401'; $type{'6939'} = 'BX'; $location{'6939'} = 'STAVANG';
3661$borough_number{'6940'} = '1401'; $type{'6940'} = 'ST'; $location{'6940'} = 'EIKEFJORD';
3662$borough_number{'6941'} = '1401'; $type{'6941'} = 'BX'; $location{'6941'} = 'EIKEFJORD';
3663$borough_number{'6942'} = '1401'; $type{'6942'} = 'ST'; $location{'6942'} = 'SVORTEVIK';
3664$borough_number{'6944'} = '1401'; $type{'6944'} = 'ST'; $location{'6944'} = 'STAVANG';
3665$borough_number{'6946'} = '1416'; $type{'6946'} = 'BX'; $location{'6946'} = 'LAVIK';
3666$borough_number{'6947'} = '1416'; $type{'6947'} = 'ST'; $location{'6947'} = 'LAVIK';
3667$borough_number{'6951'} = '1413'; $type{'6951'} = 'BX'; $location{'6951'} = 'LEIRVIK I SOGN';
3668$borough_number{'6953'} = '1413'; $type{'6953'} = 'ST'; $location{'6953'} = 'LEIRVIK I SOGN';
3669$borough_number{'6957'} = '1413'; $type{'6957'} = 'ST'; $location{'6957'} = 'HYLLESTAD';
3670$borough_number{'6958'} = '1413'; $type{'6958'} = 'STBX'; $location{'6958'} = 'S�RB�V�G';
3671$borough_number{'6961'} = '1429'; $type{'6961'} = 'BX'; $location{'6961'} = 'DALE I SUNNFJORD';
3672$borough_number{'6963'} = '1429'; $type{'6963'} = 'ST'; $location{'6963'} = 'DALE I SUNNFJORD';
3673$borough_number{'6964'} = '1429'; $type{'6964'} = 'ST'; $location{'6964'} = 'KORSSUND';
3674$borough_number{'6966'} = '1429'; $type{'6966'} = 'ST'; $location{'6966'} = 'GUDDAL';
3675$borough_number{'6967'} = '1429'; $type{'6967'} = 'ST'; $location{'6967'} = 'HELLEVIK I FJALER';
3676$borough_number{'6968'} = '1429'; $type{'6968'} = 'STBX'; $location{'6968'} = 'FLEKKE';
3677$borough_number{'6969'} = '1429'; $type{'6969'} = 'ST'; $location{'6969'} = 'STRAUMSNES';
3678$borough_number{'6971'} = '1430'; $type{'6971'} = 'BX'; $location{'6971'} = 'SANDE I SUNNFJORD';
3679$borough_number{'6973'} = '1430'; $type{'6973'} = 'ST'; $location{'6973'} = 'SANDE I SUNNFJORD';
3680$borough_number{'6975'} = '1430'; $type{'6975'} = 'ST'; $location{'6975'} = 'SKILBREI';
3681$borough_number{'6977'} = '1430'; $type{'6977'} = 'STBX'; $location{'6977'} = 'BYGSTAD';
3682$borough_number{'6978'} = '1430'; $type{'6978'} = 'ST'; $location{'6978'} = 'VIKSDALEN';
3683$borough_number{'6980'} = '1428'; $type{'6980'} = 'ST'; $location{'6980'} = 'ASKVOLL';
3684$borough_number{'6981'} = '1428'; $type{'6981'} = 'BX'; $location{'6981'} = 'HOLMEDAL';
3685$borough_number{'6982'} = '1428'; $type{'6982'} = 'ST'; $location{'6982'} = 'HOLMEDAL';
3686$borough_number{'6983'} = '1428'; $type{'6983'} = 'STBX'; $location{'6983'} = 'KVAMMEN';
3687$borough_number{'6984'} = '1428'; $type{'6984'} = 'ST'; $location{'6984'} = 'STONGFJORDEN';
3688$borough_number{'6985'} = '1428'; $type{'6985'} = 'STBX'; $location{'6985'} = 'ATL�Y';
3689$borough_number{'6986'} = '1428'; $type{'6986'} = 'ST'; $location{'6986'} = 'V�RLANDET';
3690$borough_number{'6987'} = '1428'; $type{'6987'} = 'ST'; $location{'6987'} = 'BULANDET';
3691$borough_number{'6988'} = '1428'; $type{'6988'} = 'BX'; $location{'6988'} = 'ASKVOLL';
3692$borough_number{'6991'} = '1416'; $type{'6991'} = 'BX'; $location{'6991'} = 'H�YANGER';
3693$borough_number{'6993'} = '1416'; $type{'6993'} = 'ST'; $location{'6993'} = 'H�YANGER';
3694$borough_number{'6995'} = '1416'; $type{'6995'} = 'ST'; $location{'6995'} = 'KYRKJEB�';
3695$borough_number{'6996'} = '1416'; $type{'6996'} = 'STBX'; $location{'6996'} = 'VADHEIM';
3696$borough_number{'7003'} = '1601'; $type{'7003'} = 'IO'; $location{'7003'} = 'TRONDHEIM';
3697$borough_number{'7004'} = '1601'; $type{'7004'} = 'SX'; $location{'7004'} = 'TRONDHEIM';
3698$borough_number{'7005'} = '1601'; $type{'7005'} = 'SX'; $location{'7005'} = 'TRONDHEIM';
3699$borough_number{'7006'} = '1601'; $type{'7006'} = 'IO'; $location{'7006'} = 'TRONDHEIM';
3700$borough_number{'7007'} = '1601'; $type{'7007'} = 'IO'; $location{'7007'} = 'TRONDHEIM';
3701$borough_number{'7010'} = '1601'; $type{'7010'} = 'ST'; $location{'7010'} = 'TRONDHEIM';
3702$borough_number{'7011'} = '1601'; $type{'7011'} = 'ST'; $location{'7011'} = 'TRONDHEIM';
3703$borough_number{'7012'} = '1601'; $type{'7012'} = 'ST'; $location{'7012'} = 'TRONDHEIM';
3704$borough_number{'7013'} = '1601'; $type{'7013'} = 'ST'; $location{'7013'} = 'TRONDHEIM';
3705$borough_number{'7014'} = '1601'; $type{'7014'} = 'STBX'; $location{'7014'} = 'TRONDHEIM';
3706$borough_number{'7015'} = '1601'; $type{'7015'} = 'ST'; $location{'7015'} = 'TRONDHEIM';
3707$borough_number{'7016'} = '1601'; $type{'7016'} = 'ST'; $location{'7016'} = 'TRONDHEIM';
3708$borough_number{'7018'} = '1601'; $type{'7018'} = 'STBX'; $location{'7018'} = 'TRONDHEIM';
3709$borough_number{'7019'} = '1601'; $type{'7019'} = 'ST'; $location{'7019'} = 'TRONDHEIM';
3710$borough_number{'7020'} = '1601'; $type{'7020'} = 'ST'; $location{'7020'} = 'TRONDHEIM';
3711$borough_number{'7021'} = '1601'; $type{'7021'} = 'ST'; $location{'7021'} = 'TRONDHEIM';
3712$borough_number{'7022'} = '1601'; $type{'7022'} = 'ST'; $location{'7022'} = 'TRONDHEIM';
3713$borough_number{'7023'} = '1601'; $type{'7023'} = 'ST'; $location{'7023'} = 'TRONDHEIM';
3714$borough_number{'7024'} = '1601'; $type{'7024'} = 'ST'; $location{'7024'} = 'TRONDHEIM';
3715$borough_number{'7025'} = '1601'; $type{'7025'} = 'STBX'; $location{'7025'} = 'TRONDHEIM';
3716$borough_number{'7026'} = '1601'; $type{'7026'} = 'ST'; $location{'7026'} = 'TRONDHEIM';
3717$borough_number{'7027'} = '1601'; $type{'7027'} = 'ST'; $location{'7027'} = 'TRONDHEIM';
3718$borough_number{'7028'} = '1601'; $type{'7028'} = 'ST'; $location{'7028'} = 'TRONDHEIM';
3719$borough_number{'7029'} = '1601'; $type{'7029'} = 'ST'; $location{'7029'} = 'TRONDHEIM';
3720$borough_number{'7030'} = '1601'; $type{'7030'} = 'ST'; $location{'7030'} = 'TRONDHEIM';
3721$borough_number{'7031'} = '1601'; $type{'7031'} = 'STBX'; $location{'7031'} = 'TRONDHEIM';
3722$borough_number{'7032'} = '1601'; $type{'7032'} = 'ST'; $location{'7032'} = 'TRONDHEIM';
3723$borough_number{'7033'} = '1601'; $type{'7033'} = 'ST'; $location{'7033'} = 'TRONDHEIM';
3724$borough_number{'7034'} = '1601'; $type{'7034'} = 'ST'; $location{'7034'} = 'TRONDHEIM';
3725$borough_number{'7036'} = '1601'; $type{'7036'} = 'STBX'; $location{'7036'} = 'TRONDHEIM';
3726$borough_number{'7037'} = '1601'; $type{'7037'} = 'STBX'; $location{'7037'} = 'TRONDHEIM';
3727$borough_number{'7038'} = '1601'; $type{'7038'} = 'ST'; $location{'7038'} = 'TRONDHEIM';
3728$borough_number{'7039'} = '1601'; $type{'7039'} = 'STBX'; $location{'7039'} = 'TRONDHEIM';
3729$borough_number{'7040'} = '1601'; $type{'7040'} = 'ST'; $location{'7040'} = 'TRONDHEIM';
3730$borough_number{'7041'} = '1601'; $type{'7041'} = 'ST'; $location{'7041'} = 'TRONDHEIM';
3731$borough_number{'7042'} = '1601'; $type{'7042'} = 'ST'; $location{'7042'} = 'TRONDHEIM';
3732$borough_number{'7043'} = '1601'; $type{'7043'} = 'ST'; $location{'7043'} = 'TRONDHEIM';
3733$borough_number{'7044'} = '1601'; $type{'7044'} = 'ST'; $location{'7044'} = 'TRONDHEIM';
3734$borough_number{'7045'} = '1601'; $type{'7045'} = 'STBX'; $location{'7045'} = 'TRONDHEIM';
3735$borough_number{'7046'} = '1601'; $type{'7046'} = 'ST'; $location{'7046'} = 'TRONDHEIM';
3736$borough_number{'7047'} = '1601'; $type{'7047'} = 'ST'; $location{'7047'} = 'TRONDHEIM';
3737$borough_number{'7048'} = '1601'; $type{'7048'} = 'ST'; $location{'7048'} = 'TRONDHEIM';
3738$borough_number{'7049'} = '1601'; $type{'7049'} = 'ST'; $location{'7049'} = 'TRONDHEIM';
3739$borough_number{'7050'} = '1601'; $type{'7050'} = 'ST'; $location{'7050'} = 'TRONDHEIM';
3740$borough_number{'7051'} = '1601'; $type{'7051'} = 'STBX'; $location{'7051'} = 'TRONDHEIM';
3741$borough_number{'7052'} = '1601'; $type{'7052'} = 'STBX'; $location{'7052'} = 'TRONDHEIM';
3742$borough_number{'7053'} = '1601'; $type{'7053'} = 'ST'; $location{'7053'} = 'RANHEIM';
3743$borough_number{'7054'} = '1601'; $type{'7054'} = 'ST'; $location{'7054'} = 'RANHEIM';
3744$borough_number{'7056'} = '1601'; $type{'7056'} = 'ST'; $location{'7056'} = 'RANHEIM';
3745$borough_number{'7057'} = '1601'; $type{'7057'} = 'ST'; $location{'7057'} = 'JONSVATNET';
3746$borough_number{'7058'} = '1601'; $type{'7058'} = 'ST'; $location{'7058'} = 'JAKOBSLI';
3747$borough_number{'7059'} = '1601'; $type{'7059'} = 'ST'; $location{'7059'} = 'JAKOBSLI';
3748$borough_number{'7070'} = '1601'; $type{'7070'} = 'STBX'; $location{'7070'} = 'BOSBERG';
3749$borough_number{'7072'} = '1601'; $type{'7072'} = 'ST'; $location{'7072'} = 'HEIMDAL';
3750$borough_number{'7074'} = '1601'; $type{'7074'} = 'STBX'; $location{'7074'} = 'SPONGDAL';
3751$borough_number{'7075'} = '1601'; $type{'7075'} = 'ST'; $location{'7075'} = 'TILLER';
3752$borough_number{'7078'} = '1601'; $type{'7078'} = 'ST'; $location{'7078'} = 'SAUPSTAD';
3753$borough_number{'7079'} = '1601'; $type{'7079'} = 'ST'; $location{'7079'} = 'FLAT�SEN';
3754$borough_number{'7080'} = '1601'; $type{'7080'} = 'ST'; $location{'7080'} = 'HEIMDAL';
3755$borough_number{'7081'} = '1601'; $type{'7081'} = 'STBX'; $location{'7081'} = 'SJETNEMARKA';
3756$borough_number{'7082'} = '1601'; $type{'7082'} = 'STBX'; $location{'7082'} = 'KATTEM';
3757$borough_number{'7083'} = '1601'; $type{'7083'} = 'STBX'; $location{'7083'} = 'LEINSTRAND';
3758$borough_number{'7088'} = '1601'; $type{'7088'} = 'ST'; $location{'7088'} = 'HEIMDAL';
3759$borough_number{'7089'} = '1601'; $type{'7089'} = 'ST'; $location{'7089'} = 'HEIMDAL';
3760$borough_number{'7091'} = '1601'; $type{'7091'} = 'STBX'; $location{'7091'} = 'TILLER';
3761$borough_number{'7092'} = '1601'; $type{'7092'} = 'ST'; $location{'7092'} = 'TILLER';
3762$borough_number{'7097'} = '1601'; $type{'7097'} = 'ST'; $location{'7097'} = 'SAUPSTAD';
3763$borough_number{'7098'} = '1601'; $type{'7098'} = 'ST'; $location{'7098'} = 'SAUPSTAD';
3764$borough_number{'7099'} = '1601'; $type{'7099'} = 'ST'; $location{'7099'} = 'FLAT�SEN';
3765$borough_number{'7100'} = '1624'; $type{'7100'} = 'ST'; $location{'7100'} = 'RISSA';
3766$borough_number{'7101'} = '1624'; $type{'7101'} = 'BX'; $location{'7101'} = 'RISSA';
3767$borough_number{'7105'} = '1624'; $type{'7105'} = 'ST'; $location{'7105'} = 'STADSBYGD';
3768$borough_number{'7110'} = '1624'; $type{'7110'} = 'STBX'; $location{'7110'} = 'FEV�G';
3769$borough_number{'7112'} = '1624'; $type{'7112'} = 'STBX'; $location{'7112'} = 'HASSELVIKA';
3770$borough_number{'7113'} = '1624'; $type{'7113'} = 'STBX'; $location{'7113'} = 'HUSBYSJ�EN';
3771$borough_number{'7114'} = '1624'; $type{'7114'} = 'STBX'; $location{'7114'} = 'R�KV�G';
3772$borough_number{'7119'} = '1624'; $type{'7119'} = 'BX'; $location{'7119'} = 'STADSBYGD';
3773$borough_number{'7120'} = '1718'; $type{'7120'} = 'ST'; $location{'7120'} = 'LEKSVIK';
3774$borough_number{'7121'} = '1718'; $type{'7121'} = 'BX'; $location{'7121'} = 'LEKSVIK';
3775$borough_number{'7125'} = '1718'; $type{'7125'} = 'ST'; $location{'7125'} = 'VANVIKAN';
3776$borough_number{'7126'} = '1718'; $type{'7126'} = 'BX'; $location{'7126'} = 'VANVIKAN';
3777$borough_number{'7127'} = '1621'; $type{'7127'} = 'BX'; $location{'7127'} = 'OPPHAUG';
3778$borough_number{'7128'} = '1621'; $type{'7128'} = 'BX'; $location{'7128'} = 'UTHAUG';
3779$borough_number{'7129'} = '1621'; $type{'7129'} = 'BX'; $location{'7129'} = 'BREKSTAD';
3780$borough_number{'7130'} = '1621'; $type{'7130'} = 'ST'; $location{'7130'} = 'BREKSTAD';
3781$borough_number{'7140'} = '1621'; $type{'7140'} = 'ST'; $location{'7140'} = 'OPPHAUG';
3782$borough_number{'7142'} = '1621'; $type{'7142'} = 'ST'; $location{'7142'} = 'UTHAUG';
3783$borough_number{'7150'} = '1621'; $type{'7150'} = 'STBX'; $location{'7150'} = 'STORFOSNA';
3784$borough_number{'7152'} = '1621'; $type{'7152'} = 'ST'; $location{'7152'} = 'KR�KV�G';
3785$borough_number{'7153'} = '1621'; $type{'7153'} = 'ST'; $location{'7153'} = 'GARTEN';
3786$borough_number{'7156'} = '1622'; $type{'7156'} = 'ST'; $location{'7156'} = 'LEKSA';
3787$borough_number{'7159'} = '1627'; $type{'7159'} = 'BX'; $location{'7159'} = 'BJUGN';
3788$borough_number{'7160'} = '1627'; $type{'7160'} = 'ST'; $location{'7160'} = 'BJUGN';
3789$borough_number{'7165'} = '1627'; $type{'7165'} = 'ST'; $location{'7165'} = 'OKSVOLL';
3790$borough_number{'7166'} = '1627'; $type{'7166'} = 'ST'; $location{'7166'} = 'TARVA';
3791$borough_number{'7167'} = '1627'; $type{'7167'} = 'ST'; $location{'7167'} = 'VALLERSUND';
3792$borough_number{'7168'} = '1627'; $type{'7168'} = 'STBX'; $location{'7168'} = 'LYS�YSUNDET';
3793$borough_number{'7169'} = '1630'; $type{'7169'} = 'BX'; $location{'7169'} = '�FJORD';
3794$borough_number{'7170'} = '1630'; $type{'7170'} = 'STBX'; $location{'7170'} = '�FJORD';
3795$borough_number{'7176'} = '1630'; $type{'7176'} = 'ST'; $location{'7176'} = 'LINES�YA';
3796$borough_number{'7177'} = '1630'; $type{'7177'} = 'STBX'; $location{'7177'} = 'REVSNES';
3797$borough_number{'7178'} = '1630'; $type{'7178'} = 'STBX'; $location{'7178'} = 'STOKK�Y';
3798$borough_number{'7180'} = '1632'; $type{'7180'} = 'STBX'; $location{'7180'} = 'ROAN';
3799$borough_number{'7190'} = '1632'; $type{'7190'} = 'STBX'; $location{'7190'} = 'BESSAKER';
3800$borough_number{'7194'} = '1632'; $type{'7194'} = 'STBX'; $location{'7194'} = 'BRANDSFJORD';
3801$borough_number{'7200'} = '1612'; $type{'7200'} = 'ST'; $location{'7200'} = 'KYRKS�TER�RA';
3802$borough_number{'7201'} = '1612'; $type{'7201'} = 'BX'; $location{'7201'} = 'KYRKS�TER�RA';
3803$borough_number{'7203'} = '1612'; $type{'7203'} = 'ST'; $location{'7203'} = 'VINJE�RA';
3804$borough_number{'7206'} = '1612'; $type{'7206'} = 'ST'; $location{'7206'} = 'HELLANDSJ�EN';
3805$borough_number{'7211'} = '1653'; $type{'7211'} = 'BX'; $location{'7211'} = 'KORSVEGEN';
3806$borough_number{'7212'} = '1653'; $type{'7212'} = 'ST'; $location{'7212'} = 'KORSVEGEN';
3807$borough_number{'7213'} = '1653'; $type{'7213'} = 'ST'; $location{'7213'} = 'G�SBAKKEN';
3808$borough_number{'7221'} = '1653'; $type{'7221'} = 'BX'; $location{'7221'} = 'MELHUS';
3809$borough_number{'7223'} = '1653'; $type{'7223'} = 'BX'; $location{'7223'} = 'MELHUS';
3810$borough_number{'7224'} = '1653'; $type{'7224'} = 'ST'; $location{'7224'} = 'MELHUS';
3811$borough_number{'7227'} = '1653'; $type{'7227'} = 'ST'; $location{'7227'} = 'GIMSE';
3812$borough_number{'7228'} = '1653'; $type{'7228'} = 'ST'; $location{'7228'} = 'KV�L';
3813$borough_number{'7231'} = '1653'; $type{'7231'} = 'BX'; $location{'7231'} = 'LUNDAMO';
3814$borough_number{'7232'} = '1653'; $type{'7232'} = 'ST'; $location{'7232'} = 'LUNDAMO';
3815$borough_number{'7234'} = '1653'; $type{'7234'} = 'ST'; $location{'7234'} = 'LER';
3816$borough_number{'7235'} = '1653'; $type{'7235'} = 'BX'; $location{'7235'} = 'LER';
3817$borough_number{'7236'} = '1653'; $type{'7236'} = 'ST'; $location{'7236'} = 'HOVIN I GAULDAL';
3818$borough_number{'7238'} = '1653'; $type{'7238'} = 'BX'; $location{'7238'} = 'HOVIN I GAULDAL';
3819$borough_number{'7239'} = '1617'; $type{'7239'} = 'BX'; $location{'7239'} = 'HITRA';
3820$borough_number{'7240'} = '1617'; $type{'7240'} = 'ST'; $location{'7240'} = 'HITRA';
3821$borough_number{'7241'} = '1617'; $type{'7241'} = 'ST'; $location{'7241'} = 'ANSNES';
3822$borough_number{'7242'} = '1617'; $type{'7242'} = 'STBX'; $location{'7242'} = 'KNARRLAGSUND';
3823$borough_number{'7243'} = '1617'; $type{'7243'} = 'STBX'; $location{'7243'} = 'KVENV�R';
3824$borough_number{'7246'} = '1617'; $type{'7246'} = 'ST'; $location{'7246'} = 'SANDSTAD';
3825$borough_number{'7247'} = '1617'; $type{'7247'} = 'ST'; $location{'7247'} = 'HESTVIKA';
3826$borough_number{'7250'} = '1617'; $type{'7250'} = 'ST'; $location{'7250'} = 'MELANDSJ�';
3827$borough_number{'7252'} = '1617'; $type{'7252'} = 'ST'; $location{'7252'} = 'DOLM�Y';
3828$borough_number{'7255'} = '1613'; $type{'7255'} = 'ST'; $location{'7255'} = 'SUNDLANDET';
3829$borough_number{'7256'} = '1613'; $type{'7256'} = 'ST'; $location{'7256'} = 'HEMNSKJELA';
3830$borough_number{'7257'} = '1613'; $type{'7257'} = 'ST'; $location{'7257'} = 'SNILLFJORD';
3831$borough_number{'7259'} = '1613'; $type{'7259'} = 'BX'; $location{'7259'} = 'SNILLFJORD';
3832$borough_number{'7260'} = '1620'; $type{'7260'} = 'ST'; $location{'7260'} = 'SISTRANDA';
3833$borough_number{'7261'} = '1620'; $type{'7261'} = 'BX'; $location{'7261'} = 'SISTRANDA';
3834$borough_number{'7263'} = '1620'; $type{'7263'} = 'ST'; $location{'7263'} = 'HAMARVIK';
3835$borough_number{'7264'} = '1620'; $type{'7264'} = 'BX'; $location{'7264'} = 'HAMARVIK';
3836$borough_number{'7266'} = '1620'; $type{'7266'} = 'ST'; $location{'7266'} = 'KVERVA';
3837$borough_number{'7268'} = '1620'; $type{'7268'} = 'ST'; $location{'7268'} = 'TITRAN';
3838$borough_number{'7270'} = '1620'; $type{'7270'} = 'ST'; $location{'7270'} = 'DYRVIK';
3839$borough_number{'7273'} = '1620'; $type{'7273'} = 'STBX'; $location{'7273'} = 'NORDDYR�Y';
3840$borough_number{'7280'} = '1620'; $type{'7280'} = 'STBX'; $location{'7280'} = 'SULA';
3841$borough_number{'7282'} = '1620'; $type{'7282'} = 'ST'; $location{'7282'} = 'BOG�YV�R';
3842$borough_number{'7284'} = '1620'; $type{'7284'} = 'STBX'; $location{'7284'} = 'MAUSUND';
3843$borough_number{'7285'} = '1620'; $type{'7285'} = 'ST'; $location{'7285'} = 'GJ�SINGEN';
3844$borough_number{'7286'} = '1620'; $type{'7286'} = 'ST'; $location{'7286'} = 'S�RBUR�Y';
3845$borough_number{'7287'} = '1620'; $type{'7287'} = 'ST'; $location{'7287'} = 'SAU�Y';
3846$borough_number{'7288'} = '1648'; $type{'7288'} = 'ST'; $location{'7288'} = 'SOKNEDAL';
3847$borough_number{'7289'} = '1648'; $type{'7289'} = 'BX'; $location{'7289'} = 'SOKNEDAL';
3848$borough_number{'7290'} = '1648'; $type{'7290'} = 'ST'; $location{'7290'} = 'ST�REN';
3849$borough_number{'7291'} = '1648'; $type{'7291'} = 'BX'; $location{'7291'} = 'ST�REN';
3850$borough_number{'7295'} = '1648'; $type{'7295'} = 'ST'; $location{'7295'} = 'ROGNES';
3851$borough_number{'7298'} = '1648'; $type{'7298'} = 'ST'; $location{'7298'} = 'BUDALEN';
3852$borough_number{'7300'} = '1638'; $type{'7300'} = 'ST'; $location{'7300'} = 'ORKANGER';
3853$borough_number{'7301'} = '1638'; $type{'7301'} = 'BX'; $location{'7301'} = 'ORKANGER';
3854$borough_number{'7302'} = '1638'; $type{'7302'} = 'BX'; $location{'7302'} = 'ORKANGER';
3855$borough_number{'7310'} = '1638'; $type{'7310'} = 'ST'; $location{'7310'} = 'GJ�LME';
3856$borough_number{'7315'} = '1622'; $type{'7315'} = 'BX'; $location{'7315'} = 'LENSVIK';
3857$borough_number{'7316'} = '1622'; $type{'7316'} = 'ST'; $location{'7316'} = 'LENSVIK';
3858$borough_number{'7318'} = '1622'; $type{'7318'} = 'ST'; $location{'7318'} = 'AGDENES';
3859$borough_number{'7319'} = '1622'; $type{'7319'} = 'BX'; $location{'7319'} = 'AGDENES';
3860$borough_number{'7320'} = '1638'; $type{'7320'} = 'ST'; $location{'7320'} = 'FANNREM';
3861$borough_number{'7321'} = '1638'; $type{'7321'} = 'BX'; $location{'7321'} = 'FANNREM';
3862$borough_number{'7327'} = '1638'; $type{'7327'} = 'ST'; $location{'7327'} = 'SVORKMO';
3863$borough_number{'7329'} = '1638'; $type{'7329'} = 'BX'; $location{'7329'} = 'SVORKMO';
3864$borough_number{'7331'} = '1636'; $type{'7331'} = 'BX'; $location{'7331'} = 'L�KKEN VERK';
3865$borough_number{'7332'} = '1636'; $type{'7332'} = 'ST'; $location{'7332'} = 'L�KKEN VERK';
3866$borough_number{'7333'} = '1636'; $type{'7333'} = 'BX'; $location{'7333'} = 'STOR�S';
3867$borough_number{'7334'} = '1636'; $type{'7334'} = 'ST'; $location{'7334'} = 'STOR�S';
3868$borough_number{'7335'} = '1636'; $type{'7335'} = 'ST'; $location{'7335'} = 'JERPSTAD';
3869$borough_number{'7336'} = '1636'; $type{'7336'} = 'ST'; $location{'7336'} = 'MELDAL';
3870$borough_number{'7338'} = '1636'; $type{'7338'} = 'BX'; $location{'7338'} = 'MELDAL';
3871$borough_number{'7340'} = '1634'; $type{'7340'} = 'ST'; $location{'7340'} = 'OPPDAL';
3872$borough_number{'7341'} = '1634'; $type{'7341'} = 'BX'; $location{'7341'} = 'OPPDAL';
3873$borough_number{'7342'} = '1634'; $type{'7342'} = 'ST'; $location{'7342'} = 'L�NSET';
3874$borough_number{'7343'} = '1634'; $type{'7343'} = 'ST'; $location{'7343'} = 'VOGNILL';
3875$borough_number{'7345'} = '1634'; $type{'7345'} = 'ST'; $location{'7345'} = 'DRIVA';
3876$borough_number{'7350'} = '1657'; $type{'7350'} = 'ST'; $location{'7350'} = 'BUVIKA';
3877$borough_number{'7351'} = '1657'; $type{'7351'} = 'BX'; $location{'7351'} = 'BUVIKA';
3878$borough_number{'7353'} = '1657'; $type{'7353'} = 'ST'; $location{'7353'} = 'B�RSA';
3879$borough_number{'7354'} = '1657'; $type{'7354'} = 'ST'; $location{'7354'} = 'VIGGJA';
3880$borough_number{'7355'} = '1657'; $type{'7355'} = 'ST'; $location{'7355'} = 'EGGKLEIVA';
3881$borough_number{'7357'} = '1657'; $type{'7357'} = 'STBX'; $location{'7357'} = 'SKAUN';
3882$borough_number{'7358'} = '1657'; $type{'7358'} = 'BX'; $location{'7358'} = 'B�RSA';
3883$borough_number{'7361'} = '1640'; $type{'7361'} = 'BX'; $location{'7361'} = 'R�ROS';
3884$borough_number{'7366'} = '1640'; $type{'7366'} = 'SX'; $location{'7366'} = 'R�ROS';
3885$borough_number{'7370'} = '1640'; $type{'7370'} = 'ST'; $location{'7370'} = 'BREKKEBYGD';
3886$borough_number{'7372'} = '1640'; $type{'7372'} = 'ST'; $location{'7372'} = 'GL�MOS';
3887$borough_number{'7374'} = '1640'; $type{'7374'} = 'ST'; $location{'7374'} = 'R�ROS';
3888$borough_number{'7380'} = '1644'; $type{'7380'} = 'ST'; $location{'7380'} = '�LEN';
3889$borough_number{'7383'} = '1644'; $type{'7383'} = 'ST'; $location{'7383'} = 'HALTDALEN';
3890$borough_number{'7384'} = '1644'; $type{'7384'} = 'BX'; $location{'7384'} = '�LEN';
3891$borough_number{'7386'} = '1648'; $type{'7386'} = 'BX'; $location{'7386'} = 'SINGS�S';
3892$borough_number{'7387'} = '1648'; $type{'7387'} = 'STBX'; $location{'7387'} = 'SINGS�S';
3893$borough_number{'7391'} = '1635'; $type{'7391'} = 'ST'; $location{'7391'} = 'RENNEBU';
3894$borough_number{'7392'} = '1635'; $type{'7392'} = 'ST'; $location{'7392'} = 'RENNEBU';
3895$borough_number{'7393'} = '1635'; $type{'7393'} = 'ST'; $location{'7393'} = 'RENNEBU';
3896$borough_number{'7397'} = '1635'; $type{'7397'} = 'ST'; $location{'7397'} = 'RENNEBU';
3897$borough_number{'7398'} = '1635'; $type{'7398'} = 'ST'; $location{'7398'} = 'RENNEBU';
3898$borough_number{'7399'} = '1635'; $type{'7399'} = 'BX'; $location{'7399'} = 'RENNEBU';
3899$borough_number{'7400'} = '1601'; $type{'7400'} = 'BX'; $location{'7400'} = 'TRONDHEIM';
3900$borough_number{'7401'} = '1601'; $type{'7401'} = 'BX'; $location{'7401'} = 'TRONDHEIM';
3901$borough_number{'7402'} = '1601'; $type{'7402'} = 'BX'; $location{'7402'} = 'TRONDHEIM';
3902$borough_number{'7403'} = '1601'; $type{'7403'} = 'BX'; $location{'7403'} = 'TRONDHEIM';
3903$borough_number{'7404'} = '1601'; $type{'7404'} = 'BX'; $location{'7404'} = 'TRONDHEIM';
3904$borough_number{'7405'} = '1601'; $type{'7405'} = 'BX'; $location{'7405'} = 'TRONDHEIM';
3905$borough_number{'7406'} = '1601'; $type{'7406'} = 'BX'; $location{'7406'} = 'TRONDHEIM';
3906$borough_number{'7407'} = '1601'; $type{'7407'} = 'BX'; $location{'7407'} = 'TRONDHEIM';
3907$borough_number{'7408'} = '1601'; $type{'7408'} = 'BX'; $location{'7408'} = 'TRONDHEIM';
3908$borough_number{'7409'} = '1601'; $type{'7409'} = 'BX'; $location{'7409'} = 'TRONDHEIM';
3909$borough_number{'7410'} = '1601'; $type{'7410'} = 'BX'; $location{'7410'} = 'TRONDHEIM';
3910$borough_number{'7411'} = '1601'; $type{'7411'} = 'BX'; $location{'7411'} = 'TRONDHEIM';
3911$borough_number{'7412'} = '1601'; $type{'7412'} = 'BX'; $location{'7412'} = 'TRONDHEIM';
3912$borough_number{'7413'} = '1601'; $type{'7413'} = 'BX'; $location{'7413'} = 'TRONDHEIM';
3913$borough_number{'7414'} = '1601'; $type{'7414'} = 'BX'; $location{'7414'} = 'TRONDHEIM';
3914$borough_number{'7415'} = '1601'; $type{'7415'} = 'BX'; $location{'7415'} = 'TRONDHEIM';
3915$borough_number{'7416'} = '1601'; $type{'7416'} = 'BX'; $location{'7416'} = 'TRONDHEIM';
3916$borough_number{'7417'} = '1601'; $type{'7417'} = 'BX'; $location{'7417'} = 'TRONDHEIM';
3917$borough_number{'7418'} = '1601'; $type{'7418'} = 'BX'; $location{'7418'} = 'TRONDHEIM';
3918$borough_number{'7419'} = '1601'; $type{'7419'} = 'BX'; $location{'7419'} = 'TRONDHEIM';
3919$borough_number{'7420'} = '1601'; $type{'7420'} = 'BX'; $location{'7420'} = 'TRONDHEIM';
3920$borough_number{'7421'} = '1601'; $type{'7421'} = 'BX'; $location{'7421'} = 'TRONDHEIM';
3921$borough_number{'7423'} = '1601'; $type{'7423'} = 'BX'; $location{'7423'} = 'TRONDHEIM';
3922$borough_number{'7424'} = '1601'; $type{'7424'} = 'BX'; $location{'7424'} = 'TRONDHEIM';
3923$borough_number{'7425'} = '1601'; $type{'7425'} = 'BX'; $location{'7425'} = 'TRONDHEIM';
3924$borough_number{'7426'} = '1601'; $type{'7426'} = 'BX'; $location{'7426'} = 'TRONDHEIM';
3925$borough_number{'7427'} = '1601'; $type{'7427'} = 'BX'; $location{'7427'} = 'TRONDHEIM';
3926$borough_number{'7428'} = '1601'; $type{'7428'} = 'BX'; $location{'7428'} = 'TRONDHEIM';
3927$borough_number{'7429'} = '1601'; $type{'7429'} = 'BX'; $location{'7429'} = 'TRONDHEIM';
3928$borough_number{'7430'} = '1601'; $type{'7430'} = 'BX'; $location{'7430'} = 'TRONDHEIM';
3929$borough_number{'7431'} = '1601'; $type{'7431'} = 'BX'; $location{'7431'} = 'TRONDHEIM';
3930$borough_number{'7432'} = '1601'; $type{'7432'} = 'BX'; $location{'7432'} = 'TRONDHEIM';
3931$borough_number{'7433'} = '1601'; $type{'7433'} = 'BX'; $location{'7433'} = 'TRONDHEIM';
3932$borough_number{'7434'} = '1601'; $type{'7434'} = 'BX'; $location{'7434'} = 'TRONDHEIM';
3933$borough_number{'7435'} = '1601'; $type{'7435'} = 'BX'; $location{'7435'} = 'TRONDHEIM';
3934$borough_number{'7436'} = '1601'; $type{'7436'} = 'BX'; $location{'7436'} = 'TRONDHEIM';
3935$borough_number{'7437'} = '1601'; $type{'7437'} = 'BX'; $location{'7437'} = 'TRONDHEIM';
3936$borough_number{'7438'} = '1601'; $type{'7438'} = 'BX'; $location{'7438'} = 'TRONDHEIM';
3937$borough_number{'7439'} = '1601'; $type{'7439'} = 'BX'; $location{'7439'} = 'TRONDHEIM';
3938$borough_number{'7440'} = '1601'; $type{'7440'} = 'BX'; $location{'7440'} = 'TRONDHEIM';
3939$borough_number{'7441'} = '1601'; $type{'7441'} = 'BX'; $location{'7441'} = 'TRONDHEIM';
3940$borough_number{'7442'} = '1601'; $type{'7442'} = 'BX'; $location{'7442'} = 'TRONDHEIM';
3941$borough_number{'7443'} = '1601'; $type{'7443'} = 'BX'; $location{'7443'} = 'TRONDHEIM';
3942$borough_number{'7444'} = '1601'; $type{'7444'} = 'BX'; $location{'7444'} = 'TRONDHEIM';
3943$borough_number{'7445'} = '1601'; $type{'7445'} = 'BX'; $location{'7445'} = 'TRONDHEIM';
3944$borough_number{'7446'} = '1601'; $type{'7446'} = 'BX'; $location{'7446'} = 'TRONDHEIM';
3945$borough_number{'7447'} = '1601'; $type{'7447'} = 'BX'; $location{'7447'} = 'TRONDHEIM';
3946$borough_number{'7448'} = '1601'; $type{'7448'} = 'BX'; $location{'7448'} = 'TRONDHEIM';
3947$borough_number{'7449'} = '1601'; $type{'7449'} = 'BX'; $location{'7449'} = 'TRONDHEIM';
3948$borough_number{'7450'} = '1601'; $type{'7450'} = 'BX'; $location{'7450'} = 'TRONDHEIM';
3949$borough_number{'7451'} = '1601'; $type{'7451'} = 'BX'; $location{'7451'} = 'TRONDHEIM';
3950$borough_number{'7452'} = '1601'; $type{'7452'} = 'BX'; $location{'7452'} = 'TRONDHEIM';
3951$borough_number{'7453'} = '1601'; $type{'7453'} = 'BX'; $location{'7453'} = 'TRONDHEIM';
3952$borough_number{'7456'} = '1601'; $type{'7456'} = 'BX'; $location{'7456'} = 'TRONDHEIM';
3953$borough_number{'7457'} = '1601'; $type{'7457'} = 'BX'; $location{'7457'} = 'TRONDHEIM';
3954$borough_number{'7458'} = '1601'; $type{'7458'} = 'BX'; $location{'7458'} = 'TRONDHEIM';
3955$borough_number{'7459'} = '1601'; $type{'7459'} = 'BX'; $location{'7459'} = 'TRONDHEIM';
3956$borough_number{'7462'} = '1601'; $type{'7462'} = 'SX'; $location{'7462'} = 'TRONDHEIM';
3957$borough_number{'7463'} = '1601'; $type{'7463'} = 'SX'; $location{'7463'} = 'TRONDHEIM';
3958$borough_number{'7464'} = '1601'; $type{'7464'} = 'IO'; $location{'7464'} = 'TRONDHEIM';
3959$borough_number{'7465'} = '1601'; $type{'7465'} = 'IO'; $location{'7465'} = 'TRONDHEIM';
3960$borough_number{'7466'} = '1601'; $type{'7466'} = 'IO'; $location{'7466'} = 'TRONDHEIM';
3961$borough_number{'7467'} = '1601'; $type{'7467'} = 'IO'; $location{'7467'} = 'TRONDHEIM';
3962$borough_number{'7468'} = '1601'; $type{'7468'} = 'IO'; $location{'7468'} = 'TRONDHEIM';
3963$borough_number{'7469'} = '1601'; $type{'7469'} = 'IO'; $location{'7469'} = 'TRONDHEIM';
3964$borough_number{'7472'} = '1601'; $type{'7472'} = 'BX'; $location{'7472'} = 'TRONDHEIM';
3965$borough_number{'7473'} = '1601'; $type{'7473'} = 'BX'; $location{'7473'} = 'TRONDHEIM';
3966$borough_number{'7474'} = '1601'; $type{'7474'} = 'BX'; $location{'7474'} = 'TRONDHEIM';
3967$borough_number{'7475'} = '1601'; $type{'7475'} = 'BX'; $location{'7475'} = 'TRONDHEIM';
3968$borough_number{'7476'} = '1601'; $type{'7476'} = 'BX'; $location{'7476'} = 'TRONDHEIM';
3969$borough_number{'7477'} = '1601'; $type{'7477'} = 'BX'; $location{'7477'} = 'TRONDHEIM';
3970$borough_number{'7478'} = '1601'; $type{'7478'} = 'BX'; $location{'7478'} = 'TRONDHEIM';
3971$borough_number{'7479'} = '1601'; $type{'7479'} = 'BX'; $location{'7479'} = 'TRONDHEIM';
3972$borough_number{'7481'} = '1601'; $type{'7481'} = 'BX'; $location{'7481'} = 'TRONDHEIM';
3973$borough_number{'7483'} = '1601'; $type{'7483'} = 'SX'; $location{'7483'} = 'TRONDHEIM';
3974$borough_number{'7484'} = '1601'; $type{'7484'} = 'SX'; $location{'7484'} = 'TRONDHEIM';
3975$borough_number{'7485'} = '1601'; $type{'7485'} = 'SX'; $location{'7485'} = 'TRONDHEIM';
3976$borough_number{'7486'} = '1601'; $type{'7486'} = 'SX'; $location{'7486'} = 'TRONDHEIM';
3977$borough_number{'7488'} = '1601'; $type{'7488'} = 'SX'; $location{'7488'} = 'TRONDHEIM';
3978$borough_number{'7489'} = '1601'; $type{'7489'} = 'SX'; $location{'7489'} = 'TRONDHEIM';
3979$borough_number{'7491'} = '1601'; $type{'7491'} = 'SX'; $location{'7491'} = 'TRONDHEIM';
3980$borough_number{'7492'} = '1601'; $type{'7492'} = 'SX'; $location{'7492'} = 'TRONDHEIM';
3981$borough_number{'7493'} = '1601'; $type{'7493'} = 'SX'; $location{'7493'} = 'TRONDHEIM';
3982$borough_number{'7495'} = '1601'; $type{'7495'} = 'SX'; $location{'7495'} = 'TRONDHEIM';
3983$borough_number{'7496'} = '1601'; $type{'7496'} = 'SX'; $location{'7496'} = 'TRONDHEIM';
3984$borough_number{'7498'} = '1601'; $type{'7498'} = 'SX'; $location{'7498'} = 'TRONDHEIM';
3985$borough_number{'7499'} = '1601'; $type{'7499'} = 'SX'; $location{'7499'} = 'TRONDHEIM';
3986$borough_number{'7500'} = '1714'; $type{'7500'} = 'ST'; $location{'7500'} = 'STJ�RDAL';
3987$borough_number{'7501'} = '1714'; $type{'7501'} = 'BX'; $location{'7501'} = 'STJ�RDAL';
3988$borough_number{'7506'} = '1714'; $type{'7506'} = 'SX'; $location{'7506'} = 'STJ�RDAL';
3989$borough_number{'7508'} = '1714'; $type{'7508'} = 'BX'; $location{'7508'} = 'STJ�RDAL';
3990$borough_number{'7510'} = '1714'; $type{'7510'} = 'STBX'; $location{'7510'} = 'SKATVAL';
3991$borough_number{'7517'} = '1714'; $type{'7517'} = 'ST'; $location{'7517'} = 'HELL';
3992$borough_number{'7519'} = '1714'; $type{'7519'} = 'ST'; $location{'7519'} = 'ELVARLI';
3993$borough_number{'7520'} = '1714'; $type{'7520'} = 'ST'; $location{'7520'} = 'HEGRA';
3994$borough_number{'7525'} = '1714'; $type{'7525'} = 'ST'; $location{'7525'} = 'FLORNES';
3995$borough_number{'7529'} = '1714'; $type{'7529'} = 'BX'; $location{'7529'} = 'HEGRA';
3996$borough_number{'7530'} = '1711'; $type{'7530'} = 'ST'; $location{'7530'} = 'MER�KER';
3997$borough_number{'7531'} = '1711'; $type{'7531'} = 'BX'; $location{'7531'} = 'MER�KER';
3998$borough_number{'7533'} = '1711'; $type{'7533'} = 'ST'; $location{'7533'} = 'KOPPER�';
3999$borough_number{'7540'} = '1662'; $type{'7540'} = 'ST'; $location{'7540'} = 'KL�BU';
4000$borough_number{'7541'} = '1662'; $type{'7541'} = 'BX'; $location{'7541'} = 'KL�BU';
4001$borough_number{'7549'} = '1662'; $type{'7549'} = 'ST'; $location{'7549'} = 'TANEM';
4002$borough_number{'7550'} = '1663'; $type{'7550'} = 'ST'; $location{'7550'} = 'HOMMELVIK';
4003$borough_number{'7551'} = '1663'; $type{'7551'} = 'BX'; $location{'7551'} = 'HOMMELVIK';
4004$borough_number{'7560'} = '1663'; $type{'7560'} = 'ST'; $location{'7560'} = 'VIKHAMMER';
4005$borough_number{'7562'} = '1663'; $type{'7562'} = 'ST'; $location{'7562'} = 'HUNDHAMAREN';
4006$borough_number{'7563'} = '1663'; $type{'7563'} = 'ST'; $location{'7563'} = 'MALVIK';
4007$borough_number{'7566'} = '1663'; $type{'7566'} = 'BX'; $location{'7566'} = 'VIKHAMMER';
4008$borough_number{'7570'} = '1714'; $type{'7570'} = 'BX'; $location{'7570'} = 'HELL';
4009$borough_number{'7580'} = '1664'; $type{'7580'} = 'ST'; $location{'7580'} = 'SELBU';
4010$borough_number{'7581'} = '1664'; $type{'7581'} = 'BX'; $location{'7581'} = 'SELBU';
4011$borough_number{'7583'} = '1664'; $type{'7583'} = 'BX'; $location{'7583'} = 'SELBU';
4012$borough_number{'7584'} = '1664'; $type{'7584'} = 'ST'; $location{'7584'} = 'SELBUSTRAND';
4013$borough_number{'7586'} = '1664'; $type{'7586'} = 'BX'; $location{'7586'} = 'SELBUSTRAND';
4014$borough_number{'7590'} = '1665'; $type{'7590'} = 'ST'; $location{'7590'} = 'TYDAL';
4015$borough_number{'7591'} = '1665'; $type{'7591'} = 'BX'; $location{'7591'} = 'TYDAL';
4016$borough_number{'7596'} = '1664'; $type{'7596'} = 'ST'; $location{'7596'} = 'FLAKNAN';
4017$borough_number{'7600'} = '1719'; $type{'7600'} = 'ST'; $location{'7600'} = 'LEVANGER';
4018$borough_number{'7601'} = '1719'; $type{'7601'} = 'BX'; $location{'7601'} = 'LEVANGER';
4019$borough_number{'7609'} = '1719'; $type{'7609'} = 'SX'; $location{'7609'} = 'LEVANGER';
4020$borough_number{'7610'} = '1719'; $type{'7610'} = 'BX'; $location{'7610'} = 'LEVANGER';
4021$borough_number{'7619'} = '1719'; $type{'7619'} = 'BX'; $location{'7619'} = 'SKOGN';
4022$borough_number{'7620'} = '1719'; $type{'7620'} = 'ST'; $location{'7620'} = 'SKOGN';
4023$borough_number{'7622'} = '1719'; $type{'7622'} = 'ST'; $location{'7622'} = 'MARKABYGDA';
4024$borough_number{'7623'} = '1719'; $type{'7623'} = 'ST'; $location{'7623'} = 'RONGLAN';
4025$borough_number{'7624'} = '1719'; $type{'7624'} = 'ST'; $location{'7624'} = 'EKNE';
4026$borough_number{'7629'} = '1719'; $type{'7629'} = 'ST'; $location{'7629'} = 'YTTER�Y';
4027$borough_number{'7630'} = '1719'; $type{'7630'} = 'ST'; $location{'7630'} = '�SEN';
4028$borough_number{'7631'} = '1719'; $type{'7631'} = 'BX'; $location{'7631'} = '�SEN';
4029$borough_number{'7632'} = '1719'; $type{'7632'} = 'ST'; $location{'7632'} = '�SENFJORD';
4030$borough_number{'7633'} = '1717'; $type{'7633'} = 'ST'; $location{'7633'} = 'FROSTA';
4031$borough_number{'7634'} = '1717'; $type{'7634'} = 'BX'; $location{'7634'} = 'FROSTA';
4032$borough_number{'7650'} = '1721'; $type{'7650'} = 'ST'; $location{'7650'} = 'VERDAL';
4033$borough_number{'7651'} = '1721'; $type{'7651'} = 'BX'; $location{'7651'} = 'VERDAL';
4034$borough_number{'7658'} = '1721'; $type{'7658'} = 'BX'; $location{'7658'} = 'VERDAL';
4035$borough_number{'7659'} = '1721'; $type{'7659'} = 'SX'; $location{'7659'} = 'VERDAL';
4036$borough_number{'7660'} = '1721'; $type{'7660'} = 'STBX'; $location{'7660'} = 'VUKU';
4037$borough_number{'7663'} = '1721'; $type{'7663'} = 'ST'; $location{'7663'} = 'STIKLESTAD';
4038$borough_number{'7670'} = '1729'; $type{'7670'} = 'ST'; $location{'7670'} = 'INDER�Y';
4039$borough_number{'7671'} = '1729'; $type{'7671'} = 'BX'; $location{'7671'} = 'INDER�Y';
4040$borough_number{'7690'} = '1723'; $type{'7690'} = 'STBX'; $location{'7690'} = 'MOSVIK';
4041$borough_number{'7701'} = '1702'; $type{'7701'} = 'BX'; $location{'7701'} = 'STEINKJER';
4042$borough_number{'7702'} = '1702'; $type{'7702'} = 'BX'; $location{'7702'} = 'STEINKJER';
4043$borough_number{'7703'} = '1702'; $type{'7703'} = 'BX'; $location{'7703'} = 'STEINKJER';
4044$borough_number{'7704'} = '1702'; $type{'7704'} = 'BX'; $location{'7704'} = 'STEINKJER';
4045$borough_number{'7705'} = '1702'; $type{'7705'} = 'BX'; $location{'7705'} = 'STEINKJER';
4046$borough_number{'7707'} = '1702'; $type{'7707'} = 'BX'; $location{'7707'} = 'STEINKJER';
4047$borough_number{'7708'} = '1702'; $type{'7708'} = 'BX'; $location{'7708'} = 'STEINKJER';
4048$borough_number{'7709'} = '1702'; $type{'7709'} = 'BX'; $location{'7709'} = 'STEINKJER';
4049$borough_number{'7710'} = '1702'; $type{'7710'} = 'STBX'; $location{'7710'} = 'SPARBU';
4050$borough_number{'7711'} = '1702'; $type{'7711'} = 'ST'; $location{'7711'} = 'STEINKJER';
4051$borough_number{'7712'} = '1702'; $type{'7712'} = 'ST'; $location{'7712'} = 'STEINKJER';
4052$borough_number{'7713'} = '1702'; $type{'7713'} = 'ST'; $location{'7713'} = 'STEINKJER';
4053$borough_number{'7715'} = '1702'; $type{'7715'} = 'ST'; $location{'7715'} = 'STEINKJER';
4054$borough_number{'7716'} = '1702'; $type{'7716'} = 'ST'; $location{'7716'} = 'STEINKJER';
4055$borough_number{'7717'} = '1702'; $type{'7717'} = 'ST'; $location{'7717'} = 'STEINKJER';
4056$borough_number{'7718'} = '1702'; $type{'7718'} = 'ST'; $location{'7718'} = 'STEINKJER';
4057$borough_number{'7724'} = '1702'; $type{'7724'} = 'ST'; $location{'7724'} = 'STEINKJER';
4058$borough_number{'7725'} = '1702'; $type{'7725'} = 'ST'; $location{'7725'} = 'STEINKJER';
4059$borough_number{'7726'} = '1702'; $type{'7726'} = 'BX'; $location{'7726'} = 'STEINKJER';
4060$borough_number{'7728'} = '1702'; $type{'7728'} = 'SX'; $location{'7728'} = 'STEINKJER';
4061$borough_number{'7729'} = '1702'; $type{'7729'} = 'SX'; $location{'7729'} = 'STEINKJER';
4062$borough_number{'7730'} = '1702'; $type{'7730'} = 'ST'; $location{'7730'} = 'BEITSTAD';
4063$borough_number{'7732'} = '1702'; $type{'7732'} = 'ST'; $location{'7732'} = 'STEINKJER';
4064$borough_number{'7734'} = '1702'; $type{'7734'} = 'IO'; $location{'7734'} = 'STEINKJER';
4065$borough_number{'7735'} = '1702'; $type{'7735'} = 'IO'; $location{'7735'} = 'STEINKJER';
4066$borough_number{'7736'} = '1702'; $type{'7736'} = 'IO'; $location{'7736'} = 'STEINKJER';
4067$borough_number{'7737'} = '1702'; $type{'7737'} = 'IO'; $location{'7737'} = 'STEINKJER';
4068$borough_number{'7738'} = '1702'; $type{'7738'} = 'IO'; $location{'7738'} = 'STEINKJER';
4069$borough_number{'7739'} = '1702'; $type{'7739'} = 'BX'; $location{'7739'} = 'BEITSTAD';
4070$borough_number{'7740'} = '1633'; $type{'7740'} = 'STBX'; $location{'7740'} = 'STEINSDALEN';
4071$borough_number{'7742'} = '1633'; $type{'7742'} = 'STBX'; $location{'7742'} = 'YTTERV�G';
4072$borough_number{'7744'} = '1633'; $type{'7744'} = 'ST'; $location{'7744'} = 'HEPS�Y';
4073$borough_number{'7745'} = '1749'; $type{'7745'} = 'ST'; $location{'7745'} = 'OPPLAND';
4074$borough_number{'7746'} = '1749'; $type{'7746'} = 'ST'; $location{'7746'} = 'HASV�G';
4075$borough_number{'7748'} = '1633'; $type{'7748'} = 'STBX'; $location{'7748'} = 'S�TERVIK';
4076$borough_number{'7750'} = '1725'; $type{'7750'} = 'ST'; $location{'7750'} = 'NAMDALSEID';
4077$borough_number{'7751'} = '1725'; $type{'7751'} = 'BX'; $location{'7751'} = 'NAMDALSEID';
4078$borough_number{'7760'} = '1736'; $type{'7760'} = 'ST'; $location{'7760'} = 'SN�SA';
4079$borough_number{'7761'} = '1736'; $type{'7761'} = 'BX'; $location{'7761'} = 'SN�SA';
4080$borough_number{'7770'} = '1749'; $type{'7770'} = 'ST'; $location{'7770'} = 'FLATANGER';
4081$borough_number{'7771'} = '1749'; $type{'7771'} = 'BX'; $location{'7771'} = 'FLATANGER';
4082$borough_number{'7777'} = '1725'; $type{'7777'} = 'STBX'; $location{'7777'} = 'NORD-STATLAND';
4083$borough_number{'7790'} = '1724'; $type{'7790'} = 'ST'; $location{'7790'} = 'MALM';
4084$borough_number{'7791'} = '1724'; $type{'7791'} = 'BX'; $location{'7791'} = 'MALM';
4085$borough_number{'7796'} = '1724'; $type{'7796'} = 'STBX'; $location{'7796'} = 'FOLLAFOSS';
4086$borough_number{'7797'} = '1724'; $type{'7797'} = 'ST'; $location{'7797'} = 'VERRABOTN';
4087$borough_number{'7800'} = '1703'; $type{'7800'} = 'ST'; $location{'7800'} = 'NAMSOS';
4088$borough_number{'7801'} = '1703'; $type{'7801'} = 'BX'; $location{'7801'} = 'NAMSOS';
4089$borough_number{'7808'} = '1703'; $type{'7808'} = 'BX'; $location{'7808'} = 'NAMSOS';
4090$borough_number{'7809'} = '1703'; $type{'7809'} = 'SX'; $location{'7809'} = 'NAMSOS';
4091$borough_number{'7817'} = '1748'; $type{'7817'} = 'ST'; $location{'7817'} = 'SALSNES';
4092$borough_number{'7818'} = '1751'; $type{'7818'} = 'ST'; $location{'7818'} = 'LUND';
4093$borough_number{'7819'} = '1703'; $type{'7819'} = 'ST'; $location{'7819'} = 'FOSSLANDSOSEN';
4094$borough_number{'7820'} = '1703'; $type{'7820'} = 'STBX'; $location{'7820'} = 'SPILLUM';
4095$borough_number{'7822'} = '1703'; $type{'7822'} = 'STBX'; $location{'7822'} = 'BANGSUND';
4096$borough_number{'7856'} = '1748'; $type{'7856'} = 'ST'; $location{'7856'} = 'J�A';
4097$borough_number{'7860'} = '1744'; $type{'7860'} = 'ST'; $location{'7860'} = 'SKAGE I NAMDALEN';
4098$borough_number{'7863'} = '1744'; $type{'7863'} = 'ST'; $location{'7863'} = 'OVERHALLA';
4099$borough_number{'7864'} = '1744'; $type{'7864'} = 'BX'; $location{'7864'} = 'OVERHALLA';
4100$borough_number{'7869'} = '1744'; $type{'7869'} = 'BX'; $location{'7869'} = 'SKAGE I NAMDALEN';
4101$borough_number{'7870'} = '1742'; $type{'7870'} = 'ST'; $location{'7870'} = 'GRONG';
4102$borough_number{'7871'} = '1742'; $type{'7871'} = 'BX'; $location{'7871'} = 'GRONG';
4103$borough_number{'7873'} = '1742'; $type{'7873'} = 'STBX'; $location{'7873'} = 'HARRAN';
4104$borough_number{'7882'} = '1738'; $type{'7882'} = 'STBX'; $location{'7882'} = 'NORDLI';
4105$borough_number{'7884'} = '1738'; $type{'7884'} = 'STBX'; $location{'7884'} = 'S�RLI';
4106$borough_number{'7890'} = '1740'; $type{'7890'} = 'STBX'; $location{'7890'} = 'NAMSSKOGAN';
4107$borough_number{'7892'} = '1740'; $type{'7892'} = 'STBX'; $location{'7892'} = 'TRONES';
4108$borough_number{'7893'} = '1740'; $type{'7893'} = 'ST'; $location{'7893'} = 'SKOROVATN';
4109$borough_number{'7896'} = '1740'; $type{'7896'} = 'ST'; $location{'7896'} = 'BREKKVASSELV';
4110$borough_number{'7898'} = '1739'; $type{'7898'} = 'STBX'; $location{'7898'} = 'LIMINGEN';
4111$borough_number{'7900'} = '1750'; $type{'7900'} = 'STBX'; $location{'7900'} = 'R�RVIK';
4112$borough_number{'7901'} = '1750'; $type{'7901'} = 'BX'; $location{'7901'} = 'R�RVIK';
4113$borough_number{'7940'} = '1751'; $type{'7940'} = 'STBX'; $location{'7940'} = 'OTTERS�Y';
4114$borough_number{'7944'} = '1751'; $type{'7944'} = 'ST'; $location{'7944'} = 'INDRE N�R�Y';
4115$borough_number{'7950'} = '1751'; $type{'7950'} = 'ST'; $location{'7950'} = 'ABELV�R';
4116$borough_number{'7960'} = '1751'; $type{'7960'} = 'ST'; $location{'7960'} = 'SALSBRUKET';
4117$borough_number{'7970'} = '1751'; $type{'7970'} = 'ST'; $location{'7970'} = 'KOLVEREID';
4118$borough_number{'7971'} = '1751'; $type{'7971'} = 'BX'; $location{'7971'} = 'KOLVEREID';
4119$borough_number{'7973'} = '1751'; $type{'7973'} = 'ST'; $location{'7973'} = 'GJERDINGA';
4120$borough_number{'7976'} = '1743'; $type{'7976'} = 'ST'; $location{'7976'} = 'KONGSMOEN';
4121$borough_number{'7977'} = '1743'; $type{'7977'} = 'STBX'; $location{'7977'} = 'H�YLANDET';
4122$borough_number{'7980'} = '1811'; $type{'7980'} = 'STBX'; $location{'7980'} = 'TERR�K';
4123$borough_number{'7981'} = '1811'; $type{'7981'} = 'ST'; $location{'7981'} = 'HARANGSFJORD';
4124$borough_number{'7982'} = '1811'; $type{'7982'} = 'STBX'; $location{'7982'} = 'BINDALSEIDET';
4125$borough_number{'7985'} = '1751'; $type{'7985'} = 'STBX'; $location{'7985'} = 'FOLDEREID';
4126$borough_number{'7990'} = '1751'; $type{'7990'} = 'ST'; $location{'7990'} = 'NAUSTBUKTA';
4127$borough_number{'7993'} = '1755'; $type{'7993'} = 'ST'; $location{'7993'} = 'GUTVIK';
4128$borough_number{'7994'} = '1755'; $type{'7994'} = 'STBX'; $location{'7994'} = 'LEKA';
4129$borough_number{'8001'} = '1804'; $type{'8001'} = 'BX'; $location{'8001'} = 'BOD�';
4130$borough_number{'8002'} = '1804'; $type{'8002'} = 'SX'; $location{'8002'} = 'BOD�';
4131$borough_number{'8003'} = '1804'; $type{'8003'} = 'ST'; $location{'8003'} = 'BOD�';
4132$borough_number{'8004'} = '1804'; $type{'8004'} = 'ST'; $location{'8004'} = 'BOD�';
4133$borough_number{'8005'} = '1804'; $type{'8005'} = 'ST'; $location{'8005'} = 'BOD�';
4134$borough_number{'8006'} = '1804'; $type{'8006'} = 'ST'; $location{'8006'} = 'BOD�';
4135$borough_number{'8007'} = '1804'; $type{'8007'} = 'ST'; $location{'8007'} = 'BOD�';
4136$borough_number{'8008'} = '1804'; $type{'8008'} = 'ST'; $location{'8008'} = 'BOD�';
4137$borough_number{'8009'} = '1804'; $type{'8009'} = 'ST'; $location{'8009'} = 'BOD�';
4138$borough_number{'8010'} = '1804'; $type{'8010'} = 'ST'; $location{'8010'} = 'BOD�';
4139$borough_number{'8011'} = '1804'; $type{'8011'} = 'ST'; $location{'8011'} = 'BOD�';
4140$borough_number{'8012'} = '1804'; $type{'8012'} = 'ST'; $location{'8012'} = 'BOD�';
4141$borough_number{'8013'} = '1804'; $type{'8013'} = 'ST'; $location{'8013'} = 'BOD�';
4142$borough_number{'8014'} = '1804'; $type{'8014'} = 'ST'; $location{'8014'} = 'BOD�';
4143$borough_number{'8015'} = '1804'; $type{'8015'} = 'ST'; $location{'8015'} = 'BOD�';
4144$borough_number{'8016'} = '1804'; $type{'8016'} = 'ST'; $location{'8016'} = 'BOD�';
4145$borough_number{'8019'} = '1804'; $type{'8019'} = 'ST'; $location{'8019'} = 'BOD�';
4146$borough_number{'8020'} = '1804'; $type{'8020'} = 'ST'; $location{'8020'} = 'BOD�';
4147$borough_number{'8021'} = '1804'; $type{'8021'} = 'ST'; $location{'8021'} = 'BOD�';
4148$borough_number{'8022'} = '1804'; $type{'8022'} = 'ST'; $location{'8022'} = 'BOD�';
4149$borough_number{'8023'} = '1804'; $type{'8023'} = 'ST'; $location{'8023'} = 'BOD�';
4150$borough_number{'8026'} = '1804'; $type{'8026'} = 'ST'; $location{'8026'} = 'BOD�';
4151$borough_number{'8027'} = '1804'; $type{'8027'} = 'ST'; $location{'8027'} = 'BOD�';
4152$borough_number{'8028'} = '1804'; $type{'8028'} = 'ST'; $location{'8028'} = 'BOD�';
4153$borough_number{'8029'} = '1804'; $type{'8029'} = 'ST'; $location{'8029'} = 'BOD�';
4154$borough_number{'8030'} = '1804'; $type{'8030'} = 'ST'; $location{'8030'} = 'BOD�';
4155$borough_number{'8031'} = '1804'; $type{'8031'} = 'BX'; $location{'8031'} = 'BOD�';
4156$borough_number{'8032'} = '1804'; $type{'8032'} = 'BX'; $location{'8032'} = 'BOD�';
4157$borough_number{'8037'} = '1804'; $type{'8037'} = 'SX'; $location{'8037'} = 'BOD�';
4158$borough_number{'8038'} = '1804'; $type{'8038'} = 'SX'; $location{'8038'} = 'BOD�';
4159$borough_number{'8039'} = '1804'; $type{'8039'} = 'SX'; $location{'8039'} = 'BOD�';
4160$borough_number{'8041'} = '1804'; $type{'8041'} = 'SX'; $location{'8041'} = 'BOD�';
4161$borough_number{'8047'} = '1804'; $type{'8047'} = 'IO'; $location{'8047'} = 'BOD�';
4162$borough_number{'8048'} = '1804'; $type{'8048'} = 'IO'; $location{'8048'} = 'BOD�';
4163$borough_number{'8049'} = '1804'; $type{'8049'} = 'IO'; $location{'8049'} = 'BOD�';
4164$borough_number{'8050'} = '1804'; $type{'8050'} = 'ST'; $location{'8050'} = 'TVERLANDET';
4165$borough_number{'8056'} = '1804'; $type{'8056'} = 'STBX'; $location{'8056'} = 'SALTSTRAUMEN';
4166$borough_number{'8058'} = '1804'; $type{'8058'} = 'BX'; $location{'8058'} = 'TVERLANDET';
4167$borough_number{'8063'} = '1857'; $type{'8063'} = 'STBX'; $location{'8063'} = 'V�R�Y';
4168$borough_number{'8064'} = '1856'; $type{'8064'} = 'STBX'; $location{'8064'} = 'R�ST';
4169$borough_number{'8070'} = '1804'; $type{'8070'} = 'ST'; $location{'8070'} = 'BOD�';
4170$borough_number{'8071'} = '1804'; $type{'8071'} = 'ST'; $location{'8071'} = 'BOD�';
4171$borough_number{'8072'} = '1804'; $type{'8072'} = 'ST'; $location{'8072'} = 'BOD�';
4172$borough_number{'8073'} = '1804'; $type{'8073'} = 'ST'; $location{'8073'} = 'BOD�';
4173$borough_number{'8074'} = '1804'; $type{'8074'} = 'ST'; $location{'8074'} = 'BOD�';
4174$borough_number{'8075'} = '1804'; $type{'8075'} = 'ST'; $location{'8075'} = 'BOD�';
4175$borough_number{'8076'} = '1804'; $type{'8076'} = 'ST'; $location{'8076'} = 'BOD�';
4176$borough_number{'8079'} = '1804'; $type{'8079'} = 'ST'; $location{'8079'} = 'BOD�';
4177$borough_number{'8084'} = '1804'; $type{'8084'} = 'BX'; $location{'8084'} = 'BOD�';
4178$borough_number{'8086'} = '1804'; $type{'8086'} = 'BX'; $location{'8086'} = 'BOD�';
4179$borough_number{'8087'} = '1804'; $type{'8087'} = 'BX'; $location{'8087'} = 'BOD�';
4180$borough_number{'8088'} = '1804'; $type{'8088'} = 'BX'; $location{'8088'} = 'BOD�';
4181$borough_number{'8089'} = '1804'; $type{'8089'} = 'BX'; $location{'8089'} = 'BOD�';
4182$borough_number{'8091'} = '1804'; $type{'8091'} = 'BX'; $location{'8091'} = 'BOD�';
4183$borough_number{'8092'} = '1804'; $type{'8092'} = 'BX'; $location{'8092'} = 'BOD�';
4184$borough_number{'8093'} = '1804'; $type{'8093'} = 'STBX'; $location{'8093'} = 'KJERRING�Y';
4185$borough_number{'8094'} = '1838'; $type{'8094'} = 'STBX'; $location{'8094'} = 'FLEINV�R';
4186$borough_number{'8095'} = '1804'; $type{'8095'} = 'STBX'; $location{'8095'} = 'HELLIGV�R';
4187$borough_number{'8096'} = '1804'; $type{'8096'} = 'ST'; $location{'8096'} = 'BLIKSV�R';
4188$borough_number{'8097'} = '1804'; $type{'8097'} = 'ST'; $location{'8097'} = 'GIV�R';
4189$borough_number{'8098'} = '1804'; $type{'8098'} = 'ST'; $location{'8098'} = 'LANDEGODE';
4190$borough_number{'8099'} = '2211'; $type{'8099'} = 'ST'; $location{'8099'} = 'JAN MAYEN';
4191$borough_number{'8100'} = '1804'; $type{'8100'} = 'ST'; $location{'8100'} = 'MISV�R';
4192$borough_number{'8102'} = '1804'; $type{'8102'} = 'ST'; $location{'8102'} = 'SKJERSTAD';
4193$borough_number{'8103'} = '1804'; $type{'8103'} = 'ST'; $location{'8103'} = 'BREIVIK I SALTEN';
4194$borough_number{'8108'} = '1804'; $type{'8108'} = 'BX'; $location{'8108'} = 'MISV�R';
4195$borough_number{'8110'} = '1839'; $type{'8110'} = 'ST'; $location{'8110'} = 'MOLDJORD';
4196$borough_number{'8114'} = '1839'; $type{'8114'} = 'ST'; $location{'8114'} = 'TOLL�';
4197$borough_number{'8118'} = '1839'; $type{'8118'} = 'BX'; $location{'8118'} = 'MOLDJORD';
4198$borough_number{'8120'} = '1838'; $type{'8120'} = 'ST'; $location{'8120'} = 'NYG�RDSJ�EN';
4199$borough_number{'8128'} = '1839'; $type{'8128'} = 'ST'; $location{'8128'} = 'YTRE BEIARN';
4200$borough_number{'8130'} = '1838'; $type{'8130'} = 'ST'; $location{'8130'} = 'SANDHORN�Y';
4201$borough_number{'8135'} = '1838'; $type{'8135'} = 'STBX'; $location{'8135'} = 'S�RARN�Y';
4202$borough_number{'8136'} = '1838'; $type{'8136'} = 'ST'; $location{'8136'} = 'NORDARN�Y';
4203$borough_number{'8138'} = '1838'; $type{'8138'} = 'BX'; $location{'8138'} = 'INNDYR';
4204$borough_number{'8140'} = '1838'; $type{'8140'} = 'ST'; $location{'8140'} = 'INNDYR';
4205$borough_number{'8145'} = '1838'; $type{'8145'} = 'ST'; $location{'8145'} = 'STORVIK';
4206$borough_number{'8146'} = '1837'; $type{'8146'} = 'ST'; $location{'8146'} = 'REIP�';
4207$borough_number{'8149'} = '1837'; $type{'8149'} = 'ST'; $location{'8149'} = 'NEVERDAL';
4208$borough_number{'8150'} = '1837'; $type{'8150'} = 'ST'; $location{'8150'} = '�RNES';
4209$borough_number{'8151'} = '1837'; $type{'8151'} = 'BX'; $location{'8151'} = '�RNES';
4210$borough_number{'8157'} = '1837'; $type{'8157'} = 'ST'; $location{'8157'} = 'MEL�Y';
4211$borough_number{'8158'} = '1837'; $type{'8158'} = 'STBX'; $location{'8158'} = 'BOLGA';
4212$borough_number{'8159'} = '1837'; $type{'8159'} = 'STBX'; $location{'8159'} = 'ST�TT';
4213$borough_number{'8160'} = '1837'; $type{'8160'} = 'ST'; $location{'8160'} = 'GLOMFJORD';
4214$borough_number{'8161'} = '1837'; $type{'8161'} = 'BX'; $location{'8161'} = 'GLOMFJORD';
4215$borough_number{'8168'} = '1837'; $type{'8168'} = 'BX'; $location{'8168'} = 'ENGAV�GEN';
4216$borough_number{'8170'} = '1837'; $type{'8170'} = 'ST'; $location{'8170'} = 'ENGAV�GEN';
4217$borough_number{'8171'} = '1837'; $type{'8171'} = 'ST'; $location{'8171'} = 'SVARTISEN G�RD';
4218$borough_number{'8178'} = '1837'; $type{'8178'} = 'STBX'; $location{'8178'} = 'HALSA';
4219$borough_number{'8181'} = '1836'; $type{'8181'} = 'STBX'; $location{'8181'} = 'MYKEN';
4220$borough_number{'8182'} = '1836'; $type{'8182'} = 'ST'; $location{'8182'} = 'MELFJORDBOTN';
4221$borough_number{'8184'} = '1837'; $type{'8184'} = 'ST'; $location{'8184'} = '�GSKARDET';
4222$borough_number{'8185'} = '1836'; $type{'8185'} = 'STBX'; $location{'8185'} = 'V�GAHOLMEN';
4223$borough_number{'8186'} = '1836'; $type{'8186'} = 'ST'; $location{'8186'} = 'TJONGSFJORDEN';
4224$borough_number{'8187'} = '1836'; $type{'8187'} = 'STBX'; $location{'8187'} = 'JEKTVIK';
4225$borough_number{'8188'} = '1836'; $type{'8188'} = 'ST'; $location{'8188'} = 'NORDVERNES';
4226$borough_number{'8189'} = '1836'; $type{'8189'} = 'ST'; $location{'8189'} = 'GJERSVIKGRENDA';
4227$borough_number{'8190'} = '1836'; $type{'8190'} = 'STBX'; $location{'8190'} = 'S�RFJORDEN';
4228$borough_number{'8193'} = '1836'; $type{'8193'} = 'STBX'; $location{'8193'} = 'R�D�Y';
4229$borough_number{'8195'} = '1836'; $type{'8195'} = 'STBX'; $location{'8195'} = 'GJER�Y';
4230$borough_number{'8196'} = '1836'; $type{'8196'} = 'STBX'; $location{'8196'} = 'SELS�YVIK';
4231$borough_number{'8197'} = '1836'; $type{'8197'} = 'ST'; $location{'8197'} = 'STORSELS�Y';
4232$borough_number{'8198'} = '1836'; $type{'8198'} = 'ST'; $location{'8198'} = 'NORDNES�Y';
4233$borough_number{'8200'} = '1841'; $type{'8200'} = 'ST'; $location{'8200'} = 'FAUSKE';
4234$borough_number{'8201'} = '1841'; $type{'8201'} = 'BX'; $location{'8201'} = 'FAUSKE';
4235$borough_number{'8202'} = '1841'; $type{'8202'} = 'BX'; $location{'8202'} = 'FAUSKE';
4236$borough_number{'8205'} = '1841'; $type{'8205'} = 'SX'; $location{'8205'} = 'FAUSKE';
4237$borough_number{'8210'} = '1841'; $type{'8210'} = 'ST'; $location{'8210'} = 'FAUSKE';
4238$borough_number{'8215'} = '1841'; $type{'8215'} = 'ST'; $location{'8215'} = 'VALNESFJORD';
4239$borough_number{'8220'} = '1845'; $type{'8220'} = 'ST'; $location{'8220'} = 'R�SVIK';
4240$borough_number{'8226'} = '1845'; $type{'8226'} = 'ST'; $location{'8226'} = 'STRAUMEN';
4241$borough_number{'8230'} = '1841'; $type{'8230'} = 'ST'; $location{'8230'} = 'SULITJELMA';
4242$borough_number{'8231'} = '1841'; $type{'8231'} = 'BX'; $location{'8231'} = 'SULITJELMA';
4243$borough_number{'8232'} = '1845'; $type{'8232'} = 'BX'; $location{'8232'} = 'STRAUMEN';
4244$borough_number{'8233'} = '1841'; $type{'8233'} = 'BX'; $location{'8233'} = 'VALNESFJORD';
4245$borough_number{'8250'} = '1840'; $type{'8250'} = 'ST'; $location{'8250'} = 'ROGNAN';
4246$borough_number{'8251'} = '1840'; $type{'8251'} = 'BX'; $location{'8251'} = 'ROGNAN';
4247$borough_number{'8255'} = '1840'; $type{'8255'} = 'ST'; $location{'8255'} = 'R�KLAND';
4248$borough_number{'8256'} = '1840'; $type{'8256'} = 'BX'; $location{'8256'} = 'R�KLAND';
4249$borough_number{'8260'} = '1849'; $type{'8260'} = 'ST'; $location{'8260'} = 'INNHAVET';
4250$borough_number{'8261'} = '1849'; $type{'8261'} = 'BX'; $location{'8261'} = 'INNHAVET';
4251$borough_number{'8264'} = '1845'; $type{'8264'} = 'ST'; $location{'8264'} = 'ENGAN';
4252$borough_number{'8266'} = '1845'; $type{'8266'} = 'ST'; $location{'8266'} = 'M�RSVIKBOTN';
4253$borough_number{'8270'} = '1850'; $type{'8270'} = 'ST'; $location{'8270'} = 'DRAG';
4254$borough_number{'8271'} = '1850'; $type{'8271'} = 'BX'; $location{'8271'} = 'DRAG';
4255$borough_number{'8273'} = '1850'; $type{'8273'} = 'ST'; $location{'8273'} = 'NEVERVIK';
4256$borough_number{'8274'} = '1850'; $type{'8274'} = 'ST'; $location{'8274'} = 'MUSKEN';
4257$borough_number{'8275'} = '1850'; $type{'8275'} = 'ST'; $location{'8275'} = 'STORJORD I TYSFJORD';
4258$borough_number{'8276'} = '1849'; $type{'8276'} = 'ST'; $location{'8276'} = 'ULVSV�G';
4259$borough_number{'8281'} = '1848'; $type{'8281'} = 'BX'; $location{'8281'} = 'LEINESFJORD';
4260$borough_number{'8283'} = '1848'; $type{'8283'} = 'ST'; $location{'8283'} = 'LEINESFJORD';
4261$borough_number{'8285'} = '1848'; $type{'8285'} = 'ST'; $location{'8285'} = 'LEINES';
4262$borough_number{'8286'} = '1848'; $type{'8286'} = 'ST'; $location{'8286'} = 'NORDFOLD';
4263$borough_number{'8288'} = '1848'; $type{'8288'} = 'ST'; $location{'8288'} = 'BOG�Y';
4264$borough_number{'8289'} = '1848'; $type{'8289'} = 'STBX'; $location{'8289'} = 'V�G';
4265$borough_number{'8290'} = '1849'; $type{'8290'} = 'STBX'; $location{'8290'} = 'SKUTVIK';
4266$borough_number{'8294'} = '1849'; $type{'8294'} = 'ST'; $location{'8294'} = 'HAMAR�Y';
4267$borough_number{'8297'} = '1849'; $type{'8297'} = 'ST'; $location{'8297'} = 'TRAN�Y';
4268$borough_number{'8298'} = '1849'; $type{'8298'} = 'BX'; $location{'8298'} = 'HAMAR�Y';
4269$borough_number{'8300'} = '1865'; $type{'8300'} = 'ST'; $location{'8300'} = 'SVOLV�R';
4270$borough_number{'8301'} = '1865'; $type{'8301'} = 'BX'; $location{'8301'} = 'SVOLV�R';
4271$borough_number{'8305'} = '1865'; $type{'8305'} = 'SX'; $location{'8305'} = 'SVOLV�R';
4272$borough_number{'8309'} = '1865'; $type{'8309'} = 'BX'; $location{'8309'} = 'KABELV�G';
4273$borough_number{'8310'} = '1865'; $type{'8310'} = 'ST'; $location{'8310'} = 'KABELV�G';
4274$borough_number{'8311'} = '1865'; $type{'8311'} = 'BX'; $location{'8311'} = 'HENNINGSV�R';
4275$borough_number{'8312'} = '1865'; $type{'8312'} = 'ST'; $location{'8312'} = 'HENNINGSV�R';
4276$borough_number{'8313'} = '1865'; $type{'8313'} = 'ST'; $location{'8313'} = 'KLEPPSTAD';
4277$borough_number{'8314'} = '1865'; $type{'8314'} = 'ST'; $location{'8314'} = 'GIMS�YSAND';
4278$borough_number{'8315'} = '1865'; $type{'8315'} = 'ST'; $location{'8315'} = 'LAUKVIK';
4279$borough_number{'8316'} = '1865'; $type{'8316'} = 'ST'; $location{'8316'} = 'LAUPSTAD';
4280$borough_number{'8317'} = '1866'; $type{'8317'} = 'ST'; $location{'8317'} = 'STR�NSTAD';
4281$borough_number{'8320'} = '1865'; $type{'8320'} = 'STBX'; $location{'8320'} = 'SKROVA';
4282$borough_number{'8322'} = '1865'; $type{'8322'} = 'ST'; $location{'8322'} = 'BRETTESNES';
4283$borough_number{'8323'} = '1865'; $type{'8323'} = 'ST'; $location{'8323'} = 'STORFJELL';
4284$borough_number{'8324'} = '1865'; $type{'8324'} = 'ST'; $location{'8324'} = 'DIGERMULEN';
4285$borough_number{'8325'} = '1866'; $type{'8325'} = 'ST'; $location{'8325'} = 'TENGELFJORD';
4286$borough_number{'8328'} = '1865'; $type{'8328'} = 'ST'; $location{'8328'} = 'STOREMOLLA';
4287$borough_number{'8340'} = '1860'; $type{'8340'} = 'ST'; $location{'8340'} = 'STAMSUND';
4288$borough_number{'8352'} = '1860'; $type{'8352'} = 'ST'; $location{'8352'} = 'SENNESVIK';
4289$borough_number{'8360'} = '1860'; $type{'8360'} = 'STBX'; $location{'8360'} = 'B�STAD';
4290$borough_number{'8370'} = '1860'; $type{'8370'} = 'ST'; $location{'8370'} = 'LEKNES';
4291$borough_number{'8372'} = '1860'; $type{'8372'} = 'ST'; $location{'8372'} = 'GRAVDAL';
4292$borough_number{'8373'} = '1860'; $type{'8373'} = 'STBX'; $location{'8373'} = 'BALLSTAD';
4293$borough_number{'8375'} = '1860'; $type{'8375'} = 'SX'; $location{'8375'} = 'LEKNES';
4294$borough_number{'8376'} = '1860'; $type{'8376'} = 'BX'; $location{'8376'} = 'LEKNES';
4295$borough_number{'8377'} = '1860'; $type{'8377'} = 'BX'; $location{'8377'} = 'GRAVDAL';
4296$borough_number{'8378'} = '1860'; $type{'8378'} = 'BX'; $location{'8378'} = 'STAMSUND';
4297$borough_number{'8380'} = '1859'; $type{'8380'} = 'ST'; $location{'8380'} = 'RAMBERG';
4298$borough_number{'8382'} = '1859'; $type{'8382'} = 'ST'; $location{'8382'} = 'NAPP';
4299$borough_number{'8384'} = '1859'; $type{'8384'} = 'ST'; $location{'8384'} = 'SUND I LOFOTEN';
4300$borough_number{'8387'} = '1859'; $type{'8387'} = 'ST'; $location{'8387'} = 'FREDVANG';
4301$borough_number{'8388'} = '1859'; $type{'8388'} = 'BX'; $location{'8388'} = 'RAMBERG';
4302$borough_number{'8390'} = '1874'; $type{'8390'} = 'ST'; $location{'8390'} = 'REINE';
4303$borough_number{'8392'} = '1874'; $type{'8392'} = 'ST'; $location{'8392'} = 'S�RV�GEN';
4304$borough_number{'8393'} = '1874'; $type{'8393'} = 'BX'; $location{'8393'} = 'S�RV�GEN';
4305$borough_number{'8398'} = '1874'; $type{'8398'} = 'BX'; $location{'8398'} = 'REINE';
4306$borough_number{'8400'} = '1870'; $type{'8400'} = 'ST'; $location{'8400'} = 'SORTLAND';
4307$borough_number{'8401'} = '1870'; $type{'8401'} = 'BX'; $location{'8401'} = 'SORTLAND';
4308$borough_number{'8405'} = '1870'; $type{'8405'} = 'SX'; $location{'8405'} = 'SORTLAND';
4309$borough_number{'8407'} = '1870'; $type{'8407'} = 'ST'; $location{'8407'} = 'GODFJORD';
4310$borough_number{'8408'} = '1868'; $type{'8408'} = 'ST'; $location{'8408'} = 'SANDSET';
4311$borough_number{'8409'} = '1911'; $type{'8409'} = 'ST'; $location{'8409'} = 'GULLESFJORD';
4312$borough_number{'8413'} = '1866'; $type{'8413'} = 'ST'; $location{'8413'} = 'KVITNES';
4313$borough_number{'8414'} = '1866'; $type{'8414'} = 'ST'; $location{'8414'} = 'HENNES';
4314$borough_number{'8415'} = '1866'; $type{'8415'} = 'BX'; $location{'8415'} = 'HENNES';
4315$borough_number{'8426'} = '1868'; $type{'8426'} = 'ST'; $location{'8426'} = 'BARKESTAD';
4316$borough_number{'8428'} = '1868'; $type{'8428'} = 'ST'; $location{'8428'} = 'TUNSTAD';
4317$borough_number{'8430'} = '1868'; $type{'8430'} = 'ST'; $location{'8430'} = 'MYRE';
4318$borough_number{'8432'} = '1868'; $type{'8432'} = 'ST'; $location{'8432'} = 'ALSV�G';
4319$borough_number{'8438'} = '1868'; $type{'8438'} = 'ST'; $location{'8438'} = 'ST�';
4320$borough_number{'8439'} = '1868'; $type{'8439'} = 'BX'; $location{'8439'} = 'MYRE';
4321$borough_number{'8445'} = '1866'; $type{'8445'} = 'ST'; $location{'8445'} = 'MELBU';
4322$borough_number{'8446'} = '1866'; $type{'8446'} = 'SX'; $location{'8446'} = 'MELBU';
4323$borough_number{'8447'} = '1866'; $type{'8447'} = 'ST'; $location{'8447'} = 'LONKAN';
4324$borough_number{'8448'} = '1866'; $type{'8448'} = 'ST'; $location{'8448'} = 'MYRLAND';
4325$borough_number{'8450'} = '1866'; $type{'8450'} = 'STBX'; $location{'8450'} = 'STOKMARKNES';
4326$borough_number{'8452'} = '1866'; $type{'8452'} = 'SX'; $location{'8452'} = 'STOKMARKNES';
4327$borough_number{'8455'} = '1866'; $type{'8455'} = 'BX'; $location{'8455'} = 'STOKMARKNES';
4328$borough_number{'8459'} = '1866'; $type{'8459'} = 'BX'; $location{'8459'} = 'MELBU';
4329$borough_number{'8465'} = '1867'; $type{'8465'} = 'BX'; $location{'8465'} = 'STRAUMSJ�EN';
4330$borough_number{'8469'} = '1867'; $type{'8469'} = 'BX'; $location{'8469'} = 'B� I VESTER�LEN';
4331$borough_number{'8470'} = '1867'; $type{'8470'} = 'ST'; $location{'8470'} = 'B� I VESTER�LEN';
4332$borough_number{'8475'} = '1867'; $type{'8475'} = 'ST'; $location{'8475'} = 'STRAUMSJ�EN';
4333$borough_number{'8480'} = '1871'; $type{'8480'} = 'ST'; $location{'8480'} = 'ANDENES';
4334$borough_number{'8481'} = '1871'; $type{'8481'} = 'ST'; $location{'8481'} = 'BLEIK';
4335$borough_number{'8483'} = '1871'; $type{'8483'} = 'BX'; $location{'8483'} = 'ANDENES';
4336$borough_number{'8484'} = '1871'; $type{'8484'} = 'ST'; $location{'8484'} = 'RIS�YHAMN';
4337$borough_number{'8485'} = '1871'; $type{'8485'} = 'ST'; $location{'8485'} = 'DVERBERG';
4338$borough_number{'8488'} = '1871'; $type{'8488'} = 'ST'; $location{'8488'} = 'N�SS';
4339$borough_number{'8489'} = '1871'; $type{'8489'} = 'ST'; $location{'8489'} = 'NORDMELA';
4340$borough_number{'8493'} = '1871'; $type{'8493'} = 'BX'; $location{'8493'} = 'RIS�YHAMN';
4341$borough_number{'8501'} = '1805'; $type{'8501'} = 'BX'; $location{'8501'} = 'NARVIK';
4342$borough_number{'8502'} = '1805'; $type{'8502'} = 'BX'; $location{'8502'} = 'NARVIK';
4343$borough_number{'8503'} = '1805'; $type{'8503'} = 'BX'; $location{'8503'} = 'NARVIK';
4344$borough_number{'8504'} = '1805'; $type{'8504'} = 'BX'; $location{'8504'} = 'NARVIK';
4345$borough_number{'8505'} = '1805'; $type{'8505'} = 'BX'; $location{'8505'} = 'NARVIK';
4346$borough_number{'8506'} = '1805'; $type{'8506'} = 'BX'; $location{'8506'} = 'NARVIK';
4347$borough_number{'8507'} = '1805'; $type{'8507'} = 'BX'; $location{'8507'} = 'NARVIK';
4348$borough_number{'8508'} = '1805'; $type{'8508'} = 'BX'; $location{'8508'} = 'NARVIK';
4349$borough_number{'8509'} = '1805'; $type{'8509'} = 'BX'; $location{'8509'} = 'NARVIK';
4350$borough_number{'8510'} = '1805'; $type{'8510'} = 'BX'; $location{'8510'} = 'NARVIK';
4351$borough_number{'8512'} = '1805'; $type{'8512'} = 'SX'; $location{'8512'} = 'NARVIK';
4352$borough_number{'8513'} = '1805'; $type{'8513'} = 'BX'; $location{'8513'} = 'ANKENESSTRAND';
4353$borough_number{'8514'} = '1805'; $type{'8514'} = 'ST'; $location{'8514'} = 'NARVIK';
4354$borough_number{'8515'} = '1805'; $type{'8515'} = 'ST'; $location{'8515'} = 'NARVIK';
4355$borough_number{'8516'} = '1805'; $type{'8516'} = 'ST'; $location{'8516'} = 'NARVIK';
4356$borough_number{'8517'} = '1805'; $type{'8517'} = 'ST'; $location{'8517'} = 'NARVIK';
4357$borough_number{'8518'} = '1805'; $type{'8518'} = 'BX'; $location{'8518'} = 'NARVIK';
4358$borough_number{'8520'} = '1805'; $type{'8520'} = 'ST'; $location{'8520'} = 'ANKENESSTRAND';
4359$borough_number{'8522'} = '1805'; $type{'8522'} = 'ST'; $location{'8522'} = 'BEISFJORD';
4360$borough_number{'8523'} = '1805'; $type{'8523'} = 'ST'; $location{'8523'} = 'ELVEGARD';
4361$borough_number{'8530'} = '1805'; $type{'8530'} = 'ST'; $location{'8530'} = 'BJERKVIK';
4362$borough_number{'8531'} = '1805'; $type{'8531'} = 'BX'; $location{'8531'} = 'BJERKVIK';
4363$borough_number{'8533'} = '1853'; $type{'8533'} = 'ST'; $location{'8533'} = 'BOGEN I OFOTEN';
4364$borough_number{'8534'} = '1853'; $type{'8534'} = 'ST'; $location{'8534'} = 'LILAND';
4365$borough_number{'8535'} = '1853'; $type{'8535'} = 'ST'; $location{'8535'} = 'T�RSTAD';
4366$borough_number{'8536'} = '1853'; $type{'8536'} = 'ST'; $location{'8536'} = 'EVENES';
4367$borough_number{'8539'} = '1853'; $type{'8539'} = 'BX'; $location{'8539'} = 'BOGEN I OFOTEN';
4368$borough_number{'8540'} = '1854'; $type{'8540'} = 'ST'; $location{'8540'} = 'BALLANGEN';
4369$borough_number{'8542'} = '1854'; $type{'8542'} = 'BX'; $location{'8542'} = 'KJELDEBOTN';
4370$borough_number{'8543'} = '1854'; $type{'8543'} = 'ST'; $location{'8543'} = 'KJELDEBOTN';
4371$borough_number{'8546'} = '1854'; $type{'8546'} = 'BX'; $location{'8546'} = 'BALLANGEN';
4372$borough_number{'8550'} = '1851'; $type{'8550'} = 'ST'; $location{'8550'} = 'L�DINGEN';
4373$borough_number{'8551'} = '1851'; $type{'8551'} = 'BX'; $location{'8551'} = 'L�DINGEN';
4374$borough_number{'8581'} = '1851'; $type{'8581'} = 'ST'; $location{'8581'} = 'VESTBYGD';
4375$borough_number{'8587'} = '1850'; $type{'8587'} = 'ST'; $location{'8587'} = 'STOR�';
4376$borough_number{'8590'} = '1850'; $type{'8590'} = 'ST'; $location{'8590'} = 'KJ�PSVIK';
4377$borough_number{'8591'} = '1850'; $type{'8591'} = 'BX'; $location{'8591'} = 'KJ�PSVIK';
4378$borough_number{'8601'} = '1833'; $type{'8601'} = 'BX'; $location{'8601'} = 'MO I RANA';
4379$borough_number{'8602'} = '1833'; $type{'8602'} = 'BX'; $location{'8602'} = 'MO I RANA';
4380$borough_number{'8603'} = '1833'; $type{'8603'} = 'BX'; $location{'8603'} = 'MO I RANA';
4381$borough_number{'8604'} = '1833'; $type{'8604'} = 'BX'; $location{'8604'} = 'MO I RANA';
4382$borough_number{'8605'} = '1833'; $type{'8605'} = 'IO'; $location{'8605'} = 'MO I RANA';
4383$borough_number{'8606'} = '1833'; $type{'8606'} = 'IO'; $location{'8606'} = 'MO I RANA';
4384$borough_number{'8607'} = '1833'; $type{'8607'} = 'SX'; $location{'8607'} = 'MO I RANA';
4385$borough_number{'8608'} = '1833'; $type{'8608'} = 'BX'; $location{'8608'} = 'MO I RANA';
4386$borough_number{'8610'} = '1833'; $type{'8610'} = 'ST'; $location{'8610'} = 'MO I RANA';
4387$borough_number{'8613'} = '1833'; $type{'8613'} = 'ST'; $location{'8613'} = 'MO I RANA';
4388$borough_number{'8614'} = '1833'; $type{'8614'} = 'ST'; $location{'8614'} = 'MO I RANA';
4389$borough_number{'8615'} = '1833'; $type{'8615'} = 'ST'; $location{'8615'} = 'SKONSENG';
4390$borough_number{'8616'} = '1833'; $type{'8616'} = 'STBX'; $location{'8616'} = 'MO I RANA';
4391$borough_number{'8617'} = '1833'; $type{'8617'} = 'ST'; $location{'8617'} = 'DALSGRENDA';
4392$borough_number{'8618'} = '1833'; $type{'8618'} = 'STBX'; $location{'8618'} = 'MO I RANA';
4393$borough_number{'8622'} = '1833'; $type{'8622'} = 'ST'; $location{'8622'} = 'MO I RANA';
4394$borough_number{'8624'} = '1833'; $type{'8624'} = 'ST'; $location{'8624'} = 'MO I RANA';
4395$borough_number{'8626'} = '1833'; $type{'8626'} = 'ST'; $location{'8626'} = 'MO I RANA';
4396$borough_number{'8629'} = '1833'; $type{'8629'} = 'ST'; $location{'8629'} = 'SVARTISDAL';
4397$borough_number{'8630'} = '1833'; $type{'8630'} = 'ST'; $location{'8630'} = 'STORFORSHEI';
4398$borough_number{'8634'} = '1833'; $type{'8634'} = 'IO'; $location{'8634'} = 'MO I RANA';
4399$borough_number{'8635'} = '1833'; $type{'8635'} = 'IO'; $location{'8635'} = 'POLARSIRKELEN';
4400$borough_number{'8638'} = '1833'; $type{'8638'} = 'BX'; $location{'8638'} = 'STORFORSHEI';
4401$borough_number{'8640'} = '1832'; $type{'8640'} = 'ST'; $location{'8640'} = 'HEMNESBERGET';
4402$borough_number{'8641'} = '1832'; $type{'8641'} = 'BX'; $location{'8641'} = 'HEMNESBERGET';
4403$borough_number{'8642'} = '1832'; $type{'8642'} = 'STBX'; $location{'8642'} = 'FINNEIDFJORD';
4404$borough_number{'8643'} = '1832'; $type{'8643'} = 'STBX'; $location{'8643'} = 'BJERKA';
4405$borough_number{'8646'} = '1832'; $type{'8646'} = 'ST'; $location{'8646'} = 'KORGEN';
4406$borough_number{'8647'} = '1832'; $type{'8647'} = 'ST'; $location{'8647'} = 'BLEIKVASSLIA';
4407$borough_number{'8648'} = '1832'; $type{'8648'} = 'BX'; $location{'8648'} = 'KORGEN';
4408$borough_number{'8651'} = '1824'; $type{'8651'} = 'BX'; $location{'8651'} = 'MOSJ�EN';
4409$borough_number{'8654'} = '1824'; $type{'8654'} = 'SX'; $location{'8654'} = 'MOSJ�EN';
4410$borough_number{'8655'} = '1824'; $type{'8655'} = 'MU'; $location{'8655'} = 'MOSJ�EN';
4411$borough_number{'8656'} = '1824'; $type{'8656'} = 'ST'; $location{'8656'} = 'MOSJ�EN';
4412$borough_number{'8657'} = '1824'; $type{'8657'} = 'ST'; $location{'8657'} = 'MOSJ�EN';
4413$borough_number{'8658'} = '1824'; $type{'8658'} = 'ST'; $location{'8658'} = 'MOSJ�EN';
4414$borough_number{'8659'} = '1824'; $type{'8659'} = 'ST'; $location{'8659'} = 'MOSJ�EN';
4415$borough_number{'8661'} = '1824'; $type{'8661'} = 'ST'; $location{'8661'} = 'MOSJ�EN';
4416$borough_number{'8663'} = '1824'; $type{'8663'} = 'ST'; $location{'8663'} = 'MOSJ�EN';
4417$borough_number{'8664'} = '1824'; $type{'8664'} = 'ST'; $location{'8664'} = 'MOSJ�EN';
4418$borough_number{'8665'} = '1824'; $type{'8665'} = 'ST'; $location{'8665'} = 'MOSJ�EN';
4419$borough_number{'8672'} = '1824'; $type{'8672'} = 'ST'; $location{'8672'} = 'ELSFJORD';
4420$borough_number{'8680'} = '1825'; $type{'8680'} = 'ST'; $location{'8680'} = 'TROFORS';
4421$borough_number{'8681'} = '1825'; $type{'8681'} = 'BX'; $location{'8681'} = 'TROFORS';
4422$borough_number{'8690'} = '1826'; $type{'8690'} = 'ST'; $location{'8690'} = 'HATTFJELLDAL';
4423$borough_number{'8691'} = '1826'; $type{'8691'} = 'BX'; $location{'8691'} = 'HATTFJELLDAL';
4424$borough_number{'8700'} = '1828'; $type{'8700'} = 'ST'; $location{'8700'} = 'NESNA';
4425$borough_number{'8701'} = '1828'; $type{'8701'} = 'BX'; $location{'8701'} = 'NESNA';
4426$borough_number{'8720'} = '1828'; $type{'8720'} = 'ST'; $location{'8720'} = 'VIKHOLMEN';
4427$borough_number{'8723'} = '1828'; $type{'8723'} = 'ST'; $location{'8723'} = 'HUSBY';
4428$borough_number{'8724'} = '1828'; $type{'8724'} = 'ST'; $location{'8724'} = 'SAURA';
4429$borough_number{'8725'} = '1833'; $type{'8725'} = 'ST'; $location{'8725'} = 'UTSKARPEN';
4430$borough_number{'8726'} = '1833'; $type{'8726'} = 'BX'; $location{'8726'} = 'UTSKARPEN';
4431$borough_number{'8730'} = '1834'; $type{'8730'} = 'ST'; $location{'8730'} = 'BRATLAND';
4432$borough_number{'8732'} = '1834'; $type{'8732'} = 'ST'; $location{'8732'} = 'ALDRA';
4433$borough_number{'8733'} = '1834'; $type{'8733'} = 'ST'; $location{'8733'} = 'STUVLAND';
4434$borough_number{'8735'} = '1834'; $type{'8735'} = 'ST'; $location{'8735'} = 'STOKKV�GEN';
4435$borough_number{'8740'} = '1834'; $type{'8740'} = 'ST'; $location{'8740'} = 'NORD-SOLV�R';
4436$borough_number{'8742'} = '1835'; $type{'8742'} = 'STBX'; $location{'8742'} = 'SELV�R';
4437$borough_number{'8743'} = '1834'; $type{'8743'} = 'STBX'; $location{'8743'} = 'INDRE KVAR�Y';
4438$borough_number{'8750'} = '1834'; $type{'8750'} = 'ST'; $location{'8750'} = 'TONNES';
4439$borough_number{'8752'} = '1834'; $type{'8752'} = 'ST'; $location{'8752'} = 'KONSVIKOSEN';
4440$borough_number{'8753'} = '1834'; $type{'8753'} = 'BX'; $location{'8753'} = 'KONSVIKOSEN';
4441$borough_number{'8754'} = '1836'; $type{'8754'} = 'ST'; $location{'8754'} = '�RESVIK';
4442$borough_number{'8762'} = '1834'; $type{'8762'} = 'STBX'; $location{'8762'} = 'SLENESET';
4443$borough_number{'8764'} = '1834'; $type{'8764'} = 'STBX'; $location{'8764'} = 'LOVUND';
4444$borough_number{'8766'} = '1834'; $type{'8766'} = 'ST'; $location{'8766'} = 'LUR�Y';
4445$borough_number{'8767'} = '1834'; $type{'8767'} = 'BX'; $location{'8767'} = 'LUR�Y';
4446$borough_number{'8770'} = '1835'; $type{'8770'} = 'STBX'; $location{'8770'} = 'TR�NA';
4447$borough_number{'8800'} = '1820'; $type{'8800'} = 'ST'; $location{'8800'} = 'SANDNESSJ�EN';
4448$borough_number{'8801'} = '1820'; $type{'8801'} = 'BX'; $location{'8801'} = 'SANDNESSJ�EN';
4449$borough_number{'8805'} = '1820'; $type{'8805'} = 'SX'; $location{'8805'} = 'SANDNESSJ�EN';
4450$borough_number{'8813'} = '1827'; $type{'8813'} = 'ST'; $location{'8813'} = 'KOPARDAL';
4451$borough_number{'8820'} = '1827'; $type{'8820'} = 'ST'; $location{'8820'} = 'D�NNA';
4452$borough_number{'8826'} = '1827'; $type{'8826'} = 'ST'; $location{'8826'} = 'NORD�YV�GEN';
4453$borough_number{'8827'} = '1827'; $type{'8827'} = 'BX'; $location{'8827'} = 'D�NNA';
4454$borough_number{'8830'} = '1827'; $type{'8830'} = 'STBX'; $location{'8830'} = 'VANDVE';
4455$borough_number{'8842'} = '1818'; $type{'8842'} = 'ST'; $location{'8842'} = 'BRAS�Y';
4456$borough_number{'8844'} = '1818'; $type{'8844'} = 'STBX'; $location{'8844'} = 'SANDV�R';
4457$borough_number{'8850'} = '1818'; $type{'8850'} = 'ST'; $location{'8850'} = 'HER�Y';
4458$borough_number{'8851'} = '1818'; $type{'8851'} = 'BX'; $location{'8851'} = 'HER�Y';
4459$borough_number{'8852'} = '1818'; $type{'8852'} = 'BX'; $location{'8852'} = 'HER�Y';
4460$borough_number{'8854'} = '1820'; $type{'8854'} = 'ST'; $location{'8854'} = 'AUSTB�';
4461$borough_number{'8860'} = '1820'; $type{'8860'} = 'STBX'; $location{'8860'} = 'TJ�TTA';
4462$borough_number{'8865'} = '1820'; $type{'8865'} = 'STBX'; $location{'8865'} = 'TRO';
4463$borough_number{'8870'} = '1816'; $type{'8870'} = 'ST'; $location{'8870'} = 'VISTHUS';
4464$borough_number{'8880'} = '1820'; $type{'8880'} = 'STBX'; $location{'8880'} = 'B�R�YV�GEN';
4465$borough_number{'8883'} = '1824'; $type{'8883'} = 'ST'; $location{'8883'} = 'HUSVIKA';
4466$borough_number{'8890'} = '1822'; $type{'8890'} = 'ST'; $location{'8890'} = 'LEIRFJORD';
4467$borough_number{'8891'} = '1822'; $type{'8891'} = 'BX'; $location{'8891'} = 'LEIRFJORD';
4468$borough_number{'8892'} = '1822'; $type{'8892'} = 'ST'; $location{'8892'} = 'SUND�Y';
4469$borough_number{'8900'} = '1813'; $type{'8900'} = 'ST'; $location{'8900'} = 'BR�NN�YSUND';
4470$borough_number{'8901'} = '1813'; $type{'8901'} = 'BX'; $location{'8901'} = 'BR�NN�YSUND';
4471$borough_number{'8905'} = '1813'; $type{'8905'} = 'SX'; $location{'8905'} = 'BR�NN�YSUND';
4472$borough_number{'8910'} = '1813'; $type{'8910'} = 'IO'; $location{'8910'} = 'BR�NN�YSUND';
4473$borough_number{'8920'} = '1812'; $type{'8920'} = 'ST'; $location{'8920'} = 'S�MNA';
4474$borough_number{'8921'} = '1812'; $type{'8921'} = 'BX'; $location{'8921'} = 'S�MNA';
4475$borough_number{'8922'} = '1812'; $type{'8922'} = 'BX'; $location{'8922'} = 'S�MNA';
4476$borough_number{'8960'} = '1813'; $type{'8960'} = 'ST'; $location{'8960'} = 'HOMMELST�';
4477$borough_number{'8961'} = '1813'; $type{'8961'} = 'BX'; $location{'8961'} = 'HOMMELST�';
4478$borough_number{'8976'} = '1816'; $type{'8976'} = 'STBX'; $location{'8976'} = 'VEVELSTAD';
4479$borough_number{'8978'} = '1816'; $type{'8978'} = 'ST'; $location{'8978'} = 'HESSTUN';
4480$borough_number{'8980'} = '1815'; $type{'8980'} = 'ST'; $location{'8980'} = 'VEGA';
4481$borough_number{'8981'} = '1815'; $type{'8981'} = 'BX'; $location{'8981'} = 'VEGA';
4482$borough_number{'8985'} = '1815'; $type{'8985'} = 'STBX'; $location{'8985'} = 'YLVINGEN';
4483$borough_number{'9006'} = '1902'; $type{'9006'} = 'ST'; $location{'9006'} = 'TROMS�';
4484$borough_number{'9007'} = '1902'; $type{'9007'} = 'ST'; $location{'9007'} = 'TROMS�';
4485$borough_number{'9008'} = '1902'; $type{'9008'} = 'ST'; $location{'9008'} = 'TROMS�';
4486$borough_number{'9009'} = '1902'; $type{'9009'} = 'ST'; $location{'9009'} = 'TROMS�';
4487$borough_number{'9010'} = '1902'; $type{'9010'} = 'ST'; $location{'9010'} = 'TROMS�';
4488$borough_number{'9011'} = '1902'; $type{'9011'} = 'ST'; $location{'9011'} = 'TROMS�';
4489$borough_number{'9012'} = '1902'; $type{'9012'} = 'ST'; $location{'9012'} = 'TROMS�';
4490$borough_number{'9013'} = '1902'; $type{'9013'} = 'STBX'; $location{'9013'} = 'TROMS�';
4491$borough_number{'9014'} = '1902'; $type{'9014'} = 'ST'; $location{'9014'} = 'TROMS�';
4492$borough_number{'9015'} = '1902'; $type{'9015'} = 'ST'; $location{'9015'} = 'TROMS�';
4493$borough_number{'9016'} = '1902'; $type{'9016'} = 'ST'; $location{'9016'} = 'TROMS�';
4494$borough_number{'9017'} = '1902'; $type{'9017'} = 'ST'; $location{'9017'} = 'TROMS�';
4495$borough_number{'9018'} = '1902'; $type{'9018'} = 'ST'; $location{'9018'} = 'TROMS�';
4496$borough_number{'9019'} = '1902'; $type{'9019'} = 'ST'; $location{'9019'} = 'TROMS�';
4497$borough_number{'9020'} = '1902'; $type{'9020'} = 'ST'; $location{'9020'} = 'TROMSDALEN';
4498$borough_number{'9022'} = '1902'; $type{'9022'} = 'ST'; $location{'9022'} = 'KROKELVDALEN';
4499$borough_number{'9024'} = '1902'; $type{'9024'} = 'ST'; $location{'9024'} = 'TOMASJORD';
4500$borough_number{'9027'} = '1902'; $type{'9027'} = 'ST'; $location{'9027'} = 'RAMFJORDBOTN';
4501$borough_number{'9030'} = '1902'; $type{'9030'} = 'ST'; $location{'9030'} = 'SJURSNES';
4502$borough_number{'9034'} = '1902'; $type{'9034'} = 'ST'; $location{'9034'} = 'OLDERVIK';
4503$borough_number{'9037'} = '1902'; $type{'9037'} = 'IO'; $location{'9037'} = 'TROMS�';
4504$borough_number{'9038'} = '1902'; $type{'9038'} = 'IO'; $location{'9038'} = 'TROMS�';
4505$borough_number{'9040'} = '1933'; $type{'9040'} = 'ST'; $location{'9040'} = 'NORDKJOSBOTN';
4506$borough_number{'9042'} = '1933'; $type{'9042'} = 'ST'; $location{'9042'} = 'LAKSVATN';
4507$borough_number{'9043'} = '1902'; $type{'9043'} = 'ST'; $location{'9043'} = 'J�VIK';
4508$borough_number{'9046'} = '1939'; $type{'9046'} = 'ST'; $location{'9046'} = 'OTEREN';
4509$borough_number{'9049'} = '1933'; $type{'9049'} = 'BX'; $location{'9049'} = 'NORDKJOSBOTN';
4510$borough_number{'9050'} = '1933'; $type{'9050'} = 'ST'; $location{'9050'} = 'STORSTEINNES';
4511$borough_number{'9054'} = '1933'; $type{'9054'} = 'ST'; $location{'9054'} = 'MALANGSEIDET';
4512$borough_number{'9055'} = '1933'; $type{'9055'} = 'ST'; $location{'9055'} = 'MEISTERVIK';
4513$borough_number{'9056'} = '1933'; $type{'9056'} = 'ST'; $location{'9056'} = 'MORTENHALS';
4514$borough_number{'9057'} = '1902'; $type{'9057'} = 'STBX'; $location{'9057'} = 'VIKRAN';
4515$borough_number{'9059'} = '1933'; $type{'9059'} = 'BX'; $location{'9059'} = 'STORSTEINNES';
4516$borough_number{'9060'} = '1938'; $type{'9060'} = 'ST'; $location{'9060'} = 'LYNGSEIDET';
4517$borough_number{'9062'} = '1938'; $type{'9062'} = 'ST'; $location{'9062'} = 'FURUFLATEN';
4518$borough_number{'9064'} = '1938'; $type{'9064'} = 'ST'; $location{'9064'} = 'SVENSBY';
4519$borough_number{'9068'} = '1938'; $type{'9068'} = 'ST'; $location{'9068'} = 'NORD-LENANGEN';
4520$borough_number{'9069'} = '1938'; $type{'9069'} = 'BX'; $location{'9069'} = 'LYNGSEIDET';
4521$borough_number{'9100'} = '1902'; $type{'9100'} = 'ST'; $location{'9100'} = 'KVAL�YSLETTA';
4522$borough_number{'9103'} = '1902'; $type{'9103'} = 'ST'; $location{'9103'} = 'SKULSFJORD';
4523$borough_number{'9106'} = '1902'; $type{'9106'} = 'ST'; $location{'9106'} = 'STRAUMSBUKTA';
4524$borough_number{'9107'} = '1902'; $type{'9107'} = 'ST'; $location{'9107'} = 'TROMVIK';
4525$borough_number{'9110'} = '1902'; $type{'9110'} = 'ST'; $location{'9110'} = 'SOMMAR�Y';
4526$borough_number{'9118'} = '1902'; $type{'9118'} = 'ST'; $location{'9118'} = 'BRENSHOLMEN';
4527$borough_number{'9119'} = '1902'; $type{'9119'} = 'BX'; $location{'9119'} = 'SOMMAR�Y';
4528$borough_number{'9120'} = '1902'; $type{'9120'} = 'ST'; $location{'9120'} = 'VENGS�Y';
4529$borough_number{'9128'} = '1902'; $type{'9128'} = 'ST'; $location{'9128'} = 'TUSS�Y';
4530$borough_number{'9130'} = '1936'; $type{'9130'} = 'ST'; $location{'9130'} = 'HANSNES';
4531$borough_number{'9131'} = '1902'; $type{'9131'} = 'ST'; $location{'9131'} = 'K�RVIK';
4532$borough_number{'9132'} = '1936'; $type{'9132'} = 'ST'; $location{'9132'} = 'STAKKVIK';
4533$borough_number{'9134'} = '1936'; $type{'9134'} = 'BX'; $location{'9134'} = 'HANSNES';
4534$borough_number{'9135'} = '1936'; $type{'9135'} = 'ST'; $location{'9135'} = 'VANNV�G';
4535$borough_number{'9136'} = '1936'; $type{'9136'} = 'ST'; $location{'9136'} = 'VANNAREID';
4536$borough_number{'9137'} = '1936'; $type{'9137'} = 'BX'; $location{'9137'} = 'VANNV�G';
4537$borough_number{'9138'} = '1936'; $type{'9138'} = 'STBX'; $location{'9138'} = 'KARLS�Y';
4538$borough_number{'9140'} = '1936'; $type{'9140'} = 'ST'; $location{'9140'} = 'REBBENES';
4539$borough_number{'9141'} = '1902'; $type{'9141'} = 'ST'; $location{'9141'} = 'MJ�LVIK';
4540$borough_number{'9142'} = '1939'; $type{'9142'} = 'BX'; $location{'9142'} = 'SKIBOTN';
4541$borough_number{'9143'} = '1939'; $type{'9143'} = 'ST'; $location{'9143'} = 'SKIBOTN';
4542$borough_number{'9144'} = '1940'; $type{'9144'} = 'STBX'; $location{'9144'} = 'SAMUELSBERG';
4543$borough_number{'9146'} = '1940'; $type{'9146'} = 'ST'; $location{'9146'} = 'OLDERDALEN';
4544$borough_number{'9147'} = '1940'; $type{'9147'} = 'STBX'; $location{'9147'} = 'BIRTAVARRE';
4545$borough_number{'9148'} = '1940'; $type{'9148'} = 'BX'; $location{'9148'} = 'OLDERDALEN';
4546$borough_number{'9151'} = '1942'; $type{'9151'} = 'ST'; $location{'9151'} = 'STORSLETT';
4547$borough_number{'9152'} = '1942'; $type{'9152'} = 'STBX'; $location{'9152'} = 'S�RKJOSEN';
4548$borough_number{'9153'} = '1942'; $type{'9153'} = 'ST'; $location{'9153'} = 'ROTSUND';
4549$borough_number{'9156'} = '1942'; $type{'9156'} = 'BX'; $location{'9156'} = 'STORSLETT';
4550$borough_number{'9159'} = '1942'; $type{'9159'} = 'STBX'; $location{'9159'} = 'HAVNNES';
4551$borough_number{'9161'} = '1943'; $type{'9161'} = 'ST'; $location{'9161'} = 'BURFJORD';
4552$borough_number{'9162'} = '1943'; $type{'9162'} = 'ST'; $location{'9162'} = 'S�RSTRAUMEN';
4553$borough_number{'9163'} = '1943'; $type{'9163'} = 'ST'; $location{'9163'} = 'J�KELFJORD';
4554$borough_number{'9164'} = '1943'; $type{'9164'} = 'ST'; $location{'9164'} = 'KV�NANGSFJELLET';
4555$borough_number{'9169'} = '1943'; $type{'9169'} = 'BX'; $location{'9169'} = 'BURFJORD';
4556$borough_number{'9170'} = '2111'; $type{'9170'} = 'ST'; $location{'9170'} = 'LONGYEARBYEN';
4557$borough_number{'9171'} = '2111'; $type{'9171'} = 'MU'; $location{'9171'} = 'LONGYEARBYEN';
4558$borough_number{'9172'} = '2111'; $type{'9172'} = 'ST'; $location{'9172'} = 'ISFJORD P� SVALBARD';
4559$borough_number{'9173'} = '2111'; $type{'9173'} = 'STBX'; $location{'9173'} = 'NY-�LESUND';
4560$borough_number{'9174'} = '2131'; $type{'9174'} = 'ST'; $location{'9174'} = 'HOPEN';
4561$borough_number{'9175'} = '2111'; $type{'9175'} = 'ST'; $location{'9175'} = 'SVEAGRUVA';
4562$borough_number{'9176'} = '2121'; $type{'9176'} = 'ST'; $location{'9176'} = 'BJ�RN�YA';
4563$borough_number{'9177'} = '2111'; $type{'9177'} = 'ST'; $location{'9177'} = 'HORNSUND';
4564$borough_number{'9178'} = '2111'; $type{'9178'} = 'ST'; $location{'9178'} = 'BARENTSBURG';
4565$borough_number{'9179'} = '2111'; $type{'9179'} = 'ST'; $location{'9179'} = 'PYRAMIDEN';
4566$borough_number{'9180'} = '1941'; $type{'9180'} = 'ST'; $location{'9180'} = 'SKJERV�Y';
4567$borough_number{'9181'} = '1942'; $type{'9181'} = 'ST'; $location{'9181'} = 'HAMNEIDET';
4568$borough_number{'9182'} = '1943'; $type{'9182'} = 'ST'; $location{'9182'} = 'SEGLVIK';
4569$borough_number{'9184'} = '1943'; $type{'9184'} = 'STBX'; $location{'9184'} = 'REINFJORD';
4570$borough_number{'9185'} = '1943'; $type{'9185'} = 'ST'; $location{'9185'} = 'SPILDRA';
4571$borough_number{'9186'} = '1943'; $type{'9186'} = 'ST'; $location{'9186'} = 'ANDSNES';
4572$borough_number{'9189'} = '1941'; $type{'9189'} = 'BX'; $location{'9189'} = 'SKJERV�Y';
4573$borough_number{'9190'} = '1941'; $type{'9190'} = 'ST'; $location{'9190'} = 'AKKARVIK';
4574$borough_number{'9192'} = '1941'; $type{'9192'} = 'ST'; $location{'9192'} = 'ARN�YHAMN';
4575$borough_number{'9193'} = '1941'; $type{'9193'} = 'ST'; $location{'9193'} = 'NIKKEBY';
4576$borough_number{'9194'} = '1941'; $type{'9194'} = 'ST'; $location{'9194'} = 'LAUKSLETTA';
4577$borough_number{'9195'} = '1941'; $type{'9195'} = 'STBX'; $location{'9195'} = '�RVIKSAND';
4578$borough_number{'9197'} = '1941'; $type{'9197'} = 'ST'; $location{'9197'} = 'UL�YBUKT';
4579$borough_number{'9251'} = '1902'; $type{'9251'} = 'BX'; $location{'9251'} = 'TROMS�';
4580$borough_number{'9252'} = '1902'; $type{'9252'} = 'BX'; $location{'9252'} = 'TROMS�';
4581$borough_number{'9253'} = '1902'; $type{'9253'} = 'BX'; $location{'9253'} = 'TROMS�';
4582$borough_number{'9254'} = '1902'; $type{'9254'} = 'BX'; $location{'9254'} = 'TROMS�';
4583$borough_number{'9255'} = '1902'; $type{'9255'} = 'BX'; $location{'9255'} = 'TROMS�';
4584$borough_number{'9256'} = '1902'; $type{'9256'} = 'BX'; $location{'9256'} = 'TROMS�';
4585$borough_number{'9257'} = '1902'; $type{'9257'} = 'BX'; $location{'9257'} = 'TROMS�';
4586$borough_number{'9258'} = '1902'; $type{'9258'} = 'BX'; $location{'9258'} = 'TROMS�';
4587$borough_number{'9259'} = '1902'; $type{'9259'} = 'BX'; $location{'9259'} = 'TROMS�';
4588$borough_number{'9260'} = '1902'; $type{'9260'} = 'BX'; $location{'9260'} = 'TROMS�';
4589$borough_number{'9261'} = '1902'; $type{'9261'} = 'BX'; $location{'9261'} = 'TROMS�';
4590$borough_number{'9262'} = '1902'; $type{'9262'} = 'BX'; $location{'9262'} = 'TROMS�';
4591$borough_number{'9263'} = '1902'; $type{'9263'} = 'BX'; $location{'9263'} = 'TROMS�';
4592$borough_number{'9265'} = '1902'; $type{'9265'} = 'BX'; $location{'9265'} = 'TROMS�';
4593$borough_number{'9266'} = '1902'; $type{'9266'} = 'BX'; $location{'9266'} = 'TROMS�';
4594$borough_number{'9267'} = '1902'; $type{'9267'} = 'BX'; $location{'9267'} = 'TROMS�';
4595$borough_number{'9268'} = '1902'; $type{'9268'} = 'BX'; $location{'9268'} = 'TROMS�';
4596$borough_number{'9269'} = '1902'; $type{'9269'} = 'BX'; $location{'9269'} = 'TROMS�';
4597$borough_number{'9270'} = '1902'; $type{'9270'} = 'BX'; $location{'9270'} = 'TROMS�';
4598$borough_number{'9271'} = '1902'; $type{'9271'} = 'BX'; $location{'9271'} = 'TROMS�';
4599$borough_number{'9272'} = '1902'; $type{'9272'} = 'BX'; $location{'9272'} = 'TROMS�';
4600$borough_number{'9273'} = '1902'; $type{'9273'} = 'BX'; $location{'9273'} = 'TROMS�';
4601$borough_number{'9274'} = '1902'; $type{'9274'} = 'BX'; $location{'9274'} = 'TROMS�';
4602$borough_number{'9275'} = '1902'; $type{'9275'} = 'BX'; $location{'9275'} = 'TROMS�';
4603$borough_number{'9276'} = '1902'; $type{'9276'} = 'BX'; $location{'9276'} = 'TROMS�';
4604$borough_number{'9277'} = '1902'; $type{'9277'} = 'BX'; $location{'9277'} = 'TROMS�';
4605$borough_number{'9278'} = '1902'; $type{'9278'} = 'BX'; $location{'9278'} = 'TROMS�';
4606$borough_number{'9279'} = '1902'; $type{'9279'} = 'BX'; $location{'9279'} = 'TROMS�';
4607$borough_number{'9280'} = '1902'; $type{'9280'} = 'BX'; $location{'9280'} = 'TROMS�';
4608$borough_number{'9281'} = '1902'; $type{'9281'} = 'BX'; $location{'9281'} = 'TROMS�';
4609$borough_number{'9282'} = '1902'; $type{'9282'} = 'BX'; $location{'9282'} = 'TROMS�';
4610$borough_number{'9283'} = '1902'; $type{'9283'} = 'BX'; $location{'9283'} = 'TROMS�';
4611$borough_number{'9284'} = '1902'; $type{'9284'} = 'BX'; $location{'9284'} = 'TROMS�';
4612$borough_number{'9285'} = '1902'; $type{'9285'} = 'BX'; $location{'9285'} = 'TROMS�';
4613$borough_number{'9286'} = '1902'; $type{'9286'} = 'BX'; $location{'9286'} = 'TROMS�';
4614$borough_number{'9287'} = '1902'; $type{'9287'} = 'BX'; $location{'9287'} = 'TROMS�';
4615$borough_number{'9288'} = '1902'; $type{'9288'} = 'BX'; $location{'9288'} = 'TROMS�';
4616$borough_number{'9290'} = '1902'; $type{'9290'} = 'IO'; $location{'9290'} = 'TROMS�';
4617$borough_number{'9291'} = '1902'; $type{'9291'} = 'SX'; $location{'9291'} = 'TROMS�';
4618$borough_number{'9292'} = '1902'; $type{'9292'} = 'SX'; $location{'9292'} = 'TROMS�';
4619$borough_number{'9293'} = '1902'; $type{'9293'} = 'SX'; $location{'9293'} = 'TROMS�';
4620$borough_number{'9294'} = '1902'; $type{'9294'} = 'SX'; $location{'9294'} = 'TROMS�';
4621$borough_number{'9296'} = '1902'; $type{'9296'} = 'SX'; $location{'9296'} = 'TROMS�';
4622$borough_number{'9297'} = '1902'; $type{'9297'} = 'IO'; $location{'9297'} = 'TROMS�';
4623$borough_number{'9298'} = '1902'; $type{'9298'} = 'IO'; $location{'9298'} = 'TROMS�';
4624$borough_number{'9299'} = '1902'; $type{'9299'} = 'IO'; $location{'9299'} = 'TROMS�';
4625$borough_number{'9300'} = '1931'; $type{'9300'} = 'ST'; $location{'9300'} = 'FINNSNES';
4626$borough_number{'9302'} = '1931'; $type{'9302'} = 'ST'; $location{'9302'} = 'ROSSFJORDSTRAUMEN';
4627$borough_number{'9303'} = '1931'; $type{'9303'} = 'ST'; $location{'9303'} = 'SILSAND';
4628$borough_number{'9304'} = '1927'; $type{'9304'} = 'ST'; $location{'9304'} = 'VANGSVIK';
4629$borough_number{'9305'} = '1931'; $type{'9305'} = 'BX'; $location{'9305'} = 'FINNSNES';
4630$borough_number{'9306'} = '1931'; $type{'9306'} = 'SX'; $location{'9306'} = 'FINNSNES';
4631$borough_number{'9310'} = '1925'; $type{'9310'} = 'ST'; $location{'9310'} = 'S�RREISA';
4632$borough_number{'9311'} = '1926'; $type{'9311'} = 'ST'; $location{'9311'} = 'BR�STADBOTN';
4633$borough_number{'9315'} = '1925'; $type{'9315'} = 'BX'; $location{'9315'} = 'S�RREISA';
4634$borough_number{'9316'} = '1926'; $type{'9316'} = 'BX'; $location{'9316'} = 'BR�STADBOTN';
4635$borough_number{'9321'} = '1924'; $type{'9321'} = 'ST'; $location{'9321'} = 'MOEN';
4636$borough_number{'9322'} = '1924'; $type{'9322'} = 'ST'; $location{'9322'} = 'KARLSTAD';
4637$borough_number{'9325'} = '1924'; $type{'9325'} = 'ST'; $location{'9325'} = 'BARDUFOSS';
4638$borough_number{'9326'} = '1924'; $type{'9326'} = 'BX'; $location{'9326'} = 'BARDUFOSS';
4639$borough_number{'9327'} = '1924'; $type{'9327'} = 'BX'; $location{'9327'} = 'BARDUFOSS';
4640$borough_number{'9329'} = '1924'; $type{'9329'} = 'BX'; $location{'9329'} = 'MOEN';
4641$borough_number{'9334'} = '1924'; $type{'9334'} = 'ST'; $location{'9334'} = '�VERBYGD';
4642$borough_number{'9335'} = '1924'; $type{'9335'} = 'BX'; $location{'9335'} = '�VERBYGD';
4643$borough_number{'9336'} = '1924'; $type{'9336'} = 'ST'; $location{'9336'} = 'RUNDHAUG';
4644$borough_number{'9350'} = '1923'; $type{'9350'} = 'ST'; $location{'9350'} = 'SJ�VEGAN';
4645$borough_number{'9355'} = '1923'; $type{'9355'} = 'BX'; $location{'9355'} = 'SJ�VEGAN';
4646$borough_number{'9357'} = '1920'; $type{'9357'} = 'ST'; $location{'9357'} = 'TENNEVOLL';
4647$borough_number{'9358'} = '1920'; $type{'9358'} = 'BX'; $location{'9358'} = 'TENNEVOLL';
4648$borough_number{'9360'} = '1922'; $type{'9360'} = 'ST'; $location{'9360'} = 'BARDU';
4649$borough_number{'9365'} = '1922'; $type{'9365'} = 'BX'; $location{'9365'} = 'BARDU';
4650$borough_number{'9370'} = '1931'; $type{'9370'} = 'BX'; $location{'9370'} = 'SILSAND';
4651$borough_number{'9372'} = '1931'; $type{'9372'} = 'ST'; $location{'9372'} = 'GIBOSTAD';
4652$borough_number{'9373'} = '1931'; $type{'9373'} = 'ST'; $location{'9373'} = 'BOTNHAMN';
4653$borough_number{'9379'} = '1928'; $type{'9379'} = 'BX'; $location{'9379'} = 'GRYLLEFJORD';
4654$borough_number{'9380'} = '1928'; $type{'9380'} = 'ST'; $location{'9380'} = 'GRYLLEFJORD';
4655$borough_number{'9381'} = '1928'; $type{'9381'} = 'ST'; $location{'9381'} = 'TORSKEN';
4656$borough_number{'9382'} = '1931'; $type{'9382'} = 'BX'; $location{'9382'} = 'GIBOSTAD';
4657$borough_number{'9384'} = '1929'; $type{'9384'} = 'BX'; $location{'9384'} = 'SKALAND';
4658$borough_number{'9385'} = '1929'; $type{'9385'} = 'ST'; $location{'9385'} = 'SKALAND';
4659$borough_number{'9386'} = '1929'; $type{'9386'} = 'ST'; $location{'9386'} = 'SENJAHOPEN';
4660$borough_number{'9387'} = '1929'; $type{'9387'} = 'BX'; $location{'9387'} = 'SENJAHOPEN';
4661$borough_number{'9388'} = '1931'; $type{'9388'} = 'STBX'; $location{'9388'} = 'FJORDGARD';
4662$borough_number{'9389'} = '1931'; $type{'9389'} = 'STBX'; $location{'9389'} = 'HUS�Y I SENJA';
4663$borough_number{'9391'} = '1927'; $type{'9391'} = 'BX'; $location{'9391'} = 'STONGLANDSEIDET';
4664$borough_number{'9392'} = '1927'; $type{'9392'} = 'ST'; $location{'9392'} = 'STONGLANDSEIDET';
4665$borough_number{'9393'} = '1928'; $type{'9393'} = 'ST'; $location{'9393'} = 'FLAKSTADV�G';
4666$borough_number{'9395'} = '1928'; $type{'9395'} = 'STBX'; $location{'9395'} = 'KALDFARNES';
4667$borough_number{'9402'} = '1901'; $type{'9402'} = 'ST'; $location{'9402'} = 'HARSTAD';
4668$borough_number{'9403'} = '1901'; $type{'9403'} = 'ST'; $location{'9403'} = 'HARSTAD';
4669$borough_number{'9404'} = '1901'; $type{'9404'} = 'ST'; $location{'9404'} = 'HARSTAD';
4670$borough_number{'9405'} = '1901'; $type{'9405'} = 'ST'; $location{'9405'} = 'HARSTAD';
4671$borough_number{'9406'} = '1901'; $type{'9406'} = 'ST'; $location{'9406'} = 'HARSTAD';
4672$borough_number{'9407'} = '1901'; $type{'9407'} = 'ST'; $location{'9407'} = 'HARSTAD';
4673$borough_number{'9408'} = '1901'; $type{'9408'} = 'ST'; $location{'9408'} = 'HARSTAD';
4674$borough_number{'9409'} = '1901'; $type{'9409'} = 'ST'; $location{'9409'} = 'HARSTAD';
4675$borough_number{'9411'} = '1901'; $type{'9411'} = 'ST'; $location{'9411'} = 'HARSTAD';
4676$borough_number{'9414'} = '1901'; $type{'9414'} = 'ST'; $location{'9414'} = 'HARSTAD';
4677$borough_number{'9415'} = '1901'; $type{'9415'} = 'STBX'; $location{'9415'} = 'HARSTAD';
4678$borough_number{'9419'} = '1901'; $type{'9419'} = 'ST'; $location{'9419'} = 'S�RVIK';
4679$borough_number{'9420'} = '1901'; $type{'9420'} = 'STBX'; $location{'9420'} = 'LUNDENES';
4680$borough_number{'9423'} = '1901'; $type{'9423'} = 'ST'; $location{'9423'} = 'GR�TAV�R';
4681$borough_number{'9424'} = '1901'; $type{'9424'} = 'ST'; $location{'9424'} = 'KJ�TTA';
4682$borough_number{'9425'} = '1915'; $type{'9425'} = 'STBX'; $location{'9425'} = 'SANDS�Y';
4683$borough_number{'9426'} = '1915'; $type{'9426'} = 'STBX'; $location{'9426'} = 'BJARK�Y';
4684$borough_number{'9427'} = '1915'; $type{'9427'} = 'ST'; $location{'9427'} = 'MEL�YV�R';
4685$borough_number{'9430'} = '1901'; $type{'9430'} = 'ST'; $location{'9430'} = 'SANDTORG';
4686$borough_number{'9436'} = '1852'; $type{'9436'} = 'ST'; $location{'9436'} = 'KONGSVIK';
4687$borough_number{'9439'} = '1913'; $type{'9439'} = 'BX'; $location{'9439'} = 'EVENSKJER';
4688$borough_number{'9440'} = '1913'; $type{'9440'} = 'ST'; $location{'9440'} = 'EVENSKJER';
4689$borough_number{'9441'} = '1852'; $type{'9441'} = 'ST'; $location{'9441'} = 'FJELLDAL';
4690$borough_number{'9442'} = '1852'; $type{'9442'} = 'ST'; $location{'9442'} = 'RAMSUND';
4691$borough_number{'9443'} = '1852'; $type{'9443'} = 'ST'; $location{'9443'} = 'MYKLEBOSTAD';
4692$borough_number{'9444'} = '1852'; $type{'9444'} = 'ST'; $location{'9444'} = 'HOL I TJELDSUND';
4693$borough_number{'9445'} = '1913'; $type{'9445'} = 'ST'; $location{'9445'} = 'TOVIK';
4694$borough_number{'9446'} = '1913'; $type{'9446'} = 'ST'; $location{'9446'} = 'GROVFJORD';
4695$borough_number{'9447'} = '1913'; $type{'9447'} = 'BX'; $location{'9447'} = 'GROVFJORD';
4696$borough_number{'9448'} = '1852'; $type{'9448'} = 'BX'; $location{'9448'} = 'RAMSUND';
4697$borough_number{'9450'} = '1917'; $type{'9450'} = 'ST'; $location{'9450'} = 'HAMNVIK';
4698$borough_number{'9451'} = '1917'; $type{'9451'} = 'BX'; $location{'9451'} = 'HAMNVIK';
4699$borough_number{'9453'} = '1917'; $type{'9453'} = 'ST'; $location{'9453'} = 'KR�KR�HAMN';
4700$borough_number{'9454'} = '1917'; $type{'9454'} = 'ST'; $location{'9454'} = '�NSTAD';
4701$borough_number{'9455'} = '1917'; $type{'9455'} = 'STBX'; $location{'9455'} = 'ENGENES';
4702$borough_number{'9470'} = '1919'; $type{'9470'} = 'ST'; $location{'9470'} = 'GRATANGEN';
4703$borough_number{'9471'} = '1919'; $type{'9471'} = 'BX'; $location{'9471'} = 'GRATANGEN';
4704$borough_number{'9475'} = '1911'; $type{'9475'} = 'ST'; $location{'9475'} = 'BORKENES';
4705$borough_number{'9476'} = '1911'; $type{'9476'} = 'BX'; $location{'9476'} = 'BORKENES';
4706$borough_number{'9479'} = '1901'; $type{'9479'} = 'SX'; $location{'9479'} = 'HARSTAD';
4707$borough_number{'9480'} = '1901'; $type{'9480'} = 'SX'; $location{'9480'} = 'HARSTAD';
4708$borough_number{'9481'} = '1901'; $type{'9481'} = 'BX'; $location{'9481'} = 'HARSTAD';
4709$borough_number{'9482'} = '1901'; $type{'9482'} = 'BX'; $location{'9482'} = 'HARSTAD';
4710$borough_number{'9483'} = '1901'; $type{'9483'} = 'BX'; $location{'9483'} = 'HARSTAD';
4711$borough_number{'9484'} = '1901'; $type{'9484'} = 'BX'; $location{'9484'} = 'HARSTAD';
4712$borough_number{'9485'} = '1901'; $type{'9485'} = 'BX'; $location{'9485'} = 'HARSTAD';
4713$borough_number{'9486'} = '1901'; $type{'9486'} = 'BX'; $location{'9486'} = 'HARSTAD';
4714$borough_number{'9487'} = '1901'; $type{'9487'} = 'BX'; $location{'9487'} = 'HARSTAD';
4715$borough_number{'9488'} = '1901'; $type{'9488'} = 'BX'; $location{'9488'} = 'HARSTAD';
4716$borough_number{'9489'} = '1901'; $type{'9489'} = 'BX'; $location{'9489'} = 'HARSTAD';
4717$borough_number{'9496'} = '1901'; $type{'9496'} = 'BX'; $location{'9496'} = 'HARSTAD';
4718$borough_number{'9497'} = '1901'; $type{'9497'} = 'BX'; $location{'9497'} = 'HARSTAD';
4719$borough_number{'9498'} = '1901'; $type{'9498'} = 'BX'; $location{'9498'} = 'HARSTAD';
4720$borough_number{'9499'} = '1901'; $type{'9499'} = 'BX'; $location{'9499'} = 'HARSTAD';
4721$borough_number{'9501'} = '2012'; $type{'9501'} = 'BX'; $location{'9501'} = 'ALTA';
4722$borough_number{'9502'} = '2012'; $type{'9502'} = 'BX'; $location{'9502'} = 'ALTA';
4723$borough_number{'9503'} = '2012'; $type{'9503'} = 'BX'; $location{'9503'} = 'ALTA';
4724$borough_number{'9504'} = '2012'; $type{'9504'} = 'BX'; $location{'9504'} = 'ALTA';
4725$borough_number{'9505'} = '2012'; $type{'9505'} = 'BX'; $location{'9505'} = 'ALTA';
4726$borough_number{'9506'} = '2012'; $type{'9506'} = 'BX'; $location{'9506'} = 'ALTA';
4727$borough_number{'9507'} = '2012'; $type{'9507'} = 'BX'; $location{'9507'} = 'ALTA';
4728$borough_number{'9508'} = '2012'; $type{'9508'} = 'BX'; $location{'9508'} = 'ALTA';
4729$borough_number{'9509'} = '2012'; $type{'9509'} = 'MU'; $location{'9509'} = 'ALTA';
4730$borough_number{'9510'} = '2012'; $type{'9510'} = 'ST'; $location{'9510'} = 'ALTA';
4731$borough_number{'9511'} = '2012'; $type{'9511'} = 'ST'; $location{'9511'} = 'ALTA';
4732$borough_number{'9512'} = '2012'; $type{'9512'} = 'ST'; $location{'9512'} = 'ALTA';
4733$borough_number{'9513'} = '2012'; $type{'9513'} = 'ST'; $location{'9513'} = 'ALTA';
4734$borough_number{'9514'} = '2012'; $type{'9514'} = 'ST'; $location{'9514'} = 'ALTA';
4735$borough_number{'9515'} = '2012'; $type{'9515'} = 'ST'; $location{'9515'} = 'ALTA';
4736$borough_number{'9516'} = '2012'; $type{'9516'} = 'ST'; $location{'9516'} = 'ALTA';
4737$borough_number{'9517'} = '2012'; $type{'9517'} = 'ST'; $location{'9517'} = 'ALTA';
4738$borough_number{'9518'} = '2012'; $type{'9518'} = 'ST'; $location{'9518'} = 'ALTA';
4739$borough_number{'9519'} = '2012'; $type{'9519'} = 'ST'; $location{'9519'} = 'KVIBY';
4740$borough_number{'9520'} = '2011'; $type{'9520'} = 'ST'; $location{'9520'} = 'KAUTOKEINO';
4741$borough_number{'9521'} = '2011'; $type{'9521'} = 'BX'; $location{'9521'} = 'KAUTOKEINO';
4742$borough_number{'9525'} = '2011'; $type{'9525'} = 'STBX'; $location{'9525'} = 'MAZE';
4743$borough_number{'9526'} = '2011'; $type{'9526'} = 'ST'; $location{'9526'} = 'SUOLOVUOPMI';
4744$borough_number{'9531'} = '2012'; $type{'9531'} = 'STBX'; $location{'9531'} = 'KVALFJORD';
4745$borough_number{'9532'} = '2012'; $type{'9532'} = 'STBX'; $location{'9532'} = 'HAKKSTABBEN';
4746$borough_number{'9533'} = '2012'; $type{'9533'} = 'STBX'; $location{'9533'} = 'KONGSHUS';
4747$borough_number{'9536'} = '2012'; $type{'9536'} = 'ST'; $location{'9536'} = 'KORSFJORDEN';
4748$borough_number{'9540'} = '2012'; $type{'9540'} = 'ST'; $location{'9540'} = 'TALVIK';
4749$borough_number{'9545'} = '2012'; $type{'9545'} = 'ST'; $location{'9545'} = 'LANGFJORDBOTN';
4750$borough_number{'9550'} = '2014'; $type{'9550'} = 'ST'; $location{'9550'} = '�KSFJORD';
4751$borough_number{'9551'} = '2014'; $type{'9551'} = 'BX'; $location{'9551'} = '�KSFJORD';
4752$borough_number{'9580'} = '2014'; $type{'9580'} = 'STBX'; $location{'9580'} = 'BERGSFJORD';
4753$borough_number{'9582'} = '2014'; $type{'9582'} = 'ST'; $location{'9582'} = 'NUVSV�G';
4754$borough_number{'9583'} = '2014'; $type{'9583'} = 'STBX'; $location{'9583'} = 'LANGFJORDHAMN';
4755$borough_number{'9584'} = '2014'; $type{'9584'} = 'STBX'; $location{'9584'} = 'S�R-TVERRFJORD';
4756$borough_number{'9585'} = '2014'; $type{'9585'} = 'ST'; $location{'9585'} = 'SANDLAND';
4757$borough_number{'9586'} = '2014'; $type{'9586'} = 'ST'; $location{'9586'} = 'LOPPA';
4758$borough_number{'9587'} = '2014'; $type{'9587'} = 'ST'; $location{'9587'} = 'SKAVNAKK';
4759$borough_number{'9590'} = '2015'; $type{'9590'} = 'STBX'; $location{'9590'} = 'HASVIK';
4760$borough_number{'9593'} = '2015'; $type{'9593'} = 'STBX'; $location{'9593'} = 'BREIVIKBOTN';
4761$borough_number{'9595'} = '2015'; $type{'9595'} = 'STBX'; $location{'9595'} = 'S�RV�R';
4762$borough_number{'9600'} = '2004'; $type{'9600'} = 'STBX'; $location{'9600'} = 'HAMMERFEST';
4763$borough_number{'9609'} = '2004'; $type{'9609'} = 'ST'; $location{'9609'} = 'H�NSEBY';
4764$borough_number{'9610'} = '2004'; $type{'9610'} = 'STBX'; $location{'9610'} = 'RYPEFJORD';
4765$borough_number{'9613'} = '2004'; $type{'9613'} = 'SX'; $location{'9613'} = 'HAMMERFEST';
4766$borough_number{'9615'} = '2004'; $type{'9615'} = 'BX'; $location{'9615'} = 'HAMMERFEST';
4767$borough_number{'9616'} = '2004'; $type{'9616'} = 'BX'; $location{'9616'} = 'HAMMERFEST';
4768$borough_number{'9620'} = '2017'; $type{'9620'} = 'ST'; $location{'9620'} = 'KVALSUND';
4769$borough_number{'9621'} = '2017'; $type{'9621'} = 'BX'; $location{'9621'} = 'KVALSUND';
4770$borough_number{'9624'} = '2017'; $type{'9624'} = 'ST'; $location{'9624'} = 'REVSNESHAMN';
4771$borough_number{'9650'} = '2004'; $type{'9650'} = 'STBX'; $location{'9650'} = 'AKKARFJORD';
4772$borough_number{'9653'} = '2004'; $type{'9653'} = 'ST'; $location{'9653'} = 'HELLEFJORD';
4773$borough_number{'9657'} = '2004'; $type{'9657'} = 'STBX'; $location{'9657'} = 'K�RHAMN';
4774$borough_number{'9664'} = '2004'; $type{'9664'} = 'STBX'; $location{'9664'} = 'SAND�YBOTN';
4775$borough_number{'9670'} = '2018'; $type{'9670'} = 'STBX'; $location{'9670'} = 'TUFJORD';
4776$borough_number{'9672'} = '2018'; $type{'9672'} = 'STBX'; $location{'9672'} = 'ING�Y';
4777$borough_number{'9690'} = '2018'; $type{'9690'} = 'ST'; $location{'9690'} = 'HAV�YSUND';
4778$borough_number{'9691'} = '2018'; $type{'9691'} = 'BX'; $location{'9691'} = 'HAV�YSUND';
4779$borough_number{'9692'} = '2018'; $type{'9692'} = 'STBX'; $location{'9692'} = 'M�S�Y';
4780$borough_number{'9700'} = '2020'; $type{'9700'} = 'ST'; $location{'9700'} = 'LAKSELV';
4781$borough_number{'9709'} = '2020'; $type{'9709'} = 'ST'; $location{'9709'} = 'PORSANGMOEN';
4782$borough_number{'9710'} = '2020'; $type{'9710'} = 'ST'; $location{'9710'} = 'INDRE BILLEFJORD';
4783$borough_number{'9711'} = '2020'; $type{'9711'} = 'BX'; $location{'9711'} = 'LAKSELV';
4784$borough_number{'9712'} = '2020'; $type{'9712'} = 'SX'; $location{'9712'} = 'LAKSELV';
4785$borough_number{'9713'} = '2020'; $type{'9713'} = 'STBX'; $location{'9713'} = 'RUSSENES';
4786$borough_number{'9714'} = '2018'; $type{'9714'} = 'ST'; $location{'9714'} = 'SNEFJORD';
4787$borough_number{'9715'} = '2017'; $type{'9715'} = 'ST'; $location{'9715'} = 'KOKELV';
4788$borough_number{'9716'} = '2020'; $type{'9716'} = 'STBX'; $location{'9716'} = 'B�RSELV';
4789$borough_number{'9717'} = '2022'; $type{'9717'} = 'STBX'; $location{'9717'} = 'VEIDNESKLUBBEN';
4790$borough_number{'9722'} = '2020'; $type{'9722'} = 'STBX'; $location{'9722'} = 'SKOGANVARRE';
4791$borough_number{'9730'} = '2021'; $type{'9730'} = 'ST'; $location{'9730'} = 'KARASJOK';
4792$borough_number{'9735'} = '2021'; $type{'9735'} = 'BX'; $location{'9735'} = 'KARASJOK';
4793$borough_number{'9740'} = '2022'; $type{'9740'} = 'STBX'; $location{'9740'} = 'LEBESBY';
4794$borough_number{'9742'} = '2022'; $type{'9742'} = 'STBX'; $location{'9742'} = 'KUNES';
4795$borough_number{'9750'} = '2019'; $type{'9750'} = 'ST'; $location{'9750'} = 'HONNINGSV�G';
4796$borough_number{'9751'} = '2019'; $type{'9751'} = 'BX'; $location{'9751'} = 'HONNINGSV�G';
4797$borough_number{'9755'} = '2019'; $type{'9755'} = 'SX'; $location{'9755'} = 'HONNINGSV�G';
4798$borough_number{'9760'} = '2019'; $type{'9760'} = 'ST'; $location{'9760'} = 'NORDV�GEN';
4799$borough_number{'9763'} = '2019'; $type{'9763'} = 'STBX'; $location{'9763'} = 'SKARSV�G';
4800$borough_number{'9764'} = '2019'; $type{'9764'} = 'ST'; $location{'9764'} = 'NORDKAPP';
4801$borough_number{'9765'} = '2019'; $type{'9765'} = 'STBX'; $location{'9765'} = 'GJESV�R';
4802$borough_number{'9768'} = '2019'; $type{'9768'} = 'ST'; $location{'9768'} = 'REPV�G';
4803$borough_number{'9770'} = '2023'; $type{'9770'} = 'STBX'; $location{'9770'} = 'MEHAMN';
4804$borough_number{'9771'} = '2023'; $type{'9771'} = 'STBX'; $location{'9771'} = 'SKJ�NES';
4805$borough_number{'9772'} = '2023'; $type{'9772'} = 'ST'; $location{'9772'} = 'LANGFJORDNES';
4806$borough_number{'9773'} = '2023'; $type{'9773'} = 'STBX'; $location{'9773'} = 'NERVEI';
4807$borough_number{'9775'} = '2023'; $type{'9775'} = 'STBX'; $location{'9775'} = 'GAMVIK';
4808$borough_number{'9782'} = '2022'; $type{'9782'} = 'STBX'; $location{'9782'} = 'DYFJORD';
4809$borough_number{'9783'} = '2022'; $type{'9783'} = 'ST'; $location{'9783'} = 'NORDMANNSET I LAKSEFJORD';
4810$borough_number{'9790'} = '2022'; $type{'9790'} = 'STBX'; $location{'9790'} = 'KJ�LLEFJORD';
4811$borough_number{'9800'} = '2003'; $type{'9800'} = 'ST'; $location{'9800'} = 'VADS�';
4812$borough_number{'9802'} = '2003'; $type{'9802'} = 'ST'; $location{'9802'} = 'VESTRE JAKOBSELV';
4813$borough_number{'9810'} = '2003'; $type{'9810'} = 'BX'; $location{'9810'} = 'VESTRE JAKOBSELV';
4814$borough_number{'9811'} = '2003'; $type{'9811'} = 'BX'; $location{'9811'} = 'VADS�';
4815$borough_number{'9815'} = '2003'; $type{'9815'} = 'SX'; $location{'9815'} = 'VADS�';
4816$borough_number{'9820'} = '2027'; $type{'9820'} = 'BX'; $location{'9820'} = 'VARANGERBOTN';
4817$borough_number{'9826'} = '2025'; $type{'9826'} = 'ST'; $location{'9826'} = 'SIRMA';
4818$borough_number{'9840'} = '2027'; $type{'9840'} = 'ST'; $location{'9840'} = 'VARANGERBOTN';
4819$borough_number{'9845'} = '2025'; $type{'9845'} = 'ST'; $location{'9845'} = 'TANA';
4820$borough_number{'9846'} = '2025'; $type{'9846'} = 'BX'; $location{'9846'} = 'TANA';
4821$borough_number{'9900'} = '2030'; $type{'9900'} = 'ST'; $location{'9900'} = 'KIRKENES';
4822$borough_number{'9910'} = '2030'; $type{'9910'} = 'ST'; $location{'9910'} = 'BJ�RNEVATN';
4823$borough_number{'9912'} = '2030'; $type{'9912'} = 'ST'; $location{'9912'} = 'HESSENG';
4824$borough_number{'9914'} = '2030'; $type{'9914'} = 'BX'; $location{'9914'} = 'BJ�RNEVATN';
4825$borough_number{'9915'} = '2030'; $type{'9915'} = 'BX'; $location{'9915'} = 'KIRKENES';
4826$borough_number{'9916'} = '2030'; $type{'9916'} = 'BX'; $location{'9916'} = 'HESSENG';
4827$borough_number{'9917'} = '2030'; $type{'9917'} = 'SX'; $location{'9917'} = 'KIRKENES';
4828$borough_number{'9925'} = '2030'; $type{'9925'} = 'ST'; $location{'9925'} = 'SVANVIK';
4829$borough_number{'9930'} = '2030'; $type{'9930'} = 'ST'; $location{'9930'} = 'NEIDEN';
4830$borough_number{'9934'} = '2030'; $type{'9934'} = 'ST'; $location{'9934'} = 'BUG�YFJORD';
4831$borough_number{'9935'} = '2030'; $type{'9935'} = 'STBX'; $location{'9935'} = 'BUG�YNES';
4832$borough_number{'9950'} = '2002'; $type{'9950'} = 'ST'; $location{'9950'} = 'VARD�';
4833$borough_number{'9951'} = '2002'; $type{'9951'} = 'BX'; $location{'9951'} = 'VARD�';
4834$borough_number{'9960'} = '2002'; $type{'9960'} = 'STBX'; $location{'9960'} = 'KIBERG';
4835$borough_number{'9980'} = '2024'; $type{'9980'} = 'ST'; $location{'9980'} = 'BERLEV�G';
4836$borough_number{'9981'} = '2024'; $type{'9981'} = 'BX'; $location{'9981'} = 'BERLEV�G';
4837$borough_number{'9982'} = '2024'; $type{'9982'} = 'STBX'; $location{'9982'} = 'KONGSFJORD';
4838$borough_number{'9990'} = '2028'; $type{'9990'} = 'ST'; $location{'9990'} = 'B�TSFJORD';
4839$borough_number{'9991'} = '2028'; $type{'9991'} = 'BX'; $location{'9991'} = 'B�TSFJORD';
4840
4841$borough{'0101'} = 'HALDEN';
4842$borough{'0104'} = 'MOSS';
4843$borough{'0105'} = 'SARPSBORG';
4844$borough{'0106'} = 'FREDRIKSTAD';
4845$borough{'0111'} = 'HVALER';
4846$borough{'0118'} = 'AREMARK';
4847$borough{'0119'} = 'MARKER';
4848$borough{'0121'} = 'R�MSKOG';
4849$borough{'0122'} = 'TR�GSTAD';
4850$borough{'0123'} = 'SPYDEBERG';
4851$borough{'0124'} = 'ASKIM';
4852$borough{'0125'} = 'EIDSBERG';
4853$borough{'0127'} = 'SKIPTVET';
4854$borough{'0128'} = 'RAKKESTAD';
4855$borough{'0135'} = 'R�DE';
4856$borough{'0136'} = 'RYGGE';
4857$borough{'0137'} = 'V�LER';
4858$borough{'0138'} = 'HOB�L';
4859$borough{'0211'} = 'VESTBY';
4860$borough{'0213'} = 'SKI';
4861$borough{'0214'} = '�S';
4862$borough{'0215'} = 'FROGN';
4863$borough{'0216'} = 'NESODDEN';
4864$borough{'0217'} = 'OPPEG�RD';
4865$borough{'0219'} = 'B�RUM';
4866$borough{'0220'} = 'ASKER';
4867$borough{'0221'} = 'AURSKOG H�LAND';
4868$borough{'0226'} = 'S�RUM';
4869$borough{'0227'} = 'FET';
4870$borough{'0228'} = 'R�LINGEN';
4871$borough{'0229'} = 'ENEBAKK';
4872$borough{'0230'} = 'L�RENSKOG';
4873$borough{'0231'} = 'SKEDSMO';
4874$borough{'0233'} = 'NITTEDAL';
4875$borough{'0234'} = 'GJERDRUM';
4876$borough{'0235'} = 'ULLENSAKER';
4877$borough{'0236'} = 'NES';
4878$borough{'0237'} = 'EIDSVOLL';
4879$borough{'0238'} = 'NANNESTAD';
4880$borough{'0239'} = 'HURDAL';
4881$borough{'0301'} = 'OSLO';
4882$borough{'0402'} = 'KONGSVINGER';
4883$borough{'0403'} = 'HAMAR';
4884$borough{'0412'} = 'RINGSAKER';
4885$borough{'0415'} = 'L�TEN';
4886$borough{'0417'} = 'STANGE';
4887$borough{'0418'} = 'NORD-ODAL';
4888$borough{'0419'} = 'S�R-ODAL';
4889$borough{'0420'} = 'EIDSKOG';
4890$borough{'0423'} = 'GRUE';
4891$borough{'0425'} = '�SNES';
4892$borough{'0426'} = 'V�LER';
4893$borough{'0427'} = 'ELVERUM';
4894$borough{'0428'} = 'TRYSIL';
4895$borough{'0429'} = '�MOT';
4896$borough{'0430'} = 'STOR-ELVDAL';
4897$borough{'0432'} = 'RENDALEN';
4898$borough{'0434'} = 'ENGERDAL';
4899$borough{'0436'} = 'TOLGA';
4900$borough{'0437'} = 'TYNSET';
4901$borough{'0438'} = 'ALVDAL';
4902$borough{'0439'} = 'FOLLDAL';
4903$borough{'0441'} = 'OS (HEDMARK)';
4904$borough{'0501'} = 'LILLEHAMMER';
4905$borough{'0502'} = 'GJ�VIK';
4906$borough{'0511'} = 'DOVRE';
4907$borough{'0512'} = 'LESJA';
4908$borough{'0513'} = 'SKJ�K';
4909$borough{'0514'} = 'LOM';
4910$borough{'0515'} = 'V�G�';
4911$borough{'0516'} = 'NORD-FRON';
4912$borough{'0517'} = 'SEL';
4913$borough{'0519'} = 'S�R-FRON';
4914$borough{'0520'} = 'RINGEBU';
4915$borough{'0521'} = '�YER';
4916$borough{'0522'} = 'GAUSDAL';
4917$borough{'0528'} = '�STRE TOTEN';
4918$borough{'0529'} = 'VESTRE TOTEN';
4919$borough{'0532'} = 'JEVNAKER';
4920$borough{'0533'} = 'LUNNER';
4921$borough{'0534'} = 'GRAN';
4922$borough{'0536'} = 'S�NDRE LAND';
4923$borough{'0538'} = 'NORDRE LAND';
4924$borough{'0540'} = 'S�R-AURDAL';
4925$borough{'0541'} = 'ETNEDAL';
4926$borough{'0542'} = 'NORD-AURDAL';
4927$borough{'0543'} = 'VESTRE SLIDRE';
4928$borough{'0544'} = '�YSTRE SLIDRE';
4929$borough{'0545'} = 'VANG';
4930$borough{'0602'} = 'DRAMMEN';
4931$borough{'0604'} = 'KONGSBERG';
4932$borough{'0605'} = 'RINGERIKE';
4933$borough{'0612'} = 'HOLE';
4934$borough{'0615'} = 'FL�';
4935$borough{'0616'} = 'NES';
4936$borough{'0617'} = 'GOL';
4937$borough{'0618'} = 'HEMSEDAL';
4938$borough{'0619'} = '�L';
4939$borough{'0620'} = 'HOL';
4940$borough{'0621'} = 'SIGDAL';
4941$borough{'0622'} = 'KR�DSHERAD';
4942$borough{'0623'} = 'MODUM';
4943$borough{'0624'} = '�VRE EIKER';
4944$borough{'0625'} = 'NEDRE EIKER';
4945$borough{'0626'} = 'LIER';
4946$borough{'0627'} = 'R�YKEN';
4947$borough{'0628'} = 'HURUM';
4948$borough{'0631'} = 'FLESBERG';
4949$borough{'0632'} = 'ROLLAG';
4950$borough{'0633'} = 'NORE OG UVDAL';
4951$borough{'0701'} = 'HORTEN';
4952$borough{'0702'} = 'HOLMESTRAND';
4953$borough{'0704'} = 'T�NSBERG';
4954$borough{'0706'} = 'SANDEFJORD';
4955$borough{'0709'} = 'LARVIK';
4956$borough{'0711'} = 'SVELVIK';
4957$borough{'0713'} = 'SANDE (V.)';
4958$borough{'0714'} = 'HOF';
4959$borough{'0716'} = 'RE';
4960$borough{'0719'} = 'ANDEBU';
4961$borough{'0720'} = 'STOKKE';
4962$borough{'0722'} = 'N�TTER�Y';
4963$borough{'0723'} = 'TJ�ME';
4964$borough{'0728'} = 'LARDAL';
4965$borough{'0805'} = 'PORSGRUNN';
4966$borough{'0806'} = 'SKIEN';
4967$borough{'0807'} = 'NOTODDEN';
4968$borough{'0811'} = 'SILJAN';
4969$borough{'0814'} = 'BAMBLE';
4970$borough{'0815'} = 'KRAGER�';
4971$borough{'0817'} = 'DRANGEDAL';
4972$borough{'0819'} = 'NOME';
4973$borough{'0821'} = 'B� (TEL.)';
4974$borough{'0822'} = 'SAUHERAD';
4975$borough{'0826'} = 'TINN';
4976$borough{'0827'} = 'HJARTDAL';
4977$borough{'0828'} = 'SELJORD';
4978$borough{'0829'} = 'KVITESEID';
4979$borough{'0830'} = 'NISSEDAL';
4980$borough{'0831'} = 'FYRESDAL';
4981$borough{'0833'} = 'TOKKE';
4982$borough{'0834'} = 'VINJE';
4983$borough{'0901'} = 'RIS�R';
4984$borough{'0904'} = 'GRIMSTAD';
4985$borough{'0906'} = 'ARENDAL';
4986$borough{'0911'} = 'GJERSTAD';
4987$borough{'0912'} = 'VEG�RSHEI';
4988$borough{'0914'} = 'TVEDESTRAND';
4989$borough{'0919'} = 'FROLAND';
4990$borough{'0926'} = 'LILLESAND';
4991$borough{'0928'} = 'BIRKENES';
4992$borough{'0929'} = '�MLI';
4993$borough{'0935'} = 'IVELAND';
4994$borough{'0937'} = 'EVJE OG HORNNES';
4995$borough{'0938'} = 'BYGLAND';
4996$borough{'0940'} = 'VALLE';
4997$borough{'0941'} = 'BYKLE';
4998$borough{'1001'} = 'KRISTIANSAND';
4999$borough{'1002'} = 'MANDAL';
5000$borough{'1003'} = 'FARSUND';
5001$borough{'1004'} = 'FLEKKEFJORD';
5002$borough{'1014'} = 'VENNESLA';
5003$borough{'1017'} = 'SONGDALEN';
5004$borough{'1018'} = 'S�GNE';
5005$borough{'1021'} = 'MARNARDAL';
5006$borough{'1026'} = '�SERAL';
5007$borough{'1027'} = 'AUDNEDAL';
5008$borough{'1029'} = 'LINDESNES';
5009$borough{'1032'} = 'LYNGDAL';
5010$borough{'1034'} = 'H�GEBOSTAD';
5011$borough{'1037'} = 'KVINESDAL';
5012$borough{'1046'} = 'SIRDAL';
5013$borough{'1101'} = 'EIGERSUND';
5014$borough{'1102'} = 'SANDNES';
5015$borough{'1103'} = 'STAVANGER';
5016$borough{'1106'} = 'HAUGESUND';
5017$borough{'1111'} = 'SOKNDAL';
5018$borough{'1112'} = 'LUND';
5019$borough{'1114'} = 'BJERKREIM';
5020$borough{'1119'} = 'H�';
5021$borough{'1120'} = 'KLEPP';
5022$borough{'1121'} = 'TIME';
5023$borough{'1122'} = 'GJESDAL';
5024$borough{'1124'} = 'SOLA';
5025$borough{'1127'} = 'RANDABERG';
5026$borough{'1129'} = 'FORSAND';
5027$borough{'1130'} = 'STRAND';
5028$borough{'1133'} = 'HJELMELAND';
5029$borough{'1134'} = 'SULDAL';
5030$borough{'1135'} = 'SAUDA';
5031$borough{'1141'} = 'FINN�Y';
5032$borough{'1142'} = 'RENNES�Y';
5033$borough{'1144'} = 'KVITS�Y';
5034$borough{'1145'} = 'BOKN';
5035$borough{'1146'} = 'TYSV�R';
5036$borough{'1149'} = 'KARM�Y';
5037$borough{'1151'} = 'UTSIRA';
5038$borough{'1160'} = 'VINDAFJORD';
5039$borough{'1201'} = 'BERGEN';
5040$borough{'1211'} = 'ETNE';
5041$borough{'1216'} = 'SVEIO';
5042$borough{'1219'} = 'B�MLO';
5043$borough{'1221'} = 'STORD';
5044$borough{'1222'} = 'FITJAR';
5045$borough{'1223'} = 'TYSNES';
5046$borough{'1224'} = 'KVINNHERAD';
5047$borough{'1227'} = 'JONDAL';
5048$borough{'1228'} = 'ODDA';
5049$borough{'1231'} = 'ULLENSVANG';
5050$borough{'1232'} = 'EIDFJORD';
5051$borough{'1233'} = 'ULVIK';
5052$borough{'1234'} = 'GRANVIN';
5053$borough{'1235'} = 'VOSS';
5054$borough{'1238'} = 'KVAM';
5055$borough{'1241'} = 'FUSA';
5056$borough{'1242'} = 'SAMNANGER';
5057$borough{'1243'} = 'OS (HORDALAND)';
5058$borough{'1244'} = 'AUSTEVOLL';
5059$borough{'1245'} = 'SUND';
5060$borough{'1246'} = 'FJELL';
5061$borough{'1247'} = 'ASK�Y';
5062$borough{'1251'} = 'VAKSDAL';
5063$borough{'1252'} = 'MODALEN';
5064$borough{'1253'} = 'OSTER�Y';
5065$borough{'1256'} = 'MELAND';
5066$borough{'1259'} = '�YGARDEN';
5067$borough{'1260'} = 'RAD�Y';
5068$borough{'1263'} = 'LIND�S';
5069$borough{'1264'} = 'AUSTRHEIM';
5070$borough{'1265'} = 'FEDJE';
5071$borough{'1266'} = 'MASFJORDEN';
5072$borough{'1401'} = 'FLORA';
5073$borough{'1411'} = 'GULEN';
5074$borough{'1412'} = 'SOLUND';
5075$borough{'1413'} = 'HYLLESTAD';
5076$borough{'1416'} = 'H�YANGER';
5077$borough{'1417'} = 'VIK';
5078$borough{'1418'} = 'BALESTRAND';
5079$borough{'1419'} = 'LEIKANGER';
5080$borough{'1420'} = 'SOGNDAL';
5081$borough{'1421'} = 'AURLAND';
5082$borough{'1422'} = 'L�RDAL';
5083$borough{'1424'} = '�RDAL';
5084$borough{'1426'} = 'LUSTER';
5085$borough{'1428'} = 'ASKVOLL';
5086$borough{'1429'} = 'FJALER';
5087$borough{'1430'} = 'GAULAR';
5088$borough{'1431'} = 'J�LSTER';
5089$borough{'1432'} = 'F�RDE';
5090$borough{'1433'} = 'NAUSTDAL';
5091$borough{'1438'} = 'BREMANGER';
5092$borough{'1439'} = 'V�GS�Y';
5093$borough{'1441'} = 'SELJE';
5094$borough{'1443'} = 'EID';
5095$borough{'1444'} = 'HORNINDAL';
5096$borough{'1445'} = 'GLOPPEN';
5097$borough{'1449'} = 'STRYN';
5098$borough{'1502'} = 'MOLDE';
5099$borough{'1503'} = 'KRISTIANSUND';
5100$borough{'1504'} = '�LESUND';
5101$borough{'1511'} = 'VANYLVEN';
5102$borough{'1514'} = 'SANDE (M.R.)';
5103$borough{'1515'} = 'HER�Y (M.R.)';
5104$borough{'1516'} = 'ULSTEIN';
5105$borough{'1517'} = 'HAREID';
5106$borough{'1519'} = 'VOLDA';
5107$borough{'1520'} = '�RSTA';
5108$borough{'1523'} = '�RSKOG';
5109$borough{'1524'} = 'NORDDAL';
5110$borough{'1525'} = 'STRANDA';
5111$borough{'1526'} = 'STORDAL';
5112$borough{'1528'} = 'SYKKYLVEN';
5113$borough{'1529'} = 'SKODJE';
5114$borough{'1531'} = 'SULA';
5115$borough{'1532'} = 'GISKE';
5116$borough{'1534'} = 'HARAM';
5117$borough{'1535'} = 'VESTNES';
5118$borough{'1539'} = 'RAUMA';
5119$borough{'1543'} = 'NESSET';
5120$borough{'1545'} = 'MIDSUND';
5121$borough{'1546'} = 'SAND�Y';
5122$borough{'1547'} = 'AUKRA';
5123$borough{'1548'} = 'FR�NA';
5124$borough{'1551'} = 'EIDE';
5125$borough{'1554'} = 'AVER�Y';
5126$borough{'1556'} = 'FREI';
5127$borough{'1557'} = 'GJEMNES';
5128$borough{'1560'} = 'TINGVOLL';
5129$borough{'1563'} = 'SUNNDAL';
5130$borough{'1566'} = 'SURNADAL';
5131$borough{'1567'} = 'RINDAL';
5132$borough{'1571'} = 'HALSA';
5133$borough{'1573'} = 'SM�LA';
5134$borough{'1576'} = 'AURE';
5135$borough{'1601'} = 'TRONDHEIM';
5136$borough{'1612'} = 'HEMNE';
5137$borough{'1613'} = 'SNILLFJORD';
5138$borough{'1617'} = 'HITRA';
5139$borough{'1620'} = 'FR�YA';
5140$borough{'1621'} = '�RLAND';
5141$borough{'1622'} = 'AGDENES';
5142$borough{'1624'} = 'RISSA';
5143$borough{'1627'} = 'BJUGN';
5144$borough{'1630'} = '�FJORD';
5145$borough{'1632'} = 'ROAN';
5146$borough{'1633'} = 'OSEN';
5147$borough{'1634'} = 'OPPDAL';
5148$borough{'1635'} = 'RENNEBU';
5149$borough{'1636'} = 'MELDAL';
5150$borough{'1638'} = 'ORKDAL';
5151$borough{'1640'} = 'R�ROS';
5152$borough{'1644'} = 'HOLT�LEN';
5153$borough{'1648'} = 'MIDTRE GAULDAL';
5154$borough{'1653'} = 'MELHUS';
5155$borough{'1657'} = 'SKAUN';
5156$borough{'1662'} = 'KL�BU';
5157$borough{'1663'} = 'MALVIK';
5158$borough{'1664'} = 'SELBU';
5159$borough{'1665'} = 'TYDAL';
5160$borough{'1702'} = 'STEINKJER';
5161$borough{'1703'} = 'NAMSOS';
5162$borough{'1711'} = 'MER�KER';
5163$borough{'1714'} = 'STJ�RDAL';
5164$borough{'1717'} = 'FROSTA';
5165$borough{'1718'} = 'LEKSVIK';
5166$borough{'1719'} = 'LEVANGER';
5167$borough{'1721'} = 'VERDAL';
5168$borough{'1723'} = 'MOSVIK';
5169$borough{'1724'} = 'VERRAN';
5170$borough{'1725'} = 'NAMDALSEID';
5171$borough{'1729'} = 'INDER�Y';
5172$borough{'1736'} = 'SN�SA';
5173$borough{'1738'} = 'LIERNE';
5174$borough{'1739'} = 'R�YRVIK';
5175$borough{'1740'} = 'NAMSSKOGAN';
5176$borough{'1742'} = 'GRONG';
5177$borough{'1743'} = 'H�YLANDET';
5178$borough{'1744'} = 'OVERHALLA';
5179$borough{'1748'} = 'FOSNES';
5180$borough{'1749'} = 'FLATANGER';
5181$borough{'1750'} = 'VIKNA';
5182$borough{'1751'} = 'N�R�Y';
5183$borough{'1755'} = 'LEKA';
5184$borough{'1804'} = 'BOD�';
5185$borough{'1805'} = 'NARVIK';
5186$borough{'1811'} = 'BINDAL';
5187$borough{'1812'} = 'S�MNA';
5188$borough{'1813'} = 'BR�NN�Y';
5189$borough{'1815'} = 'VEGA';
5190$borough{'1816'} = 'VEVELSTAD';
5191$borough{'1818'} = 'HER�Y (N.)';
5192$borough{'1820'} = 'ALSTAHAUG';
5193$borough{'1822'} = 'LEIRFJORD';
5194$borough{'1824'} = 'VEFSN';
5195$borough{'1825'} = 'GRANE';
5196$borough{'1826'} = 'HATTFJELLDAL';
5197$borough{'1827'} = 'D�NNA';
5198$borough{'1828'} = 'NESNA';
5199$borough{'1832'} = 'HEMNES';
5200$borough{'1833'} = 'RANA';
5201$borough{'1834'} = 'LUR�Y';
5202$borough{'1835'} = 'TR�NA';
5203$borough{'1836'} = 'R�D�Y';
5204$borough{'1837'} = 'MEL�Y';
5205$borough{'1838'} = 'GILDESK�L';
5206$borough{'1839'} = 'BEIARN';
5207$borough{'1840'} = 'SALTDAL';
5208$borough{'1841'} = 'FAUSKE';
5209$borough{'1845'} = 'S�RFOLD';
5210$borough{'1848'} = 'STEIGEN';
5211$borough{'1849'} = 'HAMAR�Y';
5212$borough{'1850'} = 'TYSFJORD';
5213$borough{'1851'} = 'L�DINGEN';
5214$borough{'1852'} = 'TJELDSUND';
5215$borough{'1853'} = 'EVENES';
5216$borough{'1854'} = 'BALLANGEN';
5217$borough{'1856'} = 'R�ST';
5218$borough{'1857'} = 'V�R�Y';
5219$borough{'1859'} = 'FLAKSTAD';
5220$borough{'1860'} = 'VESTV�G�Y';
5221$borough{'1865'} = 'V�GAN';
5222$borough{'1866'} = 'HADSEL';
5223$borough{'1867'} = 'B� (N.)';
5224$borough{'1868'} = '�KSNES';
5225$borough{'1870'} = 'SORTLAND';
5226$borough{'1871'} = 'AND�Y';
5227$borough{'1874'} = 'MOSKENES';
5228$borough{'1901'} = 'HARSTAD';
5229$borough{'1902'} = 'TROMS�';
5230$borough{'1911'} = 'KV�FJORD';
5231$borough{'1913'} = 'SK�NLAND';
5232$borough{'1915'} = 'BJARK�Y';
5233$borough{'1917'} = 'IBESTAD';
5234$borough{'1919'} = 'GRATANGEN';
5235$borough{'1920'} = 'LAVANGEN';
5236$borough{'1922'} = 'BARDU';
5237$borough{'1923'} = 'SALANGEN';
5238$borough{'1924'} = 'M�LSELV';
5239$borough{'1925'} = 'S�RREISA';
5240$borough{'1926'} = 'DYR�Y';
5241$borough{'1927'} = 'TRAN�Y';
5242$borough{'1928'} = 'TORSKEN';
5243$borough{'1929'} = 'BERG';
5244$borough{'1931'} = 'LENVIK';
5245$borough{'1933'} = 'BALSFJORD';
5246$borough{'1936'} = 'KARLS�Y';
5247$borough{'1938'} = 'LYNGEN';
5248$borough{'1939'} = 'STORFJORD';
5249$borough{'1940'} = 'G�IVUOTNA K�FJORD';
5250$borough{'1941'} = 'SKJERV�Y';
5251$borough{'1942'} = 'NORDREISA';
5252$borough{'1943'} = 'KV�NANGEN';
5253$borough{'2002'} = 'VARD�';
5254$borough{'2003'} = 'VADS�';
5255$borough{'2004'} = 'HAMMERFEST';
5256$borough{'2011'} = 'GUOVDAGEAIDNU KAUTOKEINO';
5257$borough{'2012'} = 'ALTA';
5258$borough{'2014'} = 'LOPPA';
5259$borough{'2015'} = 'HASVIK';
5260$borough{'2017'} = 'KVALSUND';
5261$borough{'2018'} = 'M�S�Y';
5262$borough{'2019'} = 'NORDKAPP';
5263$borough{'2020'} = 'PORSANGER PORS�NGU PORSANKI';
5264$borough{'2021'} = 'KARASJOHKA KARASJOK';
5265$borough{'2022'} = 'LEBESBY';
5266$borough{'2023'} = 'GAMVIK';
5267$borough{'2024'} = 'BERLEV�G';
5268$borough{'2025'} = 'DEATNU TANA';
5269$borough{'2027'} = 'UNJARGGA NESSEBY';
5270$borough{'2028'} = 'B�TSFJORD';
5271$borough{'2030'} = 'S�R-VARANGER';
5272$borough{'2111'} = 'SPITSBERGEN';
5273$borough{'2121'} = 'BJ�RN�YA';
5274$borough{'2131'} = 'HOPEN';
5275$borough{'2211'} = 'JAN MAYEN';
5276
5277## misc/update end
5278
5279# Autoload methods go after =cut, and are processed by the autosplit program.
5280
52811;
5282__END__
5283
5284=head1 NAME
5285
5286Geo::Postcodes::NO - Norwegian postcodes with associated information
5287
5288=head1 SYNOPSIS
5289
5290This module can be used object oriented, or as procedures.
5291Take your pick.
5292
5293=head2 AS OBJECTS
5294
5295 use Geo::Postcodes::NO;
5296
5297 my $postcode = '1178'; # My postcode.
5298
5299 if (Geo::Postcodes::NO::valid($postcode)) # A valid postcode?
5300 {
5301   my $P = Geo::Postcodes::NO->new($postcode);
5302
5303   printf "Postcode         '%s'.\n", $P->postcode();
5304   printf "Postal location: '%s'.\n", $P->location();
5305   printf "Borough number:  '%s'.\n", $P->borough_number();
5306   printf "Borough:         '%s'.\n", $P->borough();
5307   printf "County:          '%s'.\n", $P->county();
5308   printf "Postcode type:   '%s'.\n", $P->type();
5309   printf "- in norwegian:  '%s'.\n", $P->type_verbose();
5310   printf "- in english:    '%s'.\n", $P->Geo::Postcodes::type_verbose();
5311 }
5312
5313The test for a valid postcode can also be done on the object itself, as
5314it will be I<undef> when passed an illegal postcode (and thus no object
5315at all.)
5316
5317 my $P = Geo::Postcodes::NO->new($postcode);
5318
5319 if ($P) { ... }
5320
5321A more compact solution:
5322
5323 if ($P = Geo::Postcodes::NO->new($postcode))
5324 {
5325   foreach my $field (Geo::Postcodes::NO::get_fields())
5326   {
5327     printf("%-20s %s\n", ucfirst($field), $P->$field())
5328   }
5329 }
5330
5331This will B<not> show the english description of the type.
5332
5333=head2 AS PROCEDURES
5334
5335 use Geo::Postcodes::NO;
5336
5337 my $postcode = "1178";
5338
5339 if (Geo::Postcodes::NO::valid($postcode))
5340 {
5341   printf "Postcode"        '%s'.\n", $postcode;
5342   printf "Postal location: '%s'.\n", location_of($postcode);
5343   printf "Borough number:  '%s'.\n", borough_number_of($postcode);
5344   printf "Borough:         '%s'.\n", borough_of($postcode);
5345   printf "County:          '%s'.\n", county_of($postcode);
5346   printf "Postcode type:   '%s'.\n", type_of($postcode);
5347   printf "Postcode type:   '%s'.\n", type_of($postcode);
5348   printf "- in norwegian:  '%s'.\n", type_of_verbose($postcode);
5349   printf "- in english:    '%s'.\n", Geo::Postcodes::type_of_verbose($postcode);
5350 }
5351
5352=head1 ABSTRACT
5353
5354Geo::Postcodes::NO - Perl extension for the mapping between norwegian postal
5355codes, postal locations, and the local administrative levels of boroughs
5356(kommuner) and counties (fylker).
5357
5358=head1 DESCRIPTION
5359
5360Tired of entering the postal location all the time? This is not necessary,
5361as it is uniquely defined from the postcode. Request the postcode only,
5362and use this library to get the postal name.
5363
5364The library can also tell you in which borough by name or number and county
5365by name the postcode is located. The borough number can be handy, as it is
5366used when reporting wages and tax to the Norwegian Tax Administration
5367
5368The module supports the following fields: 'postcode', 'location', 'borough_number',
5369'borough', 'county', 'type', and 'type_verbose'. This list can also be obtained
5370with the call C<Geo::Postcodes::NO::get_fields()>.
5371
5372=head2 EXPORT
5373
5374None.
5375
5376=head1 DEPENDENCIES
5377
5378This module is a subclass of Geo::Postcodes, which must be installed first.
5379
5380=head1 PROCEDURES and METHODS
5381
5382These functions can be used as methods or procedures.
5383
5384=head2 is_field
5385
5386  my $boolean = Geo::postcodes::NO::is_field($field);
5387  my $boolean = $postcode_object->is_field($field);
5388
5389Does the specified field exist.
5390
5391=head2 get_fields
5392
5393  my @fields = Geo::postcodes::NO::get_fields();
5394  my @fields = $postcode_object->get_fields();
5395
5396A list of legal fields.
5397
5398=head2 selection
5399
5400This procedure/method makes it possible to select more than one postcode at a time,
5401based on arbitrary complex rules.
5402
5403See the selection documentation (I<perldoc Geo::Postcodes::Selection> or
5404I<man Geo::Postcodes::Selection>) for a full description, and the tutorial
5405(I<perldoc Geo::Postcodes::Tutorial> or I<man Geo::Postcodes::Tutorial>)
5406for sample code.
5407
5408
5409=head2 selection_loop
5410
5411As above.
5412
5413=head1 PROCEDURES
5414
5415Note that the I<xxx_of> procedures return I<undef> when passed an illegal
5416argument. They are used internally by the object constructor (new).
5417
5418=head2 legal
5419
5420  my $boolean = Geo::Postcodes::NO::legal($postcode);
5421
5422Do we have a legal postcode; a code that follows the syntax rules?
5423
5424=head2 valid
5425
5426  my $boolean = Geo::Postcodes::NO::valid($postcode);
5427
5428Do we have a valid postcode; a code in actual use?
5429
5430=head2 get_postcodes
5431
5432This will return an unsorted list of all the norwegian postcodes.
5433
5434=head2 verify_selectionlist
5435
5436This will check the list of arguments for correctness, and should
5437be used before calling 'selection'. The procedure returns a modified
5438version of the arguments on success, and diagnostic messages on failure.
5439
5440  my($status, @modified) = Geo::Postcodes::NO::verify_selectionlist(@args);
5441
5442  if ($status)
5443  {
5444    my @result = Geo::Postcodes::NO::selection(@modified);
5445  }
5446  else
5447  {
5448    print "Diagnostic messages:\n";
5449    map { print " - $_\n" } @modified;
5450  }
5451
5452=head2 postcode_of
5453
5454  $postcode = Geo::Postcodes::NO::postcode_of($postcode);
5455
5456Used internally by 'selection', but otherwise not very useful.
5457
5458=head2 location_of
5459
5460  my $loaction = Geo::Postcodes::NO::location_of($postcode);
5461
5462The postal location associated with the specified postcode.
5463
5464=head2 borough_number_of
5465
5466  my $boroug_number = Geo::Postcodes::NO::borough_number_of($postcode);
5467
5468The number of the borough (kommune) where the postcode is located.
5469
5470=head2 borough_number2borough
5471
5472 my $borough = Geo::Postcodes::NO::borough_number2borough($borough);
5473
5474The name of the borough (kommune) with the specified borough number.
5475
5476=head2 borough_of
5477
5478 my $borough = Geo::Postcodes::NO::borough_of($postcode);
5479
5480The name of the borough (kommune) where the postcode is located.
5481
5482=head2 county_of
5483
5484 my $county = Geo::Postcodes::NO::county_of($county_number);
5485
5486The name of the county (fylke) where the postcode is located.
5487
5488=head2 borough_number2county
5489
5490 my $county = Geo::Postcodes::NO::borough_number2county($borough_number);
5491
5492The name of the county (fylke) where the specified borough number
5493(kommune nummer) is located.
5494
5495=head2 type_of
5496
5497  my $type = Geo::Postcodes::NO::type_of($postcode);
5498
5499=head2 type_verbose_of
5500
5501 my $danish_description  = Geo::postcodes::NO::type_verbose_of($postcode);
5502 my $english_description = Geo::postcodes::type_verbose_of($postcode);
5503
5504A norwegian text describing the type. Use the base class for the english
5505description.
5506
5507See the L<TYPE> section for a description of the types.
5508
5509=head2 type2verbose
5510
5511Get the description of the specified type.
5512
5513  my $norwegian_description = Geo::Postcodes::NO::type2verbose($type);
5514  my $english_description   = Geo::Postcodes::type2verbose($type);
5515
5516=head1 METHODS
5517
5518=head2 new
5519
5520C<my $P = Geo::Postcodes::NO-E<gt>new($postcode);>
5521
5522Create a new postcode object. Internally this will call the C<xxx_of> procedures
5523for the fields supported by this class.
5524
5525The constructor will return I<undef> when passed an invalid or illegal postcode.
5526Do not try method calls on it, as it is not an object. See the description of
5527the I<legal> and I<valid> procedures above.
5528
5529=head2 postcode
5530
5531 my $postcode = $P->postcode();
5532
5533The postcode, as given to the constructor (new).
5534
5535=head2 location
5536
5537 my $location = $P->location();
5538
5539The postal location associated with the specified postcode.
5540
5541=head2 borough_number
5542
5543 my $borough_number = $P->borough_number();
5544
5545The number of the borough (kommune) where the postcode is located.
5546This is an official norwegian identifier.
5547
5548=head2 borough
5549
5550 my $borough = $P->borough();
5551
5552The name of the borough (kommune) where the postcode is located.
5553
5554=head2 county
5555
5556  my $county = $P->county();
5557
5558The name of the county (fylke) where the postcode is located.
5559
5560=head2 type
5561
5562  my $type = $P->type();
5563
5564See the description of the procedure I<type_of> above.
5565
5566=head2 type_verbose
5567
5568See the description of the procedure I<type_verbose_of> above.
5569
5570  my $type_norwegian = $P->type_verbose();
5571  my $type_english   = $P->Geo::Postcodes::type_verbose();
5572
5573Use this to get the description.
5574
5575See the L<TYPE> section for a description of the types.
5576
5577=head1 TYPE
5578
5579This class supports the following types for the postal locatuons:
5580
5581=over
5582
5583=item BX
5584
5585Postbokser (Post Office box)
5586
5587=item ST
5588
5589Gateadresser (Street address)
5590
5591=item SX
5592
5593Serviceboks (Service box )
5594
5595=item IO
5596
5597Kunde med eget postnummer (Individual owner)
5598
5599=item STBX
5600
5601B�de gateadresser og postbokser (Either a Street address or a Post Office box)
5602
5603=item MU
5604
5605Flere bruksomr�der (felles) (Multiple usage)
5606
5607=back
5608
5609Se L<Geo::Postcodes> for furter descriptions.
5610
5611=head1 CAVEAT
5612
5613=head2 POSTCODES
5614
5615The norwegain postcodes are four digit numbers, in the interval "0000"
5616to "9999" (and this means that "0010" is legal, while "10" is not).
5617
5618Use I<legal> to check for legal postcodes, and I<valid> to check if
5619the postcode is actually in use. Geo::Postcodes::NO->new($postcode)
5620will return I<undef> if passed an illegal or invalid postcode.
5621
5622An attempt to access the methods of a non-existent postcode object will
5623result in a runtime error. This can be avoided by checking if the postal
5624code is legal, before creating the object; C<valid($postcode)>
5625returns true or false.
5626
5627=head2 LEGAL BOROUGH NUMBERS
5628
5629Borough (Kommune) numbers are also four digit numbers (not to be confused
5630with the postcodes), in the interval "0101" to "2399". The two first digits
5631identifies the county (fylke).
5632
5633=head2 CHARACTER SET
5634
5635The library was written using the ISO-8859-1 (iso-latin1) character set, and the
5636special norwegian letters '�', '�' and '�' occur regularly in the postal locations
5637and borough and county names. Usage of other character sets may cause havoc.
5638Unicode is not tested.
5639
5640Note that the case insensitive search (in the 'selection' method/procedure)
5641doesn't recognize an '�' as an '�' (and so on). C<use locale> in the
5642application program should fix this, if the current locale supports these
5643characters.
5644
5645Note that all names are given in UPPER CASE. This is courtesy of the norwegian
5646postal service.
5647
5648=head1 SEE ALSO
5649
5650See also the sample programs in the C<eg/>-directory of the distribution, the
5651tutorial (C<perldoc Geo::Postcodes::Tutorial> or C<man Geo::Postcodes::Tutorial>)
5652and the selection manual (I<perldoc Geo::Postcodes::Selection> or
5653I<man Geo::Postcodes::Selection>) for usage details.
5654
5655The latest version of this library should always be available on CPAN, but see
5656also the library home page; F<http://bbop.org/perl/GeoPostcodes> for additional
5657information and sample usage.
5658
5659=head1 COPYRIGHT AND LICENCE
5660
5661Copyright (C) 2006 by Arne Sommer - perl@bbop.org
5662
5663This library is free software; you can redistribute them and/or modify
5664it under the same terms as Perl itself.
5665
5666=cut
5667