Skip to content

Instantly share code, notes, and snippets.

@guewen
Last active August 29, 2015 14:10
Show Gist options
  • Save guewen/34fbc497297a1af0ca2f to your computer and use it in GitHub Desktop.
Save guewen/34fbc497297a1af0ca2f to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
from __future__ import print_function
import pickle
import os
from collections import Counter, defaultdict
from lxml import etree
old_path = '/home/gbaconnier/code/odoo/l10n-switzerland/l10n_ch_zip/l10n_ch_better_zip.xml'
new_path = '/home/gbaconnier/code/instances/dev/parts/l10n-switzerland/l10n_ch_zip/l10n_ch_better_zip.xml'
mapping = {}
mapping_city_by_zip = defaultdict(list)
existing = set()
tree = etree.parse(old_path)
for data_node in tree.xpath('/openerp/data'):
for record in data_node.xpath('./record'):
if not record.get('model') == 'res.better.zip':
continue
xmlid = record.get('id')
name = city = None
for field in record:
if field.get('name') == 'name':
name = field.text
elif field.get('name') == 'city':
city = field.text
assert city and name
mapping[(name, city)] = xmlid
mapping_city_by_zip[name].append(city)
existing.add((name, city))
counter = Counter(zip for zip, _name in existing)
skip = ['distribution', 'zustellung', 'distribuzione', 'hub', 'postauto',
'1', '2', '3', '4', '5', '6', '7', '8', '9', '0',
'swisscom', 'cff', 'ffs', 'sbb', 'caserne', 'kaserne', 'caserma',
' dist ', 'postfinance', ' shell']
if os.path.exists("savecmp"):
with open('savecmp', 'r') as fh:
saved = pickle.load(fh)
else:
saved = {}
tree = etree.parse(new_path)
for data_node in tree.xpath('/openerp/data'):
for record in data_node.xpath('./record'):
if not record.get('model') == 'res.better.zip':
continue
for field in record:
if field.get('name') == 'name':
name = field.text
elif field.get('name') == 'city':
city = field.text
xmlid = mapping.get((name, city))
if not xmlid:
if counter[name] >= 1:
print('Matching cities for %s %s:\n%s' % (
name, city,
'\n'.join(["%s. %s" % (idx, desc) for idx, desc
in enumerate(mapping_city_by_zip[name])
])
))
choice = None
if any(text in city.lower() for text in skip):
choice = 's'
else:
saved_choice = saved.get((name, city))
if saved_choice:
use_saved = raw_input('Already chosen: "%s",'
'keep it (Y/n)?' % saved_choice)
if use_saved != 'n':
choice = saved_choice
while not choice:
choice = raw_input('Choose the option (s for skip):')
if choice != 's':
try:
mapping_city_by_zip[name][int(choice)]
except (IndexError, ValueError):
choice = None
saved[(name, city)] = choice
with open('savecmp', 'w') as fh:
pickle.dump(saved, fh)
if choice == 's':
continue
chosed_name = mapping_city_by_zip[name][int(choice)]
xmlid = mapping[(name, chosed_name)]
else:
continue # new one
record.attrib['id'] = xmlid
with open(new_path, 'w') as fo:
fo.write(etree.tostring(tree, pretty_print=True, encoding='utf8'))
(dp0
(S'8500'
p1
S'Frauenfeld Postauto TG-SH'
p2
tp3
S's'
p4
s(S'9240'
p5
S'Uzwil Zustellung'
p6
tp7
g4
s(S'8408'
p8
S'Winterthur 8 Zustellung'
p9
tp10
g4
s(S'6600'
p11
S'Locarno Stazione FFS'
p12
tp13
g4
s(S'1295'
p14
S'Mies-Tannay'
p15
tp16
S's'
p17
s(S'3000'
p18
S'Bern 9'
p19
tp20
g4
s(S'1950'
p21
S'Sion 1 Distribution'
p22
tp23
g4
s(S'5225'
p24
VBözberg
p25
tp26
S'0'
p27
s(S'3000'
p28
S'Bern 77 SBV'
p29
tp30
g4
s(S'3770'
p31
S'Zweisimmen Zustellung'
p32
tp33
g4
s(S'2608'
p34
S'Montagne-de-Courtelary'
p35
tp36
S'1'
p37
s(S'3172'
p38
S'Niederwangen b. Bern'
p39
tp40
S'0'
p41
s(S'8134'
p42
S'Adliswil 1'
p43
tp44
g4
s(S'8357'
p45
S'Guntershausen b. Aadorf'
p46
tp47
g41
s(S'6300'
p48
S'Zug 1'
p49
tp50
g4
s(S'1000'
p51
S'Lausanne 18'
p52
tp53
g4
s(S'7302'
p54
S'Landquart Bahnhof SBB'
p55
tp56
g4
s(S'1530'
p57
S'Payerne Distribution'
p58
tp59
g4
s(S'6374'
p60
S'Buochs Zustellung'
p61
tp62
g4
s(S'4702'
p63
S'Oensingen Zustellung'
p64
tp65
g4
s(S'1663'
p66
S'Epagny Distribution'
p67
tp68
g4
s(S'3072'
p69
S'Ostermundigen Oberdorf'
p70
tp71
g4
s(S'9230'
p72
S'Flawil 1 Zustellung'
p73
tp74
g4
s(S'3186'
p75
VDüdingen Zustellung
p76
tp77
g4
s(S'7000'
p78
S'Chur 1 Zustellung'
p79
tp80
g4
s(S'8574'
p81
S'Dettighofen (Lengwil)'
p82
tp83
S'0'
p84
s(S'8840'
p85
S'Einsiedeln Zustellung'
p86
tp87
g4
s(S'1196'
p88
S'Gland Distribution'
p89
tp90
g4
s(S'2800'
p91
VDelémont 2
p92
tp93
g4
s(S'6814'
p94
S'Lamone-Cadempino'
p95
tp96
g17
s(S'1805'
p97
S'Jongny Distribution'
p98
tp99
g4
s(S'9053'
p100
S'Teufen AR Zustellung'
p101
tp102
g4
s(S'6410'
p103
S'Goldau Zustellung'
p104
tp105
g4
s(S'6000'
p106
VLuzern 2 Universität
p107
tp108
g4
s(S'6616'
p109
S'Losone Caserma'
p110
tp111
g4
s(S'3623'
p112
S'Teuffenthal b. Thun'
p113
tp114
S'2'
p115
s(S'8572'
p116
S'Guntershausen b. Berg'
p117
tp118
S'3'
p119
s(S'3422'
p120
S'Kirchberg BE Zustellung'
p121
tp122
g4
s(S'1689'
p123
VLe Châtelard-près-Romont
p124
tp125
g41
s(S'2500'
p126
S'Biel/Bienne 6'
p127
tp128
g4
s(S'4563'
p129
S'Gerlafingen Zustellung'
p130
tp131
g4
s(S'4127'
p132
S'Birsfelden Zustellung'
p133
tp134
g4
s(S'8965'
p135
S'Berikon 1'
p136
tp137
g4
s(S'8775'
p138
VLuchsingen-Hätzingen
p139
tp140
g17
s(S'3900'
p141
S'Brig Distributionsbasis'
p142
tp143
g4
s(S'8890'
p144
S'Flums Zustellung'
p145
tp146
g4
s(S'8212'
p147
S'Neuhausen am Rheinfall'
p148
tp149
S'0'
p150
s(S'8340'
p151
S'Hinwil VZ'
p152
tp153
g4
s(S'6810'
p154
S'Isone Caserma'
p155
tp156
g4
s(S'1762'
p157
S'Givisiez DB AFP'
p158
tp159
g4
s(S'9494'
p160
S'Schaan BZ GKS'
p161
tp162
S's'
p163
s(S'4102'
p164
S'Binningen 1'
p165
tp166
g4
s(S'6039'
p167
VRoot Längenbold SH
p168
tp169
S'0'
p170
s(S'4500'
p171
S'Solothurn 1 Zustellung'
p172
tp173
g4
s(S'1200'
p174
VGenève Dist Ba
p175
tp176
g4
s(S'5054'
p177
S'Kirchleerau-Moosleerau'
p178
tp179
g17
s(S'3415'
p180
S'Schafhausen im Emmental'
p181
tp182
g115
s(S'6000'
p183
S'Luzern 14'
p184
tp185
g4
s(S'6060'
p186
VSarnen 2 Büntenpark
p187
tp188
g4
s(S'2074'
p189
S'Marin-Centre'
p190
tp191
S's'
p192
s(S'5200'
p193
S'Brugg Bahnhof SBB'
p194
tp195
g4
s(S'1223'
p196
S'Cologny Distribution'
p197
tp198
g4
s(S'8157'
p199
S'Dielsdorf Zustellung'
p200
tp201
g4
s(S'8548'
p202
S'Ellikon an der Thur'
p203
tp204
g41
s(S'6900'
p205
S'Lugano Distribuzione'
p206
tp207
g4
s(S'6440'
p208
S'Brunnen Bahnhof SBB'
p209
tp210
g4
s(S'8152'
p211
S'Glattpark (Opfikon)'
p212
tp213
S'1'
p214
s(S'4950'
p215
S'Huttwil Zustellung'
p216
tp217
g4
s(S'8953'
p218
S'Dietikon 1'
p219
tp220
g4
s(S'1200'
p221
VGenève 21
p222
tp223
g4
s(S'8898'
p224
S'Flumserberg Tannenbodenalp'
p225
tp226
g41
s(S'3636'
p227
VForst b. Längenbühl
p228
tp229
g17
s(S'6020'
p230
VEmmenbrücke 3
p231
tp232
g4
s(S'1992'
p233
VCrête-à-l'Oeil(Les Agettes)
p234
tp235
g84
s(S'2400'
p236
S'Le Locle Distribution'
p237
tp238
g4
s(S'1426'
p239
VCorcelles-près-Concise
p240
tp241
g37
s(S'8418'
p242
S'Schlatt b. Winterthur'
p243
tp244
g41
s(S'3000'
p245
S'Bern 21'
p246
tp247
g4
s(S'9450'
p248
VAltstätten SG Zustellung
p249
tp250
g4
s(S'3800'
p251
S'Matten b. Interlaken'
p252
tp253
g37
s(S'4512'
p254
S'Bellach Zustellung'
p255
tp256
g4
s(S'3940'
p257
S'Steg-Gampel'
p258
tp259
g163
s(S'7270'
p260
S'Davos Zustellung'
p261
tp262
g4
s(S'3400'
p263
S'Burgdorf Dist Fil'
p264
tp265
g4
s(S'5000'
p266
S'Aarau Kaserne'
p267
tp268
g4
s(S'1000'
p269
S'Lausanne 16'
p270
tp271
g4
s(S'3000'
p272
S'Bern 5'
p273
tp274
g4
s(S'6060'
p275
S'Sarnen 2'
p276
tp277
g4
s(S'1180'
p278
S'Rolle Distribution'
p279
tp280
g4
s(S'1219'
p281
S'Lignon B&V GK'
p282
tp283
S's'
p284
s(S'5620'
p285
S'Bremgarten AG 1 Zustellung'
p286
tp287
g4
s(S'4500'
p288
S'Solothurn 1'
p289
tp290
g4
s(S'1217'
p291
S'Meyrin 2'
p292
tp293
g4
s(S'8307'
p294
S'Ottikon b. Kemptthal'
p295
tp296
g37
s(S'2735'
p297
VMalleray-Bévilard
p298
tp299
g17
s(S'4132'
p300
S'Muttenz 1'
p301
tp302
g4
s(S'1723'
p303
S'Villarsel-sur-Marly'
p304
tp305
g115
s(S'8412'
p306
VHünikon (Neftenbach)
p307
tp308
g214
s(S'6469'
p309
S'Haldi b. Schattdorf'
p310
tp311
g41
s(S'3377'
p312
S'Walliswil b. Wangen'
p313
tp314
g41
s(S'1680'
p315
S'Romont Caserne'
p316
tp317
g4
s(S'7320'
p318
S'Sargans Zustellung'
p319
tp320
g4
s(S'3325'
p321
S'Hettiswil b. Hindelbank'
p322
tp323
g41
s(S'1110'
p324
S'Morges 1'
p325
tp326
g4
s(S'5610'
p327
S'Wohlen AG 1'
p328
tp329
g4
s(S'1442'
p330
VMontagny-près-Yverdon
p331
tp332
S'0'
p333
s(S'7223'
p334
VBuchen im Prättigau
p335
tp336
g41
s(S'6600'
p337
S'Locarno 4 Solduno'
p338
tp339
g4
s(S'1996'
p340
VCondémines (Nendaz)
p341
tp342
S'5'
p343
s(S'3256'
p344
S'Bangerten b. Dieterswil'
p345
tp346
g17
s(S'1844'
p347
S'Villeneuve VD Distribution'
p348
tp349
g4
s(S'1417'
p350
S'Essertines-sur-Yverdon'
p351
tp352
g37
s(S'8472'
p353
S'Seuzach Zustellung'
p354
tp355
g4
s(S'1727'
p356
S'Corpataux-Magnedens'
p357
tp358
g150
s(S'3464'
p359
VSchmidigen-Mühleweg
p360
tp361
g41
s(S'6330'
p362
S'Cham 1'
p363
tp364
g4
s(S'3956'
p365
S'Guttet'
p366
tp367
g192
s(S'6900'
p368
S'Lugano 8'
p369
tp370
g4
s(S'1400'
p371
S'Yverdon Caserne'
p372
tp373
g4
s(S'1200'
p374
VGenève 7
p375
tp376
g4
s(S'1260'
p377
S'Nyon 1'
p378
tp379
g4
s(S'8634'
p380
S'Hombrechtikon Zustellung'
p381
tp382
g4
s(S'1200'
p383
VGenève 2 Transit
p384
tp385
g4
s(S'4000'
p386
S'Basel Dist Ba'
p387
tp388
g4
s(S'8905'
p389
S'Arni-Islisberg'
p390
tp391
g17
s(S'1071'
p392
S'St-Saphorin (Lavaux)'
p393
tp394
g115
s(S'3805'
p395
S'Goldswil b. Interlaken'
p396
tp397
g41
s(S'8808'
p398
VPfäffikon Bahnhof SBB
p399
tp400
g4
s(S'4142'
p401
VMünchenstein 1 Zustellung
p402
tp403
g4
s(S'1358'
p404
S'Valeyres-sous-Rances'
p405
tp406
g333
s(S'1350'
p407
S'Orbe Distribution'
p408
tp409
g4
s(S'1955'
p410
VLes Vérines (Chamoson)
p411
tp412
g115
s(S'2013'
p413
S'Colombier NE Caserne'
p414
tp415
g4
s(S'9470'
p416
S'Buchs SG 1 Zustellung'
p417
tp418
g4
s(S'8820'
p419
VWädenswil Dist Ba
p420
tp421
g4
s(S'6210'
p422
S'Sursee Zustellung'
p423
tp424
g4
s(S'2610'
p425
S'St-Imier Distribution'
p426
tp427
g4
s(S'2000'
p428
VNeuchâtel 2
p429
tp430
g4
s(S'4665'
p431
S'Oftringen 2'
p432
tp433
g4
s(S'1407'
p434
VMézery-près-Donneloye
p435
tp436
g119
s(S'8002'
p437
VZürich Enge PF Filiale
p438
tp439
g163
s(S'9428'
p440
S'Platz AR'
p441
tp442
g192
s(S'8762'
p443
VSchwändi b. Schwanden
p444
tp445
g17
s(S'3072'
p446
VOstermundigen Rüti Fächer
p447
tp448
g163
s(S'6987'
p449
S'Caslano Distribuzione'
p450
tp451
g4
s(S'8640'
p452
S'Kempraten'
p453
tp454
g17
s(S'1233'
p455
S'Bernex Distribution'
p456
tp457
g4
s(S'6023'
p458
S'Rothenburg Zustellung'
p459
tp460
g4
s(S'9050'
p461
S'Appenzell Zustellung'
p462
tp463
g4
s(S'1965'
p464
VDiolly (Savièse)
p465
tp466
g284
s(S'4710'
p467
VBalsthal Postauto Thal-Gäu
p468
tp469
g4
s(S'9500'
p470
S'Wil SG 2'
p471
tp472
g4
s(S'6277'
p473
S'Lieli LU'
p474
tp475
g37
s(S'3930'
p476
S'Visp Zustellung'
p477
tp478
g4
s(S'6060'
p479
S'Sarnen 1'
p480
tp481
g4
s(S'2903'
p482
S'Villars-sur-Fontenais'
p483
tp484
g41
s(S'1441'
p485
S'Valeyres-sous-Montagny'
p486
tp487
g333
s(S'1991'
p488
S'Pravidondaz (Salins)'
p489
tp490
S'2'
p491
s(S'1752'
p492
VVillars-sur-Glâne 2
p493
tp494
g4
s(S'4123'
p495
S'Allschwil 1'
p496
tp497
g4
s(S'2035'
p498
S'Corcelles NE Distribution'
p499
tp500
g4
s(S'4132'
p501
S'Muttenz 1 Zustellung'
p502
tp503
g4
s(S'5430'
p504
S'Wettingen 2'
p505
tp506
g4
s(S'3000'
p507
S'Bern Radio Schweiz'
p508
tp509
g192
s(S'1000'
p510
S'Lausanne 20'
p511
tp512
g4
s(S'8105'
p513
S'Regensdorf 1 Zustellung'
p514
tp515
g4
s(S'1400'
p516
S'Yverdon-les-Bains 1'
p517
tp518
g4
s(S'1030'
p519
S'Bussigny Distribution'
p520
tp521
g4
s(S'3919'
p522
VBlatten (Lötschen)
p523
tp524
g41
s(S'6460'
p525
S'Altdorf UR 2 Zustellung'
p526
tp527
g4
s(S'9200'
p528
S'Gossau SG Logistikzentrum'
p529
tp530
g163
s(S'3419'
p531
S'Biembach im Emmental'
p532
tp533
g41
s(S'5734'
p534
S'Reinach AG Zustellung'
p535
tp536
g4
s(S'5036'
p537
S'Oberentfelden Zustellung'
p538
tp539
g4
s(S'1800'
p540
S'Vevey Orient'
p541
tp542
g4
s(S'7116'
p543
S'St. Martin (Lugnez)'
p544
tp545
g150
s(S'1965'
p546
VDrône (Savièse)
p547
tp548
g37
s(S'1200'
p549
VGenève 4
p550
tp551
g4
s(S'9100'
p552
S'Herisau 1 Zustellung'
p553
tp554
g4
s(S'1945'
p555
S'Fontaine Dessus (Liddes)'
p556
tp557
S'4'
p558
s(S'1945'
p559
S'Rive Haute (Liddes)'
p560
tp561
S'10'
p562
s(S'6314'
p563
VUnterägeri Zustellung
p564
tp565
g4
s(S'3714'
p566
S'Frutigen Zustellung'
p567
tp568
g4
s(S'2000'
p569
VNeuchâtel 2 Distribution
p570
tp571
g4
s(S'8106'
p572
S'Adlikon b. Regensdorf'
p573
tp574
g41
s(S'1800'
p575
S'Vevey 1 Distribution'
p576
tp577
g4
s(S'2316'
p578
S'Les Ponts-de-Martel'
p579
tp580
g37
s(S'1000'
p581
S'Lausanne 3'
p582
tp583
g4
s(S'7270'
p584
S'Davos Platz 1'
p585
tp586
g4
s(S'1053'
p587
S'Bretigny-sur-Morrens'
p588
tp589
S'0'
p590
s(S'3653'
p591
S'Oberhofen am Thunersee'
p592
tp593
g41
s(S'2800'
p594
VDelémont Dist Ba
p595
tp596
g4
s(S'1195'
p597
S'Dully-Bursinel'
p598
tp599
g17
s(S'8478'
p600
S'Thalheim an der Thur'
p601
tp602
g41
s(S'4410'
p603
S'Liestal Dist Fil'
p604
tp605
g4
s(S'3432'
p606
VLützelflüh-Goldbach
p607
tp608
g41
s(S'3963'
p609
S'Crans-Montana 2'
p610
tp611
g4
s(S'8304'
p612
S'Wallisellen Zustellung'
p613
tp614
g4
s(S'9050'
p615
VAppenzell Meistersrüte
p616
tp617
S'3'
p618
s(S'1020'
p619
S'Renens VD 1'
p620
tp621
g4
s(S'4410'
p622
S'Liestal Kaserne'
p623
tp624
g4
s(S'3380'
p625
S'Wangen a. A. Kaserne'
p626
tp627
g4
s(S'4917'
p628
S'Busswil b. Melchnau'
p629
tp630
g150
s(S'9050'
p631
S'Appenzell Eggerstanden'
p632
tp633
g214
s(S'6032'
p634
S'Emmen Kaserne'
p635
tp636
g4
s(S'5506'
p637
VMägenwil Dist Ba
p638
tp639
g4
s(S'3360'
p640
S'Herzogenbuchsee Zustellung'
p641
tp642
g4
s(S'6830'
p643
S'Chiasso Stazione FFS'
p644
tp645
g4
s(S'3433'
p646
S'Schwanden im Emmental'
p647
tp648
g41
s(S'3400'
p649
S'Burgdorf PostFinance mob'
p650
tp651
g4
s(S'8500'
p652
S'Frauenfeld 1 Zustellung'
p653
tp654
g4
s(S'6963'
p655
S'Pregassona Distribuzione'
p656
tp657
g4
s(S'4614'
p658
VHägendorf Zustellung
p659
tp660
g4
s(S'8006'
p661
VZürich Asendia
p662
tp663
g4
s(S'9470'
p664
S'Buchs SG Dist Fil'
p665
tp666
g4
s(S'6500'
p667
S'Bellinzona centro servici'
p668
tp669
g192
s(S'8902'
p670
S'Urdorf PL3'
p671
tp672
g4
s(S'8372'
p673
S'Wiezikon b. Sirnach'
p674
tp675
g41
s(S'4800'
p676
S'Zofingen Abg. St'
p677
tp678
g4
s(S'6343'
p679
S'Rotkreuz Zustellung'
p680
tp681
g4
s(S'1870'
p682
S'Monthey 1'
p683
tp684
g4
s(S'6110'
p685
S'Fontannen b. Wolhusen'
p686
tp687
g17
s(S'8932'
p688
S'Mettmenstetten Zustellung'
p689
tp690
g4
s(S'4144'
p691
S'Arlesheim Postlogistics Hub'
p692
tp693
g4
s(S'1377'
p694
S'Oulens-sous-Echallens'
p695
tp696
g333
s(S'9200'
p697
S'Gossau SG LZB FP'
p698
tp699
g4
s(S'8832'
p700
S'Wollerau Zustellung'
p701
tp702
g4
s(S'1695'
p703
S'Estavayer-le-Gibloux'
p704
tp705
g150
s(S'6207'
p706
S'Nottwil Paraplegikerzentrum'
p707
tp708
g192
s(S'1611'
p709
VLe Crêt-près-Semsales
p710
tp711
g41
s(S'1663'
p712
VMoléson-sur-Gruyères
p713
tp714
g115
s(S'1218'
p715
S'Grand-Saconnex Distribution'
p716
tp717
g4
s(S'1950'
p718
S'Sion 4'
p719
tp720
g4
s(S'4800'
p721
S'Zofingen KC PK/GK 4'
p722
tp723
g4
s(S'1421'
p724
S'Fontaines-sur-Grandson'
p725
tp726
g150
s(S'6331'
p727
VHünenberg Zustellung
p728
tp729
g4
s(S'8107'
p730
S'Buchs ZH Zustellung'
p731
tp732
g4
s(S'3065'
p733
S'Bolligen Dorf'
p734
tp735
g192
s(S'4515'
p736
S'Weissenstein b. Solothurn'
p737
tp738
g37
s(S'3960'
p739
S'Sierre Dist Fil'
p740
tp741
g4
s(S'6500'
p742
S'Bellinzona 5'
p743
tp744
g4
s(S'5415'
p745
S'Nussbaumen AG Zustellung'
p746
tp747
g4
s(S'6583'
p748
S'S. Antonio (Val Morobbia)'
p749
tp750
g41
s(S'9000'
p751
S'St. Gallen Dist Ba'
p752
tp753
g4
s(S'3961'
p754
S'Mission'
p755
tp756
g284
s(S'8630'
p757
VRüti ZH Zustellung
p758
tp759
g4
s(S'6280'
p760
S'Hochdorf Zustellung'
p761
tp762
g4
s(S'4665'
p763
S'Oftringen PL3'
p764
tp765
g4
s(S'1535'
p766
S'Combremont-le-Grand'
p767
tp768
g333
s(S'1227'
p769
S'Carouge GE Distribution'
p770
tp771
g4
s(S'3076'
p772
S'Worb Zustellung'
p773
tp774
g4
s(S'8471'
p775
VRutschwil (Dägerlen)
p776
tp777
g558
s(S'8050'
p778
VZürich Oerlikon DB PickPost
p779
tp780
g163
s(S'4600'
p781
S'Olten 1'
p782
tp783
g4
s(S'6000'
p784
S'Luzern 30 AAL'
p785
tp786
g4
s(S'4310'
p787
S'Rheinfelden 1'
p788
tp789
g4
s(S'1950'
p790
S'Sion Caserne'
p791
tp792
g4
s(S'3963'
p793
S'Crans-Montana 1'
p794
tp795
g4
s(S'1985'
p796
VVilla (Evolène)
p797
tp798
g491
s(S'1219'
p799
S'Le Lignon Distribution'
p800
tp801
g4
s(S'1922'
p802
S'Les Granges (Salvan)'
p803
tp804
g150
s(S'6541'
p805
S'Sta. Maria in Calanca'
p806
tp807
g41
s(S'6370'
p808
S'Stans Zustellung'
p809
tp810
g4
s(S'1200'
p811
VGenève 28 Balexert
p812
tp813
g4
s(S'1723'
p814
VMarly Grand Pré
p815
tp816
g17
s(S'6010'
p817
S'Kriens 2'
p818
tp819
g4
s(S'1580'
p820
S'Avenches Distribution'
p821
tp822
g4
s(S'8957'
p823
S'Spreitenbach Zustellung'
p824
tp825
g4
s(S'3700'
p826
S'Spiez Zustellung'
p827
tp828
g4
s(S'8610'
p829
S'Uster 1'
p830
tp831
g4
s(S'9200'
p832
S'Gossau SG 1'
p833
tp834
g4
s(S'1630'
p835
S'Bulle 1'
p836
tp837
g4
s(S'4132'
p838
S'Muttenz Lutzert'
p839
tp840
g192
s(S'2953'
p841
VFregiécourt-Pleujouse
p842
tp843
g17
s(S'3963'
p844
S'Crans-Montana 1 Dist'
p845
tp846
g4
s(S'9500'
p847
S'Wil SG 1'
p848
tp849
g4
s(S'7078'
p850
S'Lenzerheide Zustellung'
p851
tp852
g4
s(S'3280'
p853
S'Murten Zustellung'
p854
tp855
g4
s(S'1304'
p856
S'Cossonay Distribution'
p857
tp858
g4
s(S'1000'
p859
S'Lausanne 24 Vennes'
p860
tp861
g4
s(S'5000'
p862
S'Aarau Postauto Aargau'
p863
tp864
g4
s(S'6684'
p865
S'Campo (Vallemaggia)'
p866
tp867
g150
s(S'2802'
p868
S'Develier PostAuto AG'
p869
tp870
g4
s(S'3175'
p871
S'Flamatt Zustellung'
p872
tp873
g4
s(S'1000'
p874
S'Lausanne Ouchy'
p875
tp876
S's'
p877
s(S'6030'
p878
S'Ebikon Zustellung'
p879
tp880
g4
s(S'4460'
p881
S'Gelterkinden Zustellung'
p882
tp883
g4
s(S'1687'
p884
S'Vuisternens-devant-Romont'
p885
tp886
g115
s(S'3052'
p887
S'Zollikofen Zustellung'
p888
tp889
g4
s(S'1023'
p890
S'Crissier Distribution'
p891
tp892
g4
s(S'1965'
p893
VSt-Germain (Savièse)
p894
tp895
S'8'
p896
s(S'1225'
p897
VChêne-Bourg Distribution
p898
tp899
g4
s(S'3000'
p900
S'Bern 22 Kaserne'
p901
tp902
g4
s(S'3428'
p903
S'Wiler b. Utzenstorf'
p904
tp905
g41
s(S'6084'
p906
S'Hasliberg Wasserwendi'
p907
tp908
g41
s(S'9470'
p909
S'Buchs SG 1'
p910
tp911
g4
s(S'4310'
p912
S'Rheinfelden 2'
p913
tp914
g4
s(S'1808'
p915
S'Les Monts-de-Corsier'
p916
tp917
g41
s(S'1955'
p918
S'St-Pierre-de-Clages'
p919
tp920
g558
s(S'8132'
p921
VEgg b. Zürich Zustellung
p922
tp923
g4
s(S'4702'
p924
S'Oensingen Bahnhof SBB'
p925
tp926
g4
s(S'3373'
p927
VRöthenbach Herzogenbuchsee
p928
tp929
g37
s(S'3960'
p930
S'Sierre Distribution'
p931
tp932
g4
s(S'4416'
p933
S'Bubendorf Zustellung'
p934
tp935
g4
s(S'8614'
p936
S'Bertschikon (Gossau ZH)'
p937
tp938
g150
s(S'8805'
p939
S'Richterswil Burghalden SOB'
p940
tp941
g192
s(S'1000'
p942
S'Lausanne 22'
p943
tp944
g4
s(S'3000'
p945
S'Bern 65 SBB'
p946
tp947
g4
s(S'1696'
p948
S'Vuisternens-en-Ogoz'
p949
tp950
g41
s(S'1607'
p951
VPalézieux Distribution
p952
tp953
g4
s(S'8037'
p954
VZürich 37 Zustellung
p955
tp956
g4
s(S'5406'
p957
S'Baden'
p958
tp959
g192
s(S'1562'
p960
VCorcelles-près-Payerne
p961
tp962
g333
s(S'6900'
p963
S'Lugano 7'
p964
tp965
g4
s(S'4414'
p966
VFüllinsdorf Zustellung
p967
tp968
g4
s(S'6000'
p969
S'Luzern 4'
p970
tp971
g4
s(S'6460'
p972
S'Altdorf UR 1'
p973
tp974
g4
s(S'8260'
p975
S'Stein am Rhein 2 Stadt'
p976
tp977
g4
s(S'1532'
p978
VFötigny PL3
p979
tp980
g4
s(S'1934'
p981
VLe Châble VS Distribution
p982
tp983
g4
s(S'1580'
p984
S'Donatyre'
p985
tp986
g284
s(S'1347'
p987
S'Le Sentier Distribution'
p988
tp989
g4
s(S'2013'
p990
S'Boudry Dist Ba'
p991
tp992
g4
s(S'1217'
p993
S'Meyrin Distribution'
p994
tp995
g4
s(S'4133'
p996
S'Pratteln PL3'
p997
tp998
g4
s(S'8307'
p999
S'Effretikon Zustellung'
p1000
tp1001
g4
s(S'8180'
p1002
VBülach Bahnhof SBB
p1003
tp1004
g4
s(S'1400'
p1005
S'Yverdon-les-Bains Gare CFF'
p1006
tp1007
g4
s(S'6000'
p1008
S'Luzern 7'
p1009
tp1010
g4
s(S'8820'
p1011
VWädenswil Zustellung
p1012
tp1013
g4
s(S'9200'
p1014
S'Gossau SG 1 Zustellung'
p1015
tp1016
g4
s(S'1661'
p1017
VLe Pâquier-Montbarry
p1018
tp1019
g333
s(S'6010'
p1020
S'Kriens 2 Zustellung'
p1021
tp1022
g4
s(S'8302'
p1023
S'Kloten Zustellung'
p1024
tp1025
g4
s(S'1279'
p1026
S'Chavannes-de-Bogis OLS'
p1027
tp1028
g17
s(S'5703'
p1029
S'Seon Zustellung'
p1030
tp1031
g4
s(S'2500'
p1032
S'Biel/Bienne 1 Annahme'
p1033
tp1034
g4
s(S'8896'
p1035
S'Flumserberg Bergheim'
p1036
tp1037
g41
s(S'1260'
p1038
S'Nyon 1 Distribution'
p1039
tp1040
g4
s(S'6500'
p1041
S'Bellinzona 1'
p1042
tp1043
g4
s(S'1200'
p1044
VGenève 2 Distribution
p1045
tp1046
g4
s(S'1227'
p1047
VGenève Carouge PostFinance
p1048
tp1049
g4
s(S'1023'
p1050
S'Crissier 1'
p1051
tp1052
g4
s(S'9444'
p1053
S'Diepoldsau Zustellung'
p1054
tp1055
g4
s(S'1022'
p1056
VChavannes-près-Renens
p1057
tp1058
g333
s(S'1950'
p1059
S'Sion 3'
p1060
tp1061
g4
s(S'8500'
p1062
S'Frauenfeld Kaserne'
p1063
tp1064
g4
s(S'1450'
p1065
VLe Château-de-Ste-Croix
p1066
tp1067
g37
s(S'5400'
p1068
S'Baden 1 Postautodienst'
p1069
tp1070
g4
s(S'3155'
p1071
S'Helgisried-Rohrbach'
p1072
tp1073
g41
s(S'1260'
p1074
VNyon car postal La Côte-Ju
p1075
tp1076
g192
s(S'3000'
p1077
S'Bern 6'
p1078
tp1079
g4
s(S'8866'
p1080
VZiegelbrücke Bahnhof SBB
p1081
tp1082
g4
s(S'6460'
p1083
VAltdorf UR 2 Rynächt
p1084
tp1085
g4
s(S'1219'
p1086
S'Lignon B&V GK 2'
p1087
tp1088
g4
s(S'1933'
p1089
S'Chamoille (Sembrancher)'
p1090
tp1091
g150
s(S'6558'
p1092
S'Cabbiolo'
p1093
tp1094
g192
s(S'1510'
p1095
S'Moudon Caserne'
p1096
tp1097
g4
s(S'9100'
p1098
S'Herisau 1'
p1099
tp1100
g4
s(S'6000'
p1101
S'Luzern 10'
p1102
tp1103
g4
s(S'9113'
p1104
S'Degersheim Zustellung'
p1105
tp1106
g4
s(S'1966'
p1107
S'Ayent'
p1108
tp1109
g17
s(S'7136'
p1110
VObersaxen Friggahüs
p1111
tp1112
g41
s(S'5046'
p1113
S'Schmiedrued-Walde'
p1114
tp1115
g17
s(S'3429'
p1116
VHöchstetten-Hellsau
p1117
tp1118
g17
s(S'8280'
p1119
S'Kreuzlingen 2'
p1120
tp1121
g4
s(S'8153'
p1122
VRümlang Tankstelle Shell
p1123
tp1124
g4
s(S'1110'
p1125
S'Morges 2'
p1126
tp1127
g4
s(S'8867'
p1128
S'Niederurnen Dist Fil'
p1129
tp1130
g4
s(S'6023'
p1131
S'Rothenburg DIST BA'
p1132
tp1133
g4
s(S'5312'
p1134
VDöttingen Zustellung
p1135
tp1136
g4
s(S'1880'
p1137
S'Bex Distribution'
p1138
tp1139
g4
s(S'8907'
p1140
S'Wettswil Zustellung'
p1141
tp1142
g4
s(S'4410'
p1143
S'Liestal Zustellung'
p1144
tp1145
g4
s(S'1920'
p1146
S'Martigny 2'
p1147
tp1148
g4
s(S'1964'
p1149
S'Conthey Distribution'
p1150
tp1151
g4
s(S'3415'
p1152
VHasle-Rüegsau
p1153
tp1154
g17
s(S'9430'
p1155
S'St. Margrethen SG Zust'
p1156
tp1157
g192
s(S'1026'
p1158
S'Echandens-Denges'
p1159
tp1160
S's'
p1161
s(S'3000'
p1162
S'Bern 13'
p1163
tp1164
g4
s(S'8500'
p1165
S'Frauenfeld 1'
p1166
tp1167
g4
s(S'6015'
p1168
VLuzern Reussbühl Zustellung
p1169
tp1170
g4
s(S'7302'
p1171
S'Landquart Zustellung'
p1172
tp1173
g4
s(S'3672'
p1174
S'Aeschlen b. Oberdiessbach'
p1175
tp1176
g17
s(S'2900'
p1177
S'Porrentruy Caserne'
p1178
tp1179
g4
s(S'3550'
p1180
S'Langnau i. E. Zustellung'
p1181
tp1182
g4
s(S'4123'
p1183
S'Allschwil Lindenplatz'
p1184
tp1185
g192
s(S'6000'
p1186
S'Luzern 31'
p1187
tp1188
g4
s(S'8554'
p1189
VMüllheim-Wigoltingen
p1190
tp1191
g37
s(S'7000'
p1192
S'Chur B&V GK 2'
p1193
tp1194
g4
s(S'8126'
p1195
S'Zumikon Zustellung'
p1196
tp1197
g4
s(S'6900'
p1198
S'Lugano MailSource'
p1199
tp1200
g284
s(S'6043'
p1201
S'Adligenswil Zustellung'
p1202
tp1203
g4
s(S'3713'
p1204
S'Reichenbach im Kandertal'
p1205
tp1206
g41
s(S'2500'
p1207
S'Biel/Bienne 10'
p1208
tp1209
g4
s(S'1971'
p1210
S'Champlan (Grimisuat)'
p1211
tp1212
g84
s(S'8895'
p1213
S'Flumserberg Portels'
p1214
tp1215
g41
s(S'8180'
p1216
VBülach Zustellung
p1217
tp1218
g4
s(S'1762'
p1219
S'Givisiez Dist Ba'
p1220
tp1221
g4
s(S'5506'
p1222
VMägenwil GKA
p1223
tp1224
g163
s(S'2500'
p1225
S'Biel/Bienne 3'
p1226
tp1227
g4
s(S'1854'
p1228
S'Leysin Distribution'
p1229
tp1230
g4
s(S'8706'
p1231
S'Meilen Zustellung'
p1232
tp1233
g4
s(S'6182'
p1234
S'Escholzmatt Zustellung'
p1235
tp1236
g4
s(S'1063'
p1237
S'Chapelle-sur-Moudon'
p1238
tp1239
g37
s(S'5506'
p1240
VMägenwil PL Hub SK Blitz
p1241
tp1242
g4
s(S'1820'
p1243
S'Montreux 1'
p1244
tp1245
g4
s(S'3000'
p1246
VBern Brünnen
p1247
tp1248
g163
s(S'3322'
p1249
VUrtenen-Schönbühl Zust
p1250
tp1251
g17
s(S'5242'
p1252
S'Birr-Lupfig'
p1253
tp1254
g17
s(S'3900'
p1255
S'Brig Zustellung'
p1256
tp1257
g4
s(S'1806'
p1258
VSt-Légier/Blonay Dist
p1259
tp1260
g163
s(S'1870'
p1261
S'Monthey 1 Distribution'
p1262
tp1263
g4
s(S'1510'
p1264
S'Moudon Distribution'
p1265
tp1266
g4
s(S'1965'
p1267
VMonteiller (Savièse)
p1268
tp1269
S'4'
p1270
s(S'3000'
p1271
VBern 7 Bärenplatz
p1272
tp1273
g4
s(S'8404'
p1274
S'Stadel (Winterthur)'
p1275
tp1276
g37
s(S'1806'
p1277
VSt-Légier-La Chiésaz
p1278
tp1279
g41
s(S'8268'
p1280
S'Mannenbach-Salenstein'
p1281
tp1282
g150
s(S'1962'
p1283
S'Pont-de-la-Morge (Sion)'
p1284
tp1285
g41
s(S'3853'
p1286
S'Niederried b. Interlaken'
p1287
tp1288
g41
s(S'1200'
p1289
VGenève 19
p1290
tp1291
g4
s(S'1752'
p1292
VVillars-sur-Glâne 1
p1293
tp1294
g4
s(S'1932'
p1295
S'Les Valettes (Bovernier)'
p1296
tp1297
g37
s(S'1400'
p1298
S'Yverdon 2'
p1299
tp1300
g4
s(S'6060'
p1301
S'Sarnen 2 Zustellung'
p1302
tp1303
g4
s(S'1003'
p1304
S'Lausanne Terreaux PF'
p1305
tp1306
g163
s(S'6850'
p1307
S'Mendrisio Stazione'
p1308
tp1309
g192
s(S'6645'
p1310
S'Brione sopra Minusio'
p1311
tp1312
g41
s(S'8404'
p1313
S'Reutlingen (Winterthur)'
p1314
tp1315
g150
s(S'1680'
p1316
S'Romont FR Distribution'
p1317
tp1318
g4
s(S'1200'
p1319
VGenève Centre logistique
p1320
tp1321
S's'
p1322
s(S'1988'
p1323
S'Thyon-Les Collons'
p1324
tp1325
g17
s(S'1215'
p1326
VGenève 15 Aéroport
p1327
tp1328
g4
s(S'7302'
p1329
S'Landquart Dist Ba'
p1330
tp1331
g4
s(S'5405'
p1332
VBaden Täfern Gewerbe
p1333
tp1334
g163
s(S'6830'
p1335
S'Chiasso 1'
p1336
tp1337
g4
s(S'7430'
p1338
S'Thusis Zustellung'
p1339
tp1340
g4
s(S'8810'
p1341
S'Horgen 1'
p1342
tp1343
g4
s(S'1432'
p1344
S'Belmont-sur-Yverdon'
p1345
tp1346
g150
s(S'8260'
p1347
S'Stein am Rhein 1 Zustellung'
p1348
tp1349
g4
s(S'1669'
p1350
S"Les Sciernes-d'Albeuve"
p1351
tp1352
g558
s(S'8200'
p1353
S'Schaffhausen 1'
p1354
tp1355
g4
s(S'8050'
p1356
VZürich 50 Zustellung
p1357
tp1358
g4
s(S'9215'
p1359
VSchönenberg an der Thur
p1360
tp1361
g37
s(S'1040'
p1362
S'Echallens Distribution'
p1363
tp1364
g4
s(S'8570'
p1365
S'Weinfelden Zustellung'
p1366
tp1367
g4
s(S'1200'
p1368
VGenève 8
p1369
tp1370
g4
s(S'2500'
p1371
S'Biel/Bienne 1 Zustellung'
p1372
tp1373
g4
s(S'8134'
p1374
S'Adliswil 1 Zustellung'
p1375
tp1376
g4
s(S'6600'
p1377
S'Locarno 3 Stazione Autopost'
p1378
tp1379
g4
s(S'6500'
p1380
S'Bellinzona 2'
p1381
tp1382
g4
s(S'5200'
p1383
S'Brugg AG Kaserne'
p1384
tp1385
g4
s(S'4031'
p1386
VBasel Universitätsspital
p1387
tp1388
g41
s(S'8200'
p1389
S'Schaffhausen PF'
p1390
tp1391
g163
s(S'8902'
p1392
S'Urdorf Dist Ba'
p1393
tp1394
g4
s(S'4125'
p1395
S'Riehen 1'
p1396
tp1397
g4
s(S'8452'
p1398
S'Adlikon b. Andelfingen'
p1399
tp1400
g41
s(S'6010'
p1401
S'Kriens Contact Center'
p1402
tp1403
g284
s(S'6000'
p1404
S'Luzern Kaserne'
p1405
tp1406
g4
s(S'4313'
p1407
VMöhlin Zustellung
p1408
tp1409
g4
s(S'1000'
p1410
VLausanne 1 Dépôt
p1411
tp1412
g4
s(S'1052'
p1413
S'Le Mont-sur-Lausanne Dist'
p1414
tp1415
g192
s(S'6000'
p1416
S'Luzern 6'
p1417
tp1418
g4
s(S'6605'
p1419
VMonte Brè sopra Locarno
p1420
tp1421
g37
s(S'7000'
p1422
S'Chur Logistikzentrum'
p1423
tp1424
g163
s(S'3930'
p1425
S'Visp Bahnhof SBB'
p1426
tp1427
g4
s(S'3303'
p1428
S'Jegenstorf Zustellung'
p1429
tp1430
g4
s(S'1694'
p1431
S'Chavannes-sous-Orsonnens'
p1432
tp1433
g150
s(S'6875'
p1434
S'Campora'
p1435
tp1436
g284
s(S'4125'
p1437
S'Riehen 1 Zustellung'
p1438
tp1439
g4
s(S'6900'
p1440
S'Lugano Stazione FSS'
p1441
tp1442
g163
s(S'8762'
p1443
S'Schwanden GL Zustellung'
p1444
tp1445
g4
s(S'1816'
p1446
S'Chailly-Montreux Dist'
p1447
tp1448
g163
s(S'3053'
p1449
VDeisswil b. Münchenbuchsee
p1450
tp1451
g17
s(S'3855'
p1452
S'Brienz BE Zustellung'
p1453
tp1454
g4
s(S'4953'
p1455
S'Schwarzenbach (Huttwil)'
p1456
tp1457
g41
s(S'1820'
p1458
S'Montreux 1 Distribution'
p1459
tp1460
g4
s(S'1162'
p1461
S'St-Prex Distribution'
p1462
tp1463
g4
s(S'6020'
p1464
VEmmenbrücke 2
p1465
tp1466
g4
s(S'8424'
p1467
S'Embrach Zustellung'
p1468
tp1469
g4
s(S'3250'
p1470
S'Lyss Kaserne'
p1471
tp1472
g4
s(S'1215'
p1473
VGenève 15 Aéroport Dépôt
p1474
tp1475
g4
s(S'5605'
p1476
S'Dottikon Zustellung'
p1477
tp1478
g4
s(S'4242'
p1479
S'Laufen Zustellung'
p1480
tp1481
g4
s(S'1200'
p1482
VGenève 12
p1483
tp1484
g4
s(S'3000'
p1485
S'Bern 22'
p1486
tp1487
g4
s(S'1630'
p1488
S'Bulle Dist Fil'
p1489
tp1490
g4
s(S'8494'
p1491
S'Bauma Zustellung'
p1492
tp1493
g4
s(S'1950'
p1494
S'Sion 1'
p1495
tp1496
g4
s(S'5630'
p1497
S'Muri AG Zustellung'
p1498
tp1499
g4
s(S'8400'
p1500
S'Winterthur 1 Zustellung'
p1501
tp1502
g4
s(S'1186'
p1503
S'Essertines-sur-Rolle'
p1504
tp1505
g333
s(S'8553'
p1506
VHüttlingen-Mettendorf
p1507
tp1508
g17
s(S'4252'
p1509
VBärschwil Dorf
p1510
tp1511
g192
s(S'3454'
p1512
S'Sumiswald Zustellung'
p1513
tp1514
g4
s(S'3538'
p1515
VRöthenbach im Emmental
p1516
tp1517
g41
s(S'4702'
p1518
S'Oensingen Hub SecurePost'
p1519
tp1520
g4
s(S'3775'
p1521
S'Lenk i. S. Zustellung'
p1522
tp1523
g4
s(S'8600'
p1524
VDübendorf 2
p1525
tp1526
g4
s(S'1033'
p1527
S'Cheseaux-sur-Lausanne'
p1528
tp1529
g333
s(S'6260'
p1530
S'Reiden Zustellung'
p1531
tp1532
g4
s(S'8008'
p1533
VZürich Tiefenbrunnen SBB
p1534
tp1535
g4
s(S'9300'
p1536
S'Wittenbach Zustellung'
p1537
tp1538
g4
s(S'8854'
p1539
S'Siebnen Zustellung'
p1540
tp1541
g4
s(S'6045'
p1542
S'Meggen Zustellung'
p1543
tp1544
g4
s(S'8580'
p1545
S'Amriswil Zustellung'
p1546
tp1547
g4
s(S'7310'
p1548
S'Bad Ragaz Zustellung'
p1549
tp1550
g4
s(S'1945'
p1551
S'Fornex (Liddes)'
p1552
tp1553
S'5'
p1554
s(S'1663'
p1555
VGruyères Vieille Ville
p1556
tp1557
g284
s(S'6939'
p1558
S'Arosio-Mugena'
p1559
tp1560
g284
s(S'3920'
p1561
S'Zermatt Zustellung'
p1562
tp1563
g4
s(S'8953'
p1564
S'Dietikon Silbern'
p1565
tp1566
g4
s(S'7536'
p1567
VSta. Maria Val Müstair
p1568
tp1569
g41
s(S'3072'
p1570
S'Ostermundigen 1'
p1571
tp1572
g4
s(S'4123'
p1573
S'Allschwil Zustellung'
p1574
tp1575
g4
s(S'1041'
p1576
S'Montaubion-Chardonney'
p1577
tp1578
g115
s(S'6017'
p1579
S'Ruswil Zustellung'
p1580
tp1581
g4
s(S'1965'
p1582
VSavièse Distribution
p1583
tp1584
g4
s(S'8302'
p1585
S'Kloten Bahnhof SBB'
p1586
tp1587
g4
s(S'1000'
p1588
S'Lausanne 21'
p1589
tp1590
g4
s(S'2800'
p1591
VDelémont car postal JU-NE
p1592
tp1593
g192
s(S'5626'
p1594
S'Hermetschwil-Staffeln'
p1595
tp1596
g41
s(S'2735'
p1597
VMalleray-Bévilard Dist
p1598
tp1599
g284
s(S'6039'
p1600
S'Root D4'
p1601
tp1602
g4
s(S'7500'
p1603
S'St. Moritz 3'
p1604
tp1605
g4
s(S'3415'
p1606
VHasle-Rüegsau Zustellung
p1607
tp1608
g4
s(S'3380'
p1609
S'Walliswil b. Niederbipp'
p1610
tp1611
g150
s(S'1200'
p1612
VGenève 6
p1613
tp1614
g4
s(S'1260'
p1615
S'Nyon 2'
p1616
tp1617
g4
s(S'3989'
p1618
S'Grafschaft'
p1619
tp1620
g284
s(S'1695'
p1621
S'Villarsel-le-Gibloux'
p1622
tp1623
g119
s(S'6900'
p1624
S'Lugano 3'
p1625
tp1626
g4
s(S'5405'
p1627
S'Baden'
p1628
tp1629
g192
s(S'3674'
p1630
S'Bleiken b. Oberdiessbach'
p1631
tp1632
g41
s(S'7084'
p1633
S'Brienz/Brinzauls GR'
p1634
tp1635
g41
s(S'8280'
p1636
S'Kreuzlingen 1 Zustellung'
p1637
tp1638
g4
s(S'8730'
p1639
S'Uznach Postauto Linth-SZ-GL'
p1640
tp1641
g4
s(S'1066'
p1642
S'Epalinges Distribution'
p1643
tp1644
g4
s(S'2500'
p1645
S'Biel/Bienne 1'
p1646
tp1647
g4
s(S'4142'
p1648
VMünchenstein Zollweiden
p1649
tp1650
g192
s(S'8606'
p1651
VNänikon Zustellung
p1652
tp1653
g4
s(S'6710'
p1654
S'Biasca Distribuzione'
p1655
tp1656
g4
s(S'1676'
p1657
S'Chavannes-les-Forts'
p1658
tp1659
g41
s(S'1926'
p1660
S'Fully Distribution'
p1661
tp1662
g4
s(S'6900'
p1663
S'Lugano 1'
p1664
tp1665
g4
s(S'8200'
p1666
S'Schaffhausen 1 Zust'
p1667
tp1668
g4
s(S'1213'
p1669
S'Petit-Lancy 2'
p1670
tp1671
g4
s(S'4571'
p1672
VLüterkofen-Ichertswil
p1673
tp1674
g17
s(S'5610'
p1675
S'Wohlen AG 2'
p1676
tp1677
g4
s(S'9217'
p1678
S'Neukirch an der Thur'
p1679
tp1680
g41
s(S'1762'
p1681
S'Givisiez PickPost'
p1682
tp1683
g163
s(S'9500'
p1684
S'Wil SG 1 Zustellung'
p1685
tp1686
g4
s(S'5000'
p1687
S'Aarau 1 Zustellung'
p1688
tp1689
g4
s(S'6850'
p1690
S'Mendrisio Distribuzione'
p1691
tp1692
g4
s(S'3780'
p1693
S'Gstaad Zustellung'
p1694
tp1695
g4
s(S'3073'
p1696
VGümligen Zustellung
p1697
tp1698
g4
s(S'8590'
p1699
S'Romanshorn Zustellung'
p1700
tp1701
g4
s(S'1020'
p1702
S'Renens VD 2'
p1703
tp1704
g4
s(S'5200'
p1705
S'Brugg AG 1 Zustellung'
p1706
tp1707
g4
s(S'3000'
p1708
S'Bern 8'
p1709
tp1710
g4
s(S'2900'
p1711
S'Porrentruy 2'
p1712
tp1713
g4
s(S'2300'
p1714
S'La Chaux-de-Fonds 1 Dist'
p1715
tp1716
g4
s(S'4142'
p1717
VMünchenstein 1
p1718
tp1719
g4
s(S'8852'
p1720
S'Altendorf B&V GK 2'
p1721
tp1722
g4
s(S'8174'
p1723
S'Stadel b. Niederglatt'
p1724
tp1725
g41
s(S'8626'
p1726
S'Ottikon (Gossau ZH)'
p1727
tp1728
g41
s(S'3800'
p1729
S'Interlaken Postauto BE Ober'
p1730
tp1731
g4
s(S'5430'
p1732
S'Wettingen 1'
p1733
tp1734
g4
s(S'6616'
p1735
S'Losone Distribuzione'
p1736
tp1737
g4
s(S'1000'
p1738
S'Lausanne 19'
p1739
tp1740
g4
s(S'3112'
p1741
S'Allmendingen b. Bern'
p1742
tp1743
g41
s(S'8400'
p1744
S'Winterthur 1 Annahme'
p1745
tp1746
g4
s(S'6500'
p1747
S'Bellinzona Distribuzione'
p1748
tp1749
g4
s(S'4102'
p1750
S'Binningen Gorenmatt'
p1751
tp1752
g192
s(S'8702'
p1753
S'Zollikon Dorf'
p1754
tp1755
g192
s(S'6055'
p1756
S'Alpnach Zustellung'
p1757
tp1758
g4
s(S'1345'
p1759
VLe Séchey
p1760
tp1761
g4
s(S'1945'
p1762
VPetit Vichères (Liddes)
p1763
tp1764
S'9'
p1765
s(S'6830'
p1766
S'Chiasso 3'
p1767
tp1768
g4
s(S'2500'
p1769
S'Biel/Bienne 8'
p1770
tp1771
g4
s(S'5313'
p1772
S'Klingnau Wiesenweg'
p1773
tp1774
g4
s(S'9602'
p1775
S'Bazenheid Zustellung'
p1776
tp1777
g4
s(S'5610'
p1778
S'Wohlen AG 1 Zustellung'
p1779
tp1780
g4
s(S'5242'
p1781
S'Birr-Lupfig Zustellung'
p1782
tp1783
g4
s(S'1400'
p1784
S'Yverdon car postal VD-Broye'
p1785
tp1786
g17
s(S'8708'
p1787
VMännedorf Zustellung
p1788
tp1789
g4
s(S'5620'
p1790
S'Bremgarten AG Kaserne'
p1791
tp1792
g4
s(S'6204'
p1793
S'Sempach Stadt'
p1794
tp1795
g163
s(S'1215'
p1796
VGenève ICC OLS
p1797
tp1798
g192
s(S'9050'
p1799
VAppenzell Enggenhütten
p1800
tp1801
g491
s(S'1933'
p1802
S'La Garde (Sembrancher)'
p1803
tp1804
g37
s(S'1000'
p1805
S'Lausanne 2'
p1806
tp1807
g4
s(S'3627'
p1808
S'Heimberg Zustellung'
p1809
tp1810
g4
s(S'6850'
p1811
S'Mendrisio Borgo'
p1812
tp1813
g192
s(S'7031'
p1814
S'Laax GR 1'
p1815
tp1816
g4
s(S'3612'
p1817
S'Steffisburg 1 Zustellung'
p1818
tp1819
g4
s(S'6210'
p1820
S'Sursee Bahnhof SBB'
p1821
tp1822
g4
s(S'1000'
p1823
S'Lausanne Distribution'
p1824
tp1825
g4
s(S'6000'
p1826
S'Luzern Altstadt'
p1827
tp1828
g4
s(S'3000'
p1829
S'Bern 15'
p1830
tp1831
g4
s(S'6600'
p1832
S'Locarno 1'
p1833
tp1834
g4
s(S'1023'
p1835
S'Crissier 2'
p1836
tp1837
g4
s(S'8620'
p1838
S'Wetzikon ZH 1'
p1839
tp1840
g4
s(S'1030'
p1841
S'Bussigny'
p1842
tp1843
g333
s(S'5620'
p1844
S'Bremgarten AG 2'
p1845
tp1846
g4
s(S'6037'
p1847
S'Root Zustellung'
p1848
tp1849
g4
s(S'4144'
p1850
S'Arlesheim Zustellung'
p1851
tp1852
g4
s(S'1000'
p1853
S'Lausanne 10'
p1854
tp1855
g4
s(S'9545'
p1856
VWängi Zustellung
p1857
tp1858
g4
s(S'8586'
p1859
VBuch b. Kümmertshausen
p1860
tp1861
g37
s(S'3416'
p1862
S'Affoltern im Emmental'
p1863
tp1864
g41
s(S'1536'
p1865
S'Combremont-le-Petit'
p1866
tp1867
g333
s(S'3818'
p1868
S'Grindelwald Zustellung'
p1869
tp1870
g4
s(S'7050'
p1871
S'Arosa Zustellung'
p1872
tp1873
g4
s(S'2720'
p1874
S'Tramelan Distribution'
p1875
tp1876
g4
s(S'5405'
p1877
S'Baden B&V GK 2'
p1878
tp1879
g4
s(S'3656'
p1880
S'Tschingel ob Gunten'
p1881
tp1882
g115
s(S'2540'
p1883
S'Grenchen 1 Zustellung'
p1884
tp1885
g4
s(S'5070'
p1886
S'Frick Zustellung'
p1887
tp1888
g4
s(S'1290'
p1889
S'Versoix Distribution'
p1890
tp1891
g4
s(S'6422'
p1892
S'Steinen Zustellung'
p1893
tp1894
g4
s(S'8965'
p1895
S'Berikon 2 Dorf'
p1896
tp1897
g4
s(S'1196'
p1898
S'Gland Dist Fil'
p1899
tp1900
g4
s(S'1920'
p1901
S'Martigny PostFinance'
p1902
tp1903
g4
s(S'6717'
p1904
S'Dangio'
p1905
tp1906
g150
s(S'6000'
p1907
S'Luzern Postauto Zentralschw'
p1908
tp1909
g4
s(S'5600'
p1910
S'Lenzburg 1'
p1911
tp1912
g4
s(S'1965'
p1913
VMayens-de-la-Zour (Savièse)
p1914
tp1915
g618
s(S'8953'
p1916
S'Dietikon 2'
p1917
tp1918
g4
s(S'1200'
p1919
VGenève 20
p1920
tp1921
g4
s(S'1308'
p1922
S'La Chaux (Cossonay)'
p1923
tp1924
g333
s(S'3858'
p1925
S'Hofstetten b. Brienz'
p1926
tp1927
g41
s(S'6343'
p1928
S'Rotkreuz Bahnhof SBB'
p1929
tp1930
g4
s(S'8903'
p1931
S'Birmensdorf ZH Zustellung'
p1932
tp1933
g4
s(S'1000'
p1934
S'Lausanne Swisscom'
p1935
tp1936
g4
s(S'1532'
p1937
VFétigny Dist Fil
p1938
tp1939
g4
s(S'9000'
p1940
S'St. Gallen 1 Annahme'
p1941
tp1942
g4
s(S'1920'
p1943
S'Martigny 1'
p1944
tp1945
g4
s(S'4800'
p1946
S'Zofingen PostFinance'
p1947
tp1948
g4
s(S'6102'
p1949
S'Malters Zustellung'
p1950
tp1951
g4
s(S'6900'
p1952
S'Lugano 2'
p1953
tp1954
g4
s(S'9014'
p1955
S'St. Gallen 14 Zustellung'
p1956
tp1957
g4
s(S'5400'
p1958
S'Baden 1'
p1959
tp1960
g4
s(S'5612'
p1961
S'Villmergen PL3'
p1962
tp1963
g4
s(S'1653'
p1964
VChâtel-sur-Montsalvens
p1965
tp1966
g150
s(S'3765'
p1967
S'Oberwil im Simmental'
p1968
tp1969
g41
s(S'1443'
p1970
S'Essert-sous-Champvent'
p1971
tp1972
g37
s(S'9400'
p1973
S'Rorschach Zustellung'
p1974
tp1975
g4
s(S'6010'
p1976
S'Kriens KC PG/GK 2'
p1977
tp1978
g4
s(S'1000'
p1979
S'Lausanne 17'
p1980
tp1981
g4
s(S'9000'
p1982
S'St. Gallen Kaserne'
p1983
tp1984
g4
s(S'8750'
p1985
S'Glarus Zustellung'
p1986
tp1987
g4
s(S'2800'
p1988
VDelémont 1 Distribution
p1989
tp1990
g4
s(S'1213'
p1991
S'Petit-Lancy Distribution'
p1992
tp1993
g4
s(S'2013'
p1994
S'Colombier NE Distribution'
p1995
tp1996
g4
s(S'4310'
p1997
S'Rheinfelden SPI Logistics A'
p1998
tp1999
g163
s(S'7250'
p2000
S'Klosters Zustellung'
p2001
tp2002
g4
s(S'9214'
p2003
VKradolf-Schönenberg
p2004
tp2005
g192
s(S'4153'
p2006
S'Reinach BL Surbaum'
p2007
tp2008
g192
s(S'5610'
p2009
S'Dintikon LCD'
p2010
tp2011
g163
s(S'1721'
p2012
S'Misery-Courtion'
p2013
tp2014
g17
s(S'7241'
p2015
VConters im Prättigau
p2016
tp2017
g41
s(S'1683'
p2018
S'Chesalles-sur-Moudon'
p2019
tp2020
g37
s(S'8903'
p2021
S'Birmensdorf ZH Kaserne'
p2022
tp2023
g4
s(S'1920'
p2024
S'Martigny Gare CFF'
p2025
tp2026
g4
s(S'1200'
p2027
VGenève Les Acacias
p2028
tp2029
g4
s(S'8852'
p2030
S'Altendorf B&V GK'
p2031
tp2032
g163
s(S'8700'
p2033
VKüsnacht ZH Zustellung
p2034
tp2035
g4
s(S'2414'
p2036
VLe Cerneux-Péquignot
p2037
tp2038
g41
s(S'1071'
p2039
S'Chexbres Distribution'
p2040
tp2041
g4
s(S'2615'
p2042
S'Montagne-de-Sonvilier'
p2043
tp2044
g150
s(S'5606'
p2045
S'Dintikon PL3'
p2046
tp2047
g4
s(S'2540'
p2048
S'Grenchen 2'
p2049
tp2050
g4
s(S'8450'
p2051
S'Andelfingen Zustellung'
p2052
tp2053
g4
s(S'9230'
p2054
S'Flawil 2 Botsberg'
p2055
tp2056
g4
s(S'3053'
p2057
VMünchenbuchsee Zustellung
p2058
tp2059
g4
s(S'1134'
p2060
VVufflens-le-Château
p2061
tp2062
g37
s(S'7500'
p2063
S'St. Moritz 1'
p2064
tp2065
g4
s(S'2900'
p2066
S'Porrentruy 1'
p2067
tp2068
g4
s(S'8032'
p2069
VZürich 32 Zustellung
p2070
tp2071
g4
s(S'7000'
p2072
S'Chur Kaserne'
p2073
tp2074
g4
s(S'1212'
p2075
S'Grand-Lancy 1'
p2076
tp2077
g4
s(S'7013'
p2078
S'Domat/Ems Zustellung'
p2079
tp2080
g4
s(S'1618'
p2081
VChâtel-St-Denis Dist
p2082
tp2083
g163
s(S'1630'
p2084
S'Bulle 2'
p2085
tp2086
g4
s(S'4310'
p2087
S'Rheinfelden PostAuto AG'
p2088
tp2089
g4
s(S'1232'
p2090
S'Confignon Cressy'
p2091
tp2092
g4
s(S'4153'
p2093
S'Reinach BL 1'
p2094
tp2095
g4
s(S'4800'
p2096
S'Zofingen B&V GK'
p2097
tp2098
g163
s(S'8212'
p2099
S'Neuhausen Rundbuck'
p2100
tp2101
g284
s(S'4800'
p2102
S'Zofingen Zustellung'
p2103
tp2104
g4
s(S'4710'
p2105
S'Balsthal Zustellung'
p2106
tp2107
g4
s(S'2500'
p2108
S'Biel/Bienne 7'
p2109
tp2110
g4
s(S'1217'
p2111
S'Meyrin 1'
p2112
tp2113
g4
s(S'4000'
p2114
S'Basel 2 Zustellung'
p2115
tp2116
g4
s(S'4133'
p2117
S'Pratteln 1'
p2118
tp2119
g4
s(S'2500'
p2120
S'Biel/Bienne 4'
p2121
tp2122
g4
s(S'4600'
p2123
S'Olten Personal'
p2124
tp2125
g163
s(S'1212'
p2126
S'Grand-Lancy 1 Distribution'
p2127
tp2128
g4
s(S'9410'
p2129
S'Heiden Zustellung'
p2130
tp2131
g4
s(S'8134'
p2132
S'Adliswil Sood'
p2133
tp2134
g192
s(S'4000'
p2135
S'Basel Postauto Nordwestschw'
p2136
tp2137
g4
s(S'9424'
p2138
S'Rheineck Zustellung'
p2139
tp2140
g4
s(S'1686'
p2141
VGrangettes-près-Romont
p2142
tp2143
g150
s(S'1200'
p2144
VGenève 1
p2145
tp2146
g4
s(S'1020'
p2147
S'Renens Gare CFF'
p2148
tp2149
g4
s(S'3977'
p2150
S'Granges VS Distribution'
p2151
tp2152
g4
s(S'3971'
p2153
S"Chermignon-d'en-Bas"
p2154
tp2155
g37
s(S'8952'
p2156
S'Schlieren DocumentServices'
p2157
tp2158
g163
s(S'5400'
p2159
S'Baden 1 Zustellung'
p2160
tp2161
g4
s(S'1860'
p2162
S'Aigle Distribution'
p2163
tp2164
g4
s(S'9442'
p2165
S'Berneck Dist Ba'
p2166
tp2167
g4
s(S'3806'
p2168
VBönigen b. Interlaken
p2169
tp2170
g41
s(S'4600'
p2171
S'Olten 2 Zustellung'
p2172
tp2173
g4
s(S'8260'
p2174
S'Stein am Rhein 1'
p2175
tp2176
g4
s(S'9112'
p2177
S'Schachen b. Herisau'
p2178
tp2179
g41
s(S'2345'
p2180
S'La Chaux-des-Breuleux'
p2181
tp2182
g150
s(S'1897'
p2183
S'Port-Valais'
p2184
tp2185
g284
s(S'3600'
p2186
S'Thun Dist Ba'
p2187
tp2188
g4
s(S'5506'
p2189
VMägenwil PL3i
p2190
tp2191
g4
s(S'5722'
p2192
VGränichen Zustellung
p2193
tp2194
g4
s(S'1260'
p2195
S'Nyon Gare CFF'
p2196
tp2197
g4
s(S'3283'
p2198
S'Niederried b. Kallnach'
p2199
tp2200
g37
s(S'1965'
p2201
VLa Muraz (Savièse)
p2202
tp2203
g284
s(S'1920'
p2204
S'Martigny 1 Distribution'
p2205
tp2206
g4
s(S'7436'
p2207
S'Medels im Rheinwald'
p2208
tp2209
g41
s(S'7000'
p2210
S'Chur B&V GK'
p2211
tp2212
g163
s(S'1000'
p2213
S'Lausanne CT'
p2214
tp2215
g284
s(S'5430'
p2216
S'Wettingen 3'
p2217
tp2218
g4
s(S'1000'
p2219
S'Lausanne 23'
p2220
tp2221
g4
s(S'6010'
p2222
S'Kriens Logistikzentrum'
p2223
tp2224
g284
s(S'6130'
p2225
S'Willisau Zustellung'
p2226
tp2227
g4
s(S'3757'
p2228
S'Schwenden im Diemtigtal'
p2229
tp2230
g41
s(S'5200'
p2231
S'Brugg AG 1'
p2232
tp2233
g4
s(S'9220'
p2234
S'Bischofszell Zustellung'
p2235
tp2236
g4
s(S'6432'
p2237
S'Rickenbach b. Schwyz'
p2238
tp2239
g41
s(S'3250'
p2240
S'Lyss Zustellung'
p2241
tp2242
g4
s(S'8580'
p2243
S'Hagenwil b. Amriswil'
p2244
tp2245
g17
s(S'6460'
p2246
S'Altdorf UR 2'
p2247
tp2248
g4
s(S'9435'
p2249
S'Heerbrugg Zustellung'
p2250
tp2251
g4
s(S'8602'
p2252
VWangen b. Dübendorf
p2253
tp2254
g41
s(S'1630'
p2255
S'Bulle 1 Distribution'
p2256
tp2257
g4
s(S'6170'
p2258
VSchüpfheim Zustellung
p2259
tp2260
g4
s(S'6010'
p2261
S'Kriens 2 Sternmatt'
p2262
tp2263
g4
s(S'1148'
p2264
S'Chavannes-le-Veyron'
p2265
tp2266
g150
s(S'4663'
p2267
S'Aarburg Zustellung'
p2268
tp2269
g4
s(S'2800'
p2270
VDelémont 1
p2271
tp2272
g4
s(S'6500'
p2273
S'Bellinzona VZ'
p2274
tp2275
S's'
p2276
s(S'3000'
p2277
S'Bern 71 CS PZ'
p2278
tp2279
g4
s(S'7741'
p2280
S'S. Carlo (Poschiavo)'
p2281
tp2282
g41
s(S'8352'
p2283
S'Ricketwil (Winterthur)'
p2284
tp2285
g214
s(S'4900'
p2286
S'Langenthal 1 Zustellung'
p2287
tp2288
g4
s(S'1450'
p2289
S'Ste-Croix Distribution'
p2290
tp2291
g4
s(S'6593'
p2292
S'Cadenazzo Distribuzione'
p2293
tp2294
g4
s(S'3715'
p2295
S'Adelboden Zustellung'
p2296
tp2297
g4
s(S'6500'
p2298
S'Bellinzona Stazione FFS'
p2299
tp2300
g4
s(S'6110'
p2301
S'Wolhusen Zustellung'
p2302
tp2303
g4
s(S'1200'
p2304
VGenève 2 Cornavin Dépôt
p2305
tp2306
g4
s(S'8808'
p2307
VPfäffikon SZ Zustellung
p2308
tp2309
g4
s(S'4900'
p2310
S'Langenthal 1'
p2311
tp2312
g4
s(S'1032'
p2313
S'Romanel-sur-Lausanne Shell'
p2314
tp2315
g4
s(S'3000'
p2316
S'Bern 25'
p2317
tp2318
g4
s(S'2710'
p2319
S'Tavannes Distribution'
p2320
tp2321
g4
s(S'6203'
p2322
S'Sempach Bahnhof GK'
p2323
tp2324
g4
s(S'6830'
p2325
S'Chiasso 1 ZF'
p2326
tp2327
g4
s(S'1950'
p2328
S'Sion 2'
p2329
tp2330
g4
s(S'3274'
p2331
VBühl b. Aarberg
p2332
tp2333
g150
s(S'1800'
p2334
S'Vevey 1'
p2335
tp2336
g4
s(S'1723'
p2337
S'Marly 1'
p2338
tp2339
g4
s(S'2206'
p2340
S'Les Geneveys-sur-Coffrane'
p2341
tp2342
g41
s(S'8955'
p2343
S'Oetwil an der Limmat'
p2344
tp2345
g41
s(S'1000'
p2346
S'Lausanne 12'
p2347
tp2348
g4
s(S'4500'
p2349
S'Solothurn Bahnhof SBB'
p2350
tp2351
g4
s(S'8600'
p2352
VDübendorf 1
p2353
tp2354
g4
s(S'5400'
p2355
S'Baden IM'
p2356
tp2357
g163
s(S'4800'
p2358
S'Zofingen Bahnhof SBB'
p2359
tp2360
g4
s(S'3000'
p2361
S'Bern 1 Schanzenpost'
p2362
tp2363
g4
s(S'3762'
p2364
S'Erlenbach im Simmental'
p2365
tp2366
g41
s(S'6133'
p2367
S'Hergiswil b. Willisau'
p2368
tp2369
g192
s(S'5312'
p2370
VDöttingen-Klingnau
p2371
tp2372
g4
s(S'4704'
p2373
S'Niederbipp PL3'
p2374
tp2375
g4
s(S'4204'
p2376
S'Himmelried PostAuto AG'
p2377
tp2378
g4
s(S'1530'
p2379
S'Payerne Caserne'
p2380
tp2381
g4
s(S'8280'
p2382
S'Kreuzlingen 3'
p2383
tp2384
g4
s(S'2900'
p2385
S'Porrentruy 1 Distribution'
p2386
tp2387
g4
s(S'1214'
p2388
S'Vernier Distribution'
p2389
tp2390
g4
s(S'8307'
p2391
S'Effretikon Bahnhof SBB'
p2392
tp2393
g4
s(S'1721'
p2394
S'Cournillens'
p2395
tp2396
g284
s(S'4133'
p2397
S'Pratteln 1 Zustellung'
p2398
tp2399
g4
s(S'1200'
p2400
VGenève 26
p2401
tp2402
g4
s(S'3000'
p2403
S'Bern 14'
p2404
tp2405
g4
s(S'8580'
p2406
S'Biessenhofen'
p2407
tp2408
g284
s(S'8050'
p2409
VZürich Nord VZ
p2410
tp2411
g4
s(S'3600'
p2412
S'Thun 2 Zustellung'
p2413
tp2414
g4
s(S'3177'
p2415
S'Laupen BE Zustellung'
p2416
tp2417
g4
s(S'6000'
p2418
S'Luzern 15'
p2419
tp2420
g4
s(S'1890'
p2421
S'St-Maurice Caserne'
p2422
tp2423
g4
s(S'8712'
p2424
VStäfa Zustellung
p2425
tp2426
g4
s(S'5000'
p2427
S'Aarau Altstadt'
p2428
tp2429
g4
s(S'1965'
p2430
VChandolin (Savièse)
p2431
tp2432
g150
s(S'1110'
p2433
S'Morges Distribution'
p2434
tp2435
g4
s(S'1032'
p2436
S'Romanel-sur-Lausanne'
p2437
tp2438
g333
s(S'1700'
p2439
VFribourg 1 Dépôt
p2440
tp2441
g4
s(S'6900'
p2442
S'Lugano 4'
p2443
tp2444
g4
s(S'8600'
p2445
VDübendorf Kaserne
p2446
tp2447
g4
s(S'1700'
p2448
S'Fribourg 1'
p2449
tp2450
g4
s(S'4800'
p2451
S'Zofingen KC PK/GK 3'
p2452
tp2453
g4
s(S'1200'
p2454
VGenève 3
p2455
tp2456
g4
s(S'5430'
p2457
S'Wettingen 1 Zustellung'
p2458
tp2459
g4
s(S'1200'
p2460
VGenève 11
p2461
tp2462
g4
s(S'8406'
p2463
S'Winterthur 6 Zustellung'
p2464
tp2465
g4
s(S'8427'
p2466
S'Rorbas-Freienstein'
p2467
tp2468
g17
s(S'8910'
p2469
S'Affoltern am A. Zustellung'
p2470
tp2471
g4
s(S'1512'
p2472
S'Chavannes-sur-Moudon'
p2473
tp2474
g333
s(S'8640'
p2475
S'Rapperswil SG Zustellung'
p2476
tp2477
g4
s(S'3773'
p2478
S'Matten (St. Stephan)'
p2479
tp2480
g41
s(S'8152'
p2481
S'Glattbrugg Zustellung'
p2482
tp2483
g4
s(S'4106'
p2484
S'Therwil Zustellung'
p2485
tp2486
g4
s(S'1983'
p2487
S'Lanna'
p2488
tp2489
g214
s(S'6010'
p2490
S'Kriens 1'
p2491
tp2492
g4
s(S'8422'
p2493
S'Pfungen PL3'
p2494
tp2495
g4
s(S'1400'
p2496
S'Yverdon Distribution'
p2497
tp2498
g4
s(S'8887'
p2499
S'Mels Zustellung'
p2500
tp2501
g4
s(S'3400'
p2502
S'Burgdorf Zustellung'
p2503
tp2504
g4
s(S'3294'
p2505
VBüren an der Aare Zust
p2506
tp2507
g284
s(S'9470'
p2508
VBuchs SG Räfis
p2509
tp2510
g17
s(S'8330'
p2511
VPfäffikon ZH Zustellung
p2512
tp2513
g4
s(S'8400'
p2514
S'Winterthur Kaserne'
p2515
tp2516
g4
s(S'6802'
p2517
S'Rivera Caserma'
p2518
tp2519
g4
s(S'1538'
p2520
S'Treytorrens (Payerne)'
p2521
tp2522
g333
s(S'6595'
p2523
S'Riazzino Distribuzione'
p2524
tp2525
g4
s(S'1820'
p2526
S'Montreux 2'
p2527
tp2528
g4
s(S'4102'
p2529
S'Binningen 1 Zustellung'
p2530
tp2531
g4
s(S'5506'
p2532
VMägenwil HUB
p2533
tp2534
g4
s(S'8488'
p2535
S'Turbenthal Zustellung'
p2536
tp2537
g4
s(S'1905'
p2538
VDorénaz PostAuto AG Schweiz
p2539
tp2540
g4
s(S'8180'
p2541
VBülach Kaserne
p2542
tp2543
g4
s(S'3930'
p2544
S'Visp Verkaufssupport'
p2545
tp2546
g163
s(S'3000'
p2547
S'Bern Postauto BE-FB-SO'
p2548
tp2549
g4
s(S'3400'
p2550
S'Burgdorf 1'
p2551
tp2552
g4
s(S'8722'
p2553
S'Kaltbrunn Zustellung'
p2554
tp2555
g4
s(S'6403'
p2556
VKüssnacht am Rigi Zust
p2557
tp2558
g192
s(S'8730'
p2559
S'Uznach Zustellung'
p2560
tp2561
g4
s(S'1000'
p2562
S'Lausanne 8'
p2563
tp2564
g4
s(S'6330'
p2565
S'Cham 2'
p2566
tp2567
g4
s(S'7325'
p2568
S'Schwendi im Weisstannental'
p2569
tp2570
g41
s(S'3000'
p2571
S'Bern 31'
p2572
tp2573
g4
s(S'8362'
p2574
S'Bichelsee-Balterswil'
p2575
tp2576
g163
s(S'3900'
p2577
S'Brig Postauto Oberwallis'
p2578
tp2579
g4
s(S'8305'
p2580
S'Dietlikon Shell'
p2581
tp2582
g4
s(S'9320'
p2583
S'Arbon Zustellung'
p2584
tp2585
g4
s(S'1820'
p2586
S'Territet-Veytaux'
p2587
tp2588
g17
s(S'8645'
p2589
S'Jona Buech Gewerbe'
p2590
tp2591
g163
s(S'1200'
p2592
VGenève 18
p2593
tp2594
g4
s(S'4800'
p2595
S'Zofingen KC PK 2'
p2596
tp2597
g4
s(S'8482'
p2598
S'Sennhof (Winterthur)'
p2599
tp2600
g41
s(S'1443'
p2601
S'Villars-sous-Champvent'
p2602
tp2603
g115
s(S'8050'
p2604
VZürich Postauto Zürich
p2605
tp2606
g4
s(S'6370'
p2607
S'Stans Kaserne'
p2608
tp2609
g4
s(S'9508'
p2610
VWeingarten-Kalthäusern
p2611
tp2612
g41
s(S'1860'
p2613
S'Aigle Gare CFF'
p2614
tp2615
g4
s(S'5012'
p2616
VSchönenwerd Zustellung
p2617
tp2618
g4
s(S'1033'
p2619
S'Cheseaux-Laus Distribution'
p2620
tp2621
g4
s(S'4104'
p2622
S'Oberwil BL Zustellung'
p2623
tp2624
g4
s(S'2520'
p2625
S'La Neuveville Distribution'
p2626
tp2627
g4
s(S'3436'
p2628
VZollbrück Zustellung
p2629
tp2630
g4
s(S'6690'
p2631
S'S. Carlo (Val Bavona)'
p2632
tp2633
g37
s(S'1945'
p2634
S'Chez Petit (Liddes)'
p2635
tp2636
g37
s(S'1933'
p2637
S'Vens (Sembrancher)'
p2638
tp2639
g119
s(S'5405'
p2640
S'Baden B&V GK'
p2641
tp2642
g163
s(S'4665'
p2643
S'Oftringen 1'
p2644
tp2645
g4
s(S'4852'
p2646
S'Rothrist Zustellung'
p2647
tp2648
g4
s(S'1400'
p2649
S'Yverdon'
p2650
tp2651
g17
s(S'3110'
p2652
VMünsingen Zustellung
p2653
tp2654
g4
s(S'6430'
p2655
S'Schwyz Kantonalbank'
p2656
tp2657
g163
s(S'6440'
p2658
S'Brunnen Zustellung'
p2659
tp2660
g4
s(S'6000'
p2661
S'Luzern Bahnhof SBB'
p2662
tp2663
g4
s(S'3537'
p2664
S'Eggiwil Zustellung'
p2665
tp2666
g4
s(S'8902'
p2667
S'Urdorf Sortierstelle'
p2668
tp2669
g163
s(S'1700'
p2670
S'Fribourg 1 Distribution'
p2671
tp2672
g4
s(S'1000'
p2673
S'Lausanne 7'
p2674
tp2675
g4
s(S'2300'
p2676
S'La Chaux-de-Fonds 1'
p2677
tp2678
g4
s(S'4310'
p2679
S'Rheinfelden Bahnhof SBB'
p2680
tp2681
g4
s(S'1945'
p2682
S'Les Moulins VS (Liddes)'
p2683
tp2684
S'6'
p2685
s(S'1296'
p2686
S'Coppet Distribution'
p2687
tp2688
g4
s(S'8953'
p2689
S'Dietikon Bahnhof SBB'
p2690
tp2691
g4
s(S'8636'
p2692
S'Wald ZH Zustellung'
p2693
tp2694
g4
s(S'3700'
p2695
S'Spiezwiler'
p2696
tp2697
g192
s(S'3550'
p2698
S'Langnau im Emmental'
p2699
tp2700
g41
s(S'7062'
p2701
S'Passugg'
p2702
tp2703
g41
s(S'1052'
p2704
S'Le Mont-sur-Lausanne'
p2705
tp2706
g333
s(S'9630'
p2707
S'Wattwil Zustellung'
p2708
tp2709
g4
s(S'1450'
p2710
S'La Sagne (Ste-Croix)'
p2711
tp2712
g150
s(S'4665'
p2713
S'Oftringen 1 Zustellung'
p2714
tp2715
g4
s(S'3271'
p2716
S'Radelfingen b. Aarberg'
p2717
tp2718
g41
s(S'8820'
p2719
VWädenswil Bahnhof SBB
p2720
tp2721
g4
s(S'5620'
p2722
S'Bremgarten AG 1'
p2723
tp2724
g4
s(S'4410'
p2725
S'Liestal Bahnhof SBB'
p2726
tp2727
g4
s(S'2074'
p2728
S'Marin-Epagnier Distribution'
p2729
tp2730
g4
s(S'4125'
p2731
S'Riehen 2'
p2732
tp2733
g4
s(S'1113'
p2734
S'St-Saphorin-sur-Morges'
p2735
tp2736
g333
s(S'3123'
p2737
S'Belp Zustellung'
p2738
tp2739
g4
s(S'4053'
p2740
S'Basel Shell Dreispitz'
p2741
tp2742
g4
s(S'1920'
p2743
S'Martigny PF 331-130'
p2744
tp2745
g4
s(S'9463'
p2746
S'Oberriet SG Zustellung'
p2747
tp2748
g4
s(S'5200'
p2749
S'Brugg AG 3'
p2750
tp2751
g4
s(S'6162'
p2752
S'Entlebuch Zustellung'
p2753
tp2754
g4
s(S'6995'
p2755
S'Molinazzo di Monteggio'
p2756
tp2757
g37
s(S'5600'
p2758
S'Lenzburg Bahnhof SBB'
p2759
tp2760
g4
s(S'6000'
p2761
S'Luzern 16'
p2762
tp2763
g4
s(S'9494'
p2764
S'Schaan Betriebszentrum'
p2765
tp2766
g163
s(S'1992'
p2767
S'La Vernaz (Les Agettes)'
p2768
tp2769
g214
s(S'3855'
p2770
S'Schwanden b. Brienz'
p2771
tp2772
g115
s(S'7503'
p2773
S'Samedan Zustellung'
p2774
tp2775
g4
s(S'1222'
p2776
VVésenaz Distribution
p2777
tp2778
g4
s(S'4133'
p2779
S'Pratteln SPI Logistics'
p2780
tp2781
g163
s(S'1412'
p2782
S'Valeyres-sous-Ursins'
p2783
tp2784
g37
s(S'8340'
p2785
S'Hinwil Zustellung'
p2786
tp2787
g4
s(S'3000'
p2788
S'Bern 90'
p2789
tp2790
g4
s(S'5600'
p2791
S'Lenzburg 2'
p2792
tp2793
g4
s(S'1374'
p2794
S'Corcelles-sur-Chavornay'
p2795
tp2796
g333
s(S'8887'
p2797
S'Mels Kaserne'
p2798
tp2799
g4
s(S'6052'
p2800
S'Hergiswil NW Zustellung'
p2801
tp2802
g4
s(S'1880'
p2803
S'Bex Dist Fil'
p2804
tp2805
g4
s(S'1274'
p2806
S'Signy-Centre'
p2807
tp2808
g17
s(S'6020'
p2809
VEmmenbrücke 1
p2810
tp2811
g4
s(S'8630'
p2812
VRüti Bahnhof SBB
p2813
tp2814
g4
s(S'1523'
p2815
VGranges-près-Marnand
p2816
tp2817
g333
s(S'3800'
p2818
S'Interlaken Zustellung'
p2819
tp2820
g4
s(S'3000'
p2821
S'Bern 23'
p2822
tp2823
g4
s(S'8302'
p2824
S'Kloten Kaserne'
p2825
tp2826
g4
s(S'2340'
p2827
S'Le Noirmont Distribution'
p2828
tp2829
g4
s(S'1095'
p2830
S'Lutry Distribution'
p2831
tp2832
g4
s(S'4153'
p2833
S'Reinach BL Zustellung'
p2834
tp2835
g4
s(S'8952'
p2836
S'Schlieren Zustellung'
p2837
tp2838
g4
s(S'1006'
p2839
S"Lausanne Parking d'Ouchy"
p2840
tp2841
g163
s(S'3000'
p2842
S'Bern 60 UPD'
p2843
tp2844
g4
s(S'6020'
p2845
VEmmenbrücke 1 Zustellung
p2846
tp2847
g4
s(S'1000'
p2848
S'Lausanne 14'
p2849
tp2850
g4
s(S'6000'
p2851
S'Luzern 1 Annahme'
p2852
tp2853
g4
s(S'2715'
p2854
VChâtelat-Monible
p2855
tp2856
g17
s(S'4123'
p2857
S'Allschwil Dorf'
p2858
tp2859
g192
s(S'1092'
p2860
S'Belmont-sur-Lausanne'
p2861
tp2862
g333
s(S'2740'
p2863
S'Moutier 1 Distribution'
p2864
tp2865
g4
s(S'6390'
p2866
S'Engelberg Zustellung'
p2867
tp2868
g4
s(S'4310'
p2869
S'Rheinfelden 1 Zustellung'
p2870
tp2871
g4
s(S'9200'
p2872
S'Gossau SG 2'
p2873
tp2874
g4
s(S'1700'
p2875
S'Fribourg PostFinance Fil.'
p2876
tp2877
g4
s(S'6000'
p2878
S'Luzern 11'
p2879
tp2880
g4
s(S'8800'
p2881
S'Thalwil Zustellung'
p2882
tp2883
g4
s(S'6600'
p2884
S'Locarno Distribuzione'
p2885
tp2886
g4
s(S'9230'
p2887
S'Flawil 1'
p2888
tp2889
g4
s(S'8253'
p2890
S'Diessenhofen Zustellung'
p2891
tp2892
g4
s(S'8897'
p2893
S'Flumserberg Tannenheim'
p2894
tp2895
g41
s(S'3075'
p2896
S'Vielbringen b. Worb'
p2897
tp2898
g214
s(S'3956'
p2899
S'Feschel'
p2900
tp2901
g192
s(S'6430'
p2902
S'Schwyz Zustellung'
p2903
tp2904
g4
s(S'8280'
p2905
S'Kreuzlingen 1'
p2906
tp2907
g4
s(S'1110'
p2908
S'Morges 3'
p2909
tp2910
g4
s(S'5000'
p2911
S'Aarau 1'
p2912
tp2913
g4
s(S'6000'
p2914
S'Luzern 1 PF'
p2915
tp2916
g4
s(S'4800'
p2917
S'Zofingen KC PK/GK 5'
p2918
tp2919
g4
s(S'3854'
p2920
S'Oberried am Brienzersee'
p2921
tp2922
g41
s(S'3860'
p2923
S'Meiringen Zustellung'
p2924
tp2925
g4
s(S'8405'
p2926
S'Winterthur 5 Zustellung'
p2927
tp2928
g4
s(S'3661'
p2929
S'Uetendorf Zustellung'
p2930
tp2931
g4
s(S'6911'
p2932
S"Campione d'Italia"
p2933
tp2934
g41
s(S'9030'
p2935
S'Gaiserwald'
p2936
tp2937
g17
s(S'1700'
p2938
S'Fribourg Caserne'
p2939
tp2940
g4
s(S'2540'
p2941
S'Grenchen 1'
p2942
tp2943
g4
s(S'4112'
p2944
VBättwil-Flüh
p2945
tp2946
g17
s(S'6330'
p2947
S'Cham Zustellung'
p2948
tp2949
g4
s(S'8240'
p2950
S'Thayngen Zustellung'
p2951
tp2952
g4
s(S'6780'
p2953
S'Airolo Caserma'
p2954
tp2955
g4
s(S'1200'
p2956
VGenève 13
p2957
tp2958
g4
s(S'6900'
p2959
S'Lugano 6'
p2960
tp2961
g4
s(S'6593'
p2962
S'Cadenazzo Dist Ba'
p2963
tp2964
g4
s(S'1020'
p2965
S'Renens VD 1 Distribution'
p2966
tp2967
g4
s(S'8965'
p2968
S'Berikon 1 Zustellung'
p2969
tp2970
g4
s(S'3657'
p2971
S'Schwanden (Sigriswil)'
p2972
tp2973
g41
s(S'1200'
p2974
VGenève 17
p2975
tp2976
g4
s(S'8800'
p2977
S'Thalwil Bahnhof SBB'
p2978
tp2979
g4
s(S'4106'
p2980
S'Therwil Shell'
p2981
tp2982
g4
s(S'4303'
p2983
VKaiseraugst Liebrüti
p2984
tp2985
g192
s(S'3000'
p2986
S'Bern 94 UBS'
p2987
tp2988
g4
s(S'3400'
p2989
S'Burgdorf Filiale'
p2990
tp2991
g163
s(S'8050'
p2992
VZürich Dist Ba
p2993
tp2994
g4
s(S'1870'
p2995
S'Monthey 2'
p2996
tp2997
g4
s(S'1912'
p2998
S'Montagnon (Leytron)'
p2999
tp3000
g115
s(S'7505'
p3001
S'Celerina/Schlarigna'
p3002
tp3003
g41
s(S'5600'
p3004
S'Lenzburg Zustellung'
p3005
tp3006
g4
s(S'8212'
p3007
S'Neuhausen am Rheinfall 1'
p3008
tp3009
g4
s(S'4450'
p3010
S'Sissach Zustellung'
p3011
tp3012
g4
s(S'3463'
p3013
VHäusernmoos im Emmental
p3014
tp3015
g41
s(S'6000'
p3016
S'Luzern Zustellung'
p3017
tp3018
g4
s(S'1267'
p3019
S'Vich-Coinsins'
p3020
tp3021
g17
s(S'4665'
p3022
S'Oftringen SPN'
p3023
tp3024
g163
s(S'1945'
p3025
S'Fontaine Dessous (Liddes)'
p3026
tp3027
g119
s(S'3210'
p3028
S'Kerzers Zustellung'
p3029
tp3030
g4
s(S'6500'
p3031
S'Bellinzona Caserma'
p3032
tp3033
g4
s(S'1213'
p3034
S'Petit-Lancy 1'
p3035
tp3036
g4
s(S'1145'
p3037
VBière Caserne
p3038
tp3039
g4
s(S'6162'
p3040
S'Finsterwald b. Entlebuch'
p3041
tp3042
g17
s(S'9494'
p3043
S'Schaan Zustellung'
p3044
tp3045
g4
s(S'5726'
p3046
S'Unterkulm Zustellung'
p3047
tp3048
g4
s(S'6593'
p3049
S'Cadenazzo PL3'
p3050
tp3051
g4
s(S'7130'
p3052
S'Ilanz Zustellung'
p3053
tp3054
g4
s(S'3150'
p3055
S'Schwarzenburg Zustellung'
p3056
tp3057
g4
s(S'1950'
p3058
S'Sion Base de distribution'
p3059
tp3060
g4
s(S'7000'
p3061
S'Chur 1 Annahme'
p3062
tp3063
g4
s(S'8307'
p3064
S'Effretikon PostAuto AG'
p3065
tp3066
g4
s(S'1003'
p3067
S'Lausanne Parking du Centre'
p3068
tp3069
g163
s.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment