forked from arthurdejong/python-stdnum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloc.dat
More file actions
6927 lines (6927 loc) · 236 KB
/
loc.dat
File metadata and controls
6927 lines (6927 loc) · 236 KB
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
# Downloaded from
# https://zh.wikipedia.org/w/index.php?title=中华人民共和国行政区划代码_(1区)&action=raw
# https://zh.wikipedia.org/w/index.php?title=中华人民共和国行政区划代码_(2区)&action=raw
# https://zh.wikipedia.org/w/index.php?title=中华人民共和国行政区划代码_(3区)&action=raw
# https://zh.wikipedia.org/w/index.php?title=中华人民共和国行政区划代码_(4区)&action=raw
# https://zh.wikipedia.org/w/index.php?title=中华人民共和国行政区划代码_(5区)&action=raw
# https://zh.wikipedia.org/w/index.php?title=中华人民共和国行政区划代码_(6区)&action=raw
# https://zh.wikipedia.org/w/index.php?title=中华人民共和国行政区划代码_(7区)&action=raw
# https://zh.wikipedia.org/w/index.php?title=中华人民共和国行政区划代码_(8区)&action=raw
11 province="北京市"
0000 county="北京市"
0100 county="市辖区"
0101 county="东城区"
0102 county="西城区"
0103 county="[-2010]崇文区"
0104 county="[-2010]宣武区"
0105 county="朝阳区"
0106 county="丰台区"
0107 county="石景山区"
0108 county="海淀区"
0109 county="门头沟区"
0110 county="[-1986]燕山区"
0111 county="[1986-]房山区"
0112 county="[1997-]通州区"
0113 county="[1998-]顺义区"
0114 county="[1999-]昌平区"
0115 county="[2001-]大兴区"
0116 county="[2001-]怀柔区"
0117 county="[2001-]平谷区"
0118 county="[2015-]密云区"
0119 county="[2015-]延庆区"
0200 county="[-2015]县"
0201 county="[-1982]昌平县"
0202 county="[-1982]顺义县"
0203 county="[-1982]通县"
0204 county="[-1982]大兴县"
0205 county="[-1982]房山县"
0206 county="[-1982]平谷县"
0207 county="[-1982]怀柔县"
0208 county="[-1982]密云县"
0209 county="[-1982]延庆县"
0221 county="[1982-1999]昌平县"
0222 county="[1982-1998]顺义县"
0223 county="[1982-1997]通县"
0224 county="[1982-2001]大兴县"
0225 county="[1982-1986]房山县"
0226 county="[1982-2001]平谷县"
0227 county="[1982-2001]怀柔县"
0228 county="[1982-2015]密云县"
0229 county="[1982-2015]延庆县"
12 province="天津市"
0000 county="天津市"
0100 county="市辖区"
0101 county="和平区"
0102 county="河东区"
0103 county="河西区"
0104 county="南开区"
0105 county="河北区"
0106 county="红桥区"
0107 county="[-2009]塘沽区"
0108 county="[-2009]汉沽区"
0109 county="[-2009]大港区"
0110 county="[-1991]东郊区,[1992-]东丽区"
0111 county="[-1991]西郊区,[1992-]西青区"
0112 county="[-1991]南郊区,[1992-]津南区"
0113 county="[-1991]北郊区,[1992-]北辰区"
0114 county="[2000-]武清区"
0115 county="[2001-]宝坻区"
0116 county="[2009-]滨海新区"
0117 county="[2015-]宁河区"
0118 county="[2015-]静海区"
0119 county="[2016-]蓟州区"
0200 county="[-2016]县"
0201 county="[-1982]宁河县"
0202 county="[-1982]武清县"
0203 county="[-1982]静海县"
0204 county="[-1982]宝坻县"
0205 county="[-1982]蓟县"
0221 county="[1982-2015]宁河县"
0222 county="[1982-2000]武清县"
0223 county="[1982-2015]静海县"
0224 county="[1982-2001]宝坻县"
0225 county="[1982-2016]蓟县"
13 province="河北省"
0000 county="河北省"
0100 county="石家庄市"
0101 county="[1983-]市辖区"
0102 county="[1983-]长安区"
0103 county="[1983-2014]桥东区"
0104 county="[1983-]桥西区"
0105 county="[1983-]新华区"
0106 county="[1983-2001]郊区"
0107 county="[1983-]井陉矿区"
0108 county="[2001-]裕华区"
0109 county="[2014-]藁城区"
0110 county="[2014-]鹿泉区"
0111 county="[2014-]栾城区"
0121 county="[1983-]井陉县"
0122 county="[1983-1994]获鹿县"
0123 county="[1986-]正定县"
0124 county="[1986-2014]栾城县"
0125 county="[1993-]行唐县"
0126 county="[1993-]灵寿县"
0127 county="[1993-]高邑县"
0128 county="[1993-]深泽县"
0129 county="[1993-]赞皇县"
0130 county="[1993-]无极县"
0131 county="[1993-]平山县"
0132 county="[1993-]元氏县"
0133 county="[1993-]赵县"
0181 county="[1993-]辛集市"
0182 county="[1993-2014]藁城市"
0183 county="[1993-]晋州市"
0184 county="[1993-]新乐市"
0185 county="[1994-2014]鹿泉市"
0200 county="唐山市"
0201 county="[1983-]市辖区"
0202 county="[1983-]路南区"
0203 county="[1983-]路北区"
0204 county="[1983-1994]东矿区,[1995-]古冶区"
0205 county="[1983-]开平区"
0206 county="[1983-2002]新区"
0207 county="[2002-]丰南区"
0208 county="[2002-]丰润区"
0209 county="[2012-]曹妃甸区"
0221 county="[1983-2002]丰润县"
0222 county="[1983-1994]丰南县"
0223 county="[1983-2018]滦县"
0224 county="[1983-]滦南县"
0225 county="[1983-]乐亭县"
0226 county="[1983-1996]迁安县"
0227 county="[1983-]迁西县"
0228 county="[1983-1992]遵化县"
0229 county="[1983-]玉田县"
0230 county="[1983-2012]唐海县"
0281 county="[1992-]遵化市"
0282 county="[1994-2002]丰南市"
0283 county="[1996-]迁安市"
0284 county="[2018-]滦州市"
0300 county="[1983-]秦皇岛市"
0301 county="[1983-]市辖区"
0302 county="[1983-]海港区"
0303 county="[1983-]山海关区"
0304 county="[1983-]北戴河区"
0305 county="[1983-1984]郊区"
0306 county="[2015-]抚宁区"
0321 county="[1983-1985]青龙县,[1986-]青龙满族自治县"
0322 county="[1983-]昌黎县"
0323 county="[1983-2015]抚宁县"
0324 county="[1983-]卢龙县"
0400 county="[1983-]邯郸市"
0401 county="[1983-]市辖区"
0402 county="[1983-]邯山区"
0403 county="[1983-]丛台区"
0404 county="[1983-]复兴区"
0405 county="[1983-1986]郊区"
0406 county="[1983-]峰峰矿区"
0407 county="[2016-]肥乡区"
0408 county="[2016-]永年区"
0421 county="[1983-2016]邯郸县"
0422 county="[1986-1988]武安县"
0423 county="[1993-]临漳县"
0424 county="[1993-]成安县"
0425 county="[1993-]大名县"
0426 county="[1993-]涉县"
0427 county="[1993-]磁县"
0428 county="[1993-2016]肥乡县"
0429 county="[1993-2016]永年县"
0430 county="[1993-1995]丘县,[1996-]邱县"
0431 county="[1993-]鸡泽县"
0432 county="[1993-]广平县"
0433 county="[1993-]馆陶县"
0434 county="[1993-]魏县"
0435 county="[1993-]曲周县"
0481 county="[1989-]武安市"
0500 county="[1983-]邢台市"
0501 county="[1983-]市辖区"
0502 county="[1983-2019]桥东区,[2020-]襄都区"
0503 county="[1983-2019]桥西区,[2020-]信都区"
0504 county="[1983-1988]郊区"
0505 county="[2020-]任泽区"
0506 county="[2020-]南和区"
0521 county="[1986-2020]邢台县"
0522 county="[1993-]临城县"
0523 county="[1993-]内丘县"
0524 county="[1993-]柏乡县"
0525 county="[1993-]隆尧县"
0526 county="[1993-2020]任县"
0527 county="[1993-2020]南和县"
0528 county="[1993-]宁晋县"
0529 county="[1993-]巨鹿县"
0530 county="[1993-]新河县"
0531 county="[1993-]广宗县"
0532 county="[1993-]平乡县"
0533 county="[1993-]威县"
0534 county="[1993-]清河县"
0535 county="[1993-]临西县"
0581 county="[1993-]南宫市"
0582 county="[1993-]沙河市"
0600 county="[1983-]保定市"
0601 county="[1983-]市辖区"
0602 county="[1983-2014]新市区,[2015-]竞秀区"
0603 county="[1983-2015]北市区"
0604 county="[1983-2015]南市区"
0605 county="[1983-1987]郊区"
0606 county="[2015-]莲池区"
0607 county="[2015-]满城区"
0608 county="[2015-]清苑区"
0609 county="[2015-]徐水区"
0621 county="[1983-2015]满城县"
0622 county="[1986-2015]清苑县"
0623 county="[1994-]涞水县"
0624 county="[1994-]阜平县"
0625 county="[1994-2015]徐水县"
0626 county="[1994-]定兴县"
0627 county="[1994-]唐县"
0628 county="[1994-]高阳县"
0629 county="[1994-]容城县"
0630 county="[1994-]涞源县"
0631 county="[1994-]望都县"
0632 county="[1994-]安新县"
0633 county="[1994-]易县"
0634 county="[1994-]曲阳县"
0635 county="[1994-]蠡县"
0636 county="[1994-]顺平县"
0637 county="[1994-]博野县"
0638 county="[1994-]雄县"
0681 county="[1994-]涿州市"
0682 county="[1994-]定州市"
0683 county="[1994-]安国市"
0684 county="[1994-]高碑店市"
0700 county="[1983-]张家口市"
0701 county="[1983-]市辖区"
0702 county="[1983-]桥东区"
0703 county="[1983-]桥西区"
0704 county="[1983-1989]茶坊区"
0705 county="[1983-]宣化区"
0706 county="[1983-]下花园区"
0707 county="[1983-1989]庞家堡区"
0708 county="[2016-]万全区"
0709 county="[2016-]崇礼区"
0721 county="[1983-2016]宣化县"
0722 county="[1993-]张北县"
0723 county="[1993-]康保县"
0724 county="[1993-]沽源县"
0725 county="[1993-]尚义县"
0726 county="[1993-]蔚县"
0727 county="[1993-]阳原县"
0728 county="[1993-]怀安县"
0729 county="[1993-2016]万全县"
0730 county="[1993-]怀来县"
0731 county="[1993-]涿鹿县"
0732 county="[1993-]赤城县"
0733 county="[1993-2016]崇礼县"
0800 county="[1983-]承德市"
0801 county="[1983-]市辖区"
0802 county="[1983-]双桥区"
0803 county="[1983-]双滦区"
0804 county="[1983-]鹰手营子矿区"
0821 county="[1983-]承德县"
0822 county="[1993-]兴隆县"
0823 county="[1993-2017]平泉县"
0824 county="[1993-]滦平县"
0825 county="[1993-]隆化县"
0826 county="[1993-]丰宁满族自治县"
0827 county="[1993-]宽城满族自治县"
0828 county="[1993-]围场满族蒙古族自治县"
0881 county="[2017-]平泉市"
0900 county="[1983-]沧州市"
0901 county="[1983-]市辖区"
0902 county="[1983-]新华区"
0903 county="[1983-]运河区"
0904 county="[1983-1997]郊区"
0921 county="[1983-]沧县"
0922 county="[1986-]青县"
0923 county="[1993-]东光县"
0924 county="[1993-]海兴县"
0925 county="[1993-]盐山县"
0926 county="[1993-]肃宁县"
0927 county="[1993-]南皮县"
0928 county="[1993-]吴桥县"
0929 county="[1993-]献县"
0930 county="[1993-]孟村回族自治县"
0981 county="[1993-]泊头市"
0982 county="[1993-]任丘市"
0983 county="[1993-]黄骅市"
0984 county="[1993-]河间市"
1000 county="[1988-]廊坊市"
1001 county="[1988-]市辖区"
1002 county="[1988-]安次区"
1003 county="[2000-]广阳区"
1021 county="[1988-1993]三河县"
1022 county="[1988-]固安县"
1023 county="[1988-]永清县"
1024 county="[1988-]香河县"
1025 county="[1988-]大城县"
1026 county="[1988-]文安县"
1027 county="[1988-1990]霸县"
1028 county="[1988-]大厂回族自治县"
1081 county="[1990-]霸州市"
1082 county="[1993-]三河市"
1100 county="[1996-]衡水市"
1101 county="[1996-]市辖区"
1102 county="[1996-]桃城区"
1103 county="[2016-]冀州区"
1121 county="[1996-]枣强县"
1122 county="[1996-]武邑县"
1123 county="[1996-]武强县"
1124 county="[1996-]饶阳县"
1125 county="[1996-]安平县"
1126 county="[1996-]故城县"
1127 county="[1996-]景县"
1128 county="[1996-]阜城县"
1181 county="[1996-2016]冀州市"
1182 county="[1996-]深州市"
2100 county="[-1993]邯郸地区"
2101 county="[-1983]邯郸市"
2121 county="[-1993]大名县"
2122 county="[-1993]魏县"
2123 county="[-1993]曲周县"
2124 county="[-1993]丘县"
2125 county="[-1993]鸡泽县"
2126 county="[-1993]肥乡县"
2127 county="[-1993]广平县"
2128 county="[-1993]成安县"
2129 county="[-1993]临漳县"
2130 county="[-1993]磁县"
2131 county="[-1986]武安县"
2132 county="[-1993]涉县"
2133 county="[-1993]永年县"
2134 county="[-1983]邯郸县"
2135 county="[-1993]馆陶县"
2200 county="[-1993]邢台地区"
2201 county="[1986-1993]南宫市"
2202 county="[1987-1993]沙河市"
2221 county="[-1986]邢台县"
2222 county="[-1987]沙河县"
2223 county="[-1993]临城县"
2224 county="[-1993]内丘县"
2225 county="[-1993]柏乡县"
2226 county="[-1993]隆尧县"
2227 county="[-1993]任县"
2228 county="[-1993]南和县"
2229 county="[-1993]宁晋县"
2230 county="[-1986]南宫县"
2231 county="[-1993]巨鹿县"
2232 county="[-1993]新河县"
2233 county="[-1993]广宗县"
2234 county="[-1993]平乡县"
2235 county="[-1993]威县"
2236 county="[-1993]清河县"
2237 county="[-1993]临西县"
2300 county="[-1993]石家庄地区"
2301 county="[1986-1993]辛集市"
2302 county="[1989-1993]藁城市"
2303 county="[1991-1993]晋州市"
2304 county="[1992-1993]新乐市"
2321 county="[-1986]束鹿县"
2322 county="[-1991]晋县"
2323 county="[-1993]深泽县"
2324 county="[-1993]无极县"
2325 county="[-1989]藁城县"
2326 county="[-1993]赵县"
2327 county="[-1986]栾城县"
2328 county="[-1986]正定县"
2329 county="[-1992]新乐县"
2330 county="[-1993]高邑县"
2331 county="[-1993]元氏县"
2332 county="[-1993]赞皇县"
2333 county="[-1983]井陉县"
2334 county="[-1983]获鹿县"
2335 county="[-1993]平山县"
2336 county="[-1993]灵寿县"
2337 county="[-1993]行唐县"
2400 county="[-1994]保定地区"
2401 county="[1986-1994]定州市"
2402 county="[1986-1994]涿州市"
2403 county="[1991-1994]安国市"
2404 county="[1993-1994]高碑店市"
2421 county="[-1994]易县"
2422 county="[-1983]满城县"
2423 county="[-1994]徐水县"
2424 county="[-1994]涞源县"
2425 county="[-1994]定兴县"
2426 county="[-1992]完县,[1993-1994]顺平县"
2427 county="[-1994]唐县"
2428 county="[-1994]望都县"
2429 county="[-1994]涞水县"
2430 county="[-1986]涿县"
2431 county="[-1986]清苑县"
2432 county="[-1994]高阳县"
2433 county="[-1994]安新县"
2434 county="[-1994]雄县"
2435 county="[-1994]容城县"
2436 county="[-1993]新城县"
2437 county="[-1994]曲阳县"
2438 county="[-1994]阜平县"
2439 county="[-1986]定县"
2440 county="[-1991]安国县"
2441 county="[-1994]博野县"
2442 county="[-1994]蠡县"
2500 county="[-1993]张家口地区"
2501 county="[-1983]张家口市"
2521 county="[-1993]张北县"
2522 county="[-1993]康保县"
2523 county="[-1993]沽源县"
2524 county="[-1993]尚义县"
2525 county="[-1993]蔚县"
2526 county="[-1993]阳原县"
2527 county="[-1993]怀安县"
2528 county="[-1993]万全县"
2529 county="[-1993]怀来县"
2530 county="[-1993]涿鹿县"
2531 county="[-1983]宣化县"
2532 county="[-1993]赤城县"
2533 county="[-1993]崇礼县"
2600 county="[-1993]承德地区"
2601 county="[-1983]承德市"
2621 county="[-1983]青龙县"
2622 county="[-1988]宽城县,[1989-1993]宽城满族自治县"
2623 county="[-1993]兴隆县"
2624 county="[-1993]平泉县"
2625 county="[-1983]承德县"
2626 county="[-1993]滦平县"
2627 county="[-1985]丰宁县,[1986-1993]丰宁满族自治县"
2628 county="[-1993]隆化县"
2629 county="[-1988]围场县,[1989-1993]围场满族蒙古族自治县"
2700 county="[-1983]唐山地区"
2701 county="[-1983]秦皇岛市"
2721 county="[-1983]丰润县"
2722 county="[-1983]丰南县"
2723 county="[-1983]滦县"
2724 county="[-1983]滦南县"
2725 county="[-1983]乐亭县"
2726 county="[-1983]昌黎县"
2727 county="[-1983]抚宁县"
2728 county="[-1983]卢龙县"
2729 county="[-1983]迁安县"
2730 county="[-1983]迁西县"
2731 county="[-1983]遵化县"
2732 county="[-1983]玉田县"
2800 county="[-1988]廊坊地区"
2801 county="[1981-1988]廊坊市"
2821 county="[-1988]三河县"
2822 county="[-1988]大厂回族自治县"
2823 county="[-1988]香河县"
2824 county="[-1983]安次县"
2825 county="[-1988]永清县"
2826 county="[-1988]固安县"
2827 county="[-1988]霸县"
2828 county="[-1988]文安县"
2829 county="[-1988]大城县"
2900 county="[-1993]沧州地区"
2901 county="[-1983]沧州市"
2902 county="[1982-1993]泊头市"
2903 county="[1986-1993]任丘市"
2904 county="[1989-1993]黄骅市"
2905 county="[1990-1993]河间市"
2921 county="[-1983]沧县"
2922 county="[-1990]河间县"
2923 county="[-1993]肃宁县"
2924 county="[-1993]献县"
2925 county="[-1983]交河县"
2926 county="[-1993]吴桥县"
2927 county="[-1993]东光县"
2928 county="[-1993]南皮县"
2929 county="[-1993]盐山县"
2930 county="[-1989]黄骅县"
2931 county="[-1993]孟村回族自治县"
2932 county="[-1986]青县"
2933 county="[-1986]任丘县"
2934 county="[-1993]海兴县"
3000 county="[-1996]衡水地区"
3001 county="[1982-1996]衡水市"
3002 county="[1993-1996]冀州市"
3003 county="[1994-1996]深州市"
3021 county="[-1983]衡水县"
3022 county="[-1993]冀县"
3023 county="[-1996]枣强县"
3024 county="[-1996]武邑县"
3025 county="[-1994]深县"
3026 county="[-1996]武强县"
3027 county="[-1996]饶阳县"
3028 county="[-1996]安平县"
3029 county="[-1996]故城县"
3030 county="[-1996]景县"
3031 county="[-1996]阜城县"
9000 county="[1988-1989]省直辖县级行政单位"
9001 county="[1988-1989]武安市"
14 province="山西省"
0000 county="山西省"
0100 county="太原市"
0101 county="[1983-]市辖区"
0102 county="[1983-1997]南城区"
0103 county="[1983-1997]北城区"
0104 county="[1983-1997]河西区"
0105 county="[1997-]小店区"
0106 county="[1997-]迎泽区"
0107 county="[1997-]杏花岭区"
0108 county="[1997-]尖草坪区"
0109 county="[1997-]万柏林区"
0110 county="[1997-]晋源区"
0111 county="[1983-1988]古交工矿区"
0112 county="[1983-1997]南郊区"
0113 county="[1983-1997]北郊区"
0120 county="[-1983]市区"
0121 county="清徐县"
0122 county="阳曲县"
0123 county="娄烦县"
0181 county="[1989-]古交市"
0200 county="大同市"
0201 county="[1983-]市辖区"
0202 county="[1983-2018]城区"
0203 county="[1983-2018]矿区"
0211 county="[1983-2018]南郊区"
0212 county="[1983-]新荣区"
0213 county="[2018-]平城区"
0214 county="[2018-]云冈区"
0215 county="[2018-]云州区"
0221 county="[1993-]阳高县"
0222 county="[1993-]天镇县"
0223 county="[1993-]广灵县"
0224 county="[1993-]灵丘县"
0225 county="[1993-]浑源县"
0226 county="[1993-]左云县"
0227 county="[1993-2018]大同县"
0300 county="阳泉市"
0301 county="[1983-]市辖区"
0302 county="[1983-]城区"
0303 county="[1983-]矿区"
0311 county="[1983-]郊区"
0321 county="[1983-]平定县"
0322 county="[1983-]盂县"
0400 county="长治市"
0401 county="[1983-]市辖区"
0402 county="[1983-2018]城区"
0403 county="[2018-]潞州区"
0404 county="[2018-]上党区"
0405 county="[2018-]屯留区"
0406 county="[2018-]潞城区"
0411 county="[1983-2018]郊区"
0421 county="[1983-2018]长治县"
0422 county="[1983-1994]潞城县"
0423 county="[1985-]襄垣县"
0424 county="[1985-2018]屯留县"
0425 county="[1985-]平顺县"
0426 county="[1985-]黎城县"
0427 county="[1985-]壶关县"
0428 county="[1985-]长子县"
0429 county="[1985-]武乡县"
0430 county="[1985-]沁县"
0431 county="[1985-]沁源县"
0481 county="[1994-2018]潞城市"
0500 county="[1985-]晋城市"
0501 county="[1985-]市辖区"
0502 county="[1985-]城区"
0511 county="[1985-1996]郊区"
0521 county="[1985-]沁水县"
0522 county="[1985-]阳城县"
0523 county="[1985-1993]高平县"
0524 county="[1985-]陵川县"
0525 county="[1996-]泽州县"
0581 county="[1993-]高平市"
0600 county="[1988-]朔州市"
0601 county="[1988-]市辖区"
0602 county="[1988-]朔城区"
0603 county="[1988-]平鲁区"
0621 county="[1988-]山阴县"
0622 county="[1993-]应县"
0623 county="[1993-]右玉县"
0624 county="[1993-2018]怀仁县"
0681 county="[2018-]怀仁市"
0700 county="[1999-]晋中市"
0701 county="[1999-]市辖区"
0702 county="[1999-]榆次区"
0703 county="[2019-]太谷区"
0721 county="[1999-]榆社县"
0722 county="[1999-]左权县"
0723 county="[1999-]和顺县"
0724 county="[1999-]昔阳县"
0725 county="[1999-]寿阳县"
0726 county="[1999-2019]太谷县"
0727 county="[1999-]祁县"
0728 county="[1999-]平遥县"
0729 county="[1999-]灵石县"
0781 county="[1999-]介休市"
0800 county="[2000-]运城市"
0801 county="[2000-]市辖区"
0802 county="[2000-]盐湖区"
0821 county="[2000-]临猗县"
0822 county="[2000-]万荣县"
0823 county="[2000-]闻喜县"
0824 county="[2000-]稷山县"
0825 county="[2000-]新绛县"
0826 county="[2000-]绛县"
0827 county="[2000-]垣曲县"
0828 county="[2000-]夏县"
0829 county="[2000-]平陆县"
0830 county="[2000-]芮城县"
0881 county="[2000-]永济市"
0882 county="[2000-]河津市"
0900 county="[2000-]忻州市"
0901 county="[2000-]市辖区"
0902 county="[2000-]忻府区"
0921 county="[2000-]定襄县"
0922 county="[2000-]五台县"
0923 county="[2000-]代县"
0924 county="[2000-]繁峙县"
0925 county="[2000-]宁武县"
0926 county="[2000-]静乐县"
0927 county="[2000-]神池县"
0928 county="[2000-]五寨县"
0929 county="[2000-]岢岚县"
0930 county="[2000-]河曲县"
0931 county="[2000-]保德县"
0932 county="[2000-]偏关县"
0981 county="[2000-]原平市"
1000 county="[2000-]临汾市"
1001 county="[2000-]市辖区"
1002 county="[2000-]尧都区"
1021 county="[2000-]曲沃县"
1022 county="[2000-]翼城县"
1023 county="[2000-]襄汾县"
1024 county="[2000-]洪洞县"
1025 county="[2000-]古县"
1026 county="[2000-]安泽县"
1027 county="[2000-]浮山县"
1028 county="[2000-]吉县"
1029 county="[2000-]乡宁县"
1030 county="[2000-]大宁县"
1031 county="[2000-]隰县"
1032 county="[2000-]永和县"
1033 county="[2000-]蒲县"
1034 county="[2000-]汾西县"
1081 county="[2000-]侯马市"
1082 county="[2000-]霍州市"
1100 county="[2003-]吕梁市"
1101 county="[2003-]市辖区"
1102 county="[2003-]离石区"
1121 county="[2003-]文水县"
1122 county="[2003-]交城县"
1123 county="[2003-]兴县"
1124 county="[2003-]临县"
1125 county="[2003-]柳林县"
1126 county="[2003-]石楼县"
1127 county="[2003-]岚县"
1128 county="[2003-]方山县"
1129 county="[2003-]中阳县"
1130 county="[2003-]交口县"
1181 county="[2003-]孝义市"
1182 county="[2003-]汾阳市"
2100 county="[-1993]雁北地区"
2121 county="[-1993]阳高县"
2122 county="[-1993]天镇县"
2123 county="[-1993]广灵县"
2124 county="[-1993]灵丘县"
2125 county="[-1993]浑源县"
2126 county="[-1993]应县"
2127 county="[-1988]山阴县"
2128 county="[-1988]朔县"
2129 county="[-1988]平鲁县"
2130 county="[-1993]左云县"
2131 county="[-1993]右玉县"
2132 county="[-1993]大同县"
2133 county="[-1993]怀仁县"
2200 county="[-1982]忻县地区,[1983-1999]忻州地区"
2201 county="[1983-2000]忻州市"
2202 county="[1993-2000]原平市"
2221 county="[-1983]忻县"
2222 county="[-2000]定襄县"
2223 county="[-2000]五台县"
2224 county="[-1993]原平县"
2225 county="[-2000]代县"
2226 county="[-2000]繁峙县"
2227 county="[-2000]宁武县"
2228 county="[-2000]静乐县"
2229 county="[-2000]神池县"
2230 county="[-2000]五寨县"
2231 county="[-2000]岢岚县"
2232 county="[-2000]河曲县"
2233 county="[-2000]保德县"
2234 county="[-2000]偏关县"
2300 county="[-2003]吕梁地区"
2301 county="[1992-2003]孝义市"
2302 county="[1996-2003]离石市"
2303 county="[1996-2003]汾阳市"
2321 county="[-1996]汾阳县"
2322 county="[-2003]文水县"
2323 county="[-2003]交城县"
2324 county="[-1992]孝义县"
2325 county="[-2003]兴县"
2326 county="[-2003]临县"
2327 county="[-2003]柳林县"
2328 county="[-2003]石楼县"
2329 county="[-2003]岚县"
2330 county="[-2003]方山县"
2331 county="[-1996]离石县"
2332 county="[-2003]中阳县"
2333 county="[-2003]交口县"
2400 county="[-1999]晋中地区"
2401 county="[-1999]榆次市"
2402 county="[1992-1999]介休市"
2421 county="[-1999]榆社县"
2422 county="[-1999]左权县"
2423 county="[-1999]和顺县"
2424 county="[-1999]昔阳县"
2425 county="[-1983]平定县"
2426 county="[-1983]盂县"
2427 county="[-1999]寿阳县"
2428 county="[-1983]榆次县"
2429 county="[-1999]太谷县"
2430 county="[-1999]祁县"
2431 county="[-1999]平遥县"
2432 county="[-1992]介休县"
2433 county="[-1999]灵石县"
2500 county="[-1985]晋东南地区"
2501 county="[1983-1985]晋城市"
2521 county="[-1983]长治县"
2522 county="[-1983]潞城县"
2523 county="[-1985]屯留县"
2524 county="[-1985]长子县"
2525 county="[-1985]沁水县"
2526 county="[-1985]阳城县"
2527 county="[-1983]晋城县"
2528 county="[-1985]高平县"
2529 county="[-1985]陵川县"
2530 county="[-1985]壶关县"
2531 county="[-1985]平顺县"
2532 county="[-1985]黎城县"
2533 county="[-1985]武乡县"
2534 county="[-1985]襄垣县"
2535 county="[-1985]沁县"
2536 county="[-1985]沁源县"
2600 county="[-2000]临汾地区"
2601 county="[-2000]临汾市"
2602 county="[-2000]侯马市"
2603 county="[1989-2000]霍州市"
2621 county="[-2000]曲沃县"
2622 county="[-2000]翼城县"
2623 county="[-2000]襄汾县"
2624 county="[-1983]临汾县"
2625 county="[-2000]洪洞县"
2626 county="[-1989]霍县"
2627 county="[-2000]古县"
2628 county="[-2000]安泽县"
2629 county="[-2000]浮山县"
2630 county="[-2000]吉县"
2631 county="[-2000]乡宁县"
2632 county="[-2000]蒲县"
2633 county="[-2000]大宁县"
2634 county="[-2000]永和县"
2635 county="[-2000]隰县"
2636 county="[-2000]汾西县"
2700 county="[-2000]运城地区"
2701 county="[1983-2000]运城市"
2702 county="[1994-2000]永济市"
2703 county="[1994-2000]河津市"
2721 county="[-1983]运城县"
2722 county="[-1994]永济县"
2723 county="[-2000]芮城县"
2724 county="[-2000]临猗县"
2725 county="[-2000]万荣县"
2726 county="[-2000]新绛县"
2727 county="[-2000]稷山县"
2728 county="[-1994]河津县"
2729 county="[-2000]闻喜县"
2730 county="[-2000]夏县"
2731 county="[-2000]绛县"
2732 county="[-2000]平陆县"
2733 county="[-2000]垣曲县"
9000 county="[1988-1989]省直辖县级行政单位"
9001 county="[1988-1989]古交市"
15 province="内蒙古自治区"
0000 county="内蒙古自治区"
0100 county="呼和浩特市"
0101 county="[1983-]市辖区"
0102 county="[1983-]新城区"
0103 county="[1983-]回民区"
0104 county="[1983-]玉泉区"
0105 county="[1983-1999]郊区,[2000-]赛罕区"
0120 county="[-1983]市区"
0121 county="土默特左旗"
0122 county="托克托县"
0123 county="[1995-]和林格尔县"
0124 county="[1995-]清水河县"
0125 county="[1996-]武川县"
0200 county="包头市"
0201 county="[1983-]市辖区"
0202 county="[1983-]东河区"
0203 county="[1983-]昆都仑区"
0204 county="[1983-]青山区"
0205 county="[1983-1998]石拐矿区,[1999-]石拐区"
0206 county="[1983-]白云鄂博矿区"
0207 county="[1983-1998]郊区,[1999-]九原区"
0220 county="[-1983]市区"
0221 county="土默特右旗"
0222 county="固阳县"
0223 county="[1996-]达尔罕茂明安联合旗"
0300 county="乌海市"
0301 county="[1983-]市辖区"
0302 county="[1983-]海勃湾区"
0303 county="[1983-]海南区"
0304 county="[1983-]乌达区"
0400 county="[1983-]赤峰市"
0401 county="[1983-]市辖区"
0402 county="[1983-]红山区"
0403 county="[1983-]元宝山区"
0404 county="[1983-1992]郊区,[1993-]松山区"
0421 county="[1983-]阿鲁科尔沁旗"
0422 county="[1983-]巴林左旗"
0423 county="[1983-]巴林右旗"
0424 county="[1983-]林西县"
0425 county="[1983-]克什克腾旗"
0426 county="[1983-]翁牛特旗"
0427 county="[1983-1983]赤峰县"
0428 county="[1983-]喀喇沁旗"
0429 county="[1983-]宁城县"
0430 county="[1983-]敖汉旗"
0500 county="[1999-]通辽市"
0501 county="[1999-]市辖区"
0502 county="[1999-]科尔沁区"
0521 county="[1999-]科尔沁左翼中旗"
0522 county="[1999-]科尔沁左翼后旗"
0523 county="[1999-]开鲁县"
0524 county="[1999-]库伦旗"
0525 county="[1999-]奈曼旗"
0526 county="[1999-]扎鲁特旗"
0581 county="[1999-]霍林郭勒市"
0600 county="[2001-]鄂尔多斯市"
0601 county="[2001-]市辖区"
0602 county="[2001-]东胜区"
0603 county="[2016-]康巴什区"
0621 county="[2001-]达拉特旗"
0622 county="[2001-]准格尔旗"
0623 county="[2001-]鄂托克前旗"
0624 county="[2001-]鄂托克旗"
0625 county="[2001-]杭锦旗"
0626 county="[2001-]乌审旗"
0627 county="[2001-]伊金霍洛旗"
0700 county="[2001-]呼伦贝尔市"
0701 county="[2001-]市辖区"
0702 county="[2001-]海拉尔区"
0703 county="[2013-]扎赉诺尔区"
0721 county="[2001-]阿荣旗"
0722 county="[2001-]莫力达瓦达斡尔族自治旗"
0723 county="[2001-]鄂伦春自治旗"
0724 county="[2001-]鄂温克族自治旗"
0725 county="[2001-]陈巴尔虎旗"
0726 county="[2001-]新巴尔虎左旗"
0727 county="[2001-]新巴尔虎右旗"
0781 county="[2001-]满洲里市"
0782 county="[2001-]牙克石市"
0783 county="[2001-]扎兰屯市"
0784 county="[2001-]额尔古纳市"
0785 county="[2001-]根河市"
0800 county="[2003-]巴彦淖尔市"
0801 county="[2003-]市辖区"
0802 county="[2003-]临河区"
0821 county="[2003-]五原县"
0822 county="[2003-]磴口县"
0823 county="[2003-]乌拉特前旗"
0824 county="[2003-]乌拉特中旗"
0825 county="[2003-]乌拉特后旗"
0826 county="[2003-]杭锦后旗"
0900 county="[2003-]乌兰察布市"
0901 county="[2003-]市辖区"
0902 county="[2003-]集宁区"
0921 county="[2003-]卓资县"
0922 county="[2003-]化德县"
0923 county="[2003-]商都县"
0924 county="[2003-]兴和县"
0925 county="[2003-]凉城县"
0926 county="[2003-]察哈尔右翼前旗"
0927 county="[2003-]察哈尔右翼中旗"
0928 county="[2003-]察哈尔右翼后旗"
0929 county="[2003-]四子王旗"
0981 county="[2003-]丰镇市"
2100 county="[-2001]呼伦贝尔盟"
2101 county="[-2001]海拉尔市"
2102 county="[-2001]满洲里市"
2103 county="[1983-2001]扎兰屯市"
2104 county="[1983-2001]牙克石市"
2105 county="[1994-2001]根河市"
2106 county="[1994-2001]额尔古纳市"
2121 county="[-1983]布特哈旗"
2122 county="[-2001]阿荣旗"
2123 county="[-2001]莫力达瓦达斡尔族自治旗"
2124 county="[-1983]喜桂图旗"
2125 county="[-1994]额尔古纳右旗"
2126 county="[-1994]额尔古纳左旗"
2127 county="[-2001]鄂伦春自治旗"
2128 county="[-2001]鄂温克族自治旗"
2129 county="[-2001]新巴尔虎右旗"
2130 county="[-2001]新巴尔虎左旗"
2131 county="[-2001]陈巴尔虎旗"
2200 county="兴安盟"
2201 county="乌兰浩特市"
2202 county="[1996-]阿尔山市"
2221 county="科尔沁右翼前旗"
2222 county="科尔沁右翼中旗"
2223 county="扎赉特旗"
2224 county="突泉县"
2300 county="[-1999]哲里木盟"
2301 county="[-1999]通辽市"
2302 county="[1985-1999]霍林郭勒市"
2321 county="[-1986]通辽县"
2322 county="[-1999]科尔沁左翼中旗"
2323 county="[-1999]科尔沁左翼后旗"
2324 county="[-1999]开鲁县"
2325 county="[-1999]库伦旗"
2326 county="[-1999]奈曼旗"
2327 county="[-1999]扎鲁特旗"
2400 county="[-1983]昭乌达盟"
2401 county="[-1983]赤峰市"
2421 county="[-1983]阿鲁科尔沁旗"
2422 county="[-1983]巴林左旗"
2423 county="[-1983]巴林右旗"
2424 county="[-1983]林西县"
2425 county="[-1983]克什克腾旗"
2426 county="[-1983]翁牛特旗"
2427 county="[-1983]赤峰县"
2428 county="[-1983]喀喇沁旗"
2429 county="[-1983]宁城县"
2430 county="[-1983]敖汉旗"
2500 county="锡林郭勒盟"
2501 county="二连浩特市"
2502 county="[1983-]锡林浩特市"
2521 county="[-1983]阿巴哈纳尔旗"
2522 county="阿巴嘎旗"
2523 county="苏尼特左旗"
2524 county="苏尼特右旗"
2525 county="东乌珠穆沁旗"
2526 county="西乌珠穆沁旗"
2527 county="太仆寺旗"
2528 county="镶黄旗"
2529 county="正镶白旗"
2530 county="正蓝旗"
2531 county="多伦县"
2600 county="[-2003]乌兰察布盟"
2601 county="[-2003]集宁市"
2602 county="[1990-2003]丰镇市"
2621 county="[-1996]武川县"
2622 county="[-1995]和林格尔县"
2623 county="[-1995]清水河县"
2624 county="[-2003]卓资县"
2625 county="[-2003]化德县"
2626 county="[-2003]商都县"
2627 county="[-2003]兴和县"
2628 county="[-1990]丰镇县"
2629 county="[-2003]凉城县"
2630 county="[-2003]察哈尔右翼前旗"
2631 county="[-2003]察哈尔右翼中旗"
2632 county="[-2003]察哈尔右翼后旗"
2633 county="[-1996]达尔罕茂明安联合旗"
2634 county="[-2003]四子王旗"
2700 county="[-2001]伊克昭盟"
2701 county="[1983-2001]东胜市"
2721 county="[-1983]东胜县"
2722 county="[-2001]达拉特旗"
2723 county="[-2001]准格尔旗"
2724 county="[-2001]鄂托克前旗"
2725 county="[-2001]鄂托克旗"
2726 county="[-2001]杭锦旗"
2727 county="[-2001]乌审旗"
2728 county="[-2001]伊金霍洛旗"
2800 county="[-2003]巴彦淖尔盟"
2801 county="[1984-2003]临河市"
2821 county="[-1984]临河县"
2822 county="[-2003]五原县"
2823 county="[-2003]磴口县"
2824 county="[-2003]乌拉特前旗"
2825 county="[-2003]乌拉特中旗"
2826 county="[-2003]乌拉特后旗"
2827 county="[-2003]杭锦后旗"
2900 county="阿拉善盟"
2921 county="阿拉善左旗"
2922 county="阿拉善右旗"
2923 county="额济纳旗"
21 province="辽宁省"
0000 county="辽宁省"
0100 county="沈阳市"
0101 county="[1983-]市辖区"
0102 county="[1983-]和平区"
0103 county="[1983-]沈河区"
0104 county="[1983-]大东区"
0105 county="[1983-]皇姑区"
0106 county="[1983-]铁西区"
0111 county="[1983-]苏家屯区"
0112 county="[1983-2013]东陵区,[2014-]浑南区"
0113 county="[1983-2005]新城子区,[2006-]沈北新区"
0114 county="[1983-]于洪区"
0115 county="[2016-]辽中区"
0120 county="[-1983]市区"
0121 county="[-1993]新民县"
0122 county="[-2016]辽中县"
0123 county="[1992-]康平县"
0124 county="[1992-]法库县"
0181 county="[1993-]新民市"
0200 county="[-1980]旅大市,[1981-]大连市"
0201 county="[1983-]市辖区"