-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdest_com.do
9053 lines (9051 loc) · 554 KB
/
dest_com.do
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
replace `_NV' = 028001 if strmatch(`_CLONE',"abano terme")
replace `_NV' = 098001 if strmatch(`_CLONE',"abbadia cerreto") & `TIME'>=1992
replace `_NV' = 015001 if strmatch(`_CLONE',"abbadia cerreto") & `TIME'<1992
replace `_NV' = 097001 if strmatch(`_CLONE',"abbadia lariana") & `TIME'>=1992
replace `_NV' = 013001 if strmatch(`_CLONE',"abbadia lariana") & `TIME'<1992
replace `_NV' = 052001 if strmatch(`_CLONE',"abbadia san salvatore")
replace `_NV' = 095001 if strmatch(`_CLONE',"abbasanta")
replace `_NV' = 068001 if strmatch(`_CLONE',"abbateggio")
replace `_NV' = 015002 if strmatch(`_CLONE',"abbiategrasso")
replace `_NV' = 047001 if strmatch(`_CLONE',"abetone")
replace `_NV' = 047023 if strmatch(`_CLONE',"abetone cutigliano")
replace `_NV' = 076001 if strmatch(`_CLONE',"abriola")
replace `_NV' = 088001 if strmatch(`_CLONE',"acate")
replace `_NV' = 071001 if strmatch(`_CLONE',"accadia")
replace `_NV' = 004001 if strmatch(`_CLONE',"acceglio")
replace `_NV' = 077001 if strmatch(`_CLONE',"accettura")
replace `_NV' = 066001 if strmatch(`_CLONE',"acciano")
replace `_NV' = 057001 if strmatch(`_CLONE',"accumoli")
replace `_NV' = 076002 if strmatch(`_CLONE',"acerenza")
replace `_NV' = 065001 if strmatch(`_CLONE',"acerno")
replace `_NV' = 063001 if strmatch(`_CLONE',"acerra")
replace `_NV' = 087001 if strmatch(`_CLONE',"aci bonaccorsi")
replace `_NV' = 087002 if strmatch(`_CLONE',"aci castello")
replace `_NV' = 087003 if strmatch(`_CLONE',"aci catena")
replace `_NV' = 087005 if strmatch(`_CLONE',"aci s*antonio")
replace `_NV' = 087004 if strmatch(`_CLONE',"acireale")
replace `_NV' = 043001 if strmatch(`_CLONE',"acquacanina")
replace `_NV' = 060001 if strmatch(`_CLONE',"acquafondata")
replace `_NV' = 078001 if strmatch(`_CLONE',"acquaformosa")
replace `_NV' = 017001 if strmatch(`_CLONE',"acquafredda")
replace `_NV' = 041001 if strmatch(`_CLONE',"acqualagna")
replace `_NV' = 019001 if strmatch(`_CLONE',"acquanegra cremonese")
replace `_NV' = 020001 if strmatch(`_CLONE',"acquanegra sul chiese")
replace `_NV' = 056001 if strmatch(`_CLONE',"acquapendente")
replace `_NV' = 078002 if strmatch(`_CLONE',"acquappesa")
replace `_NV' = 075001 if strmatch(`_CLONE',"acquarica del capo")
replace `_NV' = 102001 if strmatch(`_CLONE',"acquaro") & `TIME'>=1992
replace `_NV' = 079001 if strmatch(`_CLONE',"acquaro") & `TIME'<1992
replace `_NV' = 044001 if strmatch(`_CLONE',"acquasanta terme")
replace `_NV' = 055001 if strmatch(`_CLONE',"acquasparta")
replace `_NV' = 070001 if strmatch(`_CLONE',"acquaviva collecroce")
replace `_NV' = 094001 if strmatch(`_CLONE',"acquaviva*isernia")
replace `_NV' = 072001 if strmatch(`_CLONE',"acquaviva delle fonti")
replace `_NV' = 044002 if strmatch(`_CLONE',"acquaviva picena")
replace `_NV' = 085001 if strmatch(`_CLONE',"acquaviva platani")
replace `_NV' = 083107 if strmatch(`_CLONE',"acquedolci")
replace `_NV' = 006001 if strmatch(`_CLONE',"acqui terme")
replace `_NV' = 078003 if strmatch(`_CLONE',"acri")
replace `_NV' = 060002 if strmatch(`_CLONE',"acuto")
replace `_NV' = 072002 if strmatch(`_CLONE',"adelfia")
replace `_NV' = 087006 if strmatch(`_CLONE',"adrano")
replace `_NV' = 016001 if strmatch(`_CLONE',"adrara san martino")
replace `_NV' = 016002 if strmatch(`_CLONE',"adrara san rocco")
replace `_NV' = 029001 if strmatch(`_CLONE',"adria")
replace `_NV' = 017002 if strmatch(`_CLONE',"adro")
replace `_NV' = 023001 if strmatch(`_CLONE',"affi")
replace `_NV' = 058001 if strmatch(`_CLONE',"affile")
replace `_NV' = 063002 if strmatch(`_CLONE',"afragola")
replace `_NV' = 080001 if strmatch(`_CLONE',"africo")
replace `_NV' = 033001 if strmatch(`_CLONE',"agazzano")
replace `_NV' = 063003 if strmatch(`_CLONE',"agerola")
replace `_NV' = 104001 if strmatch(`_CLONE',"aggius") & `TIME'>=2006 & `TIME'<=2016
replace `_NV' = 090001 if strmatch(`_CLONE',"aggius") & (`TIME'<2006 | `TIME'>2016)
replace `_NV' = 086001 if strmatch(`_CLONE',"agira")
replace `_NV' = 047002 if strmatch(`_CLONE',"agliana")
replace `_NV' = 005001 if strmatch(`_CLONE',"agliano terme") | strmatch(`_CLONE',"agliano")
replace `_NV' = 001001 if strmatch(`_CLONE',"agli?") | strmatch(`_CLONE',"agli??")
if `c(stata_version)'>=14 replace `_NV' = 001001 if strmatch(`sec_check_var',"agli%X*")
replace `_NV' = 104002 if strmatch(`_CLONE',"aglientu") & `TIME'>=2006 & `TIME'<=2016
replace `_NV' = 090062 if strmatch(`_CLONE',"aglientu") & (`TIME'<2006 | `TIME'>2016)
replace `_NV' = 028002 if strmatch(`_CLONE',"agna")
replace `_NV' = 019002 if strmatch(`_CLONE',"agnadello")
replace `_NV' = 080002 if strmatch(`_CLONE',"agnana calabra")
replace `_NV' = 094002 if strmatch(`_CLONE',"agnone")
replace `_NV' = 017003 if strmatch(`_CLONE',"agnosine")
replace `_NV' = 025001 if strmatch(`_CLONE',"agordo")
replace `_NV' = 058002 if strmatch(`_CLONE',"agosta")
replace `_NV' = 012001 if strmatch(`_CLONE',"agra")
replace `_NV' = 108001 if strmatch(`_CLONE',"agrate brianza") & `TIME'>=2010
replace `_NV' = 15003 if strmatch(`_CLONE',"agrate brianza") & `TIME'<2010
replace `_NV' = 003001 if strmatch(`_CLONE',"agrate conturbia")
replace `_NV' = 084001 if strmatch(`_CLONE',"agrigento")
replace `_NV' = 065002 if strmatch(`_CLONE',"agropoli")
replace `_NV' = 042001 if strmatch(`_CLONE',"agugliano")
replace `_NV' = 024001 if strmatch(`_CLONE',"agugliaro")
replace `_NV' = 108002 if strmatch(`_CLONE',"aicurzio") & `TIME'>=2010
replace `_NV' = 015004 if strmatch(`_CLONE',"aicurzio") & `TIME'<2010
replace `_NV' = 095002 if strmatch(`_CLONE',"aidomaggiore")
replace `_NV' = 086002 if strmatch(`_CLONE',"aidone")
replace `_NV' = 066002 if strmatch(`_CLONE',"aielli")
replace `_NV' = 078004 if strmatch(`_CLONE',"aiello calabro")
replace `_NV' = 030001 if strmatch(`_CLONE',"aiello del friuli")
replace `_NV' = 064001 if strmatch(`_CLONE',"aiello del sabato")
replace `_NV' = 078005 if strmatch(`_CLONE',"aieta")
replace `_NV' = 061001 if strmatch(`_CLONE',"ailano")
replace `_NV' = 096001 if strmatch(`_CLONE',"ailoche") & `TIME'>=1992
replace `_NV' = 002001 if strmatch(`_CLONE',"ailoche") & `TIME'<1992
replace `_NV' = 001002 if strmatch(`_CLONE',"airasca")
replace `_NV' = 062001 if strmatch(`_CLONE',"airola")
replace `_NV' = 008001 if strmatch(`_CLONE',"airole")
replace `_NV' = 097002 if strmatch(`_CLONE',"airuno") & `TIME'>=1992
replace `_NV' = 013002 if strmatch(`_CLONE',"airuno") & `TIME'<1992
replace `_NV' = 004002 if strmatch(`_CLONE',"aisone")
replace `_NV' = 022001 if strmatch(`_CLONE',"ala")
replace `_NV' = 104003 if strmatch(`_CLONE',"al*dei*sardi") & `TIME'>=2006 & `TIME'<=2016
replace `_NV' = 090002 if strmatch(`_CLONE',"al*dei*sardi") & (`TIME'<2006 | `TIME'>2016)
replace `_NV' = 001003 if strmatch(`_CLONE',"ala di stura")
replace `_NV' = 018001 if strmatch(`_CLONE',"alagna")
replace `_NV' = 002002 if strmatch(`_CLONE',"alagna valsesia")
replace `_NV' = 068002 if strmatch(`_CLONE',"alanno")
replace `_NV' = 025002 if strmatch(`_CLONE',"alano di piave")
replace `_NV' = 009001 if strmatch(`_CLONE',"alassio")
replace `_NV' = 060003 if strmatch(`_CLONE',"alatri")
replace `_NV' = 004003 if strmatch(`_CLONE',"alba")
replace `_NV' = 067001 if strmatch(`_CLONE',"alba adriatica")
replace `_NV' = 095003 if strmatch(`_CLONE',"albagiara")
replace `_NV' = 015005 if strmatch(`_CLONE',"albairate")
replace `_NV' = 065003 if strmatch(`_CLONE',"albanella")
replace `_NV' = 076003 if strmatch(`_CLONE',"albano di lucania")
replace `_NV' = 058003 if strmatch(`_CLONE',"albano laziale")
replace `_NV' = 016003 if strmatch(`_CLONE',"albano s*alessandro")
replace `_NV' = 002003 if strmatch(`_CLONE',"albano vercellese")
replace `_NV' = 018002 if strmatch(`_CLONE',"albaredo arnaboldi") /*| (`_CLONE'=="albaredo" & provincia==18) */
replace `_NV' = 023002 if strmatch(`_CLONE',"albaredo*adige")
replace `_NV' = 014001 if strmatch(`_CLONE',"albaredo per san marco")
replace `_NV' = 034001 if strmatch(`_CLONE',"albareto")
replace `_NV' = 004004 if strmatch(`_CLONE',"albaretto della torre")
replace `_NV' = 013003 if strmatch(`_CLONE',"albavilla")
replace `_NV' = 009002 if strmatch(`_CLONE',"albenga")
replace `_NV' = 006002 if strmatch(`_CLONE',"albera ligure")
replace `_NV' = 072003 if strmatch(`_CLONE',"alberobello")
replace `_NV' = 071002 if strmatch(`_CLONE',"alberona")
replace `_NV' = 013004 if strmatch(`_CLONE',"albese con cassano")
replace `_NV' = 024002 if strmatch(`_CLONE',"albettone")
replace `_NV' = 079002 if strmatch(`_CLONE',"albi")
replace `_NV' = 022002 if strmatch(`_CLONE',"albiano")
replace `_NV' = 001004 if strmatch(`_CLONE',"albiano*ivrea")
replace `_NV' = 108003 if strmatch(`_CLONE',"albiate") & `TIME'>=2010
replace `_NV' = 015006 if strmatch(`_CLONE',"albiate") & `TIME'<2010
replace `_NV' = 078006 if strmatch(`_CLONE',"albidona")
replace `_NV' = 028003 if strmatch(`_CLONE',"albignasego")
replace `_NV' = 035001 if strmatch(`_CLONE',"albinea")
replace `_NV' = 016004 if strmatch(`_CLONE',"albino")
replace `_NV' = 013005 if strmatch(`_CLONE',"albiolo")
replace `_NV' = 009004 if strmatch(`_CLONE',"albisola superiore")
replace `_NV' = 009003 if strmatch(`_CLONE',"albissola marina")
replace `_NV' = 012002 if strmatch(`_CLONE',"albizzate")
replace `_NV' = 018003 if strmatch(`_CLONE',"albonese")
replace `_NV' = 014002 if strmatch(`_CLONE',"albosaggia")
replace `_NV' = 005002 if strmatch(`_CLONE',"albugnano")
replace `_NV' = 018004 if strmatch(`_CLONE',"albuzzano")
replace `_NV' = 081001 if strmatch(`_CLONE',"alcamo")
replace `_NV' = 083001 if strmatch(`_CLONE',"alcara li fusi")
replace `_NV' = 022003 if strmatch(`_CLONE',"aldeno")
replace `_NV' = 021001 if strmatch(`_CLONE',"aldino*") | strmatch(`_CLONE',"aldein")
replace `_NV' = 095004 if strmatch(`_CLONE',"ales")
replace `_NV' = 006003 if strmatch(`_CLONE',"alessandria")
replace `_NV' = 078007 if strmatch(`_CLONE',"alessandria*carretto")
replace `_NV' = 084002 if strmatch(`_CLONE',"alessandria*rocca")
replace `_NV' = 075002 if strmatch(`_CLONE',"alessano")
replace `_NV' = 075003 if strmatch(`_CLONE',"alezio")
replace `_NV' = 065004 if strmatch(`_CLONE',"alfano")
replace `_NV' = 066003 if strmatch(`_CLONE',"alfedena")
replace `_NV' = 017004 if strmatch(`_CLONE',"alfianello")
replace `_NV' = 006004 if strmatch(`_CLONE',"alfiano natta")
replace `_NV' = 039001 if strmatch(`_CLONE',"alfonsine")
replace `_NV' = 090003 if strmatch(`_CLONE',"alghero")
replace `_NV' = 016248 if strmatch(`_CLONE',"algua")
replace `_NV' = 083002 if strmatch(`_CLONE',"alì") | strmatch(`_CLONE',"ali'") | strmatch(`_CLONE',"ali")
if `c(stata_version)'>=14 replace `_NV' = 083002 if strmatch(`sec_check_var',"al%X*")
replace `_NV' = 083003 if strmatch(`_CLONE',"al* terme")
replace `_NV' = 082001 if strmatch(`_CLONE',"alia")
replace `_NV' = 077002 if strmatch(`_CLONE',"aliano")
replace `_NV' = 006005 if strmatch(`_CLONE',"alice bel colle")
replace `_NV' = 002004 if strmatch(`_CLONE',"alice castello")
replace `_NV' = 001005 if strmatch(`_CLONE',"alice superiore")
replace `_NV' = 061002 if strmatch(`_CLONE',"alife")
replace `_NV' = 082002 if strmatch(`_CLONE',"alimena")
replace `_NV' = 082003 if strmatch(`_CLONE',"aliminusa")
replace `_NV' = 095005 if strmatch(`_CLONE',"allai")
replace `_NV' = 025003 if strmatch(`_CLONE',"alleghe")
replace `_NV' = 007001 if strmatch(`_CLONE',"allein")
replace `_NV' = 055002 if strmatch(`_CLONE',"allerona")
replace `_NV' = 075004 if strmatch(`_CLONE',"alliste")
replace `_NV' = 058004 if strmatch(`_CLONE',"allumiere")
replace `_NV' = 006006 if strmatch(`_CLONE',"alluvioni cambi*")
replace `_NV' = 006192 if strmatch(`_CLONE',"alluvioni piovera")
replace `_NV' = 016005 if strmatch(`_CLONE',"alm?") | strmatch(`_CLONE',"alm??")
if `c(stata_version)'>=14 replace `_NV' = 016005 if strmatch(`sec_check_var',"alm%X*")
replace `_NV' = 016006 if strmatch(`_CLONE',"almenno san bartolomeo")
replace `_NV' = 016007 if strmatch(`_CLONE',"almenno san salvatore")
replace `_NV' = 001006 if strmatch(`_CLONE',"almese")
replace `_NV' = 024003 if strmatch(`_CLONE',"alonte")
replace `_NV' = 025072 if strmatch(`_CLONE',"alpago")
replace `_NV' = 001007 if strmatch(`_CLONE',"alpette")
replace `_NV' = 001008 if strmatch(`_CLONE',"alpignano")
replace `_NV' = 033002 if strmatch(`_CLONE',"alseno")
replace `_NV' = 013006 if strmatch(`_CLONE',"alserio")
replace `_NV' = 033049 if strmatch(`_CLONE',"alta val tidone")
replace `_NV' = 072004 if strmatch(`_CLONE',"altamura")
replace `_NV' = 009005 if strmatch(`_CLONE',"altare")
replace `_NV' = 013253 if strmatch(`_CLONE',"alta*valle intelvi")
replace `_NV' = 022235 if strmatch(`_CLONE',"altavalle")
replace `_NV' = 064002 if strmatch(`_CLONE',"altavilla irpina")
replace `_NV' = 082004 if strmatch(`_CLONE',"altavilla milicia")
replace `_NV' = 006007 if strmatch(`_CLONE',"altavilla monferrato")
replace `_NV' = 065005 if strmatch(`_CLONE',"altavilla silentina")
replace `_NV' = 024004 if strmatch(`_CLONE',"altavilla vicentina")
replace `_NV' = 109001 if strmatch(`_CLONE',"altidona") & `TIME'>=2010
replace `_NV' = 044003 if strmatch(`_CLONE',"altidona") & `TIME'<2010
replace `_NV' = 078008 if strmatch(`_CLONE',"altilia")
replace `_NV' = 069001 if strmatch(`_CLONE',"altino")
replace `_NV' = 024005 if strmatch(`_CLONE',"altissimo")
replace `_NV' = 026001 if strmatch(`_CLONE',"altivole")
replace `_NV' = 004005 if strmatch(`_CLONE',"alto")
replace `_NV' = 002170 if strmatch(`_CLONE',"alto sermenza")
replace `_NV' = 082005 if strmatch(`_CLONE',"altofonte")
replace `_NV' = 078009 if strmatch(`_CLONE',"altomonte")
replace `_NV' = 046001 if strmatch(`_CLONE',"altopascio")
replace `_NV' = 022236 if strmatch(`_CLONE',"altopiano*della*vigolana")
replace `_NV' = 037062 if strmatch(`_CLONE',"alto*reno*terme")
replace `_NV' = 055003 if strmatch(`_CLONE',"alviano")
replace `_NV' = 061003 if strmatch(`_CLONE',"alvignano")
replace `_NV' = 060004 if strmatch(`_CLONE',"alvito")
replace `_NV' = 016008 if strmatch(`_CLONE',"alzano lombardo")
replace `_NV' = 006008 if strmatch(`_CLONE',"alzano scrivia")
replace `_NV' = 013007 if strmatch(`_CLONE',"alzate brianza")
replace `_NV' = 065006 if strmatch(`_CLONE',"amalfi")
replace `_NV' = 109002 if strmatch(`_CLONE',"amandola") & `TIME'>=2010
replace `_NV' = 044004 if strmatch(`_CLONE',"amandola") & `TIME'<2010
replace `_NV' = 078010 if strmatch(`_CLONE',"amantea")
replace `_NV' = 030002 if strmatch(`_CLONE',"amaro")
replace `_NV' = 079003 if strmatch(`_CLONE',"amaroni")
replace `_NV' = 060005 if strmatch(`_CLONE',"amaseno")
replace `_NV' = 079004 if strmatch(`_CLONE',"amato")
replace `_NV' = 057002 if strmatch(`_CLONE',"amatrice")
replace `_NV' = 016009 if strmatch(`_CLONE',"ambivere")
replace `_NV' = 022004 if strmatch(`_CLONE',"amblar")
replace `_NV' = 022237 if strmatch(`_CLONE',"amblar*don")
replace `_NV' = 011001 if strmatch(`_CLONE',"ameglia")
replace `_NV' = 055004 if strmatch(`_CLONE',"amelia")
replace `_NV' = 078011 if strmatch(`_CLONE',"amendolara")
replace `_NV' = 003002 if strmatch(`_CLONE',"ameno")
replace `_NV' = 062002 if strmatch(`_CLONE',"amorosi")
replace `_NV' = 030003 if strmatch(`_CLONE',"ampezzo")
replace `_NV' = 063004 if strmatch(`_CLONE',"anacapri")
replace `_NV' = 060006 if strmatch(`_CLONE',"anagni")
replace `_NV' = 067002 if strmatch(`_CLONE',"ancarano")
replace `_NV' = 042002 if strmatch(`_CLONE',"ancona")
replace `_NV' = 079005 if strmatch(`_CLONE',"andali")
replace `_NV' = 022005 if strmatch(`_CLONE',"andalo")
replace `_NV' = 014003 if strmatch(`_CLONE',"andalo valtellino")
replace `_NV' = 001009 if strmatch(`_CLONE',"andezeno")
replace `_NV' = 009006 if strmatch(`_CLONE',"andora")
replace `_NV' = 096002 if strmatch(`_CLONE',"andorno micca") & `TIME'>=1992
replace `_NV' = 002005 if strmatch(`_CLONE',"andorno micca") & `TIME'<1992
replace `_NV' = 075005 if strmatch(`_CLONE',"andrano")
replace `_NV' = 001010 if strmatch(`_CLONE',"andrate")
replace `_NV' = 093001 if strmatch(`_CLONE',"andreis")
replace `_NV' = 064003 if strmatch(`_CLONE',"andretta")
replace `_NV' = 110001 if strmatch(`_CLONE',"andria") & `TIME'>=2010
replace `_NV' = 072005 if strmatch(`_CLONE',"andria") & `TIME'<2010
replace `_NV' = 021002 if strmatch(`_CLONE',"andriano*") | strmatch(`_CLONE',"andrian")
replace `_NV' = 090004 if strmatch(`_CLONE',"anela")
replace `_NV' = 017005 if strmatch(`_CLONE',"anfo")
replace `_NV' = 012003 if strmatch(`_CLONE',"angera")
replace `_NV' = 051001 if strmatch(`_CLONE',"anghiari")
replace `_NV' = 023003 if strmatch(`_CLONE',"angiari")
replace `_NV' = 017006 if strmatch(`_CLONE',"angolo terme")
replace `_NV' = 065007 if strmatch(`_CLONE',"angri")
replace `_NV' = 001011 if strmatch(`_CLONE',"angrogna")
replace `_NV' = 058005 if strmatch(`_CLONE',"anguillara sabazia")
replace `_NV' = 028004 if strmatch(`_CLONE',"anguillara veneta")
replace `_NV' = 019003 if strmatch(`_CLONE',"annicco")
replace `_NV' = 097003 if strmatch(`_CLONE',"annone di brianza") & `TIME'>=1992
replace `_NV' = 013008 if strmatch(`_CLONE',"annone di brianza") & `TIME'<1992
replace `_NV' = 027001 if strmatch(`_CLONE',"annone veneto")
replace `_NV' = 080003 if strmatch(`_CLONE',"anoia")
replace `_NV' = 016010 if strmatch(`_CLONE',"antegnate")
replace `_NV' = 021003 if strmatch(`_CLONE',"anterivo*") | strmatch(`_CLONE',"altrei")
replace `_NV' = 007002 if strmatch(`_CLONE',"antey*")
replace `_NV' = 058006 if strmatch(`_CLONE',"anticoli corrado")
replace `_NV' = 005003 if strmatch(`_CLONE',"antignano")
replace `_NV' = 083004 if strmatch(`_CLONE',"antillo")
replace `_NV' = 080004 if strmatch(`_CLONE',"antonimina")
replace `_NV' = 057003 if strmatch(`_CLONE',"antrodoco")
replace `_NV' = 103001 if strmatch(`_CLONE',"antrona schieranco") & `TIME'>=1992
replace `_NV' = 003003 if strmatch(`_CLONE',"antrona schieranco") & `TIME'<1992
replace `_NV' = 066004 if strmatch(`_CLONE',"anversa degli abruzzi")
replace `_NV' = 013009 if strmatch(`_CLONE',"anzano del parco")
replace `_NV' = 071003 if strmatch(`_CLONE',"anzano di puglia")
replace `_NV' = 076004 if strmatch(`_CLONE',"anzi")
replace `_NV' = 058007 if strmatch(`_CLONE',"anzio")
replace `_NV' = 103002 if strmatch(`_CLONE',"anzola *ossola") & `TIME'>=1992
replace `_NV' = 003004 if strmatch(`_CLONE',"anzola *ossola") & `TIME'<1992
replace `_NV' = 037001 if strmatch(`_CLONE',"anzola *emilia")
replace `_NV' = 007003 if strmatch(`_CLONE',"aosta")
replace `_NV' = 041002 if strmatch(`_CLONE',"apecchio")
replace `_NV' = 062003 if strmatch(`_CLONE',"apice")
replace `_NV' = 043002 if strmatch(`_CLONE',"apiro")
replace `_NV' = 062004 if strmatch(`_CLONE',"apollosa")
replace `_NV' = 013010 if strmatch(`_CLONE',"appiano gentile")
replace `_NV' = 021004 if strmatch(`_CLONE',"appiano sulla strada*") | strmatch(`_CLONE',"appiano*eppan*") | strmatch(`_CLONE',"eppan an der weinstra*")
replace `_NV' = 043003 if strmatch(`_CLONE',"appignano")
replace `_NV' = 044005 if strmatch(`_CLONE',"appignano del tronto")
replace `_NV' = 014004 if strmatch(`_CLONE',"aprica")
replace `_NV' = 008002 if strmatch(`_CLONE',"apricale")
replace `_NV' = 071004 if strmatch(`_CLONE',"apricena")
replace `_NV' = 078012 if strmatch(`_CLONE',"aprigliano")
replace `_NV' = 059001 if strmatch(`_CLONE',"aprilia")
replace `_NV' = 065008 if strmatch(`_CLONE',"aquara")
replace `_NV' = 008003 if strmatch(`_CLONE',"aquila *arroscia")
replace `_NV' = 030004 if strmatch(`_CLONE',"aquileia")
replace `_NV' = 064004 if strmatch(`_CLONE',"aquilonia")
replace `_NV' = 060007 if strmatch(`_CLONE',"aquino")
replace `_NV' = 075006 if strmatch(`_CLONE',"aradeo")
replace `_NV' = 084003 if strmatch(`_CLONE',"aragona")
replace `_NV' = 005004 if strmatch(`_CLONE',"aramengo")
replace `_NV' = 093002 if strmatch(`_CLONE',"arba")
replace `_NV' = 095006 if strmatch(`_CLONE',"arborea")
replace `_NV' = 002006 if strmatch(`_CLONE',"arborio")
replace `_NV' = 106001 if strmatch(`_CLONE',"arbus") & `TIME'>=2006 & `TIME'<=2016
replace `_NV' = 092001 if strmatch(`_CLONE',"arbus") & `TIME'<2006
replace `_NV' = 111001 if strmatch(`_CLONE',"arbus") & `TIME'>2016
replace `_NV' = 026002 if strmatch(`_CLONE',"arcade")
replace `_NV' = 060008 if strmatch(`_CLONE',"arce")
replace `_NV' = 016011 if strmatch(`_CLONE',"arcene")
replace `_NV' = 042003 if strmatch(`_CLONE',"arcevia")
replace `_NV' = 069002 if strmatch(`_CLONE',"archi")
replace `_NV' = 053001 if strmatch(`_CLONE',"arcidosso")
replace `_NV' = 058008 if strmatch(`_CLONE',"arcinazzo romano")
replace `_NV' = 012004 if strmatch(`_CLONE',"arcisate")
replace `_NV' = 022006 if strmatch(`_CLONE',"arco")
replace `_NV' = 011002 if strmatch(`_CLONE',"arcola")
replace `_NV' = 023004 if strmatch(`_CLONE',"arcole")
replace `_NV' = 015007 if strmatch(`_CLONE',"arconate")
replace `_NV' = 108004 if strmatch(`_CLONE',"arcore") & `TIME'>=2010
replace `_NV' = 015008 if strmatch(`_CLONE',"arcore") & `TIME'<2010
replace `_NV' = 024006 if strmatch(`_CLONE',"arcugnano")
replace `_NV' = 090005 if strmatch(`_CLONE',"ardara")
replace `_NV' = 095007 if strmatch(`_CLONE',"ardauli")
replace `_NV' = 058117 if strmatch(`_CLONE',"ardea")
replace `_NV' = 014005 if strmatch(`_CLONE',"ardenno")
replace `_NV' = 016012 if strmatch(`_CLONE',"ardesio")
replace `_NV' = 080005 if strmatch(`_CLONE',"ardore")
replace `_NV' = 102002 if strmatch(`_CLONE',"arena") & `TIME'>=1992
replace `_NV' = 079006 if strmatch(`_CLONE',"arena") & `TIME'<1992
replace `_NV' = 018005 if strmatch(`_CLONE',"arena po")
replace `_NV' = 010001 if strmatch(`_CLONE',"arenzano")
replace `_NV' = 015009 if strmatch(`_CLONE',"arese")
replace `_NV' = 051002 if strmatch(`_CLONE',"arezzo")
replace `_NV' = 013011 if strmatch(`_CLONE',"argegno")
replace `_NV' = 037002 if strmatch(`_CLONE',"argelato")
replace `_NV' = 038001 if strmatch(`_CLONE',"argenta")
replace `_NV' = 004006 if strmatch(`_CLONE',"argentera")
replace `_NV' = 004007 if strmatch(`_CLONE',"arguello")
replace `_NV' = 079007 if strmatch(`_CLONE',"argusto")
replace `_NV' = 069003 if strmatch(`_CLONE',"ari")
replace `_NV' = 064005 if strmatch(`_CLONE',"ariano irpino")
replace `_NV' = 029002 if strmatch(`_CLONE',"ariano nel polesine")
replace `_NV' = 058009 if strmatch(`_CLONE',"ariccia")
replace `_NV' = 069004 if strmatch(`_CLONE',"arielli")
replace `_NV' = 061004 if strmatch(`_CLONE',"arienzo")
replace `_NV' = 001012 if strmatch(`_CLONE',"arignano")
replace `_NV' = 091001 if strmatch(`_CLONE',"aritzo")
replace `_NV' = 103003 if strmatch(`_CLONE',"arizzano") & `TIME'>=1992
replace `_NV' = 003005 if strmatch(`_CLONE',"arizzano") & `TIME'<1992
replace `_NV' = 056002 if strmatch(`_CLONE',"arlena di castro")
replace `_NV' = 015010 if strmatch(`_CLONE',"arluno")
replace `_NV' = 003006 if strmatch(`_CLONE',"armeno")
replace `_NV' = 076005 if strmatch(`_CLONE',"armento")
replace `_NV' = 008004 if strmatch(`_CLONE',"armo")
replace `_NV' = 092002 if strmatch(`_CLONE',"armungia") & `TIME'<=2016
replace `_NV' = 111002 if strmatch(`_CLONE',"armungia") & `TIME'>2016
replace `_NV' = 007004 if strmatch(`_CLONE',"arnad")
replace `_NV' = 060009 if strmatch(`_CLONE',"arnara")
replace `_NV' = 009007 if strmatch(`_CLONE',"arnasco")
replace `_NV' = 075007 if strmatch(`_CLONE',"arnesano")
replace `_NV' = 103004 if strmatch(`_CLONE',"arola") & `TIME'>=1992
replace `_NV' = 003007 if strmatch(`_CLONE',"arola") & `TIME'<1992
replace `_NV' = 003008 if strmatch(`_CLONE',"arona")
replace `_NV' = 013012 if strmatch(`_CLONE',"arosio")
replace `_NV' = 062005 if strmatch(`_CLONE',"arpaia")
replace `_NV' = 062006 if strmatch(`_CLONE',"arpaise")
replace `_NV' = 060010 if strmatch(`_CLONE',"arpino")
replace `_NV' = 028005 if strmatch(`_CLONE',"arqu*petrarca")
replace `_NV' = 029003 if strmatch(`_CLONE',"arqu*polesine")
replace `_NV' = 044006 if strmatch(`_CLONE',"arquata del tronto")
replace `_NV' = 006009 if strmatch(`_CLONE',"arquata scrivia")
replace `_NV' = 028006 if strmatch(`_CLONE',"arre")
replace `_NV' = 055005 if strmatch(`_CLONE',"arrone")
replace `_NV' = 012005 if strmatch(`_CLONE',"arsago seprio")
replace `_NV' = 025004 if strmatch(`_CLONE',"arsi?") | strmatch(`_CLONE',"arsi??")
replace `_NV' = 024007 if strmatch(`_CLONE',"arsiero")
replace `_NV' = 067003 if strmatch(`_CLONE',"arsita")
replace `_NV' = 058010 if strmatch(`_CLONE',"arsoli")
replace `_NV' = 030005 if strmatch(`_CLONE',"arta terme")
replace `_NV' = 030006 if strmatch(`_CLONE',"artegna")
replace `_NV' = 058011 if strmatch(`_CLONE',"artena")
replace `_NV' = 017007 if strmatch(`_CLONE',"artogne")
replace `_NV' = 007005 if strmatch(`_CLONE',"arvier")
replace `_NV' = 104004 if strmatch(`_CLONE',"arzachena") & `TIME'>=2006 & `TIME'<=2016
replace `_NV' = 090006 if strmatch(`_CLONE',"arzachena") & (`TIME'<2006 | `TIME'>2016)
replace `_NV' = 016013 if strmatch(`_CLONE',"arzago d*adda")
replace `_NV' = 105001 if strmatch(`_CLONE',"arzana") & `TIME'>=2006 & `TIME'<=2016
replace `_NV' = 091002 if strmatch(`_CLONE',"arzana") & (`TIME'<2006 | `TIME'>2016)
replace `_NV' = 063005 if strmatch(`_CLONE',"arzano")
replace `_NV' = 093003 if strmatch(`_CLONE',"arzene")
replace `_NV' = 028007 if strmatch(`_CLONE',"arzergrande")
replace `_NV' = 024008 if strmatch(`_CLONE',"arzignano")
replace `_NV' = 065009 if strmatch(`_CLONE',"ascea") | strmatch(`_CLONE',"ascea velia")
replace `_NV' = 052002 if strmatch(`_CLONE',"asciano")
replace `_NV' = 044007 if strmatch(`_CLONE',"ascoli piceno")
replace `_NV' = 071005 if strmatch(`_CLONE',"ascoli satriano")
replace `_NV' = 057004 if strmatch(`_CLONE',"ascrea")
replace `_NV' = 024009 if strmatch(`_CLONE',"asiago")
replace `_NV' = 024010 if strmatch(`_CLONE',"asigliano veneto")
replace `_NV' = 002007 if strmatch(`_CLONE',"asigliano vercellese")
replace `_NV' = 020002 if strmatch(`_CLONE',"asola")
replace `_NV' = 026003 if strmatch(`_CLONE',"asolo")
replace `_NV' = 015011 if strmatch(`_CLONE',"assago")
replace `_NV' = 092003 if strmatch(`_CLONE',"assemini")
replace `_NV' = 054001 if strmatch(`_CLONE',"assisi")
replace `_NV' = 013013 if strmatch(`_CLONE',"asso")
replace `_NV' = 095008 if strmatch(`_CLONE',"assolo")
replace `_NV' = 086003 if strmatch(`_CLONE',"assoro")
replace `_NV' = 005005 if strmatch(`_CLONE',"asti")
replace `_NV' = 095009 if strmatch(`_CLONE',"asuni")
replace `_NV' = 066005 if strmatch(`_CLONE',"ateleta")
replace `_NV' = 076006 if strmatch(`_CLONE',"atella")
replace `_NV' = 065010 if strmatch(`_CLONE',"atena lucana")
replace `_NV' = 069005 if strmatch(`_CLONE',"atessa")
replace `_NV' = 060011 if strmatch(`_CLONE',"atina")
replace `_NV' = 065011 if strmatch(`_CLONE',"atrani")
replace `_NV' = 067004 if strmatch(`_CLONE',"atri")
replace `_NV' = 064006 if strmatch(`_CLONE',"atripalda")
replace `_NV' = 055006 if strmatch(`_CLONE',"attigliano")
replace `_NV' = 030007 if strmatch(`_CLONE',"attimis")
replace `_NV' = 091003 if strmatch(`_CLONE',"atzara")
replace `_NV' = 041003 if strmatch(`_CLONE',"auditore")
replace `_NV' = 089001 if strmatch(`_CLONE',"augusta")
replace `_NV' = 065012 if strmatch(`_CLONE',"auletta")
replace `_NV' = 045001 if strmatch(`_CLONE',"aulla")
replace `_NV' = 103005 if strmatch(`_CLONE',"aurano") & `TIME'>=1992
replace `_NV' = 003009 if strmatch(`_CLONE',"aurano") & `TIME'<1992
replace `_NV' = 008005 if strmatch(`_CLONE',"aurigo")
replace `_NV' = 025005 if strmatch(`_CLONE',"auronzo di cadore")
replace `_NV' = 060012 if strmatch(`_CLONE',"ausonia")
replace `_NV' = 091004 if strmatch(`_CLONE',"austis")
replace `_NV' = 010002 if strmatch(`_CLONE',"avegno")
replace `_NV' = 021005 if strmatch(`_CLONE',"avelengo*") | strmatch(`_CLONE',"hafling")
replace `_NV' = 064007 if strmatch(`_CLONE',"avella")
replace `_NV' = 064008 if strmatch(`_CLONE',"avellino")
replace `_NV' = 016014 if strmatch(`_CLONE',"averara")
replace `_NV' = 061005 if strmatch(`_CLONE',"aversa")
replace `_NV' = 073001 if strmatch(`_CLONE',"avetrana")
replace `_NV' = 066006 if strmatch(`_CLONE',"avezzano")
replace `_NV' = 093004 if strmatch(`_CLONE',"aviano")
replace `_NV' = 016015 if strmatch(`_CLONE',"aviatico")
replace `_NV' = 001013 if strmatch(`_CLONE',"avigliana")
replace `_NV' = 076007 if strmatch(`_CLONE',"avigliano")
replace `_NV' = 055033 if strmatch(`_CLONE',"avigliano umbro")
replace `_NV' = 022007 if strmatch(`_CLONE',"avio")
replace `_NV' = 007006 if strmatch(`_CLONE',"avise")
replace `_NV' = 089002 if strmatch(`_CLONE',"avola")
replace `_NV' = 006010 if strmatch(`_CLONE',"avolasca")
replace `_NV' = 007007 if strmatch(`_CLONE',"ayas")
replace `_NV' = 007008 if strmatch(`_CLONE',"aymavilles")
replace `_NV' = 001014 if strmatch(`_CLONE',"azeglio")
replace `_NV' = 019004 if strmatch(`_CLONE',"azzanello")
replace `_NV' = 005006 if strmatch(`_CLONE',"azzano*asti")
replace `_NV' = 093005 if strmatch(`_CLONE',"azzano decimo")
replace `_NV' = 017008 if strmatch(`_CLONE',"azzano mella")
replace `_NV' = 016016 if strmatch(`_CLONE',"azzano san paolo")
replace `_NV' = 012006 if strmatch(`_CLONE',"azzate")
replace `_NV' = 012007 if strmatch(`_CLONE',"azzio")
replace `_NV' = 016017 if strmatch(`_CLONE',"azzone")
replace `_NV' = 103006 if strmatch(`_CLONE',"baceno") & `TIME'>=1992
replace `_NV' = 003010 if strmatch(`_CLONE',"baceno") & `TIME'<1992
replace `_NV' = 063006 if strmatch(`_CLONE',"bacoli")
replace `_NV' = 008006 if strmatch(`_CLONE',"badalucco")
replace `_NV' = 104005 if strmatch(`_CLONE',"badesi") & `TIME'>=2006 & `TIME'<=2016
replace `_NV' = 090081 if strmatch(`_CLONE',"badesi") & (`TIME'<2006 | `TIME'>2016)
replace `_NV' = 021006 if strmatch(`_CLONE',"badia*abtei*") | strmatch(`_CLONE',"badia") | strmatch(`_CLONE',"abtei")
replace `_NV' = 023005 if strmatch(`_CLONE',"badia calavena")
replace `_NV' = 018006 if strmatch(`_CLONE',"badia pavese")
replace `_NV' = 029004 if strmatch(`_CLONE',"badia polesine")
replace `_NV' = 051003 if strmatch(`_CLONE',"badia tedalda")
replace `_NV' = 079008 if strmatch(`_CLONE',"badolato")
replace `_NV' = 080006 if strmatch(`_CLONE',"bagaladi")
replace `_NV' = 082006 if strmatch(`_CLONE',"bagheria")
replace `_NV' = 039002 if strmatch(`_CLONE',"bagnacavallo")
replace `_NV' = 080007 if strmatch(`_CLONE',"bagnara calabra")
replace `_NV' = 039003 if strmatch(`_CLONE',"bagnara di romagna")
replace `_NV' = 018007 if strmatch(`_CLONE',"bagnaria")
replace `_NV' = 030008 if strmatch(`_CLONE',"bagnaria arsa")
replace `_NV' = 004008 if strmatch(`_CLONE',"bagnasco")
replace `_NV' = 016018 if strmatch(`_CLONE',"bagnatica")
replace `_NV' = 046002 if strmatch(`_CLONE',"bagni di lucca")
replace `_NV' = 048001 if strmatch(`_CLONE',"bagno a ripoli")
replace `_NV' = 040001 if strmatch(`_CLONE',"bagno di romagna")
replace `_NV' = 094003 if strmatch(`_CLONE',"bagnoli del trigno")
replace `_NV' = 028008 if strmatch(`_CLONE',"bagnoli di sopra")
replace `_NV' = 064009 if strmatch(`_CLONE',"bagnoli irpino")
replace `_NV' = 019005 if strmatch(`_CLONE',"bagnolo cremasco")
replace `_NV' = 075008 if strmatch(`_CLONE',"bagnolo del salento")
replace `_NV' = 029005 if strmatch(`_CLONE',"bagnolo di po")
replace `_NV' = 035002 if strmatch(`_CLONE',"bagnolo in piano")
replace `_NV' = 017009 if strmatch(`_CLONE',"bagnolo mella")
replace `_NV' = 004009 if strmatch(`_CLONE',"bagnolo piemonte")
replace `_NV' = 020003 if strmatch(`_CLONE',"bagnolo san vito")
replace `_NV' = 045002 if strmatch(`_CLONE',"bagnone")
replace `_NV' = 056003 if strmatch(`_CLONE',"bagnoregio")
replace `_NV' = 017010 if strmatch(`_CLONE',"bagolino")
replace `_NV' = 061006 if strmatch(`_CLONE',"baia*latina")
replace `_NV' = 064010 if strmatch(`_CLONE',"baiano")
replace `_NV' = 001015 if strmatch(`_CLONE',"bairo")
replace `_NV' = 035003 if strmatch(`_CLONE',"baiso")
replace `_NV' = 008007 if strmatch(`_CLONE',"ba?ardo")
replace `_NV' = 001016 if strmatch(`_CLONE',"balangero")
replace `_NV' = 005007 if strmatch(`_CLONE',"baldichieri *asti")
replace `_NV' = 001017 if strmatch(`_CLONE',"baldissero canavese")
replace `_NV' = 004010 if strmatch(`_CLONE',"baldissero *alba")
replace `_NV' = 001018 if strmatch(`_CLONE',"baldissero torinese")
replace `_NV' = 082007 if strmatch(`_CLONE',"balestrate")
replace `_NV' = 009008 if strmatch(`_CLONE',"balestrino")
replace `_NV' = 097004 if strmatch(`_CLONE',"ballabio") & `TIME'>=1992
replace `_NV' = 013014 if strmatch(`_CLONE',"ballabio") & `TIME'<1992
replace `_NV' = 092004 if strmatch(`_CLONE',"ballao") & `TIME'<=2016
replace `_NV' = 111003 if strmatch(`_CLONE',"ballao") & `TIME'>2016
replace `_NV' = 001019 if strmatch(`_CLONE',"balme")
replace `_NV' = 002008 if strmatch(`_CLONE',"balmuccia")
replace `_NV' = 002009 if strmatch(`_CLONE',"balocco")
replace `_NV' = 066007 if strmatch(`_CLONE',"balsorano")
replace `_NV' = 076008 if strmatch(`_CLONE',"balvano")
replace `_NV' = 006011 if strmatch(`_CLONE',"balzola")
replace `_NV' = 090007 if strmatch(`_CLONE',"banari")
replace `_NV' = 001020 if strmatch(`_CLONE',"banchette")
replace `_NV' = 103007 if strmatch(`_CLONE',"bannio anzino") & `TIME'>=1992
replace `_NV' = 003011 if strmatch(`_CLONE',"bannio anzino") & `TIME'<1992
replace `_NV' = 076009 if strmatch(`_CLONE',"banzi")
replace `_NV' = 028009 if strmatch(`_CLONE',"baone")
replace `_NV' = 095010 if strmatch(`_CLONE',"baradili")
replace `_NV' = 076010 if strmatch(`_CLONE',"baragiano")
replace `_NV' = 070002 if strmatch(`_CLONE',"baranello")
replace `_NV' = 063007 if strmatch(`_CLONE',"barano *ischia")
replace `_NV' = 015250 if strmatch(`_CLONE',"baranzate")
replace `_NV' = 012008 if strmatch(`_CLONE',"barasso")
replace `_NV' = 095011 if strmatch(`_CLONE',"baratili san pietro")
replace `_NV' = 001021 if strmatch(`_CLONE',"barbania")
replace `_NV' = 042004 if strmatch(`_CLONE',"barbara")
replace `_NV' = 024124 if strmatch(`_CLONE',"barbarano mossano")
replace `_NV' = 056004 if strmatch(`_CLONE',"barbarano romano")
replace `_NV' = 024011 if strmatch(`_CLONE',"barbarano vicentino")
replace `_NV' = 004011 if strmatch(`_CLONE',"barbaresco")
replace `_NV' = 017011 if strmatch(`_CLONE',"barbariga")
replace `_NV' = 016019 if strmatch(`_CLONE',"barbata")
replace `_NV' = 048002 if strmatch(`_CLONE',"barberino di mugello")
replace `_NV' = 048054 if strmatch(`_CLONE',"barberino tavarnelle")
replace `_NV' = 048003 if strmatch(`_CLONE',"barberino val *elsa")
replace `_NV' = 018008 if strmatch(`_CLONE',"barbianello")
replace `_NV' = 021007 if strmatch(`_CLONE',"barbiano*") | strmatch(`_CLONE',"barbian")
replace `_NV' = 028010 if strmatch(`_CLONE',"barbona")
replace `_NV' = 083005 if strmatch(`_CLONE',"barcellona pozzo di gotto")
replace `_NV' = 041004 if strmatch(`_CLONE',"barchi")
replace `_NV' = 093006 if strmatch(`_CLONE',"barcis")
replace `_NV' = 007009 if strmatch(`_CLONE',"bard")
replace `_NV' = 012009 if strmatch(`_CLONE',"bardello")
replace `_NV' = 012144 if strmatch(`_CLONE',"bardello*malgesso*bregano")
replace `_NV' = 034002 if strmatch(`_CLONE',"bardi")
replace `_NV' = 009009 if strmatch(`_CLONE',"bardineto")
replace `_NV' = 023006 if strmatch(`_CLONE',"bardolino")
replace `_NV' = 001022 if strmatch(`_CLONE',"bardonecchia")
replace `_NV' = 015012 if strmatch(`_CLONE',"bareggio")
replace `_NV' = 003012 if strmatch(`_CLONE',"barengo")
replace `_NV' = 095012 if strmatch(`_CLONE',"baressa")
replace `_NV' = 066008 if strmatch(`_CLONE',"barete")
replace `_NV' = 046003 if strmatch(`_CLONE',"barga")
replace `_NV' = 010003 if strmatch(`_CLONE',"bargagli")
replace `_NV' = 004012 if strmatch(`_CLONE',"barge")
replace `_NV' = 017012 if strmatch(`_CLONE',"barghe")
replace `_NV' = 072006 if strmatch(`_CLONE',"bari")
replace `_NV' = 105002 if strmatch(`_CLONE',"bari sardo") & `TIME'>=2006 & `TIME'<=2016
replace `_NV' = 091005 if strmatch(`_CLONE',"bari sardo") & (`TIME'<2006 | `TIME'>2016)
replace `_NV' = 016020 if strmatch(`_CLONE',"bariano")
replace `_NV' = 037003 if strmatch(`_CLONE',"baricella")
replace `_NV' = 076011 if strmatch(`_CLONE',"barile")
replace `_NV' = 066009 if strmatch(`_CLONE',"barisciano")
replace `_NV' = 108005 if strmatch(`_CLONE',"barlassina") & `TIME'>=2010
replace `_NV' = 015013 if strmatch(`_CLONE',"barlassina") & `TIME'<2010
replace `_NV' = 110002 if strmatch(`_CLONE',"barletta") & `TIME'>=2010
replace `_NV' = 072007 if strmatch(`_CLONE',"barletta") & `TIME'<2010
replace `_NV' = 013015 if strmatch(`_CLONE',"barni")
replace `_NV' = 004013 if strmatch(`_CLONE',"barolo")
replace `_NV' = 001023 if strmatch(`_CLONE',"barone canavese")
replace `_NV' = 065013 if strmatch(`_CLONE',"baronissi")
replace `_NV' = 086004 if strmatch(`_CLONE',"barrafranca")
replace `_NV' = 092005 if strmatch(`_CLONE',"barrali") & `TIME'<=2016
replace `_NV' = 111004 if strmatch(`_CLONE',"barrali") & `TIME'>2016
replace `_NV' = 066010 if strmatch(`_CLONE',"barrea")
replace `_NV' = 106002 if strmatch(`_CLONE',"barumini") & `TIME'>=2006 & `TIME'<=2016
replace `_NV' = 092006 if strmatch(`_CLONE',"barumini") & `TIME'<2006
replace `_NV' = 111005 if strmatch(`_CLONE',"barumini") & `TIME'>2016
replace `_NV' = 097005 if strmatch(`_CLONE',"barzago") & `TIME'>=1992
replace `_NV' = 013016 if strmatch(`_CLONE',"barzago") & `TIME'<1992
replace `_NV' = 016021 if strmatch(`_CLONE',"barzana")
replace `_NV' = 097006 if (strmatch(`_CLONE',"barzano") | strmatch(`_CLONE',"barzanò") | strmatch(`_CLONE',"barzano'")) & `TIME'>=1992
if `c(stata_version)'>=14 & `TIME'>=1992 replace `_NV' = 097006 if strmatch(`sec_check_var',"barzan%X*")
replace `_NV' = 013017 if (strmatch(`_CLONE',"barzano") | strmatch(`_CLONE',"barzanò") | strmatch(`_CLONE',"barzano'")) & `TIME'<1992
if `c(stata_version)'>=14 & `TIME'<1992 replace `_NV' = 013017 if strmatch(`sec_check_var',"barzan%X*")
replace `_NV' = 097007 if strmatch(`_CLONE',"barzio") & `TIME'>=1992
replace `_NV' = 013018 if strmatch(`_CLONE',"barzio") & `TIME'<1992
replace `_NV' = 006012 if strmatch(`_CLONE',"basaluzzo")
replace `_NV' = 018009 if strmatch(`_CLONE',"bascap*")
replace `_NV' = 055007 if strmatch(`_CLONE',"baschi")
replace `_NV' = 067005 if strmatch(`_CLONE',"basciano")
replace `_NV' = 022009 if strmatch(`_CLONE',"baselga di pin*")
**if `c(stata_version)'>=14 replace `_NV' = 022009 if strmatch(`sec_check_var',"baselga*di*pin%X*")
replace `_NV' = 062007 if strmatch(`_CLONE',"baselice")
replace `_NV' = 015014 if strmatch(`_CLONE',"basiano")
replace `_NV' = 083006 if strmatch(`_CLONE',"basic*")
replace `_NV' = 015015 if strmatch(`_CLONE',"basiglio")
replace `_NV' = 030009 if strmatch(`_CLONE',"basiliano")
replace `_NV' = 017013 if strmatch(`_CLONE',"bassano bresciano")
replace `_NV' = 024012 if strmatch(`_CLONE',"bassano del grappa")
replace `_NV' = 056006 if strmatch(`_CLONE',"bassano in teverina")
replace `_NV' = 056005 if strmatch(`_CLONE',"bassano romano")
replace `_NV' = 059002 if strmatch(`_CLONE',"bassiano")
replace `_NV' = 006013 if strmatch(`_CLONE',"bassignana")
replace `_NV' = 004014 if strmatch(`_CLONE',"bastia mondov*")
replace `_NV' = 054002 if strmatch(`_CLONE',"bastia umbra")
replace `_NV' = 018010 if strmatch(`_CLONE',"bastida de*dossi")
replace `_NV' = 018011 if strmatch(`_CLONE',"bastida pancarana")
replace `_NV' = 036001 if strmatch(`_CLONE',"bastiglia")
replace `_NV' = 028011 if strmatch(`_CLONE',"battaglia terme")
replace `_NV' = 004015 if strmatch(`_CLONE',"battifollo")
replace `_NV' = 065014 if strmatch(`_CLONE',"battipaglia")
replace `_NV' = 018012 if strmatch(`_CLONE',"battuda")
replace `_NV' = 082008 if strmatch(`_CLONE',"baucina")
replace `_NV' = 095013 if strmatch(`_CLONE',"bauladu")
replace `_NV' = 105003 if strmatch(`_CLONE',"baunei") & `TIME'>=2006 & `TIME'<=2016
replace `_NV' = 091006 if strmatch(`_CLONE',"baunei") & (`TIME'<2006 | `TIME'>2016)
replace `_NV' = 103008 if strmatch(`_CLONE',"baveno") & `TIME'>=1992
replace `_NV' = 003013 if strmatch(`_CLONE',"baveno") & `TIME'<1992
replace `_NV' = 037004 if strmatch(`_CLONE',"bazzano")
replace `_NV' = 012010 if strmatch(`_CLONE',"bedero valcuvia")
replace `_NV' = 017014 if strmatch(`_CLONE',"bedizzole")
replace `_NV' = 022011 if strmatch(`_CLONE',"bedollo")
replace `_NV' = 034003 if strmatch(`_CLONE',"bedonia")
replace `_NV' = 016022 if strmatch(`_CLONE',"bedulita")
replace `_NV' = 103009 if strmatch(`_CLONE',"bee") & `TIME'>=1992
replace `_NV' = 003014 if strmatch(`_CLONE',"bee") & `TIME'<1992
replace `_NV' = 001024 if strmatch(`_CLONE',"beinasco")
replace `_NV' = 004016 if strmatch(`_CLONE',"beinette")
replace `_NV' = 079009 if strmatch(`_CLONE',"belcastro")
replace `_NV' = 023007 if strmatch(`_CLONE',"belfiore")
replace `_NV' = 041005 if strmatch(`_CLONE',"belforte *isauro")
replace `_NV' = 043004 if strmatch(`_CLONE',"belforte del chienti")
replace `_NV' = 006014 if strmatch(`_CLONE',"belforte monferrato")
replace `_NV' = 018013 if strmatch(`_CLONE',"belgioioso")
replace `_NV' = 103010 if strmatch(`_CLONE',"belgirate") & `TIME'>=1992
replace `_NV' = 003015 if strmatch(`_CLONE',"belgirate") & `TIME'<1992
replace `_NV' = 076012 if strmatch(`_CLONE',"bella")
replace `_NV' = 013019 if strmatch(`_CLONE',"bellagio") & `TIME'<2014
replace `_NV' = 013250 if strmatch(`_CLONE',"bellagio") & `TIME'>=2014
replace `_NV' = 097008 if strmatch(`_CLONE',"bellano") & `TIME'>=1992
replace `_NV' = 013020 if strmatch(`_CLONE',"bellano") & `TIME'<1992
replace `_NV' = 067006 if strmatch(`_CLONE',"bellante")
replace `_NV' = 099001 if strmatch(`_CLONE',"bellaria*igea marina") & `TIME'>=1992
replace `_NV' = 040002 if strmatch(`_CLONE',"bellaria*igea marina") & `TIME'<1992
replace `_NV' = 058012 if strmatch(`_CLONE',"bellegra")
replace `_NV' = 004017 if strmatch(`_CLONE',"bellino")
replace `_NV' = 015016 if strmatch(`_CLONE',"bellinzago lombardo")
replace `_NV' = 003016 if strmatch(`_CLONE',"bellinzago novarese")
replace `_NV' = 065158 if strmatch(`_CLONE',"bellizzi")
replace `_NV' = 061007 if strmatch(`_CLONE',"bellona")
replace `_NV' = 065015 if strmatch(`_CLONE',"bellosguardo")
replace `_NV' = 025006 if strmatch(`_CLONE',"belluno")
replace `_NV' = 108006 if strmatch(`_CLONE',"bellusco") & `TIME'>=2010
replace `_NV' = 015017 if strmatch(`_CLONE',"bellusco") & `TIME'<2010
replace `_NV' = 078013 if strmatch(`_CLONE',"belmonte calabro")
replace `_NV' = 060013 if strmatch(`_CLONE',"belmonte castello")
replace `_NV' = 094004 if strmatch(`_CLONE',"belmonte del sannio")
replace `_NV' = 057005 if strmatch(`_CLONE',"belmonte in sabina")
replace `_NV' = 082009 if strmatch(`_CLONE',"belmonte mezzagno")
replace `_NV' = 109003 if strmatch(`_CLONE',"belmonte piceno") & `TIME'>=2010
replace `_NV' = 044008 if strmatch(`_CLONE',"belmonte piceno") & `TIME'<2010
replace `_NV' = 087007 if strmatch(`_CLONE',"belpasso")
replace `_NV' = 078014 if strmatch(`_CLONE',"belsito")
replace `_NV' = 101001 if strmatch(`_CLONE',"belvedere di spinello") & `TIME'>=1992
replace `_NV' = 079010 if strmatch(`_CLONE',"belvedere di spinello") & `TIME'<1992
replace `_NV' = 004018 if strmatch(`_CLONE',"belvedere langhe")
replace `_NV' = 078015 if strmatch(`_CLONE',"belvedere marittimo")
replace `_NV' = 042005 if strmatch(`_CLONE',"belvedere ostrense")
replace `_NV' = 005008 if strmatch(`_CLONE',"belveglio")
replace `_NV' = 091007 if strmatch(`_CLONE',"belv?") | strmatch(`_CLONE',"belv??")
replace `_NV' = 014006 if strmatch(`_CLONE',"bema")
replace `_NV' = 013021 if strmatch(`_CLONE',"bene lario")
replace `_NV' = 004019 if strmatch(`_CLONE',"bene vagienna")
replace `_NV' = 080008 if strmatch(`_CLONE',"benestare")
replace `_NV' = 090008 if strmatch(`_CLONE',"benetutti")
replace `_NV' = 004020 if strmatch(`_CLONE',"benevello")
replace `_NV' = 062008 if strmatch(`_CLONE',"benevento")
replace `_NV' = 096003 if strmatch(`_CLONE',"benna") & `TIME'>=1992
replace `_NV' = 002010 if strmatch(`_CLONE',"benna") & `TIME'<1992
replace `_NV' = 037005 if strmatch(`_CLONE',"bentivoglio")
replace `_NV' = 016023 if strmatch(`_CLONE',"berbenno")
replace `_NV' = 014007 if strmatch(`_CLONE',"berbenno di valtellina")
replace `_NV' = 034004 if strmatch(`_CLONE',"berceto")
replace `_NV' = 104006 if strmatch(`_CLONE',"berchidda") & `TIME'>=2006 & `TIME'<=2016
replace `_NV' = 090009 if strmatch(`_CLONE',"berchidda") & (`TIME'<2006 | `TIME'>2016)
replace `_NV' = 013022 if strmatch(`_CLONE',"beregazzo con figliaro")
replace `_NV' = 018014 if strmatch(`_CLONE',"bereguardo")
replace `_NV' = 006015 if strmatch(`_CLONE',"bergamasco")
replace `_NV' = 016024 if strmatch(`_CLONE',"bergamo")
replace `_NV' = 029006 if strmatch(`_CLONE',"bergantino")
replace `_NV' = 009010 if strmatch(`_CLONE',"bergeggi")
replace `_NV' = 004021 if strmatch(`_CLONE',"bergolo")
replace `_NV' = 017015 if strmatch(`_CLONE',"berlingo")
replace `_NV' = 077003 if strmatch(`_CLONE',"bernalda")
replace `_NV' = 108007 if strmatch(`_CLONE',"bernareggio") & `TIME'>=2010
replace `_NV' = 015018 if strmatch(`_CLONE',"bernareggio") & `TIME'<2010
replace `_NV' = 015019 if strmatch(`_CLONE',"bernate ticino")
replace `_NV' = 004022 if strmatch(`_CLONE',"bernezzo")
replace `_NV' = 038002 if strmatch(`_CLONE',"berra")
replace `_NV' = 022012 if strmatch(`_CLONE',"bersone")
replace `_NV' = 040003 if strmatch(`_CLONE',"bertinoro")
replace `_NV' = 030010 if strmatch(`_CLONE',"bertiolo")
replace `_NV' = 098002 if strmatch(`_CLONE',"bertonico") & `TIME'>=1992
replace `_NV' = 015020 if strmatch(`_CLONE',"bertonico") & `TIME'<1992
replace `_NV' = 005009 if strmatch(`_CLONE',"berzano di san pietro")
replace `_NV' = 006016 if strmatch(`_CLONE',"berzano di tortona")
replace `_NV' = 017016 if strmatch(`_CLONE',"berzo demo")
replace `_NV' = 017017 if strmatch(`_CLONE',"berzo inferiore")
replace `_NV' = 016025 if strmatch(`_CLONE',"berzo san fermo")
replace `_NV' = 108008 if strmatch(`_CLONE',"besana in brianza") & `TIME'>=2010
replace `_NV' = 015021 if strmatch(`_CLONE',"besana in brianza") & `TIME'<2010
replace `_NV' = 012011 if strmatch(`_CLONE',"besano")
replace `_NV' = 015022 if strmatch(`_CLONE',"besate")
replace `_NV' = 022013 if strmatch(`_CLONE',"besenello")
replace `_NV' = 033003 if strmatch(`_CLONE',"besenzone")
replace `_NV' = 012012 if strmatch(`_CLONE',"besnate")
replace `_NV' = 012013 if strmatch(`_CLONE',"besozzo")
replace `_NV' = 090010 if strmatch(`_CLONE',"bessude")
replace `_NV' = 033004 if strmatch(`_CLONE',"bettola")
replace `_NV' = 054003 if strmatch(`_CLONE',"bettona")
replace `_NV' = 103011 if strmatch(`_CLONE',"beura*cardezza") & `TIME'>=1992
replace `_NV' = 003017 if strmatch(`_CLONE',"beura*cardezza") & `TIME'<1992
replace `_NV' = 054004 if strmatch(`_CLONE',"bevagna")
replace `_NV' = 011003 if strmatch(`_CLONE',"beverino")
replace `_NV' = 023008 if strmatch(`_CLONE',"bevilacqua")
replace `_NV' = 022014 if strmatch(`_CLONE',"bezzecca")
replace `_NV' = 087008 if strmatch(`_CLONE',"biancavilla")
replace `_NV' = 078016 if strmatch(`_CLONE',"bianchi")
replace `_NV' = 080009 if strmatch(`_CLONE',"bianco")
replace `_NV' = 003018 if strmatch(`_CLONE',"biandrate")
replace `_NV' = 012014 if strmatch(`_CLONE',"biandronno")
replace `_NV' = 016026 if strmatch(`_CLONE',"bianzano")
replace `_NV' = 002011 if strmatch(`_CLONE',"bianz?") | strmatch(`_CLONE',"bianz??")
replace `_NV' = 014008 if strmatch(`_CLONE',"bianzone")
replace `_NV' = 108009 if strmatch(`_CLONE',"biassono") & `TIME'>=2010
replace `_NV' = 015023 if strmatch(`_CLONE',"biassono") & `TIME'<2010
replace `_NV' = 035004 if strmatch(`_CLONE',"bibbiano")
replace `_NV' = 051004 if strmatch(`_CLONE',"bibbiena")
replace `_NV' = 049001 if strmatch(`_CLONE',"bibbona")
replace `_NV' = 001025 if strmatch(`_CLONE',"bibiana")
replace `_NV' = 071006 if strmatch(`_CLONE',"biccari")
replace `_NV' = 030011 if strmatch(`_CLONE',"bicinicco")
replace `_NV' = 095014 if strmatch(`_CLONE',"bidon*")
replace `_NV' = 096004 if strmatch(`_CLONE',"biella") & `TIME'>=1992
replace `_NV' = 002012 if strmatch(`_CLONE',"biella") & `TIME'<1992
replace `_NV' = 017018 if strmatch(`_CLONE',"bienno")
replace `_NV' = 022015 if strmatch(`_CLONE',"bieno")
replace `_NV' = 050001 if strmatch(`_CLONE',"bientina")
replace `_NV' = 020004 if strmatch(`_CLONE',"bigarello")
replace `_NV' = 013023 if strmatch(`_CLONE',"binago")
replace `_NV' = 015024 if strmatch(`_CLONE',"binasco")
replace `_NV' = 072008 if strmatch(`_CLONE',"binetto")
replace `_NV' = 096005 if strmatch(`_CLONE',"bioglio") & `TIME'>=1992
replace `_NV' = 002013 if strmatch(`_CLONE',"bioglio") & `TIME'<1992
replace `_NV' = 007010 if strmatch(`_CLONE',"bionaz")
replace `_NV' = 017019 if strmatch(`_CLONE',"bione")
replace `_NV' = 091008 if strmatch(`_CLONE',"birori")
replace `_NV' = 064011 if strmatch(`_CLONE',"bisaccia")
replace `_NV' = 082010 if strmatch(`_CLONE',"bisacquino")
replace `_NV' = 110003 if strmatch(`_CLONE',"bisceglie") & `TIME'>=2010
replace `_NV' = 072009 if strmatch(`_CLONE',"bisceglie") & `TIME'<2010
replace `_NV' = 066011 if strmatch(`_CLONE',"bisegna")
replace `_NV' = 067007 if strmatch(`_CLONE',"bisenti")
replace `_NV' = 078017 if strmatch(`_CLONE',"bisignano")
replace `_NV' = 006017 if strmatch(`_CLONE',"bistagno")
replace `_NV' = 012015 if strmatch(`_CLONE',"bisuschio")
replace `_NV' = 072010 if strmatch(`_CLONE',"bitetto")
replace `_NV' = 072011 if strmatch(`_CLONE',"bitonto")
replace `_NV' = 072012 if strmatch(`_CLONE',"bitritto")
replace `_NV' = 091009 if strmatch(`_CLONE',"bitti")
replace `_NV' = 084004 if strmatch(`_CLONE',"bivona")
replace `_NV' = 080010 if strmatch(`_CLONE',"bivongi")
replace `_NV' = 013024 if strmatch(`_CLONE',"bizzarone")
replace `_NV' = 022016 if strmatch(`_CLONE',"bleggio inferiore")
replace `_NV' = 022017 if strmatch(`_CLONE',"bleggio superiore")
replace `_NV' = 016027 if strmatch(`_CLONE',"blello")
replace `_NV' = 056007 if strmatch(`_CLONE',"blera")
replace `_NV' = 013025 if strmatch(`_CLONE',"blessagno")
replace `_NV' = 013026 if strmatch(`_CLONE',"blevio")
replace `_NV' = 082082 if strmatch(`_CLONE',"blufi")
replace `_NV' = 028012 if strmatch(`_CLONE',"boara pisani")
replace `_NV' = 033005 if strmatch(`_CLONE',"bobbio")
replace `_NV' = 001026 if strmatch(`_CLONE',"bobbio pellice")
replace `_NV' = 003019 if strmatch(`_CLONE',"boca")
replace `_NV' = 078018 if strmatch(`_CLONE',"bocchigliero")
replace `_NV' = 002014 if strmatch(`_CLONE',"boccioleto")
replace `_NV' = 022018 if strmatch(`_CLONE',"bocenago")
replace `_NV' = 012016 if strmatch(`_CLONE',"bodio lomnago")
replace `_NV' = 098003 if strmatch(`_CLONE',"boffalora *adda") & `TIME'>=1992
replace `_NV' = 015025 if strmatch(`_CLONE',"boffalora *adda") & `TIME'<1992
replace `_NV' = 015026 if strmatch(`_CLONE',"boffalora sopra ticino")
replace `_NV' = 010004 if strmatch(`_CLONE',"bogliasco")
replace `_NV' = 103012 if strmatch(`_CLONE',"bognanco") & `TIME'>=1992
replace `_NV' = 003020 if strmatch(`_CLONE',"bognanco") & `TIME'<1992
replace `_NV' = 003021 if strmatch(`_CLONE',"bogogno")
replace `_NV' = 009011 if strmatch(`_CLONE',"boissano")
replace `_NV' = 070003 if strmatch(`_CLONE',"bo?ano")
replace `_NV' = 011004 if strmatch(`_CLONE',"bolano")
replace `_NV' = 022019 if strmatch(`_CLONE',"bolbeno")
replace `_NV' = 016028 if strmatch(`_CLONE',"bolgare")
replace `_NV' = 015027 if strmatch(`_CLONE',"bollate")
replace `_NV' = 001027 if strmatch(`_CLONE',"bollengo")
replace `_NV' = 037006 if strmatch(`_CLONE',"bologna")
replace `_NV' = 068003 if strmatch(`_CLONE',"bolognano")
replace `_NV' = 082011 if strmatch(`_CLONE',"bolognetta")
replace `_NV' = 043005 if strmatch(`_CLONE',"bolognola")
replace `_NV' = 091010 if strmatch(`_CLONE',"bolotana")
replace `_NV' = 056008 if strmatch(`_CLONE',"bolsena")
replace `_NV' = 016029 if strmatch(`_CLONE',"boltiere")
replace `_NV' = 021008 if strmatch(`_CLONE',"bolzano*bozen*") | strmatch(`_CLONE',"bolzano") | strmatch(`_CLONE',"bozen")
replace `_NV' = 003022 if strmatch(`_CLONE',"bolzano novarese")
replace `_NV' = 024013 if strmatch(`_CLONE',"bolzano vicentino")
replace `_NV' = 056009 if strmatch(`_CLONE',"bomarzo")
replace `_NV' = 069006 if strmatch(`_CLONE',"bomba")
replace `_NV' = 085002 if strmatch(`_CLONE',"bompensiere")
replace `_NV' = 082012 if strmatch(`_CLONE',"bompietro")
replace `_NV' = 036002 if strmatch(`_CLONE',"bomporto")
replace `_NV' = 095015 if strmatch(`_CLONE',"bonarcado")
replace `_NV' = 011005 if strmatch(`_CLONE',"bonassola")
replace `_NV' = 016030 if strmatch(`_CLONE',"bonate sopra")
replace `_NV' = 016031 if strmatch(`_CLONE',"bonate sotto")
replace `_NV' = 023009 if strmatch(`_CLONE',"bonavigo")
replace `_NV' = 038003 if strmatch(`_CLONE',"bondeno")
replace `_NV' = 022020 if strmatch(`_CLONE',"bondo")
replace `_NV' = 022021 if strmatch(`_CLONE',"bondone")
replace `_NV' = 062009 if strmatch(`_CLONE',"bonea")
replace `_NV' = 070004 if strmatch(`_CLONE',"bonefro")
replace `_NV' = 019006 if strmatch(`_CLONE',"bonemerse")
replace `_NV' = 078019 if strmatch(`_CLONE',"bonifati")
replace `_NV' = 064012 if strmatch(`_CLONE',"bonito")
replace `_NV' = 090011 if strmatch(`_CLONE',"bonnanaro")
replace `_NV' = 090012 if strmatch(`_CLONE',"bono")
replace `_NV' = 090013 if strmatch(`_CLONE',"bonorva")
replace `_NV' = 004023 if strmatch(`_CLONE',"bonvicino")
replace `_NV' = 057006 if strmatch(`_CLONE',"borbona")
replace `_NV' = 025007 if strmatch(`_CLONE',"borca di cadore")
replace `_NV' = 030012 if strmatch(`_CLONE',"bordano")
replace `_NV' = 008008 if strmatch(`_CLONE',"bordighera")
replace `_NV' = 019007 if strmatch(`_CLONE',"bordolano")
replace `_NV' = 034005 if strmatch(`_CLONE',"bore")
replace `_NV' = 035005 if strmatch(`_CLONE',"boretto")
replace `_NV' = 018015 if strmatch(`_CLONE',"borgarello")
replace `_NV' = 001028 if strmatch(`_CLONE',"borgaro torinese")
replace `_NV' = 082013 if strmatch(`_CLONE',"borgetto")
replace `_NV' = 008009 if strmatch(`_CLONE',"borghetto *arroscia")
replace `_NV' = 006018 if strmatch(`_CLONE',"borghetto di borbera")
replace `_NV' = 011006 if strmatch(`_CLONE',"borghetto di vara")
replace `_NV' = 098004 if strmatch(`_CLONE',"borghetto lodigiano") & `TIME'>=1992
replace `_NV' = 015028 if strmatch(`_CLONE',"borghetto lodigiano") & `TIME'<1992
replace `_NV' = 009012 if strmatch(`_CLONE',"borghetto santo spirito")
replace `_NV' = 040004 if strmatch(`_CLONE',"borghi")
replace `_NV' = 079011 if strmatch(`_CLONE',"borgia")
replace `_NV' = 001029 if strmatch(`_CLONE',"borgiallo")
replace `_NV' = 009013 if strmatch(`_CLONE',"borgio verezzi")
replace `_NV' = 020073 if strmatch(`_CLONE',"borgocarbonara")
replace `_NV' = 046004 if strmatch(`_CLONE',"borgo a mozzano")
replace `_NV' = 002015 if strmatch(`_CLONE',"borgo *ale")
replace `_NV' = 022238 if strmatch(`_CLONE',"borgo*chiese")
replace `_NV' = 022252 if strmatch(`_CLONE',"borgo*anaunia")
replace `_NV' = 016032 if strmatch(`_CLONE',"borgo di terzo")
replace `_NV' = 022239 if strmatch(`_CLONE',"borgo*lares")
replace `_NV' = 020072 if strmatch(`_CLONE',"borgo mantovano")
replace `_NV' = 041006 if strmatch(`_CLONE',"borgo pace")
replace `_NV' = 018016 if strmatch(`_CLONE',"borgo priolo")
replace `_NV' = 004025 if strmatch(`_CLONE',"borgo s*dalmazzo")
replace `_NV' = 017020 if strmatch(`_CLONE',"borgo s*giacomo")
replace `_NV' = 098005 if strmatch(`_CLONE',"borgo s*giovanni") & `TIME'>=1992
replace `_NV' = 015029 if strmatch(`_CLONE',"borgo s*giovanni") & `TIME'<1992
replace `_NV' = 048004 if strmatch(`_CLONE',"borgo s*lorenzo")
replace `_NV' = 006020 if strmatch(`_CLONE',"borgo s*martino")
replace `_NV' = 018018 if strmatch(`_CLONE',"borgo s*siro")
replace `_NV' = 003025 if strmatch(`_CLONE',"borgo ticino")
replace `_NV' = 037007 if strmatch(`_CLONE',"borgo tossignano")
replace `_NV' = 025074 if strmatch(`_CLONE',"borgo valbelluna")
replace `_NV' = 034006 if strmatch(`_CLONE',"borgo val di taro")
replace `_NV' = 022022 if strmatch(`_CLONE',"borgo valsugana")
replace `_NV' = 057008 if strmatch(`_CLONE',"borgo velino")
replace `_NV' = 028107 if strmatch(`_CLONE',"borgo veneto")
replace `_NV' = 002017 if strmatch(`_CLONE',"borgo vercelli")
replace `_NV' = 020071 if strmatch(`_CLONE',"borgo virgilio")
replace `_NV' = 020005 if strmatch(`_CLONE',"borgoforte")
replace `_NV' = 001030 if strmatch(`_CLONE',"borgofranco *ivrea")
replace `_NV' = 020006 if strmatch(`_CLONE',"borgofranco sul po")
replace `_NV' = 003023 if strmatch(`_CLONE',"borgolavezzaro")
replace `_NV' = 004024 if strmatch(`_CLONE',"borgomale")
replace `_NV' = 003024 if strmatch(`_CLONE',"borgomanero")
replace `_NV' = 008010 if strmatch(`_CLONE',"borgomaro")
replace `_NV' = 001031 if strmatch(`_CLONE',"borgomasino")
replace `_NV' = 103078 if strmatch(`_CLONE',"borgomezzavalle")
replace `_NV' = 001032 if strmatch(`_CLONE',"borgone susa")
replace `_NV' = 033006 if strmatch(`_CLONE',"borgonovo val tidone")
replace `_NV' = 006019 if strmatch(`_CLONE',"borgoratto alessandrino")
replace `_NV' = 018017 if strmatch(`_CLONE',"borgoratto mormorolo")
replace `_NV' = 028013 if strmatch(`_CLONE',"borgoricco")
replace `_NV' = 057007 if strmatch(`_CLONE',"borgorose")
replace `_NV' = 017021 if strmatch(`_CLONE',"borgosatollo")
replace `_NV' = 002016 if strmatch(`_CLONE',"borgosesia")
replace `_NV' = 009014 if strmatch(`_CLONE',"bormida")
replace `_NV' = 014009 if strmatch(`_CLONE',"bormio")
replace `_NV' = 018019 if strmatch(`_CLONE',"bornasco")
replace `_NV' = 017022 if strmatch(`_CLONE',"borno")
replace `_NV' = 095016 if strmatch(`_CLONE',"boroneddu")
replace `_NV' = 091011 if strmatch(`_CLONE',"borore")
replace `_NV' = 069007 if strmatch(`_CLONE',"borrello")
replace `_NV' = 096006 if strmatch(`_CLONE',"borriana") & `TIME'>=1992
replace `_NV' = 002018 if strmatch(`_CLONE',"borriana") & `TIME'<1992
replace `_NV' = 026004 if strmatch(`_CLONE',"borso del grappa")
replace `_NV' = 091012 if strmatch(`_CLONE',"bortigali")
replace `_NV' = 104007 if strmatch(`_CLONE',"bortigiadas") & `TIME'>=2006 & `TIME'<=2016
replace `_NV' = 090014 if strmatch(`_CLONE',"bortigiadas") & (`TIME'<2006 | `TIME'>2016)
replace `_NV' = 090015 if strmatch(`_CLONE',"borutta")
replace `_NV' = 010005 if strmatch(`_CLONE',"borzonasca")
replace `_NV' = 095079 if strmatch(`_CLONE',"bosa") & `TIME'>=2006
replace `_NV' = 091013 if strmatch(`_CLONE',"bosa") & `TIME'<2006
replace `_NV' = 029007 if strmatch(`_CLONE',"bosaro")
replace `_NV' = 023010 if strmatch(`_CLONE',"boschi*anna")
replace `_NV' = 023011 if strmatch(`_CLONE',"bosco chiesanuova")
replace `_NV' = 006021 if strmatch(`_CLONE',"bosco marengo")
replace `_NV' = 001033 if strmatch(`_CLONE',"bosconero")
replace `_NV' = 063008 if strmatch(`_CLONE',"boscoreale")
replace `_NV' = 063009 if strmatch(`_CLONE',"boscotrecase")
replace `_NV' = 022023 if strmatch(`_CLONE',"bosentino")
replace `_NV' = 004026 if strmatch(`_CLONE',"bosia")
replace `_NV' = 006022 if strmatch(`_CLONE',"bosio")
replace `_NV' = 097009 if strmatch(`_CLONE',"bosisio parini") & `TIME'>=1992
replace `_NV' = 013027 if strmatch(`_CLONE',"bosisio parini") & `TIME'<1992
replace `_NV' = 018020 if strmatch(`_CLONE',"bosnasco")
replace `_NV' = 016033 if strmatch(`_CLONE',"bossico")
replace `_NV' = 004027 if strmatch(`_CLONE',"bossolasco")
replace `_NV' = 079012 if strmatch(`_CLONE',"botricello")
replace `_NV' = 075009 if strmatch(`_CLONE',"botrugno")
replace `_NV' = 016034 if strmatch(`_CLONE',"bottanuco")
replace `_NV' = 017023 if strmatch(`_CLONE',"botticino")
replace `_NV' = 090016 if strmatch(`_CLONE',"bottidda")
replace `_NV' = 080011 if strmatch(`_CLONE',"bova")
replace `_NV' = 080013 if strmatch(`_CLONE',"bova marina")
replace `_NV' = 080012 if strmatch(`_CLONE',"bovalino")
replace `_NV' = 017024 if strmatch(`_CLONE',"bovegno")
replace `_NV' = 004028 if strmatch(`_CLONE',"boves")
replace `_NV' = 017025 if strmatch(`_CLONE',"bovezzo")
replace `_NV' = 060014 if strmatch(`_CLONE',"boville ernica")
replace `_NV' = 071007 if strmatch(`_CLONE',"bovino")
replace `_NV' = 108010 if strmatch(`_CLONE',"bovisio*masciago") & `TIME'>=2010
replace `_NV' = 015030 if strmatch(`_CLONE',"bovisio*masciago") & `TIME'<2010
replace `_NV' = 028014 if strmatch(`_CLONE',"bovolenta")
replace `_NV' = 023012 if strmatch(`_CLONE',"bovolone")
replace `_NV' = 006023 if strmatch(`_CLONE',"bozzole")
replace `_NV' = 020007 if strmatch(`_CLONE',"bozzolo")
replace `_NV' = 004029 if strmatch(`_CLONE',"bra")
replace `_NV' = 016035 if strmatch(`_CLONE',"bracca")
replace `_NV' = 058013 if strmatch(`_CLONE',"bracciano")
replace `_NV' = 065016 if strmatch(`_CLONE',"bracigliano")
replace `_NV' = 021009 if strmatch(`_CLONE',"braies*")| strmatch(`_CLONE',"prags")
replace `_NV' = 018021 if strmatch(`_CLONE',"brallo di pregola")
replace `_NV' = 080014 if strmatch(`_CLONE',"brancaleone")
replace `_NV' = 017026 if strmatch(`_CLONE',"brandico")
replace `_NV' = 001034 if strmatch(`_CLONE',"brandizzo")
replace `_NV' = 016036 if strmatch(`_CLONE',"branzi")
replace `_NV' = 017027 if strmatch(`_CLONE',"braone")
replace `_NV' = 012017 if strmatch(`_CLONE',"brebbia")
replace `_NV' = 026005 if strmatch(`_CLONE',"breda di piave")
replace `_NV' = 012018 if strmatch(`_CLONE',"bregano")
replace `_NV' = 024014 if strmatch(`_CLONE',"breganze")
replace `_NV' = 013028 if strmatch(`_CLONE',"bregnano")
replace `_NV' = 022024 if strmatch(`_CLONE',"breguzzo")
replace `_NV' = 002019 if strmatch(`_CLONE',"breia")
replace `_NV' = 016037 if strmatch(`_CLONE',"brembate")
replace `_NV' = 016038 if strmatch(`_CLONE',"brembate di sopra")
replace `_NV' = 016039 if strmatch(`_CLONE',"brembilla")
replace `_NV' = 098006 if strmatch(`_CLONE',"brembio") & `TIME'>=1992
replace `_NV' = 015031 if strmatch(`_CLONE',"brembio") & `TIME'<1992
replace `_NV' = 018022 if strmatch(`_CLONE',"breme")
replace `_NV' = 024015 if strmatch(`_CLONE',"brendola")
replace `_NV' = 013029 if strmatch(`_CLONE',"brenna")